Update to latest catapult (be85e5fd)

bug:31335915
bug:31340203
bug:31551133

Change-Id: I844b83711c56f3ea8a6d0bf254a1187b62c33f81
diff --git a/UPSTREAM_REVISION b/UPSTREAM_REVISION
index ad6408d..19f2117 100644
--- a/UPSTREAM_REVISION
+++ b/UPSTREAM_REVISION
@@ -1 +1 @@
-1ff7619fc4025b4879d386928e1e3417ef846662
+be85e5fd4bf5793777543eded8f53b47c4241386
diff --git a/catapult/.eslintrc b/catapult/.eslintrc
new file mode 100644
index 0000000..6a3b86d
--- /dev/null
+++ b/catapult/.eslintrc
@@ -0,0 +1,93 @@
+{
+    "extends": "google",
+    "plugins": ["html"],
+    "rules": {
+      "accessor-pairs": "off",
+      "array-bracket-spacing": "off",
+      "array-callback-return": "off",
+      "arrow-parens": "off",
+      "block-scoped-var": "off",
+      "brace-style": "off",
+      "camelcase": "off",
+      "comma-dangle": "off",
+      "comma-spacing": "off",
+      "curly": "off",
+      "default-case": "off",
+      "dot-location": "off",
+      "dot-notation": "off",
+      "eqeqeq": "off",
+      "generator-star-spacing": "off",
+      "guard-for-in": "off",
+      "handle-callback-err": "off",
+      "indent": "off",
+      "key-spacing": "off",
+      "keyword-spacing": "off",
+      "max-len": ["error", {
+        "ignorePattern": "((// @suppress longLineCheck)|:)$",
+        "ignoreUrls": true
+      }],
+      "max-nested-callbacks": "off",
+      "max-statements-per-line": "off",
+      "new-cap": "off",
+      "new-parens": "off",
+      "no-alert": "off",
+      "no-array-constructor": "off",
+      "no-cond-assign": "off",
+      "no-constant-condition": "off",
+      "no-control-regex": "off",
+      "no-dupe-keys": "off",
+      "no-else-return": "off",
+      "no-eq-null": "off",
+      "no-extra-bind": "off",
+      "no-extra-boolean-cast": "off",
+      "no-extra-semi": "error",
+      "no-floating-decimal": "off",
+      "no-func-assign": "off",
+      "no-implicit-coercion": "off",
+      "no-inner-declarations": "off",
+      "no-lonely-if": "off",
+      "no-loop-func": "off",
+      "no-multi-spaces": "off",
+      "no-multiple-empty-lines": "off",
+      "no-negated-condition": "off",
+      "no-new": "off",
+      "no-new-func": "off",
+      "no-new-object": "off",
+      "no-new-wrappers": "off",
+      "no-proto": "off",
+      "no-redeclare": "off",
+      "no-regex-spaces": "off",
+      "no-restricted-globals": "off",
+      "no-return-assign": "off",
+      "no-sequences": "off",
+      "no-spaced-func": "off",
+      "no-throw-literal": "off",
+      "no-undef": "off",
+      "no-undef-init": "off",
+      "no-unneeded-ternary": "off",
+      "no-unreachable": "error",
+      "no-unused-expressions": "off",
+      "no-unused-vars": "off",
+      "no-use-before-define": "off",
+      "no-useless-call": "off",
+      "no-useless-concat": "off",
+      "no-useless-escape": "off",
+      "no-warning-comments": "off",
+      "no-whitespace-before-property": "off",
+      "object-curly-spacing": "off",
+      "one-var": "off",
+      "one-var-declaration-per-line": "off",
+      "operator-assignment": "off",
+      "padded-blocks": "off",
+      "quote-props": "off",
+      "radix": "off",
+      "require-jsdoc": "off",
+      "semi": "off",
+      "semi-spacing": "off",
+      "space-unary-ops": "off",
+      "spaced-comment": "off",
+      "valid-jsdoc": "off",
+      "wrap-iife": "off",
+      "yoda": "off"
+    }
+}
diff --git a/catapult/.gitignore b/catapult/.gitignore
index f667077..48316ac 100644
--- a/catapult/.gitignore
+++ b/catapult/.gitignore
@@ -18,3 +18,12 @@
 
 # telemetry's binary dependency download folder.
 /telemetry/telemetry/internal/bin/
+
+# common/py_utils's binary dependency download folder.
+/common/py_utils/py_utils/bin/
+
+# node_runner's binary dependency download folder.
+/common/node_runner/node_runner/bin/
+
+# node_runner's npm installation folder.
+/common/node_runner/node_runner/node_modules/
diff --git a/catapult/OWNERS b/catapult/OWNERS
index 37ea155..6e6780e 100644
--- a/catapult/OWNERS
+++ b/catapult/OWNERS
@@ -2,3 +2,6 @@
 nduca@chromium.org
 nednguyen@google.com
 sullivan@chromium.org
+
+per-file .eslintrc=charliea@chromium.org
+per-file .eslintrc=eakuefner@chromium.org
diff --git a/catapult/bin/run_tests b/catapult/bin/run_tests
index d072512..5d29f28 100755
--- a/catapult/bin/run_tests
+++ b/catapult/bin/run_tests
@@ -18,7 +18,7 @@
     {'path': os.path.join(_CATAPULT_PATH, 'perf_insights', 'bin', 'run_tests')},
     {'path': os.path.join(
         _CATAPULT_PATH, 'catapult_build', 'bin', 'run_py_tests')},
-    {'path': os.path.join(_CATAPULT_PATH, 'catapult_base', 'bin', 'run_tests')},
+    {'path': os.path.join(_CATAPULT_PATH, 'common', 'bin', 'run_tests')},
     {'path': os.path.join(_CATAPULT_PATH, 'dependency_manager', 'bin', 'run_tests')},
     {'path': os.path.join(_CATAPULT_PATH, 'telemetry', 'bin', 'run_tests')},
     {'path': os.path.join(_CATAPULT_PATH, 'third_party', 'vinn', 'run_test')},
diff --git a/catapult/catapult_base/catapult_base/__init__.py b/catapult/catapult_base/catapult_base/__init__.py
deleted file mode 100644
index 25e0fda..0000000
--- a/catapult/catapult_base/catapult_base/__init__.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# All files in this directory should be moved to catapult/base/ after moving
-# to the new repo.
-
-import os
-import sys
-
-from catapult_base import util
-
-
-def _AddDirToPythonPath(*path_parts):
-  path = os.path.abspath(os.path.join(*path_parts))
-  if os.path.isdir(path) and path not in sys.path:
-    # Some callsite that use telemetry assumes that sys.path[0] is the directory
-    # containing the script, so we add these extra paths to right after it.
-    sys.path.insert(1, path)
-
-_AddDirToPythonPath(os.path.join(util.GetCatapultDir(), 'dependency_manager'))
-_AddDirToPythonPath(os.path.join(util.GetCatapultDir(), 'third_party', 'mock'))
-# mox3 is needed for pyfakefs usage, but not for pylint.
-_AddDirToPythonPath(os.path.join(util.GetCatapultDir(), 'third_party', 'mox3'))
-_AddDirToPythonPath(
-    os.path.join(util.GetCatapultDir(), 'third_party', 'pyfakefs'))
diff --git a/catapult/catapult_base/catapult_base/util.py b/catapult/catapult_base/catapult_base/util.py
deleted file mode 100644
index de525d5..0000000
--- a/catapult/catapult_base/catapult_base/util.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import os
-import sys
-
-
-def GetCatapultDir():
-  return os.path.normpath(os.path.join(os.path.dirname(__file__), '..', '..'))
-
-
-def IsRunningOnCrosDevice():
-  """Returns True if we're on a ChromeOS device."""
-  lsb_release = '/etc/lsb-release'
-  if sys.platform.startswith('linux') and os.path.exists(lsb_release):
-    with open(lsb_release, 'r') as f:
-      res = f.read()
-      if res.count('CHROMEOS_RELEASE_NAME'):
-        return True
-  return False
-
-
-def _ExecutableExtensions():
-  # pathext is, e.g. '.com;.exe;.bat;.cmd'
-  exts = os.getenv('PATHEXT').split(';') #e.g. ['.com','.exe','.bat','.cmd']
-  return [x[1:].upper() for x in exts] #e.g. ['COM','EXE','BAT','CMD']
-
-
-def IsExecutable(path):
-  if os.path.isfile(path):
-    if hasattr(os, 'name') and os.name == 'nt':
-      return path.split('.')[-1].upper() in _ExecutableExtensions()
-    else:
-      return os.access(path, os.X_OK)
-  else:
-    return False
diff --git a/catapult/catapult_build/__init__.py b/catapult/catapult_build/__init__.py
index 8e8ee5d..2b3d7db 100644
--- a/catapult/catapult_build/__init__.py
+++ b/catapult/catapult_build/__init__.py
@@ -15,7 +15,8 @@
   catapult_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
   catapult_third_party_path = os.path.abspath(os.path.join(
       catapult_path, 'third_party'))
-  _AddToPathIfNeeded(os.path.join(catapult_path, 'catapult_base'))
+  _AddToPathIfNeeded(os.path.join(catapult_path, 'common', 'node_runner'))
+  _AddToPathIfNeeded(os.path.join(catapult_path, 'common', 'py_utils'))
   _AddToPathIfNeeded(os.path.join(catapult_third_party_path, 'beautifulsoup4'))
   _AddToPathIfNeeded(os.path.join(catapult_third_party_path, 'html5lib-python'))
   _AddToPathIfNeeded(os.path.join(catapult_third_party_path, 'six'))
diff --git a/catapult/catapult_build/build_steps.py b/catapult/catapult_build/build_steps.py
index 86a91ca..ff03d18 100644
--- a/catapult/catapult_build/build_steps.py
+++ b/catapult/catapult_build/build_steps.py
@@ -39,8 +39,8 @@
         'disabled': ['android'],
     },
     {
-        'name': 'Catapult Base Tests',
-        'path': 'catapult_base/bin/run_tests',
+        'name': 'Common Tests',
+        'path': 'common/bin/run_tests',
     },
     {
         'name': 'Dashboard Dev Server Tests Canary',
@@ -86,37 +86,8 @@
         'disabled': ['mac', 'win'],
     },
     {
-        'name': 'Perf Insights Dev Server Tests Canary',
-        'path': 'perf_insights/bin/run_dev_server_tests',
-        'additional_args': [
-            '--no-install-hooks',
-            '--no-use-local-chrome',
-            '--channel=canary'
-        ],
-        'outputs_presentation_json': True,
-        'disabled': ['android'],
-    },
-    {
-        'name': 'Perf Insights Dev Server Tests Stable',
-        'path': 'perf_insights/bin/run_dev_server_tests',
-        'additional_args': [
-            '--no-install-hooks',
-            '--no-use-local-chrome',
-            '--channel=stable',
-        ],
-        'uses_sandbox_env': True,
-        'outputs_presentation_json': True,
-        'disabled': ['android'],
-    },
-    {
-        'name': 'Perf Insights Python Tests',
-        'path': 'perf_insights/bin/run_py_tests',
-        'additional_args': ['--no-install-hooks'],
-        'disabled': ['android'],
-    },
-    {
-        'name': 'Perf VINN Insights Tests',
-        'path': 'perf_insights/bin/run_vinn_tests',
+        'name': 'Node Smoke Test',
+        'path': 'common/node_runner/bin/test_node_for_smoke',
         'disabled': ['android'],
     },
     {
@@ -137,6 +108,7 @@
             '--start-xvfb'
         ],
         'uses_sandbox_env': True,
+        'disabled': ['android'],
     },
     {
         'name': 'Telemetry Integration Tests with Stable Browser',
@@ -193,7 +165,7 @@
             '--no-install-hooks',
             '--no-use-local-chrome',
         ],
-        'disabled': ['android'],
+        'disabled': ['android', 'win', 'mac', 'linux'],
     },
 ]
 
@@ -234,6 +206,12 @@
                                  'android', 'tools', 'device_recovery.py')],
         },
         {
+            'name': 'Android: Provision Devices',
+            'cmd': ['python',
+                    os.path.join(args.api_path_checkout, 'devil', 'devil',
+                                 'android', 'tools', 'provision_devices.py')],
+        },
+        {
             'name': 'Android: Device Status',
             'cmd': ['python',
                     os.path.join(args.api_path_checkout, 'devil', 'devil',
diff --git a/catapult/catapult_build/dev_server.py b/catapult/catapult_build/dev_server.py
index c0f2162..d914594 100644
--- a/catapult/catapult_build/dev_server.py
+++ b/catapult/catapult_build/dev_server.py
@@ -17,7 +17,6 @@
 from webapp2 import Route, RedirectHandler
 
 from dashboard_build import dashboard_dev_server_config
-from perf_insights_build import perf_insights_dev_server_config
 from tracing_build import tracing_dev_server_config
 from netlog_viewer_build import netlog_viewer_dev_server_config
 
@@ -38,8 +37,6 @@
      '/tracing_examples/trace_viewer.html'),
     ('Metrics debugger',
      '/tracing_examples/metrics_debugger.html'),
-    ('Perf Insights Viewer',
-     '/perf_insights_examples/perf_insights_viewer.html'),
 ]
 
 _LINK_ITEM = '<li><a href="%s">%s</a></li>'
@@ -304,7 +301,6 @@
 def Main(argv):
   pds = [
       dashboard_dev_server_config.DashboardDevServerConfig(),
-      perf_insights_dev_server_config.PerfInsightsDevServerConfig(),
       tracing_dev_server_config.TracingDevServerConfig(),
       netlog_viewer_dev_server_config.NetlogViewerDevServerConfig(),
   ]
diff --git a/catapult/catapult_build/dev_server_unittest.py b/catapult/catapult_build/dev_server_unittest.py
index 718b2d6..010bb26 100644
--- a/catapult/catapult_build/dev_server_unittest.py
+++ b/catapult/catapult_build/dev_server_unittest.py
@@ -7,7 +7,6 @@
 
 
 from catapult_build import dev_server
-from perf_insights_build import perf_insights_dev_server_config
 from tracing_build import tracing_dev_server_config
 import webapp2
 
@@ -15,7 +14,6 @@
 
   def setUp(self):
     self.pds = [
-        perf_insights_dev_server_config.PerfInsightsDevServerConfig(),
         tracing_dev_server_config.TracingDevServerConfig(),
     ]
 
diff --git a/catapult/catapult_build/js_checks.py b/catapult/catapult_build/js_checks.py
index 0968e7d..61a5eea 100644
--- a/catapult/catapult_build/js_checks.py
+++ b/catapult/catapult_build/js_checks.py
@@ -2,11 +2,9 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-import os
 import re
-import sys
-import warnings
 
+from node_runner import node_util
 from py_vulcanize import strip_js_comments
 
 from catapult_build import parse_html
@@ -61,76 +59,6 @@
     See:
     http://chromium.org/developers/web-development-style-guide#TOC-JavaScript
     """
-    old_path = sys.path
-    old_filters = warnings.filters
-
-    try:
-      base_path = os.path.abspath(os.path.join(
-          os.path.dirname(__file__), '..'))
-      closure_linter_path = os.path.join(
-          base_path, 'third_party', 'closure_linter')
-      gflags_path = os.path.join(
-          base_path, 'third_party', 'python_gflags')
-      sys.path.insert(0, closure_linter_path)
-      sys.path.insert(0, gflags_path)
-
-      warnings.filterwarnings('ignore', category=DeprecationWarning)
-
-      from closure_linter import runner, errors
-      from closure_linter.common import errorhandler
-
-    finally:
-      sys.path = old_path
-      warnings.filters = old_filters
-
-    class ErrorHandlerImpl(errorhandler.ErrorHandler):
-      """Filters out errors that don't apply to Chromium JavaScript code."""
-
-      def __init__(self):
-        super(ErrorHandlerImpl, self).__init__()
-        self._errors = []
-        self._filename = None
-
-      def HandleFile(self, filename, _):
-        self._filename = filename
-
-      def HandleError(self, error):
-        if self._Valid(error):
-          error.filename = self._filename
-          self._errors.append(error)
-
-      def GetErrors(self):
-        return self._errors
-
-      def HasErrors(self):
-        return bool(self._errors)
-
-      def _Valid(self, error):
-        """Checks whether an error is valid.
-
-        Most errors are valid, with a few exceptions which are listed here.
-        """
-        if re.search('</?(include|if)', error.token.line):
-          return False  # GRIT statement.
-
-        if (error.code == errors.MISSING_SEMICOLON and
-            error.token.string == 'of'):
-          return False  # ES6 for...of statement.
-
-        if (error.code == errors.LINE_STARTS_WITH_OPERATOR and
-            error.token.string == '*'):
-          return False  # *[...] syntax
-
-        if (error.code == errors.MISSING_SPACE and
-            error.token.string == '['):
-          return False  # *[...] syntax
-
-        return error.code not in [
-            errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
-            errors.MISSING_JSDOC_TAG_THIS,
-            errors.MISSING_MEMBER_DOCUMENTATION,
-        ]
-
     results = []
 
     affected_files = self.input_api.AffectedFiles(
@@ -145,9 +73,8 @@
       return False
 
     affected_js_files = filter(ShouldCheck, affected_files)
+    error_lines = []
     for f in affected_js_files:
-      error_lines = []
-
       contents = list(f.NewContents())
       error_lines += CheckStrictMode(
           '\n'.join(contents),
@@ -156,29 +83,18 @@
       for i, line in enumerate(contents, start=1):
         error_lines += filter(None, [self.ConstCheck(i, line)])
 
-      # Use closure_linter to check for several different errors.
-      import gflags as flags
-      flags.FLAGS.strict = True
-      error_handler = ErrorHandlerImpl()
-      runner.Run(f.AbsoluteLocalPath(), error_handler)
+    if affected_js_files:
+      eslint_output = node_util.RunEslint(
+          [f.AbsoluteLocalPath() for f in affected_js_files]).rstrip()
 
-      for error in error_handler.GetErrors():
-        highlight = _ErrorHighlight(
-            error.token.start_index, error.token.length)
-        error_msg = '  line %d: E%04d: %s\n%s\n%s' % (
-            error.token.line_number,
-            error.code,
-            error.message,
-            error.token.line.rstrip(),
-            highlight)
-        error_lines.append(error_msg)
+      if eslint_output:
+        error_lines.append('\neslint found lint errors:')
+        error_lines.append(eslint_output)
 
-      if error_lines:
-        error_lines = [
-            'Found JavaScript style violations in %s:' %
-            f.LocalPath()] + error_lines
-        results.append(
-            _MakeErrorOrWarning(self.output_api, '\n'.join(error_lines)))
+    if error_lines:
+      error_lines.insert(0, 'Found JavaScript style violations:')
+      results.append(
+          _MakeErrorOrWarning(self.output_api, '\n'.join(error_lines)))
 
     return results
 
diff --git a/catapult/catapult_build/run_dev_server_tests.py b/catapult/catapult_build/run_dev_server_tests.py
index f659a12..73ffd1e 100644
--- a/catapult/catapult_build/run_dev_server_tests.py
+++ b/catapult/catapult_build/run_dev_server_tests.py
@@ -16,9 +16,9 @@
 
 from hooks import install
 
-from catapult_base import binary_manager
-from catapult_base import dependency_util
-from catapult_base import xvfb
+from py_utils import binary_manager
+from py_utils import dependency_util
+from py_utils import xvfb
 
 
 # Path to dependency manager config containing chrome binary data.
@@ -26,7 +26,7 @@
 
 CHROME_CONFIG_URL = (
     'https://code.google.com/p/chromium/codesearch#chromium/src/third_party/'
-    'catapult/catapult_base/catapult_base/chrome_binaries.json')
+    'catapult/py_utils/py_utils/chrome_binaries.json')
 
 # Default port to run on if not auto-assigning from OS
 DEFAULT_PORT = '8111'
diff --git a/catapult/catapult_base/OWNERS b/catapult/common/OWNERS
similarity index 100%
rename from catapult/catapult_base/OWNERS
rename to catapult/common/OWNERS
diff --git a/catapult/common/battor/battor/__init__.py b/catapult/common/battor/battor/__init__.py
index 50c0a9e..866a3d4 100644
--- a/catapult/common/battor/battor/__init__.py
+++ b/catapult/common/battor/battor/__init__.py
@@ -20,8 +20,8 @@
     os.path.dirname(os.path.abspath(__file__)),
                     os.path.pardir, os.path.pardir, os.path.pardir)
 
-_AddDirToPythonPath(_CATAPULT_DIR, 'catapult_base')
+_AddDirToPythonPath(_CATAPULT_DIR, 'common', 'battor')
+_AddDirToPythonPath(_CATAPULT_DIR, 'common', 'py_utils')
 _AddDirToPythonPath(_CATAPULT_DIR, 'dependency_manager')
 _AddDirToPythonPath(_CATAPULT_DIR, 'devil')
 _AddDirToPythonPath(_CATAPULT_DIR, 'telemetry', 'third_party', 'pyserial')
-_AddDirToPythonPath(_CATAPULT_DIR, 'common', 'battor')
diff --git a/catapult/common/battor/battor/battor_wrapper.py b/catapult/common/battor/battor/battor_wrapper.py
index 6403655..f1f37d4 100644
--- a/catapult/common/battor/battor/battor_wrapper.py
+++ b/catapult/common/battor/battor/battor_wrapper.py
@@ -2,6 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import atexit
 import datetime
 import os
 import logging
@@ -13,7 +14,7 @@
 import time
 
 from battor import battor_error
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 import dependency_manager
 from devil.utils import battor_device_mapping
 from devil.utils import find_usb_devices
@@ -120,9 +121,20 @@
     self._trace_results = None
     self._serial_log_file = None
 
+    atexit.register(self.KillBattOrShell)
+
+  def KillBattOrShell(self):
+    if self._battor_shell:
+      logging.critical('BattOr shell was not properly closed. Killing now.')
+      self._battor_shell.kill()
+
   def GetShellReturnCode(self):
     """Gets the return code of the BattOr agent shell."""
-    return self._battor_shell.poll()
+    # TODO(rnephew): Get rid of logging after crbug.com/645106 is fixed.
+    logging.critical('Finding return code for BattOr shell.')
+    rc = self._battor_shell.poll()
+    logging.critical('Found return code: %s' % rc)
+    return rc
 
   def StartShell(self):
     """Start BattOr binary shell."""
diff --git a/catapult/catapult_base/bin/run_tests b/catapult/common/bin/run_tests
similarity index 78%
rename from catapult/catapult_base/bin/run_tests
rename to catapult/common/bin/run_tests
index 7e4e880..3021755 100755
--- a/catapult/catapult_base/bin/run_tests
+++ b/catapult/common/bin/run_tests
@@ -9,12 +9,12 @@
 _CATAPULT_PATH = os.path.abspath(
     os.path.join(os.path.dirname(__file__), '..', '..'))
 
-_CATAPULT_BASE_PATH = os.path.abspath(
-    os.path.join(_CATAPULT_PATH, 'catapult_base'))
+_PY_UTILS_PATH = os.path.abspath(
+    os.path.join(_CATAPULT_PATH, 'common', 'py_utils'))
 
 
 def _RunTestsOrDie(top_level_dir):
-  exit_code = run_with_typ.Run(top_level_dir, path=[_CATAPULT_BASE_PATH])
+  exit_code = run_with_typ.Run(top_level_dir, path=[_PY_UTILS_PATH])
   if exit_code:
     sys.exit(exit_code)
 
@@ -34,5 +34,5 @@
     install.InstallHooks()
 
   from catapult_build import run_with_typ
-  _RunTestsOrDie(_CATAPULT_BASE_PATH)
+  _RunTestsOrDie(_PY_UTILS_PATH)
   sys.exit(0)
diff --git a/catapult/common/node_runner/bin/test_node_for_smoke b/catapult/common/node_runner/bin/test_node_for_smoke
new file mode 100755
index 0000000..b145858
--- /dev/null
+++ b/catapult/common/node_runner/bin/test_node_for_smoke
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+import sys
+
+_NODE_RUNNER_PATH = os.path.abspath(
+    os.path.join(os.path.dirname(__file__), '..'))
+
+
+_PY_UTILS_PATH = os.path.abspath(
+    os.path.join(_NODE_RUNNER_PATH, '..', 'py_utils'))
+
+
+def _AddToPathIfNeeded(path):
+  if path not in sys.path:
+    sys.path.insert(0, path)
+
+
+if __name__ == '__main__':
+  _AddToPathIfNeeded(_NODE_RUNNER_PATH)
+  _AddToPathIfNeeded(_PY_UTILS_PATH)
+
+  from node_runner import node_util
+  print node_util.RunEslint()
+  sys.exit(0)
diff --git a/catapult/common/node_runner/node_runner/__init__.py b/catapult/common/node_runner/node_runner/__init__.py
new file mode 100644
index 0000000..ce33e05
--- /dev/null
+++ b/catapult/common/node_runner/node_runner/__init__.py
@@ -0,0 +1,4 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
diff --git a/catapult/common/node_runner/node_runner/node_binaries.json b/catapult/common/node_runner/node_runner/node_binaries.json
new file mode 100644
index 0000000..de4ede1
--- /dev/null
+++ b/catapult/common/node_runner/node_runner/node_binaries.json
@@ -0,0 +1,29 @@
+{
+  "config_type": "BaseConfig",
+  "dependencies": {
+    "node": {
+      "cloud_storage_base_folder": "binary_dependencies",
+      "cloud_storage_bucket": "chromium-telemetry",
+      "file_info": {
+        "linux_x86_64": {
+          "cloud_storage_hash": "da9f3781488844a966106822ef3dbdbe2377ff13",
+          "download_path": "bin/node/node-linux64.zip",
+          "path_within_archive": "node-v6.5.0-linux-x64/bin/node",
+          "version_in_cs": "6.5.0"
+        },
+        "mac_x86_64": {
+          "cloud_storage_hash": "05a772e1cb5f2167394586b5a1f9bdc7c0c1b376",
+          "download_path": "bin/node/node-mac64.zip",
+          "path_within_archive": "node-v6.5.0-darwin-x64/bin/node",
+          "version_in_cs": "6.5.0"
+        },
+        "win_AMD64": {
+          "cloud_storage_hash": "0046368de2ffb3d474847238dfc82c3f7995810a",
+          "download_path": "bin/node/node-win64.zip",
+          "path_within_archive": "node-v6.5.0-win-x64/node.exe",
+          "version_in_cs": "6.5.0"
+        }
+      }
+    }
+  }
+}
diff --git a/catapult/common/node_runner/node_runner/node_util.py b/catapult/common/node_runner/node_runner/node_util.py
new file mode 100644
index 0000000..4ec4490
--- /dev/null
+++ b/catapult/common/node_runner/node_runner/node_util.py
@@ -0,0 +1,73 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+import subprocess
+import sys
+
+import py_utils
+from py_utils import binary_manager
+from py_utils import dependency_util
+
+
+def _NodeBinariesConfigPath():
+  return os.path.realpath(os.path.join(
+      os.path.dirname(os.path.abspath(__file__)), 'node_binaries.json'))
+
+
+class _NodeManager(object):
+  def __init__(self):
+    self.bm = binary_manager.BinaryManager(
+        [_NodeBinariesConfigPath()])
+    self.os_name = dependency_util.GetOSNameForCurrentDesktopPlatform()
+    self.arch_name = dependency_util.GetArchForCurrentDesktopPlatform(
+        self.os_name)
+    self.node_path = self.bm.FetchPath('node', self.os_name, self.arch_name)
+    self.npm_path = os.path.abspath(os.path.join(
+        os.path.dirname(self.node_path), '..', 'lib', 'node_modules', 'npm',
+        'bin', 'npm-cli.js'))
+
+    self.node_initialized = False
+
+  def InitNode(self):
+    if self.node_initialized:
+      return  # So we only init once per run
+    self.node_initialized = True
+    old_dir = os.path.abspath(os.curdir)
+    os.chdir(os.path.join(os.path.abspath(
+        py_utils.GetCatapultDir()), 'common', 'node_runner', 'node_runner'))
+    subprocess.call([self.node_path, self.npm_path, 'install'])
+    os.chdir(old_dir)
+
+
+_NODE_MANAGER = _NodeManager()
+
+
+def InitNode():
+  _NODE_MANAGER.InitNode()
+
+
+def GetNodePath():
+  return _NODE_MANAGER.node_path
+
+
+def GetNodeModulesPath():
+  _NODE_MANAGER.InitNode()
+  path = os.path.abspath(os.path.join(os.path.dirname(__file__),
+                                      'node_modules'))
+  if sys.platform.startswith('win'):
+    # Escape path on Windows because it's very long and must be passed to NTFS.
+    path = u'\\\\?\\' + path
+  return path
+
+
+def RunEslint(filenames=None):
+  cmd = [GetNodePath(), os.path.join(
+      GetNodeModulesPath(), 'eslint', 'bin', 'eslint.js'), '--color']
+  if filenames:
+    cmd += filenames
+  try:
+    return subprocess.check_output(cmd, stderr=subprocess.STDOUT)
+  except subprocess.CalledProcessError as e:
+    return e.output
diff --git a/catapult/common/node_runner/node_runner/package.json b/catapult/common/node_runner/node_runner/package.json
new file mode 100644
index 0000000..797c1d5
--- /dev/null
+++ b/catapult/common/node_runner/node_runner/package.json
@@ -0,0 +1,22 @@
+{
+  "name": "catapult_base",
+  "version": "1.0.0",
+  "description": "Catapult project base",
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/catapult-project/catapult/tree/master/catapult_base"
+  },
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "The Chromium Authors",
+  "license": "BSD-2-Clause",
+  "gypfile": false,
+  "private": true,
+  "dependencies": {
+    "eslint": "^3.4.0",
+    "eslint-config-google": "^0.6.0",
+    "eslint-plugin-html": "^1.5.2"
+  }
+}
diff --git a/catapult/common/py_trace_event/py_trace_event/__init__.py b/catapult/common/py_trace_event/py_trace_event/__init__.py
index 1ddf31d..637b7c9 100644
--- a/catapult/common/py_trace_event/py_trace_event/__init__.py
+++ b/catapult/common/py_trace_event/py_trace_event/__init__.py
@@ -4,4 +4,4 @@
 import sys
 
 
-sys.path.append('../../../catapult_base')
+sys.path.append('../../../py_utils')
diff --git a/catapult/common/py_trace_event/py_trace_event/trace_event.py b/catapult/common/py_trace_event/py_trace_event/trace_event.py
index df079cb..1abbfa7 100644
--- a/catapult/common/py_trace_event/py_trace_event/trace_event.py
+++ b/catapult/common/py_trace_event/py_trace_event/trace_event.py
@@ -88,6 +88,8 @@
   def trace(name, **kwargs):
     return trace_event_impl.trace(name, **kwargs)
 
+  TracedMetaClass = trace_event_impl.TracedMetaClass
+
   def traced(fn):
     return trace_event_impl.traced(fn)
 
diff --git a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/__init__.py b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/__init__.py
index 21b0217..d250e03 100644
--- a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/__init__.py
+++ b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/__init__.py
@@ -3,4 +3,5 @@
 # found in the LICENSE file.
 from log import *
 from decorators import *
+from meta_class import *
 import multiprocessing_shim
diff --git a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/decorators.py b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/decorators.py
index ab1463d..dc753f1 100644
--- a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/decorators.py
+++ b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/decorators.py
@@ -7,18 +7,19 @@
 import functools
 
 import log
+from py_trace_event import trace_time
 
 
 @contextlib.contextmanager
 def trace(name, **kwargs):
   category = "python"
-  start = time.time()
+  start = trace_time.Now()
   args_to_log = {key: repr(value) for key, value in kwargs.iteritems()}
   log.add_trace_event("B", start, category, name, args_to_log)
   try:
     yield
   finally:
-    end = time.time()
+    end = trace_time.Now()
     log.add_trace_event("E", end, category, name)
 
 def traced(*args):
@@ -68,12 +69,12 @@
           name: repr(get_arg_value(name, index, default))
           for name, index, default in args_to_log}
 
-      start = time.time()
+      start = trace_time.Now()
       log.add_trace_event("B", start, category, name, arg_values)
       try:
         return func(*args, **kwargs)
       finally:
-        end = time.time()
+        end = trace_time.Now()
         log.add_trace_event("E", end, category, name)
     return traced_function
 
diff --git a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/log.py b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/log.py
index 7cb7222..95d012f 100644
--- a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/log.py
+++ b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/log.py
@@ -8,7 +8,9 @@
 import time
 import threading
 
-from catapult_base import lock
+from py_trace_event import trace_time
+
+from py_utils import lock
 
 
 _lock = threading.Lock()
@@ -87,7 +89,7 @@
         tid = os.getpid()
       x = {"ph": "M", "category": "process_argv",
            "pid": os.getpid(), "tid": threading.current_thread().ident,
-           "ts": time.time(),
+           "ts": trace_time.Now(),
            "name": "process_argv", "args": {"argv": sys.argv}}
       _log_file.write("%s\n" % json.dumps(x))
     else:
@@ -164,10 +166,10 @@
                       "args": args or {}});
 
 def trace_begin(name, args=None):
-  add_trace_event("B", time.time(), "python", name, args)
+  add_trace_event("B", trace_time.Now(), "python", name, args)
 
 def trace_end(name, args=None):
-  add_trace_event("E", time.time(), "python", name, args)
+  add_trace_event("E", trace_time.Now(), "python", name, args)
 
 def _trace_disable_atexit():
   trace_disable()
diff --git a/catapult/common/py_trace_event/py_trace_event/trace_event_impl/meta_class.py b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/meta_class.py
new file mode 100644
index 0000000..4ede79b
--- /dev/null
+++ b/catapult/common/py_trace_event/py_trace_event/trace_event_impl/meta_class.py
@@ -0,0 +1,16 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import types
+
+from py_trace_event.trace_event_impl import decorators
+
+
+class TracedMetaClass(type):
+  def __new__(cls, name, bases, attrs):
+    for attr_name, attr_value in attrs.iteritems():
+      if isinstance(attr_value, types.FunctionType):
+        attrs[attr_name] = decorators.traced(attr_value)
+
+    return super(TracedMetaClass, cls).__new__(cls, name, bases, attrs)
diff --git a/catapult/catapult_base/PRESUBMIT.py b/catapult/common/py_utils/PRESUBMIT.py
similarity index 85%
rename from catapult/catapult_base/PRESUBMIT.py
rename to catapult/common/py_utils/PRESUBMIT.py
index 5a48a87..c1d92fe 100644
--- a/catapult/catapult_base/PRESUBMIT.py
+++ b/catapult/common/py_utils/PRESUBMIT.py
@@ -15,17 +15,17 @@
   results = []
   results += input_api.RunTests(input_api.canned_checks.GetPylint(
       input_api, output_api, extra_paths_list=_GetPathsToPrepend(input_api),
-      pylintrc='../pylintrc'))
+      pylintrc='../../pylintrc'))
   return results
 
 
 def _GetPathsToPrepend(input_api):
   project_dir = input_api.PresubmitLocalPath()
-  catapult_dir = input_api.os_path.join(project_dir, '..')
+  catapult_dir = input_api.os_path.join(project_dir, '..', '..')
   return [
       project_dir,
-
       input_api.os_path.join(catapult_dir, 'dependency_manager'),
+      input_api.os_path.join(catapult_dir, 'devil'),
       input_api.os_path.join(catapult_dir, 'third_party', 'mock'),
       input_api.os_path.join(catapult_dir, 'third_party', 'pyfakefs'),
   ]
diff --git a/catapult/common/py_utils/py_utils/__init__.py b/catapult/common/py_utils/py_utils/__init__.py
index 2b0472d..e508170 100644
--- a/catapult/common/py_utils/py_utils/__init__.py
+++ b/catapult/common/py_utils/py_utils/__init__.py
@@ -4,14 +4,65 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-# Decorator that adds timeout functionality to a function.
+import functools
+import os
+import sys
+
+
+def GetCatapultDir():
+  return os.path.normpath(
+      os.path.join(os.path.dirname(__file__), '..', '..', '..'))
+
+
+def IsRunningOnCrosDevice():
+  """Returns True if we're on a ChromeOS device."""
+  lsb_release = '/etc/lsb-release'
+  if sys.platform.startswith('linux') and os.path.exists(lsb_release):
+    with open(lsb_release, 'r') as f:
+      res = f.read()
+      if res.count('CHROMEOS_RELEASE_NAME'):
+        return True
+  return False
+
+
+def _ExecutableExtensions():
+  # pathext is, e.g. '.com;.exe;.bat;.cmd'
+  exts = os.getenv('PATHEXT').split(';') #e.g. ['.com','.exe','.bat','.cmd']
+  return [x[1:].upper() for x in exts] #e.g. ['COM','EXE','BAT','CMD']
+
+
+def IsExecutable(path):
+  if os.path.isfile(path):
+    if hasattr(os, 'name') and os.name == 'nt':
+      return path.split('.')[-1].upper() in _ExecutableExtensions()
+    else:
+      return os.access(path, os.X_OK)
+  else:
+    return False
+
+
+def _AddDirToPythonPath(*path_parts):
+  path = os.path.abspath(os.path.join(*path_parts))
+  if os.path.isdir(path) and path not in sys.path:
+    # Some callsite that use telemetry assumes that sys.path[0] is the directory
+    # containing the script, so we add these extra paths to right after it.
+    sys.path.insert(1, path)
+
+_AddDirToPythonPath(os.path.join(GetCatapultDir(), 'devil'))
+_AddDirToPythonPath(os.path.join(GetCatapultDir(), 'dependency_manager'))
+_AddDirToPythonPath(os.path.join(GetCatapultDir(), 'third_party', 'mock'))
+# mox3 is needed for pyfakefs usage, but not for pylint.
+_AddDirToPythonPath(os.path.join(GetCatapultDir(), 'third_party', 'mox3'))
+_AddDirToPythonPath(
+    os.path.join(GetCatapultDir(), 'third_party', 'pyfakefs'))
 
 from devil.utils import timeout_retry
 from devil.utils import reraiser_thread
-import functools
 
+
+# Decorator that adds timeout functionality to a function.
 def Timeout(default_timeout):
-  return lambda func: timeout_deco(func, default_timeout)
+  return lambda func: TimeoutDeco(func, default_timeout)
 
 # Note: Even though the "timeout" keyword argument is the only
 # keyword argument that will need to be given to the decorated function,
@@ -21,9 +72,9 @@
 # a single named keyword argument after *args.
 # (e.g., 'def foo(*args, bar=42):' is a syntax error)
 
-def timeout_deco(func, default_timeout):
+def TimeoutDeco(func, default_timeout):
   @functools.wraps(func)
-  def run_with_timeout(*args, **kwargs):
+  def RunWithTimeout(*args, **kwargs):
     if 'timeout' in kwargs:
       timeout = kwargs['timeout']
     else:
@@ -33,4 +84,4 @@
     except reraiser_thread.TimeoutError:
       print '%s timed out.' % func.__name__
       return False
-  return run_with_timeout
+  return RunWithTimeout
diff --git a/catapult/catapult_base/catapult_base/binary_manager.py b/catapult/common/py_utils/py_utils/binary_manager.py
similarity index 100%
rename from catapult/catapult_base/catapult_base/binary_manager.py
rename to catapult/common/py_utils/py_utils/binary_manager.py
diff --git a/catapult/catapult_base/catapult_base/binary_manager_unittest.py b/catapult/common/py_utils/py_utils/binary_manager_unittest.py
similarity index 99%
rename from catapult/catapult_base/catapult_base/binary_manager_unittest.py
rename to catapult/common/py_utils/py_utils/binary_manager_unittest.py
index fdce07b..ccf21ad 100644
--- a/catapult/catapult_base/catapult_base/binary_manager_unittest.py
+++ b/catapult/common/py_utils/py_utils/binary_manager_unittest.py
@@ -8,7 +8,7 @@
 from pyfakefs import fake_filesystem_unittest
 from dependency_manager import exceptions
 
-from catapult_base import binary_manager
+from py_utils import binary_manager
 
 class BinaryManagerTest(fake_filesystem_unittest.TestCase):
   # TODO(aiolos): disable cloud storage use during this test.
diff --git a/catapult/catapult_base/catapult_base/chrome_binaries.json b/catapult/common/py_utils/py_utils/chrome_binaries.json
similarity index 92%
rename from catapult/catapult_base/catapult_base/chrome_binaries.json
rename to catapult/common/py_utils/py_utils/chrome_binaries.json
index 2b00570..a3f5b51 100644
--- a/catapult/catapult_base/catapult_base/chrome_binaries.json
+++ b/catapult/common/py_utils/py_utils/chrome_binaries.json
@@ -100,28 +100,28 @@
           "version_in_cs": "48.0.2564.95"
         },
         "linux_x86_64": {
-          "cloud_storage_hash": "80656d2479eb101486a9dd229cbde54e12a04206",
+          "cloud_storage_hash": "22ff02efcda4579b8e87a3f87d3293f257595bc8",
           "download_path": "bin/reference_build/chrome-linux64.zip",
           "path_within_archive": "chrome-precise64/chrome",
-          "version_in_cs": "49.0.2623.112"
+          "version_in_cs": "52.0.2743.116"
         },
         "mac_x86_64": {
-          "cloud_storage_hash": "950b1f2a99a8c9b2bced6563ae4b50b2b77669f8",
+          "cloud_storage_hash": "8854cfea0bb9d111a977ed71832ce99a291c253b",
           "download_path": "bin/reference_builds/chrome-mac64.zip",
           "path_within_archive": "chrome-mac/Google Chrome.app/Contents/MacOS/Google Chrome",
-          "version_in_cs": "49.0.2623.112"
+          "version_in_cs": "52.0.2743.116"
         },
         "win_AMD64": {
-          "cloud_storage_hash": "e61079394532bf3aeea0afa3e38cfdb700d03363",
+          "cloud_storage_hash": "ebd5fd9ac05655e7f82a26fe46bfb1bc454866b2",
           "download_path": "bin\\reference_build\\chrome-win64.zip",
           "path_within_archive": "chrome-win64\\chrome.exe",
-          "version_in_cs": "49.0.2623.112"
+          "version_in_cs": "52.0.2743.116"
         },
         "win_x86": {
-          "cloud_storage_hash": "28ca3c790aad3e9045fa297913f7131cc51b17ac",
+          "cloud_storage_hash": "9284d1e7a1a69a95c64ede83ad1f3f0f928c9831",
           "download_path": "bin\\reference_build\\chrome-win32.zip",
           "path_within_archive": "chrome-win32\\chrome.exe",
-          "version_in_cs": "49.0.2623.112"
+          "version_in_cs": "52.0.2743.116"
         }
       }
     },
@@ -156,4 +156,4 @@
       }
     }
   }
-}
+}
\ No newline at end of file
diff --git a/catapult/catapult_base/catapult_base/cloud_storage.py b/catapult/common/py_utils/py_utils/cloud_storage.py
similarity index 88%
rename from catapult/catapult_base/catapult_base/cloud_storage.py
rename to catapult/common/py_utils/py_utils/cloud_storage.py
index 89d84f0..408fd4d 100644
--- a/catapult/catapult_base/catapult_base/cloud_storage.py
+++ b/catapult/common/py_utils/py_utils/cloud_storage.py
@@ -16,12 +16,13 @@
 import tempfile
 import time
 
-try:
-  import fcntl
-except ImportError:
-  fcntl = None
+import py_utils
+from py_utils import lock
 
-from catapult_base import util
+# Do a no-op import here so that cloud_storage_global_lock dep is picked up
+# by https://cs.chromium.org/chromium/src/build/android/test_runner.pydeps.
+# TODO(nedn, jbudorick): figure out a way to get rid of this ugly hack.
+from py_utils import cloud_storage_global_lock  # pylint: disable=unused-import
 
 
 PUBLIC_BUCKET = 'chromium-telemetry'
@@ -41,7 +42,7 @@
 BUCKET_ALIAS_NAMES = BUCKET_ALIASES.keys()
 
 
-_GSUTIL_PATH = os.path.join(util.GetCatapultDir(), 'third_party', 'gsutil',
+_GSUTIL_PATH = os.path.join(py_utils.GetCatapultDir(), 'third_party', 'gsutil',
                             'gsutil')
 
 # TODO(tbarzic): A workaround for http://crbug.com/386416 and
@@ -60,7 +61,7 @@
   @staticmethod
   def _GetConfigInstructions():
     command = _GSUTIL_PATH
-    if util.IsRunningOnCrosDevice():
+    if py_utils.IsRunningOnCrosDevice():
       command = 'HOME=%s %s' % (_CROS_GSUTIL_HOME_WAR, _GSUTIL_PATH)
     return ('To configure your credentials:\n'
             '  1. Run "%s config" and follow its instructions.\n'
@@ -101,7 +102,7 @@
   search_paths = list(extra_search_paths) + os.environ['PATH'].split(os.pathsep)
   for search_path in search_paths:
     executable_path = os.path.join(search_path, relative_executable_path)
-    if util.IsExecutable(executable_path):
+    if py_utils.IsExecutable(executable_path):
       return executable_path
   return None
 
@@ -122,7 +123,7 @@
   # TODO(tbarzic): Figure out a better way to handle gsutil on cros.
   #     http://crbug.com/386416, http://crbug.com/359293.
   gsutil_env = None
-  if util.IsRunningOnCrosDevice():
+  if py_utils.IsRunningOnCrosDevice():
     gsutil_env = os.environ.copy()
     gsutil_env['HOME'] = _CROS_GSUTIL_HOME_WAR
 
@@ -220,29 +221,38 @@
 
 
 def Get(bucket, remote_path, local_path):
-  with _PseudoFileLock(local_path):
+  with _FileLock(local_path):
     _GetLocked(bucket, remote_path, local_path)
 
 
+_CLOUD_STORAGE_GLOBAL_LOCK = os.path.join(
+    os.path.dirname(os.path.abspath(__file__)), 'cloud_storage_global_lock.py')
+
+
 @contextlib.contextmanager
-def _PseudoFileLock(base_path):
+def _FileLock(base_path):
   pseudo_lock_path = '%s.pseudo_lock' % base_path
   _CreateDirectoryIfNecessary(os.path.dirname(pseudo_lock_path))
-  # This is somewhat of a racy hack because we don't have a good
-  # cross-platform file lock. If we get one, this should be refactored
-  # to use it.
+
+  # We need to make sure that there is no other process which is acquiring the
+  # lock on |base_path| and has not finished before proceeding further to create
+  # the |pseudo_lock_path|. Otherwise, |pseudo_lock_path| may be deleted by
+  # that other process after we create it in this process.
   while os.path.exists(pseudo_lock_path):
     time.sleep(0.1)
-  fd = os.open(pseudo_lock_path, os.O_RDONLY | os.O_CREAT)
-  if fcntl:
-    fcntl.flock(fd, fcntl.LOCK_EX)
+
+  # Guard the creation & acquiring lock of |pseudo_lock_path| by the global lock
+  # to make sure that there is no race condition on creating the file.
+  with open(_CLOUD_STORAGE_GLOBAL_LOCK) as global_file:
+    with lock.FileLock(global_file, lock.LOCK_EX):
+      fd = open(pseudo_lock_path, 'w')
+      lock.AcquireFileLock(fd, lock.LOCK_EX)
   try:
     yield
   finally:
-    if fcntl:
-      fcntl.flock(fd, fcntl.LOCK_UN)
+    lock.ReleaseFileLock(fd)
     try:
-      os.close(fd)
+      fd.close()
       os.remove(pseudo_lock_path)
     except OSError:
       # We don't care if the pseudo-lock gets removed elsewhere before we have
@@ -312,7 +322,7 @@
     PermissionError if the user does not have permission to access the bucket.
     NotFoundError if the file is not in the given bucket in cloud_storage.
   """
-  with _PseudoFileLock(download_path):
+  with _FileLock(download_path):
     if (os.path.exists(download_path) and
         CalculateHash(download_path) == file_hash):
       return False
@@ -331,7 +341,7 @@
     PermissionError if the user does not have permission to access the bucket.
     NotFoundError if the file is not in the given bucket in cloud_storage.
   """
-  with _PseudoFileLock(file_path):
+  with _FileLock(file_path):
     hash_path = file_path + '.sha1'
     if not os.path.exists(hash_path):
       logging.warning('Hash file not found: %s', hash_path)
diff --git a/catapult/common/py_utils/py_utils/cloud_storage_global_lock.py b/catapult/common/py_utils/py_utils/cloud_storage_global_lock.py
new file mode 100644
index 0000000..5718e10
--- /dev/null
+++ b/catapult/common/py_utils/py_utils/cloud_storage_global_lock.py
@@ -0,0 +1,5 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This file is used by cloud_storage._FileLock implementation, don't delete it!
diff --git a/catapult/catapult_base/catapult_base/cloud_storage_unittest.py b/catapult/common/py_utils/py_utils/cloud_storage_unittest.py
similarity index 93%
rename from catapult/catapult_base/catapult_base/cloud_storage_unittest.py
rename to catapult/common/py_utils/py_utils/cloud_storage_unittest.py
index fe2d24d..ce03867 100644
--- a/catapult/catapult_base/catapult_base/cloud_storage_unittest.py
+++ b/catapult/common/py_utils/py_utils/cloud_storage_unittest.py
@@ -9,9 +9,8 @@
 import mock
 from pyfakefs import fake_filesystem_unittest
 
-
-from catapult_base import cloud_storage
-from catapult_base import util
+import py_utils
+from py_utils import cloud_storage
 
 
 def _FakeReadHash(_):
@@ -33,7 +32,8 @@
     os.environ['DISABLE_CLOUD_STORAGE_IO'] = ''
     self.setUpPyfakefs()
     self.fs.CreateFile(
-        os.path.join(util.GetCatapultDir(), 'third_party', 'gsutil', 'gsutil'))
+        os.path.join(py_utils.GetCatapultDir(),
+                     'third_party', 'gsutil', 'gsutil'))
 
   def CreateFiles(self, file_paths):
     for f in file_paths:
@@ -50,7 +50,7 @@
     pass
 
   def _AssertRunCommandRaisesError(self, communicate_strs, error):
-    with mock.patch('catapult_base.cloud_storage.subprocess.Popen') as popen:
+    with mock.patch('py_utils.cloud_storage.subprocess.Popen') as popen:
       p_mock = mock.Mock()
       popen.return_value = p_mock
       p_mock.returncode = 1
@@ -94,7 +94,7 @@
     finally:
       cloud_storage._RunCommand = orig_run_command
 
-  @mock.patch('catapult_base.cloud_storage.subprocess')
+  @mock.patch('py_utils.cloud_storage.subprocess')
   def testExistsReturnsFalse(self, subprocess_mock):
     p_mock = mock.Mock()
     subprocess_mock.Popen.return_value = p_mock
@@ -105,10 +105,10 @@
     self.assertFalse(cloud_storage.Exists('fake bucket',
                                           'fake remote path'))
 
-  @mock.patch('catapult_base.cloud_storage.CalculateHash')
-  @mock.patch('catapult_base.cloud_storage._GetLocked')
-  @mock.patch('catapult_base.cloud_storage._PseudoFileLock')
-  @mock.patch('catapult_base.cloud_storage.os.path')
+  @mock.patch('py_utils.cloud_storage.CalculateHash')
+  @mock.patch('py_utils.cloud_storage._GetLocked')
+  @mock.patch('py_utils.cloud_storage._FileLock')
+  @mock.patch('py_utils.cloud_storage.os.path')
   def testGetIfHashChanged(self, path_mock, unused_lock_mock, get_mock,
                            calc_hash_mock):
     path_mock.exists.side_effect = [False, True, True]
@@ -141,7 +141,7 @@
     calc_hash_mock.reset_mock()
     get_mock.reset_mock()
 
-  @mock.patch('catapult_base.cloud_storage._PseudoFileLock')
+  @mock.patch('py_utils.cloud_storage._FileLock')
   def testGetIfChanged(self, unused_lock_mock):
     orig_get = cloud_storage._GetLocked
     orig_read_hash = cloud_storage.ReadHash
@@ -214,7 +214,7 @@
       cloud_storage._RunCommand = orig_run_command
 
 
-  @mock.patch('catapult_base.cloud_storage._PseudoFileLock')
+  @mock.patch('py_utils.cloud_storage._FileLock')
   def testDisableCloudStorageIo(self, unused_lock_mock):
     os.environ['DISABLE_CLOUD_STORAGE_IO'] = '1'
     dir_path = 'real_dir_path'
diff --git a/catapult/catapult_base/catapult_base/dependency_util.py b/catapult/common/py_utils/py_utils/dependency_util.py
similarity index 94%
rename from catapult/catapult_base/catapult_base/dependency_util.py
rename to catapult/common/py_utils/py_utils/dependency_util.py
index 64bd558..d3cfe89 100644
--- a/catapult/catapult_base/catapult_base/dependency_util.py
+++ b/catapult/common/py_utils/py_utils/dependency_util.py
@@ -6,7 +6,7 @@
 import platform
 import sys
 
-from catapult_base import util
+import py_utils
 
 def GetOSAndArchForCurrentDesktopPlatform():
   os_name = GetOSNameForCurrentDesktopPlatform()
@@ -14,7 +14,7 @@
 
 
 def GetOSNameForCurrentDesktopPlatform():
-  if util.IsRunningOnCrosDevice():
+  if py_utils.IsRunningOnCrosDevice():
     return 'chromeos'
   if sys.platform.startswith('linux'):
     return 'linux'
diff --git a/catapult/catapult_base/catapult_base/lock.py b/catapult/common/py_utils/py_utils/lock.py
similarity index 100%
rename from catapult/catapult_base/catapult_base/lock.py
rename to catapult/common/py_utils/py_utils/lock.py
diff --git a/catapult/catapult_base/catapult_base/lock_unittest.py b/catapult/common/py_utils/py_utils/lock_unittest.py
similarity index 99%
rename from catapult/catapult_base/catapult_base/lock_unittest.py
rename to catapult/common/py_utils/py_utils/lock_unittest.py
index e59422d..a260621 100644
--- a/catapult/catapult_base/catapult_base/lock_unittest.py
+++ b/catapult/common/py_utils/py_utils/lock_unittest.py
@@ -9,7 +9,7 @@
 import tempfile
 
 
-from catapult_base import lock
+from py_utils import lock
 
 
 def _AppendTextToFile(file_name):
diff --git a/catapult/catapult_base/catapult_base/util_unittest.py b/catapult/common/py_utils/py_utils/py_utils_unittest.py
similarity index 71%
rename from catapult/catapult_base/catapult_base/util_unittest.py
rename to catapult/common/py_utils/py_utils/py_utils_unittest.py
index 72f1fe6..e045bca 100644
--- a/catapult/catapult_base/catapult_base/util_unittest.py
+++ b/catapult/common/py_utils/py_utils/py_utils_unittest.py
@@ -5,18 +5,18 @@
 import sys
 import unittest
 
-from catapult_base import util
+import py_utils
 
 
 class PathTest(unittest.TestCase):
 
   def testIsExecutable(self):
-    self.assertFalse(util.IsExecutable('nonexistent_file'))
+    self.assertFalse(py_utils.IsExecutable('nonexistent_file'))
     # We use actual files on disk instead of pyfakefs because the executable is
     # set different on win that posix platforms and pyfakefs doesn't support
     # win platform well.
-    self.assertFalse(util.IsExecutable(_GetFileInTestDir('foo.txt')))
-    self.assertTrue(util.IsExecutable(sys.executable))
+    self.assertFalse(py_utils.IsExecutable(_GetFileInTestDir('foo.txt')))
+    self.assertTrue(py_utils.IsExecutable(sys.executable))
 
 
 def _GetFileInTestDir(file_name):
diff --git a/catapult/catapult_base/catapult_base/refactor/__init__.py b/catapult/common/py_utils/py_utils/refactor/__init__.py
similarity index 87%
rename from catapult/catapult_base/catapult_base/refactor/__init__.py
rename to catapult/common/py_utils/py_utils/refactor/__init__.py
index 406dc6f..e3fbb5f 100644
--- a/catapult/catapult_base/catapult_base/refactor/__init__.py
+++ b/catapult/common/py_utils/py_utils/refactor/__init__.py
@@ -12,8 +12,8 @@
 import multiprocessing
 
 # pylint: disable=wildcard-import
-from catapult_base.refactor.annotated_symbol import *
-from catapult_base.refactor.module import Module
+from py_utils.refactor.annotated_symbol import *
+from py_utils.refactor.module import Module
 
 
 def _TransformFile(transform, file_path):
diff --git a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/__init__.py b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/__init__.py
similarity index 82%
rename from catapult/catapult_base/catapult_base/refactor/annotated_symbol/__init__.py
rename to catapult/common/py_utils/py_utils/refactor/annotated_symbol/__init__.py
index 32858b5..610bc15 100644
--- a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/__init__.py
+++ b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/__init__.py
@@ -3,11 +3,11 @@
 # found in the LICENSE file.
 
 # pylint: disable=wildcard-import
-from catapult_base.refactor.annotated_symbol.class_definition import *
-from catapult_base.refactor.annotated_symbol.function_definition import *
-from catapult_base.refactor.annotated_symbol.import_statement import *
-from catapult_base.refactor.annotated_symbol.reference import *
-from catapult_base.refactor import snippet
+from py_utils.refactor.annotated_symbol.class_definition import *
+from py_utils.refactor.annotated_symbol.function_definition import *
+from py_utils.refactor.annotated_symbol.import_statement import *
+from py_utils.refactor.annotated_symbol.reference import *
+from py_utils.refactor import snippet
 
 
 __all__ = [
diff --git a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/base_symbol.py b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/base_symbol.py
similarity index 95%
rename from catapult/catapult_base/catapult_base/refactor/annotated_symbol/base_symbol.py
rename to catapult/common/py_utils/py_utils/refactor/annotated_symbol/base_symbol.py
index 80fbc0b..2e28e89 100644
--- a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/base_symbol.py
+++ b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/base_symbol.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-from catapult_base.refactor import snippet
+from py_utils.refactor import snippet
 
 
 class AnnotatedSymbol(snippet.Symbol):
diff --git a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/class_definition.py b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/class_definition.py
similarity index 94%
rename from catapult/catapult_base/catapult_base/refactor/annotated_symbol/class_definition.py
rename to catapult/common/py_utils/py_utils/refactor/annotated_symbol/class_definition.py
index f164b4c..814958f 100644
--- a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/class_definition.py
+++ b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/class_definition.py
@@ -4,7 +4,7 @@
 
 import symbol
 
-from catapult_base.refactor.annotated_symbol import base_symbol
+from py_utils.refactor.annotated_symbol import base_symbol
 
 
 __all__ = [
diff --git a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/function_definition.py b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/function_definition.py
similarity index 94%
rename from catapult/catapult_base/catapult_base/refactor/annotated_symbol/function_definition.py
rename to catapult/common/py_utils/py_utils/refactor/annotated_symbol/function_definition.py
index acdc21e..50a1672 100644
--- a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/function_definition.py
+++ b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/function_definition.py
@@ -4,7 +4,7 @@
 
 import symbol
 
-from catapult_base.refactor.annotated_symbol import base_symbol
+from py_utils.refactor.annotated_symbol import base_symbol
 
 
 __all__ = [
diff --git a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/import_statement.py b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/import_statement.py
similarity index 98%
rename from catapult/catapult_base/catapult_base/refactor/annotated_symbol/import_statement.py
rename to catapult/common/py_utils/py_utils/refactor/annotated_symbol/import_statement.py
index e598f5a..5c38c10 100644
--- a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/import_statement.py
+++ b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/import_statement.py
@@ -7,8 +7,8 @@
 import symbol
 import token
 
-from catapult_base.refactor.annotated_symbol import base_symbol
-from catapult_base.refactor import snippet
+from py_utils.refactor.annotated_symbol import base_symbol
+from py_utils.refactor import snippet
 
 
 __all__ = [
diff --git a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/reference.py b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/reference.py
similarity index 94%
rename from catapult/catapult_base/catapult_base/refactor/annotated_symbol/reference.py
rename to catapult/common/py_utils/py_utils/refactor/annotated_symbol/reference.py
index b57c4f5..757c57f 100644
--- a/catapult/catapult_base/catapult_base/refactor/annotated_symbol/reference.py
+++ b/catapult/common/py_utils/py_utils/refactor/annotated_symbol/reference.py
@@ -6,8 +6,8 @@
 import symbol
 import token
 
-from catapult_base.refactor.annotated_symbol import base_symbol
-from catapult_base.refactor import snippet
+from py_utils.refactor.annotated_symbol import base_symbol
+from py_utils.refactor import snippet
 
 
 __all__ = [
diff --git a/catapult/catapult_base/catapult_base/refactor/module.py b/catapult/common/py_utils/py_utils/refactor/module.py
similarity index 94%
rename from catapult/catapult_base/catapult_base/refactor/module.py
rename to catapult/common/py_utils/py_utils/refactor/module.py
index 00d7466..d6eae00 100644
--- a/catapult/catapult_base/catapult_base/refactor/module.py
+++ b/catapult/common/py_utils/py_utils/refactor/module.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-from catapult_base.refactor import annotated_symbol
+from py_utils.refactor import annotated_symbol
 
 
 class Module(object):
diff --git a/catapult/catapult_base/catapult_base/refactor/offset_token.py b/catapult/common/py_utils/py_utils/refactor/offset_token.py
similarity index 100%
rename from catapult/catapult_base/catapult_base/refactor/offset_token.py
rename to catapult/common/py_utils/py_utils/refactor/offset_token.py
diff --git a/catapult/catapult_base/catapult_base/refactor/snippet.py b/catapult/common/py_utils/py_utils/refactor/snippet.py
similarity index 98%
rename from catapult/catapult_base/catapult_base/refactor/snippet.py
rename to catapult/common/py_utils/py_utils/refactor/snippet.py
index 2277261..b98561a 100644
--- a/catapult/catapult_base/catapult_base/refactor/snippet.py
+++ b/catapult/common/py_utils/py_utils/refactor/snippet.py
@@ -8,7 +8,7 @@
 import token
 import tokenize
 
-from catapult_base.refactor import offset_token
+from py_utils.refactor import offset_token
 
 
 class Snippet(object):
diff --git a/catapult/catapult_base/catapult_base/refactor_util/__init__.py b/catapult/common/py_utils/py_utils/refactor_util/__init__.py
similarity index 100%
rename from catapult/catapult_base/catapult_base/refactor_util/__init__.py
rename to catapult/common/py_utils/py_utils/refactor_util/__init__.py
diff --git a/catapult/catapult_base/catapult_base/refactor_util/move.py b/catapult/common/py_utils/py_utils/refactor_util/move.py
similarity index 98%
rename from catapult/catapult_base/catapult_base/refactor_util/move.py
rename to catapult/common/py_utils/py_utils/refactor_util/move.py
index 9493e3b..d68f93b 100644
--- a/catapult/catapult_base/catapult_base/refactor_util/move.py
+++ b/catapult/common/py_utils/py_utils/refactor_util/move.py
@@ -6,7 +6,7 @@
 import os
 import sys
 
-from catapult_base import refactor
+from py_utils import refactor
 
 
 def Run(sources, target, files_to_update):
diff --git a/catapult/catapult_base/catapult_base/test_data/foo.txt b/catapult/common/py_utils/py_utils/test_data/foo.txt
similarity index 100%
rename from catapult/catapult_base/catapult_base/test_data/foo.txt
rename to catapult/common/py_utils/py_utils/test_data/foo.txt
diff --git a/catapult/catapult_base/catapult_base/xvfb.py b/catapult/common/py_utils/py_utils/xvfb.py
similarity index 100%
rename from catapult/catapult_base/catapult_base/xvfb.py
rename to catapult/common/py_utils/py_utils/xvfb.py
diff --git a/catapult/dashboard/dashboard/associate_alerts.py b/catapult/dashboard/dashboard/associate_alerts.py
index 02b7feb..1086831 100644
--- a/catapult/dashboard/dashboard/associate_alerts.py
+++ b/catapult/dashboard/dashboard/associate_alerts.py
@@ -85,7 +85,7 @@
 
   def _FetchBugs(self):
     http = oauth2_decorator.DECORATOR.http()
-    issue_tracker = issue_tracker_service.IssueTrackerService(http=http)
+    issue_tracker = issue_tracker_service.IssueTrackerService(http)
     response = issue_tracker.List(
         q='opened-after:today-5', label='Type-Bug-Regression,Performance',
         sort='-id')
diff --git a/catapult/dashboard/dashboard/auto_bisect.py b/catapult/dashboard/dashboard/auto_bisect.py
index 5700787..75affc4 100644
--- a/catapult/dashboard/dashboard/auto_bisect.py
+++ b/catapult/dashboard/dashboard/auto_bisect.py
@@ -95,7 +95,6 @@
     return False
   bisect_job.config = new_bisect_job.config
   bisect_job.bot = new_bisect_job.bot
-  bisect_job.use_buildbucket = new_bisect_job.use_buildbucket
   bisect_job.put()
   try:
     start_try_job.PerformBisect(bisect_job)
@@ -166,9 +165,6 @@
   if not bisect_bot or '_' not in bisect_bot:
     raise NotBisectableError('Could not select a bisect bot.')
 
-  use_recipe = bool(start_try_job.GetBisectDirectorForTester(
-      test.master_name, bisect_bot))
-
   new_bisect_config = start_try_job.GetBisectConfig(
       bisect_bot=bisect_bot,
       master_name=test.master_name,
@@ -179,8 +175,7 @@
       repeat_count=10,
       max_time_minutes=20,
       bug_id=bug_id,
-      use_archive='true',
-      use_buildbucket=use_recipe)
+      use_archive='true')
 
   if 'error' in new_bisect_config:
     raise NotBisectableError('Could not make a valid config.')
@@ -193,8 +188,7 @@
       bug_id=bug_id,
       master_name=test.master_name,
       internal_only=test.internal_only,
-      job_type='bisect',
-      use_buildbucket=use_recipe)
+      job_type='bisect')
 
   return bisect_job
 
diff --git a/catapult/dashboard/dashboard/auto_bisect_test.py b/catapult/dashboard/dashboard/auto_bisect_test.py
index b3fc085..1d32c0c 100644
--- a/catapult/dashboard/dashboard/auto_bisect_test.py
+++ b/catapult/dashboard/dashboard/auto_bisect_test.py
@@ -10,9 +10,7 @@
 import webtest
 
 from dashboard import auto_bisect
-from dashboard import namespaced_stored_object
 from dashboard import request_handler
-from dashboard import start_try_job
 from dashboard import testing_common
 from dashboard import utils
 from dashboard.models import anomaly
@@ -29,14 +27,6 @@
     testing_common.SetIsInternalUser('internal@chromium.org', True)
     self.testapp = webtest.TestApp(app)
     self.SetCurrentUser('internal@chromium.org')
-    namespaced_stored_object.Set(
-        start_try_job._TESTER_DIRECTOR_MAP_KEY,
-        {
-            'ChromiumPerf': {
-                'linux_perf_tester': 'linux_perf_bisector',
-                'win64_nv_tester': 'linux_perf_bisector',
-            }
-        })
 
   @mock.patch.object(auto_bisect.start_try_job, 'PerformBisect')
   def testPost_FailedJobRunTwice_JobRestarted(self, mock_perform_bisect):
@@ -85,7 +75,7 @@
         last_ran_timestamp=now, run_count=1).put()
     try_job.TryJob(
         bug_id=777, status='started',
-        last_ran_timestamp=now, use_buildbucket=True, run_count=1).put()
+        last_ran_timestamp=now, run_count=1).put()
     try_job.TryJob(
         bug_id=555, status=None,
         last_ran_timestamp=now, run_count=1).put()
@@ -99,14 +89,6 @@
   def setUp(self):
     super(StartNewBisectForBugTest, self).setUp()
     self.SetCurrentUser('internal@chromium.org')
-    namespaced_stored_object.Set(
-        start_try_job._TESTER_DIRECTOR_MAP_KEY,
-        {
-            'ChromiumPerf': {
-                'linux_perf_tester': 'linux_perf_bisector',
-                'win64_nv_tester': 'linux_perf_bisector',
-            }
-        })
 
   @mock.patch.object(auto_bisect.start_try_job, 'PerformBisect')
   def testStartNewBisectForBug_StartsBisect(self, mock_perform_bisect):
diff --git a/catapult/dashboard/dashboard/auto_triage.py b/catapult/dashboard/dashboard/auto_triage.py
index 6487edc..dcb7f90 100644
--- a/catapult/dashboard/dashboard/auto_triage.py
+++ b/catapult/dashboard/dashboard/auto_triage.py
@@ -155,7 +155,7 @@
     comment = cls._RecoveredBugComment(bug_id)
 
     issue_tracker = issue_tracker_service.IssueTrackerService(
-        additional_credentials=utils.ServiceAccountCredentials())
+        utils.ServiceAccountHttp())
     issue_tracker.AddBugComment(bug_id, comment)
 
   @classmethod
diff --git a/catapult/dashboard/dashboard/auto_triage_test.py b/catapult/dashboard/dashboard/auto_triage_test.py
index 82f90ad..13297af 100644
--- a/catapult/dashboard/dashboard/auto_triage_test.py
+++ b/catapult/dashboard/dashboard/auto_triage_test.py
@@ -20,7 +20,7 @@
 
 
 @mock.patch('apiclient.discovery.build', mock.MagicMock())
-@mock.patch.object(utils, 'ServiceAccountCredentials', mock.MagicMock())
+@mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
 @mock.patch.object(utils, 'TickMonitoringCustomMetric', mock.MagicMock())
 class AutoTriageTest(testing_common.TestCase):
 
diff --git a/catapult/dashboard/dashboard/bisect_fyi.py b/catapult/dashboard/dashboard/bisect_fyi.py
index c4e1807..5765158 100644
--- a/catapult/dashboard/dashboard/bisect_fyi.py
+++ b/catapult/dashboard/dashboard/bisect_fyi.py
@@ -99,15 +99,12 @@
     raise auto_bisect.NotBisectableError('Could not select a bisect bot.')
 
   config_python_string = utils.BisectConfigPythonString(bisect_config)
-  use_recipe = bool(start_try_job.GetBisectDirectorForTester(
-      bisect_config.get('master_name', 'ChromiumPerf'), bisect_bot))
   bisect_job = try_job.TryJob(
       bot=bisect_bot,
       config=config_python_string,
       bug_id=bisect_config.get('bug_id', -1),
       master_name=bisect_config.get('master_name', 'ChromiumPerf'),
       job_type='bisect-fyi',
-      use_buildbucket=use_recipe,
       job_name=test_name)
 
   return bisect_job
diff --git a/catapult/dashboard/dashboard/bisect_fyi_test.py b/catapult/dashboard/dashboard/bisect_fyi_test.py
index 5019087..0993e47 100644
--- a/catapult/dashboard/dashboard/bisect_fyi_test.py
+++ b/catapult/dashboard/dashboard/bisect_fyi_test.py
@@ -10,8 +10,6 @@
 
 from dashboard import bisect_fyi
 from dashboard import issue_tracker_service
-from dashboard import namespaced_stored_object
-from dashboard import start_try_job
 from dashboard import stored_object
 from dashboard import testing_common
 from dashboard import utils
@@ -62,7 +60,7 @@
 
 
 @mock.patch('apiclient.discovery.build', mock.MagicMock())
-@mock.patch.object(utils, 'ServiceAccountCredentials', mock.MagicMock())
+@mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
 class BisectFYITest(testing_common.TestCase):
 
   def setUp(self):
@@ -74,14 +72,6 @@
         bisect_fyi._BISECT_FYI_CONFIGS_KEY, TEST_FYI_CONFIGS)
     testing_common.SetIsInternalUser('internal@chromium.org', True)
     self.SetCurrentUser('internal@chromium.org')
-    namespaced_stored_object.Set(
-        start_try_job._TESTER_DIRECTOR_MAP_KEY,
-        {
-            'ChromiumPerf': {
-                'linux_perf_bisect': 'linux_perf_bisector',
-                'win_x64_perf_bisect': 'win_x64_perf_bisect',
-            }
-        })
 
   @mock.patch.object(
       issue_tracker_service.IssueTrackerService, 'AddBugComment')
diff --git a/catapult/dashboard/dashboard/buildbucket_job.py b/catapult/dashboard/dashboard/buildbucket_job.py
index 76178ec..028bd9a 100644
--- a/catapult/dashboard/dashboard/buildbucket_job.py
+++ b/catapult/dashboard/dashboard/buildbucket_job.py
@@ -10,7 +10,7 @@
 class BisectJob(object):
   """A buildbot bisect job started and monitored through buildbucket."""
 
-  def __init__(self, try_job_id, bisect_director, good_revision, bad_revision,
+  def __init__(self, try_job_id, good_revision, bad_revision,
                test_command, metric, repeats, timeout_minutes, bug_id,
                gs_bucket, recipe_tester_name, builder_host=None,
                builder_port=None, test_type='perf',
@@ -21,7 +21,6 @@
                        'construction was not given or was given with a None '
                        'value.')
     self.try_job_id = try_job_id
-    self.bisect_director = bisect_director
     self.good_revision = good_revision
     self.bad_revision = bad_revision
     self.command = BisectJob.EnsureCommandPath(test_command)
@@ -69,7 +68,7 @@
           self.required_initial_confidence)
     properties = {'bisect_config': bisect_config}
     parameters = {
-        'builder_name': self.bisect_director,
+        'builder_name': self.recipe_tester_name,
         'properties': properties,
     }
     return parameters
diff --git a/catapult/dashboard/dashboard/buildbucket_job_test.py b/catapult/dashboard/dashboard/buildbucket_job_test.py
index 7730015..0a7f916 100644
--- a/catapult/dashboard/dashboard/buildbucket_job_test.py
+++ b/catapult/dashboard/dashboard/buildbucket_job_test.py
@@ -14,7 +14,6 @@
     super(BuildbucketJobTest, self).setUp()
     self._args_base = {
         'try_job_id': 1,
-        'bisect_director': 'linux_perf_bisector',
         'recipe_tester_name': 'linux_perf_bisect',
         'good_revision': '1',
         'bad_revision': '2',
diff --git a/catapult/dashboard/dashboard/buildbucket_service.py b/catapult/dashboard/dashboard/buildbucket_service.py
index e5d2be6..ab6d72f 100644
--- a/catapult/dashboard/dashboard/buildbucket_service.py
+++ b/catapult/dashboard/dashboard/buildbucket_service.py
@@ -7,7 +7,6 @@
 import json
 
 from apiclient import discovery
-import httplib2
 
 from dashboard import utils
 
@@ -19,62 +18,30 @@
 _BUCKET_NAME = 'master.tryserver.chromium.perf'
 
 
-def _DiscoverService():
+def _DiscoverService(http):
   return discovery.build('buildbucket', 'v1',
-                         discoveryServiceUrl=_DISCOVERY_URL)
+                         discoveryServiceUrl=_DISCOVERY_URL, http=http)
 
 
-class _AuthenticatedHttp(object):
-  """Provides access via its constructor to a singleton authenticated http."""
-
-  _singleton = None
-  _singleton_credentials = None
-
-  def __new__(cls, credentials):
-    if credentials and credentials != cls._singleton_credentials:
-      cls._singleton_credentials = credentials
-      cls._MakeSingleton(credentials)
-    if not cls._singleton:
-      cls._MakeSingleton()
-    assert cls._singleton
-    return cls._singleton
-
-  @classmethod
-  def _MakeSingleton(cls, override_credentials=None):
-    """Instantiates the singleton."""
-    # Uses rietveld credentials to authorize an http client. Note this same
-    # account is authorized for buildbucket.
-    cls._singleton = httplib2.Http()
-    if override_credentials:
-      credentials = override_credentials
-    else:
-      credentials = utils.ServiceAccountCredentials()
-
-    # If we cannot pull the credentials from ndb we simply use the unauthorized
-    # client. This useful when running a local dev server.
-    if credentials:
-      credentials.authorize(cls._singleton)
-
-
-def PutJob(job, bucket=_BUCKET_NAME, credentials=None):
+def PutJob(job, bucket=_BUCKET_NAME):
   """Creates a job via buildbucket's API."""
   parameters = job.GetBuildParameters()
-  service = _DiscoverService()
+  service = _DiscoverService(utils.ServiceAccountHttp())
   request = service.put(
       body={
           'bucket': bucket,
           'parameters_json': json.dumps(parameters),
       })
-  response_content = request.execute(http=_AuthenticatedHttp(credentials))
+  response_content = request.execute()
   job.response_fields = response_content.get('build')
   return job.response_fields.get('id')
 
 
-def GetJobStatus(job_id, credentials=None):
+def GetJobStatus(job_id):
   """Gets the details of a job via buildbucket's API."""
-  service = _DiscoverService()
+  service = _DiscoverService(utils.ServiceAccountHttp())
   request = service.get(id=job_id)
-  response_content = request.execute(http=_AuthenticatedHttp(credentials))
+  response_content = request.execute()
   return response_content
 
 # TODO(robertocn): Implement CancelJobByID
diff --git a/catapult/dashboard/dashboard/buildbucket_service_test.py b/catapult/dashboard/dashboard/buildbucket_service_test.py
index 5cb1609..30c06a3 100644
--- a/catapult/dashboard/dashboard/buildbucket_service_test.py
+++ b/catapult/dashboard/dashboard/buildbucket_service_test.py
@@ -5,13 +5,11 @@
 import json
 import unittest
 
-from oauth2client import client
 import mock
 
 from dashboard import buildbucket_service
 from dashboard import testing_common
-
-
+from dashboard import utils
 
 
 class BuildbucketServiceTest(testing_common.TestCase):
@@ -32,8 +30,7 @@
     def __init__(self):
       pass
 
-    def execute(self, http):
-      _ = http
+    def execute(self):
       return {'build': {'id': 'fake_id'}}
 
   class FakeService(object):
@@ -53,20 +50,12 @@
     super(BuildbucketServiceTest, self).setUp()
     self.fake_service = BuildbucketServiceTest.FakeService()
 
-  @staticmethod
-  def FakeCredentials():
-    return client.SignedJwtAssertionCredentials(
-        'service_account@foo.org', 'private key', 'bogus scope')
-
-  @mock.patch('oauth2client.client.SignedJwtAssertionCredentials',
-              mock.MagicMock())
-  @mock.patch('httplib2.Http', mock.MagicMock())
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   def testPutJob(self):
-    fake_creds = BuildbucketServiceTest.FakeCredentials()
     fake_job = BuildbucketServiceTest.FakeJob()
     with mock.patch('apiclient.discovery.build', mock.MagicMock(
         return_value=self.fake_service)):
-      fake_id = buildbucket_service.PutJob(fake_job, credentials=fake_creds)
+      fake_id = buildbucket_service.PutJob(fake_job)
 
     # Ensure the request was composed
     request = self.fake_service.bodies[0]
@@ -79,15 +68,12 @@
     # Ensure the result is exactly what we plugged in.
     self.assertEqual(fake_id, 'fake_id')
 
-  @mock.patch('oauth2client.client.SignedJwtAssertionCredentials',
-              mock.MagicMock())
-  @mock.patch('httplib2.Http', mock.MagicMock())
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   def testGetJobStatus(self):
     fake_id = '1234567890'
-    fake_creds = BuildbucketServiceTest.FakeCredentials()
     with mock.patch('apiclient.discovery.build', mock.MagicMock(
         return_value=self.fake_service)):
-      _ = buildbucket_service.GetJobStatus(fake_id, credentials=fake_creds)
+      _ = buildbucket_service.GetJobStatus(fake_id)
 
       # Ensure the given job id was passed to the request.
       request = self.fake_service.bodies[0]
diff --git a/catapult/dashboard/dashboard/delete_test_data.py b/catapult/dashboard/dashboard/delete_test_data.py
index 8c0fb3f..0be52f2 100644
--- a/catapult/dashboard/dashboard/delete_test_data.py
+++ b/catapult/dashboard/dashboard/delete_test_data.py
@@ -66,22 +66,27 @@
 
     pattern = self.request.get('pattern')
     test_key = self.request.get('test_key')
+    notify = self.request.get('notify', 'true')
+    if notify.lower() == 'true':
+      notify = True
+    else:
+      notify = False
 
     if pattern:
       try:
-        _AddTasksForPattern(pattern)
+        _AddTasksForPattern(pattern, notify)
         self.RenderHtml('result.html', {
             'headline': 'Test deletion task started.'
         })
       except BadInputPatternError as error:
         self.ReportError('Error: %s' % error.message, status=400)
     elif test_key:
-      _DeleteTest(test_key)
+      _DeleteTest(test_key, notify)
     else:
       self.ReportError('Missing required parameters of /delete_test_data.')
 
 
-def _AddTasksForPattern(pattern):
+def _AddTasksForPattern(pattern, notify):
   """Enumerates individual test deletion tasks and enqueues them.
 
   Typically, this function is called by a request initiated by the user.
@@ -90,23 +95,26 @@
 
   Args:
     pattern: Test path pattern for TestMetadatas to delete.
+    notify: If true, send an email notification for monitored test deletion.
 
   Raises:
     BadInputPatternError: Something was wrong with the input pattern.
   """
   tests = list_tests.GetTestsMatchingPattern(pattern, list_entities=True)
   for test in tests:
-    _AddTaskForTest(test)
+    _AddTaskForTest(test, notify)
 
 
-def _AddTaskForTest(test):
+def _AddTaskForTest(test, notify):
   """Adds a task to the task queue to delete a TestMetadata and its descendants.
 
   Args:
     test: A TestMetadata entity.
+    notify: If true, send an email notification for monitored test deletion.
   """
   task_params = {
       'test_key': test.key.urlsafe(),
+      'notify': 'true' if notify else 'false',
   }
   taskqueue.add(
       url='/delete_test_data',
@@ -114,7 +122,7 @@
       queue_name=_TASK_QUEUE_NAME)
 
 
-def _DeleteTest(test_key_urlsafe):
+def _DeleteTest(test_key_urlsafe, notify):
   """Deletes data for one TestMetadata.
 
   This gets all the descendant TestMetadata entities, and deletes their Row
@@ -123,10 +131,11 @@
   doesn't finish, it will re-add itself to the same task queue and retry.
   """
   test_key = ndb.Key(urlsafe=test_key_urlsafe)
-  finished = _DeleteTestData(test_key)
+  finished = _DeleteTestData(test_key, notify)
   if not finished:
     task_params = {
         'test_key': test_key_urlsafe,
+        'notify': 'true' if notify else 'false',
     }
     taskqueue.add(
         url='/delete_test_data',
@@ -134,7 +143,7 @@
         queue_name=_TASK_QUEUE_NAME)
 
 
-def _DeleteTestData(test_key):
+def _DeleteTestData(test_key, notify):
   logging.info('DELETING TEST DATA FOR %s', utils.TestPath(test_key))
   futures = []
   num_tests_processed = 0
@@ -154,7 +163,7 @@
   if finished:
     descendants = ndb.get_multi(descendants)
     for descendant in descendants:
-      _SendNotificationEmail(descendant)
+      _SendNotificationEmail(descendant, notify)
       futures.append(descendant.key.delete_async())
 
 
@@ -162,13 +171,14 @@
   return finished
 
 
-def _SendNotificationEmail(test):
+def _SendNotificationEmail(test, notify):
   """Send a notification email about the test deletion.
 
   Args:
     test_key: Key of the TestMetadata that's about to be deleted.
+    notify: If true, send an email notification for monitored test deletion.
   """
-  if not test or not test.sheriff:
+  if not test or not test.sheriff or not notify:
     return
   body = _SHERIFF_ALERT_EMAIL_BODY % {
       'test_path': utils.TestPath(test.key),
diff --git a/catapult/dashboard/dashboard/delete_test_data_test.py b/catapult/dashboard/dashboard/delete_test_data_test.py
index 00253fa..6822271 100644
--- a/catapult/dashboard/dashboard/delete_test_data_test.py
+++ b/catapult/dashboard/dashboard/delete_test_data_test.py
@@ -11,6 +11,7 @@
 from dashboard import testing_common
 from dashboard import utils
 from dashboard.models import graph_data
+from dashboard.models import sheriff
 
 # Masters, bots and test names to add to the mock datastore.
 _MOCK_DATA = [
@@ -157,6 +158,63 @@
         'ChromiumPerf/mac/moz/read_op_b/r_op_b',
     ])
 
+  def testPost_DeleteMonitoredTest_SendsEmail(self):
+    self._AddMockData()
+    # Add a sheriff for one test.
+    test_path = 'ChromiumPerf/mac/SunSpider/Total/t'
+    test = utils.TestKey(test_path).get()
+    sheriff_key = sheriff.Sheriff(
+        id='Perf Sheriff Mac', email='sullivan@google.com',
+        patterns=['*/*/*/*/*']).put()
+    test.sheriff = sheriff_key
+    test.put()
+
+    self.testapp.post('/delete_test_data', {
+        'pattern': 'ChromiumPerf/mac/SunSpider/Total/t',
+    })
+    self.ExecuteTaskQueueTasks(
+        '/delete_test_data', delete_test_data._TASK_QUEUE_NAME)
+    self._AssertNotExists([
+        'ChromiumPerf/mac/SunSpider/Total/t',
+    ])
+
+    # Check the emails that were sent.
+    messages = self.mail_stub.get_sent_messages()
+    self.assertEqual(1, len(messages))
+    self.assertEqual('gasper-alerts@google.com', messages[0].sender)
+    self.assertEqual('chrome-performance-monitoring-alerts@google.com',
+                     messages[0].to)
+    self.assertEqual('Sheriffed Test Deleted', messages[0].subject)
+    body = str(messages[0].body)
+    self.assertIn(
+        'test ChromiumPerf/mac/SunSpider/Total/t has been DELETED', body)
+
+  def testPost_DeleteMonitoredTestNotifyFalse_DoesNotSendEmail(self):
+    self._AddMockData()
+
+    # Add a sheriff for one test.
+    test_path = 'ChromiumPerf/mac/SunSpider/Total/t'
+    test = utils.TestKey(test_path).get()
+    sheriff_key = sheriff.Sheriff(
+        id='Perf Sheriff Mac', email='sullivan@google.com',
+        patterns=['*/*/*/*/*']).put()
+    test.sheriff = sheriff_key
+    test.put()
+
+    self.testapp.post('/delete_test_data', {
+        'pattern': 'ChromiumPerf/mac/SunSpider/Total/t',
+        'notify': 'false',
+    })
+    self.ExecuteTaskQueueTasks(
+        '/delete_test_data', delete_test_data._TASK_QUEUE_NAME)
+    self._AssertNotExists([
+        'ChromiumPerf/mac/SunSpider/Total/t',
+    ])
+
+    # Check the emails that were sent.
+    messages = self.mail_stub.get_sent_messages()
+    self.assertEqual(0, len(messages))
+
 
 if __name__ == '__main__':
   unittest.main()
diff --git a/catapult/dashboard/dashboard/edit_anomalies_test.py b/catapult/dashboard/dashboard/edit_anomalies_test.py
index 9ac3235..428b43a 100644
--- a/catapult/dashboard/dashboard/edit_anomalies_test.py
+++ b/catapult/dashboard/dashboard/edit_anomalies_test.py
@@ -5,6 +5,7 @@
 import json
 import unittest
 
+import mock
 import webapp2
 import webtest
 
@@ -12,6 +13,7 @@
 
 from dashboard import edit_anomalies
 from dashboard import testing_common
+from dashboard import utils
 from dashboard import xsrf
 from dashboard.models import anomaly
 
@@ -55,6 +57,7 @@
     }, status=403)
     self.assertIsNone(anomaly_keys[0].get().bug_id)
 
+  @mock.patch.object(utils, 'IsGroupMember', mock.MagicMock(return_value=False))
   def testPost_LoggedIntoInvalidDomain_DoesNotModifyAnomaly(self):
     anomaly_keys = self._AddAnomaliesToDataStore()
     self.SetCurrentUser('foo@bar.com')
diff --git a/catapult/dashboard/dashboard/elements/chart-container.html b/catapult/dashboard/dashboard/elements/chart-container.html
index a15f971..8d09a02 100644
--- a/catapult/dashboard/dashboard/elements/chart-container.html
+++ b/catapult/dashboard/dashboard/elements/chart-container.html
@@ -892,19 +892,7 @@
             this.json['error_bars'][nextIndex] = newJson['error_bars'][index];
           }
 
-          // Sort the series by path.
-          var sortedSeriesArray = [];
-          for (var k in newSeries) {
-            sortedSeriesArray.push([parseInt(k), newSeries[k]]);
-          }
-          var unsortedSeriesArray = sortedSeriesArray.slice().sort(
-              (a, b) => a[0] - b[0]);
-          sortedSeriesArray.sort((a, b) => a[1].path.localeCompare(b[1].path));
-          var sortedSeries = {};
-          for (var i = 0; i < sortedSeriesArray.length; i++) {
-            sortedSeries[unsortedSeriesArray[i][0]] = sortedSeriesArray[i][1];
-          }
-          this.updateForNewSeries(sortedSeries, isSelected);
+          this.updateForNewSeries(newSeries, isSelected);
         },
 
         /**
diff --git a/catapult/dashboard/dashboard/elements/chart-legend-tooltip-test.html b/catapult/dashboard/dashboard/elements/chart-legend-tooltip-test.html
new file mode 100644
index 0000000..b878fe4
--- /dev/null
+++ b/catapult/dashboard/dashboard/elements/chart-legend-tooltip-test.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/dashboard/elements/chart-legend-tooltip.html">
+<link rel="import" href="/tracing/core/test_utils.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+
+  var testOptions = {
+    setUp: function() {
+    },
+    tearDown: function() {
+    }
+  };
+
+  test('instantiate', function() {
+    var legend_tooltip = document.createElement('chart-legend-tooltip');
+    legend_tooltip.description = 'Amazing description.';
+    legend_tooltip.direction = 'Lower';
+    legend_tooltip.path = 'Master/bot/test.suite/metric';
+    legend_tooltip.units = 'us';
+
+    var container = document.createElement('div');
+    var text = document.createElement('span');
+    Polymer.dom(text).textContent =
+      'this_is_a_long_mertric_name';
+    Polymer.dom(container).appendChild(text);
+    Polymer.dom(container).appendChild(legend_tooltip);
+
+    this.addHTMLOutput(container);
+    document.getElementById('info').click();
+    }, testOptions);
+});
+</script>
diff --git a/catapult/dashboard/dashboard/elements/chart-legend-tooltip.html b/catapult/dashboard/dashboard/elements/chart-legend-tooltip.html
new file mode 100644
index 0000000..f71e862
--- /dev/null
+++ b/catapult/dashboard/dashboard/elements/chart-legend-tooltip.html
@@ -0,0 +1,90 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/components/iron-flex-layout/iron-flex-layout-classes.html">
+<link rel="import" href="/components/iron-icons/iron-icons.html">
+
+<link rel="import" href="/components/paper-dialog/paper-dialog.html">
+
+<dom-module id="chart-legend-tooltip">
+  <template>
+    <style include="iron-flex iron-flex-alignment">
+      .tooltip-content {
+        font-size: 13px;
+        line-height: 1.4;
+      }
+
+      .tooltip-content a {
+        color: #9cf;
+      }
+
+      .tooltip-content a:visited {
+        color: #fac;
+      }
+
+      #tooltip {
+        margin: 3px 10px;
+      }
+
+      #info {
+        background-color: #4285f4;
+        color: #eee;
+        border-radius: 30px;
+        height: 18px;
+        width: 18px;
+        margin: 0px 10px;
+      }
+
+      #info:hover {
+        color: #4285f4;
+        background-color: #eee;
+      }
+
+    </style>
+    <iron-icon icon="info" id="info" on-click="openTooltip"></iron-icon>
+    <paper-dialog id="tooltip" no-overlap horizontal-align="right" vertical-align="top">
+      <div tip class="layout vertical tooltip-content">
+        <span>{{direction}} is better</span>
+        <span>Units: {{units}}</span>
+        <span>{{description}}</span>
+        <span><a href="/new_points?pattern={{path}}">See new points</a></span>
+        <span><a href="/graph_csv?test_path={{path}}">Download as CSV</a></span>
+        <span><a href="/debug_alert?test_path={{path}}">Debug alert page</a></span>
+      </div>
+    </paper-dialog>
+  </template>
+  <script>
+    'use strict';
+    Polymer({
+
+      is: 'chart-legend-tooltip',
+      properties: {
+        description: {
+          notify: true,
+          type: String,
+        },
+        direction: {
+          notify: true,
+          type: String,
+        },
+        path: {
+          notify: true,
+          type: String,
+        },
+        units: {
+          notify: true,
+          type: String,
+        },
+      },
+
+      openTooltip: function(event) {
+        this.$.tooltip.positionTarget = event.target;
+        this.$.tooltip.open();
+      },
+    });
+  </script>
+</dom-module>
diff --git a/catapult/dashboard/dashboard/elements/chart-legend.html b/catapult/dashboard/dashboard/elements/chart-legend.html
index d9d0267..c7748bc 100644
--- a/catapult/dashboard/dashboard/elements/chart-legend.html
+++ b/catapult/dashboard/dashboard/elements/chart-legend.html
@@ -11,7 +11,8 @@
 <link rel="import" href="/components/paper-icon-button/paper-icon-button.html">
 <link rel="import" href="/components/paper-material/paper-material.html">
 <link rel="import" href="/components/paper-spinner/paper-spinner.html">
-<link rel="import" href="/components/paper-tooltip/paper-tooltip.html">
+
+<link rel="import" href="/dashboard/elements/chart-legend-tooltip.html">
 
 <dom-module id="chart-legend">
   <template>
@@ -62,19 +63,6 @@
         font-weight: bolder;
       }
 
-      .tooltip-content {
-        font-size: 13px;
-        line-height: 1.4;
-      }
-
-      .tooltip-content a {
-        color: #9cf;
-      }
-
-      .tooltip-content a:visited {
-        color: #fac;
-      }
-
       /* Checkboxes */
       input[type=checkbox]:checked::after {
         font-size: 1.3em;
@@ -229,7 +217,7 @@
               <iron-selector class="list" selected="{{multiSelected}}" multi>
 
                 <template is="dom-repeat" items="{{seriesGroup.tests}}" as="test">
-                  <div class="row" id="{{test.index}}"
+                  <div class="row layout horizontal" id="{{test.index}}"
                        loading$="{{computeIsUndefined(test.index)}}"
                        hidden$="{{test.hidden}}">
                     <label class="layout horizontal center">
@@ -243,25 +231,14 @@
                             on-mouseover="seriesMouseover"
                             on-mouseout="seriesMouseout">
                         {{test.name}}
-                        <iron-icon icon="info-outline" class="info"></iron-icon>
-                        <paper-tooltip>
-                          <iron-icon icon="info-outline" class="info"></iron-icon>
-                          <div tip class="layout vertical tooltip-content">
-                            <span>{{test.direction}} is better</span>
-                            <span>Units: {{test.units}}</span>
-                            <span>{{test.description}}</span>
-                            <span><a href="/new_points?pattern={{test.path}}">See new points</a></span>
-                            <span><a href="/graph_csv?test_path={{test.path}}">Download as CSV</a></span>
-                            <span><a href="/debug_alert?test_path={{test.path}}">Debug alert page</a></span>
-                          </div>
-                        </paper-tooltip>
                       </span>
                     </label>
-
+                    <chart-legend-tooltip description={{test.description}}
+                                          direction={{test.direction}}
+                                          path={{test.path}}
+                                          units={{test.units}}></chart-legend>
                   </div>
-
                 </template>
-
               </iron-selector>
 
               <div class="layout horizontal end-justified">
diff --git a/catapult/dashboard/dashboard/file_bug.py b/catapult/dashboard/dashboard/file_bug.py
index a0fd69f..c60861d 100644
--- a/catapult/dashboard/dashboard/file_bug.py
+++ b/catapult/dashboard/dashboard/file_bug.py
@@ -129,7 +129,7 @@
       return
 
     http = oauth2_decorator.DECORATOR.http()
-    service = issue_tracker_service.IssueTrackerService(http=http)
+    service = issue_tracker_service.IssueTrackerService(http)
 
     bug_id = service.NewBug(
         summary, description, labels=labels, components=components, owner=owner)
diff --git a/catapult/dashboard/dashboard/graph_json.py b/catapult/dashboard/dashboard/graph_json.py
index 411f516..d83fbb7 100644
--- a/catapult/dashboard/dashboard/graph_json.py
+++ b/catapult/dashboard/dashboard/graph_json.py
@@ -244,10 +244,11 @@
       # should be 'camel.client.case'.
       master_camel_case = utils.TestPath(row.parent_test).split('/')[0]
       master_parts = re.findall('([A-Z][a-z0-9]+)', master_camel_case)
-      master_name = '%s.client.%s' % (
-          master_parts[1].lower(), master_parts[0].lower())
-      val = val.replace('(None', '(%s/%s/' % (
-          row_dict['a_stdio_uri_prefix'], master_name))
+      if master_parts and len(master_parts) == 2:
+        master_name = '%s.client.%s' % (
+            master_parts[1].lower(), master_parts[0].lower())
+        val = val.replace('(None', '(%s/%s/' % (
+            row_dict['a_stdio_uri_prefix'], master_name))
 
     if name.startswith('r_'):
       point_info[name] = val
diff --git a/catapult/dashboard/dashboard/issue_tracker_service.py b/catapult/dashboard/dashboard/issue_tracker_service.py
index 2b8039c..4d52e1c 100644
--- a/catapult/dashboard/dashboard/issue_tracker_service.py
+++ b/catapult/dashboard/dashboard/issue_tracker_service.py
@@ -9,7 +9,6 @@
 
 from apiclient import discovery
 from apiclient import errors
-import httplib2
 
 _DISCOVERY_URI = ('https://monorail-prod.appspot.com'
                   '/_ah/api/discovery/v1/apis/{api}/{apiVersion}/rest')
@@ -18,7 +17,7 @@
 class IssueTrackerService(object):
   """Class for updating bug issues."""
 
-  def __init__(self, http=None, additional_credentials=None):
+  def __init__(self, http):
     """Initializes an object for adding and updating bugs on the issue tracker.
 
     This object can be re-used to make multiple requests without calling
@@ -28,18 +27,11 @@
     API explorer: https://goo.gl/xWd0dX
 
     Args:
-      http: A Http object to pass to request.execute; this should be an
+      http: A Http object that requests will be made through; this should be an
           Http object that's already authenticated via OAuth2.
-      additional_credentials: A credentials object, e.g. an instance of
-          oauth2client.client.SignedJwtAssertionCredentials. This includes
-          the email and secret key of a service account.
     """
-    self._http = http or httplib2.Http()
-    if additional_credentials:
-      additional_credentials.authorize(self._http)
     self._service = discovery.build(
-        'monorail', 'v1', discoveryServiceUrl=_DISCOVERY_URI,
-        http=self._http)
+        'monorail', 'v1', discoveryServiceUrl=_DISCOVERY_URI, http=http)
 
   def AddBugComment(self, bug_id, comment, status=None, cc_list=None,
                     merge_issue=None, labels=None, owner=None, send_email=True):
@@ -210,7 +202,7 @@
       The response if there was one, or else None.
     """
     try:
-      response = request.execute(http=self._http)
+      response = request.execute()
       return response
     except errors.HttpError as e:
       logging.error(e)
diff --git a/catapult/dashboard/dashboard/issue_tracker_service_test.py b/catapult/dashboard/dashboard/issue_tracker_service_test.py
index f66b491..921253a 100644
--- a/catapult/dashboard/dashboard/issue_tracker_service_test.py
+++ b/catapult/dashboard/dashboard/issue_tracker_service_test.py
@@ -16,7 +16,7 @@
 class IssueTrackerServiceTest(testing_common.TestCase):
 
   def testAddBugComment_Basic(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._MakeCommentRequest = mock.Mock()
     self.assertTrue(service.AddBugComment(12345, 'The comment'))
     self.assertEqual(1, service._MakeCommentRequest.call_count)
@@ -24,13 +24,13 @@
         12345, {'updates': {}, 'content': 'The comment'}, send_email=True)
 
   def testAddBugComment_WithNoBug_ReturnsFalse(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._MakeCommentRequest = mock.Mock()
     self.assertFalse(service.AddBugComment(None, 'Some comment'))
     self.assertFalse(service.AddBugComment(-1, 'Some comment'))
 
   def testAddBugComment_WithOptionalParameters(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._MakeCommentRequest = mock.Mock()
     self.assertTrue(service.AddBugComment(
         12345, 'Some other comment', status='Fixed',
@@ -49,7 +49,7 @@
         send_email=True)
 
   def testAddBugComment_MergeBug(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._MakeCommentRequest = mock.Mock()
     self.assertTrue(service.AddBugComment(12345, 'Dupe', merge_issue=54321))
     self.assertEqual(1, service._MakeCommentRequest.call_count)
@@ -66,28 +66,28 @@
 
   @mock.patch('logging.error')
   def testAddBugComment_Error(self, mock_logging_error):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._ExecuteRequest = mock.Mock(return_value=None)
     self.assertFalse(service.AddBugComment(12345, 'My bug comment'))
     self.assertEqual(1, service._ExecuteRequest.call_count)
     self.assertEqual(1, mock_logging_error.call_count)
 
   def testNewBug_Success_NewBugReturnsId(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._ExecuteRequest = mock.Mock(return_value={'id': 333})
     bug_id = service.NewBug('Bug title', 'body', owner='someone@chromium.org')
     self.assertEqual(1, service._ExecuteRequest.call_count)
     self.assertEqual(333, bug_id)
 
   def testNewBug_Failure_NewBugReturnsNone(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._ExecuteRequest = mock.Mock(return_value={})
     bug_id = service.NewBug('Bug title', 'body', owner='someone@chromium.org')
     self.assertEqual(1, service._ExecuteRequest.call_count)
     self.assertIsNone(bug_id)
 
   def testNewBug_UsesExpectedParams(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     service._MakeCreateRequest = mock.Mock()
     service.NewBug('Bug title', 'body', owner='someone@chromium.org')
     service._MakeCreateRequest.assert_called_with(
@@ -102,7 +102,7 @@
         })
 
   def testMakeCommentRequest_UserDoesNotExist_RetryMakeCommentRequest(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     error_content = {
         'error': {'message': 'The user does not exist: test@chromium.org',
                   'code': 404}
@@ -114,7 +114,7 @@
     self.assertEqual(2, service._ExecuteRequest.call_count)
 
   def testMakeCommentRequest_IssueDeleted_ReturnsTrue(self):
-    service = issue_tracker_service.IssueTrackerService()
+    service = issue_tracker_service.IssueTrackerService(mock.MagicMock())
     error_content = {
         'error': {'message': 'User is not allowed to view this issue 12345',
                   'code': 403}
diff --git a/catapult/dashboard/dashboard/models/try_job.py b/catapult/dashboard/dashboard/models/try_job.py
index dbf1116..40b3297 100644
--- a/catapult/dashboard/dashboard/models/try_job.py
+++ b/catapult/dashboard/dashboard/models/try_job.py
@@ -12,12 +12,13 @@
 
 import datetime
 import json
+import logging
 
 from google.appengine.ext import ndb
 
 from dashboard import bisect_stats
-from dashboard.models import bug_data
 from dashboard import buildbucket_service
+from dashboard.models import bug_data
 from dashboard.models import internal_only_model
 
 
@@ -31,7 +32,6 @@
   rietveld_patchset_id = ndb.IntegerProperty()
   master_name = ndb.StringProperty(default='ChromiumPerf', indexed=False)
   buildbucket_job_id = ndb.StringProperty()
-  use_buildbucket = ndb.BooleanProperty(default=False, indexed=True)
   internal_only = ndb.BooleanProperty(default=False, indexed=True)
 
   # Bisect run status (e.g., started, failed).
@@ -86,12 +86,16 @@
   def SetStaled(self):
     self.status = 'staled'
     self.put()
+    logging.info('Updated status to staled')
+    # TODO(sullivan, dtu): what is the purpose of 'staled' status? Doesn't it
+    # just prevent updating jobs older than 24 hours???
     # TODO(chrisphan): Add 'staled' state to bug_data and bisect_stats.
     if self.bug_id:
       bug_data.SetBisectStatus(self.bug_id, 'failed')
     bisect_stats.UpdateBisectStats(self.bot, 'failed')
 
   def SetCompleted(self):
+    logging.info('Updated status to completed')
     self.status = 'completed'
     self.put()
     if self.bug_id:
@@ -107,14 +111,23 @@
       return
     job_info = buildbucket_service.GetJobStatus(self.buildbucket_job_id)
     data = job_info.get('build', {})
-    # Proceed if the job failed and the job status has
-    # not been updated
-    if data.get('result') != 'FAILURE' or self.status == 'failed':
+
+    # Since the job is completed successfully, results_data must
+    # have been set appropriately by the bisector.
+    # The buildbucket job's 'status' and 'result' fields are documented here:
+    # https://goto.google.com/bb_status
+    if data.get('status') == 'COMPLETED' and data.get('result') == 'SUCCESS':
       return
+
+    # Proceed if the job failed or cancelled
+    logging.info('Job failed. Buildbucket id %s', self.buildbucket_job_id)
     data['result_details'] = json.loads(data['result_details_json'])
+    # There are various failure and cancellation reasons for a buildbucket
+    # job to fail as listed in https://goto.google.com/bb_status.
     job_updates = {
         'status': 'failed',
-        'failure_reason': data.get('failure_reason'),
+        'failure_reason': (data.get('cancelation_reason') or
+                           data.get('failure_reason')),
         'buildbot_log_url': data.get('url')
     }
     details = data.get('result_details')
@@ -140,3 +153,5 @@
     self.last_ran_timestamp = datetime.datetime.fromtimestamp(
         float(data['updated_ts'])/1000000)
     self.put()
+    logging.info('updated status to failed.')
+
diff --git a/catapult/dashboard/dashboard/mr.py b/catapult/dashboard/dashboard/mr.py
index 20d9a36..2f10fd7 100644
--- a/catapult/dashboard/dashboard/mr.py
+++ b/catapult/dashboard/dashboard/mr.py
@@ -118,6 +118,7 @@
           params={
               'test_path': utils.TestPath(entity.key),  # For manual inspection.
               'test_key': entity.key.urlsafe(),
+              'notify': 'false',
           },
           queue_name=_DELETE_TASK_QUEUE_NAME)
       return
diff --git a/catapult/dashboard/dashboard/post_bisect_results.py b/catapult/dashboard/dashboard/post_bisect_results.py
index 81bad97..ce0373b 100644
--- a/catapult/dashboard/dashboard/post_bisect_results.py
+++ b/catapult/dashboard/dashboard/post_bisect_results.py
@@ -12,7 +12,6 @@
 
 from dashboard import datastore_hooks
 from dashboard import post_data_handler
-from dashboard import rietveld_service
 from dashboard import update_bug_with_results
 from dashboard import utils
 from dashboard.models import try_job
@@ -100,12 +99,6 @@
 
 def _IssueURL(job):
   """Returns a URL for information about a bisect try job."""
-  if job.use_buildbucket:
-    hostname = app_identity.get_default_version_hostname()
-    job_id = job.buildbucket_job_id
-    return 'https://%s/buildbucket_job_status/%s' % (hostname, job_id)
-  else:
-    config = rietveld_service.GetDefaultRietveldConfig()
-    host = (config.internal_server_url if job.internal_only else
-            config.server_url)
-    return '%s/%d' % (host, job.rietveld_issue_id)
+  hostname = app_identity.get_default_version_hostname()
+  job_id = job.buildbucket_job_id
+  return 'https://%s/buildbucket_job_status/%s' % (hostname, job_id)
diff --git a/catapult/dashboard/dashboard/rietveld_service.py b/catapult/dashboard/dashboard/rietveld_service.py
index b998db8..7329975 100644
--- a/catapult/dashboard/dashboard/rietveld_service.py
+++ b/catapult/dashboard/dashboard/rietveld_service.py
@@ -9,8 +9,6 @@
 import mimetypes
 import urllib
 
-import httplib2
-
 from google.appengine.ext import ndb
 
 from dashboard import utils
@@ -85,16 +83,9 @@
     else:
       server_url = self.Config().server_url
     url = '%s/%s' % (server_url, path)
-    response, content = self._Http().request(url, *args, **kwargs)
+    response, content = utils.ServiceAccountHttp().request(url, *args, **kwargs)
     return ResponseObject(response.get('status'), content)
 
-  def _Http(self):
-    if not self._http:
-      self._http = httplib2.Http()
-      credentials = utils.ServiceAccountCredentials()
-      credentials.authorize(self._http)
-    return self._http
-
   def _XsrfToken(self):
     """Requests a XSRF token from Rietveld."""
     return self.MakeRequest(
diff --git a/catapult/dashboard/dashboard/start_try_job.py b/catapult/dashboard/dashboard/start_try_job.py
index fe62226..4aa3128 100644
--- a/catapult/dashboard/dashboard/start_try_job.py
+++ b/catapult/dashboard/dashboard/start_try_job.py
@@ -42,7 +42,6 @@
 _BOT_BROWSER_MAP_KEY = 'bot_browser_map'
 _INTERNAL_MASTERS_KEY = 'internal_masters'
 _BUILDER_TYPES_KEY = 'bisect_builder_types'
-_TESTER_DIRECTOR_MAP_KEY = 'recipe_tester_director_map'
 _MASTER_TRY_SERVER_MAP_KEY = 'master_try_server_map'
 _MASTER_BUILDBUCKET_MAP_KEY = 'master_buildbucket_map'
 _NON_TELEMETRY_TEST_COMMANDS = {
@@ -129,7 +128,6 @@
     internal_only = self.request.get('internal_only') == 'true'
     bisect_bot = self.request.get('bisect_bot')
     bypass_no_repro_check = self.request.get('bypass_no_repro_check') == 'true'
-    use_recipe = bool(GetBisectDirectorForTester(master_name, bisect_bot))
 
     bisect_config = GetBisectConfig(
         bisect_bot=bisect_bot,
@@ -143,7 +141,6 @@
         bug_id=bug_id,
         use_archive=self.request.get('use_archive'),
         bisect_mode=self.request.get('bisect_mode', 'mean'),
-        use_buildbucket=use_recipe,
         bypass_no_repro_check=bypass_no_repro_check)
 
     if 'error' in bisect_config:
@@ -159,8 +156,7 @@
         email=user.email(),
         master_name=master_name,
         internal_only=internal_only,
-        job_type='bisect',
-        use_buildbucket=use_recipe)
+        job_type='bisect')
 
     try:
       results = PerformBisect(bisect_job)
@@ -253,7 +249,7 @@
 def GetBisectConfig(
     bisect_bot, master_name, suite, metric, good_revision, bad_revision,
     repeat_count, max_time_minutes, bug_id, use_archive=None,
-    bisect_mode='mean', use_buildbucket=False, bypass_no_repro_check=False):
+    bisect_mode='mean', bypass_no_repro_check=False):
   """Fills in a JSON response with the filled-in config file.
 
   Args:
@@ -271,15 +267,12 @@
         If this is not empty or None, then we want to use archived builds.
     bisect_mode: What aspect of the test run to bisect on; possible options are
         "mean", "std_dev", and "return_code".
-    use_buildbucket: Whether this job will started using buildbucket,
-        this should be used for bisects using the bisect recipe.
 
   Returns:
     A dictionary with the result; if successful, this will contain "config",
     which is a config string; if there's an error, this will contain "error".
   """
-  command = GuessCommand(
-      bisect_bot, suite, metric=metric, use_buildbucket=use_buildbucket)
+  command = GuessCommand(bisect_bot, suite, metric=metric)
   if not command:
     return {'error': 'Could not guess command for %r.' % suite}
 
@@ -307,8 +300,7 @@
       'target_arch': GuessTargetArch(bisect_bot),
       'bisect_mode': bisect_mode,
   }
-  if use_buildbucket:
-    config_dict['recipe_tester_name'] = bisect_bot
+  config_dict['recipe_tester_name'] = bisect_bot
   if bypass_no_repro_check:
     config_dict['required_initial_confidence'] = '0'
   return config_dict
@@ -409,35 +401,30 @@
 
 
 def GuessCommand(
-    bisect_bot, suite, metric=None, rerun_option=None, use_buildbucket=False):
+    bisect_bot, suite, metric=None, rerun_option=None):
   """Returns a command to use in the bisect configuration."""
   if suite in _NON_TELEMETRY_TEST_COMMANDS:
-    return _GuessCommandNonTelemetry(suite, bisect_bot, use_buildbucket)
-  return _GuessCommandTelemetry(
-      suite, bisect_bot, metric, rerun_option, use_buildbucket)
+    return _GuessCommandNonTelemetry(suite, bisect_bot)
+  return _GuessCommandTelemetry(suite, bisect_bot, metric, rerun_option)
 
 
-def _GuessCommandNonTelemetry(suite, bisect_bot, use_buildbucket):
+def _GuessCommandNonTelemetry(suite, bisect_bot):
   """Returns a command string to use for non-Telemetry tests."""
   if suite not in _NON_TELEMETRY_TEST_COMMANDS:
     return None
   if suite == 'cc_perftests' and bisect_bot.startswith('android'):
-    if use_buildbucket:
-      return ('src/build/android/test_runner.py '
-              'gtest --release -s cc_perftests --verbose')
-    else:
-      return ('build/android/test_runner.py '
-              'gtest --release -s cc_perftests --verbose')
+    return ('src/build/android/test_runner.py '
+            'gtest --release -s cc_perftests --verbose')
 
   command = list(_NON_TELEMETRY_TEST_COMMANDS[suite])
 
-  if use_buildbucket and command[0].startswith('./out'):
+  if command[0].startswith('./out'):
     command[0] = command[0].replace('./', './src/')
 
   # For Windows x64, the compilation output is put in "out/Release_x64".
   # Note that the legacy bisect script always extracts binaries into Release
   # regardless of platform, so this change is only necessary for recipe bisect.
-  if use_buildbucket and _GuessBrowserName(bisect_bot) == 'release_x64':
+  if _GuessBrowserName(bisect_bot) == 'release_x64':
     command[0] = command[0].replace('/Release/', '/Release_x64/')
 
   if bisect_bot.startswith('win'):
@@ -448,22 +435,19 @@
 
 def _GuessCommandTelemetry(
     suite, bisect_bot, metric,  # pylint: disable=unused-argument
-    rerun_option, use_buildbucket):
+    rerun_option):
   """Returns a command to use given that |suite| is a Telemetry benchmark."""
   # TODO(qyearsley): Use metric to add a --story-filter flag for Telemetry.
   # See: http://crbug.com/448628
   command = []
 
-  if use_buildbucket:
-    test_cmd = 'src/tools/perf/run_benchmark'
-  else:
-    test_cmd = 'tools/perf/run_benchmark'
+  test_cmd = 'src/tools/perf/run_benchmark'
 
   command.extend([
       test_cmd,
       '-v',
       '--browser=%s' % _GuessBrowserName(bisect_bot),
-      '--output-format=%s' % ('chartjson' if use_buildbucket else 'buildbot'),
+      '--output-format=chartjson',
       '--upload-results',
       '--also-run-disabled-tests',
   ])
@@ -621,10 +605,7 @@
   if not bisect_job.key:
     bisect_job.put()
 
-  if bisect_job.use_buildbucket:
-    result = _PerformBuildbucketBisect(bisect_job)
-  else:
-    result = _PerformLegacyBisect(bisect_job)
+  result = _PerformBuildbucketBisect(bisect_job)
   if 'error' in result:
     bisect_job.run_count += 1
     bisect_job.SetFailed()
@@ -635,86 +616,11 @@
     comment = 'Started bisect job: %s' % result
   if bisect_job.bug_id:
     issue_tracker = issue_tracker_service.IssueTrackerService(
-        additional_credentials=utils.ServiceAccountCredentials())
+        utils.ServiceAccountHttp())
     issue_tracker.AddBugComment(bisect_job.bug_id, comment, send_email=False)
   return result
 
 
-def _PerformLegacyBisect(bisect_job):
-  bot = bisect_job.bot
-  email = bisect_job.email
-  bug_id = bisect_job.bug_id
-
-  config_dict = bisect_job.GetConfigDict()
-  config_dict['try_job_id'] = bisect_job.key.id()
-  bisect_job.config = utils.BisectConfigPythonString(config_dict)
-
-  # Get the base config file contents and make a patch.
-  base_config = utils.DownloadChromiumFile(_BISECT_CONFIG_PATH)
-  if not base_config:
-    return {'error': 'Error downloading base config'}
-  patch, base_checksum, base_hashes = _CreatePatch(
-      base_config, bisect_job.config, _BISECT_CONFIG_PATH)
-
-  # Check if bisect is for internal only tests.
-  bisect_internal = _IsBisectInternalOnly(bisect_job)
-
-  # Upload the patch to Rietveld.
-  server = rietveld_service.RietveldService(bisect_internal)
-
-  subject = 'Perf bisect for bug %s on behalf of %s' % (bug_id, email)
-  issue_id, patchset_id = server.UploadPatch(subject,
-                                             patch,
-                                             base_checksum,
-                                             base_hashes,
-                                             base_config,
-                                             _BISECT_CONFIG_PATH)
-
-  if not issue_id:
-    return {'error': 'Error uploading patch to rietveld_service.'}
-
-  if bisect_internal:
-    # Internal server URL has '/bots', that cannot be accessed via browser,
-    # therefore strip this path from internal server URL.
-    issue_url = '%s/%s' % (server.Config().internal_server_url.strip('/bots'),
-                           issue_id)
-  else:
-    issue_url = '%s/%s' % (server.Config().server_url.strip('/bots'), issue_id)
-
-  # Tell Rietveld to try the patch.
-  master = _GetTryServerMaster(bisect_job)
-  trypatch_success = server.TryPatch(master, issue_id, patchset_id, bot)
-  if trypatch_success:
-    # Create TryJob entity.  update_bug_with_results and auto_bisect
-    # cron job will be tracking/starting/restarting bisect.
-    if bug_id and bug_id > 0:
-      bisect_job.rietveld_issue_id = int(issue_id)
-      bisect_job.rietveld_patchset_id = int(patchset_id)
-      bisect_job.SetStarted()
-      bug_comment = ('Bisect started; track progress at '
-                     '<a href="%s">%s</a>' % (issue_url, issue_url))
-      LogBisectResult(bisect_job, bug_comment)
-    return {'issue_id': issue_id, 'issue_url': issue_url}
-
-  return {'error': 'Error starting try job. Try to fix at %s' % issue_url}
-
-
-def _IsBisectInternalOnly(bisect_job):
-  """Checks if the bisect is for an internal-only test."""
-  internal_masters = namespaced_stored_object.Get(_INTERNAL_MASTERS_KEY)
-  return internal_masters and bisect_job.master_name in internal_masters
-
-
-def _GetTryServerMaster(bisect_job):
-  """Returns the try server master to be used for bisecting."""
-  try_server_map = namespaced_stored_object.Get(_MASTER_TRY_SERVER_MAP_KEY)
-  default = 'tryserver.chromium.perf'
-  if not try_server_map:
-    logging.warning('Could not get master to try server map, using default.')
-    return default
-  return try_server_map.get(bisect_job.master_name, default)
-
-
 def _PerformPerfTryJob(perf_job):
   """Performs the perf try job on the try bot.
 
@@ -810,13 +716,8 @@
   if config.get('bisect_mode') == 'return_code':
     test_type = config['bisect_mode']
 
-  # Tester name is a required parameter for recipe bisects.
-  tester_name = config['recipe_tester_name']
-
   return buildbucket_job.BisectJob(
       try_job_id=bisect_job.key.id(),
-      bisect_director=GetBisectDirectorForTester(
-          bisect_job.master_name, tester_name),
       good_revision=config['good_revision'],
       bad_revision=config['bad_revision'],
       test_command=config['command'],
@@ -825,7 +726,7 @@
       timeout_minutes=config['max_time_minutes'],
       bug_id=bisect_job.bug_id,
       gs_bucket='chrome-perf',
-      recipe_tester_name=tester_name,
+      recipe_tester_name=config['recipe_tester_name'],
       test_type=test_type,
       required_initial_confidence=config.get('required_initial_confidence')
   )
@@ -860,25 +761,6 @@
     }
 
 
-def GetBisectDirectorForTester(master_name, bot):
-  """Maps the name of a tester bot to its corresponding bisect director.
-
-  Args:
-    bot (str): The name of the tester bot in the tryserver.chromium.perf
-        waterfall. (e.g. 'linux_perf_tester').
-    master_name (str): The name of the master where the bot is hosted.
-
-  Returns:
-    The name of the bisect director that can use the given tester (e.g.
-        'linux_perf_bisector')
-  """
-  master_tester_map = namespaced_stored_object.Get(_TESTER_DIRECTOR_MAP_KEY)
-  for master, recipe_tester_director_mapping in master_tester_map.iteritems():
-    if master_name.startswith(master):
-      return recipe_tester_director_mapping.get(bot)
-  return []
-
-
 def _GetTryServerBucket(bisect_job):
   """Returns the bucket name to be used by buildbucket."""
   master_bucket_map = namespaced_stored_object.Get(_MASTER_BUILDBUCKET_MAP_KEY)
diff --git a/catapult/dashboard/dashboard/start_try_job_test.py b/catapult/dashboard/dashboard/start_try_job_test.py
index 9230ee7..8c33b7c 100644
--- a/catapult/dashboard/dashboard/start_try_job_test.py
+++ b/catapult/dashboard/dashboard/start_try_job_test.py
@@ -3,6 +3,7 @@
 # found in the LICENSE file.
 
 import base64
+import httplib2
 import json
 import unittest
 
@@ -40,49 +41,7 @@
 +  "bisect_mode": "mean",
 +  "bug_id": "12345",
 +  "builder_type": "",
-+  "command": "tools/perf/run_benchmark -v --browser=release --output-format=buildbot --upload-results --also-run-disabled-tests dromaeo.jslibstylejquery",
-+  "good_revision": "215806",
-+  "max_time_minutes": "20",
-+  "metric": "jslib/jslib",
-+  "repeat_count": "20",
-+  "target_arch": "ia32",
-+  "try_job_id": 1
- }
-"""
-
-_EXPECTED_BISECT_CONFIG_DIFF_FOR_INTERNAL_TEST = """config = {
--  'command': '',
--  'good_revision': '',
--  'bad_revision': '',
--  'metric': '',
--  'repeat_count':'',
--  'max_time_minutes': '',
-+  "bad_revision": "f14a8f733cce874d5d66e8e6b86e75bbac240b0e",
-+  "bisect_mode": "mean",
-+  "bug_id": "12345",
-+  "builder_type": "",
-+  "command": "tools/perf/run_benchmark -v --browser=android-chrome --upload-results --also-run-disabled-tests start_with_url.cold.startup_pages",
-+  "good_revision": "d82ccc77c8a86ce9893a8035fb55aca666f044c8",
-+  "max_time_minutes": "20",
-+  "metric": "foreground_tab_request_start/foreground_tab_request_start",
-+  "repeat_count": "20",
-+  "target_arch": "ia32",
-+  "try_job_id": 1
- }
-"""
-
-_EXPECTED_BISECT_CONFIG_DIFF_WITH_ARCHIVE = """config = {
--  'command': '',
--  'good_revision': '',
--  'bad_revision': '',
--  'metric': '',
--  'repeat_count':'',
--  'max_time_minutes': '',
-+  "bad_revision": "215828",
-+  "bisect_mode": "mean",
-+  "bug_id": "12345",
-+  "builder_type": "perf",
-+  "command": "tools/perf/run_benchmark -v --browser=release --output-format=buildbot --upload-results --also-run-disabled-tests dromaeo.jslibstylejquery",
++  "command": "src/tools/perf/run_benchmark -v --browser=release --output-format=chartjson --upload-results --also-run-disabled-tests dromaeo.jslibstylejquery",
 +  "good_revision": "215806",
 +  "max_time_minutes": "20",
 +  "metric": "jslib/jslib",
@@ -98,7 +57,7 @@
 -  'repeat_count': '',
 -  'max_time_minutes': '',
 +  "bad_revision": "215828",
-+  "command": "tools/perf/run_benchmark -v --browser=release --output-format=buildbot --upload-results --also-run-disabled-tests dromaeo.jslibstylejquery",
++  "command": "src/tools/perf/run_benchmark -v --browser=release --output-format=chartjson --upload-results --also-run-disabled-tests dromaeo.jslibstylejquery",
 +  "good_revision": "215806",
 +  "max_time_minutes": "60",
 +  "repeat_count": "1",
@@ -312,7 +271,7 @@
 
 
 @mock.patch('apiclient.discovery.build', mock.MagicMock())
-@mock.patch.object(utils, 'ServiceAccountCredentials', mock.MagicMock())
+@mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
 class StartBisectTest(testing_common.TestCase):
 
   def setUp(self):
@@ -347,14 +306,6 @@
             ['', 'release'],
         ])
     namespaced_stored_object.Set(
-        start_try_job._TESTER_DIRECTOR_MAP_KEY,
-        {
-            'ChromiumPerf': {
-                'linux_perf_tester': 'linux_perf_bisector',
-                'win64_nv_tester': 'linux_perf_bisector',
-            }
-        })
-    namespaced_stored_object.Set(
         start_try_job._MASTER_BUILDBUCKET_MAP_KEY,
         {
             'ChromiumPerf': 'master.tryserver.chromium.perf'
@@ -510,38 +461,6 @@
             'use_archive': '',
         },
         {
-            'command': ('tools/perf/run_benchmark -v '
-                        '--browser=release --output-format=buildbot '
-                        '--upload-results '
-                        '--also-run-disabled-tests '
-                        'page_cycler.moz'),
-            'good_revision': '265549',
-            'bad_revision': '265556',
-            'metric': 'times/page_load_time',
-            'repeat_count': '15',
-            'max_time_minutes': '8',
-            'bug_id': '-1',
-            'builder_type': '',
-            'target_arch': 'ia32',
-            'bisect_mode': 'mean',
-        })
-
-  def testGetConfig_UseBuildbucket_ChangesTelemetryOutputFormat(self):
-    self._TestGetBisectConfig(
-        {
-            'bisect_bot': 'linux_perf_tester',
-            'master_name': 'ChromiumPerf',
-            'suite': 'page_cycler.moz',
-            'metric': 'times/page_load_time',
-            'good_revision': '265549',
-            'bad_revision': '265556',
-            'repeat_count': '15',
-            'max_time_minutes': '8',
-            'bug_id': '-1',
-            'use_archive': 'true',
-            'use_buildbucket': True,
-        },
-        {
             'command': ('src/tools/perf/run_benchmark -v '
                         '--browser=release --output-format=chartjson '
                         '--upload-results '
@@ -550,13 +469,13 @@
             'good_revision': '265549',
             'bad_revision': '265556',
             'metric': 'times/page_load_time',
+            'recipe_tester_name': 'linux_perf_bisect',
             'repeat_count': '15',
             'max_time_minutes': '8',
             'bug_id': '-1',
-            'builder_type': 'perf',
+            'builder_type': '',
             'target_arch': 'ia32',
             'bisect_mode': 'mean',
-            'recipe_tester_name': 'linux_perf_tester',
         })
 
   def testGetConfig_NonEmptyUseArchiveParameter_GivesNonEmptyBuilderType(self):
@@ -576,14 +495,15 @@
             'use_archive': '',
         },
         {
-            'command': ('tools/perf/run_benchmark -v '
-                        '--browser=release --output-format=buildbot '
+            'command': ('src/tools/perf/run_benchmark -v '
+                        '--browser=release --output-format=chartjson '
                         '--upload-results '
                         '--also-run-disabled-tests '
                         'page_cycler.moz'),
             'good_revision': '265549',
             'bad_revision': '265556',
             'metric': 'times/page_load_time',
+            'recipe_tester_name': 'linux_perf_bisect',
             'repeat_count': '15',
             'max_time_minutes': '8',
             'bug_id': '-1',
@@ -606,14 +526,15 @@
             'bug_id': '-1',
         },
         {
-            'command': ('tools/perf/run_benchmark -v '
-                        '--browser=release --output-format=buildbot '
+            'command': ('src/tools/perf/run_benchmark -v '
+                        '--browser=release --output-format=chartjson '
                         '--upload-results '
                         '--also-run-disabled-tests '
                         'page_cycler.morejs'),
             'good_revision': '12345',
             'bad_revision': '23456',
             'metric': 'times/page_load_time',
+            'recipe_tester_name': 'win_perf_bisect',
             'repeat_count': '15',
             'max_time_minutes': '8',
             'bug_id': '-1',
@@ -638,14 +559,15 @@
             'bisect_mode': 'return_code',
         },
         {
-            'command': ('tools/perf/run_benchmark -v '
-                        '--browser=release --output-format=buildbot '
+            'command': ('src/tools/perf/run_benchmark -v '
+                        '--browser=release --output-format=chartjson '
                         '--upload-results '
                         '--also-run-disabled-tests '
                         'page_cycler.moz'),
             'good_revision': '265549',
             'bad_revision': '265556',
             'metric': 'times/page_load_time',
+            'recipe_tester_name': 'linux_perf_bisect',
             'repeat_count': '15',
             'max_time_minutes': '8',
             'bug_id': '-1',
@@ -668,50 +590,10 @@
             'max_time_minutes': '8',
             'bug_id': '-1',
             'use_archive': '',
-            'use_buildbucket': False,
         }, **params_to_override)
     response = start_try_job.GetBisectConfig(**parameters)
     self.assertEqual(expected_command, response.get('command'))
 
-  def testGetConfig_AndroidTelemetryTest(self):
-    self._TestGetConfigCommand(
-        ('tools/perf/run_benchmark -v '
-         '--browser=android-chromium --output-format=buildbot '
-         '--upload-results '
-         '--also-run-disabled-tests '
-         'page_cycler.morejs'),
-        bisect_bot='android_nexus7_perf_bisect',
-        suite='page_cycler.morejs')
-
-  def testGetConfig_CCPerftests(self):
-    self._TestGetConfigCommand(
-        ('./out/Release/cc_perftests '
-         '--test-launcher-print-test-stdio=always --verbose'),
-        bisect_bot='linux_perf_bisect',
-        suite='cc_perftests')
-
-  def testGetConfig_AndroidCCPerftests(self):
-    self._TestGetConfigCommand(
-        'build/android/test_runner.py '
-        'gtest --release -s cc_perftests --verbose',
-        bisect_bot='android_nexus7_perf_bisect',
-        suite='cc_perftests')
-
-  def testGetConfig_IdbPerf(self):
-    self._TestGetConfigCommand(
-        (r'.\out\Release\performance_ui_tests.exe '
-         '--gtest_filter=IndexedDBTest.Perf'),
-        bisect_bot='win_perf_bisect',
-        suite='idb_perf')
-
-  def testGetConfig_PerformanceBrowserTests(self):
-    self._TestGetConfigCommand(
-        ('./out/Release/performance_browser_tests '
-         '--test-launcher-print-test-stdio=always '
-         '--enable-gpu'),
-        bisect_bot='linux_perf_bisect',
-        suite='performance_browser_tests')
-
   def testGuessBisectBot_FetchesNameFromBisectBotMap(self):
     namespaced_stored_object.Set(
         can_bisect.BISECT_BOT_MAP_KEY,
@@ -764,7 +646,6 @@
     job_entities = try_job.TryJob.query(
         try_job.TryJob.buildbucket_job_id == '1234567').fetch()
     self.assertEqual(1, len(job_entities))
-    self.assertTrue(job_entities[0].use_buildbucket)
     add_bug_comment_mock.assert_called_once_with(
         12345, 'Started bisect job https://None/buildbucket_job_status/1234567',
         send_email=False)
@@ -775,16 +656,20 @@
         config='config = {}',
         master_name='ChromiumPerf',
         internal_only=False,
-        job_type='bisect',
-        use_buildbucket=True)
+        job_type='bisect')
     self.assertEqual(
         {'error': 'No "recipe_tester_name" given.'},
         start_try_job.PerformBisect(bisect_job))
 
   @mock.patch.object(issue_tracker_service.IssueTrackerService, 'AddBugComment')
   @mock.patch(
+      'google.appengine.api.app_identity.get_default_version_hostname',
+      mock.MagicMock(return_value='my-dashboard.appspot.com'))
+  @mock.patch(
       'google.appengine.api.urlfetch.fetch',
       mock.MagicMock(side_effect=_MockFetch))
+  @mock.patch.object(start_try_job.buildbucket_service, 'PutJob',
+                     mock.MagicMock(return_value='33001'))
   @mock.patch.object(
       start_try_job.rietveld_service.RietveldService, 'MakeRequest',
       mock.MagicMock(side_effect=_MockMakeRequest))
@@ -813,9 +698,10 @@
     _TEST_EXPECTED_BOT = 'win_perf_bisect'
     _TEST_EXPECTED_CONFIG_CONTENTS = _BISECT_CONFIG_CONTENTS
     response = self.testapp.post('/start_try_job', query_parameters)
+    issue_url = 'https://my-dashboard.appspot.com/buildbucket_job_status/33001'
     self.assertEqual(
         json.dumps({'issue_id': '33001',
-                    'issue_url': 'https://test-rietveld.appspot.com/33001'}),
+                    'issue_url': issue_url}),
         response.body)
 
   @mock.patch(
@@ -845,9 +731,8 @@
     self.assertEqual(json.dumps({'issue_id': '33001'}), response.body)
 
   @mock.patch.object(issue_tracker_service.IssueTrackerService, 'AddBugComment')
-  @mock.patch(
-      'google.appengine.api.urlfetch.fetch',
-      mock.MagicMock(side_effect=_MockFailedFetch))
+  @mock.patch.object(start_try_job.buildbucket_service, 'PutJob',
+                     mock.MagicMock(side_effect=httplib2.HttpLib2Error))
   @mock.patch.object(
       start_try_job.rietveld_service.RietveldService, 'MakeRequest',
       mock.MagicMock(side_effect=_MockMakeRequest))
@@ -856,6 +741,7 @@
     query_parameters = {
         'bisect_bot': 'linux_perf_bisect',
         'suite': 'dromaeo.jslibstylejquery',
+        'metric': 'jslib/jslib',
         'good_revision': '215806',
         'bad_revision': '215828',
         'rerun_option': '',
@@ -950,14 +836,15 @@
             'use_archive': 'true',
         },
         {
-            'command': ('tools/perf/run_benchmark -v '
-                        '--browser=release --output-format=buildbot '
+            'command': ('src/tools/perf/run_benchmark -v '
+                        '--browser=release --output-format=chartjson '
                         '--upload-results '
                         '--also-run-disabled-tests '
                         'page_cycler.morejs'),
             'good_revision': '12345',
             'bad_revision': '23456',
             'metric': 'times/page_load_time',
+            'recipe_tester_name': 'win_perf_bisect',
             'repeat_count': '15',
             'max_time_minutes': '8',
             'bug_id': '-1',
@@ -981,14 +868,15 @@
             'use_archive': ''
         },
         {
-            'command': ('tools/perf/run_benchmark -v '
-                        '--browser=release_x64 --output-format=buildbot '
+            'command': ('src/tools/perf/run_benchmark -v '
+                        '--browser=release_x64 --output-format=chartjson '
                         '--upload-results '
                         '--also-run-disabled-tests '
                         'page_cycler.moz'),
             'good_revision': '265549',
             'bad_revision': '265556',
             'metric': 'times/page_load_time',
+            'recipe_tester_name': 'win_x64_perf_bisect',
             'repeat_count': '15',
             'max_time_minutes': '8',
             'bug_id': '-1',
@@ -997,7 +885,7 @@
             'bisect_mode': 'mean',
         })
 
-  def testGetConfig_UseBuildbucket_AndroidTelemetryTest(self):
+  def testGetConfig_AndroidTelemetryTest(self):
     self._TestGetConfigCommand(
         ('src/tools/perf/run_benchmark -v '
          '--browser=android-chromium --output-format=chartjson '
@@ -1005,41 +893,36 @@
          '--also-run-disabled-tests '
          'page_cycler.morejs'),
         bisect_bot='android_nexus7_perf_bisect',
-        suite='page_cycler.morejs',
-        use_buildbucket=True)
+        suite='page_cycler.morejs')
 
-  def testGetConfig_UseBuildbucket_CCPerftests(self):
+  def testGetConfig_CCPerftests(self):
     self._TestGetConfigCommand(
         ('./src/out/Release/cc_perftests '
          '--test-launcher-print-test-stdio=always --verbose'),
         bisect_bot='linux_perf_bisect',
-        suite='cc_perftests',
-        use_buildbucket=True)
+        suite='cc_perftests')
 
-  def testGetConfig_UseBuildbucket_AndroidCCPerftests(self):
+  def testGetConfig_AndroidCCPerftests(self):
     self._TestGetConfigCommand(
         'src/build/android/test_runner.py '
         'gtest --release -s cc_perftests --verbose',
         bisect_bot='android_nexus7_perf_bisect',
-        suite='cc_perftests',
-        use_buildbucket=True)
+        suite='cc_perftests')
 
-  def testGetConfig_UseBuildbucket_IdbPerf(self):
+  def testGetConfig_IdbPerf(self):
     self._TestGetConfigCommand(
         ('.\\src\\out\\Release\\performance_ui_tests.exe '
          '--gtest_filter=IndexedDBTest.Perf'),
         bisect_bot='win_perf_bisect',
-        suite='idb_perf',
-        use_buildbucket=True)
+        suite='idb_perf')
 
-  def testGetConfig_UseBuildbucket_PerformanceBrowserTests(self):
+  def testGetConfig_PerformanceBrowserTests(self):
     self._TestGetConfigCommand(
         ('./src/out/Release/performance_browser_tests '
          '--test-launcher-print-test-stdio=always '
          '--enable-gpu'),
         bisect_bot='linux_perf_bisect',
-        suite='performance_browser_tests',
-        use_buildbucket=True)
+        suite='performance_browser_tests')
 
   def testGetConfig_X64Bot_UsesX64ReleaseDirectory(self):
     self._TestGetConfigCommand(
@@ -1047,8 +930,7 @@
          '--test-launcher-print-test-stdio=always '
          '--enable-gpu'),
         bisect_bot='winx64nvidia_perf_bisect',
-        suite='performance_browser_tests',
-        use_buildbucket=True)
+        suite='performance_browser_tests')
 
   def testGuessMetric_SummaryMetricWithNoTIRLabel(self):
     testing_common.AddTests(
diff --git a/catapult/dashboard/dashboard/templates/edit_site_config.html b/catapult/dashboard/dashboard/templates/edit_site_config.html
index cbe8253..5db382b 100644
--- a/catapult/dashboard/dashboard/templates/edit_site_config.html
+++ b/catapult/dashboard/dashboard/templates/edit_site_config.html
@@ -54,8 +54,6 @@
         List of whitelisted sender IP addresses.</li>
       <li><a href="?key=project_id">project_id</a>:
         Project ID used for ticking custom metrics.</li>
-      <li><a href="?key=recipe_tester_director_map">recipe_tester_director_map</a>:
-        Map of tester names to bisector bot for recipe bisect.</li>
       <li><a href="?key=sheriff_domains_key">sheriff_domains_key</a>:
         The domains of users who can triage alerts.</li>
     </ul>
diff --git a/catapult/dashboard/dashboard/update_bug_with_results.py b/catapult/dashboard/dashboard/update_bug_with_results.py
index 5ee6c2b..c208654 100644
--- a/catapult/dashboard/dashboard/update_bug_with_results.py
+++ b/catapult/dashboard/dashboard/update_bug_with_results.py
@@ -27,6 +27,7 @@
 from dashboard.models import bug_data
 from dashboard.models import try_job
 
+
 COMPLETED, FAILED, PENDING, ABORTED = ('completed', 'failed', 'pending',
                                        'aborted')
 
@@ -91,9 +92,8 @@
     jobs and send comments to an issue on the issue tracker if a bisect job has
     completed.
     """
-    credentials = utils.ServiceAccountCredentials()
     issue_tracker = issue_tracker_service.IssueTrackerService(
-        additional_credentials=credentials)
+        utils.ServiceAccountHttp())
 
     # Set privilege so we can also fetch internal try_job entities.
     datastore_hooks.SetPrivilegedRequest()
@@ -123,8 +123,12 @@
     job: A TryJob entity, which represents one bisect try job.
     issue_tracker: An issue_tracker_service.IssueTrackerService instance.
   """
-  logging.info('Checking job %s', job.key.id())
+  logging.info('Checking job %s for bug %s, with buildbucket_job_id %s',
+               job.key.id(), job.bug_id, job.buildbucket_job_id)
 
+  if not _IsBuildBucketJobCompleted(job):
+    logging.info('Not yet COMPLETED.')
+    return
 
   job.CheckFailureFromBuildBucket()
 
@@ -137,14 +141,6 @@
     return
 
   results_data = job.results_data
-  # Skip this check for bisect fyi jobs, because if the job is fails due to
-  # bisect recipe or infra failures then an alert message should be sent to the
-  # team.
-  if (job.job_type != 'bisect-fyi' and (
-      not results_data or results_data.get('status') not in [COMPLETED,
-                                                             FAILED])):
-    logging.info('Not yet COMPLETED/FAILED')
-    return
 
   if job.job_type == 'perf-try':
     logging.info('Sending perf try job mail')
@@ -174,15 +170,18 @@
 
 def _CheckFYIBisectJob(job, issue_tracker):
   try:
-    if job.use_buildbucket and not job.buildbucket_job_id:
+    if not job.buildbucket_job_id:
       job.key.delete()
       return
 
-    if not _IsBisectJobCompleted(job):
-      return
     if not job.results_data:
       raise BisectJobFailure('Bisect job completed, but results data is not '
                              'found, bot might have failed to post results.')
+    # FAILED implies failed or cancelled jobs.
+    if job.status == FAILED:
+      raise BisectJobFailure(
+          _BUILD_FAILURE_REASON.get(
+              job.results_data.get('failure_reason'), 'Unknown'))
     error_message = bisect_fyi.VerifyBisectFYIResults(job)
     _PostSuccessfulResult(job, issue_tracker)
     if not bisect_fyi.IsBugUpdated(job, issue_tracker):
@@ -191,22 +190,13 @@
     error_message = 'Bisect job failed because, %s' % e
   except BugUpdateFailure as e:
     error_message = 'Failed to update bug with bisect results: %s' % e
+  except Exception as e:  # pylint: disable=broad-except
+    error_message = 'Failed to update bug with bisect results: %s' % e
   finally:
-    job_info = buildbucket_service.GetJobStatus(job.buildbucket_job_id)
-    job_info = job_info.get('build', {})
-    if not job.results_data:
-      job.results_data = {}
-    job.results_data['buildbot_log_url'] = str(job_info.get('url'))
-
-
-  # When the job fails before getting to the point where it post bisect results
-  # to the dashboard, the tryjob's results_data is not set.
-  # As a special case for Bisect FYI jobs, we query buildbucket to get the
-  # bisect job's status.
-  if ((job.results_data and job.results_data.get('status') == FAILED) or
-      error_message):
-    job.SetFailed()
-    _SendFYIBisectEmail(job, error_message)
+    if ((job.results_data and job.results_data.get('status') == FAILED) or
+        error_message):
+      job.SetFailed()
+      _SendFYIBisectEmail(job, error_message)
 
 
 def _SendPerfTryJobEmail(job):
@@ -289,6 +279,7 @@
     bug_comment += 'Additional errors:\n'
     for code in job.results_data.get('extra_result_code'):
       bug_comment += '%s\n' % _BUILD_FAILURE_DETAIL.get(code, code)
+  logging.info('Adding bug comment: %s', bug_comment)
   issue_tracker.AddBugComment(job.bug_id, bug_comment)
 
 
@@ -298,6 +289,7 @@
   time_since_last_ran = datetime.datetime.now() - job.last_ran_timestamp
   return time_since_last_ran > _STALE_TRYJOB_DELTA
 
+
 def _MapAnomaliesToMergeIntoBug(dest_bug_id, source_bug_id):
   """Maps anomalies from source bug to destination bug.
 
@@ -420,9 +412,19 @@
     job.put()
 
 
-def _IsBisectJobCompleted(job):
-  return _ValidateBuildbucketResponse(
-      buildbucket_service.GetJobStatus(job.buildbucket_job_id))
+def _IsBuildBucketJobCompleted(job):
+  """Checks whether the bisect job is completed."""
+  job_info = buildbucket_service.GetJobStatus(job.buildbucket_job_id)
+  if not job_info:
+    return False
+  data = job_info.get('build', {})
+  # The status of the build can be one of [STARTED, SCHEDULED or COMPLETED]
+  # The buildbucket 'status' fields are documented here:
+  # https://goto.google.com/bb_status
+  if data.get('status') != 'COMPLETED':
+    return False
+
+  return True
 
 
 def _ValidateBuildbucketResponse(job_info):
diff --git a/catapult/dashboard/dashboard/update_bug_with_results_test.py b/catapult/dashboard/dashboard/update_bug_with_results_test.py
index 269fe35..63f7e9f 100644
--- a/catapult/dashboard/dashboard/update_bug_with_results_test.py
+++ b/catapult/dashboard/dashboard/update_bug_with_results_test.py
@@ -156,14 +156,15 @@
   response = url_to_response_map[url][1]
   return testing_common.FakeResponseObject(response_code, response)
 
-def _MockBuildBucketResponse(result, updated_ts):
+
+def _MockBuildBucketResponse(result, updated_ts, status='COMPLETED'):
   return {
       "build": {
-          "status": "COMPLETED",
+          "status": status,
           "created_ts": "1468500053889710",
-          "url": "http://build.chromium.org/p/tryserver.chromium.perf/builders/winx64_10_perf_bisect/builds/594", #pylint: disable=line-too-long
+          "url": "http://build.chromium.org/p/tryserver.chromium.perf/builders/winx64_10_perf_bisect/builds/594",  # pylint: disable=line-too-long
           "bucket": "master.tryserver.chromium.perf",
-          "result_details_json": "{\"properties\": {\"got_nacl_revision\": \"0949e1bef9d6b25ee44eb69a54e0cc6f8a677375\", \"got_swarming_client_revision\": \"df6e95e7669883c8fe9ef956c69a544154701a49\", \"got_revision\": \"c061dd11ada8a97335b2ef9b13757cdb780f84e8\", \"recipe\": \"bisection/desktop_bisect\", \"got_webrtc_revision_cp\": \"refs/heads/master@{#13407}\", \"build_revision\": \"a16e208eee39697b78877c2482b8c4c8d67ac866\", \"buildnumber\": 594, \"slavename\": \"build230-m4\", \"got_revision_cp\": \"refs/heads/master@{#404161}\", \"blamelist\": [], \"branch\": \"\", \"revision\": \"\", \"workdir\": \"C://build/slave/winx64_10_perf_bisect\", \"repository\": \"\", \"buildername\": \"winx64_10_perf_bisect\", \"got_webrtc_revision\": \"05929e21d437bc5f80309455f168a9e4bb2bc94b\", \"mastername\": \"tryserver.chromium.perf\", \"build_scm\": \"git\", \"got_angle_revision\": \"5695fc990fae1897f31bd418f9278e931776abdf\", \"got_v8_revision\": \"b70ce97a8692ddc60102e481a502de32cd4b305e\", \"got_v8_revision_cp\": \"refs/heads/5.4.53@{#1}\", \"requester\": \"425761728072-pa1bs18esuhp2cp2qfa1u9vb6p1v6kfu@developer.gserviceaccount.com\", \"buildbotURL\": \"http://build.chromium.org/p/tryserver.chromium.perf/\", \"bisect_config\": {\"good_revision\": \"404161\", \"builder_host\": null, \"recipe_tester_name\": \"winx64_10_perf_bisect\", \"metric\": \"load_tools-memory:chrome:all_processes:reported_by_chrome:dom_storage:effective_size_avg/load_tools_dropbox\", \"max_time_minutes\": \"20\", \"builder_port\": null, \"bug_id\": 627867, \"command\": \"src/tools/perf/run_benchmark -v --browser=release_x64 --output-format=chartjson --upload-results --also-run-disabled-tests system_health.memory_desktop\", \"repeat_count\": \"20\", \"try_job_id\": 5774140045262848, \"test_type\": \"perf\", \"gs_bucket\": \"chrome-perf\", \"bad_revision\": \"404190\"}, \"project\": \"\", \"requestedAt\": 1468500060, \"got_buildtools_revision\": \"aa47d9773d8f4d6254a587a1240b3dc023d54f06\"}}", #pylint: disable=line-too-long
+          "result_details_json": "{\"properties\": {\"got_nacl_revision\": \"0949e1bef9d6b25ee44eb69a54e0cc6f8a677375\", \"got_swarming_client_revision\": \"df6e95e7669883c8fe9ef956c69a544154701a49\", \"got_revision\": \"c061dd11ada8a97335b2ef9b13757cdb780f84e8\", \"recipe\": \"bisection/desktop_bisect\", \"got_webrtc_revision_cp\": \"refs/heads/master@{#13407}\", \"build_revision\": \"a16e208eee39697b78877c2482b8c4c8d67ac866\", \"buildnumber\": 594, \"slavename\": \"build230-m4\", \"got_revision_cp\": \"refs/heads/master@{#404161}\", \"blamelist\": [], \"branch\": \"\", \"revision\": \"\", \"workdir\": \"C://build/slave/winx64_10_perf_bisect\", \"repository\": \"\", \"buildername\": \"winx64_10_perf_bisect\", \"got_webrtc_revision\": \"05929e21d437bc5f80309455f168a9e4bb2bc94b\", \"mastername\": \"tryserver.chromium.perf\", \"build_scm\": \"git\", \"got_angle_revision\": \"5695fc990fae1897f31bd418f9278e931776abdf\", \"got_v8_revision\": \"b70ce97a8692ddc60102e481a502de32cd4b305e\", \"got_v8_revision_cp\": \"refs/heads/5.4.53@{#1}\", \"requester\": \"425761728072-pa1bs18esuhp2cp2qfa1u9vb6p1v6kfu@developer.gserviceaccount.com\", \"buildbotURL\": \"http://build.chromium.org/p/tryserver.chromium.perf/\", \"bisect_config\": {\"good_revision\": \"404161\", \"builder_host\": null, \"recipe_tester_name\": \"winx64_10_perf_bisect\", \"metric\": \"load_tools-memory:chrome:all_processes:reported_by_chrome:dom_storage:effective_size_avg/load_tools_dropbox\", \"max_time_minutes\": \"20\", \"builder_port\": null, \"bug_id\": 627867, \"command\": \"src/tools/perf/run_benchmark -v --browser=release_x64 --output-format=chartjson --upload-results --also-run-disabled-tests system_health.memory_desktop\", \"repeat_count\": \"20\", \"try_job_id\": 5774140045262848, \"test_type\": \"perf\", \"gs_bucket\": \"chrome-perf\", \"bad_revision\": \"404190\"}, \"project\": \"\", \"requestedAt\": 1468500060, \"got_buildtools_revision\": \"aa47d9773d8f4d6254a587a1240b3dc023d54f06\"}}",  # pylint: disable=line-too-long
           "status_changed_ts": "1468501519275050",
           "failure_reason": "INFRA_FAILURE",
           "result": result,
@@ -176,9 +177,11 @@
       "etag": "H2Wqa6BpE2P1s-eqgn97T3TaxBw/X08XU5XK_4l3O610jUcjy3KlfwU"
   }
 
+
 # In this class, we patch apiclient.discovery.build so as to not make network
 # requests, which are normally made when the IssueTrackerService is initialized.
 @mock.patch('apiclient.discovery.build', mock.MagicMock())
+@mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
 @mock.patch.object(utils, 'TickMonitoringCustomMetric', mock.MagicMock())
 class UpdateBugWithResultsTest(testing_common.TestCase):
 
@@ -216,6 +219,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service, 'IssueTrackerService',
       mock.MagicMock())
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet(self):
     # Put succeeded, failed, staled, and not yet finished jobs in the
     # datastore.
@@ -247,6 +253,12 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service, 'IssueTrackerService',
       mock.MagicMock())
+  @mock.patch.object(
+      buildbucket_service, 'GetJobStatus',
+      mock.MagicMock(
+          return_value=_MockBuildBucketResponse(
+              result='SUCCESS',
+              updated_ts=int(round(time.time() * 1000000)))))
   def testCreateTryJob_WithoutExistingBug(self):
     # Put succeeded job in the datastore.
     try_job.TryJob(
@@ -261,7 +273,7 @@
     self.assertEqual(12345, pending_jobs[0].bug_id)
     self.assertEqual('completed', pending_jobs[0].status)
 
-  @mock.patch.object(utils, 'ServiceAccountCredentials', mock.MagicMock())
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   @mock.patch(
       'google.appengine.api.urlfetch.fetch',
       mock.MagicMock(side_effect=_MockFetch))
@@ -269,6 +281,9 @@
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment', mock.MagicMock(return_value=False))
   @mock.patch('logging.error')
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_FailsToUpdateBug_LogsErrorAndMovesOn(self, mock_logging_error):
     # Put a successful job and a failed job with partial results.
     # Note that AddBugComment is mocked to always returns false, which
@@ -294,6 +309,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment')
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_BisectCulpritHasAuthor_AssignsAuthor(self, mock_update_bug):
     # When a bisect has a culprit for a perf regression,
     # author and reviewer of the CL should be cc'ed on issue update.
@@ -312,6 +330,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment')
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_FailedRevisionResponse(self, mock_add_bug):
     # When a Rietveld CL link fails to respond, only update CL owner in CC
     # list.
@@ -336,6 +357,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment', mock.MagicMock())
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_PositiveResult_StoresCommitHash(self):
     self._AddTryJob(12345, 'started', 'win_perf',
                     results_data=_SAMPLE_BISECT_RESULTS_JSON)
@@ -350,6 +374,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment', mock.MagicMock())
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_NegativeResult_DoesNotStoreCommitHash(self):
     sample_bisect_results = copy.deepcopy(_SAMPLE_BISECT_RESULTS_JSON)
     sample_bisect_results['culprit_data'] = None
@@ -400,6 +427,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment')
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_InternalOnlyTryJob_AddsInternalOnlyBugLabel(
       self, mock_update_bug):
     self._AddTryJob(12345, 'started', 'win_perf',
@@ -418,6 +448,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment')
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_FailedTryJob_UpdatesBug(
       self, mock_update_bug):
     self._AddTryJob(12345, 'started', 'win_perf',
@@ -457,6 +490,7 @@
     messages = self.mail_stub.get_sent_messages()
     self.assertEqual(0, len(messages))
 
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   @mock.patch(
       'google.appengine.api.urlfetch.fetch',
       mock.MagicMock(side_effect=_MockFetch))
@@ -469,6 +503,12 @@
   @mock.patch.object(
       update_bug_with_results, '_ValidateBuildbucketResponse',
       mock.MagicMock(return_value=True))
+  @mock.patch.object(
+      buildbucket_service, 'GetJobStatus',
+      mock.MagicMock(
+          return_value=_MockBuildBucketResponse(
+              result='FAILURE',
+              updated_ts=int(round(time.time() * 1000000)))))
   def testFYI_Failed_Job_SendEmail(self):
     stored_object.Set(
         bisect_fyi._BISECT_FYI_CONFIGS_KEY,
@@ -480,6 +520,7 @@
     self._AddTryJob(12345, 'started', 'win_perf',
                     results_data=sample_bisect_results,
                     internal_only=True,
+                    buildbucket_job_id='12345',
                     config=utils.BisectConfigPythonString(bisect_config),
                     job_type='bisect-fyi',
                     job_name='positive_culprit',
@@ -489,6 +530,7 @@
     messages = self.mail_stub.get_sent_messages()
     self.assertEqual(1, len(messages))
 
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   @mock.patch(
       'google.appengine.api.urlfetch.fetch',
       mock.MagicMock(side_effect=_MockFetch))
@@ -501,6 +543,12 @@
   @mock.patch.object(
       update_bug_with_results, '_ValidateBuildbucketResponse',
       mock.MagicMock(side_effect=update_bug_with_results.BisectJobFailure))
+  @mock.patch.object(
+      buildbucket_service, 'GetJobStatus',
+      mock.MagicMock(
+          return_value=_MockBuildBucketResponse(
+              result='FAILURE',
+              updated_ts=int(round(time.time() * 1000000)))))
   def testFYI_Failed_Job_SendEmail_On_Exception(self):
     stored_object.Set(
         bisect_fyi._BISECT_FYI_CONFIGS_KEY,
@@ -512,6 +560,7 @@
     self._AddTryJob(12345, 'started', 'win_perf',
                     results_data=sample_bisect_results,
                     internal_only=True,
+                    buildbucket_job_id='12345',
                     config=utils.BisectConfigPythonString(bisect_config),
                     job_type='bisect-fyi',
                     job_name='positive_culprit',
@@ -579,6 +628,9 @@
   @mock.patch.object(
       update_bug_with_results.issue_tracker_service.IssueTrackerService,
       'AddBugComment')
+  @mock.patch.object(
+      update_bug_with_results, '_IsBuildBucketJobCompleted',
+      mock.MagicMock(return_value=True))
   def testGet_PostResult_WithoutBugEntity(
       self, mock_update_bug):
     job = try_job.TryJob(bug_id=12345, status='started', bot='win_perf',
@@ -718,7 +770,8 @@
       mock.MagicMock(
           return_value=_MockBuildBucketResponse(
               result='STARTED',
-              updated_ts=int(round(time.time() * 1000000)))))
+              updated_ts=int(round(time.time() * 1000000)),
+              status='STARTED')))
   def testCheckFailureBuildBucket_IsStarted(self):
     self._AddTryJob(
         bug_id=1111, status='started', bot='win_perf',
diff --git a/catapult/dashboard/dashboard/utils.py b/catapult/dashboard/dashboard/utils.py
index 33a30a7..38ae6d0 100644
--- a/catapult/dashboard/dashboard/utils.py
+++ b/catapult/dashboard/dashboard/utils.py
@@ -19,6 +19,7 @@
 from google.appengine.api import urlfetch_errors
 from google.appengine.api import users
 from google.appengine.ext import ndb
+import httplib2
 from oauth2client import client
 
 from dashboard import stored_object
@@ -323,7 +324,7 @@
                      '/_ah/api/discovery/v1/apis/{api}/{apiVersion}/rest')
     service = discovery.build(
         'auth', 'v1', discoveryServiceUrl=discovery_url,
-        credentials=ServiceAccountCredentials())
+        http=ServiceAccountHttp())
     request = service.membership(identity=identity, group=group)
     response = request.execute()
     return response['is_member']
@@ -332,17 +333,21 @@
     return False
 
 
-def ServiceAccountCredentials():
+def ServiceAccountHttp():
   """Returns the Credentials of the service account if available."""
   account_details = stored_object.Get(SERVICE_ACCOUNT_KEY)
   if not account_details:
-    logging.error('Service account credentials not found.')
-    return None
-  return client.SignedJwtAssertionCredentials(
+    raise KeyError('Service account credentials not found.')
+
+  credentials = client.SignedJwtAssertionCredentials(
       service_account_name=account_details['client_email'],
       private_key=account_details['private_key'],
       scope=EMAIL_SCOPE)
 
+  http = httplib2.Http()
+  credentials.authorize(http)
+  return http
+
 
 def IsValidSheriffUser():
   """Checks whether the user should be allowed to triage alerts."""
diff --git a/catapult/dashboard/dashboard/utils_test.py b/catapult/dashboard/dashboard/utils_test.py
index b49a423..28ba97c 100644
--- a/catapult/dashboard/dashboard/utils_test.py
+++ b/catapult/dashboard/dashboard/utils_test.py
@@ -252,6 +252,7 @@
   def testValidate_TypeConversion_Passes(self):
     utils.Validate([1], '1')
 
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   @mock.patch('utils.discovery.build')
   def testIsGroupMember_PositiveCase(self, mock_discovery_build):
     mock_request = mock.MagicMock()
@@ -264,7 +265,7 @@
     mock_service.membership.assert_called_once_with(
         identity='foo@bar.com', group='group')
 
-  @mock.patch.object(utils, 'ServiceAccountCredentials', mock.MagicMock())
+  @mock.patch.object(utils, 'ServiceAccountHttp', mock.MagicMock())
   @mock.patch('logging.error')
   @mock.patch('utils.discovery.build')
   def testIsGroupMember_RequestFails_LogsErrorAndReturnsFalse(
diff --git a/catapult/dependency_manager/PRESUBMIT.py b/catapult/dependency_manager/PRESUBMIT.py
index 3db32ce..a34480c 100644
--- a/catapult/dependency_manager/PRESUBMIT.py
+++ b/catapult/dependency_manager/PRESUBMIT.py
@@ -25,7 +25,7 @@
   return [
       project_dir,
 
-      input_api.os_path.join(catapult_dir, 'catapult_base'),
+      input_api.os_path.join(catapult_dir, 'common', 'py_utils'),
 
       input_api.os_path.join(catapult_dir, 'third_party', 'mock'),
       input_api.os_path.join(catapult_dir, 'third_party', 'pyfakefs'),
diff --git a/catapult/dependency_manager/dependency_manager/__init__.py b/catapult/dependency_manager/dependency_manager/__init__.py
index f7908c0..296eb04 100644
--- a/catapult/dependency_manager/dependency_manager/__init__.py
+++ b/catapult/dependency_manager/dependency_manager/__init__.py
@@ -18,7 +18,7 @@
     sys.path.append(path)
 
 
-_AddDirToPythonPath(CATAPULT_PATH, 'catapult_base')
+_AddDirToPythonPath(CATAPULT_PATH, 'common', 'py_utils')
 _AddDirToPythonPath(CATAPULT_THIRD_PARTY_PATH, 'mock')
 _AddDirToPythonPath(CATAPULT_THIRD_PARTY_PATH, 'pyfakefs')
 _AddDirToPythonPath(DEPENDENCY_MANAGER_PATH)
diff --git a/catapult/dependency_manager/dependency_manager/base_config.py b/catapult/dependency_manager/dependency_manager/base_config.py
index 47897c7..840ddf8 100644
--- a/catapult/dependency_manager/dependency_manager/base_config.py
+++ b/catapult/dependency_manager/dependency_manager/base_config.py
@@ -6,7 +6,7 @@
 import logging
 import os
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 from dependency_manager import archive_info
 from dependency_manager import cloud_storage_info
 from dependency_manager import dependency_info
diff --git a/catapult/dependency_manager/dependency_manager/base_config_unittest.py b/catapult/dependency_manager/dependency_manager/base_config_unittest.py
index 6f1140c..2cffbd8 100755
--- a/catapult/dependency_manager/dependency_manager/base_config_unittest.py
+++ b/catapult/dependency_manager/dependency_manager/base_config_unittest.py
@@ -7,7 +7,7 @@
 import os
 import unittest
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 import mock
 from pyfakefs import fake_filesystem_unittest
 from pyfakefs import fake_filesystem
diff --git a/catapult/dependency_manager/dependency_manager/cloud_storage_info.py b/catapult/dependency_manager/dependency_manager/cloud_storage_info.py
index e8b73c8..376c311 100644
--- a/catapult/dependency_manager/dependency_manager/cloud_storage_info.py
+++ b/catapult/dependency_manager/dependency_manager/cloud_storage_info.py
@@ -6,7 +6,7 @@
 import os
 import stat
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 
 from dependency_manager import exceptions
 
diff --git a/catapult/dependency_manager/dependency_manager/cloud_storage_info_unittest.py b/catapult/dependency_manager/dependency_manager/cloud_storage_info_unittest.py
index 5c03d9a..be44fc1 100644
--- a/catapult/dependency_manager/dependency_manager/cloud_storage_info_unittest.py
+++ b/catapult/dependency_manager/dependency_manager/cloud_storage_info_unittest.py
@@ -8,7 +8,7 @@
 
 import mock
 from pyfakefs import fake_filesystem_unittest
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 
 from dependency_manager import archive_info
 from dependency_manager import cloud_storage_info
@@ -127,7 +127,7 @@
     self.tearDownPyfakefs()
 
   @mock.patch(
-      'catapult_base.cloud_storage.GetIfHashChanged')
+      'py_utils.cloud_storage.GetIfHashChanged')
   def testGetRemotePathNoArchive(self, cs_get_mock):
     def _GetIfHashChangedMock(cs_path, download_path, bucket, file_hash):
       del cs_path, bucket, file_hash
@@ -198,7 +198,7 @@
 
 
   @mock.patch(
-      'catapult_base.cloud_storage.GetIfHashChanged')
+      'py_utils.cloud_storage.GetIfHashChanged')
   def testGetRemotePathCloudStorageErrors(self, cs_get_mock):
     cs_get_mock.side_effect = cloud_storage.CloudStorageError
     self.assertRaises(cloud_storage.CloudStorageError,
diff --git a/catapult/dependency_manager/dependency_manager/dependency_manager_unittest.py b/catapult/dependency_manager/dependency_manager/dependency_manager_unittest.py
index 1d55afe..86d17f7 100644
--- a/catapult/dependency_manager/dependency_manager/dependency_manager_unittest.py
+++ b/catapult/dependency_manager/dependency_manager/dependency_manager_unittest.py
@@ -4,9 +4,10 @@
 
 # pylint: disable=unused-argument
 
-from catapult_base import cloud_storage
 import mock
+
 from pyfakefs import fake_filesystem_unittest
+from py_utils import cloud_storage
 
 import dependency_manager
 from dependency_manager import exceptions
diff --git a/catapult/dependency_manager/dependency_manager/dependency_manager_util.py b/catapult/dependency_manager/dependency_manager/dependency_manager_util.py
index afa15f3..ed65db7 100644
--- a/catapult/dependency_manager/dependency_manager/dependency_manager_util.py
+++ b/catapult/dependency_manager/dependency_manager/dependency_manager_util.py
@@ -20,6 +20,9 @@
 
 
 def RemoveDir(dir_path):
+  assert os.path.isabs(dir_path)
+  if sys.platform.startswith('win'):
+    dir_path = u'\\\\?\\' + dir_path
   if os.path.isdir(dir_path):
     shutil.rmtree(dir_path, onerror=_WinReadOnlyHandler)
 
@@ -87,9 +90,14 @@
   try:
     with zipfile.ZipFile(archive_path, 'r') as archive:
       VerifySafeArchive(archive)
+      assert os.path.isabs(unzip_path)
+      unzip_path_without_prefix = unzip_path
+      if sys.platform.startswith('win'):
+        unzip_path = u'\\\\?\\' + unzip_path
       archive.extractall(path=unzip_path)
       SetUnzippedDirPermissions(archive, unzip_path)
   except:
-    if unzip_path and os.path.isdir(unzip_path):
-      RemoveDir(unzip_path)
+    # Hack necessary because isdir doesn't work with escaped paths on Windows.
+    if unzip_path_without_prefix and os.path.isdir(unzip_path_without_prefix):
+      RemoveDir(unzip_path_without_prefix)
     raise
diff --git a/catapult/dependency_manager/dependency_manager/dependency_manager_util_unittest.py b/catapult/dependency_manager/dependency_manager/dependency_manager_util_unittest.py
index 19889ee..c62bfd5 100644
--- a/catapult/dependency_manager/dependency_manager/dependency_manager_util_unittest.py
+++ b/catapult/dependency_manager/dependency_manager/dependency_manager_util_unittest.py
@@ -135,6 +135,34 @@
     self.AssertExpectedDirFiles(self.tmp_dir)
     dependency_manager_util.RemoveDir(unzip_path)
 
+  def testUnzipFileContainingLongPath(self):
+    try:
+      dir_path = self.tmp_dir
+      if sys.platform.startswith('win'):
+        dir_path = u'\\\\?\\' + dir_path
+
+      archive_suffix = ''
+      # 260 is the Windows API path length limit.
+      while len(archive_suffix) < 260:
+        archive_suffix = os.path.join(archive_suffix, 'really')
+      contents_dir_path = os.path.join(dir_path, archive_suffix)
+      os.makedirs(contents_dir_path)
+      filename = os.path.join(contents_dir_path, 'longpath.txt')
+      open(filename, 'a').close()
+
+      base_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
+      archive_path = shutil.make_archive(base_path, 'zip', dir_path)
+      self.assertTrue(os.path.exists(archive_path))
+      self.assertTrue(zipfile.is_zipfile(archive_path))
+    except:
+      if os.path.isfile(archive_path):
+        os.remove(archive_path)
+      raise
+
+    unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
+    dependency_manager_util.UnzipArchive(archive_path, unzip_path)
+    dependency_manager_util.RemoveDir(unzip_path)
+
   def testUnzipFileFailure(self):
     unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
     self.assertFalse(os.path.exists(unzip_path))
diff --git a/catapult/dependency_manager/dependency_manager/exceptions.py b/catapult/dependency_manager/dependency_manager/exceptions.py
index 96cb4e6..d7863db 100644
--- a/catapult/dependency_manager/dependency_manager/exceptions.py
+++ b/catapult/dependency_manager/dependency_manager/exceptions.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 
 
 CloudStorageError = cloud_storage.CloudStorageError
diff --git a/catapult/dependency_manager/dependency_manager/uploader.py b/catapult/dependency_manager/dependency_manager/uploader.py
index 34b91f5..e88b7c0 100644
--- a/catapult/dependency_manager/dependency_manager/uploader.py
+++ b/catapult/dependency_manager/dependency_manager/uploader.py
@@ -5,7 +5,7 @@
 import logging
 import os
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 
 from dependency_manager import exceptions
 
diff --git a/catapult/devil/bin/run_py_devicetests b/catapult/devil/bin/run_py_devicetests
index c23839f..656bedf 100755
--- a/catapult/devil/bin/run_py_devicetests
+++ b/catapult/devil/bin/run_py_devicetests
@@ -10,14 +10,23 @@
     os.path.dirname(__file__), '..', '..'))
 _DEVIL_PATH = os.path.abspath(os.path.join(
     os.path.dirname(__file__), '..'))
+_TYP_PATH = os.path.abspath(os.path.join(_CATAPULT_PATH, 'third_party', 'typ'))
 
-sys.path.append(_CATAPULT_PATH)
-from catapult_build import run_with_typ
+sys.path.append(_TYP_PATH)
+import typ
+
+sys.path.append(_DEVIL_PATH)
+from devil.android import device_test_case
 
 
 def main():
-  sys.argv.extend(['--suffixes', '*_devicetest.py', '-j', '1'])
-  return run_with_typ.Run(top_level_dir=_DEVIL_PATH)
+  runner = typ.Runner()
+  runner.setup_fn = device_test_case.PrepareDevices
+  return runner.main(
+      coverage_source=[_DEVIL_PATH],
+      jobs=1,
+      suffixes=['*_devicetest.py'],
+      top_level_dir=_DEVIL_PATH)
 
 if __name__ == '__main__':
   sys.exit(main())
diff --git a/catapult/devil/devil/android/device_test_case.py b/catapult/devil/devil/android/device_test_case.py
new file mode 100644
index 0000000..b995fa6
--- /dev/null
+++ b/catapult/devil/devil/android/device_test_case.py
@@ -0,0 +1,54 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import threading
+import unittest
+
+from devil.android import device_errors
+from devil.android import device_utils
+
+_devices_lock = threading.Lock()
+_devices_condition = threading.Condition(_devices_lock)
+_devices = set()
+
+
+def PrepareDevices(*_args):
+
+  raw_devices = device_utils.DeviceUtils.HealthyDevices()
+  live_devices = []
+  for d in raw_devices:
+    try:
+      d.WaitUntilFullyBooted(timeout=5, retries=0)
+      live_devices.append(str(d))
+    except (device_errors.CommandFailedError,
+            device_errors.CommandTimeoutError):
+      pass
+  with _devices_lock:
+    _devices.update(set(live_devices))
+
+  if not _devices:
+    raise Exception('No live devices attached.')
+
+
+class DeviceTestCase(unittest.TestCase):
+
+  def __init__(self, *args, **kwargs):
+    super(DeviceTestCase, self).__init__(*args, **kwargs)
+    self.serial = None
+
+  #override
+  def setUp(self):
+    super(DeviceTestCase, self).setUp()
+    with _devices_lock:
+      while not _devices:
+        _devices_condition.wait(5)
+      self.serial = _devices.pop()
+
+  #override
+  def tearDown(self):
+    super(DeviceTestCase, self).tearDown()
+    with _devices_lock:
+      _devices.add(self.serial)
+      _devices_condition.notify()
+
diff --git a/catapult/devil/devil/android/device_utils.py b/catapult/devil/devil/android/device_utils.py
index 93aaaf9..1a99650 100644
--- a/catapult/devil/devil/android/device_utils.py
+++ b/catapult/devil/devil/android/device_utils.py
@@ -489,6 +489,12 @@
     apks = []
     for line in output:
       if not line.startswith('package:'):
+        # KitKat on x86 may show following warnings that is safe to ignore.
+        if (line.startswith('WARNING: linker: libdvm.so has text relocations.')
+            and version_codes.KITKAT <= self.build_version_sdk
+            and self.build_version_sdk <= version_codes.KITKAT_WATCH
+            and self.product_cpu_abi == 'x86'):
+          continue
         raise device_errors.CommandFailedError(
             'pm path returned: %r' % '\n'.join(output), str(self))
       apks.append(line[len('package:'):])
diff --git a/catapult/devil/devil/android/device_utils_devicetest.py b/catapult/devil/devil/android/device_utils_devicetest.py
index 33c1fb9..54ab7db 100755
--- a/catapult/devil/devil/android/device_utils_devicetest.py
+++ b/catapult/devil/devil/android/device_utils_devicetest.py
@@ -17,6 +17,7 @@
   sys.path.append(
       os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..', )))
 
+from devil.android import device_test_case
 from devil.android import device_utils
 from devil.android.sdk import adb_wrapper
 from devil.utils import cmd_helper
@@ -29,12 +30,11 @@
 _SUB_DIR2 = "sub2"
 
 
-class DeviceUtilsPushDeleteFilesTest(unittest.TestCase):
+class DeviceUtilsPushDeleteFilesTest(device_test_case.DeviceTestCase):
 
   def setUp(self):
-    devices = adb_wrapper.AdbWrapper.Devices()
-    assert devices, 'A device must be attached'
-    self.adb = devices[0]
+    super(DeviceUtilsPushDeleteFilesTest, self).setUp()
+    self.adb = adb_wrapper.AdbWrapper(self.serial)
     self.adb.WaitForDevice()
     self.device = device_utils.DeviceUtils(
         self.adb, default_timeout=10, default_retries=0)
@@ -210,11 +210,16 @@
     cmd_helper.RunCmd(['rm', '-rf', host_tmp_dir])
 
   def testRestartAdbd(self):
-    old_adbd_pid = self.device.RunShellCommand(
-        ['ps', '|', 'grep', 'adbd'])[1].split()[1]
+    def get_adbd_pid():
+      ps_output = self.device.RunShellCommand(['ps'])
+      for ps_line in ps_output:
+        if 'adbd' in ps_line:
+          return ps_line.split()[1]
+      self.fail('Unable to find adbd')
+
+    old_adbd_pid = get_adbd_pid()
     self.device.RestartAdbd()
-    new_adbd_pid = self.device.RunShellCommand(
-        ['ps', '|', 'grep', 'adbd'])[1].split()[1]
+    new_adbd_pid = get_adbd_pid()
     self.assertNotEqual(old_adbd_pid, new_adbd_pid)
 
 
diff --git a/catapult/devil/devil/android/perf/perf_control_devicetest.py b/catapult/devil/devil/android/perf/perf_control_devicetest.py
index 71bf3fb..b645803 100644
--- a/catapult/devil/devil/android/perf/perf_control_devicetest.py
+++ b/catapult/devil/devil/android/perf/perf_control_devicetest.py
@@ -9,19 +9,18 @@
 
 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
 
+from devil.android import device_test_case
 from devil.android import device_utils
 from devil.android.perf import perf_control
 
 
-class TestPerfControl(unittest.TestCase):
+class TestPerfControl(device_test_case.DeviceTestCase):
 
   def setUp(self):
+    super(TestPerfControl, self).setUp()
     if not os.getenv('BUILDTYPE'):
       os.environ['BUILDTYPE'] = 'Debug'
-
-    devices = device_utils.DeviceUtils.HealthyDevices(blacklist=None)
-    self.assertGreater(len(devices), 0, 'No device attached!')
-    self._device = devices[0]
+    self._device = device_utils.DeviceUtils(self.serial)
 
   def testHighPerfMode(self):
     perf = perf_control.PerfControl(self._device)
diff --git a/catapult/devil/devil/android/sdk/adb_compatibility_devicetest.py b/catapult/devil/devil/android/sdk/adb_compatibility_devicetest.py
index 6f67016..49a4971 100644
--- a/catapult/devil/devil/android/sdk/adb_compatibility_devicetest.py
+++ b/catapult/devil/devil/android/sdk/adb_compatibility_devicetest.py
@@ -17,6 +17,7 @@
 sys.path.append(os.path.join(_CATAPULT_BASE_DIR, 'devil'))
 from devil import devil_env
 from devil.android import device_errors
+from devil.android import device_test_case
 from devil.android.sdk import adb_wrapper
 from devil.utils import cmd_helper
 from devil.utils import timeout_retry
@@ -37,7 +38,7 @@
           if name == 'adb']
 
 
-class AdbCompatibilityTest(unittest.TestCase):
+class AdbCompatibilityTest(device_test_case.DeviceTestCase):
 
   @classmethod
   def setUpClass(cls):
@@ -97,10 +98,7 @@
 
   def getTestInstance(self):
     """Creates a real AdbWrapper instance for testing."""
-    devices = adb_wrapper.AdbWrapper.Devices()
-    if not devices:
-      self.skipTest('No test device available.')
-    return adb_wrapper.AdbWrapper(devices[0])
+    return adb_wrapper.AdbWrapper(self.serial)
 
   def testShell(self):
     under_test = self.getTestInstance()
diff --git a/catapult/devil/devil/android/sdk/adb_wrapper.py b/catapult/devil/devil/android/sdk/adb_wrapper.py
index 57e6396..cbc5ed5 100644
--- a/catapult/devil/devil/android/sdk/adb_wrapper.py
+++ b/catapult/devil/devil/android/sdk/adb_wrapper.py
@@ -28,6 +28,8 @@
   import dependency_manager  # pylint: disable=import-error
 
 
+ADB_KEYS_FILE = '/data/misc/adb/adb_keys'
+
 DEFAULT_TIMEOUT = 30
 DEFAULT_RETRIES = 2
 
@@ -129,7 +131,7 @@
     up a new ADB shell for each command.
 
     Example of use:
-    with pshell as PersistentShell('123456789'):
+    with PersistentShell('123456789') as pshell:
         pshell.RunCommand('which ls')
         pshell.RunCommandAndClose('echo TEST')
     '''
diff --git a/catapult/devil/devil/android/sdk/adb_wrapper_devicetest.py b/catapult/devil/devil/android/sdk/adb_wrapper_devicetest.py
index 9a38c6c..d97d56a 100755
--- a/catapult/devil/devil/android/sdk/adb_wrapper_devicetest.py
+++ b/catapult/devil/devil/android/sdk/adb_wrapper_devicetest.py
@@ -11,16 +11,16 @@
 import time
 import unittest
 
+from devil.android import device_test_case
 from devil.android import device_errors
 from devil.android.sdk import adb_wrapper
 
 
-class TestAdbWrapper(unittest.TestCase):
+class TestAdbWrapper(device_test_case.DeviceTestCase):
 
   def setUp(self):
-    devices = adb_wrapper.AdbWrapper.Devices()
-    assert devices, 'A device must be attached'
-    self._adb = devices[0]
+    super(TestAdbWrapper, self).setUp()
+    self._adb = adb_wrapper.AdbWrapper(self.serial)
     self._adb.WaitForDevice()
 
   @staticmethod
@@ -94,7 +94,13 @@
     self._adb.WaitForDevice()
     self.assertEqual(self._adb.GetState(), 'device')
     print 'waiting for package manager...'
-    while 'package:' not in self._adb.Shell('pm path android'):
+    while True:
+      try:
+        android_path = self._adb.Shell('pm path android')
+      except device_errors.AdbShellCommandFailedError:
+        android_path = None
+      if android_path and 'package:' in android_path:
+        break
       time.sleep(1)
 
   def testRootRemount(self):
diff --git a/catapult/devil/devil/android/sdk/keyevent.py b/catapult/devil/devil/android/sdk/keyevent.py
index 732a7dc..40f9416 100644
--- a/catapult/devil/devil/android/sdk/keyevent.py
+++ b/catapult/devil/devil/android/sdk/keyevent.py
@@ -8,7 +8,54 @@
 """
 
 KEYCODE_BACK = 4
+
+KEYCODE_0 = 7
+KEYCODE_1 = 8
+KEYCODE_2 = 9
+KEYCODE_3 = 10
+KEYCODE_4 = 11
+KEYCODE_5 = 12
+KEYCODE_6 = 13
+KEYCODE_7 = 14
+KEYCODE_8 = 15
+KEYCODE_9 = 16
+
 KEYCODE_DPAD_RIGHT = 22
+
+KEYCODE_A = 29
+KEYCODE_B = 30
+KEYCODE_C = 31
+KEYCODE_D = 32
+KEYCODE_E = 33
+KEYCODE_F = 34
+KEYCODE_G = 35
+KEYCODE_H = 36
+KEYCODE_I = 37
+KEYCODE_J = 38
+KEYCODE_K = 39
+KEYCODE_L = 40
+KEYCODE_M = 41
+KEYCODE_N = 42
+KEYCODE_O = 43
+KEYCODE_P = 44
+KEYCODE_Q = 45
+KEYCODE_R = 46
+KEYCODE_S = 47
+KEYCODE_T = 48
+KEYCODE_U = 49
+KEYCODE_V = 50
+KEYCODE_W = 51
+KEYCODE_X = 52
+KEYCODE_Y = 53
+KEYCODE_Z = 54
+
+KEYCODE_PERIOD = 56
+
+KEYCODE_SPACE = 62
+
 KEYCODE_ENTER = 66
+KEYCODE_DEL = 67
+
 KEYCODE_MENU = 82
+
 KEYCODE_APP_SWITCH = 187
diff --git a/catapult/devil/devil/android/settings.py b/catapult/devil/devil/android/settings.py
new file mode 100644
index 0000000..2249c2a
--- /dev/null
+++ b/catapult/devil/devil/android/settings.py
@@ -0,0 +1,275 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import logging
+
+_LOCK_SCREEN_SETTINGS_PATH = '/data/system/locksettings.db'
+_ALTERNATE_LOCK_SCREEN_SETTINGS_PATH = (
+    '/data/data/com.android.providers.settings/databases/settings.db')
+PASSWORD_QUALITY_UNSPECIFIED = '0'
+_COMPATIBLE_BUILD_TYPES = ['userdebug', 'eng']
+
+
+ENABLE_LOCATION_SETTINGS = [
+  # Note that setting these in this order is required in order for all of
+  # them to take and stick through a reboot.
+  ('com.google.settings/partner', [
+    ('use_location_for_services', 1),
+  ]),
+  ('settings/secure', [
+    # Ensure Geolocation is enabled and allowed for tests.
+    ('location_providers_allowed', 'gps,network'),
+  ]),
+  ('com.google.settings/partner', [
+    ('network_location_opt_in', 1),
+  ])
+]
+
+DISABLE_LOCATION_SETTINGS = [
+  ('com.google.settings/partner', [
+    ('use_location_for_services', 0),
+  ]),
+  ('settings/secure', [
+    # Ensure Geolocation is disabled.
+    ('location_providers_allowed', ''),
+  ]),
+]
+
+ENABLE_MOCK_LOCATION_SETTINGS = [
+  ('settings/secure', [
+    ('mock_location', 1),
+  ]),
+]
+
+DISABLE_MOCK_LOCATION_SETTINGS = [
+  ('settings/secure', [
+    ('mock_location', 0),
+  ]),
+]
+
+DETERMINISTIC_DEVICE_SETTINGS = [
+  ('settings/global', [
+    ('assisted_gps_enabled', 0),
+
+    # Disable "auto time" and "auto time zone" to avoid network-provided time
+    # to overwrite the device's datetime and timezone synchronized from host
+    # when running tests later. See b/6569849.
+    ('auto_time', 0),
+    ('auto_time_zone', 0),
+
+    ('development_settings_enabled', 1),
+
+    # Flag for allowing ActivityManagerService to send ACTION_APP_ERROR intents
+    # on application crashes and ANRs. If this is disabled, the crash/ANR dialog
+    # will never display the "Report" button.
+    # Type: int ( 0 = disallow, 1 = allow )
+    ('send_action_app_error', 0),
+
+    ('stay_on_while_plugged_in', 3),
+
+    ('verifier_verify_adb_installs', 0),
+  ]),
+  ('settings/secure', [
+    ('allowed_geolocation_origins',
+        'http://www.google.co.uk http://www.google.com'),
+
+    # Ensure that we never get random dialogs like "Unfortunately the process
+    # android.process.acore has stopped", which steal the focus, and make our
+    # automation fail (because the dialog steals the focus then mistakenly
+    # receives the injected user input events).
+    ('anr_show_background', 0),
+
+    ('lockscreen.disabled', 1),
+
+    ('screensaver_enabled', 0),
+
+    ('skip_first_use_hints', 1),
+  ]),
+  ('settings/system', [
+    # Don't want devices to accidentally rotate the screen as that could
+    # affect performance measurements.
+    ('accelerometer_rotation', 0),
+
+    ('lockscreen.disabled', 1),
+
+    # Turn down brightness and disable auto-adjust so that devices run cooler.
+    ('screen_brightness', 5),
+    ('screen_brightness_mode', 0),
+
+    ('user_rotation', 0),
+  ]),
+]
+
+NETWORK_DISABLED_SETTINGS = [
+  ('settings/global', [
+    ('airplane_mode_on', 1),
+    ('wifi_on', 0),
+  ]),
+]
+
+
+class ContentSettings(dict):
+
+  """A dict interface to interact with device content settings.
+
+  System properties are key/value pairs as exposed by adb shell content.
+  """
+
+  def __init__(self, table, device):
+    super(ContentSettings, self).__init__()
+    self._table = table
+    self._device = device
+
+  @staticmethod
+  def _GetTypeBinding(value):
+    if isinstance(value, bool):
+      return 'b'
+    if isinstance(value, float):
+      return 'f'
+    if isinstance(value, int):
+      return 'i'
+    if isinstance(value, long):
+      return 'l'
+    if isinstance(value, str):
+      return 's'
+    raise ValueError('Unsupported type %s' % type(value))
+
+  def iteritems(self):
+    # Example row:
+    # 'Row: 0 _id=13, name=logging_id2, value=-1fccbaa546705b05'
+    for row in self._device.RunShellCommand(
+        'content query --uri content://%s' % self._table, as_root=True):
+      fields = row.split(', ')
+      key = None
+      value = None
+      for field in fields:
+        k, _, v = field.partition('=')
+        if k == 'name':
+          key = v
+        elif k == 'value':
+          value = v
+      if not key:
+        continue
+      if not value:
+        value = ''
+      yield key, value
+
+  def __getitem__(self, key):
+    return self._device.RunShellCommand(
+        'content query --uri content://%s --where "name=\'%s\'" '
+        '--projection value' % (self._table, key), as_root=True).strip()
+
+  def __setitem__(self, key, value):
+    if key in self:
+      self._device.RunShellCommand(
+          'content update --uri content://%s '
+          '--bind value:%s:%s --where "name=\'%s\'"' % (
+              self._table,
+              self._GetTypeBinding(value), value, key),
+          as_root=True)
+    else:
+      self._device.RunShellCommand(
+          'content insert --uri content://%s '
+          '--bind name:%s:%s --bind value:%s:%s' % (
+              self._table,
+              self._GetTypeBinding(key), key,
+              self._GetTypeBinding(value), value),
+          as_root=True)
+
+  def __delitem__(self, key):
+    self._device.RunShellCommand(
+        'content delete --uri content://%s '
+        '--bind name:%s:%s' % (
+            self._table,
+            self._GetTypeBinding(key), key),
+        as_root=True)
+
+
+def ConfigureContentSettings(device, desired_settings):
+  """Configures device content setings from a list.
+
+  Many settings are documented at:
+    http://developer.android.com/reference/android/provider/Settings.Global.html
+    http://developer.android.com/reference/android/provider/Settings.Secure.html
+    http://developer.android.com/reference/android/provider/Settings.System.html
+
+  Many others are undocumented.
+
+  Args:
+    device: A DeviceUtils instance for the device to configure.
+    desired_settings: A list of (table, [(key: value), ...]) for all
+        settings to configure.
+  """
+  for table, key_value in desired_settings:
+    settings = ContentSettings(table, device)
+    for key, value in key_value:
+      settings[key] = value
+    logging.info('\n%s %s', table, (80 - len(table)) * '-')
+    for key, value in sorted(settings.iteritems()):
+      logging.info('\t%s: %s', key, value)
+
+
+def SetLockScreenSettings(device):
+  """Sets lock screen settings on the device.
+
+  On certain device/Android configurations we need to disable the lock screen in
+  a different database. Additionally, the password type must be set to
+  DevicePolicyManager.PASSWORD_QUALITY_UNSPECIFIED.
+  Lock screen settings are stored in sqlite on the device in:
+      /data/system/locksettings.db
+
+  IMPORTANT: The first column is used as a primary key so that all rows with the
+  same value for that column are removed from the table prior to inserting the
+  new values.
+
+  Args:
+    device: A DeviceUtils instance for the device to configure.
+
+  Raises:
+    Exception if the setting was not properly set.
+  """
+  if device.build_type not in _COMPATIBLE_BUILD_TYPES:
+    logging.warning('Unable to disable lockscreen on %s builds.',
+                    device.build_type)
+    return
+
+  def get_lock_settings(table):
+    return [(table, 'lockscreen.disabled', '1'),
+            (table, 'lockscreen.password_type', PASSWORD_QUALITY_UNSPECIFIED),
+            (table, 'lockscreen.password_type_alternate',
+             PASSWORD_QUALITY_UNSPECIFIED)]
+
+  if device.FileExists(_LOCK_SCREEN_SETTINGS_PATH):
+    db = _LOCK_SCREEN_SETTINGS_PATH
+    locksettings = get_lock_settings('locksettings')
+    columns = ['name', 'user', 'value']
+    generate_values = lambda k, v: [k, '0', v]
+  elif device.FileExists(_ALTERNATE_LOCK_SCREEN_SETTINGS_PATH):
+    db = _ALTERNATE_LOCK_SCREEN_SETTINGS_PATH
+    locksettings = get_lock_settings('secure') + get_lock_settings('system')
+    columns = ['name', 'value']
+    generate_values = lambda k, v: [k, v]
+  else:
+    logging.warning('Unable to find database file to set lock screen settings.')
+    return
+
+  for table, key, value in locksettings:
+    # Set the lockscreen setting for default user '0'
+    values = generate_values(key, value)
+
+    cmd = """begin transaction;
+delete from '%(table)s' where %(primary_key)s='%(primary_value)s';
+insert into '%(table)s' (%(columns)s) values (%(values)s);
+commit transaction;""" % {
+      'table': table,
+      'primary_key': columns[0],
+      'primary_value': values[0],
+      'columns': ', '.join(columns),
+      'values': ', '.join(["'%s'" % value for value in values])
+    }
+    output_msg = device.RunShellCommand('sqlite3 %s "%s"' % (db, cmd),
+                                        as_root=True)
+    if output_msg:
+      logging.info(' '.join(output_msg))
+
diff --git a/catapult/devil/devil/android/tools/device_recovery.py b/catapult/devil/devil/android/tools/device_recovery.py
index e6456a7..a7844e2 100755
--- a/catapult/devil/devil/android/tools/device_recovery.py
+++ b/catapult/devil/devil/android/tools/device_recovery.py
@@ -22,7 +22,8 @@
 from devil.android import device_utils
 from devil.android.tools import device_status
 from devil.utils import lsusb
-from devil.utils import reset_usb
+# TODO(jbudorick): Resolve this after experimenting w/ disabling the USB reset.
+from devil.utils import reset_usb  # pylint: disable=unused-import
 from devil.utils import run_tests_helper
 
 
@@ -101,7 +102,7 @@
                          reason='reboot_timeout')
 
 
-def RecoverDevices(devices, blacklist):
+def RecoverDevices(devices, blacklist, enable_usb_reset=False):
   """Attempts to recover any inoperable devices in the provided list.
 
   Args:
@@ -140,7 +141,13 @@
     KillAllAdb()
   for serial in should_restart_usb:
     try:
-      reset_usb.reset_android_usb(serial)
+      # TODO(crbug.com/642194): Resetting may be causing more harm
+      # (specifically, kernel panics) than it does good.
+      if enable_usb_reset:
+        reset_usb.reset_android_usb(serial)
+      else:
+        logging.warning('USB reset disabled for %s (crbug.com/642914)',
+                        serial)
     except IOError:
       logging.exception('Unable to reset USB for %s.', serial)
       if blacklist:
@@ -163,27 +170,19 @@
   parser.add_argument('--known-devices-file', action='append', default=[],
                       dest='known_devices_files',
                       help='Path to known device lists.')
+  parser.add_argument('--enable-usb-reset', action='store_true',
+                      help='Reset USB if necessary.')
   parser.add_argument('-v', '--verbose', action='count', default=1,
                       help='Log more information.')
 
   args = parser.parse_args()
   run_tests_helper.SetLogLevel(args.verbose)
 
-  devil_dynamic_config = {
-    'config_type': 'BaseConfig',
-    'dependencies': {},
-  }
-
+  devil_dynamic_config = devil_env.EmptyConfig()
   if args.adb_path:
-    devil_dynamic_config['dependencies'].update({
-        'adb': {
-          'file_info': {
-            devil_env.GetPlatform(): {
-              'local_paths': [args.adb_path]
-            }
-          }
-        }
-    })
+    devil_dynamic_config['dependencies'].update(
+        devil_env.LocalConfigItem(
+            'adb', devil_env.GetPlatform(), args.adb_path))
   devil_env.config.Initialize(configs=[devil_dynamic_config])
 
   blacklist = (device_blacklist.Blacklist(args.blacklist_file)
@@ -195,7 +194,7 @@
   devices = [device_utils.DeviceUtils(s)
              for s in expected_devices.union(usb_devices)]
 
-  RecoverDevices(devices, blacklist)
+  RecoverDevices(devices, blacklist, enable_usb_reset=args.enable_usb_reset)
 
 
 if __name__ == '__main__':
diff --git a/catapult/devil/devil/android/tools/device_status.py b/catapult/devil/devil/android/tools/device_status.py
index 7e16963..dbfccb6 100755
--- a/catapult/devil/devil/android/tools/device_status.py
+++ b/catapult/devil/devil/android/tools/device_status.py
@@ -260,22 +260,12 @@
 
   run_tests_helper.SetLogLevel(args.verbose)
 
-
-  devil_dynamic_config = {
-    'config_type': 'BaseConfig',
-    'dependencies': {},
-  }
+  devil_dynamic_config = devil_env.EmptyConfig()
 
   if args.adb_path:
-    devil_dynamic_config['dependencies'].update({
-        'adb': {
-          'file_info': {
-            devil_env.GetPlatform(): {
-              'local_paths': [args.adb_path]
-            }
-          }
-        }
-    })
+    devil_dynamic_config['dependencies'].update(
+        devil_env.LocalConfigItem(
+            'adb', devil_env.GetPlatform(), args.adb_path))
   devil_env.config.Initialize(configs=[devil_dynamic_config])
 
   blacklist = (device_blacklist.Blacklist(args.blacklist_file)
diff --git a/catapult/devil/devil/android/tools/keyboard.py b/catapult/devil/devil/android/tools/keyboard.py
new file mode 100755
index 0000000..31daf59
--- /dev/null
+++ b/catapult/devil/devil/android/tools/keyboard.py
@@ -0,0 +1,129 @@
+#!/usr/bin/env python
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Use your keyboard as your phone's keyboard. Experimental."""
+
+import argparse
+import copy
+import os
+import sys
+import termios
+import tty
+
+if __name__ == '__main__':
+  sys.path.append(
+      os.path.abspath(os.path.join(os.path.dirname(__file__),
+                                   '..', '..', '..')))
+from devil import base_error
+from devil.android.sdk import keyevent
+from devil.android.tools import script_common
+from devil.utils import run_tests_helper
+
+
+_KEY_MAPPING = {
+  '\x08': keyevent.KEYCODE_DEL,
+  '\x0a': keyevent.KEYCODE_ENTER,
+  ' ': keyevent.KEYCODE_SPACE,
+  '.': keyevent.KEYCODE_PERIOD,
+  '0': keyevent.KEYCODE_0,
+  '1': keyevent.KEYCODE_1,
+  '2': keyevent.KEYCODE_2,
+  '3': keyevent.KEYCODE_3,
+  '4': keyevent.KEYCODE_4,
+  '5': keyevent.KEYCODE_5,
+  '6': keyevent.KEYCODE_6,
+  '7': keyevent.KEYCODE_7,
+  '8': keyevent.KEYCODE_8,
+  '9': keyevent.KEYCODE_9,
+  'a': keyevent.KEYCODE_A,
+  'b': keyevent.KEYCODE_B,
+  'c': keyevent.KEYCODE_C,
+  'd': keyevent.KEYCODE_D,
+  'e': keyevent.KEYCODE_E,
+  'f': keyevent.KEYCODE_F,
+  'g': keyevent.KEYCODE_G,
+  'h': keyevent.KEYCODE_H,
+  'i': keyevent.KEYCODE_I,
+  'j': keyevent.KEYCODE_J,
+  'k': keyevent.KEYCODE_K,
+  'l': keyevent.KEYCODE_L,
+  'm': keyevent.KEYCODE_M,
+  'n': keyevent.KEYCODE_N,
+  'o': keyevent.KEYCODE_O,
+  'p': keyevent.KEYCODE_P,
+  'q': keyevent.KEYCODE_Q,
+  'r': keyevent.KEYCODE_R,
+  's': keyevent.KEYCODE_S,
+  't': keyevent.KEYCODE_T,
+  'u': keyevent.KEYCODE_U,
+  'v': keyevent.KEYCODE_V,
+  'w': keyevent.KEYCODE_W,
+  'x': keyevent.KEYCODE_X,
+  'y': keyevent.KEYCODE_Y,
+  'z': keyevent.KEYCODE_Z,
+  '\x7f': keyevent.KEYCODE_DEL,
+}
+
+
+def Keyboard(device, stream_itr):
+  try:
+    for c in stream_itr:
+      k = _KEY_MAPPING.get(c)
+      if k:
+        device.SendKeyEvent(k)
+      else:
+        print
+        print '(No mapping for character 0x%x)' % ord(c)
+  except KeyboardInterrupt:
+    pass
+
+
+def AddArguments(parser):
+  parser.add_argument('-d', '--device', action='append', dest='devices',
+                      metavar='DEVICE', help='device serial')
+  parser.add_argument('-v', '--verbose', action='count', help='print more')
+
+
+class MultipleDevicesError(base_error.BaseError):
+  def __init__(self, devices):
+    super(MultipleDevicesError, self).__init__(
+        'More than one device found: %s' % ', '.join(str(d) for d in devices))
+
+
+def main(raw_args):
+  parser = argparse.ArgumentParser(
+      description="Use your keyboard as your phone's keyboard.")
+  AddArguments(parser)
+  args = parser.parse_args(raw_args)
+
+  run_tests_helper.SetLogLevel(args.verbose)
+
+  devices = script_common.GetDevices(args.devices, None)
+  if len(devices) > 1:
+    raise MultipleDevicesError(devices)
+
+  def next_char():
+    while True:
+      yield sys.stdin.read(1)
+
+  try:
+    fd = sys.stdin.fileno()
+
+    # See man 3 termios for more info on what this is doing.
+    old_attrs = termios.tcgetattr(fd)
+    new_attrs = copy.deepcopy(old_attrs)
+    new_attrs[tty.LFLAG] = new_attrs[tty.LFLAG] & ~(termios.ICANON)
+    new_attrs[tty.CC][tty.VMIN] = 1
+    new_attrs[tty.CC][tty.VTIME] = 0
+    termios.tcsetattr(fd, termios.TCSAFLUSH, new_attrs)
+
+    Keyboard(devices[0], next_char())
+  finally:
+    termios.tcsetattr(fd, termios.TCSAFLUSH, old_attrs)
+  return 0
+
+
+if __name__ == '__main__':
+  sys.exit(main(sys.argv[1:]))
diff --git a/catapult/devil/devil/android/tools/provision_devices.py b/catapult/devil/devil/android/tools/provision_devices.py
new file mode 100755
index 0000000..d9bff5d
--- /dev/null
+++ b/catapult/devil/devil/android/tools/provision_devices.py
@@ -0,0 +1,578 @@
+#!/usr/bin/env python
+#
+# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Provisions Android devices with settings required for bots.
+
+Usage:
+  ./provision_devices.py [-d <device serial number>]
+"""
+
+import argparse
+import datetime
+import json
+import logging
+import os
+import posixpath
+import re
+import sys
+import time
+
+# Import _strptime before threaded code. datetime.datetime.strptime is
+# threadsafe except for the initial import of the _strptime module.
+# See crbug.com/584730 and https://bugs.python.org/issue7980.
+import _strptime  # pylint: disable=unused-import
+
+if __name__ == '__main__':
+  sys.path.append(
+      os.path.abspath(os.path.join(os.path.dirname(__file__),
+                                   '..', '..', '..')))
+
+from devil import devil_env
+from devil.android import battery_utils
+from devil.android import device_blacklist
+from devil.android import device_errors
+from devil.android import device_temp_file
+from devil.android import device_utils
+from devil.android import settings
+from devil.android.constants import chrome
+from devil.android.sdk import adb_wrapper
+from devil.android.sdk import keyevent
+from devil.android.sdk import version_codes
+from devil.android.tools import script_common
+from devil.constants import exit_codes
+from devil.utils import run_tests_helper
+from devil.utils import timeout_retry
+
+_SYSTEM_WEBVIEW_PATHS = ['/system/app/webview', '/system/app/WebViewGoogle']
+_CHROME_PACKAGE_REGEX = re.compile('.*chrom.*')
+_TOMBSTONE_REGEX = re.compile('tombstone.*')
+
+
+class _DEFAULT_TIMEOUTS(object):
+  # L can take a while to reboot after a wipe.
+  LOLLIPOP = 600
+  PRE_LOLLIPOP = 180
+
+  HELP_TEXT = '{}s on L, {}s on pre-L'.format(LOLLIPOP, PRE_LOLLIPOP)
+
+
+class ProvisionStep(object):
+
+  def __init__(self, cmd, reboot=False):
+    self.cmd = cmd
+    self.reboot = reboot
+
+
+def ProvisionDevices(
+    devices,
+    blacklist_file,
+    adb_key_files=None,
+    disable_location=False,
+    disable_mock_location=False,
+    disable_network=False,
+    disable_system_chrome=False,
+    emulators=False,
+    enable_java_debug=False,
+    max_battery_temp=None,
+    min_battery_level=None,
+    output_device_blacklist=None,
+    reboot_timeout=None,
+    remove_system_webview=False,
+    wipe=True):
+  blacklist = (device_blacklist.Blacklist(blacklist_file)
+               if blacklist_file
+               else None)
+  devices = script_common.GetDevices(devices, blacklist)
+  devices = [d for d in devices
+             if not emulators or d.adb.is_emulator]
+  parallel_devices = device_utils.DeviceUtils.parallel(devices)
+
+  steps = []
+  if wipe:
+    steps += [ProvisionStep(lambda d: Wipe(d, adb_key_files), reboot=True)]
+  steps += [ProvisionStep(
+      lambda d: SetProperties(d, enable_java_debug, disable_location,
+                              disable_mock_location),
+      reboot=not emulators)]
+
+  if disable_network:
+    steps.append(ProvisionStep(DisableNetwork))
+
+  if disable_system_chrome:
+    steps.append(ProvisionStep(DisableSystemChrome))
+
+  if max_battery_temp:
+    steps.append(ProvisionStep(
+        lambda d: WaitForTemperature(d, max_battery_temp)))
+
+  if min_battery_level:
+    steps.append(ProvisionStep(
+        lambda d: WaitForCharge(d, min_battery_level)))
+
+  if remove_system_webview:
+    steps.append(ProvisionStep(RemoveSystemWebView))
+
+  steps.append(ProvisionStep(SetDate))
+  steps.append(ProvisionStep(CheckExternalStorage))
+
+  parallel_devices.pMap(ProvisionDevice, steps, blacklist, reboot_timeout)
+
+  blacklisted_devices = blacklist.Read() if blacklist else []
+  if output_device_blacklist:
+    with open(output_device_blacklist, 'w') as f:
+      json.dump(blacklisted_devices, f)
+  if all(d in blacklisted_devices for d in devices):
+    raise device_errors.NoDevicesError
+  return 0
+
+
+def ProvisionDevice(device, steps, blacklist, reboot_timeout=None):
+  try:
+    if not reboot_timeout:
+      if device.build_version_sdk >= version_codes.LOLLIPOP:
+        reboot_timeout = _DEFAULT_TIMEOUTS.LOLLIPOP
+      else:
+        reboot_timeout = _DEFAULT_TIMEOUTS.PRE_LOLLIPOP
+
+    for step in steps:
+      try:
+        device.WaitUntilFullyBooted(timeout=reboot_timeout, retries=0)
+      except device_errors.CommandTimeoutError:
+        logging.error('Device did not finish booting. Will try to reboot.')
+        device.Reboot(timeout=reboot_timeout)
+      step.cmd(device)
+      if step.reboot:
+        device.Reboot(False, retries=0)
+        device.adb.WaitForDevice()
+
+  except device_errors.CommandTimeoutError:
+    logging.exception('Timed out waiting for device %s. Adding to blacklist.',
+                      str(device))
+    if blacklist:
+      blacklist.Extend([str(device)], reason='provision_timeout')
+
+  except device_errors.CommandFailedError:
+    logging.exception('Failed to provision device %s. Adding to blacklist.',
+                      str(device))
+    if blacklist:
+      blacklist.Extend([str(device)], reason='provision_failure')
+
+
+def Wipe(device, adb_key_files=None):
+  if (device.IsUserBuild() or
+      device.build_version_sdk >= version_codes.MARSHMALLOW):
+    WipeChromeData(device)
+
+    package = "com.google.android.gms"
+    version_name = device.GetApplicationVersion(package)
+    logging.info("Version name for %s is %s", package, version_name)
+  else:
+    WipeDevice(device, adb_key_files)
+
+
+def WipeChromeData(device):
+  """Wipes chrome specific data from device
+
+  (1) uninstall any app whose name matches *chrom*, except
+      com.android.chrome, which is the chrome stable package. Doing so also
+      removes the corresponding dirs under /data/data/ and /data/app/
+  (2) remove any dir under /data/app-lib/ whose name matches *chrom*
+  (3) remove any files under /data/tombstones/ whose name matches "tombstone*"
+  (4) remove /data/local.prop if there is any
+  (5) remove /data/local/chrome-command-line if there is any
+  (6) remove anything under /data/local/.config/ if the dir exists
+      (this is telemetry related)
+  (7) remove anything under /data/local/tmp/
+
+  Arguments:
+    device: the device to wipe
+  """
+  try:
+    if device.IsUserBuild():
+      _UninstallIfMatch(device, _CHROME_PACKAGE_REGEX,
+                        chrome.PACKAGE_INFO['chrome_stable'].package)
+      device.RunShellCommand('rm -rf %s/*' % device.GetExternalStoragePath(),
+                             check_return=True)
+      device.RunShellCommand('rm -rf /data/local/tmp/*', check_return=True)
+    else:
+      device.EnableRoot()
+      _UninstallIfMatch(device, _CHROME_PACKAGE_REGEX,
+                        chrome.PACKAGE_INFO['chrome_stable'].package)
+      _WipeUnderDirIfMatch(device, '/data/app-lib/', _CHROME_PACKAGE_REGEX)
+      _WipeUnderDirIfMatch(device, '/data/tombstones/', _TOMBSTONE_REGEX)
+
+      _WipeFileOrDir(device, '/data/local.prop')
+      _WipeFileOrDir(device, '/data/local/chrome-command-line')
+      _WipeFileOrDir(device, '/data/local/.config/')
+      _WipeFileOrDir(device, '/data/local/tmp/')
+      device.RunShellCommand('rm -rf %s/*' % device.GetExternalStoragePath(),
+                             check_return=True)
+  except device_errors.CommandFailedError:
+    logging.exception('Possible failure while wiping the device. '
+                      'Attempting to continue.')
+
+
+def _UninstallIfMatch(device, pattern, app_to_keep):
+  installed_packages = device.RunShellCommand(['pm', 'list', 'packages'])
+  installed_system_packages = [
+      pkg.split(':')[1] for pkg in device.RunShellCommand(['pm', 'list',
+                                                           'packages', '-s'])]
+  for package_output in installed_packages:
+    package = package_output.split(":")[1]
+    if pattern.match(package) and not package == app_to_keep:
+      if not device.IsUserBuild() or package not in installed_system_packages:
+        device.Uninstall(package)
+
+
+def _WipeUnderDirIfMatch(device, path, pattern):
+  for filename in device.ListDirectory(path):
+    if pattern.match(filename):
+      _WipeFileOrDir(device, posixpath.join(path, filename))
+
+
+def _WipeFileOrDir(device, path):
+  if device.PathExists(path):
+    device.RunShellCommand(['rm', '-rf', path], check_return=True)
+
+
+def WipeDevice(device, adb_key_files):
+  """Wipes data from device, keeping only the adb_keys for authorization.
+
+  After wiping data on a device that has been authorized, adb can still
+  communicate with the device, but after reboot the device will need to be
+  re-authorized because the adb keys file is stored in /data/misc/adb/.
+  Thus, adb_keys file is rewritten so the device does not need to be
+  re-authorized.
+
+  Arguments:
+    device: the device to wipe
+  """
+  try:
+    device.EnableRoot()
+    device_authorized = device.FileExists(adb_wrapper.ADB_KEYS_FILE)
+    if device_authorized:
+      adb_keys = device.ReadFile(adb_wrapper.ADB_KEYS_FILE,
+                                 as_root=True).splitlines()
+    device.RunShellCommand(['wipe', 'data'],
+                           as_root=True, check_return=True)
+    device.adb.WaitForDevice()
+
+    if device_authorized:
+      adb_keys_set = set(adb_keys)
+      for adb_key_file in adb_key_files or []:
+        try:
+          with open(adb_key_file, 'r') as f:
+            adb_public_keys = f.readlines()
+          adb_keys_set.update(adb_public_keys)
+        except IOError:
+          logging.warning('Unable to find adb keys file %s.', adb_key_file)
+      _WriteAdbKeysFile(device, '\n'.join(adb_keys_set))
+  except device_errors.CommandFailedError:
+    logging.exception('Possible failure while wiping the device. '
+                      'Attempting to continue.')
+
+
+def _WriteAdbKeysFile(device, adb_keys_string):
+  dir_path = posixpath.dirname(adb_wrapper.ADB_KEYS_FILE)
+  device.RunShellCommand(['mkdir', '-p', dir_path],
+                         as_root=True, check_return=True)
+  device.RunShellCommand(['restorecon', dir_path],
+                         as_root=True, check_return=True)
+  device.WriteFile(adb_wrapper.ADB_KEYS_FILE, adb_keys_string, as_root=True)
+  device.RunShellCommand(['restorecon', adb_wrapper.ADB_KEYS_FILE],
+                         as_root=True, check_return=True)
+
+
+def SetProperties(device, enable_java_debug, disable_location,
+                  disable_mock_location):
+  try:
+    device.EnableRoot()
+  except device_errors.CommandFailedError as e:
+    logging.warning(str(e))
+
+  if not device.IsUserBuild():
+    _ConfigureLocalProperties(device, enable_java_debug)
+  else:
+    logging.warning('Cannot configure properties in user builds.')
+  settings.ConfigureContentSettings(
+      device, settings.DETERMINISTIC_DEVICE_SETTINGS)
+  if disable_location:
+    settings.ConfigureContentSettings(
+        device, settings.DISABLE_LOCATION_SETTINGS)
+  else:
+    settings.ConfigureContentSettings(
+        device, settings.ENABLE_LOCATION_SETTINGS)
+
+  if disable_mock_location:
+    settings.ConfigureContentSettings(
+        device, settings.DISABLE_MOCK_LOCATION_SETTINGS)
+  else:
+    settings.ConfigureContentSettings(
+        device, settings.ENABLE_MOCK_LOCATION_SETTINGS)
+
+  settings.SetLockScreenSettings(device)
+
+  # Some device types can momentarily disappear after setting properties.
+  device.adb.WaitForDevice()
+
+
+def DisableNetwork(device):
+  settings.ConfigureContentSettings(
+      device, settings.NETWORK_DISABLED_SETTINGS)
+  if device.build_version_sdk >= version_codes.MARSHMALLOW:
+    # Ensure that NFC is also switched off.
+    device.RunShellCommand(['svc', 'nfc', 'disable'],
+                           as_root=True, check_return=True)
+
+
+def DisableSystemChrome(device):
+  # The system chrome version on the device interferes with some tests.
+  device.RunShellCommand(['pm', 'disable', 'com.android.chrome'],
+                         check_return=True)
+
+
+def RemoveSystemWebView(device):
+  if any(device.PathExists(p) for p in _SYSTEM_WEBVIEW_PATHS):
+    logging.info('System WebView exists and needs to be removed')
+    if device.HasRoot():
+      # Disabled Marshmallow's Verity security feature
+      if device.build_version_sdk >= version_codes.MARSHMALLOW:
+        device.adb.DisableVerity()
+        device.Reboot()
+        device.WaitUntilFullyBooted()
+        device.EnableRoot()
+
+      # This is required, e.g., to replace the system webview on a device.
+      device.adb.Remount()
+      device.RunShellCommand(['stop'], check_return=True)
+      device.RunShellCommand(['rm', '-rf'] + _SYSTEM_WEBVIEW_PATHS,
+                             check_return=True)
+      device.RunShellCommand(['start'], check_return=True)
+    else:
+      logging.warning('Cannot remove system webview from a non-rooted device')
+  else:
+    logging.info('System WebView already removed')
+
+
+
+def _ConfigureLocalProperties(device, java_debug=True):
+  """Set standard readonly testing device properties prior to reboot."""
+  local_props = [
+      'persist.sys.usb.config=adb',
+      'ro.monkey=1',
+      'ro.test_harness=1',
+      'ro.audio.silent=1',
+      'ro.setupwizard.mode=DISABLED',
+      ]
+  if java_debug:
+    local_props.append(
+        '%s=all' % device_utils.DeviceUtils.JAVA_ASSERT_PROPERTY)
+    local_props.append('debug.checkjni=1')
+  try:
+    device.WriteFile(
+        device.LOCAL_PROPERTIES_PATH,
+        '\n'.join(local_props), as_root=True)
+    # Android will not respect the local props file if it is world writable.
+    device.RunShellCommand(
+        ['chmod', '644', device.LOCAL_PROPERTIES_PATH],
+        as_root=True, check_return=True)
+  except device_errors.CommandFailedError:
+    logging.exception('Failed to configure local properties.')
+
+
+def FinishProvisioning(device):
+  # The lockscreen can't be disabled on user builds, so send a keyevent
+  # to unlock it.
+  if device.IsUserBuild():
+    device.SendKeyEvent(keyevent.KEYCODE_MENU)
+
+
+def WaitForCharge(device, min_battery_level):
+  battery = battery_utils.BatteryUtils(device)
+  try:
+    battery.ChargeDeviceToLevel(min_battery_level)
+  except device_errors.DeviceChargingError:
+    device.Reboot()
+    battery.ChargeDeviceToLevel(min_battery_level)
+
+
+def WaitForTemperature(device, max_battery_temp):
+  try:
+    battery = battery_utils.BatteryUtils(device)
+    battery.LetBatteryCoolToTemperature(max_battery_temp)
+  except device_errors.CommandFailedError:
+    logging.exception('Unable to let battery cool to specified temperature.')
+
+
+def SetDate(device):
+  def _set_and_verify_date():
+    if device.build_version_sdk >= version_codes.MARSHMALLOW:
+      date_format = '%m%d%H%M%Y.%S'
+      set_date_command = ['date', '-u']
+      get_date_command = ['date', '-u']
+    else:
+      date_format = '%Y%m%d.%H%M%S'
+      set_date_command = ['date', '-s']
+      get_date_command = ['date']
+
+    # TODO(jbudorick): This is wrong on pre-M devices -- get/set are
+    # dealing in local time, but we're setting based on GMT.
+    strgmtime = time.strftime(date_format, time.gmtime())
+    set_date_command.append(strgmtime)
+    device.RunShellCommand(set_date_command, as_root=True, check_return=True)
+
+    get_date_command.append('+"%Y%m%d.%H%M%S"')
+    device_time = device.RunShellCommand(
+        get_date_command, as_root=True, single_line=True).replace('"', '')
+    device_time = datetime.datetime.strptime(device_time, "%Y%m%d.%H%M%S")
+    correct_time = datetime.datetime.strptime(strgmtime, date_format)
+    tdelta = (correct_time - device_time).seconds
+    if tdelta <= 1:
+      logging.info('Date/time successfully set on %s', device)
+      return True
+    else:
+      logging.error('Date mismatch. Device: %s Correct: %s',
+                    device_time.isoformat(), correct_time.isoformat())
+      return False
+
+  # Sometimes the date is not set correctly on the devices. Retry on failure.
+  if device.IsUserBuild():
+    # TODO(bpastene): Figure out how to set the date & time on user builds.
+    pass
+  else:
+    if not timeout_retry.WaitFor(
+        _set_and_verify_date, wait_period=1, max_tries=2):
+      raise device_errors.CommandFailedError(
+          'Failed to set date & time.', device_serial=str(device))
+
+
+def LogDeviceProperties(device):
+  props = device.RunShellCommand('getprop', check_return=True)
+  for prop in props:
+    logging.info('  %s', prop)
+
+
+def CheckExternalStorage(device):
+  """Checks that storage is writable and if not makes it writable.
+
+  Arguments:
+    device: The device to check.
+  """
+  try:
+    with device_temp_file.DeviceTempFile(
+        device.adb, suffix='.sh', dir=device.GetExternalStoragePath()) as f:
+      device.WriteFile(f.name, 'test')
+  except device_errors.CommandFailedError:
+    logging.info('External storage not writable. Remounting / as RW')
+    device.RunShellCommand(['mount', '-o', 'remount,rw', '/'],
+                           check_return=True, as_root=True)
+    device.EnableRoot()
+    with device_temp_file.DeviceTempFile(
+        device.adb, suffix='.sh', dir=device.GetExternalStoragePath()) as f:
+      device.WriteFile(f.name, 'test')
+
+
+def main(raw_args):
+  # Recommended options on perf bots:
+  # --disable-network
+  #     TODO(tonyg): We eventually want network on. However, currently radios
+  #     can cause perfbots to drain faster than they charge.
+  # --min-battery-level 95
+  #     Some perf bots run benchmarks with USB charging disabled which leads
+  #     to gradual draining of the battery. We must wait for a full charge
+  #     before starting a run in order to keep the devices online.
+
+  parser = argparse.ArgumentParser(
+      description='Provision Android devices with settings required for bots.')
+  parser.add_argument(
+      '-d', '--device', metavar='SERIAL', action='append', dest='devices',
+      help='the serial number of the device to be provisioned '
+           '(the default is to provision all devices attached)')
+  parser.add_argument(
+      '--adb-path',
+      help='Absolute path to the adb binary to use.')
+  parser.add_argument('--blacklist-file', help='Device blacklist JSON file.')
+  parser.add_argument(
+      '--skip-wipe', action='store_true', default=False,
+      help="don't wipe device data during provisioning")
+  parser.add_argument(
+      '--reboot-timeout', metavar='SECS', type=int,
+      help='when wiping the device, max number of seconds to'
+           ' wait after each reboot '
+           '(default: %s)' % _DEFAULT_TIMEOUTS.HELP_TEXT)
+  parser.add_argument(
+      '--min-battery-level', type=int, metavar='NUM',
+      help='wait for the device to reach this minimum battery'
+           ' level before trying to continue')
+  parser.add_argument(
+      '--disable-location', action='store_true',
+      help='disable Google location services on devices')
+  parser.add_argument(
+      '--disable-mock-location', action='store_true', default=False,
+      help='Set ALLOW_MOCK_LOCATION to false')
+  parser.add_argument(
+      '--disable-network', action='store_true',
+      help='disable network access on devices')
+  parser.add_argument(
+      '--disable-java-debug', action='store_false',
+      dest='enable_java_debug', default=True,
+      help='disable Java property asserts and JNI checking')
+  parser.add_argument(
+      '--disable-system-chrome', action='store_true',
+      help='Disable the system chrome from devices.')
+  parser.add_argument(
+      '--remove-system-webview', action='store_true',
+      help='Remove the system webview from devices.')
+  parser.add_argument(
+      '--adb-key-files', type=str, nargs='+',
+      help='list of adb keys to push to device')
+  parser.add_argument(
+      '-v', '--verbose', action='count', default=1,
+      help='Log more information.')
+  parser.add_argument(
+      '--max-battery-temp', type=int, metavar='NUM',
+      help='Wait for the battery to have this temp or lower.')
+  parser.add_argument(
+      '--output-device-blacklist',
+      help='Json file to output the device blacklist.')
+  parser.add_argument(
+      '--emulators', action='store_true',
+      help='provision only emulators and ignore usb devices')
+  args = parser.parse_args(raw_args)
+
+  run_tests_helper.SetLogLevel(args.verbose)
+
+  devil_dynamic_config = devil_env.EmptyConfig()
+  if args.adb_path:
+    devil_dynamic_config['dependencies'].update(
+        devil_env.LocalConfigItem(
+            'adb', devil_env.GetPlatform(), args.adb_path))
+
+  devil_env.config.Initialize(configs=[devil_dynamic_config])
+
+  try:
+    return ProvisionDevices(
+        args.devices,
+        args.blacklist_file,
+        adb_key_files=args.adb_key_files,
+        disable_location=args.disable_location,
+        disable_mock_location=args.disable_mock_location,
+        disable_network=args.disable_network,
+        disable_system_chrome=args.disable_system_chrome,
+        emulators=args.emulators,
+        enable_java_debug=args.enable_java_debug,
+        max_battery_temp=args.max_battery_temp,
+        min_battery_level=args.min_battery_level,
+        output_device_blacklist=args.output_device_blacklist,
+        reboot_timeout=args.reboot_timeout,
+        remove_system_webview=args.remove_system_webview,
+        wipe=not args.skip_wipe)
+  except (device_errors.DeviceUnreachableError, device_errors.NoDevicesError):
+    return exit_codes.INFRA
+
+
+if __name__ == '__main__':
+  sys.exit(main(sys.argv[1:]))
diff --git a/catapult/devil/devil/android/tools/script_common.py b/catapult/devil/devil/android/tools/script_common.py
index eb91cdc..8e462c3 100644
--- a/catapult/devil/devil/android/tools/script_common.py
+++ b/catapult/devil/devil/android/tools/script_common.py
@@ -8,9 +8,10 @@
 
 
 def GetDevices(requested_devices, blacklist_file):
-  blacklist = (device_blacklist.Blacklist(blacklist_file)
-               if blacklist_file
-               else None)
+  if not isinstance(blacklist_file, device_blacklist.Blacklist):
+    blacklist = (device_blacklist.Blacklist(blacklist_file)
+                 if blacklist_file
+                 else None)
 
   devices = device_utils.DeviceUtils.HealthyDevices(blacklist)
   if not devices:
diff --git a/catapult/devil/devil/devil_env.py b/catapult/devil/devil/devil_env.py
index b54e6f5..6b64766 100644
--- a/catapult/devil/devil/devil_env.py
+++ b/catapult/devil/devil/devil_env.py
@@ -47,22 +47,37 @@
 }
 
 
+def EmptyConfig():
+  return {
+    'config_type': 'BaseConfig',
+    'dependencies': {}
+  }
+
+
+def LocalConfigItem(dependency_name, dependency_platform, dependency_path):
+  if isinstance(dependency_path, basestring):
+    dependency_path = [dependency_path]
+  return {
+    dependency_name: {
+      'file_info': {
+        dependency_platform: {
+          'local_paths': dependency_path
+        },
+      },
+    },
+  }
+
+
 def _GetEnvironmentVariableConfig():
+  env_config = EmptyConfig()
   path_config = (
       (os.environ.get(k), v)
       for k, v in _LEGACY_ENVIRONMENT_VARIABLES.iteritems())
-  return {
-    'config_type': 'BaseConfig',
-    'dependencies': {
-      c['dependency_name']: {
-        'file_info': {
-          c['platform']: {
-            'local_paths': [p],
-          },
-        },
-      } for p, c in path_config if p
-    },
-  }
+  path_config = ((p, c) for p, c in path_config if p)
+  for p, c in path_config:
+    env_config['dependencies'].update(
+        LocalConfigItem(c['dependency_name'], c['platform'], p))
+  return env_config
 
 
 class _Environment(object):
@@ -76,7 +91,7 @@
 
     This uses all configurations provided via |configs| and |config_files|
     to determine the locations of devil's dependencies. Configurations should
-    all take the form described by catapult_base.dependency_manager.BaseConfig.
+    all take the form described by py_utils.dependency_manager.BaseConfig.
     If no configurations are provided, a default one will be used if available.
 
     Args:
diff --git a/catapult/devil/devil/utils/markdown.py b/catapult/devil/devil/utils/markdown.py
new file mode 100755
index 0000000..cb2dc2b
--- /dev/null
+++ b/catapult/devil/devil/utils/markdown.py
@@ -0,0 +1,74 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import argparse
+
+class MarkdownHelpFormatter(argparse.HelpFormatter):
+  """A really bare-bones argparse help formatter that generates valid markdown.
+
+  This will generate something like:
+
+  usage
+
+  # **section heading**:
+
+  ## **--argument-one**
+
+  ```
+  argument-one help text
+  ```
+
+  """
+
+  #override
+  def _format_usage(self, usage, actions, groups, prefix):
+    usage_text = super(MarkdownHelpFormatter, self)._format_usage(
+        usage, actions, groups, prefix)
+    return '\n```\n%s\n```\n\n' % usage_text
+
+  #override
+  def format_help(self):
+    self._root_section.heading = '# %s' % self._prog
+    return super(MarkdownHelpFormatter, self).format_help()
+
+  #override
+  def start_section(self, heading):
+    super(MarkdownHelpFormatter, self).start_section('## **%s**' % heading)
+
+  #override
+  def _format_action(self, action):
+    lines = []
+    action_header = self._format_action_invocation(action)
+    lines.append('### **%s** ' % action_header)
+    if action.help:
+      lines.append('')
+      lines.append('```')
+      help_text = self._expand_help(action)
+      lines.extend(self._split_lines(help_text, 80))
+      lines.append('```')
+    lines.extend(['', ''])
+    return '\n'.join(lines)
+
+
+class MarkdownHelpAction(argparse.Action):
+  def __init__(self, option_strings,
+               dest=argparse.SUPPRESS, default=argparse.SUPPRESS,
+               **kwargs):
+    super(MarkdownHelpAction, self).__init__(
+        option_strings=option_strings,
+        dest=dest,
+        default=default,
+        nargs=0,
+        **kwargs)
+
+  def __call__(self, parser, namespace, values, option_string=None):
+    parser.formatter_class = MarkdownHelpFormatter
+    parser.print_help()
+    parser.exit()
+
+
+def add_md_help_argument(parser):
+  parser.add_argument('--md-help', action=MarkdownHelpAction,
+                      help='print Markdown-formatted help text and exit.')
+
diff --git a/catapult/devil/devil/utils/timeout_retry_unittest.py b/catapult/devil/devil/utils/timeout_retry_unittest.py
index 8498288..0eeb31a 100755
--- a/catapult/devil/devil/utils/timeout_retry_unittest.py
+++ b/catapult/devil/devil/utils/timeout_retry_unittest.py
@@ -40,7 +40,7 @@
       time.sleep(1)
 
     self.assertRaises(
-        reraiser_thread.TimeoutError, timeout_retry.Run, _sleep, .0001, 1,
+        reraiser_thread.TimeoutError, timeout_retry.Run, _sleep, .01, 1,
         error_log_func=logging.debug)
     self.assertEqual(tries[0], 2)
 
diff --git a/catapult/docs/OWNERS b/catapult/docs/OWNERS
new file mode 100644
index 0000000..f0b5b95
--- /dev/null
+++ b/catapult/docs/OWNERS
@@ -0,0 +1,3 @@
+per-file style-guide.md=charliea@chromium.org
+per-file how-to-write-metrics.md=eakuefner@chromium.org
+per-file how-to-write-metrics.md=benjhayden@chromium.org
diff --git a/catapult/docs/how-to-write-metrics.md b/catapult/docs/how-to-write-metrics.md
new file mode 100644
index 0000000..9d914a7
--- /dev/null
+++ b/catapult/docs/how-to-write-metrics.md
@@ -0,0 +1,166 @@
+<!-- Copyright 2016 The Chromium Authors. All rights reserved.
+     Use of this source code is governed by a BSD-style license that can be
+     found in the LICENSE file.
+-->
+
+Timeline-Based Measurement v2 is a system for computing metrics from traces.
+
+A TBM2 metric is a Javascript function that takes a trace Model and produces
+Histograms.
+
+
+Coding Practices
+==============
+
+Please follow the [Catapult Javascript style guide](/docs/style-guide.md) so
+that the TBM2 maintainers can refactor your metric when we need to update the TBM2
+API.
+
+Please write a unit test for your metric.
+
+If your metric computes information from the trace that may be of general use to
+other metrics or the trace viewer UI, then the TBM2 maintainers may ask for your
+help to generalize your innovation into a part of the Trace Model such as the
+[UserModel](/tracing/tracing/model/user_model/user_model.html) or
+[ModelHelpers](/tracing/tracing/model/helpers/chrome_browser_helper.html).
+
+Use the dev server to develop and debug your metric.
+
+ * Run `./bin/run_dev_server`
+ * Navigate to
+   [http://localhost:8003/tracing_examples/trace_viewer.html](http://localhost:8003/tracing_examples/trace_viewer.html).
+ * Open a trace that your metric can be computed from.
+ * Open the Metrics side panel on the right.
+ * Select your metric from the drop-down.
+ * Inspect the results and change your metric if necessary.
+ * Open different traces to explore corner cases in your metric.
+
+
+Trace Model
+===========
+
+Trace logs are JSON files produced by tracing systems in Chrome, Android, linux
+perf, BattOr, etc. The trace model is an object-level representation of events
+parsed from a trace log. The trace model contains Javascript objects
+representing
+
+ * OS [processes](/tracing/tracing/model/process.html),
+   [threads](/tracing/tracing/model/thread.html),
+ * utilities for finding special processes and threads such as
+   [ChromeBrowserHelper](/tracing/tracing/model/helpers/chrome_browser_helper.html),
+ * synchronous [ThreadSlices](/tracing/tracing/model/thread_slice.html)
+   and asynchronous [AsyncSlices](/tracing/tracing/model/async_slice.html),
+ * [snapshots](/tracing/tracing/model/object_snapshot.html) of object state as it changes throughout time,
+ * [RPCs](/tracing/tracing/model/flow_event.html),
+ * [FrameBlameContexts](/tracing/tracing/extras/chrome/blame_context/blame_context.html),
+ * battery [power samples](/tracing/tracing/model/power_sample.html),
+ * synthetic higher-level abstractions representing complex sets of
+   events such as
+   [UserExpectations](/tracing/tracing/model/user_model/user_expectation.html),
+ * and [more](/tracing/tracing/model/model.html)!
+
+
+Histograms
+==========
+
+A [Histogram](/tracing/tracing/value/histogram.html) is basically a common
+[histogram](https://en.wikipedia.org/wiki/Histogram), but with a few extra bells
+and whistles that are particularly useful for TBM2 metrics.
+
+ * Specify units of samples and improvement direction with
+   [Unit](/tracing/tracing/value/unit.html)
+ * JSON serialization with asDict()/fromDict()
+ * Build custom bin boundaries with HistogramBinBoundaries
+ * Compute statistics such as average, stddev, sum, and percentiles
+ * Customize which statistics are serialized with customizeSummaryOptions()
+ * Count non-numeric samples
+ * Store a random subset of sample values
+ * getDifferenceSignificance() computes whether two histograms are significantly
+   different with a Mann-Whitney U hypothesis test
+ * addHistogram() merges two Histograms with the same units and bin boundaries
+
+But the most complex special feature of Histograms is their Diagnostics.
+
+
+Diagnostics
+===========
+
+When a metric significantly regresses, you then need to diagnose why it
+regressed. Diagnostics are pieces of information that metrics attach to
+Histograms in order help you diagnose regressions. Diagnostics may be associated
+either with the entire Histogram directly, or with a particular sample.
+
+Attach a Diagnostic to a Histogram:
+
+```javascript
+histogram.diagnostics.set('name', diagnostic)
+// or
+values.addHistogram(histogram, {name: diagnostic})
+```
+
+Attach a Diagnostic to a sample:
+
+```javascript
+histogram.addSample(number, {name: diagnostic})
+```
+
+The types of Diagnostics are
+
+ * [Generic](/tracing/tracing/value/diagnostics/generic.html): This can contain
+   any data that can be serialized and deserialized using JSON.stringify() and
+   JSON.parse(), including numbers, strings, Arrays, and dictionaries (simple
+   Objects). It will be visualized using
+   [generic-object-view](/tracing/tracing/ui/analysis/generic_object_view.html),
+   which is quite smart about displaying tabular data using tables, URLs using
+   HTML anchor tags, pretty-printing, recursive data structures, and more.
+ * [RelatedEventSet](/tracing/tracing/value/diagnostics/related_event_set.html):
+   This is a Set of references to Events in the trace model. Visually, they
+   are displayed as HTML links which, when clicked in the metrics-side-panel,
+   select the referenced Events in the trace viewer's timeline view. When
+   clicked in results2.html, they currently do nothing, but should eventually
+   open the trace that contains the events and select them.
+ * [Breakdown](/tracing/tracing/value/diagnostics/breakdown.html):
+   Structurally, these are Maps from strings to numbers. Conceptually, they
+   describe what fraction of a whole (either a Histogram or a sample) is due to
+   some sort of category - either a category of event, CPU sample, memory
+   consumer, whathaveyou. Visually, they are a stacked bar chart with a single
+   bar, which is spiritually a pie chart, but less misleading.
+ * [RelatedValueSet](/tracing/tracing/value/diagnostics/related_value_set.html):
+   These are Sets of references to other Histograms. Visually, they are a set
+   of HTML links which, when clicked, select the contained Histograms. The text
+   content of the HTML link is the name of the referenced Histogram.
+ * [RelatedValueMap](/tracing/tracing/value/diagnostics/related_value_map.html):
+   These are Maps from strings to references to other Histograms. Visually, they
+   are a set of HTML links similar to RelatedValueSet, but the text content of
+   the link is the Map's string key instead of the Histogram's name. One example
+   application is when a Histogram was produced not directly by a metric, but
+   rather by merging together other Histograms, then it will have a
+   RelatedValueMap named 'merged from' that refers to the Histograms that were
+   merged by their grouping key, e.g. the telemetry story name.
+ * [RelatedHistogramBreakdown](/tracing/tracing/value/diagnostics/related_histogram_breakdown.html):
+   Structurally, this is a RelatedValueMap, but conceptually and visually, this
+   is a Breakdown. Whereas Breakdown's stacked bar chart derives its data from
+   the numbers contained explicitly in the Breakdown, a
+   RelatedHistogramBreakdown's stacked
+   bar chart derives its data from the referenced Histograms' sums.
+ * [IterationInfo](/tracing/tracing/value/diagnostics/iteration_info.html):
+   This is automatically attached to every Histogram produced by telemetry.
+   Structurally, it's a class with explicit named fields.
+   Conceptually, it contains information about the origins of the trace that was
+   consumed by the metric that produced the Histogram, such as the benchmark
+   name, story name, benchmark start timestamp, OS version, Chrome version, etc.
+   Visually, IterationInfos are displayed as a table.
+
+
+Consumers of Histograms
+=======================
+
+Histograms are consumed by
+
+ * [value-set-table](/tracing/tracing/value/ui/value-set-table.html) in both
+   results2.html and the Metrics side panel in trace viewer,
+ * the [dashboard](https://chromeperf.appspot.com) indirectly via their statistics.
+
+Currently, telemetry discards Histograms and Diagnostics, and only passes their
+statistics scalars to the dashboard. Histograms and their Diagnostics will be
+passed directly to the dashboard early 2017.
diff --git a/catapult/docs/style-guide.md b/catapult/docs/style-guide.md
index 035c525..817de45 100644
--- a/catapult/docs/style-guide.md
+++ b/catapult/docs/style-guide.md
@@ -178,11 +178,11 @@
 
 | Feature                                                                                                                                     | Status                                                                          |
 |---------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------|
-| [Arrows](https://github.com/lukehoban/es6features#arrows)                                                                                   | [Approved](https://github.com/catapult-project/catapult/issues/2165) |
-| [Classes](https://github.com/lukehoban/es6features#classes)                                                                                 | To be discussed                                                                 |
+| [Arrows](https://github.com/lukehoban/es6features#arrows)                                                                                   | [Approved](https://github.com/catapult-project/catapult/issues/2165)            |
+| [Classes](https://github.com/lukehoban/es6features#classes)                                                                                 | [Approved](https://github.com/catapult-project/catapult/issues/2176)            |
 | [Enhanced object literals](https://github.com/lukehoban/es6features#enhanced-object-literals)                                               | To be discussed                                                                 |
 | [Template strings](https://github.com/lukehoban/es6features#template-strings)                                                               | To be discussed                                                                 |
-| [Destructuring](https://github.com/lukehoban/es6features#destructuring)                                                                     | To be discussed                                                                 |
+| [Destructuring](https://github.com/lukehoban/es6features#destructuring)                                                                     | Approved                                                                        |
 | [Default, rest, and spread](https://github.com/lukehoban/es6features#default--rest--spread)                                                 | To be discussed                                                                 |
 | [`let` and `const`](https://github.com/lukehoban/es6features#let--const)                                                                    | To be discussed                                                                 |
 | [Iterators and `for...of`](https://github.com/lukehoban/es6features#iterators--forof)                                                       | Approved                                                                        |
@@ -193,7 +193,7 @@
 | [`Map`, `Set`, `WeakMap`, and `WeakSet`](https://github.com/lukehoban/es6features#map--set--weakmap--weakset)                               | Approved                                                                        |
 | [Proxies](https://github.com/lukehoban/es6features#proxies)                                                                                 | To be discussed                                                                 |
 | [Symbols](https://github.com/lukehoban/es6features#symbols)                                                                                 | To be discussed                                                                 |
-| [Subclassable Built-ins](https://github.com/lukehoban/es6features#subclassable-built-ins)                                                   | To be discussed                                                                 |
+| [Subclassable Built-ins](https://github.com/lukehoban/es6features#subclassable-built-ins)                                                   | Approved                                                                        |
 | [Promises](https://github.com/lukehoban/es6features#promises)                                                                               | Approved                                                                        |
 | [`Math`, `Number`, `String`, `Array`, and `Object` APIs](https://github.com/lukehoban/es6features#math--number--string--array--object-apis) | To be discussed                                                                 |
 | [Binary and octal literals](https://github.com/lukehoban/es6features#binary-and-octal-literals)                                             | To be discussed                                                                 |
diff --git a/catapult/firefighter/default/tracing/third_party b/catapult/firefighter/default/tracing/third_party
deleted file mode 120000
index 2bfb90f..0000000
--- a/catapult/firefighter/default/tracing/third_party
+++ /dev/null
@@ -1 +0,0 @@
-../../../tracing/third_party
\ No newline at end of file
diff --git a/catapult/firefighter/default/tracing/tracing b/catapult/firefighter/default/tracing/tracing
deleted file mode 120000
index d3f48c5..0000000
--- a/catapult/firefighter/default/tracing/tracing
+++ /dev/null
@@ -1 +0,0 @@
-../../../tracing/tracing
\ No newline at end of file
diff --git a/catapult/perf_insights/Dockerfile b/catapult/perf_insights/Dockerfile
deleted file mode 100644
index 2513f97..0000000
--- a/catapult/perf_insights/Dockerfile
+++ /dev/null
@@ -1,12 +0,0 @@
-FROM gcr.io/google_appengine/python-compat
-ADD . /app
-
-# Debian 7 doesn't have the right version of glibc, so we need to install.
-# Ideally at some point, instead of using the appengine supplied python
-# image, we could image our own ubuntu version.
-# https://github.com/GoogleCloudPlatform/appengine-python-vm-runtime
-RUN apt-get update && apt-get install -y git libglib2.0-dev procps
-RUN sed -i '1ideb http://ftp.debian.org/debian experimental main' /etc/apt/sources.list
-RUN apt-get update && apt-get -y -t experimental install libc6
-
-RUN (cd /; git clone https://github.com/catapult-project/catapult.git)
diff --git a/catapult/perf_insights/OWNERS b/catapult/perf_insights/OWNERS
deleted file mode 100644
index f59ec20..0000000
--- a/catapult/perf_insights/OWNERS
+++ /dev/null
@@ -1 +0,0 @@
-*
\ No newline at end of file
diff --git a/catapult/perf_insights/PRESUBMIT.py b/catapult/perf_insights/PRESUBMIT.py
deleted file mode 100644
index 0edc9f0..0000000
--- a/catapult/perf_insights/PRESUBMIT.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-
-def CheckChangeOnUpload(input_api, output_api):
-  return _CommonChecks(input_api, output_api)
-
-
-def CheckChangeOnCommit(input_api, output_api):
-  return _CommonChecks(input_api, output_api)
-
-
-def _CommonChecks(input_api, output_api):
-  results = []
-  results += input_api.RunTests(input_api.canned_checks.GetPylint(
-      input_api, output_api, extra_paths_list=_GetPathsToPrepend(input_api),
-      pylintrc='pylintrc'))
-  return results
-
-
-def _GetPathsToPrepend(input_api):
-  project_dir = input_api.PresubmitLocalPath()
-  catapult_dir = input_api.os_path.join(project_dir, '..')
-  return [
-      project_dir,
-
-      input_api.os_path.join(catapult_dir, 'third_party', 'mock'),
-  ]
diff --git a/catapult/perf_insights/README.md b/catapult/perf_insights/README.md
deleted file mode 100644
index 56ccaf1..0000000
--- a/catapult/perf_insights/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-<!-- Copyright 2015 The Chromium Authors. All rights reserved.
-     Use of this source code is governed by a BSD-style license that can be
-     found in the LICENSE file.
--->
-This folder contains code for http://performance-insights.appspot.com/,
-and related client scripts. This is our UI for bulk-processing of trace data in
-order to understand performance issues in Chrome, at scale.
\ No newline at end of file
diff --git a/catapult/perf_insights/bin/PRESUBMIT.py b/catapult/perf_insights/bin/PRESUBMIT.py
deleted file mode 100644
index 799215d..0000000
--- a/catapult/perf_insights/bin/PRESUBMIT.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import os
-
-def CheckChange(input_api, output_api):
-  init_py_path = os.path.join(input_api.PresubmitLocalPath(), '__init__.py')
-  res = []
-  if os.path.exists(init_py_path):
-    res += [output_api.PresubmitError(
-        '__init__.py is not allowed to exist in bin/')]
-  return res
-
-def CheckChangeOnUpload(input_api, output_api):
-  return CheckChange(input_api, output_api)
-
-
-def CheckChangeOnCommit(input_api, output_api):
-  return CheckChange(input_api, output_api)
diff --git a/catapult/perf_insights/bin/dev_server_perfinsights b/catapult/perf_insights/bin/dev_server_perfinsights
deleted file mode 100755
index cace30f..0000000
--- a/catapult/perf_insights/bin/dev_server_perfinsights
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/python
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-
-def _AddToPathIfNeeded(path):
-  if path not in sys.path:
-    sys.path.insert(0, path)
-
-
-def Main():
-  catapult_path = os.path.abspath(os.path.join(
-      os.path.dirname(__file__), os.path.pardir, os.path.pardir))
-
-  _AddToPathIfNeeded(
-      os.path.join(catapult_path, 'perf_insights'))
-  from perf_insights.endpoints import cloud_mapper
-  paths = cloud_mapper.PathsForDeployment()
-
-  _AddToPathIfNeeded(catapult_path)
-  from catapult_build import appengine_dev_server
-
-  appengine_dev_server.DevAppserver(
-      paths, ['local_worker.yaml', 'dispatch.yaml'] + sys.argv[1:])
-
-if __name__ == '__main__':
-  Main()
diff --git a/catapult/perf_insights/bin/map_traces b/catapult/perf_insights/bin/map_traces
deleted file mode 100755
index f3d09b8..0000000
--- a/catapult/perf_insights/bin/map_traces
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-if __name__ == '__main__':
-  perf_insights_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                                    '..'))
-  sys.path.append(perf_insights_path)
-  from perf_insights.mre import map_traces
-  sys.exit(map_traces.Main(sys.argv))
diff --git a/catapult/perf_insights/bin/map_traces_locally b/catapult/perf_insights/bin/map_traces_locally
deleted file mode 100755
index 7435b22..0000000
--- a/catapult/perf_insights/bin/map_traces_locally
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-if __name__ == '__main__':
-  sys.stderr.write(
-      'map_traces_locally is deprecated. Use map_traces instead.\n');
-  perf_insights_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                                    '..'))
-  sys.path.append(perf_insights_path)
-  from perf_insights.mre import map_traces
-  sys.exit(map_traces.Main(sys.argv))
diff --git a/catapult/perf_insights/bin/pi_report_to_html b/catapult/perf_insights/bin/pi_report_to_html
deleted file mode 100755
index 563f8c0..0000000
--- a/catapult/perf_insights/bin/pi_report_to_html
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-if __name__ == '__main__':
-  perf_insights_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                                    '..'))
-  sys.path.append(perf_insights_path)
-
-  from perf_insights_build import pi_report_to_html
-  sys.exit(pi_report_to_html.Main(sys.argv))
diff --git a/catapult/perf_insights/bin/run_dev_server_tests b/catapult/perf_insights/bin/run_dev_server_tests
deleted file mode 100755
index f8ff601..0000000
--- a/catapult/perf_insights/bin/run_dev_server_tests
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-if __name__ == '__main__':
-  catapult_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..', '..'))
-  sys.path.append(catapult_path)
-  from catapult_build import run_dev_server_tests
-  sys.exit(run_dev_server_tests.Main(sys.argv + ['--tests=perf_insights']))
diff --git a/catapult/perf_insights/bin/run_py_tests b/catapult/perf_insights/bin/run_py_tests
deleted file mode 100755
index e8fc05b..0000000
--- a/catapult/perf_insights/bin/run_py_tests
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-import platform
-
-_CATAPULT_PATH = os.path.abspath(os.path.join(
-    os.path.dirname(__file__), os.path.pardir, os.path.pardir))
-_PERF_INSIGHTS_PATH = os.path.join(_CATAPULT_PATH, 'perf_insights')
-
-
-def _RunTestsOrDie(top_level_dir):
-  exit_code = run_with_typ.Run(top_level_dir, path=[_PERF_INSIGHTS_PATH])
-  if exit_code:
-    sys.exit(exit_code)
-
-
-def _AddToPathIfNeeded(path):
-  if path not in sys.path:
-    sys.path.insert(0, path)
-
-
-if __name__ == '__main__':
-  _AddToPathIfNeeded(_CATAPULT_PATH)
-
-  from hooks import install
-  if '--no-install-hooks' in sys.argv:
-    sys.argv.remove('--no-install-hooks')
-  else:
-    install.InstallHooks()
-
-  from catapult_build import run_with_typ
-  _RunTestsOrDie(os.path.join(_PERF_INSIGHTS_PATH, 'perf_insights'))
diff --git a/catapult/perf_insights/bin/run_tests b/catapult/perf_insights/bin/run_tests
deleted file mode 100755
index 49d80a7..0000000
--- a/catapult/perf_insights/bin/run_tests
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-
-_THIS_PATH = os.path.dirname(__file__)
-_TESTS = [
-    {'path': os.path.join(_THIS_PATH, 'run_py_tests'),
-     'disabled': {'win32'}},
-    {'path': os.path.join(_THIS_PATH, 'run_vinn_tests'),
-     'disabled': {'win32'}},
-    {'path': os.path.join(_THIS_PATH, 'run_dev_server_tests'),
-     'chrome_path_arg': True}
-]
-
-
-if __name__ == '__main__':
-  catapult_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                  '..', '..'))
-  sys.path.append(catapult_path)
-  from catapult_build import test_runner
-  sys.exit(test_runner.Main('perf_insights', _TESTS, sys.argv))
diff --git a/catapult/perf_insights/bin/run_vinn_tests b/catapult/perf_insights/bin/run_vinn_tests
deleted file mode 100755
index de10ea9..0000000
--- a/catapult/perf_insights/bin/run_vinn_tests
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-
-if __name__ == '__main__':
-  perf_insights_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                                    '..'))
-  sys.path.append(perf_insights_path)
-  from perf_insights_build import run_vinn_tests
-  sys.exit(run_vinn_tests.Main(sys.argv))
diff --git a/catapult/perf_insights/bin/wr b/catapult/perf_insights/bin/wr
deleted file mode 100755
index 922e95a..0000000
--- a/catapult/perf_insights/bin/wr
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import sys
-
-if __name__ == '__main__':
-  perf_insights_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                                    '..'))
-  sys.path.append(perf_insights_path)
-
-  pi_report_file = os.path.join(perf_insights_path,
-                                'perf_insights/ui/reports/weather_report.html')
-
-  from perf_insights_build import pi_report_to_html
-  sys.exit(pi_report_to_html.Main(sys.argv,
-           pi_report_file=pi_report_file))
diff --git a/catapult/perf_insights/perf_insights/__init__.py b/catapult/perf_insights/perf_insights/__init__.py
deleted file mode 100644
index 987a3e1..0000000
--- a/catapult/perf_insights/perf_insights/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import perf_insights_project
-perf_insights_project.UpdateSysPathIfNeeded()
diff --git a/catapult/perf_insights/perf_insights/endpoints/__init__.py b/catapult/perf_insights/perf_insights/endpoints/__init__.py
deleted file mode 100644
index 987a3e1..0000000
--- a/catapult/perf_insights/perf_insights/endpoints/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import perf_insights_project
-perf_insights_project.UpdateSysPathIfNeeded()
diff --git a/catapult/perf_insights/perf_insights/mre/corpus_driver_cmdline.py b/catapult/perf_insights/perf_insights/mre/corpus_driver_cmdline.py
deleted file mode 100644
index 62f46df..0000000
--- a/catapult/perf_insights/perf_insights/mre/corpus_driver_cmdline.py
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-from perf_insights.mre import local_directory_corpus_driver
-from perf_insights.mre import perf_insights_corpus_driver
-
-
-# TODO(simonhatch): Use telemetry's discover.py module once its part of
-# catapult.
-_CORPUS_DRIVERS = {
-  'perf-insights': {
-      'description': 'Use the performance insights server.',
-      'class': perf_insights_corpus_driver.PerfInsightsCorpusDriver
-  },
-  'local-directory': {
-      'description': 'Use traces from a local directory.',
-      'class': local_directory_corpus_driver.LocalDirectoryCorpusDriver
-  },
-  'list': None
-}
-_CORPUS_DRIVER_DEFAULT = 'perf-insights'
-
-
-def AddArguments(parser):
-  parser.add_argument(
-      '-c', '--corpus',
-      choices=_CORPUS_DRIVERS.keys(),
-      default=_CORPUS_DRIVER_DEFAULT)
-  for k, v in _CORPUS_DRIVERS.iteritems():
-    if not v:
-      continue
-    parser_group = parser.add_argument_group(k)
-    driver_cls = v['class']
-    driver_cls.AddArguments(parser_group)
-
-
-def GetCorpusDriver(parser, args):
-  # With parse_known_args, optional arguments aren't guaranteed to be there so
-  # we need to check if it's there, and use the default otherwise.
-  corpus = _CORPUS_DRIVER_DEFAULT
-  if hasattr(args, 'corpus'):
-    corpus = args.corpus
-
-  if corpus == 'list':
-    corpus_descriptions = '\n'.join(
-        ['%s: %s' % (k, v['description'])
-            for k, v in _CORPUS_DRIVERS.iteritems() if v]
-      )
-    parser.exit('Valid drivers:\n\n%s\n' % corpus_descriptions)
-
-  cls = _CORPUS_DRIVERS[corpus]['class']
-  init_args = cls.CheckAndCreateInitArguments(parser, args)
-  return cls(**init_args)
diff --git a/catapult/perf_insights/perf_insights/mre/corpus_query.py b/catapult/perf_insights/perf_insights/mre/corpus_query.py
deleted file mode 100644
index e4426fd..0000000
--- a/catapult/perf_insights/perf_insights/mre/corpus_query.py
+++ /dev/null
@@ -1,228 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-"""GetTraccHandlesQuery is designed to be either evaluable directly
-from python, or be convertable to an Appengine datastore query. As a result,
-exercise discretion when adding features to this class.
-"""
-import operator
-import re
-import datetime
-
-
-def _InOp(a, b):
-  return a in b
-
-
-class _ReadField(object):
-
-  def __init__(self, fieldName):
-    self.fieldName = fieldName
-
-  def AsQueryString(self):
-    return self.fieldName
-
-  def Eval(self, metadata):
-    return metadata[self.fieldName]
-
-
-class _Constant(object):
-
-  def __init__(self, constant):
-    self.constant = constant
-
-  def AsQueryString(self):
-    if isinstance(self.constant, list):
-      # Tuples
-      return '(%s)' % ','.join([c.AsQueryString() for c in self.constant])
-    elif isinstance(self.constant, (datetime.datetime, datetime.date)):
-      # Dates.
-      return self.constant.strftime("Date(%Y-%m-%d %H:%M:%S.%f)")
-    elif isinstance(self.constant, str):
-      # Strings need quotes.
-      return "'%s'" % self.constant
-    # Everything else from the eval() statement below.
-    return str(self.constant)
-
-  def Eval(self, metadata):
-    # pylint: disable=unused-argument
-    return self.constant
-
-
-def _StringToValue(s):
-  try:
-    constant = eval(s, {}, {})
-    return _Constant(constant)
-  except Exception:  # pylint: disable=bare-except
-    pass
-
-  # Barewords are assumed to be fields.
-  m = re.match(r'([a-zA-Z0-9_]+)$', s)
-  if m:
-    return _ReadField(m.group(1))
-
-  # Tuples.
-  m = re.match(r'\(.+\)$', s)
-  if m:
-    items = m.group(0).split(r',\s*')
-    return _Constant([_StringToValue(x) for x in items])
-
-  # Dates.
-  m = re.match(r'Date\((.+)\)$', s)
-  if m:
-    d = datetime.datetime.strptime(m.group(1), "%Y-%m-%d %H:%M:%S.%f")
-    return _Constant(d)
-
-  # Dunno!
-  raise NotImplementedError()
-
-_OPERATORS = {
-  '=': operator.eq,
-  '<': operator.lt,
-  '<=': operator.le,
-  '>': operator.gt,
-  '>=': operator.ge,
-  '!=': operator.ne,
-  ' IN ': _InOp  # Spaces matter for proper parsing.
-}
-
-
-def _OperatorToString(op):
-  for k, v in _OPERATORS.iteritems():
-    if op == v:
-      return k
-  raise NotImplementedError()
-
-
-# Since we use find(token) in our actual tokenizing function,
-# we need to search for the longest tokens first so that '<=' is searched
-# for first, bofore '<', for instance.
-_TOKEN_SEARCH_ORDER = list(_OPERATORS.keys())
-_TOKEN_SEARCH_ORDER.sort(lambda x, y: len(y) - len(x))
-
-
-class Filter(object):
-
-  def __init__(self, a, op, b):
-    self.a = a
-    self.op = op
-    self.b = b
-
-  def Eval(self, metadata):
-    return self.op(self.a.Eval(metadata),
-                   self.b.Eval(metadata))
-
-  def AsQueryString(self):
-    # strip() the operator in case we get " IN ", just so that it's not
-    # double spaced.
-    return '%s %s %s' % (self.a.AsQueryString(),
-                         _OperatorToString(self.op).strip(),
-                         self.b.AsQueryString())
-
-  @staticmethod
-  def FromString(s):
-    found_op_key = None
-    found_op_key_idx = -1
-    for op_key in _TOKEN_SEARCH_ORDER:
-      i = s.find(op_key)
-      if i != -1:
-        found_op_key_idx = i
-        found_op_key = op_key
-        break
-
-    if found_op_key_idx == -1:
-      raise Exception('Expected: operator')
-
-    lvalue = s[:found_op_key_idx]
-    rvalue = s[found_op_key_idx + len(found_op_key):]
-
-    lvalue = lvalue.strip()
-    rvalue = rvalue.strip()
-
-    lvalue = _StringToValue(lvalue)
-    rvalue = _StringToValue(rvalue)
-
-    if not isinstance(lvalue, _ReadField) or not isinstance(rvalue, _Constant):
-      # GQL Syntax needs the property on the left and the value on the right.
-      # https://cloud.google.com/appengine/docs/python/datastore/gqlreference
-      raise Exception('Expected lvalue field and rvalue constant')
-
-    return Filter(lvalue,
-                  _OPERATORS[found_op_key],
-                  rvalue)
-
-
-class CorpusQuery(object):
-
-  def __init__(self):
-    self.max_trace_handles = None
-    self.filters = []
-
-  def AsGQLWhereClause(self):
-    gql = ''
-    args = []
-    if self.filters:
-      filter_strings = []
-      for f in self.filters:
-        # Constants need to be passed back as positional arguments to avoid
-        # potential gql injection problems.
-        a_string = ''
-        if isinstance(f.a, _Constant):
-          args.append(f.a.constant)
-          a_string = ':%d' % len(args)
-        else:
-          a_string = f.a.fieldName
-
-        b_string = ''
-        if isinstance(f.b, _Constant):
-          args.append(f.b.constant)
-          b_string = ':%d' % len(args)
-        else:
-          b_string = f.b.fieldName
-
-        filter_strings.append('%s %s %s' % (a_string,
-                                             _OperatorToString(f.op).strip(),
-                                             b_string))
-      gql = 'WHERE ' + ' AND '.join(filter_strings)
-    if self.max_trace_handles:
-      gql += ' LIMIT %d' % self.max_trace_handles
-    # strip() the final GQL in case it's just " LIMIT 1", just so that it looks
-    # a bit nicer.
-    return (gql.strip(), args)
-
-  def AsQueryString(self):
-    filter_strings = [f.AsQueryString() for f in self.filters]
-    if self.max_trace_handles:
-      filter_strings.append('MAX_TRACE_HANDLES=%d' % self.max_trace_handles)
-    query_str = ' AND '.join(filter_strings)
-    return query_str
-
-  @staticmethod
-  def FromString(filterString):
-    """This follows the same filter rules as GQL"""
-    if filterString == 'True' or filterString == '':
-      return CorpusQuery()
-
-    q = CorpusQuery()
-    exprs = filterString.split(' AND ')
-    for expr in exprs:
-      m = re.match(r'MAX_TRACE_HANDLES\s*=\s*(\d+)', expr)
-      if m:
-        q.max_trace_handles = int(m.group(1))
-        continue
-
-      f = Filter.FromString(expr)
-      q.filters.append(f)
-
-    return q
-
-  def Eval(self, metadata, num_trace_handles_so_far=0):
-    if not self.max_trace_handles is None:
-      if num_trace_handles_so_far >= self.max_trace_handles:
-        return False
-
-    for flt in self.filters:
-      if not flt.Eval(metadata):
-        return False
-
-    return True
diff --git a/catapult/perf_insights/perf_insights/mre/corpus_query_unittest.py b/catapult/perf_insights/perf_insights/mre/corpus_query_unittest.py
deleted file mode 100644
index 8bd8b78..0000000
--- a/catapult/perf_insights/perf_insights/mre/corpus_query_unittest.py
+++ /dev/null
@@ -1,174 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import datetime
-import operator
-import unittest
-
-from perf_insights.mre import corpus_query
-
-
-class FilterTests(unittest.TestCase):
-
-  def testEqNumber(self):
-    f = corpus_query.Filter.FromString("a = 3")
-
-    self.assertEquals(f.a.fieldName, 'a')
-    self.assertEquals(f.op, operator.eq)
-    self.assertEquals(f.b.constant, 3)
-
-    self.assertFalse(f.Eval({'a': 4}))
-    self.assertTrue(f.Eval({'a': 3}))
-
-  def testInTuple(self):
-    f = corpus_query.Filter.FromString("a IN (1, 2)")
-    self.assertEquals(f.a.fieldName, 'a')
-    self.assertEquals(f.op, corpus_query._InOp)
-    self.assertEquals(f.b.constant, (1, 2))
-
-    self.assertFalse(f.Eval({'a': 3}))
-    self.assertTrue(f.Eval({'a': 1}))
-
-  def testInTupleStr(self):
-    f = corpus_query.Filter.FromString("a IN ('a', 'b')")
-    self.assertEquals(f.a.fieldName, 'a')
-    self.assertEquals(f.op, corpus_query._InOp)
-    self.assertEquals(f.b.constant, ('a', 'b'))
-
-    self.assertFalse(f.Eval({'a': 'c'}))
-    self.assertTrue(f.Eval({'a': 'a'}))
-
-  def testPropertyAndValueOrder(self):
-    with self.assertRaises(Exception):
-      corpus_query.Filter.FromString("'c' IN tags")
-    with self.assertRaises(Exception):
-      corpus_query.Filter.FromString("'test' = a")
-    with self.assertRaises(Exception):
-      corpus_query.Filter.FromString("'test' = 'test'")
-    with self.assertRaises(Exception):
-      corpus_query.Filter.FromString("a = b")
-
-  def testDateComparison(self):
-    f = corpus_query.Filter.FromString(
-        "date >= Date(2015-01-02 3:04:05.678)")
-    self.assertEquals(f.a.fieldName, 'date')
-    self.assertEquals(f.op, operator.ge)
-
-    self.assertTrue(isinstance(f.b.constant, datetime.datetime))
-    at = datetime.datetime(2015, 1, 2, 3, 4, 5, 678000)
-    self.assertEquals(f.b.constant, at)
-
-    before = datetime.datetime(2014, 12, 1, 2, 3, 4, 0)
-    self.assertFalse(f.Eval({'date': before}))
-
-    after = datetime.datetime(2015, 2, 3, 4, 5, 6, 789000)
-    self.assertTrue(f.Eval({'date': at}))
-    self.assertTrue(f.Eval({'date': after}))
-
-
-class CorpusQueryTests(unittest.TestCase):
-
-  def testSimple(self):
-    q = corpus_query.CorpusQuery.FromString('')
-    self.assertTrue(q.Eval({'a': 1}))
-
-  def testSimpleOp(self):
-    q = corpus_query.CorpusQuery.FromString('a = 3')
-    self.assertFalse(q.Eval({'a': 1}))
-    self.assertTrue(q.Eval({'a': 3}))
-
-  def testMultipleFiltersOp(self):
-    q = corpus_query.CorpusQuery.FromString(
-        'a = 3 AND b = 4')
-    self.assertFalse(q.Eval({'a': 1, 'b': 1}))
-    self.assertFalse(q.Eval({'a': 3, 'b': 1}))
-    self.assertFalse(q.Eval({'a': 1, 'b': 4}))
-    self.assertTrue(q.Eval({'a': 3, 'b': 4}))
-
-  def testDateRange(self):
-    f = corpus_query.CorpusQuery.FromString(
-        'date >= Date(2015-01-01 00:00:00.00) AND ' +
-        'date < Date(2015-02-01 00:00:00.00)')
-
-    just_before_start = datetime.datetime(2014, 12, 31, 23, 59, 59, 99999)
-    start = datetime.datetime(2015, 1, 1, 0, 0, 0, 0)
-    end = datetime.datetime(2015, 2, 1, 0, 0, 0, 0)
-    just_before_end = datetime.datetime(2015, 1, 31, 23, 59, 59, 999999)
-    middle = datetime.datetime(2015, 1, 15, 0, 0, 0, 0)
-    way_after = datetime.datetime(2015, 3, 1, 0, 0, 0, 0)
-
-    self.assertFalse(f.Eval({'date': just_before_start}))
-    self.assertTrue(f.Eval({'date': start}))
-    self.assertTrue(f.Eval({'date': middle}))
-    self.assertTrue(f.Eval({'date': just_before_end}))
-    self.assertFalse(f.Eval({'date': end}))
-    self.assertFalse(f.Eval({'date': way_after}))
-
-  def testSimpleOpWithMaxTraceHandles(self):
-    q = corpus_query.CorpusQuery.FromString('a = 3 AND MAX_TRACE_HANDLES=3')
-    self.assertTrue(q.Eval({'a': 3}, 0))
-    self.assertFalse(q.Eval({'a': 3}, 3))
-    self.assertFalse(q.Eval({'a': 3}, 4))
-
-  def testSimpleQueryString(self):
-    q = corpus_query.CorpusQuery.FromString('')
-    self.assertEquals(q.AsQueryString(), '')
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, '')
-    self.assertEquals(args, [])
-
-  def testSimpleOpQueryString(self):
-    q = corpus_query.CorpusQuery.FromString('a = 3')
-    self.assertEquals(q.AsQueryString(), 'a = 3')
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, 'WHERE a = :1')
-    self.assertEquals(args[0], 3)
-
-  def testMultipleFiltersOpQueryString(self):
-    q = corpus_query.CorpusQuery.FromString(
-        'a = 3 AND b = 4')
-    self.assertEquals(q.AsQueryString(), 'a = 3 AND b = 4')
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, 'WHERE a = :1 AND b = :2')
-    self.assertEquals(args[0], 3)
-    self.assertEquals(args[1], 4)
-
-  def testDateRangeQueryString(self):
-    q = corpus_query.CorpusQuery.FromString(
-        'date >= Date(2015-01-01 00:00:00.00) AND ' +
-        'date < Date(2015-02-01 00:00:00.00)')
-    self.assertEquals(q.AsQueryString(),
-        'date >= Date(2015-01-01 00:00:00.000000) AND '
-        'date < Date(2015-02-01 00:00:00.000000)')
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, "WHERE date >= :1 AND date < :2")
-    self.assertEquals(args[0], datetime.datetime(2015, 01, 01, 0, 0, 0))
-    self.assertEquals(args[1], datetime.datetime(2015, 02, 01, 0, 0, 0))
-
-  def testSimpleOpWithMaxTraceHandlesQueryString(self):
-    q = corpus_query.CorpusQuery.FromString('a = 3 AND MAX_TRACE_HANDLES=3')
-    self.assertEquals(q.AsQueryString(), 'a = 3 AND MAX_TRACE_HANDLES=3')
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, 'WHERE a = :1 LIMIT 3')
-    self.assertEquals(args[0], 3)
-
-  def testMixedTupleQueryString(self):
-    q = corpus_query.CorpusQuery.FromString("a IN ('a', 'b', 3, 'c')")
-    self.assertEquals(q.AsQueryString(), "a IN ('a', 'b', 3, 'c')")
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, "WHERE a IN :1")
-    self.assertEquals(args[0], ('a', 'b', 3, 'c'))
-
-  def testMaxTraceHandlesQueryString(self):
-    q = corpus_query.CorpusQuery.FromString("MAX_TRACE_HANDLES=1")
-    self.assertEquals(q.AsQueryString(), "MAX_TRACE_HANDLES=1")
-
-    (gql, args) = q.AsGQLWhereClause()
-    self.assertEquals(gql, "LIMIT 1")
-    self.assertEquals(args, [])
diff --git a/catapult/perf_insights/perf_insights/mre/local_directory_corpus_driver_unittest.py b/catapult/perf_insights/perf_insights/mre/local_directory_corpus_driver_unittest.py
deleted file mode 100644
index 23cdcb2..0000000
--- a/catapult/perf_insights/perf_insights/mre/local_directory_corpus_driver_unittest.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import os
-import unittest
-
-from perf_insights.mre import local_directory_corpus_driver
-
-
-class LocalDirectoryCorpusDriverTests(unittest.TestCase):
-
-  def testTags(self):
-    self.assertEquals(
-        local_directory_corpus_driver._GetTagsForRelPath('a.json'), [])
-    self.assertEquals(
-        local_directory_corpus_driver._GetTagsForRelPath(
-          os.path.join('b', 'c', 'a.json')),
-        ['b', 'c'])
diff --git a/catapult/perf_insights/perf_insights/mre/mre_result.html b/catapult/perf_insights/perf_insights/mre/mre_result.html
deleted file mode 100644
index 97e46bd..0000000
--- a/catapult/perf_insights/perf_insights/mre/mre_result.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<link rel="import" href="/perf_insights/mre/failure.html">
-
-<script>
-'use strict';
-
-tr.exportTo('pi.mre', function() {
-  function MreResult(failures, pairs) {
-    if (failures === undefined)
-      failures = [];
-    if (pairs === undefined)
-      pairs = {};
-    this.failures = failures;
-    this.pairs = pairs;
-  }
-
-  MreResult.prototype = {
-    addFailure: function(failure) {
-      this.failures.push(failure);
-    },
-
-    addPair: function(key, value) {
-      if (key in this.pairs)
-        throw new Error('Key ' + key + ' already exists in result.');
-      this.pairs[key] = value;
-    },
-
-    asDict: function() {
-      var d = {
-        pairs: this.pairs
-      };
-
-      if (this.failures)
-        d.failures = this.failures.map(function(f) {return f.asDict();});
-
-      return d;
-    },
-
-    hadFailures: function() {
-      return this.failures.length > 0;
-    }
-  };
-
-  MreResult.fromDict = function(resultDict) {
-    if (resultDict.failures !== undefined)
-      var failures = resultDict.failures.map(pi.mre.Failure.fromDict);
-    var pairs = resultDict.pairs;
-    return new MreResult(failures, pairs);
-  };
-
-  return {
-    MreResult: MreResult
-  };
-});
-
-</script>
diff --git a/catapult/perf_insights/perf_insights/mre/perf_insights_corpus_driver.py b/catapult/perf_insights/perf_insights/mre/perf_insights_corpus_driver.py
deleted file mode 100644
index 18e9b66..0000000
--- a/catapult/perf_insights/perf_insights/mre/perf_insights_corpus_driver.py
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import json
-import os
-import urllib
-import urllib2
-
-from perf_insights.mre import corpus_driver
-from perf_insights.mre import file_handle
-
-
-_DEFAULT_PERF_INSIGHTS_SERVER = 'http://performance-insights.appspot.com'
-
-
-class PerfInsightsCorpusDriver(corpus_driver.CorpusDriver):
-
-  def __init__(self, cache_directory, server=_DEFAULT_PERF_INSIGHTS_SERVER):
-    self.directory = cache_directory
-    self.server = server
-
-  @staticmethod
-  def CheckAndCreateInitArguments(parser, args):
-    cache_dir = os.path.abspath(os.path.expanduser(args.cache_directory))
-    if not os.path.exists(cache_dir):
-      parser.error('Trace directory does not exist')
-      return None
-    return {
-      'cache_directory': cache_dir,
-      'server': args.server
-    }
-
-  @staticmethod
-  def AddArguments(parser):
-    parser.add_argument(
-        '--cache_directory',
-        help='Local directory to cache traces.')
-    parser.add_argument(
-        '--server',
-        help='Server address of perf insights.',
-        default=_DEFAULT_PERF_INSIGHTS_SERVER)
-
-  def GetTraceHandlesMatchingQuery(self, query):
-    trace_handles = []
-
-    query_string = urllib.quote_plus(query.AsQueryString())
-    response = urllib2.urlopen(
-        '%s/query?q=%s' % (self.server, query_string))
-    file_urls = json.loads(response.read())
-
-    for file_url in file_urls:
-      th = file_handle.GCSFileHandle(file_url, self.directory)
-      trace_handles.append(th)
-
-    return trace_handles
-
diff --git a/catapult/perf_insights/perf_insights/tests.html b/catapult/perf_insights/perf_insights/tests.html
deleted file mode 100644
index 54959f7..0000000
--- a/catapult/perf_insights/perf_insights/tests.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright (c) 2014 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<head>
-  <title>PerfInsights Tests: loading...</title>
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-
-  <link rel="shortcut icon" href="data:image/x-icon;base64,"
-        type="image/x-icon">
-
-  <script src="/components/webcomponentsjs/webcomponents.js"></script>
-
-  <link rel="import" href="/components/polymer/polymer.html">
-  <link rel="import" href="/tracing/base/unittest/interactive_test_runner.html">
-  <style>
-    html, body {
-      box-sizing: border-box;
-      width: 100%;
-      height: 100%;
-      overflow: hidden;
-      margin: 0px;
-    }
-  </style>
-</head>
-<body>
-  <script>
-    'use strict';
-
-
-    window.addEventListener('load', function() {
-      tr.b.unittest.loadAndRunTests({
-        title: 'All PerfInsights Tests',
-        getAllSuiteRelPathsAsync: function() {
-          return tr.b.getAsync('/perf_insights/tests').then(function(json) {
-            return JSON.parse(json).test_relpaths;
-          }).catch (function(e) {
-           throw e;
-          });
-        },
-        testLinks: [
-          {linkPath: '/perf_insights_examples/perf_insights_viewer.html',
-           title: 'Perf Insights Viewer'}
-        ]
-      });
-    });
-
-  </script>
-</body>
-</html>
diff --git a/catapult/perf_insights/perf_insights_build/__init__.py b/catapult/perf_insights/perf_insights_build/__init__.py
deleted file mode 100644
index 987a3e1..0000000
--- a/catapult/perf_insights/perf_insights_build/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import perf_insights_project
-perf_insights_project.UpdateSysPathIfNeeded()
diff --git a/catapult/perf_insights/perf_insights_build/perf_insights_dev_server_config.py b/catapult/perf_insights/perf_insights_build/perf_insights_dev_server_config.py
deleted file mode 100644
index 3eb26e2..0000000
--- a/catapult/perf_insights/perf_insights_build/perf_insights_dev_server_config.py
+++ /dev/null
@@ -1,221 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import datetime
-import json
-import os
-import tempfile
-import time
-import urllib
-import urllib2
-
-import perf_insights_project
-
-import webapp2
-from webapp2 import Route
-
-from perf_insights.mre import cloud_storage
-from perf_insights.mre import local_directory_corpus_driver
-from perf_insights.mre import corpus_query
-from perf_insights.mre import map_runner
-from perf_insights.mre import job as job_module
-from perf_insights.mre import json_output_formatter
-
-MAX_TRACES = 10000
-
-
-def _RelPathToUnixPath(p):
-  return p.replace(os.sep, '/')
-
-class TestListHandler(webapp2.RequestHandler):
-  def get(self, *args, **kwargs): # pylint: disable=unused-argument
-    project = perf_insights_project.PerfInsightsProject()
-    test_relpaths = ['/' + _RelPathToUnixPath(x)
-                     for x in project.FindAllTestModuleRelPaths()]
-
-    tests = {'test_relpaths': test_relpaths}
-    tests_as_json = json.dumps(tests)
-    self.response.content_type = 'application/json'
-    return self.response.write(tests_as_json)
-
-
-class RunMapFunctionHandler(webapp2.RequestHandler):
-
-  def post(self, *args, **kwargs):  # pylint: disable=unused-argument
-    job_dict = json.loads(self.request.body)
-
-    job = job_module.Job.FromDict(job_dict)
-
-    job_with_filenames = job_module.Job(
-        job.map_function_handle.ConvertHrefsToAbsFilenames(self.app))
-
-    corpus_driver = local_directory_corpus_driver.LocalDirectoryCorpusDriver(
-        trace_directory=kwargs.pop('_pi_data_dir'),
-        url_resolver=self.app.GetURLForAbsFilename)
-
-    # TODO(nduca): pass self.request.params to the map function [maybe].
-    query_string = self.request.get('corpus_query', 'True')
-    query = corpus_query.CorpusQuery.FromString(query_string)
-
-    trace_handles = corpus_driver.GetTraceHandlesMatchingQuery(query)
-
-    self._RunMapper(trace_handles, job_with_filenames)
-
-  # TODO(eakuefner): Rename this and other things that assume we only have map
-  def _RunMapper(self, trace_handles, job):
-    self.response.content_type = 'application/json'
-    output_formatter = json_output_formatter.JSONOutputFormatter(
-        self.response.out)
-
-    runner = map_runner.MapRunner(trace_handles, job,
-                                  jobs=map_runner.AUTO_JOB_COUNT,
-                                  output_formatters=[output_formatter])
-    runner.Run()
-
-
-class RunDownloadHandler(webapp2.RequestHandler):
-
-  def post(self, *args, **kwargs):  # pylint: disable=unused-argument
-    self.response.content_type = 'application/json'
-
-    url = self.request.get('url', 'True')
-
-    # Doesn't need to be downloaded since it's not a cloud file, just return
-    # true and the path to the file.
-    if not 'gs://' in url:
-      self.response.write(json.dumps({'success': True, 'file': url}))
-      return
-
-    output_name = os.path.join(kwargs.pop('_pi_data_dir'), url.split('/')[-1])
-
-    try:
-      print 'Downloading: %s' % url
-      cloud_storage.Copy(url, output_name)
-    except cloud_storage.CloudStorageError:
-      print ' -> Failed to download: %s' % url
-      self.response.write(json.dumps({'success': False}))
-      return
-
-    output_name = os.path.join('/perf_insights/test_data', url.split('/')[-1])
-
-    self.response.write(json.dumps({'success': True, 'file': output_name}))
-
-
-class RunCloudMapperHandler(webapp2.RequestHandler):
-
-  def post(self, *args, **kwargs):  # pylint: disable=unused-argument
-    job_dict = json.loads(self.request.body)
-
-    job = job_module.Job.FromDict(job_dict)
-
-    job_with_filenames = job_module.Job(
-        job.map_function_handle.ConvertHrefsToAbsFilenames(self.app))
-
-    mapper_handle = job_with_filenames.map_function_handle
-    with open(mapper_handle.modules_to_load[0].filename, 'r') as f:
-      mapper = f.read()
-    mapper_name = job_with_filenames.map_function_handle.function_name
-
-    query_string = self.request.get('corpus_query', 'True')
-    query = corpus_query.CorpusQuery.FromString(query_string)
-    if query.max_trace_handles > MAX_TRACES:
-      print 'Capping query at %d' % MAX_TRACES
-      query.max_trace_handles = MAX_TRACES
-    query_string = query.AsQueryString()
-
-    params = urllib.urlencode({
-        'query': query_string,
-        'mapper': mapper,
-        'mapper_function': mapper_name,
-        'revision': 'HEAD',
-        'corpus': 'https://performance-insights.appspot.com',
-        'timeout': 240,
-        'function_timeout': 120
-        })
-
-    cloud_mapper_url = 'https://performance-insights.appspot.com'
-    if self.request.get('local') == 'true':
-      cloud_mapper_url = 'http://localhost:8080'
-    create_url = '%s/cloud_mapper/create' % cloud_mapper_url
-
-    response = urllib2.urlopen(create_url, data=params)
-
-    response_data = response.read()
-    print response_data
-    results = json.loads(response_data)
-    if results['status']:
-      jobid = results['jobid']
-
-      status_url = '%s/cloud_mapper/status?jobid=%s' % (cloud_mapper_url, jobid)
-      start_time = datetime.datetime.now()
-      while datetime.datetime.now() - start_time < datetime.timedelta(
-          seconds=300):
-        time.sleep(1)
-        print 'Waiting for results.'
-        response = urllib2.urlopen(status_url)
-        results = json.loads(response.read())
-        if results['status'] == 'COMPLETE':
-          print 'Mapping complete. Downloading results.'
-          output_handle, output_name = tempfile.mkstemp()
-
-          try:
-            print '  -> %s' % results['data']
-            cloud_storage.Copy(results['data'], output_name)
-          except cloud_storage.CloudStorageError as e:
-            print 'Cloud storage error: %s' % str(e)
-            return
-
-          map_results = ''
-          with open(output_name, 'r') as f:
-            map_results = f.read()
-          os.close(output_handle)
-          self.response.write(map_results)
-          total_time = datetime.datetime.now() - start_time
-          print 'Time taken: %ss' % total_time.total_seconds()
-          print map_results[:128]
-          return
-
-class PerfInsightsDevServerConfig(object):
-  def __init__(self):
-    self.project = perf_insights_project.PerfInsightsProject()
-
-  def GetName(self):
-    return 'perf_insights'
-
-  def GetRunUnitTestsUrl(self):
-    return '/perf_insights/tests.html'
-
-  def AddOptionstToArgParseGroup(self, g):
-    g.add_argument('--pi-data-dir',
-                   default=self.project.perf_insights_test_data_path)
-
-  def GetRoutes(self, args):  # pylint: disable=unused-argument
-    return [
-      Route('/perf_insights/tests', TestListHandler),
-      Route('/perf_insights_examples/run_map_function',
-            RunMapFunctionHandler,
-            defaults={
-              '_pi_data_dir':
-                  os.path.abspath(os.path.expanduser(args.pi_data_dir))
-            }),
-      Route('/perf_insights_examples/run_cloud_mapper',
-            RunCloudMapperHandler,
-            defaults={
-              '_pi_data_dir':
-                  os.path.abspath(os.path.expanduser(args.pi_data_dir))
-            }),
-      Route('/perf_insights_examples/download',
-            RunDownloadHandler,
-            defaults={
-              '_pi_data_dir':
-                  os.path.abspath(os.path.expanduser(args.pi_data_dir))
-            })
-    ]
-
-  def GetSourcePaths(self, args):  # pylint: disable=unused-argument
-    return list(self.project.source_paths)
-
-  def GetTestDataPaths(self, args):  # pylint: disable=unused-argument
-    return [('/perf_insights/test_data/',
-             os.path.abspath(os.path.expanduser(args.pi_data_dir)))]
diff --git a/catapult/perf_insights/perf_insights_build/pi_report_to_html.html b/catapult/perf_insights/perf_insights_build/pi_report_to_html.html
deleted file mode 100644
index 75db3c2..0000000
--- a/catapult/perf_insights/perf_insights_build/pi_report_to_html.html
+++ /dev/null
@@ -1,74 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2014 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<link rel="import" href="/perf_insights/mre/mre_result.html">
-<link rel="import" href="/tracing/ui/base/overlay.html">
-<script>
-'use strict';
-
-var g_viewEl;
-
-(function() {
-  var styleEl = document.createElement('style');
-  var lines = [
-    'html, body {',
-    '  box-sizing: border-box;',
-    '  overflow: auto;',
-    '  margin: 0px;',
-    '  padding: 0;',
-    '  width: 100%;',
-    '  height: 100%;',
-    '  font-family: sans-serif;',
-    '}',
-    'body > .pib-result-view {',
-    '  width: 100%;',
-    '  height: 100%;',
-    '}'
-  ];
-  styleEl.textContent = lines.join('\n');
-  document.head.appendChild(styleEl);
-})();
-
-tr.exportTo('pib', function() {
-  function initPiReportNamed(reportElementName) {
-    g_viewEl = document.createElement(reportElementName);
-    g_viewEl.classList.add('pib-result-view');
-    document.body.appendChild(g_viewEl);
-
-    var results = [];
-    var wrDataScripts = document.querySelectorAll('#pi-report-data');
-    if (wrDataScripts.length !== 1) {
-      tr.base.showPanic('Init error', new Error('Expected 1 #pi-report-data'));
-      return;
-    }
-
-    var text = wrDataScripts[0].textContent;
-    // Trim leading newlines off the text. They happen during writing.
-    while (text[0] == '\n')
-      text = text.substring(1);
-
-    var data = JSON.parse(text);
-
-    var results;
-    try {
-      results = data.map(function(rd) {
-        return pi.mre.MreResult.fromDict(rd);
-      });
-    } catch (ex) {
-      var overlay = new tr.ui.b.Overlay();
-      overlay.title = 'Results.fromDict error';
-      overlay.textContent = tr.b.normalizeException(ex).stack;
-      overlay.visible = true;
-      return;
-    }
-    g_viewEl.mapResults = results;
-  }
-
-  return {
-    initPiReportNamed: initPiReportNamed
-  };
-});
-</script>
diff --git a/catapult/perf_insights/perf_insights_build/pi_report_to_html.py b/catapult/perf_insights/perf_insights_build/pi_report_to_html.py
deleted file mode 100644
index 86ff219..0000000
--- a/catapult/perf_insights/perf_insights_build/pi_report_to_html.py
+++ /dev/null
@@ -1,154 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-import argparse
-import codecs
-import os
-import sys
-import json
-
-from perf_insights.mre import corpus_driver_cmdline
-from perf_insights.mre import corpus_query
-from perf_insights.mre import function_handle
-from perf_insights.mre import map_runner
-from perf_insights.mre import progress_reporter as progress_reporter_module
-from perf_insights.mre import job as job_module
-from py_vulcanize import generate
-import perf_insights_project
-import bs4
-
-
-def Main(argv, pi_report_file=None):
-  parser = argparse.ArgumentParser(
-      description='Runs a PerfInsights report and outputs it to html')
-  corpus_driver_cmdline.AddArguments(parser)
-  if pi_report_file is None:
-    parser.add_argument('pi_report_file')
-
-  parser.add_argument('--query')
-  parser.add_argument('-j', '--jobs', type=int, default=1)
-  parser.add_argument('--json', action='store_true')
-  parser.add_argument('-o', '--output-file')
-  parser.add_argument('-s', '--stop-on-error',
-                      action='store_true')
-
-  args = parser.parse_args(argv[1:])
-  corpus_driver = corpus_driver_cmdline.GetCorpusDriver(parser, args)
-
-  if not args.output_file:
-    parser.error('Must provide -o')
-
-  if pi_report_file is None:
-    pi_report_file = os.path.abspath(args.pi_report_file)
-
-  if args.query is None:
-    query = corpus_query.CorpusQuery.FromString('True')
-  else:
-    query = corpus_query.CorpusQuery.FromString(
-        args.query)
-
-  with codecs.open(args.output_file, mode='w', encoding='utf-8') as ofile:
-    return PiReportToHTML(ofile, corpus_driver, pi_report_file, query,
-                          args.json, args.stop_on_error, args.jobs)
-
-
-def _GetMapFunctionHrefFromPiReport(html_contents):
-  soup = bs4.BeautifulSoup(html_contents)
-  elements = soup.findAll('polymer-element')
-  for element in elements:
-    if element.attrs.get('extends').lower() == 'pi-ui-r-pi-report':
-      map_function_href = element.attrs.get('map-function-href', None)
-      if map_function_href is None:
-        raise Exception('Report is missing map-function-href attribute')
-      map_function_name = element.attrs.get('map-function-name', None)
-      if map_function_name is None:
-        raise Exception('Report is missing map-function-name attribute')
-      pi_report_element_name = element.attrs.get('name', None)
-      if pi_report_element_name is None:
-        raise Exception('Report is missing name attribute')
-      return map_function_href, map_function_name, pi_report_element_name
-  raise Exception('No element that extends pi-ui-r-pi-report was found')
-
-
-def PiReportToHTML(ofile, corpus_driver, pi_report_file, query,
-                   json_output=False, stop_on_error=False, jobs=1, quiet=False):
-  project = perf_insights_project.PerfInsightsProject()
-
-  with open(pi_report_file, 'r') as f:
-    pi_report_file_contents = f.read()
-
-  map_function_href, map_function_name, pi_report_element_name = (
-      _GetMapFunctionHrefFromPiReport(pi_report_file_contents))
-  map_file = project.GetAbsPathFromHRef(map_function_href)
-  module = function_handle.ModuleToLoad(filename=map_file)
-  map_function_handle = function_handle.FunctionHandle([module],
-                                                       map_function_name)
-  job = job_module.Job(map_function_handle, None)
-
-  if map_file == None:
-    raise Exception('Could not find %s' % map_function_href)
-
-  results = _MapTraces(corpus_driver, job, query, stop_on_error,
-                       jobs, quiet)
-  if stop_on_error and results.had_failures:
-    sys.stderr.write('There were mapping errors. Aborting.')
-    return 255
-
-  if json_output:
-    json.dump([result.AsDict() for result in results], ofile, indent=2)
-  else:
-    WriteResultsToFile(ofile, project,
-                       pi_report_file, pi_report_element_name,
-                       results)
-  return 0
-
-
-def _MapTraces(corpus_driver, job, query, stop_on_error=False,
-               jobs=1, quiet=False):
-  trace_handles = corpus_driver.GetTraceHandlesMatchingQuery(query)
-  if quiet:
-    alt_progress_reporter = progress_reporter_module.ProgressReporter()
-  else:
-    alt_progress_reporter = None
-  runner = map_runner.MapRunner(trace_handles, job,
-                  stop_on_error=stop_on_error,
-                  progress_reporter=alt_progress_reporter,
-                  jobs=jobs)
-  return runner.Run()
-
-
-def WriteResultsToFile(ofile, project,
-                       pi_report_file, pi_report_element_name,
-                       results):
-
-  vulcanizer = project.CreateVulcanizer()
-  modules = []
-  modules.append(vulcanizer.LoadModule(
-    module_filename=os.path.join(project.perf_insights_root_path,
-                                 'perf_insights_build/pi_report_to_html.html')))
-  modules.append(vulcanizer.LoadModule(
-    module_filename=pi_report_file))
-
-  load_sequence = vulcanizer.CalcLoadSequenceForModules(modules)
-
-  results_string = json.dumps([result.AsDict() for result in results])
-
-  bootstrap_script = generate.ExtraScript(text_content="""
-    document.addEventListener('DOMContentLoaded', function() {
-      pib.initPiReportNamed('%s');
-    });""" % pi_report_element_name)
-  scripts = [bootstrap_script, DataScript(results_string)]
-  generate.GenerateStandaloneHTMLToFile(
-      ofile, load_sequence, 'Perf Insights Report', extra_scripts=scripts)
-
-
-
-class DataScript(generate.ExtraScript):
-  def __init__(self, trace_data_string):
-    super(DataScript, self).__init__()
-    self._trace_data_string = trace_data_string
-
-  def WriteToFile(self, output_file):
-    output_file.write('<script id="pi-report-data" type="application/json">\n')
-    output_file.write(self._trace_data_string)
-    output_file.write('\n</script>\n')
diff --git a/catapult/perf_insights/perf_insights_build/run_vinn_tests.py b/catapult/perf_insights/perf_insights_build/run_vinn_tests.py
deleted file mode 100644
index 68c8264..0000000
--- a/catapult/perf_insights/perf_insights_build/run_vinn_tests.py
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import argparse
-import os
-import sys
-
-from hooks import install
-import perf_insights_project
-import vinn
-
-
-def _RelPathToUnixPath(p):
-  return p.replace(os.sep, '/')
-
-
-def RunTests():
-  project = perf_insights_project.PerfInsightsProject()
-  headless_test_module_filenames = [
-      '/' + _RelPathToUnixPath(x)
-      for x in project.FindAllD8TestModuleRelPaths()]
-  headless_test_module_filenames.sort()
-
-  cmd = """
-  HTMLImportsLoader.loadHTML('/tracing/base/headless_tests.html');
-  tr.b.unittest.loadAndRunTests(sys.argv.slice(1));
-  """
-  res = vinn.RunJsString(
-    cmd, source_paths=list(project.source_paths),
-    js_args=headless_test_module_filenames, stdout=sys.stdout, stdin=sys.stdin)
-  return res.returncode
-
-
-def Main(argv):
-  parser = argparse.ArgumentParser(
-      description='Run d8 tests.')
-  parser.add_argument(
-      '--no-install-hooks', dest='install_hooks', action='store_false')
-  parser.set_defaults(install_hooks=True)
-  args = parser.parse_args(argv[1:])
-  if args.install_hooks:
-    install.InstallHooks()
-
-  sys.exit(RunTests())
-
diff --git a/catapult/perf_insights/perf_insights_examples/map_process_count.html b/catapult/perf_insights/perf_insights_examples/map_process_count.html
deleted file mode 100644
index 0e05e21..0000000
--- a/catapult/perf_insights/perf_insights_examples/map_process_count.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/perf_insights/mre/function_handle.html">
-
-<script>
-'use strict';
-
-tr.exportTo('pie', function() {
-  function mapProcessCount(result, model) {
-    result.addPair(
-        'load_info', {
-          numProcesses: model.getAllProcesses().length
-        });
-  }
-
-  pi.FunctionRegistry.register(mapProcessCount);
-
-  return {
-    mapProcessCountForTest: mapProcessCount
-  };
-});
-</script>
diff --git a/catapult/perf_insights/perf_insights_examples/map_process_count_test.html b/catapult/perf_insights/perf_insights_examples/map_process_count_test.html
deleted file mode 100644
index d8e88bd..0000000
--- a/catapult/perf_insights/perf_insights_examples/map_process_count_test.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/perf_insights/mre/mre_result.html">
-<link rel="import" href="/perf_insights_examples/map_process_count.html">
-<link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/core/test_utils.html">
-
-<script>
-'use strict';
-
-tr.b.unittest.testSuite(function() {
-  var test_utils = tr.c.TestUtils;
-  test('mapperTest', function() {
-    var m = test_utils.newModel(function(m) {
-      var p1 = m.getOrCreateProcess(1);
-      var t2 = p1.getOrCreateThread(2);
-      t2.sliceGroup.pushSlice(test_utils.newSliceEx({
-        name: 'some_slice',
-        start: 0, duration: 10
-      }));
-    });
-
-    var result = new pi.mre.MreResult();
-    pie.mapProcessCountForTest(result, m);
-
-    assert.equal(tr.b.dictionaryLength(result.pairs), 1);
-    assert.equal(result.failures.length, 0);
-  });
-});
-
-</script>
diff --git a/catapult/perf_insights/perf_insights_examples/map_startup_info.html b/catapult/perf_insights/perf_insights_examples/map_startup_info.html
deleted file mode 100644
index 3548a52..0000000
--- a/catapult/perf_insights/perf_insights_examples/map_startup_info.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/perf_insights/mre/function_handle.html">
-<link rel="import" href="/tracing/base/range.html">
-<link rel="import" href="/tracing/model/helpers/chrome_browser_helper.html">
-<link rel="import" href="/tracing/model/helpers/chrome_renderer_helper.html">
-<link rel="import" href="/tracing/value/value.html">
-
-<script>
-'use strict';
-
-tr.exportTo('pie', function() {
-  function mapStartupInfo(result, model) {
-    var startupIRs = model.userModel.expectations.filter(function(ir) {
-      return ir instanceof tr.model.um.LoadExpectation &&
-             ir.initiatorTitle === tr.model.um.LOAD_SUBTYPE_NAMES.STARTUP;
-    });
-    // Find the Startup IRs in the browser and renderer processes.
-    var ChromeBrowserHelper = tr.model.helpers.ChromeBrowserHelper;
-    var ChromeRendererHelper = tr.model.helpers.ChromeRendererHelper;
-    var browser_startup = new tr.b.Range();
-    var renderer_startup = new tr.b.Range();
-    startupIRs.forEach(function(ir) {
-      ir.associatedEvents.toArray().forEach(function(event) {
-        if (!event.getProcess)
-          return;
-        var process = event.getProcess();
-        var end = event.start + event.duration;
-        if (ChromeBrowserHelper.isBrowserProcess(process))
-          event.addBoundsToRange(browser_startup);
-        if (ChromeRendererHelper.isRenderProcess(process))
-          event.addBoundsToRange(renderer_startup);
-      });
-    });
-
-    if (browser_startup.isEmpty && renderer_startup.isEmpty) {
-      result.addPair('startup_info', null);
-    } else {
-      result.addPair(
-          'startup_info',
-          {
-            'browserStartup': browser_startup,
-            'rendererStartup': renderer_startup
-          });
-    }
-  }
-
-  pi.FunctionRegistry.register(mapStartupInfo);
-
-  // Exporting for tests.
-  return {
-    mapStartupInfoForTest: mapStartupInfo
-  };
-});
-</script>
diff --git a/catapult/perf_insights/perf_insights_examples/perf_insights_viewer.html b/catapult/perf_insights/perf_insights_examples/perf_insights_viewer.html
deleted file mode 100644
index c7317b1..0000000
--- a/catapult/perf_insights/perf_insights_examples/perf_insights_viewer.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright (c) 2011 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<head>
-<title>PerfInsights Viewer</title>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-
-<script src="/components/webcomponentsjs/webcomponents.js"></script>
-
-<style>
-  html,
-  body {
-    box-sizing: border-box;
-    overflow: hidden;
-    margin: 0px;
-    padding: 0;
-    width: 100%;
-    height: 100%;
-    font-family: sans-serif;
-  }
-
-  body > pi-ui-pi-app-main {
-    width: 100%;
-    height: 100%;
-  }
-</style>
-
-<link rel="import" href="/components/polymer/polymer.html">
-<link rel="import" href="/perf_insights/ui/corpus_drivers.html">
-<link rel="import" href="/perf_insights/ui/perf_insights_full_config.html">
-<link rel="import" href="/perf_insights/ui/pi_app_main.html">
-
-</head>
-<body>
-
-  <pi-driver-cloudmapper id="pi-driver-cloudmapper">
-  </pi-driver-cloudmapper>
-
-  <pi-driver-devserver id="pi-driver-devserver">
-  </pi-driver-devserver>
-
-  <pi-driver-localcloudmapper id="pi-driver-localcloudmapper">
-  </pi-driver-localcloudmapper>
-
-  <pi-ui-pi-app-main>
-  </pi-ui-pi-app-main>
-
-</body>
-</html>
diff --git a/catapult/perf_insights/perf_insights_examples/trace_viewer.html b/catapult/perf_insights/perf_insights_examples/trace_viewer.html
deleted file mode 100644
index 3c35820..0000000
--- a/catapult/perf_insights/perf_insights_examples/trace_viewer.html
+++ /dev/null
@@ -1,95 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<head>
-<title>Perf Insights Trace Viewer</title>
-<meta charset='utf-8'>
-
-<script src="/components/webcomponentsjs/webcomponents.js"></script>
-
-<link rel="import" href="/components/polymer/polymer.html">
-<link rel="import" href="/tracing/base/xhr.html">
-<link rel="import" href="/tracing/base/timing.html">
-<link rel="import" href="/tracing/importer/import.html">
-<link rel="import" href="/tracing/ui/extras/full_config.html">
-<link rel="import" href="/tracing/ui/timeline_view.html">
-
-<style>
-  html,
-  body {
-    height: 100%;
-  }
-
-  body {
-    -webkit-flex-direction: column;
-    display: -webkit-flex;
-    margin: 0;
-    padding: 0;
-  }
-
-  body > tr-ui-timeline-view {
-    -webkit-flex: 1 1 auto;
-    min-height: 0;
-  }
-  body > tr-ui-timeline-view:focus {
-    outline: none;
-  }
-</style>
-</head>
-<body>
-  <tr-ui-timeline-view>
-    <track-view-container id='track_view_container'></track-view-container>
-  </tr-ui-timeline-view>
-
-  <script>
-  'use strict';
-
-  var timelineViewEl;
-
-  function loadTrace(filename) {
-    var p = new tr.b.TimedNamedPromise('loadTrace', function(resolve) {
-      resolve(tr.b.getAsync(filename));
-    });
-    p.then(createViewFromTrace.bind(this),
-        tr.showPanic.bind(this, 'Couldn\'t load trace.', filename));
-  }
-
-  function createViewFromTrace(trace) {
-    var m = new tr.Model();
-    var i = new tr.importer.Import(m);
-    var p = i.importTracesWithProgressDialog([trace]);
-
-    p.then(
-      function() {
-        timelineViewEl.model = m;
-        timelineViewEl.updateDocumentFavicon();
-        timelineViewEl.globalMode = true;
-        timelineViewEl.viewTitle = '';
-      },
-      function(err) {
-        var overlay = new tr.ui.b.Overlay();
-        overlay.textContent = tr.b.normalizeException(err).message;
-        overlay.title = 'Import error';
-        overlay.visible = true;
-      });
-  }
-
-  function reload() {
-    loadTrace(window.location.hash.substr(1));
-  }
-
-  window.addEventListener('hashchange', reload);
-
-  function onLoad() {
-    timelineViewEl = document.querySelector('tr-ui-timeline-view');
-    timelineViewEl.globalMode = true;
-    reload();
-  }
-  window.addEventListener('load', onLoad);
-  </script>
-</body>
-</html>
diff --git a/catapult/perf_insights/perf_insights_project.py b/catapult/perf_insights/perf_insights_project.py
deleted file mode 100644
index 6f63563..0000000
--- a/catapult/perf_insights/perf_insights_project.py
+++ /dev/null
@@ -1,144 +0,0 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import sys
-import os
-
-
-def _AddToPathIfNeeded(path):
-  if path not in sys.path:
-    sys.path.insert(0, path)
-
-
-def _IsRunningInAppEngine():
-  # Cloud workers run on appengine but in a managed vm, which gives them full
-  # access to the filesystem. Since they manage their own checkout of catapult
-  # to do trace processing, they need the paths properly setup.
-  if 'PI_CLOUD_WORKER' in os.environ:
-    return False
-  if 'SERVER_SOFTWARE' not in os.environ:
-    return False
-  if os.environ['SERVER_SOFTWARE'].startswith('Google App Engine/'):
-    return True
-  if os.environ['SERVER_SOFTWARE'].startswith('Development/'):
-    return True
-  return False
-
-
-def UpdateSysPathIfNeeded():
-  p = PerfInsightsProject()
-
-  _AddToPathIfNeeded(p.perf_insights_third_party_path)
-
-  # TODO(fmeawad): We should add catapult projects even inside
-  # appengine, see issue #1246
-  if not _IsRunningInAppEngine():
-    _AddToPathIfNeeded(p.catapult_path)
-    _AddToPathIfNeeded(p.tracing_root_path)
-    _AddToPathIfNeeded(p.py_vulcanize_path)
-
-    import tracing_project
-    tracing_project.UpdateSysPathIfNeeded()
-
-
-def _FindAllFilesRecursive(source_paths):
-  assert isinstance(source_paths, list)
-  all_filenames = set()
-  for source_path in source_paths:
-    for dirpath, _, filenames in os.walk(source_path):
-      for f in filenames:
-        if f.startswith('.'):
-          continue
-        x = os.path.abspath(os.path.join(dirpath, f))
-        all_filenames.add(x)
-  return all_filenames
-
-
-def _IsFilenameATest(x):  # pylint: disable=unused-argument
-  if x.endswith('_test.js'):
-    return True
-
-  if x.endswith('_test.html'):
-    return True
-
-  if x.endswith('_unittest.js'):
-    return True
-
-  if x.endswith('_unittest.html'):
-    return True
-
-  # TODO(nduca): Add content test?
-  return False
-
-
-class PerfInsightsProject(object):
-  catapult_path = os.path.abspath(
-      os.path.join(os.path.dirname(__file__), os.path.pardir))
-
-  perf_insights_root_path = os.path.join(catapult_path, 'perf_insights')
-  perf_insights_src_path = os.path.join(
-      perf_insights_root_path, 'perf_insights')
-  perf_insights_ui_path = os.path.join(perf_insights_src_path, 'ui')
-  perf_insights_test_data_path = os.path.join(
-      perf_insights_root_path, 'test_data')
-  perf_insights_examples_path = os.path.join(
-      perf_insights_root_path, 'perf_insights_examples')
-
-  perf_insights_third_party_path = os.path.join(
-      perf_insights_root_path, 'third_party')
-
-  tracing_root_path = os.path.join(catapult_path, 'tracing')
-
-  py_vulcanize_path = os.path.join(catapult_path, 'third_party', 'py_vulcanize')
-
-  def __init__(self):  # pylint: disable=unused-argument
-    self._source_paths = None
-
-  @property
-  def source_paths(self):
-    # We lazily init of source_paths because for perf_insights_project's
-    # UpdateSysPathIfNeeded to run, the PerfInsightsProject must be __init__'d,
-    # because thats where we centralize the various directory names.
-    # And, for source_paths to be set up, we need the UpdateSysPathIfNeeded to
-    # have run! We use laziness to resolve this cyclic dependency.
-    if self._source_paths is None:
-      self._source_paths = []
-      self._source_paths.append(self.perf_insights_root_path)
-
-      import tracing_project as tracing_project_module
-      tracing_project = tracing_project_module.TracingProject()
-      self._source_paths.extend(tracing_project.source_paths)
-
-    return self._source_paths
-
-  def GetAbsPathFromHRef(self, href):
-    for source_path in self.source_paths:
-      candidate = os.path.abspath(os.path.join(source_path, href[1:]))
-      if os.path.exists(candidate):
-        return candidate
-    return None
-
-  def CreateVulcanizer(self):
-    from py_vulcanize import project as project_module
-    return project_module.Project(self.source_paths)
-
-  def IsD8CompatibleFile(self, filename):
-    if filename.startswith(self.perf_insights_ui_path):
-      return False
-    return True
-
-  def FindAllTestModuleRelPaths(self, pred=None):
-    if pred is None:
-      pred = lambda x: True
-    all_filenames = _FindAllFilesRecursive([self.perf_insights_src_path,
-                                            self.perf_insights_examples_path])
-    test_module_filenames = [x for x in all_filenames if
-                             _IsFilenameATest(x) and pred(x)]
-    test_module_filenames.sort()
-
-    return [os.path.relpath(x, self.perf_insights_root_path)
-            for x in test_module_filenames]
-
-  def FindAllD8TestModuleRelPaths(self):
-    return self.FindAllTestModuleRelPaths(pred=self.IsD8CompatibleFile)
diff --git a/catapult/perf_insights/pylintrc b/catapult/perf_insights/pylintrc
deleted file mode 100644
index 72cd736..0000000
--- a/catapult/perf_insights/pylintrc
+++ /dev/null
@@ -1,73 +0,0 @@
-[MESSAGES CONTROL]
-
-# Disable the message, report, category or checker with the given id(s).
-# TODO: Shrink this list to as small as possible.
-disable=
-  design,
-  similarities,
-
-  abstract-class-not-used,
-  bad-builtin,
-  bad-continuation,
-  broad-except,
-  eval-used,
-  fixme,
-  import-error,
-  invalid-name,
-  locally-disabled,
-  logging-not-lazy,
-  missing-docstring,
-  no-init,
-  no-member,
-  no-self-use,
-  protected-access,
-  star-args,
-
-
-[REPORTS]
-
-# Don't write out full reports, just messages.
-reports=no
-
-
-[BASIC]
-
-# Regular expression which should only match correct function names.
-function-rgx=^(?:(?P<exempt>setUp|tearDown|setUpModule|tearDownModule)|(?P<camel_case>_?[A-Z][a-zA-Z0-9]*))$
-
-# Regular expression which should only match correct method names.
-method-rgx=^(?:(?P<exempt>_[a-z0-9_]+__|get|post|runTest|setUp|tearDown|setUpTestCase|tearDownTestCase|setupSelf|tearDownClass|setUpClass)|(?P<camel_case>(_{0,2}|test|assert)[A-Z][a-zA-Z0-9_]*))$
-
-# Regular expression which should only match correct argument names.
-argument-rgx=^[a-z][a-z0-9_]*$
-
-# Regular expression which should only match correct variable names.
-variable-rgx=^[a-z][a-z0-9_]*$
-
-# Good variable names which should always be accepted, separated by a comma.
-good-names=main,_
-
-# List of builtins function names that should not be used, separated by a comma.
-bad-functions=apply,input,reduce
-
-
-[VARIABLES]
-
-# Tells wether we should check for unused import in __init__ files.
-init-import=no
-
-# A regular expression matching names used for dummy variables (i.e. not used).
-dummy-variables-rgx=^\*{0,2}(_$|unused_)
-
-
-[TYPECHECK]
-
-# Tells wether missing members accessed in mixin class should be ignored. A
-# mixin class is detected if its name ends with "mixin" (case insensitive).
-ignore-mixin-members=yes
-
-
-[FORMAT]
-
-# We use two spaces for indents, instead of the usual four spaces or tab.
-indent-string='  '
diff --git a/catapult/perf_insights/test_data/googlemaps_ipc_newbinding.html b/catapult/perf_insights/test_data/googlemaps_ipc_newbinding.html
deleted file mode 100644
index b5fae40..0000000
--- a/catapult/perf_insights/test_data/googlemaps_ipc_newbinding.html
+++ /dev/null
@@ -1,83340 +0,0 @@
-{"traceEvents":[{"pid":27443,"tid":27466,"ts":326458006245,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":183,"tts":215748},
-{"pid":27443,"tid":27466,"ts":326458006245,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":215748},
-{"pid":27443,"tid":27466,"ts":326458006337,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":215809},
-{"pid":27443,"tid":27466,"ts":326458006337,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":215840,"id":"0xba43f702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458006398,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":215870},
-{"pid":27443,"tid":27466,"ts":326458006428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":215901,"id":"0xaf88ab02f182217a"},
-{"pid":27443,"tid":27466,"ts":326458038597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216023,"id":"0xaf88adcdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458038597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":216053},
-{"pid":27443,"tid":27466,"ts":326458038627,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216053,"id":"0xccc36402"},
-{"pid":27443,"tid":27466,"ts":326458038688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216114,"id":"0xaf88adcef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458038688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":216114},
-{"pid":27443,"tid":27466,"ts":326458038719,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216145,"id":"0xccc36502"},
-{"pid":27443,"tid":27466,"ts":326458039451,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":216236},
-{"pid":27443,"tid":27466,"ts":326458039451,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":126},"dur":122,"tdur":122,"tts":216236},
-{"pid":27443,"tid":27466,"ts":326458039482,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216267,"id":"0xba43f802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458039512,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":216297,"id":"0xaf88ab1ff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326458039543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216328,"id":"0xaf88a829f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326458040245,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":216389},
-{"pid":27443,"tid":27466,"ts":326458040275,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":216419},
-{"pid":27443,"tid":27466,"ts":326458040275,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216419,"id":"0xba43f902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458040306,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":216450},
-{"pid":27443,"tid":27466,"ts":326458040306,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216450,"id":"0xaf88ab03f182217a"},
-{"pid":27443,"tid":27466,"ts":326458043816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216542,"id":"0xaf88adcff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458043816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":216542},
-{"pid":27443,"tid":27466,"ts":326458043846,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216572,"id":"0xccc36702"},
-{"pid":27443,"tid":27466,"ts":326458043877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216603,"id":"0xaf88adc8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458043907,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":216633},
-{"pid":27443,"tid":27466,"ts":326458043907,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216633,"id":"0xccc36802"},
-{"pid":27443,"tid":27466,"ts":326458045006,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":216694},
-{"pid":27443,"tid":27466,"ts":326458045037,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":216725},
-{"pid":27443,"tid":27466,"ts":326458045037,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216725,"id":"0xba43fa02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458045067,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216755,"id":"0xaf88ab1ef182217a"},
-{"pid":27443,"tid":27466,"ts":326458053033,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":216847},
-{"pid":27443,"tid":27466,"ts":326458053063,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":123,"tdur":122,"tts":216877},
-{"pid":27443,"tid":27466,"ts":326458053094,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":216908,"id":"0xba43fb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458053124,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":62,"tdur":31,"tts":216938},
-{"pid":27443,"tid":27466,"ts":326458053124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216938,"id":"0xaf88ab18f182217a"},
-{"pid":27443,"tid":27466,"ts":326458054040,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":217091},
-{"pid":27443,"tid":27466,"ts":326458054071,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":217121},
-{"pid":27443,"tid":27466,"ts":326458054071,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217121,"id":"0xba43fc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458054101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":217152,"id":"0xaf88ab19f182217a"},
-{"pid":27443,"tid":27466,"ts":326458067591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":217243,"id":"0xaf88adc9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458067622,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":217274},
-{"pid":27443,"tid":27466,"ts":326458067622,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217274,"id":"0xccc36a02"},
-{"pid":27443,"tid":27466,"ts":326458068537,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":217366},
-{"pid":27443,"tid":27466,"ts":326458068568,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":217396},
-{"pid":27443,"tid":27466,"ts":326458068568,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217396,"id":"0xba43fd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458068629,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":217457,"id":"0xaf88ab15f182217a"},
-{"pid":27443,"tid":27466,"ts":326458070094,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":217549},
-{"pid":27443,"tid":27466,"ts":326458070124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":217579},
-{"pid":27443,"tid":27466,"ts":326458070124,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217579,"id":"0xba43fe02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458070155,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":217610},
-{"pid":27443,"tid":27466,"ts":326458070155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":217610,"id":"0xaf88ab17f182217a"},
-{"pid":27443,"tid":27466,"ts":326458084347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":217701,"id":"0xaf88adcaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458084377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":217732},
-{"pid":27443,"tid":27466,"ts":326458084377,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217732,"id":"0xccc36c02"},
-{"pid":27443,"tid":27466,"ts":326458085110,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":217823},
-{"pid":27443,"tid":27466,"ts":326458085140,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":217854},
-{"pid":27443,"tid":27466,"ts":326458085140,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217854,"id":"0xba43ff02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458085171,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":217884,"id":"0xaf88ab12f182217a"},
-{"pid":27443,"tid":27466,"ts":326458086666,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":217945},
-{"pid":27443,"tid":27466,"ts":326458086697,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":217976},
-{"pid":27443,"tid":27466,"ts":326458086697,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":217976,"id":"0xba440002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458086727,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":62,"tts":218006},
-{"pid":27443,"tid":27477,"ts":326458006520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":213734,"id":"0xaf88ab02f182217a"},
-{"pid":27443,"tid":27477,"ts":326458006550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":213764},
-{"pid":27443,"tid":27477,"ts":326458006550,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":336,"tdur":336,"tts":213764},
-{"pid":27443,"tid":27477,"ts":326458006581,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":213795,"id":"0x30000000c"},
-{"pid":27443,"tid":27477,"ts":326458006581,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchStart"},"dur":183,"tdur":152,"tts":213795},
-{"pid":27443,"tid":27477,"ts":326458006764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":213978,"id":"0xaf88ab07f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458006795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214008,"id":"0xaf88a813f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458006825,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":214039,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458006856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":214069,"id":"0xaf88ab00f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458006856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214069,"id":"0xaf88a82cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458040397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":214130,"id":"0xaf88ab03f182217a"},
-{"pid":27443,"tid":27477,"ts":326458040397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":214161},
-{"pid":27443,"tid":27477,"ts":326458040428,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":214161},
-{"pid":27443,"tid":27477,"ts":326458040428,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":214161,"id":"0x30000000d"},
-{"pid":27443,"tid":27477,"ts":326458040459,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":214191},
-{"pid":27443,"tid":27477,"ts":326458040489,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":214222,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458040520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":214253,"id":"0xaf88ab18f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458040520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214253,"id":"0xaf88a82bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458043602,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":214375,"id":"0xaf88ab1cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458043602,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":92,"tdur":91,"tts":214375},
-{"pid":27443,"tid":27477,"ts":326458043602,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":92,"tdur":91,"tts":214375},
-{"pid":27443,"tid":27477,"ts":326458043633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214405,"id":"0xaf88adcff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458043663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214466,"id":"0xaf88ab1df182217a"},
-{"pid":27443,"tid":27477,"ts":326458043694,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":214466,"id":"0xaf88ab1df182217a"},
-{"pid":27443,"tid":27477,"ts":326458043724,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":31,"tdur":30,"tts":214497},
-{"pid":27443,"tid":27477,"ts":326458043724,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":31,"tdur":30,"tts":214497},
-{"pid":27443,"tid":27477,"ts":326458043755,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-12002.458,"BeginFrameArgs":{"deadline_us":326446041266.0,"frame_time_us":326446104871.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":214527,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458043755,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":214527,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458045342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":214588,"id":"0xaf88ab1ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458045342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":214588},
-{"pid":27443,"tid":27477,"ts":326458045372,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326457974618.0,"frame_time_us":326458038223.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":213,"tts":214619},
-{"pid":27443,"tid":27477,"ts":326458045403,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326457974618.0,"frame_time_us":326458038223.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":214649},
-{"pid":27443,"tid":27477,"ts":326458045403,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":55},"tts":214649},
-{"pid":27443,"tid":27477,"ts":326458045494,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":214741,"id":"0xaf88ab19f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458045525,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214771,"id":"0xaf88a825f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458045555,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":214802},
-{"pid":27443,"tid":27477,"ts":326458045555,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458054889},"dur":31,"tdur":30,"tts":214802},
-{"pid":27443,"tid":27477,"ts":326458045586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214832,"id":"0xaf88ab1ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458053216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":214863,"id":"0xaf88ab18f182217a"},
-{"pid":27443,"tid":27477,"ts":326458053247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":214893},
-{"pid":27443,"tid":27477,"ts":326458053247,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":214893},
-{"pid":27443,"tid":27477,"ts":326458053277,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":214924,"id":"0x30000000f"},
-{"pid":27443,"tid":27477,"ts":326458053277,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":214924},
-{"pid":27443,"tid":27477,"ts":326458053308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":214954,"id":"0xaf88ab1af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458053338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":214985,"id":"0xaf88a827f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458053338,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":214985,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458053369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":215016,"id":"0xaf88ab1bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458053369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":215016,"id":"0xaf88a820f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458054162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":215077,"id":"0xaf88ab19f182217a"},
-{"pid":27443,"tid":27477,"ts":326458054193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":31,"tts":215107},
-{"pid":27443,"tid":27477,"ts":326458054223,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326457986499.0,"frame_time_us":326458050104.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":0,"tdur":0,"tts":215138},
-{"pid":27443,"tid":27477,"ts":326458054223,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":215138,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458054986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458054},"tts":215199,"id":"0xaf88ab1ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458055017,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":91,"tdur":31,"tts":215229},
-{"pid":27443,"tid":27477,"ts":326458055017,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":215229},
-{"pid":27443,"tid":27477,"ts":326458055017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":215260,"id":"0xaf88ab1af182217a"},
-{"pid":27443,"tid":27477,"ts":326458055108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":215290,"id":"0xaf88ab1af182217a"},
-{"pid":27443,"tid":27477,"ts":326458055108,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":61,"tdur":61,"tts":215290},
-{"pid":27443,"tid":27477,"ts":326458055139,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":30,"tdur":30,"tts":215321},
-{"pid":27443,"tid":27477,"ts":326458055139,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-68.64,"BeginFrameArgs":{"deadline_us":326457986499.0,"frame_time_us":326458050104.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":215351,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458055169,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":215351,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458064142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":215504,"id":"0xaf88ab1bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458064173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":91,"tdur":92,"tts":215534},
-{"pid":27443,"tid":27477,"ts":326458064173,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":91,"tdur":92,"tts":215534},
-{"pid":27443,"tid":27459,"ts":326458006947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5717106,"id":"0xaf88a813f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458006978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":5717137},
-{"pid":27443,"tid":27459,"ts":326458007008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5717167,"id":"0xaf88a82df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458007008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5717167,"id":"0xaf88ab07f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458007008,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":61,"tdur":61,"tts":5717167},
-{"pid":27443,"tid":27459,"ts":326458007039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5717198,"id":"0xaf88ab01f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458007069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5717228,"id":"0xaf88a82ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458007130,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5717289,"id":"0xaf88a82cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458007130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31528,"tdur":29452,"tts":5717289},
-{"pid":27443,"tid":27459,"ts":326458007161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5717320,"id":"0xaf88ab00f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458007161,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":31497,"tdur":29421,"tts":5717320},
-{"pid":27443,"tid":27459,"ts":326458007222,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchStart"},"dur":31405,"tdur":29330,"tts":5717381},
-{"pid":27443,"tid":27459,"ts":326458007222,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5717381,"id":"0x30000000c"},
-{"pid":27443,"tid":27459,"ts":326458007252,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchstart"},"dur":31223,"tdur":29147,"tts":5717411},
-{"pid":27443,"tid":27459,"ts":326458007283,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":31192,"tdur":29116,"tts":5717442},
-{"pid":27443,"tid":27459,"ts":326458007313,"ph":"X","cat":"blink","name":"EventHandler::hitTestResultAtPoint","args":{},"dur":1923,"tdur":977,"tts":5717472},
-{"pid":27443,"tid":27459,"ts":326458007374,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":92,"tdur":92,"tts":5717533},
-{"pid":27443,"tid":27459,"ts":326458007374,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":31,"tdur":0,"tts":5717564},
-{"pid":27443,"tid":27459,"ts":326458007405,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":5717564},
-{"pid":27443,"tid":27459,"ts":326458007435,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":0,"tts":5717625},
-{"pid":27443,"tid":27459,"ts":326458007497,"ph":"B","cat":"blink,devtools.timeline","name":"HitTest","args":{},"tts":5717656},
-{"pid":27443,"tid":27459,"ts":326458008260,"ph":"E","cat":"blink,devtools.timeline","name":"HitTest","args":{"endData":{"x":179,"y":357,"rectilinear":true,"touch":true,"nodeId":19,"nodeName":"DIV"}},"tts":5718419},
-{"pid":27443,"tid":27459,"ts":326458008260,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":976,"tdur":30,"tts":5718419},
-{"pid":27443,"tid":27459,"ts":326458009297,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5718510},
-{"pid":27443,"tid":27459,"ts":326458009328,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5718541},
-{"pid":27443,"tid":27459,"ts":326458009358,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5718571},
-{"pid":27443,"tid":27459,"ts":326458009389,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5718602},
-{"pid":27443,"tid":27459,"ts":326458009450,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchstart"}},"dur":28994,"tdur":27835,"tts":5718693},
-{"pid":27443,"tid":27459,"ts":326458010121,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":61,"tdur":30,"tts":5719365},
-{"pid":27443,"tid":27459,"ts":326458010152,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5719365},
-{"pid":27443,"tid":27459,"ts":326458010182,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5719395},
-{"pid":27443,"tid":27459,"ts":326458010274,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5719487},
-{"pid":27443,"tid":27459,"ts":326458010365,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5719578},
-{"pid":27443,"tid":27459,"ts":326458010396,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5719609},
-{"pid":27443,"tid":27459,"ts":326458010488,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5719700},
-{"pid":27443,"tid":27459,"ts":326458010579,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":27804,"tdur":26675,"tts":5719792},
-{"pid":27443,"tid":27459,"ts":326458010579,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5719792},
-{"pid":27443,"tid":27459,"ts":326458010610,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5719822},
-{"pid":27443,"tid":27459,"ts":326458010671,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5719884},
-{"pid":27443,"tid":27459,"ts":326458010915,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5719945},
-{"pid":27443,"tid":27459,"ts":326458010976,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5720006},
-{"pid":27443,"tid":27459,"ts":326458011037,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5720067},
-{"pid":27443,"tid":27459,"ts":326458011312,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5720341},
-{"pid":27443,"tid":27459,"ts":326458011464,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5720494},
-{"pid":27443,"tid":27459,"ts":326458011800,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5720830},
-{"pid":27443,"tid":27459,"ts":326458011830,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5720891},
-{"pid":27443,"tid":27459,"ts":326458011891,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5720921},
-{"pid":27443,"tid":27459,"ts":326458011922,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5720952},
-{"pid":27443,"tid":27459,"ts":326458011952,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5720982},
-{"pid":27443,"tid":27459,"ts":326458012014,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5721043},
-{"pid":27443,"tid":27459,"ts":326458012105,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5721135},
-{"pid":27443,"tid":27459,"ts":326458012166,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5721196},
-{"pid":27443,"tid":27459,"ts":326458012258,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5721287},
-{"pid":27443,"tid":27459,"ts":326458012471,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":31,"tdur":31,"tts":5721501},
-{"pid":27443,"tid":27459,"ts":326458012471,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5721532},
-{"pid":27443,"tid":27459,"ts":326458012502,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5721532},
-{"pid":27443,"tid":27459,"ts":326458012593,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5721623},
-{"pid":27443,"tid":27459,"ts":326458012685,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5721715},
-{"pid":27443,"tid":27459,"ts":326458012746,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5721776},
-{"pid":27443,"tid":27459,"ts":326458012807,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5721867},
-{"pid":27443,"tid":27459,"ts":326458013234,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":61,"tdur":61,"tts":5722264},
-{"pid":27443,"tid":27459,"ts":326458013265,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5722295},
-{"pid":27443,"tid":27459,"ts":326458013265,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5722295},
-{"pid":27443,"tid":27459,"ts":326458013448,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5722478},
-{"pid":27443,"tid":27459,"ts":326458013509,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5722539},
-{"pid":27443,"tid":27459,"ts":326458013540,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5722569},
-{"pid":27443,"tid":27459,"ts":326458013601,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5722630},
-{"pid":27443,"tid":27459,"ts":326458013845,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5722905},
-{"pid":27443,"tid":27459,"ts":326458014028,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5723058},
-{"pid":27443,"tid":27459,"ts":326458014089,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5723119},
-{"pid":27443,"tid":27459,"ts":326458014242,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5723271},
-{"pid":27443,"tid":27459,"ts":326458015035,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":61,"tdur":30,"tts":5724065},
-{"pid":27443,"tid":27459,"ts":326458015066,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5724095},
-{"pid":27443,"tid":27459,"ts":326458015066,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5724095},
-{"pid":27443,"tid":27459,"ts":326458015218,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5724248},
-{"pid":27443,"tid":27459,"ts":326458015249,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousedown"}},"dur":793,"tdur":794,"tts":5724278},
-{"pid":27443,"tid":27459,"ts":326458015401,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":580,"tdur":580,"tts":5724431},
-{"pid":27443,"tid":27459,"ts":326458015432,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5724462},
-{"pid":27443,"tid":27459,"ts":326458015462,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5724492},
-{"pid":27443,"tid":27459,"ts":326458015523,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5724553},
-{"pid":27443,"tid":27459,"ts":326458015554,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5724584},
-{"pid":27443,"tid":27459,"ts":326458015615,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5724645},
-{"pid":27443,"tid":27459,"ts":326458015798,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5724828},
-{"pid":27443,"tid":27459,"ts":326458015859,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5724889},
-{"pid":27443,"tid":27459,"ts":326458015890,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5724919},
-{"pid":27443,"tid":27459,"ts":326458015951,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5724980},
-{"pid":27443,"tid":27459,"ts":326458015981,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5725011},
-{"pid":27443,"tid":27459,"ts":326458016592,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5725621},
-{"pid":27443,"tid":27459,"ts":326458016775,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5725804},
-{"pid":27443,"tid":27459,"ts":326458016866,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5725896},
-{"pid":27443,"tid":27459,"ts":326458017141,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5726110},
-{"pid":27443,"tid":27459,"ts":326458019094,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5727941},
-{"pid":27443,"tid":27459,"ts":326458019216,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5728032},
-{"pid":27443,"tid":27459,"ts":326458019277,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5728094},
-{"pid":27443,"tid":27459,"ts":326458019369,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5728185},
-{"pid":27443,"tid":27459,"ts":326458019522,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5728338},
-{"pid":27443,"tid":27459,"ts":326458019674,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5728490},
-{"pid":27443,"tid":27459,"ts":326458019766,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5728582},
-{"pid":27443,"tid":27459,"ts":326458019918,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5728734},
-{"pid":27443,"tid":27459,"ts":326458020315,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5729101},
-{"pid":27443,"tid":27459,"ts":326458020468,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5729223},
-{"pid":27443,"tid":27459,"ts":326458020529,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5729284},
-{"pid":27443,"tid":27459,"ts":326458020620,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5729375},
-{"pid":27443,"tid":27459,"ts":326458020925,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5729681},
-{"pid":27443,"tid":27459,"ts":326458021017,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5729772},
-{"pid":27443,"tid":27459,"ts":326458021048,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5729803},
-{"pid":27443,"tid":27459,"ts":326458021109,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5729864},
-{"pid":27443,"tid":27459,"ts":326458021231,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5729986},
-{"pid":27443,"tid":27459,"ts":326458021475,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5730230},
-{"pid":27443,"tid":27459,"ts":326458021536,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5730321},
-{"pid":27443,"tid":27459,"ts":326458021811,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5730566},
-{"pid":27443,"tid":27459,"ts":326458022085,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5730840},
-{"pid":27443,"tid":27459,"ts":326458022238,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5730993},
-{"pid":27443,"tid":27459,"ts":326458022268,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5731054},
-{"pid":27443,"tid":27459,"ts":326458022390,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5731176},
-{"pid":27443,"tid":27459,"ts":326458022451,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5731207},
-{"pid":27443,"tid":27459,"ts":326458022726,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5731481},
-{"pid":27443,"tid":27459,"ts":326458022879,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5731634},
-{"pid":27443,"tid":27459,"ts":326458023153,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5731939},
-{"pid":27443,"tid":27459,"ts":326458023276,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5732031},
-{"pid":27443,"tid":27459,"ts":326458023428,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5732183},
-{"pid":27443,"tid":27459,"ts":326458023520,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5732275},
-{"pid":27443,"tid":27459,"ts":326458023672,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5732427},
-{"pid":27443,"tid":27459,"ts":326458023947,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5732702},
-{"pid":27443,"tid":27459,"ts":326458024100,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5732885},
-{"pid":27443,"tid":27459,"ts":326458024191,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5732946},
-{"pid":27443,"tid":27459,"ts":326458024313,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5733068},
-{"pid":27443,"tid":27459,"ts":326458024466,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5733221},
-{"pid":27443,"tid":27459,"ts":326458024557,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5733312},
-{"pid":27443,"tid":27459,"ts":326458024618,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5733374},
-{"pid":27443,"tid":27459,"ts":326458024985,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5733526},
-{"pid":27443,"tid":27459,"ts":326458025229,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5733770},
-{"pid":27443,"tid":27459,"ts":326458025229,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":31,"tts":5733770},
-{"pid":27443,"tid":27459,"ts":326458025442,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5733923},
-{"pid":27443,"tid":27459,"ts":326458025504,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5733953},
-{"pid":27443,"tid":27459,"ts":326458025626,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5734076},
-{"pid":27443,"tid":27459,"ts":326458025748,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5734198},
-{"pid":27443,"tid":27459,"ts":326458025992,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5734442},
-{"pid":27443,"tid":27459,"ts":326458026144,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5734564},
-{"pid":27443,"tid":27459,"ts":326458026358,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5734777},
-{"pid":27443,"tid":27459,"ts":326458026694,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5735113},
-{"pid":27443,"tid":27459,"ts":326458026785,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5735205},
-{"pid":27443,"tid":27459,"ts":326458026816,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5735235},
-{"pid":27443,"tid":27459,"ts":326458026907,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5735327},
-{"pid":27443,"tid":27459,"ts":326458027396,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5735815},
-{"pid":27443,"tid":27459,"ts":326458027457,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5735876},
-{"pid":27443,"tid":27459,"ts":326458027518,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5735937},
-{"pid":27443,"tid":27459,"ts":326458027609,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5736029},
-{"pid":27443,"tid":27459,"ts":326458032889,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5741309},
-{"pid":27443,"tid":27459,"ts":326458032981,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5741400},
-{"pid":27443,"tid":27459,"ts":326458033042,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5741461},
-{"pid":27443,"tid":27459,"ts":326458033103,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5741522},
-{"pid":27443,"tid":27459,"ts":326458033164,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5741584},
-{"pid":27443,"tid":27459,"ts":326458033225,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5741645},
-{"pid":27443,"tid":27459,"ts":326458033256,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5741706},
-{"pid":27443,"tid":27459,"ts":326458033317,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5741767},
-{"pid":27443,"tid":27459,"ts":326458033408,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5741828},
-{"pid":27443,"tid":27459,"ts":326458033469,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5741889},
-{"pid":27443,"tid":27459,"ts":326458033500,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5741950},
-{"pid":27443,"tid":27459,"ts":326458033622,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5742041},
-{"pid":27443,"tid":27459,"ts":326458034141,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5742499,"id":"0xaf88ab02f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458034202,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":137,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":5742560,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458034812,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5743201,"id":"0xaf88ab03f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458034873,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":138,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":5743232,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458035178,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5743354},
-{"pid":27443,"tid":27459,"ts":326458035301,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5743476},
-{"pid":27443,"tid":27459,"ts":326458035484,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5743598},
-{"pid":27443,"tid":27459,"ts":326458035575,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5743689},
-{"pid":27443,"tid":27459,"ts":326458036399,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5744483},
-{"pid":27443,"tid":27459,"ts":326458036491,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5744575},
-{"pid":27443,"tid":27459,"ts":326458036521,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5744605},
-{"pid":27443,"tid":27459,"ts":326458036582,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5744666},
-{"pid":27443,"tid":27459,"ts":326458036643,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5744727},
-{"pid":27443,"tid":27459,"ts":326458036705,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5744788},
-{"pid":27443,"tid":27459,"ts":326458036735,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5744849},
-{"pid":27443,"tid":27459,"ts":326458036796,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5744910},
-{"pid":27443,"tid":27459,"ts":326458037010,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5745124},
-{"pid":27443,"tid":27459,"ts":326458037223,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5745307},
-{"pid":27443,"tid":27459,"ts":326458037284,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5745399},
-{"pid":27443,"tid":27459,"ts":326458037498,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5745582},
-{"pid":27443,"tid":27459,"ts":326458037742,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5745856},
-{"pid":27443,"tid":27459,"ts":326458037834,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5745917},
-{"pid":27443,"tid":27459,"ts":326458037864,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5745948},
-{"pid":27443,"tid":27459,"ts":326458037925,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5746009},
-{"pid":27443,"tid":27459,"ts":326458037986,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5746070},
-{"pid":27443,"tid":27459,"ts":326458038108,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5746192},
-{"pid":27443,"tid":27459,"ts":326458038139,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5746223},
-{"pid":27443,"tid":27459,"ts":326458038231,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5746314},
-{"pid":27443,"tid":27459,"ts":326458038383,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5746467},
-{"pid":27443,"tid":27459,"ts":326458038475,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":23,"line":232},"dur":91,"tdur":92,"tts":5746558},
-{"pid":27443,"tid":27459,"ts":326458038505,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5746589,"id":"0xaf88adcdf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458038566,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":30,"tts":5746650},
-{"pid":27443,"tid":27459,"ts":326458038597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5746680,"id":"0xaf88adcef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458038719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458034},"tts":5746802,"id":"0xaf88a817f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458038719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":5746802},
-{"pid":27443,"tid":27459,"ts":326458038780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5746864,"id":"0xaf88a82df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458038780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":5746864},
-{"pid":27443,"tid":27459,"ts":326458038810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5746894,"id":"0xaf88a82ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458038810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5746894,"id":"0xaf88ab06f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458038810,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":5746894},
-{"pid":27443,"tid":27459,"ts":326458038841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5746925,"id":"0xaf88ab1cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458038841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5746925,"id":"0xaf88ab1df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458038902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5746986,"id":"0xaf88a82ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458038902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":91,"tts":5746986},
-{"pid":27443,"tid":27459,"ts":326458038932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5747016,"id":"0xaf88a828f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458038932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5747016,"id":"0xaf88ab1cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458038932,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":62,"tdur":61,"tts":5747016},
-{"pid":27443,"tid":27459,"ts":326458038994,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5747077,"id":"0xaf88ab1ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458039024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5747108,"id":"0xaf88a828f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458039055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5747138},
-{"pid":27443,"tid":27459,"ts":326458039573,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5747199,"id":"0xaf88a829f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458039604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":5747230},
-{"pid":27443,"tid":27459,"ts":326458039604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5747230,"id":"0xaf88a82af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458039634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5747260,"id":"0xaf88ab1ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458039634,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":62,"tdur":61,"tts":5747260},
-{"pid":27443,"tid":27459,"ts":326458039634,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":126},"dur":62,"tdur":61,"tts":5747260},
-{"pid":27443,"tid":27459,"ts":326458039726,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5747352,"id":"0xaf88a82af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458039726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":5747352},
-{"pid":27443,"tid":27459,"ts":326458040581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5747474,"id":"0xaf88a82bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458040581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3174,"tdur":3144,"tts":5747474},
-{"pid":27443,"tid":27459,"ts":326458040611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5747504,"id":"0xaf88a824f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458040611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5747504,"id":"0xaf88ab18f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458040611,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":3113,"tdur":3114,"tts":5747504},
-{"pid":27443,"tid":27459,"ts":326458040672,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":3052,"tdur":3052,"tts":5747566},
-{"pid":27443,"tid":27459,"ts":326458040672,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5747566,"id":"0x30000000d"},
-{"pid":27443,"tid":27459,"ts":326458040703,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2960,"tdur":2961,"tts":5747596},
-{"pid":27443,"tid":27459,"ts":326458040733,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2930,"tdur":2930,"tts":5747627},
-{"pid":27443,"tid":27459,"ts":326458040794,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5747688},
-{"pid":27443,"tid":27459,"ts":326458040825,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5747718},
-{"pid":27443,"tid":27459,"ts":326458040855,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5747749},
-{"pid":27443,"tid":27459,"ts":326458040886,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5747779},
-{"pid":27443,"tid":27459,"ts":326458040916,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":2717,"tdur":2716,"tts":5747810},
-{"pid":27443,"tid":27459,"ts":326458041038,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":2564,"tdur":2533,"tts":5747962},
-{"pid":27443,"tid":27459,"ts":326458041069,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5747962},
-{"pid":27443,"tid":27459,"ts":326458041160,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5748054},
-{"pid":27443,"tid":27459,"ts":326458041435,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5748329},
-{"pid":27443,"tid":27459,"ts":326458041557,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5748481},
-{"pid":27443,"tid":27459,"ts":326458042046,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5748939},
-{"pid":27443,"tid":27459,"ts":326458042534,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5749427},
-{"pid":27443,"tid":27459,"ts":326458042717,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5749610},
-{"pid":27443,"tid":27459,"ts":326458042809,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5749702},
-{"pid":27443,"tid":27459,"ts":326458043053,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5749946},
-{"pid":27443,"tid":27459,"ts":326458043266,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5750160},
-{"pid":27443,"tid":27459,"ts":326458043297,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5750190},
-{"pid":27443,"tid":27459,"ts":326458043327,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5750251},
-{"pid":27443,"tid":27459,"ts":326458043388,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5750282},
-{"pid":27443,"tid":27459,"ts":326458043480,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":1,"frame":"0x78c60000"}},"tts":5750404,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458043511,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":5750404},
-{"pid":27443,"tid":27459,"ts":326458043541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5750434,"id":"0xaf88ab1cf182217a"},
-{"pid":27443,"tid":27459,"ts":326458043572,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5750495},
-{"pid":27443,"tid":27459,"ts":326458043663,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":31,"tdur":30,"tts":5750557},
-{"pid":27443,"tid":27459,"ts":326458043694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5750587,"id":"0xaf88adc8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458043755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5750648,"id":"0xaf88a824f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458043785,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5750679},
-{"pid":27443,"tid":27459,"ts":326458045555,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5750740,"id":"0xaf88a825f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458045586,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":18923,"tdur":13002,"tts":5750770},
-{"pid":27443,"tid":27459,"ts":326458045586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5750770,"id":"0xaf88a826f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458045616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5750801,"id":"0xaf88ab19f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458045616,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":18893,"tdur":12971,"tts":5750801},
-{"pid":27443,"tid":27459,"ts":326458045647,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":55},"tts":5750831},
-{"pid":27443,"tid":27459,"ts":326458045677,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5750862},
-{"pid":27443,"tid":27459,"ts":326458045708,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":17702,"tdur":12056,"tts":5750892},
-{"pid":27443,"tid":27459,"ts":326458045739,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":5750923},
-{"pid":27443,"tid":27459,"ts":326458045800,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":1,"frame":"0x78c60000"}},"dur":17610,"tdur":11933,"tts":5750984},
-{"pid":27443,"tid":27459,"ts":326458047844,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":15535,"tdur":9980,"tts":5752937},
-{"pid":27443,"tid":27459,"ts":326458047844,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5752968},
-{"pid":27443,"tid":27459,"ts":326458049004,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5754097},
-{"pid":27443,"tid":27459,"ts":326458049065,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":5754158},
-{"pid":27443,"tid":27459,"ts":326458063318,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5762887},
-{"pid":27443,"tid":27459,"ts":326458063410,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":213,"tdur":183,"tts":5762978},
-{"pid":27443,"tid":27459,"ts":326458063471,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":152,"tdur":122,"tts":5763039},
-{"pid":27443,"tid":27459,"ts":326458063501,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":31,"tdur":31,"tts":5763039},
-{"pid":27443,"tid":27459,"ts":326458063532,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":5763070},
-{"pid":27443,"tid":27459,"ts":326458063593,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":30,"tts":5763131},
-{"pid":27443,"tid":27459,"ts":326458063623,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":55},"dur":306,"tdur":275,"tts":5763192},
-{"pid":27443,"tid":27459,"ts":326458063654,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":244,"tts":5763192},
-{"pid":27443,"tid":27459,"ts":326458063929,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5763467,"id":"0x30000000d"},
-{"pid":27443,"tid":27459,"ts":326458063929,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":5763467,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458063959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5763497,"id":"0xaf88ab1bf182217a"},
-{"pid":27443,"tid":27459,"ts":326458064448,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901901.0,"time":326458017782.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458010000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458043572.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458064356.0},"coordinates":[{"x":356.5,"y":707.75}],"trace_id":12884901901.0}},"tts":5763711,"id":"0x30000000d"},
-{"pid":27443,"tid":27459,"ts":326458064478,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":5763741,"id":"0x30000000d","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326458064478,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5763741},
-{"pid":27443,"tid":27459,"ts":326458064570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5763833,"id":"0xaf88a826f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458064570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":5763833},
-{"pid":27443,"tid":27459,"ts":326458064600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5763863,"id":"0xaf88a821f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458064631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5763894,"id":"0xaf88ab1af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458064631,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":30,"tdur":30,"tts":5763894},
-{"pid":27443,"tid":27459,"ts":326458064692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5763955,"id":"0xaf88a827f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458064722,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3022,"tdur":1556,"tts":5763955},
-{"pid":27443,"tid":27459,"ts":326458064722,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":5763955},
-{"pid":27443,"tid":27459,"ts":326458064814,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5764016,"id":"0xaf88ab1bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458064814,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2930,"tdur":1495,"tts":5764016},
-{"pid":27443,"tid":27459,"ts":326458064936,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2777,"tdur":1373,"tts":5764108},
-{"pid":27443,"tid":27459,"ts":326458064966,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5764138,"id":"0x30000000f"},
-{"pid":27443,"tid":27459,"ts":326458064966,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2503,"tdur":1159,"tts":5764169},
-{"pid":27443,"tid":27459,"ts":326458064997,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2442,"tdur":1129,"tts":5764199},
-{"pid":27443,"tid":27459,"ts":326458065119,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5764230},
-{"pid":27443,"tid":27459,"ts":326458065180,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5764291},
-{"pid":27443,"tid":27459,"ts":326458065211,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5764321},
-{"pid":27443,"tid":27459,"ts":326458065241,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":30,"tts":5764352},
-{"pid":27443,"tid":27459,"ts":326458065241,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":5764352},
-{"pid":27443,"tid":27459,"ts":326458065333,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":2106,"tdur":885,"tts":5764443},
-{"pid":27443,"tid":27459,"ts":326458065485,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1923,"tdur":702,"tts":5764565},
-{"pid":27443,"tid":27459,"ts":326458065485,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":31,"tts":5764565},
-{"pid":27443,"tid":27459,"ts":326458065913,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5764596},
-{"pid":27443,"tid":27459,"ts":326458067103,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":2,"frame":"0x78c60000"}},"tts":5765206,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458067133,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":214,"tdur":31,"tts":5765206},
-{"pid":27443,"tid":27459,"ts":326458067164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5765237,"id":"0xaf88ab14f182217a"},
-{"pid":27443,"tid":27459,"ts":326458067377,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5765267},
-{"pid":27443,"tid":27459,"ts":326458067469,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":122,"tts":5765359},
-{"pid":27443,"tid":27459,"ts":326458067500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5765389,"id":"0xaf88adc9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458067774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5765542,"id":"0xaf88a820f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458067774,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5765542},
-{"pid":27443,"tid":27459,"ts":326458067835,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5765603,"id":"0xaf88a821f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458067835,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5765603},
-{"pid":27443,"tid":27459,"ts":326458069483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5765695,"id":"0xaf88a822f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458069514,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13490,"tdur":10347,"tts":5765725},
-{"pid":27443,"tid":27459,"ts":326458069514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5765725,"id":"0xaf88a823f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458069544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5765756,"id":"0xaf88ab14f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458069544,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13460,"tdur":10316,"tts":5765756},
-{"pid":27443,"tid":27477,"ts":326458064234,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":31,"tts":215595},
-{"pid":27443,"tid":27477,"ts":326458067286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":215779,"id":"0xaf88ab14f182217a"},
-{"pid":27443,"tid":27477,"ts":326458067286,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":0,"tts":215809},
-{"pid":27443,"tid":27477,"ts":326458067316,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":215809},
-{"pid":27443,"tid":27477,"ts":326458068659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":215870,"id":"0xaf88ab15f182217a"},
-{"pid":27443,"tid":27477,"ts":326458068690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":244,"tts":215901},
-{"pid":27443,"tid":27477,"ts":326458068720,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458003175.0,"frame_time_us":326458066780.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":215931},
-{"pid":27443,"tid":27477,"ts":326458068720,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458003175.0,"frame_time_us":326458066780.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":214,"tdur":214,"tts":215931},
-{"pid":27443,"tid":27477,"ts":326458068781,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":56},"tts":215992},
-{"pid":27443,"tid":27477,"ts":326458068842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":216053,"id":"0xaf88ab14f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458068873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216084,"id":"0xaf88a822f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458068904,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":216114},
-{"pid":27443,"tid":27477,"ts":326458068904,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458083446},"dur":30,"tdur":31,"tts":216114},
-{"pid":27443,"tid":27477,"ts":326458068934,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216145,"id":"0xaf88ab16f182217a"},
-{"pid":27443,"tid":27477,"ts":326458070216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216206,"id":"0xaf88ab17f182217a"},
-{"pid":27443,"tid":27477,"ts":326458070216,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":216206},
-{"pid":27443,"tid":27477,"ts":326458070246,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":216236},
-{"pid":27443,"tid":27477,"ts":326458070246,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":216236,"id":"0x300000010"},
-{"pid":27443,"tid":27477,"ts":326458070277,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":216267},
-{"pid":27443,"tid":27477,"ts":326458070277,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":216267,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458070307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":216297,"id":"0xaf88ab15f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458070338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216328,"id":"0xaf88a83cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458082882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216389,"id":"0xaf88ab10f182217a"},
-{"pid":27443,"tid":27477,"ts":326458082912,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":92,"tts":216419},
-{"pid":27443,"tid":27477,"ts":326458082912,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":62,"tts":216419},
-{"pid":27443,"tid":27477,"ts":326458082973,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":0,"tdur":0,"tts":216481},
-{"pid":27443,"tid":27477,"ts":326458083553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458083},"tts":216542,"id":"0xaf88ab16f182217a"},
-{"pid":27443,"tid":27477,"ts":326458083553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":216542},
-{"pid":27443,"tid":27477,"ts":326458083584,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":216572},
-{"pid":27443,"tid":27477,"ts":326458085323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216633,"id":"0xaf88ab11f182217a"},
-{"pid":27443,"tid":27477,"ts":326458085323,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":216633},
-{"pid":27443,"tid":27477,"ts":326458085323,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":31,"tts":216633},
-{"pid":27443,"tid":27477,"ts":326458085354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216664,"id":"0xaf88ab12f182217a"},
-{"pid":27443,"tid":27477,"ts":326458085354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":216664},
-{"pid":27443,"tid":27477,"ts":326458085385,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458019852.0,"frame_time_us":326458083457.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":214,"tts":216694},
-{"pid":27443,"tid":27477,"ts":326458085415,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458019852.0,"frame_time_us":326458083457.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":216725},
-{"pid":27443,"tid":27477,"ts":326458085446,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":57},"tts":216755},
-{"pid":27443,"tid":27477,"ts":326458085507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":216816,"id":"0xaf88ab16f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458085537,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216847,"id":"0xaf88a83ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458085568,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":216877},
-{"pid":27443,"tid":27477,"ts":326458085568,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458100123},"dur":30,"tdur":31,"tts":216877},
-{"pid":27443,"tid":27477,"ts":326458085598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":216908,"id":"0xaf88ab13f182217a"},
-{"pid":27443,"tid":27477,"ts":326458086849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":216969,"id":"0xaf88ab2cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458086849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":216969},
-{"pid":27443,"tid":27477,"ts":326458086849,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":122,"tts":216969},
-{"pid":27443,"tid":27477,"ts":326458086880,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":216999,"id":"0x300000011"},
-{"pid":27443,"tid":27477,"ts":326458086911,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":217030},
-{"pid":27443,"tid":27477,"ts":326458086911,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":217060,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458086941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":217060,"id":"0xaf88ab17f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458086972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":217091,"id":"0xaf88a838f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458100248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458100},"tts":217182,"id":"0xaf88ab13f182217a"},
-{"pid":27443,"tid":27477,"ts":326458100278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":62,"tts":217182},
-{"pid":27443,"tid":27477,"ts":326458100309,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":0,"tts":217213},
-{"pid":27443,"tid":27477,"ts":326458102354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":217305,"id":"0xaf88ab2df182217a"},
-{"pid":27443,"tid":27477,"ts":326458102354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":217305},
-{"pid":27443,"tid":27477,"ts":326458102415,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458036528.0,"frame_time_us":326458100133.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":217366},
-{"pid":27443,"tid":27477,"ts":326458102445,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458036528.0,"frame_time_us":326458100133.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":217396},
-{"pid":27443,"tid":27477,"ts":326458102506,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458116799},"dur":31,"tdur":31,"tts":217457},
-{"pid":27443,"tid":27477,"ts":326458102506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":217457,"id":"0xaf88ab2ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458106962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":217579,"id":"0xaf88ab2ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458106993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1374,"tts":217579},
-{"pid":27443,"tid":27477,"ts":326458106993,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":1374,"tts":217579},
-{"pid":27443,"tid":27477,"ts":326458106993,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":217579},
-{"pid":27443,"tid":27477,"ts":326458107023,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":217610},
-{"pid":27443,"tid":27459,"ts":326458069544,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":56},"tts":5765756},
-{"pid":27443,"tid":27459,"ts":326458069575,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5765786},
-{"pid":27443,"tid":27459,"ts":326458069605,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12758,"tdur":9584,"tts":5765847},
-{"pid":27443,"tid":27459,"ts":326458069636,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":5765847},
-{"pid":27443,"tid":27459,"ts":326458069697,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":2,"frame":"0x78c60000"}},"dur":12635,"tdur":9492,"tts":5765908},
-{"pid":27443,"tid":27459,"ts":326458069758,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":12574,"tdur":9400,"tts":5766000},
-{"pid":27443,"tid":27459,"ts":326458069789,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5766000},
-{"pid":27443,"tid":27459,"ts":326458070460,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5766336},
-{"pid":27443,"tid":27459,"ts":326458070521,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":5766397},
-{"pid":27443,"tid":27459,"ts":326458071193,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5767068},
-{"pid":27443,"tid":27459,"ts":326458071284,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5767160},
-{"pid":27443,"tid":27459,"ts":326458071345,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5767221},
-{"pid":27443,"tid":27459,"ts":326458071345,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5767251},
-{"pid":27443,"tid":27459,"ts":326458071437,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5767312},
-{"pid":27443,"tid":27459,"ts":326458071589,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5767465},
-{"pid":27443,"tid":27459,"ts":326458071956,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5767831},
-{"pid":27443,"tid":27459,"ts":326458072108,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5767984},
-{"pid":27443,"tid":27459,"ts":326458072627,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5768502},
-{"pid":27443,"tid":27459,"ts":326458072719,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5768594},
-{"pid":27443,"tid":27459,"ts":326458072749,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5768655},
-{"pid":27443,"tid":27459,"ts":326458072780,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5768655},
-{"pid":27443,"tid":27459,"ts":326458073268,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5768777},
-{"pid":27443,"tid":27459,"ts":326458074519,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5769021},
-{"pid":27443,"tid":27459,"ts":326458074550,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5769021},
-{"pid":27443,"tid":27459,"ts":326458074855,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5769204},
-{"pid":27443,"tid":27459,"ts":326458077297,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5770853},
-{"pid":27443,"tid":27459,"ts":326458077510,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5771066},
-{"pid":27443,"tid":27459,"ts":326458077602,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5771158},
-{"pid":27443,"tid":27459,"ts":326458077632,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5771188},
-{"pid":27443,"tid":27459,"ts":326458077846,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5771402},
-{"pid":27443,"tid":27459,"ts":326458078090,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5771677},
-{"pid":27443,"tid":27459,"ts":326458078182,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5771707},
-{"pid":27443,"tid":27459,"ts":326458078182,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":31,"tts":5771707},
-{"pid":27443,"tid":27459,"ts":326458078517,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5771860},
-{"pid":27443,"tid":27459,"ts":326458078578,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5771921},
-{"pid":27443,"tid":27459,"ts":326458078792,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5772134},
-{"pid":27443,"tid":27459,"ts":326458080745,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5773813},
-{"pid":27443,"tid":27459,"ts":326458081142,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5774210},
-{"pid":27443,"tid":27459,"ts":326458082302,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5775370},
-{"pid":27443,"tid":27459,"ts":326458082363,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":183,"tdur":183,"tts":5775431},
-{"pid":27443,"tid":27459,"ts":326458082424,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":5775492},
-{"pid":27443,"tid":27459,"ts":326458082424,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":31,"tdur":30,"tts":5775492},
-{"pid":27443,"tid":27459,"ts":326458082455,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":5775522},
-{"pid":27443,"tid":27459,"ts":326458082485,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":0,"tts":5775583},
-{"pid":27443,"tid":27459,"ts":326458082546,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":56},"dur":244,"tdur":244,"tts":5775614},
-{"pid":27443,"tid":27459,"ts":326458082577,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":213,"tdur":214,"tts":5775644},
-{"pid":27443,"tid":27459,"ts":326458082790,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5775858,"id":"0x30000000f"},
-{"pid":27443,"tid":27459,"ts":326458082790,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":5775858,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458082821,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5775888,"id":"0xaf88ab10f182217a"},
-{"pid":27443,"tid":27459,"ts":326458082943,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901903.0,"time":326458052728.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458045000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458067347.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458082882.0},"coordinates":[{"x":357.4973449707031,"y":698.0345458984375}],"trace_id":12884901903.0}},"tts":5776010,"id":"0x30000000f"},
-{"pid":27443,"tid":27459,"ts":326458082973,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":5776041,"id":"0x30000000f","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326458082973,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5776041},
-{"pid":27443,"tid":27459,"ts":326458083034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5776102,"id":"0xaf88a823f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458083065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1618,"tdur":1220,"tts":5776133},
-{"pid":27443,"tid":27459,"ts":326458083065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5776133,"id":"0xaf88a83df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458083095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5776163,"id":"0xaf88ab15f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458083095,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1588,"tdur":1190,"tts":5776163},
-{"pid":27443,"tid":27459,"ts":326458083157,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1526,"tdur":1129,"tts":5776224},
-{"pid":27443,"tid":27459,"ts":326458083187,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5776255,"id":"0x300000010"},
-{"pid":27443,"tid":27459,"ts":326458083187,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1038,"tdur":916,"tts":5776285},
-{"pid":27443,"tid":27459,"ts":326458083218,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1007,"tdur":916,"tts":5776285},
-{"pid":27443,"tid":27459,"ts":326458083279,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5776346},
-{"pid":27443,"tid":27459,"ts":326458083309,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5776407},
-{"pid":27443,"tid":27459,"ts":326458083340,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5776438},
-{"pid":27443,"tid":27496,"ts":326458071620,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":336,"tdur":336,"tts":55333},
-{"pid":27443,"tid":27496,"ts":326458071650,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":55363},
-{"pid":27443,"tid":27496,"ts":326458071925,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":55638},
-{"pid":27443,"tid":27546,"ts":326458073695,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":580,"tdur":580,"tts":19716},
-{"pid":27443,"tid":27546,"ts":326458073695,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":19716},
-{"pid":27443,"tid":27546,"ts":326458074245,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":20296},
-{"pid":27443,"tid":27498,"ts":326458078792,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1953,"tdur":1923,"tts":37173},
-{"pid":27443,"tid":27498,"ts":326458078823,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":37204},
-{"pid":27443,"tid":27498,"ts":326458080715,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":39096},
-{"pid":27443,"tid":27469,"ts":326458108397,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":274652},
-{"pid":27443,"tid":27469,"ts":326458108427,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":30,"tts":274683},
-{"pid":27443,"tid":27469,"ts":326458108458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274713,"id":"0xaf88ab28f182217a"},
-{"pid":27443,"tid":27469,"ts":326458108488,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":274744},
-{"pid":27443,"tid":27469,"ts":326458108488,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":274744},
-{"pid":27443,"tid":27469,"ts":326458108488,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274744,"id":"0xaf88ab29f182217a"},
-{"pid":27443,"tid":27469,"ts":326458108519,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":274774},
-{"pid":27443,"tid":27469,"ts":326458108519,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":274774},
-{"pid":27443,"tid":27469,"ts":326458108519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274774,"id":"0xaf88ab2af182217a"},
-{"pid":27443,"tid":27469,"ts":326458128540,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":62,"tts":274835},
-{"pid":27443,"tid":27469,"ts":326458128571,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":274866},
-{"pid":27443,"tid":27469,"ts":326458128571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274866,"id":"0xaf88ab3cf182217a"},
-{"pid":27443,"tid":27469,"ts":326458128601,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":274897},
-{"pid":27443,"tid":27469,"ts":326458128601,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":274897},
-{"pid":27443,"tid":27469,"ts":326458128632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274927,"id":"0xaf88ab3df182217a"},
-{"pid":27443,"tid":27469,"ts":326458128632,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3052,"tdur":855,"tts":274927},
-{"pid":27443,"tid":27471,"ts":326458128662,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":4762,"tdur":824,"tts":336120},
-{"pid":27443,"tid":27471,"ts":326458128693,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":4731,"tdur":793,"tts":336151},
-{"pid":27443,"tid":27471,"ts":326458128693,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":52,"tileId":{"id_ref":"0x797c9d68"},"tileResolution":"HIGH_RESOLUTION"}},"tts":336151},
-{"pid":27443,"tid":27471,"ts":326458128693,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":336181},
-{"pid":27443,"tid":27471,"ts":326458128754,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":336212},
-{"pid":27443,"tid":27471,"ts":326458128784,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":52,"tileId":{"id_ref":"0x797c9d68"},"tileResolution":"HIGH_RESOLUTION"}},"tts":336242},
-{"pid":27443,"tid":27471,"ts":326458128815,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":336273,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458128632,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":3052,"tdur":855,"tts":274927},
-{"pid":27443,"tid":27469,"ts":326458130890,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":52,"tileId":{"id_ref":"0x799b9250"},"tileResolution":"HIGH_RESOLUTION"}},"tts":274988},
-{"pid":27443,"tid":27469,"ts":326458130890,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":274988},
-{"pid":27443,"tid":27469,"ts":326458130951,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":275049},
-{"pid":27443,"tid":27469,"ts":326458130951,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":52,"tileId":{"id_ref":"0x799b9250"},"tileResolution":"HIGH_RESOLUTION"}},"tts":275049},{"pid":27411,"tid":27411,"ts":326457205604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82984,"id":"0xaf88ce3afec55fe2"},
-{"pid":27411,"tid":27411,"ts":326459184942,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":98855},
-{"pid":27411,"tid":27411,"ts":326459196540,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":102212},
-{"pid":27411,"tid":27411,"ts":326459197211,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":102456},
-{"pid":27411,"tid":27411,"ts":326459197608,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":102609},
-{"pid":27411,"tid":27411,"ts":326459209145,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":103036},
-{"pid":27411,"tid":27411,"ts":326459243938,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":108530},
-{"pid":27411,"tid":27411,"ts":326459244090,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":108683},
-{"pid":27411,"tid":27411,"ts":326459244396,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":108805},
-{"pid":27411,"tid":27411,"ts":326459252239,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":109110},
-{"pid":27411,"tid":27411,"ts":326459274367,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":115733},
-{"pid":27411,"tid":27411,"ts":326459274550,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":115916},
-{"pid":27411,"tid":27411,"ts":326459274611,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":115977},
-{"pid":27411,"tid":27411,"ts":326461186682,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":116435},
-{"pid":27411,"tid":27411,"ts":326461187262,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":117015},
-{"pid":27411,"tid":27411,"ts":326461187506,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":117228},
-{"pid":27411,"tid":27411,"ts":326461206062,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":118571},
-{"pid":27411,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":4}},
-{"pid":27411,"tid":27474,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-1}},
-{"pid":27411,"tid":27474,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"GPU Process"}},
-{"pid":27411,"tid":27460,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Watchdog"}},
-{"pid":27411,"tid":27428,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrGpuMain"}},
-{"pid":27411,"tid":27474,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},
-{"pid":27411,"tid":27474,"ts":326457205909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":38455,"id":"0xaf88ce3afec55fe2"},
-{"pid":27411,"tid":27474,"ts":326457205970,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":38516},
-{"pid":27411,"tid":27474,"ts":326457205970,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":38516,"id":"0xc4c0d602"},
-{"pid":27411,"tid":27474,"ts":326458006306,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":38608},
-{"pid":27411,"tid":27474,"ts":326458006337,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":310},"dur":91,"tdur":92,"tts":38638},
-{"pid":27411,"tid":27474,"ts":326458006337,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":38669,"id":"0xba43f602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458006367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":38669,"id":"0xaf88cc2cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458112365,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":38791},
-{"pid":27411,"tid":27474,"ts":326458112426,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":38852},
-{"pid":27411,"tid":27474,"ts":326458112426,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":38852,"id":"0xccc37006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458112426,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":38852,"id":"0xc4c0d70a"},
-{"pid":27411,"tid":27474,"ts":326458112487,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":38913,"id":"0xaf88cc28f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458115569,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":39005},
-{"pid":27411,"tid":27474,"ts":326458115600,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":39035},
-{"pid":27411,"tid":27474,"ts":326458115600,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39035,"id":"0xba440402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458115630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39066,"id":"0xaf88cc2af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458122528,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":39188,"id":"0xaf88ce3bfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458122528,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":39188},
-{"pid":27411,"tid":27474,"ts":326458122558,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39218,"id":"0xc4c0d902"},
-{"pid":27411,"tid":27474,"ts":326458133393,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":244,"tts":39310},
-{"pid":27411,"tid":27474,"ts":326458133424,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":39340},
-{"pid":27411,"tid":27474,"ts":326458133424,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39371,"id":"0xccc37402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458133454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39371,"id":"0xaf88cc24f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458133515,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":39432},
-{"pid":27411,"tid":27474,"ts":326458133515,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39432,"id":"0xccc37506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458133546,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39462,"id":"0xc4c0da0a"},
-{"pid":27411,"tid":27474,"ts":326458133607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39523,"id":"0xaf88cc26f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458148653,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":39615},
-{"pid":27411,"tid":27474,"ts":326458148714,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":39645},
-{"pid":27411,"tid":27474,"ts":326458148714,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39645,"id":"0xba440902","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458148745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39676,"id":"0xaf88cc20f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458154818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":39768,"id":"0xaf88ce34fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458154849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":39798},
-{"pid":27411,"tid":27474,"ts":326458154849,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39798,"id":"0xc4c0dc02"},
-{"pid":27411,"tid":27474,"ts":326458157382,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":122,"tts":39890},
-{"pid":27411,"tid":27474,"ts":326458157413,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":183,"tdur":92,"tts":39920},
-{"pid":27411,"tid":27474,"ts":326458157413,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":39920,"id":"0xccc37702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458157565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39981,"id":"0xaf88cc22f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458160678,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":40073},
-{"pid":27411,"tid":27474,"ts":326458160709,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":40103},
-{"pid":27411,"tid":27474,"ts":326458160709,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40103,"id":"0xccc37802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458160739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40134,"id":"0xaf88cc3cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458160739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":40134},
-{"pid":27411,"tid":27474,"ts":326458160770,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40164,"id":"0xccc37906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458160770,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40164,"id":"0xc4c0dd0a"},
-{"pid":27411,"tid":27474,"ts":326458160800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40225,"id":"0xaf88cc3df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458164097,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":40286},
-{"pid":27411,"tid":27474,"ts":326458164127,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":40317},
-{"pid":27411,"tid":27474,"ts":326458164127,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40317,"id":"0xba440c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458164158,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40347,"id":"0xaf88cc38f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458170079,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":40500,"id":"0xaf88ce35fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458170109,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":40531},
-{"pid":27411,"tid":27474,"ts":326458170109,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40531,"id":"0xc4c0df02"},
-{"pid":27411,"tid":27474,"ts":326458192633,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":40622},
-{"pid":27411,"tid":27474,"ts":326458192664,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":40653},
-{"pid":27411,"tid":27474,"ts":326458192664,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40653,"id":"0xccc38006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458192694,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40683,"id":"0xc4c0e00a"},
-{"pid":27411,"tid":27474,"ts":326458192725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40714,"id":"0xaf88cc3af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458196021,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":40836},
-{"pid":27411,"tid":27474,"ts":326458196051,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":40866},
-{"pid":27411,"tid":27474,"ts":326458196051,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":40866,"id":"0xba441302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458196082,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40897,"id":"0xaf88cc34f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458203376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":41049,"id":"0xaf88ce36fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458203376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":153,"tts":41049},
-{"pid":27411,"tid":27428,"ts":326458006489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":911765,"id":"0xaf88cc2cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458006489,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":911765},
-{"pid":27411,"tid":27428,"ts":326458006550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":4670,"tdur":3022,"tts":911826},
-{"pid":27411,"tid":27428,"ts":326458006550,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":310},"dur":4670,"tdur":3022,"tts":911826},
-{"pid":27411,"tid":27428,"ts":326458006581,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":16767,"keep_awake_time":0},"dur":4639,"tdur":2991,"tts":911857},
-{"pid":27411,"tid":27428,"ts":326458006611,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:E4422E79"},"dur":92,"tdur":92,"tts":911887},
-{"pid":27411,"tid":27428,"ts":326458011189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":914817,"id":"0xaf88cc2df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458051385,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458051},"tts":914939,"id":"0xaf88cc2df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458051415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":306,"tdur":274,"tts":914970},
-{"pid":27411,"tid":27428,"ts":326458051415,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":40,"keep_awake_time":44},"dur":275,"tdur":274,"tts":914970},
-{"pid":27411,"tid":27428,"ts":326458051659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":915214,"id":"0xaf88cc2ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458091885,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458091},"tts":915366,"id":"0xaf88cc2ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458091885,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":458,"tdur":306,"tts":915366},
-{"pid":27411,"tid":27428,"ts":326458091916,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":40,"keep_awake_time":85},"dur":397,"tdur":244,"tts":915397},
-{"pid":27411,"tid":27428,"ts":326458092282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":915611,"id":"0xaf88cc2ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458112548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":915763,"id":"0xaf88cc28f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458112578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":915763},
-{"pid":27411,"tid":27428,"ts":326458112609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":915794,"id":"0xaf88cc29f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458112639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":915824,"id":"0xaf88cc29f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458112639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":915824},
-{"pid":27411,"tid":27428,"ts":326458115691,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":915946,"id":"0xaf88cc2af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458115691,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":915946},
-{"pid":27411,"tid":27428,"ts":326458115722,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":915977},
-{"pid":27411,"tid":27428,"ts":326458115722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":915977,"id":"0xaf88cc2bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458115752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":916007,"id":"0xaf88cc2bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458115752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6806,"tdur":3754,"tts":916007},
-{"pid":27411,"tid":27428,"ts":326458115874,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":153,"tdur":92,"tts":916068},
-{"pid":27411,"tid":27428,"ts":326458116088,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15082},"dur":6440,"tdur":3540,"tts":916221},
-{"pid":27411,"tid":27428,"ts":326458116088,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":6440,"tdur":3540,"tts":916221},
-{"pid":27411,"tid":27428,"ts":326458116088,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":916221},
-{"pid":27411,"tid":27428,"ts":326458119445,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":918388,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458119476,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":46},"dur":3021,"tdur":1312,"tts":918419},
-{"pid":27411,"tid":27428,"ts":326458119506,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2595,"tdur":885,"tts":918449},
-{"pid":27411,"tid":27428,"ts":326458122375,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458113555.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458119476.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901904.0,"time":326458067896.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458061000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458112761.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458084133.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458122101.0},"coordinates":[{"x":359.75152587890625,"y":679.05224609375}],"trace_id":12884901904.0}},"tts":919639,"id":"0x300000010"},
-{"pid":27411,"tid":27428,"ts":326458122406,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":919639,"id":"0x300000010","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458122436,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":919670},
-{"pid":27411,"tid":27428,"ts":326458122436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":919670,"id":"0xaf88ce3bfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458133271,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458132},"tts":919884,"id":"0xaf88cc2ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458133271,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":30,"tdur":30,"tts":919884},
-{"pid":27411,"tid":27428,"ts":326458133301,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":13,"keep_awake_time":126},"dur":0,"tdur":0,"tts":919914},
-{"pid":27411,"tid":27428,"ts":326458133515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":919975,"id":"0xaf88cc24f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458133546,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":920006},
-{"pid":27411,"tid":27428,"ts":326458133546,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":920006},
-{"pid":27411,"tid":27428,"ts":326458133576,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":920036,"id":"0xaf88cc25f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458133668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":920097,"id":"0xaf88cc25f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458133668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":8393,"tdur":2900,"tts":920097},
-{"pid":27411,"tid":27428,"ts":326458133698,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":91,"tts":920128},
-{"pid":27411,"tid":27428,"ts":326458133820,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11859},"dur":8210,"tdur":2716,"tts":920250},
-{"pid":27411,"tid":27428,"ts":326458133851,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":8149,"tdur":2656,"tts":920280},
-{"pid":27411,"tid":27428,"ts":326458133973,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":244,"tdur":245,"tts":920402},
-{"pid":27411,"tid":27428,"ts":326458134217,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50021444},"tts":920647},
-{"pid":27411,"tid":27428,"ts":326458134217,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":920647},
-{"pid":27411,"tid":27428,"ts":326458134248,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":49689668},"tts":920677},
-{"pid":27411,"tid":27428,"ts":326458134248,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":920677},
-{"pid":27411,"tid":27428,"ts":326458134278,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50021444},"tts":920708},
-{"pid":27411,"tid":27428,"ts":326458134309,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":457,"tdur":458,"tts":920738},
-{"pid":27411,"tid":27428,"ts":326458134309,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":457,"tdur":458,"tts":920738},
-{"pid":27411,"tid":27428,"ts":326458138948,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":335,"tdur":336,"tts":921562},
-{"pid":27411,"tid":27428,"ts":326458139253,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50353220},"tts":921898},
-{"pid":27411,"tid":27428,"ts":326458139283,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":921898},
-{"pid":27411,"tid":27428,"ts":326458139314,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50021444},"tts":921928},
-{"pid":27411,"tid":27428,"ts":326458139314,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":921928},
-{"pid":27411,"tid":27428,"ts":326458139345,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50353220},"tts":921959},
-{"pid":27411,"tid":27428,"ts":326458139345,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":1861,"tdur":611,"tts":921989},
-{"pid":27411,"tid":27428,"ts":326458139375,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":1801,"tdur":580,"tts":921989},
-{"pid":27411,"tid":27428,"ts":326458139375,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":488,"tdur":31,"tts":921989},
-{"pid":27411,"tid":27428,"ts":326458142091,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923027,"id":"0xaf88cc26f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458142122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":923058},
-{"pid":27411,"tid":27428,"ts":326458142122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":923088,"id":"0xaf88cc27f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458142183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923119,"id":"0xaf88cc27f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458142183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":923119},
-{"pid":27411,"tid":27428,"ts":326458148867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923210,"id":"0xaf88cc20f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458148867,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":923210},
-{"pid":27411,"tid":27428,"ts":326458148897,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":923241},
-{"pid":27411,"tid":27428,"ts":326458148897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":923241,"id":"0xaf88cc21f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458148928,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923271,"id":"0xaf88cc21f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458148928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5921,"tdur":3571,"tts":923271},
-{"pid":27411,"tid":27428,"ts":326458148958,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":923302},
-{"pid":27411,"tid":27428,"ts":326458149081,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":1372},"dur":5737,"tdur":3388,"tts":923424},
-{"pid":27411,"tid":27428,"ts":326458149111,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5707,"tdur":3358,"tts":923454},
-{"pid":27411,"tid":27428,"ts":326458153170,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":925591,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458153201,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":47},"dur":1617,"tdur":1191,"tts":925621},
-{"pid":27411,"tid":27428,"ts":326458153231,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1313,"tdur":885,"tts":925652},
-{"pid":27411,"tid":27428,"ts":326458154696,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458135072.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458153201.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901905.0,"time":326458084591.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458078000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458133881.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458109129.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458154574.0},"coordinates":[{"x":363.66070556640625,"y":655.66796875}],"trace_id":12884901905.0}},"tts":926690,"id":"0x300000011"},
-{"pid":27411,"tid":27428,"ts":326458154727,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":926720,"id":"0x300000011","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458154727,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":926720},
-{"pid":27411,"tid":27428,"ts":326458154757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":926751,"id":"0xaf88ce34fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458157657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":926903,"id":"0xaf88cc22f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458157657,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":702,"tdur":0,"tts":926903},
-{"pid":27411,"tid":27428,"ts":326458158359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":926934},
-{"pid":27411,"tid":27428,"ts":326458158389,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":926964},
-{"pid":27411,"tid":27428,"ts":326458158389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":926964,"id":"0xaf88cc23f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458158420,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":926995,"id":"0xaf88cc23f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458158450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3449,"tdur":2411,"tts":927025},
-{"pid":27411,"tid":27428,"ts":326458158450,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":61,"tts":927056},
-{"pid":27411,"tid":27428,"ts":326458158572,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11989},"dur":3266,"tdur":2228,"tts":927147},
-{"pid":27411,"tid":27428,"ts":326458158603,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":3235,"tdur":2167,"tts":927178},
-{"pid":27411,"tid":27428,"ts":326458158664,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":275,"tdur":275,"tts":927239},
-{"pid":27411,"tid":27428,"ts":326458158939,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":927514},
-{"pid":27411,"tid":27428,"ts":326458158939,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":927514},
-{"pid":27411,"tid":27428,"ts":326458158969,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50353220},"tts":927544},
-{"pid":27411,"tid":27428,"ts":326458158969,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":927544},
-{"pid":27411,"tid":27428,"ts":326458159000,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":927575},
-{"pid":27411,"tid":27428,"ts":326458159000,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":488,"tts":927575},
-{"pid":27411,"tid":27428,"ts":326458159030,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":458,"tts":927605},
-{"pid":27411,"tid":27428,"ts":326458159824,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":274,"tdur":274,"tts":928338},
-{"pid":27411,"tid":27428,"ts":326458160098,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":928612},
-{"pid":27411,"tid":27428,"ts":326458160098,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":928612},
-{"pid":27411,"tid":27428,"ts":326458160129,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":928643},
-{"pid":27411,"tid":27428,"ts":326458160129,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":928643},
-{"pid":27411,"tid":27428,"ts":326458160159,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":928673},
-{"pid":27411,"tid":27428,"ts":326458160159,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":1038,"tdur":489,"tts":928673},
-{"pid":27411,"tid":27428,"ts":326458160190,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":977,"tdur":427,"tts":928704},
-{"pid":27411,"tid":27428,"ts":326458161899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929467,"id":"0xaf88cc3cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458161930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":929467},
-{"pid":27411,"tid":27428,"ts":326458161930,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":929467},
-{"pid":27411,"tid":27428,"ts":326458161960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":929497,"id":"0xaf88cc3ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458161991,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929528,"id":"0xaf88cc3df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458161991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":929528},
-{"pid":27411,"tid":27428,"ts":326458162021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929558,"id":"0xaf88cc3ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458162021,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":92,"tdur":92,"tts":929558},
-{"pid":27411,"tid":27428,"ts":326458162052,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11990},"dur":61,"tdur":61,"tts":929589},
-{"pid":27411,"tid":27428,"ts":326458162082,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":30,"tts":929620},
-{"pid":27411,"tid":27428,"ts":326458162113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":929650,"id":"0xaf88cc3ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458162143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929681,"id":"0xaf88cc3ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458162143,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":929681},
-{"pid":27411,"tid":27428,"ts":326458164219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929772,"id":"0xaf88cc38f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458164219,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":92,"tts":929772},
-{"pid":27411,"tid":27428,"ts":326458164249,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":929803},
-{"pid":27411,"tid":27428,"ts":326458164310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":929864,"id":"0xaf88cc39f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458164341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929894,"id":"0xaf88cc39f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458164341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6592,"tdur":3510,"tts":929894},
-{"pid":27411,"tid":27428,"ts":326458164371,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":929925},
-{"pid":27411,"tid":27428,"ts":326458164493,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4034},"dur":6440,"tdur":3357,"tts":930047},
-{"pid":27411,"tid":27428,"ts":326458164524,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":6409,"tdur":3327,"tts":930077},
-{"pid":27411,"tid":27428,"ts":326458166508,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":932061,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458166508,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":48},"dur":4395,"tdur":1313,"tts":932061},
-{"pid":27411,"tid":27428,"ts":326458166569,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":3143,"tdur":946,"tts":932122},
-{"pid":27411,"tid":27428,"ts":326458169834,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458162113.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458166538.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901906.0,"time":326458101316.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458095000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458161045.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458129029.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458169743.0},"coordinates":[{"x":368.68145751953125,"y":629.6988525390625}],"trace_id":12884901906.0}},"tts":933190,"id":"0x300000012"},
-{"pid":27411,"tid":27428,"ts":326458169865,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":933221,"id":"0x300000012","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458169926,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":977,"tdur":92,"tts":933282},
-{"pid":27411,"tid":27428,"ts":326458169956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":933312,"id":"0xaf88ce35fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458192847,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":933465,"id":"0xaf88cc3af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458192847,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":933465},
-{"pid":27411,"tid":27428,"ts":326458192877,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":933496,"id":"0xaf88cc3bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458192908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":933526,"id":"0xaf88cc3bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458192908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":933526},
-{"pid":27411,"tid":27428,"ts":326458196143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":933618,"id":"0xaf88cc34f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458196143,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":933648},
-{"pid":27411,"tid":27428,"ts":326458196173,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":933648},
-{"pid":27411,"tid":27428,"ts":326458196173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":933648,"id":"0xaf88cc35f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458196204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":933679,"id":"0xaf88cc35f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458196234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7356,"tdur":3846,"tts":933709},
-{"pid":27411,"tid":27428,"ts":326458196265,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6696},"dur":7325,"tdur":3815,"tts":933740},
-{"pid":27411,"tid":27428,"ts":326458196296,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7263,"tdur":3754,"tts":933770},
-{"pid":27411,"tid":27428,"ts":326458199134,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":935968,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458199164,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":49},"dur":4395,"tdur":1526,"tts":935998},
-{"pid":27411,"tid":27428,"ts":326458199225,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":3754,"tdur":1130,"tts":936059},
-{"pid":27411,"tid":27428,"ts":326458203102,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458194068.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458199195.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901907.0,"time":326458120880.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458111000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458193152.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458163700.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458202979.0},"coordinates":[{"x":374.0750732421875,"y":605.9122314453125}],"trace_id":12884901907.0}},"tts":937311,"id":"0x300000013"},
-{"pid":27411,"tid":27428,"ts":326458203132,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":937341,"id":"0x300000013","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458203193,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458194068.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458199195.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901908.0,"time":326458136292.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458128000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458193182.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458173100.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458202979.0},"coordinates":[{"x":378.3970947265625,"y":585.0145263671875}],"trace_id":12884901908.0}},"tts":937402,"id":"0x300000014"},
-{"pid":27411,"tid":27428,"ts":326458203224,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":937433,"id":"0x300000014","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458203254,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":305,"tdur":61,"tts":937463},
-{"pid":27411,"tid":27428,"ts":326458203285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":937494,"id":"0xaf88ce36fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458221902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":937646,"id":"0xaf88cc36f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458221902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":30,"tts":937677},
-{"pid":27411,"tid":27428,"ts":326458221933,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":937677,"id":"0xaf88cc37f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458221933,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":937677},
-{"pid":27411,"tid":27428,"ts":326458222085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":937707,"id":"0xaf88cc37f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458222085,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":937707},
-{"pid":27411,"tid":27428,"ts":326458225839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":937799,"id":"0xaf88cc30f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458225839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":937799},
-{"pid":27411,"tid":27428,"ts":326458225839,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":0,"tts":937829},
-{"pid":27411,"tid":27428,"ts":326458225870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":937829,"id":"0xaf88cc31f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458225900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":937860,"id":"0xaf88cc31f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458225900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5341,"tdur":3388,"tts":937860},
-{"pid":27411,"tid":27428,"ts":326458225961,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9358},"dur":5250,"tdur":3296,"tts":937921},
-{"pid":27411,"tid":27428,"ts":326458225992,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5219,"tdur":3265,"tts":937952},
-{"pid":27411,"tid":27428,"ts":326458227976,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":939935,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458227976,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":50},"dur":3235,"tdur":1282,"tts":939935},
-{"pid":27411,"tid":27428,"ts":326458228037,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2594,"tdur":1008,"tts":939996},
-{"pid":27411,"tid":27428,"ts":326458230723,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458223672.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458228006.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901910.0,"time":326458171421.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458161000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458222268.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458188116.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458230631.0},"coordinates":[{"x":386.7642822265625,"y":547.5750122070312}],"trace_id":12884901910.0}},"tts":941095,"id":"0x300000016"},
-{"pid":27411,"tid":27428,"ts":326458230753,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":941126,"id":"0x300000016","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458230753,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":458,"tdur":61,"tts":941126},
-{"pid":27411,"tid":27428,"ts":326458230784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":941156,"id":"0xaf88ce37fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458247417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":941309,"id":"0xaf88cc32f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458247448,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":941339},
-{"pid":27411,"tid":27428,"ts":326458247448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":941339,"id":"0xaf88cc33f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458247478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":941370,"id":"0xaf88cc33f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458247509,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":941400},
-{"pid":27411,"tid":27428,"ts":326458251812,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":941492,"id":"0xaf88ccccf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458251812,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":91,"tts":941492},
-{"pid":27411,"tid":27474,"ts":326458203407,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41080,"id":"0xc4c0e202"},
-{"pid":27411,"tid":27474,"ts":326458203407,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":41080},
-{"pid":27411,"tid":27474,"ts":326458221597,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":41233},
-{"pid":27411,"tid":27474,"ts":326458221627,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":123,"tdur":122,"tts":41263},
-{"pid":27411,"tid":27474,"ts":326458221627,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41263,"id":"0xccc38306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458221658,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41294,"id":"0xc4c0e30a"},
-{"pid":27411,"tid":27474,"ts":326458221688,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":41324,"id":"0xaf88cc36f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458225687,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":41446},
-{"pid":27411,"tid":27474,"ts":326458225717,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":41477},
-{"pid":27411,"tid":27474,"ts":326458225717,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41477,"id":"0xba441802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458225748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":41507,"id":"0xaf88cc30f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458230875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":41629,"id":"0xaf88ce37fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458230906,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":41660},
-{"pid":27411,"tid":27474,"ts":326458230906,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41660,"id":"0xc4c0e502"},
-{"pid":27411,"tid":27474,"ts":326458247173,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":41751},
-{"pid":27411,"tid":27474,"ts":326458247204,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":41782},
-{"pid":27411,"tid":27474,"ts":326458247204,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41812,"id":"0xccc38a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458247234,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":41812,"id":"0xc4c0e60a"},
-{"pid":27411,"tid":27474,"ts":326458247295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":41873,"id":"0xaf88cc32f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458251659,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":123,"tdur":122,"tts":41965},
-{"pid":27411,"tid":27474,"ts":326458251690,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":41996},
-{"pid":27411,"tid":27474,"ts":326458251721,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42026,"id":"0xba441c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458251721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":42026,"id":"0xaf88ccccf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458256207,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":42148,"id":"0xaf88ce30fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458256238,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":42179},
-{"pid":27411,"tid":27474,"ts":326458256238,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42179,"id":"0xc4c0e802"},
-{"pid":27411,"tid":27474,"ts":326458267500,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":213,"tdur":214,"tts":42270},
-{"pid":27411,"tid":27474,"ts":326458267530,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":42301},
-{"pid":27411,"tid":27474,"ts":326458267561,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42331,"id":"0xccc38e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458267561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":42331,"id":"0xaf88cccef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458267622,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":61,"tts":42392},
-{"pid":27411,"tid":27474,"ts":326458267622,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42392,"id":"0xccc38f06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458267652,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42423,"id":"0xc4c0e90a"},
-{"pid":27411,"tid":27474,"ts":326458267683,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":42453,"id":"0xaf88cccff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458275649,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":42545},
-{"pid":27411,"tid":27474,"ts":326458275679,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":42575},
-{"pid":27411,"tid":27474,"ts":326458275679,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42575,"id":"0xba442202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458275710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":42606,"id":"0xaf88cccaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458281203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":42728,"id":"0xaf88ce31fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458281234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":42759},
-{"pid":27411,"tid":27474,"ts":326458281234,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42759,"id":"0xc4c0eb02"},
-{"pid":27411,"tid":27474,"ts":326458294937,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":183,"tts":42850},
-{"pid":27411,"tid":27474,"ts":326458294968,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":42881},
-{"pid":27411,"tid":27474,"ts":326458294998,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42911,"id":"0xccc39306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458294998,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":42911,"id":"0xc4c0ec0a"},
-{"pid":27411,"tid":27474,"ts":326458295059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":42972,"id":"0xaf88ccc4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458297104,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":244,"tts":43064},
-{"pid":27411,"tid":27474,"ts":326458297135,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":43094},
-{"pid":27411,"tid":27474,"ts":326458297135,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43094,"id":"0xba442502","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458297165,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":43125,"id":"0xaf88ccc6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458297226,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":43186},
-{"pid":27411,"tid":27474,"ts":326458297226,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43186,"id":"0xba442606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458297257,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43216,"id":"0xc4c0ee0a"},
-{"pid":27411,"tid":27474,"ts":326458297287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":43247,"id":"0xaf88ccc0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458298875,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":43338},
-{"pid":27411,"tid":27474,"ts":326458298905,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":43369},
-{"pid":27411,"tid":27474,"ts":326458298905,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43369,"id":"0xba442802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458298936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":43399,"id":"0xaf88ccc2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458303971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":43522,"id":"0xaf88ce32fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458303971,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":43522},
-{"pid":27411,"tid":27474,"ts":326458303971,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43522,"id":"0xc4c0f002"},
-{"pid":27411,"tid":27474,"ts":326458320727,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":275,"tdur":244,"tts":43644},
-{"pid":27411,"tid":27474,"ts":326458320788,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":43674},
-{"pid":27411,"tid":27474,"ts":326458320788,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43674,"id":"0xccc39902","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458251812,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":941492},
-{"pid":27411,"tid":27428,"ts":326458251812,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":941492},
-{"pid":27411,"tid":27428,"ts":326458251873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":941553,"id":"0xaf88cccdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458251904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":941583,"id":"0xaf88cccdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458251934,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4304,"tdur":3510,"tts":941614},
-{"pid":27411,"tid":27428,"ts":326458251965,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12020},"dur":4242,"tdur":3418,"tts":941675},
-{"pid":27411,"tid":27428,"ts":326458251995,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4212,"tdur":3418,"tts":941675},
-{"pid":27411,"tid":27428,"ts":326458254345,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":943750,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458254345,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":51},"dur":1862,"tdur":1343,"tts":943750},
-{"pid":27411,"tid":27428,"ts":326458254406,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1465,"tdur":947,"tts":943811},
-{"pid":27411,"tid":27428,"ts":326458255963,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458248180.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458254376.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901911.0,"time":326458185552.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458178000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458247448.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458221261.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458255871.0},"coordinates":[{"x":391.1382751464844,"y":531.4745483398438}],"trace_id":12884901911.0}},"tts":944849,"id":"0x300000017"},
-{"pid":27411,"tid":27428,"ts":326458255993,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":944880,"id":"0x300000017","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458256085,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458248180.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458254376.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901912.0,"time":326458201545.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458195000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458247478.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458226236.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458255871.0},"coordinates":[{"x":396.3940124511719,"y":515.5020141601562}],"trace_id":12884901912.0}},"tts":944971,"id":"0x300000018"},
-{"pid":27411,"tid":27428,"ts":326458256115,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":945002,"id":"0x300000018","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458256115,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":62,"tdur":61,"tts":945002},
-{"pid":27411,"tid":27428,"ts":326458256146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":945032,"id":"0xaf88ce30fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458267866,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":945215,"id":"0xaf88cccef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458267896,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":945215},
-{"pid":27411,"tid":27428,"ts":326458267896,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":945215},
-{"pid":27411,"tid":27428,"ts":326458267927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":945246,"id":"0xaf88ccc8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458267957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":945276,"id":"0xaf88cccff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458267957,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":945276},
-{"pid":27411,"tid":27428,"ts":326458267988,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":945307,"id":"0xaf88ccc8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458267988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":641,"tdur":305,"tts":945338},
-{"pid":27411,"tid":27428,"ts":326458268049,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":92,"tts":945368},
-{"pid":27411,"tid":27428,"ts":326458268171,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12066},"dur":427,"tdur":122,"tts":945490},
-{"pid":27411,"tid":27428,"ts":326458268171,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":397,"tdur":92,"tts":945490},
-{"pid":27411,"tid":27428,"ts":326458268202,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":106},"dur":30,"tdur":30,"tts":945521},
-{"pid":27411,"tid":27428,"ts":326458268232,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":212},"dur":0,"tdur":0,"tts":945551},
-{"pid":27411,"tid":27428,"ts":326458268232,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":192},"dur":31,"tdur":0,"tts":945582},
-{"pid":27411,"tid":27428,"ts":326458268263,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":185},"dur":305,"tdur":0,"tts":945582},
-{"pid":27411,"tid":27428,"ts":326458268598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":945612,"id":"0xaf88ccc9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458268629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":945643,"id":"0xaf88ccc9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458268629,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":945643},
-{"pid":27411,"tid":27428,"ts":326458275832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":945765,"id":"0xaf88cccaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458275832,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":945765},
-{"pid":27411,"tid":27428,"ts":326458275832,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":945795},
-{"pid":27411,"tid":27428,"ts":326458275862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":945795,"id":"0xaf88cccbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458275893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":945826,"id":"0xaf88cccbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458275893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5463,"tdur":3784,"tts":945826},
-{"pid":27411,"tid":27428,"ts":326458275923,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":61,"tts":945887},
-{"pid":27411,"tid":27428,"ts":326458276045,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14998},"dur":5280,"tdur":3571,"tts":946009},
-{"pid":27411,"tid":27428,"ts":326458276076,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5249,"tdur":3571,"tts":946009},
-{"pid":27411,"tid":27428,"ts":326458277144,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":185},"dur":31,"tdur":0,"tts":947077},
-{"pid":27411,"tid":27428,"ts":326458277236,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":192},"dur":30,"tdur":0,"tts":947199},
-{"pid":27411,"tid":27428,"ts":326458277632,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":212},"dur":31,"tdur":31,"tts":947565},
-{"pid":27411,"tid":27428,"ts":326458277693,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":106},"dur":31,"tdur":30,"tts":947627},
-{"pid":27411,"tid":27428,"ts":326458278365,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":948328,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458278395,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":52},"dur":2930,"tdur":1252,"tts":948328},
-{"pid":27411,"tid":27428,"ts":326458278426,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1526,"tdur":885,"tts":948359},
-{"pid":27411,"tid":27428,"ts":326458280227,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458272780.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458278395.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901914.0,"time":326458234629.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458228000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458268812.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458244457.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458279952.0},"coordinates":[{"x":408.2926940917969,"y":487.4405517578125}],"trace_id":12884901914.0}},"tts":949427,"id":"0x30000001a"},
-{"pid":27411,"tid":27428,"ts":326458280227,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":949427,"id":"0x30000001a","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458280257,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":1038,"tdur":91,"tts":949458},
-{"pid":27411,"tid":27428,"ts":326458280288,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":949488,"id":"0xaf88ce31fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458280288,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":824,"tdur":0,"tts":949488},
-{"pid":27411,"tid":27428,"ts":326458295121,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949671,"id":"0xaf88ccc4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458295151,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":949702},
-{"pid":27411,"tid":27428,"ts":326458295182,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":949732,"id":"0xaf88ccc5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458295212,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949763,"id":"0xaf88ccc5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458295212,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":949763},
-{"pid":27411,"tid":27428,"ts":326458297226,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949824,"id":"0xaf88ccc6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458297257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":949855},
-{"pid":27411,"tid":27428,"ts":326458297257,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":949855},
-{"pid":27411,"tid":27428,"ts":326458297257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":949855,"id":"0xaf88ccc7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458297348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949946,"id":"0xaf88ccc7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458297348,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":949946},
-{"pid":27411,"tid":27428,"ts":326458297410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":183,"tdur":183,"tts":950007},
-{"pid":27411,"tid":27428,"ts":326458297471,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15054},"dur":91,"tdur":92,"tts":950068},
-{"pid":27411,"tid":27428,"ts":326458297471,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":950068},
-{"pid":27411,"tid":27428,"ts":326458297593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950190,"id":"0xaf88ccc0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458297623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":950221},
-{"pid":27411,"tid":27428,"ts":326458297623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":950221,"id":"0xaf88ccc1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458297654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950251,"id":"0xaf88ccc1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458297654,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":950251},
-{"pid":27411,"tid":27428,"ts":326458298997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950373,"id":"0xaf88ccc2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458298997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":950373},
-{"pid":27411,"tid":27428,"ts":326458299027,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":950404},
-{"pid":27411,"tid":27428,"ts":326458299027,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":950404,"id":"0xaf88ccc3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458299058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950434,"id":"0xaf88ccc3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458299058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4852,"tdur":3602,"tts":950434},
-{"pid":27411,"tid":27428,"ts":326458299088,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":1333},"dur":4792,"tdur":3510,"tts":950495},
-{"pid":27411,"tid":27428,"ts":326458299119,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4761,"tdur":3510,"tts":950495},
-{"pid":27411,"tid":27428,"ts":326458301957,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":952723,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458301957,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":53},"dur":1923,"tdur":1251,"tts":952754},
-{"pid":27411,"tid":27428,"ts":326458302018,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1618,"tdur":977,"tts":952784},
-{"pid":27411,"tid":27428,"ts":326458303758,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458296036.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458301988.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901915.0,"time":326458252667.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458245000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458295365.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458264325.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458303636.0},"coordinates":[{"x":416.71826171875,"y":471.3560791015625}],"trace_id":12884901915.0}},"tts":953883,"id":"0x30000001b"},
-{"pid":27411,"tid":27428,"ts":326458303788,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":953914,"id":"0x30000001b","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458303819,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":30,"tdur":31,"tts":953944},
-{"pid":27411,"tid":27428,"ts":326458303819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":953944,"id":"0xaf88ce32fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458320941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954127,"id":"0xaf88ccdcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458320941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":702,"tdur":92,"tts":954127},
-{"pid":27411,"tid":27428,"ts":326458321582,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":954158},
-{"pid":27411,"tid":27428,"ts":326458321612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":954188,"id":"0xaf88ccdef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458321643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954219,"id":"0xaf88ccddf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458321643,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":954219},
-{"pid":27411,"tid":27428,"ts":326458321765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":31,"tts":954249},
-{"pid":27411,"tid":27428,"ts":326458321765,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":31,"tts":954249},
-{"pid":27411,"tid":27428,"ts":326458321948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954310,"id":"0xaf88ccdef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458321948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":244,"tdur":245,"tts":954310},
-{"pid":27411,"tid":27428,"ts":326458321978,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":954341},
-{"pid":27411,"tid":27428,"ts":326458322101,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12074},"dur":61,"tdur":61,"tts":954463},
-{"pid":27411,"tid":27428,"ts":326458322131,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":30,"tts":954494},
-{"pid":27411,"tid":27428,"ts":326458322162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":954524,"id":"0xaf88ccdff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458322192,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954555,"id":"0xaf88ccdff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458322223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":954585},
-{"pid":27411,"tid":27428,"ts":326458323657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954646,"id":"0xaf88ccd8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458323688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":30,"tts":954677},
-{"pid":27411,"tid":27428,"ts":326458323688,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":183,"tdur":30,"tts":954677},
-{"pid":27411,"tid":27428,"ts":326458323840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":954677,"id":"0xaf88ccd9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458323901,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954768,"id":"0xaf88ccd9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458323901,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":954768},
-{"pid":27411,"tid":27428,"ts":326458324023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":214,"tts":954768},
-{"pid":27411,"tid":27428,"ts":326458324054,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":954799},
-{"pid":27411,"tid":27428,"ts":326458324145,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":1375},"dur":92,"tdur":61,"tts":954890},
-{"pid":27411,"tid":27428,"ts":326458324145,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":954890},
-{"pid":27411,"tid":27428,"ts":326458324542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954982,"id":"0xaf88ccdaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458324573,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":955012},
-{"pid":27411,"tid":27428,"ts":326458324573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":955012,"id":"0xaf88ccdbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458324603,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":955043,"id":"0xaf88ccdbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458324634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":955074},
-{"pid":27411,"tid":27428,"ts":326458325275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":955135,"id":"0xaf88ccd4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458325305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":955165},
-{"pid":27411,"tid":27428,"ts":326458325305,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":955165},
-{"pid":27411,"tid":27428,"ts":326458325336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":955196,"id":"0xaf88ccd5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458325336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":955196,"id":"0xaf88ccd5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458325366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4059,"tdur":3663,"tts":955226},
-{"pid":27411,"tid":27428,"ts":326458325397,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3887},"dur":3998,"tdur":3601,"tts":955257},
-{"pid":27411,"tid":27428,"ts":326458325458,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3937,"tdur":3540,"tts":955318},
-{"pid":27411,"tid":27474,"ts":326458320819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":43705,"id":"0xaf88ccdcf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458320910,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":43796},
-{"pid":27411,"tid":27474,"ts":326458320910,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43796,"id":"0xccc39a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458320941,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":43827,"id":"0xc4c0f10a"},
-{"pid":27411,"tid":27474,"ts":326458320971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":43857,"id":"0xaf88ccddf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458323535,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":397,"tdur":244,"tts":43949},
-{"pid":27411,"tid":27474,"ts":326458323565,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":43979},
-{"pid":27411,"tid":27474,"ts":326458323596,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44010,"id":"0xba442d02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458323596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":44010,"id":"0xaf88ccd8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458323627,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":274,"tdur":91,"tts":44071},
-{"pid":27411,"tid":27474,"ts":326458323657,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44071,"id":"0xba442e06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458323657,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44071,"id":"0xc4c0f30a"},
-{"pid":27411,"tid":27474,"ts":326458323871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":44162,"id":"0xaf88ccdaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458325153,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":44224},
-{"pid":27411,"tid":27474,"ts":326458325183,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":44254},
-{"pid":27411,"tid":27474,"ts":326458325214,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44285,"id":"0xba443002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458325214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":44285,"id":"0xaf88ccd4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458329395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":44376,"id":"0xaf88ce33fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458329425,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":44407},
-{"pid":27411,"tid":27474,"ts":326458329425,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44407,"id":"0xc4c0f502"},
-{"pid":27411,"tid":27474,"ts":326458342915,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":214,"tts":44498},
-{"pid":27411,"tid":27474,"ts":326458342946,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":44529},
-{"pid":27411,"tid":27474,"ts":326458342976,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44559,"id":"0xccc3a002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458342976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":44559,"id":"0xaf88ccd6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458343037,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":44620},
-{"pid":27411,"tid":27474,"ts":326458343037,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44620,"id":"0xccc3a106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458343068,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44651,"id":"0xc4c0f60a"},
-{"pid":27411,"tid":27474,"ts":326458343099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":44681,"id":"0xaf88ccd7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458346242,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":44773},
-{"pid":27411,"tid":27474,"ts":326458346273,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":44803},
-{"pid":27411,"tid":27474,"ts":326458346273,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44803,"id":"0xba443402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458346303,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":44834,"id":"0xaf88ccd2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458351217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":44956,"id":"0xaf88ceccfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458351247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":44987},
-{"pid":27411,"tid":27474,"ts":326458351247,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":44987,"id":"0xc4c0f802"},
-{"pid":27411,"tid":27474,"ts":326458358694,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":153,"tts":45078},
-{"pid":27411,"tid":27474,"ts":326458358725,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":45109},
-{"pid":27411,"tid":27474,"ts":326458358755,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45139,"id":"0xccc3a506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458358755,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45139,"id":"0xc4c0f90a"},
-{"pid":27411,"tid":27474,"ts":326458358817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":45200,"id":"0xaf88ccecf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458362235,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":45292},
-{"pid":27411,"tid":27474,"ts":326458362296,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":45322},
-{"pid":27411,"tid":27474,"ts":326458362296,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45322,"id":"0xba443802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458362326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":45353,"id":"0xaf88cceef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458366172,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":45475,"id":"0xaf88cecdfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458366202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":45505},
-{"pid":27411,"tid":27474,"ts":326458366202,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45505,"id":"0xc4c0fb02"},
-{"pid":27411,"tid":27474,"ts":326458375359,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":45627},
-{"pid":27411,"tid":27474,"ts":326458375389,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":45658},
-{"pid":27411,"tid":27474,"ts":326458375389,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45658,"id":"0xccc3a906","bp":"e"},{"pid":27443,"tid":27469,"ts":326458130982,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":275080,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458131653,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":275782},
-{"pid":27443,"tid":27469,"ts":326458131684,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":671,"tdur":671,"tts":275782},
-{"pid":27443,"tid":27469,"ts":326458131684,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":671,"tdur":641,"tts":275812},
-{"pid":27443,"tid":27469,"ts":326458131714,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":52,"tileId":{"id_ref":"0x79920038"},"tileResolution":"HIGH_RESOLUTION"}},"tts":275812},
-{"pid":27443,"tid":27469,"ts":326458131714,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":275812},
-{"pid":27443,"tid":27469,"ts":326458131775,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":275873},
-{"pid":27443,"tid":27469,"ts":326458131775,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":52,"tileId":{"id_ref":"0x79920038"},"tileResolution":"HIGH_RESOLUTION"}},"tts":275873},
-{"pid":27443,"tid":27469,"ts":326458131806,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":275904,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458132325,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":276423},
-{"pid":27443,"tid":27469,"ts":326458132355,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":276453},
-{"pid":27443,"tid":27469,"ts":326458132355,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":672,"tdur":671,"tts":276453},
-{"pid":27443,"tid":27469,"ts":326458132386,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":52,"tileId":{"id_ref":"0x7bde5668"},"tileResolution":"HIGH_RESOLUTION"}},"tts":276484},
-{"pid":27443,"tid":27469,"ts":326458132386,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":276484},
-{"pid":27443,"tid":27469,"ts":326458132416,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":276545},
-{"pid":27443,"tid":27469,"ts":326458132447,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":52,"tileId":{"id_ref":"0x7bde5668"},"tileResolution":"HIGH_RESOLUTION"}},"tts":276545},
-{"pid":27443,"tid":27469,"ts":326458132477,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":276575,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458133027,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":277124},
-{"pid":27443,"tid":27471,"ts":326458133393,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":336944},
-{"pid":27443,"tid":27471,"ts":326458133424,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":336944},
-{"pid":27443,"tid":27471,"ts":326458133454,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":336975},
-{"pid":27443,"tid":27471,"ts":326458133454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":336975,"id":"0xaf88ab3bf182217a"},
-{"pid":27443,"tid":27471,"ts":326458150668,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":337005},
-{"pid":27443,"tid":27471,"ts":326458150698,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":337036},
-{"pid":27443,"tid":27471,"ts":326458150729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337066,"id":"0xaf88ab37f182217a"},
-{"pid":27443,"tid":27471,"ts":326458150759,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":337097},
-{"pid":27443,"tid":27471,"ts":326458150759,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":337097},
-{"pid":27443,"tid":27459,"ts":326458083370,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5776438},
-{"pid":27443,"tid":27459,"ts":326458083431,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":763,"tdur":671,"tts":5776499},
-{"pid":27443,"tid":27459,"ts":326458083553,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":611,"tdur":519,"tts":5776621},
-{"pid":27443,"tid":27459,"ts":326458083706,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5776682},
-{"pid":27443,"tid":27459,"ts":326458084042,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":3,"frame":"0x78c60000"}},"tts":5777048,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458084072,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":5777048},
-{"pid":27443,"tid":27459,"ts":326458084103,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5777079,"id":"0xaf88ab11f182217a"},
-{"pid":27443,"tid":27459,"ts":326458084133,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5777140},
-{"pid":27443,"tid":27459,"ts":326458084255,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":397,"tdur":92,"tts":5777231},
-{"pid":27443,"tid":27459,"ts":326458084255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5777231,"id":"0xaf88adcaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458084713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5777384,"id":"0xaf88a83cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458084744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":0,"tts":5777414},
-{"pid":27443,"tid":27459,"ts":326458084927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5777445,"id":"0xaf88a83df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458084927,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":61,"tts":5777445},
-{"pid":27443,"tid":27459,"ts":326458084927,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":30,"tts":5777445},
-{"pid":27443,"tid":27459,"ts":326458085659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5777598,"id":"0xaf88a83ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458085659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":22219,"tdur":19716,"tts":5777598},
-{"pid":27443,"tid":27459,"ts":326458085690,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5777628,"id":"0xaf88a83ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458085690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5777628,"id":"0xaf88ab16f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458085690,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":22157,"tdur":19624,"tts":5777659},
-{"pid":27443,"tid":27459,"ts":326458085720,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":57},"tts":5777659},
-{"pid":27443,"tid":27459,"ts":326458085720,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":5777659},
-{"pid":27443,"tid":27459,"ts":326458085751,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":17915,"tdur":16298,"tts":5777720},
-{"pid":27443,"tid":27459,"ts":326458085781,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":5777720},
-{"pid":27443,"tid":27459,"ts":326458085842,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":3,"frame":"0x78c60000"}},"dur":17824,"tdur":16237,"tts":5777781},
-{"pid":27443,"tid":27459,"ts":326458085934,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":17732,"tdur":16146,"tts":5777872},
-{"pid":27443,"tid":27459,"ts":326458085934,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5777872},
-{"pid":27443,"tid":27459,"ts":326458087063,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5778086},
-{"pid":27443,"tid":27459,"ts":326458087124,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":5778147},
-{"pid":27443,"tid":27459,"ts":326458091977,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5783000},
-{"pid":27443,"tid":27459,"ts":326458092130,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5783152},
-{"pid":27443,"tid":27459,"ts":326458092221,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5783244},
-{"pid":27443,"tid":27459,"ts":326458092374,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5783396},
-{"pid":27443,"tid":27459,"ts":326458093015,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5784037},
-{"pid":27443,"tid":27459,"ts":326458093106,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5784129},
-{"pid":27443,"tid":27459,"ts":326458093167,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5784190},
-{"pid":27443,"tid":27459,"ts":326458093228,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5784251},
-{"pid":27443,"tid":27459,"ts":326458093381,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5784404},
-{"pid":27443,"tid":27459,"ts":326458093442,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5784465},
-{"pid":27443,"tid":27459,"ts":326458093503,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5784526},
-{"pid":27443,"tid":27459,"ts":326458093533,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5784587},
-{"pid":27443,"tid":27459,"ts":326458094113,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5785136},
-{"pid":27443,"tid":27459,"ts":326458094296,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5785319},
-{"pid":27443,"tid":27459,"ts":326458094388,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5785411},
-{"pid":27443,"tid":27459,"ts":326458094602,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5785624},
-{"pid":27443,"tid":27459,"ts":326458094754,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5785777},
-{"pid":27443,"tid":27459,"ts":326458094968,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5785991},
-{"pid":27443,"tid":27459,"ts":326458095029,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5786052},
-{"pid":27443,"tid":27459,"ts":326458095212,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5786235},
-{"pid":27443,"tid":27459,"ts":326458095395,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5786418},
-{"pid":27443,"tid":27459,"ts":326458095456,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5786479},
-{"pid":27443,"tid":27459,"ts":326458095517,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5786540},
-{"pid":27443,"tid":27459,"ts":326458095548,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5786571},
-{"pid":27443,"tid":27459,"ts":326458095578,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5786632},
-{"pid":27443,"tid":27459,"ts":326458095670,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5786723},
-{"pid":27443,"tid":27459,"ts":326458095731,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5786784},
-{"pid":27443,"tid":27459,"ts":326458095853,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5786876},
-{"pid":27443,"tid":27459,"ts":326458095914,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5786937},
-{"pid":27443,"tid":27459,"ts":326458096006,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5787028},
-{"pid":27443,"tid":27459,"ts":326458096036,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5787059},
-{"pid":27443,"tid":27459,"ts":326458096097,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5787150},
-{"pid":27443,"tid":27459,"ts":326458096433,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5787395},
-{"pid":27443,"tid":27459,"ts":326458096494,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5787456},
-{"pid":27443,"tid":27459,"ts":326458096524,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5787486},
-{"pid":27443,"tid":27466,"ts":326458086758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":218037,"id":"0xaf88ab2cf182217a"},
-{"pid":27443,"tid":27466,"ts":326458102201,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":218129},
-{"pid":27443,"tid":27466,"ts":326458102232,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":218159},
-{"pid":27443,"tid":27466,"ts":326458102232,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":218159,"id":"0xba440102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458102293,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":218220,"id":"0xaf88ab2df182217a"},
-{"pid":27443,"tid":27466,"ts":326458109343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":218342,"id":"0xaf88adcbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458109343,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":218342},
-{"pid":27443,"tid":27466,"ts":326458109343,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":218342,"id":"0xccc36e02"},
-{"pid":27443,"tid":27466,"ts":326458110167,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":218434},
-{"pid":27443,"tid":27466,"ts":326458110198,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":218464},
-{"pid":27443,"tid":27466,"ts":326458110228,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":218495,"id":"0xba440202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458110259,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":218525},
-{"pid":27443,"tid":27466,"ts":326458110259,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":218525,"id":"0xaf88ab26f182217a"},
-{"pid":27443,"tid":27466,"ts":326458112273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":218647,"id":"0xaf88adc4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458112273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":218647},
-{"pid":27443,"tid":27466,"ts":326458112273,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":218647,"id":"0xccc37006"},
-{"pid":27443,"tid":27466,"ts":326458112578,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":218739},
-{"pid":27443,"tid":27466,"ts":326458112609,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":218769},
-{"pid":27443,"tid":27466,"ts":326458112609,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":218769,"id":"0xc4c0d70a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458112975,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":218861,"id":"0xaf88adc5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458112975,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":218861},
-{"pid":27443,"tid":27466,"ts":326458112975,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":218861,"id":"0xccc37102"},
-{"pid":27443,"tid":27466,"ts":326458114837,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":218953},
-{"pid":27443,"tid":27466,"ts":326458114867,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":218983},
-{"pid":27443,"tid":27466,"ts":326458114898,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219014,"id":"0xba440302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458114928,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":219044,"id":"0xaf88ab20f182217a"},
-{"pid":27443,"tid":27466,"ts":326458122925,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":219136},
-{"pid":27443,"tid":27466,"ts":326458122955,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":219197},
-{"pid":27443,"tid":27466,"ts":326458122986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219197,"id":"0xba440502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458123016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":219227,"id":"0xaf88ab21f182217a"},
-{"pid":27443,"tid":27466,"ts":326458129242,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219380,"id":"0xaf88adc6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458129242,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":219410},
-{"pid":27443,"tid":27466,"ts":326458129273,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219410,"id":"0xccc37202"},
-{"pid":27443,"tid":27466,"ts":326458130158,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":219502},
-{"pid":27443,"tid":27466,"ts":326458130188,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":219502},
-{"pid":27443,"tid":27466,"ts":326458130219,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219533,"id":"0xba440602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458130249,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":219563},
-{"pid":27443,"tid":27466,"ts":326458130249,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":219563,"id":"0xaf88ab39f182217a"},
-{"pid":27443,"tid":27466,"ts":326458133240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219685,"id":"0xaf88adc7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458133240,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":219685},
-{"pid":27443,"tid":27466,"ts":326458133240,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219685,"id":"0xccc37402"},
-{"pid":27443,"tid":27466,"ts":326458133301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219746,"id":"0xaf88adc0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458133332,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":219777},
-{"pid":27443,"tid":27466,"ts":326458133332,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219777,"id":"0xccc37506"},
-{"pid":27443,"tid":27466,"ts":326458133698,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":219838},
-{"pid":27443,"tid":27466,"ts":326458133698,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":219838},
-{"pid":27443,"tid":27466,"ts":326458133729,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219868,"id":"0xc4c0da0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458134278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219929,"id":"0xaf88adc1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458134278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":219929},
-{"pid":27443,"tid":27466,"ts":326458134309,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":219960,"id":"0xccc37602"},
-{"pid":27443,"tid":27466,"ts":326458138063,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":220051},
-{"pid":27443,"tid":27466,"ts":326458138093,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":220082},
-{"pid":27443,"tid":27466,"ts":326458138093,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220082,"id":"0xba440702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458138154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":220143,"id":"0xaf88ab34f182217a"},
-{"pid":27443,"tid":27466,"ts":326458148226,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":220234},
-{"pid":27443,"tid":27466,"ts":326458148256,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":220265},
-{"pid":27443,"tid":27466,"ts":326458148287,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220296,"id":"0xba440802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458148318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":220326,"id":"0xaf88ab36f182217a"},
-{"pid":27443,"tid":27466,"ts":326458152102,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":220418},
-{"pid":27443,"tid":27466,"ts":326458152133,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":220448},
-{"pid":27443,"tid":27466,"ts":326458152133,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220448,"id":"0xba440a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458152163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":220479,"id":"0xaf88abccf182217a"},
-{"pid":27443,"tid":27466,"ts":326458157260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220601,"id":"0xaf88adc2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458157260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":220601},
-{"pid":27443,"tid":27459,"ts":326458096585,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5787578},
-{"pid":27443,"tid":27459,"ts":326458096952,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5787913},
-{"pid":27443,"tid":27459,"ts":326458097074,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5788036},
-{"pid":27443,"tid":27459,"ts":326458097135,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5788127},
-{"pid":27443,"tid":27459,"ts":326458097287,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5788249},
-{"pid":27443,"tid":27459,"ts":326458103636,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5793987},
-{"pid":27443,"tid":27459,"ts":326458103697,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2594,"tdur":2594,"tts":5794048},
-{"pid":27443,"tid":27459,"ts":326458103727,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5794079},
-{"pid":27443,"tid":27459,"ts":326458103727,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5794109},
-{"pid":27443,"tid":27459,"ts":326458103758,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5794109},
-{"pid":27443,"tid":27459,"ts":326458104216,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5794567},
-{"pid":27443,"tid":27459,"ts":326458104246,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5794597},
-{"pid":27443,"tid":27459,"ts":326458104277,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2014,"tdur":2014,"tts":5794628},
-{"pid":27443,"tid":27459,"ts":326458104307,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1832,"tts":5794658},
-{"pid":27443,"tid":27459,"ts":326458104307,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":5794658},
-{"pid":27443,"tid":27459,"ts":326458104643,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":5794994},
-{"pid":27443,"tid":27459,"ts":326458104857,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":5795208},
-{"pid":27443,"tid":27459,"ts":326458104948,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":5795330},
-{"pid":27443,"tid":27459,"ts":326458104979,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":5795330},
-{"pid":27443,"tid":27459,"ts":326458106138,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":5796490},
-{"pid":27443,"tid":27459,"ts":326458106169,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":92,"tts":5796520},
-{"pid":27443,"tid":27459,"ts":326458106291,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":57},"dur":488,"tdur":428,"tts":5796642},
-{"pid":27443,"tid":27459,"ts":326458106291,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":488,"tdur":428,"tts":5796642},
-{"pid":27443,"tid":27459,"ts":326458106627,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":0,"tdur":0,"tts":5796917},
-{"pid":27443,"tid":27459,"ts":326458106657,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":0,"tdur":0,"tts":5796947},
-{"pid":27443,"tid":27459,"ts":326458106657,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":31,"tdur":31,"tts":5796947},
-{"pid":27443,"tid":27459,"ts":326458106688,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":0,"tdur":0,"tts":5796978},
-{"pid":27443,"tid":27459,"ts":326458106688,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":30,"tdur":31,"tts":5796978},
-{"pid":27443,"tid":27459,"ts":326458106718,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":0,"tdur":0,"tts":5797009},
-{"pid":27443,"tid":27459,"ts":326458106718,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":31,"tdur":30,"tts":5797009},
-{"pid":27443,"tid":27459,"ts":326458106749,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":0,"tdur":0,"tts":5797039},
-{"pid":27443,"tid":27459,"ts":326458106779,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":57},"dur":0,"tdur":0,"tts":5797070},
-{"pid":27443,"tid":27459,"ts":326458106810,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5797100,"id":"0x300000010"},
-{"pid":27443,"tid":27459,"ts":326458106810,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":976,"tdur":122,"tts":5797100},
-{"pid":27443,"tid":27459,"ts":326458106840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5797131,"id":"0xaf88ab2ff182217a"},
-{"pid":27443,"tid":27459,"ts":326458107847,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5797283},
-{"pid":27443,"tid":27459,"ts":326458107909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458107},"tts":5797344,"id":"0xaf88a82ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458107909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":5797344},
-{"pid":27443,"tid":27459,"ts":326458107939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5797375,"id":"0xaf88a839f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458107970,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5797436,"id":"0xaf88a83ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458108000,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":5797436},
-{"pid":27443,"tid":27459,"ts":326458108031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5797466,"id":"0xaf88a83af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458108031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5797466,"id":"0xaf88ab01f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458108031,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":30,"tdur":31,"tts":5797466},
-{"pid":27443,"tid":27459,"ts":326458108061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5797497,"id":"0xaf88ab10f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458108122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5797558,"id":"0xaf88a838f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458108122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1221,"tts":5797558},
-{"pid":27443,"tid":27459,"ts":326458108153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5797588,"id":"0xaf88ab17f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458108153,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1190,"tdur":1191,"tts":5797588},
-{"pid":27443,"tid":27459,"ts":326458108214,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1098,"tdur":1099,"tts":5797649},
-{"pid":27443,"tid":27459,"ts":326458108214,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5797649,"id":"0x300000011"},
-{"pid":27443,"tid":27459,"ts":326458108244,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":977,"tdur":977,"tts":5797680},
-{"pid":27443,"tid":27459,"ts":326458108275,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":947,"tts":5797710},
-{"pid":27443,"tid":27459,"ts":326458108336,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5797772},
-{"pid":27443,"tid":27459,"ts":326458108366,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5797802},
-{"pid":27443,"tid":27459,"ts":326458108397,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5797833},
-{"pid":27443,"tid":27459,"ts":326458108427,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5797863},
-{"pid":27443,"tid":27459,"ts":326458108458,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":732,"tdur":702,"tts":5797924},
-{"pid":27443,"tid":27459,"ts":326458108611,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":549,"tdur":550,"tts":5798046},
-{"pid":27443,"tid":27459,"ts":326458108641,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5798077},
-{"pid":27443,"tid":27459,"ts":326458109099,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":4,"frame":"0x78c60000"}},"tts":5798535,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458109099,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":5798535},
-{"pid":27443,"tid":27459,"ts":326458109129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5798565,"id":"0xaf88ab25f182217a"},
-{"pid":27443,"tid":27459,"ts":326458109160,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5798596},
-{"pid":27443,"tid":27477,"ts":326458107054,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1282,"tdur":1282,"tts":217640},
-{"pid":27443,"tid":27477,"ts":326458107054,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":217640},
-{"pid":27443,"tid":27477,"ts":326458107084,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":217671},
-{"pid":27443,"tid":27477,"ts":326458107084,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":217671,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458107115,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":217701},
-{"pid":27443,"tid":27477,"ts":326458107146,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":366,"tts":217732},
-{"pid":27443,"tid":27477,"ts":326458107542,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":793,"tts":218129},
-{"pid":27443,"tid":27477,"ts":326458107542,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":57},"dur":275,"tdur":274,"tts":218129},
-{"pid":27443,"tid":27477,"ts":326458107817,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":57},"dur":30,"tdur":31,"tts":218403},
-{"pid":27443,"tid":27477,"ts":326458107847,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":57},"tts":218434},
-{"pid":27443,"tid":27477,"ts":326458108000,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":218586},
-{"pid":27443,"tid":27477,"ts":326458108031,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":218617},
-{"pid":27443,"tid":27477,"ts":326458108031,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":218617},
-{"pid":27443,"tid":27477,"ts":326458108031,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":218617},
-{"pid":27443,"tid":27477,"ts":326458108153,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":218739},
-{"pid":27443,"tid":27477,"ts":326458108183,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":218770},
-{"pid":27443,"tid":27477,"ts":326458108183,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":218770},
-{"pid":27443,"tid":27477,"ts":326458108183,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":218770},
-{"pid":27443,"tid":27477,"ts":326458108214,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":218800,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458108214,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":218800},
-{"pid":27443,"tid":27477,"ts":326458108244,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":218831},
-{"pid":27443,"tid":27477,"ts":326458108275,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":218861,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458108305,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":218892,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458108305,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":218922,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458108580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":218983,"id":"0xaf88ab28f182217a"},
-{"pid":27443,"tid":27477,"ts":326458108580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":218983},
-{"pid":27443,"tid":27477,"ts":326458108611,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":219014},
-{"pid":27443,"tid":27477,"ts":326458108611,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":219014,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458108641,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":219044},
-{"pid":27443,"tid":27477,"ts":326458108641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":219044,"id":"0xaf88ab2bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458108672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219075,"id":"0xaf88ab29f182217a"},
-{"pid":27443,"tid":27477,"ts":326458108672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":219075},
-{"pid":27443,"tid":27477,"ts":326458108672,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":219075},
-{"pid":27443,"tid":27477,"ts":326458108702,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":219105,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458108702,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":219105},
-{"pid":27443,"tid":27477,"ts":326458108733,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":219136,"id":"0xaf88ab24f182217a"},
-{"pid":27443,"tid":27477,"ts":326458108733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219136,"id":"0xaf88ab2af182217a"},
-{"pid":27443,"tid":27477,"ts":326458108763,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":219166},
-{"pid":27443,"tid":27477,"ts":326458108763,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":219166},
-{"pid":27443,"tid":27477,"ts":326458108763,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":219166,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458108763,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":219166},
-{"pid":27443,"tid":27477,"ts":326458108794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":219197,"id":"0xaf88ab2bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458108794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1922,"tdur":1221,"tts":219197},
-{"pid":27443,"tid":27477,"ts":326458108824,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1862,"tdur":1160,"tts":219227},
-{"pid":27443,"tid":27477,"ts":326458108824,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":219227},
-{"pid":27443,"tid":27477,"ts":326458108824,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":219227},
-{"pid":27443,"tid":27477,"ts":326458108855,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":219258},
-{"pid":27443,"tid":27477,"ts":326458108855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":91,"tts":219258},
-{"pid":27443,"tid":27477,"ts":326458108977,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1709,"tdur":1007,"tts":219380},
-{"pid":27443,"tid":27477,"ts":326458108977,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1709,"tdur":1007,"tts":219380},
-{"pid":27443,"tid":27477,"ts":326458109007,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1648,"tdur":947,"tts":219410},
-{"pid":27443,"tid":27477,"ts":326458109007,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":219410,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458109068,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":219472},
-{"pid":27443,"tid":27477,"ts":326458109099,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219502},
-{"pid":27443,"tid":27477,"ts":326458109129,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219533},
-{"pid":27443,"tid":27477,"ts":326458109129,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":219533},
-{"pid":27443,"tid":27477,"ts":326458109160,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":219563},
-{"pid":27443,"tid":27477,"ts":326458109190,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219594},
-{"pid":27443,"tid":27477,"ts":326458109190,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":219594},
-{"pid":27443,"tid":27477,"ts":326458109221,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219624},
-{"pid":27443,"tid":27477,"ts":326458109251,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219655},
-{"pid":27443,"tid":27477,"ts":326458109251,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219655},
-{"pid":27443,"tid":27477,"ts":326458109282,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":397,"tdur":0,"tts":219685},
-{"pid":27443,"tid":27477,"ts":326458109679,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":219716},
-{"pid":27443,"tid":27459,"ts":326458109221,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":61,"tts":5798687},
-{"pid":27443,"tid":27459,"ts":326458109251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5798687,"id":"0xaf88adcbf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458109374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5798809,"id":"0xaf88a83af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458109374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":5798840},
-{"pid":27443,"tid":27459,"ts":326458111022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5798931,"id":"0xaf88a83bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458111022,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":17030,"tdur":11720,"tts":5798931},
-{"pid":27443,"tid":27459,"ts":326458111052,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5798962,"id":"0xaf88a834f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458111052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5798962,"id":"0xaf88ab11f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458111052,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16969,"tdur":11659,"tts":5798962},
-{"pid":27443,"tid":27459,"ts":326458111083,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":58},"tts":5798992},
-{"pid":27443,"tid":27459,"ts":326458111083,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5798992},
-{"pid":27443,"tid":27459,"ts":326458111113,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":11323,"tdur":8393,"tts":5799023},
-{"pid":27443,"tid":27459,"ts":326458111144,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":5799053},
-{"pid":27443,"tid":27459,"ts":326458111174,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":4,"frame":"0x78c60000"}},"dur":11262,"tdur":8302,"tts":5799114},
-{"pid":27443,"tid":27459,"ts":326458111266,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":11140,"tdur":8210,"tts":5799175},
-{"pid":27443,"tid":27459,"ts":326458111296,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5799206},
-{"pid":27443,"tid":27459,"ts":326458111571,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5799481},
-{"pid":27443,"tid":27459,"ts":326458111602,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":31,"tts":5799511},
-{"pid":27443,"tid":27459,"ts":326458122375,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5807385},
-{"pid":27443,"tid":27459,"ts":326458122467,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3388,"tdur":2564,"tts":5807446},
-{"pid":27443,"tid":27459,"ts":326458123321,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5807477},
-{"pid":27443,"tid":27459,"ts":326458123352,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5807508},
-{"pid":27443,"tid":27459,"ts":326458123352,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5807508},
-{"pid":27443,"tid":27459,"ts":326458123779,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5807935},
-{"pid":27443,"tid":27459,"ts":326458123810,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5807965},
-{"pid":27443,"tid":27459,"ts":326458123840,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2015,"tdur":2014,"tts":5807996},
-{"pid":27443,"tid":27459,"ts":326458123840,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1862,"tdur":1832,"tts":5808026},
-{"pid":27443,"tid":27459,"ts":326458123871,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":5808026},
-{"pid":27443,"tid":27459,"ts":326458124206,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":5808362},
-{"pid":27443,"tid":27459,"ts":326458124420,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":91,"tts":5808576},
-{"pid":27443,"tid":27459,"ts":326458124542,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5808698},
-{"pid":27443,"tid":27459,"ts":326458124542,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":5808698},
-{"pid":27443,"tid":27459,"ts":326458125702,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":5809888},
-{"pid":27443,"tid":27459,"ts":326458125763,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":5809919},
-{"pid":27443,"tid":27459,"ts":326458125885,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":58},"dur":427,"tdur":427,"tts":5810041},
-{"pid":27443,"tid":27459,"ts":326458125885,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":5810041},
-{"pid":27443,"tid":27459,"ts":326458126129,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":31,"tdur":30,"tts":5810285},
-{"pid":27443,"tid":27459,"ts":326458126160,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":30,"tdur":31,"tts":5810315},
-{"pid":27443,"tid":27459,"ts":326458126190,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":0,"tdur":0,"tts":5810346},
-{"pid":27443,"tid":27459,"ts":326458126221,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":0,"tdur":0,"tts":5810376},
-{"pid":27443,"tid":27459,"ts":326458126221,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":30,"tdur":0,"tts":5810376},
-{"pid":27443,"tid":27459,"ts":326458126251,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":0,"tdur":0,"tts":5810407},
-{"pid":27443,"tid":27459,"ts":326458126251,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":31,"tdur":30,"tts":5810407},
-{"pid":27443,"tid":27459,"ts":326458126282,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":0,"tdur":0,"tts":5810437},
-{"pid":27443,"tid":27459,"ts":326458126282,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":58},"dur":30,"tdur":31,"tts":5810437},
-{"pid":27443,"tid":27459,"ts":326458126312,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5810468,"id":"0x300000011"},
-{"pid":27443,"tid":27459,"ts":326458126343,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1617,"tdur":61,"tts":5810499},
-{"pid":27443,"tid":27459,"ts":326458126343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5810499,"id":"0xaf88ab23f182217a"},
-{"pid":27443,"tid":27459,"ts":326458128021,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5810621},
-{"pid":27443,"tid":27459,"ts":326458128083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5810712,"id":"0xaf88a834f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458128113,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2442,"tdur":1099,"tts":5810712},
-{"pid":27443,"tid":27459,"ts":326458128144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5810743,"id":"0xaf88a836f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458128144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5810743,"id":"0xaf88ab12f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458128144,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2380,"tdur":1037,"tts":5810743},
-{"pid":27443,"tid":27459,"ts":326458128235,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2289,"tdur":946,"tts":5810834},
-{"pid":27443,"tid":27459,"ts":326458128235,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5810834,"id":"0x300000012"},
-{"pid":27443,"tid":27459,"ts":326458128266,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":5810865},
-{"pid":27443,"tid":27459,"ts":326458128296,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":794,"tdur":794,"tts":5810895},
-{"pid":27443,"tid":27459,"ts":326458128327,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5810956},
-{"pid":27443,"tid":27459,"ts":326458128388,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5810987},
-{"pid":27443,"tid":27459,"ts":326458128418,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5811017},
-{"pid":27443,"tid":27459,"ts":326458128449,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5811048},
-{"pid":27443,"tid":27459,"ts":326458128479,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":611,"tts":5811078},
-{"pid":27443,"tid":27459,"ts":326458128601,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":427,"tts":5811231},
-{"pid":27443,"tid":27477,"ts":326458109709,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":219746},
-{"pid":27443,"tid":27477,"ts":326458109740,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219777},
-{"pid":27443,"tid":27477,"ts":326458109740,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":219807},
-{"pid":27443,"tid":27477,"ts":326458109770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":219838},
-{"pid":27443,"tid":27477,"ts":326458109801,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":219838},
-{"pid":27443,"tid":27477,"ts":326458109831,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":219868},
-{"pid":27443,"tid":27477,"ts":326458109862,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219899},
-{"pid":27443,"tid":27477,"ts":326458109862,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":219929},
-{"pid":27443,"tid":27477,"ts":326458109892,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":219929},
-{"pid":27443,"tid":27477,"ts":326458109923,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219960},
-{"pid":27443,"tid":27477,"ts":326458109923,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":219960},
-{"pid":27443,"tid":27477,"ts":326458109953,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":219990},
-{"pid":27443,"tid":27477,"ts":326458109984,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":220021},
-{"pid":27443,"tid":27477,"ts":326458109984,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":366,"tdur":0,"tts":220021},
-{"pid":27443,"tid":27477,"ts":326458109984,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":220021},
-{"pid":27443,"tid":27477,"ts":326458110411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":220112},
-{"pid":27443,"tid":27477,"ts":326458110442,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":220143},
-{"pid":27443,"tid":27477,"ts":326458110442,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":220143},
-{"pid":27443,"tid":27477,"ts":326458110472,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":220173},
-{"pid":27443,"tid":27477,"ts":326458110503,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":220204},
-{"pid":27443,"tid":27477,"ts":326458110503,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":220204},
-{"pid":27443,"tid":27477,"ts":326458110533,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":220235},
-{"pid":27443,"tid":27477,"ts":326458110564,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":220265},
-{"pid":27443,"tid":27477,"ts":326458110594,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":220296},
-{"pid":27443,"tid":27477,"ts":326458110625,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":220326},
-{"pid":27443,"tid":27477,"ts":326458110625,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":220326},
-{"pid":27443,"tid":27477,"ts":326458110655,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":220357},
-{"pid":27443,"tid":27477,"ts":326458110686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":220387,"id":"0xaf88ab27f182217a"},
-{"pid":27443,"tid":27477,"ts":326458110716,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220418,"id":"0xaf88ab24f182217a"},
-{"pid":27443,"tid":27477,"ts":326458110716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":220418},
-{"pid":27443,"tid":27477,"ts":326458110716,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":220418},
-{"pid":27443,"tid":27477,"ts":326458110747,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":220448},
-{"pid":27443,"tid":27477,"ts":326458110747,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":220448},
-{"pid":27443,"tid":27477,"ts":326458110747,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":220448},
-{"pid":27443,"tid":27477,"ts":326458110777,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":220479},
-{"pid":27443,"tid":27477,"ts":326458110808,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":220509},
-{"pid":27443,"tid":27477,"ts":326458110838,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":220540},
-{"pid":27443,"tid":27477,"ts":326458110869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220570,"id":"0xaf88ab25f182217a"},
-{"pid":27443,"tid":27477,"ts":326458110869,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":220570},
-{"pid":27443,"tid":27477,"ts":326458110869,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":220570},
-{"pid":27443,"tid":27477,"ts":326458110900,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":58},"tts":220601},
-{"pid":27443,"tid":27477,"ts":326458110930,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":220631,"id":"0xaf88ab11f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458110961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":220662,"id":"0xaf88a83bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458110991,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":220692},
-{"pid":27443,"tid":27477,"ts":326458111022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220723,"id":"0xaf88ab26f182217a"},
-{"pid":27443,"tid":27477,"ts":326458111022,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":220723},
-{"pid":27443,"tid":27477,"ts":326458111022,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":220723},
-{"pid":27443,"tid":27477,"ts":326458111052,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":220753,"id":"0x300000012"},
-{"pid":27443,"tid":27477,"ts":326458111052,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":220753},
-{"pid":27443,"tid":27477,"ts":326458111083,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":220784,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458111113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":220814,"id":"0xaf88ab12f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458111113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":220814,"id":"0xaf88a835f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458111144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220845,"id":"0xaf88ab27f182217a"},
-{"pid":27443,"tid":27477,"ts":326458111174,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2259,"tdur":1435,"tts":220875},
-{"pid":27443,"tid":27477,"ts":326458111174,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2228,"tdur":1404,"tts":220875},
-{"pid":27443,"tid":27477,"ts":326458111174,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":220875},
-{"pid":27443,"tid":27477,"ts":326458111205,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2197,"tdur":1373,"tts":220906},
-{"pid":27443,"tid":27477,"ts":326458111205,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":57},"dur":793,"tdur":793,"tts":220906},
-{"pid":27443,"tid":27477,"ts":326458111235,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":57},"dur":244,"tdur":245,"tts":220936},
-{"pid":27443,"tid":27477,"ts":326458111479,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":57},"dur":31,"tdur":30,"tts":221181},
-{"pid":27443,"tid":27477,"ts":326458111510,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":57},"tts":221211},
-{"pid":27443,"tid":27477,"ts":326458111632,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":221333},
-{"pid":27443,"tid":27477,"ts":326458111663,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":221364},
-{"pid":27443,"tid":27477,"ts":326458111663,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":221364},
-{"pid":27443,"tid":27477,"ts":326458111663,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":221364},
-{"pid":27443,"tid":27477,"ts":326458111693,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":221394,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458111754,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":221455},
-{"pid":27443,"tid":27477,"ts":326458111998,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":221699},
-{"pid":27443,"tid":27477,"ts":326458111998,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":733,"tdur":306,"tts":221699},
-{"pid":27443,"tid":27477,"ts":326458112029,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":221730},
-{"pid":27443,"tid":27477,"ts":326458112059,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":611,"tdur":183,"tts":221761},
-{"pid":27443,"tid":27477,"ts":326458112120,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11729},"dur":0,"tdur":0,"tts":221822},
-{"pid":27443,"tid":27477,"ts":326458112151,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":221852,"id":"0xaf88adc4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458112700,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":221974,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458112761,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":222035,"id":"0x300000010"},
-{"pid":27443,"tid":27477,"ts":326458112761,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":580,"tdur":183,"tts":222035},
-{"pid":27443,"tid":27477,"ts":326458112883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":222157,"id":"0xaf88adc5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458113372,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":222249,"id":"0xaf88ab13f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458114989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":222340,"id":"0xaf88ab20f182217a"},
-{"pid":27443,"tid":27477,"ts":326458115020,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":222340},
-{"pid":27443,"tid":27477,"ts":326458115050,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":222371},
-{"pid":27443,"tid":27477,"ts":326458115050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":222371,"id":"0xaf88ab2cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458116882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458116},"tts":222463,"id":"0xaf88ab2ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458116912,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":222493},
-{"pid":27443,"tid":27477,"ts":326458123108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":222554,"id":"0xaf88ab21f182217a"},
-{"pid":27443,"tid":27477,"ts":326458123108,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":222554},
-{"pid":27443,"tid":27477,"ts":326458123138,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458053204.0,"frame_time_us":326458116809.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":222585},
-{"pid":27443,"tid":27477,"ts":326458123169,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458053204.0,"frame_time_us":326458116809.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":222615},
-{"pid":27443,"tid":27477,"ts":326458123230,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458133475},"dur":30,"tdur":31,"tts":222676},
-{"pid":27443,"tid":27477,"ts":326458123260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":222707,"id":"0xaf88ab22f182217a"},
-{"pid":27443,"tid":27477,"ts":326458126434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":222798,"id":"0xaf88ab23f182217a"},
-{"pid":27443,"tid":27477,"ts":326458126465,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1923,"tdur":1617,"tts":222829},
-{"pid":27443,"tid":27477,"ts":326458126465,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1923,"tdur":1617,"tts":222829},
-{"pid":27443,"tid":27477,"ts":326458126465,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":222829},
-{"pid":27443,"tid":27477,"ts":326458126495,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1893,"tdur":1587,"tts":222859},
-{"pid":27443,"tid":27477,"ts":326458126495,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1893,"tdur":1587,"tts":222859},
-{"pid":27443,"tid":27477,"ts":326458126495,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":222859},
-{"pid":27443,"tid":27477,"ts":326458126526,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":222890},
-{"pid":27443,"tid":27477,"ts":326458126526,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":222920,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458126556,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":222920},
-{"pid":27443,"tid":27477,"ts":326458126587,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":702,"tdur":488,"tts":222951},
-{"pid":27443,"tid":27477,"ts":326458127350,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1007,"tdur":916,"tts":223500},
-{"pid":27443,"tid":27477,"ts":326458127350,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":58},"dur":336,"tdur":244,"tts":223500},
-{"pid":27443,"tid":27477,"ts":326458127716,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":58},"dur":31,"tdur":30,"tts":223775},
-{"pid":27443,"tid":27477,"ts":326458127747,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":58},"tts":223805},
-{"pid":27443,"tid":27477,"ts":326458127899,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":223958},
-{"pid":27443,"tid":27477,"ts":326458127930,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":223989},
-{"pid":27443,"tid":27477,"ts":326458127930,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":152,"tts":223989},
-{"pid":27443,"tid":27477,"ts":326458128083,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":224141},
-{"pid":27443,"tid":27477,"ts":326458128113,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":224172},
-{"pid":27443,"tid":27477,"ts":326458128113,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":4},"dur":214,"tdur":213,"tts":224172},
-{"pid":27443,"tid":27477,"ts":326458128205,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":224263},
-{"pid":27443,"tid":27477,"ts":326458128205,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":224263,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458128235,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":224294},
-{"pid":27443,"tid":27477,"ts":326458128266,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":7,"num_edges":4},"dur":30,"tdur":31,"tts":224324},
-{"pid":27443,"tid":27477,"ts":326458128327,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":224385,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458128357,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":224416,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458128357,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":224416,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458130036,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224538,"id":"0xaf88ab3cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458130066,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":224568},
-{"pid":27443,"tid":27477,"ts":326458130066,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":224568},
-{"pid":27443,"tid":27477,"ts":326458130097,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":224599,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458130097,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":224599},
-{"pid":27443,"tid":27477,"ts":326458130097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":224599,"id":"0xaf88ab3ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458130127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224629,"id":"0xaf88ab3df182217a"},
-{"pid":27443,"tid":27477,"ts":326458130127,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":224660},
-{"pid":27443,"tid":27477,"ts":326458130158,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":224660},
-{"pid":27443,"tid":27477,"ts":326458130158,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":224660,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326458128632,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5811231},
-{"pid":27443,"tid":27459,"ts":326458128968,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":5,"frame":"0x78c60000"}},"tts":5811567,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458128998,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":5811597},
-{"pid":27443,"tid":27459,"ts":326458128998,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5811597,"id":"0xaf88ab3ef182217a"},
-{"pid":27443,"tid":27459,"ts":326458129029,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5811628},
-{"pid":27443,"tid":27459,"ts":326458129120,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":1374,"tdur":31,"tts":5811719},
-{"pid":27443,"tid":27459,"ts":326458129120,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5811750,"id":"0xaf88adc6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458130585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5811841,"id":"0xaf88a835f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458130585,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5811841},
-{"pid":27443,"tid":27459,"ts":326458130616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5811872,"id":"0xaf88ab13f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458130616,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":5811872},
-{"pid":27443,"tid":27459,"ts":326458130616,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":5811872},
-{"pid":27443,"tid":27459,"ts":326458130677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5811933,"id":"0xaf88a836f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458130677,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5811933},
-{"pid":27443,"tid":27459,"ts":326458130707,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5811963,"id":"0xaf88a837f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458130707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5811963,"id":"0xaf88ab2cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458130707,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":5811963},
-{"pid":27443,"tid":27459,"ts":326458130738,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5811994},
-{"pid":27443,"tid":27459,"ts":326458130768,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5812025,"id":"0xaf88a837f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458130799,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5812055},
-{"pid":27443,"tid":27459,"ts":326458133088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5812147,"id":"0xaf88a830f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458133088,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":23043,"tdur":10835,"tts":5812177},
-{"pid":27443,"tid":27459,"ts":326458133118,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5812177,"id":"0xaf88a831f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458133149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5812208,"id":"0xaf88ab2df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458133149,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":6409,"tdur":30,"tts":5812208},
-{"pid":27443,"tid":27459,"ts":326458139558,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16542,"tdur":10712,"tts":5812269},
-{"pid":27443,"tid":27459,"ts":326458139558,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":59},"tts":5812299},
-{"pid":27443,"tid":27459,"ts":326458139589,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5812299},
-{"pid":27443,"tid":27459,"ts":326458139650,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7691,"tdur":7111,"tts":5812391},
-{"pid":27443,"tid":27459,"ts":326458139680,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":0,"tts":5812421},
-{"pid":27443,"tid":27459,"ts":326458139772,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":5,"frame":"0x78c60000"}},"dur":7447,"tdur":6990,"tts":5812482},
-{"pid":27443,"tid":27459,"ts":326458139894,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7294,"tdur":6898,"tts":5812574},
-{"pid":27443,"tid":27459,"ts":326458139894,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5812574},
-{"pid":27443,"tid":27459,"ts":326458140199,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5812818},
-{"pid":27443,"tid":27459,"ts":326458140260,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":5812879},
-{"pid":27443,"tid":27459,"ts":326458147158,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5819472},
-{"pid":27443,"tid":27459,"ts":326458147341,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":6409,"tdur":2838,"tts":5819502},
-{"pid":27443,"tid":27459,"ts":326458147402,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5819563},
-{"pid":27443,"tid":27459,"ts":326458147402,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5819563},
-{"pid":27443,"tid":27459,"ts":326458147432,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5819594},
-{"pid":27443,"tid":27459,"ts":326458149325,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5820051},
-{"pid":27443,"tid":27459,"ts":326458149355,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5820112},
-{"pid":27443,"tid":27459,"ts":326458149386,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4364,"tdur":2197,"tts":5820143},
-{"pid":27443,"tid":27459,"ts":326458149416,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4151,"tdur":2014,"tts":5820143},
-{"pid":27443,"tid":27459,"ts":326458149416,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":306,"tts":5820173},
-{"pid":27443,"tid":27459,"ts":326458149782,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":183,"tts":5820509},
-{"pid":27443,"tid":27459,"ts":326458149996,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":183,"tdur":152,"tts":5820723},
-{"pid":27443,"tid":27459,"ts":326458150179,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5820875},
-{"pid":27443,"tid":27459,"ts":326458151522,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1801,"tdur":1221,"tts":5820906},
-{"pid":27443,"tid":27459,"ts":326458153598,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":5822188},
-{"pid":27443,"tid":27459,"ts":326458153628,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":5822218},
-{"pid":27443,"tid":27459,"ts":326458153750,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":59},"dur":1587,"tdur":489,"tts":5822340},
-{"pid":27443,"tid":27459,"ts":326458153781,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1526,"tdur":427,"tts":5822371},
-{"pid":27443,"tid":27459,"ts":326458155154,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":31,"tdur":30,"tts":5822646},
-{"pid":27443,"tid":27459,"ts":326458155185,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":0,"tdur":0,"tts":5822676},
-{"pid":27443,"tid":27459,"ts":326458155185,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":30,"tdur":31,"tts":5822676},
-{"pid":27443,"tid":27459,"ts":326458155215,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":0,"tdur":0,"tts":5822707},
-{"pid":27443,"tid":27459,"ts":326458155246,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":0,"tdur":0,"tts":5822737},
-{"pid":27443,"tid":27459,"ts":326458155246,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":30,"tdur":0,"tts":5822737},
-{"pid":27443,"tid":27459,"ts":326458155276,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":0,"tdur":0,"tts":5822768},
-{"pid":27443,"tid":27459,"ts":326458155276,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":31,"tdur":30,"tts":5822768},
-{"pid":27443,"tid":27459,"ts":326458155307,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":59},"dur":0,"tdur":0,"tts":5822798},
-{"pid":27443,"tid":27459,"ts":326458155337,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5822829,"id":"0x300000012"},
-{"pid":27443,"tid":27459,"ts":326458155337,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":91,"tts":5822829},
-{"pid":27443,"tid":27477,"ts":326458130158,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":224660},
-{"pid":27443,"tid":27477,"ts":326458130188,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":224690,"id":"0xaf88ab38f182217a"},
-{"pid":27443,"tid":27477,"ts":326458130219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224721,"id":"0xaf88ab3ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458130219,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":224721},
-{"pid":27443,"tid":27477,"ts":326458130219,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":224721},
-{"pid":27443,"tid":27477,"ts":326458130249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224752,"id":"0xaf88ab3ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458130249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1313,"tdur":1312,"tts":224752},
-{"pid":27443,"tid":27477,"ts":326458130280,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1282,"tdur":1282,"tts":224782},
-{"pid":27443,"tid":27477,"ts":326458130280,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":224782},
-{"pid":27443,"tid":27477,"ts":326458130280,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":224782},
-{"pid":27443,"tid":27477,"ts":326458130310,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":123,"tdur":122,"tts":224813},
-{"pid":27443,"tid":27477,"ts":326458130310,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":224813},
-{"pid":27443,"tid":27477,"ts":326458130433,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1129,"tdur":1129,"tts":224935},
-{"pid":27443,"tid":27477,"ts":326458130433,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1129,"tdur":1098,"tts":224935},
-{"pid":27443,"tid":27477,"ts":326458130463,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":916,"tdur":916,"tts":224965},
-{"pid":27443,"tid":27477,"ts":326458130463,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":224965,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458130555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225057},
-{"pid":27443,"tid":27477,"ts":326458130555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":225057},
-{"pid":27443,"tid":27477,"ts":326458130585,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":225087},
-{"pid":27443,"tid":27477,"ts":326458130616,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225118},
-{"pid":27443,"tid":27477,"ts":326458130646,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225148},
-{"pid":27443,"tid":27477,"ts":326458130646,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":225148},
-{"pid":27443,"tid":27477,"ts":326458130677,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225179},
-{"pid":27443,"tid":27477,"ts":326458130677,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":225179},
-{"pid":27443,"tid":27477,"ts":326458130707,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":225209},
-{"pid":27443,"tid":27477,"ts":326458130738,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225240},
-{"pid":27443,"tid":27477,"ts":326458130738,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":225240},
-{"pid":27443,"tid":27477,"ts":326458130768,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225270},
-{"pid":27443,"tid":27477,"ts":326458130799,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225301},
-{"pid":27443,"tid":27477,"ts":326458130799,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":225301},
-{"pid":27443,"tid":27477,"ts":326458130829,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225331},
-{"pid":27443,"tid":27477,"ts":326458130829,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":225362},
-{"pid":27443,"tid":27477,"ts":326458130860,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":225392},
-{"pid":27443,"tid":27477,"ts":326458130890,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225392},
-{"pid":27443,"tid":27477,"ts":326458130921,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225423},
-{"pid":27443,"tid":27477,"ts":326458130921,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":225423},
-{"pid":27443,"tid":27477,"ts":326458130951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225454},
-{"pid":27443,"tid":27477,"ts":326458130951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":225484},
-{"pid":27443,"tid":27477,"ts":326458130982,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":225484},
-{"pid":27443,"tid":27477,"ts":326458131012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225515},
-{"pid":27443,"tid":27477,"ts":326458131043,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225545},
-{"pid":27443,"tid":27477,"ts":326458131043,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":225545},
-{"pid":27443,"tid":27477,"ts":326458131135,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":225667},
-{"pid":27443,"tid":27477,"ts":326458131165,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":225667},
-{"pid":27443,"tid":27477,"ts":326458131196,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225698},
-{"pid":27443,"tid":27477,"ts":326458131226,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225728},
-{"pid":27443,"tid":27477,"ts":326458131226,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":225728},
-{"pid":27443,"tid":27477,"ts":326458131257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":225759},
-{"pid":27443,"tid":27477,"ts":326458131257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":225759},
-{"pid":27443,"tid":27477,"ts":326458131318,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":225820},
-{"pid":27443,"tid":27477,"ts":326458131348,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":225850},
-{"pid":27443,"tid":27477,"ts":326458131348,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":225850},
-{"pid":27443,"tid":27477,"ts":326458131379,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":225881},
-{"pid":27443,"tid":27477,"ts":326458131409,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":59},"tts":225911},
-{"pid":27443,"tid":27477,"ts":326458131440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":225942,"id":"0xaf88ab2df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458131470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":225972,"id":"0xaf88a830f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458131501,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":226003},
-{"pid":27443,"tid":27477,"ts":326458131531,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":226033},
-{"pid":27443,"tid":27477,"ts":326458131531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":226033,"id":"0xaf88ab3af182217a"},
-{"pid":27443,"tid":27477,"ts":326458131562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":226064,"id":"0xaf88ab38f182217a"},
-{"pid":27443,"tid":27477,"ts":326458131562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":123,"tts":226094},
-{"pid":27443,"tid":27477,"ts":326458131592,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":123,"tts":226094},{"pid":27411,"tid":27474,"ts":326458375420,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45688,"id":"0xc4c0fc0a"},
-{"pid":27411,"tid":27474,"ts":326458375450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":45719,"id":"0xaf88cce8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458378716,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":45841},
-{"pid":27411,"tid":27474,"ts":326458378746,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":45841},
-{"pid":27411,"tid":27474,"ts":326458378777,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":45872,"id":"0xba443c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458378777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":45872,"id":"0xaf88cceaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458383721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":45994,"id":"0xaf88cecefec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458383752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":46024},
-{"pid":27411,"tid":27474,"ts":326458383752,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46024,"id":"0xc4c0fe02"},
-{"pid":27411,"tid":27474,"ts":326458391260,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":305,"tdur":274,"tts":46116},
-{"pid":27411,"tid":27474,"ts":326458391321,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":46177},
-{"pid":27411,"tid":27474,"ts":326458391321,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46177,"id":"0xccc3ad02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458391351,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":46207,"id":"0xaf88cce4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458391382,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":152,"tdur":152,"tts":46238},
-{"pid":27411,"tid":27428,"ts":326458327411,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":957271,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458327411,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":957271},
-{"pid":27411,"tid":27428,"ts":326458327472,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":54},"dur":1923,"tdur":1526,"tts":957332},
-{"pid":27411,"tid":27428,"ts":326458327503,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1007,"tts":957363},
-{"pid":27411,"tid":27428,"ts":326458328998,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458322406.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458327472.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901916.0,"time":326458267957.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458261000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458321368.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458293228.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458328907.0},"coordinates":[{"x":426.2973937988281,"y":453.0133056640625}],"trace_id":12884901916.0}},"tts":958461,"id":"0x30000001c"},
-{"pid":27411,"tid":27428,"ts":326458328998,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":958492,"id":"0x30000001c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458329090,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458322406.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458327472.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901917.0,"time":326458286178.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458278000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458321399.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458296769.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458328907.0},"coordinates":[{"x":436.577880859375,"y":435.11370849609375}],"trace_id":12884901917.0}},"tts":958553,"id":"0x30000001d"},
-{"pid":27411,"tid":27428,"ts":326458329090,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":958583,"id":"0x30000001d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458329273,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458322406.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458327472.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901918.0,"time":326458301591.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458295000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458321399.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458303636.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458328907.0},"coordinates":[{"x":444.5183410644531,"y":422.07061767578125}],"trace_id":12884901918.0}},"tts":958736,"id":"0x30000001e"},
-{"pid":27411,"tid":27428,"ts":326458329303,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":958766,"id":"0x30000001e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458329303,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":62,"tts":958766},
-{"pid":27411,"tid":27428,"ts":326458329334,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":958797,"id":"0xaf88ce33fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458343068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":958950,"id":"0xaf88ccd6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458343068,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":61,"tts":958950},
-{"pid":27411,"tid":27428,"ts":326458343068,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":183,"tdur":61,"tts":958950},
-{"pid":27411,"tid":27428,"ts":326458343068,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":30,"tts":958950},
-{"pid":27411,"tid":27428,"ts":326458343251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959011,"id":"0xaf88ccd0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458343282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":959041,"id":"0xaf88ccd7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458343282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":0,"tts":959041},
-{"pid":27411,"tid":27428,"ts":326458343312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":959072,"id":"0xaf88ccd0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458343312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":366,"tdur":244,"tts":959072},
-{"pid":27411,"tid":27428,"ts":326458343343,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":92,"tts":959102},
-{"pid":27411,"tid":27428,"ts":326458343465,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12080},"dur":183,"tdur":61,"tts":959224},
-{"pid":27411,"tid":27428,"ts":326458343495,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":153,"tdur":30,"tts":959255},
-{"pid":27411,"tid":27428,"ts":326458343678,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959316,"id":"0xaf88ccd1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458343709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":959346,"id":"0xaf88ccd1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458343709,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":959346},
-{"pid":27411,"tid":27428,"ts":326458346364,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":959407,"id":"0xaf88ccd2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458346364,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":959407},
-{"pid":27411,"tid":27428,"ts":326458346395,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":959438},
-{"pid":27411,"tid":27428,"ts":326458346395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959438,"id":"0xaf88ccd3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458346425,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":959468,"id":"0xaf88ccd3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458346425,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5830,"tdur":3571,"tts":959499},
-{"pid":27411,"tid":27428,"ts":326458346456,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":959499},
-{"pid":27411,"tid":27428,"ts":326458346578,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6399},"dur":5646,"tdur":3418,"tts":959621},
-{"pid":27411,"tid":27428,"ts":326458346578,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5646,"tdur":3418,"tts":959621},
-{"pid":27411,"tid":27428,"ts":326458348501,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":961544,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458348501,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":55},"dur":3693,"tdur":1465,"tts":961544},
-{"pid":27411,"tid":27428,"ts":326458348562,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2228,"tdur":1129,"tts":961605},
-{"pid":27411,"tid":27428,"ts":326458351003,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458344106.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458348531.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901919.0,"time":326458318102.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458311000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458343404.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458324664.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458350790.0},"coordinates":[{"x":453.546630859375,"y":407.6253662109375}],"trace_id":12884901919.0}},"tts":962887,"id":"0x30000001f"},
-{"pid":27411,"tid":27428,"ts":326458351034,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":962917,"id":"0x30000001f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458351034,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":1160,"tdur":61,"tts":962948},
-{"pid":27411,"tid":27428,"ts":326458351064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":962948,"id":"0xaf88ceccfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458358939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963161,"id":"0xaf88ccecf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458358969,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":963161},
-{"pid":27411,"tid":27428,"ts":326458359000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":963192,"id":"0xaf88ccedf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458359000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963192,"id":"0xaf88ccedf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458359030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":963222},
-{"pid":27411,"tid":27428,"ts":326458362418,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963283,"id":"0xaf88cceef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458362448,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":963314},
-{"pid":27411,"tid":27428,"ts":326458362448,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":963314},
-{"pid":27411,"tid":27428,"ts":326458362448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":963314,"id":"0xaf88cceff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458362479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963345,"id":"0xaf88cceff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458362509,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3693,"tdur":3327,"tts":963375},
-{"pid":27411,"tid":27428,"ts":326458362540,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8911},"dur":3632,"tdur":3265,"tts":963406},
-{"pid":27411,"tid":27428,"ts":326458362571,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3601,"tdur":3235,"tts":963436},
-{"pid":27411,"tid":27428,"ts":326458364493,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":965359,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458364493,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":56},"dur":1648,"tdur":1282,"tts":965359},
-{"pid":27411,"tid":27428,"ts":326458364554,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1343,"tdur":977,"tts":965420},
-{"pid":27411,"tid":27428,"ts":326458366050,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458359763.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458364524.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901920.0,"time":326458335041.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458328000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458359000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458339589.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458365897.0},"coordinates":[{"x":461.7017517089844,"y":394.57720947265625}],"trace_id":12884901920.0}},"tts":966549,"id":"0x300000020"},
-{"pid":27411,"tid":27428,"ts":326458366050,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":966549,"id":"0x300000020","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458366080,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":966580},
-{"pid":27411,"tid":27428,"ts":326458366111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":966610,"id":"0xaf88cecdfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458375572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":966732,"id":"0xaf88cce8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458375572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":966732},
-{"pid":27411,"tid":27428,"ts":326458375572,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":966732},
-{"pid":27411,"tid":27428,"ts":326458375633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":966793,"id":"0xaf88cce9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458375664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":966824,"id":"0xaf88cce9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458375694,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":966854},
-{"pid":27411,"tid":27428,"ts":326458378838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":966915,"id":"0xaf88cceaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458378868,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":966946},
-{"pid":27411,"tid":27428,"ts":326458378868,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":966946},
-{"pid":27411,"tid":27428,"ts":326458378899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":966976,"id":"0xaf88ccebf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458378899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":967007,"id":"0xaf88ccebf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458378929,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4792,"tdur":3388,"tts":967007},
-{"pid":27411,"tid":27428,"ts":326458378960,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11423},"dur":4731,"tdur":3296,"tts":967068},
-{"pid":27411,"tid":27428,"ts":326458378990,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4701,"tdur":3296,"tts":967068},
-{"pid":27411,"tid":27428,"ts":326458380974,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":969052,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458380974,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":57},"dur":2717,"tdur":1312,"tts":969052},
-{"pid":27411,"tid":27428,"ts":326458381005,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1556,"tdur":946,"tts":969113},
-{"pid":27411,"tid":27428,"ts":326458383569,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458376610.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458381005.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901921.0,"time":326458354086.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458345000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458375816.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458356741.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458382561.0},"coordinates":[{"x":469.8777770996094,"y":381.49554443359375}],"trace_id":12884901921.0}},"tts":970242,"id":"0x300000021"},
-{"pid":27411,"tid":27428,"ts":326458383599,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":970273,"id":"0x300000021","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458383599,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":970273},
-{"pid":27411,"tid":27428,"ts":326458383630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":970303,"id":"0xaf88cecefec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458391473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":970486,"id":"0xaf88cce4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458391504,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":244,"tdur":30,"tts":970517},
-{"pid":27411,"tid":27428,"ts":326458391504,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":244,"tdur":30,"tts":970517},
-{"pid":27411,"tid":27428,"ts":326458391504,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":0,"tts":970517},
-{"pid":27411,"tid":27428,"ts":326458391717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":970517,"id":"0xaf88cce6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458391748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":970547,"id":"0xaf88cce5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458391779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":970578},
-{"pid":27411,"tid":27428,"ts":326458391809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":970608,"id":"0xaf88cce6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458391809,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":970608},
-{"pid":27411,"tid":27428,"ts":326458391870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":855,"tdur":366,"tts":970639},
-{"pid":27411,"tid":27428,"ts":326458391901,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":274,"tdur":122,"tts":970669},
-{"pid":27411,"tid":27428,"ts":326458392236,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12175},"dur":183,"tdur":183,"tts":970822},
-{"pid":27411,"tid":27428,"ts":326458392267,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":152,"tdur":122,"tts":970853},
-{"pid":27411,"tid":27428,"ts":326458392267,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":214},"dur":30,"tdur":30,"tts":970853},
-{"pid":27411,"tid":27428,"ts":326458392297,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":170},"dur":31,"tdur":31,"tts":970883},
-{"pid":27411,"tid":27428,"ts":326458392328,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":237},"dur":30,"tdur":30,"tts":970914},
-{"pid":27411,"tid":27428,"ts":326458392358,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":32},"dur":31,"tdur":31,"tts":970944},
-{"pid":27411,"tid":27428,"ts":326458392389,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":145},"dur":0,"tdur":0,"tts":970975},
-{"pid":27411,"tid":27428,"ts":326458392419,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":971005,"id":"0xaf88cce7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458392755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":971036,"id":"0xaf88cce7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458392755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":971036},
-{"pid":27411,"tid":27428,"ts":326458395685,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":971127,"id":"0xaf88cce0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458395716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":971158},
-{"pid":27411,"tid":27428,"ts":326458395716,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":971158},
-{"pid":27411,"tid":27428,"ts":326458395716,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":971188,"id":"0xaf88cce1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458395746,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":971188,"id":"0xaf88cce1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458395777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4608,"tdur":3998,"tts":971219},
-{"pid":27411,"tid":27428,"ts":326458395807,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":971249},
-{"pid":27411,"tid":27428,"ts":326458395929,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14330},"dur":4426,"tdur":3815,"tts":971371},
-{"pid":27411,"tid":27428,"ts":326458395929,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4426,"tdur":3815,"tts":971371},
-{"pid":27411,"tid":27428,"ts":326458396631,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":145},"dur":0,"tdur":0,"tts":972073},
-{"pid":27411,"tid":27428,"ts":326458396723,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":32},"dur":30,"tdur":30,"tts":972165},
-{"pid":27411,"tid":27428,"ts":326458396845,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":237},"dur":30,"tdur":31,"tts":972287},
-{"pid":27411,"tid":27428,"ts":326458397120,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":170},"dur":0,"tdur":0,"tts":972562},
-{"pid":27411,"tid":27428,"ts":326458397211,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":214},"dur":31,"tdur":31,"tts":972653},
-{"pid":27411,"tid":27428,"ts":326458398340,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":973782,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458398340,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":58},"dur":2015,"tdur":1404,"tts":973782},
-{"pid":27411,"tid":27428,"ts":326458398401,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1037,"tts":973844},
-{"pid":27411,"tid":27428,"ts":326458399927,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458393366.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458398371.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901922.0,"time":326458368308.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458361000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458391779.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458372551.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458399805.0},"coordinates":[{"x":478.04193115234375,"y":368.9371337890625}],"trace_id":12884901922.0}},"tts":975003,"id":"0x300000022"},
-{"pid":27411,"tid":27428,"ts":326458399958,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":975034,"id":"0x300000022","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458399958,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":366,"tdur":92,"tts":975064},
-{"pid":27411,"tid":27428,"ts":326458399989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":975064,"id":"0xaf88cecffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458406398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":975278,"id":"0xaf88cce2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458406398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":61,"tts":975309},
-{"pid":27411,"tid":27474,"ts":326458391412,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46268,"id":"0xccc3ae06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458391412,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":46268},
-{"pid":27411,"tid":27474,"ts":326458391473,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46329,"id":"0xc4c0ff0a"},
-{"pid":27411,"tid":27474,"ts":326458391534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":46390,"id":"0xaf88cce5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458395563,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":46452},
-{"pid":27411,"tid":27474,"ts":326458395594,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":46482},
-{"pid":27411,"tid":27474,"ts":326458395594,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46482,"id":"0xba444002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458395624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":46513,"id":"0xaf88cce0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458402552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":46635,"id":"0xaf88cecffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458402552,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":46635},
-{"pid":27411,"tid":27474,"ts":326458402552,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46665,"id":"0xc4c10102"},
-{"pid":27411,"tid":27474,"ts":326458406184,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":46787},
-{"pid":27411,"tid":27474,"ts":326458406215,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":46818},
-{"pid":27411,"tid":27474,"ts":326458406215,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46818,"id":"0xccc3b106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458406245,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":46848,"id":"0xc4c1020a"},
-{"pid":27411,"tid":27474,"ts":326458406276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":46879,"id":"0xaf88cce2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458409236,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":47001},
-{"pid":27411,"tid":27474,"ts":326458409267,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":47031},
-{"pid":27411,"tid":27474,"ts":326458409267,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47031,"id":"0xba444402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458409297,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":47062,"id":"0xaf88ccfcf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458413448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":47153,"id":"0xaf88cec8fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458413479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":47184},
-{"pid":27411,"tid":27474,"ts":326458413479,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47184,"id":"0xc4c10402"},
-{"pid":27411,"tid":27474,"ts":326458435148,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":47276},
-{"pid":27411,"tid":27474,"ts":326458435178,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":123,"tdur":122,"tts":47306},
-{"pid":27411,"tid":27474,"ts":326458435209,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47337,"id":"0xccc3b606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458435209,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47337,"id":"0xc4c1050a"},
-{"pid":27411,"tid":27474,"ts":326458435240,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":47367,"id":"0xaf88ccfef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458438383,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":47489},
-{"pid":27411,"tid":27474,"ts":326458438414,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":47520},
-{"pid":27411,"tid":27474,"ts":326458438414,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47520,"id":"0xba444a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458438444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":47550,"id":"0xaf88ccf8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458442717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":47672,"id":"0xaf88cec9fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458442748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":47703},
-{"pid":27411,"tid":27474,"ts":326458442748,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47703,"id":"0xc4c10702"},
-{"pid":27411,"tid":27474,"ts":326458454498,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":47794},
-{"pid":27411,"tid":27474,"ts":326458454528,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":47825},
-{"pid":27411,"tid":27474,"ts":326458454559,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47855,"id":"0xccc3ba06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458454559,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":47855,"id":"0xc4c1080a"},
-{"pid":27411,"tid":27474,"ts":326458454620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":47916,"id":"0xaf88ccfaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458456726,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":214,"tdur":213,"tts":48039},
-{"pid":27411,"tid":27474,"ts":326458456756,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":48069},
-{"pid":27411,"tid":27474,"ts":326458456756,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48069,"id":"0xba444d02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458456787,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":48100,"id":"0xaf88ccf4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458456848,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":48161},
-{"pid":27411,"tid":27474,"ts":326458456848,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48161,"id":"0xba444e06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458456878,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48191,"id":"0xc4c10a0a"},
-{"pid":27411,"tid":27474,"ts":326458456909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":48222,"id":"0xaf88ccf6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458458252,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":48313},
-{"pid":27411,"tid":27474,"ts":326458458282,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":48344},
-{"pid":27411,"tid":27474,"ts":326458458313,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48374,"id":"0xba445002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458458313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":48374,"id":"0xaf88ccf0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458462128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":48496,"id":"0xaf88cecafec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458462159,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":48527},
-{"pid":27411,"tid":27474,"ts":326458462159,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48527,"id":"0xc4c10c02"},
-{"pid":27411,"tid":27474,"ts":326458471070,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":48618},
-{"pid":27411,"tid":27474,"ts":326458471101,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":48649},
-{"pid":27411,"tid":27474,"ts":326458471131,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48679,"id":"0xccc3be02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458471131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":48679,"id":"0xaf88ccf2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458476045,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":48832},
-{"pid":27411,"tid":27474,"ts":326458476076,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":48863},
-{"pid":27411,"tid":27474,"ts":326458476076,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":48863,"id":"0xccc3c102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458476106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":48893,"id":"0xaf88cc8cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458477388,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":244,"tts":48985},
-{"pid":27411,"tid":27428,"ts":326458406428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":975309,"id":"0xaf88cce3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458406428,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":975309},
-{"pid":27411,"tid":27428,"ts":326458406489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":975400,"id":"0xaf88cce3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458406520,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":975400},
-{"pid":27411,"tid":27428,"ts":326458409358,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":975461,"id":"0xaf88ccfcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458409389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":975492},
-{"pid":27411,"tid":27428,"ts":326458409389,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":975492},
-{"pid":27411,"tid":27428,"ts":326458409389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":975522,"id":"0xaf88ccfdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458409419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":975522,"id":"0xaf88ccfdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458409450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4029,"tdur":3601,"tts":975553},
-{"pid":27411,"tid":27428,"ts":326458409480,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":722},"dur":3968,"tdur":3541,"tts":975583},
-{"pid":27411,"tid":27428,"ts":326458409511,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3937,"tdur":3510,"tts":975614},
-{"pid":27411,"tid":27428,"ts":326458411739,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":977842,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458411739,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":59},"dur":1709,"tdur":1282,"tts":977842},
-{"pid":27411,"tid":27428,"ts":326458411800,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1434,"tdur":1007,"tts":977903},
-{"pid":27411,"tid":27428,"ts":326458413326,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458407222.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458411769.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901923.0,"time":326458384911.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458378000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458406459.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458388360.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458413234.0},"coordinates":[{"x":485.05792236328125,"y":358.3433532714844}],"trace_id":12884901923.0}},"tts":979001,"id":"0x300000023"},
-{"pid":27411,"tid":27428,"ts":326458413356,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":979032,"id":"0x300000023","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458413356,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":30,"tts":979063},
-{"pid":27411,"tid":27428,"ts":326458413387,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":979063,"id":"0xaf88cec8fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458435331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":979246,"id":"0xaf88ccfef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458435331,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":979246},
-{"pid":27411,"tid":27428,"ts":326458435362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":979276,"id":"0xaf88ccfff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458435392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":979307,"id":"0xaf88ccfff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458435392,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":979307},
-{"pid":27411,"tid":27428,"ts":326458438505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":979398,"id":"0xaf88ccf8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458438536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":979429},
-{"pid":27411,"tid":27428,"ts":326458438536,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":979429},
-{"pid":27411,"tid":27428,"ts":326458438536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":979429,"id":"0xaf88ccf9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458438566,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":979459,"id":"0xaf88ccf9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458438597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4151,"tdur":3723,"tts":979490},
-{"pid":27411,"tid":27428,"ts":326458438627,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3484},"dur":4090,"tdur":3663,"tts":979520},
-{"pid":27411,"tid":27428,"ts":326458438688,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4029,"tdur":3602,"tts":979581},
-{"pid":27411,"tid":27428,"ts":326458440855,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":981779,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458440886,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":60},"dur":1801,"tdur":1373,"tts":981779},
-{"pid":27411,"tid":27428,"ts":326458440916,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1435,"tdur":977,"tts":981840},
-{"pid":27411,"tid":27428,"ts":326458442442,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458436430.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458440916.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901924.0,"time":326458403743.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458395000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458435667.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458407283.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458442381.0},"coordinates":[{"x":491.5972900390625,"y":347.07977294921875}],"trace_id":12884901924.0}},"tts":982939,"id":"0x300000024"},
-{"pid":27411,"tid":27428,"ts":326458442473,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":982939,"id":"0x300000024","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458442595,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458436430.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458440916.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901925.0,"time":326458418057.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458411000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458435697.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458420498.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458442381.0},"coordinates":[{"x":499.0330505371094,"y":333.38201904296875}],"trace_id":12884901925.0}},"tts":983061,"id":"0x300000025"},
-{"pid":27411,"tid":27428,"ts":326458442595,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":983061,"id":"0x300000025","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458442625,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":62,"tdur":61,"tts":983091},
-{"pid":27411,"tid":27428,"ts":326458442656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983122,"id":"0xaf88cec9fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458454681,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983305,"id":"0xaf88ccfaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458454712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":983335},
-{"pid":27411,"tid":27428,"ts":326458454712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983335,"id":"0xaf88ccfbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458454742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983366,"id":"0xaf88ccfbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458454742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":983396},
-{"pid":27411,"tid":27428,"ts":326458456848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983457,"id":"0xaf88ccf4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458456848,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":983457},
-{"pid":27411,"tid":27428,"ts":326458456878,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":983488},
-{"pid":27411,"tid":27428,"ts":326458456878,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983488,"id":"0xaf88ccf5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458456940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983549,"id":"0xaf88ccf5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458456970,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":183,"tdur":183,"tts":983580},
-{"pid":27411,"tid":27428,"ts":326458457001,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3554},"dur":122,"tdur":122,"tts":983610},
-{"pid":27411,"tid":27428,"ts":326458457031,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":983641},
-{"pid":27411,"tid":27428,"ts":326458457153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983763,"id":"0xaf88ccf6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458457184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":0,"tts":983793},
-{"pid":27411,"tid":27428,"ts":326458457184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983793,"id":"0xaf88ccf7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458457214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983824,"id":"0xaf88ccf7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458457214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":983824},
-{"pid":27411,"tid":27428,"ts":326458458374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983915,"id":"0xaf88ccf0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458458404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":983915},
-{"pid":27411,"tid":27428,"ts":326458458404,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":983915},
-{"pid":27411,"tid":27428,"ts":326458458435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983946,"id":"0xaf88ccf1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458458466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":983976,"id":"0xaf88ccf1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458458466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3693,"tdur":3296,"tts":983976},
-{"pid":27411,"tid":27428,"ts":326458458527,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6066},"dur":3601,"tdur":3204,"tts":984068},
-{"pid":27411,"tid":27428,"ts":326458458557,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3571,"tdur":3204,"tts":984068},
-{"pid":27411,"tid":27428,"ts":326458460510,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":986021,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458460541,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":61},"dur":1556,"tdur":1190,"tts":986052},
-{"pid":27411,"tid":27428,"ts":326458460571,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1343,"tdur":977,"tts":986082},
-{"pid":27411,"tid":27428,"ts":326458462006,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458455597.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458460541.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901926.0,"time":326458434873.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458428000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458454864.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458437437.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458461914.0},"coordinates":[{"x":507.4380798339844,"y":319.4593200683594}],"trace_id":12884901926.0}},"tts":987150,"id":"0x300000026"},
-{"pid":27411,"tid":27428,"ts":326458462006,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":987150,"id":"0x300000026","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458462036,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":987181},
-{"pid":27411,"tid":27428,"ts":326458462067,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":987211,"id":"0xaf88cecafec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458471223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":987364,"id":"0xaf88ccf2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458471254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":987395},
-{"pid":27411,"tid":27428,"ts":326458471254,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":987395},
-{"pid":27411,"tid":27428,"ts":326458471254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":987425,"id":"0xaf88ccf3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458471284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":987425,"id":"0xaf88ccf3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458471315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":976,"tdur":885,"tts":987456},
-{"pid":27411,"tid":27428,"ts":326458471345,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":987486},
-{"pid":27411,"tid":27428,"ts":326458471467,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12214},"dur":794,"tdur":702,"tts":987608},
-{"pid":27411,"tid":27428,"ts":326458471498,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":763,"tdur":671,"tts":987639},
-{"pid":27411,"tid":27428,"ts":326458471528,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":987669},
-{"pid":27411,"tid":27428,"ts":326458471528,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":987669},
-{"pid":27411,"tid":27428,"ts":326458471559,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":987700},
-{"pid":27411,"tid":27428,"ts":326458471589,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":987730},
-{"pid":27411,"tid":27428,"ts":326458471589,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":987730},
-{"pid":27411,"tid":27428,"ts":326458471620,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":213,"tts":987761},
-{"pid":27411,"tid":27428,"ts":326458476198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988432,"id":"0xaf88cc8cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458476198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":988432},
-{"pid":27411,"tid":27428,"ts":326458476198,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":988432},
-{"pid":27411,"tid":27428,"ts":326458476228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":988463,"id":"0xaf88cc8df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458476259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988493,"id":"0xaf88cc8df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458476259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3021,"tdur":3022,"tts":988493},
-{"pid":27411,"tid":27428,"ts":326458476320,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12388},"dur":2869,"tdur":2869,"tts":988554},
-{"pid":27411,"tid":27428,"ts":326458476320,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":2869,"tdur":2869,"tts":988554},
-{"pid":27411,"tid":27428,"ts":326458476350,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":988585},
-{"pid":27411,"tid":27428,"ts":326458476381,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":988615},
-{"pid":27411,"tid":27428,"ts":326458476412,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":988646},
-{"pid":27411,"tid":27428,"ts":326458476412,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":988646},
-{"pid":27411,"tid":27428,"ts":326458476442,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":214,"tts":988676},
-{"pid":27411,"tid":27428,"ts":326458476442,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":184,"tts":988676},
-{"pid":27411,"tid":27428,"ts":326458476869,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":989104},
-{"pid":27411,"tid":27428,"ts":326458476869,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":989104},
-{"pid":27411,"tid":27428,"ts":326458476900,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":989134},
-{"pid":27411,"tid":27428,"ts":326458476900,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":989134},
-{"pid":27411,"tid":27428,"ts":326458476930,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":989165},
-{"pid":27411,"tid":27428,"ts":326458476930,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":989195},
-{"pid":27411,"tid":27428,"ts":326458477327,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":989562},
-{"pid":27411,"tid":27428,"ts":326458477327,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":989562},
-{"pid":27411,"tid":27428,"ts":326458477358,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":989592},
-{"pid":27411,"tid":27428,"ts":326458477358,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":989592},
-{"pid":27411,"tid":27428,"ts":326458477388,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":989623},
-{"pid":27411,"tid":27428,"ts":326458477419,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":989653},
-{"pid":27411,"tid":27428,"ts":326458477785,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":990019},
-{"pid":27411,"tid":27428,"ts":326458477785,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":990019},
-{"pid":27411,"tid":27428,"ts":326458477815,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":990050},
-{"pid":27411,"tid":27428,"ts":326458477815,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":990050},
-{"pid":27411,"tid":27428,"ts":326458477846,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":990080},
-{"pid":27411,"tid":27428,"ts":326458477846,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":990080},
-{"pid":27411,"tid":27428,"ts":326458478243,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":990477},
-{"pid":27411,"tid":27428,"ts":326458478243,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":990477},
-{"pid":27411,"tid":27428,"ts":326458478273,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":990508},
-{"pid":27411,"tid":27428,"ts":326458478273,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":990508},
-{"pid":27411,"tid":27428,"ts":326458478304,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":990538},
-{"pid":27411,"tid":27428,"ts":326458478304,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":990538},
-{"pid":27411,"tid":27428,"ts":326458478701,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":990935},
-{"pid":27411,"tid":27474,"ts":326458477419,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":213,"tdur":214,"tts":49015},
-{"pid":27411,"tid":27474,"ts":326458477419,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":49015},
-{"pid":27411,"tid":27474,"ts":326458477541,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49137,"id":"0xccc3c206","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458477571,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49168,"id":"0xc4c10d0a"},
-{"pid":27411,"tid":27474,"ts":326458477602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":49198,"id":"0xaf88cc8ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458481051,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":49290},
-{"pid":27411,"tid":27474,"ts":326458481081,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":49320},
-{"pid":27411,"tid":27474,"ts":326458481112,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49351,"id":"0xba445402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458481112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":49351,"id":"0xaf88cc88f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458488650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":49504,"id":"0xaf88cecbfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458488650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":49504},
-{"pid":27411,"tid":27474,"ts":326458488681,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49534,"id":"0xc4c10f02"},
-{"pid":27411,"tid":27474,"ts":326458494235,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":49626},
-{"pid":27411,"tid":27474,"ts":326458494266,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":49656},
-{"pid":27411,"tid":27474,"ts":326458494266,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49656,"id":"0xccc3c606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458494296,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49687,"id":"0xc4c1100a"},
-{"pid":27411,"tid":27474,"ts":326458494327,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":49717,"id":"0xaf88cc8af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458498173,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":49809},
-{"pid":27411,"tid":27474,"ts":326458498203,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":49870},
-{"pid":27411,"tid":27474,"ts":326458498234,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":49870,"id":"0xba445802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458498234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":49900,"id":"0xaf88cc84f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458506291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":50022,"id":"0xaf88cec4fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458506291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":50053},
-{"pid":27411,"tid":27474,"ts":326458506321,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50053,"id":"0xc4c11202"},
-{"pid":27411,"tid":27474,"ts":326458507420,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":122,"tts":50175},
-{"pid":27411,"tid":27474,"ts":326458507420,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":91,"tts":50206},
-{"pid":27411,"tid":27474,"ts":326458507451,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50206,"id":"0xccc3ca06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458507451,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50206,"id":"0xc4c1130a"},
-{"pid":27411,"tid":27474,"ts":326458507512,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":50267,"id":"0xaf88cc86f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458510533,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":50358},
-{"pid":27411,"tid":27474,"ts":326458510564,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":50389},
-{"pid":27411,"tid":27474,"ts":326458510564,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50389,"id":"0xba445c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458510594,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":50419,"id":"0xaf88cc80f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458514257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":50511,"id":"0xaf88cec5fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458514257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":50511},
-{"pid":27411,"tid":27474,"ts":326458514287,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50541,"id":"0xc4c11502"},
-{"pid":27411,"tid":27474,"ts":326458534339,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":213,"tts":50633},
-{"pid":27411,"tid":27474,"ts":326458534400,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":50694},
-{"pid":27411,"tid":27474,"ts":326458534400,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50694,"id":"0xccc3ce06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458534431,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50724,"id":"0xc4c1160a"},
-{"pid":27411,"tid":27474,"ts":326458534492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":50785,"id":"0xaf88cc82f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458538704,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":50907},
-{"pid":27411,"tid":27474,"ts":326458538765,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":50938},
-{"pid":27411,"tid":27474,"ts":326458538765,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":50938,"id":"0xba446202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458538795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":50969,"id":"0xaf88cc9cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458542671,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":51091,"id":"0xaf88cec6fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458542671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":51121},
-{"pid":27411,"tid":27474,"ts":326458542702,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51121,"id":"0xc4c11802"},
-{"pid":27411,"tid":27474,"ts":326458555612,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":183,"tts":51213},
-{"pid":27411,"tid":27474,"ts":326458555642,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":153,"tts":51243},
-{"pid":27411,"tid":27474,"ts":326458555673,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51274,"id":"0xccc3d406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458555703,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51304,"id":"0xc4c1190a"},
-{"pid":27411,"tid":27474,"ts":326458555734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":51365,"id":"0xaf88cc9ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458558542,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":244,"tts":51457},
-{"pid":27411,"tid":27474,"ts":326458558572,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":51487},
-{"pid":27411,"tid":27474,"ts":326458558572,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51487,"id":"0xba446502","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458558603,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":51518,"id":"0xaf88cc98f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458558633,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":51548},
-{"pid":27411,"tid":27474,"ts":326458558664,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51579,"id":"0xba446606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458558664,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51579,"id":"0xc4c11b0a"},
-{"pid":27411,"tid":27474,"ts":326458558725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":51640,"id":"0xaf88cc9af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458560068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":152,"tts":51732},
-{"pid":27411,"tid":27474,"ts":326458560098,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":51762},
-{"pid":27411,"tid":27474,"ts":326458560098,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51762,"id":"0xba446802","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458478701,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":990935},
-{"pid":27411,"tid":27428,"ts":326458478701,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":990935},
-{"pid":27411,"tid":27428,"ts":326458478792,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":991026},
-{"pid":27411,"tid":27428,"ts":326458478792,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":991026},
-{"pid":27411,"tid":27428,"ts":326458478823,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":991057},
-{"pid":27411,"tid":27428,"ts":326458478823,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":991057},
-{"pid":27411,"tid":27428,"ts":326458479311,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991545,"id":"0xaf88cc8ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458479341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":991576},
-{"pid":27411,"tid":27428,"ts":326458479341,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":991576,"id":"0xaf88cc8ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458479372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991606,"id":"0xaf88cc8ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458479403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":991637},
-{"pid":27411,"tid":27428,"ts":326458481203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991728,"id":"0xaf88cc88f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458481203,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":991728},
-{"pid":27411,"tid":27428,"ts":326458481203,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":991728},
-{"pid":27411,"tid":27428,"ts":326458481234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":991759,"id":"0xaf88cc89f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458481264,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991790,"id":"0xaf88cc89f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458481264,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7417,"tdur":3479,"tts":991790},
-{"pid":27411,"tid":27428,"ts":326458481295,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":991820},
-{"pid":27411,"tid":27428,"ts":326458481417,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8578},"dur":7233,"tdur":3296,"tts":991942},
-{"pid":27411,"tid":27428,"ts":326458481447,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7203,"tdur":3265,"tts":991973},
-{"pid":27411,"tid":27428,"ts":326458483370,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":993926,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458483401,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":62},"dur":5219,"tdur":1282,"tts":993926},
-{"pid":27411,"tid":27428,"ts":326458483431,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":5006,"tdur":1069,"tts":993956},
-{"pid":27411,"tid":27428,"ts":326458488528,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458478945.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458483431.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901927.0,"time":326458451598.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458445000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458477907.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458456634.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458488437.0},"coordinates":[{"x":516.416259765625,"y":305.583984375}],"trace_id":12884901927.0}},"tts":995116,"id":"0x300000027"},
-{"pid":27411,"tid":27428,"ts":326458488528,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":995116,"id":"0x300000027","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458488559,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":995147},
-{"pid":27411,"tid":27428,"ts":326458488589,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":995177,"id":"0xaf88cecbfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458494449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995330,"id":"0xaf88cc8af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458494449,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":995330},
-{"pid":27411,"tid":27428,"ts":326458494480,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":995360,"id":"0xaf88cc8bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458494480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995391,"id":"0xaf88cc8bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458494510,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":995391},
-{"pid":27411,"tid":27428,"ts":326458498325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995482,"id":"0xaf88cc84f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458498325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":62,"tts":995482},
-{"pid":27411,"tid":27428,"ts":326458498325,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":0,"tts":995513},
-{"pid":27411,"tid":27428,"ts":326458498356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":995513,"id":"0xaf88cc85f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458498386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995544,"id":"0xaf88cc85f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458498386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7935,"tdur":3784,"tts":995544},
-{"pid":27411,"tid":27428,"ts":326458498447,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11090},"dur":7844,"tdur":3693,"tts":995605},
-{"pid":27411,"tid":27428,"ts":326458498478,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7813,"tdur":3663,"tts":995635},
-{"pid":27411,"tid":27428,"ts":326458500736,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":997649,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458500767,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":63},"dur":5524,"tdur":1618,"tts":997680},
-{"pid":27411,"tid":27428,"ts":326458500797,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":4395,"tdur":1160,"tts":997710},
-{"pid":27411,"tid":27428,"ts":326458506169,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458496250.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458500767.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901928.0,"time":326458468659.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458462000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458494632.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458473573.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458505192.0},"coordinates":[{"x":525.8840942382812,"y":291.7245788574219}],"trace_id":12884901928.0}},"tts":999175,"id":"0x300000028"},
-{"pid":27411,"tid":27428,"ts":326458506169,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":999206,"id":"0x300000028","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458506199,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":999206},
-{"pid":27411,"tid":27428,"ts":326458506230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":999236,"id":"0xaf88cec4fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458507634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":999420,"id":"0xaf88cc86f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458507634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":999420},
-{"pid":27411,"tid":27428,"ts":326458507664,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":999450,"id":"0xaf88cc87f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458507664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":999481,"id":"0xaf88cc87f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458507695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":999481},
-{"pid":27411,"tid":27428,"ts":326458510655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":999572,"id":"0xaf88cc80f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458510655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":999572},
-{"pid":27411,"tid":27428,"ts":326458510655,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":999572},
-{"pid":27411,"tid":27428,"ts":326458510686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":999603,"id":"0xaf88cc81f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458510716,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":999633,"id":"0xaf88cc81f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458510716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3571,"tdur":3205,"tts":999633},
-{"pid":27411,"tid":27428,"ts":326458510777,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13602},"dur":3510,"tdur":3144,"tts":999694},
-{"pid":27411,"tid":27428,"ts":326458510777,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3510,"tdur":3144,"tts":999694},
-{"pid":27411,"tid":27428,"ts":326458512700,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1001648,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458512731,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":64},"dur":1526,"tdur":1159,"tts":1001648},
-{"pid":27411,"tid":27428,"ts":326458512761,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1191,"tdur":824,"tts":1001678},
-{"pid":27411,"tid":27428,"ts":326458514104,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458508549.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458512731.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901929.0,"time":326458485995.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458478000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458507817.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458490848.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458513952.0},"coordinates":[{"x":534.65869140625,"y":278.7619934082031}],"trace_id":12884901929.0}},"tts":1002655,"id":"0x300000029"},
-{"pid":27411,"tid":27428,"ts":326458514135,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1002685,"id":"0x300000029","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458514165,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1002716},
-{"pid":27411,"tid":27428,"ts":326458514196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1002746,"id":"0xaf88cec5fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458534553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1002899,"id":"0xaf88cc82f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458534583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1002929},
-{"pid":27411,"tid":27428,"ts":326458534583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1002929,"id":"0xaf88cc83f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458534644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1002990,"id":"0xaf88cc83f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458534675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1003021},
-{"pid":27411,"tid":27428,"ts":326458538856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1003143,"id":"0xaf88cc9cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458538856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1003174},
-{"pid":27411,"tid":27428,"ts":326458538887,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1003174},
-{"pid":27411,"tid":27428,"ts":326458538887,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1003174,"id":"0xaf88cc9df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458538917,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1003204,"id":"0xaf88cc9df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458538948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3723,"tdur":3357,"tts":1003235},
-{"pid":27411,"tid":27428,"ts":326458538978,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16114},"dur":3693,"tdur":3327,"tts":1003265},
-{"pid":27411,"tid":27428,"ts":326458539009,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3662,"tdur":3296,"tts":1003296},
-{"pid":27411,"tid":27428,"ts":326458540962,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1005249,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458540962,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":65},"dur":1679,"tdur":1312,"tts":1005249},
-{"pid":27411,"tid":27428,"ts":326458541023,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1282,"tdur":916,"tts":1005310},
-{"pid":27411,"tid":27428,"ts":326458542427,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458536567.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458540993.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901930.0,"time":326458502598.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458495000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458534950.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458506810.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458542305.0},"coordinates":[{"x":542.2968139648438,"y":267.5712585449219}],"trace_id":12884901930.0}},"tts":1006348,"id":"0x30000002a"},
-{"pid":27411,"tid":27428,"ts":326458542458,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1006378,"id":"0x30000002a","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458542549,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458536567.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458540993.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901931.0,"time":326458518163.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458512000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458534980.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458520269.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458542305.0},"coordinates":[{"x":548.7955322265625,"y":258.5055847167969}],"trace_id":12884901931.0}},"tts":1006470,"id":"0x30000002b"},
-{"pid":27411,"tid":27428,"ts":326458542549,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1006470,"id":"0x30000002b","bp":"e"},{"pid":27411,"tid":27428,"ts":326458542580,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1006500},
-{"pid":27411,"tid":27428,"ts":326458542610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1006531,"id":"0xaf88cec6fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458555826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006714,"id":"0xaf88cc9ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458555856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1006714},
-{"pid":27411,"tid":27428,"ts":326458555887,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1006744,"id":"0xaf88cc9ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458555917,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006775,"id":"0xaf88cc9ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458555917,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1006775},
-{"pid":27411,"tid":27428,"ts":326458558664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006928,"id":"0xaf88cc98f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458558664,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1006928},
-{"pid":27411,"tid":27428,"ts":326458558694,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1006958},
-{"pid":27411,"tid":27428,"ts":326458558694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1006958,"id":"0xaf88cc99f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458558755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007019,"id":"0xaf88cc99f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458558786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":153,"tdur":152,"tts":1007050},
-{"pid":27411,"tid":27428,"ts":326458558817,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16156},"dur":122,"tdur":122,"tts":1007080},
-{"pid":27411,"tid":27428,"ts":326458558847,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":61,"tts":1007111},
-{"pid":27411,"tid":27428,"ts":326458558969,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007233,"id":"0xaf88cc9af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458558969,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1007233},
-{"pid":27411,"tid":27428,"ts":326458558969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1007263,"id":"0xaf88cc9bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458559000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007294,"id":"0xaf88cc9bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458559030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1007294},
-{"pid":27411,"tid":27428,"ts":326458560220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007355,"id":"0xaf88cc94f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458560251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1007385},
-{"pid":27411,"tid":27428,"ts":326458560251,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1007385},
-{"pid":27411,"tid":27428,"ts":326458560251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1007416,"id":"0xaf88cc95f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458560281,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007416,"id":"0xaf88cc95f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458560312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3449,"tdur":3083,"tts":1007446},
-{"pid":27411,"tid":27428,"ts":326458560343,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2134},"dur":3387,"tdur":3022,"tts":1007477},
-{"pid":27411,"tid":27428,"ts":326458560343,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3387,"tdur":3022,"tts":1007477},
-{"pid":27411,"tid":27428,"ts":326458562174,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1009308,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458562204,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":66},"dur":1526,"tdur":1160,"tts":1009339},
-{"pid":27411,"tid":27428,"ts":326458562235,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1282,"tdur":916,"tts":1009369},
-{"pid":27411,"tid":27428,"ts":326458563608,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458557474.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458562204.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901932.0,"time":326458535407.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458528000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458556283.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458538917.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458563517.0},"coordinates":[{"x":554.6576538085938,"y":251.01156616210938}],"trace_id":12884901932.0}},"tts":1010407,"id":"0x30000002c"},
-{"pid":27411,"tid":27428,"ts":326458563639,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1010407,"id":"0x30000002c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458563639,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":31,"tts":1010437},
-{"pid":27411,"tid":27428,"ts":326458563669,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1010437,"id":"0xaf88cec7fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458586376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1010590,"id":"0xaf88cc96f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458586376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1010621},
-{"pid":27411,"tid":27428,"ts":326458586407,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1010621},
-{"pid":27411,"tid":27428,"ts":326458586407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1010621,"id":"0xaf88cc97f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458586468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1010682,"id":"0xaf88cc97f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458586498,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":458,"tdur":244,"tts":1010712},
-{"pid":27411,"tid":27474,"ts":326458560129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":51793,"id":"0xaf88cc94f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458563730,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":51915,"id":"0xaf88cec7fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458563761,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":51945},
-{"pid":27411,"tid":27474,"ts":326458563761,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":51945,"id":"0xc4c11d02"},
-{"pid":27411,"tid":27474,"ts":326458586224,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":244,"tts":52067},
-{"pid":27411,"tid":27474,"ts":326458586254,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":52098},
-{"pid":27411,"tid":27474,"ts":326458586285,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52128,"id":"0xccc3d802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458586285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":52159,"id":"0xaf88cc96f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458586346,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":91,"tts":52220},
-{"pid":27411,"tid":27474,"ts":326458586376,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52220,"id":"0xccc3d906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458586376,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52220,"id":"0xc4c11e0a"},
-{"pid":27411,"tid":27474,"ts":326458586437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":52281,"id":"0xaf88cc90f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458588971,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":245,"tts":52372},
-{"pid":27411,"tid":27474,"ts":326458589001,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":52403},
-{"pid":27411,"tid":27474,"ts":326458589001,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52403,"id":"0xba446d02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458589032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":52433,"id":"0xaf88cc92f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458589093,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":52495},
-{"pid":27411,"tid":27474,"ts":326458589093,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52495,"id":"0xba446e06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458589123,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52525,"id":"0xc4c1200a"},
-{"pid":27411,"tid":27474,"ts":326458589184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":52586,"id":"0xaf88ccacf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458590466,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":52647},
-{"pid":27411,"tid":27474,"ts":326458590497,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":52678},
-{"pid":27411,"tid":27474,"ts":326458590497,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52678,"id":"0xba447002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458590527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":52708,"id":"0xaf88ccaef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458594159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":52800,"id":"0xaf88cec0fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458594190,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":52830},
-{"pid":27411,"tid":27474,"ts":326458594190,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52830,"id":"0xc4c12202"},
-{"pid":27411,"tid":27474,"ts":326458609511,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":214,"tts":52952},
-{"pid":27411,"tid":27474,"ts":326458609541,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":52983},
-{"pid":27411,"tid":27474,"ts":326458609541,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":52983,"id":"0xccc3df02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458609572,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":53013,"id":"0xaf88cca8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458609633,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":53074},
-{"pid":27411,"tid":27474,"ts":326458609633,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53074,"id":"0xccc3e006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458609663,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53105,"id":"0xc4c1230a"},
-{"pid":27411,"tid":27474,"ts":326458609694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":53135,"id":"0xaf88cca9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458613936,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":53227},
-{"pid":27411,"tid":27474,"ts":326458613967,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":53258},
-{"pid":27411,"tid":27474,"ts":326458613967,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53258,"id":"0xba447402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458613997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":53288,"id":"0xaf88ccabf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458618118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":53349,"id":"0xaf88cec1fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458618148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":53380},
-{"pid":27411,"tid":27474,"ts":326458618148,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53380,"id":"0xc4c12502"},
-{"pid":27411,"tid":27474,"ts":326458624741,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":244,"tts":53471},
-{"pid":27411,"tid":27474,"ts":326458624771,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":53502},
-{"pid":27411,"tid":27474,"ts":326458624802,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53532,"id":"0xccc3e402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458624802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":53532,"id":"0xaf88cca6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458624863,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":53593},
-{"pid":27411,"tid":27474,"ts":326458624863,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53593,"id":"0xccc3e506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458624893,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53624,"id":"0xc4c1260a"},
-{"pid":27411,"tid":27474,"ts":326458624924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":53685,"id":"0xaf88cca7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458628617,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":53746},
-{"pid":27411,"tid":27474,"ts":326458628647,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":53776},
-{"pid":27411,"tid":27474,"ts":326458628647,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53776,"id":"0xba447802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458628678,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":53807,"id":"0xaf88cca2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458632218,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":53929,"id":"0xaf88cec2fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458632218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":53929},
-{"pid":27411,"tid":27474,"ts":326458632218,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":53929,"id":"0xc4c12802"},
-{"pid":27411,"tid":27474,"ts":326458666157,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":54051},
-{"pid":27411,"tid":27474,"ts":326458666187,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":54082},
-{"pid":27411,"tid":27474,"ts":326458666187,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54082,"id":"0xccc3e906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458666218,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54112,"id":"0xc4c1290a"},
-{"pid":27411,"tid":27474,"ts":326458666248,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":54173,"id":"0xaf88ccbcf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458681753,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":152,"tts":54265},
-{"pid":27411,"tid":27474,"ts":326458681783,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":122,"tdur":122,"tts":54295},
-{"pid":27411,"tid":27428,"ts":326458586529,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":122,"tdur":122,"tts":1010743},
-{"pid":27411,"tid":27428,"ts":326458586895,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12394},"dur":61,"tdur":31,"tts":1010895},
-{"pid":27411,"tid":27428,"ts":326458586895,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":31,"tts":1010895},
-{"pid":27411,"tid":27428,"ts":326458586987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1010987,"id":"0xaf88cc90f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458586987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1010987},
-{"pid":27411,"tid":27428,"ts":326458587017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1011017,"id":"0xaf88cc91f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458587048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011048,"id":"0xaf88cc91f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458587078,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1011078},
-{"pid":27411,"tid":27428,"ts":326458589093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011139,"id":"0xaf88cc92f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458589123,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1011170},
-{"pid":27411,"tid":27428,"ts":326458589123,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1011170},
-{"pid":27411,"tid":27428,"ts":326458589123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1011200,"id":"0xaf88cc93f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458589215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011262,"id":"0xaf88cc93f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458589215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":244,"tdur":244,"tts":1011262},
-{"pid":27411,"tid":27428,"ts":326458589245,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1011292},
-{"pid":27411,"tid":27428,"ts":326458589337,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2190},"dur":91,"tdur":91,"tts":1011384},
-{"pid":27411,"tid":27428,"ts":326458589367,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1011414},
-{"pid":27411,"tid":27428,"ts":326458589459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011506,"id":"0xaf88ccacf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458589489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1011536},
-{"pid":27411,"tid":27428,"ts":326458589489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1011536,"id":"0xaf88ccadf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458589520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011567,"id":"0xaf88ccadf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458589551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1011597},
-{"pid":27411,"tid":27428,"ts":326458590588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011658,"id":"0xaf88ccaef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458590588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1011689},
-{"pid":27411,"tid":27428,"ts":326458590619,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1011689},
-{"pid":27411,"tid":27428,"ts":326458590619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1011689,"id":"0xaf88ccaff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458590649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1011719,"id":"0xaf88ccaff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458590649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3541,"tdur":3144,"tts":1011719},
-{"pid":27411,"tid":27428,"ts":326458590710,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4352},"dur":3449,"tdur":3052,"tts":1011780},
-{"pid":27411,"tid":27428,"ts":326458590710,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3449,"tdur":3052,"tts":1011780},
-{"pid":27411,"tid":27428,"ts":326458592358,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1013428,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458592389,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":67},"dur":1770,"tdur":1373,"tts":1013459},
-{"pid":27411,"tid":27428,"ts":326458592419,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1374,"tdur":947,"tts":1013489},
-{"pid":27411,"tid":27428,"ts":326458593884,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458587933.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458592389.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901933.0,"time":326458551766.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458545000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458586621.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458555063.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458593793.0},"coordinates":[{"x":559.376953125,"y":245.1435546875}],"trace_id":12884901933.0}},"tts":1014558,"id":"0x30000002d"},
-{"pid":27411,"tid":27428,"ts":326458593884,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1014558,"id":"0x30000002d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458594007,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458587933.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458592389.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901934.0,"time":326458568247.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458562000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458586621.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458570536.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458593793.0},"coordinates":[{"x":563.9837646484375,"y":240.51626586914062}],"trace_id":12884901934.0}},"tts":1014680,"id":"0x30000002e"},
-{"pid":27411,"tid":27428,"ts":326458594037,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1014710,"id":"0x30000002e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458594068,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1014741},
-{"pid":27411,"tid":27428,"ts":326458594098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1014771,"id":"0xaf88cec0fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458609663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1014954,"id":"0xaf88cca8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458609663,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":62,"tts":1014954},
-{"pid":27411,"tid":27428,"ts":326458609663,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":184,"tdur":31,"tts":1014985},
-{"pid":27411,"tid":27428,"ts":326458609847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1015016,"id":"0xaf88ccaaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458609877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015046,"id":"0xaf88cca9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458609877,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1015046},
-{"pid":27411,"tid":27428,"ts":326458609908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015077,"id":"0xaf88ccaaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458609938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4273,"tdur":2045,"tts":1015107},
-{"pid":27411,"tid":27428,"ts":326458609969,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":152,"tdur":122,"tts":1015138},
-{"pid":27411,"tid":27428,"ts":326458610152,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12518},"dur":3937,"tdur":1739,"tts":1015321},
-{"pid":27411,"tid":27428,"ts":326458610152,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":3937,"tdur":1739,"tts":1015321},
-{"pid":27411,"tid":27428,"ts":326458610182,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1015351},
-{"pid":27411,"tid":27428,"ts":326458610213,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1015382},
-{"pid":27411,"tid":27428,"ts":326458610213,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":0,"tts":1015412},
-{"pid":27411,"tid":27428,"ts":326458610243,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1015412},
-{"pid":27411,"tid":27428,"ts":326458610274,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1015443},
-{"pid":27411,"tid":27428,"ts":326458610274,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1015443},
-{"pid":27411,"tid":27428,"ts":326458610701,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1015779},
-{"pid":27411,"tid":27428,"ts":326458610732,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1015809},
-{"pid":27411,"tid":27428,"ts":326458610732,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":0,"tts":1015840},
-{"pid":27411,"tid":27428,"ts":326458610762,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1015840},
-{"pid":27411,"tid":27428,"ts":326458610762,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":153,"tts":1015870},
-{"pid":27411,"tid":27428,"ts":326458610793,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":1015870},
-{"pid":27411,"tid":27428,"ts":326458613204,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1016175},
-{"pid":27411,"tid":27428,"ts":326458613204,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1016175},
-{"pid":27411,"tid":27428,"ts":326458613234,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":122,"tdur":122,"tts":1016206},
-{"pid":27411,"tid":27428,"ts":326458613234,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":91,"tts":1016206},
-{"pid":27411,"tid":27428,"ts":326458613356,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1016328},
-{"pid":27411,"tid":27428,"ts":326458613356,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":184,"tts":1016358},
-{"pid":27411,"tid":27428,"ts":326458613387,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":184,"tts":1016358},
-{"pid":27411,"tid":27428,"ts":326458613723,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1016694},
-{"pid":27411,"tid":27428,"ts":326458613723,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1016694},
-{"pid":27411,"tid":27428,"ts":326458613753,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1016725},
-{"pid":27411,"tid":27428,"ts":326458613753,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1016755},
-{"pid":27411,"tid":27428,"ts":326458613784,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1016755},
-{"pid":27411,"tid":27428,"ts":326458613814,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1016786},
-{"pid":27411,"tid":27428,"ts":326458614180,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1017152,"id":"0xaf88cca4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458614211,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1017182,"id":"0xaf88ccabf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458614211,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":1017213},
-{"pid":27411,"tid":27428,"ts":326458614242,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1017213},
-{"pid":27411,"tid":27428,"ts":326458614242,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1017213,"id":"0xaf88cca5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458614272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1017244,"id":"0xaf88cca4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458614303,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1017274},
-{"pid":27411,"tid":27428,"ts":326458614333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1017305,"id":"0xaf88cca5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458614333,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3663,"tdur":3052,"tts":1017305},
-{"pid":27411,"tid":27428,"ts":326458614364,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1017335},
-{"pid":27411,"tid":27428,"ts":326458614486,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6514},"dur":3479,"tdur":2869,"tts":1017457},
-{"pid":27411,"tid":27428,"ts":326458614486,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3479,"tdur":2838,"tts":1017488},
-{"pid":27411,"tid":27428,"ts":326458616134,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1019105,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458616134,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":68},"dur":1831,"tdur":1190,"tts":1019136},
-{"pid":27411,"tid":27428,"ts":326458616195,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1495,"tdur":885,"tts":1019166},
-{"pid":27411,"tid":27428,"ts":326458617812,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458611586.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458616164.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901935.0,"time":326458584850.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458578000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458609908.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458588452.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458617690.0},"coordinates":[{"x":567.4465942382812,"y":237.05337524414062}],"trace_id":12884901935.0}},"tts":1020173,"id":"0x30000002f"},
-{"pid":27411,"tid":27428,"ts":326458617843,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1020204,"id":"0x30000002f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458617873,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":62,"tts":1020234},
-{"pid":27411,"tid":27428,"ts":326458617873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1020265,"id":"0xaf88cec1fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458624893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020448,"id":"0xaf88cca6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458624893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":122,"tts":1020448},
-{"pid":27411,"tid":27428,"ts":326458624924,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":152,"tdur":61,"tts":1020479},
-{"pid":27411,"tid":27428,"ts":326458625076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1020540,"id":"0xaf88cca0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458625107,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020570,"id":"0xaf88cca7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458625107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1020570},
-{"pid":27411,"tid":27428,"ts":326458625137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020631,"id":"0xaf88cca0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458625168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":213,"tdur":214,"tts":1020631},
-{"pid":27411,"tid":27428,"ts":326458625198,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":91,"tts":1020662},
-{"pid":27411,"tid":27428,"ts":326458625320,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12522},"dur":31,"tdur":30,"tts":1020784},
-{"pid":27411,"tid":27428,"ts":326458625351,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":0,"tdur":0,"tts":1020814},
-{"pid":27411,"tid":27428,"ts":326458625381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1020845,"id":"0xaf88cca1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458625412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020875,"id":"0xaf88cca1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458625412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1020875},
-{"pid":27411,"tid":27428,"ts":326458628739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020967,"id":"0xaf88cca2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458628769,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1020998},
-{"pid":27411,"tid":27428,"ts":326458628769,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1020998},
-{"pid":27411,"tid":27428,"ts":326458628800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1021028,"id":"0xaf88cca3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458628830,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1021059,"id":"0xaf88cca3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458628830,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3388,"tdur":3021,"tts":1021059},
-{"pid":27411,"tid":27428,"ts":326458628861,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1021089},
-{"pid":27411,"tid":27428,"ts":326458628952,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8676},"dur":3235,"tdur":2869,"tts":1021181},
-{"pid":27411,"tid":27428,"ts":326458628983,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3204,"tdur":2839,"tts":1021211},
-{"pid":27411,"tid":27428,"ts":326458630661,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1022890,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458630692,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":69},"dur":1495,"tdur":1130,"tts":1022920},
-{"pid":27411,"tid":27428,"ts":326458630723,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1220,"tdur":854,"tts":1022951},
-{"pid":27411,"tid":27428,"ts":326458632035,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458626022.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458630692.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901936.0,"time":326458601637.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458595000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458625137.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458603865.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458631943.0},"coordinates":[{"x":569.782470703125,"y":234.217529296875}],"trace_id":12884901936.0}},"tts":1023897,"id":"0x300000030"},
-{"pid":27411,"tid":27428,"ts":326458632035,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1023897,"id":"0x300000030","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458632096,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1023958},
-{"pid":27411,"tid":27428,"ts":326458632126,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1023989,"id":"0xaf88cec2fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458666340,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1024172,"id":"0xaf88ccbcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458666340,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":31,"tts":1024202},
-{"pid":27411,"tid":27428,"ts":326458666370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1024202,"id":"0xaf88ccbdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458666401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1024233,"id":"0xaf88ccbdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458666401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1024233},
-{"pid":27411,"tid":27428,"ts":326458666401,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1024233},
-{"pid":27411,"tid":27428,"ts":326458681966,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1024355,"id":"0xaf88ccbef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458681997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1024385},
-{"pid":27411,"tid":27428,"ts":326458681997,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1024385},
-{"pid":27411,"tid":27428,"ts":326458681997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1024385,"id":"0xaf88ccbff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458682027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1024416,"id":"0xaf88ccbff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458682058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4090,"tdur":3144,"tts":1024446},
-{"pid":27411,"tid":27428,"ts":326458682119,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":10838},"dur":4029,"tdur":3083,"tts":1024507},
-{"pid":27411,"tid":27428,"ts":326458682119,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4029,"tdur":3083,"tts":1024507},
-{"pid":27411,"tid":27428,"ts":326458683797,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1026186,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458683797,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":70},"dur":2320,"tdur":1373,"tts":1026186},
-{"pid":27411,"tid":27428,"ts":326458683889,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1709,"tdur":1037,"tts":1026278},
-{"pid":27411,"tid":27428,"ts":326458685690,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458667957.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458683828.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901937.0,"time":326458619247.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458612000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458666828.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458622390.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458685598.0},"coordinates":[{"x":571.4830322265625,"y":232.01693725585938}],"trace_id":12884901937.0}},"tts":1027437,"id":"0x300000031"},
-{"pid":27411,"tid":27428,"ts":326458685690,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1027437,"id":"0x300000031","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458685720,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":397,"tdur":91,"tts":1027468},
-{"pid":27411,"tid":27428,"ts":326458685720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027468,"id":"0xaf88cec3fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458690085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1027712,"id":"0xaf88ccb8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458690085,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1027712},
-{"pid":27411,"tid":27428,"ts":326458690115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027743,"id":"0xaf88ccb9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458690146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1027773,"id":"0xaf88ccb9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458690146,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1027773},
-{"pid":27411,"tid":27428,"ts":326458693381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1027895,"id":"0xaf88ccbaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458693381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1027895},
-{"pid":27411,"tid":27428,"ts":326458693411,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1027926},
-{"pid":27411,"tid":27428,"ts":326458693411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027926,"id":"0xaf88ccbbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458693442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1027956,"id":"0xaf88ccbbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458693472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3266,"tdur":2930,"tts":1027987},
-{"pid":27411,"tid":27428,"ts":326458693503,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13000},"dur":3235,"tdur":2869,"tts":1028048},
-{"pid":27411,"tid":27428,"ts":326458693533,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3205,"tdur":2869,"tts":1028048},
-{"pid":27411,"tid":27428,"ts":326458695243,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1029757,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458695243,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":71},"dur":1465,"tdur":1129,"tts":1029757},
-{"pid":27411,"tid":27428,"ts":326458695273,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1251,"tdur":885,"tts":1029818},
-{"pid":27411,"tid":27428,"ts":326458696616,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458691000.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458695273.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901938.0,"time":326458634904.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458628000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458690298.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458663685.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458696524.0},"coordinates":[{"x":572.5604248046875,"y":230.379150390625}],"trace_id":12884901938.0}},"tts":1030795,"id":"0x300000032"},
-{"pid":27411,"tid":27428,"ts":326458696616,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1030825,"id":"0x300000032","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458696647,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1030825},
-{"pid":27411,"tid":27428,"ts":326458696677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1030856,"id":"0xaf88cedcfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458706840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1030978,"id":"0xaf88ccb4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458706871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1031008},
-{"pid":27411,"tid":27428,"ts":326458706901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1031039,"id":"0xaf88ccb5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458706932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1031069,"id":"0xaf88ccb5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458706932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1031069},
-{"pid":27411,"tid":27428,"ts":326458710381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1031191,"id":"0xaf88ccb6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458710381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1031222},
-{"pid":27411,"tid":27428,"ts":326458710411,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1031222},
-{"pid":27411,"tid":27428,"ts":326458710442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1031252,"id":"0xaf88ccb7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458710472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1031283,"id":"0xaf88ccb7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458710472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3907,"tdur":3571,"tts":1031283},
-{"pid":27411,"tid":27428,"ts":326458710533,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15162},"dur":3815,"tdur":3479,"tts":1031344},
-{"pid":27411,"tid":27428,"ts":326458710594,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3754,"tdur":3418,"tts":1031405},
-{"pid":27411,"tid":27428,"ts":326458712517,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1033358,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458712548,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":72},"dur":1770,"tdur":1435,"tts":1033358},
-{"pid":27411,"tid":27428,"ts":326458712609,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1312,"tdur":977,"tts":1033419},
-{"pid":27411,"tid":27428,"ts":326458714043,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458707664.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458712578.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901939.0,"time":326458653460.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458645000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458706871.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458678487.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458713921.0},"coordinates":[{"x":573.3755493164062,"y":229.62445068359375}],"trace_id":12884901939.0}},"tts":1034518,"id":"0x300000033"},
-{"pid":27411,"tid":27428,"ts":326458714043,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1034518,"id":"0x300000033","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458714165,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458707664.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458712578.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901940.0,"time":326458669209.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458662000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458706901.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458686666.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458713921.0},"coordinates":[{"x":574.1890258789062,"y":228.81097412109375}],"trace_id":12884901940.0}},"tts":1034671,"id":"0x300000034"},
-{"pid":27411,"tid":27428,"ts":326458714196,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1034671,"id":"0x300000034","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458714257,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1034732},
-{"pid":27411,"tid":27428,"ts":326458714257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1034762,"id":"0xaf88ceddfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458947524,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034945,"id":"0xaf88ccb0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458947555,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1034945},
-{"pid":27411,"tid":27428,"ts":326458947585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1034976,"id":"0xaf88ccb1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458947616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1035006,"id":"0xaf88ccb1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458947616,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1035006},
-{"pid":27411,"tid":27474,"ts":326458681814,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54326,"id":"0xba448002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458681875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":54387,"id":"0xaf88ccbef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458685812,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":54478,"id":"0xaf88cec3fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458685842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":54509},
-{"pid":27411,"tid":27474,"ts":326458685842,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54509,"id":"0xc4c12b02"},
-{"pid":27411,"tid":27474,"ts":326458689810,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":153,"tts":54631},
-{"pid":27411,"tid":27474,"ts":326458689871,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":54661},
-{"pid":27411,"tid":27474,"ts":326458689871,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54661,"id":"0xccc3ef06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458689902,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54692,"id":"0xc4c12c0a"},
-{"pid":27411,"tid":27474,"ts":326458689932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":54723,"id":"0xaf88ccb8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458693228,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":54814},
-{"pid":27411,"tid":27474,"ts":326458693289,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":54845},
-{"pid":27411,"tid":27474,"ts":326458693289,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":54845,"id":"0xba448402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458693289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":54875,"id":"0xaf88ccbaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458696738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":54997,"id":"0xaf88cedcfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458696738,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":55028},
-{"pid":27411,"tid":27474,"ts":326458696769,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55028,"id":"0xc4c12e02"},
-{"pid":27411,"tid":27474,"ts":326458706566,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":152,"tts":55150},
-{"pid":27411,"tid":27474,"ts":326458706596,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":55180},
-{"pid":27411,"tid":27474,"ts":326458706596,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55180,"id":"0xccc3f306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458706627,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55211,"id":"0xc4c12f0a"},
-{"pid":27411,"tid":27474,"ts":326458706657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":55272,"id":"0xaf88ccb4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458710228,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":123,"tts":55363},
-{"pid":27411,"tid":27474,"ts":326458710259,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":55394},
-{"pid":27411,"tid":27474,"ts":326458710289,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55424,"id":"0xba448702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458710289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":55424,"id":"0xaf88ccb6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458714348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":55577,"id":"0xaf88ceddfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458714348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":30,"tts":55608},
-{"pid":27411,"tid":27474,"ts":326458714379,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55608,"id":"0xc4c13102"},
-{"pid":27411,"tid":27474,"ts":326458947280,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":55699},
-{"pid":27411,"tid":27474,"ts":326458947310,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":55760},
-{"pid":27411,"tid":27474,"ts":326458947341,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55760,"id":"0xccc40906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458947341,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55760,"id":"0xc4c1320a"},
-{"pid":27411,"tid":27474,"ts":326458947402,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":55821,"id":"0xaf88ccb0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458967088,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":55913},
-{"pid":27411,"tid":27474,"ts":326458967118,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":55943},
-{"pid":27411,"tid":27474,"ts":326458967149,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":55974,"id":"0xba449802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458967149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":55974,"id":"0xaf88ccb2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458971513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":56096,"id":"0xaf88cedefec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458971513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":56096},
-{"pid":27411,"tid":27474,"ts":326458971544,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56126,"id":"0xc4c13402"},
-{"pid":27411,"tid":27474,"ts":326458978105,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":56218},
-{"pid":27411,"tid":27474,"ts":326458978136,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":56249},
-{"pid":27411,"tid":27474,"ts":326458978136,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56249,"id":"0xccc40c06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458978166,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56279,"id":"0xc4c1350a"},
-{"pid":27411,"tid":27474,"ts":326458978197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":56310,"id":"0xaf88cd4cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458981524,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":56462},
-{"pid":27411,"tid":27474,"ts":326458981554,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":56493},
-{"pid":27411,"tid":27474,"ts":326458981554,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56493,"id":"0xba449c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326458981585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":56523,"id":"0xaf88cd4ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326458987689,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":56645,"id":"0xaf88cedffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326458987689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":56645},
-{"pid":27411,"tid":27474,"ts":326458987689,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56645,"id":"0xc4c13702"},
-{"pid":27411,"tid":27474,"ts":326459009206,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":184,"tts":56767},
-{"pid":27411,"tid":27474,"ts":326459009236,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":56828},
-{"pid":27411,"tid":27474,"ts":326459009267,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56828,"id":"0xccc41006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459009267,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":56828,"id":"0xc4c1380a"},
-{"pid":27411,"tid":27474,"ts":326459009328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":56889,"id":"0xaf88cd48f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459013448,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":56981},
-{"pid":27411,"tid":27474,"ts":326459013479,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":57012},
-{"pid":27411,"tid":27474,"ts":326459013479,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57012,"id":"0xba44a102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459013509,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":57042,"id":"0xaf88cd4af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459019033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":57164,"id":"0xaf88ced8fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459019033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":153,"tts":57164},
-{"pid":27411,"tid":27428,"ts":326458967240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1035098,"id":"0xaf88ccb2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458967301,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1035159},
-{"pid":27411,"tid":27428,"ts":326458967301,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1035159},
-{"pid":27411,"tid":27428,"ts":326458967332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1035189,"id":"0xaf88ccb3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458967362,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1035220,"id":"0xaf88ccb3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458967362,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4120,"tdur":3357,"tts":1035220},
-{"pid":27411,"tid":27428,"ts":326458967423,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":942},"dur":4029,"tdur":3266,"tts":1035281},
-{"pid":27411,"tid":27428,"ts":326458967454,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3998,"tdur":3235,"tts":1035312},
-{"pid":27411,"tid":27428,"ts":326458969438,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1037112,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458969438,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":73},"dur":2014,"tdur":1435,"tts":1037112},
-{"pid":27411,"tid":27428,"ts":326458969499,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1556,"tdur":977,"tts":1037173},
-{"pid":27411,"tid":27428,"ts":326458971177,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458953781.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458969468.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901942.0,"time":326458838658.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458829000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458950393.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458875954.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458971086.0},"coordinates":[{"x":574.5,"y":229.58590698242188}],"trace_id":12884901942.0}},"tts":1038272,"id":"0x300000036"},
-{"pid":27411,"tid":27428,"ts":326458971208,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1038303,"id":"0x300000036","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458971330,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458953781.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458969468.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901943.0,"time":326458852300.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458845000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458950423.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458924847.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458971086.0},"coordinates":[{"x":574.5,"y":232.25}],"trace_id":12884901943.0}},"tts":1038425,"id":"0x300000037"},
-{"pid":27411,"tid":27428,"ts":326458971360,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1038455,"id":"0x300000037","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458971360,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1038455},
-{"pid":27411,"tid":27428,"ts":326458971391,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1038486,"id":"0xaf88cedefec55fe2"},
-{"pid":27411,"tid":27428,"ts":326458978289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1038669,"id":"0xaf88cd4cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458978289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1038669},
-{"pid":27411,"tid":27428,"ts":326458978319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1038699,"id":"0xaf88cd4df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458978350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1038730,"id":"0xaf88cd4df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458978350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1038730},
-{"pid":27411,"tid":27428,"ts":326458981646,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1038821,"id":"0xaf88cd4ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458981646,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1038821},
-{"pid":27411,"tid":27428,"ts":326458981646,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1038821},
-{"pid":27411,"tid":27428,"ts":326458981676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1038852,"id":"0xaf88cd4ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458981707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1038882,"id":"0xaf88cd4ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326458981707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5310,"tdur":3358,"tts":1038882},
-{"pid":27411,"tid":27428,"ts":326458981768,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3420},"dur":5249,"tdur":3297,"tts":1038943},
-{"pid":27411,"tid":27428,"ts":326458981798,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5189,"tdur":3235,"tts":1038974},
-{"pid":27411,"tid":27428,"ts":326458982348,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":94},"dur":30,"tdur":0,"tts":1039554},
-{"pid":27411,"tid":27428,"ts":326458982439,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":145},"dur":31,"tdur":30,"tts":1039615},
-{"pid":27411,"tid":27428,"ts":326458982775,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":108},"dur":31,"tdur":0,"tts":1039981},
-{"pid":27411,"tid":27428,"ts":326458982867,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":176},"dur":30,"tdur":31,"tts":1040042},
-{"pid":27411,"tid":27428,"ts":326458983752,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1040927,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326458983752,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":74},"dur":3235,"tdur":1282,"tts":1040927},
-{"pid":27411,"tid":27428,"ts":326458983813,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2930,"tdur":977,"tts":1040988},
-{"pid":27411,"tid":27428,"ts":326458986865,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458979326.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458983782.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901945.0,"time":326458888192.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458879000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458978472.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458939955.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458986743.0},"coordinates":[{"x":568.1849975585938,"y":245.29934692382812}],"trace_id":12884901945.0}},"tts":1042087,"id":"0x300000039"},
-{"pid":27411,"tid":27428,"ts":326458986865,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1042087,"id":"0x300000039","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326458986895,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1042118},
-{"pid":27411,"tid":27428,"ts":326458986926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1042148,"id":"0xaf88cedffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459009389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042301,"id":"0xaf88cd48f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459009419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1042331},
-{"pid":27411,"tid":27428,"ts":326459009419,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1042331,"id":"0xaf88cd49f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459009450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042362,"id":"0xaf88cd49f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459009480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1042392},
-{"pid":27411,"tid":27428,"ts":326459013570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042453,"id":"0xaf88cd4af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459013601,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":1042484},
-{"pid":27411,"tid":27428,"ts":326459013601,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1042484},
-{"pid":27411,"tid":27428,"ts":326459013631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1042514,"id":"0xaf88cd4bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459013662,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042545,"id":"0xaf88cd4bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459013662,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5371,"tdur":3388,"tts":1042545},
-{"pid":27411,"tid":27428,"ts":326459013723,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6019},"dur":5310,"tdur":3327,"tts":1042606},
-{"pid":27411,"tid":27428,"ts":326459013723,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5310,"tdur":3296,"tts":1042606},
-{"pid":27411,"tid":27428,"ts":326459014089,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":97},"dur":0,"tdur":0,"tts":1042972},
-{"pid":27411,"tid":27428,"ts":326459014272,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":168},"dur":0,"tdur":0,"tts":1043155},
-{"pid":27411,"tid":27428,"ts":326459014394,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":158},"dur":31,"tdur":31,"tts":1043277},
-{"pid":27411,"tid":27428,"ts":326459017019,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1044681,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459017049,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":75},"dur":1954,"tdur":1221,"tts":1044681},
-{"pid":27411,"tid":27428,"ts":326459017110,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1649,"tdur":885,"tts":1044742},
-{"pid":27411,"tid":27428,"ts":326459018881,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459011067.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459017080.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901948.0,"time":326458938307.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458929000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459009602.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458976122.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459018759.0},"coordinates":[{"x":546.185546875,"y":288.56597900390625}],"trace_id":12884901948.0}},"tts":1045780,"id":"0x30000003c"},
-{"pid":27411,"tid":27428,"ts":326459018911,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1045811,"id":"0x30000003c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459018942,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1045841},
-{"pid":27411,"tid":27428,"ts":326459018942,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1045841,"id":"0xaf88ced8fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459019033,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57195,"id":"0xc4c13a02"},
-{"pid":27411,"tid":27474,"ts":326459019033,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":91,"tts":57195},
-{"pid":27411,"tid":27474,"ts":326459030661,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":123,"tdur":122,"tts":57378},
-{"pid":27411,"tid":27474,"ts":326459030692,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":57408},
-{"pid":27411,"tid":27474,"ts":326459030723,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57439,"id":"0xccc41302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459030723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":57439,"id":"0xaf88cd44f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459040489,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":57561},
-{"pid":27411,"tid":27474,"ts":326459040520,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":57591},
-{"pid":27411,"tid":27474,"ts":326459040550,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57622,"id":"0xccc41702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459040550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":57622,"id":"0xaf88cd46f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459041099,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":123,"tdur":122,"tts":57744},
-{"pid":27411,"tid":27474,"ts":326459041099,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":123,"tdur":91,"tts":57775},
-{"pid":27411,"tid":27474,"ts":326459041130,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57775,"id":"0xccc41806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459041130,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57775,"id":"0xc4c13b0a"},
-{"pid":27411,"tid":27474,"ts":326459041191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":57836,"id":"0xaf88cd40f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459044853,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":123,"tdur":91,"tts":57958},
-{"pid":27411,"tid":27474,"ts":326459044914,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":57988},
-{"pid":27411,"tid":27474,"ts":326459044914,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":57988,"id":"0xba44a702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459044945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":58019,"id":"0xaf88cd42f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459050317,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":58171,"id":"0xaf88ced9fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459050317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":58171},
-{"pid":27411,"tid":27474,"ts":326459050347,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58202,"id":"0xc4c13d02"},
-{"pid":27411,"tid":27474,"ts":326459061884,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":58293},
-{"pid":27411,"tid":27474,"ts":326459061914,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":91,"tts":58324},
-{"pid":27411,"tid":27474,"ts":326459061914,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58324,"id":"0xccc41d06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459061945,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58354,"id":"0xc4c13e0a"},
-{"pid":27411,"tid":27474,"ts":326459061975,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":58385,"id":"0xaf88cd5cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459065088,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":123,"tdur":91,"tts":58477},
-{"pid":27411,"tid":27474,"ts":326459065119,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":58477},
-{"pid":27411,"tid":27474,"ts":326459065149,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58507,"id":"0xba44ab02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459065149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":58507,"id":"0xaf88cd5ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459069758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":58660,"id":"0xaf88cedafec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459069758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":58660},
-{"pid":27411,"tid":27474,"ts":326459069789,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58690,"id":"0xc4c14002"},
-{"pid":27411,"tid":27474,"ts":326459083981,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":58812},
-{"pid":27411,"tid":27474,"ts":326459084011,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":58843},
-{"pid":27411,"tid":27474,"ts":326459084011,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58843,"id":"0xccc42006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459084042,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":58873,"id":"0xc4c1410a"},
-{"pid":27411,"tid":27474,"ts":326459084072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":58934,"id":"0xaf88cd58f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459101225,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":213,"tdur":183,"tts":59026},
-{"pid":27411,"tid":27474,"ts":326459101255,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":153,"tdur":122,"tts":59056},
-{"pid":27411,"tid":27474,"ts":326459101255,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59056,"id":"0xba44b002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459101347,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":59117,"id":"0xaf88cd5af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459105833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":59270,"id":"0xaf88cedbfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459105833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":59270},
-{"pid":27411,"tid":27474,"ts":326459105833,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59270,"id":"0xc4c14302"},
-{"pid":27411,"tid":27474,"ts":326459109129,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":59362},
-{"pid":27411,"tid":27474,"ts":326459109160,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":59392},
-{"pid":27411,"tid":27474,"ts":326459109160,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59392,"id":"0xccc42506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459109190,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59423,"id":"0xc4c1440a"},
-{"pid":27411,"tid":27474,"ts":326459109221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":59453,"id":"0xaf88cd54f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459116271,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":59545},
-{"pid":27411,"tid":27474,"ts":326459116302,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":59575},
-{"pid":27411,"tid":27474,"ts":326459116332,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59606,"id":"0xba44b402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459116332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":59606,"id":"0xaf88cd56f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459121826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":59728,"id":"0xaf88ced4fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459121826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":59728},
-{"pid":27411,"tid":27474,"ts":326459121856,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59758,"id":"0xc4c14602"},
-{"pid":27411,"tid":27474,"ts":326459131714,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":153,"tts":59880},
-{"pid":27411,"tid":27474,"ts":326459131775,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":123,"tdur":122,"tts":59911},
-{"pid":27411,"tid":27474,"ts":326459131775,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59911,"id":"0xccc42706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459131806,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":59942,"id":"0xc4c1470a"},
-{"pid":27411,"tid":27474,"ts":326459131837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":59972,"id":"0xaf88cd50f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459135896,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":183,"tdur":183,"tts":60094},
-{"pid":27411,"tid":27428,"ts":326459030814,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1046024,"id":"0xaf88cd44f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459030814,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1046024},
-{"pid":27411,"tid":27428,"ts":326459030875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1046085},
-{"pid":27411,"tid":27428,"ts":326459030875,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1046085},
-{"pid":27411,"tid":27428,"ts":326459030906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1046116,"id":"0xaf88cd45f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459030936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1046146,"id":"0xaf88cd45f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459030936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":2381,"tdur":1221,"tts":1046146},
-{"pid":27411,"tid":27428,"ts":326459030967,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":91,"tts":1046177},
-{"pid":27411,"tid":27428,"ts":326459031089,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12580},"dur":1587,"tdur":1007,"tts":1046299},{"pid":27443,"tid":27477,"ts":326458131592,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":226094},
-{"pid":27443,"tid":27477,"ts":326458131592,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":226094},
-{"pid":27443,"tid":27477,"ts":326458131623,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":226125},
-{"pid":27443,"tid":27477,"ts":326458131623,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":226125},
-{"pid":27443,"tid":27477,"ts":326458131684,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":226186},
-{"pid":27443,"tid":27477,"ts":326458131714,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":226217},
-{"pid":27443,"tid":27477,"ts":326458131745,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":226247,"id":"0xaf88ab39f182217a"},
-{"pid":27443,"tid":27477,"ts":326458131745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":226247},
-{"pid":27443,"tid":27477,"ts":326458131745,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":226247},
-{"pid":27443,"tid":27477,"ts":326458131775,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":226278,"id":"0x300000013"},
-{"pid":27443,"tid":27477,"ts":326458131775,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":226278},
-{"pid":27443,"tid":27477,"ts":326458131806,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":226308,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458131837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":226339,"id":"0xaf88ab2ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458131867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":226369,"id":"0xaf88ab3af182217a"},
-{"pid":27443,"tid":27477,"ts":326458131898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2258,"tdur":1709,"tts":226400},
-{"pid":27443,"tid":27477,"ts":326458131898,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2258,"tdur":1709,"tts":226400},
-{"pid":27443,"tid":27477,"ts":326458131898,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":226400},
-{"pid":27443,"tid":27477,"ts":326458131928,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2198,"tdur":1648,"tts":226430},
-{"pid":27443,"tid":27477,"ts":326458131928,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":58},"dur":1068,"tdur":1068,"tts":226430},
-{"pid":27443,"tid":27477,"ts":326458131959,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":58},"dur":274,"tdur":274,"tts":226461},
-{"pid":27443,"tid":27477,"ts":326458132233,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":58},"dur":31,"tdur":31,"tts":226735},
-{"pid":27443,"tid":27477,"ts":326458132264,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":58},"tts":226766},
-{"pid":27443,"tid":27477,"ts":326458132416,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":226918},
-{"pid":27443,"tid":27477,"ts":326458132416,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":245,"tdur":245,"tts":226918},
-{"pid":27443,"tid":27477,"ts":326458132416,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":184,"tdur":153,"tts":226949},
-{"pid":27443,"tid":27477,"ts":326458132447,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":226949},
-{"pid":27443,"tid":27477,"ts":326458132447,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":226949},
-{"pid":27443,"tid":27477,"ts":326458132477,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":226980},
-{"pid":27443,"tid":27477,"ts":326458132508,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":227041},
-{"pid":27443,"tid":27477,"ts":326458132538,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":62,"tdur":61,"tts":227041},
-{"pid":27443,"tid":27477,"ts":326458132569,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":227071},
-{"pid":27443,"tid":27477,"ts":326458132600,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":227102},
-{"pid":27443,"tid":27477,"ts":326458132661,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":2}},"tts":227163,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458132722,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":227224},
-{"pid":27443,"tid":27477,"ts":326458132966,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":227468},
-{"pid":27443,"tid":27477,"ts":326458132996,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":855,"tdur":306,"tts":227498},
-{"pid":27443,"tid":27477,"ts":326458133027,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":227529},
-{"pid":27443,"tid":27477,"ts":326458133027,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":763,"tdur":214,"tts":227529},
-{"pid":27443,"tid":27477,"ts":326458133088,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11859},"dur":91,"tdur":91,"tts":227590},
-{"pid":27443,"tid":27477,"ts":326458133118,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":227620,"id":"0xaf88adc7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458133179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":227681,"id":"0xaf88adc0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458133820,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":227804,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458133881,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":227834,"id":"0x300000011"},
-{"pid":27443,"tid":27477,"ts":326458133881,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":153,"tts":227834},
-{"pid":27443,"tid":27477,"ts":326458134003,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":227956,"id":"0xaf88adc1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458134064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":228017,"id":"0xaf88ab2ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458134095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":228048,"id":"0xaf88a832f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458134156,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458133},"tts":228109,"id":"0xaf88ab22f182217a"},
-{"pid":27443,"tid":27477,"ts":326458134187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":228139},
-{"pid":27443,"tid":27477,"ts":326458134187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228139,"id":"0xaf88ab3bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458134187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":228139},
-{"pid":27443,"tid":27477,"ts":326458134217,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":0,"tts":228170},
-{"pid":27443,"tid":27477,"ts":326458134217,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":228170,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458134217,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":228170},
-{"pid":27443,"tid":27477,"ts":326458138246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228231,"id":"0xaf88ab34f182217a"},
-{"pid":27443,"tid":27477,"ts":326458138246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":228231},
-{"pid":27443,"tid":27477,"ts":326458138276,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458069881.0,"frame_time_us":326458133486.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":153,"tts":228261},
-{"pid":27443,"tid":27477,"ts":326458138307,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458069881.0,"frame_time_us":326458133486.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":228292},
-{"pid":27443,"tid":27477,"ts":326458138368,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458150152},"dur":30,"tdur":30,"tts":228353},
-{"pid":27443,"tid":27477,"ts":326458138398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":228383,"id":"0xaf88ab35f182217a"},
-{"pid":27443,"tid":27477,"ts":326458148409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228475,"id":"0xaf88ab36f182217a"},
-{"pid":27443,"tid":27477,"ts":326458148409,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":228475},
-{"pid":27443,"tid":27477,"ts":326458148440,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":228506},
-{"pid":27443,"tid":27477,"ts":326458148470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":228536,"id":"0xaf88ab28f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458150240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458150},"tts":228628,"id":"0xaf88ab35f182217a"},
-{"pid":27443,"tid":27477,"ts":326458150240,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":397,"tdur":396,"tts":228628},
-{"pid":27443,"tid":27477,"ts":326458150271,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":366,"tdur":366,"tts":228658},
-{"pid":27443,"tid":27477,"ts":326458150271,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":366,"tdur":366,"tts":228658},
-{"pid":27443,"tid":27477,"ts":326458150301,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":228689},
-{"pid":27443,"tid":27477,"ts":326458150301,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":91,"tts":228689},
-{"pid":27443,"tid":27477,"ts":326458150423,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":228811},
-{"pid":27443,"tid":27477,"ts":326458150423,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":228811},
-{"pid":27443,"tid":27477,"ts":326458150454,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":2},"dur":153,"tdur":153,"tts":228841},
-{"pid":27443,"tid":27477,"ts":326458150454,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":228841},
-{"pid":27443,"tid":27477,"ts":326458150454,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":228841,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458150515,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":228902},
-{"pid":27443,"tid":27477,"ts":326458150515,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":5,"num_edges":2},"dur":30,"tdur":31,"tts":228902},
-{"pid":27443,"tid":27477,"ts":326458150576,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":228963,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458150607,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":228994,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458150607,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":228994,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458150851,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229085,"id":"0xaf88ab37f182217a"},
-{"pid":27443,"tid":27477,"ts":326458150851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":229085},
-{"pid":27443,"tid":27477,"ts":326458150881,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":30,"tts":229116},
-{"pid":27443,"tid":27477,"ts":326458150881,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":229116,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458150881,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":229116},
-{"pid":27443,"tid":27477,"ts":326458150912,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":229146,"id":"0xaf88ab32f182217a"},
-{"pid":27443,"tid":27477,"ts":326458150942,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229177,"id":"0xaf88ab30f182217a"},
-{"pid":27443,"tid":27477,"ts":326458150942,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":229177},
-{"pid":27443,"tid":27477,"ts":326458150942,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":229177},
-{"pid":27443,"tid":27477,"ts":326458150973,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":229208,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458150973,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":229208},
-{"pid":27443,"tid":27477,"ts":326458150973,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":229208,"id":"0xaf88ab33f182217a"},
-{"pid":27443,"tid":27477,"ts":326458151003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229238,"id":"0xaf88ab31f182217a"},
-{"pid":27443,"tid":27477,"ts":326458151003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":229238},
-{"pid":27443,"tid":27477,"ts":326458151003,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":30,"tts":229269},
-{"pid":27443,"tid":27477,"ts":326458151034,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":229269,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458151034,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":229269},
-{"pid":27443,"tid":27477,"ts":326458151064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229299,"id":"0xaf88ab32f182217a"},
-{"pid":27443,"tid":27477,"ts":326458151064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":306,"tdur":305,"tts":229299},
-{"pid":27443,"tid":27477,"ts":326458151095,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":275,"tdur":274,"tts":229330},
-{"pid":27443,"tid":27477,"ts":326458151095,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":183,"tdur":183,"tts":229330},
-{"pid":27443,"tid":27477,"ts":326458151095,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":229360},
-{"pid":27443,"tid":27477,"ts":326458151125,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":229360},
-{"pid":27443,"tid":27477,"ts":326458151156,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":229391},
-{"pid":27443,"tid":27477,"ts":326458151186,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":229421},
-{"pid":27443,"tid":27477,"ts":326458151217,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":229452},
-{"pid":27443,"tid":27477,"ts":326458151217,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":229452},
-{"pid":27443,"tid":27477,"ts":326458151247,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":229482},
-{"pid":27443,"tid":27477,"ts":326458151278,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":229513},
-{"pid":27443,"tid":27477,"ts":326458151278,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":229513},
-{"pid":27443,"tid":27477,"ts":326458151339,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":229574},
-{"pid":27443,"tid":27477,"ts":326458151339,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":229574},
-{"pid":27443,"tid":27477,"ts":326458151370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229604,"id":"0xaf88ab33f182217a"},
-{"pid":27443,"tid":27477,"ts":326458151370,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":229604},
-{"pid":27443,"tid":27477,"ts":326458151400,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":91,"tts":229635},
-{"pid":27443,"tid":27477,"ts":326458151400,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":229635},
-{"pid":27443,"tid":27477,"ts":326458151400,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":229635},
-{"pid":27443,"tid":27477,"ts":326458151400,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":31,"tts":229665},
-{"pid":27443,"tid":27477,"ts":326458151431,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":229665},
-{"pid":27443,"tid":27477,"ts":326458151461,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":229696},
-{"pid":27443,"tid":27477,"ts":326458151492,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":229726},
-{"pid":27443,"tid":27477,"ts":326458152255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229787,"id":"0xaf88abccf182217a"},
-{"pid":27443,"tid":27477,"ts":326458152255,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":229787},
-{"pid":27443,"tid":27477,"ts":326458152285,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458086557.0,"frame_time_us":326458150162.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":229818},
-{"pid":27443,"tid":27477,"ts":326458152316,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458086557.0,"frame_time_us":326458150162.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":229848},
-{"pid":27443,"tid":27477,"ts":326458152346,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458166828},"dur":31,"tdur":30,"tts":229879},
-{"pid":27443,"tid":27477,"ts":326458152346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":229879,"id":"0xaf88abcdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458155429,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":230001,"id":"0xaf88abcef182217a"},
-{"pid":27443,"tid":27477,"ts":326458155459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1618,"tdur":1617,"tts":230032},
-{"pid":27443,"tid":27477,"ts":326458155459,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1618,"tdur":1617,"tts":230032},
-{"pid":27443,"tid":27471,"ts":326458150759,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337097,"id":"0xaf88ab30f182217a"},
-{"pid":27443,"tid":27471,"ts":326458150790,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":337128},
-{"pid":27443,"tid":27471,"ts":326458150790,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":337158},
-{"pid":27443,"tid":27471,"ts":326458150820,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337158,"id":"0xaf88ab31f182217a"},
-{"pid":27443,"tid":27471,"ts":326458157016,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":337158},
-{"pid":27443,"tid":27471,"ts":326458157046,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":337189},
-{"pid":27443,"tid":27471,"ts":326458157077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337219,"id":"0xaf88abcff182217a"},
-{"pid":27443,"tid":27471,"ts":326458157077,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":337219},
-{"pid":27443,"tid":27471,"ts":326458157077,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":337219},
-{"pid":27443,"tid":27471,"ts":326458157107,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337250,"id":"0xaf88abc8f182217a"},
-{"pid":27443,"tid":27471,"ts":326458157107,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":337250},
-{"pid":27443,"tid":27471,"ts":326458157107,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":337250},
-{"pid":27443,"tid":27471,"ts":326458157138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337280,"id":"0xaf88abc9f182217a"},
-{"pid":27443,"tid":27471,"ts":326458184332,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":337311},
-{"pid":27443,"tid":27471,"ts":326458184362,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":337341},
-{"pid":27443,"tid":27471,"ts":326458184362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337341,"id":"0xaf88abdcf182217a"},
-{"pid":27443,"tid":27471,"ts":326458184393,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":337372},
-{"pid":27443,"tid":27471,"ts":326458184393,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":337372},
-{"pid":27443,"tid":27471,"ts":326458184423,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337402,"id":"0xaf88abddf182217a"},
-{"pid":27443,"tid":27471,"ts":326458184454,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":337433},
-{"pid":27443,"tid":27471,"ts":326458184454,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":337433},
-{"pid":27443,"tid":27471,"ts":326458184454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337433,"id":"0xaf88abdef182217a"},
-{"pid":27443,"tid":27471,"ts":326458189337,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":337494},
-{"pid":27443,"tid":27471,"ts":326458189398,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":337524},
-{"pid":27443,"tid":27471,"ts":326458189398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337524,"id":"0xaf88abdaf182217a"},
-{"pid":27443,"tid":27471,"ts":326458189428,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":337555},
-{"pid":27443,"tid":27471,"ts":326458189459,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":337585},
-{"pid":27443,"tid":27471,"ts":326458189459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337585,"id":"0xaf88abdbf182217a"},
-{"pid":27443,"tid":27471,"ts":326458189459,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":337585},
-{"pid":27443,"tid":27471,"ts":326458189489,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":337616},
-{"pid":27443,"tid":27471,"ts":326458189489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337616,"id":"0xaf88abd4f182217a"},
-{"pid":27443,"tid":27496,"ts":326458202857,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1557,"tdur":1221,"tts":55730},
-{"pid":27443,"tid":27496,"ts":326458202857,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":55760},
-{"pid":27443,"tid":27496,"ts":326458204383,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":56951},
-{"pid":27443,"tid":27546,"ts":326458207435,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":4456,"tdur":3570,"tts":20357},
-{"pid":27443,"tid":27546,"ts":326458207466,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":20387},
-{"pid":27443,"tid":27546,"ts":326458211861,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":23897},
-{"pid":27443,"tid":27471,"ts":326458216042,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":337677},
-{"pid":27443,"tid":27471,"ts":326458216073,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":337707},
-{"pid":27443,"tid":27471,"ts":326458216073,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337707,"id":"0xaf88abedf182217a"},
-{"pid":27443,"tid":27471,"ts":326458216103,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":337738},
-{"pid":27443,"tid":27471,"ts":326458216134,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":337768},
-{"pid":27443,"tid":27471,"ts":326458216134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337768,"id":"0xaf88abeef182217a"},
-{"pid":27443,"tid":27471,"ts":326458216134,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":337768},
-{"pid":27443,"tid":27471,"ts":326458216164,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":337799},
-{"pid":27443,"tid":27471,"ts":326458216164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337799,"id":"0xaf88abeff182217a"},
-{"pid":27443,"tid":27498,"ts":326458224679,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":244,"tts":39188},
-{"pid":27443,"tid":27498,"ts":326458224710,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":39188},
-{"pid":27443,"tid":27498,"ts":326458224954,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":39432},
-{"pid":27443,"tid":27471,"ts":326458234171,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":92,"tts":337829},
-{"pid":27443,"tid":27471,"ts":326458234202,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":61,"tts":337860},
-{"pid":27443,"tid":27471,"ts":326458234232,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337891,"id":"0xaf88abe0f182217a"},
-{"pid":27443,"tid":27469,"ts":326458234263,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":61,"tts":277308},
-{"pid":27443,"tid":27469,"ts":326458234293,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":184,"tdur":31,"tts":277338},
-{"pid":27443,"tid":27471,"ts":326458234385,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":337921},
-{"pid":27443,"tid":27471,"ts":326458234415,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":337952},
-{"pid":27443,"tid":27471,"ts":326458234415,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337952,"id":"0xaf88abe1f182217a"},
-{"pid":27443,"tid":27469,"ts":326458234446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277338,"id":"0xaf88abe2f182217a"},
-{"pid":27443,"tid":27471,"ts":326458244213,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":337982},
-{"pid":27443,"tid":27471,"ts":326458244243,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":338013},
-{"pid":27443,"tid":27471,"ts":326458244274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338043,"id":"0xaf88abf9f182217a"},
-{"pid":27443,"tid":27471,"ts":326458244304,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":338074},
-{"pid":27443,"tid":27471,"ts":326458244304,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338074},
-{"pid":27443,"tid":27471,"ts":326458244304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338074,"id":"0xaf88abfaf182217a"},
-{"pid":27443,"tid":27459,"ts":326458155368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5822859,"id":"0xaf88abcef182217a"},
-{"pid":27443,"tid":27459,"ts":326458156100,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5822981},
-{"pid":27443,"tid":27459,"ts":326458156161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458138},"tts":5823042,"id":"0xaf88a839f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458156161,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":30,"tts":5823073},
-{"pid":27443,"tid":27459,"ts":326458156192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5823073,"id":"0xaf88a833f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458156253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5823134,"id":"0xaf88a831f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458156253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5823134},
-{"pid":27443,"tid":27459,"ts":326458156283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5823164,"id":"0xaf88a8ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458156283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5823164,"id":"0xaf88ab1ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458156283,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":31,"tdur":31,"tts":5823164},
-{"pid":27443,"tid":27459,"ts":326458156344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5823226,"id":"0xaf88a832f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458156344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8210,"tdur":1190,"tts":5823226},
-{"pid":27443,"tid":27459,"ts":326458156344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5823226,"id":"0xaf88ab2ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458156375,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":8179,"tdur":1160,"tts":5823256},
-{"pid":27443,"tid":27459,"ts":326458156436,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":8088,"tdur":1068,"tts":5823317},
-{"pid":27443,"tid":27459,"ts":326458156436,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5823317,"id":"0x300000013"},
-{"pid":27443,"tid":27459,"ts":326458156466,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":7356,"tdur":946,"tts":5823348},
-{"pid":27443,"tid":27459,"ts":326458156497,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":7325,"tdur":916,"tts":5823378},
-{"pid":27443,"tid":27459,"ts":326458156558,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5823439},
-{"pid":27443,"tid":27459,"ts":326458156589,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5823470},
-{"pid":27443,"tid":27459,"ts":326458156619,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5823531},
-{"pid":27443,"tid":27459,"ts":326458156711,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5823561},
-{"pid":27443,"tid":27459,"ts":326458156772,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":7019,"tdur":671,"tts":5823592},
-{"pid":27443,"tid":27459,"ts":326458156985,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":6776,"tdur":458,"tts":5823775},
-{"pid":27443,"tid":27459,"ts":326458156985,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":3663,"tdur":0,"tts":5823775},
-{"pid":27443,"tid":27459,"ts":326458160648,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5823775},
-{"pid":27443,"tid":27459,"ts":326458161472,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":6,"frame":"0x78c60000"}},"tts":5824141,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458161502,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":2198,"tdur":31,"tts":5824141},
-{"pid":27443,"tid":27459,"ts":326458161533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824172,"id":"0xaf88abc5f182217a"},
-{"pid":27443,"tid":27459,"ts":326458163730,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5824202},
-{"pid":27443,"tid":27459,"ts":326458163852,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":672,"tdur":61,"tts":5824324},
-{"pid":27443,"tid":27459,"ts":326458163852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824324,"id":"0xaf88addef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458164585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5824446,"id":"0xaf88a8ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164615,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5824477},
-{"pid":27443,"tid":27459,"ts":326458164615,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824477,"id":"0xaf88a8cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164646,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5824507,"id":"0xaf88ab2ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458164646,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":5824507},
-{"pid":27443,"tid":27459,"ts":326458164646,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5824507},
-{"pid":27443,"tid":27459,"ts":326458164707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5824568,"id":"0xaf88a8cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":5824568},
-{"pid":27443,"tid":27459,"ts":326458164737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824599,"id":"0xaf88a8cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5824599,"id":"0xaf88ab28f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458164737,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":5824599},
-{"pid":27443,"tid":27459,"ts":326458164768,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5824629},
-{"pid":27443,"tid":27459,"ts":326458164799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5824690,"id":"0xaf88a8cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":62,"tts":5824690},
-{"pid":27443,"tid":27459,"ts":326458164829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824690,"id":"0xaf88a8cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5824721,"id":"0xaf88ab29f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458164860,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":5824721},
-{"pid":27443,"tid":27459,"ts":326458164860,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":5824721},
-{"pid":27443,"tid":27459,"ts":326458164921,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5824782,"id":"0xaf88a8cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164921,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5824782},
-{"pid":27443,"tid":27459,"ts":326458164921,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824813,"id":"0xaf88a8c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458164951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5824813,"id":"0xaf88ab2af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458164951,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":5824813},
-{"pid":27443,"tid":27459,"ts":326458164951,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":5824813},
-{"pid":27443,"tid":27459,"ts":326458165012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5824874,"id":"0xaf88a8c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458165012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":5824874},
-{"pid":27443,"tid":27459,"ts":326458171116,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5824965,"id":"0xaf88a8c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458171116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2198,"tdur":1190,"tts":5824965},
-{"pid":27443,"tid":27459,"ts":326458171147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5824996,"id":"0xaf88a8caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458171147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5824996,"id":"0xaf88ab2bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458171147,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":5824996},
-{"pid":27443,"tid":27459,"ts":326458171391,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1892,"tdur":1099,"tts":5825026},
-{"pid":27443,"tid":27477,"ts":326458155459,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":230032},
-{"pid":27443,"tid":27477,"ts":326458155490,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1587,"tdur":1587,"tts":230062},
-{"pid":27443,"tid":27477,"ts":326458155490,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1556,"tdur":1557,"tts":230062},
-{"pid":27443,"tid":27477,"ts":326458155520,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":230093},
-{"pid":27443,"tid":27477,"ts":326458155520,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":230093},
-{"pid":27443,"tid":27477,"ts":326458155520,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":230123,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458155551,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":230123},
-{"pid":27443,"tid":27477,"ts":326458155581,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":396,"tts":230154},
-{"pid":27443,"tid":27477,"ts":326458156039,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1007,"tdur":1008,"tts":230611},
-{"pid":27443,"tid":27477,"ts":326458156039,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":59},"dur":275,"tdur":275,"tts":230611},
-{"pid":27443,"tid":27477,"ts":326458156314,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":59},"dur":30,"tdur":31,"tts":230886},
-{"pid":27443,"tid":27477,"ts":326458156344,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":59},"tts":230917},
-{"pid":27443,"tid":27477,"ts":326458156497,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":231069},
-{"pid":27443,"tid":27477,"ts":326458156497,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":231069},
-{"pid":27443,"tid":27477,"ts":326458156527,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":519,"tdur":519,"tts":231100},
-{"pid":27443,"tid":27477,"ts":326458156527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":184,"tdur":183,"tts":231100},
-{"pid":27443,"tid":27477,"ts":326458156711,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":231283},
-{"pid":27443,"tid":27477,"ts":326458156741,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":231313},
-{"pid":27443,"tid":27477,"ts":326458156741,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":275,"tdur":275,"tts":231313},
-{"pid":27443,"tid":27477,"ts":326458156741,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":214,"tdur":214,"tts":231313},
-{"pid":27443,"tid":27477,"ts":326458156772,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":231344,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458156772,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11989},"dur":91,"tdur":61,"tts":231374},
-{"pid":27443,"tid":27477,"ts":326458156833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":231405,"id":"0xaf88adc2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458156894,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":231466},
-{"pid":27443,"tid":27477,"ts":326458156894,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":231466},
-{"pid":27443,"tid":27477,"ts":326458156955,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":231527,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458157016,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":231588,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458157046,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":231619,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458157077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231649,"id":"0xaf88abcff182217a"},
-{"pid":27443,"tid":27477,"ts":326458157107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":231680},
-{"pid":27443,"tid":27477,"ts":326458157107,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":231680},
-{"pid":27443,"tid":27477,"ts":326458157107,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":231710,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458157138,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":0,"tts":231710},
-{"pid":27443,"tid":27477,"ts":326458157138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":231710,"id":"0xaf88abcaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458157168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231741,"id":"0xaf88abc8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458157199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":231771},
-{"pid":27443,"tid":27477,"ts":326458157199,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":231771},
-{"pid":27443,"tid":27477,"ts":326458157229,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":231802,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458157229,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":231802},
-{"pid":27443,"tid":27477,"ts":326458157260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":231832,"id":"0xaf88abcbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458157291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231863,"id":"0xaf88abc9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458157291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":457,"tdur":61,"tts":231863},
-{"pid":27443,"tid":27477,"ts":326458157291,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":457,"tdur":61,"tts":231863},
-{"pid":27443,"tid":27477,"ts":326458157321,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":231893,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458157321,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":0,"tts":231893},
-{"pid":27443,"tid":27477,"ts":326458157748,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":231924},
-{"pid":27443,"tid":27477,"ts":326458157748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231924,"id":"0xaf88abcaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458157779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1282,"tdur":1191,"tts":231954},
-{"pid":27443,"tid":27477,"ts":326458157779,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1251,"tdur":1160,"tts":231954},
-{"pid":27443,"tid":27477,"ts":326458157779,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":231985},
-{"pid":27443,"tid":27477,"ts":326458157809,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":231985},
-{"pid":27443,"tid":27477,"ts":326458157840,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":232015},
-{"pid":27443,"tid":27477,"ts":326458157840,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":232015},
-{"pid":27443,"tid":27477,"ts":326458157962,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1068,"tdur":977,"tts":232137},
-{"pid":27443,"tid":27477,"ts":326458157962,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1068,"tdur":977,"tts":232137},
-{"pid":27443,"tid":27477,"ts":326458157962,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1038,"tdur":947,"tts":232137},
-{"pid":27443,"tid":27477,"ts":326458157992,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":232168,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458158145,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":232229},
-{"pid":27443,"tid":27477,"ts":326458158176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":232260},
-{"pid":27443,"tid":27477,"ts":326458158206,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232290},
-{"pid":27443,"tid":27477,"ts":326458158206,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":232321},
-{"pid":27443,"tid":27477,"ts":326458158237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":232321},
-{"pid":27443,"tid":27477,"ts":326458158267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232351},
-{"pid":27443,"tid":27477,"ts":326458158267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":232382},
-{"pid":27443,"tid":27466,"ts":326458157260,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220601,"id":"0xccc37702"},
-{"pid":27443,"tid":27466,"ts":326458160526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220784,"id":"0xaf88adc3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458160526,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":220784},
-{"pid":27443,"tid":27466,"ts":326458160556,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220814,"id":"0xccc37802"},
-{"pid":27443,"tid":27466,"ts":326458160587,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":220845,"id":"0xaf88addcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458160617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":220875},
-{"pid":27443,"tid":27466,"ts":326458160617,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220875,"id":"0xccc37906"},
-{"pid":27443,"tid":27466,"ts":326458160892,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":220936},
-{"pid":27443,"tid":27466,"ts":326458160892,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":220936},
-{"pid":27443,"tid":27466,"ts":326458160922,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":220967,"id":"0xc4c0dd0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458161350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":221089,"id":"0xaf88adddf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458161350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":221089},
-{"pid":27443,"tid":27466,"ts":326458161380,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221120,"id":"0xccc37a02"},
-{"pid":27443,"tid":27466,"ts":326458163395,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":221211},
-{"pid":27443,"tid":27466,"ts":326458163425,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":221242},
-{"pid":27443,"tid":27466,"ts":326458163425,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221242,"id":"0xba440b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458163486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":221303,"id":"0xaf88abc6f182217a"},
-{"pid":27443,"tid":27466,"ts":326458164219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":221425,"id":"0xaf88addef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458164249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":221425},
-{"pid":27443,"tid":27466,"ts":326458164249,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221425,"id":"0xccc37b02"},
-{"pid":27443,"tid":27466,"ts":326458170506,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":221516},
-{"pid":27443,"tid":27466,"ts":326458170536,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":221547},
-{"pid":27443,"tid":27466,"ts":326458170536,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221547,"id":"0xba440d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458170567,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":221577},
-{"pid":27443,"tid":27466,"ts":326458170597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":221608,"id":"0xaf88abc7f182217a"},
-{"pid":27443,"tid":27466,"ts":326458172032,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":221669},
-{"pid":27443,"tid":27466,"ts":326458172062,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":221699},
-{"pid":27443,"tid":27466,"ts":326458172093,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221730,"id":"0xba440e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458172093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":221760,"id":"0xaf88abc0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458173283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":221852,"id":"0xaf88addff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458173314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":221852},
-{"pid":27443,"tid":27466,"ts":326458173314,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221852,"id":"0xccc37d02"},
-{"pid":27443,"tid":27466,"ts":326458173955,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":221944},
-{"pid":27443,"tid":27466,"ts":326458173985,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":221974},
-{"pid":27443,"tid":27466,"ts":326458173985,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":221974,"id":"0xba440f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458174016,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":222005},
-{"pid":27443,"tid":27466,"ts":326458174046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":222035,"id":"0xaf88abc2f182217a"},
-{"pid":27443,"tid":27466,"ts":326458186468,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":222127},
-{"pid":27443,"tid":27466,"ts":326458186498,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":222157},
-{"pid":27443,"tid":27466,"ts":326458186529,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222188,"id":"0xba441002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458186560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":222218,"id":"0xaf88abdff182217a"},
-{"pid":27443,"tid":27466,"ts":326458188757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":222340,"id":"0xaf88add8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458188757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":222340},
-{"pid":27443,"tid":27466,"ts":326458188757,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222371,"id":"0xccc37f02"},
-{"pid":27443,"tid":27466,"ts":326458191962,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":222432},
-{"pid":27443,"tid":27466,"ts":326458191992,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":222462},
-{"pid":27443,"tid":27466,"ts":326458192023,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222493,"id":"0xba441102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458192023,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":0,"tts":222523},
-{"pid":27443,"tid":27466,"ts":326458192053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":222523,"id":"0xaf88abd0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458192511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":222585,"id":"0xaf88add9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458192542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":222615},
-{"pid":27443,"tid":27466,"ts":326458192542,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222615,"id":"0xccc38006"},
-{"pid":27443,"tid":27466,"ts":326458192969,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":222676},
-{"pid":27443,"tid":27466,"ts":326458192999,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":222707},
-{"pid":27443,"tid":27466,"ts":326458193030,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222737,"id":"0xc4c0e00a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458193427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":222798,"id":"0xaf88addaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458193457,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":222829},
-{"pid":27443,"tid":27466,"ts":326458193457,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222829,"id":"0xccc38102"},
-{"pid":27443,"tid":27466,"ts":326458195319,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":222890},
-{"pid":27443,"tid":27466,"ts":326458195349,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":222920},
-{"pid":27443,"tid":27466,"ts":326458195380,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":222951,"id":"0xba441202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458195410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":222981,"id":"0xaf88abd1f182217a"},
-{"pid":27443,"tid":27466,"ts":326458202339,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":223073},
-{"pid":27443,"tid":27466,"ts":326458202369,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":223103},
-{"pid":27443,"tid":27477,"ts":326458158298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":232382},
-{"pid":27443,"tid":27477,"ts":326458158328,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":232412},
-{"pid":27443,"tid":27477,"ts":326458158359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232443},
-{"pid":27443,"tid":27477,"ts":326458158359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":232443},
-{"pid":27443,"tid":27477,"ts":326458158389,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232473},
-{"pid":27443,"tid":27477,"ts":326458158420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232504},
-{"pid":27443,"tid":27477,"ts":326458158420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":232504},
-{"pid":27443,"tid":27477,"ts":326458158450,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232534},
-{"pid":27443,"tid":27477,"ts":326458158450,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":232534},
-{"pid":27443,"tid":27477,"ts":326458158481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":232565},
-{"pid":27443,"tid":27477,"ts":326458158511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232595},
-{"pid":27443,"tid":27477,"ts":326458158511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":232595},
-{"pid":27443,"tid":27477,"ts":326458158542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232626},
-{"pid":27443,"tid":27477,"ts":326458158572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232656},
-{"pid":27443,"tid":27477,"ts":326458158572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":232656},
-{"pid":27443,"tid":27477,"ts":326458158603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232687},
-{"pid":27443,"tid":27477,"ts":326458158603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":232717},
-{"pid":27443,"tid":27477,"ts":326458158633,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":232717},
-{"pid":27443,"tid":27477,"ts":326458158664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232748},
-{"pid":27443,"tid":27477,"ts":326458158725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":232809},
-{"pid":27443,"tid":27477,"ts":326458158755,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232839},
-{"pid":27443,"tid":27477,"ts":326458158786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232870},
-{"pid":27443,"tid":27477,"ts":326458158817,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":232900},
-{"pid":27443,"tid":27477,"ts":326458158847,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232931},
-{"pid":27443,"tid":27477,"ts":326458158878,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232962},
-{"pid":27443,"tid":27477,"ts":326458158878,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":232962},
-{"pid":27443,"tid":27477,"ts":326458158908,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":232992},
-{"pid":27443,"tid":27477,"ts":326458158939,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":233053},
-{"pid":27443,"tid":27477,"ts":326458158969,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":233053},
-{"pid":27443,"tid":27477,"ts":326458158969,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":233053},
-{"pid":27443,"tid":27477,"ts":326458159000,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":233084},
-{"pid":27443,"tid":27477,"ts":326458159030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":233114,"id":"0xaf88abc4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458159061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":233145,"id":"0xaf88abcbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458159061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":233145},
-{"pid":27443,"tid":27477,"ts":326458159061,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":92,"tts":233175},
-{"pid":27443,"tid":27477,"ts":326458159091,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":233175},
-{"pid":27443,"tid":27477,"ts":326458159091,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":233175},
-{"pid":27443,"tid":27477,"ts":326458159091,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":233206},
-{"pid":27443,"tid":27477,"ts":326458159122,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":233206},
-{"pid":27443,"tid":27477,"ts":326458159183,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":233267},
-{"pid":27443,"tid":27477,"ts":326458159183,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":233267},
-{"pid":27443,"tid":27477,"ts":326458159213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":233297,"id":"0xaf88abc4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458159213,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2198,"tdur":1770,"tts":233297},
-{"pid":27443,"tid":27477,"ts":326458159213,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2167,"tdur":1740,"tts":233297},
-{"pid":27443,"tid":27477,"ts":326458159244,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":233328},
-{"pid":27443,"tid":27477,"ts":326458159244,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2136,"tdur":1709,"tts":233328},
-{"pid":27443,"tid":27477,"ts":326458159274,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":59},"dur":977,"tdur":946,"tts":233358},
-{"pid":27443,"tid":27477,"ts":326458159305,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":59},"dur":244,"tdur":244,"tts":233389},
-{"pid":27443,"tid":27477,"ts":326458159549,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":59},"dur":31,"tdur":30,"tts":233633},
-{"pid":27443,"tid":27477,"ts":326458159580,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":59},"tts":233663},
-{"pid":27443,"tid":27477,"ts":326458159793,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":233847},
-{"pid":27443,"tid":27477,"ts":326458159793,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":233847},
-{"pid":27443,"tid":27477,"ts":326458159824,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":233877},
-{"pid":27443,"tid":27477,"ts":326458159824,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":233877},
-{"pid":27443,"tid":27477,"ts":326458159824,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":2}},"tts":233877,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458159885,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":233969},
-{"pid":27443,"tid":27477,"ts":326458160220,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":234304},
-{"pid":27443,"tid":27477,"ts":326458160251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":367,"tts":234304},
-{"pid":27443,"tid":27477,"ts":326458160281,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":234335},
-{"pid":27443,"tid":27477,"ts":326458160281,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":672,"tdur":275,"tts":234335},
-{"pid":27443,"tid":27477,"ts":326458160373,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11990},"dur":92,"tdur":92,"tts":234426},
-{"pid":27443,"tid":27477,"ts":326458160404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":234457,"id":"0xaf88adc3f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458160465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":234549,"id":"0xaf88addcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458161014,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":234671,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458161045,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":234701,"id":"0x300000012"},
-{"pid":27443,"tid":27477,"ts":326458161045,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":274,"tdur":244,"tts":234732},
-{"pid":27443,"tid":27477,"ts":326458161258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":234915,"id":"0xaf88adddf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458161350,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":235006,"id":"0xaf88ab29f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458161655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235189,"id":"0xaf88abc5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458161685,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":0,"tts":235220},
-{"pid":27443,"tid":27477,"ts":326458161685,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":235220},
-{"pid":27443,"tid":27477,"ts":326458163578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235281,"id":"0xaf88abc6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458163578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":235281},
-{"pid":27443,"tid":27477,"ts":326458163608,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":235312},
-{"pid":27443,"tid":27477,"ts":326458163639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":235342,"id":"0xaf88ab2af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458167027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458166},"tts":235434,"id":"0xaf88abcdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458167027,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":0,"tts":235434},
-{"pid":27443,"tid":27477,"ts":326458167027,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":235434},
-{"pid":27443,"tid":27477,"ts":326458170689,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235495,"id":"0xaf88abc7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458170689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":235495},
-{"pid":27443,"tid":27477,"ts":326458170689,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":152,"tts":235495},
-{"pid":27443,"tid":27477,"ts":326458170719,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":235525,"id":"0x300000014"},
-{"pid":27443,"tid":27477,"ts":326458170750,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":235556},
-{"pid":27443,"tid":27477,"ts":326458170750,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":235556,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458170781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":235586,"id":"0xaf88ab2bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458170811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":235617,"id":"0xaf88a8c9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458172184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235708,"id":"0xaf88abc0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458172184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":235708},
-{"pid":27443,"tid":27477,"ts":326458172215,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458103233.0,"frame_time_us":326458166838.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":235739},
-{"pid":27443,"tid":27477,"ts":326458172245,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458103233.0,"frame_time_us":326458166838.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":184,"tdur":184,"tts":235769},
-{"pid":27443,"tid":27477,"ts":326458172307,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":60},"tts":235830},
-{"pid":27443,"tid":27477,"ts":326458172368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":235891,"id":"0xaf88ab24f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458172368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":235891,"id":"0xaf88a8cbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458172398,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":235922},
-{"pid":27443,"tid":27477,"ts":326458172398,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458183504},"dur":31,"tdur":31,"tts":235922},
-{"pid":27443,"tid":27477,"ts":326458172429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":235953,"id":"0xaf88abc1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458174077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":236014,"id":"0xaf88abc2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458174107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":236044},
-{"pid":27443,"tid":27477,"ts":326458174107,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":236044},
-{"pid":27443,"tid":27477,"ts":326458174107,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":236075,"id":"0x300000016"},
-{"pid":27443,"tid":27477,"ts":326458174138,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":236075},
-{"pid":27443,"tid":27477,"ts":326458174168,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":236105,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458174168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":236105,"id":"0xaf88ab25f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458174199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":236136,"id":"0xaf88a8c5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458183630,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458183},"tts":236227,"id":"0xaf88abc1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458183660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":611,"tdur":427,"tts":236258},
-{"pid":27443,"tid":27477,"ts":326458183660,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":611,"tdur":427,"tts":236258},
-{"pid":27443,"tid":27477,"ts":326458183660,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":61,"tts":236258},
-{"pid":27443,"tid":27477,"ts":326458183904,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":336,"tdur":335,"tts":236319},
-{"pid":27443,"tid":27477,"ts":326458183935,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":236349},
-{"pid":27443,"tid":27477,"ts":326458183935,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":236349},
-{"pid":27443,"tid":27477,"ts":326458184026,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":236471},
-{"pid":27443,"tid":27477,"ts":326458184057,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":236471},
-{"pid":27443,"tid":27477,"ts":326458184057,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":236471},
-{"pid":27443,"tid":27477,"ts":326458184087,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":236502},
-{"pid":27443,"tid":27477,"ts":326458184087,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":236502,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458184118,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":236532},
-{"pid":27443,"tid":27477,"ts":326458184148,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":236563},
-{"pid":27443,"tid":27477,"ts":326458184209,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":236624,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458184209,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":236624,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458184240,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":236654,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458185003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":236716,"id":"0xaf88abc3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458185003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1373,"tts":236716},
-{"pid":27443,"tid":27477,"ts":326458185003,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":1373,"tts":236716},
-{"pid":27443,"tid":27477,"ts":326458185034,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":236746},
-{"pid":27443,"tid":27477,"ts":326458185034,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1342,"tdur":1312,"tts":236746},
-{"pid":27443,"tid":27477,"ts":326458185034,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1312,"tdur":1312,"tts":236746},
-{"pid":27443,"tid":27477,"ts":326458185064,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":236777},
-{"pid":27443,"tid":27459,"ts":326458171452,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1831,"tdur":1038,"tts":5825087},
-{"pid":27443,"tid":27459,"ts":326458171482,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5825118,"id":"0x300000014"},
-{"pid":27443,"tid":27459,"ts":326458171513,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1679,"tdur":885,"tts":5825148},
-{"pid":27443,"tid":27459,"ts":326458171544,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1617,"tdur":824,"tts":5825179},
-{"pid":27443,"tid":27459,"ts":326458171544,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":5825179},
-{"pid":27443,"tid":27459,"ts":326458171818,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5825270},
-{"pid":27443,"tid":27459,"ts":326458171879,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":611,"tdur":30,"tts":5825301},
-{"pid":27443,"tid":27459,"ts":326458171879,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":611,"tdur":0,"tts":5825301},
-{"pid":27443,"tid":27459,"ts":326458172520,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5825362},
-{"pid":27443,"tid":27459,"ts":326458172551,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5825392},
-{"pid":27443,"tid":27459,"ts":326458172581,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":5825423},
-{"pid":27443,"tid":27459,"ts":326458172734,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":366,"tts":5825606},
-{"pid":27443,"tid":27459,"ts":326458172764,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5825606},
-{"pid":27443,"tid":27459,"ts":326458173070,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":7,"frame":"0x78c60000"}},"tts":5825911,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458173100,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5825972},
-{"pid":27443,"tid":27459,"ts":326458173192,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5826033},
-{"pid":27443,"tid":27459,"ts":326458173222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5826064,"id":"0xaf88addff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458173344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5826186,"id":"0xaf88a8caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458173344,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":5826186},
-{"pid":27443,"tid":27459,"ts":326458173588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13277,"tdur":9888,"tts":5826217},
-{"pid":27443,"tid":27459,"ts":326458173619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5826247,"id":"0xaf88a8c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458173619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5826247,"id":"0xaf88ab24f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458173619,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13246,"tdur":9858,"tts":5826247},
-{"pid":27443,"tid":27459,"ts":326458173649,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":60},"tts":5826278},
-{"pid":27443,"tid":27459,"ts":326458173649,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":5826278},
-{"pid":27443,"tid":27459,"ts":326458173680,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7386,"tdur":6531,"tts":5826308},
-{"pid":27443,"tid":27459,"ts":326458173710,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":5826339},
-{"pid":27443,"tid":27459,"ts":326458173741,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":6,"frame":"0x78c60000"}},"dur":7142,"tdur":6287,"tts":5826369},
-{"pid":27443,"tid":27459,"ts":326458173802,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7081,"tdur":6196,"tts":5826430},
-{"pid":27443,"tid":27459,"ts":326458173833,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5826461},
-{"pid":27443,"tid":27459,"ts":326458173833,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":5826461},
-{"pid":27443,"tid":27459,"ts":326458174382,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5826674},
-{"pid":27443,"tid":27459,"ts":326458174412,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":5826705},
-{"pid":27443,"tid":27459,"ts":326458180852,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5832626},
-{"pid":27443,"tid":27459,"ts":326458180913,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":7,"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":5832687},
-{"pid":27443,"tid":27459,"ts":326458180974,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":5832748},
-{"pid":27443,"tid":27459,"ts":326458181005,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5832778},
-{"pid":27443,"tid":27459,"ts":326458181005,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5832809},
-{"pid":27443,"tid":27459,"ts":326458181066,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2625,"tdur":2625,"tts":5832839},
-{"pid":27443,"tid":27459,"ts":326458181096,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5832870},
-{"pid":27443,"tid":27459,"ts":326458181096,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5832900},
-{"pid":27443,"tid":27459,"ts":326458181127,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5832900},
-{"pid":27443,"tid":27459,"ts":326458181554,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5833328},
-{"pid":27443,"tid":27459,"ts":326458181585,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5833358},
-{"pid":27443,"tid":27459,"ts":326458181585,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2106,"tdur":2075,"tts":5833389},
-{"pid":27443,"tid":27459,"ts":326458181615,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1893,"tdur":1862,"tts":5833389},
-{"pid":27443,"tid":27459,"ts":326458181615,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":5833389},
-{"pid":27443,"tid":27459,"ts":326458181981,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":5833755},
-{"pid":27443,"tid":27459,"ts":326458182195,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":5833969},
-{"pid":27443,"tid":27459,"ts":326458182287,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":5834060},
-{"pid":27443,"tid":27459,"ts":326458182317,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":5834091},
-{"pid":27443,"tid":27459,"ts":326458183508,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":5835281},
-{"pid":27443,"tid":27459,"ts":326458183538,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":5835312},
-{"pid":27443,"tid":27459,"ts":326458183538,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":5835312},
-{"pid":27443,"tid":27459,"ts":326458183691,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":60},"dur":549,"tdur":489,"tts":5835464},
-{"pid":27443,"tid":27459,"ts":326458183691,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":549,"tdur":489,"tts":5835464},
-{"pid":27443,"tid":27459,"ts":326458184057,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":0,"tdur":0,"tts":5835769},
-{"pid":27443,"tid":27459,"ts":326458184057,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":30,"tdur":0,"tts":5835800},
-{"pid":27443,"tid":27459,"ts":326458184087,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":31,"tdur":0,"tts":5835800},
-{"pid":27443,"tid":27459,"ts":326458184118,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":0,"tdur":0,"tts":5835830},{"pid":27411,"tid":27428,"ts":326459031089,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":1587,"tdur":977,"tts":1046329},
-{"pid":27411,"tid":27428,"ts":326459031119,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1046329},
-{"pid":27411,"tid":27428,"ts":326459031150,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1046360},
-{"pid":27411,"tid":27428,"ts":326459031180,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1046390},
-{"pid":27411,"tid":27428,"ts":326459031180,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1046390},
-{"pid":27411,"tid":27428,"ts":326459031211,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1046421},
-{"pid":27411,"tid":27428,"ts":326459031211,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1046421},
-{"pid":27411,"tid":27428,"ts":326459032218,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":0,"tts":1046879},
-{"pid":27411,"tid":27428,"ts":326459032249,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1046879},
-{"pid":27411,"tid":27428,"ts":326459032279,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1046909},
-{"pid":27411,"tid":27428,"ts":326459032279,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1046909},
-{"pid":27411,"tid":27428,"ts":326459032310,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1046940},
-{"pid":27411,"tid":27428,"ts":326459032310,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1046940},
-{"pid":27411,"tid":27428,"ts":326459040672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047428,"id":"0xaf88cd46f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459040672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1047428},
-{"pid":27411,"tid":27428,"ts":326459040672,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":0,"tts":1047459},
-{"pid":27411,"tid":27428,"ts":326459040703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1047459,"id":"0xaf88cd47f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459040733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047489,"id":"0xaf88cd47f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459040733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":122,"tdur":122,"tts":1047489},
-{"pid":27411,"tid":27428,"ts":326459040794,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12581},"dur":31,"tdur":31,"tts":1047550},
-{"pid":27411,"tid":27428,"ts":326459040794,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":0,"tts":1047581},
-{"pid":27411,"tid":27428,"ts":326459041374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047642,"id":"0xaf88cd40f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459041374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":30,"tts":1047642},
-{"pid":27411,"tid":27428,"ts":326459041405,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1047672,"id":"0xaf88cd41f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459041435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047703,"id":"0xaf88cd41f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459041435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1047703},
-{"pid":27411,"tid":27428,"ts":326459045037,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047764,"id":"0xaf88cd42f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459045037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1047764},
-{"pid":27411,"tid":27428,"ts":326459045037,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1047764},
-{"pid":27411,"tid":27428,"ts":326459045067,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1047794,"id":"0xaf88cd43f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459045098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047825,"id":"0xaf88cd43f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459045098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5371,"tdur":3479,"tts":1047825},
-{"pid":27411,"tid":27428,"ts":326459045128,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":92,"tts":1047855},
-{"pid":27411,"tid":27428,"ts":326459045250,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8531},"dur":5189,"tdur":3296,"tts":1047978},
-{"pid":27411,"tid":27428,"ts":326459045281,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5158,"tdur":3266,"tts":1048008},
-{"pid":27411,"tid":27428,"ts":326459048089,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1049931,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459048119,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":76},"dur":2320,"tdur":1313,"tts":1049961},
-{"pid":27411,"tid":27428,"ts":326459048150,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1526,"tdur":1007,"tts":1049992},
-{"pid":27411,"tid":27428,"ts":326459049767,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459042625.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459048119.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901949.0,"time":326458958450.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458946000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459041588.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459006306.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459049676.0},"coordinates":[{"x":538.020263671875,"y":303.86151123046875}],"trace_id":12884901949.0}},"tts":1051091,"id":"0x30000003d"},
-{"pid":27411,"tid":27428,"ts":326459049798,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1051121,"id":"0x30000003d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459049798,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":610,"tdur":122,"tts":1051121},
-{"pid":27411,"tid":27428,"ts":326459049859,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1051213,"id":"0xaf88ced9fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459062189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1051335,"id":"0xaf88cd5cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459062189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1051335},
-{"pid":27411,"tid":27428,"ts":326459062220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1051365,"id":"0xaf88cd5df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459062250,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1051396,"id":"0xaf88cd5df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459062250,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1051396},
-{"pid":27411,"tid":27428,"ts":326459065241,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1051487,"id":"0xaf88cd5ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459065272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1051487},
-{"pid":27411,"tid":27428,"ts":326459065272,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1051487},
-{"pid":27411,"tid":27428,"ts":326459065302,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1051518,"id":"0xaf88cd5ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459065333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1051548,"id":"0xaf88cd5ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459065333,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4791,"tdur":3480,"tts":1051548},
-{"pid":27411,"tid":27428,"ts":326459065394,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11043},"dur":4700,"tdur":3388,"tts":1051609},
-{"pid":27411,"tid":27428,"ts":326459065424,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4670,"tdur":3357,"tts":1051640},
-{"pid":27411,"tid":27428,"ts":326459067652,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1053624,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459067652,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1053624},
-{"pid":27411,"tid":27428,"ts":326459067713,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":77},"dur":2381,"tdur":1312,"tts":1053685},
-{"pid":27411,"tid":27428,"ts":326459067744,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1648,"tdur":946,"tts":1053746},
-{"pid":27411,"tid":27428,"ts":326459069483,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459063166.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459067713.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901951.0,"time":326458988177.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458979000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459062403.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459032035.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459069392.0},"coordinates":[{"x":522.4163818359375,"y":336.86181640625}],"trace_id":12884901951.0}},"tts":1054784,"id":"0x30000003f"},
-{"pid":27411,"tid":27428,"ts":326459069483,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1054784,"id":"0x30000003f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459069605,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459063196.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459067713.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901953.0,"time":326459019857.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459012000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459062403.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459034446.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459069392.0},"coordinates":[{"x":508.7256774902344,"y":370.64007568359375}],"trace_id":12884901953.0}},"tts":1054906,"id":"0x300000041"},
-{"pid":27411,"tid":27428,"ts":326459069605,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1054906,"id":"0x300000041","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459069636,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":458,"tdur":31,"tts":1054936},
-{"pid":27411,"tid":27428,"ts":326459069667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1054967,"id":"0xaf88cedafec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459084225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1055058,"id":"0xaf88cd58f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459084225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":30,"tts":1055089},
-{"pid":27411,"tid":27428,"ts":326459084255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1055089,"id":"0xaf88cd59f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459084286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1055119,"id":"0xaf88cd59f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459084286,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1055119},
-{"pid":27411,"tid":27428,"ts":326459101438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1055241,"id":"0xaf88cd5af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459101438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1055241},
-{"pid":27411,"tid":27428,"ts":326459101438,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1055241},
-{"pid":27411,"tid":27428,"ts":326459101469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1055272,"id":"0xaf88cd5bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459101499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1055302,"id":"0xaf88cd5bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459101499,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4334,"tdur":3815,"tts":1055333},
-{"pid":27411,"tid":27428,"ts":326459101560,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13950},"dur":4273,"tdur":3785,"tts":1055363},
-{"pid":27411,"tid":27428,"ts":326459101591,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4242,"tdur":3754,"tts":1055394},
-{"pid":27411,"tid":27428,"ts":326459102567,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":230},"dur":31,"tdur":30,"tts":1056371},
-{"pid":27411,"tid":27428,"ts":326459102659,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":251},"dur":31,"tdur":31,"tts":1056462},
-{"pid":27411,"tid":27428,"ts":326459102720,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":5},"dur":31,"tdur":31,"tts":1056523},
-{"pid":27411,"tid":27428,"ts":326459102781,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":185},"dur":31,"tdur":31,"tts":1056584},
-{"pid":27411,"tid":27428,"ts":326459102873,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":199},"dur":30,"tdur":30,"tts":1056676},
-{"pid":27411,"tid":27428,"ts":326459104063,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1057866,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459104093,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":78},"dur":1710,"tdur":1220,"tts":1057897},
-{"pid":27411,"tid":27428,"ts":326459104155,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1434,"tdur":946,"tts":1057958},
-{"pid":27411,"tid":27428,"ts":326459105711,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459089871.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459104093.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901954.0,"time":326459037651.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459029000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459084255.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459058649.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459105589.0},"coordinates":[{"x":502.0557556152344,"y":387.79119873046875}],"trace_id":12884901954.0}},"tts":1059026,"id":"0x300000042"},
-{"pid":27411,"tid":27428,"ts":326459105742,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1059056,"id":"0x300000042","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459105742,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1059056},
-{"pid":27411,"tid":27428,"ts":326459105772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1059087,"id":"0xaf88cedbfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459109282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1059240,"id":"0xaf88cd54f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459109312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1059240},
-{"pid":27411,"tid":27428,"ts":326459109343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1059270,"id":"0xaf88cd55f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459109343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1059301,"id":"0xaf88cd55f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459109374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1059301},
-{"pid":27411,"tid":27428,"ts":326459116424,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1059392,"id":"0xaf88cd56f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459116424,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1059392},
-{"pid":27411,"tid":27428,"ts":326459116424,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":0,"tts":1059423},
-{"pid":27411,"tid":27428,"ts":326459116454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1059423,"id":"0xaf88cd57f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459116485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1059453,"id":"0xaf88cd57f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459116485,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4883,"tdur":3693,"tts":1059453},
-{"pid":27411,"tid":27428,"ts":326459116546,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":333},"dur":4792,"tdur":3602,"tts":1059514},
-{"pid":27411,"tid":27428,"ts":326459116576,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4762,"tdur":3571,"tts":1059545},
-{"pid":27411,"tid":27428,"ts":326459119506,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1061773,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459119506,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":79},"dur":1832,"tdur":1343,"tts":1061773},
-{"pid":27411,"tid":27428,"ts":326459119567,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1465,"tdur":976,"tts":1061834},
-{"pid":27411,"tid":27428,"ts":326459121154,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459113860.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459119537.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901955.0,"time":326459053460.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459046000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459109526.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459081264.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459121063.0},"coordinates":[{"x":497.0162048339844,"y":403.44866943359375}],"trace_id":12884901955.0}},"tts":1062932,"id":"0x300000043"},
-{"pid":27411,"tid":27428,"ts":326459121185,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1062963,"id":"0x300000043","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459121246,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1063024},
-{"pid":27411,"tid":27428,"ts":326459121276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1063055,"id":"0xaf88ced4fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459131928,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1063207,"id":"0xaf88cd50f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459131928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1063207},
-{"pid":27411,"tid":27428,"ts":326459131959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1063238,"id":"0xaf88cd51f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459131989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1063268,"id":"0xaf88cd51f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459131989,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1063268},
-{"pid":27411,"tid":27428,"ts":326459136109,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1063360,"id":"0xaf88cd52f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459136109,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":1063390},
-{"pid":27411,"tid":27428,"ts":326459136140,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1063390},
-{"pid":27411,"tid":27428,"ts":326459136140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1063390,"id":"0xaf88cd53f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459135926,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":153,"tdur":122,"tts":60155},
-{"pid":27411,"tid":27474,"ts":326459135926,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":60155},
-{"pid":27411,"tid":27474,"ts":326459136018,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":60216,"id":"0xba44b702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459136018,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":60216,"id":"0xaf88cd52f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459141023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":60399,"id":"0xaf88ced5fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459141023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":60399},
-{"pid":27411,"tid":27474,"ts":326459141054,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":60430,"id":"0xc4c14902"},
-{"pid":27411,"tid":27474,"ts":326459165195,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":245,"tts":60521},
-{"pid":27411,"tid":27474,"ts":326459165256,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":60582},
-{"pid":27411,"tid":27474,"ts":326459165256,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":60582,"id":"0xccc42f02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459165287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":60613,"id":"0xaf88cd6cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459165317,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":60643},
-{"pid":27411,"tid":27474,"ts":326459165317,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":60674,"id":"0xccc43006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459165348,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":60674,"id":"0xc4c14a0a"},
-{"pid":27411,"tid":27474,"ts":326459165409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":60735,"id":"0xaf88cd6df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459170079,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":60796},
-{"pid":27411,"tid":27474,"ts":326459170109,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":60857},
-{"pid":27411,"tid":27474,"ts":326459170140,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":60857,"id":"0xba44be02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459170140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":60888,"id":"0xaf88cd68f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459175664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":61010,"id":"0xaf88ced6fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459175664,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":61010},
-{"pid":27411,"tid":27474,"ts":326459175664,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61010,"id":"0xc4c14c02"},
-{"pid":27411,"tid":27474,"ts":326459183294,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":152,"tts":61132},
-{"pid":27411,"tid":27474,"ts":326459183324,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":61162},
-{"pid":27411,"tid":27474,"ts":326459183324,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61162,"id":"0xccc43306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459183355,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61193,"id":"0xc4c14d0a"},
-{"pid":27411,"tid":27474,"ts":326459183385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":61223,"id":"0xaf88cd6af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459198920,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":153,"tdur":123,"tts":61345},
-{"pid":27411,"tid":27474,"ts":326459198951,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":122,"tdur":92,"tts":61376},
-{"pid":27411,"tid":27474,"ts":326459198951,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61376,"id":"0xba44c302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459198951,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":61376},
-{"pid":27411,"tid":27474,"ts":326459199042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":61437,"id":"0xaf88cd64f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459203956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":61559,"id":"0xaf88ced7fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459203956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":61559},
-{"pid":27411,"tid":27474,"ts":326459203987,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61590,"id":"0xc4c14f02"},
-{"pid":27411,"tid":27474,"ts":326459211037,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":244,"tts":61712},
-{"pid":27411,"tid":27474,"ts":326459211067,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":61742},
-{"pid":27411,"tid":27474,"ts":326459211098,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61773,"id":"0xccc43802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459211098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":61803,"id":"0xaf88cd66f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459211159,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":61834},
-{"pid":27411,"tid":27474,"ts":326459211159,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61834,"id":"0xccc43906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459211189,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":61864,"id":"0xc4c1500a"},
-{"pid":27411,"tid":27474,"ts":326459211220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":61925,"id":"0xaf88cd67f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459218606,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":153,"tdur":122,"tts":62017},
-{"pid":27411,"tid":27474,"ts":326459218667,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":62047},
-{"pid":27411,"tid":27474,"ts":326459218667,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62047,"id":"0xba44c702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459218697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":62078,"id":"0xaf88cd62f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459227396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":62231,"id":"0xaf88ced0fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459227396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":62231},
-{"pid":27411,"tid":27474,"ts":326459227426,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62261,"id":"0xc4c15202"},
-{"pid":27411,"tid":27474,"ts":326459231241,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":62353},
-{"pid":27411,"tid":27474,"ts":326459231272,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":152,"tdur":122,"tts":62414},
-{"pid":27411,"tid":27474,"ts":326459231302,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62414,"id":"0xccc43c06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459231333,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62444,"id":"0xc4c1530a"},
-{"pid":27411,"tid":27474,"ts":326459231363,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":62475,"id":"0xaf88cd7cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459233622,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":366,"tdur":183,"tts":62627},
-{"pid":27411,"tid":27474,"ts":326459233683,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":62658},
-{"pid":27411,"tid":27474,"ts":326459233683,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62658,"id":"0xba44ca02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459233683,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":62658,"id":"0xaf88cd7ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459233744,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":244,"tdur":91,"tts":62719},
-{"pid":27411,"tid":27474,"ts":326459233775,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62749,"id":"0xba44cb06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459233775,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62749,"id":"0xc4c1550a"},
-{"pid":27411,"tid":27474,"ts":326459233958,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":62810,"id":"0xaf88cd78f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459238017,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":183,"tdur":153,"tts":62871},
-{"pid":27411,"tid":27428,"ts":326459136170,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1063421,"id":"0xaf88cd53f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459136170,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1063421},
-{"pid":27411,"tid":27428,"ts":326459136231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5128,"tdur":3540,"tts":1063482},
-{"pid":27411,"tid":27428,"ts":326459136384,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3095},"dur":4975,"tdur":3479,"tts":1063543},
-{"pid":27411,"tid":27428,"ts":326459136415,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4944,"tdur":3449,"tts":1063573},
-{"pid":27411,"tid":27428,"ts":326459138887,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1065801,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459138917,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":80},"dur":2442,"tdur":1160,"tts":1065832},
-{"pid":27411,"tid":27428,"ts":326459139009,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1770,"tdur":946,"tts":1065893},
-{"pid":27411,"tid":27428,"ts":326459140871,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459133210.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459138978.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901956.0,"time":326459069544.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459063000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459132142.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459099699.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459140779.0},"coordinates":[{"x":492.92803955078125,"y":419.10223388671875}],"trace_id":12884901956.0}},"tts":1066931,"id":"0x300000044"},
-{"pid":27411,"tid":27428,"ts":326459140871,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1066931,"id":"0x300000044","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459140901,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":427,"tdur":31,"tts":1066961},
-{"pid":27411,"tid":27428,"ts":326459140901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1066992,"id":"0xaf88ced5fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459165348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1067114,"id":"0xaf88cd6cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459165348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":122,"tts":1067114},
-{"pid":27411,"tid":27428,"ts":326459165378,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":153,"tdur":61,"tts":1067144},
-{"pid":27411,"tid":27428,"ts":326459165531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1067205,"id":"0xaf88cd6ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459165562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1067236,"id":"0xaf88cd6df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459165562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1067236},
-{"pid":27411,"tid":27428,"ts":326459165592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1067297,"id":"0xaf88cd6ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459165623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":824,"tdur":824,"tts":1067297},
-{"pid":27411,"tid":27428,"ts":326459165653,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1067327},
-{"pid":27411,"tid":27428,"ts":326459165775,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12610},"dur":611,"tdur":610,"tts":1067450},
-{"pid":27411,"tid":27428,"ts":326459165806,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":580,"tdur":580,"tts":1067480},
-{"pid":27411,"tid":27428,"ts":326459165836,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1067511},
-{"pid":27411,"tid":27428,"ts":326459165836,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1067541},
-{"pid":27411,"tid":27428,"ts":326459165867,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1067541},
-{"pid":27411,"tid":27428,"ts":326459165897,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1067572},
-{"pid":27411,"tid":27428,"ts":326459165897,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1067572},
-{"pid":27411,"tid":27428,"ts":326459165928,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":1067602},
-{"pid":27411,"tid":27428,"ts":326459166416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1068090,"id":"0xaf88cd6ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459166447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1068121,"id":"0xaf88cd6ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459166477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1068151},
-{"pid":27411,"tid":27428,"ts":326459170231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1068243,"id":"0xaf88cd68f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459170231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1068243},
-{"pid":27411,"tid":27428,"ts":326459170231,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":0,"tts":1068274},
-{"pid":27411,"tid":27428,"ts":326459170262,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1068274,"id":"0xaf88cd69f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459170292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1068304,"id":"0xaf88cd69f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459170292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5372,"tdur":5005,"tts":1068304},
-{"pid":27411,"tid":27428,"ts":326459170323,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":91,"tts":1068335},
-{"pid":27411,"tid":27428,"ts":326459170445,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6094},"dur":5219,"tdur":4822,"tts":1068457},
-{"pid":27411,"tid":27428,"ts":326459170475,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5158,"tdur":4792,"tts":1068487},
-{"pid":27411,"tid":27428,"ts":326459171208,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":74},"dur":30,"tdur":30,"tts":1069220},
-{"pid":27411,"tid":27428,"ts":326459171299,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":14},"dur":0,"tdur":0,"tts":1069311},
-{"pid":27411,"tid":27428,"ts":326459171360,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":63},"dur":31,"tdur":31,"tts":1069372},
-{"pid":27411,"tid":27428,"ts":326459172825,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1070837,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459172856,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":81},"dur":2777,"tdur":2411,"tts":1070868},
-{"pid":27411,"tid":27428,"ts":326459172886,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2320,"tdur":1954,"tts":1070898},
-{"pid":27411,"tid":27428,"ts":326459175389,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459167179.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459172856.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901957.0,"time":326459091397.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459079000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459165592.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459133546.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459175206.0},"coordinates":[{"x":488.9736328125,"y":436.13177490234375}],"trace_id":12884901957.0}},"tts":1073035,"id":"0x300000045"},
-{"pid":27411,"tid":27428,"ts":326459175420,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1073065,"id":"0x300000045","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459175511,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459167179.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459172856.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901958.0,"time":326459106962.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459096000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459165623.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459143312.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459175206.0},"coordinates":[{"x":485.70782470703125,"y":451.1168212890625}],"trace_id":12884901958.0}},"tts":1073157,"id":"0x300000046"},
-{"pid":27411,"tid":27428,"ts":326459175542,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1073187,"id":"0x300000046","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459175542,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":61,"tts":1073187},
-{"pid":27411,"tid":27428,"ts":326459175572,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1073218,"id":"0xaf88ced6fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459183477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1073401,"id":"0xaf88cd6af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459183477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1073401},
-{"pid":27411,"tid":27428,"ts":326459183508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1073432,"id":"0xaf88cd6bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459183538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1073462,"id":"0xaf88cd6bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459183538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1073462},
-{"pid":27411,"tid":27428,"ts":326459199103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1073584,"id":"0xaf88cd64f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459199134,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1073615},
-{"pid":27411,"tid":27428,"ts":326459199134,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":0,"tts":1073645},
-{"pid":27411,"tid":27428,"ts":326459199164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1073645,"id":"0xaf88cd65f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459199195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1073676,"id":"0xaf88cd65f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459199195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4761,"tdur":3876,"tts":1073676},
-{"pid":27411,"tid":27428,"ts":326459199256,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9006},"dur":4700,"tdur":3815,"tts":1073737},
-{"pid":27411,"tid":27428,"ts":326459199256,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1073737},
-{"pid":27411,"tid":27428,"ts":326459199348,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4608,"tdur":3724,"tts":1073828},
-{"pid":27411,"tid":27428,"ts":326459201972,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1076117,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459202003,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":82},"dur":1923,"tdur":1373,"tts":1076148},
-{"pid":27411,"tid":27428,"ts":326459202033,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1618,"tdur":1069,"tts":1076178},
-{"pid":27411,"tid":27428,"ts":326459203773,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459196662.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459202003.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901960.0,"time":326459142732.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459129000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459184454.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459162052.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459203651.0},"coordinates":[{"x":480.7626037597656,"y":474.02874755859375}],"trace_id":12884901960.0}},"tts":1077369,"id":"0x300000048"},
-{"pid":27411,"tid":27428,"ts":326459203804,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1077399,"id":"0x300000048","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459203834,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1077430},
-{"pid":27411,"tid":27428,"ts":326459203834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1077430,"id":"0xaf88ced7fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459211189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1077643,"id":"0xaf88cd66f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459211189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":91,"tts":1077674},
-{"pid":27411,"tid":27428,"ts":326459211220,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":153,"tdur":61,"tts":1077674},
-{"pid":27411,"tid":27428,"ts":326459211373,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1077735,"id":"0xaf88cd60f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459211403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1077765,"id":"0xaf88cd67f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459211403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1077765},
-{"pid":27411,"tid":27428,"ts":326459211434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1077826,"id":"0xaf88cd60f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459211464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":275,"tdur":275,"tts":1077826},
-{"pid":27411,"tid":27428,"ts":326459211495,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":92,"tts":1077857},
-{"pid":27411,"tid":27428,"ts":326459211617,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12648},"dur":91,"tdur":92,"tts":1077979},
-{"pid":27411,"tid":27428,"ts":326459211647,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":61,"tdur":61,"tts":1078010},
-{"pid":27411,"tid":27428,"ts":326459211647,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":138},"dur":31,"tdur":30,"tts":1078010},
-{"pid":27411,"tid":27428,"ts":326459211678,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":230},"dur":30,"tdur":31,"tts":1078040},
-{"pid":27411,"tid":27428,"ts":326459211739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1078101,"id":"0xaf88cd61f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459211769,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1078132,"id":"0xaf88cd61f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459211769,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1078132},
-{"pid":27411,"tid":27428,"ts":326459219216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1078223,"id":"0xaf88cd62f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459219216,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":1078254},
-{"pid":27411,"tid":27428,"ts":326459219247,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1078254},
-{"pid":27411,"tid":27428,"ts":326459219277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1078284,"id":"0xaf88cd63f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459219308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1078315,"id":"0xaf88cd63f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459219308,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":8088,"tdur":4426,"tts":1078345},
-{"pid":27411,"tid":27428,"ts":326459219369,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":1078376},
-{"pid":27411,"tid":27428,"ts":326459219674,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12313},"dur":7722,"tdur":4243,"tts":1078528},
-{"pid":27411,"tid":27428,"ts":326459219705,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7660,"tdur":4181,"tts":1078559},
-{"pid":27411,"tid":27428,"ts":326459223733,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":43},"dur":31,"tdur":31,"tts":1079505},
-{"pid":27411,"tid":27428,"ts":326459223825,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":230},"dur":30,"tdur":30,"tts":1079597},
-{"pid":27411,"tid":27428,"ts":326459224069,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":138},"dur":31,"tdur":30,"tts":1079841},
-{"pid":27411,"tid":27428,"ts":326459224679,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":182},"dur":31,"tdur":0,"tts":1080390},
-{"pid":27411,"tid":27428,"ts":326459224771,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":161},"dur":31,"tdur":0,"tts":1080451},
-{"pid":27411,"tid":27428,"ts":326459225748,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1081428,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459225748,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":83},"dur":1617,"tdur":1312,"tts":1081428},
-{"pid":27411,"tid":27428,"ts":326459225809,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1312,"tdur":1007,"tts":1081489},
-{"pid":27411,"tid":27428,"ts":326459227274,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459215829.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459225778.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901961.0,"time":326459152682.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459146000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459211434.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459178075.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459227121.0},"coordinates":[{"x":478.3192443847656,"y":484.2230224609375}],"trace_id":12884901961.0}},"tts":1082649,"id":"0x300000049"},
-{"pid":27411,"tid":27428,"ts":326459227274,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1082649,"id":"0x300000049","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459227304,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1082679},
-{"pid":27411,"tid":27428,"ts":326459227304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1082679,"id":"0xaf88ced0fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459231699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1082832,"id":"0xaf88cd7cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459231699,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1082832},
-{"pid":27411,"tid":27428,"ts":326459231730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1082862,"id":"0xaf88cd7df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459231760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1082893,"id":"0xaf88cd7df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459231760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":1082923},
-{"pid":27411,"tid":27428,"ts":326459233744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1082984,"id":"0xaf88cd7ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459233775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":274,"tdur":91,"tts":1083015},
-{"pid":27411,"tid":27428,"ts":326459233775,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":274,"tdur":91,"tts":1083015},
-{"pid":27411,"tid":27428,"ts":326459233805,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1083045,"id":"0xaf88cd7ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459233805,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1083045},
-{"pid":27411,"tid":27428,"ts":326459234080,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1083137,"id":"0xaf88cd7ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459234080,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":244,"tdur":244,"tts":1083137},
-{"pid":27411,"tid":27428,"ts":326459234110,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12453},"dur":183,"tdur":153,"tts":1083198},
-{"pid":27411,"tid":27428,"ts":326459234141,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":152,"tdur":153,"tts":1083198},
-{"pid":27411,"tid":27428,"ts":326459234324,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1083381,"id":"0xaf88cd78f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459234354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":61,"tts":1083412},
-{"pid":27411,"tid":27428,"ts":326459234354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1083412,"id":"0xaf88cd79f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459234354,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":1083412},
-{"pid":27411,"tid":27428,"ts":326459234599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1083503,"id":"0xaf88cd79f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459234599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1083503},
-{"pid":27411,"tid":27428,"ts":326459238597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1083595,"id":"0xaf88cd7af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459238597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1083595},
-{"pid":27411,"tid":27428,"ts":326459238627,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1083625},
-{"pid":27411,"tid":27428,"ts":326459238627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1083656,"id":"0xaf88cd7bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459238688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1083686,"id":"0xaf88cd7bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459238688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5891,"tdur":3724,"tts":1083686},
-{"pid":27411,"tid":27428,"ts":326459238749,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15115},"dur":5799,"tdur":3632,"tts":1083747},
-{"pid":27411,"tid":27428,"ts":326459238780,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5768,"tdur":3601,"tts":1083778},
-{"pid":27411,"tid":27428,"ts":326459242229,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1086189,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459242229,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":84},"dur":2319,"tdur":1190,"tts":1086189},
-{"pid":27411,"tid":27428,"ts":326459242290,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1984,"tdur":855,"tts":1086250},
-{"pid":27411,"tid":27428,"ts":326459244426,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459232401.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459242259.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901962.0,"time":326459176579.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459163000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459231577.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459206795.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459244304.0},"coordinates":[{"x":475.869140625,"y":494.0234375}],"trace_id":12884901962.0}},"tts":1087257,"id":"0x30000004a"},
-{"pid":27411,"tid":27428,"ts":326459244457,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1087288,"id":"0x30000004a","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459244487,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":31,"tdur":31,"tts":1087318},
-{"pid":27411,"tid":27428,"ts":326459244487,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1087318,"id":"0xaf88ced1fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459262036,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1087471,"id":"0xaf88cd74f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459262067,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1087501},
-{"pid":27411,"tid":27428,"ts":326459262067,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1087501},
-{"pid":27411,"tid":27428,"ts":326459262097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1087532,"id":"0xaf88cd75f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459262128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1087562,"id":"0xaf88cd75f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459262128,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":1190,"tdur":1160,"tts":1087562},
-{"pid":27411,"tid":27428,"ts":326459262159,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":213,"tdur":153,"tts":1087623},
-{"pid":27411,"tid":27428,"ts":326459262159,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":62,"tts":1087623},
-{"pid":27411,"tid":27428,"ts":326459262403,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12726},"dur":854,"tdur":854,"tts":1087807},
-{"pid":27411,"tid":27428,"ts":326459262403,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":854,"tdur":854,"tts":1087807},
-{"pid":27411,"tid":27428,"ts":326459262433,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1087837},
-{"pid":27411,"tid":27428,"ts":326459262464,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1087868},
-{"pid":27411,"tid":27428,"ts":326459262494,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":0,"tts":1087898},
-{"pid":27411,"tid":27428,"ts":326459262494,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1087898},
-{"pid":27411,"tid":27428,"ts":326459262525,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1087929},
-{"pid":27411,"tid":27428,"ts":326459262525,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1087929},
-{"pid":27411,"tid":27428,"ts":326459262922,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1088325},
-{"pid":27411,"tid":27428,"ts":326459262922,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1088325},
-{"pid":27411,"tid":27428,"ts":326459262952,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1088356},
-{"pid":27411,"tid":27428,"ts":326459262952,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1088356},
-{"pid":27411,"tid":27428,"ts":326459262983,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":184,"tts":1088386},
-{"pid":27411,"tid":27428,"ts":326459262983,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":184,"tts":1088386},
-{"pid":27411,"tid":27428,"ts":326459263349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1088753,"id":"0xaf88cd76f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459263349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1088753},
-{"pid":27411,"tid":27428,"ts":326459263379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1088783,"id":"0xaf88cd77f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459263410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1088814,"id":"0xaf88cd77f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459263410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1088814},
-{"pid":27411,"tid":27428,"ts":326459266798,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1088905,"id":"0xaf88cd70f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459266798,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1088905},
-{"pid":27411,"tid":27428,"ts":326459266828,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1088936},
-{"pid":27411,"tid":27428,"ts":326459266828,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1088936,"id":"0xaf88cd71f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459266859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1088966,"id":"0xaf88cd71f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459266859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4272,"tdur":3602,"tts":1088966},
-{"pid":27411,"tid":27428,"ts":326459266889,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":61,"tts":1089027},
-{"pid":27411,"tid":27428,"ts":326459267042,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":1395},"dur":4089,"tdur":3419,"tts":1089149},
-{"pid":27411,"tid":27428,"ts":326459267042,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4089,"tdur":3419,"tts":1089149},
-{"pid":27411,"tid":27428,"ts":326459269178,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1091316,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459269209,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":85},"dur":1892,"tdur":1221,"tts":1091316},
-{"pid":27411,"tid":27428,"ts":326459269270,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1587,"tdur":916,"tts":1091377},
-{"pid":27411,"tid":27428,"ts":326459270948,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459264753.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459269239.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901963.0,"time":326459195319.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459179000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459263593.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459228647.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459270857.0},"coordinates":[{"x":473.4149475097656,"y":502.75518798828125}],"trace_id":12884901963.0}},"tts":1092385,"id":"0x30000004b"},
-{"pid":27411,"tid":27428,"ts":326459270948,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1092385},
-{"pid":27411,"tid":27428,"ts":326459271009,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1092446,"id":"0x30000004b","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459271040,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1092476},
-{"pid":27411,"tid":27428,"ts":326459271070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1092507,"id":"0xaf88ced2fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459284713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1092659,"id":"0xaf88cd72f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459284744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1092690},
-{"pid":27411,"tid":27474,"ts":326459238078,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":62902},
-{"pid":27411,"tid":27474,"ts":326459238108,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":62933,"id":"0xba44cd02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459238139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":62963,"id":"0xaf88cd7af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459244548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":63085,"id":"0xaf88ced1fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459244579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":63085},
-{"pid":27411,"tid":27474,"ts":326459244579,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63085,"id":"0xc4c15702"},
-{"pid":27411,"tid":27474,"ts":326459261731,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":63177},
-{"pid":27411,"tid":27474,"ts":326459261762,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":63207},
-{"pid":27411,"tid":27474,"ts":326459261792,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63238,"id":"0xccc44002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459261823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":63268,"id":"0xaf88cd74f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459262281,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":63360},
-{"pid":27411,"tid":27474,"ts":326459262311,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":63390},
-{"pid":27411,"tid":27474,"ts":326459262311,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63390,"id":"0xccc44106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459262342,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63421,"id":"0xc4c1580a"},
-{"pid":27411,"tid":27474,"ts":326459262372,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":63451,"id":"0xaf88cd76f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459266676,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":63543},
-{"pid":27411,"tid":27474,"ts":326459266706,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":63573},
-{"pid":27411,"tid":27474,"ts":326459266706,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63573,"id":"0xba44d202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459266737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":63604,"id":"0xaf88cd70f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459271254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":63696,"id":"0xaf88ced2fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459271284,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":63726},
-{"pid":27411,"tid":27474,"ts":326459271284,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63726,"id":"0xc4c15a02"},
-{"pid":27411,"tid":27474,"ts":326459284469,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":63848},
-{"pid":27411,"tid":27474,"ts":326459284499,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":63879},
-{"pid":27411,"tid":27474,"ts":326459284530,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63909,"id":"0xccc44506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459284530,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":63909,"id":"0xc4c15b0a"},
-{"pid":27411,"tid":27474,"ts":326459284591,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":63970,"id":"0xaf88cd72f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459290878,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":64062},
-{"pid":27411,"tid":27474,"ts":326459290909,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":64092},
-{"pid":27411,"tid":27474,"ts":326459290909,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":64092,"id":"0xba44d702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459290939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":64123,"id":"0xaf88cd0cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459295761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":64245,"id":"0xaf88ced3fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459295761,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":64245},
-{"pid":27411,"tid":27474,"ts":326459295792,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":64275,"id":"0xc4c15d02"},
-{"pid":27411,"tid":27474,"ts":326459309618,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":64397},
-{"pid":27411,"tid":27474,"ts":326459309648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":64428},
-{"pid":27411,"tid":27474,"ts":326459309648,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":64428,"id":"0xccc44a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459309679,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":64459,"id":"0xc4c15e0a"},
-{"pid":27411,"tid":27474,"ts":326459309709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":64489,"id":"0xaf88cd0ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459313402,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":64642},
-{"pid":27411,"tid":27474,"ts":326459313433,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":64672},
-{"pid":27411,"tid":27474,"ts":326459313433,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":64672,"id":"0xba44db02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459313463,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":64703,"id":"0xaf88cd08f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459317278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":64825,"id":"0xaf88ceecfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459317278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":64825},
-{"pid":27411,"tid":27474,"ts":326459317278,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":64855,"id":"0xc4c16002"},
-{"pid":27411,"tid":27474,"ts":326459324878,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":64947},
-{"pid":27411,"tid":27474,"ts":326459324939,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":65008},
-{"pid":27411,"tid":27474,"ts":326459324939,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65008,"id":"0xccc44e06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459324939,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65038,"id":"0xc4c1610a"},
-{"pid":27411,"tid":27474,"ts":326459325000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":65069,"id":"0xaf88cd0af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459328021,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":65160},
-{"pid":27411,"tid":27474,"ts":326459328052,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":65191},
-{"pid":27411,"tid":27474,"ts":326459328052,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65191,"id":"0xba44df02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459328083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":65222,"id":"0xaf88cd04f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459331928,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":65344,"id":"0xaf88ceedfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459331928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":65344},
-{"pid":27411,"tid":27474,"ts":326459331959,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65374,"id":"0xc4c16302"},
-{"pid":27411,"tid":27474,"ts":326459340657,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":213,"tts":65466},
-{"pid":27411,"tid":27474,"ts":326459340718,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":152,"tts":65527},
-{"pid":27411,"tid":27474,"ts":326459340718,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65527,"id":"0xccc45306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459340748,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65557,"id":"0xc4c1640a"},
-{"pid":27411,"tid":27474,"ts":326459340809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":65618,"id":"0xaf88cd06f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459345265,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":184,"tdur":152,"tts":65771},
-{"pid":27411,"tid":27428,"ts":326459284744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1092690,"id":"0xaf88cd73f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459284744,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1092690},
-{"pid":27411,"tid":27428,"ts":326459284835,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1092781,"id":"0xaf88cd73f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459284835,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1092781},
-{"pid":27411,"tid":27428,"ts":326459291031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1092842,"id":"0xaf88cd0cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459291061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1092873},
-{"pid":27411,"tid":27428,"ts":326459291061,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1092873},
-{"pid":27411,"tid":27428,"ts":326459291092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1092903,"id":"0xaf88cd0df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459291122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1092934,"id":"0xaf88cd0df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459291122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4639,"tdur":3449,"tts":1092934},
-{"pid":27411,"tid":27428,"ts":326459291183,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4057},"dur":4578,"tdur":3388,"tts":1092995},
-{"pid":27411,"tid":27428,"ts":326459291183,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4548,"tdur":3357,"tts":1092995},
-{"pid":27411,"tid":27428,"ts":326459294205,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1095223,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459294235,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":86},"dur":1496,"tdur":1129,"tts":1095223},
-{"pid":27411,"tid":27428,"ts":326459294296,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1221,"tdur":855,"tts":1095284},
-{"pid":27411,"tid":27428,"ts":326459295639,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459288345.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459294266.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901965.0,"time":326459221872.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459213000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459284744.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459258801.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459295548.0},"coordinates":[{"x":469.8399963378906,"y":514.2999877929688}],"trace_id":12884901965.0}},"tts":1096261,"id":"0x30000004d"},
-{"pid":27411,"tid":27428,"ts":326459295639,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1096261,"id":"0x30000004d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459295670,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1096291},
-{"pid":27411,"tid":27428,"ts":326459295670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1096291,"id":"0xaf88ced3fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459309801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1096474,"id":"0xaf88cd0ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459309801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1096474},
-{"pid":27411,"tid":27428,"ts":326459309831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1096505,"id":"0xaf88cd0ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459309862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1096535,"id":"0xaf88cd0ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459309862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1096535},
-{"pid":27411,"tid":27428,"ts":326459313524,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1096657,"id":"0xaf88cd08f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459313524,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":62,"tts":1096657},
-{"pid":27411,"tid":27428,"ts":326459313555,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1096688},
-{"pid":27411,"tid":27428,"ts":326459313555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1096688,"id":"0xaf88cd09f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459313585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1096719,"id":"0xaf88cd09f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459313616,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3662,"tdur":3327,"tts":1096749},
-{"pid":27411,"tid":27428,"ts":326459313646,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6719},"dur":3632,"tdur":3296,"tts":1096780},
-{"pid":27411,"tid":27428,"ts":326459313677,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3571,"tdur":3235,"tts":1096810},
-{"pid":27411,"tid":27428,"ts":326459315661,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1098794,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459315691,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":87},"dur":1557,"tdur":1221,"tts":1098824},
-{"pid":27411,"tid":27428,"ts":326459315722,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1282,"tdur":946,"tts":1098855},
-{"pid":27411,"tid":27428,"ts":326459317156,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459310900.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459315691.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901966.0,"time":326459236735.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459229000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459310075.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459282271.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459317004.0},"coordinates":[{"x":469.0270690917969,"y":517.8917236328125}],"trace_id":12884901966.0}},"tts":1099954,"id":"0x30000004e"},
-{"pid":27411,"tid":27428,"ts":326459317156,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1099954,"id":"0x30000004e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459317187,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1099984},
-{"pid":27411,"tid":27428,"ts":326459317187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1099984,"id":"0xaf88ceecfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459325061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1100167,"id":"0xaf88cd0af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459325092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1100167},
-{"pid":27411,"tid":27428,"ts":326459325122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1100198,"id":"0xaf88cd0bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459325122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1100228,"id":"0xaf88cd0bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459325153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1100228},
-{"pid":27411,"tid":27428,"ts":326459328144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1100320,"id":"0xaf88cd04f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459328144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1100320},
-{"pid":27411,"tid":27428,"ts":326459328174,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1100350},
-{"pid":27411,"tid":27428,"ts":326459328174,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1100350,"id":"0xaf88cd05f3321ac2"},{"pid":27411,"tid":27428,"ts":326459328205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1100381,"id":"0xaf88cd05f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459328235,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3693,"tdur":3326,"tts":1100412},
-{"pid":27411,"tid":27428,"ts":326459328266,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9381},"dur":3662,"tdur":3296,"tts":1100442},
-{"pid":27411,"tid":27428,"ts":326459328296,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3602,"tdur":3235,"tts":1100473},
-{"pid":27411,"tid":27428,"ts":326459330310,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1102487,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459330310,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":88},"dur":1588,"tdur":1221,"tts":1102487},
-{"pid":27411,"tid":27428,"ts":326459330372,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1281,"tdur":916,"tts":1102548},
-{"pid":27411,"tid":27428,"ts":326459331806,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459326099.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459330341.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901968.0,"time":326459271711.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459263000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459325305.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459306321.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459331684.0},"coordinates":[{"x":467.3923645019531,"y":522.2152709960938}],"trace_id":12884901968.0}},"tts":1103616,"id":"0x300000050"},
-{"pid":27411,"tid":27428,"ts":326459331806,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1103616,"id":"0x300000050","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459331837,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1103647},
-{"pid":27411,"tid":27428,"ts":326459331837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1103677,"id":"0xaf88ceedfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459340962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1103830,"id":"0xaf88cd06f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459340962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1103830},
-{"pid":27411,"tid":27428,"ts":326459340993,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1103860,"id":"0xaf88cd07f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459341023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1103891,"id":"0xaf88cd07f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459341023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1103891},
-{"pid":27411,"tid":27474,"ts":326459345327,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":65801},
-{"pid":27411,"tid":27474,"ts":326459345357,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65832,"id":"0xba44e302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459345388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":65862,"id":"0xaf88cd00f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459349355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":65954,"id":"0xaf88ceeefec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459349386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":65985},
-{"pid":27411,"tid":27474,"ts":326459349386,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":65985,"id":"0xc4c16602"},
-{"pid":27411,"tid":27474,"ts":326459357992,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":397,"tdur":213,"tts":66107},
-{"pid":27411,"tid":27474,"ts":326459358023,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":366,"tdur":183,"tts":66137},
-{"pid":27411,"tid":27474,"ts":326459358023,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":66137,"id":"0xccc45806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459358054,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":66168,"id":"0xc4c1670a"},
-{"pid":27411,"tid":27474,"ts":326459358115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":66229,"id":"0xaf88cd02f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459364097,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":66412},
-{"pid":27411,"tid":27474,"ts":326459364158,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":66442},
-{"pid":27411,"tid":27474,"ts":326459364158,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":66442,"id":"0xba44e702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459364188,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":66473,"id":"0xaf88cd1cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459368278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":66595,"id":"0xaf88ceeffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459368308,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":275,"tdur":62,"tts":66625},
-{"pid":27411,"tid":27474,"ts":326459368308,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":66625,"id":"0xc4c16902"},
-{"pid":27411,"tid":27474,"ts":326459442015,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":66748},
-{"pid":27411,"tid":27474,"ts":326459442046,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":66778},
-{"pid":27411,"tid":27474,"ts":326459442046,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":66809,"id":"0xccc46006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459442076,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":66809,"id":"0xc4c16a0a"},
-{"pid":27411,"tid":27474,"ts":326459442137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":66870,"id":"0xaf88cd1ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459445494,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":66992},
-{"pid":27411,"tid":27474,"ts":326459445525,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":67022},
-{"pid":27411,"tid":27474,"ts":326459445525,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":67022,"id":"0xba44f102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459445555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67053,"id":"0xaf88cd18f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459451782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":67236,"id":"0xaf88cee8fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459451812,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":67236},
-{"pid":27411,"tid":27474,"ts":326459451812,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":67236,"id":"0xc4c16c02"},
-{"pid":27411,"tid":27474,"ts":326459723382,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":67388},
-{"pid":27411,"tid":27474,"ts":326459723413,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":310},"dur":61,"tdur":61,"tts":67419},
-{"pid":27411,"tid":27474,"ts":326459723413,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":67419,"id":"0xba44fa02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459723443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67450,"id":"0xaf88cd1af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459745540,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":67572},
-{"pid":27411,"tid":27474,"ts":326459745601,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":310},"dur":61,"tdur":61,"tts":67602},
-{"pid":27411,"tid":27474,"ts":326459745601,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":67602,"id":"0xba44fd02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459745632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67633,"id":"0xaf88cd14f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459843968,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":428,"tdur":214,"tts":67724},
-{"pid":27411,"tid":27474,"ts":326459843999,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":397,"tdur":152,"tts":67755},
-{"pid":27411,"tid":27474,"ts":326459843999,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":67755,"id":"0xccc47b06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459843999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":67755},
-{"pid":27411,"tid":27474,"ts":326459844274,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":67816,"id":"0xc4c16d0a"},
-{"pid":27411,"tid":27474,"ts":326459844335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67877,"id":"0xaf88cd17f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459851049,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":67999},
-{"pid":27411,"tid":27474,"ts":326459851080,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":68029},
-{"pid":27411,"tid":27474,"ts":326459851110,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68060,"id":"0xba450c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459851110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68060,"id":"0xaf88cd12f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459857031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":68151,"id":"0xaf88cee9fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459857062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":68182},
-{"pid":27411,"tid":27474,"ts":326459857062,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68182,"id":"0xc4c16f02"},
-{"pid":27411,"tid":27474,"ts":326459858710,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":68274},
-{"pid":27411,"tid":27474,"ts":326459858740,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":68304},
-{"pid":27411,"tid":27474,"ts":326459858740,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68304,"id":"0xccc47e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459858771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68335,"id":"0xaf88cd2cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459868079,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":68457},
-{"pid":27411,"tid":27474,"ts":326459868110,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":68487},
-{"pid":27411,"tid":27474,"ts":326459868110,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68487,"id":"0xccc48006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459868140,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68518,"id":"0xc4c1700a"},
-{"pid":27411,"tid":27474,"ts":326459868171,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68548,"id":"0xaf88cd2ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459883126,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":68670},
-{"pid":27411,"tid":27474,"ts":326459883157,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":68701},
-{"pid":27411,"tid":27474,"ts":326459883157,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68701,"id":"0xba451202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459883187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68731,"id":"0xaf88cd29f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459345449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1103952,"id":"0xaf88cd00f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459345449,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":1103952},
-{"pid":27411,"tid":27428,"ts":326459345571,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":1104074},
-{"pid":27411,"tid":27428,"ts":326459345571,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1104074},
-{"pid":27411,"tid":27428,"ts":326459345601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1104104,"id":"0xaf88cd01f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459345632,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1104135,"id":"0xaf88cd01f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459345632,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3754,"tdur":3388,"tts":1104135},
-{"pid":27411,"tid":27428,"ts":326459345693,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12043},"dur":3662,"tdur":3296,"tts":1104196},
-{"pid":27411,"tid":27428,"ts":326459345723,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3632,"tdur":3265,"tts":1104227},
-{"pid":27411,"tid":27428,"ts":326459347707,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1106210,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459347707,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":89},"dur":1648,"tdur":1282,"tts":1106210},
-{"pid":27411,"tid":27428,"ts":326459347768,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1374,"tdur":1008,"tts":1106271},
-{"pid":27411,"tid":27428,"ts":326459349233,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459341908.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459347738.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901969.0,"time":326459287399.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459279000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459340993.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459321307.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459349142.0},"coordinates":[{"x":467.5,"y":523.4259033203125}],"trace_id":12884901969.0}},"tts":1107370,"id":"0x300000051"},
-{"pid":27411,"tid":27428,"ts":326459349264,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1107401,"id":"0x300000051","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459349264,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1107401},
-{"pid":27411,"tid":27428,"ts":326459349294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1107431,"id":"0xaf88ceeefec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459358237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1107614,"id":"0xaf88cd02f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459358237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1107614},
-{"pid":27411,"tid":27428,"ts":326459358267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1107645,"id":"0xaf88cd03f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459358298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1107675,"id":"0xaf88cd03f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459358298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":0,"tts":1107706},
-{"pid":27411,"tid":27428,"ts":326459364249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1107797,"id":"0xaf88cd1cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459364249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1107797},
-{"pid":27411,"tid":27428,"ts":326459364280,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1107828},
-{"pid":27411,"tid":27428,"ts":326459364280,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1107828,"id":"0xaf88cd1df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459364310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1107858,"id":"0xaf88cd1df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459364341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3967,"tdur":3571,"tts":1107889},
-{"pid":27411,"tid":27428,"ts":326459364371,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14705},"dur":3937,"tdur":3540,"tts":1107920},
-{"pid":27411,"tid":27428,"ts":326459364402,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3906,"tdur":3510,"tts":1107950},
-{"pid":27411,"tid":27428,"ts":326459366416,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1109964,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459366416,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":90},"dur":1892,"tdur":1496,"tts":1109964},
-{"pid":27411,"tid":27428,"ts":326459366447,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1008,"tts":1110025},
-{"pid":27411,"tid":27428,"ts":326459368156,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459359488.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459366447.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901971.0,"time":326459319384.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459313000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459358603.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459337147.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459367851.0},"coordinates":[{"x":467.5,"y":525.0576782226562}],"trace_id":12884901971.0}},"tts":1111338,"id":"0x300000053"},
-{"pid":27411,"tid":27428,"ts":326459368156,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1111338,"id":"0x300000053","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459368186,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":61,"tts":1111368},
-{"pid":27411,"tid":27428,"ts":326459368217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1111399,"id":"0xaf88ceeffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459442229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1111582,"id":"0xaf88cd1ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459442259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":62,"tts":1111612},
-{"pid":27411,"tid":27428,"ts":326459442290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1111643,"id":"0xaf88cd1ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459442320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1111674,"id":"0xaf88cd1ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459442351,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1111704},
-{"pid":27411,"tid":27428,"ts":326459445647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1111826,"id":"0xaf88cd18f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459445677,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":62,"tdur":61,"tts":1111857},
-{"pid":27411,"tid":27428,"ts":326459445677,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":1111857},
-{"pid":27411,"tid":27428,"ts":326459445708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1111887,"id":"0xaf88cd19f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459445769,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1111948,"id":"0xaf88cd19f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459445769,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6074,"tdur":5463,"tts":1111948},
-{"pid":27411,"tid":27428,"ts":326459445861,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":983},"dur":5951,"tdur":5341,"tts":1112040},
-{"pid":27411,"tid":27428,"ts":326459445891,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5891,"tdur":5311,"tts":1112070},
-{"pid":27411,"tid":27428,"ts":326459449004,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1115183,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459449004,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":91},"dur":2778,"tdur":2198,"tts":1115183},
-{"pid":27411,"tid":27428,"ts":326459449096,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2136,"tdur":1556,"tts":1115275},
-{"pid":27411,"tid":27428,"ts":326459451446,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459443388.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459449035.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901975.0,"time":326459374046.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459373000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459442351.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459392694.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459451263.0},"coordinates":[{"x":467.5,"y":526.6956176757812}],"trace_id":12884901975.0}},"tts":1117045,"id":"0x300000057"},
-{"pid":27411,"tid":27428,"ts":326459451476,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1117076,"id":"0x300000057","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459451629,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1117228},
-{"pid":27411,"tid":27428,"ts":326459451659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1117289,"id":"0xaf88cee8fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459723749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1117503,"id":"0xaf88cd1af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459723749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1281,"tdur":641,"tts":1117503},
-{"pid":27411,"tid":27428,"ts":326459723749,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":310},"dur":1281,"tdur":641,"tts":1117503},
-{"pid":27411,"tid":27428,"ts":326459723779,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":274,"keep_awake_time":0},"dur":1251,"tdur":611,"tts":1117533},
-{"pid":27411,"tid":27428,"ts":326459723810,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:E4422E79"},"dur":91,"tdur":62,"tts":1117594},
-{"pid":27411,"tid":27428,"ts":326459725000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1118113,"id":"0xaf88cd1bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459745693,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1118235,"id":"0xaf88cd14f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459745723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":92,"tts":1118235},
-{"pid":27411,"tid":27428,"ts":326459745723,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":310},"dur":92,"tdur":92,"tts":1118235},
-{"pid":27411,"tid":27428,"ts":326459745723,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1118235},
-{"pid":27411,"tid":27428,"ts":326459745784,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":20,"keep_awake_time":0},"dur":31,"tdur":0,"tts":1118327},
-{"pid":27411,"tid":27428,"ts":326459765958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459765},"tts":1118419,"id":"0xaf88cd1bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459765958,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":305,"tdur":305,"tts":1118419},
-{"pid":27411,"tid":27428,"ts":326459765958,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":40,"keep_awake_time":20},"dur":305,"tdur":244,"tts":1118449},
-{"pid":27411,"tid":27428,"ts":326459766233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1118693,"id":"0xaf88cd15f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459806581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459806},"tts":1118815,"id":"0xaf88cd15f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459806581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":2350,"tdur":336,"tts":1118815},
-{"pid":27411,"tid":27428,"ts":326459806611,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":40,"keep_awake_time":60},"dur":2320,"tdur":274,"tts":1118846},
-{"pid":27411,"tid":27428,"ts":326459808870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1119120,"id":"0xaf88cd16f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459844670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1119243,"id":"0xaf88cd17f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459844701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1119273},
-{"pid":27411,"tid":27428,"ts":326459844701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1119273,"id":"0xaf88cd10f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459844731,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1119304,"id":"0xaf88cd10f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459844762,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1119334},
-{"pid":27411,"tid":27428,"ts":326459849981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459848},"tts":1119426,"id":"0xaf88cd16f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459849981,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":610,"tdur":305,"tts":1119426},
-{"pid":27411,"tid":27428,"ts":326459849981,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":41,"keep_awake_time":104},"dur":580,"tdur":275,"tts":1119456},
-{"pid":27411,"tid":27428,"ts":326459850530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1119700,"id":"0xaf88cd11f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459851202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1119853,"id":"0xaf88cd12f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459851202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1119853},
-{"pid":27411,"tid":27428,"ts":326459851202,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1119853},
-{"pid":27411,"tid":27428,"ts":326459851232,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1119883,"id":"0xaf88cd13f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459851263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1119945,"id":"0xaf88cd13f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459851293,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5769,"tdur":4333,"tts":1119945},
-{"pid":27411,"tid":27428,"ts":326459851324,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1119975},
-{"pid":27411,"tid":27428,"ts":326459851446,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4256},"dur":5585,"tdur":4151,"tts":1120097},
-{"pid":27411,"tid":27428,"ts":326459851476,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5555,"tdur":4120,"tts":1120128},
-{"pid":27411,"tid":27428,"ts":326459852697,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":145},"dur":31,"tdur":30,"tts":1121257},
-{"pid":27411,"tid":27428,"ts":326459852850,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":230},"dur":30,"tdur":30,"tts":1121410},
-{"pid":27411,"tid":27428,"ts":326459852972,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":32},"dur":122,"tdur":30,"tts":1121532},
-{"pid":27411,"tid":27428,"ts":326459853277,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":237},"dur":31,"tdur":31,"tts":1121745},
-{"pid":27411,"tid":27428,"ts":326459854528,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":214},"dur":31,"tdur":30,"tts":1122173},
-{"pid":27411,"tid":27428,"ts":326459855719,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1123271,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459855719,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":92},"dur":1312,"tdur":977,"tts":1123271},
-{"pid":27411,"tid":27428,"ts":326459855749,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1068,"tdur":702,"tts":1123332},
-{"pid":27411,"tid":27428,"ts":326459856909,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459848607.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459855749.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901983.0,"time":326459819918.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459813000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459844914.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459821750.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459856817.0},"coordinates":[{"x":147.1182861328125,"y":766.4526977539062},{"x":636.23974609375,"y":353.2129211425781}],"trace_id":12884901983.0}},"tts":1124126,"id":"0x30000005f"},
-{"pid":27411,"tid":27428,"ts":326459856940,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1124156,"id":"0x30000005f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459856940,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1124156},
-{"pid":27411,"tid":27428,"ts":326459856970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1124187,"id":"0xaf88cee9fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459858832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1124339,"id":"0xaf88cd2cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459858862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1124370},
-{"pid":27411,"tid":27428,"ts":326459858862,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1124370},
-{"pid":27411,"tid":27428,"ts":326459858862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1124401,"id":"0xaf88cd2df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459858893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1124401,"id":"0xaf88cd2df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459858923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":1954,"tdur":1953,"tts":1124431},
-{"pid":27411,"tid":27428,"ts":326459858954,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":61,"tts":1124462},
-{"pid":27411,"tid":27428,"ts":326459859045,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12842},"dur":1771,"tdur":1739,"tts":1124584},
-{"pid":27411,"tid":27428,"ts":326459859076,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":1740,"tdur":1739,"tts":1124584},
-{"pid":27411,"tid":27428,"ts":326459859106,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1124614},
-{"pid":27411,"tid":27428,"ts":326459859106,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1124614},
-{"pid":27411,"tid":27428,"ts":326459859137,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1124645},
-{"pid":27411,"tid":27428,"ts":326459859168,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1124675},
-{"pid":27411,"tid":27428,"ts":326459859168,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1124675},
-{"pid":27411,"tid":27428,"ts":326459859198,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":213,"tts":1124706},
-{"pid":27411,"tid":27428,"ts":326459859534,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":0,"tts":1125072},
-{"pid":27411,"tid":27428,"ts":326459859564,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1125072},
-{"pid":27411,"tid":27428,"ts":326459859595,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1125102},
-{"pid":27411,"tid":27428,"ts":326459859595,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1125102},
-{"pid":27411,"tid":27428,"ts":326459859625,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":214,"tts":1125133},
-{"pid":27411,"tid":27428,"ts":326459859625,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":214,"tts":1125133},
-{"pid":27411,"tid":27428,"ts":326459859931,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1125438},
-{"pid":27411,"tid":27428,"ts":326459859961,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1125469},
-{"pid":27411,"tid":27428,"ts":326459859961,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":153,"tdur":122,"tts":1125469},
-{"pid":27411,"tid":27428,"ts":326459859961,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":1125469},
-{"pid":27411,"tid":27428,"ts":326459860083,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1125591},
-{"pid":27411,"tid":27428,"ts":326459860114,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":214,"tts":1125621},
-{"pid":27411,"tid":27428,"ts":326459860114,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":214,"tts":1125621},
-{"pid":27411,"tid":27428,"ts":326459860419,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1125927},
-{"pid":27411,"tid":27428,"ts":326459860449,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1125957},
-{"pid":27411,"tid":27428,"ts":326459860449,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":0,"tts":1125988},
-{"pid":27411,"tid":27428,"ts":326459860480,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1125988},
-{"pid":27411,"tid":27428,"ts":326459860480,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1125988},
-{"pid":27411,"tid":27428,"ts":326459860510,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":214,"tts":1126018},
-{"pid":27411,"tid":27428,"ts":326459860846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1126384,"id":"0xaf88cd2ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459863013,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459862},"tts":1126476,"id":"0xaf88cd2ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459863044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":122,"tdur":123,"tts":1126506},
-{"pid":27411,"tid":27428,"ts":326459863044,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":91,"tdur":92,"tts":1126506},
-{"pid":27411,"tid":27428,"ts":326459868293,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1126659,"id":"0xaf88cd2ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459868293,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1126659},
-{"pid":27411,"tid":27428,"ts":326459868324,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1126690,"id":"0xaf88cd28f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459868354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1126720,"id":"0xaf88cd28f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459868354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1126720},
-{"pid":27411,"tid":27428,"ts":326459883279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1126812,"id":"0xaf88cd29f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459883279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1126812},
-{"pid":27411,"tid":27428,"ts":326459883309,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1126842},
-{"pid":27411,"tid":27428,"ts":326459883309,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1126842,"id":"0xaf88cd2af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459883340,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1126873,"id":"0xaf88cd2af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459883370,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7752,"tdur":4120,"tts":1126903},
-{"pid":27411,"tid":27428,"ts":326459883401,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":61,"tts":1126934},
-{"pid":27411,"tid":27428,"ts":326459883523,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":7523},"dur":7538,"tdur":3937,"tts":1127056},
-{"pid":27411,"tid":27428,"ts":326459883523,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7538,"tdur":3937,"tts":1127056},
-{"pid":27411,"tid":27428,"ts":326459886086,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":185},"dur":31,"tdur":31,"tts":1128307},
-{"pid":27411,"tid":27428,"ts":326459886178,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":192},"dur":31,"tdur":0,"tts":1128429},
-{"pid":27411,"tid":27428,"ts":326459886270,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":170},"dur":0,"tdur":0,"tts":1128490},
-{"pid":27411,"tid":27428,"ts":326459886666,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":212},"dur":31,"tdur":31,"tts":1128887},
-{"pid":27411,"tid":27428,"ts":326459886727,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":106},"dur":31,"tdur":0,"tts":1128979},
-{"pid":27411,"tid":27428,"ts":326459887429,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1129650,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459887460,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":93},"dur":3571,"tdur":1281,"tts":1129681},
-{"pid":27411,"tid":27428,"ts":326459887490,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":3297,"tdur":1007,"tts":1129711},
-{"pid":27411,"tid":27428,"ts":326459890939,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459869300.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459887460.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901984.0,"time":326459836552.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459830000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459868537.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459839421.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459890787.0},"coordinates":[{"x":151.1966094970703,"y":765.1607055664062},{"x":626.0888061523438,"y":362.91119384765625}],"trace_id":12884901984.0}},"tts":1130871,"id":"0x300000060"},
-{"pid":27411,"tid":27428,"ts":326459890939,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1130871,"id":"0x300000060","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459890970,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1130901},
-{"pid":27411,"tid":27428,"ts":326459890970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1130901,"id":"0xaf88ceeafec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459891153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459890},"tts":1131054,"id":"0xaf88cd11f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459891153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":30,"tdur":30,"tts":1131054},
-{"pid":27411,"tid":27428,"ts":326459891183,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":3,"keep_awake_time":145},"dur":0,"tdur":0,"tts":1131084},
-{"pid":27411,"tid":27428,"ts":326459902079,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1131146,"id":"0xaf88cd2bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459902079,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1131146},
-{"pid":27411,"tid":27428,"ts":326459902110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1131176,"id":"0xaf88cd24f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459902140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1131207,"id":"0xaf88cd24f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459902140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":885,"tdur":61,"tts":1131207},
-{"pid":27411,"tid":27428,"ts":326459902140,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":855,"tdur":30,"tts":1131207},
-{"pid":27411,"tid":27428,"ts":326459911144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1131359,"id":"0xaf88cd25f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459911144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1131359},
-{"pid":27411,"tid":27428,"ts":326459911144,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1131359},
-{"pid":27411,"tid":27428,"ts":326459911174,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1131390,"id":"0xaf88cd26f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459911205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1131420,"id":"0xaf88cd26f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459911205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6897,"tdur":3907,"tts":1131420},
-{"pid":27411,"tid":27428,"ts":326459911266,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":10685},"dur":6806,"tdur":3815,"tts":1131481},
-{"pid":27411,"tid":27428,"ts":326459911296,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":6776,"tdur":3784,"tts":1131512},
-{"pid":27411,"tid":27428,"ts":326459913616,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1133831,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459913646,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":94},"dur":4426,"tdur":1434,"tts":1133862},
-{"pid":27411,"tid":27428,"ts":326459913677,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":3235,"tdur":916,"tts":1133892},
-{"pid":27411,"tid":27428,"ts":326459917034,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459907878.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459913646.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901985.0,"time":326459853277.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459847000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459902506.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459866828.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459916912.0},"coordinates":[{"x":155.21771240234375,"y":764.3564453125},{"x":614.9903564453125,"y":374.65313720703125}],"trace_id":12884901985.0}},"tts":1134961,"id":"0x300000061"},
-{"pid":27411,"tid":27428,"ts":326459917034,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1134961,"id":"0x300000061","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459917156,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459907878.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459913646.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901986.0,"time":326459870826.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459863000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459902506.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459875282.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459916912.0},"coordinates":[{"x":160.81649780273438,"y":763.5262451171875},{"x":604.8145751953125,"y":386.63299560546875}],"trace_id":12884901986.0}},"tts":1135083,"id":"0x300000062"},
-{"pid":27411,"tid":27474,"ts":326459891061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":68884,"id":"0xaf88ceeafec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459891061,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":68884},
-{"pid":27411,"tid":27474,"ts":326459891122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":68945},
-{"pid":27411,"tid":27474,"ts":326459891122,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":68945,"id":"0xc4c17202"},
-{"pid":27411,"tid":27474,"ts":326459901743,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":183,"tts":69037},
-{"pid":27411,"tid":27474,"ts":326459901774,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":69067},
-{"pid":27411,"tid":27474,"ts":326459901804,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69098,"id":"0xccc48606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459901804,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69098,"id":"0xc4c1730a"},
-{"pid":27411,"tid":27474,"ts":326459901866,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":69159,"id":"0xaf88cd2bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459910961,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":69250},
-{"pid":27411,"tid":27474,"ts":326459910991,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":69281},
-{"pid":27411,"tid":27474,"ts":326459910991,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69281,"id":"0xba451802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459911022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":69311,"id":"0xaf88cd25f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459917400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":69464,"id":"0xaf88ceebfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459917400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":69464},
-{"pid":27411,"tid":27474,"ts":326459917431,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69494,"id":"0xc4c17502"},
-{"pid":27411,"tid":27474,"ts":326459922741,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":69616},
-{"pid":27411,"tid":27474,"ts":326459922772,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":69647},
-{"pid":27411,"tid":27474,"ts":326459922772,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69647,"id":"0xccc48a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459922802,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69678,"id":"0xc4c1760a"},
-{"pid":27411,"tid":27474,"ts":326459922833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":69708,"id":"0xaf88cd27f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459926740,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":69830},
-{"pid":27411,"tid":27474,"ts":326459926770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":69861},
-{"pid":27411,"tid":27474,"ts":326459926770,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":69861,"id":"0xba451c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459926801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":69891,"id":"0xaf88cd21f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459931531,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":70013,"id":"0xaf88cee4fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459931531,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":70044},
-{"pid":27411,"tid":27474,"ts":326459931562,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70044,"id":"0xc4c17802"},
-{"pid":27411,"tid":27474,"ts":326459951980,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":70166},
-{"pid":27411,"tid":27474,"ts":326459952010,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":123,"tdur":122,"tts":70196},
-{"pid":27411,"tid":27474,"ts":326459952010,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70196,"id":"0xccc49006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459952041,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70227,"id":"0xc4c1790a"},
-{"pid":27411,"tid":27474,"ts":326459952072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":70257,"id":"0xaf88cd23f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459957260,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":123,"tts":70379},
-{"pid":27411,"tid":27474,"ts":326459957291,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":70410},
-{"pid":27411,"tid":27474,"ts":326459957291,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70410,"id":"0xba452202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459957321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":70441,"id":"0xaf88cd3df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459961899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":70563,"id":"0xaf88cee5fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459961930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":70563},
-{"pid":27411,"tid":27474,"ts":326459961930,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70563,"id":"0xc4c17b02"},
-{"pid":27411,"tid":27474,"ts":326459974138,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":70654},
-{"pid":27411,"tid":27474,"ts":326459974168,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":70685},
-{"pid":27411,"tid":27474,"ts":326459974199,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70715,"id":"0xccc49506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459974199,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70715,"id":"0xc4c17c0a"},
-{"pid":27411,"tid":27474,"ts":326459974260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":70776,"id":"0xaf88cd3ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459978258,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":70898},
-{"pid":27411,"tid":27474,"ts":326459978289,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":70929},
-{"pid":27411,"tid":27474,"ts":326459978289,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":70929,"id":"0xba452602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459978319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":70959,"id":"0xaf88cd39f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459982561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":71081,"id":"0xaf88cee6fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326459982561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":71081},
-{"pid":27411,"tid":27474,"ts":326459982561,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71081,"id":"0xc4c17e02"},
-{"pid":27411,"tid":27474,"ts":326459993274,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":71204},
-{"pid":27411,"tid":27474,"ts":326459993305,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":71234},
-{"pid":27411,"tid":27474,"ts":326459993305,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71234,"id":"0xccc49906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459993335,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71265,"id":"0xc4c17f0a"},
-{"pid":27411,"tid":27474,"ts":326459993366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":71295,"id":"0xaf88cd3bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326459996906,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":183,"tdur":122,"tts":71417},
-{"pid":27411,"tid":27474,"ts":326459996936,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":71448},
-{"pid":27411,"tid":27474,"ts":326459996967,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71478,"id":"0xba452a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326459996967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":71478,"id":"0xaf88cd35f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460001698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":71600,"id":"0xaf88cee7fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460001728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":71631},
-{"pid":27411,"tid":27474,"ts":326460001728,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71631,"id":"0xc4c18102"},
-{"pid":27411,"tid":27428,"ts":326459917156,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1135083,"id":"0x300000062","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459917156,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":91,"tts":1135083},
-{"pid":27411,"tid":27428,"ts":326459917278,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":763,"tdur":61,"tts":1135205},
-{"pid":27411,"tid":27428,"ts":326459917309,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1135235,"id":"0xaf88ceebfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459922925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1135418,"id":"0xaf88cd27f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459922955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1135418},
-{"pid":27411,"tid":27428,"ts":326459922986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1135449,"id":"0xaf88cd20f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459922986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1135479,"id":"0xaf88cd20f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459923016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":1135479},
-{"pid":27411,"tid":27428,"ts":326459926862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1135571,"id":"0xaf88cd21f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459926862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1135571},
-{"pid":27411,"tid":27428,"ts":326459926892,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1135601},
-{"pid":27411,"tid":27428,"ts":326459926892,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1135601,"id":"0xaf88cd22f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459926923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1135632,"id":"0xaf88cd22f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459926953,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4609,"tdur":3662,"tts":1135663},
-{"pid":27411,"tid":27428,"ts":326459926984,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13847},"dur":4547,"tdur":3601,"tts":1135693},
-{"pid":27411,"tid":27428,"ts":326459927014,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4517,"tdur":3570,"tts":1135724},
-{"pid":27411,"tid":27428,"ts":326459929731,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1138074,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459929761,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":95},"dur":1740,"tdur":1160,"tts":1138104},
-{"pid":27411,"tid":27428,"ts":326459929792,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1526,"tdur":946,"tts":1138135},
-{"pid":27411,"tid":27428,"ts":326459931409,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459924084.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459929761.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901987.0,"time":326459889627.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459880000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459923047.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459898722.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459931318.0},"coordinates":[{"x":168.38124084472656,"y":763.5},{"x":595.3306274414062,"y":397.74560546875}],"trace_id":12884901987.0}},"tts":1139172,"id":"0x300000063"},
-{"pid":27411,"tid":27428,"ts":326459931409,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1139172,"id":"0x300000063","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459931440,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1139203},
-{"pid":27411,"tid":27428,"ts":326459931470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1139233,"id":"0xaf88cee4fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459952255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1139386,"id":"0xaf88cd23f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459952285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1139386},
-{"pid":27411,"tid":27428,"ts":326459952316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1139417,"id":"0xaf88cd3cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459952346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1139447,"id":"0xaf88cd3cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459952346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1139447},
-{"pid":27411,"tid":27428,"ts":326459957535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1139539,"id":"0xaf88cd3df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459957565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1139539},
-{"pid":27411,"tid":27428,"ts":326459957565,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1139539},
-{"pid":27411,"tid":27428,"ts":326459957596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1139569,"id":"0xaf88cd3ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459957626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1139600,"id":"0xaf88cd3ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459957626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4304,"tdur":3876,"tts":1139600},
-{"pid":27411,"tid":27428,"ts":326459957687,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":633},"dur":4212,"tdur":3784,"tts":1139661},
-{"pid":27411,"tid":27428,"ts":326459957748,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4151,"tdur":3723,"tts":1139722},
-{"pid":27411,"tid":27428,"ts":326459960129,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1142102,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459960159,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":96},"dur":1740,"tdur":1312,"tts":1142133},
-{"pid":27411,"tid":27428,"ts":326459960190,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1373,"tdur":916,"tts":1142163},
-{"pid":27411,"tid":27428,"ts":326459961655,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459954605.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459960159.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901988.0,"time":326459904826.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459897000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459952590.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459922070.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459961563.0},"coordinates":[{"x":177.1429901123047,"y":763.5},{"x":586.3569946289062,"y":407.74688720703125}],"trace_id":12884901988.0}},"tts":1143201,"id":"0x300000064"},
-{"pid":27411,"tid":27428,"ts":326459961655,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1143201,"id":"0x300000064","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459961777,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459954605.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459960159.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901989.0,"time":326459920056.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459913000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459952590.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459928357.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459961563.0},"coordinates":[{"x":184.72418212890625,"y":764.4224243164062},{"x":578.6982421875,"y":417.1466064453125}],"trace_id":12884901989.0}},"tts":1143323,"id":"0x300000065"},
-{"pid":27411,"tid":27428,"ts":326459961808,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1143354,"id":"0x300000065","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459961808,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":31,"tts":1143384},
-{"pid":27411,"tid":27428,"ts":326459961838,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1143384,"id":"0xaf88cee5fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459974382,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1143537,"id":"0xaf88cd3ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459974412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1143567},
-{"pid":27411,"tid":27428,"ts":326459974412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1143567,"id":"0xaf88cd38f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459974443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1143598,"id":"0xaf88cd38f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459974473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1143628},
-{"pid":27411,"tid":27428,"ts":326459978380,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1143720,"id":"0xaf88cd39f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459978380,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1143720},
-{"pid":27411,"tid":27428,"ts":326459978411,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1143750},
-{"pid":27411,"tid":27428,"ts":326459978411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1143750,"id":"0xaf88cd3af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459978441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1143781,"id":"0xaf88cd3af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459978441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4120,"tdur":3724,"tts":1143811},
-{"pid":27411,"tid":27428,"ts":326459978502,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3795},"dur":4059,"tdur":3693,"tts":1143842},
-{"pid":27411,"tid":27428,"ts":326459978533,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3998,"tdur":3631,"tts":1143873},
-{"pid":27411,"tid":27428,"ts":326459981005,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1146345,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326459981035,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":97},"dur":1496,"tdur":1129,"tts":1146375},
-{"pid":27411,"tid":27428,"ts":326459981066,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1221,"tdur":854,"tts":1146406},
-{"pid":27411,"tid":27428,"ts":326459982378,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459975236.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459981035.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901990.0,"time":326459938307.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459930000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459974412.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459949203.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459982287.0},"coordinates":[{"x":191.9132080078125,"y":765.2391357421875},{"x":571.34765625,"y":425.39154052734375}],"trace_id":12884901990.0}},"tts":1147352,"id":"0x300000066"},
-{"pid":27411,"tid":27428,"ts":326459982378,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1147352,"id":"0x300000066","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326459982409,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1147382},
-{"pid":27411,"tid":27428,"ts":326459982409,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1147382},
-{"pid":27411,"tid":27428,"ts":326459982470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1147443,"id":"0xaf88cee6fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326459993518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1147596,"id":"0xaf88cd3bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459993549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1147627},
-{"pid":27411,"tid":27428,"ts":326459993549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1147627,"id":"0xaf88cd34f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459993579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1147657,"id":"0xaf88cd34f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459993610,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":0,"tts":1147688},
-{"pid":27411,"tid":27428,"ts":326459997303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1147749,"id":"0xaf88cd35f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459997333,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1147779},
-{"pid":27411,"tid":27428,"ts":326459997333,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1147779},
-{"pid":27411,"tid":27428,"ts":326459997364,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1147810,"id":"0xaf88cd36f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459997394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1147840,"id":"0xaf88cd36f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326459997394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4304,"tdur":3693,"tts":1147840},
-{"pid":27411,"tid":27428,"ts":326459997455,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6957},"dur":4243,"tdur":3632,"tts":1147901},
-{"pid":27411,"tid":27428,"ts":326459997486,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4212,"tdur":3601,"tts":1147932},
-{"pid":27411,"tid":27428,"ts":326459997486,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":1147932},
-{"pid":27411,"tid":27428,"ts":326460000172,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1150373,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460000172,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":98},"dur":1495,"tdur":1130,"tts":1150373},
-{"pid":27411,"tid":27428,"ts":326460000233,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1190,"tdur":824,"tts":1150434},
-{"pid":27411,"tid":27428,"ts":326460001576,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459994617.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460000202.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901991.0,"time":326459953506.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459947000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459993549.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459970597.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460001453.0},"coordinates":[{"x":197.85536193847656,"y":766.05078125},{"x":564.5938720703125,"y":432.9569091796875}],"trace_id":12884901991.0}},"tts":1151411,"id":"0x300000067"},
-{"pid":27411,"tid":27428,"ts":326460001576,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1151411,"id":"0x300000067","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460001606,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1151442},
-{"pid":27411,"tid":27428,"ts":326460001606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1151472,"id":"0xaf88cee7fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460012227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1151625,"id":"0xaf88cd37f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460012227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1151625},
-{"pid":27411,"tid":27428,"ts":326460012258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1151655,"id":"0xaf88cd30f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460012288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1151686,"id":"0xaf88cd30f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460012288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1151686},
-{"pid":27411,"tid":27428,"ts":326460015401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1151777,"id":"0xaf88cd31f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460015401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":1151777},
-{"pid":27411,"tid":27428,"ts":326460015401,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1151777},
-{"pid":27411,"tid":27428,"ts":326460015432,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1151808,"id":"0xaf88cd32f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460015462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1151838,"id":"0xaf88cd32f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460015462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7325,"tdur":3876,"tts":1151838},
-{"pid":27411,"tid":27428,"ts":326460015523,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":10119},"dur":7264,"tdur":3815,"tts":1151899},
-{"pid":27411,"tid":27428,"ts":326460015554,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7203,"tdur":3754,"tts":1151930},
-{"pid":27411,"tid":27428,"ts":326460018392,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1154433,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460018392,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":99},"dur":4365,"tdur":1251,"tts":1154433},
-{"pid":27411,"tid":27428,"ts":326460018453,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":4060,"tdur":946,"tts":1154494},
-{"pid":27411,"tid":27428,"ts":326460022604,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460013204.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460018423.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901992.0,"time":326459969773.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459963000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460012471.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459990680.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460022513.0},"coordinates":[{"x":203.2246856689453,"y":766.8707885742188},{"x":558.904541015625,"y":439.96624755859375}],"trace_id":12884901992.0}},"tts":1155531,"id":"0x300000068"},
-{"pid":27411,"tid":27428,"ts":326460022635,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1155562,"id":"0x300000068","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460022635,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":91,"tts":1155562},
-{"pid":27411,"tid":27428,"ts":326460022696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1155623,"id":"0xaf88cee0fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460024649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1155775,"id":"0xaf88cd33f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460024649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":62,"tts":1155775},
-{"pid":27411,"tid":27428,"ts":326460024679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1155806,"id":"0xaf88cdccf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460024710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1155837,"id":"0xaf88cdccf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460024710,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1155837},
-{"pid":27411,"tid":27428,"ts":326460028220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1155959,"id":"0xaf88cdcdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460028220,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1155959},
-{"pid":27411,"tid":27428,"ts":326460028250,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1155989},
-{"pid":27411,"tid":27428,"ts":326460028250,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1155989,"id":"0xaf88cdcef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460028311,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1156050,"id":"0xaf88cdcef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460028311,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4670,"tdur":3754,"tts":1156050},
-{"pid":27411,"tid":27428,"ts":326460028372,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13281},"dur":4609,"tdur":3693,"tts":1156111},
-{"pid":27411,"tid":27428,"ts":326460028372,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4609,"tdur":3693,"tts":1156111},
-{"pid":27411,"tid":27428,"ts":326460028372,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1156111},
-{"pid":27411,"tid":27428,"ts":326460030875,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1158553,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460030906,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":100},"dur":2045,"tdur":1191,"tts":1158583},
-{"pid":27411,"tid":27428,"ts":326460030936,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1282,"tdur":885,"tts":1158614},
-{"pid":27411,"tid":27428,"ts":326460032340,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460025473.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460030906.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901993.0,"time":326459987963.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459980000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460024771.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460009450.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460032218.0},"coordinates":[{"x":208.12698364257812,"y":767.6878051757812},{"x":553.8729858398438,"y":446.50262451171875}],"trace_id":12884901993.0}},"tts":1159621,"id":"0x300000069"},
-{"pid":27411,"tid":27428,"ts":326460032371,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1159621,"id":"0x300000069","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460032401,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":550,"tdur":122,"tts":1159652},
-{"pid":27411,"tid":27474,"ts":326460011952,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":214,"tts":71722},
-{"pid":27411,"tid":27474,"ts":326460011952,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":71722},
-{"pid":27411,"tid":27474,"ts":326460012044,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":71814},
-{"pid":27411,"tid":27474,"ts":326460012044,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71814,"id":"0xccc49c06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460012075,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":71844,"id":"0xc4c1820a"},
-{"pid":27411,"tid":27474,"ts":326460012105,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":71875,"id":"0xaf88cd37f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460015249,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":71967},
-{"pid":27411,"tid":27474,"ts":326460015279,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":71997},
-{"pid":27411,"tid":27474,"ts":326460015310,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72028,"id":"0xba452e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460015310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72028,"id":"0xaf88cd31f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460022757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":72150,"id":"0xaf88cee0fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460022787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":72180},
-{"pid":27411,"tid":27474,"ts":326460022787,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72180,"id":"0xc4c18402"},
-{"pid":27411,"tid":27474,"ts":326460024435,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":72272},
-{"pid":27411,"tid":27474,"ts":326460024466,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":91,"tts":72333},
-{"pid":27411,"tid":27474,"ts":326460024496,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72333,"id":"0xccc4a006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460024496,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72333,"id":"0xc4c1850a"},
-{"pid":27411,"tid":27474,"ts":326460024557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72394,"id":"0xaf88cd33f3321ac2"},{"pid":27443,"tid":27459,"ts":326458184118,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":30,"tdur":31,"tts":5835830},
-{"pid":27443,"tid":27459,"ts":326458184148,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":0,"tdur":0,"tts":5835861},
-{"pid":27443,"tid":27459,"ts":326458184148,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":31,"tdur":0,"tts":5835891},
-{"pid":27443,"tid":27459,"ts":326458184179,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":30,"tdur":31,"tts":5835891},
-{"pid":27443,"tid":27459,"ts":326458184209,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":60},"dur":31,"tdur":0,"tts":5835922},
-{"pid":27443,"tid":27459,"ts":326458184240,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5835953,"id":"0x300000013"},
-{"pid":27443,"tid":27459,"ts":326458184240,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5835953,"id":"0x300000014"},
-{"pid":27443,"tid":27459,"ts":326458184271,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2533,"tdur":61,"tts":5835983},
-{"pid":27443,"tid":27459,"ts":326458184271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5835983,"id":"0xaf88abc3f182217a"},
-{"pid":27443,"tid":27459,"ts":326458186834,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5836075},
-{"pid":27443,"tid":27459,"ts":326458186895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5836136,"id":"0xaf88a8cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458186926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2686,"tdur":1221,"tts":5836166},
-{"pid":27443,"tid":27459,"ts":326458186926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5836166,"id":"0xaf88ab25f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458186956,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2625,"tdur":1159,"tts":5836197},
-{"pid":27443,"tid":27459,"ts":326458187017,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2564,"tdur":1098,"tts":5836258},
-{"pid":27443,"tid":27459,"ts":326458187017,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5836258,"id":"0x300000016"},
-{"pid":27443,"tid":27459,"ts":326458187048,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1190,"tdur":977,"tts":5836288},
-{"pid":27443,"tid":27459,"ts":326458187078,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1130,"tdur":915,"tts":5836319},
-{"pid":27443,"tid":27459,"ts":326458187139,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5836380},
-{"pid":27443,"tid":27459,"ts":326458187170,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5836441},
-{"pid":27443,"tid":27459,"ts":326458187231,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5836471},
-{"pid":27443,"tid":27459,"ts":326458187262,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5836502},
-{"pid":27443,"tid":27459,"ts":326458187323,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":854,"tdur":641,"tts":5836563},
-{"pid":27443,"tid":27459,"ts":326458187475,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":672,"tdur":488,"tts":5836716},
-{"pid":27443,"tid":27459,"ts":326458187506,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5836746},
-{"pid":27443,"tid":27459,"ts":326458187841,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":8,"frame":"0x78c60000"}},"tts":5837082,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458187872,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":214,"tdur":31,"tts":5837112},
-{"pid":27443,"tid":27459,"ts":326458187872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5837112,"id":"0xaf88abd9f182217a"},
-{"pid":27443,"tid":27459,"ts":326458188116,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5837173},
-{"pid":27443,"tid":27459,"ts":326458188238,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":1313,"tdur":31,"tts":5837295},
-{"pid":27443,"tid":27459,"ts":326458188269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5837295,"id":"0xaf88add8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458189642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5837417,"id":"0xaf88a8c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458189642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5837417},
-{"pid":27443,"tid":27459,"ts":326458189673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5837448,"id":"0xaf88a8c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458189703,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5837479},
-{"pid":27443,"tid":27459,"ts":326458191016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5837540,"id":"0xaf88a8c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458191046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":24203,"tdur":16817,"tts":5837570},
-{"pid":27443,"tid":27459,"ts":326458191046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5837570,"id":"0xaf88a8c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458191077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5837601,"id":"0xaf88ab26f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458191077,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":24141,"tdur":16755,"tts":5837601},
-{"pid":27443,"tid":27459,"ts":326458191077,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":61},"tts":5837601},
-{"pid":27443,"tid":27459,"ts":326458191107,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":5837631},
-{"pid":27443,"tid":27459,"ts":326458191138,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":20296,"tdur":13490,"tts":5837662},
-{"pid":27443,"tid":27459,"ts":326458191168,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":5837692},
-{"pid":27443,"tid":27459,"ts":326458191229,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":8,"frame":"0x78c60000"}},"dur":20174,"tdur":13368,"tts":5837753},
-{"pid":27443,"tid":27459,"ts":326458191290,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":20113,"tdur":13307,"tts":5837814},
-{"pid":27443,"tid":27459,"ts":326458191321,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5837845},
-{"pid":27443,"tid":27459,"ts":326458191534,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5838058},
-{"pid":27443,"tid":27459,"ts":326458191565,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":0,"tts":5838119},
-{"pid":27443,"tid":27459,"ts":326458196967,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5840988},
-{"pid":27443,"tid":27459,"ts":326458200660,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5843125},
-{"pid":27443,"tid":27459,"ts":326458200843,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5843308},
-{"pid":27443,"tid":27459,"ts":326458200874,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5843338},
-{"pid":27443,"tid":27459,"ts":326458201515,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5843857},
-{"pid":27443,"tid":27459,"ts":326458203651,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5844376},
-{"pid":27443,"tid":27459,"ts":326458204536,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5844834},
-{"pid":27443,"tid":27459,"ts":326458204872,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5845139},
-{"pid":27443,"tid":27459,"ts":326458205299,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5845566},
-{"pid":27443,"tid":27459,"ts":326458205452,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5845719},
-{"pid":27443,"tid":27459,"ts":326458205513,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5845780},
-{"pid":27443,"tid":27459,"ts":326458205543,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5845811},
-{"pid":27443,"tid":27459,"ts":326458205665,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5845933},
-{"pid":27443,"tid":27459,"ts":326458205879,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5846146},
-{"pid":27443,"tid":27459,"ts":326458206154,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5846421},
-{"pid":27443,"tid":27459,"ts":326458206215,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5846482},
-{"pid":27443,"tid":27459,"ts":326458206428,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5846696},
-{"pid":27443,"tid":27459,"ts":326458207039,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5847306},
-{"pid":27443,"tid":27459,"ts":326458207100,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5847367},
-{"pid":27443,"tid":27477,"ts":326458185064,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":236777},
-{"pid":27443,"tid":27477,"ts":326458185064,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":236807,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458185095,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":236807},
-{"pid":27443,"tid":27477,"ts":326458185125,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":366,"tts":236838},
-{"pid":27443,"tid":27477,"ts":326458185552,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":793,"tts":237265},
-{"pid":27443,"tid":27477,"ts":326458185583,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":60},"dur":244,"tdur":245,"tts":237295},
-{"pid":27443,"tid":27477,"ts":326458185827,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":60},"dur":31,"tdur":30,"tts":237540},
-{"pid":27443,"tid":27477,"ts":326458185888,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":60},"tts":237601},
-{"pid":27443,"tid":27477,"ts":326458186041,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":237753},
-{"pid":27443,"tid":27477,"ts":326458186041,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":237753},
-{"pid":27443,"tid":27477,"ts":326458186041,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":237753},
-{"pid":27443,"tid":27477,"ts":326458186071,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":237784},
-{"pid":27443,"tid":27477,"ts":326458186071,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":237784},
-{"pid":27443,"tid":27477,"ts":326458186102,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":237814},
-{"pid":27443,"tid":27477,"ts":326458186193,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":237906},
-{"pid":27443,"tid":27477,"ts":326458186193,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":237906},
-{"pid":27443,"tid":27477,"ts":326458186193,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":92,"tts":237936},
-{"pid":27443,"tid":27477,"ts":326458186224,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":237936},
-{"pid":27443,"tid":27477,"ts":326458186224,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":237936},
-{"pid":27443,"tid":27477,"ts":326458186254,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":237967},
-{"pid":27443,"tid":27477,"ts":326458186285,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":237997,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458186315,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":238028,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458186315,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":238028,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458186376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238089,"id":"0xaf88abdcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458186376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":238089},
-{"pid":27443,"tid":27477,"ts":326458186407,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238119,"id":"0xaf88abddf182217a"},
-{"pid":27443,"tid":27477,"ts":326458186407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":238119},
-{"pid":27443,"tid":27477,"ts":326458186437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238150,"id":"0xaf88abdef182217a"},
-{"pid":27443,"tid":27477,"ts":326458186437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":238150},
-{"pid":27443,"tid":27477,"ts":326458186651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238150,"id":"0xaf88abdff182217a"},
-{"pid":27443,"tid":27477,"ts":326458186682,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":238180},
-{"pid":27443,"tid":27477,"ts":326458186712,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458119910.0,"frame_time_us":326458183515.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":61,"tdur":61,"tts":238211},
-{"pid":27443,"tid":27477,"ts":326458186712,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458119910.0,"frame_time_us":326458183515.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":238211},
-{"pid":27443,"tid":27477,"ts":326458186743,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458200181},"dur":30,"tdur":30,"tts":238242},
-{"pid":27443,"tid":27477,"ts":326458186773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":238272,"id":"0xaf88abd8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458188025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238425,"id":"0xaf88abd9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458188025,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":238425},
-{"pid":27443,"tid":27477,"ts":326458188025,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":30,"tts":238425},
-{"pid":27443,"tid":27477,"ts":326458189428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238547,"id":"0xaf88abdaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458189459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":238547},
-{"pid":27443,"tid":27477,"ts":326458189459,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":238547},
-{"pid":27443,"tid":27477,"ts":326458189489,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":238577,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458189489,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":238577},
-{"pid":27443,"tid":27477,"ts":326458189520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":238608,"id":"0xaf88abd5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458189520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238638,"id":"0xaf88abdbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458189551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":238638},
-{"pid":27443,"tid":27477,"ts":326458189551,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":238638},
-{"pid":27443,"tid":27477,"ts":326458189581,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":238669,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458189581,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":238669},
-{"pid":27443,"tid":27477,"ts":326458189612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":238699,"id":"0xaf88abd6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458189612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238699,"id":"0xaf88abd4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458189642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":238730},
-{"pid":27443,"tid":27477,"ts":326458189642,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":238730},
-{"pid":27443,"tid":27477,"ts":326458189642,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":238730,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458189642,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":238730},
-{"pid":27443,"tid":27477,"ts":326458189673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238760,"id":"0xaf88abd5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458189673,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1343,"tdur":1343,"tts":238760},
-{"pid":27443,"tid":27477,"ts":326458189703,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1282,"tdur":1282,"tts":238791},
-{"pid":27443,"tid":27477,"ts":326458189703,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":238791},
-{"pid":27443,"tid":27477,"ts":326458189703,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":238791},
-{"pid":27443,"tid":27477,"ts":326458189734,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":92,"tts":238821},
-{"pid":27443,"tid":27477,"ts":326458189734,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":238821},
-{"pid":27443,"tid":27477,"ts":326458189856,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1129,"tdur":1129,"tts":238944},
-{"pid":27443,"tid":27477,"ts":326458189856,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1129,"tdur":1129,"tts":238944},
-{"pid":27443,"tid":27477,"ts":326458189856,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":976,"tdur":976,"tts":238944},
-{"pid":27443,"tid":27477,"ts":326458189886,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":238974,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458189978,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239066},
-{"pid":27443,"tid":27477,"ts":326458190039,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239127},
-{"pid":27443,"tid":27477,"ts":326458190069,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239157},
-{"pid":27443,"tid":27477,"ts":326458190069,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":239157},
-{"pid":27443,"tid":27477,"ts":326458190100,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239188},
-{"pid":27443,"tid":27477,"ts":326458190100,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":239218},
-{"pid":27443,"tid":27477,"ts":326458190130,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":239218},
-{"pid":27443,"tid":27477,"ts":326458190161,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239249},
-{"pid":27443,"tid":27477,"ts":326458190161,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":239249},
-{"pid":27443,"tid":27477,"ts":326458190191,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239279},
-{"pid":27443,"tid":27477,"ts":326458190222,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239310},
-{"pid":27443,"tid":27477,"ts":326458190222,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":239310},
-{"pid":27443,"tid":27477,"ts":326458190253,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239340},
-{"pid":27443,"tid":27477,"ts":326458190283,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239371},
-{"pid":27443,"tid":27477,"ts":326458190283,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":239371},
-{"pid":27443,"tid":27477,"ts":326458190314,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239401},
-{"pid":27443,"tid":27477,"ts":326458190344,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239432},
-{"pid":27443,"tid":27477,"ts":326458190344,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":239432},
-{"pid":27443,"tid":27477,"ts":326458190375,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":239462},
-{"pid":27443,"tid":27477,"ts":326458190405,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239493},
-{"pid":27443,"tid":27477,"ts":326458190405,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":239493},
-{"pid":27443,"tid":27477,"ts":326458190436,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239523},
-{"pid":27443,"tid":27477,"ts":326458190466,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239554},
-{"pid":27443,"tid":27477,"ts":326458190466,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":239554},
-{"pid":27443,"tid":27477,"ts":326458190497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239584},
-{"pid":27443,"tid":27477,"ts":326458190497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":239584},
-{"pid":27443,"tid":27477,"ts":326458190588,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":239676},
-{"pid":27443,"tid":27477,"ts":326458190619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239707},
-{"pid":27443,"tid":27477,"ts":326458190619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":239707},
-{"pid":27443,"tid":27477,"ts":326458190649,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":239737},
-{"pid":27443,"tid":27477,"ts":326458190680,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239768},
-{"pid":27443,"tid":27477,"ts":326458190680,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":239768},
-{"pid":27443,"tid":27477,"ts":326458190710,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":239798},
-{"pid":27443,"tid":27477,"ts":326458190741,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":239829},
-{"pid":27443,"tid":27477,"ts":326458190771,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":31,"tts":239859},
-{"pid":27443,"tid":27477,"ts":326458190802,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":239890},
-{"pid":27443,"tid":27477,"ts":326458190832,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":239920},
-{"pid":27443,"tid":27477,"ts":326458190832,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":61},"tts":239920},
-{"pid":27443,"tid":27477,"ts":326458190893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":239981,"id":"0xaf88ab26f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458190924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":240012,"id":"0xaf88a8c6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458190954,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":240042},
-{"pid":27443,"tid":27477,"ts":326458190954,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":240042},
-{"pid":27443,"tid":27477,"ts":326458190985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":240073,"id":"0xaf88abd7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458191016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":240103,"id":"0xaf88abd6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458191016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":240103},
-{"pid":27443,"tid":27477,"ts":326458191046,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":91,"tts":240134},
-{"pid":27443,"tid":27477,"ts":326458191046,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":240134},
-{"pid":27443,"tid":27477,"ts":326458191046,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":240134},
-{"pid":27443,"tid":27477,"ts":326458191046,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":31,"tts":240164},
-{"pid":27443,"tid":27477,"ts":326458191077,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":240164},
-{"pid":27443,"tid":27477,"ts":326458191107,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":240195},
-{"pid":27443,"tid":27477,"ts":326458191138,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":240225},
-{"pid":27443,"tid":27477,"ts":326458191138,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":240256,"id":"0xaf88abd7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458191168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2472,"tdur":1617,"tts":240256},
-{"pid":27443,"tid":27477,"ts":326458191168,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2472,"tdur":1617,"tts":240256},
-{"pid":27443,"tid":27477,"ts":326458191168,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":240256},
-{"pid":27443,"tid":27477,"ts":326458191199,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2411,"tdur":1557,"tts":240286},
-{"pid":27443,"tid":27477,"ts":326458191199,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":60},"dur":1068,"tdur":916,"tts":240286},
-{"pid":27443,"tid":27477,"ts":326458191229,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":60},"dur":244,"tdur":244,"tts":240317},
-{"pid":27443,"tid":27477,"ts":326458191504,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":60},"dur":30,"tdur":30,"tts":240592},
-{"pid":27443,"tid":27477,"ts":326458191534,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":60},"tts":240622},
-{"pid":27443,"tid":27477,"ts":326458191656,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":240744},
-{"pid":27443,"tid":27477,"ts":326458191656,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":240744},
-{"pid":27443,"tid":27477,"ts":326458191687,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":240775},
-{"pid":27443,"tid":27477,"ts":326458191687,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":240775},
-{"pid":27443,"tid":27477,"ts":326458191717,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":240805,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458191748,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":240836},
-{"pid":27443,"tid":27477,"ts":326458192236,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":241171},
-{"pid":27443,"tid":27477,"ts":326458192267,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":854,"tdur":275,"tts":241202},
-{"pid":27443,"tid":27477,"ts":326458192267,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":241233},
-{"pid":27443,"tid":27477,"ts":326458192297,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":794,"tdur":213,"tts":241233},
-{"pid":27443,"tid":27477,"ts":326458192389,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11990},"dur":0,"tdur":0,"tts":241324},
-{"pid":27443,"tid":27477,"ts":326458192419,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":241355,"id":"0xaf88add9f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458193121,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":241477,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458193152,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":241507,"id":"0x300000013"},
-{"pid":27443,"tid":27477,"ts":326458193182,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":241538,"id":"0x300000014"},
-{"pid":27443,"tid":27477,"ts":326458193182,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":367,"tdur":244,"tts":241538},
-{"pid":27443,"tid":27477,"ts":326458193335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":241690,"id":"0xaf88addaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458193579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":241812,"id":"0xaf88ab27f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458193579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":241812,"id":"0xaf88a8c0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458193640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":241873,"id":"0xaf88abd0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458193671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":241904},
-{"pid":27443,"tid":27477,"ts":326458193671,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":92,"tts":241904},
-{"pid":27443,"tid":27477,"ts":326458193671,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":241935,"id":"0x300000017"},
-{"pid":27443,"tid":27477,"ts":326458193701,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":241935},
-{"pid":27443,"tid":27477,"ts":326458193732,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":241965,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458193762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":241996,"id":"0xaf88ab20f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458195471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":242026,"id":"0xaf88abd1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458195502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":242057},
-{"pid":27443,"tid":27477,"ts":326458195502,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":0,"tts":242087},
-{"pid":27443,"tid":27477,"ts":326458195533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":242087,"id":"0xaf88ab21f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458200263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458200},"tts":242179,"id":"0xaf88abd8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458200294,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":242209},
-{"pid":27443,"tid":27477,"ts":326458202522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":242270,"id":"0xaf88abd2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458202522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":242270},
-{"pid":27443,"tid":27477,"ts":326458202552,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458136586.0,"frame_time_us":326458200191.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":242301},
-{"pid":27443,"tid":27477,"ts":326458202583,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458136586.0,"frame_time_us":326458200191.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":242331},
-{"pid":27443,"tid":27477,"ts":326458202674,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458216857},"dur":31,"tdur":30,"tts":242423},
-{"pid":27443,"tid":27477,"ts":326458202674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":242423,"id":"0xaf88abd3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458214547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":242514,"id":"0xaf88abecf182217a"},
-{"pid":27443,"tid":27477,"ts":326458214577,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1404,"tdur":1404,"tts":242545},
-{"pid":27443,"tid":27477,"ts":326458214577,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1404,"tdur":1404,"tts":242545},
-{"pid":27443,"tid":27477,"ts":326458214577,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":242575},
-{"pid":27443,"tid":27477,"ts":326458214608,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1373,"tdur":1374,"tts":242575},
-{"pid":27443,"tid":27477,"ts":326458214608,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1373,"tdur":1343,"tts":242575},
-{"pid":27443,"tid":27477,"ts":326458214638,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":242606},
-{"pid":27443,"tid":27477,"ts":326458214638,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":242606},
-{"pid":27443,"tid":27477,"ts":326458214638,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":242606,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458214669,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":242636},
-{"pid":27443,"tid":27477,"ts":326458214699,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":242667},
-{"pid":27443,"tid":27477,"ts":326458215157,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":793,"tts":243125},
-{"pid":27443,"tid":27477,"ts":326458215157,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":61},"dur":244,"tdur":244,"tts":243125},
-{"pid":27443,"tid":27477,"ts":326458215401,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":61},"dur":61,"tdur":61,"tts":243369},
-{"pid":27443,"tid":27477,"ts":326458215462,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":61},"tts":243430},
-{"pid":27443,"tid":27477,"ts":326458215615,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":243583},
-{"pid":27443,"tid":27477,"ts":326458215615,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":243583},
-{"pid":27443,"tid":27477,"ts":326458215645,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":243613},
-{"pid":27443,"tid":27477,"ts":326458215768,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":243735},
-{"pid":27443,"tid":27477,"ts":326458215768,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":243735},
-{"pid":27443,"tid":27477,"ts":326458215798,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":243766},
-{"pid":27443,"tid":27477,"ts":326458215798,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":243766},
-{"pid":27443,"tid":27477,"ts":326458215798,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":243766,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458215829,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":243796},
-{"pid":27443,"tid":27477,"ts":326458215829,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":243796},
-{"pid":27443,"tid":27477,"ts":326458215890,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":243857,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458215920,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":243888,"s":"t"},
-{"pid":27443,"tid":27466,"ts":326458202400,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223134,"id":"0xba441402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458202430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":223164,"id":"0xaf88abd2f182217a"},
-{"pid":27443,"tid":27466,"ts":326458221414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":223287,"id":"0xaf88addbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458221414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":223287},
-{"pid":27443,"tid":27466,"ts":326458221414,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223287,"id":"0xccc38306"},
-{"pid":27443,"tid":27466,"ts":326458221475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":223348,"id":"0xaf88add4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458221475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":223378},
-{"pid":27443,"tid":27466,"ts":326458221505,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223378,"id":"0xccc38402"},
-{"pid":27443,"tid":27466,"ts":326458221780,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":223439},
-{"pid":27443,"tid":27466,"ts":326458221811,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":223470},
-{"pid":27443,"tid":27466,"ts":326458221811,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223470,"id":"0xc4c0e30a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458222451,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":223561,"id":"0xaf88add5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458222451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":223561},
-{"pid":27443,"tid":27466,"ts":326458222482,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223592,"id":"0xccc38502"},
-{"pid":27443,"tid":27466,"ts":326458222513,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":223622},
-{"pid":27443,"tid":27466,"ts":326458222543,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":223653},
-{"pid":27443,"tid":27466,"ts":326458222543,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223653,"id":"0xba441502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458222604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":223714,"id":"0xaf88abe4f182217a"},
-{"pid":27443,"tid":27466,"ts":326458223459,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":223775},
-{"pid":27443,"tid":27466,"ts":326458223459,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":61,"tts":223805},
-{"pid":27443,"tid":27466,"ts":326458223489,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223805,"id":"0xba441602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458223489,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":223805},
-{"pid":27443,"tid":27466,"ts":326458223520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":223836,"id":"0xaf88abe6f182217a"},
-{"pid":27443,"tid":27466,"ts":326458225168,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":223927},
-{"pid":27443,"tid":27466,"ts":326458225198,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":223958},
-{"pid":27443,"tid":27466,"ts":326458225198,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":223958,"id":"0xba441702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458225229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":223988,"id":"0xaf88abe7f182217a"},
-{"pid":27443,"tid":27466,"ts":326458228433,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224080,"id":"0xaf88add6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458228464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":224111},
-{"pid":27443,"tid":27466,"ts":326458228464,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224111,"id":"0xccc38702"},
-{"pid":27443,"tid":27466,"ts":326458235301,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":224202},
-{"pid":27443,"tid":27466,"ts":326458235362,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":224233},
-{"pid":27443,"tid":27466,"ts":326458235362,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224233,"id":"0xba441902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458235392,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":224263},
-{"pid":27443,"tid":27466,"ts":326458235423,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":224294,"id":"0xaf88abfdf182217a"},
-{"pid":27443,"tid":27466,"ts":326458235667,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":224385},
-{"pid":27443,"tid":27466,"ts":326458235697,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":224416},
-{"pid":27443,"tid":27466,"ts":326458235697,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224416,"id":"0xba441a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458235728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":224446,"id":"0xaf88abfef182217a"},
-{"pid":27443,"tid":27466,"ts":326458244701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224568,"id":"0xaf88add7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458244701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":224568},
-{"pid":27443,"tid":27466,"ts":326458244701,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224568,"id":"0xccc38902"},
-{"pid":27443,"tid":27466,"ts":326458247081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224721,"id":"0xaf88add0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458247081,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":224721},
-{"pid":27443,"tid":27466,"ts":326458247112,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224751,"id":"0xccc38a06"},
-{"pid":27443,"tid":27466,"ts":326458247295,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":224843},
-{"pid":27443,"tid":27466,"ts":326458247326,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":224874},
-{"pid":27443,"tid":27466,"ts":326458247326,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224874,"id":"0xc4c0e60a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458247631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":224965,"id":"0xaf88add1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458247631,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":224965},
-{"pid":27443,"tid":27466,"ts":326458247661,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":224996,"id":"0xccc38b02"},
-{"pid":27443,"tid":27466,"ts":326458250256,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":225087},
-{"pid":27443,"tid":27466,"ts":326458250286,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":225118},
-{"pid":27443,"tid":27466,"ts":326458250286,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225118,"id":"0xba441b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458250317,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":225148,"id":"0xaf88abf0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458254040,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":214,"tts":225270},
-{"pid":27443,"tid":27466,"ts":326458254071,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":225301},
-{"pid":27443,"tid":27466,"ts":326458254101,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225331,"id":"0xba441d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458254101,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":225331},
-{"pid":27443,"tid":27466,"ts":326458254132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":225362,"id":"0xaf88abf1f182217a"},
-{"pid":27443,"tid":27466,"ts":326458254193,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":30,"tdur":30,"tts":225423},
-{"pid":27443,"tid":27466,"ts":326458254193,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225423,"id":"0xba441e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458254223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":225453,"id":"0xaf88abf2f182217a"},
-{"pid":27443,"tid":27466,"ts":326458264661,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":225514,"id":"0xaf88add2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458207405,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5847703},
-{"pid":27443,"tid":27459,"ts":326458211373,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5851091},
-{"pid":27443,"tid":27459,"ts":326458211434,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2563,"tdur":2563,"tts":5851152},
-{"pid":27443,"tid":27459,"ts":326458211464,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5851213},
-{"pid":27443,"tid":27459,"ts":326458211495,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5851213},
-{"pid":27443,"tid":27459,"ts":326458211525,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5851243},
-{"pid":27443,"tid":27459,"ts":326458211922,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5851671},
-{"pid":27443,"tid":27459,"ts":326458211952,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5851671},
-{"pid":27443,"tid":27459,"ts":326458211983,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2014,"tdur":2014,"tts":5851701},
-{"pid":27443,"tid":27459,"ts":326458212014,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1831,"tts":5851732},
-{"pid":27443,"tid":27459,"ts":326458212014,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":335,"tts":5851732},
-{"pid":27443,"tid":27459,"ts":326458212349,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":5852067},
-{"pid":27443,"tid":27459,"ts":326458212563,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":5852281},
-{"pid":27443,"tid":27459,"ts":326458212654,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":5852403},
-{"pid":27443,"tid":27459,"ts":326458212685,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":5852403},
-{"pid":27443,"tid":27459,"ts":326458213845,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":5853563},
-{"pid":27443,"tid":27459,"ts":326458213875,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":5853624},
-{"pid":27443,"tid":27459,"ts":326458213997,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":61},"dur":458,"tdur":458,"tts":5853715},
-{"pid":27443,"tid":27459,"ts":326458214028,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":5853746},
-{"pid":27443,"tid":27459,"ts":326458214272,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":31,"tdur":31,"tts":5853990},
-{"pid":27443,"tid":27459,"ts":326458214303,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":30,"tdur":30,"tts":5854021},
-{"pid":27443,"tid":27459,"ts":326458214333,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":0,"tdur":0,"tts":5854051},
-{"pid":27443,"tid":27459,"ts":326458214333,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":31,"tdur":31,"tts":5854051},
-{"pid":27443,"tid":27459,"ts":326458214364,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":0,"tdur":0,"tts":5854082},
-{"pid":27443,"tid":27459,"ts":326458214364,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":30,"tdur":30,"tts":5854082},
-{"pid":27443,"tid":27459,"ts":326458214394,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":0,"tdur":0,"tts":5854112},
-{"pid":27443,"tid":27459,"ts":326458214425,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":0,"tdur":0,"tts":5854143},
-{"pid":27443,"tid":27459,"ts":326458214425,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":61},"dur":30,"tdur":30,"tts":5854143},
-{"pid":27443,"tid":27459,"ts":326458214455,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5854173,"id":"0x300000016"},
-{"pid":27443,"tid":27459,"ts":326458214455,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":122,"tts":5854173},
-{"pid":27443,"tid":27459,"ts":326458214486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5854204,"id":"0xaf88abecf182217a"},
-{"pid":27443,"tid":27459,"ts":326458215218,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5854356},
-{"pid":27443,"tid":27459,"ts":326458215279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458208},"tts":5854417,"id":"0xaf88a833f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":5854417},
-{"pid":27443,"tid":27459,"ts":326458215310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5854478,"id":"0xaf88a8c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215340,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":5854478},
-{"pid":27443,"tid":27459,"ts":326458215340,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5854478,"id":"0xaf88a8c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215371,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5854509,"id":"0xaf88ab10f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458215371,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":5854509},
-{"pid":27443,"tid":27459,"ts":326458215401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5854539,"id":"0xaf88ab22f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458215401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5854539,"id":"0xaf88a8c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5854600,"id":"0xaf88a8c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":31,"tts":5854631},
-{"pid":27443,"tid":27459,"ts":326458215493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5854631,"id":"0xaf88ab27f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458215493,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":5854631},
-{"pid":27443,"tid":27459,"ts":326458215523,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5854662},
-{"pid":27443,"tid":27459,"ts":326458215554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5854692,"id":"0xaf88a8c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215554,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5921,"tdur":2167,"tts":5854692},
-{"pid":27443,"tid":27459,"ts":326458215584,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5854723,"id":"0xaf88a8c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458215584,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5854723,"id":"0xaf88ab20f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458215615,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":5860,"tdur":2075,"tts":5854753},
-{"pid":27443,"tid":27459,"ts":326458215676,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":5768,"tdur":2014,"tts":5854814},
-{"pid":27443,"tid":27459,"ts":326458215676,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5854814,"id":"0x300000017"},
-{"pid":27443,"tid":27459,"ts":326458215706,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":5677,"tdur":1922,"tts":5854845},
-{"pid":27443,"tid":27459,"ts":326458215737,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":5646,"tdur":1892,"tts":5854875},
-{"pid":27443,"tid":27459,"ts":326458215768,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5854906},
-{"pid":27443,"tid":27459,"ts":326458215829,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5854967},
-{"pid":27443,"tid":27459,"ts":326458215859,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5854997},
-{"pid":27443,"tid":27459,"ts":326458215890,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5855028},
-{"pid":27443,"tid":27459,"ts":326458215920,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":5433,"tdur":1679,"tts":5855058},
-{"pid":27443,"tid":27459,"ts":326458216042,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5855180},
-{"pid":27443,"tid":27459,"ts":326458216897,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5856035},
-{"pid":27443,"tid":27459,"ts":326458220864,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":427,"tts":5856249},
-{"pid":27443,"tid":27459,"ts":326458220895,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5856279},
-{"pid":27443,"tid":27477,"ts":326458215920,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":243888,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458216225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":244010,"id":"0xaf88abedf182217a"},
-{"pid":27443,"tid":27477,"ts":326458216225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":244010},
-{"pid":27443,"tid":27477,"ts":326458216225,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":244010},
-{"pid":27443,"tid":27477,"ts":326458216256,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":244040,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458216256,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":244040},
-{"pid":27443,"tid":27477,"ts":326458216286,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":244071,"id":"0xaf88abe8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458216286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":244101,"id":"0xaf88abeef182217a"},
-{"pid":27443,"tid":27477,"ts":326458216317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":244101},
-{"pid":27443,"tid":27477,"ts":326458216317,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":244101},
-{"pid":27443,"tid":27477,"ts":326458216317,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":244132,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458216347,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":244132},
-{"pid":27443,"tid":27477,"ts":326458216347,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":244132,"id":"0xaf88abe9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458216378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":244162,"id":"0xaf88abeff182217a"},
-{"pid":27443,"tid":27477,"ts":326458216378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":244162},
-{"pid":27443,"tid":27477,"ts":326458216378,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":244162},
-{"pid":27443,"tid":27477,"ts":326458216408,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":244193,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458216408,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":244193},
-{"pid":27443,"tid":27477,"ts":326458216408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":244224,"id":"0xaf88abe8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458216439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1434,"tdur":1220,"tts":244224},
-{"pid":27443,"tid":27477,"ts":326458216439,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1434,"tdur":1190,"tts":244224},
-{"pid":27443,"tid":27477,"ts":326458216439,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":244224},
-{"pid":27443,"tid":27477,"ts":326458216470,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":244254},
-{"pid":27443,"tid":27477,"ts":326458216470,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":244254},
-{"pid":27443,"tid":27477,"ts":326458216470,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":244254},
-{"pid":27443,"tid":27477,"ts":326458216561,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1068,"tts":244346},
-{"pid":27443,"tid":27477,"ts":326458216561,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1068,"tts":244346},
-{"pid":27443,"tid":27477,"ts":326458216561,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1251,"tdur":1007,"tts":244376},
-{"pid":27443,"tid":27477,"ts":326458216592,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":244376,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458216653,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":244437},
-{"pid":27443,"tid":27477,"ts":326458216683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244468},
-{"pid":27443,"tid":27477,"ts":326458216714,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244498},
-{"pid":27443,"tid":27477,"ts":326458216714,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":244498},
-{"pid":27443,"tid":27477,"ts":326458216744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244529},
-{"pid":27443,"tid":27477,"ts":326458216744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":244559},
-{"pid":27443,"tid":27477,"ts":326458216775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":244559},
-{"pid":27443,"tid":27477,"ts":326458216805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244590},
-{"pid":27443,"tid":27477,"ts":326458216836,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244620},
-{"pid":27443,"tid":27477,"ts":326458216836,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":244620},
-{"pid":27443,"tid":27477,"ts":326458216866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244651},
-{"pid":27443,"tid":27477,"ts":326458216866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":244651},
-{"pid":27443,"tid":27477,"ts":326458216897,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244681},
-{"pid":27443,"tid":27477,"ts":326458216927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244712},
-{"pid":27443,"tid":27477,"ts":326458217141,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":244712},
-{"pid":27443,"tid":27477,"ts":326458217171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":244742},
-{"pid":27443,"tid":27477,"ts":326458217202,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":244773},
-{"pid":27443,"tid":27477,"ts":326458217233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":244803},
-{"pid":27443,"tid":27477,"ts":326458217263,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":244834},
-{"pid":27443,"tid":27477,"ts":326458217294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244864},
-{"pid":27443,"tid":27477,"ts":326458217324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244895},
-{"pid":27443,"tid":27477,"ts":326458217355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244925},
-{"pid":27443,"tid":27477,"ts":326458217385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":244956},
-{"pid":27443,"tid":27477,"ts":326458217385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":244956},
-{"pid":27443,"tid":27477,"ts":326458217416,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":245017},
-{"pid":27443,"tid":27477,"ts":326458217446,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":245017},
-{"pid":27443,"tid":27477,"ts":326458217568,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":245139},
-{"pid":27443,"tid":27477,"ts":326458217599,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":245170},
-{"pid":27443,"tid":27477,"ts":326458217629,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":245200},
-{"pid":27443,"tid":27477,"ts":326458217629,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":245200},
-{"pid":27443,"tid":27477,"ts":326458217660,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":245231},
-{"pid":27443,"tid":27477,"ts":326458217690,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":245261},
-{"pid":27443,"tid":27477,"ts":326458217690,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":245261},
-{"pid":27443,"tid":27477,"ts":326458217721,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":245292},
-{"pid":27443,"tid":27477,"ts":326458217751,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":245353},
-{"pid":27443,"tid":27477,"ts":326458217782,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":245353},
-{"pid":27443,"tid":27477,"ts":326458217782,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":245353},
-{"pid":27443,"tid":27477,"ts":326458217812,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":245383},
-{"pid":27443,"tid":27477,"ts":326458217843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":245414,"id":"0xaf88abeaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458217873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458216},"tts":245444,"id":"0xaf88abd3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458217873,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":245444},
-{"pid":27443,"tid":27477,"ts":326458217904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":245475,"id":"0xaf88abe9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458217904,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":245475},
-{"pid":27443,"tid":27477,"ts":326458217904,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":245475},
-{"pid":27443,"tid":27477,"ts":326458217934,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":245505},
-{"pid":27443,"tid":27477,"ts":326458217934,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":245505},
-{"pid":27443,"tid":27477,"ts":326458217934,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":62,"tdur":61,"tts":245505},
-{"pid":27443,"tid":27477,"ts":326458217965,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":245536},
-{"pid":27443,"tid":27477,"ts":326458217996,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":245566},
-{"pid":27443,"tid":27477,"ts":326458217996,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":245597},
-{"pid":27443,"tid":27477,"ts":326458218026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":245597,"id":"0xaf88abeaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458218057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4700,"tdur":1526,"tts":245627},
-{"pid":27443,"tid":27477,"ts":326458218057,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4700,"tdur":1526,"tts":245627},
-{"pid":27443,"tid":27477,"ts":326458218057,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":245627},
-{"pid":27443,"tid":27477,"ts":326458218087,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":4670,"tdur":1465,"tts":245658},
-{"pid":27443,"tid":27477,"ts":326458218087,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":61},"dur":3052,"tdur":916,"tts":245658},
-{"pid":27443,"tid":27477,"ts":326458218118,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":61},"dur":244,"tdur":244,"tts":245689},
-{"pid":27443,"tid":27477,"ts":326458218362,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":61},"dur":30,"tdur":30,"tts":245933},
-{"pid":27443,"tid":27477,"ts":326458218392,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":61},"tts":245994},
-{"pid":27443,"tid":27477,"ts":326458218575,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":246146},
-{"pid":27443,"tid":27477,"ts":326458218575,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":246146},
-{"pid":27443,"tid":27477,"ts":326458218606,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":246177},
-{"pid":27443,"tid":27477,"ts":326458218606,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":246177},
-{"pid":27443,"tid":27477,"ts":326458218636,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":246207,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458218697,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":246268},
-{"pid":27443,"tid":27477,"ts":326458221139,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":246574},
-{"pid":27443,"tid":27477,"ts":326458221139,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1099,"tdur":305,"tts":246574},
-{"pid":27443,"tid":27477,"ts":326458221170,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":246604},
-{"pid":27443,"tid":27477,"ts":326458221170,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1007,"tdur":214,"tts":246604},
-{"pid":27443,"tid":27477,"ts":326458221261,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11990},"dur":0,"tdur":0,"tts":246696},
-{"pid":27443,"tid":27477,"ts":326458221292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":246726,"id":"0xaf88addbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458222207,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":246848,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458222238,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":246879,"id":"0x300000016"},
-{"pid":27443,"tid":27477,"ts":326458222268,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":397,"tdur":153,"tts":246909},
-{"pid":27443,"tid":27477,"ts":326458222360,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247001,"id":"0xaf88add5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458222665,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":247092,"id":"0xaf88ab23f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458222696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247092,"id":"0xaf88a8ddf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458222757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":247184,"id":"0xaf88abebf182217a"},
-{"pid":27443,"tid":27477,"ts":326458222787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":0,"tts":247184},
-{"pid":27443,"tid":27477,"ts":326458222787,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":247184},
-{"pid":27443,"tid":27477,"ts":326458222818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":247215,"id":"0xaf88abe4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458222818,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":247215},
-{"pid":27443,"tid":27477,"ts":326458222848,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458153262.0,"frame_time_us":326458216867.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":247245},
-{"pid":27443,"tid":27477,"ts":326458222848,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458153262.0,"frame_time_us":326458216867.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":92,"tts":247245},
-{"pid":27443,"tid":27477,"ts":326458222909,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458233533},"dur":0,"tdur":0,"tts":247306},
-{"pid":27443,"tid":27477,"ts":326458222909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247306,"id":"0xaf88abe5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458223611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":247398,"id":"0xaf88abe6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458223611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":247398},
-{"pid":27443,"tid":27477,"ts":326458223611,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":247398},
-{"pid":27443,"tid":27477,"ts":326458223642,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":247428,"id":"0x300000018"},
-{"pid":27443,"tid":27477,"ts":326458223642,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":247428},
-{"pid":27443,"tid":27477,"ts":326458223672,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":247459,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458223703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":247489,"id":"0xaf88ab3cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458223703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247489,"id":"0xaf88a8dff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458225320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":247581,"id":"0xaf88abe7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458225320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":184,"tdur":183,"tts":247581},
-{"pid":27443,"tid":27477,"ts":326458225351,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":153,"tts":247611},
-{"pid":27443,"tid":27477,"ts":326458225351,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":62},"tts":247611},
-{"pid":27443,"tid":27477,"ts":326458225442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":247703,"id":"0xaf88ab3df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458221200,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":9,"frame":"0x78c60000"}},"tts":5856584,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458221231,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":5856615},
-{"pid":27443,"tid":27459,"ts":326458221261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5856645,"id":"0xaf88abebf182217a"},
-{"pid":27443,"tid":27459,"ts":326458221292,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5856676},
-{"pid":27443,"tid":27459,"ts":326458221414,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":0,"tts":5856798},
-{"pid":27443,"tid":27459,"ts":326458221414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5856798,"id":"0xaf88add4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458221505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5856889,"id":"0xaf88a8c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458221505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":306,"tdur":123,"tts":5856889},
-{"pid":27443,"tid":27459,"ts":326458221750,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5856951,"id":"0xaf88a8dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458221780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5856981,"id":"0xaf88ab21f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458221780,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":5856981},
-{"pid":27443,"tid":27459,"ts":326458221780,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":5856981},
-{"pid":27443,"tid":27459,"ts":326458221841,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5857042,"id":"0xaf88a8dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458221841,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5857042},
-{"pid":27443,"tid":27459,"ts":326458223123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5857134,"id":"0xaf88a8ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458223123,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":5857134},
-{"pid":27443,"tid":27459,"ts":326458223153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5857164,"id":"0xaf88a8def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458223153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5857164,"id":"0xaf88ab23f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458223184,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":0,"tts":5857195},
-{"pid":27443,"tid":27459,"ts":326458223184,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5857195},
-{"pid":27443,"tid":27459,"ts":326458223245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5857256,"id":"0xaf88a8def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458223245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":5857256},
-{"pid":27443,"tid":27459,"ts":326458223794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5857347,"id":"0xaf88a8dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458223794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2656,"tdur":1648,"tts":5857347},
-{"pid":27443,"tid":27459,"ts":326458223825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5857378,"id":"0xaf88a8d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458223825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5857378,"id":"0xaf88ab3cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458223855,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2595,"tdur":1587,"tts":5857408},
-{"pid":27443,"tid":27459,"ts":326458223916,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2503,"tdur":1496,"tts":5857469},
-{"pid":27443,"tid":27459,"ts":326458223916,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5857469,"id":"0x300000018"},
-{"pid":27443,"tid":27459,"ts":326458223947,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2381,"tdur":1373,"tts":5857500},
-{"pid":27443,"tid":27459,"ts":326458223947,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2381,"tdur":1343,"tts":5857530},
-{"pid":27443,"tid":27459,"ts":326458224008,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5857561},
-{"pid":27443,"tid":27459,"ts":326458224039,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5857591},
-{"pid":27443,"tid":27459,"ts":326458224069,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5857622},
-{"pid":27443,"tid":27459,"ts":326458224100,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5857652},
-{"pid":27443,"tid":27459,"ts":326458224161,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":2167,"tdur":1129,"tts":5857714},
-{"pid":27443,"tid":27459,"ts":326458224252,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5857836},
-{"pid":27443,"tid":27459,"ts":326458224344,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5857927},
-{"pid":27443,"tid":27459,"ts":326458224405,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5857958},
-{"pid":27443,"tid":27459,"ts":326458224405,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5857958},
-{"pid":27443,"tid":27459,"ts":326458224496,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5858049},
-{"pid":27443,"tid":27459,"ts":326458225687,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5858232},
-{"pid":27443,"tid":27459,"ts":326458225717,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5858263},
-{"pid":27443,"tid":27459,"ts":326458225839,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5858385},
-{"pid":27443,"tid":27459,"ts":326458225931,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":336,"tdur":335,"tts":5858477},
-{"pid":27443,"tid":27459,"ts":326458225961,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5858507},
-{"pid":27443,"tid":27459,"ts":326458226206,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":10,"frame":"0x78c60000"}},"tts":5858782,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458226236,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5858812},
-{"pid":27443,"tid":27459,"ts":326458226358,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5858904},
-{"pid":27443,"tid":27459,"ts":326458226358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5858904,"id":"0xaf88add6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458226480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5859026,"id":"0xaf88a8d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458226511,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16939,"tdur":10744,"tts":5859056},
-{"pid":27443,"tid":27459,"ts":326458226511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5859056,"id":"0xaf88a8daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458226541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5859087,"id":"0xaf88ab3df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458226541,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16878,"tdur":10682,"tts":5859087},
-{"pid":27443,"tid":27459,"ts":326458226541,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":62},"tts":5859087},
-{"pid":27443,"tid":27459,"ts":326458226572,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5859117},
-{"pid":27443,"tid":27459,"ts":326458226602,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12330,"tdur":7386,"tts":5859148},
-{"pid":27443,"tid":27459,"ts":326458226633,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5859179},
-{"pid":27443,"tid":27459,"ts":326458226663,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":9,"frame":"0x78c60000"}},"dur":12086,"tdur":7142,"tts":5859209},
-{"pid":27443,"tid":27459,"ts":326458226724,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":12025,"tdur":7081,"tts":5859270},
-{"pid":27443,"tid":27459,"ts":326458226755,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5859301},
-{"pid":27443,"tid":27459,"ts":326458226938,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5859484},
-{"pid":27443,"tid":27459,"ts":326458226969,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":31,"tts":5859514},
-{"pid":27443,"tid":27477,"ts":326458225442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247703,"id":"0xaf88a8d9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458225473,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":247733},{"pid":27411,"tid":27474,"ts":326460028037,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":72485},
-{"pid":27411,"tid":27474,"ts":326460028067,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":72516},
-{"pid":27411,"tid":27474,"ts":326460028067,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72516,"id":"0xba453202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460028098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72546,"id":"0xaf88cdcdf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460032554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":72669,"id":"0xaf88cee1fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460032584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":72699},
-{"pid":27411,"tid":27474,"ts":326460032584,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72699,"id":"0xc4c18702"},
-{"pid":27411,"tid":27474,"ts":326460042473,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":305,"tdur":183,"tts":72791},
-{"pid":27411,"tid":27474,"ts":326460042503,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":275,"tdur":122,"tts":72821},
-{"pid":27411,"tid":27474,"ts":326460042534,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72852,"id":"0xccc4a506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460042534,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":72852,"id":"0xc4c1880a"},
-{"pid":27411,"tid":27474,"ts":326460042595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72913,"id":"0xaf88cdcff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460046013,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":73035},
-{"pid":27411,"tid":27474,"ts":326460046044,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":73065},
-{"pid":27411,"tid":27474,"ts":326460046044,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73065,"id":"0xba453602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460046074,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":73096,"id":"0xaf88cdc9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460050958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":73187,"id":"0xaf88cee2fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460050988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":73218},
-{"pid":27411,"tid":27474,"ts":326460050988,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73218,"id":"0xc4c18a02"},
-{"pid":27411,"tid":27474,"ts":326460056482,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":73340},
-{"pid":27411,"tid":27474,"ts":326460056512,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":73370},
-{"pid":27411,"tid":27474,"ts":326460056512,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73370,"id":"0xccc4ab06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460056543,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73401,"id":"0xc4c18b0a"},
-{"pid":27411,"tid":27474,"ts":326460056573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":73432,"id":"0xaf88cdcbf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460060907,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":73554},
-{"pid":27411,"tid":27474,"ts":326460060938,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":73584},
-{"pid":27411,"tid":27474,"ts":326460060968,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73615,"id":"0xba453a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460060968,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":73615,"id":"0xaf88cdc5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460065088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":73737,"id":"0xaf88cee3fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460065119,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":73767},
-{"pid":27411,"tid":27474,"ts":326460065119,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73767,"id":"0xc4c18d02"},
-{"pid":27411,"tid":27474,"ts":326460074824,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":73889},
-{"pid":27411,"tid":27474,"ts":326460074855,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":73920},
-{"pid":27411,"tid":27474,"ts":326460074855,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73920,"id":"0xccc4af06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460074885,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":73950,"id":"0xc4c18e0a"},
-{"pid":27411,"tid":27474,"ts":326460074916,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":73981,"id":"0xaf88cdc7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460080166,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":74103},
-{"pid":27411,"tid":27474,"ts":326460080196,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":74133},
-{"pid":27411,"tid":27474,"ts":326460080196,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":74133,"id":"0xba453e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460080227,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":74164,"id":"0xaf88cdc1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460084530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":74317,"id":"0xaf88cefcfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460084530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":74317},
-{"pid":27411,"tid":27474,"ts":326460084560,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":74347,"id":"0xc4c19002"},
-{"pid":27411,"tid":27474,"ts":326460108458,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":427,"tdur":366,"tts":74439},
-{"pid":27411,"tid":27474,"ts":326460108488,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":153,"tdur":153,"tts":74469},
-{"pid":27411,"tid":27474,"ts":326460108519,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":74500,"id":"0xccc4b602","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460032401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1159652,"id":"0xaf88cee1fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460032401,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1159652},
-{"pid":27411,"tid":27428,"ts":326460042809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1159896,"id":"0xaf88cdcff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460042809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1159896},
-{"pid":27411,"tid":27428,"ts":326460042839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1159926,"id":"0xaf88cdc8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460042870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1159957,"id":"0xaf88cdc8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460042870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1159957},
-{"pid":27411,"tid":27428,"ts":326460046166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1160048,"id":"0xaf88cdc9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460046166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1160048},
-{"pid":27411,"tid":27428,"ts":326460046166,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1160048},
-{"pid":27411,"tid":27428,"ts":326460046196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1160079,"id":"0xaf88cdcaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460046227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1160109,"id":"0xaf88cdcaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460046227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4761,"tdur":3937,"tts":1160109},
-{"pid":27411,"tid":27428,"ts":326460046288,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":72},"dur":4700,"tdur":3846,"tts":1160170},
-{"pid":27411,"tid":27428,"ts":326460046318,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4640,"tdur":3815,"tts":1160201},
-{"pid":27411,"tid":27428,"ts":326460049157,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1162765,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460049187,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":101},"dur":1771,"tdur":1221,"tts":1162795},
-{"pid":27411,"tid":27428,"ts":326460049218,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1495,"tdur":946,"tts":1162826},
-{"pid":27411,"tid":27428,"ts":326460050835,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460043785.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460049187.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901994.0,"time":326460003620.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459997000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460042900.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460022085.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460050713.0},"coordinates":[{"x":212.00782775878906,"y":768.5015869140625},{"x":549.9921875,"y":451.5093994140625}],"trace_id":12884901994.0}},"tts":1163924,"id":"0x30000006a"},
-{"pid":27411,"tid":27428,"ts":326460050866,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1163924,"id":"0x30000006a","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460050896,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":62,"tdur":30,"tts":1163955},
-{"pid":27411,"tid":27428,"ts":326460050896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1163955,"id":"0xaf88cee2fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460056634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1164138,"id":"0xaf88cdcbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460056665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1164138},
-{"pid":27411,"tid":27428,"ts":326460056695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1164169,"id":"0xaf88cdc4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460056726,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1164199,"id":"0xaf88cdc4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460056726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1164199},
-{"pid":27411,"tid":27428,"ts":326460061060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1164291,"id":"0xaf88cdc5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460061060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1164291},
-{"pid":27411,"tid":27428,"ts":326460061060,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":1164321},
-{"pid":27411,"tid":27428,"ts":326460061090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1164321,"id":"0xaf88cdc6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460061121,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1164352,"id":"0xaf88cdc6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460061121,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3998,"tdur":3601,"tts":1164352},
-{"pid":27411,"tid":27428,"ts":326460061182,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3234},"dur":3906,"tdur":3510,"tts":1164413},
-{"pid":27411,"tid":27428,"ts":326460061212,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3876,"tdur":3480,"tts":1164443},
-{"pid":27411,"tid":27428,"ts":326460063562,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1166793,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460063593,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":102},"dur":1495,"tdur":1099,"tts":1166824},
-{"pid":27411,"tid":27428,"ts":326460063623,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1252,"tdur":824,"tts":1166854},
-{"pid":27411,"tid":27428,"ts":326460064966,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460057489.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460063593.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901995.0,"time":326460020315.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460013000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460056756.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460036399.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460064875.0},"coordinates":[{"x":215.76565551757812,"y":769.31640625},{"x":546.234375,"y":456.39849853515625}],"trace_id":12884901995.0}},"tts":1167831,"id":"0x30000006b"},
-{"pid":27411,"tid":27428,"ts":326460064997,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1167831,"id":"0x30000006b","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460065027,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":30,"tts":1167862},
-{"pid":27411,"tid":27428,"ts":326460065027,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1167862,"id":"0xaf88cee3fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460075008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1168045,"id":"0xaf88cdc7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460075008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1168045},
-{"pid":27411,"tid":27428,"ts":326460075038,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1168075,"id":"0xaf88cdc0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460075069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1168106,"id":"0xaf88cdc0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460075069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1168106},
-{"pid":27411,"tid":27428,"ts":326460080318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1168228,"id":"0xaf88cdc1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460080318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1168228},
-{"pid":27411,"tid":27428,"ts":326460080349,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1168258},
-{"pid":27411,"tid":27428,"ts":326460080349,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1168258,"id":"0xaf88cdc2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460080379,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1168289,"id":"0xaf88cdc2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460080379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4151,"tdur":3754,"tts":1168319},
-{"pid":27411,"tid":27428,"ts":326460080440,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6396},"dur":4090,"tdur":3723,"tts":1168350},
-{"pid":27411,"tid":27428,"ts":326460080471,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4059,"tdur":3693,"tts":1168380},
-{"pid":27411,"tid":27428,"ts":326460082851,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1170761,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460082882,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":103},"dur":1617,"tdur":1252,"tts":1170791},
-{"pid":27411,"tid":27428,"ts":326460082912,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1191,"tdur":824,"tts":1170822},
-{"pid":27411,"tid":27428,"ts":326460084286,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460075801.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460082882.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901996.0,"time":326460039757.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460030000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460075099.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460050439.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460084103.0},"coordinates":[{"x":219.66201782226562,"y":770.1323852539062},{"x":542.3380126953125,"y":461.29443359375}],"trace_id":12884901996.0}},"tts":1171829,"id":"0x30000006c"},
-{"pid":27411,"tid":27428,"ts":326460084286,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1171829,"id":"0x30000006c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460084408,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460075801.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460082882.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901997.0,"time":326460053552.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460047000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460075099.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460055505.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460084103.0},"coordinates":[{"x":223.7451934814453,"y":770.5},{"x":538.2548217773438,"y":466.64324951171875}],"trace_id":12884901997.0}},"tts":1171951,"id":"0x30000006d"},
-{"pid":27411,"tid":27428,"ts":326460084408,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1171951,"id":"0x30000006d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460084438,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1171982},
-{"pid":27411,"tid":27428,"ts":326460084469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1172012,"id":"0xaf88cefcfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460108549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":74530,"id":"0xaf88cdc3f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460108549,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":74530},
-{"pid":27411,"tid":27474,"ts":326460108672,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":183,"tdur":153,"tts":74652},
-{"pid":27411,"tid":27474,"ts":326460108702,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":74683,"id":"0xccc4b706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460108763,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":74713,"id":"0xc4c1910a"},
-{"pid":27411,"tid":27474,"ts":326460108824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":74805,"id":"0xaf88cdddf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460113036,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":74866},
-{"pid":27411,"tid":27474,"ts":326460113066,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":62,"tts":74896},
-{"pid":27411,"tid":27474,"ts":326460113066,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":74896,"id":"0xba454602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460113097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":74927,"id":"0xaf88cddff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460118072,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":75049,"id":"0xaf88cefdfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460118072,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":75049},
-{"pid":27411,"tid":27474,"ts":326460118102,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75080,"id":"0xc4c19302"},
-{"pid":27411,"tid":27474,"ts":326460137696,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":122,"tts":75171},
-{"pid":27411,"tid":27474,"ts":326460137757,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":75202},
-{"pid":27411,"tid":27474,"ts":326460137757,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75202,"id":"0xccc4bb06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460137788,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75232,"id":"0xc4c1940a"},
-{"pid":27411,"tid":27474,"ts":326460137819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75263,"id":"0xaf88cdd9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460141389,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":75354},
-{"pid":27411,"tid":27474,"ts":326460141420,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":75385},
-{"pid":27411,"tid":27474,"ts":326460141420,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75385,"id":"0xba454c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460141450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75415,"id":"0xaf88cddbf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460146273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":75537,"id":"0xaf88cefefec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460146273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":75537},
-{"pid":27411,"tid":27474,"ts":326460146273,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75537,"id":"0xc4c19602"},
-{"pid":27411,"tid":27474,"ts":326460155917,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":75629},
-{"pid":27411,"tid":27474,"ts":326460155948,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":123,"tts":75659},
-{"pid":27411,"tid":27474,"ts":326460155948,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75659,"id":"0xccc4c106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460155978,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75690,"id":"0xc4c1970a"},
-{"pid":27411,"tid":27474,"ts":326460156009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75721,"id":"0xaf88cdd5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460159000,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":75873},
-{"pid":27411,"tid":27474,"ts":326460159030,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":75873},
-{"pid":27411,"tid":27474,"ts":326460159061,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":75904,"id":"0xba455002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460159061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75904,"id":"0xaf88cdd7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460163517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":75995,"id":"0xaf88cefffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460163547,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":76026},
-{"pid":27411,"tid":27474,"ts":326460163547,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76026,"id":"0xc4c19902"},
-{"pid":27411,"tid":27474,"ts":326460186956,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":76148},
-{"pid":27411,"tid":27474,"ts":326460186987,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":152,"tdur":122,"tts":76209},
-{"pid":27411,"tid":27474,"ts":326460187017,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76209,"id":"0xccc4c506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460187048,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76239,"id":"0xc4c19a0a"},
-{"pid":27411,"tid":27474,"ts":326460187109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76300,"id":"0xaf88cdd1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460194251,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":122,"tts":76423},
-{"pid":27411,"tid":27474,"ts":326460194312,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":76453},
-{"pid":27411,"tid":27474,"ts":326460194312,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76453,"id":"0xba455602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460194342,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76484,"id":"0xaf88cdd3f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460198981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":76606,"id":"0xaf88cef8fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460198981,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":76606},
-{"pid":27411,"tid":27474,"ts":326460198981,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76606,"id":"0xc4c19c02"},
-{"pid":27411,"tid":27474,"ts":326460210426,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":183,"tts":76728},
-{"pid":27411,"tid":27474,"ts":326460210457,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":76758},
-{"pid":27411,"tid":27474,"ts":326460210488,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76789,"id":"0xccc4cb06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460210488,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":76789,"id":"0xc4c19d0a"},
-{"pid":27411,"tid":27474,"ts":326460210549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76850,"id":"0xaf88cdedf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460213845,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":76972},
-{"pid":27411,"tid":27474,"ts":326460213845,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":77002},
-{"pid":27411,"tid":27474,"ts":326460213875,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77002,"id":"0xba455a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460213875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":77033,"id":"0xaf88cdeff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460218423,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":77155,"id":"0xaf88cef9fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460218423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":77155},
-{"pid":27411,"tid":27474,"ts":326460218423,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77155,"id":"0xc4c19f02"},
-{"pid":27411,"tid":27474,"ts":326460235758,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":275,"tdur":274,"tts":77247},
-{"pid":27411,"tid":27474,"ts":326460235819,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":184,"tdur":183,"tts":77308},
-{"pid":27411,"tid":27474,"ts":326460235819,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77308,"id":"0xccc4cf06","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460108702,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1172165,"id":"0xaf88cdc3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460108702,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1172165},
-{"pid":27411,"tid":27428,"ts":326460108763,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1172226},
-{"pid":27411,"tid":27428,"ts":326460108763,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1172226},
-{"pid":27411,"tid":27428,"ts":326460108794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1172256,"id":"0xaf88cddcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460108824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1172287,"id":"0xaf88cddcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460108855,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":335,"tdur":335,"tts":1172318},
-{"pid":27411,"tid":27428,"ts":326460108885,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1172348},
-{"pid":27411,"tid":27428,"ts":326460109007,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12937},"dur":183,"tdur":183,"tts":1172470},
-{"pid":27411,"tid":27428,"ts":326460109007,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":153,"tdur":122,"tts":1172501},
-{"pid":27411,"tid":27428,"ts":326460109038,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":115},"dur":30,"tdur":30,"tts":1172501},
-{"pid":27411,"tid":27428,"ts":326460109068,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":20},"dur":31,"tdur":31,"tts":1172531},
-{"pid":27411,"tid":27428,"ts":326460109099,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":111},"dur":30,"tdur":30,"tts":1172562},
-{"pid":27411,"tid":27428,"ts":326460109129,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":210},"dur":0,"tdur":0,"tts":1172592},
-{"pid":27411,"tid":27428,"ts":326460109160,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":119},"dur":0,"tdur":0,"tts":1172623},
-{"pid":27411,"tid":27428,"ts":326460109221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1172684,"id":"0xaf88cdddf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460109221,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1172684},
-{"pid":27411,"tid":27428,"ts":326460109251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1172714,"id":"0xaf88cddef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460109282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1172745,"id":"0xaf88cddef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460109282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1172745},
-{"pid":27411,"tid":27428,"ts":326460113158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1172867,"id":"0xaf88cddff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460113158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1172867},
-{"pid":27411,"tid":27428,"ts":326460113189,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1172897},
-{"pid":27411,"tid":27428,"ts":326460113189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1172897,"id":"0xaf88cdd8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460113219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1172928,"id":"0xaf88cdd8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460113219,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4853,"tdur":4456,"tts":1172928},
-{"pid":27411,"tid":27428,"ts":326460113250,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1172958},
-{"pid":27411,"tid":27428,"ts":326460113372,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9984},"dur":4700,"tdur":4303,"tts":1173081},
-{"pid":27411,"tid":27428,"ts":326460113402,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4670,"tdur":4242,"tts":1173111},
-{"pid":27411,"tid":27428,"ts":326460114440,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":119},"dur":30,"tdur":30,"tts":1174149},
-{"pid":27411,"tid":27428,"ts":326460114531,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":210},"dur":31,"tdur":31,"tts":1174240},
-{"pid":27411,"tid":27428,"ts":326460114654,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":55},"dur":0,"tdur":0,"tts":1174362},
-{"pid":27411,"tid":27428,"ts":326460114745,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":111},"dur":31,"tdur":0,"tts":1174454},
-{"pid":27411,"tid":27428,"ts":326460114837,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":20},"dur":30,"tdur":31,"tts":1174545},
-{"pid":27411,"tid":27428,"ts":326460114928,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":115},"dur":31,"tdur":31,"tts":1174637},
-{"pid":27411,"tid":27428,"ts":326460116302,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1176010,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460116302,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":104},"dur":1739,"tdur":1343,"tts":1176010},
-{"pid":27411,"tid":27428,"ts":326460116363,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1343,"tdur":946,"tts":1176072},
-{"pid":27411,"tid":27428,"ts":326460117797,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460110930.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460116332.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901998.0,"time":326460070216.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460063000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460109190.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460073634.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460117706.0},"coordinates":[{"x":227.83041381835938,"y":770.5},{"x":533.9035034179688,"y":471.86260986328125}],"trace_id":12884901998.0}},"tts":1177109,"id":"0x30000006e"},
-{"pid":27411,"tid":27428,"ts":326460117797,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1177109,"id":"0x30000006e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460117919,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460110930.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460116332.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901999.0,"time":326460086788.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460080000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460109190.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460089230.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460117706.0},"coordinates":[{"x":231.91958618164062,"y":770.5},{"x":528.9964599609375,"y":477.58740234375}],"trace_id":12884901999.0}},"tts":1177231,"id":"0x30000006f"},
-{"pid":27411,"tid":27428,"ts":326460117950,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1177262,"id":"0x30000006f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460117950,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":91,"tts":1177262},
-{"pid":27411,"tid":27428,"ts":326460117980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1177323,"id":"0xaf88cefdfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460137880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1177475,"id":"0xaf88cdd9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460137910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1177506},
-{"pid":27411,"tid":27428,"ts":326460137910,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1177506,"id":"0xaf88cddaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460137941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1177536,"id":"0xaf88cddaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460137971,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1177567},
-{"pid":27411,"tid":27428,"ts":326460141511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1177628,"id":"0xaf88cddbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460141542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1177659},
-{"pid":27411,"tid":27428,"ts":326460141542,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1177659},
-{"pid":27411,"tid":27428,"ts":326460141573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1177689,"id":"0xaf88cdd4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460141573,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1177720,"id":"0xaf88cdd4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460141603,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4670,"tdur":4120,"tts":1177720},
-{"pid":27411,"tid":27428,"ts":326460141664,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13446},"dur":4609,"tdur":4059,"tts":1177781},
-{"pid":27411,"tid":27428,"ts":326460141664,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4578,"tdur":4028,"tts":1177781},
-{"pid":27411,"tid":27428,"ts":326460144380,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1180497,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460144380,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":105},"dur":1862,"tdur":1312,"tts":1180497},
-{"pid":27411,"tid":27428,"ts":326460144411,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1434,"tdur":855,"tts":1180558},
-{"pid":27411,"tid":27428,"ts":326460145967,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460138795.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460144411.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902000.0,"time":326460103788.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460097000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460138002.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460107054.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460145876.0},"coordinates":[{"x":235.99615478515625,"y":770.5},{"x":524.1046142578125,"y":483.29461669921875}],"trace_id":12884902000.0}},"tts":1181535,"id":"0x300000070"},
-{"pid":27411,"tid":27428,"ts":326460145967,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1181535,"id":"0x300000070","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460146090,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460138795.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460144411.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902001.0,"time":326460121368.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460113000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460138002.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460123474.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460145876.0},"coordinates":[{"x":240.0833740234375,"y":770.5},{"x":518.9832763671875,"y":489.7333984375}],"trace_id":12884902001.0}},"tts":1181657,"id":"0x300000071"},
-{"pid":27411,"tid":27428,"ts":326460146120,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1181687,"id":"0x300000071","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460146120,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1181687},
-{"pid":27411,"tid":27428,"ts":326460146120,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1181687},
-{"pid":27411,"tid":27428,"ts":326460146181,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1181748,"id":"0xaf88cefefec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460156161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1181901,"id":"0xaf88cdd5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460156161,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":31,"tts":1181931},
-{"pid":27411,"tid":27428,"ts":326460156192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1181931,"id":"0xaf88cdd6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460156222,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1181962,"id":"0xaf88cdd6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460156222,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":1181992},
-{"pid":27411,"tid":27428,"ts":326460159122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1182054,"id":"0xaf88cdd7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460159152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1182084},
-{"pid":27411,"tid":27428,"ts":326460159152,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1182084},
-{"pid":27411,"tid":27428,"ts":326460159183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1182115,"id":"0xaf88cdd0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460159183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1182145,"id":"0xaf88cdd0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460159213,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4334,"tdur":3876,"tts":1182145},
-{"pid":27411,"tid":27428,"ts":326460159274,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":533},"dur":4243,"tdur":3785,"tts":1182206},
-{"pid":27411,"tid":27428,"ts":326460159274,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4243,"tdur":3785,"tts":1182206},
-{"pid":27411,"tid":27428,"ts":326460162021,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1184861,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460162052,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":106},"dur":1465,"tdur":1130,"tts":1184861},
-{"pid":27411,"tid":27428,"ts":326460162082,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1221,"tdur":855,"tts":1184922},
-{"pid":27411,"tid":27428,"ts":326460163395,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460156985.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460162082.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902002.0,"time":326460136811.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460130000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460156192.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460141084.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460163303.0},"coordinates":[{"x":244.69410705566406,"y":769.9676513671875},{"x":513.805908203125,"y":495.7264404296875}],"trace_id":12884902002.0}},"tts":1185899,"id":"0x300000072"},
-{"pid":27411,"tid":27428,"ts":326460163425,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1185899,"id":"0x300000072","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460163456,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":30,"tdur":30,"tts":1185930},
-{"pid":27411,"tid":27428,"ts":326460163456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1185930,"id":"0xaf88cefffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460187170,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1186082,"id":"0xaf88cdd1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460187170,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1186082},
-{"pid":27411,"tid":27428,"ts":326460187200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1186113,"id":"0xaf88cdd2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460187231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1186143,"id":"0xaf88cdd2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460187231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1186143},
-{"pid":27411,"tid":27428,"ts":326460194403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1186235,"id":"0xaf88cdd3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460194434,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1186265},
-{"pid":27411,"tid":27428,"ts":326460194434,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1186265},
-{"pid":27411,"tid":27428,"ts":326460194464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1186296,"id":"0xaf88cdecf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460194464,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1186326,"id":"0xaf88cdecf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460194495,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4486,"tdur":4121,"tts":1186326},
-{"pid":27411,"tid":27428,"ts":326460194556,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3995},"dur":4425,"tdur":4029,"tts":1186387},
-{"pid":27411,"tid":27428,"ts":326460194617,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4334,"tdur":3968,"tts":1186448},
-{"pid":27411,"tid":27428,"ts":326460197181,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1189012,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460197181,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":107},"dur":1770,"tdur":1404,"tts":1189012},
-{"pid":27411,"tid":27428,"ts":326460197242,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1343,"tdur":977,"tts":1189073},
-{"pid":27411,"tid":27428,"ts":326460198676,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460190680.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460197211.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902003.0,"time":326460153536.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460147000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460187536.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460155307.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460198585.0},"coordinates":[{"x":249.57318115234375,"y":770.0},{"x":508.92681884765625,"y":501.418701171875}],"trace_id":12884902003.0}},"tts":1190172,"id":"0x300000073"},
-{"pid":27411,"tid":27428,"ts":326460198707,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1190172,"id":"0x300000073","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460198829,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460190680.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460197211.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902004.0,"time":326460170170.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460163000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460187536.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460172856.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460198585.0},"coordinates":[{"x":255.167724609375,"y":769.3331909179688},{"x":504.6659240722656,"y":507.167724609375}],"trace_id":12884902004.0}},"tts":1190294,"id":"0x300000074"},
-{"pid":27411,"tid":27428,"ts":326460198859,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1190325,"id":"0x300000074","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460198859,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":61,"tts":1190325},
-{"pid":27411,"tid":27428,"ts":326460198890,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1190355,"id":"0xaf88cef8fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460210640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1190569,"id":"0xaf88cdedf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460210671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1190569},
-{"pid":27411,"tid":27428,"ts":326460210701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1190599,"id":"0xaf88cdeef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460210732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1190630,"id":"0xaf88cdeef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460210732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1190630},
-{"pid":27411,"tid":27428,"ts":326460213967,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1190752,"id":"0xaf88cdeff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460213967,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1190752},
-{"pid":27411,"tid":27428,"ts":326460213967,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1190752},
-{"pid":27411,"tid":27428,"ts":326460213997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1190782,"id":"0xaf88cde8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460214028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1190813,"id":"0xaf88cde8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460214028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4395,"tdur":4029,"tts":1190813},
-{"pid":27411,"tid":27428,"ts":326460214089,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":7457},"dur":4334,"tdur":3968,"tts":1190874},
-{"pid":27411,"tid":27428,"ts":326460214119,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4273,"tdur":3907,"tts":1190904},
-{"pid":27411,"tid":27428,"ts":326460216683,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1193468,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460216714,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":108},"dur":1678,"tdur":1312,"tts":1193499},
-{"pid":27411,"tid":27428,"ts":326460216744,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1343,"tdur":977,"tts":1193529},
-{"pid":27411,"tid":27428,"ts":326460218209,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460211556.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460216714.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902005.0,"time":326460189306.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460180000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460210762.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460192755.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460218087.0},"coordinates":[{"x":259.8773498535156,"y":769.0},{"x":501.0817565917969,"y":512.3773193359375}],"trace_id":12884902005.0}},"tts":1194628,"id":"0x300000075"},
-{"pid":27411,"tid":27428,"ts":326460218240,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1194658,"id":"0x300000075","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460218240,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":152,"tdur":153,"tts":1194658},
-{"pid":27411,"tid":27428,"ts":326460218270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1194689,"id":"0xaf88cef9fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460218270,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1194689},
-{"pid":27411,"tid":27428,"ts":326460236033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1194903,"id":"0xaf88cde9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460236064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1194933},
-{"pid":27411,"tid":27428,"ts":326460236064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1194964,"id":"0xaf88cdeaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460236094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1194964,"id":"0xaf88cdeaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460236125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1194994},
-{"pid":27411,"tid":27428,"ts":326460240245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1195086,"id":"0xaf88cdebf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460240245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1195086},
-{"pid":27411,"tid":27428,"ts":326460240275,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1195116},
-{"pid":27411,"tid":27428,"ts":326460240275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1195116,"id":"0xaf88cde4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460240306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1195147,"id":"0xaf88cde4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460240336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4640,"tdur":4029,"tts":1195177},
-{"pid":27411,"tid":27428,"ts":326460240367,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":10919},"dur":4609,"tdur":3998,"tts":1195208},
-{"pid":27411,"tid":27428,"ts":326460240397,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4579,"tdur":3968,"tts":1195238},
-{"pid":27411,"tid":27428,"ts":326460243144,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1197833,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460243175,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":109},"dur":1770,"tdur":1312,"tts":1197863},
-{"pid":27411,"tid":27428,"ts":326460243236,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1312,"tdur":885,"tts":1197924},
-{"pid":27411,"tid":27428,"ts":326460244670,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460238017.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460243205.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902006.0,"time":326460208198.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460197000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460236460.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460210091.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460244579.0},"coordinates":[{"x":264.5022888183594,"y":768.1995239257812},{"x":497.79815673828125,"y":517.302734375}],"trace_id":12884902006.0}},"tts":1198931,"id":"0x300000076"},
-{"pid":27411,"tid":27428,"ts":326460244701,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1198931,"id":"0x300000076","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460244823,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460238017.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460243205.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902007.0,"time":326460220346.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460214000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460236491.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460222879.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460244579.0},"coordinates":[{"x":268.5598449707031,"y":767.3880615234375},{"x":495.1640930175781,"y":521.559814453125}],"trace_id":12884902007.0}},"tts":1199053,"id":"0x300000077"},
-{"pid":27411,"tid":27428,"ts":326460244823,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1199053,"id":"0x300000077","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460244853,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1199084},
-{"pid":27411,"tid":27428,"ts":326460244884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1199114,"id":"0xaf88cefafec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460255322,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1199267,"id":"0xaf88cde5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460255352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1199298},
-{"pid":27411,"tid":27428,"ts":326460255383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1199328,"id":"0xaf88cde6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460255383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1199328,"id":"0xaf88cde6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460255413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":0,"tts":1199359},
-{"pid":27411,"tid":27428,"ts":326460258466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1199450,"id":"0xaf88cde7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460258466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":1199450},
-{"pid":27411,"tid":27428,"ts":326460258466,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1199450},
-{"pid":27411,"tid":27428,"ts":326460258496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1199481,"id":"0xaf88cde0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460258527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1199511,"id":"0xaf88cde0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460258527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4456,"tdur":3968,"tts":1199511},
-{"pid":27411,"tid":27428,"ts":326460258588,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14381},"dur":4395,"tdur":3907,"tts":1199572},
-{"pid":27411,"tid":27428,"ts":326460258618,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4365,"tdur":3876,"tts":1199603},
-{"pid":27411,"tid":27428,"ts":326460261243,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1202258,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460261273,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":110},"dur":1679,"tdur":1190,"tts":1202258},
-{"pid":27411,"tid":27428,"ts":326460261304,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1312,"tdur":915,"tts":1202289},
-{"pid":27411,"tid":27428,"ts":326460262708,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460256238.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460261304.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902008.0,"time":326460236857.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460230000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460255444.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460238414.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460262616.0},"coordinates":[{"x":272.643310546875,"y":767.5},{"x":492.7140197753906,"y":525.2146606445312}],"trace_id":12884902008.0}},"tts":1203296,"id":"0x300000078"},
-{"pid":27411,"tid":27428,"ts":326460262708,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1203296,"id":"0x300000078","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460262738,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":214,"tdur":122,"tts":1203326},
-{"pid":27411,"tid":27428,"ts":326460262738,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1203326},
-{"pid":27411,"tid":27428,"ts":326460262860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1203387,"id":"0xaf88cefbfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460273482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1203540,"id":"0xaf88cde1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460273512,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1203570},
-{"pid":27411,"tid":27428,"ts":326460273543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1203601,"id":"0xaf88cde2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460273573,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1203631,"id":"0xaf88cde2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460273573,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1203631},
-{"pid":27411,"tid":27428,"ts":326460276656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1203753,"id":"0xaf88cde3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460276656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1203753},
-{"pid":27411,"tid":27428,"ts":326460276656,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1203753},
-{"pid":27411,"tid":27428,"ts":326460276686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1203784,"id":"0xaf88cdfcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460276717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1203815,"id":"0xaf88cdfcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460276717,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4212,"tdur":3845,"tts":1203815},
-{"pid":27411,"tid":27428,"ts":326460276778,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":1472},"dur":4151,"tdur":3784,"tts":1203876},
-{"pid":27411,"tid":27428,"ts":326460276778,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4151,"tdur":3754,"tts":1203876},
-{"pid":27411,"tid":27428,"ts":326460279372,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1206470,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460279372,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":111},"dur":1526,"tdur":1160,"tts":1206470},
-{"pid":27411,"tid":27428,"ts":326460279403,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1220,"tdur":824,"tts":1206531},
-{"pid":27411,"tid":27428,"ts":326460280715,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460274489.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460279403.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902009.0,"time":326460254254.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460247000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460273634.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460257001.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460280623.0},"coordinates":[{"x":276.7245788574219,"y":767.2550659179688},{"x":490.2652587890625,"y":528.4796752929688}],"trace_id":12884902009.0}},"tts":1207446,"id":"0x300000079"},
-{"pid":27411,"tid":27428,"ts":326460280745,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1207477,"id":"0x300000079","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460280806,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1207538},
-{"pid":27411,"tid":27474,"ts":326460235850,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77338,"id":"0xc4c1a00a"},
-{"pid":27411,"tid":27474,"ts":326460235850,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":77338},
-{"pid":27411,"tid":27474,"ts":326460235972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":77460,"id":"0xaf88cde9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460240123,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":77552},
-{"pid":27411,"tid":27474,"ts":326460240153,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":77582},
-{"pid":27411,"tid":27474,"ts":326460240153,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77582,"id":"0xba456002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460240184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":77613,"id":"0xaf88cdebf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460244976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":77735,"id":"0xaf88cefafec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460244976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":77765},
-{"pid":27411,"tid":27474,"ts":326460245006,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77765,"id":"0xc4c1a202"},
-{"pid":27411,"tid":27474,"ts":326460255139,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":77857},
-{"pid":27411,"tid":27474,"ts":326460255169,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":123,"tts":77887},
-{"pid":27411,"tid":27474,"ts":326460255200,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77918,"id":"0xccc4d306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460255200,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":77918,"id":"0xc4c1a30a"},
-{"pid":27411,"tid":27474,"ts":326460255261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":77979,"id":"0xaf88cde5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460258313,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":78101},
-{"pid":27411,"tid":27474,"ts":326460258343,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":78101},
-{"pid":27411,"tid":27474,"ts":326460258374,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":78132,"id":"0xba456402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460258374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78132,"id":"0xaf88cde7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460263044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":78254,"id":"0xaf88cefbfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460263074,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":78284},
-{"pid":27411,"tid":27474,"ts":326460263074,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":78284,"id":"0xc4c1a502"},
-{"pid":27411,"tid":27474,"ts":326460273298,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":183,"tts":78406},
-{"pid":27411,"tid":27474,"ts":326460273329,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":78467},
-{"pid":27411,"tid":27474,"ts":326460273359,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":78467,"id":"0xccc4d806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460273359,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":78467,"id":"0xc4c1a60a"},
-{"pid":27411,"tid":27474,"ts":326460273421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78528,"id":"0xaf88cde1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460276503,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":78650},
-{"pid":27411,"tid":27474,"ts":326460276534,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":62,"tts":78650},
-{"pid":27411,"tid":27474,"ts":326460276564,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":78681,"id":"0xba456802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460276564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78681,"id":"0xaf88cde3f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460280929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":78803,"id":"0xaf88cef4fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460280929,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":78803},
-{"pid":27411,"tid":27474,"ts":326460280929,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":78834,"id":"0xc4c1a802"},
-{"pid":27411,"tid":27474,"ts":326460303483,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":641,"tdur":366,"tts":78925},
-{"pid":27411,"tid":27474,"ts":326460303544,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":549,"tdur":275,"tts":78986},
-{"pid":27411,"tid":27474,"ts":326460303544,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79017,"id":"0xccc4dd06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460303605,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79047,"id":"0xc4c1a90a"},
-{"pid":27411,"tid":27474,"ts":326460303666,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79108,"id":"0xaf88cdfdf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460303666,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":79108},
-{"pid":27411,"tid":27474,"ts":326460310869,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":79383},
-{"pid":27411,"tid":27474,"ts":326460310900,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":79414},
-{"pid":27411,"tid":27474,"ts":326460310900,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79414,"id":"0xba456e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460310930,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79444,"id":"0xaf88cdfff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460316210,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":79566,"id":"0xaf88cef5fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460316210,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":79597},
-{"pid":27411,"tid":27474,"ts":326460316241,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79597,"id":"0xc4c1ab02"},
-{"pid":27411,"tid":27474,"ts":326460326923,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":122,"tts":79719},
-{"pid":27411,"tid":27474,"ts":326460326953,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":79749},
-{"pid":27411,"tid":27474,"ts":326460326984,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79749,"id":"0xccc4ee06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460326984,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79749,"id":"0xc4c1ac0a"},
-{"pid":27411,"tid":27474,"ts":326460327045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79810,"id":"0xaf88cdf9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460330249,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":123,"tdur":122,"tts":79902},
-{"pid":27411,"tid":27474,"ts":326460330280,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":79932},
-{"pid":27411,"tid":27474,"ts":326460330310,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":79963,"id":"0xba457302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460330310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79963,"id":"0xaf88cdfbf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460335377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":80115,"id":"0xaf88cef6fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460335377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":62,"tts":80115},
-{"pid":27411,"tid":27474,"ts":326460335407,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80146,"id":"0xc4c1ae02"},
-{"pid":27411,"tid":27474,"ts":326460343709,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":80238},
-{"pid":27411,"tid":27474,"ts":326460343739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":123,"tdur":122,"tts":80268},
-{"pid":27411,"tid":27474,"ts":326460343739,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80268,"id":"0xccc4f206","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460343770,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80299,"id":"0xc4c1af0a"},
-{"pid":27411,"tid":27474,"ts":326460343800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":80360,"id":"0xaf88cdf5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460280806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1207538,"id":"0xaf88cef4fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460280806,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1207538},
-{"pid":27411,"tid":27428,"ts":326460304124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1207813,"id":"0xaf88cdfdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460304155,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1207843},
-{"pid":27411,"tid":27428,"ts":326460304185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1207874,"id":"0xaf88cdfef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460304246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1207935,"id":"0xaf88cdfef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460304246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1207935},
-{"pid":27411,"tid":27428,"ts":326460310991,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1208057,"id":"0xaf88cdfff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460311022,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":1208057},
-{"pid":27411,"tid":27428,"ts":326460311022,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1208057},
-{"pid":27411,"tid":27428,"ts":326460311052,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1208087,"id":"0xaf88cdf8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460311083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1208118,"id":"0xaf88cdf8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460311083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5158,"tdur":4151,"tts":1208118},
-{"pid":27411,"tid":27428,"ts":326460311144,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4934},"dur":5066,"tdur":4059,"tts":1208179},
-{"pid":27411,"tid":27428,"ts":326460311174,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5036,"tdur":4029,"tts":1208209},
-{"pid":27411,"tid":27428,"ts":326460313799,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1210834,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460313799,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":112},"dur":2381,"tdur":1374,"tts":1210834},
-{"pid":27411,"tid":27428,"ts":326460313799,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1210834},
-{"pid":27411,"tid":27428,"ts":326460314196,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1648,"tdur":977,"tts":1210895},
-{"pid":27411,"tid":27428,"ts":326460315935,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460307664.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460313921.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902010.0,"time":326460270613.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460264000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460304307.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460273146.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460315844.0},"coordinates":[{"x":280.79827880859375,"y":767.0},{"x":487.821044921875,"y":531.7385864257812}],"trace_id":12884902010.0}},"tts":1211963,"id":"0x30000007a"},
-{"pid":27411,"tid":27428,"ts":326460315966,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1211994,"id":"0x30000007a","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460316088,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460307664.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460313921.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902011.0,"time":326460286972.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460280000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460304338.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460289016.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460315844.0},"coordinates":[{"x":284.88623046875,"y":767.0},{"x":485.3682556152344,"y":535.0089721679688}],"trace_id":12884902011.0}},"tts":1212116,"id":"0x30000007b"},
-{"pid":27411,"tid":27428,"ts":326460316088,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1212116,"id":"0x30000007b","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460316119,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1212147},
-{"pid":27411,"tid":27428,"ts":326460316119,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1212147,"id":"0xaf88cef5fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460327106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1212299,"id":"0xaf88cdf9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460327136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1212330},
-{"pid":27411,"tid":27428,"ts":326460327136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1212330,"id":"0xaf88cdfaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460327167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1212360,"id":"0xaf88cdfaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460327197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1212391},
-{"pid":27411,"tid":27428,"ts":326460330402,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1212482,"id":"0xaf88cdfbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460330402,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1212482},
-{"pid":27411,"tid":27428,"ts":326460330402,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1212482},
-{"pid":27411,"tid":27428,"ts":326460330433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1212513,"id":"0xaf88cdf4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460330463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1212543,"id":"0xaf88cdf4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460330463,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4914,"tdur":3846,"tts":1212543},{"pid":27443,"tid":27477,"ts":326458225473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":247733,"id":"0xaf88ab3ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458233622,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458233},"tts":247825,"id":"0xaf88abe5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458233652,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":489,"tdur":336,"tts":247855},
-{"pid":27443,"tid":27477,"ts":326458233652,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":489,"tdur":336,"tts":247855},
-{"pid":27443,"tid":27477,"ts":326458233652,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":458,"tdur":306,"tts":247855},
-{"pid":27443,"tid":27477,"ts":326458233683,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":275,"tts":247886},
-{"pid":27443,"tid":27477,"ts":326458233683,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":92,"tts":247886},
-{"pid":27443,"tid":27477,"ts":326458233958,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":248008},
-{"pid":27443,"tid":27477,"ts":326458233958,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":248008},
-{"pid":27443,"tid":27477,"ts":326458233958,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":248008},
-{"pid":27443,"tid":27477,"ts":326458233988,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":91,"tts":248039},
-{"pid":27443,"tid":27477,"ts":326458233988,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":248039,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458234019,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":248069},
-{"pid":27443,"tid":27477,"ts":326458234019,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":248069},
-{"pid":27443,"tid":27477,"ts":326458234080,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":248130,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458234110,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":248161,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458234110,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":248161,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458234507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248344,"id":"0xaf88abe0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458234507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":248344},
-{"pid":27443,"tid":27477,"ts":326458234538,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":248374},
-{"pid":27443,"tid":27477,"ts":326458234538,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":248374,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458234538,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":0,"tts":248405},
-{"pid":27443,"tid":27477,"ts":326458234568,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":248405,"id":"0xaf88abe3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458234599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248435,"id":"0xaf88abe1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458234599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":248435},
-{"pid":27443,"tid":27477,"ts":326458234599,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":248435},
-{"pid":27443,"tid":27477,"ts":326458234629,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":248466,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458234629,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":248466},
-{"pid":27443,"tid":27477,"ts":326458234660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248496,"id":"0xaf88abe2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458234660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":248496},
-{"pid":27443,"tid":27477,"ts":326458234660,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":248496},
-{"pid":27443,"tid":27477,"ts":326458234660,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":248496,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458234690,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":248527},
-{"pid":27443,"tid":27477,"ts":326458234690,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":248527,"id":"0xaf88abfcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458234721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248557,"id":"0xaf88abe3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458234721,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":248557},
-{"pid":27443,"tid":27477,"ts":326458234721,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":123,"tts":248557},
-{"pid":27443,"tid":27477,"ts":326458234721,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":248588},
-{"pid":27443,"tid":27477,"ts":326458234751,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":248588},
-{"pid":27443,"tid":27477,"ts":326458234751,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":248588},
-{"pid":27443,"tid":27477,"ts":326458234782,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":248618},
-{"pid":27443,"tid":27477,"ts":326458234843,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":248680},
-{"pid":27443,"tid":27477,"ts":326458234843,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":248680},
-{"pid":27443,"tid":27477,"ts":326458234873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248710,"id":"0xaf88abfcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458234873,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":946,"tdur":122,"tts":248710},
-{"pid":27443,"tid":27477,"ts":326458234873,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":946,"tdur":122,"tts":248710},
-{"pid":27443,"tid":27477,"ts":326458234904,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":248741},
-{"pid":27443,"tid":27477,"ts":326458234904,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":248741},
-{"pid":27443,"tid":27477,"ts":326458234904,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":885,"tdur":61,"tts":248741},
-{"pid":27443,"tid":27477,"ts":326458234934,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":248771},
-{"pid":27443,"tid":27477,"ts":326458235789,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":248802},
-{"pid":27443,"tid":27477,"ts":326458235789,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":248802},
-{"pid":27443,"tid":27477,"ts":326458235819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248863,"id":"0xaf88abfdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458235850,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":122,"tts":248863},
-{"pid":27443,"tid":27477,"ts":326458235850,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":275,"tdur":122,"tts":248863},
-{"pid":27443,"tid":27477,"ts":326458235880,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":248893,"id":"0x30000001a"},
-{"pid":27443,"tid":27477,"ts":326458235880,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":248893},
-{"pid":27443,"tid":27477,"ts":326458235911,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":248924,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458236094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":248954,"id":"0xaf88ab3ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458236125,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":248985,"id":"0xaf88a8dbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458236155,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":249015,"id":"0xaf88abfef182217a"},
-{"pid":27443,"tid":27477,"ts":326458236155,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":249015},
-{"pid":27443,"tid":27477,"ts":326458236186,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458217545.0,"frame_time_us":326458233544.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":249046},
-{"pid":27443,"tid":27477,"ts":326458236216,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458217545.0,"frame_time_us":326458233544.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":249076},
-{"pid":27443,"tid":27477,"ts":326458236247,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458250210},"dur":61,"tdur":0,"tts":249137},
-{"pid":27443,"tid":27477,"ts":326458236277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":249137,"id":"0xaf88abfff182217a"},
-{"pid":27443,"tid":27477,"ts":326458242778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":249290,"id":"0xaf88abf8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458242778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1373,"tts":249290},
-{"pid":27443,"tid":27477,"ts":326458242778,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":1373,"tts":249290},
-{"pid":27443,"tid":27477,"ts":326458242809,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":249320},
-{"pid":27443,"tid":27477,"ts":326458242809,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1342,"tdur":1343,"tts":249320},
-{"pid":27443,"tid":27477,"ts":326458242809,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1342,"tdur":1312,"tts":249351},
-{"pid":27443,"tid":27477,"ts":326458242839,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":249351},
-{"pid":27443,"tid":27477,"ts":326458242839,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":249351},
-{"pid":27443,"tid":27477,"ts":326458242870,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":249381,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458242870,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":249381},
-{"pid":27443,"tid":27477,"ts":326458242900,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":249412},
-{"pid":27443,"tid":27477,"ts":326458243358,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":793,"tdur":793,"tts":249870},
-{"pid":27443,"tid":27477,"ts":326458243358,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":62},"dur":244,"tdur":244,"tts":249870},
-{"pid":27443,"tid":27477,"ts":326458243602,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":62},"dur":61,"tdur":31,"tts":250144},
-{"pid":27443,"tid":27477,"ts":326458243663,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":62},"tts":250175},
-{"pid":27443,"tid":27477,"ts":326458243785,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":250328},
-{"pid":27443,"tid":27477,"ts":326458243816,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":250328},
-{"pid":27443,"tid":27477,"ts":326458243816,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":335,"tts":250328},
-{"pid":27443,"tid":27477,"ts":326458243846,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":250358},
-{"pid":27443,"tid":27477,"ts":326458243968,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":250480},
-{"pid":27443,"tid":27477,"ts":326458243968,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":250480},
-{"pid":27443,"tid":27477,"ts":326458243999,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":250511},
-{"pid":27443,"tid":27477,"ts":326458243999,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":250511},
-{"pid":27443,"tid":27477,"ts":326458243999,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":250511,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458244029,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":250541},
-{"pid":27443,"tid":27477,"ts":326458244029,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":250541},
-{"pid":27443,"tid":27477,"ts":326458244090,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":250602,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458244121,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":250633,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458244121,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":250633,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458244396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250724,"id":"0xaf88abf9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458244426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":250755},
-{"pid":27443,"tid":27477,"ts":326458244426,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":250755},
-{"pid":27443,"tid":27477,"ts":326458244457,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":250785,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458244457,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":250785},
-{"pid":27443,"tid":27477,"ts":326458244457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":250816,"id":"0xaf88abf5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458244487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250816,"id":"0xaf88abfaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458244518,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":250846},
-{"pid":27443,"tid":27477,"ts":326458244518,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":250846},
-{"pid":27443,"tid":27477,"ts":326458244518,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":250846,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458244548,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":250877},
-{"pid":27443,"tid":27477,"ts":326458244548,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":250877,"id":"0xaf88abf6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458244579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250907,"id":"0xaf88abfbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458244579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":250907},
-{"pid":27443,"tid":27477,"ts":326458244579,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":250907},
-{"pid":27443,"tid":27477,"ts":326458244579,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":250907,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458244609,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":250938},
-{"pid":27443,"tid":27477,"ts":326458244640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250969,"id":"0xaf88abf4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458244640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":250969},
-{"pid":27443,"tid":27477,"ts":326458244640,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":30,"tts":250969},
-{"pid":27443,"tid":27477,"ts":326458244670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250999,"id":"0xaf88abf5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458244670,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1221,"tdur":1221,"tts":250999},
-{"pid":27443,"tid":27477,"ts":326458244701,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1190,"tdur":1190,"tts":251030},
-{"pid":27443,"tid":27477,"ts":326458244701,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":251030},
-{"pid":27443,"tid":27477,"ts":326458244701,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":251030},
-{"pid":27443,"tid":27477,"ts":326458244731,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":251060},
-{"pid":27443,"tid":27477,"ts":326458244731,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":251060},
-{"pid":27443,"tid":27477,"ts":326458244823,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1038,"tdur":1037,"tts":251152},
-{"pid":27443,"tid":27477,"ts":326458244823,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1038,"tdur":1037,"tts":251152},
-{"pid":27443,"tid":27477,"ts":326458244823,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":885,"tdur":885,"tts":251152},
-{"pid":27443,"tid":27477,"ts":326458244853,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":251182,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27459,"ts":326458237498,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5865099},
-{"pid":27443,"tid":27459,"ts":326458237620,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5865222},
-{"pid":27443,"tid":27459,"ts":326458237712,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5865313},
-{"pid":27443,"tid":27459,"ts":326458237712,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5865313},
-{"pid":27443,"tid":27459,"ts":326458237803,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5865435},
-{"pid":27443,"tid":27459,"ts":326458237956,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5865557},
-{"pid":27443,"tid":27459,"ts":326458238719,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5866320},
-{"pid":27443,"tid":27459,"ts":326458238780,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":10,"frame":"0x78c60000"}},"dur":152,"tdur":122,"tts":5866412},
-{"pid":27443,"tid":27459,"ts":326458238871,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":5866473},
-{"pid":27443,"tid":27459,"ts":326458238871,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5866473},
-{"pid":27443,"tid":27459,"ts":326458238902,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5866503},
-{"pid":27443,"tid":27459,"ts":326458238963,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3235,"tdur":2564,"tts":5866564},
-{"pid":27443,"tid":27459,"ts":326458238963,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5866595},
-{"pid":27443,"tid":27459,"ts":326458238994,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5866595},
-{"pid":27443,"tid":27459,"ts":326458239024,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5866625},
-{"pid":27443,"tid":27459,"ts":326458239879,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5867083},
-{"pid":27443,"tid":27459,"ts":326458239909,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5867114},
-{"pid":27443,"tid":27459,"ts":326458239940,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2258,"tdur":1984,"tts":5867144},
-{"pid":27443,"tid":27459,"ts":326458239940,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2106,"tdur":1832,"tts":5867144},
-{"pid":27443,"tid":27459,"ts":326458239970,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":580,"tdur":305,"tts":5867175},
-{"pid":27443,"tid":27459,"ts":326458240550,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":5867480},
-{"pid":27443,"tid":27459,"ts":326458240794,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":5867724},
-{"pid":27443,"tid":27459,"ts":326458240886,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":5867816},
-{"pid":27443,"tid":27459,"ts":326458240916,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1130,"tdur":1130,"tts":5867846},
-{"pid":27443,"tid":27459,"ts":326458242076,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":5869006},
-{"pid":27443,"tid":27459,"ts":326458242107,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":91,"tts":5869037},
-{"pid":27443,"tid":27459,"ts":326458242229,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":62},"dur":427,"tdur":427,"tts":5869159},
-{"pid":27443,"tid":27459,"ts":326458242229,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":5869159},
-{"pid":27443,"tid":27459,"ts":326458242473,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":30,"tdur":30,"tts":5869403},
-{"pid":27443,"tid":27459,"ts":326458242503,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":31,"tdur":31,"tts":5869433},
-{"pid":27443,"tid":27459,"ts":326458242534,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":0,"tdur":0,"tts":5869464},
-{"pid":27443,"tid":27459,"ts":326458242564,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":0,"tdur":0,"tts":5869494},
-{"pid":27443,"tid":27459,"ts":326458242564,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":31,"tdur":0,"tts":5869494},
-{"pid":27443,"tid":27459,"ts":326458242595,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":0,"tdur":0,"tts":5869525},
-{"pid":27443,"tid":27459,"ts":326458242595,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":30,"tdur":30,"tts":5869525},
-{"pid":27443,"tid":27459,"ts":326458242625,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":0,"tdur":0,"tts":5869555},
-{"pid":27443,"tid":27459,"ts":326458242625,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":62},"dur":31,"tdur":31,"tts":5869555},
-{"pid":27443,"tid":27459,"ts":326458242656,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5869586,"id":"0x300000017"},
-{"pid":27443,"tid":27459,"ts":326458242687,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5869616,"id":"0x300000018"},
-{"pid":27443,"tid":27459,"ts":326458242687,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":701,"tdur":92,"tts":5869616},
-{"pid":27443,"tid":27459,"ts":326458242717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5869647,"id":"0xaf88abf8f182217a"},
-{"pid":27443,"tid":27459,"ts":326458243419,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5869769},
-{"pid":27443,"tid":27459,"ts":326458243480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5869830,"id":"0xaf88a8d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458243480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":5869830},
-{"pid":27443,"tid":27459,"ts":326458243511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5869861,"id":"0xaf88ab3ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458243511,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":5869861},
-{"pid":27443,"tid":27459,"ts":326458243511,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":5869891},
-{"pid":27443,"tid":27459,"ts":326458243572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5869922,"id":"0xaf88a8daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458243602,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1496,"tdur":1099,"tts":5869952},
-{"pid":27443,"tid":27459,"ts":326458243602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5869952,"id":"0xaf88a8d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458243633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5869983,"id":"0xaf88ab3ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458243633,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1465,"tdur":1037,"tts":5869983},
-{"pid":27443,"tid":27459,"ts":326458243694,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1373,"tdur":976,"tts":5870044},
-{"pid":27443,"tid":27459,"ts":326458243694,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5870044,"id":"0x30000001a"},
-{"pid":27443,"tid":27459,"ts":326458243724,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":5870074},
-{"pid":27443,"tid":27459,"ts":326458243755,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":793,"tts":5870105},
-{"pid":27443,"tid":27459,"ts":326458243816,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5870166},
-{"pid":27443,"tid":27459,"ts":326458243846,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5870196},
-{"pid":27443,"tid":27459,"ts":326458243877,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5870227},
-{"pid":27443,"tid":27459,"ts":326458243907,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5870257},
-{"pid":27443,"tid":27459,"ts":326458243938,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":5870288},
-{"pid":27443,"tid":27459,"ts":326458244090,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":396,"tts":5870441},
-{"pid":27443,"tid":27459,"ts":326458244090,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5870441},
-{"pid":27443,"tid":27459,"ts":326458244396,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":11,"frame":"0x78c60000"}},"tts":5870746,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458244335,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":338104},
-{"pid":27443,"tid":27471,"ts":326458244335,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":338104},
-{"pid":27443,"tid":27471,"ts":326458244365,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338135,"id":"0xaf88abfbf182217a"},
-{"pid":27443,"tid":27471,"ts":326458263959,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":338165},
-{"pid":27443,"tid":27471,"ts":326458263990,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":338196},
-{"pid":27443,"tid":27471,"ts":326458263990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338196,"id":"0xaf88ab8df182217a"},
-{"pid":27443,"tid":27471,"ts":326458264020,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":338226},
-{"pid":27443,"tid":27471,"ts":326458264051,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338257},
-{"pid":27443,"tid":27471,"ts":326458264051,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338257,"id":"0xaf88ab8ef182217a"},
-{"pid":27443,"tid":27471,"ts":326458264051,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":338257},
-{"pid":27443,"tid":27471,"ts":326458264081,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338287},
-{"pid":27443,"tid":27471,"ts":326458264081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338287,"id":"0xaf88ab8ff182217a"},
-{"pid":27443,"tid":27496,"ts":326458272352,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":580,"tdur":580,"tts":57042},
-{"pid":27443,"tid":27496,"ts":326458272352,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57042},
-{"pid":27443,"tid":27496,"ts":326458272902,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57622},
-{"pid":27443,"tid":27471,"ts":326458284164,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":338287},
-{"pid":27443,"tid":27471,"ts":326458284194,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":338318},
-{"pid":27443,"tid":27471,"ts":326458284225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338348,"id":"0xaf88ab80f182217a"},
-{"pid":27443,"tid":27471,"ts":326458284255,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":338379},
-{"pid":27443,"tid":27471,"ts":326458284255,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":338379},
-{"pid":27443,"tid":27471,"ts":326458284255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338379,"id":"0xaf88ab81f182217a"},
-{"pid":27443,"tid":27471,"ts":326458284286,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":338409},
-{"pid":27443,"tid":27471,"ts":326458284286,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":338409},
-{"pid":27443,"tid":27471,"ts":326458284286,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338409,"id":"0xaf88ab82f182217a"},
-{"pid":27443,"tid":27471,"ts":326458290695,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":122,"tts":338440},
-{"pid":27443,"tid":27471,"ts":326458290726,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":152,"tdur":92,"tts":338470},
-{"pid":27443,"tid":27471,"ts":326458290726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338470,"id":"0xaf88ab98f182217a"},
-{"pid":27443,"tid":27469,"ts":326458290787,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":30,"tts":277491},
-{"pid":27443,"tid":27469,"ts":326458290787,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":30,"tts":277491},
-{"pid":27443,"tid":27471,"ts":326458290878,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":0,"tts":338593},
-{"pid":27443,"tid":27471,"ts":326458290909,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338593},
-{"pid":27443,"tid":27471,"ts":326458290909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338593,"id":"0xaf88ab99f182217a"},
-{"pid":27443,"tid":27469,"ts":326458290939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277491,"id":"0xaf88ab9af182217a"},
-{"pid":27443,"tid":27471,"ts":326458315111,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":338654},
-{"pid":27443,"tid":27471,"ts":326458315142,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":338684},
-{"pid":27443,"tid":27471,"ts":326458315142,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338715,"id":"0xaf88abadf182217a"},
-{"pid":27443,"tid":27471,"ts":326458315172,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":338715},
-{"pid":27443,"tid":27471,"ts":326458315172,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":338715},
-{"pid":27443,"tid":27471,"ts":326458315203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338745,"id":"0xaf88abaef182217a"},
-{"pid":27443,"tid":27471,"ts":326458315203,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":338745},
-{"pid":27443,"tid":27471,"ts":326458315233,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338776},
-{"pid":27443,"tid":27471,"ts":326458315233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338776,"id":"0xaf88abaff182217a"},
-{"pid":27443,"tid":27471,"ts":326458334064,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":62,"tdur":61,"tts":338806},
-{"pid":27443,"tid":27471,"ts":326458334095,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":338837},
-{"pid":27443,"tid":27471,"ts":326458334126,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338867,"id":"0xaf88aba0f182217a"},
-{"pid":27443,"tid":27471,"ts":326458334126,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":338867},
-{"pid":27443,"tid":27471,"ts":326458334156,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338898},
-{"pid":27443,"tid":27471,"ts":326458334156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338898,"id":"0xaf88aba1f182217a"},
-{"pid":27443,"tid":27471,"ts":326458334156,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":338898},
-{"pid":27443,"tid":27471,"ts":326458334187,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":338928},
-{"pid":27443,"tid":27471,"ts":326458334187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338928,"id":"0xaf88aba2f182217a"},
-{"pid":27443,"tid":27471,"ts":326458339314,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":338989},
-{"pid":27443,"tid":27471,"ts":326458339345,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":339020},
-{"pid":27443,"tid":27471,"ts":326458339345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339020,"id":"0xaf88abb9f182217a"},
-{"pid":27443,"tid":27471,"ts":326458339375,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":339050},
-{"pid":27443,"tid":27471,"ts":326458339375,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":339050},
-{"pid":27443,"tid":27471,"ts":326458339375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339050,"id":"0xaf88abbaf182217a"},
-{"pid":27443,"tid":27471,"ts":326458339406,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":339081},
-{"pid":27443,"tid":27471,"ts":326458339406,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":339081},
-{"pid":27443,"tid":27471,"ts":326458339406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339081,"id":"0xaf88abbbf182217a"},
-{"pid":27443,"tid":27546,"ts":326458343526,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":244,"tdur":244,"tts":23989},
-{"pid":27443,"tid":27546,"ts":326458343556,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":24019},
-{"pid":27443,"tid":27546,"ts":326458343770,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":24233},
-{"pid":27443,"tid":27498,"ts":326458348897,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":275,"tts":39493},
-{"pid":27443,"tid":27459,"ts":326458244426,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":5870776},
-{"pid":27443,"tid":27459,"ts":326458244457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5870807,"id":"0xaf88abf4f182217a"},
-{"pid":27443,"tid":27459,"ts":326458244487,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5870837},
-{"pid":27443,"tid":27459,"ts":326458244548,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":519,"tdur":91,"tts":5870929},
-{"pid":27443,"tid":27459,"ts":326458244579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5870929,"id":"0xaf88add7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458245128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5871081,"id":"0xaf88a8dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458245128,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5871081},
-{"pid":27443,"tid":27459,"ts":326458245159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5871112,"id":"0xaf88a8d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458245159,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":5871143},
-{"pid":27443,"tid":27459,"ts":326458245861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5871234,"id":"0xaf88a8d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458245861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":17335,"tdur":10377,"tts":5871234},
-{"pid":27443,"tid":27459,"ts":326458245891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5871265,"id":"0xaf88a8d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458245891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5871265,"id":"0xaf88ab38f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458245891,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":17275,"tdur":10315,"tts":5871265},
-{"pid":27443,"tid":27459,"ts":326458245922,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":63},"tts":5871295},
-{"pid":27443,"tid":27459,"ts":326458245922,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5871295},
-{"pid":27443,"tid":27459,"ts":326458245983,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12177,"tdur":6776,"tts":5871356},
-{"pid":27443,"tid":27459,"ts":326458245983,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":5871356},
-{"pid":27443,"tid":27459,"ts":326458246044,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":11,"frame":"0x78c60000"}},"dur":12086,"tdur":6684,"tts":5871417},
-{"pid":27443,"tid":27459,"ts":326458246105,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":12025,"tdur":6623,"tts":5871478},
-{"pid":27443,"tid":27459,"ts":326458246135,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5871509},
-{"pid":27443,"tid":27459,"ts":326458246318,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5871692},
-{"pid":27443,"tid":27459,"ts":326458246349,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":31,"tts":5871722},
-{"pid":27443,"tid":27459,"ts":326458258099,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5878071},
-{"pid":27443,"tid":27459,"ts":326458258160,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3815,"tdur":2838,"tts":5878132},
-{"pid":27443,"tid":27459,"ts":326458258191,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5878193},
-{"pid":27443,"tid":27459,"ts":326458258221,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5878193},
-{"pid":27443,"tid":27459,"ts":326458258252,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5878223},
-{"pid":27443,"tid":27459,"ts":326458258801,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5878681},
-{"pid":27443,"tid":27459,"ts":326458258862,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5878742},
-{"pid":27443,"tid":27459,"ts":326458258893,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3052,"tdur":2167,"tts":5878773},
-{"pid":27443,"tid":27459,"ts":326458258893,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2899,"tdur":2014,"tts":5878773},
-{"pid":27443,"tid":27459,"ts":326458258923,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":397,"tdur":397,"tts":5878803},
-{"pid":27443,"tid":27459,"ts":326458259320,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":5879200},
-{"pid":27443,"tid":27459,"ts":326458259564,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":367,"tdur":153,"tts":5879444},
-{"pid":27443,"tid":27459,"ts":326458259931,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5879597},
-{"pid":27443,"tid":27459,"ts":326458259931,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1861,"tdur":1190,"tts":5879597},
-{"pid":27443,"tid":27459,"ts":326458261823,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":5880817},
-{"pid":27443,"tid":27459,"ts":326458261853,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":5880848},
-{"pid":27443,"tid":27459,"ts":326458261975,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":63},"dur":428,"tdur":427,"tts":5880970},
-{"pid":27443,"tid":27459,"ts":326458261975,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":428,"tdur":427,"tts":5880970},
-{"pid":27443,"tid":27459,"ts":326458262250,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":0,"tdur":0,"tts":5881245},
-{"pid":27443,"tid":27459,"ts":326458262281,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":0,"tdur":0,"tts":5881275},
-{"pid":27443,"tid":27459,"ts":326458262281,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":30,"tdur":31,"tts":5881275},
-{"pid":27443,"tid":27459,"ts":326458262311,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":0,"tdur":0,"tts":5881306},
-{"pid":27443,"tid":27459,"ts":326458262311,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":31,"tdur":30,"tts":5881306},
-{"pid":27443,"tid":27459,"ts":326458262342,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":0,"tdur":0,"tts":5881336},
-{"pid":27443,"tid":27459,"ts":326458262342,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":30,"tdur":0,"tts":5881367},
-{"pid":27443,"tid":27459,"ts":326458262372,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":31,"tdur":0,"tts":5881367},
-{"pid":27443,"tid":27459,"ts":326458262403,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":63},"dur":0,"tdur":0,"tts":5881397},
-{"pid":27443,"tid":27459,"ts":326458262433,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5881428,"id":"0x30000001a"},
-{"pid":27443,"tid":27459,"ts":326458262433,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":672,"tdur":91,"tts":5881428},
-{"pid":27443,"tid":27459,"ts":326458262464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5881458,"id":"0xaf88ab8cf182217a"},
-{"pid":27443,"tid":27459,"ts":326458263166,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5881580},
-{"pid":27443,"tid":27459,"ts":326458263227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5881642,"id":"0xaf88a8d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458263227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":5881642},
-{"pid":27443,"tid":27459,"ts":326458263257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5881672,"id":"0xaf88a8d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458263257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5881672,"id":"0xaf88ab39f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458263257,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":0,"tts":5881703},
-{"pid":27443,"tid":27459,"ts":326458263288,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5881703},
-{"pid":27443,"tid":27459,"ts":326458263318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5881733,"id":"0xaf88a8d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458263349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5881764},
-{"pid":27443,"tid":27459,"ts":326458263349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5881764,"id":"0xaf88ab3af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458263349,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":5881764},
-{"pid":27443,"tid":27477,"ts":326458244914,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":251243},
-{"pid":27443,"tid":27477,"ts":326458244945,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251274},
-{"pid":27443,"tid":27477,"ts":326458244976,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251304},
-{"pid":27443,"tid":27477,"ts":326458244976,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":251335},
-{"pid":27443,"tid":27477,"ts":326458245006,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":251335},
-{"pid":27443,"tid":27477,"ts":326458245037,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251365},
-{"pid":27443,"tid":27477,"ts":326458245037,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":251365},
-{"pid":27443,"tid":27477,"ts":326458245067,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251396},
-{"pid":27443,"tid":27477,"ts":326458245098,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251426},
-{"pid":27443,"tid":27477,"ts":326458245098,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251426},
-{"pid":27443,"tid":27477,"ts":326458245128,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251457},
-{"pid":27443,"tid":27477,"ts":326458245128,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":251457},
-{"pid":27443,"tid":27477,"ts":326458245159,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251487},
-{"pid":27443,"tid":27477,"ts":326458245189,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251518},
-{"pid":27443,"tid":27477,"ts":326458245189,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":251518},
-{"pid":27443,"tid":27477,"ts":326458245220,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251548},
-{"pid":27443,"tid":27477,"ts":326458245220,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":251579},
-{"pid":27443,"tid":27477,"ts":326458245250,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":251579},
-{"pid":27443,"tid":27477,"ts":326458245281,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251609},
-{"pid":27443,"tid":27477,"ts":326458245281,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":251640},
-{"pid":27443,"tid":27477,"ts":326458245311,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":251640},
-{"pid":27443,"tid":27477,"ts":326458245342,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251670},
-{"pid":27443,"tid":27477,"ts":326458245342,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":251670},
-{"pid":27443,"tid":27477,"ts":326458245372,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251701},
-{"pid":27443,"tid":27477,"ts":326458245403,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251732},
-{"pid":27443,"tid":27477,"ts":326458245403,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251732},
-{"pid":27443,"tid":27477,"ts":326458245494,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251823},
-{"pid":27443,"tid":27477,"ts":326458245494,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":251823},
-{"pid":27443,"tid":27477,"ts":326458245525,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251854},
-{"pid":27443,"tid":27477,"ts":326458245555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251884},
-{"pid":27443,"tid":27477,"ts":326458245555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":251884},
-{"pid":27443,"tid":27477,"ts":326458245586,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":251915},
-{"pid":27443,"tid":27477,"ts":326458245586,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":251915},
-{"pid":27443,"tid":27477,"ts":326458245647,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":251976},
-{"pid":27443,"tid":27477,"ts":326458245677,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":252006},
-{"pid":27443,"tid":27477,"ts":326458245677,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":252006},
-{"pid":27443,"tid":27477,"ts":326458245708,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":252037},
-{"pid":27443,"tid":27477,"ts":326458245739,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":63},"tts":252067},
-{"pid":27443,"tid":27477,"ts":326458245769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":252098,"id":"0xaf88ab38f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458245800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":252128,"id":"0xaf88a8d5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458245830,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":252159},
-{"pid":27443,"tid":27477,"ts":326458245830,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":0,"tts":252189},
-{"pid":27443,"tid":27477,"ts":326458245861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":252189,"id":"0xaf88abf7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458245891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":252220,"id":"0xaf88abf6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458245891,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":122,"tts":252220},
-{"pid":27443,"tid":27477,"ts":326458245891,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":92,"tts":252250},
-{"pid":27443,"tid":27477,"ts":326458245922,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":252250},
-{"pid":27443,"tid":27477,"ts":326458245922,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":252250},
-{"pid":27443,"tid":27477,"ts":326458245922,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":252281},
-{"pid":27443,"tid":27477,"ts":326458245952,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":252281},
-{"pid":27443,"tid":27477,"ts":326458246013,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":252342},
-{"pid":27443,"tid":27477,"ts":326458246013,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":252342},
-{"pid":27443,"tid":27477,"ts":326458246044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":252372,"id":"0xaf88abf7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458246044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1648,"tdur":1343,"tts":252372},
-{"pid":27443,"tid":27477,"ts":326458246044,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1648,"tdur":1343,"tts":252372},
-{"pid":27443,"tid":27477,"ts":326458246074,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":252403},
-{"pid":27443,"tid":27477,"ts":326458246074,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1618,"tdur":1312,"tts":252403},
-{"pid":27443,"tid":27477,"ts":326458246105,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":62},"dur":763,"tdur":763,"tts":252434},
-{"pid":27443,"tid":27477,"ts":326458246105,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":62},"dur":244,"tdur":214,"tts":252464},
-{"pid":27443,"tid":27477,"ts":326458246349,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":62},"dur":30,"tdur":30,"tts":252678},
-{"pid":27443,"tid":27477,"ts":326458246379,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":62},"tts":252708},
-{"pid":27443,"tid":27477,"ts":326458246502,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":252830},
-{"pid":27443,"tid":27477,"ts":326458246532,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":252861},
-{"pid":27443,"tid":27477,"ts":326458246532,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":252861},
-{"pid":27443,"tid":27477,"ts":326458246532,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":252861},
-{"pid":27443,"tid":27477,"ts":326458246563,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":252891,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458246624,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":252952},
-{"pid":27443,"tid":27477,"ts":326458246837,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":253197},
-{"pid":27443,"tid":27477,"ts":326458246868,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":549,"tdur":244,"tts":253197},
-{"pid":27443,"tid":27477,"ts":326458246898,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":253227},
-{"pid":27443,"tid":27477,"ts":326458246898,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":489,"tdur":183,"tts":253227},
-{"pid":27443,"tid":27477,"ts":326458246959,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11990},"dur":31,"tdur":31,"tts":253288},
-{"pid":27443,"tid":27477,"ts":326458246990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253349,"id":"0xaf88add0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458247417,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":253441,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458247448,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":253471,"id":"0x300000017"},
-{"pid":27443,"tid":27477,"ts":326458247448,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":253502,"id":"0x300000018"},
-{"pid":27443,"tid":27477,"ts":326458247478,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":253502},
-{"pid":27443,"tid":27477,"ts":326458247570,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253593,"id":"0xaf88add1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458247631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":253685,"id":"0xaf88ab39f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458247661,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253685,"id":"0xaf88a8d7f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458253613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":253776,"id":"0xaf88abf0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458253613,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":253776},
-{"pid":27443,"tid":27477,"ts":326458253643,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":253837},
-{"pid":27443,"tid":27477,"ts":326458253674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":253837,"id":"0xaf88ab3af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458253704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458250},"tts":253868,"id":"0xaf88abfff182217a"},
-{"pid":27443,"tid":27477,"ts":326458253735,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":253898},
-{"pid":27443,"tid":27477,"ts":326458254193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":253960,"id":"0xaf88abf1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458254193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":253960},
-{"pid":27443,"tid":27477,"ts":326458254193,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":253960},
-{"pid":27443,"tid":27477,"ts":326458254223,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":253990,"id":"0x30000001b"},
-{"pid":27443,"tid":27477,"ts":326458254223,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":253990},
-{"pid":27443,"tid":27477,"ts":326458254254,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":254021,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458254284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":254051,"id":"0xaf88ab3bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458254315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":254082,"id":"0xaf88abf2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458254315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":254082},
-{"pid":27443,"tid":27477,"ts":326458254345,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458234221.0,"frame_time_us":326458250220.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":254112},
-{"pid":27443,"tid":27477,"ts":326458254376,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458234221.0,"frame_time_us":326458250220.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":254143},
-{"pid":27443,"tid":27477,"ts":326458254437,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458266886},"dur":30,"tdur":30,"tts":254204},
-{"pid":27443,"tid":27477,"ts":326458254437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":254204,"id":"0xaf88abf3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458262525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":254326,"id":"0xaf88ab8cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458262525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1373,"tts":254326},
-{"pid":27443,"tid":27477,"ts":326458262525,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":1373,"tts":254326},
-{"pid":27443,"tid":27477,"ts":326458262555,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":254356},
-{"pid":27443,"tid":27477,"ts":326458262555,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":254356},
-{"pid":27443,"tid":27477,"ts":326458262555,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1313,"tdur":1313,"tts":254356},
-{"pid":27443,"tid":27477,"ts":326458262586,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":254387},
-{"pid":27443,"tid":27477,"ts":326458262586,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":254387},
-{"pid":27443,"tid":27477,"ts":326458262586,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":254417,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458262616,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":254417},
-{"pid":27443,"tid":27477,"ts":326458262647,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":254448},
-{"pid":27443,"tid":27477,"ts":326458263105,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":254906},
-{"pid":27443,"tid":27477,"ts":326458263105,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":63},"dur":244,"tdur":244,"tts":254906},
-{"pid":27443,"tid":27477,"ts":326458263379,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":63},"dur":31,"tdur":31,"tts":255180},
-{"pid":27443,"tid":27477,"ts":326458263410,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":63},"tts":255211},
-{"pid":27443,"tid":27477,"ts":326458263562,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":255363},
-{"pid":27443,"tid":27477,"ts":326458263562,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":306,"tdur":306,"tts":255363},
-{"pid":27443,"tid":27477,"ts":326458263562,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":123,"tts":255363},
-{"pid":27443,"tid":27477,"ts":326458263685,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":255486},
-{"pid":27443,"tid":27477,"ts":326458263715,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":255516},
-{"pid":27443,"tid":27477,"ts":326458263715,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":255516},
-{"pid":27443,"tid":27477,"ts":326458263715,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":255516},
-{"pid":27443,"tid":27477,"ts":326458263715,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":255516,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458263746,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":255547},
-{"pid":27443,"tid":27477,"ts":326458263776,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":255577},
-{"pid":27443,"tid":27477,"ts":326458263807,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":255638,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458263837,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":255638,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458263868,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":255669,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458264142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":255760,"id":"0xaf88ab8df182217a"},
-{"pid":27443,"tid":27459,"ts":326458263379,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5881794},
-{"pid":27443,"tid":27459,"ts":326458263440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5881855,"id":"0xaf88a8d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458263440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":1099,"tts":5881855},
-{"pid":27443,"tid":27459,"ts":326458263440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5881886,"id":"0xaf88a8d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458263471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5881886,"id":"0xaf88ab3bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458263471,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1068,"tdur":1068,"tts":5881886},
-{"pid":27443,"tid":27459,"ts":326458263532,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":977,"tdur":976,"tts":5881947},
-{"pid":27443,"tid":27459,"ts":326458263562,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5881977,"id":"0x30000001b"},
-{"pid":27443,"tid":27459,"ts":326458263562,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":5881977},
-{"pid":27443,"tid":27459,"ts":326458263593,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":793,"tts":5882008},
-{"pid":27443,"tid":27459,"ts":326458263654,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5882069},
-{"pid":27443,"tid":27459,"ts":326458263685,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5882099},
-{"pid":27443,"tid":27459,"ts":326458263715,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5882130},
-{"pid":27443,"tid":27459,"ts":326458263746,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5882160},
-{"pid":27443,"tid":27459,"ts":326458263776,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":5882221},
-{"pid":27443,"tid":27459,"ts":326458263929,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":428,"tts":5882343},
-{"pid":27443,"tid":27459,"ts":326458263959,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5882374},
-{"pid":27443,"tid":27459,"ts":326458264264,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":12,"frame":"0x78c60000"}},"tts":5882679,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458264295,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":5882710},
-{"pid":27443,"tid":27459,"ts":326458264295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5882710,"id":"0xaf88ab8af182217a"},
-{"pid":27443,"tid":27459,"ts":326458264325,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5882740},
-{"pid":27443,"tid":27459,"ts":326458264448,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5882862},
-{"pid":27443,"tid":27459,"ts":326458264448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5882862,"id":"0xaf88add2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458264570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5882984,"id":"0xaf88a8d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458264570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":5882984},
-{"pid":27443,"tid":27459,"ts":326458265790,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5883076,"id":"0xaf88a8d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458265790,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":24081,"tdur":11537,"tts":5883076},
-{"pid":27443,"tid":27459,"ts":326458265821,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5883106,"id":"0xaf88a8d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458265821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5883106,"id":"0xaf88ab34f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458265851,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":24020,"tdur":11445,"tts":5883137},
-{"pid":27443,"tid":27459,"ts":326458265851,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":64},"tts":5883137},
-{"pid":27443,"tid":27459,"ts":326458265851,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":5883137},
-{"pid":27443,"tid":27459,"ts":326458265913,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":17182,"tdur":8088,"tts":5883198},
-{"pid":27443,"tid":27459,"ts":326458265913,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":5883229},
-{"pid":27443,"tid":27459,"ts":326458265974,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":12,"frame":"0x78c60000"}},"dur":17121,"tdur":8027,"tts":5883259},
-{"pid":27443,"tid":27459,"ts":326458266035,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":17030,"tdur":7935,"tts":5883320},
-{"pid":27443,"tid":27459,"ts":326458266065,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5883351},
-{"pid":27443,"tid":27459,"ts":326458266248,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5883534},
-{"pid":27443,"tid":27459,"ts":326458266279,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":31,"tts":5883564},
-{"pid":27443,"tid":27459,"ts":326458271589,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5885273},
-{"pid":27443,"tid":27459,"ts":326458271772,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5885487},
-{"pid":27443,"tid":27459,"ts":326458271894,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5885579},
-{"pid":27443,"tid":27459,"ts":326458271894,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5885579},
-{"pid":27443,"tid":27459,"ts":326458272108,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5885792},
-{"pid":27443,"tid":27459,"ts":326458272963,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5886006},
-{"pid":27443,"tid":27459,"ts":326458272993,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5886006},
-{"pid":27443,"tid":27459,"ts":326458273176,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5886189},
-{"pid":27443,"tid":27459,"ts":326458283034,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5891225},
-{"pid":27443,"tid":27459,"ts":326458283095,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":5525,"tdur":2656,"tts":5891316},
-{"pid":27443,"tid":27459,"ts":326458283157,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5891347},
-{"pid":27443,"tid":27459,"ts":326458283157,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5891378},
-{"pid":27443,"tid":27459,"ts":326458283187,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5891378},
-{"pid":27443,"tid":27459,"ts":326458283645,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5891835},
-{"pid":27443,"tid":27459,"ts":326458283675,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5891866},
-{"pid":27443,"tid":27459,"ts":326458283706,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4914,"tdur":2076,"tts":5891896},
-{"pid":27443,"tid":27459,"ts":326458283706,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4731,"tdur":1893,"tts":5891896},
-{"pid":27443,"tid":27459,"ts":326458283736,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":367,"tdur":336,"tts":5891927},
-{"pid":27443,"tid":27459,"ts":326458284103,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":183,"tts":5892293},
-{"pid":27443,"tid":27459,"ts":326458284316,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":5892476},
-{"pid":27443,"tid":27459,"ts":326458284408,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5892568},
-{"pid":27443,"tid":27459,"ts":326458284408,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":4029,"tdur":1221,"tts":5892568},
-{"pid":27443,"tid":27459,"ts":326458288467,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":5893819},
-{"pid":27443,"tid":27459,"ts":326458288498,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":5893850},
-{"pid":27443,"tid":27459,"ts":326458288620,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":64},"dur":457,"tdur":458,"tts":5893972},
-{"pid":27443,"tid":27477,"ts":326458264142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":255760},
-{"pid":27443,"tid":27477,"ts":326458264142,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":30,"tts":255791},
-{"pid":27443,"tid":27477,"ts":326458264173,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":255791,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458264173,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":255791},
-{"pid":27443,"tid":27477,"ts":326458264203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":255821,"id":"0xaf88ab88f182217a"},
-{"pid":27443,"tid":27477,"ts":326458264203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":255852,"id":"0xaf88ab8ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458264234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":255852},
-{"pid":27443,"tid":27477,"ts":326458264234,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":255852},
-{"pid":27443,"tid":27477,"ts":326458264234,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":255852,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458264264,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":255882},
-{"pid":27443,"tid":27477,"ts":326458264264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":255882,"id":"0xaf88ab89f182217a"},
-{"pid":27443,"tid":27477,"ts":326458264295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":255913,"id":"0xaf88ab8ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458264295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":255913},
-{"pid":27443,"tid":27477,"ts":326458264295,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":255913},
-{"pid":27443,"tid":27477,"ts":326458264325,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":255943,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458264325,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":255943},
-{"pid":27443,"tid":27477,"ts":326458264325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":255943,"id":"0xaf88ab88f182217a"},
-{"pid":27443,"tid":27477,"ts":326458264356,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1129,"tdur":1129,"tts":255974},
-{"pid":27443,"tid":27477,"ts":326458264356,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1129,"tdur":1129,"tts":255974},
-{"pid":27443,"tid":27477,"ts":326458264356,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":255974},
-{"pid":27443,"tid":27477,"ts":326458264356,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":255974},
-{"pid":27443,"tid":27477,"ts":326458264386,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":123,"tdur":122,"tts":256004},
-{"pid":27443,"tid":27477,"ts":326458264386,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":256004},
-{"pid":27443,"tid":27477,"ts":326458264509,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":976,"tdur":977,"tts":256126},
-{"pid":27443,"tid":27477,"ts":326458264509,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":976,"tdur":977,"tts":256126},
-{"pid":27443,"tid":27477,"ts":326458264539,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":885,"tdur":885,"tts":256157},
-{"pid":27443,"tid":27477,"ts":326458264539,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":256157,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458264600,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256218},
-{"pid":27443,"tid":27477,"ts":326458264631,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":256249},
-{"pid":27443,"tid":27477,"ts":326458264661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256279},
-{"pid":27443,"tid":27477,"ts":326458264692,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256310},
-{"pid":27443,"tid":27477,"ts":326458264722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256340},
-{"pid":27443,"tid":27477,"ts":326458264722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256340},
-{"pid":27443,"tid":27477,"ts":326458264753,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":256371},
-{"pid":27443,"tid":27477,"ts":326458264783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256401},
-{"pid":27443,"tid":27477,"ts":326458264814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256432},
-{"pid":27443,"tid":27477,"ts":326458264814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":256432},
-{"pid":27443,"tid":27477,"ts":326458264844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256462},
-{"pid":27443,"tid":27477,"ts":326458264844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":256493},
-{"pid":27443,"tid":27477,"ts":326458264875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":256493},
-{"pid":27443,"tid":27477,"ts":326458264905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256523},
-{"pid":27443,"tid":27477,"ts":326458264905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256523},
-{"pid":27443,"tid":27477,"ts":326458264936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256554},
-{"pid":27443,"tid":27477,"ts":326458264966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256584},
-{"pid":27443,"tid":27477,"ts":326458264966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256584},
-{"pid":27443,"tid":27477,"ts":326458264997,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":256615},
-{"pid":27443,"tid":27477,"ts":326458265027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256645},
-{"pid":27443,"tid":27477,"ts":326458265027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256645},
-{"pid":27443,"tid":27477,"ts":326458265058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256676},
-{"pid":27443,"tid":27477,"ts":326458265088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256706},
-{"pid":27443,"tid":27477,"ts":326458265088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256706},
-{"pid":27443,"tid":27477,"ts":326458265119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256737},
-{"pid":27443,"tid":27477,"ts":326458265119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":256767},
-{"pid":27443,"tid":27477,"ts":326458265211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":256828},
-{"pid":27443,"tid":27477,"ts":326458265241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256859},
-{"pid":27443,"tid":27477,"ts":326458265241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":256859},
-{"pid":27443,"tid":27477,"ts":326458265272,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256889},
-{"pid":27443,"tid":27477,"ts":326458265302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256920},
-{"pid":27443,"tid":27477,"ts":326458265302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":256920},
-{"pid":27443,"tid":27477,"ts":326458265333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":256951},
-{"pid":27443,"tid":27477,"ts":326458265363,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":256981},
-{"pid":27443,"tid":27477,"ts":326458265394,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":257012},
-{"pid":27443,"tid":27477,"ts":326458265394,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":257012},
-{"pid":27443,"tid":27477,"ts":326458265424,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":257042},
-{"pid":27443,"tid":27466,"ts":326458264692,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":225545},
-{"pid":27443,"tid":27466,"ts":326458264692,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225576,"id":"0xccc38d02"},
-{"pid":27443,"tid":27466,"ts":326458267316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":225667,"id":"0xaf88add3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458267316,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":225667},
-{"pid":27443,"tid":27466,"ts":326458267347,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225698,"id":"0xccc38e02"},
-{"pid":27443,"tid":27466,"ts":326458267377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":225728,"id":"0xaf88adecf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458267408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":225759},
-{"pid":27443,"tid":27466,"ts":326458267408,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225759,"id":"0xccc38f06"},
-{"pid":27443,"tid":27466,"ts":326458267744,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":225850},
-{"pid":27443,"tid":27466,"ts":326458267774,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":225881},
-{"pid":27443,"tid":27466,"ts":326458267774,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":225881,"id":"0xc4c0e90a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458269117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":226003,"id":"0xaf88adedf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458269148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":226033},
-{"pid":27443,"tid":27466,"ts":326458269148,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226033,"id":"0xccc39002"},
-{"pid":27443,"tid":27466,"ts":326458270368,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":672,"tdur":244,"tts":226125},
-{"pid":27443,"tid":27466,"ts":326458270399,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":226155},
-{"pid":27443,"tid":27466,"ts":326458270399,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226155,"id":"0xba441f02","bp":"e"},{"pid":27411,"tid":27428,"ts":326460330524,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8396},"dur":4853,"tdur":3785,"tts":1212604},
-{"pid":27411,"tid":27428,"ts":326460330524,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4853,"tdur":3785,"tts":1212604},
-{"pid":27411,"tid":27428,"ts":326460333118,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1215199,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460333118,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":113},"dur":2228,"tdur":1159,"tts":1215199},
-{"pid":27411,"tid":27428,"ts":326460333179,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1679,"tdur":854,"tts":1215260},
-{"pid":27411,"tid":27428,"ts":326460335255,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460328144.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460333149.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902012.0,"time":326460305070.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460297000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460327319.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460310289.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460334858.0},"coordinates":[{"x":288.9757080078125,"y":767.0},{"x":482.9145812988281,"y":538.2805786132812}],"trace_id":12884902012.0}},"tts":1216267,"id":"0x30000007c"},
-{"pid":27411,"tid":27428,"ts":326460335255,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1216267,"id":"0x30000007c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460335285,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1216297},
-{"pid":27411,"tid":27428,"ts":326460335316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1216328,"id":"0xaf88cef6fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460343984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1216480,"id":"0xaf88cdf5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460344014,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1216511},
-{"pid":27411,"tid":27428,"ts":326460344014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1216511,"id":"0xaf88cdf6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460344045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1216542,"id":"0xaf88cdf6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460344075,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1216572},
-{"pid":27411,"tid":27428,"ts":326460348684,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1216633,"id":"0xaf88cdf7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460348714,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1216664},
-{"pid":27411,"tid":27428,"ts":326460348714,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1216664},
-{"pid":27411,"tid":27428,"ts":326460348745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1216694,"id":"0xaf88cdf0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460348775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1216725,"id":"0xaf88cdf0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460348775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5036,"tdur":4273,"tts":1216725},
-{"pid":27411,"tid":27428,"ts":326460348806,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11858},"dur":4975,"tdur":4181,"tts":1216786},
-{"pid":27411,"tid":27428,"ts":326460348836,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4945,"tdur":4181,"tts":1216786},
-{"pid":27411,"tid":27428,"ts":326460351766,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1219533,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460351797,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":114},"dur":1984,"tdur":1404,"tts":1219563},
-{"pid":27411,"tid":27428,"ts":326460351827,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1587,"tdur":977,"tts":1219624},
-{"pid":27411,"tid":27428,"ts":326460353536,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460346425.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460351797.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902013.0,"time":326460321765.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460314000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460344045.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460325214.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460353414.0},"coordinates":[{"x":292.0352783203125,"y":767.0},{"x":480.98236083984375,"y":541.0264282226562}],"trace_id":12884902013.0}},"tts":1220723,"id":"0x30000007d"},
-{"pid":27411,"tid":27428,"ts":326460353536,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1220723,"id":"0x30000007d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460353567,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":183,"tdur":183,"tts":1220753},
-{"pid":27411,"tid":27474,"ts":326460348531,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":153,"tdur":153,"tts":80451},
-{"pid":27411,"tid":27474,"ts":326460348592,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":80512},
-{"pid":27411,"tid":27474,"ts":326460348592,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80512,"id":"0xba457702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460348623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":80543,"id":"0xaf88cdf7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460353811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":80695,"id":"0xaf88cef7fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460353811,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":153,"tts":80695},
-{"pid":27411,"tid":27474,"ts":326460353811,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":80695},
-{"pid":27411,"tid":27474,"ts":326460353903,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80756,"id":"0xc4c1b102"},
-{"pid":27411,"tid":27474,"ts":326460373131,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":184,"tts":80878},
-{"pid":27411,"tid":27474,"ts":326460373161,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":80909},
-{"pid":27411,"tid":27474,"ts":326460373192,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80940,"id":"0xccc4f706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460373192,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":80940,"id":"0xc4c1b20a"},
-{"pid":27411,"tid":27474,"ts":326460373253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":81001,"id":"0xaf88cdf1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460378289,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":81092},
-{"pid":27411,"tid":27474,"ts":326460378319,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":81123},
-{"pid":27411,"tid":27474,"ts":326460378350,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":81153,"id":"0xba457f02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460378350,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":81153,"id":"0xaf88cdf3f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460383324,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":81306,"id":"0xaf88cef0fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460383324,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":81306},
-{"pid":27411,"tid":27474,"ts":326460383355,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":81336,"id":"0xc4c1b402"},
-{"pid":27411,"tid":27474,"ts":326460399531,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":81458},
-{"pid":27411,"tid":27474,"ts":326460399561,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":81489},
-{"pid":27411,"tid":27474,"ts":326460399592,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":81519,"id":"0xccc50006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460399592,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":81519,"id":"0xc4c1b50a"},
-{"pid":27411,"tid":27474,"ts":326460399653,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":81580,"id":"0xaf88cd8df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460404231,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":81703},
-{"pid":27411,"tid":27474,"ts":326460404261,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":81733},
-{"pid":27411,"tid":27474,"ts":326460404261,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":81733,"id":"0xba458402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460404292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":81764,"id":"0xaf88cd8ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460409847,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":81977,"id":"0xaf88cef1fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460409877,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":81977},
-{"pid":27411,"tid":27474,"ts":326460409908,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":82008,"id":"0xc4c1b702"},
-{"pid":27411,"tid":27474,"ts":326460534217,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":213,"tts":82130},
-{"pid":27411,"tid":27474,"ts":326460534278,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":82191},
-{"pid":27411,"tid":27474,"ts":326460534278,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":82191,"id":"0xccc50406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460534309,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":82221,"id":"0xc4c1b80a"},
-{"pid":27411,"tid":27474,"ts":326460534370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82282,"id":"0xaf88cd8af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460550240,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":489,"tdur":488,"tts":82527},
-{"pid":27411,"tid":27474,"ts":326460550332,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":152,"tdur":153,"tts":82618},
-{"pid":27411,"tid":27474,"ts":326460550362,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":82649,"id":"0xba459002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460550393,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82710,"id":"0xaf88cd84f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460550515,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":214,"tdur":183,"tts":82801},
-{"pid":27411,"tid":27474,"ts":326460550545,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":82832,"id":"0xba459106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460550576,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":82862,"id":"0xc4c1ba0a"},
-{"pid":27411,"tid":27474,"ts":326460550668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82984,"id":"0xaf88cd86f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460554574,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":275,"tdur":274,"tts":83168},
-{"pid":27411,"tid":27474,"ts":326460554635,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":183,"tdur":152,"tts":83229},
-{"pid":27411,"tid":27474,"ts":326460554666,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":83259,"id":"0xba459302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460554727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":83320,"id":"0xaf88cd80f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460559732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":83595,"id":"0xaf88cef2fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460559763,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":152,"tts":83595},
-{"pid":27411,"tid":27474,"ts":326460559793,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":83625,"id":"0xc4c1bc02"},
-{"pid":27411,"tid":27474,"ts":326460803987,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":213,"tdur":214,"tts":83839},
-{"pid":27411,"tid":27474,"ts":326460804017,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":62,"tts":83869},
-{"pid":27411,"tid":27474,"ts":326460804017,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":83869,"id":"0xccc53602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460804048,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":83900,"id":"0xaf88cd82f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460804109,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":83961},
-{"pid":27411,"tid":27474,"ts":326460804109,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":83961,"id":"0xccc53706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460804109,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":83961,"id":"0xc4c1bd0a"},
-{"pid":27411,"tid":27474,"ts":326460804170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84022,"id":"0xaf88cd83f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460813814,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":84083},
-{"pid":27411,"tid":27474,"ts":326460813845,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":84114},
-{"pid":27411,"tid":27474,"ts":326460813875,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84144,"id":"0xba45ea02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460813875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84144,"id":"0xaf88cd99f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460353598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1220784,"id":"0xaf88cef7fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460353598,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":1220784},
-{"pid":27411,"tid":27428,"ts":326460373314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1221089,"id":"0xaf88cdf1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460373344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1221120},
-{"pid":27411,"tid":27428,"ts":326460373375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1221150,"id":"0xaf88cdf2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460373405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1221181,"id":"0xaf88cdf2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460373405,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1221181},
-{"pid":27411,"tid":27428,"ts":326460378441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1221303,"id":"0xaf88cdf3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460378441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1221303},
-{"pid":27411,"tid":27428,"ts":326460378472,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":1221333},
-{"pid":27411,"tid":27428,"ts":326460378472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1221333,"id":"0xaf88cd8cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460378502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1221364,"id":"0xaf88cd8cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460378502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4822,"tdur":4334,"tts":1221364},
-{"pid":27411,"tid":27428,"ts":326460378563,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15320},"dur":4761,"tdur":4273,"tts":1221425},
-{"pid":27411,"tid":27428,"ts":326460378655,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4669,"tdur":4151,"tts":1221516},
-{"pid":27411,"tid":27428,"ts":326460381615,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1224355,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460381615,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":115},"dur":1679,"tdur":1312,"tts":1224355},
-{"pid":27411,"tid":27428,"ts":326460381676,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1313,"tdur":946,"tts":1224416},
-{"pid":27411,"tid":27428,"ts":326460383080,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460375267.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460381646.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902014.0,"time":326460341145.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460330000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460373710.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460343129.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460382989.0},"coordinates":[{"x":293.6453552246094,"y":767.0},{"x":479.6773376464844,"y":543.1453247070312}],"trace_id":12884902014.0}},"tts":1225453,"id":"0x30000007e"},
-{"pid":27411,"tid":27428,"ts":326460383111,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1225484,"id":"0x30000007e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460383202,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460375267.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460381646.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902015.0,"time":326460353903.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460347000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460373710.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460357504.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460382989.0},"coordinates":[{"x":294.64312744140625,"y":767.0},{"x":478.85687255859375,"y":544.7862548828125}],"trace_id":12884902015.0}},"tts":1225576,"id":"0x30000007f"},
-{"pid":27411,"tid":27428,"ts":326460383233,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1225606,"id":"0x30000007f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460383233,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1225606},
-{"pid":27411,"tid":27428,"ts":326460383263,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1225637,"id":"0xaf88cef0fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460399714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1225789,"id":"0xaf88cd8df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460399744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1225820},
-{"pid":27411,"tid":27428,"ts":326460399744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1225850,"id":"0xaf88cd8ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460399775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1225850,"id":"0xaf88cd8ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460399805,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1225881},
-{"pid":27411,"tid":27428,"ts":326460404383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1225972,"id":"0xaf88cd8ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460404383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1226003},
-{"pid":27411,"tid":27428,"ts":326460404414,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1226003},
-{"pid":27411,"tid":27428,"ts":326460404444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1226033,"id":"0xaf88cd88f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460404475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1226064,"id":"0xaf88cd88f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460404475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5433,"tdur":4700,"tts":1226064},
-{"pid":27411,"tid":27428,"ts":326460404536,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2398},"dur":5341,"tdur":4608,"tts":1226125},
-{"pid":27411,"tid":27428,"ts":326460404567,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5310,"tdur":4578,"tts":1226155},
-{"pid":27411,"tid":27428,"ts":326460407558,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1229146,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460407558,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":116},"dur":2289,"tdur":1557,"tts":1229146},
-{"pid":27411,"tid":27428,"ts":326460407619,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1739,"tdur":1069,"tts":1229207},
-{"pid":27411,"tid":27428,"ts":326460409511,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460401362.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460407588.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902017.0,"time":326460370445.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460364000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460399958.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460377403.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460409358.0},"coordinates":[{"x":478.01715087890625,"y":545.4828491210938}],"trace_id":12884902017.0}},"tts":1230428,"id":"0x300000081"},
-{"pid":27411,"tid":27428,"ts":326460409541,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1230459,"id":"0x300000081","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460409633,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460401362.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460407588.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902018.0,"time":326460385003.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460374000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460399958.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460386621.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460409358.0},"coordinates":[{"x":477.5,"y":546.0}],"trace_id":12884902018.0}},"tts":1230550,"id":"0x300000082"},
-{"pid":27411,"tid":27428,"ts":326460409663,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1230581,"id":"0x300000082","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460409694,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":153,"tdur":61,"tts":1230642},
-{"pid":27411,"tid":27428,"ts":326460409724,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1230642,"id":"0xaf88cef1fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460470674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1230856,"id":"0xaf88ce58f2bf5182"},
-{"pid":27411,"tid":27428,"ts":326460470704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1230886,"id":"0xaf88cd89f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460470704,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/gpu/gpu_watchdog_thread.cc","src_func":"OnCheck"},"dur":31,"tdur":31,"tts":1230886},
-{"pid":27411,"tid":27428,"ts":326460534431,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1230978,"id":"0xaf88cd8af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460534461,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1230978},
-{"pid":27411,"tid":27428,"ts":326460534492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1231008,"id":"0xaf88cd8bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460534522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231039,"id":"0xaf88cd8bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460534522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1231039},
-{"pid":27411,"tid":27428,"ts":326460550515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231130,"id":"0xaf88cd84f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460550545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1231161},
-{"pid":27411,"tid":27428,"ts":326460550545,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1231161},
-{"pid":27411,"tid":27428,"ts":326460550545,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1231191,"id":"0xaf88cd85f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460550576,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231191,"id":"0xaf88cd85f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460550607,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":152,"tdur":152,"tts":1231222},
-{"pid":27411,"tid":27428,"ts":326460550637,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2434},"dur":92,"tdur":92,"tts":1231252},
-{"pid":27411,"tid":27428,"ts":326460550668,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1231283},
-{"pid":27411,"tid":27428,"ts":326460550759,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231374,"id":"0xaf88cd86f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460550790,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":61,"tts":1231405},
-{"pid":27411,"tid":27460,"ts":326460469209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460469},"tts":3235,"id":"0xaf88ce41f2bf5182"},
-{"pid":27411,"tid":27460,"ts":326460469209,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":91,"tts":3235},
-{"pid":27411,"tid":27460,"ts":326460469300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/gpu/gpu_watchdog_thread.cc","src_func":"OnCheck"},"dur":31,"tdur":31,"tts":3326},
-{"pid":27411,"tid":27460,"ts":326460470552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460470},"tts":3387,"id":"0xaf88ce5ef2bf5182"},
-{"pid":27411,"tid":27460,"ts":326460470552,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/gpu/gpu_watchdog_thread.cc","src_func":"OnAcknowledge"},"dur":122,"tdur":92,"tts":3387},
-{"pid":27411,"tid":27460,"ts":326460470582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3418,"id":"0xaf88cd89f3321ac2"},
-{"pid":27411,"tid":27460,"ts":326460470643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3479,"id":"0xaf88ce5ff2bf5182"},
-{"pid":27411,"tid":27460,"ts":326460470735,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":3570,"id":"0xaf88ce58f2bf5182"},
-{"pid":27411,"tid":27460,"ts":326460470735,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/gpu/gpu_watchdog_thread.cc","src_func":"PostAcknowledge"},"dur":30,"tdur":31,"tts":3570},
-{"pid":27411,"tid":27460,"ts":326460470765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3601,"id":"0xaf88ce59f2bf5182"},
-{"pid":27411,"tid":27460,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.01011111111111111}},
-{"pid":27411,"tid":27428,"ts":326460550790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1231405,"id":"0xaf88cd87f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460550790,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1231405},
-{"pid":27411,"tid":27428,"ts":326460550881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231497,"id":"0xaf88cd87f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460550881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1231497},
-{"pid":27411,"tid":27428,"ts":326460554818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231619,"id":"0xaf88cd80f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460554849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1231649},
-{"pid":27411,"tid":27428,"ts":326460554849,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1231649},
-{"pid":27411,"tid":27428,"ts":326460554879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1231680,"id":"0xaf88cd81f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460554879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1231680,"id":"0xaf88cd81f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460554910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4822,"tdur":3449,"tts":1231710},
-{"pid":27411,"tid":27428,"ts":326460554940,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":5296},"dur":4762,"tdur":3387,"tts":1231741},
-{"pid":27411,"tid":27428,"ts":326460554971,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4731,"tdur":3357,"tts":1231771},
-{"pid":27411,"tid":27428,"ts":326460557748,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1233999,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460557748,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":117},"dur":1923,"tdur":1099,"tts":1233999},
-{"pid":27411,"tid":27428,"ts":326460557809,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1465,"tdur":824,"tts":1234060},
-{"pid":27411,"tid":27428,"ts":326460559580,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460535896.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460557779.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902019.0,"time":326460385705.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460384000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460534644.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460413845.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460559274.0},"coordinates":[{"x":477.5,"y":546.0}],"trace_id":12884902019.0}},"tts":1235006,"id":"0x300000083"},
-{"pid":27411,"tid":27428,"ts":326460559610,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1235037,"id":"0x300000083","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460559610,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1235037},
-{"pid":27411,"tid":27428,"ts":326460559641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1235067,"id":"0xaf88cef2fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460804231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1235220,"id":"0xaf88cd82f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460804261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1235220},
-{"pid":27411,"tid":27428,"ts":326460804261,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1235220},
-{"pid":27411,"tid":27428,"ts":326460804292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1235251,"id":"0xaf88cd9cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460804322,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1235281,"id":"0xaf88cd83f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460804322,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1235281},
-{"pid":27411,"tid":27428,"ts":326460804383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1235342,"id":"0xaf88cd9cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460804383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3449,"tdur":3449,"tts":1235342},
-{"pid":27411,"tid":27428,"ts":326460804444,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1235403},
-{"pid":27411,"tid":27428,"ts":326460804567,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13345},"dur":3174,"tdur":3174,"tts":1235525},
-{"pid":27411,"tid":27428,"ts":326460804597,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":3144,"tdur":3143,"tts":1235556},
-{"pid":27411,"tid":27428,"ts":326460804628,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1235586},
-{"pid":27411,"tid":27428,"ts":326460804658,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1235617},
-{"pid":27411,"tid":27428,"ts":326460804658,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1235617},
-{"pid":27411,"tid":27428,"ts":326460804689,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1235647},
-{"pid":27411,"tid":27428,"ts":326460804689,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1235647},
-{"pid":27411,"tid":27428,"ts":326460804719,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1235678},
-{"pid":27411,"tid":27428,"ts":326460805055,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1236014},
-{"pid":27411,"tid":27428,"ts":326460805085,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1236044},
-{"pid":27411,"tid":27428,"ts":326460805085,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1236044},
-{"pid":27411,"tid":27428,"ts":326460805116,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1236075},
-{"pid":27411,"tid":27428,"ts":326460805116,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1236075},
-{"pid":27411,"tid":27428,"ts":326460805146,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":184,"tdur":183,"tts":1236105},
-{"pid":27411,"tid":27428,"ts":326460805391,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1236349},
-{"pid":27411,"tid":27428,"ts":326460805421,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1236380},
-{"pid":27411,"tid":27428,"ts":326460805452,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1236410},
-{"pid":27411,"tid":27428,"ts":326460805452,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1236410},
-{"pid":27411,"tid":27428,"ts":326460805482,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1236441},
-{"pid":27411,"tid":27428,"ts":326460805482,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1236441},
-{"pid":27411,"tid":27428,"ts":326460805757,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1236715},
-{"pid":27411,"tid":27428,"ts":326460805787,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1236746},
-{"pid":27411,"tid":27428,"ts":326460805787,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1236746},
-{"pid":27411,"tid":27428,"ts":326460805787,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1236777},
-{"pid":27411,"tid":27428,"ts":326460805818,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1236777},
-{"pid":27411,"tid":27428,"ts":326460805848,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1236807},
-{"pid":27411,"tid":27428,"ts":326460806093,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":0,"tts":1237082},
-{"pid":27411,"tid":27428,"ts":326460806123,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1237082},
-{"pid":27411,"tid":27428,"ts":326460806154,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1237112},
-{"pid":27411,"tid":27428,"ts":326460806154,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1237112},
-{"pid":27411,"tid":27428,"ts":326460806184,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1237143},
-{"pid":27411,"tid":27428,"ts":326460806184,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1237143},
-{"pid":27411,"tid":27428,"ts":326460806459,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1237417},
-{"pid":27411,"tid":27428,"ts":326460806459,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1237417},
-{"pid":27411,"tid":27428,"ts":326460806489,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1237448},
-{"pid":27411,"tid":27428,"ts":326460806489,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1237448},
-{"pid":27411,"tid":27428,"ts":326460806520,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1237479},
-{"pid":27411,"tid":27428,"ts":326460806520,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1237479},
-{"pid":27411,"tid":27428,"ts":326460806611,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1237570},
-{"pid":27411,"tid":27428,"ts":326460806856,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1237814},
-{"pid":27411,"tid":27428,"ts":326460806886,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1237845},
-{"pid":27411,"tid":27428,"ts":326460806886,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1237845},
-{"pid":27411,"tid":27428,"ts":326460806917,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1237875},
-{"pid":27411,"tid":27428,"ts":326460806917,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1237875},
-{"pid":27411,"tid":27428,"ts":326460806947,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1237906},
-{"pid":27411,"tid":27428,"ts":326460807191,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1238150},
-{"pid":27411,"tid":27428,"ts":326460807222,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1238180},
-{"pid":27411,"tid":27428,"ts":326460807222,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1238180},
-{"pid":27411,"tid":27428,"ts":326460807252,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1238211},
-{"pid":27411,"tid":27428,"ts":326460807252,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":214,"tts":1238211},
-{"pid":27411,"tid":27428,"ts":326460807283,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":152,"tts":1238242},
-{"pid":27411,"tid":27428,"ts":326460807527,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":35},"dur":31,"tdur":30,"tts":1238486},
-{"pid":27411,"tid":27428,"ts":326460807558,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":180},"dur":30,"tdur":31,"tts":1238516},
-{"pid":27411,"tid":27428,"ts":326460807588,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":68},"dur":31,"tdur":30,"tts":1238547},
-{"pid":27411,"tid":27428,"ts":326460807619,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":93},"dur":0,"tdur":0,"tts":1238577},
-{"pid":27411,"tid":27428,"ts":326460807619,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":231},"dur":30,"tdur":31,"tts":1238577},
-{"pid":27411,"tid":27428,"ts":326460807649,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":47},"dur":31,"tdur":30,"tts":1238608},
-{"pid":27411,"tid":27428,"ts":326460807680,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":198},"dur":30,"tdur":31,"tts":1238638},
-{"pid":27411,"tid":27428,"ts":326460807710,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":90},"dur":31,"tdur":30,"tts":1238669},
-{"pid":27411,"tid":27428,"ts":326460807802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1238760,"id":"0xaf88cd9df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460807802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1238760,"id":"0xaf88cd9ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460807832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1238791,"id":"0xaf88cd9ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460807863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1238821},
-{"pid":27411,"tid":27428,"ts":326460810121,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460809},"tts":1238943,"id":"0xaf88cd9df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460810152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":122,"tdur":122,"tts":1238974},
-{"pid":27411,"tid":27428,"ts":326460810152,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":122,"tdur":92,"tts":1238974},
-{"pid":27411,"tid":27428,"ts":326460810243,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1239066,"id":"0xaf88cd9ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460812227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460811},"tts":1239188,"id":"0xaf88cd9ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460812258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":91,"tdur":92,"tts":1239218},
-{"pid":27411,"tid":27428,"ts":326460812258,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":91,"tdur":92,"tts":1239218},
-{"pid":27411,"tid":27428,"ts":326460812319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1239279,"id":"0xaf88cd98f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460814577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1239432,"id":"0xaf88cd99f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460814577,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1239432},
-{"pid":27411,"tid":27428,"ts":326460814577,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":0,"tts":1239462},
-{"pid":27411,"tid":27428,"ts":326460814608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1239462,"id":"0xaf88cd9af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460814638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460813},"tts":1239493,"id":"0xaf88cd98f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460814669,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":91,"tdur":92,"tts":1239523},
-{"pid":27411,"tid":27428,"ts":326460814669,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":91,"tdur":61,"tts":1239523},
-{"pid":27411,"tid":27428,"ts":326460814730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1239584,"id":"0xaf88cd9bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460814760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1239615,"id":"0xaf88cd9af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460814791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":10590,"tdur":6562,"tts":1239645},
-{"pid":27411,"tid":27428,"ts":326460814821,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":92,"tts":1239676},
-{"pid":27411,"tid":27428,"ts":326460814943,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8790},"dur":10347,"tdur":6348,"tts":1239798},
-{"pid":27411,"tid":27428,"ts":326460814974,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":10316,"tdur":6317,"tts":1239829},
-{"pid":27411,"tid":27428,"ts":326460816592,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":90},"dur":30,"tdur":31,"tts":1241446},
-{"pid":27411,"tid":27428,"ts":326460816683,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":198},"dur":0,"tdur":0,"tts":1241538},
-{"pid":27411,"tid":27428,"ts":326460816744,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":47},"dur":31,"tdur":30,"tts":1241599},
-{"pid":27411,"tid":27428,"ts":326460816805,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":231},"dur":31,"tdur":30,"tts":1241660},
-{"pid":27411,"tid":27428,"ts":326460816866,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":93},"dur":31,"tdur":0,"tts":1241751},
-{"pid":27411,"tid":27428,"ts":326460816958,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":68},"dur":0,"tdur":0,"tts":1241812},
-{"pid":27411,"tid":27428,"ts":326460817019,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":180},"dur":30,"tdur":0,"tts":1241873},
-{"pid":27411,"tid":27428,"ts":326460817080,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":35},"dur":30,"tdur":31,"tts":1241934},
-{"pid":27411,"tid":27428,"ts":326460817721,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1242575,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460817721,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":118},"dur":7538,"tdur":3541,"tts":1242575},
-{"pid":27411,"tid":27428,"ts":326460817782,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":7355,"tdur":3388,"tts":1242636},
-{"pid":27411,"tid":27428,"ts":326460825168,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":61,"tts":1246055},
-{"pid":27411,"tid":27428,"ts":326460825198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1246055,"id":"0xaf88cef3fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460825412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460815},"tts":1246238,"id":"0xaf88cd9bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460825412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":824,"tdur":427,"tts":1246238},
-{"pid":27411,"tid":27428,"ts":326460825412,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":824,"tdur":427,"tts":1246238},
-{"pid":27411,"tid":27474,"ts":326460825290,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":84266,"id":"0xaf88cef3fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460825290,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":84266},
-{"pid":27411,"tid":27474,"ts":326460825351,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":84327},
-{"pid":27411,"tid":27474,"ts":326460825381,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84358,"id":"0xc4c1bf02"},
-{"pid":27411,"tid":27474,"ts":326460850835,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":123,"tdur":122,"tts":84419},
-{"pid":27411,"tid":27474,"ts":326460850866,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":84480},
-{"pid":27411,"tid":27474,"ts":326460850896,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84480,"id":"0xccc54e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460850896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84510,"id":"0xaf88cd94f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460852667,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":91,"tdur":92,"tts":84602},
-{"pid":27411,"tid":27474,"ts":326460852697,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":84632},
-{"pid":27411,"tid":27474,"ts":326460852697,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84632,"id":"0xccc55002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460852728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84663,"id":"0xaf88cd96f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460852789,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":84724},
-{"pid":27411,"tid":27474,"ts":326460852819,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":84755},
-{"pid":27411,"tid":27474,"ts":326460852819,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84755,"id":"0xccc55106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460852850,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84785,"id":"0xc4c1c00a"},
-{"pid":27411,"tid":27474,"ts":326460852880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84816,"id":"0xaf88cd97f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460856909,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":84938},
-{"pid":27411,"tid":27474,"ts":326460856940,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":84968},
-{"pid":27411,"tid":27474,"ts":326460856940,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":84968,"id":"0xba45f202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460856940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84999,"id":"0xaf88cd92f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460861487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":85090,"id":"0xaf88ce8cfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460861518,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":85121},
-{"pid":27411,"tid":27474,"ts":326460861518,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85121,"id":"0xc4c1c202"},
-{"pid":27411,"tid":27474,"ts":326460983202,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":122,"tts":85243},
-{"pid":27411,"tid":27474,"ts":326460983263,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":85273},
-{"pid":27411,"tid":27474,"ts":326460983263,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85273,"id":"0xccc55502","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460983294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":85304,"id":"0xaf88cdacf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460986682,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":85426,"id":"0xaf88ce8dfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326460986682,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":85426},
-{"pid":27411,"tid":27474,"ts":326460986682,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85457,"id":"0xc4c1c302"},
-{"pid":27411,"tid":27474,"ts":326460996082,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":305,"tdur":275,"tts":85548},
-{"pid":27411,"tid":27474,"ts":326460996112,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":85579},
-{"pid":27411,"tid":27474,"ts":326460996143,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85609,"id":"0xccc55602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460996173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":85640,"id":"0xaf88cda4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326460996204,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":122,"tts":85670},
-{"pid":27411,"tid":27474,"ts":326460996204,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85670,"id":"0xccc55706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326460996296,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85731,"id":"0xc4c1c40a"},
-{"pid":27411,"tid":27474,"ts":326460996357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":85792,"id":"0xaf88cda6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461000324,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":85853},
-{"pid":27411,"tid":27474,"ts":326461000355,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":85884},
-{"pid":27411,"tid":27474,"ts":326461000355,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":85884,"id":"0xba45fd02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461000385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":85914,"id":"0xaf88cda1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461011678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":86036,"id":"0xaf88ce8efec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461011708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":86067},
-{"pid":27411,"tid":27474,"ts":326461011708,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86067,"id":"0xc4c1c602"},
-{"pid":27411,"tid":27474,"ts":326461034171,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":306,"tdur":305,"tts":86189},
-{"pid":27411,"tid":27474,"ts":326461034232,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":86250},
-{"pid":27411,"tid":27474,"ts":326461034232,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86250,"id":"0xccc55902","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461034263,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":86281,"id":"0xaf88cdbcf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461034324,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":152,"tts":86342},
-{"pid":27411,"tid":27474,"ts":326461034324,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86372,"id":"0xccc55a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461034354,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86372,"id":"0xc4c1c70a"},
-{"pid":27411,"tid":27474,"ts":326461034446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":86464,"id":"0xaf88cdbef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461038749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":86555},
-{"pid":27411,"tid":27474,"ts":326461038810,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":86616},
-{"pid":27411,"tid":27474,"ts":326461038810,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86616,"id":"0xba460102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461038841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":86647,"id":"0xaf88cdbff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461044914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":86738,"id":"0xaf88ce8ffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461044914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":86738},
-{"pid":27411,"tid":27474,"ts":326461044945,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86769,"id":"0xc4c1c902"},
-{"pid":27411,"tid":27474,"ts":326461347585,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":214,"tts":86860},
-{"pid":27411,"tid":27474,"ts":326461347616,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":310},"dur":152,"tdur":122,"tts":86922},
-{"pid":27411,"tid":27474,"ts":326461347646,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":86922,"id":"0xba461f02","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326460825442,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":214,"tdur":183,"tts":1246299},
-{"pid":27411,"tid":27428,"ts":326460825442,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":123,"tdur":91,"tts":1246299},
-{"pid":27411,"tid":27428,"ts":326460851080,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1246757,"id":"0xaf88cd94f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460851110,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1246757},
-{"pid":27411,"tid":27428,"ts":326460851110,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1246757},
-{"pid":27411,"tid":27428,"ts":326460851141,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1246787,"id":"0xaf88cd95f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460851171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1246818,"id":"0xaf88cd95f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460851171,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":2594,"tdur":2533,"tts":1246818},
-{"pid":27411,"tid":27428,"ts":326460851232,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13506},"dur":2472,"tdur":2411,"tts":1246879},
-{"pid":27411,"tid":27428,"ts":326460851232,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":2472,"tdur":2411,"tts":1246879},
-{"pid":27411,"tid":27428,"ts":326460851263,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1246909},
-{"pid":27411,"tid":27428,"ts":326460851293,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1246940},
-{"pid":27411,"tid":27428,"ts":326460851293,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1246940},
-{"pid":27411,"tid":27428,"ts":326460851324,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1246970},
-{"pid":27411,"tid":27428,"ts":326460851354,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1247001},
-{"pid":27411,"tid":27428,"ts":326460851354,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1247001},
-{"pid":27411,"tid":27428,"ts":326460851812,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1247459},
-{"pid":27411,"tid":27428,"ts":326460851843,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1247489},
-{"pid":27411,"tid":27428,"ts":326460851843,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1247489},
-{"pid":27411,"tid":27428,"ts":326460851873,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1247520},
-{"pid":27411,"tid":27428,"ts":326460851873,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1247520},
-{"pid":27411,"tid":27428,"ts":326460851904,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1247550},
-{"pid":27411,"tid":27428,"ts":326460852270,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1247916},
-{"pid":27411,"tid":27428,"ts":326460852300,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1247947},
-{"pid":27411,"tid":27428,"ts":326460852300,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1247947},
-{"pid":27411,"tid":27428,"ts":326460852331,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1247978},
-{"pid":27411,"tid":27428,"ts":326460852331,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1247978},
-{"pid":27411,"tid":27428,"ts":326460852361,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":184,"tdur":183,"tts":1248008},
-{"pid":27411,"tid":27428,"ts":326460852728,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1248374},
-{"pid":27411,"tid":27428,"ts":326460852728,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1248374},
-{"pid":27411,"tid":27428,"ts":326460852758,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":0,"tts":1248405},
-{"pid":27411,"tid":27428,"ts":326460852758,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1248405},
-{"pid":27411,"tid":27428,"ts":326460852789,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1248435},
-{"pid":27411,"tid":27428,"ts":326460852789,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1248435},
-{"pid":27411,"tid":27428,"ts":326460853247,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1248832},
-{"pid":27411,"tid":27428,"ts":326460853247,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1248832},
-{"pid":27411,"tid":27428,"ts":326460853277,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1248863},
-{"pid":27411,"tid":27428,"ts":326460853277,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1248863},
-{"pid":27411,"tid":27428,"ts":326460853308,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1248893},
-{"pid":27411,"tid":27428,"ts":326460853308,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1248893},
-{"pid":27411,"tid":27428,"ts":326460853796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1249381,"id":"0xaf88cd96f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460853796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1249381},
-{"pid":27411,"tid":27428,"ts":326460853826,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1249412},
-{"pid":27411,"tid":27428,"ts":326460853826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1249412,"id":"0xaf88cd90f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460853857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1249442,"id":"0xaf88cd97f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460853887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1249473},
-{"pid":27411,"tid":27428,"ts":326460853918,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1249504,"id":"0xaf88cd90f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460853918,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":1679,"tdur":1678,"tts":1249504},
-{"pid":27411,"tid":27428,"ts":326460853949,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13669},"dur":1587,"tdur":1557,"tts":1249534},
-{"pid":27411,"tid":27428,"ts":326460853979,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":1526,"tdur":1526,"tts":1249565},
-{"pid":27411,"tid":27428,"ts":326460854010,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1249595},
-{"pid":27411,"tid":27428,"ts":326460854010,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1249595},
-{"pid":27411,"tid":27428,"ts":326460854040,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1249626},
-{"pid":27411,"tid":27428,"ts":326460854040,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1249626},
-{"pid":27411,"tid":27428,"ts":326460854071,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1249656},
-{"pid":27411,"tid":27428,"ts":326460854071,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":152,"tts":1249687},
-{"pid":27411,"tid":27428,"ts":326460854437,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1250022},
-{"pid":27411,"tid":27428,"ts":326460854467,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1250053},
-{"pid":27411,"tid":27428,"ts":326460854467,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":0,"tts":1250083},
-{"pid":27411,"tid":27428,"ts":326460854498,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1250083},
-{"pid":27411,"tid":27428,"ts":326460854528,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":184,"tdur":183,"tts":1250114},
-{"pid":27411,"tid":27428,"ts":326460854528,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":184,"tdur":183,"tts":1250114},
-{"pid":27411,"tid":27428,"ts":326460854895,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1250480},
-{"pid":27411,"tid":27428,"ts":326460854925,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1250511},
-{"pid":27411,"tid":27428,"ts":326460854925,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":92,"tdur":91,"tts":1250511},
-{"pid":27411,"tid":27428,"ts":326460854925,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1250511},
-{"pid":27411,"tid":27428,"ts":326460855017,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1250602},
-{"pid":27411,"tid":27428,"ts":326460855017,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":214,"tts":1250602},
-{"pid":27411,"tid":27428,"ts":326460855047,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":152,"tts":1250633},
-{"pid":27411,"tid":27428,"ts":326460855413,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":209},"dur":31,"tdur":31,"tts":1250999},
-{"pid":27411,"tid":27428,"ts":326460855444,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":147},"dur":31,"tdur":30,"tts":1251030},
-{"pid":27411,"tid":27428,"ts":326460855475,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":231},"dur":0,"tdur":0,"tts":1251060},
-{"pid":27411,"tid":27428,"ts":326460855475,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":91},"dur":30,"tdur":0,"tts":1251091},
-{"pid":27411,"tid":27428,"ts":326460855566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1251152,"id":"0xaf88cd91f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460855627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1251213,"id":"0xaf88cd91f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460855627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1251213},
-{"pid":27411,"tid":27428,"ts":326460857031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1251335,"id":"0xaf88cd92f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460857031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1251335},
-{"pid":27411,"tid":27428,"ts":326460857031,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1251335},
-{"pid":27411,"tid":27428,"ts":326460857062,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1251365,"id":"0xaf88cd93f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460857092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1251396,"id":"0xaf88cd93f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460857092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4426,"tdur":4028,"tts":1251396},
-{"pid":27411,"tid":27428,"ts":326460857123,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1251426},
-{"pid":27411,"tid":27428,"ts":326460857245,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12368},"dur":4242,"tdur":3846,"tts":1251548},
-{"pid":27411,"tid":27428,"ts":326460857245,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4242,"tdur":3815,"tts":1251579},
-{"pid":27411,"tid":27428,"ts":326460859076,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":91},"dur":30,"tdur":30,"tts":1253380},
-{"pid":27411,"tid":27428,"ts":326460859168,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":231},"dur":0,"tdur":0,"tts":1253471},
-{"pid":27411,"tid":27428,"ts":326460859229,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":147},"dur":30,"tdur":31,"tts":1253532},
-{"pid":27411,"tid":27428,"ts":326460859290,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":209},"dur":30,"tdur":31,"tts":1253593},
-{"pid":27411,"tid":27428,"ts":326460859900,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1254204,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326460859900,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":119},"dur":1587,"tdur":1160,"tts":1254234},
-{"pid":27411,"tid":27428,"ts":326460859961,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1434,"tdur":1037,"tts":1254265},
-{"pid":27411,"tid":27428,"ts":326460861395,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":62,"tdur":61,"tts":1255302},
-{"pid":27411,"tid":27428,"ts":326460861426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1255333,"id":"0xaf88ce8cfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460983385,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1255486,"id":"0xaf88cdacf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460983385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1255486},
-{"pid":27411,"tid":27428,"ts":326460983385,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1255486},
-{"pid":27411,"tid":27428,"ts":326460983416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1255516,"id":"0xaf88cdadf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460983446,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1255547,"id":"0xaf88cdadf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460983446,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5403,"tdur":5219,"tts":1255547},
-{"pid":27411,"tid":27428,"ts":326460983477,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1255577},
-{"pid":27411,"tid":27428,"ts":326460983599,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14034},"dur":4975,"tdur":4944,"tts":1255730},
-{"pid":27411,"tid":27428,"ts":326460983630,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":4944,"tdur":4944,"tts":1255730},
-{"pid":27411,"tid":27428,"ts":326460983660,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1255760},
-{"pid":27411,"tid":27428,"ts":326460983660,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1255791},
-{"pid":27411,"tid":27428,"ts":326460983691,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1255791},
-{"pid":27411,"tid":27428,"ts":326460983721,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1255821},
-{"pid":27411,"tid":27428,"ts":326460983721,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":275,"tdur":275,"tts":1255821},
-{"pid":27411,"tid":27428,"ts":326460983752,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":244,"tdur":244,"tts":1255852},
-{"pid":27411,"tid":27428,"ts":326460984118,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1256218},
-{"pid":27411,"tid":27428,"ts":326460984118,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1256218},
-{"pid":27411,"tid":27428,"ts":326460984148,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1256249},
-{"pid":27411,"tid":27428,"ts":326460984148,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1256249},
-{"pid":27411,"tid":27428,"ts":326460984179,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":214,"tts":1256279},
-{"pid":27411,"tid":27428,"ts":326460984179,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1256279},
-{"pid":27411,"tid":27428,"ts":326460984454,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1256554},
-{"pid":27411,"tid":27428,"ts":326460984484,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1256584},
-{"pid":27411,"tid":27428,"ts":326460984484,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1256584},
-{"pid":27411,"tid":27428,"ts":326460984515,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1256615},
-{"pid":27411,"tid":27428,"ts":326460984515,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":213,"tts":1256615},
-{"pid":27411,"tid":27428,"ts":326460984545,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1256645},
-{"pid":27411,"tid":27428,"ts":326460984789,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1256889},
-{"pid":27411,"tid":27428,"ts":326460984820,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1256920},
-{"pid":27411,"tid":27428,"ts":326460984850,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1256950},
-{"pid":27411,"tid":27428,"ts":326460984850,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1256950},
-{"pid":27411,"tid":27428,"ts":326460984881,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1256981},
-{"pid":27411,"tid":27428,"ts":326460984881,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1256981},
-{"pid":27411,"tid":27428,"ts":326460985156,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":91,"tdur":91,"tts":1257256},
-{"pid":27411,"tid":27428,"ts":326460985156,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1257256},
-{"pid":27411,"tid":27428,"ts":326460985156,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1257256},
-{"pid":27411,"tid":27428,"ts":326460985247,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1257347},
-{"pid":27411,"tid":27428,"ts":326460985247,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1257378},
-{"pid":27411,"tid":27428,"ts":326460985278,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1257378},
-{"pid":27411,"tid":27428,"ts":326460985278,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":1257408},
-{"pid":27411,"tid":27428,"ts":326460985552,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1257652},
-{"pid":27411,"tid":27428,"ts":326460985583,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1257683},
-{"pid":27411,"tid":27428,"ts":326460985583,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1257683},
-{"pid":27411,"tid":27428,"ts":326460985613,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1257714},
-{"pid":27411,"tid":27428,"ts":326460985613,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":184,"tdur":183,"tts":1257714},
-{"pid":27411,"tid":27428,"ts":326460985644,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1257744},
-{"pid":27411,"tid":27428,"ts":326460985888,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1257988},
-{"pid":27411,"tid":27428,"ts":326460985919,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":50684996},"tts":1258019},
-{"pid":27411,"tid":27428,"ts":326460985919,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1258019},
-{"pid":27411,"tid":27428,"ts":326460985949,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1258049},
-{"pid":27411,"tid":27428,"ts":326460985949,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1258049},
-{"pid":27411,"tid":27428,"ts":326460985980,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1258080},
-{"pid":27411,"tid":27428,"ts":326460986254,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":397,"tdur":397,"tts":1258354},
-{"pid":27411,"tid":27428,"ts":326460986560,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51348548},"tts":1258660},
-{"pid":27411,"tid":27428,"ts":326460986560,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":434},"dur":91,"tdur":61,"tts":1258660},
-{"pid":27411,"tid":27428,"ts":326460986590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1258690,"id":"0xaf88ce8dfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326460986651,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1258751},
-{"pid":27411,"tid":27428,"ts":326460986682,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1258782},
-{"pid":27411,"tid":27428,"ts":326460986682,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1258782},
-{"pid":27411,"tid":27428,"ts":326460986712,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51348548},"tts":1258812},
-{"pid":27411,"tid":27428,"ts":326460986712,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":489,"tts":1258812},
-{"pid":27411,"tid":27428,"ts":326460986743,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":457,"tdur":458,"tts":1258843},
-{"pid":27411,"tid":27428,"ts":326460987292,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1259392},
-{"pid":27411,"tid":27428,"ts":326460987323,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51016772},"tts":1259423},
-{"pid":27411,"tid":27428,"ts":326460987323,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1259423},
-{"pid":27411,"tid":27428,"ts":326460987353,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51348548},"tts":1259453},
-{"pid":27411,"tid":27428,"ts":326460987353,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1259453},
-{"pid":27411,"tid":27428,"ts":326460987384,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1259484},
-{"pid":27411,"tid":27428,"ts":326460987689,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":244,"tdur":244,"tts":1259789},
-{"pid":27411,"tid":27428,"ts":326460987933,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51680324},"tts":1260033},
-{"pid":27411,"tid":27428,"ts":326460987963,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1260064},
-{"pid":27411,"tid":27428,"ts":326460987963,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51348548},"tts":1260064},
-{"pid":27411,"tid":27428,"ts":326460987994,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1260094},
-{"pid":27411,"tid":27428,"ts":326460987994,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51680324},"tts":1260094},
-{"pid":27411,"tid":27428,"ts":326460988025,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":457,"tdur":457,"tts":1260125},
-{"pid":27411,"tid":27428,"ts":326460988025,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":457,"tdur":457,"tts":1260125},
-{"pid":27411,"tid":27428,"ts":326460988818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1260735,"id":"0xaf88cdaef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460990985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460990},"tts":1260827,"id":"0xaf88cdaef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460991016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":91,"tdur":92,"tts":1260857},
-{"pid":27411,"tid":27428,"ts":326460991016,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":91,"tdur":92,"tts":1260857},
-{"pid":27411,"tid":27428,"ts":326460991077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1260918,"id":"0xaf88cdaff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460992267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460992},"tts":1261040,"id":"0xaf88cdaff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460992267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":122,"tdur":92,"tts":1261040},
-{"pid":27411,"tid":27428,"ts":326460992297,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":61,"tdur":61,"tts":1261071},
-{"pid":27411,"tid":27428,"ts":326460992328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1261132,"id":"0xaf88cda8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460993518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460993},"tts":1261223,"id":"0xaf88cda8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460993518,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":92,"tdur":61,"tts":1261254},
-{"pid":27411,"tid":27428,"ts":326460993549,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":61,"tdur":61,"tts":1261254},
-{"pid":27411,"tid":27428,"ts":326460993579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1261284,"id":"0xaf88cda9f3321ac2"},{"pid":27411,"tid":27428,"ts":326460994770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460994},"tts":1261406,"id":"0xaf88cda9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460994800,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":92,"tdur":92,"tts":1261437},
-{"pid":27411,"tid":27428,"ts":326460994800,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":61,"tdur":61,"tts":1261437},
-{"pid":27411,"tid":27428,"ts":326460994861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1261498,"id":"0xaf88cdaaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460996021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460995},"tts":1261590,"id":"0xaf88cdaaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460996051,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":92,"tdur":92,"tts":1261620},
-{"pid":27411,"tid":27428,"ts":326460996051,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":92,"tdur":92,"tts":1261620},
-{"pid":27411,"tid":27428,"ts":326460996112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1261681,"id":"0xaf88cdabf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460996204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1261773,"id":"0xaf88cda4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460996204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1261773},
-{"pid":27411,"tid":27428,"ts":326460996204,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":91,"tts":1261773},
-{"pid":27411,"tid":27428,"ts":326460996296,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1261864},
-{"pid":27411,"tid":27428,"ts":326460996326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1261895,"id":"0xaf88cda5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460996387,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1261956,"id":"0xaf88cda5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460996387,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3052,"tdur":3052,"tts":1261956},
-{"pid":27411,"tid":27428,"ts":326460996418,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14267},"dur":2991,"tdur":2991,"tts":1261986},
-{"pid":27411,"tid":27428,"ts":326460996418,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":2991,"tdur":2960,"tts":1262017},
-{"pid":27411,"tid":27428,"ts":326460996509,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":305,"tdur":275,"tts":1262078},
-{"pid":27411,"tid":27428,"ts":326460996784,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52012100},"tts":1262353},
-{"pid":27411,"tid":27428,"ts":326460996814,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1262383},
-{"pid":27411,"tid":27428,"ts":326460996814,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":51680324},"tts":1262383},
-{"pid":27411,"tid":27428,"ts":326460996845,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1262414},
-{"pid":27411,"tid":27428,"ts":326460996845,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52012100},"tts":1262414},
-{"pid":27411,"tid":27428,"ts":326460996875,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":519,"tdur":519,"tts":1262444},
-{"pid":27411,"tid":27428,"ts":326460996875,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":519,"tdur":488,"tts":1262475},
-{"pid":27411,"tid":27428,"ts":326460997547,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":244,"tdur":244,"tts":1263116},
-{"pid":27411,"tid":27428,"ts":326460997761,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52343876},"tts":1263360},
-{"pid":27411,"tid":27428,"ts":326460997791,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1263360},
-{"pid":27411,"tid":27428,"ts":326460997822,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52012100},"tts":1263390},
-{"pid":27411,"tid":27428,"ts":326460997822,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1263390},
-{"pid":27411,"tid":27428,"ts":326460997852,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52343876},"tts":1263421},
-{"pid":27411,"tid":27428,"ts":326460997852,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1263421},
-{"pid":27411,"tid":27428,"ts":326460997883,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":427,"tdur":428,"tts":1263451},
-{"pid":27411,"tid":27428,"ts":326460998462,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":245,"tdur":244,"tts":1264031},
-{"pid":27411,"tid":27428,"ts":326460998707,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52675652},"tts":1264275},
-{"pid":27411,"tid":27428,"ts":326460998707,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1264275},
-{"pid":27411,"tid":27428,"ts":326460998737,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52343876},"tts":1264306},
-{"pid":27411,"tid":27428,"ts":326460998737,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1264306},
-{"pid":27411,"tid":27428,"ts":326460998768,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52675652},"tts":1264336},
-{"pid":27411,"tid":27428,"ts":326460998768,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":489,"tts":1264336},
-{"pid":27411,"tid":27428,"ts":326460998798,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":458,"tts":1264367},
-{"pid":27411,"tid":27428,"ts":326460999348,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":66},"dur":30,"tdur":31,"tts":1264916},
-{"pid":27411,"tid":27428,"ts":326460999378,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":89},"dur":31,"tdur":30,"tts":1264947},
-{"pid":27411,"tid":27428,"ts":326460999470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460997},"tts":1265038,"id":"0xaf88cdabf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460999470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":91,"tdur":61,"tts":1265069},
-{"pid":27411,"tid":27428,"ts":326460999500,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":61,"tdur":61,"tts":1265069},
-{"pid":27411,"tid":27428,"ts":326460999561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1265130,"id":"0xaf88cda7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460999592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1265160,"id":"0xaf88cda6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460999592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1265160},
-{"pid":27411,"tid":27428,"ts":326460999592,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1265191,"id":"0xaf88cda0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460999622,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1265222,"id":"0xaf88cda0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326460999653,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":0,"tts":1265222},
-{"pid":27411,"tid":27428,"ts":326461000538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1265283,"id":"0xaf88cda1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461000568,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1265313},
-{"pid":27411,"tid":27428,"ts":326461000568,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":1265344},
-{"pid":27411,"tid":27428,"ts":326461000599,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1265344,"id":"0xaf88cda2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461000660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461000},"tts":1265405,"id":"0xaf88cda7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461000690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":92,"tdur":92,"tts":1265435},
-{"pid":27411,"tid":27428,"ts":326461000690,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":92,"tdur":92,"tts":1265435},
-{"pid":27411,"tid":27428,"ts":326461000752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1265496,"id":"0xaf88cda3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461000813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1265557,"id":"0xaf88cda2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461000813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":10895,"tdur":8943,"tts":1265557},
-{"pid":27411,"tid":27428,"ts":326461001057,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1265618},
-{"pid":27411,"tid":27428,"ts":326461001179,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":236},"dur":10499,"tdur":8729,"tts":1265740},
-{"pid":27411,"tid":27428,"ts":326461001209,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":10469,"tdur":8698,"tts":1265771},
-{"pid":27411,"tid":27428,"ts":326461003346,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":158},"dur":30,"tdur":31,"tts":1267907},
-{"pid":27411,"tid":27428,"ts":326461003437,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":3},"dur":31,"tdur":30,"tts":1267999},
-{"pid":27411,"tid":27428,"ts":326461003529,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":63},"dur":0,"tdur":0,"tts":1268090},
-{"pid":27411,"tid":27428,"ts":326461003590,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":74},"dur":30,"tdur":31,"tts":1268151},
-{"pid":27411,"tid":27428,"ts":326461003651,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":89},"dur":30,"tdur":0,"tts":1268243},
-{"pid":27411,"tid":27428,"ts":326461003743,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":66},"dur":30,"tdur":31,"tts":1268304},
-{"pid":27411,"tid":27428,"ts":326461003804,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":14},"dur":30,"tdur":0,"tts":1268396},
-{"pid":27411,"tid":27428,"ts":326461003895,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":128},"dur":31,"tdur":30,"tts":1268457},
-{"pid":27411,"tid":27428,"ts":326461004139,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":68},"dur":92,"tdur":92,"tts":1268548},
-{"pid":27411,"tid":27428,"ts":326461004139,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":1268548},
-{"pid":27411,"tid":27428,"ts":326461004292,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":195},"dur":30,"tdur":30,"tts":1268701},
-{"pid":27411,"tid":27428,"ts":326461005116,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1269555,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461005146,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":120},"dur":6501,"tdur":4884,"tts":1269555},
-{"pid":27411,"tid":27428,"ts":326461005177,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":6318,"tdur":4700,"tts":1269586},
-{"pid":27411,"tid":27428,"ts":326461011525,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1274317},
-{"pid":27411,"tid":27428,"ts":326461011586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1274378,"id":"0xaf88ce8efec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461011739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461001},"tts":1274530,"id":"0xaf88cda3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461011739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":366,"tdur":366,"tts":1274530},
-{"pid":27411,"tid":27428,"ts":326461011769,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":336,"tdur":335,"tts":1274561},
-{"pid":27411,"tid":27428,"ts":326461011769,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":122,"tdur":122,"tts":1274561},
-{"pid":27411,"tid":27428,"ts":326461034354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1274958,"id":"0xaf88cdbcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461034385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1274988},
-{"pid":27411,"tid":27428,"ts":326461034385,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1274988},
-{"pid":27411,"tid":27428,"ts":326461034385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1275019,"id":"0xaf88cdbdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461034477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1275080,"id":"0xaf88cdbdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461034477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5127,"tdur":5127,"tts":1275080},
-{"pid":27411,"tid":27428,"ts":326461034538,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14657},"dur":5005,"tdur":5005,"tts":1275141},
-{"pid":27411,"tid":27428,"ts":326461034538,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":5005,"tdur":4975,"tts":1275171},
-{"pid":27411,"tid":27428,"ts":326461034995,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":305,"tts":1275629},
-{"pid":27411,"tid":27428,"ts":326461035331,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53007428},"tts":1275934},
-{"pid":27411,"tid":27428,"ts":326461035331,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1275934},
-{"pid":27411,"tid":27428,"ts":326461035362,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":52675652},"tts":1275965},
-{"pid":27411,"tid":27428,"ts":326461035392,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1275995},
-{"pid":27411,"tid":27428,"ts":326461035392,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53007428},"tts":1275995},
-{"pid":27411,"tid":27428,"ts":326461035423,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":549,"tdur":549,"tts":1276026},
-{"pid":27411,"tid":27428,"ts":326461035453,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":519,"tdur":489,"tts":1276056},
-{"pid":27411,"tid":27428,"ts":326461036247,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":305,"tdur":275,"tts":1276880},
-{"pid":27411,"tid":27428,"ts":326461036521,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53339204},"tts":1277124},
-{"pid":27411,"tid":27428,"ts":326461036552,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1277155},
-{"pid":27411,"tid":27428,"ts":326461036552,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53007428},"tts":1277186},
-{"pid":27411,"tid":27428,"ts":326461036582,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1277186},
-{"pid":27411,"tid":27428,"ts":326461036613,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53339204},"tts":1277216},
-{"pid":27411,"tid":27428,"ts":326461036613,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":519,"tdur":519,"tts":1277216},
-{"pid":27411,"tid":27428,"ts":326461036643,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":489,"tdur":488,"tts":1277247},
-{"pid":27411,"tid":27428,"ts":326461037345,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":275,"tdur":274,"tts":1277949},
-{"pid":27411,"tid":27428,"ts":326461037620,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53670980},"tts":1278223},
-{"pid":27411,"tid":27428,"ts":326461037651,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1278254},
-{"pid":27411,"tid":27428,"ts":326461037651,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53339204},"tts":1278254},
-{"pid":27411,"tid":27428,"ts":326461037681,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1278284},
-{"pid":27411,"tid":27428,"ts":326461037681,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53670980},"tts":1278284},
-{"pid":27411,"tid":27428,"ts":326461037712,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":488,"tts":1278315},
-{"pid":27411,"tid":27428,"ts":326461037712,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":488,"tdur":488,"tts":1278315},
-{"pid":27411,"tid":27428,"ts":326461038475,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":244,"tdur":244,"tts":1279078},
-{"pid":27411,"tid":27428,"ts":326461038688,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54002756},"tts":1279291},
-{"pid":27411,"tid":27428,"ts":326461038719,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1279322},
-{"pid":27411,"tid":27428,"ts":326461038719,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":53670980},"tts":1279322},
-{"pid":27411,"tid":27428,"ts":326461038749,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1279352},
-{"pid":27411,"tid":27428,"ts":326461038749,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54002756},"tts":1279383},
-{"pid":27411,"tid":27428,"ts":326461038780,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":488,"tts":1279383},
-{"pid":27411,"tid":27428,"ts":326461038810,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":458,"tts":1279413},
-{"pid":27411,"tid":27428,"ts":326461039482,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":91},"dur":30,"tdur":30,"tts":1280085},
-{"pid":27411,"tid":27428,"ts":326461039512,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":133},"dur":31,"tdur":31,"tts":1280115},
-{"pid":27411,"tid":27428,"ts":326461039634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1280238,"id":"0xaf88cdbef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461039665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1280268},
-{"pid":27411,"tid":27428,"ts":326461039665,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1280268,"id":"0xaf88cdb8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461039696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1280299,"id":"0xaf88cdbff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461039726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1280329},
-{"pid":27411,"tid":27428,"ts":326461039726,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1280329},
-{"pid":27411,"tid":27428,"ts":326461039726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1280329,"id":"0xaf88cdb9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461039757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1280390,"id":"0xaf88cdb8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461039787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1280390},
-{"pid":27411,"tid":27428,"ts":326461039818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1280421,"id":"0xaf88cdb9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461039818,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5096,"tdur":4670,"tts":1280451},
-{"pid":27411,"tid":27428,"ts":326461039818,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1280451},
-{"pid":27411,"tid":27428,"ts":326461039940,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":122,"tdur":122,"tts":1280543},
-{"pid":27411,"tid":27428,"ts":326461040062,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4356},"dur":4822,"tdur":4395,"tts":1280695},
-{"pid":27411,"tid":27428,"ts":326461040092,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4792,"tdur":4395,"tts":1280695},
-{"pid":27411,"tid":27428,"ts":326461042625,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":133},"dur":31,"tdur":30,"tts":1283229},
-{"pid":27411,"tid":27428,"ts":326461042717,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":91},"dur":0,"tdur":0,"tts":1283320},
-{"pid":27411,"tid":27428,"ts":326461043327,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1283931,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461043358,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":121},"dur":1526,"tdur":1129,"tts":1283961},
-{"pid":27411,"tid":27428,"ts":326461043388,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1007,"tts":1283992},
-{"pid":27411,"tid":27428,"ts":326461044792,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1284999},
-{"pid":27411,"tid":27428,"ts":326461044823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1285029,"id":"0xaf88ce8ffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461348379,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1285151,"id":"0xaf88cdbaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461348379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1312,"tdur":1038,"tts":1285151},
-{"pid":27411,"tid":27428,"ts":326461348409,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":310},"dur":1282,"tdur":1007,"tts":1285182},
-{"pid":27411,"tid":27428,"ts":326461348409,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":305,"keep_awake_time":0},"dur":1282,"tdur":976,"tts":1285182},
-{"pid":27411,"tid":27428,"ts":326461348470,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:E4422E79"},"dur":275,"tdur":245,"tts":1285273},
-{"pid":27411,"tid":27428,"ts":326461349660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1286158,"id":"0xaf88cdbbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461370048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1286311,"id":"0xaf88cdb4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461370048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1286342},
-{"pid":27411,"tid":27428,"ts":326461370079,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1286342},
-{"pid":27411,"tid":27428,"ts":326461370079,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1286342,"id":"0xaf88cdb5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461370109,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1286403,"id":"0xaf88cdb5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461370140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":10529,"tdur":7965,"tts":1286403},
-{"pid":27411,"tid":27428,"ts":326461370170,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1286433},
-{"pid":27411,"tid":27428,"ts":326461370323,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15051},"dur":10255,"tdur":7661,"tts":1286616},
-{"pid":27411,"tid":27428,"ts":326461370353,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":10225,"tdur":7661,"tts":1286616},
-{"pid":27411,"tid":27428,"ts":326461370475,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":336,"tts":1286738},
-{"pid":27411,"tid":27428,"ts":326461370811,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54334532},"tts":1287074},
-{"pid":27411,"tid":27428,"ts":326461370842,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1287105},
-{"pid":27411,"tid":27428,"ts":326461370842,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54002756},"tts":1287135},
-{"pid":27411,"tid":27428,"ts":326461370872,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1287135},
-{"pid":27411,"tid":27428,"ts":326461370903,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54334532},"tts":1287166},
-{"pid":27411,"tid":27428,"ts":326461370903,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":518,"tdur":519,"tts":1287166},
-{"pid":27411,"tid":27428,"ts":326461370933,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":488,"tdur":489,"tts":1287196},
-{"pid":27411,"tid":27428,"ts":326461373039,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":275,"tdur":275,"tts":1288020},
-{"pid":27411,"tid":27428,"ts":326461373314,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54666308},"tts":1288295},
-{"pid":27411,"tid":27428,"ts":326461373314,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1288295},
-{"pid":27411,"tid":27428,"ts":326461373344,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54334532},"tts":1288325},
-{"pid":27411,"tid":27428,"ts":326461373344,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1288325},
-{"pid":27411,"tid":27428,"ts":326461373375,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54666308},"tts":1288356},
-{"pid":27411,"tid":27428,"ts":326461373375,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":519,"tdur":489,"tts":1288386},
-{"pid":27411,"tid":27428,"ts":326461373405,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":489,"tdur":458,"tts":1288386},
-{"pid":27411,"tid":27428,"ts":326461374504,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":427,"tdur":397,"tts":1289363},
-{"pid":27411,"tid":27428,"ts":326461374504,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1289363},
-{"pid":27411,"tid":27428,"ts":326461374901,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54998084},"tts":1289729},
-{"pid":27411,"tid":27428,"ts":326461374931,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1289760},
-{"pid":27411,"tid":27428,"ts":326461374962,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54666308},"tts":1289790},
-{"pid":27411,"tid":27428,"ts":326461374992,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1289821},
-{"pid":27411,"tid":27428,"ts":326461375023,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54998084},"tts":1289851},
-{"pid":27411,"tid":27428,"ts":326461375053,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":1038,"tdur":610,"tts":1289882},
-{"pid":27411,"tid":27428,"ts":326461375053,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":1038,"tdur":610,"tts":1289882},
-{"pid":27411,"tid":27428,"ts":326461375053,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":1289882},
-{"pid":27411,"tid":27428,"ts":326461376732,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":458,"tdur":366,"tts":1290798},
-{"pid":27411,"tid":27428,"ts":326461376732,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":30,"tts":1290798},
-{"pid":27411,"tid":27428,"ts":326461377159,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55329860},"tts":1291133},
-{"pid":27411,"tid":27428,"ts":326461377190,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1291164},
-{"pid":27411,"tid":27428,"ts":326461377220,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":54998084},"tts":1291194},
-{"pid":27411,"tid":27428,"ts":326461377220,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":0,"tts":1291225},
-{"pid":27411,"tid":27428,"ts":326461377251,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55329860},"tts":1291225},
-{"pid":27411,"tid":27428,"ts":326461377281,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1291255},
-{"pid":27411,"tid":27428,"ts":326461377281,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":458,"tts":1291255},
-{"pid":27411,"tid":27428,"ts":326461378166,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":245,"tdur":245,"tts":1292018},
-{"pid":27411,"tid":27428,"ts":326461378380,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55661636},"tts":1292232},
-{"pid":27411,"tid":27474,"ts":326461347677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":86952,"id":"0xaf88cdbaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461347677,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":86952},
-{"pid":27411,"tid":27474,"ts":326461369865,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":87135},
-{"pid":27411,"tid":27474,"ts":326461369895,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":87166},
-{"pid":27411,"tid":27474,"ts":326461369895,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87166,"id":"0xccc57802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461369926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":87196,"id":"0xaf88cdb4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461375236,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":87288},
-{"pid":27411,"tid":27474,"ts":326461375267,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":310},"dur":61,"tdur":61,"tts":87318},
-{"pid":27411,"tid":27474,"ts":326461375267,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87318,"id":"0xba462602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461375298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":87349,"id":"0xaf88cdb6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461381218,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":214,"tts":87440},
-{"pid":27411,"tid":27474,"ts":326461381249,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":87471},
-{"pid":27411,"tid":27474,"ts":326461381280,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87501,"id":"0xccc57b02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461381280,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":87501,"id":"0xaf88cdb7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461381341,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":87562},
-{"pid":27411,"tid":27474,"ts":326461381341,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87562,"id":"0xccc57c06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461381371,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87593,"id":"0xc4c1ca0a"},
-{"pid":27411,"tid":27474,"ts":326461381402,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":87623,"id":"0xaf88cdb0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461385125,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":87685},
-{"pid":27411,"tid":27474,"ts":326461385156,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":87715},
-{"pid":27411,"tid":27474,"ts":326461385156,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87715,"id":"0xba462902","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461385186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":87746,"id":"0xaf88cdb2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461403651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":87807,"id":"0xaf88ce88fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461403681,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":87837},
-{"pid":27411,"tid":27474,"ts":326461403681,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87837,"id":"0xc4c1cc02"},
-{"pid":27411,"tid":27474,"ts":326461480074,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":336,"tdur":244,"tts":87929},
-{"pid":27411,"tid":27474,"ts":326461480104,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":87959},
-{"pid":27411,"tid":27474,"ts":326461480104,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":87959,"id":"0xccc59702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461480135,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":87990,"id":"0xaf88ca4df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461480196,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":214,"tdur":122,"tts":88051},
-{"pid":27411,"tid":27474,"ts":326461480196,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88051,"id":"0xccc59806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461480227,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88081,"id":"0xc4c1cd0a"},
-{"pid":27411,"tid":27474,"ts":326461480379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":88142,"id":"0xaf88ca4ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461482790,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":244,"tts":88234},
-{"pid":27411,"tid":27474,"ts":326461482821,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":88264},
-{"pid":27411,"tid":27474,"ts":326461482821,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88264,"id":"0xba463702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461482851,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":88295,"id":"0xaf88ca49f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461482912,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":88356},
-{"pid":27411,"tid":27474,"ts":326461482912,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88356,"id":"0xba463806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461482943,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88386,"id":"0xc4c1cf0a"},
-{"pid":27411,"tid":27474,"ts":326461483004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":88448,"id":"0xaf88ca4bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461484347,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":88509},
-{"pid":27411,"tid":27474,"ts":326461484377,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":88539},
-{"pid":27411,"tid":27474,"ts":326461484377,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88539,"id":"0xba463a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461484408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":88570,"id":"0xaf88ca45f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461491305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":88661,"id":"0xaf88ce89fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461491336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":88692},
-{"pid":27411,"tid":27474,"ts":326461491336,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88692,"id":"0xc4c1d102"},
-{"pid":27411,"tid":27474,"ts":326461500706,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":274,"tdur":275,"tts":88844},
-{"pid":27411,"tid":27474,"ts":326461500736,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":88905},
-{"pid":27411,"tid":27474,"ts":326461500767,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88905,"id":"0xccc59c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461500767,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":88936,"id":"0xaf88ca47f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461500828,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":88966},
-{"pid":27411,"tid":27474,"ts":326461500828,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88997,"id":"0xccc59d06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461500858,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":88997,"id":"0xc4c1d20a"},
-{"pid":27411,"tid":27474,"ts":326461500919,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":89058,"id":"0xaf88ca41f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461511510,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":214,"tdur":214,"tts":89180},
-{"pid":27411,"tid":27474,"ts":326461511540,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":89211},
-{"pid":27411,"tid":27474,"ts":326461511540,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":89241,"id":"0xba463d02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461511571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":89241,"id":"0xaf88ca42f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461511602,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":89272},
-{"pid":27411,"tid":27474,"ts":326461511602,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":89272,"id":"0xba463e06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461511632,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":89302,"id":"0xc4c1d30a"},
-{"pid":27411,"tid":27474,"ts":326461511693,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":89363,"id":"0xaf88ca43f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461378411,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1292263},
-{"pid":27411,"tid":27428,"ts":326461378472,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55329860},"tts":1292324},
-{"pid":27411,"tid":27428,"ts":326461378472,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1292324},
-{"pid":27411,"tid":27428,"ts":326461378502,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55661636},"tts":1292354},
-{"pid":27411,"tid":27428,"ts":326461378502,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1292354},
-{"pid":27411,"tid":27428,"ts":326461378533,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":427,"tdur":427,"tts":1292385},
-{"pid":27411,"tid":27428,"ts":326461379357,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":305,"tdur":305,"tts":1293117},
-{"pid":27411,"tid":27428,"ts":326461379631,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55993412},"tts":1293392},
-{"pid":27411,"tid":27428,"ts":326461379662,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1293422},
-{"pid":27411,"tid":27428,"ts":326461379692,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55661636},"tts":1293453},
-{"pid":27411,"tid":27428,"ts":326461379692,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1293453},
-{"pid":27411,"tid":27428,"ts":326461379692,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55993412},"tts":1293483},
-{"pid":27411,"tid":27428,"ts":326461379723,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":519,"tdur":519,"tts":1293483},
-{"pid":27411,"tid":27428,"ts":326461379753,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":458,"tts":1293514},
-{"pid":27411,"tid":27428,"ts":326461380700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1294399,"id":"0xaf88cdb6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461380700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1294430},
-{"pid":27411,"tid":27428,"ts":326461380730,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":310},"dur":31,"tdur":30,"tts":1294430},
-{"pid":27411,"tid":27428,"ts":326461380730,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":10,"keep_awake_time":0},"dur":31,"tdur":0,"tts":1294460},
-{"pid":27411,"tid":27428,"ts":326461381371,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1294552,"id":"0xaf88cdb7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461381371,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":30,"tts":1294552},
-{"pid":27411,"tid":27428,"ts":326461381371,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":183,"tdur":30,"tts":1294552},
-{"pid":27411,"tid":27428,"ts":326461381371,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":1294552},
-{"pid":27411,"tid":27428,"ts":326461381554,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1294582,"id":"0xaf88cdb1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461381585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1294613,"id":"0xaf88cdb0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461381585,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1294613},
-{"pid":27411,"tid":27428,"ts":326461381615,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1294643,"id":"0xaf88cdb1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461381615,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":13673,"tdur":8424,"tts":1294643},
-{"pid":27411,"tid":27428,"ts":326461381676,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15669},"dur":13460,"tdur":8210,"tts":1294704},
-{"pid":27411,"tid":27428,"ts":326461381676,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":13460,"tdur":8210,"tts":1294704},
-{"pid":27411,"tid":27428,"ts":326461381737,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":458,"tdur":305,"tts":1294765},
-{"pid":27411,"tid":27428,"ts":326461382165,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56325188},"tts":1295070},
-{"pid":27411,"tid":27428,"ts":326461382195,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1295070},
-{"pid":27411,"tid":27428,"ts":326461382226,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":55993412},"tts":1295101},
-{"pid":27411,"tid":27428,"ts":326461382226,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1295101},
-{"pid":27411,"tid":27428,"ts":326461382256,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56325188},"tts":1295131},
-{"pid":27411,"tid":27428,"ts":326461382256,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":489,"tts":1295131},
-{"pid":27411,"tid":27428,"ts":326461382287,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":457,"tdur":458,"tts":1295162},
-{"pid":27411,"tid":27428,"ts":326461383141,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":305,"tdur":305,"tts":1295925},
-{"pid":27411,"tid":27428,"ts":326461383416,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56656964},"tts":1296200},
-{"pid":27411,"tid":27428,"ts":326461383446,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1296230},
-{"pid":27411,"tid":27428,"ts":326461383477,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56325188},"tts":1296261},
-{"pid":27411,"tid":27428,"ts":326461383477,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1296261},
-{"pid":27411,"tid":27428,"ts":326461383477,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56656964},"tts":1296291},
-{"pid":27411,"tid":27428,"ts":326461383508,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":457,"tdur":458,"tts":1296291},
-{"pid":27411,"tid":27428,"ts":326461383538,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":427,"tdur":427,"tts":1296322},
-{"pid":27411,"tid":27428,"ts":326461384545,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":275,"tdur":275,"tts":1296993},
-{"pid":27411,"tid":27428,"ts":326461384789,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56988740},"tts":1297237},
-{"pid":27411,"tid":27428,"ts":326461384820,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1297268},
-{"pid":27411,"tid":27428,"ts":326461384850,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56656964},"tts":1297298},
-{"pid":27411,"tid":27428,"ts":326461384850,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1297298},
-{"pid":27411,"tid":27428,"ts":326461384850,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56988740},"tts":1297329},
-{"pid":27411,"tid":27428,"ts":326461384881,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1297329},
-{"pid":27411,"tid":27428,"ts":326461384911,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":428,"tdur":428,"tts":1297359},
-{"pid":27411,"tid":27428,"ts":326461385705,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":397,"tdur":366,"tts":1298184},
-{"pid":27411,"tid":27428,"ts":326461386071,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57320516},"tts":1298519},
-{"pid":27411,"tid":27428,"ts":326461386132,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1298580},
-{"pid":27411,"tid":27428,"ts":326461386163,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":56988740},"tts":1298611},
-{"pid":27411,"tid":27428,"ts":326461386193,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1298641},
-{"pid":27411,"tid":27428,"ts":326461386224,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57320516},"tts":1298672},
-{"pid":27411,"tid":27428,"ts":326461386254,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":550,"tdur":550,"tts":1298702},
-{"pid":27411,"tid":27428,"ts":326461386285,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":488,"tdur":488,"tts":1298733},
-{"pid":27411,"tid":27428,"ts":326461387292,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":336,"tts":1299587},
-{"pid":27411,"tid":27428,"ts":326461387597,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57652292},"tts":1299893},
-{"pid":27411,"tid":27428,"ts":326461387658,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":122,"tdur":91,"tts":1299954},
-{"pid":27411,"tid":27428,"ts":326461387689,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57320516},"tts":1299984},
-{"pid":27411,"tid":27428,"ts":326461387689,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1299984},
-{"pid":27411,"tid":27428,"ts":326461387780,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1300076},
-{"pid":27411,"tid":27428,"ts":326461387811,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57652292},"tts":1300106},
-{"pid":27411,"tid":27428,"ts":326461387841,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":519,"tdur":519,"tts":1300137},
-{"pid":27411,"tid":27428,"ts":326461387841,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":519,"tdur":519,"tts":1300137},
-{"pid":27411,"tid":27428,"ts":326461388818,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":366,"tdur":366,"tts":1301022},
-{"pid":27411,"tid":27428,"ts":326461389184,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57984068},"tts":1301388},
-{"pid":27411,"tid":27428,"ts":326461389215,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1301419},
-{"pid":27411,"tid":27428,"ts":326461389215,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57652292},"tts":1301419},
-{"pid":27411,"tid":27428,"ts":326461389245,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1301449},
-{"pid":27411,"tid":27428,"ts":326461389276,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57984068},"tts":1301480},
-{"pid":27411,"tid":27428,"ts":326461389306,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":611,"tdur":580,"tts":1301541},
-{"pid":27411,"tid":27428,"ts":326461389337,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":549,"tdur":519,"tts":1301571},
-{"pid":27411,"tid":27428,"ts":326461392938,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":231},"dur":61,"tdur":61,"tts":1302456},
-{"pid":27411,"tid":27428,"ts":326461392999,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":45},"dur":1801,"tdur":61,"tts":1302517},
-{"pid":27411,"tid":27428,"ts":326461392999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1771,"tdur":0,"tts":1302517},
-{"pid":27411,"tid":27428,"ts":326461394800,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":126},"dur":61,"tdur":61,"tts":1302578},
-{"pid":27411,"tid":27428,"ts":326461394861,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":211},"dur":31,"tdur":31,"tts":1302639},
-{"pid":27411,"tid":27428,"ts":326461394922,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":232},"dur":0,"tdur":0,"tts":1302701},
-{"pid":27411,"tid":27428,"ts":326461394922,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":205},"dur":31,"tdur":30,"tts":1302701},
-{"pid":27411,"tid":27428,"ts":326461394953,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":92},"dur":30,"tdur":31,"tts":1302731},
-{"pid":27411,"tid":27428,"ts":326461394983,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":143},"dur":0,"tdur":0,"tts":1302762},
-{"pid":27411,"tid":27428,"ts":326461394983,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":107},"dur":31,"tdur":30,"tts":1302762},
-{"pid":27411,"tid":27428,"ts":326461395014,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":14},"dur":30,"tdur":31,"tts":1302792},
-{"pid":27411,"tid":27428,"ts":326461395044,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":36},"dur":31,"tdur":0,"tts":1302823},
-{"pid":27411,"tid":27428,"ts":326461395075,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":54},"dur":61,"tdur":61,"tts":1302853},
-{"pid":27411,"tid":27428,"ts":326461395258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1303036,"id":"0xaf88cdb3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461395349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461389},"tts":1303097,"id":"0xaf88cdbbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461395380,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/image_transport_surface_android.cc","src_func":"ScheduleWakeUp"},"dur":0,"tdur":0,"tts":1303128},
-{"pid":27411,"tid":27428,"ts":326461395380,"ph":"X","cat":"gpu","name":"ImageTransportSurfaceAndroid::ScheduleWakeUp","args":{"idle_time":13,"keep_awake_time":14},"dur":0,"tdur":0,"tts":1303128},
-{"pid":27411,"tid":27428,"ts":326461395410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1303158,"id":"0xaf88cdb2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461395410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":916,"tdur":92,"tts":1303158},
-{"pid":27411,"tid":27428,"ts":326461395410,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":916,"tdur":92,"tts":1303158},
-{"pid":27411,"tid":27428,"ts":326461395410,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":855,"tdur":31,"tts":1303158},
-{"pid":27411,"tid":27428,"ts":326461396296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1303219,"id":"0xaf88ca4cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461396357,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1303280,"id":"0xaf88cdb3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461396387,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1303311},
-{"pid":27411,"tid":27428,"ts":326461396479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1303403,"id":"0xaf88ca4cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461396479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":8698,"tdur":5920,"tts":1303403},
-{"pid":27411,"tid":27428,"ts":326461396540,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":519,"tdur":91,"tts":1303464},
-{"pid":27411,"tid":27428,"ts":326461397364,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9366},"dur":7782,"tdur":5677,"tts":1303616},
-{"pid":27411,"tid":27428,"ts":326461397394,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7752,"tdur":5646,"tts":1303647},
-{"pid":27411,"tid":27428,"ts":326461397913,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":54},"dur":122,"tdur":30,"tts":1304166},
-{"pid":27411,"tid":27428,"ts":326461397913,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":1304166},
-{"pid":27411,"tid":27428,"ts":326461398127,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":36},"dur":0,"tdur":0,"tts":1304318},
-{"pid":27411,"tid":27428,"ts":326461398188,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":14},"dur":30,"tdur":31,"tts":1304379},
-{"pid":27411,"tid":27428,"ts":326461398279,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":107},"dur":31,"tdur":30,"tts":1304471},
-{"pid":27411,"tid":27428,"ts":326461398340,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":143},"dur":61,"tdur":31,"tts":1304562},
-{"pid":27411,"tid":27428,"ts":326461398524,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":92},"dur":30,"tdur":30,"tts":1304654},
-{"pid":27411,"tid":27428,"ts":326461398585,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":205},"dur":244,"tdur":30,"tts":1304715},
-{"pid":27411,"tid":27428,"ts":326461398890,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":232},"dur":30,"tdur":30,"tts":1304837},
-{"pid":27411,"tid":27428,"ts":326461398981,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":211},"dur":0,"tdur":0,"tts":1304929},
-{"pid":27411,"tid":27428,"ts":326461399042,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":126},"dur":31,"tdur":30,"tts":1304990},
-{"pid":27411,"tid":27428,"ts":326461399134,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":45},"dur":0,"tdur":0,"tts":1305081},
-{"pid":27411,"tid":27428,"ts":326461399225,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":231},"dur":0,"tdur":0,"tts":1305173},
-{"pid":27411,"tid":27428,"ts":326461402339,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1308164,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461402369,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":122},"dur":2777,"tdur":1099,"tts":1308194},
-{"pid":27411,"tid":27428,"ts":326461402400,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1159,"tdur":976,"tts":1308225},
-{"pid":27411,"tid":27428,"ts":326461403559,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":1557,"tdur":61,"tts":1309201},
-{"pid":27411,"tid":27428,"ts":326461403590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1309232,"id":"0xaf88ce88fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461480196,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1309384,"id":"0xaf88ca4df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461480227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":153,"tts":1309415},
-{"pid":27411,"tid":27428,"ts":326461480227,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":152,"tdur":153,"tts":1309415},
-{"pid":27411,"tid":27428,"ts":326461480257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1309446,"id":"0xaf88ca4ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461480257,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":1309446},
-{"pid":27411,"tid":27428,"ts":326461480410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1309598,"id":"0xaf88ca4ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461480410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":213,"tdur":214,"tts":1309598},
-{"pid":27411,"tid":27428,"ts":326461480440,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":91,"tts":1309629},
-{"pid":27411,"tid":27428,"ts":326461480562,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15675},"dur":61,"tdur":61,"tts":1309751},
-{"pid":27411,"tid":27428,"ts":326461480593,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":30,"tdur":31,"tts":1309781},
-{"pid":27411,"tid":27428,"ts":326461480654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1309842,"id":"0xaf88ca4ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461480654,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1309842},
-{"pid":27411,"tid":27428,"ts":326461480684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1309873,"id":"0xaf88ca48f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461480715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1309903,"id":"0xaf88ca48f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461480715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1309903},
-{"pid":27411,"tid":27428,"ts":326461482912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1309995,"id":"0xaf88ca49f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461482943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1310025},
-{"pid":27411,"tid":27428,"ts":326461482943,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":1310025},
-{"pid":27411,"tid":27428,"ts":326461482973,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1310056,"id":"0xaf88ca4af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461483034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1310117,"id":"0xaf88ca4af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461483034,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":306,"tdur":305,"tts":1310117},
-{"pid":27411,"tid":27428,"ts":326461483065,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1310148},
-{"pid":27411,"tid":27428,"ts":326461483157,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9534},"dur":152,"tdur":153,"tts":1310239},
-{"pid":27411,"tid":27428,"ts":326461483157,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":152,"tdur":153,"tts":1310239},
-{"pid":27411,"tid":27428,"ts":326461483340,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1310422,"id":"0xaf88ca4bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461483370,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1310453},
-{"pid":27411,"tid":27428,"ts":326461483370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1310453,"id":"0xaf88ca44f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461483401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1310483,"id":"0xaf88ca44f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461483401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1310483},
-{"pid":27411,"tid":27428,"ts":326461484469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1310605,"id":"0xaf88ca45f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461484469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1310636},
-{"pid":27411,"tid":27428,"ts":326461484499,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1310636},
-{"pid":27411,"tid":27428,"ts":326461484499,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1310636,"id":"0xaf88ca46f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461484530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1310666,"id":"0xaf88ca46f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461484560,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6776,"tdur":4914,"tts":1310697},
-{"pid":27411,"tid":27428,"ts":326461484591,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13788},"dur":6714,"tdur":4853,"tts":1310727},
-{"pid":27411,"tid":27428,"ts":326461484591,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":6714,"tdur":4853,"tts":1310727},
-{"pid":27411,"tid":27428,"ts":326461488223,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1314207,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461488223,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":123},"dur":3082,"tdur":1373,"tts":1314207},
-{"pid":27411,"tid":27428,"ts":326461488284,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":2686,"tdur":976,"tts":1314268},
-{"pid":27411,"tid":27428,"ts":326461491183,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461481447.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461488253.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902027.0,"time":326461454712.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461448000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461480532.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461457306.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461490970.0},"coordinates":[{"x":259.3809814453125,"y":735.738037109375},{"x":465.20831298828125,"y":566.6726684570312}],"trace_id":12884902027.0}},"tts":1315458,"id":"0x30000008b"},
-{"pid":27411,"tid":27428,"ts":326461491183,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1315458,"id":"0x30000008b","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461491214,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1315489},
-{"pid":27411,"tid":27428,"ts":326461491244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1315519,"id":"0xaf88ce89fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461500858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1315763,"id":"0xaf88ca47f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461500858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1315763},
-{"pid":27411,"tid":27428,"ts":326461500889,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1315794},
-{"pid":27411,"tid":27428,"ts":326461500889,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1315794,"id":"0xaf88ca40f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461500980,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1315885,"id":"0xaf88ca40f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461500980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":12148,"tdur":11201,"tts":1315885},
-{"pid":27411,"tid":27428,"ts":326461501011,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":91,"tts":1315916},
-{"pid":27411,"tid":27428,"ts":326461501133,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16219},"dur":11720,"tdur":10804,"tts":1316038},
-{"pid":27411,"tid":27428,"ts":326461501164,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":11689,"tdur":10774,"tts":1316068},
-{"pid":27411,"tid":27428,"ts":326461501225,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":335,"tdur":335,"tts":1316130},
-{"pid":27411,"tid":27428,"ts":326461501560,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58315844},"tts":1316465},
-{"pid":27411,"tid":27428,"ts":326461501591,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1316496},
-{"pid":27411,"tid":27428,"ts":326461501591,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":57984068},"tts":1316496},
-{"pid":27411,"tid":27428,"ts":326461501621,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1316526},
-{"pid":27411,"tid":27428,"ts":326461501621,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58315844},"tts":1316557},
-{"pid":27411,"tid":27428,"ts":326461501652,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":549,"tdur":549,"tts":1316557},
-{"pid":27411,"tid":27428,"ts":326461501682,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":489,"tdur":489,"tts":1316587},
-{"pid":27411,"tid":27428,"ts":326461502720,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":305,"tdur":306,"tts":1317533},
-{"pid":27411,"tid":27428,"ts":326461503025,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58647620},"tts":1317839},
-{"pid":27411,"tid":27428,"ts":326461503056,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1317869},
-{"pid":27411,"tid":27428,"ts":326461503056,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58315844},"tts":1317869},
-{"pid":27411,"tid":27428,"ts":326461503086,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1317900},
-{"pid":27411,"tid":27428,"ts":326461503086,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58647620},"tts":1317900},
-{"pid":27411,"tid":27428,"ts":326461503117,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":549,"tdur":550,"tts":1317930},
-{"pid":27411,"tid":27428,"ts":326461503117,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1317930},
-{"pid":27411,"tid":27428,"ts":326461503178,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":488,"tdur":489,"tts":1317991},
-{"pid":27411,"tid":27428,"ts":326461504124,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":275,"tdur":274,"tts":1318846},
-{"pid":27411,"tid":27428,"ts":326461504368,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58979396},"tts":1319090},
-{"pid":27411,"tid":27428,"ts":326461504399,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1319120},
-{"pid":27411,"tid":27428,"ts":326461504429,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58647620},"tts":1319151},
-{"pid":27411,"tid":27428,"ts":326461504460,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1319182},
-{"pid":27411,"tid":27428,"ts":326461504460,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58979396},"tts":1319182},
-{"pid":27411,"tid":27428,"ts":326461504490,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":702,"tdur":549,"tts":1319212},
-{"pid":27411,"tid":27428,"ts":326461504521,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":671,"tdur":518,"tts":1319243},
-{"pid":27411,"tid":27428,"ts":326461505650,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":305,"tts":1320189},
-{"pid":27411,"tid":27428,"ts":326461505955,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59311172},"tts":1320494},
-{"pid":27411,"tid":27428,"ts":326461506016,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1320524},
-{"pid":27411,"tid":27428,"ts":326461506016,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":58979396},"tts":1320524},
-{"pid":27411,"tid":27428,"ts":326461506047,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1320555},
-{"pid":27411,"tid":27428,"ts":326461506077,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59311172},"tts":1320585},
-{"pid":27411,"tid":27428,"ts":326461506108,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1320616},
-{"pid":27411,"tid":27428,"ts":326461506108,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":458,"tts":1320616},
-{"pid":27411,"tid":27428,"ts":326461506840,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":336,"tts":1321318},
-{"pid":27411,"tid":27428,"ts":326461507146,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59642948},"tts":1321623},
-{"pid":27411,"tid":27428,"ts":326461507176,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1321654},
-{"pid":27411,"tid":27428,"ts":326461507207,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59311172},"tts":1321684},
-{"pid":27411,"tid":27428,"ts":326461507207,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1321684},
-{"pid":27411,"tid":27428,"ts":326461507207,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59642948},"tts":1321715},
-{"pid":27411,"tid":27428,"ts":326461507237,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":488,"tts":1321715},
-{"pid":27411,"tid":27428,"ts":326461507268,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":457,"tdur":458,"tts":1321745},
-{"pid":27411,"tid":27428,"ts":326461508122,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":336,"tts":1322600},
-{"pid":27411,"tid":27428,"ts":326461508427,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59974724},"tts":1322936},
-{"pid":27411,"tid":27428,"ts":326461508488,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1322966},
-{"pid":27411,"tid":27428,"ts":326461508519,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59642948},"tts":1322997},
-{"pid":27411,"tid":27428,"ts":326461508549,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1323027},
-{"pid":27411,"tid":27428,"ts":326461508549,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59974724},"tts":1323027},
-{"pid":27411,"tid":27428,"ts":326461508580,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":1007,"tdur":702,"tts":1323058},
-{"pid":27411,"tid":27428,"ts":326461508611,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":976,"tdur":672,"tts":1323088},
-{"pid":27411,"tid":27428,"ts":326461509984,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":366,"tdur":336,"tts":1324126},
-{"pid":27411,"tid":27428,"ts":326461510320,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60306500},"tts":1324462},
-{"pid":27411,"tid":27428,"ts":326461510381,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1324492},
-{"pid":27411,"tid":27428,"ts":326461510381,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":59974724},"tts":1324492},
-{"pid":27411,"tid":27428,"ts":326461510442,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1324523},
-{"pid":27411,"tid":27428,"ts":326461510442,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60306500},"tts":1324523},
-{"pid":27411,"tid":27428,"ts":326461510472,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1324553},
-{"pid":27411,"tid":27428,"ts":326461510503,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":427,"tdur":427,"tts":1324584},
-{"pid":27411,"tid":27428,"ts":326461511266,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":336,"tdur":335,"tts":1325347},
-{"pid":27411,"tid":27428,"ts":326461511571,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60638276},"tts":1325682},
-{"pid":27411,"tid":27428,"ts":326461511602,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1325682},
-{"pid":27411,"tid":27428,"ts":326461511632,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60306500},"tts":1325713},
-{"pid":27411,"tid":27428,"ts":326461511663,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":91,"tdur":61,"tts":1325774},
-{"pid":27411,"tid":27428,"ts":326461511724,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60638276},"tts":1325804},
-{"pid":27411,"tid":27428,"ts":326461511754,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":672,"tdur":671,"tts":1325835},
-{"pid":27411,"tid":27428,"ts":326461511785,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":641,"tdur":610,"tts":1325896},
-{"pid":27411,"tid":27428,"ts":326461513158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1327147,"id":"0xaf88ca41f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1327178},
-{"pid":27411,"tid":27428,"ts":326461513250,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1327239,"id":"0xaf88ca5cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513280,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1327269,"id":"0xaf88ca42f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513280,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1327269},
-{"pid":27411,"tid":27428,"ts":326461513311,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":1327300},
-{"pid":27411,"tid":27428,"ts":326461513311,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1327300,"id":"0xaf88ca5df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1327330,"id":"0xaf88ca43f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1327330},
-{"pid":27411,"tid":27428,"ts":326461513372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1327361,"id":"0xaf88ca5cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513402,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1327392},
-{"pid":27411,"tid":27428,"ts":326461513463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1327453,"id":"0xaf88ca5df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461513494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":549,"tdur":549,"tts":1327483},
-{"pid":27411,"tid":27428,"ts":326461513555,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":213,"tdur":214,"tts":1327544},
-{"pid":27411,"tid":27428,"ts":326461513555,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":92,"tts":1327544},
-{"pid":27411,"tid":27428,"ts":326461513829,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":13806},"dur":153,"tdur":152,"tts":1327819},
-{"pid":27411,"tid":27428,"ts":326461513860,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":122,"tdur":122,"tts":1327849},
-{"pid":27411,"tid":27428,"ts":326461514013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1328002,"id":"0xaf88ca5ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461514074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1328063,"id":"0xaf88ca5ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461514104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":62,"tts":1328093},
-{"pid":27411,"tid":27428,"ts":326461515081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1328246,"id":"0xaf88ca5ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461515111,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1328277},
-{"pid":27411,"tid":27428,"ts":326461515111,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1328277},
-{"pid":27411,"tid":27428,"ts":326461515172,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1328338,"id":"0xaf88ca58f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461515203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1328368,"id":"0xaf88ca58f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461515203,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":11048,"tdur":6257,"tts":1328368},
-{"pid":27411,"tid":27428,"ts":326461515233,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":1186},"dur":11018,"tdur":6226,"tts":1328399},
-{"pid":27411,"tid":27428,"ts":326461515264,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":10957,"tdur":6165,"tts":1328429},
-{"pid":27411,"tid":27428,"ts":326461524084,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1333404,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461524084,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":124},"dur":2137,"tdur":1190,"tts":1333404},
-{"pid":27411,"tid":27428,"ts":326461524145,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1832,"tdur":855,"tts":1333465},
-{"pid":27411,"tid":27428,"ts":326461526068,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461503422.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461524115.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902028.0,"time":326461471315.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461465000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461501102.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461476839.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461525977.0},"coordinates":[{"x":254.9284210205078,"y":743.7979125976562},{"x":471.7621154785156,"y":556.8568725585938}],"trace_id":12884902028.0}},"tts":1334442,"id":"0x30000008c"},
-{"pid":27411,"tid":27428,"ts":326461526068,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1334442,"id":"0x30000008c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461526160,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1334533},
-{"pid":27411,"tid":27428,"ts":326461526160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1334533,"id":"0xaf88ce8afec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461527899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1334716,"id":"0xaf88ca59f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461527899,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1334716},
-{"pid":27411,"tid":27428,"ts":326461527930,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1334747},
-{"pid":27411,"tid":27428,"ts":326461527930,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1334747,"id":"0xaf88ca5af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461527960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1334777,"id":"0xaf88ca5af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461527991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":9522,"tdur":8820,"tts":1334808},
-{"pid":27411,"tid":27428,"ts":326461528021,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":123,"tdur":123,"tts":1334838},
-{"pid":27411,"tid":27428,"ts":326461528174,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16694},"dur":9187,"tdur":8485,"tts":1334991},
-{"pid":27411,"tid":27428,"ts":326461528174,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":9187,"tdur":8485,"tts":1334991},
-{"pid":27411,"tid":27428,"ts":326461528266,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":366,"tdur":366,"tts":1335083},
-{"pid":27411,"tid":27428,"ts":326461528601,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60970052},"tts":1335418},
-{"pid":27411,"tid":27428,"ts":326461528632,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1335449},
-{"pid":27411,"tid":27428,"ts":326461528632,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60638276},"tts":1335449},
-{"pid":27411,"tid":27428,"ts":326461528662,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1335479},
-{"pid":27411,"tid":27428,"ts":326461528662,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60970052},"tts":1335479},
-{"pid":27411,"tid":27428,"ts":326461528693,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":641,"tdur":641,"tts":1335510},
-{"pid":27411,"tid":27428,"ts":326461528723,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":611,"tdur":611,"tts":1335540},
-{"pid":27411,"tid":27428,"ts":326461529517,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":549,"tdur":397,"tts":1336334},
-{"pid":27411,"tid":27428,"ts":326461529517,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1336334},
-{"pid":27411,"tid":27428,"ts":326461530066,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61301828},"tts":1336731},
-{"pid":27411,"tid":27428,"ts":326461530097,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1336761},
-{"pid":27411,"tid":27428,"ts":326461530097,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":60970052},"tts":1336761},
-{"pid":27411,"tid":27428,"ts":326461530127,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1336792},
-{"pid":27411,"tid":27428,"ts":326461530158,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61301828},"tts":1336822},{"pid":27443,"tid":27466,"ts":326458270430,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":226186},
-{"pid":27443,"tid":27466,"ts":326458270460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":226216,"id":"0xaf88ab84f182217a"},
-{"pid":27443,"tid":27466,"ts":326458270491,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":518,"tdur":92,"tts":226247},
-{"pid":27443,"tid":27466,"ts":326458270521,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226278,"id":"0xba442002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458270521,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":458,"tdur":0,"tts":226278},
-{"pid":27443,"tid":27466,"ts":326458271009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":226339,"id":"0xaf88ab85f182217a"},
-{"pid":27443,"tid":27466,"ts":326458274153,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":226400},
-{"pid":27443,"tid":27466,"ts":326458274184,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":226430},
-{"pid":27443,"tid":27466,"ts":326458274184,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226430,"id":"0xba442102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458274214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":226491,"id":"0xaf88ab86f182217a"},
-{"pid":27443,"tid":27466,"ts":326458287063,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":226552},
-{"pid":27443,"tid":27466,"ts":326458287094,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":226583},
-{"pid":27443,"tid":27466,"ts":326458287124,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226583,"id":"0xba442302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458287155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":226613,"id":"0xaf88ab9df182217a"},
-{"pid":27443,"tid":27466,"ts":326458293442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":226766,"id":"0xaf88adeef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458293442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":226766},
-{"pid":27443,"tid":27466,"ts":326458293472,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226796,"id":"0xccc39202"},
-{"pid":27443,"tid":27466,"ts":326458294296,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":226888},
-{"pid":27443,"tid":27466,"ts":326458294327,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":226918},
-{"pid":27443,"tid":27466,"ts":326458294327,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":226918,"id":"0xba442402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458294357,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":226949},
-{"pid":27443,"tid":27466,"ts":326458294388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":226979,"id":"0xaf88ab97f182217a"},
-{"pid":27443,"tid":27466,"ts":326458294846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":227041,"id":"0xaf88adeff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458294876,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":227071},
-{"pid":27443,"tid":27466,"ts":326458294876,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227071,"id":"0xccc39306"},
-{"pid":27443,"tid":27466,"ts":326458295059,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":227163},
-{"pid":27443,"tid":27466,"ts":326458295090,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":227193},
-{"pid":27443,"tid":27466,"ts":326458295090,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227193,"id":"0xc4c0ec0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458295548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":227285,"id":"0xaf88ade8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458295578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":227315},
-{"pid":27443,"tid":27466,"ts":326458295578,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227315,"id":"0xccc39402"},
-{"pid":27443,"tid":27466,"ts":326458296952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":227407,"id":"0xaf88ade9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458296982,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":227437},
-{"pid":27443,"tid":27466,"ts":326458296982,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227437,"id":"0xccc39602"},
-{"pid":27443,"tid":27466,"ts":326458298203,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":227529},
-{"pid":27443,"tid":27466,"ts":326458298234,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":227559},
-{"pid":27443,"tid":27466,"ts":326458298234,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227559,"id":"0xba442702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458298264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":227590,"id":"0xaf88ab90f182217a"},
-{"pid":27443,"tid":27466,"ts":326458301927,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":227681},
-{"pid":27443,"tid":27466,"ts":326458301957,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":227712},
-{"pid":27443,"tid":27466,"ts":326458301957,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227712,"id":"0xba442902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458301988,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":227742},
-{"pid":27443,"tid":27466,"ts":326458301988,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":227773,"id":"0xaf88ab91f182217a"},
-{"pid":27443,"tid":27466,"ts":326458302354,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":61,"tts":227865},
-{"pid":27443,"tid":27466,"ts":326458302384,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":227865},
-{"pid":27443,"tid":27466,"ts":326458302415,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":227895,"id":"0xba442a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458302445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":227926,"id":"0xaf88ab92f182217a"},
-{"pid":27443,"tid":27477,"ts":326458265455,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":257073},
-{"pid":27443,"tid":27477,"ts":326458265455,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":257073,"id":"0xaf88ab8bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458265485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":257103,"id":"0xaf88ab89f182217a"},
-{"pid":27443,"tid":27477,"ts":326458265516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":257134},
-{"pid":27443,"tid":27477,"ts":326458265516,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":257134},
-{"pid":27443,"tid":27477,"ts":326458265516,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":257134},
-{"pid":27443,"tid":27477,"ts":326458265516,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":257164},
-{"pid":27443,"tid":27477,"ts":326458265546,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":257164},
-{"pid":27443,"tid":27477,"ts":326458265546,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":257164},
-{"pid":27443,"tid":27477,"ts":326458265607,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":257225},
-{"pid":27443,"tid":27477,"ts":326458265607,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":257225},
-{"pid":27443,"tid":27477,"ts":326458265638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":257256,"id":"0xaf88ab8af182217a"},
-{"pid":27443,"tid":27477,"ts":326458265638,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":152,"tts":257256},
-{"pid":27443,"tid":27477,"ts":326458265638,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":152,"tdur":122,"tts":257286},
-{"pid":27443,"tid":27477,"ts":326458265668,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":64},"tts":257286},
-{"pid":27443,"tid":27477,"ts":326458265729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":257347,"id":"0xaf88ab34f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458265729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":257347,"id":"0xaf88a8d2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458265760,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":257378},
-{"pid":27443,"tid":27477,"ts":326458265790,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":257408,"id":"0xaf88ab8bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458265790,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3571,"tdur":1771,"tts":257408},
-{"pid":27443,"tid":27477,"ts":326458265821,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3540,"tdur":1740,"tts":257439},
-{"pid":27443,"tid":27477,"ts":326458265821,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":257439},
-{"pid":27443,"tid":27477,"ts":326458265821,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3540,"tdur":1710,"tts":257469},
-{"pid":27443,"tid":27477,"ts":326458265851,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":63},"dur":763,"tdur":763,"tts":257469},
-{"pid":27443,"tid":27477,"ts":326458265882,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":63},"dur":214,"tdur":214,"tts":257500},
-{"pid":27443,"tid":27477,"ts":326458266096,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":63},"dur":30,"tdur":30,"tts":257714},
-{"pid":27443,"tid":27477,"ts":326458266126,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":63},"tts":257744},
-{"pid":27443,"tid":27477,"ts":326458266248,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":257897},
-{"pid":27443,"tid":27477,"ts":326458266279,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":257897},
-{"pid":27443,"tid":27477,"ts":326458266279,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":257897},
-{"pid":27443,"tid":27477,"ts":326458266279,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":257897},
-{"pid":27443,"tid":27477,"ts":326458266309,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":257927,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458266370,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":257988},
-{"pid":27443,"tid":27477,"ts":326458266614,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":258232},
-{"pid":27443,"tid":27477,"ts":326458266614,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":2167,"tdur":580,"tts":258232},
-{"pid":27443,"tid":27477,"ts":326458266645,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":258263},
-{"pid":27443,"tid":27477,"ts":326458266645,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":2075,"tdur":488,"tts":258263},
-{"pid":27443,"tid":27477,"ts":326458266706,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":258324},
-{"pid":27443,"tid":27477,"ts":326458266798,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":258416},
-{"pid":27443,"tid":27477,"ts":326458266859,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":258477},
-{"pid":27443,"tid":27477,"ts":326458266889,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":31,"tts":258507},
-{"pid":27443,"tid":27477,"ts":326458266950,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12066},"dur":275,"tdur":92,"tts":258568},
-{"pid":27443,"tid":27477,"ts":326458266950,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":258568},
-{"pid":27443,"tid":27477,"ts":326458267194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":258629,"id":"0xaf88add3f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458267255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":258690,"id":"0xaf88adecf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458268751,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":258782,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458268781,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":258843,"id":"0x30000001a"},
-{"pid":27443,"tid":27477,"ts":326458268812,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":488,"tdur":274,"tts":258843},
-{"pid":27443,"tid":27477,"ts":326458268965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":258995,"id":"0xaf88adedf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458269300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":259117,"id":"0xaf88ab35f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458269331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":259148,"id":"0xaf88a8ecf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458269361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458266},"tts":259179,"id":"0xaf88abf3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458269392,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":259209},
-{"pid":27443,"tid":27477,"ts":326458275099,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":259270,"id":"0xaf88ab84f182217a"},
-{"pid":27443,"tid":27477,"ts":326458275099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":259270},
-{"pid":27443,"tid":27477,"ts":326458275099,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":259270},
-{"pid":27443,"tid":27477,"ts":326458275130,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":259301,"id":"0x30000001c"},
-{"pid":27443,"tid":27477,"ts":326458275160,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":259331},
-{"pid":27443,"tid":27477,"ts":326458275160,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":259362,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458275191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":259362,"id":"0xaf88ab36f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458275221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":259423,"id":"0xaf88ab85f182217a"},
-{"pid":27443,"tid":27477,"ts":326458275252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":259423},
-{"pid":27443,"tid":27477,"ts":326458275282,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458250897.0,"frame_time_us":326458266896.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":259453},
-{"pid":27443,"tid":27477,"ts":326458275282,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458250897.0,"frame_time_us":326458266896.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":259453},
-{"pid":27443,"tid":27477,"ts":326458275343,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458283562},"dur":31,"tdur":31,"tts":259514},
-{"pid":27443,"tid":27477,"ts":326458275374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":259545,"id":"0xaf88ab87f182217a"},
-{"pid":27443,"tid":27477,"ts":326458275404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":259575,"id":"0xaf88ab86f182217a"},
-{"pid":27443,"tid":27477,"ts":326458275404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":259575},
-{"pid":27443,"tid":27477,"ts":326458275435,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":259606},
-{"pid":27443,"tid":27477,"ts":326458275465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":259636,"id":"0xaf88ab37f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458283675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458283},"tts":259728,"id":"0xaf88ab87f182217a"},
-{"pid":27443,"tid":27477,"ts":326458283675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":367,"tdur":366,"tts":259728},
-{"pid":27443,"tid":27477,"ts":326458283675,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":336,"tdur":336,"tts":259728},
-{"pid":27443,"tid":27477,"ts":326458283706,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":305,"tdur":306,"tts":259758},
-{"pid":27443,"tid":27477,"ts":326458283706,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":306,"tts":259758},
-{"pid":27443,"tid":27477,"ts":326458283706,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":91,"tts":259789},
-{"pid":27443,"tid":27477,"ts":326458283828,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":259880},
-{"pid":27443,"tid":27477,"ts":326458283858,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":259911},
-{"pid":27443,"tid":27477,"ts":326458283858,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":122,"tts":259911},
-{"pid":27443,"tid":27477,"ts":326458283858,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":259911},
-{"pid":27443,"tid":27477,"ts":326458283889,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":259942,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458283889,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":259942},
-{"pid":27443,"tid":27477,"ts":326458283920,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":259972},
-{"pid":27443,"tid":27477,"ts":326458283950,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":260033,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458283981,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":260033,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458284011,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":260064,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458284469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260094,"id":"0xaf88ab80f182217a"},
-{"pid":27443,"tid":27477,"ts":326458284499,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":260125},
-{"pid":27443,"tid":27477,"ts":326458284499,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":260125},
-{"pid":27443,"tid":27477,"ts":326458284530,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":260155,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458284530,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":260155},
-{"pid":27443,"tid":27477,"ts":326458284560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":260186,"id":"0xaf88ab83f182217a"},
-{"pid":27443,"tid":27477,"ts":326458284591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260216,"id":"0xaf88ab81f182217a"},
-{"pid":27443,"tid":27477,"ts":326458284591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":260216},
-{"pid":27443,"tid":27477,"ts":326458284621,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":62,"tdur":61,"tts":260247},
-{"pid":27443,"tid":27477,"ts":326458284621,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":260247,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458284652,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":260277},
-{"pid":27443,"tid":27477,"ts":326458284652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":260277,"id":"0xaf88ab9cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458284683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260338,"id":"0xaf88ab82f182217a"},
-{"pid":27443,"tid":27477,"ts":326458284713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":260338},
-{"pid":27443,"tid":27477,"ts":326458284713,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":260338},
-{"pid":27443,"tid":27477,"ts":326458284744,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":260369,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458284744,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":260369},
-{"pid":27443,"tid":27477,"ts":326458284774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260399,"id":"0xaf88ab83f182217a"},
-{"pid":27443,"tid":27477,"ts":326458284805,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":260430},
-{"pid":27443,"tid":27477,"ts":326458284805,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":152,"tts":260430},
-{"pid":27443,"tid":27477,"ts":326458284805,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":260430},
-{"pid":27443,"tid":27477,"ts":326458284835,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":260460},
-{"pid":27443,"tid":27477,"ts":326458284835,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":260460},
-{"pid":27443,"tid":27477,"ts":326458284866,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":260491},
-{"pid":27443,"tid":27477,"ts":326458284927,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":260552},
-{"pid":27443,"tid":27477,"ts":326458284927,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":260582},
-{"pid":27443,"tid":27477,"ts":326458284957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260582,"id":"0xaf88ab9cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458284988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":122,"tts":260613},
-{"pid":27443,"tid":27477,"ts":326458284988,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":1465,"tdur":122,"tts":260613},
-{"pid":27443,"tid":27477,"ts":326458284988,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":260613},
-{"pid":27443,"tid":27477,"ts":326458284988,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":260643},
-{"pid":27443,"tid":27477,"ts":326458285018,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":31,"tts":260643},
-{"pid":27443,"tid":27477,"ts":326458285018,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":260643},
-{"pid":27443,"tid":27477,"ts":326458285079,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":1374,"tdur":0,"tts":260705},
-{"pid":27443,"tid":27477,"ts":326458285079,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":260705},
-{"pid":27443,"tid":27477,"ts":326458287216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260796,"id":"0xaf88ab9df182217a"},
-{"pid":27443,"tid":27477,"ts":326458287216,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":260796},
-{"pid":27443,"tid":27477,"ts":326458287246,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458267574.0,"frame_time_us":326458283573.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":260827},
-{"pid":27443,"tid":27477,"ts":326458287277,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458267574.0,"frame_time_us":326458283573.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":260857},
-{"pid":27443,"tid":27477,"ts":326458287307,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458300239},"dur":31,"tdur":0,"tts":260888},
-{"pid":27443,"tid":27477,"ts":326458287307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":260888,"id":"0xaf88ab9ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458289169,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260979,"id":"0xaf88ab9ff182217a"},
-{"pid":27443,"tid":27459,"ts":326458288650,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":428,"tts":5894002},
-{"pid":27443,"tid":27459,"ts":326458288894,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":31,"tdur":31,"tts":5894246},
-{"pid":27443,"tid":27459,"ts":326458288925,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":30,"tdur":30,"tts":5894277},
-{"pid":27443,"tid":27459,"ts":326458288955,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":0,"tdur":0,"tts":5894307},
-{"pid":27443,"tid":27459,"ts":326458288986,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":0,"tdur":0,"tts":5894338},
-{"pid":27443,"tid":27459,"ts":326458288986,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":30,"tdur":0,"tts":5894338},
-{"pid":27443,"tid":27459,"ts":326458289016,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":0,"tdur":0,"tts":5894369},
-{"pid":27443,"tid":27459,"ts":326458289016,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":31,"tdur":30,"tts":5894369},
-{"pid":27443,"tid":27459,"ts":326458289047,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":0,"tdur":0,"tts":5894399},
-{"pid":27443,"tid":27459,"ts":326458289047,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":64},"dur":30,"tdur":31,"tts":5894399},
-{"pid":27443,"tid":27459,"ts":326458289077,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5894430,"id":"0x30000001b"},
-{"pid":27443,"tid":27459,"ts":326458289108,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":641,"tdur":61,"tts":5894460},
-{"pid":27443,"tid":27459,"ts":326458289108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5894460,"id":"0xaf88ab9ff182217a"},
-{"pid":27443,"tid":27459,"ts":326458289779,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5894552},
-{"pid":27443,"tid":27459,"ts":326458289902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5894643,"id":"0xaf88a8d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458289932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2228,"tdur":61,"tts":5894674},
-{"pid":27443,"tid":27459,"ts":326458289932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5894674,"id":"0xaf88a8edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458289963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5894704,"id":"0xaf88ab35f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458289963,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":5894704},
-{"pid":27443,"tid":27459,"ts":326458289963,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5894704},
-{"pid":27443,"tid":27459,"ts":326458292191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5894796,"id":"0xaf88a8ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458292221,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1251,"tdur":1191,"tts":5894826},
-{"pid":27443,"tid":27459,"ts":326458292221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5894857,"id":"0xaf88ab36f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458292252,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1190,"tdur":1129,"tts":5894857},
-{"pid":27443,"tid":27459,"ts":326458292313,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":1068,"tts":5894918},
-{"pid":27443,"tid":27459,"ts":326458292343,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5894948,"id":"0x30000001c"},
-{"pid":27443,"tid":27459,"ts":326458292343,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":977,"tdur":885,"tts":5894979},
-{"pid":27443,"tid":27459,"ts":326458292374,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":855,"tts":5895009},
-{"pid":27443,"tid":27459,"ts":326458292435,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5895040},
-{"pid":27443,"tid":27459,"ts":326458292496,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5895101},
-{"pid":27443,"tid":27459,"ts":326458292526,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5895132},
-{"pid":27443,"tid":27459,"ts":326458292557,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5895162},
-{"pid":27443,"tid":27459,"ts":326458292587,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":702,"tdur":640,"tts":5895193},
-{"pid":27443,"tid":27459,"ts":326458292770,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":489,"tdur":427,"tts":5895376},
-{"pid":27443,"tid":27459,"ts":326458292770,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5895376},
-{"pid":27443,"tid":27459,"ts":326458293167,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":13,"frame":"0x78c60000"}},"tts":5895742,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458293198,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":5895742},
-{"pid":27443,"tid":27459,"ts":326458293228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5895772,"id":"0xaf88ab96f182217a"},
-{"pid":27443,"tid":27459,"ts":326458293259,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5895803},
-{"pid":27443,"tid":27459,"ts":326458293350,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5895895},
-{"pid":27443,"tid":27459,"ts":326458293381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5895925,"id":"0xaf88adeef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458293503,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5896047,"id":"0xaf88a8edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458293503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5896047},
-{"pid":27443,"tid":27459,"ts":326458293503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5896078,"id":"0xaf88a8eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458293533,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5896078,"id":"0xaf88ab37f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458293533,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":5896078},
-{"pid":27443,"tid":27459,"ts":326458293533,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":5896108},
-{"pid":27443,"tid":27459,"ts":326458293594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5896139,"id":"0xaf88a8eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458293594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":5896169},
-{"pid":27443,"tid":27459,"ts":326458295853,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5896230,"id":"0xaf88a8eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458295884,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5896261},
-{"pid":27443,"tid":27459,"ts":326458295884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5896261,"id":"0xaf88a8e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458295914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5896291,"id":"0xaf88ab30f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458295914,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":5896291},
-{"pid":27443,"tid":27459,"ts":326458295914,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":31,"tts":5896291},
-{"pid":27443,"tid":27459,"ts":326458295975,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5896352,"id":"0xaf88a8e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458295975,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1007,"tdur":1007,"tts":5896352},
-{"pid":27443,"tid":27459,"ts":326458296006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5896383,"id":"0xaf88a8e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458296006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5896413,"id":"0xaf88ab31f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458296036,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":916,"tdur":916,"tts":5896413},
-{"pid":27443,"tid":27459,"ts":326458296067,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":885,"tdur":855,"tts":5896474},
-{"pid":27443,"tid":27459,"ts":326458296097,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5896474,"id":"0x30000001d"},
-{"pid":27443,"tid":27459,"ts":326458296128,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":732,"tdur":732,"tts":5896505},
-{"pid":27443,"tid":27459,"ts":326458296158,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":672,"tdur":672,"tts":5896535},
-{"pid":27443,"tid":27477,"ts":326458289169,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1465,"tdur":1435,"tts":260979},
-{"pid":27443,"tid":27477,"ts":326458289200,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1434,"tdur":1404,"tts":261010},
-{"pid":27443,"tid":27477,"ts":326458289200,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":261010},
-{"pid":27443,"tid":27477,"ts":326458289230,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1404,"tdur":1374,"tts":261040},
-{"pid":27443,"tid":27477,"ts":326458289230,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1404,"tdur":1374,"tts":261040},
-{"pid":27443,"tid":27477,"ts":326458289230,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":261040},
-{"pid":27443,"tid":27477,"ts":326458289261,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":261071},
-{"pid":27443,"tid":27477,"ts":326458289261,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":261071,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458289261,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":261071},
-{"pid":27443,"tid":27477,"ts":326458289291,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":261101},
-{"pid":27443,"tid":27477,"ts":326458289749,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":885,"tdur":824,"tts":261559},
-{"pid":27443,"tid":27477,"ts":326458289749,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":64},"dur":244,"tdur":244,"tts":261559},
-{"pid":27443,"tid":27477,"ts":326458289993,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":64},"dur":92,"tdur":92,"tts":261803},
-{"pid":27443,"tid":27477,"ts":326458289993,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":261803},
-{"pid":27443,"tid":27477,"ts":326458290085,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":64},"tts":261895},
-{"pid":27443,"tid":27477,"ts":326458290237,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":262047},
-{"pid":27443,"tid":27477,"ts":326458290237,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":262078},
-{"pid":27443,"tid":27477,"ts":326458290268,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":262078},
-{"pid":27443,"tid":27477,"ts":326458290268,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":262078},
-{"pid":27443,"tid":27477,"ts":326458290390,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":262200},
-{"pid":27443,"tid":27477,"ts":326458290390,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":262200},
-{"pid":27443,"tid":27477,"ts":326458290420,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":262231},
-{"pid":27443,"tid":27477,"ts":326458290420,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":262231},
-{"pid":27443,"tid":27477,"ts":326458290420,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":262231,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458290451,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":262261},
-{"pid":27443,"tid":27477,"ts":326458290451,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":262261},
-{"pid":27443,"tid":27477,"ts":326458290512,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":262322,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458290573,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":262383,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458290573,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":262383,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458291000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":262505,"id":"0xaf88ab98f182217a"},
-{"pid":27443,"tid":27477,"ts":326458291000,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":262505},
-{"pid":27443,"tid":27477,"ts":326458291000,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":262505},
-{"pid":27443,"tid":27477,"ts":326458291031,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":262536,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458291031,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":262536},
-{"pid":27443,"tid":27477,"ts":326458291061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":262566,"id":"0xaf88ab9bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458291061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":262566,"id":"0xaf88ab99f182217a"},
-{"pid":27443,"tid":27477,"ts":326458291092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":262597},
-{"pid":27443,"tid":27477,"ts":326458291092,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":262597},
-{"pid":27443,"tid":27477,"ts":326458291092,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":262597,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458291122,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":262627},
-{"pid":27443,"tid":27477,"ts":326458291122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":262627,"id":"0xaf88ab9af182217a"},
-{"pid":27443,"tid":27477,"ts":326458291122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":262627},
-{"pid":27443,"tid":27477,"ts":326458291153,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":262658},
-{"pid":27443,"tid":27477,"ts":326458291153,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":262658,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458291153,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":262658},
-{"pid":27443,"tid":27477,"ts":326458291183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":262688,"id":"0xaf88ab94f182217a"},
-{"pid":27443,"tid":27477,"ts":326458291183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":262688,"id":"0xaf88ab9bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458291183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1312,"tts":262719},
-{"pid":27443,"tid":27477,"ts":326458291214,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1434,"tdur":1312,"tts":262719},
-{"pid":27443,"tid":27477,"ts":326458291214,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":262719},
-{"pid":27443,"tid":27477,"ts":326458291214,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":262719},
-{"pid":27443,"tid":27477,"ts":326458291244,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":262749},
-{"pid":27443,"tid":27477,"ts":326458291244,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":262749},
-{"pid":27443,"tid":27477,"ts":326458291336,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1160,"tts":262841},
-{"pid":27443,"tid":27477,"ts":326458291336,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1160,"tts":262841},
-{"pid":27443,"tid":27477,"ts":326458291336,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1251,"tdur":1129,"tts":262841},
-{"pid":27443,"tid":27477,"ts":326458291366,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":262871,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458291428,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":262933},
-{"pid":27443,"tid":27477,"ts":326458291458,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":262963},
-{"pid":27443,"tid":27477,"ts":326458291489,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":262994},
-{"pid":27443,"tid":27477,"ts":326458291489,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":262994},
-{"pid":27443,"tid":27477,"ts":326458291519,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263024},
-{"pid":27443,"tid":27477,"ts":326458291519,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":263055},
-{"pid":27443,"tid":27477,"ts":326458291550,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":263055},
-{"pid":27443,"tid":27477,"ts":326458291580,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263085},
-{"pid":27443,"tid":27477,"ts":326458291611,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263116},
-{"pid":27443,"tid":27477,"ts":326458291611,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":263116},
-{"pid":27443,"tid":27477,"ts":326458291641,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":263146},
-{"pid":27443,"tid":27477,"ts":326458291672,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":263177},
-{"pid":27443,"tid":27477,"ts":326458291733,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263238},
-{"pid":27443,"tid":27477,"ts":326458291733,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":263268},
-{"pid":27443,"tid":27477,"ts":326458291794,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263299},
-{"pid":27443,"tid":27477,"ts":326458291794,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":263329},
-{"pid":27443,"tid":27477,"ts":326458291855,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":263360},
-{"pid":27443,"tid":27477,"ts":326458291885,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":263390},
-{"pid":27443,"tid":27477,"ts":326458291916,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":263421},
-{"pid":27443,"tid":27477,"ts":326458291946,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263451},
-{"pid":27443,"tid":27477,"ts":326458291946,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":263451},
-{"pid":27443,"tid":27477,"ts":326458291977,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263482},
-{"pid":27443,"tid":27477,"ts":326458292007,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263512},
-{"pid":27443,"tid":27477,"ts":326458292007,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":263512},
-{"pid":27443,"tid":27477,"ts":326458292038,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":263543},
-{"pid":27443,"tid":27477,"ts":326458292068,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263573},
-{"pid":27443,"tid":27477,"ts":326458292160,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":263665},
-{"pid":27443,"tid":27477,"ts":326458292191,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263696},
-{"pid":27443,"tid":27477,"ts":326458292221,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263726},
-{"pid":27443,"tid":27477,"ts":326458292221,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":263757},
-{"pid":27443,"tid":27477,"ts":326458292252,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":122,"tdur":30,"tts":263757},
-{"pid":27443,"tid":27477,"ts":326458292435,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":263818},
-{"pid":27443,"tid":27477,"ts":326458292435,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":263818},
-{"pid":27443,"tid":27477,"ts":326458292496,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":263879},
-{"pid":27443,"tid":27477,"ts":326458292526,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":263940},
-{"pid":27443,"tid":27477,"ts":326458292557,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":263940},
-{"pid":27443,"tid":27477,"ts":326458292557,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":263940},
-{"pid":27443,"tid":27477,"ts":326458292587,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":263970},
-{"pid":27443,"tid":27477,"ts":326458292618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":264001,"id":"0xaf88ab95f182217a"},
-{"pid":27443,"tid":27477,"ts":326458292648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":264031,"id":"0xaf88ab94f182217a"},
-{"pid":27443,"tid":27477,"ts":326458292648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":264031},
-{"pid":27443,"tid":27477,"ts":326458292679,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":264062},
-{"pid":27443,"tid":27477,"ts":326458292679,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":264062},
-{"pid":27443,"tid":27477,"ts":326458292679,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":264062},
-{"pid":27443,"tid":27477,"ts":326458292709,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":264092},
-{"pid":27443,"tid":27477,"ts":326458292709,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":264092},
-{"pid":27443,"tid":27477,"ts":326458292770,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":264153},
-{"pid":27443,"tid":27477,"ts":326458292770,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":264153},
-{"pid":27443,"tid":27477,"ts":326458292801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":264184,"id":"0xaf88ab95f182217a"},
-{"pid":27443,"tid":27477,"ts":326458292831,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2808,"tdur":1526,"tts":264214},
-{"pid":27443,"tid":27477,"ts":326458292831,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2808,"tdur":1526,"tts":264214},
-{"pid":27443,"tid":27477,"ts":326458292831,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":264214},
-{"pid":27443,"tid":27477,"ts":326458292862,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2777,"tdur":1495,"tts":264245},
-{"pid":27443,"tid":27477,"ts":326458292862,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":64},"dur":1770,"tdur":916,"tts":264245},
-{"pid":27443,"tid":27477,"ts":326458292984,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":64},"dur":1068,"tdur":275,"tts":264275},
-{"pid":27443,"tid":27477,"ts":326458294052,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":64},"dur":31,"tdur":30,"tts":264581},
-{"pid":27443,"tid":27477,"ts":326458294083,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":64},"tts":264611},
-{"pid":27443,"tid":27477,"ts":326458294235,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":264764},
-{"pid":27443,"tid":27477,"ts":326458294266,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":264794},
-{"pid":27443,"tid":27477,"ts":326458294266,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":264794},
-{"pid":27443,"tid":27477,"ts":326458294266,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":264794},
-{"pid":27443,"tid":27477,"ts":326458294296,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":264825,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458294357,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":264886},
-{"pid":27443,"tid":27477,"ts":326458294602,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":265130},
-{"pid":27443,"tid":27477,"ts":326458294632,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":274,"tts":265161},
-{"pid":27443,"tid":27477,"ts":326458294632,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":265161},
-{"pid":27443,"tid":27477,"ts":326458294663,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":610,"tdur":183,"tts":265191},
-{"pid":27443,"tid":27477,"ts":326458294754,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12066},"dur":0,"tdur":0,"tts":265283},
-{"pid":27443,"tid":27477,"ts":326458294785,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265313,"id":"0xaf88adeff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458295304,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":265405,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458295334,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":265466,"id":"0x30000001b"},
-{"pid":27443,"tid":27477,"ts":326458295365,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":265466},
-{"pid":27443,"tid":27477,"ts":326458295487,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265588,"id":"0xaf88ade8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458295578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":265679,"id":"0xaf88ab30f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458295578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265679,"id":"0xaf88a8eff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458295670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265771,"id":"0xaf88ab96f182217a"},
-{"pid":27443,"tid":27477,"ts":326458295670,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":265771},
-{"pid":27443,"tid":27477,"ts":326458295670,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":265771},
-{"pid":27443,"tid":27477,"ts":326458295700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265801,"id":"0xaf88ab97f182217a"},
-{"pid":27443,"tid":27477,"ts":326458295700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":123,"tts":265801},
-{"pid":27443,"tid":27477,"ts":326458295700,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":265801},
-{"pid":27443,"tid":27477,"ts":326458295731,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":265832,"id":"0x30000001d"},
-{"pid":27443,"tid":27477,"ts":326458295731,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":265832},
-{"pid":27443,"tid":27477,"ts":326458295761,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":265862,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458295792,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":265893,"id":"0xaf88ab31f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458298325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265954,"id":"0xaf88ab90f182217a"},
-{"pid":27443,"tid":27477,"ts":326458298325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":265954},
-{"pid":27443,"tid":27477,"ts":326458298356,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":265985},
-{"pid":27443,"tid":27477,"ts":326458298386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":266015,"id":"0xaf88ab32f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458298386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266015,"id":"0xaf88a8eaf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458300339,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458300},"tts":266107,"id":"0xaf88ab9ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458300370,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":266137},
-{"pid":27443,"tid":27477,"ts":326458302506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":266198,"id":"0xaf88ab91f182217a"},
-{"pid":27443,"tid":27477,"ts":326458302506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":266198},
-{"pid":27443,"tid":27477,"ts":326458302506,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":266198},
-{"pid":27443,"tid":27477,"ts":326458302537,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":266229,"id":"0x30000001e"},
-{"pid":27443,"tid":27477,"ts":326458302537,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":266229},
-{"pid":27443,"tid":27477,"ts":326458302567,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":266259,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458302598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":266290,"id":"0xaf88ab33f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458302629,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266320,"id":"0xaf88a8e4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458302659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":266351,"id":"0xaf88ab92f182217a"},
-{"pid":27443,"tid":27477,"ts":326458302659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":214,"tts":266381},
-{"pid":27443,"tid":27477,"ts":326458302690,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458284250.0,"frame_time_us":326458300249.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":214,"tts":266381},
-{"pid":27443,"tid":27477,"ts":326458302720,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458284250.0,"frame_time_us":326458300249.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":266412},
-{"pid":27443,"tid":27477,"ts":326458302781,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":65},"tts":266473},
-{"pid":27443,"tid":27477,"ts":326458302842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":266534,"id":"0xaf88abccf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458302842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266534,"id":"0xaf88a8e6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458302873,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":266564},
-{"pid":27443,"tid":27477,"ts":326458302873,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458316915},"dur":30,"tdur":31,"tts":266564},
-{"pid":27443,"tid":27477,"ts":326458302873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266564,"id":"0xaf88ab93f182217a"},
-{"pid":27443,"tid":27477,"ts":326458313799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":266687,"id":"0xaf88abacf182217a"},
-{"pid":27443,"tid":27477,"ts":326458313799,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1404,"tdur":1403,"tts":266687},
-{"pid":27443,"tid":27477,"ts":326458313829,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1374,"tdur":1373,"tts":266717},
-{"pid":27443,"tid":27477,"ts":326458313829,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":266717},
-{"pid":27443,"tid":27477,"ts":326458313829,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1374,"tdur":1373,"tts":266717},
-{"pid":27443,"tid":27477,"ts":326458313860,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1343,"tdur":1342,"tts":266748},
-{"pid":27443,"tid":27477,"ts":326458313860,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":266748},
-{"pid":27443,"tid":27477,"ts":326458313860,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":266778},
-{"pid":27443,"tid":27477,"ts":326458313891,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":266778,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458313891,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":266778},
-{"pid":27443,"tid":27477,"ts":326458313921,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":396,"tts":266809},
-{"pid":27443,"tid":27477,"ts":326458314379,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":793,"tdur":794,"tts":267266},
-{"pid":27443,"tid":27477,"ts":326458314409,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":65},"dur":245,"tdur":214,"tts":267297},
-{"pid":27443,"tid":27477,"ts":326458314654,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":65},"dur":30,"tdur":31,"tts":267541},
-{"pid":27443,"tid":27477,"ts":326458314684,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":65},"tts":267572},
-{"pid":27443,"tid":27477,"ts":326458314837,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":267724},
-{"pid":27443,"tid":27477,"ts":326458314837,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":267724},
-{"pid":27443,"tid":27477,"ts":326458314867,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":267755},
-{"pid":27443,"tid":27477,"ts":326458314959,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":267846},
-{"pid":27443,"tid":27477,"ts":326458314989,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":267877},
-{"pid":27443,"tid":27477,"ts":326458314989,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":267877},
-{"pid":27443,"tid":27477,"ts":326458314989,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":267877},
-{"pid":27443,"tid":27477,"ts":326458315020,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":267907,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458315020,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":267938},
-{"pid":27443,"tid":27477,"ts":326458315050,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":267938},
-{"pid":27443,"tid":27459,"ts":326458296189,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5896566},
-{"pid":27443,"tid":27459,"ts":326458296250,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5896627},
-{"pid":27443,"tid":27459,"ts":326458296280,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5896658},
-{"pid":27443,"tid":27459,"ts":326458296311,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5896688},
-{"pid":27443,"tid":27459,"ts":326458296341,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":489,"tdur":488,"tts":5896719},
-{"pid":27443,"tid":27459,"ts":326458296463,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":336,"tdur":335,"tts":5896841},
-{"pid":27443,"tid":27459,"ts":326458296494,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5896871},
-{"pid":27443,"tid":27459,"ts":326458296738,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":14,"frame":"0x78c60000"}},"tts":5897146,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458296769,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5897176},
-{"pid":27443,"tid":27459,"ts":326458296860,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5897237},
-{"pid":27443,"tid":27459,"ts":326458296891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5897268,"id":"0xaf88ade9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458297440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5897390,"id":"0xaf88a8e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458297440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5897390},
-{"pid":27443,"tid":27459,"ts":326458298447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5897451,"id":"0xaf88a8eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458298447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":5897451},
-{"pid":27443,"tid":27459,"ts":326458298478,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5897482,"id":"0xaf88a8ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458298478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5897482,"id":"0xaf88ab32f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458298508,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":5897512},
-{"pid":27443,"tid":27459,"ts":326458298508,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":5897512},
-{"pid":27443,"tid":27459,"ts":326458298569,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5897573,"id":"0xaf88a8ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458298569,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5897573},
-{"pid":27443,"tid":27459,"ts":326458302659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5897695,"id":"0xaf88a8e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458302690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1129,"tts":5897695},
-{"pid":27443,"tid":27459,"ts":326458302720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5897726,"id":"0xaf88a8e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458302720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5897726,"id":"0xaf88ab33f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458302720,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1098,"tts":5897726},
-{"pid":27443,"tid":27459,"ts":326458302781,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":5897787},
-{"pid":27443,"tid":27459,"ts":326458302812,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5897817,"id":"0x30000001e"},
-{"pid":27443,"tid":27459,"ts":326458302812,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":854,"tts":5897848},
-{"pid":27443,"tid":27459,"ts":326458302842,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":824,"tts":5897878},
-{"pid":27443,"tid":27459,"ts":326458302903,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5897909},
-{"pid":27443,"tid":27459,"ts":326458302964,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5897970},
-{"pid":27443,"tid":27459,"ts":326458302995,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5898000},
-{"pid":27443,"tid":27459,"ts":326458303025,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5898031},
-{"pid":27443,"tid":27459,"ts":326458303056,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":611,"tts":5898061},
-{"pid":27443,"tid":27459,"ts":326458303239,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":5898245},
-{"pid":27443,"tid":27459,"ts":326458303269,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5898275},
-{"pid":27443,"tid":27459,"ts":326458303605,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":15,"frame":"0x78c60000"}},"tts":5898611,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458303636,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5898641},
-{"pid":27443,"tid":27459,"ts":326458303727,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5898733},
-{"pid":27443,"tid":27459,"ts":326458303727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5898763,"id":"0xaf88adeaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458303849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5898855,"id":"0xaf88a8e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458303880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10651,"tdur":9766,"tts":5898886},
-{"pid":27443,"tid":27459,"ts":326458303880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5898886,"id":"0xaf88a8e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458303910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5898916,"id":"0xaf88abccf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458303910,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10591,"tdur":9706,"tts":5898916},
-{"pid":27443,"tid":27459,"ts":326458303910,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":65},"tts":5898916},
-{"pid":27443,"tid":27459,"ts":326458303941,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":5898947},
-{"pid":27443,"tid":27459,"ts":326458303971,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6318,"tdur":6318,"tts":5898977},
-{"pid":27443,"tid":27459,"ts":326458304002,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5899008},
-{"pid":27443,"tid":27459,"ts":326458304032,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":13,"frame":"0x78c60000"}},"dur":5921,"tdur":5921,"tts":5899038},
-{"pid":27443,"tid":27459,"ts":326458304093,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5860,"tdur":5860,"tts":5899099},
-{"pid":27443,"tid":27459,"ts":326458304124,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5899130},
-{"pid":27443,"tid":27459,"ts":326458304338,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5899343},
-{"pid":27443,"tid":27459,"ts":326458304368,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":5899374},
-{"pid":27443,"tid":27459,"ts":326458309923,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5904929},
-{"pid":27443,"tid":27459,"ts":326458309984,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":14,"frame":"0x78c60000"}},"dur":153,"tdur":152,"tts":5904990},
-{"pid":27443,"tid":27459,"ts":326458310075,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":62,"tdur":61,"tts":5905081},
-{"pid":27443,"tid":27459,"ts":326458310075,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5905081},
-{"pid":27443,"tid":27459,"ts":326458310106,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5905112},
-{"pid":27443,"tid":27459,"ts":326458310167,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":15,"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":5905173},
-{"pid":27443,"tid":27459,"ts":326458310198,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":30,"tts":5905234},
-{"pid":27443,"tid":27459,"ts":326458310228,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5905234},
-{"pid":27443,"tid":27459,"ts":326458310259,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5905264},
-{"pid":27443,"tid":27466,"ts":326458303819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228017,"id":"0xaf88adeaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458303849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":228048},
-{"pid":27443,"tid":27466,"ts":326458303880,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228078,"id":"0xccc39802"},
-{"pid":27443,"tid":27466,"ts":326458318499,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":228139},
-{"pid":27443,"tid":27466,"ts":326458318560,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":228200},
-{"pid":27443,"tid":27466,"ts":326458318560,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228200,"id":"0xba442b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458318591,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":228231},
-{"pid":27443,"tid":27466,"ts":326458318621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":228261,"id":"0xaf88ababf182217a"},
-{"pid":27443,"tid":27466,"ts":326458319232,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":228353},
-{"pid":27443,"tid":27466,"ts":326458319262,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":228383},
-{"pid":27443,"tid":27466,"ts":326458319262,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228383,"id":"0xba442c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458319293,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":228414,"id":"0xaf88aba4f182217a"},
-{"pid":27443,"tid":27466,"ts":326458320636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228536,"id":"0xaf88adebf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458320666,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":30,"tts":228567},
-{"pid":27443,"tid":27466,"ts":326458320666,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228567,"id":"0xccc39902"},
-{"pid":27443,"tid":27466,"ts":326458320758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228628,"id":"0xaf88ade4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458320788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":228628},
-{"pid":27443,"tid":27466,"ts":326458320788,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228628,"id":"0xccc39a06"},
-{"pid":27443,"tid":27466,"ts":326458321093,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":61,"tts":228719},
-{"pid":27443,"tid":27466,"ts":326458321124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":228719},
-{"pid":27443,"tid":27466,"ts":326458321154,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228750,"id":"0xc4c0f10a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458321795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":228841,"id":"0xaf88ade5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458321795,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":228872},
-{"pid":27443,"tid":27466,"ts":326458321826,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228872,"id":"0xccc39b02"},
-{"pid":27443,"tid":27466,"ts":326458324390,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":228933},
-{"pid":27443,"tid":27466,"ts":326458324420,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":228963},
-{"pid":27443,"tid":27466,"ts":326458324451,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":228994,"id":"0xba442f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458324481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":229024,"id":"0xaf88aba6f182217a"},
-{"pid":27443,"tid":27466,"ts":326458324847,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229116,"id":"0xaf88ade6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458324878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":229146},
-{"pid":27443,"tid":27466,"ts":326458324878,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229146,"id":"0xccc39d02"},
-{"pid":27443,"tid":27466,"ts":326458335438,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":229238},
-{"pid":27443,"tid":27466,"ts":326458335499,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":229299},
-{"pid":27443,"tid":27466,"ts":326458335499,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229299,"id":"0xba443102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458335529,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":62,"tdur":31,"tts":229360},
-{"pid":27443,"tid":27466,"ts":326458335560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":229391,"id":"0xaf88aba3f182217a"},
-{"pid":27443,"tid":27466,"ts":326458336415,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":229452},
-{"pid":27443,"tid":27466,"ts":326458336445,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":229482},
-{"pid":27443,"tid":27466,"ts":326458336476,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229513,"id":"0xba443202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458336506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":229543,"id":"0xaf88abbcf182217a"},
-{"pid":27443,"tid":27466,"ts":326458339772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229604,"id":"0xaf88ade7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458339802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":229635},
-{"pid":27443,"tid":27466,"ts":326458339802,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229635,"id":"0xccc39f02"},
-{"pid":27443,"tid":27466,"ts":326458342824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229787,"id":"0xaf88ade0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458342854,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":229818},
-{"pid":27443,"tid":27466,"ts":326458342854,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229818,"id":"0xccc3a002"},
-{"pid":27443,"tid":27466,"ts":326458342915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":229879,"id":"0xaf88ade1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458342915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":229879},
-{"pid":27443,"tid":27466,"ts":326458342915,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229879,"id":"0xccc3a106"},
-{"pid":27443,"tid":27466,"ts":326458343129,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":229940},
-{"pid":27443,"tid":27466,"ts":326458343129,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":229970},
-{"pid":27443,"tid":27466,"ts":326458343160,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":229970,"id":"0xc4c0f60a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458343556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":230062,"id":"0xaf88ade2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458343556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":230062},
-{"pid":27443,"tid":27466,"ts":326458343587,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":230093,"id":"0xccc3a202"},
-{"pid":27443,"tid":27466,"ts":326458345357,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":230184},
-{"pid":27443,"tid":27466,"ts":326458345388,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":230215},
-{"pid":27443,"tid":27466,"ts":326458345388,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":230215,"id":"0xba443302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458345449,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":230276,"id":"0xaf88abb0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458354422,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":230367},
-{"pid":27443,"tid":27466,"ts":326458354452,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":230398},
-{"pid":27443,"tid":27466,"ts":326458354452,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":230398,"id":"0xba443502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458354483,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":230428},
-{"pid":27443,"tid":27466,"ts":326458354513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":230459,"id":"0xaf88abb2f182217a"},
-{"pid":27443,"tid":27459,"ts":326458310289,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2930,"tdur":2655,"tts":5905295},
-{"pid":27443,"tid":27459,"ts":326458310320,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5905356},
-{"pid":27443,"tid":27459,"ts":326458310350,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5905356},
-{"pid":27443,"tid":27459,"ts":326458310350,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5905386},
-{"pid":27443,"tid":27459,"ts":326458310777,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5905783},
-{"pid":27443,"tid":27459,"ts":326458310869,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5905844},
-{"pid":27443,"tid":27459,"ts":326458310900,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2319,"tdur":2075,"tts":5905875},
-{"pid":27443,"tid":27459,"ts":326458310900,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2166,"tdur":1922,"tts":5905875},
-{"pid":27443,"tid":27459,"ts":326458310930,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":641,"tdur":397,"tts":5905905},
-{"pid":27443,"tid":27459,"ts":326458311571,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":5906302},
-{"pid":27443,"tid":27459,"ts":326458311785,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":5906516},{"pid":27443,"tid":27459,"ts":326458311876,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5906607},
-{"pid":27443,"tid":27459,"ts":326458311876,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1190,"tdur":1129,"tts":5906638},
-{"pid":27443,"tid":27459,"ts":326458313066,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":5907797},
-{"pid":27443,"tid":27459,"ts":326458313097,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":5907859},
-{"pid":27443,"tid":27459,"ts":326458313219,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":65},"dur":458,"tdur":458,"tts":5907950},
-{"pid":27443,"tid":27459,"ts":326458313250,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":5907981},
-{"pid":27443,"tid":27459,"ts":326458313494,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":30,"tdur":30,"tts":5908225},
-{"pid":27443,"tid":27459,"ts":326458313524,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":31,"tdur":31,"tts":5908255},
-{"pid":27443,"tid":27459,"ts":326458313555,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":0,"tdur":0,"tts":5908286},
-{"pid":27443,"tid":27459,"ts":326458313555,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":30,"tdur":30,"tts":5908286},
-{"pid":27443,"tid":27459,"ts":326458313585,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":0,"tdur":0,"tts":5908316},
-{"pid":27443,"tid":27459,"ts":326458313616,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":0,"tdur":0,"tts":5908347},
-{"pid":27443,"tid":27459,"ts":326458313616,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":30,"tdur":0,"tts":5908347},
-{"pid":27443,"tid":27459,"ts":326458313646,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":0,"tdur":0,"tts":5908377},
-{"pid":27443,"tid":27459,"ts":326458313646,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":65},"dur":31,"tdur":31,"tts":5908377},
-{"pid":27443,"tid":27459,"ts":326458313677,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5908408,"id":"0x30000001c"},
-{"pid":27443,"tid":27459,"ts":326458313677,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5908438,"id":"0x30000001d"},
-{"pid":27443,"tid":27459,"ts":326458313707,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5908438,"id":"0x30000001e"},
-{"pid":27443,"tid":27459,"ts":326458313707,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":92,"tts":5908438},
-{"pid":27443,"tid":27459,"ts":326458313738,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5908469,"id":"0xaf88abacf182217a"},
-{"pid":27443,"tid":27459,"ts":326458314470,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2475},"tts":5908591,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458314470,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":5908591,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458314501,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5908622},
-{"pid":27443,"tid":27459,"ts":326458314562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5908683,"id":"0xaf88a8e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458314562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":641,"tdur":640,"tts":5908683},
-{"pid":27443,"tid":27459,"ts":326458314592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5908713,"id":"0xaf88ab0bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458314592,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":580,"tdur":580,"tts":5908713},
-{"pid":27443,"tid":27459,"ts":326458314623,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":549,"tdur":549,"tts":5908744},
-{"pid":27443,"tid":27459,"ts":326458314654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5908774,"id":"0xaf88abcdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458314654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5908774,"id":"0xaf88a8e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458314684,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":16,"frame":"0x78c60000"}},"dur":488,"tdur":458,"tts":5908835},
-{"pid":27443,"tid":27459,"ts":326458314715,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":457,"tdur":458,"tts":5908835},
-{"pid":27443,"tid":27459,"ts":326458315020,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"69","scriptName":"undefined","scriptLine":22,"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":5909140},
-{"pid":27443,"tid":27459,"ts":326458315050,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5909171},
-{"pid":27443,"tid":27459,"ts":326458315142,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5909262},
-{"pid":27443,"tid":27459,"ts":326458315203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5909323,"id":"0xaf88a8e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458315233,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6684,"tdur":6043,"tts":5909354},
-{"pid":27443,"tid":27459,"ts":326458315233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5909354,"id":"0xaf88a8e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458315264,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5909385,"id":"0xaf88ab02f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458315264,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":6623,"tdur":5982,"tts":5909385},
-{"pid":27443,"tid":27459,"ts":326458315264,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":6623,"tdur":5982,"tts":5909385},
-{"pid":27443,"tid":27459,"ts":326458315294,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":137,"frame":"0x78c60000"}},"dur":6593,"tdur":5952,"tts":5909415},
-{"pid":27443,"tid":27459,"ts":326458315325,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":6531,"tdur":5890,"tts":5909446},
-{"pid":27443,"tid":27459,"ts":326458318987,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":2869,"tdur":2350,"tts":5912986},
-{"pid":27443,"tid":27459,"ts":326458319018,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5912986},
-{"pid":27443,"tid":27459,"ts":326458321093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5914878,"id":"0xaf88abcef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458321124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5914909,"id":"0xaf88a8e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458321185,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":139,"frame":"0x78c60000","timeout":500,"singleShot":true}},"tts":5914939,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458321826,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5915336},
-{"pid":27443,"tid":27459,"ts":326458321948,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":5915428,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458321948,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":5915458,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458322009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458315},"tts":5915489,"id":"0xaf88a8c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458322009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":5915489},
-{"pid":27443,"tid":27477,"ts":326458315111,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":267999,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458315142,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":268060,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458315172,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":268060,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458315233,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":268121,"id":"0xaf88abadf182217a"},
-{"pid":27443,"tid":27477,"ts":326458315233,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":268121},
-{"pid":27443,"tid":27477,"ts":326458315233,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":268121},
-{"pid":27443,"tid":27477,"ts":326458315264,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":268151,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458315264,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":268151},
-{"pid":27443,"tid":27477,"ts":326458315264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":268151,"id":"0xaf88aba8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458315294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":268182,"id":"0xaf88abaef182217a"},
-{"pid":27443,"tid":27477,"ts":326458315325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":268213},
-{"pid":27443,"tid":27477,"ts":326458315325,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":30,"tts":268213},
-{"pid":27443,"tid":27477,"ts":326458315325,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":268213,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458315356,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":268243},
-{"pid":27443,"tid":27477,"ts":326458315356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":268243,"id":"0xaf88aba9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458315386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":268274,"id":"0xaf88abaff182217a"},
-{"pid":27443,"tid":27477,"ts":326458315386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":268274},
-{"pid":27443,"tid":27477,"ts":326458315386,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":268274},
-{"pid":27443,"tid":27477,"ts":326458315386,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":268304,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458315417,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":268304},
-{"pid":27443,"tid":27477,"ts":326458315417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":268304,"id":"0xaf88aba8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458315447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1068,"tdur":1068,"tts":268335},
-{"pid":27443,"tid":27477,"ts":326458315447,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1068,"tdur":1068,"tts":268335},
-{"pid":27443,"tid":27477,"ts":326458315447,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":268335},
-{"pid":27443,"tid":27477,"ts":326458315447,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":268335},
-{"pid":27443,"tid":27477,"ts":326458315478,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":268365},
-{"pid":27443,"tid":27477,"ts":326458315478,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":268365},
-{"pid":27443,"tid":27477,"ts":326458315569,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":268457},
-{"pid":27443,"tid":27477,"ts":326458315569,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":915,"tts":268457},
-{"pid":27443,"tid":27477,"ts":326458315569,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":885,"tdur":885,"tts":268457},
-{"pid":27443,"tid":27477,"ts":326458315600,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":268487,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458315661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":268548},
-{"pid":27443,"tid":27477,"ts":326458315691,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268579},
-{"pid":27443,"tid":27477,"ts":326458315722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268609},
-{"pid":27443,"tid":27477,"ts":326458315722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":268609},
-{"pid":27443,"tid":27477,"ts":326458315752,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268640},
-{"pid":27443,"tid":27477,"ts":326458315752,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":268640},
-{"pid":27443,"tid":27477,"ts":326458315783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":268670},
-{"pid":27443,"tid":27477,"ts":326458315813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268701},
-{"pid":27443,"tid":27477,"ts":326458315813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":268701},
-{"pid":27443,"tid":27477,"ts":326458315844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268731},
-{"pid":27443,"tid":27477,"ts":326458315844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":268731},
-{"pid":27443,"tid":27477,"ts":326458315874,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":268762},
-{"pid":27443,"tid":27477,"ts":326458315905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268792},
-{"pid":27443,"tid":27477,"ts":326458315935,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268823},
-{"pid":27443,"tid":27477,"ts":326458315935,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":268823},
-{"pid":27443,"tid":27477,"ts":326458315966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268853},
-{"pid":27443,"tid":27477,"ts":326458315966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":268884},
-{"pid":27443,"tid":27477,"ts":326458315996,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268884},
-{"pid":27443,"tid":27477,"ts":326458316027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268915},
-{"pid":27443,"tid":27477,"ts":326458316027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":268915},
-{"pid":27443,"tid":27477,"ts":326458316057,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":268945},
-{"pid":27443,"tid":27477,"ts":326458316057,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":268976},
-{"pid":27443,"tid":27477,"ts":326458316088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":268976},
-{"pid":27443,"tid":27477,"ts":326458316119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":269006},
-{"pid":27443,"tid":27477,"ts":326458316119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":269006},
-{"pid":27443,"tid":27477,"ts":326458316149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":269037},
-{"pid":27443,"tid":27477,"ts":326458316210,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":269098},
-{"pid":27443,"tid":27477,"ts":326458316241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":269128},
-{"pid":27443,"tid":27477,"ts":326458316271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":269159},
-{"pid":27443,"tid":27477,"ts":326458316271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":269159},
-{"pid":27443,"tid":27477,"ts":326458316302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":269189},
-{"pid":27443,"tid":27477,"ts":326458316302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":269220},
-{"pid":27443,"tid":27477,"ts":326458316332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":269220},
-{"pid":27443,"tid":27477,"ts":326458316363,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":269250},
-{"pid":27443,"tid":27477,"ts":326458316424,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":269311},
-{"pid":27443,"tid":27477,"ts":326458316424,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":269311},
-{"pid":27443,"tid":27477,"ts":326458316454,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":269342},
-{"pid":27443,"tid":27477,"ts":326458316485,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":269372},
-{"pid":27443,"tid":27477,"ts":326458316485,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":269372,"id":"0xaf88abaaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458316515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":269403,"id":"0xaf88aba9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458316515,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":269403},
-{"pid":27443,"tid":27477,"ts":326458316546,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":92,"tts":269433},
-{"pid":27443,"tid":27477,"ts":326458316546,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":269433},
-{"pid":27443,"tid":27477,"ts":326458316546,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":269433},
-{"pid":27443,"tid":27477,"ts":326458316576,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":30,"tts":269464},
-{"pid":27443,"tid":27477,"ts":326458316576,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":269464},
-{"pid":27443,"tid":27477,"ts":326458316607,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":269494},
-{"pid":27443,"tid":27477,"ts":326458316637,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":269525},
-{"pid":27443,"tid":27477,"ts":326458316668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":269555,"id":"0xaf88abaaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458316668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6836,"tdur":1801,"tts":269555},
-{"pid":27443,"tid":27477,"ts":326458316668,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6836,"tdur":1801,"tts":269555},
-{"pid":27443,"tid":27477,"ts":326458316698,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":269586},
-{"pid":27443,"tid":27477,"ts":326458316698,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6776,"tdur":1740,"tts":269586},
-{"pid":27443,"tid":27477,"ts":326458316729,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":65},"dur":3632,"tdur":977,"tts":269616},
-{"pid":27443,"tid":27477,"ts":326458316729,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":65},"dur":244,"tdur":245,"tts":269616},
-{"pid":27443,"tid":27477,"ts":326458316973,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":65},"dur":61,"tdur":61,"tts":269861},
-{"pid":27443,"tid":27477,"ts":326458317034,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":65},"tts":269922},
-{"pid":27443,"tid":27477,"ts":326458319873,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":270105},
-{"pid":27443,"tid":27477,"ts":326458319903,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":31,"tts":270135},
-{"pid":27443,"tid":27477,"ts":326458319903,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":270135},
-{"pid":27443,"tid":27477,"ts":326458319934,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":270166},
-{"pid":27443,"tid":27477,"ts":326458319934,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":270166,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458319995,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":270288},
-{"pid":27443,"tid":27477,"ts":326458319995,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":270288},
-{"pid":27443,"tid":27477,"ts":326458320361,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":270593},
-{"pid":27443,"tid":27477,"ts":326458320391,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":947,"tdur":366,"tts":270624},
-{"pid":27443,"tid":27477,"ts":326458320391,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":270624},
-{"pid":27443,"tid":27477,"ts":326458320422,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":854,"tdur":244,"tts":270654},
-{"pid":27443,"tid":27477,"ts":326458320513,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12074},"dur":61,"tdur":61,"tts":270746},
-{"pid":27443,"tid":27477,"ts":326458320544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":270776,"id":"0xaf88adebf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458320605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":270837,"id":"0xaf88ade4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458321307,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":270959,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458321368,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":271020,"id":"0x30000001c"},
-{"pid":27443,"tid":27477,"ts":326458321368,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":271020,"id":"0x30000001d"},
-{"pid":27443,"tid":27477,"ts":326458321399,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":271051,"id":"0x30000001e"},
-{"pid":27443,"tid":27477,"ts":326458321399,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":396,"tdur":214,"tts":271051},
-{"pid":27443,"tid":27477,"ts":326458321734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271204,"id":"0xaf88ade5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458321826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":271295,"id":"0xaf88abcff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458321826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271295,"id":"0xaf88a8e3f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458323504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458316},"tts":271356,"id":"0xaf88ab93f182217a"},
-{"pid":27443,"tid":27477,"ts":326458323535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":271387},
-{"pid":27443,"tid":27477,"ts":326458323535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":271387,"id":"0xaf88ababf182217a"},
-{"pid":27443,"tid":27477,"ts":326458323565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":271417},
-{"pid":27443,"tid":27477,"ts":326458323565,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":123,"tdur":122,"tts":271417},
-{"pid":27443,"tid":27477,"ts":326458323565,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":271448,"id":"0x30000001f"},
-{"pid":27443,"tid":27477,"ts":326458323596,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":271448},
-{"pid":27443,"tid":27477,"ts":326458323627,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":271478,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458323657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":271509,"id":"0xaf88abc9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458323657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271509,"id":"0xaf88a8fef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458323718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":271570,"id":"0xaf88aba4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458323718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":271570},
-{"pid":27443,"tid":27477,"ts":326458323749,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458300926.0,"frame_time_us":326458316925.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":271600},
-{"pid":27443,"tid":27477,"ts":326458323779,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458300926.0,"frame_time_us":326458316925.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":271631},
-{"pid":27443,"tid":27477,"ts":326458323810,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458333591},"dur":30,"tdur":31,"tts":271661},
-{"pid":27443,"tid":27477,"ts":326458323840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271692,"id":"0xaf88aba5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458324695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":271753,"id":"0xaf88aba6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458324695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":271753},
-{"pid":27443,"tid":27459,"ts":326458322070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5915550,"id":"0xaf88a8e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458322070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":5915550},
-{"pid":27443,"tid":27459,"ts":326458322101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5915580,"id":"0xaf88a8fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458322101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5915580,"id":"0xaf88ab22f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458322131,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":31,"tdur":30,"tts":5915611},
-{"pid":27443,"tid":27459,"ts":326458322131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5915611,"id":"0xaf88abc8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458322162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5915641,"id":"0xaf88a8fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458322192,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5915672,"id":"0xaf88a8e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458322223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5915702},
-{"pid":27443,"tid":27459,"ts":326458322223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5915702,"id":"0xaf88abcff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458322253,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":5915733},
-{"pid":27443,"tid":27459,"ts":326458322253,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5915733},
-{"pid":27443,"tid":27459,"ts":326458322284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5915763,"id":"0xaf88a8fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458322314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5915794},
-{"pid":27443,"tid":27459,"ts":326458323749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5915855,"id":"0xaf88a8fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458323749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1068,"tts":5915855},
-{"pid":27443,"tid":27459,"ts":326458323749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5915885,"id":"0xaf88a8fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458323779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5915885,"id":"0xaf88abc9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458323779,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1038,"tts":5915885},
-{"pid":27443,"tid":27459,"ts":326458323840,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":947,"tts":5915946},
-{"pid":27443,"tid":27459,"ts":326458323871,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5915977,"id":"0x30000001f"},
-{"pid":27443,"tid":27459,"ts":326458323871,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":30,"tts":5915977},
-{"pid":27443,"tid":27459,"ts":326458323993,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":763,"tdur":763,"tts":5916038},
-{"pid":27443,"tid":27459,"ts":326458324023,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":733,"tdur":733,"tts":5916068},
-{"pid":27443,"tid":27459,"ts":326458324054,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5916130},
-{"pid":27443,"tid":27459,"ts":326458324115,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5916160},
-{"pid":27443,"tid":27459,"ts":326458324145,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5916191},
-{"pid":27443,"tid":27459,"ts":326458324176,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5916221},
-{"pid":27443,"tid":27459,"ts":326458324206,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":519,"tdur":518,"tts":5916252},
-{"pid":27443,"tid":27459,"ts":326458324328,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":367,"tdur":366,"tts":5916374},
-{"pid":27443,"tid":27459,"ts":326458324359,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5916404},
-{"pid":27443,"tid":27459,"ts":326458324634,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":16,"frame":"0x78c60000"}},"tts":5916679,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458324664,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":5916709},
-{"pid":27443,"tid":27459,"ts":326458324664,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5916709,"id":"0xaf88aba7f182217a"},
-{"pid":27443,"tid":27459,"ts":326458324695,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5916740},
-{"pid":27443,"tid":27459,"ts":326458324786,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":31,"tts":5916831},
-{"pid":27443,"tid":27459,"ts":326458324786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5916831,"id":"0xaf88ade6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458324908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5916954,"id":"0xaf88a8fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458324908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":5916954},
-{"pid":27443,"tid":27459,"ts":326458324939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5916984,"id":"0xaf88a8f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458324939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5916984,"id":"0xaf88abcaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458324939,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":5916984},
-{"pid":27443,"tid":27459,"ts":326458324969,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5917015},
-{"pid":27443,"tid":27459,"ts":326458325000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5917076,"id":"0xaf88a8f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458325030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5917076},
-{"pid":27443,"tid":27459,"ts":326458325061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5917106,"id":"0xaf88a8f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458325061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5917106},
-{"pid":27443,"tid":27459,"ts":326458327838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5917228,"id":"0xaf88a8faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458327838,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10835,"tdur":9919,"tts":5917228},
-{"pid":27443,"tid":27459,"ts":326458327869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5917259,"id":"0xaf88a8fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458327869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5917259,"id":"0xaf88abcbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458327899,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10774,"tdur":9858,"tts":5917289},
-{"pid":27443,"tid":27459,"ts":326458327899,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":66},"tts":5917289},
-{"pid":27443,"tid":27459,"ts":326458327899,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":5917320},
-{"pid":27443,"tid":27459,"ts":326458327960,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6684,"tdur":6349,"tts":5917350},
-{"pid":27443,"tid":27459,"ts":326458327991,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5917381},
-{"pid":27443,"tid":27459,"ts":326458328021,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":16,"frame":"0x78c60000"}},"dur":6623,"tdur":6288,"tts":5917411},
-{"pid":27443,"tid":27459,"ts":326458328083,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6531,"tdur":6165,"tts":5917503},
-{"pid":27443,"tid":27459,"ts":326458328113,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5917503},
-{"pid":27443,"tid":27459,"ts":326458328296,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5917717},
-{"pid":27443,"tid":27459,"ts":326458328357,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":5917747},
-{"pid":27443,"tid":27459,"ts":326458334583,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5923638},
-{"pid":27443,"tid":27459,"ts":326458334644,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2869,"tdur":2777,"tts":5923729},
-{"pid":27443,"tid":27459,"ts":326458334705,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5923760},
-{"pid":27443,"tid":27477,"ts":326458324725,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":271783},
-{"pid":27443,"tid":27477,"ts":326458324756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":271814,"id":"0xaf88abcaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458324786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271844,"id":"0xaf88a8f8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458324817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":271875,"id":"0xaf88aba7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458324817,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":0,"tts":271875},
-{"pid":27443,"tid":27477,"ts":326458325214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":2624,"tdur":213,"tts":271906},
-{"pid":27443,"tid":27477,"ts":326458325214,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":2624,"tdur":183,"tts":271906},
-{"pid":27443,"tid":27477,"ts":326458325244,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":66},"tts":271936},
-{"pid":27443,"tid":27477,"ts":326458327747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":272028,"id":"0xaf88abcbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458327777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272058,"id":"0xaf88a8faf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458327808,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":272089},
-{"pid":27443,"tid":27477,"ts":326458333698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458333},"tts":272180,"id":"0xaf88aba5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458333729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3235,"tdur":427,"tts":272180},
-{"pid":27443,"tid":27477,"ts":326458333729,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3235,"tdur":427,"tts":272180},
-{"pid":27443,"tid":27477,"ts":326458333759,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":3174,"tdur":366,"tts":272211},
-{"pid":27443,"tid":27477,"ts":326458333759,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":3174,"tdur":366,"tts":272211},
-{"pid":27443,"tid":27477,"ts":326458333790,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":122,"tts":272241},
-{"pid":27443,"tid":27477,"ts":326458333942,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":272363},
-{"pid":27443,"tid":27477,"ts":326458333942,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":272394},
-{"pid":27443,"tid":27477,"ts":326458333973,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":2930,"tdur":152,"tts":272394},
-{"pid":27443,"tid":27477,"ts":326458333973,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":2930,"tdur":152,"tts":272394},
-{"pid":27443,"tid":27477,"ts":326458333973,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":272394,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458334003,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":272424},
-{"pid":27443,"tid":27477,"ts":326458334034,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":2838,"tdur":61,"tts":272455},
-{"pid":27443,"tid":27477,"ts":326458336903,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":272546,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458336933,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":272577,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458336933,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":272577,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458336964,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272607,"id":"0xaf88aba0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458336994,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":272638},
-{"pid":27443,"tid":27477,"ts":326458336994,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":272638},
-{"pid":27443,"tid":27477,"ts":326458336994,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":272638,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458337025,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":272669},
-{"pid":27443,"tid":27477,"ts":326458337025,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272669,"id":"0xaf88abbdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458337055,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272699,"id":"0xaf88aba1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458337055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":62,"tdur":61,"tts":272699},
-{"pid":27443,"tid":27477,"ts":326458337055,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":62,"tdur":61,"tts":272699},
-{"pid":27443,"tid":27477,"ts":326458337086,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":272730,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458337086,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":272730},
-{"pid":27443,"tid":27477,"ts":326458337117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272760,"id":"0xaf88abbef182217a"},
-{"pid":27443,"tid":27477,"ts":326458337117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272760,"id":"0xaf88aba2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458337117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":272791},
-{"pid":27443,"tid":27477,"ts":326458337147,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":272791},
-{"pid":27443,"tid":27477,"ts":326458337147,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":272791,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458337147,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":272791},
-{"pid":27443,"tid":27477,"ts":326458337178,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272821,"id":"0xaf88aba3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458337178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":272821},
-{"pid":27443,"tid":27477,"ts":326458337178,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":272821},
-{"pid":27443,"tid":27477,"ts":326458337208,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":272852,"id":"0x300000020"},
-{"pid":27443,"tid":27477,"ts":326458337239,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":272882},
-{"pid":27443,"tid":27477,"ts":326458337239,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":272882,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458337269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":272943,"id":"0xaf88abc4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458337300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272943,"id":"0xaf88a8f4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458337330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272974,"id":"0xaf88abbcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458337330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":272974},
-{"pid":27443,"tid":27477,"ts":326458337361,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458317603.0,"frame_time_us":326458333602.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":273004},
-{"pid":27443,"tid":27477,"ts":326458337391,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458317603.0,"frame_time_us":326458333602.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":273035},
-{"pid":27443,"tid":27477,"ts":326458337422,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458350268},"dur":30,"tdur":0,"tts":273065},
-{"pid":27443,"tid":27477,"ts":326458337422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":273065,"id":"0xaf88abbff182217a"},
-{"pid":27443,"tid":27477,"ts":326458337452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":273096,"id":"0xaf88abbdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458337483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":273126},
-{"pid":27443,"tid":27477,"ts":326458337483,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":122,"tts":273126},
-{"pid":27443,"tid":27477,"ts":326458337483,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":273126},
-{"pid":27443,"tid":27477,"ts":326458337483,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":273126},
-{"pid":27443,"tid":27477,"ts":326458337513,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":273157},
-{"pid":27443,"tid":27459,"ts":326458334705,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5923760},
-{"pid":27443,"tid":27459,"ts":326458334736,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5923790},
-{"pid":27443,"tid":27459,"ts":326458335133,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5924187},
-{"pid":27443,"tid":27459,"ts":326458335163,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5924217},
-{"pid":27443,"tid":27459,"ts":326458335194,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2289,"tdur":2258,"tts":5924248},
-{"pid":27443,"tid":27459,"ts":326458335224,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2106,"tdur":2076,"tts":5924278},
-{"pid":27443,"tid":27459,"ts":326458335224,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":489,"tts":5924278},
-{"pid":27443,"tid":27459,"ts":326458335713,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":213,"tts":5924767},
-{"pid":27443,"tid":27459,"ts":326458335926,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":5924980},
-{"pid":27443,"tid":27459,"ts":326458336018,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":61,"tdur":31,"tts":5925072},
-{"pid":27443,"tid":27459,"ts":326458336018,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":5925072},
-{"pid":27443,"tid":27459,"ts":326458336079,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1251,"tdur":1251,"tts":5925103},
-{"pid":27443,"tid":27459,"ts":326458337361,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":5926384},
-{"pid":27443,"tid":27459,"ts":326458337391,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":5926415},
-{"pid":27443,"tid":27459,"ts":326458337513,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":66},"dur":428,"tdur":427,"tts":5926537},
-{"pid":27443,"tid":27459,"ts":326458337513,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":428,"tdur":427,"tts":5926537},
-{"pid":27443,"tid":27459,"ts":326458337788,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":0,"tdur":0,"tts":5926812},
-{"pid":27443,"tid":27459,"ts":326458337819,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":0,"tdur":0,"tts":5926842},
-{"pid":27443,"tid":27459,"ts":326458337819,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":30,"tdur":31,"tts":5926842},
-{"pid":27443,"tid":27459,"ts":326458337849,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":0,"tdur":0,"tts":5926873},
-{"pid":27443,"tid":27459,"ts":326458337849,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":31,"tdur":30,"tts":5926873},
-{"pid":27443,"tid":27459,"ts":326458337880,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":0,"tdur":0,"tts":5926903},
-{"pid":27443,"tid":27459,"ts":326458337880,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":30,"tdur":31,"tts":5926903},
-{"pid":27443,"tid":27459,"ts":326458337910,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":0,"tdur":0,"tts":5926934},
-{"pid":27443,"tid":27459,"ts":326458337941,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":66},"dur":0,"tdur":0,"tts":5926964},
-{"pid":27443,"tid":27459,"ts":326458337971,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5926995,"id":"0x30000001f"},
-{"pid":27443,"tid":27459,"ts":326458337971,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":641,"tdur":91,"tts":5926995},
-{"pid":27443,"tid":27459,"ts":326458337971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5926995,"id":"0xaf88abb8f182217a"},
-{"pid":27443,"tid":27459,"ts":326458338643,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5927117},
-{"pid":27443,"tid":27459,"ts":326458338704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5927178,"id":"0xaf88a8fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458338734,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1068,"tdur":1069,"tts":5927208},
-{"pid":27443,"tid":27459,"ts":326458338734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5927208,"id":"0xaf88a8f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458338765,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5927239,"id":"0xaf88abc4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458338765,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1007,"tdur":1007,"tts":5927239},
-{"pid":27443,"tid":27459,"ts":326458338826,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":946,"tdur":946,"tts":5927300},
-{"pid":27443,"tid":27459,"ts":326458338826,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5927300,"id":"0x300000020"},
-{"pid":27443,"tid":27459,"ts":326458338856,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":794,"tdur":793,"tts":5927331},
-{"pid":27443,"tid":27459,"ts":326458338887,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":763,"tdur":763,"tts":5927361},
-{"pid":27443,"tid":27459,"ts":326458338948,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5927422},
-{"pid":27443,"tid":27459,"ts":326458338978,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5927453},
-{"pid":27443,"tid":27459,"ts":326458339009,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5927483},
-{"pid":27443,"tid":27459,"ts":326458339039,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5927514},
-{"pid":27443,"tid":27459,"ts":326458339070,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":549,"tts":5927575},
-{"pid":27443,"tid":27459,"ts":326458339222,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":5927697},
-{"pid":27443,"tid":27459,"ts":326458339253,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5927727},
-{"pid":27443,"tid":27459,"ts":326458339528,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":17,"frame":"0x78c60000"}},"tts":5928002,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458339558,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":5928032},
-{"pid":27443,"tid":27459,"ts":326458339558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5928032,"id":"0xaf88abb6f182217a"},
-{"pid":27443,"tid":27459,"ts":326458339589,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5928063},
-{"pid":27443,"tid":27459,"ts":326458339680,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5928155},
-{"pid":27443,"tid":27459,"ts":326458339711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5928185,"id":"0xaf88ade7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458339833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5928307,"id":"0xaf88a8f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458339833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5928307},
-{"pid":27443,"tid":27459,"ts":326458339863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5928338,"id":"0xaf88a8f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458339863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":5928368},
-{"pid":27443,"tid":27459,"ts":326458341267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5928429,"id":"0xaf88a8f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458341298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":14222,"tdur":11414,"tts":5928460},
-{"pid":27443,"tid":27459,"ts":326458341298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5928460,"id":"0xaf88a8f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458341328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5928490,"id":"0xaf88abc5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458341328,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":14192,"tdur":11384,"tts":5928490},
-{"pid":27443,"tid":27459,"ts":326458341328,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":67},"tts":5928490},
-{"pid":27443,"tid":27459,"ts":326458341359,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":5928521},
-{"pid":27443,"tid":27459,"ts":326458341389,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8180,"tdur":7539,"tts":5928551},
-{"pid":27443,"tid":27459,"ts":326458341420,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5928582},
-{"pid":27443,"tid":27477,"ts":326458337513,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":273157},
-{"pid":27443,"tid":27477,"ts":326458337605,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":273248},
-{"pid":27443,"tid":27477,"ts":326458337605,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":273248},
-{"pid":27443,"tid":27477,"ts":326458337635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":273279,"id":"0xaf88abbef182217a"},
-{"pid":27443,"tid":27477,"ts":326458337635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":273279},
-{"pid":27443,"tid":27477,"ts":326458337635,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":92,"tts":273309},
-{"pid":27443,"tid":27477,"ts":326458337666,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":273309},
-{"pid":27443,"tid":27477,"ts":326458337666,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":273309},
-{"pid":27443,"tid":27477,"ts":326458337666,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":273340},
-{"pid":27443,"tid":27477,"ts":326458337696,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":273340},
-{"pid":27443,"tid":27477,"ts":326458337757,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":273401},
-{"pid":27443,"tid":27477,"ts":326458337757,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":273401},
-{"pid":27443,"tid":27477,"ts":326458338032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":273462,"id":"0xaf88abb8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458338032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1343,"tdur":1343,"tts":273462},
-{"pid":27443,"tid":27477,"ts":326458338063,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1312,"tdur":1312,"tts":273493},
-{"pid":27443,"tid":27477,"ts":326458338063,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":273493},
-{"pid":27443,"tid":27477,"ts":326458338063,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1312,"tdur":1312,"tts":273493},
-{"pid":27443,"tid":27477,"ts":326458338093,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1252,"tdur":1251,"tts":273523},
-{"pid":27443,"tid":27477,"ts":326458338093,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":273523},
-{"pid":27443,"tid":27477,"ts":326458338093,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":273523},
-{"pid":27443,"tid":27477,"ts":326458338124,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":273554,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458338124,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":273554},
-{"pid":27443,"tid":27477,"ts":326458338154,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":273584},
-{"pid":27443,"tid":27477,"ts":326458338612,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":733,"tdur":732,"tts":274042},
-{"pid":27443,"tid":27477,"ts":326458338612,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":66},"dur":244,"tdur":244,"tts":274042},
-{"pid":27443,"tid":27477,"ts":326458338856,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":66},"dur":31,"tdur":31,"tts":274286},
-{"pid":27443,"tid":27477,"ts":326458338917,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":66},"tts":274347},
-{"pid":27443,"tid":27477,"ts":326458339039,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":274500},
-{"pid":27443,"tid":27477,"ts":326458339070,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":274500},
-{"pid":27443,"tid":27477,"ts":326458339070,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":274,"tts":274500},
-{"pid":27443,"tid":27477,"ts":326458339100,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":274530},
-{"pid":27443,"tid":27477,"ts":326458339192,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":274622},
-{"pid":27443,"tid":27477,"ts":326458339192,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":274622},
-{"pid":27443,"tid":27477,"ts":326458339192,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":274622},
-{"pid":27443,"tid":27477,"ts":326458339222,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":274652},
-{"pid":27443,"tid":27477,"ts":326458339222,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":274652,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458339253,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":274683},
-{"pid":27443,"tid":27477,"ts":326458339253,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":274683},
-{"pid":27443,"tid":27477,"ts":326458339314,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":274744,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458339314,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":274744,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458339345,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":274774,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458339375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":274805,"id":"0xaf88abb9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458339375,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":274805},
-{"pid":27443,"tid":27477,"ts":326458339406,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":274835},
-{"pid":27443,"tid":27477,"ts":326458339406,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":274835,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458339436,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":274866},
-{"pid":27443,"tid":27477,"ts":326458339436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274866,"id":"0xaf88abb4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458339467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":274897,"id":"0xaf88abbaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458339467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":274897},
-{"pid":27443,"tid":27477,"ts":326458339467,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":274897},
-{"pid":27443,"tid":27477,"ts":326458339497,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":274927,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458339497,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":274927},
-{"pid":27443,"tid":27477,"ts":326458339528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274958,"id":"0xaf88abb5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458339528,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":274958,"id":"0xaf88abbbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458339558,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":274988},
-{"pid":27443,"tid":27477,"ts":326458339558,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":274988},
-{"pid":27443,"tid":27477,"ts":326458339558,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":274988,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458339558,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":274988},
-{"pid":27443,"tid":27477,"ts":326458339589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":275019,"id":"0xaf88abb4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458339589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1404,"tdur":1098,"tts":275019},
-{"pid":27443,"tid":27477,"ts":326458339589,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1373,"tdur":1098,"tts":275019},
-{"pid":27443,"tid":27477,"ts":326458339619,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":275049},
-{"pid":27443,"tid":27477,"ts":326458339619,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":275049},
-{"pid":27443,"tid":27477,"ts":326458339650,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":275080},
-{"pid":27443,"tid":27477,"ts":326458339650,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":275080},
-{"pid":27443,"tid":27477,"ts":326458339741,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1221,"tdur":946,"tts":275171},
-{"pid":27443,"tid":27477,"ts":326458339741,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1221,"tdur":946,"tts":275171},
-{"pid":27443,"tid":27477,"ts":326458339772,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1160,"tdur":885,"tts":275202},
-{"pid":27443,"tid":27477,"ts":326458339772,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":275202,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458340138,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":275293},
-{"pid":27443,"tid":27477,"ts":326458340169,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275324},
-{"pid":27443,"tid":27477,"ts":326458340169,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":275354},
-{"pid":27443,"tid":27477,"ts":326458340199,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275354},
-{"pid":27443,"tid":27477,"ts":326458340230,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275385},
-{"pid":27443,"tid":27477,"ts":326458340230,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":275385},
-{"pid":27443,"tid":27477,"ts":326458340260,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275415},
-{"pid":27443,"tid":27477,"ts":326458340291,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275446},
-{"pid":27443,"tid":27477,"ts":326458340291,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":275446},
-{"pid":27443,"tid":27477,"ts":326458340321,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275476},
-{"pid":27443,"tid":27477,"ts":326458340321,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":275476},
-{"pid":27443,"tid":27477,"ts":326458340352,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275507},
-{"pid":27443,"tid":27477,"ts":326458340382,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275537},
-{"pid":27443,"tid":27477,"ts":326458340382,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":275537},
-{"pid":27443,"tid":27477,"ts":326458340413,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275568},
-{"pid":27443,"tid":27477,"ts":326458340443,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275598},
-{"pid":27443,"tid":27477,"ts":326458340443,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":275598},
-{"pid":27443,"tid":27477,"ts":326458340474,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275629},
-{"pid":27443,"tid":27477,"ts":326458340474,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":275660},
-{"pid":27443,"tid":27477,"ts":326458340504,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275660},
-{"pid":27443,"tid":27477,"ts":326458340535,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275690},
-{"pid":27443,"tid":27477,"ts":326458340535,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":275690},
-{"pid":27443,"tid":27477,"ts":326458340565,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275721},
-{"pid":27443,"tid":27477,"ts":326458340565,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":275721},
-{"pid":27443,"tid":27477,"ts":326458340596,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275751},
-{"pid":27443,"tid":27477,"ts":326458340626,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275782},
-{"pid":27443,"tid":27477,"ts":326458340687,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":275843},
-{"pid":27443,"tid":27477,"ts":326458340718,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275873},
-{"pid":27443,"tid":27477,"ts":326458340748,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275904},
-{"pid":27443,"tid":27477,"ts":326458340748,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":275904},
-{"pid":27443,"tid":27477,"ts":326458340779,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275934},
-{"pid":27443,"tid":27477,"ts":326458340809,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275965},
-{"pid":27443,"tid":27477,"ts":326458340809,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":275965},
-{"pid":27443,"tid":27477,"ts":326458340840,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":275995},
-{"pid":27443,"tid":27477,"ts":326458340871,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":276056},
-{"pid":27443,"tid":27477,"ts":326458340901,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":276056},
-{"pid":27443,"tid":27477,"ts":326458340901,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":276056},
-{"pid":27443,"tid":27477,"ts":326458340932,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":276087},
-{"pid":27443,"tid":27477,"ts":326458340962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":276117,"id":"0xaf88abb7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458340993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":276148,"id":"0xaf88abb5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458340993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":276148},
-{"pid":27443,"tid":27477,"ts":326458340993,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":276148},
-{"pid":27443,"tid":27477,"ts":326458341023,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":276178},
-{"pid":27443,"tid":27477,"ts":326458341023,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":276178},
-{"pid":27443,"tid":27477,"ts":326458341023,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":276178},
-{"pid":27443,"tid":27477,"ts":326458341054,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":276209},
-{"pid":27443,"tid":27477,"ts":326458341084,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":276239},
-{"pid":27443,"tid":27477,"ts":326458341115,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":276270},
-{"pid":27443,"tid":27477,"ts":326458341115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":276270,"id":"0xaf88abb6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458341145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":123,"tts":276300},
-{"pid":27443,"tid":27477,"ts":326458341145,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":123,"tts":276300},
-{"pid":27443,"tid":27477,"ts":326458341145,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":67},"tts":276300},
-{"pid":27443,"tid":27477,"ts":326458341206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":276361,"id":"0xaf88abc5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458341206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":276392,"id":"0xaf88a8f6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458341267,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":276423},
-{"pid":27443,"tid":27477,"ts":326458341267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":276423,"id":"0xaf88abb7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458341298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2625,"tdur":1648,"tts":276453},
-{"pid":27443,"tid":27477,"ts":326458341298,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2625,"tdur":1618,"tts":276453},
-{"pid":27443,"tid":27477,"ts":326458341298,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":276453},
-{"pid":27443,"tid":27477,"ts":326458341328,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2564,"tdur":1587,"tts":276484},
-{"pid":27443,"tid":27477,"ts":326458341359,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":66},"dur":1190,"tdur":855,"tts":276514},
-{"pid":27443,"tid":27477,"ts":326458341389,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":66},"dur":336,"tdur":274,"tts":276545},
-{"pid":27443,"tid":27477,"ts":326458341756,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":66},"dur":30,"tdur":30,"tts":276850},
-{"pid":27443,"tid":27477,"ts":326458341786,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":66},"tts":276880},
-{"pid":27443,"tid":27477,"ts":326458342213,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":277033},
-{"pid":27443,"tid":27477,"ts":326458342213,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":277033},
-{"pid":27443,"tid":27477,"ts":326458342213,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":277063},
-{"pid":27443,"tid":27477,"ts":326458342244,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":277063},
-{"pid":27443,"tid":27477,"ts":326458342244,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":277063,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458342305,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":277124},
-{"pid":27443,"tid":27477,"ts":326458342549,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":277369},
-{"pid":27443,"tid":27477,"ts":326458342580,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":397,"tts":277399},
-{"pid":27443,"tid":27477,"ts":326458342580,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":277399},
-{"pid":27443,"tid":27477,"ts":326458342610,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":611,"tdur":274,"tts":277430},
-{"pid":27443,"tid":27477,"ts":326458342702,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12080},"dur":61,"tdur":61,"tts":277521},
-{"pid":27443,"tid":27477,"ts":326458342732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277552,"id":"0xaf88ade0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458342793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277613,"id":"0xaf88ade1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458343343,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":277796,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458343373,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":277826,"id":"0x30000001f"},
-{"pid":27443,"tid":27477,"ts":326458343404,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":277857},
-{"pid":27443,"tid":27477,"ts":326458343495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277949,"id":"0xaf88ade2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458343556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":278010,"id":"0xaf88abc6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458343587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278040,"id":"0xaf88a8f0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458345479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":278132,"id":"0xaf88abb0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458345510,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":278162},
-{"pid":27443,"tid":27477,"ts":326458345540,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":278193},
-{"pid":27443,"tid":27477,"ts":326458345540,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":278193,"id":"0xaf88abc7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458352316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458350},"tts":278284,"id":"0xaf88abbff182217a"},
-{"pid":27443,"tid":27477,"ts":326458352316,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":854,"tdur":31,"tts":278284},
-{"pid":27443,"tid":27477,"ts":326458354055,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":278376,"id":"0xaf88abb1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458354086,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1495,"tdur":1465,"tts":278406},
-{"pid":27443,"tid":27477,"ts":326458354086,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1495,"tdur":1465,"tts":278406},
-{"pid":27443,"tid":27477,"ts":326458354086,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":0,"tts":278437},
-{"pid":27443,"tid":27477,"ts":326458354116,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1465,"tdur":1434,"tts":278437},
-{"pid":27443,"tid":27477,"ts":326458354147,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1434,"tdur":1404,"tts":278467},
-{"pid":27443,"tid":27477,"ts":326458354147,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":278467},
-{"pid":27443,"tid":27477,"ts":326458354147,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":278467},
-{"pid":27443,"tid":27477,"ts":326458354177,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":278498,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458354177,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":278498},
-{"pid":27443,"tid":27477,"ts":326458354238,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":278559},
-{"pid":27443,"tid":27477,"ts":326458354666,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":885,"tdur":855,"tts":278986},
-{"pid":27443,"tid":27477,"ts":326458354696,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":67},"dur":305,"tdur":274,"tts":279017},
-{"pid":27443,"tid":27477,"ts":326458355001,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":67},"dur":31,"tdur":31,"tts":279291},
-{"pid":27443,"tid":27477,"ts":326458355063,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":67},"tts":279352},
-{"pid":27443,"tid":27477,"ts":326458355185,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":279475},
-{"pid":27443,"tid":27477,"ts":326458355215,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":336,"tts":279505},
-{"pid":27443,"tid":27477,"ts":326458355215,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":279505},
-{"pid":27443,"tid":27477,"ts":326458355398,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":279688},
-{"pid":27443,"tid":27477,"ts":326458355398,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":279688},
-{"pid":27443,"tid":27477,"ts":326458355398,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":279688},
-{"pid":27443,"tid":27477,"ts":326458355429,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":279719},
-{"pid":27443,"tid":27477,"ts":326458355429,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":279719,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458355459,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":279749},
-{"pid":27443,"tid":27477,"ts":326458355459,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":279749},
-{"pid":27443,"tid":27477,"ts":326458355520,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":279810,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458355520,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":279810,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458355551,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":279841,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458355581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":279871,"id":"0xaf88abb2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458355612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":279902},
-{"pid":27443,"tid":27477,"ts":326458355612,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":279902},
-{"pid":27443,"tid":27477,"ts":326458355642,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":279932,"id":"0x300000021"},
-{"pid":27443,"tid":27477,"ts":326458355642,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":279932},
-{"pid":27443,"tid":27477,"ts":326458355673,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":279963,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458341664,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":17,"frame":"0x78c60000"}},"dur":7874,"tdur":7416,"tts":5928643},
-{"pid":27443,"tid":27459,"ts":326458341664,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":5928643},
-{"pid":27443,"tid":27459,"ts":326458341878,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7660,"tdur":7294,"tts":5928765},
-{"pid":27443,"tid":27459,"ts":326458341908,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5928765},
-{"pid":27443,"tid":27459,"ts":326458342091,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5928948},
-{"pid":27443,"tid":27459,"ts":326458342152,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":5929009},{"pid":27443,"tid":27459,"ts":326458343068,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5929925},
-{"pid":27443,"tid":27459,"ts":326458343160,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5930016},
-{"pid":27443,"tid":27459,"ts":326458343190,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5930047},
-{"pid":27443,"tid":27459,"ts":326458343221,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5930077},
-{"pid":27443,"tid":27459,"ts":326458343373,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5930230},
-{"pid":27443,"tid":27459,"ts":326458343800,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5930322},
-{"pid":27443,"tid":27459,"ts":326458343831,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5930352},
-{"pid":27443,"tid":27459,"ts":326458343923,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5930444},
-{"pid":27443,"tid":27459,"ts":326458348470,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5935022},
-{"pid":27443,"tid":27459,"ts":326458348562,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5935083},
-{"pid":27443,"tid":27459,"ts":326458348623,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5935144},
-{"pid":27443,"tid":27459,"ts":326458348623,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5935174},
-{"pid":27443,"tid":27459,"ts":326458348714,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5935235},
-{"pid":27443,"tid":27459,"ts":326458348867,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5935388},
-{"pid":27443,"tid":27459,"ts":326458349172,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5935693},
-{"pid":27443,"tid":27459,"ts":326458349294,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5935815},
-{"pid":27443,"tid":27459,"ts":326458349508,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5936029},
-{"pid":27443,"tid":27459,"ts":326458349569,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3845,"tdur":3082,"tts":5936090},
-{"pid":27443,"tid":27459,"ts":326458349599,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5936151},
-{"pid":27443,"tid":27459,"ts":326458349630,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5936151},
-{"pid":27443,"tid":27459,"ts":326458349630,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5936181},
-{"pid":27443,"tid":27459,"ts":326458350332,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5936731},
-{"pid":27443,"tid":27459,"ts":326458350362,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5936731},
-{"pid":27443,"tid":27459,"ts":326458350393,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3021,"tdur":2380,"tts":5936792},
-{"pid":27443,"tid":27459,"ts":326458350423,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2808,"tdur":2197,"tts":5936792},
-{"pid":27443,"tid":27459,"ts":326458350454,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":549,"tdur":458,"tts":5936822},
-{"pid":27443,"tid":27459,"ts":326458351034,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":5937311},
-{"pid":27443,"tid":27459,"ts":326458351278,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":5937555},
-{"pid":27443,"tid":27459,"ts":326458351400,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":5937677},
-{"pid":27443,"tid":27459,"ts":326458351431,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1800,"tdur":1252,"tts":5937707},
-{"pid":27443,"tid":27459,"ts":326458353231,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":5939020},
-{"pid":27443,"tid":27459,"ts":326458353292,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":5939050},
-{"pid":27443,"tid":27459,"ts":326458353414,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":67},"dur":519,"tdur":519,"tts":5939172},
-{"pid":27443,"tid":27459,"ts":326458353445,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":488,"tdur":488,"tts":5939203},
-{"pid":27443,"tid":27459,"ts":326458353689,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":61,"tdur":0,"tts":5939478},
-{"pid":27443,"tid":27459,"ts":326458353750,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":0,"tdur":0,"tts":5939508},
-{"pid":27443,"tid":27459,"ts":326458353750,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":31,"tdur":31,"tts":5939508},
-{"pid":27443,"tid":27459,"ts":326458353781,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":30,"tdur":30,"tts":5939539},
-{"pid":27443,"tid":27459,"ts":326458353811,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":0,"tdur":0,"tts":5939569},
-{"pid":27443,"tid":27459,"ts":326458353842,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":0,"tdur":0,"tts":5939600},
-{"pid":27443,"tid":27459,"ts":326458353842,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":30,"tdur":30,"tts":5939600},
-{"pid":27443,"tid":27459,"ts":326458353872,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":31,"tdur":31,"tts":5939630},
-{"pid":27443,"tid":27459,"ts":326458353903,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":67},"dur":30,"tdur":30,"tts":5939661},
-{"pid":27443,"tid":27459,"ts":326458353933,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5939691,"id":"0x300000020"},
-{"pid":27443,"tid":27459,"ts":326458353964,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1495,"tdur":91,"tts":5939722},
-{"pid":27443,"tid":27459,"ts":326458353964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5939722,"id":"0xaf88abb1f182217a"},
-{"pid":27443,"tid":27459,"ts":326458355490,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5939844},
-{"pid":27443,"tid":27459,"ts":326458355551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5939935,"id":"0xaf88a8f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458355581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":5939935},
-{"pid":27443,"tid":27459,"ts":326458355612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5939966,"id":"0xaf88a8f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458355612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5939966,"id":"0xaf88abc6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458355612,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":5939966},
-{"pid":27443,"tid":27459,"ts":326458355642,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5939996},
-{"pid":27443,"tid":27459,"ts":326458355673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5940027,"id":"0xaf88a8f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458355703,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5940058},
-{"pid":27443,"tid":27459,"ts":326458355703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5940058,"id":"0xaf88abc7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458355703,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":5940088},
-{"pid":27443,"tid":27459,"ts":326458355734,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5940088},
-{"pid":27443,"tid":27498,"ts":326458348928,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":39523},
-{"pid":27443,"tid":27498,"ts":326458349142,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":39768},
-{"pid":27443,"tid":27471,"ts":326458355490,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":339142},
-{"pid":27443,"tid":27471,"ts":326458355520,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":339142},
-{"pid":27443,"tid":27471,"ts":326458355551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339172,"id":"0xaf88a84cf182217a"},
-{"pid":27443,"tid":27471,"ts":326458355551,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":0,"tts":339203},
-{"pid":27443,"tid":27471,"ts":326458355581,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":339203},
-{"pid":27443,"tid":27471,"ts":326458355581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339203,"id":"0xaf88a84df182217a"},
-{"pid":27443,"tid":27471,"ts":326458355612,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":339233},
-{"pid":27443,"tid":27471,"ts":326458355612,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":339233},
-{"pid":27443,"tid":27471,"ts":326458355612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339233,"id":"0xaf88a84ef182217a"},
-{"pid":27443,"tid":27471,"ts":326458371818,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":62,"tts":339294},
-{"pid":27443,"tid":27471,"ts":326458371849,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":339325},
-{"pid":27443,"tid":27471,"ts":326458371849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339325,"id":"0xaf88a841f182217a"},
-{"pid":27443,"tid":27471,"ts":326458371879,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":339356},
-{"pid":27443,"tid":27471,"ts":326458371879,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":339356},
-{"pid":27443,"tid":27471,"ts":326458371879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339356,"id":"0xaf88a842f182217a"},
-{"pid":27443,"tid":27471,"ts":326458371910,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":339386},
-{"pid":27443,"tid":27471,"ts":326458371940,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":339417},
-{"pid":27443,"tid":27471,"ts":326458371940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339417,"id":"0xaf88a843f182217a"},
-{"pid":27443,"tid":27471,"ts":326458387200,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":339478},
-{"pid":27443,"tid":27471,"ts":326458387231,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":339508},
-{"pid":27443,"tid":27471,"ts":326458387231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339539,"id":"0xaf88a854f182217a"},
-{"pid":27443,"tid":27469,"ts":326458387262,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":31,"tts":277582},
-{"pid":27443,"tid":27469,"ts":326458387292,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":277613},
-{"pid":27443,"tid":27469,"ts":326458387292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277613,"id":"0xaf88a855f182217a"},
-{"pid":27443,"tid":27471,"ts":326458387292,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":339569},
-{"pid":27443,"tid":27471,"ts":326458387292,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":339569},
-{"pid":27443,"tid":27471,"ts":326458387323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339600,"id":"0xaf88a856f182217a"},
-{"pid":27443,"tid":27469,"ts":326458400874,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":277674},
-{"pid":27443,"tid":27469,"ts":326458400904,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":277704},
-{"pid":27443,"tid":27469,"ts":326458400904,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277704,"id":"0xaf88a86ef182217a"},
-{"pid":27443,"tid":27469,"ts":326458400935,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":277735},
-{"pid":27443,"tid":27469,"ts":326458400965,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":277765},
-{"pid":27443,"tid":27469,"ts":326458400965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277765,"id":"0xaf88a86ff182217a"},
-{"pid":27443,"tid":27469,"ts":326458400996,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":277796},
-{"pid":27443,"tid":27469,"ts":326458400996,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":277796},
-{"pid":27443,"tid":27469,"ts":326458400996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277826,"id":"0xaf88a868f182217a"},
-{"pid":27443,"tid":27469,"ts":326458431821,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":61,"tts":277857},
-{"pid":27443,"tid":27469,"ts":326458431852,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":277887},
-{"pid":27443,"tid":27469,"ts":326458431852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277887,"id":"0xaf88a87cf182217a"},
-{"pid":27443,"tid":27471,"ts":326458431882,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":339630},
-{"pid":27443,"tid":27471,"ts":326458431913,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":339661},
-{"pid":27443,"tid":27471,"ts":326458431943,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339691,"id":"0xaf88a87df182217a"},
-{"pid":27443,"tid":27471,"ts":326458431943,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":339691},
-{"pid":27443,"tid":27471,"ts":326458431974,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":339722},
-{"pid":27443,"tid":27471,"ts":326458432004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339722,"id":"0xaf88a87ff182217a"},
-{"pid":27443,"tid":27496,"ts":326458439482,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":275,"tts":57683},
-{"pid":27443,"tid":27496,"ts":326458439482,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57683},
-{"pid":27443,"tid":27496,"ts":326458439726,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57927},
-{"pid":27443,"tid":27469,"ts":326458449645,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":278010},
-{"pid":27443,"tid":27469,"ts":326458449676,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":278010},
-{"pid":27443,"tid":27469,"ts":326458449706,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278040,"id":"0xaf88a870f182217a"},
-{"pid":27443,"tid":27471,"ts":326458449706,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":339783},
-{"pid":27443,"tid":27471,"ts":326458449737,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":339813},
-{"pid":27443,"tid":27469,"ts":326458449737,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":278071},
-{"pid":27443,"tid":27471,"ts":326458449737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339813,"id":"0xaf88a871f182217a"},
-{"pid":27443,"tid":27469,"ts":326458449767,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":278101},
-{"pid":27443,"tid":27469,"ts":326458449767,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278101,"id":"0xaf88a872f182217a"},
-{"pid":27443,"tid":27469,"ts":326458468018,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":153,"tdur":61,"tts":278162},
-{"pid":27443,"tid":27469,"ts":326458468140,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":278193},
-{"pid":27443,"tid":27469,"ts":326458468140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278193,"id":"0xaf88a804f182217a"},
-{"pid":27443,"tid":27469,"ts":326458468171,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":278223},
-{"pid":27443,"tid":27469,"ts":326458468171,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":278223},
-{"pid":27443,"tid":27466,"ts":326458355093,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":230550},
-{"pid":27443,"tid":27466,"ts":326458355124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":230581},
-{"pid":27443,"tid":27466,"ts":326458355154,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":230611,"id":"0xba443602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458355185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":230642,"id":"0xaf88abb3f182217a"},
-{"pid":27443,"tid":27466,"ts":326458356924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":230733,"id":"0xaf88ade3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458356924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":230733},
-{"pid":27443,"tid":27466,"ts":326458356955,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":230764,"id":"0xccc3a402"},
-{"pid":27443,"tid":27466,"ts":326458358603,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":230886,"id":"0xaf88adfcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458358633,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":230917},
-{"pid":27443,"tid":27466,"ts":326458358633,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":230917,"id":"0xccc3a506"},
-{"pid":27443,"tid":27466,"ts":326458358817,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":231008},
-{"pid":27443,"tid":27466,"ts":326458358847,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":231039},
-{"pid":27443,"tid":27466,"ts":326458358847,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231039,"id":"0xc4c0f90a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458359213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231130,"id":"0xaf88adfdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458359244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":231161},
-{"pid":27443,"tid":27466,"ts":326458359244,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231161,"id":"0xccc3a602"},
-{"pid":27443,"tid":27466,"ts":326458361014,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":231252},
-{"pid":27443,"tid":27466,"ts":326458361045,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":231283},
-{"pid":27443,"tid":27466,"ts":326458361045,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231283,"id":"0xba443702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458361106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":231344,"id":"0xaf88a844f182217a"},
-{"pid":27443,"tid":27466,"ts":326458368705,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":231435},
-{"pid":27443,"tid":27466,"ts":326458368736,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":231466},
-{"pid":27443,"tid":27466,"ts":326458368736,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231496,"id":"0xba443902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458368797,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":231527},
-{"pid":27443,"tid":27466,"ts":326458368797,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":231558,"id":"0xaf88a845f182217a"},
-{"pid":27443,"tid":27466,"ts":326458369407,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":231619},
-{"pid":27443,"tid":27466,"ts":326458369438,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":231649},
-{"pid":27443,"tid":27466,"ts":326458369468,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231680,"id":"0xba443a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458369499,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":231710,"id":"0xaf88a846f182217a"},
-{"pid":27443,"tid":27466,"ts":326458372978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231802,"id":"0xaf88adfef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458372978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":231802},
-{"pid":27443,"tid":27466,"ts":326458373008,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231832,"id":"0xccc3a802"},
-{"pid":27443,"tid":27466,"ts":326458375267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":231954,"id":"0xaf88adfff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458375267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":231954},
-{"pid":27443,"tid":27466,"ts":326458375267,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":231954,"id":"0xccc3a906"},
-{"pid":27443,"tid":27466,"ts":326458375481,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":232046},
-{"pid":27443,"tid":27466,"ts":326458375481,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":232076},
-{"pid":27443,"tid":27466,"ts":326458375511,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232076,"id":"0xc4c0fc0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458376061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":232198,"id":"0xaf88adf8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458376061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":232198},
-{"pid":27443,"tid":27466,"ts":326458376061,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232198,"id":"0xccc3aa02"},
-{"pid":27443,"tid":27466,"ts":326458377831,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":232321},
-{"pid":27443,"tid":27466,"ts":326458377861,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":232351},
-{"pid":27443,"tid":27466,"ts":326458377861,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232351,"id":"0xba443b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458377892,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":232382,"id":"0xaf88a858f182217a"},
-{"pid":27443,"tid":27466,"ts":326458385369,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":232473},
-{"pid":27443,"tid":27466,"ts":326458385369,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":232504},
-{"pid":27443,"tid":27466,"ts":326458385400,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232504,"id":"0xba443d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458385430,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":232534},
-{"pid":27443,"tid":27466,"ts":326458385461,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":232565,"id":"0xaf88a85af182217a"},
-{"pid":27443,"tid":27466,"ts":326458386071,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":232626},
-{"pid":27443,"tid":27466,"ts":326458386102,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":232656},
-{"pid":27443,"tid":27466,"ts":326458386102,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232656,"id":"0xba443e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458386132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":232687,"id":"0xaf88a85bf182217a"},
-{"pid":27443,"tid":27466,"ts":326458388543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":232809,"id":"0xaf88adf9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458388543,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":232839},
-{"pid":27443,"tid":27466,"ts":326458388574,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232839,"id":"0xccc3ac02"},
-{"pid":27443,"tid":27466,"ts":326458391168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":232961,"id":"0xaf88adfaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458391199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":232992},
-{"pid":27443,"tid":27466,"ts":326458391199,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":232992,"id":"0xccc3ad02"},
-{"pid":27443,"tid":27466,"ts":326458391260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":233053,"id":"0xaf88adfbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458391260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":233053},
-{"pid":27443,"tid":27466,"ts":326458391260,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233084,"id":"0xccc3ae06"},
-{"pid":27443,"tid":27466,"ts":326458391534,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":233145},
-{"pid":27443,"tid":27477,"ts":326458355703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":279993,"id":"0xaf88abc0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458355703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280024,"id":"0xaf88a8f2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458355734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280054,"id":"0xaf88abb3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458355764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":123,"tdur":123,"tts":280054},
-{"pid":27443,"tid":27477,"ts":326458355795,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458334279.0,"frame_time_us":326458350278.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":280085},
-{"pid":27443,"tid":27477,"ts":326458355795,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458334279.0,"frame_time_us":326458350278.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":280085},
-{"pid":27443,"tid":27477,"ts":326458355856,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458366944},"dur":31,"tdur":31,"tts":280146},
-{"pid":27443,"tid":27477,"ts":326458355856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280146,"id":"0xaf88a84ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458355887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280177,"id":"0xaf88a84cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458355917,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":280207},
-{"pid":27443,"tid":27477,"ts":326458355917,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":280207},
-{"pid":27443,"tid":27477,"ts":326458355948,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":280238,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458355948,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":280238},
-{"pid":27443,"tid":27477,"ts":326458355948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280238,"id":"0xaf88a848f182217a"},
-{"pid":27443,"tid":27477,"ts":326458355978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280268,"id":"0xaf88a84df182217a"},
-{"pid":27443,"tid":27477,"ts":326458355978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":280268},
-{"pid":27443,"tid":27477,"ts":326458356009,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":280299},
-{"pid":27443,"tid":27477,"ts":326458356009,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":280299,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458356009,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":280299},
-{"pid":27443,"tid":27477,"ts":326458356039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280329,"id":"0xaf88a849f182217a"},
-{"pid":27443,"tid":27477,"ts":326458356039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280329,"id":"0xaf88a84ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458356070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":280360},
-{"pid":27443,"tid":27477,"ts":326458356070,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":280360},
-{"pid":27443,"tid":27477,"ts":326458356070,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":280360,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458356070,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":280360},
-{"pid":27443,"tid":27477,"ts":326458356100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280390,"id":"0xaf88a848f182217a"},
-{"pid":27443,"tid":27477,"ts":326458356100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1099,"tdur":1099,"tts":280390},
-{"pid":27443,"tid":27477,"ts":326458356131,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1068,"tdur":1068,"tts":280421},
-{"pid":27443,"tid":27477,"ts":326458356131,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":280421},
-{"pid":27443,"tid":27477,"ts":326458356131,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":280421},
-{"pid":27443,"tid":27477,"ts":326458356161,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":280451},
-{"pid":27443,"tid":27477,"ts":326458356161,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":280451},
-{"pid":27443,"tid":27477,"ts":326458356253,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":280543},
-{"pid":27443,"tid":27477,"ts":326458356253,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":280543},
-{"pid":27443,"tid":27477,"ts":326458356253,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":885,"tdur":885,"tts":280543},
-{"pid":27443,"tid":27477,"ts":326458356253,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":280543,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458356344,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280634},
-{"pid":27443,"tid":27477,"ts":326458356344,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":280634},
-{"pid":27443,"tid":27477,"ts":326458356375,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":280665},
-{"pid":27443,"tid":27477,"ts":326458356405,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280695},
-{"pid":27443,"tid":27477,"ts":326458356405,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":280726},
-{"pid":27443,"tid":27477,"ts":326458356436,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280726},
-{"pid":27443,"tid":27477,"ts":326458356466,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280756},
-{"pid":27443,"tid":27477,"ts":326458356466,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":280756},
-{"pid":27443,"tid":27477,"ts":326458356497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280787},
-{"pid":27443,"tid":27477,"ts":326458356497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":280787},
-{"pid":27443,"tid":27477,"ts":326458356527,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":280817},
-{"pid":27443,"tid":27477,"ts":326458356558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280848},
-{"pid":27443,"tid":27477,"ts":326458356558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":280848},
-{"pid":27443,"tid":27477,"ts":326458356589,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280878},
-{"pid":27443,"tid":27477,"ts":326458356619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280909},
-{"pid":27443,"tid":27477,"ts":326458356619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":280909},
-{"pid":27443,"tid":27477,"ts":326458356650,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":280940},
-{"pid":27443,"tid":27477,"ts":326458356680,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":280970},
-{"pid":27443,"tid":27477,"ts":326458356680,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":280970},
-{"pid":27443,"tid":27477,"ts":326458356711,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":281001},
-{"pid":27443,"tid":27477,"ts":326458356711,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":281031},
-{"pid":27443,"tid":27477,"ts":326458356741,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":281031},
-{"pid":27443,"tid":27477,"ts":326458356772,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":281062},
-{"pid":27443,"tid":27477,"ts":326458356772,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":281062},
-{"pid":27443,"tid":27477,"ts":326458356802,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":281092},
-{"pid":27443,"tid":27477,"ts":326458356833,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":281123},
-{"pid":27443,"tid":27477,"ts":326458356924,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":281214},
-{"pid":27443,"tid":27477,"ts":326458356924,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":281214},
-{"pid":27443,"tid":27459,"ts":326458355795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5940149,"id":"0xaf88a8f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458355795,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1129,"tts":5940149},
-{"pid":27443,"tid":27459,"ts":326458355826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5940180,"id":"0xaf88a8f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458355826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5940180,"id":"0xaf88abc0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458355826,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1098,"tdur":1098,"tts":5940180},
-{"pid":27443,"tid":27459,"ts":326458355887,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":5940241},
-{"pid":27443,"tid":27459,"ts":326458355917,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5940271,"id":"0x300000021"},
-{"pid":27443,"tid":27459,"ts":326458355948,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":854,"tdur":854,"tts":5940302},
-{"pid":27443,"tid":27459,"ts":326458355978,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":824,"tdur":824,"tts":5940332},
-{"pid":27443,"tid":27459,"ts":326458356039,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5940393},
-{"pid":27443,"tid":27459,"ts":326458356070,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5940454},
-{"pid":27443,"tid":27459,"ts":326458356100,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5940485},
-{"pid":27443,"tid":27459,"ts":326458356131,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5940485},
-{"pid":27443,"tid":27459,"ts":326458356192,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":5940546},
-{"pid":27443,"tid":27459,"ts":326458356314,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":428,"tts":5940698},
-{"pid":27443,"tid":27459,"ts":326458356344,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5940698},
-{"pid":27443,"tid":27459,"ts":326458356680,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":18,"frame":"0x78c60000"}},"tts":5941034,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458356711,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":5941065},
-{"pid":27443,"tid":27459,"ts":326458356711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5941065,"id":"0xaf88a84af182217a"},
-{"pid":27443,"tid":27459,"ts":326458356741,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5941095},
-{"pid":27443,"tid":27459,"ts":326458356833,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5941187},
-{"pid":27443,"tid":27459,"ts":326458356833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5941187,"id":"0xaf88ade3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458356955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5941309,"id":"0xaf88a8f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458356955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":5941309},
-{"pid":27443,"tid":27459,"ts":326458357016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5941370,"id":"0xaf88a8f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458357016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5941370},
-{"pid":27443,"tid":27459,"ts":326458357504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5941431,"id":"0xaf88a88cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458357535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13642,"tdur":10225,"tts":5941461},
-{"pid":27443,"tid":27459,"ts":326458357535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5941461,"id":"0xaf88a88df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458357565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5941492,"id":"0xaf88abc1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458357565,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13612,"tdur":10194,"tts":5941492},
-{"pid":27443,"tid":27459,"ts":326458357565,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":68},"tts":5941492},
-{"pid":27443,"tid":27459,"ts":326458357596,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5941522},
-{"pid":27443,"tid":27459,"ts":326458357626,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7081,"tdur":6623,"tts":5941553},
-{"pid":27443,"tid":27459,"ts":326458357657,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5941584},
-{"pid":27443,"tid":27459,"ts":326458357687,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":18,"frame":"0x78c60000"}},"dur":6989,"tdur":6531,"tts":5941614},
-{"pid":27443,"tid":27459,"ts":326458357748,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6928,"tdur":6439,"tts":5941706},
-{"pid":27443,"tid":27459,"ts":326458357779,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5941706},
-{"pid":27443,"tid":27459,"ts":326458357962,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5941919},
-{"pid":27443,"tid":27459,"ts":326458358023,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":5941950},
-{"pid":27443,"tid":27459,"ts":326458364646,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5948145},
-{"pid":27443,"tid":27459,"ts":326458364707,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":5219,"tdur":2838,"tts":5948176},
-{"pid":27443,"tid":27459,"ts":326458364737,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5948237},
-{"pid":27443,"tid":27459,"ts":326458364768,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5948237},
-{"pid":27443,"tid":27459,"ts":326458364799,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5948267},
-{"pid":27443,"tid":27459,"ts":326458365256,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5948756},
-{"pid":27443,"tid":27459,"ts":326458365287,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5948756},
-{"pid":27443,"tid":27459,"ts":326458365317,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4609,"tdur":2197,"tts":5948817},
-{"pid":27443,"tid":27459,"ts":326458365348,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4395,"tdur":2014,"tts":5948817},
-{"pid":27443,"tid":27459,"ts":326458365348,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":458,"tdur":458,"tts":5948817},
-{"pid":27443,"tid":27459,"ts":326458365806,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":213,"tts":5949275},
-{"pid":27443,"tid":27459,"ts":326458366019,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":92,"tts":5949488},
-{"pid":27443,"tid":27459,"ts":326458366141,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5949610},
-{"pid":27443,"tid":27459,"ts":326458366141,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":3602,"tdur":1221,"tts":5949610},
-{"pid":27443,"tid":27459,"ts":326458369743,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":5950862},
-{"pid":27443,"tid":27459,"ts":326458369804,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":5950892},
-{"pid":27443,"tid":27459,"ts":326458369926,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":68},"dur":519,"tdur":488,"tts":5951045},
-{"pid":27443,"tid":27459,"ts":326458369956,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":489,"tdur":488,"tts":5951045},
-{"pid":27443,"tid":27459,"ts":326458370262,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":30,"tdur":31,"tts":5951350},
-{"pid":27443,"tid":27459,"ts":326458370292,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":0,"tdur":0,"tts":5951381},
-{"pid":27443,"tid":27459,"ts":326458370292,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":31,"tdur":30,"tts":5951381},
-{"pid":27443,"tid":27459,"ts":326458370323,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":0,"tdur":0,"tts":5951411},
-{"pid":27443,"tid":27459,"ts":326458370353,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":0,"tdur":0,"tts":5951442},
-{"pid":27443,"tid":27459,"ts":326458370353,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":31,"tdur":30,"tts":5951442},
-{"pid":27443,"tid":27477,"ts":326458356955,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":281245},
-{"pid":27443,"tid":27477,"ts":326458356985,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":281275},
-{"pid":27443,"tid":27477,"ts":326458356985,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":281275},
-{"pid":27443,"tid":27477,"ts":326458357016,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":281306},
-{"pid":27443,"tid":27477,"ts":326458357046,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":281336},
-{"pid":27443,"tid":27477,"ts":326458357077,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":281367},
-{"pid":27443,"tid":27477,"ts":326458357107,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":281397},
-{"pid":27443,"tid":27477,"ts":326458357107,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":281428},
-{"pid":27443,"tid":27477,"ts":326458357138,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":281428},
-{"pid":27443,"tid":27477,"ts":326458357168,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":281458},
-{"pid":27443,"tid":27477,"ts":326458357168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281458,"id":"0xaf88a84bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458357229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":281519,"id":"0xaf88a849f182217a"},
-{"pid":27443,"tid":27477,"ts":326458357229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":123,"tts":281519},
-{"pid":27443,"tid":27477,"ts":326458357229,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":123,"tts":281519},
-{"pid":27443,"tid":27477,"ts":326458357260,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":281550},
-{"pid":27443,"tid":27477,"ts":326458357260,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":281550},
-{"pid":27443,"tid":27477,"ts":326458357260,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":281550},
-{"pid":27443,"tid":27477,"ts":326458357291,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":281580},
-{"pid":27443,"tid":27477,"ts":326458357321,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":281611},
-{"pid":27443,"tid":27477,"ts":326458357321,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":281611},
-{"pid":27443,"tid":27477,"ts":326458357352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":281642,"id":"0xaf88a84af182217a"},
-{"pid":27443,"tid":27477,"ts":326458357382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":281672},
-{"pid":27443,"tid":27477,"ts":326458357382,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":281672},
-{"pid":27443,"tid":27477,"ts":326458357382,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":68},"tts":281672},
-{"pid":27443,"tid":27477,"ts":326458357443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":281733,"id":"0xaf88abc1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458357443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281733,"id":"0xaf88a88cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458357504,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":281794},
-{"pid":27443,"tid":27477,"ts":326458357504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":281794,"id":"0xaf88a84bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458357535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1739,"tdur":1434,"tts":281825},
-{"pid":27443,"tid":27477,"ts":326458357535,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1739,"tdur":1434,"tts":281825},
-{"pid":27443,"tid":27477,"ts":326458357535,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":281825},
-{"pid":27443,"tid":27477,"ts":326458357565,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1709,"tdur":1404,"tts":281855},
-{"pid":27443,"tid":27477,"ts":326458357565,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":67},"dur":794,"tdur":794,"tts":281855},
-{"pid":27443,"tid":27477,"ts":326458357596,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":67},"dur":244,"tdur":244,"tts":281886},
-{"pid":27443,"tid":27477,"ts":326458357840,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":67},"dur":30,"tdur":30,"tts":282130},
-{"pid":27443,"tid":27477,"ts":326458357870,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":67},"tts":282160},
-{"pid":27443,"tid":27477,"ts":326458357992,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":282282},
-{"pid":27443,"tid":27477,"ts":326458358023,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":282313},
-{"pid":27443,"tid":27477,"ts":326458358023,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":282313},
-{"pid":27443,"tid":27477,"ts":326458358023,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":282313},
-{"pid":27443,"tid":27477,"ts":326458358054,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":282343,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458358084,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":282405},
-{"pid":27443,"tid":27477,"ts":326458358328,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":282618},
-{"pid":27443,"tid":27477,"ts":326458358359,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":610,"tdur":305,"tts":282649},
-{"pid":27443,"tid":27477,"ts":326458358359,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":282649},
-{"pid":27443,"tid":27477,"ts":326458358389,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":214,"tts":282679},
-{"pid":27443,"tid":27477,"ts":326458358481,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12080},"dur":30,"tdur":0,"tts":282801},
-{"pid":27443,"tid":27477,"ts":326458358542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":282832,"id":"0xaf88adfcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458358939,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":282923,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458358969,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":282954,"id":"0x300000020"},
-{"pid":27443,"tid":27477,"ts":326458359000,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":214,"tts":282984},
-{"pid":27443,"tid":27477,"ts":326458359152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":283137,"id":"0xaf88adfdf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458359213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":283198,"id":"0xaf88abc2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458359244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":283229,"id":"0xaf88a88ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458361167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":283351,"id":"0xaf88a844f182217a"},
-{"pid":27443,"tid":27477,"ts":326458361167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":283351},
-{"pid":27443,"tid":27477,"ts":326458361197,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":283381},
-{"pid":27443,"tid":27477,"ts":326458361197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":283381,"id":"0xaf88abc3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458367026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458366},"tts":283473,"id":"0xaf88a84ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458367057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":283503},
-{"pid":27443,"tid":27477,"ts":326458368858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":283564,"id":"0xaf88a845f182217a"},
-{"pid":27443,"tid":27477,"ts":326458368888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":283595},
-{"pid":27443,"tid":27477,"ts":326458368888,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":91,"tts":283595},
-{"pid":27443,"tid":27477,"ts":326458368919,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":283625,"id":"0x300000022"},
-{"pid":27443,"tid":27477,"ts":326458368919,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":283625},
-{"pid":27443,"tid":27477,"ts":326458368949,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":283656,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458368980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":283686,"id":"0xaf88abdcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458369529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":283778,"id":"0xaf88a846f182217a"},
-{"pid":27443,"tid":27477,"ts":326458369560,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":183,"tts":283778},
-{"pid":27443,"tid":27477,"ts":326458369590,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458350955.0,"frame_time_us":326458366954.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":123,"tts":283808},
-{"pid":27443,"tid":27477,"ts":326458369621,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458350955.0,"frame_time_us":326458366954.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":92,"tts":283839},
-{"pid":27443,"tid":27477,"ts":326458369712,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458383620},"dur":31,"tdur":31,"tts":283900},
-{"pid":27443,"tid":27477,"ts":326458369743,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":283931,"id":"0xaf88a847f182217a"},
-{"pid":27443,"tid":27477,"ts":326458370536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":284022,"id":"0xaf88a840f182217a"},
-{"pid":27443,"tid":27477,"ts":326458370536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1343,"tdur":1343,"tts":284022},
-{"pid":27443,"tid":27477,"ts":326458370536,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1343,"tdur":1343,"tts":284022},
-{"pid":27443,"tid":27477,"ts":326458370567,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":284053},
-{"pid":27443,"tid":27477,"ts":326458370567,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1312,"tdur":1312,"tts":284053},
-{"pid":27443,"tid":27477,"ts":326458370567,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1312,"tdur":1312,"tts":284053},
-{"pid":27443,"tid":27477,"ts":326458370597,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":284083},
-{"pid":27443,"tid":27477,"ts":326458370597,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":284083},
-{"pid":27443,"tid":27477,"ts":326458370597,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":284083,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458370628,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":284114},
-{"pid":27443,"tid":27477,"ts":326458370658,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":284144},
-{"pid":27443,"tid":27477,"ts":326458371086,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":732,"tts":284602},
-{"pid":27443,"tid":27477,"ts":326458371116,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":68},"dur":244,"tdur":244,"tts":284602},
-{"pid":27443,"tid":27477,"ts":326458371360,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":68},"dur":31,"tdur":31,"tts":284846},
-{"pid":27443,"tid":27477,"ts":326458371421,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":68},"tts":284907},
-{"pid":27443,"tid":27477,"ts":326458371544,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":285029},
-{"pid":27443,"tid":27477,"ts":326458371574,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":274,"tts":285060},
-{"pid":27443,"tid":27477,"ts":326458371574,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":285060},
-{"pid":27443,"tid":27477,"ts":326458371696,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":285182},
-{"pid":27443,"tid":27477,"ts":326458371696,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":285182},
-{"pid":27443,"tid":27477,"ts":326458371727,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":91,"tdur":92,"tts":285212},
-{"pid":27443,"tid":27477,"ts":326458371727,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":285212},
-{"pid":27443,"tid":27477,"ts":326458371727,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":285212,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458371757,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":285243},
-{"pid":27443,"tid":27477,"ts":326458371757,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":285243},
-{"pid":27443,"tid":27477,"ts":326458371818,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":285304,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458371849,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":285334,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458371849,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":285334,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458371910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285426,"id":"0xaf88a841f182217a"},
-{"pid":27443,"tid":27477,"ts":326458371940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":285426},
-{"pid":27443,"tid":27477,"ts":326458371940,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":285426},
-{"pid":27443,"tid":27477,"ts":326458371971,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":285457,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458371971,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":285457},
-{"pid":27443,"tid":27477,"ts":326458371971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285457,"id":"0xaf88a85cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458372001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285487,"id":"0xaf88a842f182217a"},
-{"pid":27443,"tid":27477,"ts":326458372001,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":285487},
-{"pid":27443,"tid":27477,"ts":326458372032,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":285518},
-{"pid":27443,"tid":27477,"ts":326458372032,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":285518,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458372032,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":285518},
-{"pid":27443,"tid":27477,"ts":326458372062,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285548,"id":"0xaf88a85df182217a"},
-{"pid":27443,"tid":27477,"ts":326458372062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285548,"id":"0xaf88a843f182217a"},
-{"pid":27443,"tid":27477,"ts":326458372062,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":245,"tdur":31,"tts":285548},
-{"pid":27443,"tid":27477,"ts":326458372307,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":285579},
-{"pid":27443,"tid":27477,"ts":326458372337,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":285609},
-{"pid":27443,"tid":27477,"ts":326458372337,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":285609,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458372337,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":285609},
-{"pid":27443,"tid":27477,"ts":326458372368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285640,"id":"0xaf88a85cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458372368,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1434,"tdur":1190,"tts":285640},
-{"pid":27443,"tid":27477,"ts":326458372398,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1404,"tdur":1160,"tts":285670},
-{"pid":27443,"tid":27477,"ts":326458372398,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":285670},
-{"pid":27443,"tid":27477,"ts":326458372398,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":285670},
-{"pid":27443,"tid":27477,"ts":326458372429,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":285701},
-{"pid":27443,"tid":27477,"ts":326458372429,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":285731},
-{"pid":27443,"tid":27477,"ts":326458372520,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1007,"tts":285823},
-{"pid":27443,"tid":27477,"ts":326458372551,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1251,"tdur":1007,"tts":285823},
-{"pid":27443,"tid":27459,"ts":326458370384,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":0,"tdur":0,"tts":5951472},
-{"pid":27443,"tid":27459,"ts":326458370384,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":30,"tdur":0,"tts":5951503},
-{"pid":27443,"tid":27459,"ts":326458370414,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":68},"dur":31,"tdur":0,"tts":5951503},
-{"pid":27443,"tid":27459,"ts":326458370445,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5951533,"id":"0x300000021"},
-{"pid":27443,"tid":27459,"ts":326458370445,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":92,"tts":5951533},
-{"pid":27443,"tid":27459,"ts":326458370475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5951564,"id":"0xaf88a840f182217a"},
-{"pid":27443,"tid":27459,"ts":326458371147,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5951655},
-{"pid":27443,"tid":27459,"ts":326458371238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5951777,"id":"0xaf88a88df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458371269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5951777},
-{"pid":27443,"tid":27459,"ts":326458371299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5951808,"id":"0xaf88a88ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458371299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5951808,"id":"0xaf88abc2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458371299,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":5951808},
-{"pid":27443,"tid":27459,"ts":326458371330,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5951838},
-{"pid":27443,"tid":27459,"ts":326458371391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5951899,"id":"0xaf88a88ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458371391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5951899},
-{"pid":27443,"tid":27459,"ts":326458371421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5951930,"id":"0xaf88abc3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458371421,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":5951930},
-{"pid":27443,"tid":27459,"ts":326458371421,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":5951930},
-{"pid":27443,"tid":27459,"ts":326458371482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5951991,"id":"0xaf88a88ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458371513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1312,"tdur":1252,"tts":5952021},
-{"pid":27443,"tid":27459,"ts":326458371513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5952021,"id":"0xaf88a888f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458371544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5952052,"id":"0xaf88abdcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458371544,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1281,"tdur":1221,"tts":5952052},
-{"pid":27443,"tid":27459,"ts":326458371635,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1190,"tdur":1129,"tts":5952144},
-{"pid":27443,"tid":27459,"ts":326458371635,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5952144,"id":"0x300000022"},
-{"pid":27443,"tid":27459,"ts":326458371666,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1068,"tdur":1007,"tts":5952174},
-{"pid":27443,"tid":27459,"ts":326458371696,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1007,"tdur":946,"tts":5952205},
-{"pid":27443,"tid":27459,"ts":326458371757,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5952296},
-{"pid":27443,"tid":27459,"ts":326458371818,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5952327},
-{"pid":27443,"tid":27459,"ts":326458371849,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5952357},
-{"pid":27443,"tid":27459,"ts":326458371879,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5952388},
-{"pid":27443,"tid":27459,"ts":326458371910,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":793,"tdur":702,"tts":5952449},
-{"pid":27443,"tid":27459,"ts":326458372154,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":519,"tdur":458,"tts":5952662},
-{"pid":27443,"tid":27459,"ts":326458372184,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5952693},
-{"pid":27443,"tid":27459,"ts":326458372490,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":19,"frame":"0x78c60000"}},"tts":5952998,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458372520,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":5953029},
-{"pid":27443,"tid":27459,"ts":326458372551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5953059,"id":"0xaf88a85ef182217a"},
-{"pid":27443,"tid":27459,"ts":326458372551,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5953090},
-{"pid":27443,"tid":27459,"ts":326458372551,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":30,"tts":5953090},
-{"pid":27443,"tid":27459,"ts":326458372734,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5953181},
-{"pid":27443,"tid":27459,"ts":326458372764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5953212,"id":"0xaf88adfef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458372856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5953303,"id":"0xaf88a888f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458372886,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5953334},
-{"pid":27443,"tid":27459,"ts":326458374138,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5953456,"id":"0xaf88a889f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458374138,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12147,"tdur":10163,"tts":5953456},
-{"pid":27443,"tid":27459,"ts":326458374168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5953486,"id":"0xaf88a88af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458374168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5953486,"id":"0xaf88abddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458374168,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12086,"tdur":10103,"tts":5953486},
-{"pid":27443,"tid":27459,"ts":326458374168,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":69},"tts":5953517},
-{"pid":27443,"tid":27459,"ts":326458374199,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":5953517},
-{"pid":27443,"tid":27459,"ts":326458374229,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6318,"tdur":6287,"tts":5953548},
-{"pid":27443,"tid":27459,"ts":326458374260,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":5953578},
-{"pid":27443,"tid":27459,"ts":326458374290,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":19,"frame":"0x78c60000"}},"dur":6227,"tdur":6165,"tts":5953639},
-{"pid":27443,"tid":27459,"ts":326458374382,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6135,"tdur":6104,"tts":5953700},
-{"pid":27443,"tid":27459,"ts":326458374382,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5953731},
-{"pid":27443,"tid":27459,"ts":326458374596,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5953914},
-{"pid":27443,"tid":27459,"ts":326458374626,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":5953944},
-{"pid":27443,"tid":27459,"ts":326458380486,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5959774},
-{"pid":27443,"tid":27459,"ts":326458380547,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3052,"tdur":2991,"tts":5959835},
-{"pid":27443,"tid":27459,"ts":326458380578,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5959865},
-{"pid":27443,"tid":27459,"ts":326458380608,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5959896},
-{"pid":27443,"tid":27459,"ts":326458380608,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5959896},
-{"pid":27443,"tid":27459,"ts":326458381035,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5960323},
-{"pid":27443,"tid":27459,"ts":326458381066,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5960354},
-{"pid":27443,"tid":27477,"ts":326458372551,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":976,"tts":285823},
-{"pid":27443,"tid":27477,"ts":326458372581,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":285853,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458372642,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":285914},
-{"pid":27443,"tid":27477,"ts":326458372673,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":285945},
-{"pid":27443,"tid":27477,"ts":326458372703,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":285975},
-{"pid":27443,"tid":27477,"ts":326458372703,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":285975},
-{"pid":27443,"tid":27477,"ts":326458372734,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286006},
-{"pid":27443,"tid":27477,"ts":326458372734,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":286006},
-{"pid":27443,"tid":27477,"ts":326458372764,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":286036},
-{"pid":27443,"tid":27477,"ts":326458372795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286067},
-{"pid":27443,"tid":27477,"ts":326458372795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":286097},
-{"pid":27443,"tid":27477,"ts":326458372825,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286097},
-{"pid":27443,"tid":27477,"ts":326458372856,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286128},
-{"pid":27443,"tid":27477,"ts":326458372856,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":286128},
-{"pid":27443,"tid":27477,"ts":326458372886,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286159},
-{"pid":27443,"tid":27477,"ts":326458372886,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":286189},
-{"pid":27443,"tid":27477,"ts":326458372917,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":286189},
-{"pid":27443,"tid":27477,"ts":326458372947,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":286220},
-{"pid":27443,"tid":27477,"ts":326458372978,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":286250},
-{"pid":27443,"tid":27477,"ts":326458373008,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286281},
-{"pid":27443,"tid":27477,"ts":326458373008,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":275,"tdur":30,"tts":286281},
-{"pid":27443,"tid":27477,"ts":326458373008,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":0,"tts":286281},
-{"pid":27443,"tid":27477,"ts":326458373283,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":286311},
-{"pid":27443,"tid":27477,"ts":326458373314,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":286342},
-{"pid":27443,"tid":27477,"ts":326458373344,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286372},
-{"pid":27443,"tid":27477,"ts":326458373344,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":286372},
-{"pid":27443,"tid":27477,"ts":326458373375,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286403},
-{"pid":27443,"tid":27477,"ts":326458373405,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286433},
-{"pid":27443,"tid":27477,"ts":326458373405,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286433},
-{"pid":27443,"tid":27477,"ts":326458373497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286525},
-{"pid":27443,"tid":27477,"ts":326458373527,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286555},
-{"pid":27443,"tid":27477,"ts":326458373527,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":286555},
-{"pid":27443,"tid":27477,"ts":326458373558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":286586},
-{"pid":27443,"tid":27477,"ts":326458373588,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286616},
-{"pid":27443,"tid":27477,"ts":326458373619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":286647},
-{"pid":27443,"tid":27477,"ts":326458373619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":286647},
-{"pid":27443,"tid":27477,"ts":326458373680,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":286708},
-{"pid":27443,"tid":27477,"ts":326458373710,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":286738},
-{"pid":27443,"tid":27477,"ts":326458373710,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":286738},
-{"pid":27443,"tid":27477,"ts":326458373741,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":286769},
-{"pid":27443,"tid":27477,"ts":326458373772,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":286799},
-{"pid":27443,"tid":27477,"ts":326458373772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286830,"id":"0xaf88a85ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458373833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":286860,"id":"0xaf88a85df182217a"},
-{"pid":27443,"tid":27477,"ts":326458373833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":123,"tts":286860},
-{"pid":27443,"tid":27477,"ts":326458373833,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":123,"tts":286860},
-{"pid":27443,"tid":27477,"ts":326458373863,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":286891},
-{"pid":27443,"tid":27477,"ts":326458373863,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":286891},
-{"pid":27443,"tid":27477,"ts":326458373863,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":286891},
-{"pid":27443,"tid":27477,"ts":326458373894,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":286922},
-{"pid":27443,"tid":27477,"ts":326458373924,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":286952},
-{"pid":27443,"tid":27477,"ts":326458373955,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":286983},
-{"pid":27443,"tid":27477,"ts":326458373955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":287013,"id":"0xaf88a85ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458373985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":287013},
-{"pid":27443,"tid":27477,"ts":326458373985,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":287013},
-{"pid":27443,"tid":27477,"ts":326458373985,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":69},"tts":287013},
-{"pid":27443,"tid":27477,"ts":326458374046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":287074,"id":"0xaf88abddf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458374077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":287105,"id":"0xaf88a889f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458374107,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":287135},
-{"pid":27443,"tid":27477,"ts":326458374138,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":287166,"id":"0xaf88a85ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458374138,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2258,"tdur":1495,"tts":287166},
-{"pid":27443,"tid":27477,"ts":326458374138,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2258,"tdur":1465,"tts":287166},
-{"pid":27443,"tid":27477,"ts":326458374138,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":287166},
-{"pid":27443,"tid":27477,"ts":326458374168,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1923,"tdur":1435,"tts":287196},
-{"pid":27443,"tid":27477,"ts":326458374168,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":68},"dur":855,"tdur":824,"tts":287227},
-{"pid":27443,"tid":27477,"ts":326458374199,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":68},"dur":244,"tdur":244,"tts":287227},
-{"pid":27443,"tid":27477,"ts":326458374443,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":68},"dur":30,"tdur":30,"tts":287471},
-{"pid":27443,"tid":27477,"ts":326458374473,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":68},"tts":287501},
-{"pid":27443,"tid":27477,"ts":326458374596,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":287654},
-{"pid":27443,"tid":27477,"ts":326458374626,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":287654},
-{"pid":27443,"tid":27477,"ts":326458374626,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":287654},
-{"pid":27443,"tid":27477,"ts":326458374626,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":287654},
-{"pid":27443,"tid":27477,"ts":326458374657,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":287685,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458374718,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":287746},
-{"pid":27443,"tid":27477,"ts":326458374992,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":288020},
-{"pid":27443,"tid":27477,"ts":326458375023,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":793,"tdur":274,"tts":288051},
-{"pid":27443,"tid":27477,"ts":326458375053,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":288081},
-{"pid":27443,"tid":27477,"ts":326458375053,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":214,"tts":288081},
-{"pid":27443,"tid":27477,"ts":326458375145,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12080},"dur":0,"tdur":0,"tts":288173},
-{"pid":27443,"tid":27477,"ts":326458375175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288203,"id":"0xaf88adfff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458375786,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":288325,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458375816,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":288356,"id":"0x300000021"},
-{"pid":27443,"tid":27477,"ts":326458375847,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":288387},
-{"pid":27443,"tid":27477,"ts":326458375969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288509,"id":"0xaf88adf8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458376061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":288600,"id":"0xaf88abdef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458376061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288600,"id":"0xaf88a88bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458377953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":288722,"id":"0xaf88a858f182217a"},
-{"pid":27443,"tid":27477,"ts":326458377953,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":288722},
-{"pid":27443,"tid":27477,"ts":326458377983,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":288753},{"pid":27411,"tid":27428,"ts":326461530158,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":946,"tdur":550,"tts":1336822},
-{"pid":27411,"tid":27428,"ts":326461530188,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":916,"tdur":519,"tts":1336853},
-{"pid":27411,"tid":27428,"ts":326461531379,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":335,"tdur":306,"tts":1337646},
-{"pid":27411,"tid":27428,"ts":326461531684,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61633604},"tts":1337952},
-{"pid":27411,"tid":27428,"ts":326461531714,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1337982},
-{"pid":27411,"tid":27428,"ts":326461531714,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61301828},"tts":1337982},
-{"pid":27411,"tid":27428,"ts":326461531745,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1338013},
-{"pid":27411,"tid":27428,"ts":326461531745,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61633604},"tts":1338013},
-{"pid":27411,"tid":27428,"ts":326461531775,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":489,"tdur":488,"tts":1338043},
-{"pid":27411,"tid":27428,"ts":326461531806,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":457,"tts":1338074},
-{"pid":27411,"tid":27428,"ts":326461532538,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":306,"tdur":305,"tts":1338806},
-{"pid":27411,"tid":27428,"ts":326461532844,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61965380},"tts":1339111},
-{"pid":27411,"tid":27428,"ts":326461532844,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1339111},
-{"pid":27411,"tid":27428,"ts":326461532874,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61633604},"tts":1339142},
-{"pid":27411,"tid":27428,"ts":326461532874,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1339142},
-{"pid":27411,"tid":27428,"ts":326461532905,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61965380},"tts":1339172},
-{"pid":27411,"tid":27428,"ts":326461532905,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":488,"tdur":458,"tts":1339203},
-{"pid":27411,"tid":27428,"ts":326461532935,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":427,"tts":1339203},
-{"pid":27411,"tid":27474,"ts":326461514806,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":244,"tts":89455},
-{"pid":27411,"tid":27474,"ts":326461514806,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":89455},
-{"pid":27411,"tid":27474,"ts":326461514928,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":122,"tdur":91,"tts":89577},
-{"pid":27411,"tid":27474,"ts":326461514928,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":89577,"id":"0xba464002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461514989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":89638,"id":"0xaf88ca5ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461526251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":89790,"id":"0xaf88ce8afec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461526251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":89790},
-{"pid":27411,"tid":27474,"ts":326461526282,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":89821,"id":"0xc4c1d602"},
-{"pid":27411,"tid":27474,"ts":326461527747,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":89913},
-{"pid":27411,"tid":27474,"ts":326461527777,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":89943},
-{"pid":27411,"tid":27474,"ts":326461527808,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":89974,"id":"0xccc5a002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461527808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":89974,"id":"0xaf88ca59f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461532905,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":90126},
-{"pid":27411,"tid":27474,"ts":326461532935,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":90157},
-{"pid":27411,"tid":27474,"ts":326461532935,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90157,"id":"0xccc5a202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461532966,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":90187,"id":"0xaf88ca5bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461532966,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":61,"tts":90218},
-{"pid":27411,"tid":27474,"ts":326461532996,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90218,"id":"0xccc5a306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461532996,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90218,"id":"0xc4c1d70a"},
-{"pid":27411,"tid":27474,"ts":326461533057,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":90279,"id":"0xaf88ca54f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461545113,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":92,"tts":90370},
-{"pid":27411,"tid":27474,"ts":326461545174,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":90401},
-{"pid":27411,"tid":27474,"ts":326461545174,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90401,"id":"0xba464702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461545204,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":90431,"id":"0xaf88ca57f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461550912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":90553,"id":"0xaf88ce8bfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461550942,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":90553},
-{"pid":27411,"tid":27474,"ts":326461550942,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90553,"id":"0xc4c1d902"},
-{"pid":27411,"tid":27474,"ts":326461553292,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":152,"tts":90676},
-{"pid":27411,"tid":27474,"ts":326461553353,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":90706},
-{"pid":27411,"tid":27474,"ts":326461553353,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90706,"id":"0xccc5a706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461553353,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90737,"id":"0xc4c1da0a"},
-{"pid":27411,"tid":27474,"ts":326461553414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":90767,"id":"0xaf88ca51f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461561716,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":90859},
-{"pid":27411,"tid":27474,"ts":326461561746,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":90889},
-{"pid":27411,"tid":27474,"ts":326461561777,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":90920,"id":"0xba464c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461561777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":90920,"id":"0xaf88ca53f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461566813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":91042,"id":"0xaf88ce84fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461566843,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":91072},
-{"pid":27411,"tid":27474,"ts":326461566843,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91072,"id":"0xc4c1dc02"},
-{"pid":27411,"tid":27474,"ts":326461568491,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":91164},
-{"pid":27411,"tid":27474,"ts":326461568522,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":91194},
-{"pid":27411,"tid":27474,"ts":326461568553,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91225,"id":"0xccc5ac06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461568553,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91225,"id":"0xc4c1dd0a"},
-{"pid":27411,"tid":27474,"ts":326461568583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":91255,"id":"0xaf88ca6df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461575267,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":305,"tdur":306,"tts":91377},
-{"pid":27411,"tid":27474,"ts":326461575328,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":91439},
-{"pid":27411,"tid":27474,"ts":326461575359,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91469,"id":"0xba464f02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461575389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":91500,"id":"0xaf88ca6ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461575450,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":91561},
-{"pid":27411,"tid":27474,"ts":326461575450,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91561,"id":"0xba465006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461575481,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91591,"id":"0xc4c1df0a"},
-{"pid":27411,"tid":27474,"ts":326461575542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":91652,"id":"0xaf88ca68f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461577709,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":91744},
-{"pid":27411,"tid":27474,"ts":326461577739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":91774},
-{"pid":27411,"tid":27474,"ts":326461577739,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91774,"id":"0xba465202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461577770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":91805,"id":"0xaf88ca6bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461582989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":91927,"id":"0xaf88ce85fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461583019,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":91957},
-{"pid":27411,"tid":27474,"ts":326461583019,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":91957,"id":"0xc4c1e102"},
-{"pid":27411,"tid":27474,"ts":326461583660,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":305,"tdur":305,"tts":92049},
-{"pid":27411,"tid":27474,"ts":326461583691,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":62,"tts":92079},
-{"pid":27411,"tid":27474,"ts":326461583721,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92110,"id":"0xccc5af02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461583721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":92110,"id":"0xaf88ca65f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461583782,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":183,"tdur":183,"tts":92171},
-{"pid":27411,"tid":27428,"ts":326461533668,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":335,"tdur":336,"tts":1339935},
-{"pid":27411,"tid":27428,"ts":326461533668,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1339935},
-{"pid":27411,"tid":27428,"ts":326461534003,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62297156},"tts":1340271},
-{"pid":27411,"tid":27428,"ts":326461534034,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1340302},
-{"pid":27411,"tid":27428,"ts":326461534034,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":61965380},"tts":1340302},
-{"pid":27411,"tid":27428,"ts":326461534064,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1340332},
-{"pid":27411,"tid":27428,"ts":326461534064,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62297156},"tts":1340332},
-{"pid":27411,"tid":27428,"ts":326461534095,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":457,"tts":1340363},
-{"pid":27411,"tid":27428,"ts":326461534095,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":458,"tdur":457,"tts":1340363},
-{"pid":27411,"tid":27428,"ts":326461534797,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":305,"tdur":305,"tts":1341065},
-{"pid":27411,"tid":27428,"ts":326461535072,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1341339},
-{"pid":27411,"tid":27428,"ts":326461535102,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1341370},
-{"pid":27411,"tid":27428,"ts":326461535102,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62297156},"tts":1341400},
-{"pid":27411,"tid":27428,"ts":326461535133,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1341400},
-{"pid":27411,"tid":27428,"ts":326461535133,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1341431},
-{"pid":27411,"tid":27428,"ts":326461535163,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":458,"tdur":458,"tts":1341431},
-{"pid":27411,"tid":27428,"ts":326461535194,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":427,"tdur":428,"tts":1341461},
-{"pid":27411,"tid":27428,"ts":326461535835,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::HandleTexImage2D","args":{"width":288,"height":288},"dur":366,"tdur":367,"tts":1342102},
-{"pid":27411,"tid":27428,"ts":326461536170,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1342438},
-{"pid":27411,"tid":27428,"ts":326461536201,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1342469},
-{"pid":27411,"tid":27428,"ts":326461536231,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1342499},
-{"pid":27411,"tid":27428,"ts":326461536262,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1342530},
-{"pid":27411,"tid":27428,"ts":326461536292,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1342591},
-{"pid":27411,"tid":27428,"ts":326461536354,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":610,"tdur":611,"tts":1342621},
-{"pid":27411,"tid":27428,"ts":326461536384,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":549,"tdur":549,"tts":1342652},
-{"pid":27411,"tid":27428,"ts":326461537574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1343689,"id":"0xaf88ca5bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461537605,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":1343720},
-{"pid":27411,"tid":27428,"ts":326461537635,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1343750},
-{"pid":27411,"tid":27428,"ts":326461537666,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1343781,"id":"0xaf88ca55f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461537727,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1343873,"id":"0xaf88ca54f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461537757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":62,"tdur":61,"tts":1343873},
-{"pid":27411,"tid":27428,"ts":326461537849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1343964,"id":"0xaf88ca55f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461537849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":183,"tts":1343995},
-{"pid":27411,"tid":27428,"ts":326461537941,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16700},"dur":91,"tdur":91,"tts":1344056},
-{"pid":27411,"tid":27428,"ts":326461537971,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":31,"tts":1344086},
-{"pid":27411,"tid":27428,"ts":326461538032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1344147,"id":"0xaf88ca56f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461538124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1344239,"id":"0xaf88ca56f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461538124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1344239},
-{"pid":27411,"tid":27428,"ts":326461545265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1344391,"id":"0xaf88ca57f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461545265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":62,"tdur":30,"tts":1344422},
-{"pid":27411,"tid":27428,"ts":326461545296,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1344422},
-{"pid":27411,"tid":27428,"ts":326461545296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1344422,"id":"0xaf88ca50f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461545327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1344452,"id":"0xaf88ca50f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461545357,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5585,"tdur":4395,"tts":1344483},
-{"pid":27411,"tid":27428,"ts":326461545388,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1344513},
-{"pid":27411,"tid":27428,"ts":326461545510,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4948},"dur":5432,"tdur":4242,"tts":1344636},
-{"pid":27411,"tid":27428,"ts":326461545540,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5372,"tdur":4181,"tts":1344666},
-{"pid":27411,"tid":27428,"ts":326461548775,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1347535,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461548775,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":125},"dur":2137,"tdur":1312,"tts":1347535},
-{"pid":27411,"tid":27428,"ts":326461548806,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1526,"tdur":916,"tts":1347596},
-{"pid":27411,"tid":27428,"ts":326461550515,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461542274.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461548806.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902029.0,"time":326461488376.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461481000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461533271.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461496860.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461550332.0},"coordinates":[{"x":250.02162170410156,"y":753.4567260742188},{"x":478.30450439453125,"y":546.3801879882812}],"trace_id":12884902029.0}},"tts":1348695,"id":"0x30000008d"},
-{"pid":27411,"tid":27428,"ts":326461550545,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1348725,"id":"0x30000008d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461550545,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":367,"tdur":61,"tts":1348756},
-{"pid":27411,"tid":27428,"ts":326461550545,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":306,"tdur":0,"tts":1348756},
-{"pid":27411,"tid":27428,"ts":326461550851,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1348786,"id":"0xaf88ce8bfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461553475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1348939,"id":"0xaf88ca51f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461553506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1348969},
-{"pid":27411,"tid":27428,"ts":326461553506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1348969,"id":"0xaf88ca52f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461553536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1349000,"id":"0xaf88ca52f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461553567,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1349030},
-{"pid":27411,"tid":27428,"ts":326461561869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1349122,"id":"0xaf88ca53f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461561869,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1349122},
-{"pid":27411,"tid":27428,"ts":326461561899,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":0,"tts":1349153},
-{"pid":27411,"tid":27428,"ts":326461561899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1349153,"id":"0xaf88ca6cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461561930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1349183,"id":"0xaf88ca6cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461561930,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1349183},
-{"pid":27411,"tid":27428,"ts":326461561991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4852,"tdur":4059,"tts":1349244},
-{"pid":27411,"tid":27428,"ts":326461562052,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8710},"dur":4761,"tdur":3968,"tts":1349305},
-{"pid":27411,"tid":27428,"ts":326461562052,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4761,"tdur":3968,"tts":1349305},
-{"pid":27411,"tid":27428,"ts":326461564860,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1352113,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461564860,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":126},"dur":1953,"tdur":1160,"tts":1352113},
-{"pid":27411,"tid":27428,"ts":326461564890,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1709,"tdur":915,"tts":1352144},
-{"pid":27411,"tid":27428,"ts":326461566691,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461559091.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461564890.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902030.0,"time":326461516332.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461498000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461553598.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461530433.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461566599.0},"coordinates":[{"x":245.14663696289062,"y":763.2067260742188},{"x":485.280029296875,"y":536.2932739257812}],"trace_id":12884902030.0}},"tts":1353151,"id":"0x30000008e"},
-{"pid":27411,"tid":27428,"ts":326461566721,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1353181,"id":"0x30000008e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461566721,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1353181},
-{"pid":27411,"tid":27428,"ts":326461566752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1353212,"id":"0xaf88ce84fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461568675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353425,"id":"0xaf88ca6df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461568675,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":0,"tts":1353425},
-{"pid":27411,"tid":27428,"ts":326461569102,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1353425},
-{"pid":27411,"tid":27428,"ts":326461569132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1353456,"id":"0xaf88ca6ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461569163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353486,"id":"0xaf88ca6ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461569163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1353486},
-{"pid":27411,"tid":27428,"ts":326461575694,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353578,"id":"0xaf88ca6ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461575694,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1353578},
-{"pid":27411,"tid":27428,"ts":326461575694,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1353578},
-{"pid":27411,"tid":27428,"ts":326461575725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1353609,"id":"0xaf88ca69f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461575755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353639,"id":"0xaf88ca68f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461575755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1353639},
-{"pid":27411,"tid":27428,"ts":326461575786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353670,"id":"0xaf88ca69f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461575816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":183,"tdur":183,"tts":1353700},
-{"pid":27411,"tid":27428,"ts":326461575877,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8725},"dur":61,"tdur":61,"tts":1353761},
-{"pid":27411,"tid":27428,"ts":326461575877,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1353761},
-{"pid":27411,"tid":27428,"ts":326461575969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1353853,"id":"0xaf88ca6af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461575999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353883,"id":"0xaf88ca6af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461575999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":1353883},
-{"pid":27411,"tid":27428,"ts":326461576091,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1353883},
-{"pid":27411,"tid":27428,"ts":326461577831,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1353975,"id":"0xaf88ca6bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461577861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1354005},
-{"pid":27411,"tid":27428,"ts":326461577861,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1354005},
-{"pid":27411,"tid":27428,"ts":326461577861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1354036,"id":"0xaf88ca64f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461577892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1354036,"id":"0xaf88ca64f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461577922,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5097,"tdur":4182,"tts":1354066},
-{"pid":27411,"tid":27428,"ts":326461577953,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12237},"dur":5036,"tdur":4120,"tts":1354097},
-{"pid":27411,"tid":27428,"ts":326461578014,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4975,"tdur":4059,"tts":1354158},
-{"pid":27411,"tid":27428,"ts":326461581280,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1356905,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461581310,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":127},"dur":1679,"tdur":1282,"tts":1356935},
-{"pid":27411,"tid":27428,"ts":326461581341,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1403,"tdur":1007,"tts":1356966},
-{"pid":27411,"tid":27428,"ts":326461582867,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461569590.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461581310.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902031.0,"time":326461526160.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461515000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461568797.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461550179.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461582775.0},"coordinates":[{"x":239.71751403808594,"y":772.2678833007812},{"x":492.9708251953125,"y":525.637939453125}],"trace_id":12884902031.0}},"tts":1358095,"id":"0x30000008f"},
-{"pid":27411,"tid":27428,"ts":326461582867,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1358095,"id":"0x30000008f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461582897,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1358126},
-{"pid":27411,"tid":27428,"ts":326461582897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1358156,"id":"0xaf88ce85fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461583782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1358339,"id":"0xaf88ca65f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461583813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":92,"tts":1358339},
-{"pid":27411,"tid":27428,"ts":326461583813,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":1358339},
-{"pid":27411,"tid":27428,"ts":326461583904,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1358400,"id":"0xaf88ca66f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461583935,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1358431,"id":"0xaf88ca66f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461583935,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":1358431},
-{"pid":27411,"tid":27428,"ts":326461584087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":214,"tts":1358461},
-{"pid":27411,"tid":27428,"ts":326461584118,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":91,"tts":1358492},
-{"pid":27411,"tid":27428,"ts":326461584240,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16710},"dur":31,"tdur":30,"tts":1358614},
-{"pid":27411,"tid":27428,"ts":326461584240,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":30,"tts":1358614},
-{"pid":27411,"tid":27428,"ts":326461584301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1358705,"id":"0xaf88ca67f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461584332,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1358705},
-{"pid":27411,"tid":27428,"ts":326461584332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1358736,"id":"0xaf88ca60f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461584393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1358766,"id":"0xaf88ca60f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461584393,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":0,"tts":1358766},
-{"pid":27411,"tid":27428,"ts":326461598310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1358828,"id":"0xaf88ca61f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461598340,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1358858},
-{"pid":27411,"tid":27474,"ts":326461583782,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92171,"id":"0xccc5b006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461583782,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":92171},
-{"pid":27411,"tid":27474,"ts":326461583904,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92293,"id":"0xc4c1e20a"},
-{"pid":27411,"tid":27474,"ts":326461583935,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":92324,"id":"0xaf88ca67f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461594953,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":92446},
-{"pid":27411,"tid":27474,"ts":326461595014,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":92476},
-{"pid":27411,"tid":27474,"ts":326461595014,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92476,"id":"0xba465602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461595044,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":92507,"id":"0xaf88ca61f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461598432,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":92629},
-{"pid":27411,"tid":27474,"ts":326461598462,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":61,"tts":92659},
-{"pid":27411,"tid":27474,"ts":326461598462,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92659,"id":"0xccc5b506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461598493,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92690,"id":"0xc4c1e40a"},
-{"pid":27411,"tid":27474,"ts":326461598524,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":92720,"id":"0xaf88ca63f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461603804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":92812,"id":"0xaf88ce86fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461603834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":92842},
-{"pid":27411,"tid":27474,"ts":326461603834,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":92842,"id":"0xc4c1e502"},
-{"pid":27411,"tid":27474,"ts":326461609267,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":92995},
-{"pid":27411,"tid":27474,"ts":326461609297,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":93026},
-{"pid":27411,"tid":27474,"ts":326461609297,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93026,"id":"0xba465a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461609328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":93056,"id":"0xaf88ca7df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461614303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":93178,"id":"0xaf88ce87fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461614303,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":93209},
-{"pid":27411,"tid":27474,"ts":326461614333,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93209,"id":"0xc4c1e702"},
-{"pid":27411,"tid":27474,"ts":326461616500,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":93300},
-{"pid":27411,"tid":27474,"ts":326461616531,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":93331},
-{"pid":27411,"tid":27474,"ts":326461616531,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93331,"id":"0xccc5ba06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461616561,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93361,"id":"0xc4c1e80a"},
-{"pid":27411,"tid":27474,"ts":326461616592,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":93392,"id":"0xaf88ca7ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461624039,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":93514},
-{"pid":27411,"tid":27474,"ts":326461624069,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":93544},
-{"pid":27411,"tid":27474,"ts":326461624100,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93575,"id":"0xba465e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461624100,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":93575,"id":"0xaf88ca79f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461624283,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":93667},
-{"pid":27411,"tid":27474,"ts":326461624313,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":93697},
-{"pid":27411,"tid":27474,"ts":326461624313,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93697,"id":"0xba465f06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461624344,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93728,"id":"0xc4c1ea0a"},
-{"pid":27411,"tid":27474,"ts":326461624374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":93758,"id":"0xaf88ca7af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461626328,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":122,"tts":93819},
-{"pid":27411,"tid":27474,"ts":326461626358,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":214,"tdur":91,"tts":93850},
-{"pid":27411,"tid":27474,"ts":326461626511,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":93880,"id":"0xba466102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461626541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":93911,"id":"0xaf88ca74f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461631333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":94033,"id":"0xaf88ce80fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461631333,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":94033},
-{"pid":27411,"tid":27474,"ts":326461631363,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94063,"id":"0xc4c1ec02"},
-{"pid":27411,"tid":27474,"ts":326461632157,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":213,"tts":94155},
-{"pid":27411,"tid":27474,"ts":326461632218,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":94185},
-{"pid":27411,"tid":27474,"ts":326461632218,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94185,"id":"0xccc5be02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461632249,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":94216,"id":"0xaf88ca77f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461632279,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":94246},
-{"pid":27411,"tid":27474,"ts":326461632279,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94246,"id":"0xccc5bf06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461632310,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94277,"id":"0xc4c1ed0a"},
-{"pid":27411,"tid":27474,"ts":326461632340,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":94338,"id":"0xaf88ca70f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461641466,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":335,"tdur":244,"tts":94399},
-{"pid":27411,"tid":27474,"ts":326461641588,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":94460},
-{"pid":27411,"tid":27474,"ts":326461641588,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94460,"id":"0xba466402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461641618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":94491,"id":"0xaf88ca73f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461641679,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":91,"tts":94552},
-{"pid":27411,"tid":27474,"ts":326461641679,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":94552},
-{"pid":27411,"tid":27474,"ts":326461641740,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94582,"id":"0xba466506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461641740,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94582,"id":"0xc4c1ef0a"},
-{"pid":27411,"tid":27474,"ts":326461641801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":94643,"id":"0xaf88ca0cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461643999,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":214,"tdur":214,"tts":94704},
-{"pid":27411,"tid":27474,"ts":326461644029,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":184,"tdur":183,"tts":94735},
-{"pid":27411,"tid":27474,"ts":326461644029,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":94765,"id":"0xba466702","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461598340,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":122,"tdur":122,"tts":1358858},
-{"pid":27411,"tid":27428,"ts":326461598340,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":1358858},
-{"pid":27411,"tid":27428,"ts":326461598432,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1358950,"id":"0xaf88ca62f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461598462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1358980,"id":"0xaf88ca62f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461598493,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5311,"tdur":4242,"tts":1359011},
-{"pid":27411,"tid":27428,"ts":326461598524,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1359041},
-{"pid":27411,"tid":27428,"ts":326461598646,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":15749},"dur":5158,"tdur":4090,"tts":1359163},
-{"pid":27411,"tid":27428,"ts":326461598646,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":5127,"tdur":4028,"tts":1359194},
-{"pid":27411,"tid":27428,"ts":326461602125,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1361910,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461602125,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":128},"dur":1648,"tdur":1312,"tts":1361910},
-{"pid":27411,"tid":27428,"ts":326461602186,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1343,"tdur":1007,"tts":1361971},
-{"pid":27411,"tid":27428,"ts":326461603620,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461585705.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461602155.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902032.0,"time":326461545937.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461531000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461584179.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461564982.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461603529.0},"coordinates":[{"x":234.9532470703125,"y":781.202880859375},{"x":501.7028503417969,"y":514.5784301757812}],"trace_id":12884902032.0}},"tts":1363070,"id":"0x300000090"},
-{"pid":27411,"tid":27428,"ts":326461603620,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1363070,"id":"0x300000090","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461603681,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":61,"tts":1363161},
-{"pid":27411,"tid":27428,"ts":326461603712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1363161,"id":"0xaf88ce86fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461603834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1363283,"id":"0xaf88ca63f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461603834,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2594,"tdur":31,"tts":1363283},
-{"pid":27411,"tid":27428,"ts":326461606428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1363314},
-{"pid":27411,"tid":27428,"ts":326461606489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1363375,"id":"0xaf88ca7cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461606520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1363406,"id":"0xaf88ca7cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461606520,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1363406},
-{"pid":27411,"tid":27428,"ts":326461609389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1363528,"id":"0xaf88ca7df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461609389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1363528},
-{"pid":27411,"tid":27428,"ts":326461609419,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1363558},
-{"pid":27411,"tid":27428,"ts":326461609419,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1363558,"id":"0xaf88ca7ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461609450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1363589,"id":"0xaf88ca7ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461609480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4853,"tdur":4304,"tts":1363619},
-{"pid":27411,"tid":27428,"ts":326461609511,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2883},"dur":4792,"tdur":4242,"tts":1363650},
-{"pid":27411,"tid":27428,"ts":326461609541,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4762,"tdur":4212,"tts":1363680},
-{"pid":27411,"tid":27428,"ts":326461612593,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1366549,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461612624,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":129},"dur":1648,"tdur":1282,"tts":1366580},
-{"pid":27411,"tid":27428,"ts":326461612654,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1435,"tdur":1068,"tts":1366610},
-{"pid":27411,"tid":27428,"ts":326461614180,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461599653.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461612624.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902033.0,"time":326461555215.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461548000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461598707.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461578960.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461614089.0},"coordinates":[{"x":230.86312866210938,"y":790.2011108398438},{"x":510.70111083984375,"y":503.94415283203125}],"trace_id":12884902033.0}},"tts":1367770,"id":"0x300000091"},
-{"pid":27411,"tid":27428,"ts":326461614211,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1367800,"id":"0x300000091","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461614211,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":62,"tts":1367800},
-{"pid":27411,"tid":27428,"ts":326461614242,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1367831,"id":"0xaf88ce87fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461616683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1367984,"id":"0xaf88ca7ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461616683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1367984},
-{"pid":27411,"tid":27428,"ts":326461616714,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1368014,"id":"0xaf88ca78f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461616744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368045,"id":"0xaf88ca78f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461616744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1368045},
-{"pid":27411,"tid":27428,"ts":326461624435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368136,"id":"0xaf88ca79f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461624466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1368136},
-{"pid":27411,"tid":27428,"ts":326461624466,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1368136},
-{"pid":27411,"tid":27428,"ts":326461624496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1368167,"id":"0xaf88ca7bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461624527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368167,"id":"0xaf88ca7af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461624527,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1953,"tdur":30,"tts":1368167},
-{"pid":27411,"tid":27428,"ts":326461626480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1368197},
-{"pid":27411,"tid":27428,"ts":326461626572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368289,"id":"0xaf88ca7bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461626572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":152,"tdur":152,"tts":1368289},
-{"pid":27411,"tid":27428,"ts":326461626633,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2892},"dur":61,"tdur":61,"tts":1368350},
-{"pid":27411,"tid":27428,"ts":326461626663,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":31,"tdur":31,"tts":1368380},
-{"pid":27411,"tid":27428,"ts":326461626694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1368411,"id":"0xaf88ca75f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461626755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368472,"id":"0xaf88ca74f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461626755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":1368472},
-{"pid":27411,"tid":27428,"ts":326461626755,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1368472},
-{"pid":27411,"tid":27428,"ts":326461626785,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368502,"id":"0xaf88ca75f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461626816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1368533},
-{"pid":27411,"tid":27428,"ts":326461626816,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1368533,"id":"0xaf88ca76f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461626846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1368564,"id":"0xaf88ca76f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461626877,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4456,"tdur":3968,"tts":1368594},
-{"pid":27411,"tid":27428,"ts":326461626907,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6254},"dur":4426,"tdur":3937,"tts":1368625},
-{"pid":27411,"tid":27428,"ts":326461626907,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4395,"tdur":3906,"tts":1368625},
-{"pid":27411,"tid":27428,"ts":326461629563,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1371127,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461629563,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":130},"dur":1739,"tdur":1404,"tts":1371127},
-{"pid":27411,"tid":27428,"ts":326461629563,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1371127},
-{"pid":27411,"tid":27428,"ts":326461629654,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1068,"tts":1371219},
-{"pid":27411,"tid":27428,"ts":326461631180,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461617721.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461629624.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902034.0,"time":326461571910.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461565000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461616805.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461594708.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461631058.0},"coordinates":[{"x":227.51333618164062,"y":799.2133178710938},{"x":519.7133178710938,"y":492.54669189453125}],"trace_id":12884902034.0}},"tts":1372409,"id":"0x300000092"},
-{"pid":27411,"tid":27428,"ts":326461631211,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1372440,"id":"0x300000092","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461631211,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":91,"tts":1372440},
-{"pid":27411,"tid":27428,"ts":326461631241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1372470,"id":"0xaf88ce80fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461632310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372623,"id":"0xaf88ca77f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461632340,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":92,"tts":1372653},
-{"pid":27411,"tid":27428,"ts":326461632340,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1372653},
-{"pid":27411,"tid":27428,"ts":326461632401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1372714,"id":"0xaf88ca71f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461632432,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372745,"id":"0xaf88ca70f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461632432,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1372745},
-{"pid":27411,"tid":27428,"ts":326461632493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372806,"id":"0xaf88ca71f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461632493,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":244,"tdur":244,"tts":1372806},
-{"pid":27411,"tid":27428,"ts":326461632523,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1372836},
-{"pid":27411,"tid":27428,"ts":326461632645,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16716},"dur":61,"tdur":61,"tts":1372958},
-{"pid":27411,"tid":27428,"ts":326461632676,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":30,"tdur":30,"tts":1372989},
-{"pid":27411,"tid":27428,"ts":326461632737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373050,"id":"0xaf88ca72f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461632767,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373081,"id":"0xaf88ca72f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461632767,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1373081},
-{"pid":27411,"tid":27428,"ts":326461642137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373142,"id":"0xaf88ca73f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461642168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":61,"tts":1373172},
-{"pid":27411,"tid":27428,"ts":326461642168,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":31,"tts":1373172},
-{"pid":27411,"tid":27428,"ts":326461642259,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1373203},
-{"pid":27411,"tid":27428,"ts":326461642290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373233,"id":"0xaf88ca0df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461642320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373264,"id":"0xaf88ca0cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461642320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":30,"tts":1373264},
-{"pid":27411,"tid":27428,"ts":326461642442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373294,"id":"0xaf88ca0df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461642442,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1373294},
-{"pid":27411,"tid":27428,"ts":326461642503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":763,"tdur":244,"tts":1373325},
-{"pid":27411,"tid":27428,"ts":326461642564,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":458,"tdur":61,"tts":1373355},
-{"pid":27411,"tid":27428,"ts":326461643053,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6278},"dur":91,"tdur":91,"tts":1373447},
-{"pid":27411,"tid":27428,"ts":326461643083,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1373477},
-{"pid":27411,"tid":27428,"ts":326461643144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373538,"id":"0xaf88ca0ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461643144,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":31,"tts":1373538},
-{"pid":27411,"tid":27428,"ts":326461643297,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373599,"id":"0xaf88ca0ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461643297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1373599},
-{"pid":27411,"tid":27428,"ts":326461644243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373721,"id":"0xaf88ca0ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461644243,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1373721},
-{"pid":27411,"tid":27428,"ts":326461644274,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1373752},
-{"pid":27411,"tid":27428,"ts":326461644274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373752,"id":"0xaf88ca08f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461644304,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373782,"id":"0xaf88ca08f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461644304,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4975,"tdur":3999,"tts":1373782},
-{"pid":27411,"tid":27428,"ts":326461644365,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9240},"dur":4914,"tdur":3937,"tts":1373844},
-{"pid":27411,"tid":27428,"ts":326461644396,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4852,"tdur":3876,"tts":1373874},
-{"pid":27411,"tid":27428,"ts":326461646807,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1376072,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461646807,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":131},"dur":2441,"tdur":1678,"tts":1376072},
-{"pid":27411,"tid":27428,"ts":326461646868,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1862,"tdur":1098,"tts":1376133},
-{"pid":27411,"tid":27428,"ts":326461649004,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461633744.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461646837.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902035.0,"time":326461592542.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461581000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461632859.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461610793.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461648730.0},"coordinates":[{"x":224.80654907226562,"y":807.6448364257812},{"x":529.2738037109375,"y":481.09722900390625}],"trace_id":12884902035.0}},"tts":1377506,"id":"0x300000093"},
-{"pid":27411,"tid":27428,"ts":326461649004,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1377506,"id":"0x300000093","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461649096,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461633744.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461646837.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902036.0,"time":326461605970.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461598000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461632859.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461613265.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461648730.0},"coordinates":[{"x":222.37322998046875,"y":815.755859375},{"x":539.007080078125,"y":469.74176025390625}],"trace_id":12884902036.0}},"tts":1377598,"id":"0x300000094"},
-{"pid":27411,"tid":27428,"ts":326461649126,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1377628,"id":"0x300000094","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461649157,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":31,"tts":1377689},
-{"pid":27411,"tid":27428,"ts":326461649187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1377689,"id":"0xaf88ce81fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461649309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377811,"id":"0xaf88ca09f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461649309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1377811},
-{"pid":27411,"tid":27428,"ts":326461649309,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1377811},
-{"pid":27411,"tid":27428,"ts":326461649340,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1377842,"id":"0xaf88ca0bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461649370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377872,"id":"0xaf88ca0af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461649370,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1377872},
-{"pid":27411,"tid":27428,"ts":326461649401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377903,"id":"0xaf88ca0bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461649432,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":274,"tdur":275,"tts":1377933},
-{"pid":27411,"tid":27428,"ts":326461649462,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":91,"tts":1377964},
-{"pid":27411,"tid":27474,"ts":326461644060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":94765,"id":"0xaf88ca0ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461644060,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":94765},
-{"pid":27411,"tid":27474,"ts":326461646868,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":91,"tdur":91,"tts":94979},
-{"pid":27411,"tid":27474,"ts":326461646898,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":95009},
-{"pid":27411,"tid":27474,"ts":326461646898,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95040,"id":"0xccc5c302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461646929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":95040,"id":"0xaf88ca09f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461646990,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":92,"tts":95131},
-{"pid":27411,"tid":27474,"ts":326461647020,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":95131},
-{"pid":27411,"tid":27474,"ts":326461647020,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95162,"id":"0xccc5c406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461647051,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95162,"id":"0xc4c1f10a"},
-{"pid":27411,"tid":27474,"ts":326461647081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":95193,"id":"0xaf88ca0af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461649279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":95315,"id":"0xaf88ce81fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461649279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":95315},
-{"pid":27411,"tid":27474,"ts":326461649279,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95315,"id":"0xc4c1f202"},
-{"pid":27411,"tid":27474,"ts":326461658099,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":214,"tts":95467},
-{"pid":27411,"tid":27474,"ts":326461658130,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":95498},
-{"pid":27411,"tid":27474,"ts":326461658130,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95498,"id":"0xba466a02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461658160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":95528,"id":"0xaf88ca05f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461658221,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":95589},
-{"pid":27411,"tid":27474,"ts":326461658221,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95589,"id":"0xba466b06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461658252,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95620,"id":"0xc4c1f40a"},
-{"pid":27411,"tid":27474,"ts":326461658313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":95681,"id":"0xaf88ca06f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461659961,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":153,"tdur":153,"tts":95742},
-{"pid":27411,"tid":27474,"ts":326461659992,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":122,"tdur":92,"tts":95772},
-{"pid":27411,"tid":27474,"ts":326461659992,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95772,"id":"0xba466d02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461660053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":95833,"id":"0xaf88ca01f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461664386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":95986,"id":"0xaf88ce82fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461664386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":95986},
-{"pid":27411,"tid":27474,"ts":326461664386,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":95986,"id":"0xc4c1f602"},
-{"pid":27411,"tid":27474,"ts":326461668476,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":428,"tdur":244,"tts":96139},
-{"pid":27411,"tid":27474,"ts":326461668507,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":96169},
-{"pid":27411,"tid":27474,"ts":326461668537,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96200,"id":"0xccc5c802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461668537,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":96200,"id":"0xaf88ca03f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461668598,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":275,"tdur":122,"tts":96261},
-{"pid":27411,"tid":27474,"ts":326461668598,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96261,"id":"0xccc5c906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461668629,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96291,"id":"0xc4c1f70a"},
-{"pid":27411,"tid":27474,"ts":326461668842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":96352,"id":"0xaf88ca1df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461670491,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":91,"tdur":91,"tts":96444},
-{"pid":27411,"tid":27474,"ts":326461670521,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":96474},
-{"pid":27411,"tid":27474,"ts":326461670552,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96505,"id":"0xccc5cb02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461670552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":96505,"id":"0xaf88ca1ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461678914,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":123,"tts":96596},
-{"pid":27411,"tid":27474,"ts":326461678945,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":96627},
-{"pid":27411,"tid":27474,"ts":326461678975,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96658,"id":"0xba467102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461678975,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":96658,"id":"0xaf88ca19f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461683920,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":96810,"id":"0xaf88ce83fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461683950,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":96841},
-{"pid":27411,"tid":27474,"ts":326461683950,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96841,"id":"0xc4c1f902"},
-{"pid":27411,"tid":27474,"ts":326461686849,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":214,"tts":96932},
-{"pid":27411,"tid":27474,"ts":326461686880,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":96993},
-{"pid":27411,"tid":27474,"ts":326461686911,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":96993,"id":"0xccc5ce02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461686911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":96993,"id":"0xaf88ca1bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461686972,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":97054},
-{"pid":27411,"tid":27474,"ts":326461686972,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97054,"id":"0xccc5cf06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461687002,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97085,"id":"0xc4c1fa0a"},
-{"pid":27411,"tid":27474,"ts":326461687033,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":97115,"id":"0xaf88ca14f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461696555,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":97207},
-{"pid":27411,"tid":27474,"ts":326461696585,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":97237},
-{"pid":27411,"tid":27474,"ts":326461696585,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97268,"id":"0xba467402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461696616,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":97268,"id":"0xaf88ca16f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461696708,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":183,"tdur":184,"tts":97359},
-{"pid":27411,"tid":27474,"ts":326461696738,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":153,"tts":97390},
-{"pid":27411,"tid":27474,"ts":326461696738,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97390,"id":"0xba467506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461696769,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97421,"id":"0xc4c1fc0a"},
-{"pid":27411,"tid":27428,"ts":326461649584,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16732},"dur":92,"tdur":91,"tts":1378086},
-{"pid":27411,"tid":27428,"ts":326461649584,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1378086},
-{"pid":27411,"tid":27428,"ts":326461649645,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":30,"tts":1378147},
-{"pid":27411,"tid":27428,"ts":326461649676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378177,"id":"0xaf88ca04f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461649737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378238,"id":"0xaf88ca04f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461649737,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1378238},
-{"pid":27411,"tid":27428,"ts":326461658252,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378330,"id":"0xaf88ca05f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461658252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":61,"tts":1378330},
-{"pid":27411,"tid":27428,"ts":326461658282,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":306,"tdur":30,"tts":1378361},
-{"pid":27411,"tid":27428,"ts":326461658282,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":1378361},
-{"pid":27411,"tid":27428,"ts":326461658557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378361,"id":"0xaf88ca07f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461658588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378391,"id":"0xaf88ca06f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461658618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1378422},
-{"pid":27411,"tid":27428,"ts":326461658649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378452,"id":"0xaf88ca07f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461658649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":885,"tdur":244,"tts":1378452},
-{"pid":27411,"tid":27428,"ts":326461658679,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":1378483},
-{"pid":27411,"tid":27428,"ts":326461658801,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9264},"dur":702,"tdur":92,"tts":1378574},
-{"pid":27411,"tid":27428,"ts":326461658801,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":580,"tdur":0,"tts":1378574},
-{"pid":27411,"tid":27428,"ts":326461659412,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":61,"tts":1378605},
-{"pid":27411,"tid":27428,"ts":326461659534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378696,"id":"0xaf88ca00f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461659564,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378727,"id":"0xaf88ca00f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461659564,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1378727},
-{"pid":27411,"tid":27428,"ts":326461660144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378818,"id":"0xaf88ca01f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461660144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1378818},
-{"pid":27411,"tid":27428,"ts":326461660144,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1378818},
-{"pid":27411,"tid":27428,"ts":326461660175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378849,"id":"0xaf88ca02f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461660205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378879,"id":"0xaf88ca02f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461660236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4150,"tdur":3418,"tts":1378910},
-{"pid":27411,"tid":27428,"ts":326461660266,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11826},"dur":4120,"tdur":3388,"tts":1378940},
-{"pid":27411,"tid":27428,"ts":326461660266,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4090,"tdur":3358,"tts":1378940},
-{"pid":27411,"tid":27428,"ts":326461662525,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1381016,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461662525,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":132},"dur":1831,"tdur":1282,"tts":1381016},
-{"pid":27411,"tid":27428,"ts":326461662586,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1556,"tdur":1007,"tts":1381077},
-{"pid":27411,"tid":27428,"ts":326461664234,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461648241.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461662555.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902037.0,"time":326461621841.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461615000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461647295.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461627396.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461664142.0},"coordinates":[{"x":219.89144897460938,"y":824.0285034179688},{"x":548.2313842773438,"y":458.8629150390625}],"trace_id":12884902037.0}},"tts":1382176,"id":"0x300000095"},
-{"pid":27411,"tid":27428,"ts":326461664264,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1382206,"id":"0x300000095","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461664264,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":61,"tts":1382237},
-{"pid":27411,"tid":27428,"ts":326461664295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1382237,"id":"0xaf88ce82fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461668629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1382420,"id":"0xaf88ca03f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461668629,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":213,"tdur":91,"tts":1382420},
-{"pid":27411,"tid":27428,"ts":326461668629,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":183,"tdur":61,"tts":1382420},
-{"pid":27411,"tid":27428,"ts":326461668781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1382450,"id":"0xaf88ca1cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461668904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1382572,"id":"0xaf88ca1cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461668904,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3570,"tdur":2747,"tts":1382572},
-{"pid":27411,"tid":27428,"ts":326461668934,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":122,"tdur":122,"tts":1382603},
-{"pid":27411,"tid":27428,"ts":326461669087,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16864},"dur":3296,"tdur":2473,"tts":1382755},
-{"pid":27411,"tid":27428,"ts":326461669117,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":3266,"tdur":2442,"tts":1382786},
-{"pid":27411,"tid":27428,"ts":326461669148,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":671,"tdur":61,"tts":1382817},
-{"pid":27411,"tid":27428,"ts":326461669148,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":641,"tdur":0,"tts":1382817},
-{"pid":27411,"tid":27428,"ts":326461669789,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1382878},
-{"pid":27411,"tid":27428,"ts":326461669819,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":61,"tdur":30,"tts":1382878},
-{"pid":27411,"tid":27428,"ts":326461669850,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1382908},
-{"pid":27411,"tid":27428,"ts":326461669880,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":275,"tdur":274,"tts":1382939},
-{"pid":27411,"tid":27428,"ts":326461669880,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":275,"tdur":244,"tts":1382969},
-{"pid":27411,"tid":27428,"ts":326461670491,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":244,"tdur":62,"tts":1383518},
-{"pid":27411,"tid":27428,"ts":326461670491,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1383518},
-{"pid":27411,"tid":27428,"ts":326461670491,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":31,"tts":1383518},
-{"pid":27411,"tid":27428,"ts":326461670735,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1383580},
-{"pid":27411,"tid":27428,"ts":326461670765,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1383610},
-{"pid":27411,"tid":27428,"ts":326461670765,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1383610},{"pid":27411,"tid":27428,"ts":326461670796,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1383641},
-{"pid":27411,"tid":27428,"ts":326461671223,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1384068},
-{"pid":27411,"tid":27428,"ts":326461671223,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1384098},
-{"pid":27411,"tid":27428,"ts":326461671254,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1384098},
-{"pid":27411,"tid":27428,"ts":326461671254,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1384129},
-{"pid":27411,"tid":27428,"ts":326461671284,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":305,"tdur":305,"tts":1384129},
-{"pid":27411,"tid":27428,"ts":326461671284,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1384129},
-{"pid":27411,"tid":27428,"ts":326461671376,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":214,"tts":1384220},
-{"pid":27411,"tid":27428,"ts":326461671864,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1384709},
-{"pid":27411,"tid":27428,"ts":326461671864,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1384739},
-{"pid":27411,"tid":27428,"ts":326461671894,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1384739},
-{"pid":27411,"tid":27428,"ts":326461671925,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1384770},
-{"pid":27411,"tid":27428,"ts":326461671956,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":214,"tts":1384800},
-{"pid":27411,"tid":27428,"ts":326461671956,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":183,"tts":1384800},
-{"pid":27411,"tid":27428,"ts":326461672841,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385380,"id":"0xaf88ca1df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461672871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1385411},
-{"pid":27411,"tid":27428,"ts":326461672871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1385411,"id":"0xaf88ca1ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461672902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385472,"id":"0xaf88ca1ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461672932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1385472},
-{"pid":27411,"tid":27428,"ts":326461672932,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":1385472},
-{"pid":27411,"tid":27428,"ts":326461672963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385502,"id":"0xaf88ca1ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461672963,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1385502},
-{"pid":27411,"tid":27428,"ts":326461672993,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1385533,"id":"0xaf88ca18f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461673024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385563,"id":"0xaf88ca18f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461673024,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":1007,"tdur":641,"tts":1385594},
-{"pid":27411,"tid":27428,"ts":326461673329,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16893},"dur":671,"tdur":580,"tts":1385624},
-{"pid":27411,"tid":27428,"ts":326461673359,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":641,"tdur":549,"tts":1385655},
-{"pid":27411,"tid":27428,"ts":326461673390,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":122,"tdur":31,"tts":1385685},
-{"pid":27411,"tid":27428,"ts":326461673390,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":1385685},
-{"pid":27411,"tid":27428,"ts":326461673512,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1385716},
-{"pid":27411,"tid":27428,"ts":326461673512,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1385716},
-{"pid":27411,"tid":27428,"ts":326461673543,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1385746},
-{"pid":27411,"tid":27428,"ts":326461673543,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":214,"tts":1385746},
-{"pid":27411,"tid":27428,"ts":326461673573,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1385777},
-{"pid":27411,"tid":27428,"ts":326461679067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386357,"id":"0xaf88ca19f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461679067,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":1386387},
-{"pid":27411,"tid":27428,"ts":326461679097,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1386387},
-{"pid":27411,"tid":27428,"ts":326461679097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1386387,"id":"0xaf88ca1af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461679128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386418,"id":"0xaf88ca1af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461679158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4792,"tdur":3419,"tts":1386448},
-{"pid":27411,"tid":27428,"ts":326461679189,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":92,"tts":1386479},
-{"pid":27411,"tid":27428,"ts":326461679311,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14388},"dur":4609,"tdur":3235,"tts":1386601},
-{"pid":27411,"tid":27428,"ts":326461679311,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4609,"tdur":3204,"tts":1386632},
-{"pid":27411,"tid":27428,"ts":326461681295,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1388585,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461681295,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":133},"dur":2594,"tdur":1221,"tts":1388585},
-{"pid":27411,"tid":27428,"ts":326461681325,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1679,"tdur":1008,"tts":1388615},
-{"pid":27411,"tid":27428,"ts":326461683797,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461669972.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461681325.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902038.0,"time":326461638475.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461631000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461668995.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461644243.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461683004.0},"coordinates":[{"x":217.9593505859375,"y":831.1219482421875},{"x":555.1219482421875,"y":450.3509521484375}],"trace_id":12884902038.0}},"tts":1389714,"id":"0x300000096"},
-{"pid":27411,"tid":27428,"ts":326461683828,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1389745,"id":"0x300000096","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461683828,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1389745},
-{"pid":27411,"tid":27428,"ts":326461683858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1389775,"id":"0xaf88ce83fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461687002,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1389928,"id":"0xaf88ca1bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461687002,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":1389928},
-{"pid":27411,"tid":27428,"ts":326461687033,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":1389958},
-{"pid":27411,"tid":27428,"ts":326461687094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1389989,"id":"0xaf88ca15f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461687124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1390019,"id":"0xaf88ca14f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461687124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1390019},
-{"pid":27411,"tid":27428,"ts":326461687155,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1390050,"id":"0xaf88ca15f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461687185,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":9523,"tdur":3785,"tts":1390080},
-{"pid":27411,"tid":27428,"ts":326461687216,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":61,"tdur":61,"tts":1390111},
-{"pid":27411,"tid":27428,"ts":326461687307,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17096},"dur":9278,"tdur":3541,"tts":1390202},
-{"pid":27411,"tid":27428,"ts":326461687338,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":9247,"tdur":3510,"tts":1390233},
-{"pid":27411,"tid":27428,"ts":326461687368,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1390263},
-{"pid":27411,"tid":27428,"ts":326461687368,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1390263},
-{"pid":27411,"tid":27428,"ts":326461687399,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1390294},
-{"pid":27411,"tid":27428,"ts":326461687399,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1390294},
-{"pid":27411,"tid":27428,"ts":326461687429,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1390325},
-{"pid":27411,"tid":27428,"ts":326461687460,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":1390355},
-{"pid":27411,"tid":27428,"ts":326461687857,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1390752},
-{"pid":27411,"tid":27428,"ts":326461687887,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1390782},
-{"pid":27411,"tid":27428,"ts":326461687887,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":122,"tdur":122,"tts":1390782},
-{"pid":27411,"tid":27428,"ts":326461687887,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":1390782},
-{"pid":27411,"tid":27428,"ts":326461687979,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1390874},
-{"pid":27411,"tid":27428,"ts":326461688009,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":305,"tdur":184,"tts":1390904},
-{"pid":27411,"tid":27428,"ts":326461688009,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":305,"tdur":184,"tts":1390904},
-{"pid":27411,"tid":27428,"ts":326461688528,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1391301},
-{"pid":27411,"tid":27428,"ts":326461688559,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1391332},
-{"pid":27411,"tid":27428,"ts":326461688559,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1391332},
-{"pid":27411,"tid":27428,"ts":326461688589,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1391362},
-{"pid":27411,"tid":27428,"ts":326461688589,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":214,"tts":1391362},
-{"pid":27411,"tid":27428,"ts":326461688620,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1391393},
-{"pid":27411,"tid":27428,"ts":326461688986,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1391759},
-{"pid":27411,"tid":27428,"ts":326461689016,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1391790},
-{"pid":27411,"tid":27428,"ts":326461689047,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1391820},
-{"pid":27411,"tid":27428,"ts":326461689047,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1391851},
-{"pid":27411,"tid":27428,"ts":326461689077,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1391851},
-{"pid":27411,"tid":27428,"ts":326461689108,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1391881},
-{"pid":27411,"tid":27428,"ts":326461689505,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1392278},
-{"pid":27411,"tid":27428,"ts":326461689535,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1392308},
-{"pid":27411,"tid":27428,"ts":326461689535,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1392308},
-{"pid":27411,"tid":27428,"ts":326461689566,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1392339},
-{"pid":27411,"tid":27428,"ts":326461689566,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":184,"tts":1392369},
-{"pid":27411,"tid":27428,"ts":326461689596,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1392369},
-{"pid":27411,"tid":27428,"ts":326461692374,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":3265,"tdur":61,"tts":1392736},
-{"pid":27411,"tid":27428,"ts":326461692404,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1392766},
-{"pid":27411,"tid":27428,"ts":326461695639,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1392797},
-{"pid":27411,"tid":27428,"ts":326461695670,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1392827},
-{"pid":27411,"tid":27428,"ts":326461695700,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":184,"tdur":183,"tts":1392858},
-{"pid":27411,"tid":27428,"ts":326461695700,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":184,"tdur":183,"tts":1392858},
-{"pid":27411,"tid":27428,"ts":326461696158,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1393316},
-{"pid":27411,"tid":27428,"ts":326461696158,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1393316},
-{"pid":27411,"tid":27428,"ts":326461696189,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1393346},
-{"pid":27411,"tid":27428,"ts":326461696189,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1393346},
-{"pid":27411,"tid":27428,"ts":326461696219,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1393377},
-{"pid":27411,"tid":27428,"ts":326461696219,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1393377},
-{"pid":27411,"tid":27428,"ts":326461696708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1393865,"id":"0xaf88ca17f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461696738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1393895,"id":"0xaf88ca16f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461696738,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1393895},
-{"pid":27411,"tid":27428,"ts":326461696738,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1393895},
-{"pid":27411,"tid":27428,"ts":326461696769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1393926,"id":"0xaf88ca10f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461696799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1393956,"id":"0xaf88ca17f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461696799,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":92,"tdur":62,"tts":1393956},
-{"pid":27411,"tid":27428,"ts":326461696921,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394048,"id":"0xaf88ca10f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461696921,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":214,"tts":1394048},
-{"pid":27411,"tid":27428,"ts":326461696952,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":91,"tts":1394079},
-{"pid":27411,"tid":27428,"ts":326461697074,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14403},"dur":61,"tdur":61,"tts":1394201},
-{"pid":27411,"tid":27428,"ts":326461697074,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1394201},
-{"pid":27411,"tid":27428,"ts":326461697165,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394292,"id":"0xaf88ca11f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461697165,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1394292},
-{"pid":27411,"tid":27428,"ts":326461697165,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1394323,"id":"0xaf88ca12f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461697196,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394353,"id":"0xaf88ca12f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461697226,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1394353},
-{"pid":27411,"tid":27428,"ts":326461698478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394445,"id":"0xaf88ca13f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461698478,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1394445},
-{"pid":27411,"tid":27428,"ts":326461698508,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1394475},
-{"pid":27411,"tid":27428,"ts":326461698508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1394475,"id":"0xaf88ca2cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461698539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394506,"id":"0xaf88ca2cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461698539,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4303,"tdur":3296,"tts":1394506},
-{"pid":27411,"tid":27428,"ts":326461698600,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":333},"dur":4242,"tdur":3235,"tts":1394567},
-{"pid":27411,"tid":27428,"ts":326461698600,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4242,"tdur":3205,"tts":1394567},
-{"pid":27411,"tid":27428,"ts":326461700828,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1396398,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461700858,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":134},"dur":1954,"tdur":1343,"tts":1396429},
-{"pid":27411,"tid":27428,"ts":326461700889,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1678,"tdur":1038,"tts":1396459},
-{"pid":27411,"tid":27428,"ts":326461702659,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461695365.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461700858.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902039.0,"time":326461655627.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461648000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461687246.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461664600.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461702567.0},"coordinates":[{"x":215.53518676757812,"y":838.3944702148438},{"x":561.251220703125,"y":442.92718505859375}],"trace_id":12884902039.0}},"tts":1397619,"id":"0x300000097"},
-{"pid":27411,"tid":27474,"ts":326461696799,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":97451,"id":"0xaf88ca11f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461696799,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":97451},
-{"pid":27411,"tid":27474,"ts":326461698356,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":97604},
-{"pid":27411,"tid":27474,"ts":326461698386,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":97634},
-{"pid":27411,"tid":27474,"ts":326461698386,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97634,"id":"0xba467702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461698417,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":97665,"id":"0xaf88ca13f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461701591,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":213,"tdur":183,"tts":97756},
-{"pid":27411,"tid":27474,"ts":326461701652,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":97817},
-{"pid":27411,"tid":27474,"ts":326461701652,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97817,"id":"0xccc5d302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461701682,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":97848,"id":"0xaf88ca2df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461701682,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":97848},
-{"pid":27411,"tid":27474,"ts":326461701713,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97878,"id":"0xccc5d406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461701713,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":97878,"id":"0xc4c1fe0a"},
-{"pid":27411,"tid":27474,"ts":326461701774,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":97939,"id":"0xaf88ca2ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461702842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":98061,"id":"0xaf88ce9cfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461702842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":98061},
-{"pid":27411,"tid":27474,"ts":326461702842,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98061,"id":"0xc4c1ff02"},
-{"pid":27411,"tid":27474,"ts":326461710503,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":98184},
-{"pid":27411,"tid":27474,"ts":326461710533,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":98214},
-{"pid":27411,"tid":27474,"ts":326461710533,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98214,"id":"0xba467b02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461710564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":98245,"id":"0xaf88ca29f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461714501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":98367,"id":"0xaf88ce9dfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461714501,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":98367},
-{"pid":27411,"tid":27474,"ts":326461714501,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98397,"id":"0xc4c20102"},
-{"pid":27411,"tid":27474,"ts":326461720056,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":98458},
-{"pid":27411,"tid":27474,"ts":326461720086,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":98519},
-{"pid":27411,"tid":27474,"ts":326461720117,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98519,"id":"0xccc5d806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461720117,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98519,"id":"0xc4c2020a"},
-{"pid":27411,"tid":27474,"ts":326461720147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":98550,"id":"0xaf88ca2bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461728021,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":123,"tdur":122,"tts":98672},
-{"pid":27411,"tid":27474,"ts":326461728052,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":98702},
-{"pid":27411,"tid":27474,"ts":326461728083,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98733,"id":"0xba467f02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461728083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":98763,"id":"0xaf88ca25f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461731898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":98886,"id":"0xaf88ce9efec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461731928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":98886},
-{"pid":27411,"tid":27474,"ts":326461731928,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":98886,"id":"0xc4c20402"},
-{"pid":27411,"tid":27474,"ts":326461734614,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":98977},
-{"pid":27411,"tid":27474,"ts":326461734644,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":99008},
-{"pid":27411,"tid":27474,"ts":326461734644,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99008,"id":"0xccc5dc06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461734675,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99038,"id":"0xc4c2050a"},
-{"pid":27411,"tid":27474,"ts":326461734705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":99099,"id":"0xaf88ca27f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461747036,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":99191},
-{"pid":27411,"tid":27474,"ts":326461747066,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":99221},
-{"pid":27411,"tid":27474,"ts":326461747066,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99221,"id":"0xba468302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461747097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":99252,"id":"0xaf88ca21f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461750637,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":99343},
-{"pid":27411,"tid":27474,"ts":326461750668,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":99374},
-{"pid":27411,"tid":27474,"ts":326461750698,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99404,"id":"0xccc5e006","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461750698,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99435,"id":"0xc4c2070a"},
-{"pid":27411,"tid":27474,"ts":326461750759,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":99496,"id":"0xaf88ca23f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461751156,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":99618,"id":"0xaf88ce9ffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461751156,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":99618},
-{"pid":27411,"tid":27474,"ts":326461751186,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99649,"id":"0xc4c20802"},
-{"pid":27411,"tid":27474,"ts":326461761930,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":99771},
-{"pid":27411,"tid":27474,"ts":326461761960,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":99801},
-{"pid":27411,"tid":27474,"ts":326461761960,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99801,"id":"0xba468702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461761991,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":99832,"id":"0xaf88ca3df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461763608,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":99923},
-{"pid":27411,"tid":27474,"ts":326461763639,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":99954},
-{"pid":27411,"tid":27474,"ts":326461763669,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99984,"id":"0xccc5e406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461763669,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":99984,"id":"0xc4c20a0a"},
-{"pid":27411,"tid":27474,"ts":326461763700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":100015,"id":"0xaf88ca3ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461768644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":100137,"id":"0xaf88ce98fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461768644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":100137},
-{"pid":27411,"tid":27428,"ts":326461702659,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1397619,"id":"0x300000097","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461702659,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1397619},
-{"pid":27411,"tid":27428,"ts":326461702751,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":62,"tts":1397710},
-{"pid":27411,"tid":27428,"ts":326461702751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1397710,"id":"0xaf88ce9cfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461702873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1397833,"id":"0xaf88ca2df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461702873,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1397833},
-{"pid":27411,"tid":27428,"ts":326461702903,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1397863},
-{"pid":27411,"tid":27428,"ts":326461702903,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1397863,"id":"0xaf88ca2ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461702934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1397894,"id":"0xaf88ca2ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461702964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1397924},
-{"pid":27411,"tid":27428,"ts":326461702995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1397955,"id":"0xaf88ca2ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461702995,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":335,"tdur":183,"tts":1397955},
-{"pid":27411,"tid":27428,"ts":326461703025,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":214,"tdur":61,"tts":1397985},
-{"pid":27411,"tid":27428,"ts":326461703269,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17106},"dur":31,"tdur":30,"tts":1398077},
-{"pid":27411,"tid":27428,"ts":326461703269,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":30,"tts":1398077},
-{"pid":27411,"tid":27428,"ts":326461703300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1398107,"id":"0xaf88ca28f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461703361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398168,"id":"0xaf88ca28f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461703361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1398168},
-{"pid":27411,"tid":27428,"ts":326461710625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398260,"id":"0xaf88ca29f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461710655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1398290},
-{"pid":27411,"tid":27428,"ts":326461710655,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1398290},
-{"pid":27411,"tid":27428,"ts":326461710686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1398321,"id":"0xaf88ca2af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461710686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398351,"id":"0xaf88ca2af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461710716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3785,"tdur":3266,"tts":1398351},
-{"pid":27411,"tid":27428,"ts":326461710747,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":91,"tdur":91,"tts":1398382},
-{"pid":27411,"tid":27428,"ts":326461710869,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2645},"dur":3632,"tdur":3113,"tts":1398504},
-{"pid":27411,"tid":27428,"ts":326461710900,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3570,"tdur":3052,"tts":1398535},
-{"pid":27411,"tid":27428,"ts":326461712578,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1400244,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461712609,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":135},"dur":1861,"tdur":1343,"tts":1400244},
-{"pid":27411,"tid":27428,"ts":326461712639,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1557,"tdur":1038,"tts":1400274},
-{"pid":27411,"tid":27428,"ts":326461714379,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461703788.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461712609.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902040.0,"time":326461672352.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461665000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461702018.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461682851.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461714226.0},"coordinates":[{"x":213.06736755371094,"y":845.7978515625},{"x":567.0094604492188,"y":436.99053955078125}],"trace_id":12884902040.0}},"tts":1401495,"id":"0x300000098"},
-{"pid":27411,"tid":27428,"ts":326461714379,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1401495,"id":"0x300000098","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461714409,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1401526},
-{"pid":27411,"tid":27428,"ts":326461714409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1401526,"id":"0xaf88ce9dfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461720239,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1401709,"id":"0xaf88ca2bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461720239,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1401709},
-{"pid":27411,"tid":27428,"ts":326461720269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1401739,"id":"0xaf88ca24f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461720300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1401770,"id":"0xaf88ca24f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461720300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1401770},
-{"pid":27411,"tid":27428,"ts":326461728174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1401892,"id":"0xaf88ca25f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461728174,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1401892},
-{"pid":27411,"tid":27428,"ts":326461728205,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1401922},
-{"pid":27411,"tid":27428,"ts":326461728205,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1401922,"id":"0xaf88ca26f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461728235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1401953,"id":"0xaf88ca26f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461728266,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3662,"tdur":3297,"tts":1401983},
-{"pid":27411,"tid":27428,"ts":326461728296,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4957},"dur":3602,"tdur":3235,"tts":1402014},
-{"pid":27411,"tid":27428,"ts":326461728327,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3571,"tdur":3205,"tts":1402044},
-{"pid":27411,"tid":27428,"ts":326461730127,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1403845,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461730127,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":136},"dur":1771,"tdur":1404,"tts":1403845},
-{"pid":27411,"tid":27428,"ts":326461730188,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1007,"tts":1403906},
-{"pid":27411,"tid":27428,"ts":326461731775,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461726129.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461730158.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902041.0,"time":326461688345.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461682000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461720452.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461698508.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461731592.0},"coordinates":[{"x":210.15811157226562,"y":852.6442260742188},{"x":572.7233276367188,"y":431.27667236328125}],"trace_id":12884902041.0}},"tts":1405127,"id":"0x300000099"},
-{"pid":27411,"tid":27428,"ts":326461731806,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1405157,"id":"0x300000099","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461731806,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1405157},
-{"pid":27411,"tid":27428,"ts":326461731837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1405188,"id":"0xaf88ce9efec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461734797,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1405371,"id":"0xaf88ca27f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461734797,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1405371},
-{"pid":27411,"tid":27428,"ts":326461734828,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1405402,"id":"0xaf88ca20f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461734858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1405432,"id":"0xaf88ca20f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461734858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1405432},
-{"pid":27411,"tid":27428,"ts":326461747158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1405554,"id":"0xaf88ca21f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461747188,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1405554},
-{"pid":27411,"tid":27428,"ts":326461747188,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1405554},
-{"pid":27411,"tid":27428,"ts":326461747219,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1405585,"id":"0xaf88ca22f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461747249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1405615,"id":"0xaf88ca22f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461747249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3937,"tdur":3235,"tts":1405615},
-{"pid":27411,"tid":27428,"ts":326461747249,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1405615},
-{"pid":27411,"tid":27428,"ts":326461747341,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":7269},"dur":3815,"tdur":3113,"tts":1405707},
-{"pid":27411,"tid":27428,"ts":326461747371,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3785,"tdur":3083,"tts":1405737},
-{"pid":27411,"tid":27428,"ts":326461749111,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1407508,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461749142,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":137},"dur":1983,"tdur":1281,"tts":1407508},
-{"pid":27411,"tid":27428,"ts":326461749172,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1770,"tdur":1068,"tts":1407538},
-{"pid":27411,"tid":27428,"ts":326461751034,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461735713.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461749142.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902042.0,"time":326461705620.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461698000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461734950.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461716820.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461750942.0},"coordinates":[{"x":207.6561279296875,"y":859.5316162109375},{"x":577.9690551757812,"y":426.312255859375}],"trace_id":12884902042.0}},"tts":1408698,"id":"0x30000009a"},
-{"pid":27411,"tid":27428,"ts":326461751034,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1408728,"id":"0x30000009a","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461751064,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1408728},
-{"pid":27411,"tid":27428,"ts":326461751095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1408759,"id":"0xaf88ce9ffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461751186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408881,"id":"0xaf88ca23f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461751217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1408881},
-{"pid":27411,"tid":27428,"ts":326461751217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1408911,"id":"0xaf88ca3cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461751278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408942,"id":"0xaf88ca3cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461751278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1408942},
-{"pid":27411,"tid":27428,"ts":326461762052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1409003,"id":"0xaf88ca3df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461762082,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1409034},
-{"pid":27411,"tid":27428,"ts":326461762082,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1409034},
-{"pid":27411,"tid":27428,"ts":326461762113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1409064,"id":"0xaf88ca3ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461762143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1409095,"id":"0xaf88ca3ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461762143,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6501,"tdur":3265,"tts":1409095},
-{"pid":27411,"tid":27428,"ts":326461762204,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9581},"dur":6440,"tdur":3204,"tts":1409156},
-{"pid":27411,"tid":27428,"ts":326461762204,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":6440,"tdur":3174,"tts":1409156},
-{"pid":27411,"tid":27428,"ts":326461764036,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1410987,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461764036,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":138},"dur":4578,"tdur":1343,"tts":1410987},
-{"pid":27411,"tid":27428,"ts":326461764097,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":4272,"tdur":1038,"tts":1411048},
-{"pid":27411,"tid":27428,"ts":326461768491,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461752072.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461764066.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902043.0,"time":326461721673.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461715000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461751034.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461731775.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461768369.0},"coordinates":[{"x":205.22080993652344,"y":866.2445068359375},{"x":583.058349609375,"y":421.441650390625}],"trace_id":12884902043.0}},"tts":1412238,"id":"0x30000009b"},
-{"pid":27411,"tid":27428,"ts":326461768522,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1412238,"id":"0x30000009b","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461768553,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1412269},
-{"pid":27411,"tid":27428,"ts":326461768553,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1412269,"id":"0xaf88ce98fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461768736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412421,"id":"0xaf88ca3ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461768736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1412421},
-{"pid":27411,"tid":27428,"ts":326461768766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1412452,"id":"0xaf88ca38f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461768797,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412482,"id":"0xaf88ca38f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461768797,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1412482},
-{"pid":27411,"tid":27428,"ts":326461778624,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412574,"id":"0xaf88ca39f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461778624,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1412574},
-{"pid":27411,"tid":27428,"ts":326461778624,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1412574},
-{"pid":27411,"tid":27428,"ts":326461778655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1412604,"id":"0xaf88ca3af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461778685,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412635,"id":"0xaf88ca3af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461778685,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3663,"tdur":3235,"tts":1412635},
-{"pid":27411,"tid":27428,"ts":326461778746,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11893},"dur":3602,"tdur":3174,"tts":1412696},
-{"pid":27411,"tid":27428,"ts":326461778777,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3571,"tdur":3144,"tts":1412726},
-{"pid":27411,"tid":27428,"ts":326461780547,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1414497,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461780578,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":139},"dur":1739,"tdur":1313,"tts":1414527},
-{"pid":27411,"tid":27428,"ts":326461780608,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1465,"tdur":1037,"tts":1414558},
-{"pid":27411,"tid":27428,"ts":326461782226,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461766141.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461780578.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902044.0,"time":326461738276.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461732000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461764188.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461746395.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461782073.0},"coordinates":[{"x":202.7590789794922,"y":873.2227783203125},{"x":587.0681762695312,"y":417.43182373046875}],"trace_id":12884902044.0}},"tts":1415748,"id":"0x30000009c"},
-{"pid":27411,"tid":27428,"ts":326461782256,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1415779,"id":"0x30000009c","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461782256,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1415779},
-{"pid":27411,"tid":27428,"ts":326461782287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1415809,"id":"0xaf88ce99fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461782378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1415901,"id":"0xaf88ca3bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461782378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1415901},
-{"pid":27411,"tid":27428,"ts":326461782409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1415931,"id":"0xaf88ca34f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461782439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1415962,"id":"0xaf88ca34f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461782470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1415992},
-{"pid":27411,"tid":27428,"ts":326461790436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416084,"id":"0xaf88ca35f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461790436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":1416084},
-{"pid":27411,"tid":27428,"ts":326461790436,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":1416084},
-{"pid":27411,"tid":27428,"ts":326461790497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1416145,"id":"0xaf88ca37f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461790527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416175,"id":"0xaf88ca36f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461790558,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1416206},
-{"pid":27411,"tid":27428,"ts":326461790588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416236,"id":"0xaf88ca37f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461790588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":214,"tts":1416236},
-{"pid":27411,"tid":27474,"ts":326461768644,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100137,"id":"0xc4c20b02"},
-{"pid":27411,"tid":27474,"ts":326461768644,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":100137},
-{"pid":27411,"tid":27474,"ts":326461778472,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":123,"tts":100289},
-{"pid":27411,"tid":27474,"ts":326461778502,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":100320},
-{"pid":27411,"tid":27474,"ts":326461778533,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100350,"id":"0xba468b02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461778533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":100350,"id":"0xaf88ca39f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461781096,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":100473},
-{"pid":27411,"tid":27474,"ts":326461781127,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":100503},
-{"pid":27411,"tid":27474,"ts":326461781127,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100503,"id":"0xccc5e806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461781157,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100534,"id":"0xc4c20d0a"},
-{"pid":27411,"tid":27474,"ts":326461781188,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":100564,"id":"0xaf88ca3bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461782348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":100686,"id":"0xaf88ce99fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461782348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":100686},
-{"pid":27411,"tid":27474,"ts":326461782378,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100717,"id":"0xc4c20e02"},
-{"pid":27411,"tid":27474,"ts":326461790283,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":214,"tdur":214,"tts":100808},
-{"pid":27411,"tid":27474,"ts":326461790314,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":100839},
-{"pid":27411,"tid":27474,"ts":326461790314,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100839,"id":"0xba468e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461790344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":100869,"id":"0xaf88ca35f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461790405,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":100930},
-{"pid":27411,"tid":27474,"ts":326461790405,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100930,"id":"0xba468f06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461790436,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":100961,"id":"0xc4c2100a"},
-{"pid":27411,"tid":27474,"ts":326461790466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":100991,"id":"0xaf88ca36f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461791840,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":101113},
-{"pid":27411,"tid":27474,"ts":326461791840,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":101144},
-{"pid":27411,"tid":27474,"ts":326461791870,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101144,"id":"0xba469102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461791870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":101144,"id":"0xaf88ca31f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461792999,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":101266},
-{"pid":27411,"tid":27474,"ts":326461793030,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":101327},
-{"pid":27411,"tid":27474,"ts":326461793060,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101327,"id":"0xccc5ec02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461793060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":101327,"id":"0xaf88ca33f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461793091,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":101358},
-{"pid":27411,"tid":27474,"ts":326461793121,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101388,"id":"0xccc5ed06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461793121,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101388,"id":"0xc4c2120a"},
-{"pid":27411,"tid":27474,"ts":326461793152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":101419,"id":"0xaf88caccf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461796234,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":101510,"id":"0xaf88ce9afec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461796265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":101541},
-{"pid":27411,"tid":27474,"ts":326461796265,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101541,"id":"0xc4c21302"},
-{"pid":27411,"tid":27474,"ts":326461808931,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":101632},
-{"pid":27411,"tid":27474,"ts":326461808961,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":101663},
-{"pid":27411,"tid":27474,"ts":326461808961,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101663,"id":"0xba469502","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461808992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":101693,"id":"0xaf88cacff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461809633,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":101785},
-{"pid":27411,"tid":27474,"ts":326461809663,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":101815},
-{"pid":27411,"tid":27474,"ts":326461809663,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101815,"id":"0xccc5f106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461809694,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101846,"id":"0xc4c2150a"},
-{"pid":27411,"tid":27474,"ts":326461809724,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":101876,"id":"0xaf88cac9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461813021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":101968,"id":"0xaf88ce9bfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461813021,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":101968},
-{"pid":27411,"tid":27474,"ts":326461813021,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":101968,"id":"0xc4c21602"},
-{"pid":27411,"tid":27474,"ts":326461823459,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":213,"tdur":213,"tts":102060},
-{"pid":27411,"tid":27474,"ts":326461823489,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":102090},
-{"pid":27411,"tid":27474,"ts":326461823520,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102121,"id":"0xba469802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461823520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":102121,"id":"0xaf88cacbf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461823581,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":102182},
-{"pid":27411,"tid":27474,"ts":326461823581,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102182,"id":"0xba469906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461823611,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102212,"id":"0xc4c2180a"},
-{"pid":27411,"tid":27474,"ts":326461823642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":102243,"id":"0xaf88cac4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461825351,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":92,"tts":102334},
-{"pid":27411,"tid":27474,"ts":326461825381,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":102365},
-{"pid":27411,"tid":27474,"ts":326461825381,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102365,"id":"0xba469b02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461825412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":102395,"id":"0xaf88cac7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461828708,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":336,"tdur":306,"tts":102517},
-{"pid":27411,"tid":27474,"ts":326461828739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":152,"tdur":122,"tts":102548},
-{"pid":27411,"tid":27474,"ts":326461828739,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102548,"id":"0xccc5f502","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461790649,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":11899},"dur":122,"tdur":122,"tts":1416297},
-{"pid":27411,"tid":27428,"ts":326461790649,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1416297},
-{"pid":27411,"tid":27428,"ts":326461790710,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":31,"tdur":31,"tts":1416358},
-{"pid":27411,"tid":27428,"ts":326461790771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1416419,"id":"0xaf88ca30f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461790802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416450,"id":"0xaf88ca30f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461790802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1416450},
-{"pid":27411,"tid":27428,"ts":326461791962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416572,"id":"0xaf88ca31f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461791962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1416572},
-{"pid":27411,"tid":27428,"ts":326461791962,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1416572},
-{"pid":27411,"tid":27428,"ts":326461791992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1416603,"id":"0xaf88ca32f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461792023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416633,"id":"0xaf88ca32f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461792023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4242,"tdur":3174,"tts":1416633},
-{"pid":27411,"tid":27428,"ts":326461792053,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14111},"dur":4181,"tdur":3113,"tts":1416664},
-{"pid":27411,"tid":27428,"ts":326461792084,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4150,"tdur":3083,"tts":1416694},
-{"pid":27411,"tid":27428,"ts":326461794129,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1418434,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461794129,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":140},"dur":2105,"tdur":1313,"tts":1418464},
-{"pid":27411,"tid":27428,"ts":326461794190,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1831,"tdur":1068,"tts":1418495},
-{"pid":27411,"tid":27428,"ts":326461796112,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461782622.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461794159.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902045.0,"time":326461755490.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461748000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461781524.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461759396.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461796021.0},"coordinates":[{"x":200.31674194335938,"y":879.822021484375},{"x":591.1387329101562,"y":414.0889892578125}],"trace_id":12884902045.0}},"tts":1419655,"id":"0x30000009d"},
-{"pid":27411,"tid":27428,"ts":326461796143,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1419685,"id":"0x30000009d","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461796143,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1419685},
-{"pid":27411,"tid":27428,"ts":326461796173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1419716,"id":"0xaf88ce9afec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461796265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419838,"id":"0xaf88ca33f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461796296,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":1419838},
-{"pid":27411,"tid":27428,"ts":326461796296,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1419838},
-{"pid":27411,"tid":27428,"ts":326461796326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1419868,"id":"0xaf88cacdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461796357,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419899,"id":"0xaf88caccf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461796357,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1419899},
-{"pid":27411,"tid":27428,"ts":326461796387,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419929,"id":"0xaf88cacdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461796387,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":183,"tts":1419960},
-{"pid":27411,"tid":27428,"ts":326461796418,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":61,"tts":1419990},
-{"pid":27411,"tid":27428,"ts":326461796540,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17110},"dur":61,"tdur":61,"tts":1420082},
-{"pid":27411,"tid":27428,"ts":326461796570,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":0,"tdur":0,"tts":1420112},
-{"pid":27411,"tid":27428,"ts":326461796601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1420143,"id":"0xaf88cacef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461796631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420173,"id":"0xaf88cacef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461796631,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1420173},
-{"pid":27411,"tid":27428,"ts":326461809084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420265,"id":"0xaf88cacff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461809084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1420265},
-{"pid":27411,"tid":27428,"ts":326461809084,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1420265},
-{"pid":27411,"tid":27428,"ts":326461809114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1420296,"id":"0xaf88cac8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461809145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420326,"id":"0xaf88cac8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461809145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3876,"tdur":3235,"tts":1420326},
-{"pid":27411,"tid":27428,"ts":326461809175,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":1420357},
-{"pid":27411,"tid":27428,"ts":326461809297,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16323},"dur":3693,"tdur":3052,"tts":1420479},
-{"pid":27411,"tid":27428,"ts":326461809328,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3662,"tdur":3022,"tts":1420509},
-{"pid":27411,"tid":27428,"ts":326461811312,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1422218,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461811312,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":141},"dur":1678,"tdur":1282,"tts":1422249},
-{"pid":27411,"tid":27428,"ts":326461811373,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1373,"tdur":1008,"tts":1422279},
-{"pid":27411,"tid":27428,"ts":326461812868,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461794129.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461811342.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902046.0,"time":326461771635.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461765000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461793366.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461774473.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461812746.0},"coordinates":[{"x":198.41265869140625,"y":885.8056640625},{"x":594.1746826171875,"y":411.36895751953125}],"trace_id":12884902046.0}},"tts":1423409,"id":"0x30000009e"},
-{"pid":27411,"tid":27428,"ts":326461812899,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1423439,"id":"0x30000009e","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461812899,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":30,"tts":1423470},
-{"pid":27411,"tid":27428,"ts":326461812929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1423470,"id":"0xaf88ce9bfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461813051,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423592,"id":"0xaf88cac9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461813051,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1423592},
-{"pid":27411,"tid":27428,"ts":326461813082,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1423622,"id":"0xaf88cacaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461813112,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423653,"id":"0xaf88cacaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461813112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1423653},
-{"pid":27411,"tid":27428,"ts":326461823611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423744,"id":"0xaf88cacbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461823611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":1423744},
-{"pid":27411,"tid":27428,"ts":326461823611,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":92,"tdur":30,"tts":1423775},
-{"pid":27411,"tid":27428,"ts":326461823672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1423775,"id":"0xaf88cac5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461823703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423836,"id":"0xaf88cac4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461823733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1423836},
-{"pid":27411,"tid":27428,"ts":326461823764,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423866,"id":"0xaf88cac5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461823764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":275,"tdur":245,"tts":1423866},
-{"pid":27411,"tid":27428,"ts":326461823825,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":16332},"dur":183,"tdur":184,"tts":1423927},
-{"pid":27411,"tid":27428,"ts":326461823825,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":123,"tts":1423927},
-{"pid":27411,"tid":27428,"ts":326461823947,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":31,"tdur":30,"tts":1424050},
-{"pid":27411,"tid":27428,"ts":326461824008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1424111,"id":"0xaf88cac6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461824039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1424141,"id":"0xaf88cac6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461824039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1424141},
-{"pid":27411,"tid":27428,"ts":326461825473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1424263,"id":"0xaf88cac7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461825473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1424263},
-{"pid":27411,"tid":27428,"ts":326461825473,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1424263},
-{"pid":27411,"tid":27428,"ts":326461825504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1424294,"id":"0xaf88cac0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461825534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1424324,"id":"0xaf88cac0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461825534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3876,"tdur":3052,"tts":1424324},
-{"pid":27411,"tid":27428,"ts":326461825565,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2012},"dur":3845,"tdur":3021,"tts":1424355},
-{"pid":27411,"tid":27428,"ts":326461825595,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3785,"tdur":2961,"tts":1424385},
-{"pid":27411,"tid":27428,"ts":326461827396,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1426064,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461827426,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":142},"dur":1954,"tdur":1252,"tts":1426094},
-{"pid":27411,"tid":27428,"ts":326461827457,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1709,"tdur":1007,"tts":1426125},
-{"pid":27411,"tid":27428,"ts":326461829258,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461810640.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461827426.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902047.0,"time":326461788299.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461782000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461809908.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461790924.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461829166.0},"coordinates":[{"x":196.41749572753906,"y":890.6650390625},{"x":596.58251953125,"y":408.91748046875}],"trace_id":12884902047.0}},"tts":1427224,"id":"0x30000009f"},
-{"pid":27411,"tid":27428,"ts":326461829288,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1427254,"id":"0x30000009f","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461829319,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1427285},
-{"pid":27411,"tid":27428,"ts":326461829319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1427285,"id":"0xaf88ce94fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461829441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427407,"id":"0xaf88cac1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461829441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1427407},
-{"pid":27411,"tid":27428,"ts":326461829441,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":1427437},
-{"pid":27411,"tid":27428,"ts":326461829471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1427437,"id":"0xaf88cac3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461829502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427468,"id":"0xaf88cac2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461829502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1427468},
-{"pid":27411,"tid":27428,"ts":326461829563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427529,"id":"0xaf88cac3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461829563,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":213,"tdur":214,"tts":1427529},
-{"pid":27411,"tid":27428,"ts":326461829593,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1427559},
-{"pid":27411,"tid":27428,"ts":326461829715,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17116},"dur":31,"tdur":31,"tts":1427681},
-{"pid":27411,"tid":27428,"ts":326461829715,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":31,"tdur":31,"tts":1427681},
-{"pid":27411,"tid":27428,"ts":326461829776,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1427743,"id":"0xaf88cadcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461829807,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427773,"id":"0xaf88cadcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461829807,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1427773},
-{"pid":27411,"tid":27428,"ts":326461843236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427865,"id":"0xaf88caddf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461843236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1427865},
-{"pid":27411,"tid":27428,"ts":326461843236,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1427865},
-{"pid":27411,"tid":27428,"ts":326461843266,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1427895,"id":"0xaf88cadef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461843297,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427926,"id":"0xaf88cadef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461843297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4486,"tdur":3296,"tts":1427926},
-{"pid":27411,"tid":27428,"ts":326461843327,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":92,"tts":1427956},
-{"pid":27411,"tid":27428,"ts":326461843450,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4074},"dur":4303,"tdur":3144,"tts":1428078},
-{"pid":27411,"tid":27428,"ts":326461843480,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4273,"tdur":3113,"tts":1428109},
-{"pid":27411,"tid":27428,"ts":326461845342,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1429696,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461845372,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":143},"dur":2350,"tdur":1465,"tts":1429726},
-{"pid":27411,"tid":27428,"ts":326461845403,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1648,"tdur":1068,"tts":1429757},
-{"pid":27411,"tid":27428,"ts":326461847631,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461830051.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461845372.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902048.0,"time":326461805177.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461798000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461829196.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461807893.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461847051.0},"coordinates":[{"x":193.96661376953125,"y":894.888916015625},{"x":599.0333862304688,"y":406.46661376953125}],"trace_id":12884902048.0}},"tts":1431100,"id":"0x3000000a0"},
-{"pid":27411,"tid":27428,"ts":326461847631,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1431100,"id":"0x3000000a0","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461847661,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1431130},
-{"pid":27411,"tid":27428,"ts":326461847692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1431161,"id":"0xaf88ce95fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461847783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431252,"id":"0xaf88cadff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461847814,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1431283},{"pid":27443,"tid":27477,"ts":326458378014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":288783,"id":"0xaf88abdff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458383843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458383},"tts":288844,"id":"0xaf88a847f182217a"},
-{"pid":27443,"tid":27477,"ts":326458383843,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":733,"tdur":0,"tts":288844},
-{"pid":27443,"tid":27477,"ts":326458384606,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":288875},
-{"pid":27443,"tid":27477,"ts":326458384606,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":288875,"id":"0xaf88a859f182217a"},
-{"pid":27443,"tid":27477,"ts":326458384637,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2655,"tdur":1648,"tts":288905},
-{"pid":27443,"tid":27477,"ts":326458384637,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2625,"tdur":1618,"tts":288905},
-{"pid":27443,"tid":27477,"ts":326458384637,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":0,"tts":288936},
-{"pid":27443,"tid":27477,"ts":326458384667,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2595,"tdur":1587,"tts":288936},
-{"pid":27443,"tid":27477,"ts":326458384667,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2595,"tdur":1587,"tts":288936},
-{"pid":27443,"tid":27477,"ts":326458384698,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":288966},
-{"pid":27443,"tid":27477,"ts":326458384698,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":288966},
-{"pid":27443,"tid":27477,"ts":326458384698,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":288997,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458384728,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":288997},
-{"pid":27443,"tid":27477,"ts":326458384789,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":855,"tdur":549,"tts":289058},
-{"pid":27443,"tid":27477,"ts":326458385705,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1557,"tdur":855,"tts":289668},
-{"pid":27443,"tid":27477,"ts":326458385735,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":69},"dur":977,"tdur":275,"tts":289699},
-{"pid":27443,"tid":27477,"ts":326458386712,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":69},"dur":61,"tdur":61,"tts":289974},
-{"pid":27443,"tid":27477,"ts":326458386773,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":69},"tts":290035},
-{"pid":27443,"tid":27477,"ts":326458386926,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":290187},
-{"pid":27443,"tid":27477,"ts":326458386926,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":336,"tts":290187},
-{"pid":27443,"tid":27477,"ts":326458386956,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":91,"tts":290218},
-{"pid":27443,"tid":27477,"ts":326458387078,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":290340},
-{"pid":27443,"tid":27477,"ts":326458387078,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":290340},
-{"pid":27443,"tid":27477,"ts":326458387109,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":290370},
-{"pid":27443,"tid":27477,"ts":326458387109,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":290370},
-{"pid":27443,"tid":27477,"ts":326458387109,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":290370,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458387139,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":290401},
-{"pid":27443,"tid":27477,"ts":326458387139,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":290401},
-{"pid":27443,"tid":27477,"ts":326458387200,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":290462,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458387231,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":290492,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458387231,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":290492,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458387292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290553,"id":"0xaf88a85af182217a"},
-{"pid":27443,"tid":27477,"ts":326458387292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":290553},
-{"pid":27443,"tid":27477,"ts":326458387292,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":290553},
-{"pid":27443,"tid":27477,"ts":326458387323,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":290584,"id":"0x300000023"},
-{"pid":27443,"tid":27477,"ts":326458387323,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":290584},
-{"pid":27443,"tid":27477,"ts":326458387353,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":290614,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458387384,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":290645,"id":"0xaf88abd8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458387414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":290676,"id":"0xaf88a885f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458381096,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2503,"tdur":2442,"tts":5960384},
-{"pid":27443,"tid":27459,"ts":326458381127,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2258,"tdur":2197,"tts":5960415},
-{"pid":27443,"tid":27459,"ts":326458381127,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":397,"tdur":396,"tts":5960415},
-{"pid":27443,"tid":27459,"ts":326458381524,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":335,"tdur":275,"tts":5960811},
-{"pid":27443,"tid":27459,"ts":326458381859,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":5961117},
-{"pid":27443,"tid":27459,"ts":326458381951,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":0,"tts":5961239},
-{"pid":27443,"tid":27459,"ts":326458382012,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1373,"tdur":1343,"tts":5961269},
-{"pid":27443,"tid":27459,"ts":326458383416,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":5962643},
-{"pid":27443,"tid":27459,"ts":326458383446,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":153,"tdur":122,"tts":5962704},
-{"pid":27443,"tid":27459,"ts":326458383630,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":69},"dur":610,"tdur":580,"tts":5962856},
-{"pid":27443,"tid":27459,"ts":326458383630,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":610,"tdur":580,"tts":5962856},
-{"pid":27443,"tid":27459,"ts":326458383965,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":31,"tdur":31,"tts":5963161},
-{"pid":27443,"tid":27459,"ts":326458383996,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":30,"tdur":30,"tts":5963192},
-{"pid":27443,"tid":27459,"ts":326458384026,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":31,"tdur":31,"tts":5963222},
-{"pid":27443,"tid":27459,"ts":326458384057,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":30,"tdur":31,"tts":5963253},
-{"pid":27443,"tid":27459,"ts":326458384087,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":31,"tdur":30,"tts":5963284},
-{"pid":27443,"tid":27459,"ts":326458384118,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":30,"tdur":31,"tts":5963314},
-{"pid":27443,"tid":27459,"ts":326458384148,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":31,"tdur":30,"tts":5963345},
-{"pid":27443,"tid":27459,"ts":326458384179,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":30,"tdur":0,"tts":5963375},
-{"pid":27443,"tid":27459,"ts":326458384209,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":69},"dur":31,"tdur":0,"tts":5963406},
-{"pid":27443,"tid":27459,"ts":326458384240,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5963436,"id":"0x300000022"},
-{"pid":27443,"tid":27459,"ts":326458384271,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1953,"tdur":61,"tts":5963467},
-{"pid":27443,"tid":27459,"ts":326458384271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5963497,"id":"0xaf88a859f182217a"},
-{"pid":27443,"tid":27459,"ts":326458386254,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5963589},
-{"pid":27443,"tid":27459,"ts":326458386315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5963650,"id":"0xaf88a88af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458386346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5963680},
-{"pid":27443,"tid":27459,"ts":326458386346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5963680,"id":"0xaf88a884f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458386376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5963711,"id":"0xaf88abdef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458386376,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":5963711},
-{"pid":27443,"tid":27459,"ts":326458386376,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":30,"tts":5963711},
-{"pid":27443,"tid":27459,"ts":326458386437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5963772,"id":"0xaf88a88bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458386437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5963772},
-{"pid":27443,"tid":27459,"ts":326458386468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5963802,"id":"0xaf88abdff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458386468,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":5963802},
-{"pid":27443,"tid":27459,"ts":326458386468,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":5963802},
-{"pid":27443,"tid":27459,"ts":326458386529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5963863,"id":"0xaf88a884f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458386529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5963863},
-{"pid":27443,"tid":27459,"ts":326458387445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5963955,"id":"0xaf88a885f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458387475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1068,"tdur":1069,"tts":5963985},
-{"pid":27443,"tid":27459,"ts":326458387475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5963985,"id":"0xaf88a886f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458387475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5964016,"id":"0xaf88abd8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458387506,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1037,"tdur":1038,"tts":5964016},
-{"pid":27443,"tid":27459,"ts":326458387567,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":976,"tdur":946,"tts":5964077},
-{"pid":27443,"tid":27459,"ts":326458387567,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5964077,"id":"0x300000023"},
-{"pid":27443,"tid":27459,"ts":326458387597,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":5964108},
-{"pid":27443,"tid":27459,"ts":326458387628,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":794,"tts":5964138},
-{"pid":27443,"tid":27459,"ts":326458387689,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5964199},
-{"pid":27443,"tid":27459,"ts":326458387719,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":5964230},
-{"pid":27443,"tid":27459,"ts":326458387750,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5964291},
-{"pid":27443,"tid":27459,"ts":326458387780,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5964321},
-{"pid":27443,"tid":27459,"ts":326458387841,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":5964352},
-{"pid":27443,"tid":27459,"ts":326458387994,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":5964504},
-{"pid":27443,"tid":27459,"ts":326458387994,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5964504},
-{"pid":27443,"tid":27459,"ts":326458388299,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":20,"frame":"0x78c60000"}},"tts":5964810,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458388330,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":5964840},
-{"pid":27443,"tid":27459,"ts":326458388330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5964840,"id":"0xaf88a852f182217a"},
-{"pid":27443,"tid":27459,"ts":326458388360,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5964871},
-{"pid":27443,"tid":27459,"ts":326458388452,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5964962},
-{"pid":27443,"tid":27459,"ts":326458388452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5964993,"id":"0xaf88adf9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458388574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5965084,"id":"0xaf88a886f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458388604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5965115},
-{"pid":27443,"tid":27459,"ts":326458389459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5965176,"id":"0xaf88a887f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458389459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10804,"tdur":9675,"tts":5965176},
-{"pid":27443,"tid":27459,"ts":326458389489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5965206,"id":"0xaf88a880f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458387445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290706,"id":"0xaf88a85bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458387475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":290737},
-{"pid":27443,"tid":27477,"ts":326458387506,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458367632.0,"frame_time_us":326458383631.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":290767},
-{"pid":27443,"tid":27477,"ts":326458387506,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458367632.0,"frame_time_us":326458383631.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":290767},
-{"pid":27443,"tid":27477,"ts":326458387567,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458400297},"dur":0,"tdur":0,"tts":290828},
-{"pid":27443,"tid":27477,"ts":326458387567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":290828,"id":"0xaf88a857f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290859,"id":"0xaf88a854f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":290859},
-{"pid":27443,"tid":27477,"ts":326458387628,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":290889},
-{"pid":27443,"tid":27477,"ts":326458387628,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":290889,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458387628,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":290889},
-{"pid":27443,"tid":27477,"ts":326458387658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":290920,"id":"0xaf88a850f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290950,"id":"0xaf88a855f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":290950},
-{"pid":27443,"tid":27477,"ts":326458387689,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":290950},
-{"pid":27443,"tid":27477,"ts":326458387689,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":290981,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458387719,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":290981},
-{"pid":27443,"tid":27477,"ts":326458387719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":290981,"id":"0xaf88a851f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":291011,"id":"0xaf88a856f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":291011},
-{"pid":27443,"tid":27477,"ts":326458387780,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":0,"tts":291042},
-{"pid":27443,"tid":27477,"ts":326458387780,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":291042,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458387780,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":291042},
-{"pid":27443,"tid":27477,"ts":326458387811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":291072,"id":"0xaf88a850f182217a"},
-{"pid":27443,"tid":27477,"ts":326458387811,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1343,"tdur":1130,"tts":291072},
-{"pid":27443,"tid":27477,"ts":326458387811,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1343,"tdur":1130,"tts":291072},
-{"pid":27443,"tid":27477,"ts":326458387841,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":291103},
-{"pid":27443,"tid":27477,"ts":326458387841,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":291103},
-{"pid":27443,"tid":27477,"ts":326458387841,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":291133},
-{"pid":27443,"tid":27477,"ts":326458387872,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":291133},
-{"pid":27443,"tid":27477,"ts":326458387933,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1008,"tts":291194},
-{"pid":27443,"tid":27477,"ts":326458387963,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1191,"tdur":977,"tts":291225},
-{"pid":27443,"tid":27477,"ts":326458387963,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1160,"tdur":946,"tts":291225},
-{"pid":27443,"tid":27477,"ts":326458387963,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":291225,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458388055,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291316},
-{"pid":27443,"tid":27477,"ts":326458388055,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":291316},
-{"pid":27443,"tid":27477,"ts":326458388086,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":291347},
-{"pid":27443,"tid":27477,"ts":326458388116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291377},
-{"pid":27443,"tid":27477,"ts":326458388116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":291377},
-{"pid":27443,"tid":27477,"ts":326458388147,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291408},
-{"pid":27443,"tid":27477,"ts":326458388177,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291439},
-{"pid":27443,"tid":27477,"ts":326458388177,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":291439},
-{"pid":27443,"tid":27477,"ts":326458388208,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291469},
-{"pid":27443,"tid":27477,"ts":326458388208,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":291469},
-{"pid":27443,"tid":27477,"ts":326458388238,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":291500},
-{"pid":27443,"tid":27477,"ts":326458388269,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291530},
-{"pid":27443,"tid":27477,"ts":326458388269,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":291530},
-{"pid":27443,"tid":27477,"ts":326458388299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":291561},
-{"pid":27443,"tid":27477,"ts":326458388330,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291591},
-{"pid":27443,"tid":27477,"ts":326458388330,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":291591},
-{"pid":27443,"tid":27477,"ts":326458388360,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":291622},
-{"pid":27443,"tid":27477,"ts":326458388391,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291652},
-{"pid":27443,"tid":27477,"ts":326458388391,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":291652},
-{"pid":27443,"tid":27477,"ts":326458388421,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291683},
-{"pid":27443,"tid":27477,"ts":326458388452,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291713},
-{"pid":27443,"tid":27477,"ts":326458388452,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291713},
-{"pid":27443,"tid":27477,"ts":326458388482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291744},
-{"pid":27443,"tid":27477,"ts":326458388482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":291774},
-{"pid":27443,"tid":27477,"ts":326458388513,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":291774},
-{"pid":27443,"tid":27477,"ts":326458388543,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291805},
-{"pid":27443,"tid":27477,"ts":326458388849,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":291927},
-{"pid":27443,"tid":27477,"ts":326458388879,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":291927},
-{"pid":27443,"tid":27477,"ts":326458388910,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291957},
-{"pid":27443,"tid":27477,"ts":326458388940,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":291988},
-{"pid":27443,"tid":27477,"ts":326458388940,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":291988},
-{"pid":27443,"tid":27477,"ts":326458388971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":292018},
-{"pid":27443,"tid":27477,"ts":326458389001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":292049},
-{"pid":27443,"tid":27477,"ts":326458389032,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":292079},
-{"pid":27443,"tid":27477,"ts":326458389062,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":292110},
-{"pid":27443,"tid":27477,"ts":326458389093,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":292141},
-{"pid":27443,"tid":27477,"ts":326458389093,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":0,"tts":292141},
-{"pid":27443,"tid":27477,"ts":326458389123,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":292171},
-{"pid":27443,"tid":27477,"ts":326458389123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292171,"id":"0xaf88a853f182217a"},
-{"pid":27443,"tid":27477,"ts":326458389154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":292202,"id":"0xaf88a851f182217a"},
-{"pid":27443,"tid":27477,"ts":326458389184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":292232},
-{"pid":27443,"tid":27477,"ts":326458389184,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":292232},
-{"pid":27443,"tid":27477,"ts":326458389184,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":292232},
-{"pid":27443,"tid":27477,"ts":326458389215,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":292263},
-{"pid":27443,"tid":27477,"ts":326458389215,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":292263},
-{"pid":27443,"tid":27477,"ts":326458389215,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":292263},
-{"pid":27443,"tid":27477,"ts":326458389276,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":292324},
-{"pid":27443,"tid":27477,"ts":326458389276,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":292324},
-{"pid":27443,"tid":27477,"ts":326458389306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":292354,"id":"0xaf88a852f182217a"},
-{"pid":27443,"tid":27477,"ts":326458389306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":153,"tts":292354},
-{"pid":27443,"tid":27477,"ts":326458389337,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":292385},
-{"pid":27443,"tid":27477,"ts":326458389337,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":70},"tts":292385},
-{"pid":27443,"tid":27477,"ts":326458389398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":292446,"id":"0xaf88abd9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458389398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292446,"id":"0xaf88a887f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458389428,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":292476},
-{"pid":27443,"tid":27477,"ts":326458389459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":292507,"id":"0xaf88a853f182217a"},
-{"pid":27443,"tid":27477,"ts":326458389459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2960,"tdur":1923,"tts":292507},
-{"pid":27443,"tid":27477,"ts":326458389489,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2930,"tdur":1862,"tts":292537},
-{"pid":27443,"tid":27477,"ts":326458389489,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":292537},
-{"pid":27443,"tid":27477,"ts":326458389520,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2564,"tdur":1831,"tts":292568},
-{"pid":27443,"tid":27477,"ts":326458389520,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":69},"dur":1160,"tdur":854,"tts":292568},
-{"pid":27443,"tid":27477,"ts":326458389551,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":69},"dur":244,"tdur":214,"tts":292598},
-{"pid":27443,"tid":27477,"ts":326458389795,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":69},"dur":30,"tdur":31,"tts":292842},
-{"pid":27443,"tid":27477,"ts":326458389825,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":69},"tts":292873},
-{"pid":27443,"tid":27477,"ts":326458389947,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":292995},
-{"pid":27443,"tid":27477,"ts":326458389947,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":428,"tdur":122,"tts":292995},
-{"pid":27443,"tid":27477,"ts":326458389978,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":293026},
-{"pid":27443,"tid":27477,"ts":326458389978,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":293026},
-{"pid":27443,"tid":27477,"ts":326458389978,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":293026,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458389978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":61,"tts":293026},
-{"pid":27443,"tid":27477,"ts":326458390405,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":293148},
-{"pid":27443,"tid":27477,"ts":326458390649,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":293422},
-{"pid":27443,"tid":27477,"ts":326458390680,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1037,"tdur":611,"tts":293422},
-{"pid":27443,"tid":27477,"ts":326458390710,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":293453},
-{"pid":27443,"tid":27477,"ts":326458390710,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":946,"tdur":519,"tts":293453},
-{"pid":27443,"tid":27477,"ts":326458390771,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":293514},
-{"pid":27443,"tid":27477,"ts":326458390832,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":30,"tts":293575},
-{"pid":27443,"tid":27477,"ts":326458390893,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":293636},
-{"pid":27443,"tid":27477,"ts":326458390954,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":31,"tts":293697},
-{"pid":27443,"tid":27477,"ts":326458390985,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":31,"tts":293758},
-{"pid":27443,"tid":27477,"ts":326458391046,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12175},"dur":61,"tdur":61,"tts":293789},
-{"pid":27443,"tid":27477,"ts":326458391077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293819,"id":"0xaf88adfaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458391138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293880,"id":"0xaf88adfbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458391717,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":294033,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458391748,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":294063,"id":"0x300000022"},
-{"pid":27443,"tid":27477,"ts":326458391779,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":294094},
-{"pid":27443,"tid":27477,"ts":326458391931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":294246,"id":"0xaf88adf4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458392023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":294338,"id":"0xaf88abdaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458392053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":294368,"id":"0xaf88a881f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458394739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":294552,"id":"0xaf88a86cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458394770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":294552},
-{"pid":27443,"tid":27477,"ts":326458394800,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":294582},
-{"pid":27443,"tid":27477,"ts":326458394800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":294582,"id":"0xaf88abdbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458399256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":294765,"id":"0xaf88a86df182217a"},
-{"pid":27443,"tid":27459,"ts":326458389489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5965206,"id":"0xaf88abd9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458389520,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10713,"tdur":9583,"tts":5965237},
-{"pid":27443,"tid":27459,"ts":326458389520,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":70},"tts":5965237},
-{"pid":27443,"tid":27459,"ts":326458389551,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5965267},
-{"pid":27443,"tid":27459,"ts":326458389581,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6470,"tdur":6287,"tts":5965298},
-{"pid":27443,"tid":27459,"ts":326458389612,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5965328},
-{"pid":27443,"tid":27459,"ts":326458389642,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":20,"frame":"0x78c60000"}},"dur":6379,"tdur":6196,"tts":5965359},
-{"pid":27443,"tid":27459,"ts":326458389703,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6318,"tdur":6135,"tts":5965420},
-{"pid":27443,"tid":27459,"ts":326458389734,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5965450},
-{"pid":27443,"tid":27459,"ts":326458389917,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5965634},
-{"pid":27443,"tid":27459,"ts":326458389947,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":5965664},
-{"pid":27443,"tid":27459,"ts":326458395990,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5971524},
-{"pid":27443,"tid":27459,"ts":326458396051,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2534,"tdur":2533,"tts":5971585},
-{"pid":27443,"tid":27459,"ts":326458396082,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5971616},
-{"pid":27443,"tid":27459,"ts":326458396112,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5971646},
-{"pid":27443,"tid":27459,"ts":326458396112,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5971646},
-{"pid":27443,"tid":27459,"ts":326458396540,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5972104},
-{"pid":27443,"tid":27459,"ts":326458396570,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5972134},
-{"pid":27443,"tid":27459,"ts":326458396601,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1984,"tdur":1953,"tts":5972165},
-{"pid":27443,"tid":27459,"ts":326458396631,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1801,"tdur":1801,"tts":5972165},
-{"pid":27443,"tid":27459,"ts":326458396631,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":5972165},
-{"pid":27443,"tid":27459,"ts":326458396967,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":5972501},
-{"pid":27443,"tid":27459,"ts":326458397181,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":61,"tts":5972714},
-{"pid":27443,"tid":27459,"ts":326458397272,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":5972806},
-{"pid":27443,"tid":27459,"ts":326458397272,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1129,"tts":5972806},
-{"pid":27443,"tid":27459,"ts":326458398432,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":5973996},
-{"pid":27443,"tid":27459,"ts":326458398493,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":5974027},
-{"pid":27443,"tid":27459,"ts":326458398585,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":70},"dur":457,"tdur":458,"tts":5974118},
-{"pid":27443,"tid":27459,"ts":326458398615,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":5974149},
-{"pid":27443,"tid":27459,"ts":326458398890,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":0,"tdur":0,"tts":5974423},
-{"pid":27443,"tid":27459,"ts":326458398920,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":0,"tdur":0,"tts":5974454},
-{"pid":27443,"tid":27459,"ts":326458398920,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":31,"tdur":30,"tts":5974454},
-{"pid":27443,"tid":27459,"ts":326458398951,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":0,"tdur":0,"tts":5974484},
-{"pid":27443,"tid":27459,"ts":326458398951,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":30,"tdur":31,"tts":5974484},
-{"pid":27443,"tid":27459,"ts":326458398981,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":0,"tdur":0,"tts":5974515},
-{"pid":27443,"tid":27459,"ts":326458398981,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":31,"tdur":0,"tts":5974546},
-{"pid":27443,"tid":27459,"ts":326458399012,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":30,"tdur":0,"tts":5974546},
-{"pid":27443,"tid":27459,"ts":326458399042,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":70},"dur":0,"tdur":0,"tts":5974576},
-{"pid":27443,"tid":27459,"ts":326458399073,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5974607,"id":"0x300000023"},
-{"pid":27443,"tid":27459,"ts":326458399073,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":885,"tdur":91,"tts":5974607},
-{"pid":27443,"tid":27459,"ts":326458399073,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5974637,"id":"0xaf88a86df182217a"},
-{"pid":27443,"tid":27459,"ts":326458400202,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5974820},
-{"pid":27443,"tid":27459,"ts":326458400294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5974881,"id":"0xaf88a880f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458400294,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5974881},
-{"pid":27443,"tid":27459,"ts":326458400324,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5974912,"id":"0xaf88a882f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458400355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5974942,"id":"0xaf88abdaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458400355,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":5974942},
-{"pid":27443,"tid":27459,"ts":326458400355,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5974942},
-{"pid":27443,"tid":27459,"ts":326458400416,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5975003,"id":"0xaf88a881f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458400416,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5975003},
-{"pid":27443,"tid":27459,"ts":326458400416,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5975034,"id":"0xaf88abdbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458400446,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":5975064},
-{"pid":27443,"tid":27459,"ts":326458400477,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5975064},
-{"pid":27443,"tid":27459,"ts":326458400538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5975125,"id":"0xaf88a882f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458400538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":5975125},
-{"pid":27443,"tid":27459,"ts":326458404414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5975217,"id":"0xaf88a883f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458404414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3052,"tdur":1343,"tts":5975217},
-{"pid":27443,"tid":27459,"ts":326458404444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5975247,"id":"0xaf88a89cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458404475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5975278,"id":"0xaf88abd4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458404475,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2991,"tdur":1282,"tts":5975278},
-{"pid":27443,"tid":27459,"ts":326458404536,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2899,"tdur":1190,"tts":5975339},
-{"pid":27443,"tid":27459,"ts":326458404536,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5975339,"id":"0x300000024"},
-{"pid":27443,"tid":27459,"ts":326458404567,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2777,"tdur":1068,"tts":5975370},
-{"pid":27443,"tid":27459,"ts":326458404597,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2747,"tdur":1038,"tts":5975400},
-{"pid":27443,"tid":27466,"ts":326458391565,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":233175},
-{"pid":27443,"tid":27466,"ts":326458391595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233206,"id":"0xc4c0ff0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458392023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":233267,"id":"0xaf88adf4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458392053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":233297},
-{"pid":27443,"tid":27466,"ts":326458392053,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233297,"id":"0xccc3af02"},
-{"pid":27443,"tid":27466,"ts":326458394617,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":233389},
-{"pid":27443,"tid":27466,"ts":326458394647,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":233419},
-{"pid":27443,"tid":27466,"ts":326458394678,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233450,"id":"0xba443f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458394708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":233480,"id":"0xaf88a86cf182217a"},
-{"pid":27443,"tid":27466,"ts":326458404048,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":233572},
-{"pid":27443,"tid":27466,"ts":326458404078,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":233602},
-{"pid":27443,"tid":27466,"ts":326458404109,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233602,"id":"0xba444102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458404139,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":233633},
-{"pid":27443,"tid":27466,"ts":326458404170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":233663,"id":"0xaf88a86bf182217a"},
-{"pid":27443,"tid":27466,"ts":326458404536,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":233724},
-{"pid":27443,"tid":27466,"ts":326458404567,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":233755},
-{"pid":27443,"tid":27466,"ts":326458404567,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233755,"id":"0xba444202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458404597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":233786,"id":"0xaf88a864f182217a"},
-{"pid":27443,"tid":27466,"ts":326458405909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":233877,"id":"0xaf88adf5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458405940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":214,"tdur":61,"tts":233908},
-{"pid":27443,"tid":27466,"ts":326458405940,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":233908,"id":"0xccc3b106"},
-{"pid":27443,"tid":27466,"ts":326458406276,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":233999},
-{"pid":27443,"tid":27466,"ts":326458406306,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":234030},
-{"pid":27443,"tid":27466,"ts":326458406337,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234060,"id":"0xc4c1020a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458406672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":234152,"id":"0xaf88adf6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458406672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":234152},
-{"pid":27443,"tid":27466,"ts":326458406703,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234182,"id":"0xccc3b202"},
-{"pid":27443,"tid":27466,"ts":326458407466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":234304,"id":"0xaf88adf7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458407466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":244,"tdur":31,"tts":234304},
-{"pid":27443,"tid":27466,"ts":326458407466,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234304,"id":"0xccc3b302"},
-{"pid":27443,"tid":27466,"ts":326458408504,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":234396},
-{"pid":27443,"tid":27466,"ts":326458408534,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":234426},
-{"pid":27443,"tid":27466,"ts":326458408534,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234426,"id":"0xba444302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458408565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":234457,"id":"0xaf88a867f182217a"},
-{"pid":27443,"tid":27466,"ts":326458418423,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":234549},
-{"pid":27443,"tid":27466,"ts":326458418453,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":234579},
-{"pid":27443,"tid":27466,"ts":326458418453,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234579,"id":"0xba444502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458418484,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":234610},
-{"pid":27443,"tid":27466,"ts":326458418514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":234640,"id":"0xaf88a860f182217a"},
-{"pid":27443,"tid":27466,"ts":326458419796,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":234732},
-{"pid":27443,"tid":27466,"ts":326458419827,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":234762},
-{"pid":27443,"tid":27466,"ts":326458419827,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234762,"id":"0xba444602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458419857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":234793,"id":"0xaf88a861f182217a"},
-{"pid":27443,"tid":27466,"ts":326458420712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":234915,"id":"0xaf88adf0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458420712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":234915},
-{"pid":27443,"tid":27466,"ts":326458420712,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":234945,"id":"0xccc3b502"},
-{"pid":27443,"tid":27466,"ts":326458435026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235037,"id":"0xaf88adf1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458435056,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":235067},
-{"pid":27443,"tid":27466,"ts":326458435056,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235067,"id":"0xccc3b606"},
-{"pid":27443,"tid":27466,"ts":326458435362,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":235159},
-{"pid":27443,"tid":27466,"ts":326458435392,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":62,"tts":235189},
-{"pid":27443,"tid":27466,"ts":326458435392,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235189,"id":"0xba444702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458435423,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":235220},
-{"pid":27443,"tid":27466,"ts":326458435453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":235251,"id":"0xaf88a87af182217a"},
-{"pid":27443,"tid":27466,"ts":326458435484,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":235281},
-{"pid":27443,"tid":27466,"ts":326458435484,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":235281},
-{"pid":27443,"tid":27466,"ts":326458435514,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235312,"id":"0xc4c1050a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458435819,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":235403},
-{"pid":27443,"tid":27466,"ts":326458435850,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":235434},
-{"pid":27443,"tid":27466,"ts":326458435850,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235434,"id":"0xba444802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458435880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":235464,"id":"0xaf88a87bf182217a"},
-{"pid":27443,"tid":27466,"ts":326458435911,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235495,"id":"0xaf88adf2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458435911,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":235525},
-{"pid":27443,"tid":27466,"ts":326458435941,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235525,"id":"0xccc3b702"},
-{"pid":27443,"tid":27477,"ts":326458399256,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1740,"tdur":1679,"tts":294765},
-{"pid":27443,"tid":27477,"ts":326458399287,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1678,"tdur":1648,"tts":294796},
-{"pid":27443,"tid":27477,"ts":326458399287,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":294796},
-{"pid":27443,"tid":27477,"ts":326458399317,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1648,"tdur":1618,"tts":294826},
-{"pid":27443,"tid":27477,"ts":326458399317,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1648,"tdur":1618,"tts":294826},
-{"pid":27443,"tid":27477,"ts":326458399317,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":294826},
-{"pid":27443,"tid":27477,"ts":326458399348,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":294857},
-{"pid":27443,"tid":27477,"ts":326458399348,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":294857,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458399348,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":294857},
-{"pid":27443,"tid":27477,"ts":326458399409,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":488,"tdur":488,"tts":294918},
-{"pid":27443,"tid":27477,"ts":326458399958,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":977,"tdur":946,"tts":295467},
-{"pid":27443,"tid":27477,"ts":326458399958,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":70},"dur":336,"tdur":305,"tts":295467},
-{"pid":27443,"tid":27477,"ts":326458400294,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":70},"dur":61,"tdur":61,"tts":295772},
-{"pid":27443,"tid":27477,"ts":326458400355,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":70},"tts":295833},
-{"pid":27443,"tid":27477,"ts":326458400507,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":295986},
-{"pid":27443,"tid":27477,"ts":326458400538,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":396,"tts":296017},
-{"pid":27443,"tid":27477,"ts":326458400538,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":296017},
-{"pid":27443,"tid":27477,"ts":326458400690,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":296169},
-{"pid":27443,"tid":27477,"ts":326458400721,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":296200},
-{"pid":27443,"tid":27477,"ts":326458400721,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":296200},
-{"pid":27443,"tid":27477,"ts":326458400752,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":296230},
-{"pid":27443,"tid":27477,"ts":326458400752,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":296230,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458400782,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":296261},
-{"pid":27443,"tid":27477,"ts":326458400813,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":296291},
-{"pid":27443,"tid":27477,"ts":326458400874,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":296352,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458400904,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":296383,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458400904,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":296413,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458400996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458400},"tts":296474,"id":"0xaf88a857f182217a"},
-{"pid":27443,"tid":27477,"ts":326458400996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":0,"tts":296505},
-{"pid":27443,"tid":27477,"ts":326458401026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":296505,"id":"0xaf88a86ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458401057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":296535},
-{"pid":27443,"tid":27477,"ts":326458401057,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":296535},
-{"pid":27443,"tid":27477,"ts":326458401087,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":296566,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458401087,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":296566},
-{"pid":27443,"tid":27477,"ts":326458401118,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296596,"id":"0xaf88a869f182217a"},
-{"pid":27443,"tid":27477,"ts":326458401148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":296627,"id":"0xaf88a86ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458401148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":296627},
-{"pid":27443,"tid":27477,"ts":326458401148,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":296627},
-{"pid":27443,"tid":27477,"ts":326458401179,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":296658,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458401179,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":296658},
-{"pid":27443,"tid":27477,"ts":326458401179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296658,"id":"0xaf88a86af182217a"},
-{"pid":27443,"tid":27477,"ts":326458401209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":296688,"id":"0xaf88a868f182217a"},
-{"pid":27443,"tid":27477,"ts":326458401209,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":296688},
-{"pid":27443,"tid":27477,"ts":326458401240,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":296719},
-{"pid":27443,"tid":27477,"ts":326458401240,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":296719,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458401240,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":296719},
-{"pid":27443,"tid":27477,"ts":326458401270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":296749,"id":"0xaf88a869f182217a"},
-{"pid":27443,"tid":27477,"ts":326458401270,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2625,"tdur":1374,"tts":296749},
-{"pid":27443,"tid":27477,"ts":326458401270,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2625,"tdur":1374,"tts":296749},
-{"pid":27443,"tid":27477,"ts":326458401301,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":296780},
-{"pid":27443,"tid":27477,"ts":326458401301,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":296780},
-{"pid":27443,"tid":27477,"ts":326458401331,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":296810},
-{"pid":27443,"tid":27477,"ts":326458401331,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":296810},
-{"pid":27443,"tid":27477,"ts":326458401423,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2472,"tdur":1221,"tts":296902},
-{"pid":27443,"tid":27477,"ts":326458401423,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2472,"tdur":1221,"tts":296902},
-{"pid":27443,"tid":27477,"ts":326458401453,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2442,"tdur":1191,"tts":296932},
-{"pid":27443,"tid":27477,"ts":326458401453,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":296932,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458401545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297024},
-{"pid":27443,"tid":27477,"ts":326458401576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":297054},
-{"pid":27443,"tid":27477,"ts":326458401606,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297085},
-{"pid":27443,"tid":27477,"ts":326458401637,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":297115},
-{"pid":27443,"tid":27477,"ts":326458401667,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297146},
-{"pid":27443,"tid":27477,"ts":326458401698,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":297176},
-{"pid":27443,"tid":27477,"ts":326458401728,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297207},
-{"pid":27443,"tid":27477,"ts":326458401759,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":297237},
-{"pid":27443,"tid":27477,"ts":326458401789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297268},
-{"pid":27443,"tid":27477,"ts":326458401820,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":297298},
-{"pid":27443,"tid":27477,"ts":326458401850,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297329},
-{"pid":27443,"tid":27477,"ts":326458401881,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":297359},
-{"pid":27443,"tid":27477,"ts":326458401942,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297421},
-{"pid":27443,"tid":27477,"ts":326458401942,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":297451},
-{"pid":27443,"tid":27477,"ts":326458401972,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":297451},
-{"pid":27443,"tid":27477,"ts":326458402003,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":297482},
-{"pid":27443,"tid":27477,"ts":326458402033,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297512},
-{"pid":27443,"tid":27477,"ts":326458402033,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":297543},
-{"pid":27443,"tid":27477,"ts":326458402094,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":297573},
-{"pid":27443,"tid":27477,"ts":326458402125,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297604},
-{"pid":27443,"tid":27477,"ts":326458402155,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297634},
-{"pid":27443,"tid":27477,"ts":326458402155,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":297634},
-{"pid":27443,"tid":27477,"ts":326458402186,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297665},
-{"pid":27443,"tid":27477,"ts":326458402216,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297695},
-{"pid":27443,"tid":27477,"ts":326458402247,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297726},
-{"pid":27443,"tid":27477,"ts":326458402247,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":297756},
-{"pid":27443,"tid":27477,"ts":326458402339,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":702,"tdur":61,"tts":297817},
-{"pid":27443,"tid":27477,"ts":326458402339,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":671,"tdur":31,"tts":297817},
-{"pid":27443,"tid":27477,"ts":326458403041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297878},
-{"pid":27443,"tid":27477,"ts":326458403071,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297909},
-{"pid":27443,"tid":27477,"ts":326458403071,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":297939},
-{"pid":27443,"tid":27477,"ts":326458403102,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297939},
-{"pid":27443,"tid":27477,"ts":326458403132,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":297970},
-{"pid":27443,"tid":27477,"ts":326458403132,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":297970},
-{"pid":27443,"tid":27477,"ts":326458403712,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":298031},
-{"pid":27443,"tid":27477,"ts":326458403743,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":298061},
-{"pid":27443,"tid":27477,"ts":326458403743,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":298061},
-{"pid":27443,"tid":27477,"ts":326458403773,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":92,"tdur":0,"tts":298092},
-{"pid":27443,"tid":27477,"ts":326458403926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":298153,"id":"0xaf88a86af182217a"},
-{"pid":27443,"tid":27477,"ts":326458403926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":274,"tdur":153,"tts":298153},
-{"pid":27443,"tid":27477,"ts":326458403926,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":274,"tdur":122,"tts":298184},
-{"pid":27443,"tid":27477,"ts":326458403956,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":298184},
-{"pid":27443,"tid":27477,"ts":326458403956,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":298184},
-{"pid":27443,"tid":27477,"ts":326458403956,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":31,"tts":298214},
-{"pid":27443,"tid":27477,"ts":326458403987,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":298214},
-{"pid":27443,"tid":27477,"ts":326458404048,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":152,"tdur":31,"tts":298275},
-{"pid":27443,"tid":27477,"ts":326458404048,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":122,"tdur":0,"tts":298275},
-{"pid":27443,"tid":27477,"ts":326458404200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":298306,"id":"0xaf88a86bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458404200,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":298336},
-{"pid":27443,"tid":27477,"ts":326458404231,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":298336},
-{"pid":27443,"tid":27477,"ts":326458404231,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":298336,"id":"0x300000024"},
-{"pid":27443,"tid":27477,"ts":326458404261,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":298367},
-{"pid":27443,"tid":27477,"ts":326458404261,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":298397,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458404292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":298397,"id":"0xaf88abd4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458404322,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298428,"id":"0xaf88a883f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458404628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":298519,"id":"0xaf88a864f182217a"},
-{"pid":27443,"tid":27477,"ts":326458404658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":298550},
-{"pid":27443,"tid":27477,"ts":326458404689,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458384308.0,"frame_time_us":326458400307.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":298580},
-{"pid":27443,"tid":27477,"ts":326458404689,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458384308.0,"frame_time_us":326458400307.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":298580},
-{"pid":27443,"tid":27477,"ts":326458404750,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":298641},
-{"pid":27443,"tid":27477,"ts":326458404750,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":298641},
-{"pid":27443,"tid":27477,"ts":326458404780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298672,"id":"0xaf88a865f182217a"},
-{"pid":27443,"tid":27477,"ts":326458404811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":298702,"id":"0xaf88a865f182217a"},
-{"pid":27443,"tid":27477,"ts":326458404811,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1923,"tdur":1465,"tts":298702},
-{"pid":27443,"tid":27477,"ts":326458404811,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1923,"tdur":1465,"tts":298702},
-{"pid":27443,"tid":27477,"ts":326458404841,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1893,"tdur":1434,"tts":298733},
-{"pid":27443,"tid":27477,"ts":326458404841,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":70},"dur":855,"tdur":854,"tts":298733},
-{"pid":27443,"tid":27477,"ts":326458404872,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":70},"dur":274,"tdur":275,"tts":298763},
-{"pid":27443,"tid":27477,"ts":326458405146,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":70},"dur":31,"tdur":31,"tts":299038},
-{"pid":27443,"tid":27477,"ts":326458405177,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":70},"tts":299069},
-{"pid":27443,"tid":27477,"ts":326458405330,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":299221},
-{"pid":27443,"tid":27477,"ts":326458405330,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":299221},
-{"pid":27443,"tid":27477,"ts":326458405360,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":299252},
-{"pid":27443,"tid":27477,"ts":326458405360,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":299252},
-{"pid":27443,"tid":27477,"ts":326458405391,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":299282,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458405421,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":299313},
-{"pid":27443,"tid":27477,"ts":326458405696,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":299587},
-{"pid":27443,"tid":27477,"ts":326458405696,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":732,"tdur":275,"tts":299587},
-{"pid":27443,"tid":27477,"ts":326458405726,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":299618},
-{"pid":27443,"tid":27477,"ts":326458405726,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":183,"tts":299618},
-{"pid":27443,"tid":27477,"ts":326458405818,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12175},"dur":0,"tdur":0,"tts":299710},
-{"pid":27443,"tid":27477,"ts":326458405848,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299740,"id":"0xaf88adf5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458406398,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":299862,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458406459,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":299893,"id":"0x300000023"},
-{"pid":27443,"tid":27477,"ts":326458406459,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":213,"tts":299893},
-{"pid":27443,"tid":27477,"ts":326458406611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300045,"id":"0xaf88adf6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458406672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":300106,"id":"0xaf88abd5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458406703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300137,"id":"0xaf88a89df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458407283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300228,"id":"0xaf88a866f182217a"},
-{"pid":27443,"tid":27477,"ts":326458407313,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":300259},
-{"pid":27443,"tid":27477,"ts":326458407313,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":300259},
-{"pid":27443,"tid":27477,"ts":326458408626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300320,"id":"0xaf88a867f182217a"},
-{"pid":27443,"tid":27477,"ts":326458408626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":300320},
-{"pid":27443,"tid":27477,"ts":326458408656,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":62,"tts":300350},
-{"pid":27443,"tid":27477,"ts":326458408687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":300381,"id":"0xaf88abd7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458408687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300381,"id":"0xaf88a898f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458418606,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300473,"id":"0xaf88a860f182217a"},
-{"pid":27443,"tid":27477,"ts":326458418606,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":300473},
-{"pid":27443,"tid":27477,"ts":326458418636,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":123,"tdur":122,"tts":300503},
-{"pid":27443,"tid":27477,"ts":326458418636,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":300503,"id":"0x300000025"},
-{"pid":27443,"tid":27477,"ts":326458418667,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":300534},
-{"pid":27443,"tid":27477,"ts":326458418697,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":300564,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458418728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":300595,"id":"0xaf88abd0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458418728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300595,"id":"0xaf88a89af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458419949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300686,"id":"0xaf88a861f182217a"},
-{"pid":27443,"tid":27477,"ts":326458419949,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":300686},
-{"pid":27443,"tid":27477,"ts":326458419979,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458400984.0,"frame_time_us":326458416983.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":274,"tts":300717},
-{"pid":27443,"tid":27477,"ts":326458419979,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":300717},
-{"pid":27443,"tid":27477,"ts":326458420040,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458400984.0,"frame_time_us":326458416983.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":214,"tdur":213,"tts":300778},
-{"pid":27443,"tid":27477,"ts":326458420071,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":71},"tts":300808},
-{"pid":27443,"tid":27477,"ts":326458420162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":300900,"id":"0xaf88abd1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458420193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300930,"id":"0xaf88a894f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458420193,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":300930},
-{"pid":27443,"tid":27477,"ts":326458420224,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458433649},"dur":30,"tdur":30,"tts":300961},
-{"pid":27443,"tid":27477,"ts":326458420224,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300961,"id":"0xaf88a862f182217a"},
-{"pid":27443,"tid":27477,"ts":326458430387,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":301052,"id":"0xaf88a863f182217a"},
-{"pid":27443,"tid":27477,"ts":326458430387,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1374,"tts":301052},
-{"pid":27443,"tid":27477,"ts":326458430417,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1343,"tdur":1343,"tts":301083},
-{"pid":27443,"tid":27477,"ts":326458430417,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":301083},
-{"pid":27443,"tid":27477,"ts":326458430417,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":301083},
-{"pid":27443,"tid":27477,"ts":326458430448,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1312,"tdur":1313,"tts":301113},
-{"pid":27443,"tid":27477,"ts":326458430448,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":301113},
-{"pid":27443,"tid":27477,"ts":326458430448,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":301113},
-{"pid":27443,"tid":27477,"ts":326458430478,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":301144,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458430478,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":301144},
-{"pid":27443,"tid":27477,"ts":326458430509,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":396,"tts":301175},
-{"pid":27443,"tid":27477,"ts":326458430936,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":763,"tts":301632},
-{"pid":27443,"tid":27477,"ts":326458430967,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":71},"dur":244,"tdur":245,"tts":301632},
-{"pid":27443,"tid":27477,"ts":326458431211,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":71},"dur":30,"tdur":30,"tts":301877},
-{"pid":27443,"tid":27477,"ts":326458431272,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":71},"tts":301938},
-{"pid":27443,"tid":27477,"ts":326458431394,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":302060},
-{"pid":27443,"tid":27477,"ts":326458431394,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":302060},
-{"pid":27443,"tid":27477,"ts":326458431424,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":302090},
-{"pid":27443,"tid":27477,"ts":326458431547,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":302212},
-{"pid":27443,"tid":27477,"ts":326458431577,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":302243},
-{"pid":27443,"tid":27459,"ts":326458404597,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1312,"tdur":0,"tts":5975400},
-{"pid":27443,"tid":27459,"ts":326458406154,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5975675},
-{"pid":27443,"tid":27459,"ts":326458406184,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5975736},
-{"pid":27443,"tid":27459,"ts":326458406215,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5975766},
-{"pid":27443,"tid":27459,"ts":326458406245,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":5975797},
-{"pid":27443,"tid":27459,"ts":326458406306,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1038,"tdur":611,"tts":5975827},
-{"pid":27443,"tid":27459,"ts":326458406856,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":457,"tdur":427,"tts":5975980},
-{"pid":27443,"tid":27459,"ts":326458406886,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5975980},
-{"pid":27443,"tid":27459,"ts":326458407191,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":21,"frame":"0x78c60000"}},"tts":5976316,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458407222,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":5976316},
-{"pid":27443,"tid":27459,"ts":326458407252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5976346,"id":"0xaf88a866f182217a"},
-{"pid":27443,"tid":27459,"ts":326458407283,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5976377},
-{"pid":27443,"tid":27459,"ts":326458407374,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5976468},
-{"pid":27443,"tid":27459,"ts":326458407405,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5976499,"id":"0xaf88adf7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458407497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458403},"tts":5976590,"id":"0xaf88a8fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458407527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":5976621},
-{"pid":27443,"tid":27459,"ts":326458407558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5976651,"id":"0xaf88a89cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458407558,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":274,"tdur":123,"tts":5976651},
-{"pid":27443,"tid":27459,"ts":326458407588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5976682,"id":"0xaf88a89ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458407588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5976682,"id":"0xaf88abc8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458407588,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":5976682},
-{"pid":27443,"tid":27459,"ts":326458407771,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":62,"tts":5976712},
-{"pid":27443,"tid":27459,"ts":326458407802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5976743,"id":"0xaf88abd6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458407802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5976743,"id":"0xaf88a89ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458407863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5976804,"id":"0xaf88a89df3d027d2"},{"pid":27411,"tid":27428,"ts":326461847814,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1431283,"id":"0xaf88cad8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461847844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431313,"id":"0xaf88cad8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461847875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1431344},
-{"pid":27411,"tid":27428,"ts":326461858954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431405,"id":"0xaf88cad9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461858984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1431435},
-{"pid":27411,"tid":27428,"ts":326461858984,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1431435},
-{"pid":27411,"tid":27428,"ts":326461859015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1431466,"id":"0xaf88cadaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461859045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431497,"id":"0xaf88cadaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461859045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3480,"tdur":3113,"tts":1431497},
-{"pid":27411,"tid":27428,"ts":326461859106,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":6136},"dur":3419,"tdur":3052,"tts":1431558},
-{"pid":27411,"tid":27428,"ts":326461859106,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3388,"tdur":3021,"tts":1431558},
-{"pid":27411,"tid":27474,"ts":326461828769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":102578,"id":"0xaf88cac1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461828769,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":92,"tts":102578},
-{"pid":27411,"tid":27474,"ts":326461828922,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":91,"tts":102701},
-{"pid":27411,"tid":27474,"ts":326461828922,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102701,"id":"0xccc5f606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461828952,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102731,"id":"0xc4c21a0a"},
-{"pid":27411,"tid":27474,"ts":326461829013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":102792,"id":"0xaf88cac2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461829532,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":102853,"id":"0xaf88ce94fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461829532,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":102853},
-{"pid":27411,"tid":27474,"ts":326461829532,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102853,"id":"0xc4c21b02"},
-{"pid":27411,"tid":27474,"ts":326461843083,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":102945},
-{"pid":27411,"tid":27474,"ts":326461843114,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":102975},
-{"pid":27411,"tid":27474,"ts":326461843114,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":102975,"id":"0xba469f02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461843144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":103006,"id":"0xaf88caddf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461844335,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":103128},
-{"pid":27411,"tid":27474,"ts":326461844365,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":103158},
-{"pid":27411,"tid":27474,"ts":326461844365,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103189,"id":"0xccc5fa06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461844396,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103189,"id":"0xc4c21d0a"},
-{"pid":27411,"tid":27474,"ts":326461844426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":103219,"id":"0xaf88cadff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461847753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":103341,"id":"0xaf88ce95fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461847753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":62,"tts":103341},
-{"pid":27411,"tid":27474,"ts":326461847783,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103372,"id":"0xc4c21e02"},
-{"pid":27411,"tid":27474,"ts":326461858832,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":103494},
-{"pid":27411,"tid":27474,"ts":326461858862,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":103525},
-{"pid":27411,"tid":27474,"ts":326461858862,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103525,"id":"0xba46a302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461858893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":103555,"id":"0xaf88cad9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461859961,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":152,"tts":103647},
-{"pid":27411,"tid":27474,"ts":326461859992,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":103677},
-{"pid":27411,"tid":27474,"ts":326461859992,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103677,"id":"0xccc5fe06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461859992,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":103677},
-{"pid":27411,"tid":27474,"ts":326461860053,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103738,"id":"0xc4c2200a"},
-{"pid":27411,"tid":27474,"ts":326461860083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":103769,"id":"0xaf88cadbf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461862525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":103891,"id":"0xaf88ce96fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461862525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":103891},
-{"pid":27411,"tid":27474,"ts":326461862525,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":103891,"id":"0xc4c22102"},
-{"pid":27411,"tid":27474,"ts":326461874214,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":103982},
-{"pid":27411,"tid":27474,"ts":326461874245,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":104013},
-{"pid":27411,"tid":27474,"ts":326461874275,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104043,"id":"0xba46a702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461874275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":104043,"id":"0xaf88cad5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461877968,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":104166,"id":"0xaf88ce97fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461877999,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":104196},
-{"pid":27411,"tid":27474,"ts":326461877999,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104196,"id":"0xc4c22302"},
-{"pid":27411,"tid":27474,"ts":326461886575,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":104318},
-{"pid":27411,"tid":27474,"ts":326461886605,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":104349},
-{"pid":27411,"tid":27474,"ts":326461886605,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104349,"id":"0xccc60206","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461886636,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104379,"id":"0xc4c2240a"},
-{"pid":27411,"tid":27474,"ts":326461886666,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":104410,"id":"0xaf88cad7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461893350,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":104532},
-{"pid":27411,"tid":27474,"ts":326461893381,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":104562},
-{"pid":27411,"tid":27474,"ts":326461893381,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104562,"id":"0xba46ab02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461893411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":104593,"id":"0xaf88cad1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461897104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":104715,"id":"0xaf88ce90fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461897135,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":31,"tts":104745},
-{"pid":27411,"tid":27474,"ts":326461897135,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104745,"id":"0xc4c22602"},
-{"pid":27411,"tid":27474,"ts":326461912334,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":104837},
-{"pid":27411,"tid":27474,"ts":326461912395,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":104898},
-{"pid":27411,"tid":27474,"ts":326461912395,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104898,"id":"0xccc60806","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461912395,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":104929,"id":"0xc4c2270a"},
-{"pid":27411,"tid":27474,"ts":326461912456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":104959,"id":"0xaf88cad3f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461915325,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":92,"tts":105081},
-{"pid":27411,"tid":27474,"ts":326461915356,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":105112},
-{"pid":27411,"tid":27474,"ts":326461915356,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105112,"id":"0xba46af02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461915356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":105142,"id":"0xaf88caedf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461919171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":105234,"id":"0xaf88ce91fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461919201,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":105264},
-{"pid":27411,"tid":27428,"ts":326461860816,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1433267,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461860846,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":144},"dur":1648,"tdur":1251,"tts":1433328},
-{"pid":27411,"tid":27428,"ts":326461860907,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1374,"tdur":1007,"tts":1433358},
-{"pid":27411,"tid":27428,"ts":326461862403,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461845342.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461860877.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902049.0,"time":326461821627.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461815000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461844609.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461823611.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461862281.0},"coordinates":[{"x":191.51617431640625,"y":897.9783935546875},{"x":600.4891967773438,"y":405.01080322265625}],"trace_id":12884902049.0}},"tts":1434488,"id":"0x3000000a1"},
-{"pid":27411,"tid":27428,"ts":326461862403,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1434488,"id":"0x3000000a1","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461862433,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1434518},
-{"pid":27411,"tid":27428,"ts":326461862433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1434518,"id":"0xaf88ce96fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461862555,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1434640,"id":"0xaf88cadbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461862555,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1434640},
-{"pid":27411,"tid":27428,"ts":326461862586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1434671,"id":"0xaf88cad4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461862616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1434701,"id":"0xaf88cad4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461862616,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1434701},
-{"pid":27411,"tid":27428,"ts":326461874367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1434793,"id":"0xaf88cad5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461874367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1434793},
-{"pid":27411,"tid":27428,"ts":326461874367,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":0,"tts":1434823},
-{"pid":27411,"tid":27428,"ts":326461874397,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1434823,"id":"0xaf88cad6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461874428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1434854,"id":"0xaf88cad6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461874428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3571,"tdur":2991,"tts":1434854},
-{"pid":27411,"tid":27428,"ts":326461874489,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8198},"dur":3479,"tdur":2899,"tts":1434915},
-{"pid":27411,"tid":27428,"ts":326461874519,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3449,"tdur":2869,"tts":1434945},
-{"pid":27411,"tid":27428,"ts":326461876076,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1436502,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461876076,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":145},"dur":1892,"tdur":1282,"tts":1436532},
-{"pid":27411,"tid":27428,"ts":326461876137,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1556,"tdur":977,"tts":1436563},
-{"pid":27411,"tid":27428,"ts":326461877815,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461860999.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461876106.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902050.0,"time":326461840642.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461832000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461860266.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461842412.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461877724.0},"coordinates":[{"x":189.87757873535156,"y":900.43359375},{"x":602.1224365234375,"y":403.3775634765625}],"trace_id":12884902050.0}},"tts":1437662,"id":"0x3000000a2"},
-{"pid":27411,"tid":27428,"ts":326461877815,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1437662,"id":"0x3000000a2","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461877876,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":62,"tdur":61,"tts":1437723},
-{"pid":27411,"tid":27428,"ts":326461877907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1437753,"id":"0xaf88ce97fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461886758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1437936,"id":"0xaf88cad7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461886758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":31,"tts":1437936},
-{"pid":27411,"tid":27428,"ts":326461886788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1437967,"id":"0xaf88cad0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461886819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1437997,"id":"0xaf88cad0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461886819,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1437997},
-{"pid":27411,"tid":27428,"ts":326461893472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1438089,"id":"0xaf88cad1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461893503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1438119},
-{"pid":27411,"tid":27428,"ts":326461893503,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1438119},
-{"pid":27411,"tid":27428,"ts":326461893533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1438150,"id":"0xaf88cad2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461893533,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1438180,"id":"0xaf88cad2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461893564,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3632,"tdur":3266,"tts":1438180},
-{"pid":27411,"tid":27428,"ts":326461893625,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":10260},"dur":3479,"tdur":3113,"tts":1438242},
-{"pid":27411,"tid":27428,"ts":326461893625,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3479,"tdur":3113,"tts":1438242},
-{"pid":27411,"tid":27428,"ts":326461895243,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1439859,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461895243,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":146},"dur":1861,"tdur":1496,"tts":1439859},
-{"pid":27411,"tid":27428,"ts":326461895304,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1404,"tdur":1007,"tts":1439920},
-{"pid":27411,"tid":27428,"ts":326461896860,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461889596.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461895273.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902051.0,"time":326461855383.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461848000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461886880.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461858343.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461896708.0},"coordinates":[{"x":188.24485778808594,"y":902.255126953125},{"x":603.755126953125,"y":401.744873046875}],"trace_id":12884902051.0}},"tts":1441110,"id":"0x3000000a3"},
-{"pid":27411,"tid":27428,"ts":326461896860,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1441110,"id":"0x3000000a3","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461896952,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461889596.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461895273.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902052.0,"time":326461871681.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461865000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461886880.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461873604.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461896708.0},"coordinates":[{"x":187.55332946777344,"y":903.4466552734375},{"x":605.3933715820312,"y":400.10662841796875}],"trace_id":12884902052.0}},"tts":1441202,"id":"0x3000000a4"},
-{"pid":27411,"tid":27428,"ts":326461896952,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1441202,"id":"0x3000000a4","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461897013,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":61,"tts":1441263},
-{"pid":27411,"tid":27428,"ts":326461897043,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1441294,"id":"0xaf88ce90fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461912517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441507,"id":"0xaf88cad3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461912548,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1441538},
-{"pid":27411,"tid":27428,"ts":326461912578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1441568,"id":"0xaf88caecf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461912578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441599,"id":"0xaf88caecf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461912609,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1441599},
-{"pid":27411,"tid":27428,"ts":326461915447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441690,"id":"0xaf88caedf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461915447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1441690},
-{"pid":27411,"tid":27428,"ts":326461915447,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1441690},
-{"pid":27411,"tid":27428,"ts":326461915478,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1441721,"id":"0xaf88caeef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461915508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441751,"id":"0xaf88caeef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461915508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3693,"tdur":3144,"tts":1441751},
-{"pid":27411,"tid":27428,"ts":326461915569,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12322},"dur":3602,"tdur":3052,"tts":1441812},
-{"pid":27411,"tid":27428,"ts":326461915600,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3571,"tdur":3021,"tts":1441843},
-{"pid":27411,"tid":27428,"ts":326461917309,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1443552,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461917339,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":147},"dur":1832,"tdur":1251,"tts":1443583},
-{"pid":27411,"tid":27428,"ts":326461917370,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1587,"tdur":1038,"tts":1443613},
-{"pid":27411,"tid":27428,"ts":326461917370,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1443613},
-{"pid":27411,"tid":27428,"ts":326461919048,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461913433.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461917339.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902053.0,"time":326461891031.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461882000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461912639.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461892709.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461918957.0},"coordinates":[{"x":186.73780822753906,"y":904.26220703125},{"x":606.26220703125,"y":399.23779296875}],"trace_id":12884902053.0}},"tts":1444742,"id":"0x3000000a5"},
-{"pid":27411,"tid":27428,"ts":326461919079,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1444773,"id":"0x3000000a5","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461919079,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1444773},
-{"pid":27411,"tid":27428,"ts":326461919110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1444803,"id":"0xaf88ce91fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461924695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1444925,"id":"0xaf88caeff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461924725,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1444956},
-{"pid":27411,"tid":27428,"ts":326461924725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1444956,"id":"0xaf88cae8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461924756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1444987,"id":"0xaf88cae8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461924786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1445017},
-{"pid":27411,"tid":27428,"ts":326461927625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1445078,"id":"0xaf88cae9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461927625,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1445078},
-{"pid":27411,"tid":27428,"ts":326461927655,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1445109},
-{"pid":27411,"tid":27428,"ts":326461927655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1445109,"id":"0xaf88caeaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461927686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1445139,"id":"0xaf88caeaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461927716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3815,"tdur":3052,"tts":1445170},
-{"pid":27411,"tid":27428,"ts":326461927747,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14384},"dur":3754,"tdur":2960,"tts":1445231},
-{"pid":27411,"tid":27428,"ts":326461927777,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3724,"tdur":2960,"tts":1445231},
-{"pid":27411,"tid":27428,"ts":326461929609,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1446970,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461929609,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":148},"dur":1892,"tdur":1191,"tts":1446970},
-{"pid":27411,"tid":27428,"ts":326461929670,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1617,"tdur":947,"tts":1447031},
-{"pid":27411,"tid":27428,"ts":326461931379,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461925519.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461929639.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902054.0,"time":326461905558.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461898000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461924817.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461909953.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461931287.0},"coordinates":[{"x":186.5,"y":905.079345703125},{"x":607.0794067382812,"y":398.42059326171875}],"trace_id":12884902054.0}},"tts":1448069,"id":"0x3000000a6"},
-{"pid":27411,"tid":27428,"ts":326461931409,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1448100,"id":"0x3000000a6","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461931409,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1448100},
-{"pid":27411,"tid":27428,"ts":326461931440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1448130,"id":"0xaf88ce92fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326461960709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448252,"id":"0xaf88caebf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461960739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":1448283},
-{"pid":27411,"tid":27428,"ts":326461960739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1448283,"id":"0xaf88cae4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461960770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448313,"id":"0xaf88cae4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461960800,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1448344},
-{"pid":27411,"tid":27428,"ts":326461964249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448435,"id":"0xaf88cae5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461964249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1448435},
-{"pid":27411,"tid":27428,"ts":326461964280,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1448466},
-{"pid":27411,"tid":27428,"ts":326461964280,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1448496,"id":"0xaf88cae6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461964341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448527,"id":"0xaf88cae6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326461964341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":4425,"tdur":3937,"tts":1448527},
-{"pid":27411,"tid":27428,"ts":326461964493,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":72},"dur":4273,"tdur":3785,"tts":1448679},
-{"pid":27411,"tid":27428,"ts":326461964554,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":4182,"tdur":3662,"tts":1448771},
-{"pid":27411,"tid":27428,"ts":326461966508,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1450694,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326461966538,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":149},"dur":2198,"tdur":1709,"tts":1450724},
-{"pid":27411,"tid":27428,"ts":326461966569,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1617,"tdur":1129,"tts":1450755},
-{"pid":27411,"tid":27428,"ts":326461968308,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461961869.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461966538.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902055.0,"time":326461921765.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461915000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461960983.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461923779.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461968217.0},"coordinates":[{"x":186.5,"y":905.0},{"x":607.8984375,"y":397.6015625}],"trace_id":12884902055.0}},"tts":1452006,"id":"0x3000000a7"},
-{"pid":27411,"tid":27428,"ts":326461968339,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1452037,"id":"0x3000000a7","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461968461,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461961869.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461966538.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902056.0,"time":326461928418.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461917000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461960983.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461930616.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461968217.0},"coordinates":[{"x":186.5,"y":905.0},{"x":608.0,"y":397.5}],"trace_id":12884902056.0}},"tts":1452189,"id":"0x3000000a8"},
-{"pid":27411,"tid":27428,"ts":326461968491,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1452189,"id":"0x3000000a8","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461968583,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461961869.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461966538.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902057.0,"time":326461929334.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461927000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461960983.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461942976.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461968217.0},"coordinates":[{"x":186.5,"y":905.0},{"x":608.5,"y":397.0}],"trace_id":12884902057.0}},"tts":1452281,"id":"0x3000000a9"},
-{"pid":27411,"tid":27428,"ts":326461968614,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1452311,"id":"0x3000000a9","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326461968644,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1452342},
-{"pid":27411,"tid":27428,"ts":326461968675,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1452372,"id":"0xaf88ce93fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462068415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1452617,"id":"0xaf88cae7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462068446,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1452647},
-{"pid":27411,"tid":27428,"ts":326462068507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1452708,"id":"0xaf88cae0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462068568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1452769,"id":"0xaf88cae0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462068598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1452800},
-{"pid":27411,"tid":27428,"ts":326462072047,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1453013,"id":"0xaf88cae1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462072078,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":91,"tts":1453044},
-{"pid":27411,"tid":27428,"ts":326462072078,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":1453074},
-{"pid":27411,"tid":27428,"ts":326462072139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1453105,"id":"0xaf88cae3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462072230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1453197,"id":"0xaf88cae2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462072261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1453227},
-{"pid":27411,"tid":27428,"ts":326462072352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1453319,"id":"0xaf88cae3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462072383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":427,"tdur":427,"tts":1453349},
-{"pid":27411,"tid":27428,"ts":326462072444,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":84},"dur":305,"tdur":244,"tts":1453441},
-{"pid":27411,"tid":27474,"ts":326461919201,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105264,"id":"0xc4c22902"},
-{"pid":27411,"tid":27474,"ts":326461919201,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":105264},
-{"pid":27411,"tid":27474,"ts":326461924512,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":152,"tts":105417},
-{"pid":27411,"tid":27474,"ts":326461924542,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":91,"tts":105478},
-{"pid":27411,"tid":27474,"ts":326461924573,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105478,"id":"0xccc60c06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461924573,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105478,"id":"0xc4c22a0a"},
-{"pid":27411,"tid":27474,"ts":326461924634,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":105539,"id":"0xaf88caeff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461927350,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":244,"tdur":61,"tts":105661},
-{"pid":27411,"tid":27474,"ts":326461927381,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":213,"tdur":31,"tts":105661},
-{"pid":27411,"tid":27474,"ts":326461927442,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105661,"id":"0xba46b302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461927533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":105692,"id":"0xaf88cae9f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461931501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":105783,"id":"0xaf88ce92fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461931501,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":105783},
-{"pid":27411,"tid":27474,"ts":326461931531,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105814,"id":"0xc4c22c02"},
-{"pid":27411,"tid":27474,"ts":326461960465,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":105875},
-{"pid":27411,"tid":27474,"ts":326461960495,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":91,"tts":105936},
-{"pid":27411,"tid":27474,"ts":326461960526,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105936,"id":"0xccc61606","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461960526,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":105966,"id":"0xc4c22d0a"},
-{"pid":27411,"tid":27474,"ts":326461960587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":105997,"id":"0xaf88caebf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461964097,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":106119},
-{"pid":27411,"tid":27474,"ts":326461964127,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":106149},
-{"pid":27411,"tid":27474,"ts":326461964158,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106180,"id":"0xba46bb02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326461964158,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":106180,"id":"0xaf88cae5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326461968766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":106332,"id":"0xaf88ce93fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326461968766,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":106332},
-{"pid":27411,"tid":27474,"ts":326461968797,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106363,"id":"0xc4c22f02"},
-{"pid":27411,"tid":27474,"ts":326462068140,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":153,"tts":106485},
-{"pid":27411,"tid":27474,"ts":326462068202,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":106516},
-{"pid":27411,"tid":27474,"ts":326462068202,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106516,"id":"0xccc61a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462068232,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106546,"id":"0xc4c2300a"},
-{"pid":27411,"tid":27474,"ts":326462068263,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":106577,"id":"0xaf88cae7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462071833,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":245,"tdur":244,"tts":106699},
-{"pid":27411,"tid":27474,"ts":326462071894,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":106760},
-{"pid":27411,"tid":27474,"ts":326462071894,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106760,"id":"0xba46c302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462071925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":106790,"id":"0xaf88cae1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462071956,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":92,"tts":106851},
-{"pid":27411,"tid":27474,"ts":326462071986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106851,"id":"0xba46c406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462071986,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":106882,"id":"0xc4c2320a"},
-{"pid":27411,"tid":27474,"ts":326462072047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":106912,"id":"0xaf88cae2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462073970,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":153,"tts":107034},
-{"pid":27411,"tid":27474,"ts":326462074000,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":107065},
-{"pid":27411,"tid":27474,"ts":326462074031,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107095,"id":"0xba46c602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462074061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":107126,"id":"0xaf88cafdf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462078334,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":92,"tdur":91,"tts":107218},
-{"pid":27411,"tid":27474,"ts":326462078365,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":107248},
-{"pid":27411,"tid":27474,"ts":326462078395,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107279,"id":"0xccc61c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462078395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":107279,"id":"0xaf88cafff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462083370,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":107370},
-{"pid":27411,"tid":27474,"ts":326462083401,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":107431},
-{"pid":27411,"tid":27474,"ts":326462083431,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107431,"id":"0xccc61e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462083462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":107462,"id":"0xaf88caf8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462088437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":107553,"id":"0xaf88ceacfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462088467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":107584},
-{"pid":27411,"tid":27474,"ts":326462088467,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107584,"id":"0xc4c23402"},
-{"pid":27411,"tid":27474,"ts":326462121276,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":214,"tdur":214,"tts":107675},
-{"pid":27411,"tid":27474,"ts":326462121307,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":107706},
-{"pid":27411,"tid":27474,"ts":326462121338,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107736,"id":"0xccc62102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462121338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":107736,"id":"0xaf88cafbf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462121399,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":61,"tts":107797},
-{"pid":27411,"tid":27474,"ts":326462121399,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107797,"id":"0xccc62206","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462121429,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107828,"id":"0xc4c2350a"},
-{"pid":27411,"tid":27474,"ts":326462121460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":107858,"id":"0xaf88caf4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462125885,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":91,"tts":107920},
-{"pid":27411,"tid":27474,"ts":326462125916,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":107950},
-{"pid":27411,"tid":27428,"ts":326462072505,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":214,"tdur":214,"tts":1453471},
-{"pid":27411,"tid":27428,"ts":326462072505,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":122,"tts":1453471},
-{"pid":27411,"tid":27428,"ts":326462072749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1453746,"id":"0xaf88cafcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462072841,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1453807,"id":"0xaf88cafcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462072871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1453837},
-{"pid":27411,"tid":27428,"ts":326462074153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1454051,"id":"0xaf88cafdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462074184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":91,"tts":1454082},
-{"pid":27411,"tid":27428,"ts":326462074214,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":1454082},
-{"pid":27411,"tid":27428,"ts":326462074275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1454143,"id":"0xaf88cafef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462074336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1454204,"id":"0xaf88cafef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462074367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":14161,"tdur":11567,"tts":1454234},
-{"pid":27411,"tid":27428,"ts":326462074458,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2816},"dur":14040,"tdur":11414,"tts":1454326},
-{"pid":27411,"tid":27428,"ts":326462074519,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":13948,"tdur":11353,"tts":1454387},
-{"pid":27411,"tid":27428,"ts":326462075465,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":145},"dur":61,"tdur":61,"tts":1455333},
-{"pid":27411,"tid":27428,"ts":326462075649,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":43},"dur":61,"tdur":61,"tts":1455516},
-{"pid":27411,"tid":27428,"ts":326462075832,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":230},"dur":61,"tdur":61,"tts":1455699},
-{"pid":27411,"tid":27428,"ts":326462076106,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":32},"dur":92,"tdur":31,"tts":1456004},
-{"pid":27411,"tid":27428,"ts":326462076106,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1456004},
-{"pid":27411,"tid":27428,"ts":326462076412,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":237},"dur":61,"tdur":61,"tts":1456279},
-{"pid":27411,"tid":27428,"ts":326462076686,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":214},"dur":61,"tdur":31,"tts":1456584},
-{"pid":27411,"tid":27428,"ts":326462077113,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":182},"dur":62,"tdur":61,"tts":1456981},
-{"pid":27411,"tid":27428,"ts":326462077297,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":161},"dur":61,"tdur":31,"tts":1457164},
-{"pid":27411,"tid":27428,"ts":326462078273,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":93},"dur":61,"tdur":61,"tts":1458141},
-{"pid":27411,"tid":27428,"ts":326462078426,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":68},"dur":61,"tdur":61,"tts":1458293},
-{"pid":27411,"tid":27428,"ts":326462080166,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1460064,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462080196,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":150},"dur":8241,"tdur":5616,"tts":1460094},
-{"pid":27411,"tid":27428,"ts":326462080318,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":7600,"tdur":5005,"tts":1460186},
-{"pid":27411,"tid":27428,"ts":326462088192,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{"data":{"INPUT_EVENT_BROWSER_RECEIVED_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326462070460.0},"INPUT_EVENT_GPU_SWAP_BUFFER_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326462080257.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902059.0,"time":326461938582.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461936000.0},"INPUT_EVENT_LATENCY_RENDERER_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326462068934.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461966660.0},"INPUT_EVENT_LATENCY_TERMINATED_FRAME_SWAP_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326462087918.0},"coordinates":[{"x":608.5,"y":397.0}],"trace_id":12884902059.0}},"tts":1465466,"id":"0x3000000ab"},
-{"pid":27411,"tid":27428,"ts":326462088223,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1465496,"id":"0x3000000ab","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326462088284,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1465557},
-{"pid":27411,"tid":27428,"ts":326462088314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1465588,"id":"0xaf88ceacfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462088559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1465832,"id":"0xaf88cafff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462088589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":123,"tts":1465862},
-{"pid":27411,"tid":27428,"ts":326462088620,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1465893},
-{"pid":27411,"tid":27428,"ts":326462088650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1465923,"id":"0xaf88caf9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462088742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1466046,"id":"0xaf88caf8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462088772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":1466076},
-{"pid":27411,"tid":27428,"ts":326462088803,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1466076},
-{"pid":27411,"tid":27428,"ts":326462088894,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1466168,"id":"0xaf88caf9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462088925,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":1740,"tdur":1679,"tts":1466198},
-{"pid":27411,"tid":27428,"ts":326462088955,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":184,"tdur":153,"tts":1466259},
-{"pid":27411,"tid":27428,"ts":326462089200,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17153},"dur":1342,"tdur":1282,"tts":1466473},
-{"pid":27411,"tid":27428,"ts":326462089261,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":1281,"tdur":1221,"tts":1466534},
-{"pid":27411,"tid":27428,"ts":326462089322,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1466595},
-{"pid":27411,"tid":27428,"ts":326462089352,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1466625},
-{"pid":27411,"tid":27428,"ts":326462089383,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":91,"tdur":61,"tts":1466687},
-{"pid":27411,"tid":27428,"ts":326462089444,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1466717},
-{"pid":27411,"tid":27428,"ts":326462089474,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":519,"tdur":518,"tts":1466748},
-{"pid":27411,"tid":27428,"ts":326462089535,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":428,"tdur":427,"tts":1466809},
-{"pid":27411,"tid":27428,"ts":326462090634,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1467846,"id":"0xaf88cafaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462090817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1467938,"id":"0xaf88cafaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462090848,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":5036,"tdur":2656,"tts":1467968},
-{"pid":27411,"tid":27428,"ts":326462090909,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17298},"dur":4852,"tdur":2503,"tts":1468029},
-{"pid":27411,"tid":27428,"ts":326462090939,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":4822,"tdur":2442,"tts":1468090},
-{"pid":27411,"tid":27428,"ts":326462091000,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":1893,"tdur":92,"tts":1468121},
-{"pid":27411,"tid":27428,"ts":326462092862,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1468182},
-{"pid":27411,"tid":27428,"ts":326462092893,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1468213},
-{"pid":27411,"tid":27428,"ts":326462092893,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1468243},
-{"pid":27411,"tid":27428,"ts":326462092923,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1468243},
-{"pid":27411,"tid":27428,"ts":326462092954,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":213,"tts":1468274},
-{"pid":27411,"tid":27428,"ts":326462093503,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1468701},
-{"pid":27411,"tid":27428,"ts":326462093533,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1468731},
-{"pid":27411,"tid":27428,"ts":326462093564,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1468762},
-{"pid":27411,"tid":27428,"ts":326462093564,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1468762},
-{"pid":27411,"tid":27428,"ts":326462093594,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":245,"tdur":245,"tts":1468792},
-{"pid":27411,"tid":27428,"ts":326462093594,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":1468792},
-{"pid":27411,"tid":27428,"ts":326462093686,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1468884},
-{"pid":27411,"tid":27428,"ts":326462094113,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1469189},
-{"pid":27411,"tid":27428,"ts":326462094144,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1469220},
-{"pid":27411,"tid":27428,"ts":326462094144,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1469220},
-{"pid":27411,"tid":27428,"ts":326462094174,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1469250},
-{"pid":27411,"tid":27428,"ts":326462094174,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":275,"tdur":183,"tts":1469250},
-{"pid":27411,"tid":27428,"ts":326462094205,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":244,"tdur":152,"tts":1469281},
-{"pid":27411,"tid":27428,"ts":326462094724,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1469647},
-{"pid":27411,"tid":27428,"ts":326462094724,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1469678},
-{"pid":27411,"tid":27428,"ts":326462094754,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1469678},
-{"pid":27411,"tid":27428,"ts":326462094754,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1469678},
-{"pid":27411,"tid":27428,"ts":326462094785,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1469708},
-{"pid":27411,"tid":27428,"ts":326462094815,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1469739},
-{"pid":27411,"tid":27428,"ts":326462095243,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1470105},
-{"pid":27411,"tid":27428,"ts":326462095243,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1470105},
-{"pid":27411,"tid":27428,"ts":326462095273,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1470135},
-{"pid":27411,"tid":27428,"ts":326462095273,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1470166},
-{"pid":27411,"tid":27428,"ts":326462095304,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1470166},
-{"pid":27411,"tid":27428,"ts":326462095334,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1470196},
-{"pid":27411,"tid":27428,"ts":326462121551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1470715,"id":"0xaf88cafbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462121551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1470715},
-{"pid":27411,"tid":27428,"ts":326462121551,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":0,"tts":1470746},
-{"pid":27411,"tid":27428,"ts":326462121582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1470746,"id":"0xaf88caf5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462121612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1470776,"id":"0xaf88caf4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462121612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1470776},
-{"pid":27411,"tid":27428,"ts":326462121643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1470837,"id":"0xaf88caf5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462121673,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6379,"tdur":4822,"tts":1470837},
-{"pid":27411,"tid":27428,"ts":326462121704,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17588},"dur":6195,"tdur":4639,"tts":1470868},
-{"pid":27411,"tid":27428,"ts":326462121734,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":6165,"tdur":4609,"tts":1470898},
-{"pid":27411,"tid":27428,"ts":326462121765,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1470929},
-{"pid":27411,"tid":27428,"ts":326462121795,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1470959},
-{"pid":27411,"tid":27428,"ts":326462121795,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1470959},
-{"pid":27411,"tid":27428,"ts":326462121826,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1470990},
-{"pid":27411,"tid":27428,"ts":326462121826,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":184,"tts":1471020},
-{"pid":27411,"tid":27428,"ts":326462121856,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1471020},
-{"pid":27411,"tid":27428,"ts":326462122711,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1471448},
-{"pid":27411,"tid":27428,"ts":326462122741,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1471478},
-{"pid":27411,"tid":27428,"ts":326462122741,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1471478},
-{"pid":27411,"tid":27428,"ts":326462122772,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1471509},
-{"pid":27411,"tid":27428,"ts":326462122802,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":184,"tdur":183,"tts":1471539},
-{"pid":27411,"tid":27428,"ts":326462122802,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1471539},
-{"pid":27411,"tid":27428,"ts":326462123352,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1471905},
-{"pid":27411,"tid":27428,"ts":326462123352,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1471905},
-{"pid":27411,"tid":27428,"ts":326462123382,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1471936},
-{"pid":27411,"tid":27428,"ts":326462123382,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1471936},
-{"pid":27411,"tid":27428,"ts":326462123413,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1471967},
-{"pid":27411,"tid":27428,"ts":326462123443,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":122,"tts":1471997},
-{"pid":27411,"tid":27428,"ts":326462123840,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1472302},
-{"pid":27411,"tid":27428,"ts":326462123871,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1472333},
-{"pid":27411,"tid":27428,"ts":326462123871,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1472333},
-{"pid":27411,"tid":27428,"ts":326462123901,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1472363},
-{"pid":27411,"tid":27428,"ts":326462123932,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":152,"tdur":152,"tts":1472394},
-{"pid":27411,"tid":27428,"ts":326462123932,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1472394},
-{"pid":27411,"tid":27428,"ts":326462124359,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1472730},
-{"pid":27411,"tid":27428,"ts":326462124390,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1472760},
-{"pid":27411,"tid":27428,"ts":326462124390,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1472760},
-{"pid":27411,"tid":27428,"ts":326462124420,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1472791},
-{"pid":27411,"tid":27428,"ts":326462124420,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1472791},
-{"pid":27411,"tid":27428,"ts":326462124451,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":1472821},
-{"pid":27411,"tid":27428,"ts":326462124847,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":0,"tts":1473187},
-{"pid":27411,"tid":27428,"ts":326462124878,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1473187},
-{"pid":27411,"tid":27428,"ts":326462124908,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":92,"tdur":91,"tts":1473218},
-{"pid":27411,"tid":27428,"ts":326462124908,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1473218},
-{"pid":27411,"tid":27428,"ts":326462124908,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1473218},
-{"pid":27411,"tid":27428,"ts":326462125000,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":184,"tts":1473309},
-{"pid":27411,"tid":27428,"ts":326462125030,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1473340},
-{"pid":27411,"tid":27428,"ts":326462125458,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1473706},
-{"pid":27411,"tid":27428,"ts":326462125458,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1473706},
-{"pid":27411,"tid":27428,"ts":326462125488,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1473737},
-{"pid":27411,"tid":27428,"ts":326462125488,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1473737},
-{"pid":27411,"tid":27428,"ts":326462125519,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1473767},
-{"pid":27411,"tid":27428,"ts":326462125519,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":1473767},
-{"pid":27411,"tid":27428,"ts":326462126343,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1474225},
-{"pid":27411,"tid":27428,"ts":326462126343,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1474225},
-{"pid":27411,"tid":27428,"ts":326462126373,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1474256},
-{"pid":27411,"tid":27428,"ts":326462126373,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1474256},
-{"pid":27411,"tid":27428,"ts":326462126404,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":152,"tdur":153,"tts":1474286},
-{"pid":27411,"tid":27428,"ts":326462126404,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":1474286},
-{"pid":27411,"tid":27428,"ts":326462126831,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1474652},
-{"pid":27411,"tid":27428,"ts":326462126862,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1474652},
-{"pid":27411,"tid":27428,"ts":326462126892,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1474683},
-{"pid":27411,"tid":27428,"ts":326462126892,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1474683},
-{"pid":27411,"tid":27428,"ts":326462126923,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1474713},
-{"pid":27411,"tid":27428,"ts":326462126923,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":153,"tts":1474713},
-{"pid":27411,"tid":27428,"ts":326462127381,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1475080},
-{"pid":27411,"tid":27428,"ts":326462127381,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1475080},
-{"pid":27411,"tid":27428,"ts":326462127411,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1475110},
-{"pid":27411,"tid":27428,"ts":326462127411,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1475110},
-{"pid":27411,"tid":27428,"ts":326462127442,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1475141},
-{"pid":27411,"tid":27428,"ts":326462127442,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1475141},
-{"pid":27411,"tid":27428,"ts":326462128021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1475629,"id":"0xaf88caf0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1475690,"id":"0xaf88caf6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1475690},
-{"pid":27411,"tid":27428,"ts":326462128083,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1475690},
-{"pid":27411,"tid":27428,"ts":326462128113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1475721,"id":"0xaf88caf1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1475751,"id":"0xaf88caf7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":0,"tts":1475751},
-{"pid":27411,"tid":27428,"ts":326462128174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1475782,"id":"0xaf88caf0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128174,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1475782},
-{"pid":27411,"tid":27428,"ts":326462128235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1475843,"id":"0xaf88caf1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128235,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":733,"tdur":396,"tts":1475843},
-{"pid":27411,"tid":27428,"ts":326462128266,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":396,"tdur":61,"tts":1475873},
-{"pid":27411,"tid":27428,"ts":326462128693,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":3096},"dur":244,"tdur":244,"tts":1475965},
-{"pid":27411,"tid":27428,"ts":326462128723,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":214,"tdur":214,"tts":1475995},
-{"pid":27411,"tid":27428,"ts":326462128968,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1476239,"id":"0xaf88caf3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1476270,"id":"0xaf88caf2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462128998,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1476270},
-{"pid":27411,"tid":27428,"ts":326462128998,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1476270},
-{"pid":27411,"tid":27428,"ts":326462129029,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1476300,"id":"0xaf88caf3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462129029,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1476300},
-{"pid":27411,"tid":27428,"ts":326462129059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1476331,"id":"0xaf88ca8cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462129090,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1476361,"id":"0xaf88ca8cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462129090,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3174,"tdur":2259,"tts":1476361},
-{"pid":27411,"tid":27428,"ts":326462129120,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":4458},"dur":3113,"tdur":2197,"tts":1476392},
-{"pid":27411,"tid":27428,"ts":326462129151,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":3082,"tdur":2166,"tts":1476423},
-{"pid":27411,"tid":27428,"ts":326462130402,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1477552,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462130402,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":151},"dur":1831,"tdur":1037,"tts":1477552},
-{"pid":27411,"tid":27428,"ts":326462130433,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":1587,"tdur":885,"tts":1477613},
-{"pid":27411,"tid":27428,"ts":326462132020,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":213,"tdur":91,"tts":1478498},
-{"pid":27411,"tid":27428,"ts":326462132050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1478528,"id":"0xaf88ceadfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462207619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1478712,"id":"0xaf88ca8df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462207619,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":30,"tts":1478712},
-{"pid":27411,"tid":27428,"ts":326462207619,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1478712},
-{"pid":27411,"tid":27428,"ts":326462207649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1478742,"id":"0xaf88ca8ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462207680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1478773,"id":"0xaf88ca8ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462207680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":2075,"tdur":1800,"tts":1478773},
-{"pid":27411,"tid":27474,"ts":326462125916,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":107950,"id":"0xba46ca02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462125946,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":107981,"id":"0xaf88caf6f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462126160,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":108042},
-{"pid":27411,"tid":27474,"ts":326462126190,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":108072},
-{"pid":27411,"tid":27474,"ts":326462126190,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108072,"id":"0xba46cb06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462126221,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108103,"id":"0xc4c2370a"},
-{"pid":27411,"tid":27474,"ts":326462126251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":108133,"id":"0xaf88caf7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462128510,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":61,"tdur":61,"tts":108194},
-{"pid":27411,"tid":27474,"ts":326462128540,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":108225},
-{"pid":27411,"tid":27474,"ts":326462128540,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108225,"id":"0xba46cd02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462128571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":108255,"id":"0xaf88caf2f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462132142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":108347,"id":"0xaf88ceadfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462132142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":108347},
-{"pid":27411,"tid":27474,"ts":326462132172,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108377,"id":"0xc4c23902"},
-{"pid":27411,"tid":27474,"ts":326462207435,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":123,"tdur":122,"tts":108438},
-{"pid":27411,"tid":27474,"ts":326462207466,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":108469},
-{"pid":27411,"tid":27474,"ts":326462207497,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108499,"id":"0xccc62802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462207497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":108499,"id":"0xaf88ca8df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462221994,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":108591},
-{"pid":27411,"tid":27474,"ts":326462222024,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":62,"tts":108621},
-{"pid":27411,"tid":27474,"ts":326462222024,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108621,"id":"0xccc62b02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462222055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":108652,"id":"0xaf88ca8ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462236766,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":108774},
-{"pid":27411,"tid":27474,"ts":326462236796,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":108805},
-{"pid":27411,"tid":27474,"ts":326462236796,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108805,"id":"0xccc62c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462236827,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":108835,"id":"0xaf88ca89f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462237956,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":108957},
-{"pid":27411,"tid":27474,"ts":326462237986,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":108988},
-{"pid":27411,"tid":27474,"ts":326462237986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":108988,"id":"0xccc62d06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462238017,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109018,"id":"0xc4c23a0a"},
-{"pid":27411,"tid":27474,"ts":326462238047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109049,"id":"0xaf88ca8bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462246410,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":109110},
-{"pid":27411,"tid":27474,"ts":326462246441,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":109140},
-{"pid":27411,"tid":27474,"ts":326462246441,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109140,"id":"0xba46d802","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462246471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109171,"id":"0xaf88ca85f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462252789,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":213,"tdur":184,"tts":109262},
-{"pid":27411,"tid":27474,"ts":326462252850,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":109293},
-{"pid":27411,"tid":27474,"ts":326462252850,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109293,"id":"0xccc62f02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462252880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109323,"id":"0xaf88ca87f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462252880,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":109323},
-{"pid":27411,"tid":27474,"ts":326462252911,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109354,"id":"0xccc63002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462252911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109354,"id":"0xaf88ca80f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462252911,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":91,"tdur":92,"tts":109354},
-{"pid":27411,"tid":27474,"ts":326462252941,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109385,"id":"0xccc63106","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462252941,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109385,"id":"0xc4c23c0a"},
-{"pid":27411,"tid":27474,"ts":326462252972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109446,"id":"0xaf88ca81f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462259931,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":61,"tdur":61,"tts":109507},
-{"pid":27411,"tid":27474,"ts":326462259961,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":109537},
-{"pid":27411,"tid":27474,"ts":326462259961,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109537,"id":"0xba46db02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462259992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109568,"id":"0xaf88ca82f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462260236,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":152,"tts":109629},
-{"pid":27411,"tid":27474,"ts":326462260266,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":109659},
-{"pid":27411,"tid":27474,"ts":326462260297,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109690,"id":"0xccc63302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462260297,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109690,"id":"0xaf88ca83f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462260327,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":109720},
-{"pid":27411,"tid":27474,"ts":326462260327,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109720,"id":"0xccc63406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462260327,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109720,"id":"0xc4c23d0a"},
-{"pid":27411,"tid":27474,"ts":326462260388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":109781,"id":"0xaf88ca9cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462263135,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":109873,"id":"0xaf88ceaefec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462263135,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":109873},
-{"pid":27411,"tid":27474,"ts":326462263135,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109873,"id":"0xc4c23e02"},
-{"pid":27411,"tid":27474,"ts":326462273482,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":153,"tts":109964},
-{"pid":27411,"tid":27474,"ts":326462273512,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":109995},
-{"pid":27411,"tid":27474,"ts":326462273512,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":109995,"id":"0xba46de02","bp":"e"},
-{"pid":27411,"tid":27428,"ts":326462207710,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":153,"tdur":153,"tts":1478803},{"pid":27411,"tid":27428,"ts":326462207710,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1478803},
-{"pid":27411,"tid":27428,"ts":326462207893,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":17715},"dur":1801,"tdur":1526,"tts":1478986},
-{"pid":27411,"tid":27428,"ts":326462207893,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":1801,"tdur":1496,"tts":1478986},
-{"pid":27411,"tid":27428,"ts":326462207954,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1479047},
-{"pid":27411,"tid":27428,"ts":326462207954,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1479047},
-{"pid":27411,"tid":27428,"ts":326462207985,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1479078},
-{"pid":27411,"tid":27428,"ts":326462207985,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1479078},
-{"pid":27411,"tid":27428,"ts":326462208015,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1479108},
-{"pid":27411,"tid":27428,"ts":326462208046,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1479139},
-{"pid":27411,"tid":27428,"ts":326462208687,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1479627},
-{"pid":27411,"tid":27428,"ts":326462208717,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1479658},
-{"pid":27411,"tid":27428,"ts":326462208748,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1479688},
-{"pid":27411,"tid":27428,"ts":326462208748,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1479688},
-{"pid":27411,"tid":27428,"ts":326462208778,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":152,"tts":1479719},
-{"pid":27411,"tid":27428,"ts":326462208778,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1479719},
-{"pid":27411,"tid":27428,"ts":326462209114,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":0,"tts":1480085},
-{"pid":27411,"tid":27428,"ts":326462209145,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1480085},
-{"pid":27411,"tid":27428,"ts":326462209175,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1480085},
-{"pid":27411,"tid":27428,"ts":326462209206,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1480115},
-{"pid":27411,"tid":27428,"ts":326462209206,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":183,"tts":1480146},
-{"pid":27411,"tid":27428,"ts":326462209236,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":1480146},
-{"pid":27411,"tid":27428,"ts":326462222177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1480634,"id":"0xaf88ca8ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462222177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1480634},
-{"pid":27411,"tid":27428,"ts":326462222177,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":1480665},
-{"pid":27411,"tid":27428,"ts":326462222207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1480665,"id":"0xaf88ca88f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462222238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1480695,"id":"0xaf88ca88f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462222238,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7569,"tdur":6440,"tts":1480695},
-{"pid":27411,"tid":27428,"ts":326462222299,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18092},"dur":7325,"tdur":6196,"tts":1480756},
-{"pid":27411,"tid":27428,"ts":326462222329,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":7264,"tdur":6165,"tts":1480787},
-{"pid":27411,"tid":27428,"ts":326462222360,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1480817},
-{"pid":27411,"tid":27428,"ts":326462222360,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1480817},
-{"pid":27411,"tid":27428,"ts":326462222390,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1480848},
-{"pid":27411,"tid":27428,"ts":326462222390,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1480848},
-{"pid":27411,"tid":27428,"ts":326462222421,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":275,"tdur":184,"tts":1480878},
-{"pid":27411,"tid":27428,"ts":326462222421,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":275,"tdur":184,"tts":1480878},
-{"pid":27411,"tid":27428,"ts":326462222940,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":519,"tdur":61,"tts":1481306},
-{"pid":27411,"tid":27428,"ts":326462222940,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":488,"tdur":30,"tts":1481306},
-{"pid":27411,"tid":27428,"ts":326462223459,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1481367},
-{"pid":27411,"tid":27428,"ts":326462223459,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1481367},
-{"pid":27411,"tid":27428,"ts":326462223489,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1481397},
-{"pid":27411,"tid":27428,"ts":326462223489,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":183,"tts":1481428},
-{"pid":27411,"tid":27428,"ts":326462223520,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1481428},
-{"pid":27411,"tid":27428,"ts":326462223978,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1481794},
-{"pid":27411,"tid":27428,"ts":326462224008,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1481825},
-{"pid":27411,"tid":27428,"ts":326462224008,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1481825},
-{"pid":27411,"tid":27428,"ts":326462224039,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1481855},
-{"pid":27411,"tid":27428,"ts":326462224039,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":183,"tts":1481855},
-{"pid":27411,"tid":27428,"ts":326462224069,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1481886},
-{"pid":27411,"tid":27428,"ts":326462224435,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1482252},
-{"pid":27411,"tid":27428,"ts":326462224466,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1482313},
-{"pid":27411,"tid":27428,"ts":326462224496,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1482313},
-{"pid":27411,"tid":27428,"ts":326462224527,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1482343},
-{"pid":27411,"tid":27428,"ts":326462224527,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":184,"tts":1482343},
-{"pid":27411,"tid":27428,"ts":326462224557,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1482374},
-{"pid":27411,"tid":27428,"ts":326462224985,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1482740},
-{"pid":27411,"tid":27428,"ts":326462224985,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1482740},
-{"pid":27411,"tid":27428,"ts":326462225015,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1482771},
-{"pid":27411,"tid":27428,"ts":326462225015,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1482771},
-{"pid":27411,"tid":27428,"ts":326462225046,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1482801},
-{"pid":27411,"tid":27428,"ts":326462225046,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":152,"tts":1482832},
-{"pid":27411,"tid":27428,"ts":326462225473,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":30,"tts":1483229},
-{"pid":27411,"tid":27428,"ts":326462225504,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1483229},
-{"pid":27411,"tid":27428,"ts":326462225534,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":92,"tdur":92,"tts":1483259},
-{"pid":27411,"tid":27428,"ts":326462225534,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1483259},
-{"pid":27411,"tid":27428,"ts":326462225534,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":1483259},
-{"pid":27411,"tid":27428,"ts":326462225626,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":213,"tts":1483351},
-{"pid":27411,"tid":27428,"ts":326462225656,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":1483381},
-{"pid":27411,"tid":27428,"ts":326462226114,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1483778},
-{"pid":27411,"tid":27428,"ts":326462226114,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1483778},
-{"pid":27411,"tid":27428,"ts":326462226144,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1483808},
-{"pid":27411,"tid":27428,"ts":326462226144,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1483808},
-{"pid":27411,"tid":27428,"ts":326462226175,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1483839},
-{"pid":27411,"tid":27428,"ts":326462226175,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1483839},
-{"pid":27411,"tid":27428,"ts":326462226541,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":92,"tdur":30,"tts":1484236},
-{"pid":27411,"tid":27428,"ts":326462226572,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1484236},
-{"pid":27411,"tid":27428,"ts":326462226633,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1484266},
-{"pid":27411,"tid":27428,"ts":326462226633,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1484266},
-{"pid":27411,"tid":27428,"ts":326462226663,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1484297},
-{"pid":27411,"tid":27428,"ts":326462226663,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":1484327},
-{"pid":27411,"tid":27428,"ts":326462227121,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1484663},
-{"pid":27411,"tid":27428,"ts":326462227152,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1484694},
-{"pid":27411,"tid":27428,"ts":326462227152,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1484694},
-{"pid":27411,"tid":27428,"ts":326462227182,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1484724},
-{"pid":27411,"tid":27428,"ts":326462227182,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":183,"tts":1484724},
-{"pid":27411,"tid":27428,"ts":326462227213,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1484755},
-{"pid":27411,"tid":27428,"ts":326462227579,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":30,"tts":1485121},
-{"pid":27411,"tid":27428,"ts":326462227609,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1485151},
-{"pid":27411,"tid":27428,"ts":326462227640,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1485151},
-{"pid":27411,"tid":27428,"ts":326462227670,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1485182},
-{"pid":27411,"tid":27428,"ts":326462227670,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1485182},
-{"pid":27411,"tid":27428,"ts":326462227701,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1485212},
-{"pid":27411,"tid":27428,"ts":326462228159,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1485609},
-{"pid":27411,"tid":27428,"ts":326462228159,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1485609},
-{"pid":27411,"tid":27428,"ts":326462228189,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1485640},
-{"pid":27411,"tid":27428,"ts":326462228189,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1485640},
-{"pid":27411,"tid":27428,"ts":326462228220,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1485670},
-{"pid":27411,"tid":27428,"ts":326462228250,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1485701},
-{"pid":27411,"tid":27428,"ts":326462228586,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1486036},
-{"pid":27411,"tid":27428,"ts":326462228617,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1486067},
-{"pid":27411,"tid":27428,"ts":326462228647,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1486067},
-{"pid":27411,"tid":27428,"ts":326462228678,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1486097},
-{"pid":27411,"tid":27428,"ts":326462228708,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1486128},
-{"pid":27411,"tid":27428,"ts":326462228708,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1486128},
-{"pid":27411,"tid":27428,"ts":326462229166,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1486525},
-{"pid":27411,"tid":27428,"ts":326462229166,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1486525},
-{"pid":27411,"tid":27428,"ts":326462229196,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1486555},
-{"pid":27411,"tid":27428,"ts":326462229196,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1486555},
-{"pid":27411,"tid":27428,"ts":326462229227,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1486586},
-{"pid":27411,"tid":27428,"ts":326462229227,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1486586},
-{"pid":27411,"tid":27428,"ts":326462236949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1487196,"id":"0xaf88ca89f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462236949,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1487196},
-{"pid":27411,"tid":27428,"ts":326462236979,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1487227},
-{"pid":27411,"tid":27428,"ts":326462236979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1487227,"id":"0xaf88ca8af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462237010,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1487257,"id":"0xaf88ca8af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462237040,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":6501,"tdur":4059,"tts":1487288},
-{"pid":27411,"tid":27428,"ts":326462237071,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18350},"dur":6348,"tdur":3907,"tts":1487318},
-{"pid":27411,"tid":27428,"ts":326462237101,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":6318,"tdur":3876,"tts":1487349},
-{"pid":27411,"tid":27428,"ts":326462237132,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1487379},
-{"pid":27411,"tid":27428,"ts":326462237162,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1487410},
-{"pid":27411,"tid":27428,"ts":326462237193,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1487440},
-{"pid":27411,"tid":27428,"ts":326462237193,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1487440},
-{"pid":27411,"tid":27428,"ts":326462237223,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":183,"tts":1487471},
-{"pid":27411,"tid":27428,"ts":326462237223,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1487471},
-{"pid":27411,"tid":27428,"ts":326462238261,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1487898},
-{"pid":27411,"tid":27428,"ts":326462238261,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1487929},
-{"pid":27411,"tid":27428,"ts":326462238292,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1487929},
-{"pid":27411,"tid":27428,"ts":326462238292,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1487959},
-{"pid":27411,"tid":27428,"ts":326462238322,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":305,"tdur":305,"tts":1487959},
-{"pid":27411,"tid":27428,"ts":326462238322,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":1487959},
-{"pid":27411,"tid":27428,"ts":326462238444,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1488081},
-{"pid":27411,"tid":27428,"ts":326462238841,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":153,"tdur":31,"tts":1488478},
-{"pid":27411,"tid":27428,"ts":326462238841,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1488478},
-{"pid":27411,"tid":27428,"ts":326462238841,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1488478},
-{"pid":27411,"tid":27428,"ts":326462238994,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1488509},
-{"pid":27411,"tid":27428,"ts":326462238994,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1488509},
-{"pid":27411,"tid":27428,"ts":326462239024,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1488539},
-{"pid":27411,"tid":27428,"ts":326462239024,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1488539},
-{"pid":27411,"tid":27428,"ts":326462239482,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1488936},
-{"pid":27411,"tid":27428,"ts":326462239482,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1488966},
-{"pid":27411,"tid":27428,"ts":326462239512,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1488966},
-{"pid":27411,"tid":27428,"ts":326462239512,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1488997},
-{"pid":27411,"tid":27428,"ts":326462239543,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1488997},
-{"pid":27411,"tid":27428,"ts":326462239573,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1489027},
-{"pid":27411,"tid":27428,"ts":326462239909,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":336,"tdur":61,"tts":1489363},
-{"pid":27411,"tid":27428,"ts":326462239940,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1489394},
-{"pid":27411,"tid":27428,"ts":326462239940,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":30,"tts":1489394},
-{"pid":27411,"tid":27428,"ts":326462240245,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1489424},
-{"pid":27411,"tid":27428,"ts":326462240275,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1489455},
-{"pid":27411,"tid":27428,"ts":326462240275,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":184,"tdur":183,"tts":1489455},
-{"pid":27411,"tid":27428,"ts":326462240306,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1489485},
-{"pid":27411,"tid":27428,"ts":326462241923,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1489851},
-{"pid":27411,"tid":27428,"ts":326462241954,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1489882},
-{"pid":27411,"tid":27428,"ts":326462241985,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1489913},
-{"pid":27411,"tid":27428,"ts":326462241985,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1489913},
-{"pid":27411,"tid":27428,"ts":326462242015,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":153,"tdur":153,"tts":1489943},
-{"pid":27411,"tid":27428,"ts":326462242015,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1489943},
-{"pid":27411,"tid":27428,"ts":326462242381,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1490309},
-{"pid":27411,"tid":27428,"ts":326462242381,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1490309},
-{"pid":27411,"tid":27428,"ts":326462242442,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1490340},
-{"pid":27411,"tid":27428,"ts":326462242473,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1490370},
-{"pid":27411,"tid":27428,"ts":326462242473,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1490370},
-{"pid":27411,"tid":27428,"ts":326462242503,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1490401},
-{"pid":27411,"tid":27428,"ts":326462242931,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1490767},
-{"pid":27411,"tid":27428,"ts":326462242931,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1490767},
-{"pid":27411,"tid":27428,"ts":326462242961,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1490798},
-{"pid":27411,"tid":27428,"ts":326462242961,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1490798},
-{"pid":27411,"tid":27428,"ts":326462242992,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1490828},
-{"pid":27411,"tid":27428,"ts":326462243022,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1490859},
-{"pid":27411,"tid":27428,"ts":326462243358,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoProduceTextureDirectCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78","mailbox[0]":94},"dur":61,"tdur":31,"tts":1491194},
-{"pid":27411,"tid":27428,"ts":326462243572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1491377,"id":"0xaf88ca8bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462243572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":31,"tts":1491408},
-{"pid":27411,"tid":27428,"ts":326462243602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1491408,"id":"0xaf88ca84f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462243633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1491439,"id":"0xaf88ca84f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462243663,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1491469},
-{"pid":27411,"tid":27428,"ts":326462249126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1491561,"id":"0xaf88ca85f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462249157,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1491591},
-{"pid":27411,"tid":27428,"ts":326462249157,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1491591},
-{"pid":27411,"tid":27428,"ts":326462249187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1491622,"id":"0xaf88ca86f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462249218,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1491652,"id":"0xaf88ca86f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462249218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":13917,"tdur":4151,"tts":1491652},
-{"pid":27411,"tid":27428,"ts":326462249248,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":122,"tdur":61,"tts":1491713},
-{"pid":27411,"tid":27428,"ts":326462249401,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":7400},"dur":13734,"tdur":3968,"tts":1491835},
-{"pid":27411,"tid":27428,"ts":326462249401,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":13734,"tdur":3968,"tts":1491835},
-{"pid":27411,"tid":27428,"ts":326462249981,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":45},"dur":61,"tdur":31,"tts":1492415},
-{"pid":27411,"tid":27428,"ts":326462250103,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":205},"dur":30,"tdur":31,"tts":1492537},
-{"pid":27411,"tid":27428,"ts":326462250164,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":14},"dur":31,"tdur":31,"tts":1492598},
-{"pid":27411,"tid":27428,"ts":326462250256,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":54},"dur":0,"tdur":0,"tts":1492690},
-{"pid":27411,"tid":27428,"ts":326462250317,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":17},"dur":30,"tdur":30,"tts":1492751},
-{"pid":27411,"tid":27428,"ts":326462250378,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":42},"dur":30,"tdur":30,"tts":1492812},
-{"pid":27411,"tid":27428,"ts":326462250439,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":29},"dur":30,"tdur":0,"tts":1492904},
-{"pid":27411,"tid":27428,"ts":326462250561,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":158},"dur":0,"tdur":0,"tts":1492995},
-{"pid":27411,"tid":27428,"ts":326462250622,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":231},"dur":91,"tdur":92,"tts":1493056},
-{"pid":27411,"tid":27428,"ts":326462250622,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":92,"tts":1493056},
-{"pid":27411,"tid":27428,"ts":326462250774,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":126},"dur":0,"tdur":0,"tts":1493209},
-{"pid":27411,"tid":27428,"ts":326462250835,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":107},"dur":31,"tdur":30,"tts":1493270},
-{"pid":27411,"tid":27428,"ts":326462250896,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":36},"dur":31,"tdur":0,"tts":1493361},
-{"pid":27411,"tid":27428,"ts":326462250988,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":140},"dur":0,"tdur":0,"tts":1493422},
-{"pid":27411,"tid":27428,"ts":326462251049,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":245},"dur":31,"tdur":31,"tts":1493483},
-{"pid":27411,"tid":27428,"ts":326462251110,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":76},"dur":31,"tdur":31,"tts":1493544},
-{"pid":27411,"tid":27428,"ts":326462251202,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":94},"dur":30,"tdur":31,"tts":1493636},
-{"pid":27411,"tid":27428,"ts":326462251293,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":211},"dur":31,"tdur":30,"tts":1493728},
-{"pid":27411,"tid":27428,"ts":326462251354,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":92},"dur":31,"tdur":0,"tts":1493819},
-{"pid":27411,"tid":27428,"ts":326462251446,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":232},"dur":30,"tdur":0,"tts":1493880},
-{"pid":27411,"tid":27428,"ts":326462251507,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":143},"dur":30,"tdur":31,"tts":1493941},
-{"pid":27411,"tid":27428,"ts":326462252148,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1494582,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462252148,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":152},"dur":10957,"tdur":1190,"tts":1494582},
-{"pid":27411,"tid":27428,"ts":326462252209,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":10804,"tdur":1038,"tts":1494643},
-{"pid":27411,"tid":27428,"ts":326462263044,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1495711},
-{"pid":27411,"tid":27428,"ts":326462263044,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1495711,"id":"0xaf88ceaefec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462263166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495833,"id":"0xaf88ca87f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":62,"tts":1495833},
-{"pid":27411,"tid":27428,"ts":326462263196,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1495864},
-{"pid":27411,"tid":27428,"ts":326462263196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1495864,"id":"0xaf88ca9df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495895,"id":"0xaf88ca80f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":0,"tdur":0,"tts":1495925},
-{"pid":27411,"tid":27428,"ts":326462263257,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":1495925},
-{"pid":27411,"tid":27428,"ts":326462263288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495956,"id":"0xaf88ca81f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1495956},
-{"pid":27411,"tid":27428,"ts":326462263318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495986,"id":"0xaf88ca82f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1495986},
-{"pid":27411,"tid":27428,"ts":326462263349,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":1496017},
-{"pid":27411,"tid":27428,"ts":326462263379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1496047,"id":"0xaf88ca9ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496078,"id":"0xaf88ca83f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":0,"tts":1496078},
-{"pid":27411,"tid":27428,"ts":326462263410,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":1496078},
-{"pid":27411,"tid":27428,"ts":326462263440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496108,"id":"0xaf88ca9cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1496108},
-{"pid":27411,"tid":27428,"ts":326462263471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496139,"id":"0xaf88ca9df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462263471,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3235,"tdur":2686,"tts":1496169},
-{"pid":27411,"tid":27428,"ts":326462263501,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":92,"tts":1496169},
-{"pid":27411,"tid":27428,"ts":326462263623,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18503},"dur":2961,"tdur":2442,"tts":1496291},
-{"pid":27411,"tid":27428,"ts":326462263623,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":2961,"tdur":2411,"tts":1496322},
-{"pid":27411,"tid":27428,"ts":326462263654,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1496322},
-{"pid":27411,"tid":27428,"ts":326462263685,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1496352},
-{"pid":27411,"tid":27428,"ts":326462263715,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1496383},
-{"pid":27411,"tid":27428,"ts":326462263715,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1496383},
-{"pid":27411,"tid":27428,"ts":326462263746,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1496413},
-{"pid":27411,"tid":27428,"ts":326462263746,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1496413},
-{"pid":27411,"tid":27428,"ts":326462264661,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1496841},
-{"pid":27411,"tid":27428,"ts":326462264661,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1496841},
-{"pid":27411,"tid":27428,"ts":326462264692,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1496871},
-{"pid":27411,"tid":27428,"ts":326462264692,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1496871},
-{"pid":27411,"tid":27428,"ts":326462264722,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1496902},
-{"pid":27411,"tid":27428,"ts":326462264722,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1496902},
-{"pid":27411,"tid":27428,"ts":326462265119,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1497268},
-{"pid":27411,"tid":27428,"ts":326462265149,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1497298},
-{"pid":27411,"tid":27428,"ts":326462265149,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1497298},
-{"pid":27411,"tid":27428,"ts":326462265180,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1497329},
-{"pid":27411,"tid":27428,"ts":326462265211,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":184,"tts":1497359},
-{"pid":27411,"tid":27428,"ts":326462265211,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":153,"tts":1497390},
-{"pid":27411,"tid":27428,"ts":326462265607,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1497756},
-{"pid":27411,"tid":27428,"ts":326462265607,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1497756},
-{"pid":27411,"tid":27428,"ts":326462265638,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1497787},
-{"pid":27411,"tid":27428,"ts":326462265638,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1497787},
-{"pid":27411,"tid":27428,"ts":326462265668,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":245,"tdur":244,"tts":1497817},
-{"pid":27411,"tid":27428,"ts":326462265668,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":245,"tdur":183,"tts":1497848},
-{"pid":27411,"tid":27428,"ts":326462265668,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":1497848},
-{"pid":27411,"tid":27428,"ts":326462266126,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1498275},
-{"pid":27411,"tid":27428,"ts":326462266157,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1498306},
-{"pid":27411,"tid":27428,"ts":326462266157,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1498306},
-{"pid":27411,"tid":27428,"ts":326462266187,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1498336},
-{"pid":27411,"tid":27428,"ts":326462266187,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1498336},
-{"pid":27411,"tid":27428,"ts":326462266218,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":152,"tdur":152,"tts":1498367},
-{"pid":27411,"tid":27428,"ts":326462266676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1498824,"id":"0xaf88ca9ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462266737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1498885,"id":"0xaf88ca9ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462266737,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":11292,"tdur":3114,"tts":1498885},
-{"pid":27411,"tid":27428,"ts":326462266767,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":92,"tts":1498916},
-{"pid":27411,"tid":27428,"ts":326462266889,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9762},"dur":11140,"tdur":2961,"tts":1499038},
-{"pid":27411,"tid":27428,"ts":326462266889,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":11140,"tdur":2961,"tts":1499038},
-{"pid":27411,"tid":27428,"ts":326462268690,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1500869,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462268720,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":153},"dur":9279,"tdur":1099,"tts":1500869},
-{"pid":27411,"tid":27428,"ts":326462268751,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":8820,"tdur":976,"tts":1500900},
-{"pid":27411,"tid":27428,"ts":326462277571,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":428,"tdur":92,"tts":1501876},
-{"pid":27411,"tid":27428,"ts":326462277602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1501907,"id":"0xaf88ceaffec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462278060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1502029,"id":"0xaf88ca9ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462278060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":1343,"tdur":1190,"tts":1502029},
-{"pid":27411,"tid":27428,"ts":326462278090,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":91,"tts":1502060},
-{"pid":27411,"tid":27428,"ts":326462278212,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18561},"dur":1129,"tdur":976,"tts":1502182},
-{"pid":27411,"tid":27428,"ts":326462278212,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":1129,"tdur":946,"tts":1502212},
-{"pid":27411,"tid":27428,"ts":326462278243,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1502212},
-{"pid":27411,"tid":27428,"ts":326462278273,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1502243},
-{"pid":27411,"tid":27428,"ts":326462278304,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":0,"tdur":0,"tts":1502273},
-{"pid":27411,"tid":27428,"ts":326462278304,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1502273},
-{"pid":27411,"tid":27428,"ts":326462278334,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1502304},
-{"pid":27411,"tid":27428,"ts":326462278334,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1502304},
-{"pid":27411,"tid":27428,"ts":326462278823,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1502701},
-{"pid":27411,"tid":27428,"ts":326462278853,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1502731},
-{"pid":27411,"tid":27428,"ts":326462278853,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1502731},
-{"pid":27411,"tid":27428,"ts":326462278884,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1502762},
-{"pid":27411,"tid":27428,"ts":326462278884,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1502762},
-{"pid":27411,"tid":27428,"ts":326462278914,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1502792},
-{"pid":27411,"tid":27428,"ts":326462279403,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1503219,"id":"0xaf88ca9bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279433,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503250,"id":"0xaf88ca98f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279433,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1503250},
-{"pid":27411,"tid":27428,"ts":326462279464,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":1503280},
-{"pid":27411,"tid":27428,"ts":326462279464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1503280,"id":"0xaf88ca94f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279494,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503311,"id":"0xaf88ca99f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1503311},
-{"pid":27411,"tid":27428,"ts":326462279525,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":1503341},
-{"pid":27411,"tid":27428,"ts":326462279555,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503372,"id":"0xaf88ca9af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279555,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":0,"tts":1503372},
-{"pid":27411,"tid":27428,"ts":326462279586,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503403,"id":"0xaf88ca9bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279586,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1503403},
-{"pid":27411,"tid":27428,"ts":326462279616,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1503433,"id":"0xaf88ca95f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503464,"id":"0xaf88ca94f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462279647,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":12788,"tdur":3265,"tts":1503464},
-{"pid":27411,"tid":27428,"ts":326462279677,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1503494},
-{"pid":27411,"tid":27428,"ts":326462279769,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12124},"dur":12635,"tdur":3113,"tts":1503586},
-{"pid":27411,"tid":27428,"ts":326462279799,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":12605,"tdur":3083,"tts":1503616},
-{"pid":27411,"tid":27428,"ts":326462281630,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1505447,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462281630,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":154},"dur":10744,"tdur":1221,"tts":1505447},
-{"pid":27411,"tid":27428,"ts":326462281692,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":10376,"tdur":1038,"tts":1505508},
-{"pid":27411,"tid":27428,"ts":326462292068,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":306,"tdur":91,"tts":1506577},
-{"pid":27411,"tid":27428,"ts":326462292099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1506607,"id":"0xaf88cea8fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462292435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1506729,"id":"0xaf88ca95f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462292465,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":3693,"tdur":2167,"tts":1506760},
-{"pid":27411,"tid":27428,"ts":326462292465,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":153,"tdur":61,"tts":1506790},
-{"pid":27411,"tid":27428,"ts":326462292648,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18713},"dur":3449,"tdur":1984,"tts":1506882},
-{"pid":27411,"tid":27428,"ts":326462292679,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":3418,"tdur":1923,"tts":1506912},
-{"pid":27411,"tid":27474,"ts":326462273543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":110025,"id":"0xaf88ca98f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462273543,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":110025},
-{"pid":27411,"tid":27474,"ts":326462274885,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":92,"tdur":61,"tts":110148},
-{"pid":27411,"tid":27474,"ts":326462274916,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":110148},
-{"pid":27411,"tid":27474,"ts":326462274947,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110178,"id":"0xccc63602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462274947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":110178,"id":"0xaf88ca99f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462275191,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":110209},
-{"pid":27411,"tid":27474,"ts":326462275221,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":110239},
-{"pid":27411,"tid":27474,"ts":326462275221,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110239,"id":"0xccc63706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462275252,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110270,"id":"0xc4c2410a"},
-{"pid":27411,"tid":27474,"ts":326462275282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":110300,"id":"0xaf88ca9af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462277693,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":110422,"id":"0xaf88ceaffec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462277693,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":110422},
-{"pid":27411,"tid":27474,"ts":326462277724,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110453,"id":"0xc4c24202"},
-{"pid":27411,"tid":27474,"ts":326462292221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":110544,"id":"0xaf88cea8fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462292252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":30,"tts":110575},
-{"pid":27411,"tid":27474,"ts":326462292252,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110575,"id":"0xc4c24402"},
-{"pid":27411,"tid":27474,"ts":326462295548,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":110697},
-{"pid":27411,"tid":27474,"ts":326462295578,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":110758},
-{"pid":27411,"tid":27474,"ts":326462295609,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110758,"id":"0xba46e102","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462295639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":110788,"id":"0xaf88ca96f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462295914,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":92,"tts":110880},
-{"pid":27411,"tid":27474,"ts":326462295975,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":110911},
-{"pid":27411,"tid":27474,"ts":326462295975,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":110911,"id":"0xccc63902","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462296006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":110941,"id":"0xaf88ca97f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462296128,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":111002},
-{"pid":27411,"tid":27474,"ts":326462296158,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":91,"tts":111033},
-{"pid":27411,"tid":27474,"ts":326462296158,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111033,"id":"0xccc63a06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462296189,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111063,"id":"0xc4c2450a"},
-{"pid":27411,"tid":27474,"ts":326462296250,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":111124,"id":"0xaf88ca93f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462307237,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":122,"tts":111216},
-{"pid":27411,"tid":27474,"ts":326462307268,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":111277},
-{"pid":27411,"tid":27474,"ts":326462307298,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111277,"id":"0xba46e402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462307329,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":111307,"id":"0xaf88caadf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462308275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":111429,"id":"0xaf88cea9fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462308305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":111460},
-{"pid":27411,"tid":27474,"ts":326462308305,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111490,"id":"0xc4c24602"},
-{"pid":27411,"tid":27474,"ts":326462308427,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":275,"tdur":275,"tts":111582},
-{"pid":27411,"tid":27474,"ts":326462308458,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":111612},
-{"pid":27411,"tid":27474,"ts":326462308488,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111643,"id":"0xccc63c02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462308519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":111674,"id":"0xaf88caaef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462308549,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":153,"tdur":153,"tts":111704},
-{"pid":27411,"tid":27474,"ts":326462308549,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111735,"id":"0xccc63d06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462308611,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":111765,"id":"0xc4c2480a"},
-{"pid":27411,"tid":27474,"ts":326462308672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":111826,"id":"0xaf88caaff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462323749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":153,"tts":111948},
-{"pid":27411,"tid":27474,"ts":326462323779,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":122,"tdur":122,"tts":111979},
-{"pid":27411,"tid":27474,"ts":326462323810,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112009,"id":"0xba46e702","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462323871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":112070,"id":"0xaf88caabf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462324908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":112223,"id":"0xaf88ceaafec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462324908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":112223},
-{"pid":27411,"tid":27474,"ts":326462324908,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112223,"id":"0xc4c24a02"},
-{"pid":27411,"tid":27474,"ts":326462326282,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":123,"tts":112314},
-{"pid":27411,"tid":27474,"ts":326462326312,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":112345},
-{"pid":27411,"tid":27474,"ts":326462326312,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112345,"id":"0xccc63f06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462326343,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112376,"id":"0xc4c24b0a"},
-{"pid":27411,"tid":27474,"ts":326462326373,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":112406,"id":"0xaf88caa7f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462341206,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":61,"tts":112498},
-{"pid":27411,"tid":27474,"ts":326462341237,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":112528},
-{"pid":27411,"tid":27474,"ts":326462341237,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112528,"id":"0xba46ea02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462341267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":112559,"id":"0xaf88caa0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462341511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":112650,"id":"0xaf88ceabfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462341511,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":112650},
-{"pid":27411,"tid":27474,"ts":326462341511,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112650,"id":"0xc4c24c02"},
-{"pid":27411,"tid":27428,"ts":326462292709,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":122,"tdur":91,"tts":1506943},
-{"pid":27411,"tid":27428,"ts":326462292709,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1506943},
-{"pid":27411,"tid":27428,"ts":326462292770,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1507004},
-{"pid":27411,"tid":27428,"ts":326462292831,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1507065},
-{"pid":27411,"tid":27428,"ts":326462292831,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1507065},
-{"pid":27411,"tid":27428,"ts":326462292862,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":184,"tts":1507095},
-{"pid":27411,"tid":27428,"ts":326462292893,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":184,"tts":1507095},
-{"pid":27411,"tid":27428,"ts":326462293198,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1507401},
-{"pid":27411,"tid":27428,"ts":326462293198,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1507401},
-{"pid":27411,"tid":27428,"ts":326462293228,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1507431},
-{"pid":27411,"tid":27428,"ts":326462293228,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1507431},
-{"pid":27411,"tid":27428,"ts":326462293259,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":1648,"tdur":213,"tts":1507462},
-{"pid":27411,"tid":27428,"ts":326462293259,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1465,"tdur":30,"tts":1507462},
-{"pid":27411,"tid":27428,"ts":326462294754,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1507523},
-{"pid":27411,"tid":27428,"ts":326462295059,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1507828},
-{"pid":27411,"tid":27428,"ts":326462295090,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1507858},
-{"pid":27411,"tid":27428,"ts":326462295090,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1507858},
-{"pid":27411,"tid":27428,"ts":326462295121,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1507889},
-{"pid":27411,"tid":27428,"ts":326462295121,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1507889},
-{"pid":27411,"tid":27428,"ts":326462295151,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":152,"tts":1507920},
-{"pid":27411,"tid":27428,"ts":326462295365,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1508133},
-{"pid":27411,"tid":27428,"ts":326462295395,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1508164},
-{"pid":27411,"tid":27428,"ts":326462295395,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":61,"tdur":0,"tts":1508194},
-{"pid":27411,"tid":27428,"ts":326462295426,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1508194},
-{"pid":27411,"tid":27428,"ts":326462295456,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":183,"tts":1508225},
-{"pid":27411,"tid":27428,"ts":326462295456,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1508225},
-{"pid":27411,"tid":27428,"ts":326462295731,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1508499},
-{"pid":27411,"tid":27428,"ts":326462295731,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1508499},
-{"pid":27411,"tid":27428,"ts":326462295761,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1508530},
-{"pid":27411,"tid":27428,"ts":326462295761,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1508560},
-{"pid":27411,"tid":27428,"ts":326462295792,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":183,"tdur":184,"tts":1508560},
-{"pid":27411,"tid":27428,"ts":326462295822,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":153,"tdur":153,"tts":1508591},
-{"pid":27411,"tid":27428,"ts":326462296128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1508896,"id":"0xaf88ca90f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296158,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1508927,"id":"0xaf88ca91f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1508957,"id":"0xaf88ca96f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1508957},
-{"pid":27411,"tid":27428,"ts":326462296189,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1508957},
-{"pid":27411,"tid":27428,"ts":326462296219,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1508988,"id":"0xaf88ca92f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296250,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1509018,"id":"0xaf88ca97f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296280,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":0,"tdur":0,"tts":1509049},
-{"pid":27411,"tid":27428,"ts":326462296280,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":1509049},
-{"pid":27411,"tid":27428,"ts":326462296311,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1509079,"id":"0xaf88ca91f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296311,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1509079},
-{"pid":27411,"tid":27428,"ts":326462296341,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1509110,"id":"0xaf88caacf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1509140,"id":"0xaf88ca92f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462296372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":11903,"tdur":3693,"tts":1509140},
-{"pid":27411,"tid":27428,"ts":326462296402,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":1509171},
-{"pid":27411,"tid":27428,"ts":326462296524,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14486},"dur":11751,"tdur":3540,"tts":1509293},
-{"pid":27411,"tid":27428,"ts":326462296555,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":11720,"tdur":3510,"tts":1509323},
-{"pid":27411,"tid":27428,"ts":326462298539,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1511307,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462298539,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":155},"dur":9705,"tdur":1496,"tts":1511307},
-{"pid":27411,"tid":27428,"ts":326462298600,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":9522,"tdur":1343,"tts":1511368},
-{"pid":27411,"tid":27428,"ts":326462308153,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":61,"tts":1512742},
-{"pid":27411,"tid":27428,"ts":326462308153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1512742,"id":"0xaf88cea9fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462308305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462298},"tts":1512864,"id":"0xaf88ca90f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":213,"tdur":214,"tts":1512894},
-{"pid":27411,"tid":27428,"ts":326462308336,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":213,"tdur":214,"tts":1512894},
-{"pid":27411,"tid":27428,"ts":326462308366,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":61,"tdur":61,"tts":1512925},
-{"pid":27411,"tid":27428,"ts":326462308549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513108,"id":"0xaf88ca93f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":0,"tts":1513139},
-{"pid":27411,"tid":27428,"ts":326462308611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513169,"id":"0xaf88caacf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":122,"tdur":122,"tts":1513169},
-{"pid":27411,"tid":27428,"ts":326462308641,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18725},"dur":61,"tdur":61,"tts":1513200},
-{"pid":27411,"tid":27428,"ts":326462308672,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":0,"tdur":0,"tts":1513230},
-{"pid":27411,"tid":27428,"ts":326462308702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1513261,"id":"0xaf88caa8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513291,"id":"0xaf88caadf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1513291},
-{"pid":27411,"tid":27428,"ts":326462308763,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1513322},
-{"pid":27411,"tid":27428,"ts":326462308763,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1513322,"id":"0xaf88caa9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513352,"id":"0xaf88caaef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1513352},
-{"pid":27411,"tid":27428,"ts":326462308824,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":0,"tdur":0,"tts":1513383},
-{"pid":27411,"tid":27428,"ts":326462308855,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513413,"id":"0xaf88caaff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308855,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1513413},
-{"pid":27411,"tid":27428,"ts":326462308885,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513444,"id":"0xaf88caa8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308885,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1513444},
-{"pid":27411,"tid":27428,"ts":326462308916,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1513474,"id":"0xaf88caaaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513505,"id":"0xaf88caa9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462308946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":15962,"tdur":3052,"tts":1513505},
-{"pid":27411,"tid":27428,"ts":326462308977,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1513535},
-{"pid":27411,"tid":27428,"ts":326462309038,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":472},"dur":15870,"tdur":2930,"tts":1513627},
-{"pid":27411,"tid":27428,"ts":326462309068,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":15840,"tdur":2899,"tts":1513627},
-{"pid":27411,"tid":27428,"ts":326462311022,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1515580,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462311022,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":156},"dur":13856,"tdur":946,"tts":1515580},
-{"pid":27411,"tid":27428,"ts":326462311052,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":13734,"tdur":794,"tts":1515641},
-{"pid":27411,"tid":27428,"ts":326462324817,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1516465},
-{"pid":27411,"tid":27428,"ts":326462324817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1516496,"id":"0xaf88ceaafec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462324939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1516587,"id":"0xaf88caaaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462324939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":214,"tts":1516587},
-{"pid":27411,"tid":27428,"ts":326462324969,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":92,"tdur":91,"tts":1516618},
-{"pid":27411,"tid":27428,"ts":326462325061,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18732},"dur":61,"tdur":61,"tts":1516709},
-{"pid":27411,"tid":27428,"ts":326462325092,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":30,"tdur":30,"tts":1516740},
-{"pid":27411,"tid":27428,"ts":326462325122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1516770,"id":"0xaf88caa4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462325153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1516831,"id":"0xaf88caabf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462325183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":1516831},
-{"pid":27411,"tid":27428,"ts":326462325183,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1516831},
-{"pid":27411,"tid":27428,"ts":326462325214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1516862,"id":"0xaf88caa5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462325214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1516893,"id":"0xaf88caa4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462325244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1516893},
-{"pid":27411,"tid":27428,"ts":326462325244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1516923,"id":"0xaf88caa6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462325275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1516923,"id":"0xaf88caa5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462325305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":16206,"tdur":2960,"tts":1516954},
-{"pid":27411,"tid":27428,"ts":326462325305,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":61,"tdur":61,"tts":1516954},
-{"pid":27411,"tid":27428,"ts":326462325397,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2834},"dur":16114,"tdur":2869,"tts":1517045},
-{"pid":27411,"tid":27428,"ts":326462325397,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":16114,"tdur":2839,"tts":1517045},
-{"pid":27411,"tid":27428,"ts":326462327167,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1518815,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462327167,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":157},"dur":14314,"tdur":1069,"tts":1518815},
-{"pid":27411,"tid":27428,"ts":326462327228,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":14192,"tdur":946,"tts":1518876},
-{"pid":27411,"tid":27428,"ts":326462341420,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":62,"tts":1519822},
-{"pid":27411,"tid":27428,"ts":326462341420,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1519853,"id":"0xaf88ceabfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462341542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1519945,"id":"0xaf88caa6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":214,"tdur":213,"tts":1519945},
-{"pid":27411,"tid":27428,"ts":326462341573,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":91,"tdur":61,"tts":1519975},
-{"pid":27411,"tid":27428,"ts":326462341664,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18737},"dur":61,"tdur":61,"tts":1520067},
-{"pid":27411,"tid":27428,"ts":326462341695,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":30,"tdur":31,"tts":1520097},
-{"pid":27411,"tid":27428,"ts":326462341725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1520128,"id":"0xaf88caa1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1520158,"id":"0xaf88caa7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":1520189},
-{"pid":27411,"tid":27428,"ts":326462341817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1520219,"id":"0xaf88caa0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":1520219},
-{"pid":27411,"tid":27428,"ts":326462341817,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1520219},
-{"pid":27411,"tid":27428,"ts":326462341847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1520250,"id":"0xaf88caa2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1520280,"id":"0xaf88caa1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":31,"tts":1520280},
-{"pid":27411,"tid":27428,"ts":326462341908,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1520311,"id":"0xaf88caa3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1520341,"id":"0xaf88caa2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462341939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":16298,"tdur":2961,"tts":1520341},
-{"pid":27411,"tid":27428,"ts":326462341969,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":31,"tdur":30,"tts":1520372},
-{"pid":27411,"tid":27428,"ts":326462342030,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":5196},"dur":16176,"tdur":2838,"tts":1520433},
-{"pid":27411,"tid":27428,"ts":326462342030,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1520433},
-{"pid":27411,"tid":27428,"ts":326462342091,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":16115,"tdur":2777,"tts":1520494},
-{"pid":27411,"tid":27428,"ts":326462343862,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1522264,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462343892,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":158},"dur":14314,"tdur":976,"tts":1522295},
-{"pid":27411,"tid":27428,"ts":326462343923,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":14192,"tdur":855,"tts":1522325},
-{"pid":27411,"tid":27428,"ts":326462358145,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":31,"tdur":31,"tts":1523210},
-{"pid":27411,"tid":27428,"ts":326462358145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1523210,"id":"0xaf88cea4fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462358267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1523332,"id":"0xaf88caa3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1523332},
-{"pid":27411,"tid":27428,"ts":326462358298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1523363,"id":"0xaf88cabcf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358328,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":1523393},
-{"pid":27411,"tid":27428,"ts":326462358328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1523393,"id":"0xaf88cabef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1523424,"id":"0xaf88cabdf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":31,"tts":1523454},
-{"pid":27411,"tid":27428,"ts":326462358389,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1523454},
-{"pid":27411,"tid":27428,"ts":326462358389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1523454,"id":"0xaf88cabff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358420,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1523485,"id":"0xaf88cabef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1523515},
-{"pid":27411,"tid":27428,"ts":326462358481,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1523546,"id":"0xaf88cabff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462358481,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":16450,"tdur":2869,"tts":1523546},
-{"pid":27411,"tid":27428,"ts":326462358511,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":7558},"dur":16420,"tdur":2839,"tts":1523576},
-{"pid":27411,"tid":27428,"ts":326462358542,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":16389,"tdur":2808,"tts":1523607},
-{"pid":27411,"tid":27428,"ts":326462360343,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1525408,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462360343,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":159},"dur":14558,"tdur":976,"tts":1525408},
-{"pid":27411,"tid":27428,"ts":326462360373,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":14467,"tdur":824,"tts":1525469},
-{"pid":27411,"tid":27428,"ts":326462374840,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1526323},
-{"pid":27411,"tid":27428,"ts":326462374870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1526354,"id":"0xaf88cea5fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462374962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1526445,"id":"0xaf88cab8f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462374962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":30,"tts":1526476},
-{"pid":27411,"tid":27428,"ts":326462374992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1526476,"id":"0xaf88cab9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462375023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1526506,"id":"0xaf88cab9f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462375053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1526537},
-{"pid":27411,"tid":27428,"ts":326462377007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1526629,"id":"0xaf88cabaf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462377007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1526629},
-{"pid":27411,"tid":27428,"ts":326462377037,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1526659},
-{"pid":27411,"tid":27428,"ts":326462377037,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1526659,"id":"0xaf88cabbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462377068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1526690,"id":"0xaf88cabbf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462377098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":14558,"tdur":2869,"tts":1526720},
-{"pid":27411,"tid":27428,"ts":326462377129,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":9920},"dur":14497,"tdur":2807,"tts":1526751},
-{"pid":27411,"tid":27428,"ts":326462377129,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":14497,"tdur":2807,"tts":1526751},
-{"pid":27411,"tid":27428,"ts":326462379204,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1528582,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462379204,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":160},"dur":12422,"tdur":976,"tts":1528582},
-{"pid":27411,"tid":27428,"ts":326462379265,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":12239,"tdur":854,"tts":1528643},
-{"pid":27411,"tid":27428,"ts":326462391504,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":31,"tts":1529497},
-{"pid":27411,"tid":27428,"ts":326462391534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1529528,"id":"0xaf88cea6fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462391687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1529620,"id":"0xaf88cab4f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462391687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":1529620},
-{"pid":27411,"tid":27428,"ts":326462391717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1529650,"id":"0xaf88cab6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462391748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1529681,"id":"0xaf88cab5f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462391748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1529681},
-{"pid":27411,"tid":27428,"ts":326462391748,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1529681},
-{"pid":27411,"tid":27428,"ts":326462391779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1529711,"id":"0xaf88cab7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462391809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1529742,"id":"0xaf88cab6f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462391809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":30,"tts":1529742},
-{"pid":27411,"tid":27428,"ts":326462391840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1529772,"id":"0xaf88cab7f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462391870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":16451,"tdur":3448,"tts":1529803},
-{"pid":27411,"tid":27428,"ts":326462391901,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":12282},"dur":16420,"tdur":3418,"tts":1529833},
-{"pid":27411,"tid":27428,"ts":326462391901,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":16420,"tdur":3387,"tts":1529864},
-{"pid":27411,"tid":27428,"ts":326462393701,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1531634,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462393701,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":161},"dur":14589,"tdur":1587,"tts":1531634},
-{"pid":27411,"tid":27428,"ts":326462393732,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":14497,"tdur":1465,"tts":1531664},
-{"pid":27411,"tid":27428,"ts":326462408229,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1533160},
-{"pid":27411,"tid":27428,"ts":326462408260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1533190,"id":"0xaf88cea7fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462342976,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":184,"tdur":183,"tts":112742},
-{"pid":27411,"tid":27474,"ts":326462342976,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":112742},
-{"pid":27411,"tid":27474,"ts":326462343068,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":112833},
-{"pid":27411,"tid":27474,"ts":326462343068,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112833,"id":"0xccc64106","bp":"e"},{"pid":27411,"tid":27474,"ts":326462343099,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":112864,"id":"0xc4c24e0a"},
-{"pid":27411,"tid":27474,"ts":326462343129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":112894,"id":"0xaf88cabcf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462357168,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":92,"tdur":61,"tts":112986},
-{"pid":27411,"tid":27474,"ts":326462357199,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":112986},
-{"pid":27411,"tid":27474,"ts":326462357229,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113016,"id":"0xba46ed02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462357229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":113016,"id":"0xaf88cabdf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462358206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":113108,"id":"0xaf88cea4fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462358237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":113139},
-{"pid":27411,"tid":27474,"ts":326462358237,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113139,"id":"0xc4c24f02"},
-{"pid":27411,"tid":27474,"ts":326462359915,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":275,"tdur":274,"tts":113261},
-{"pid":27411,"tid":27474,"ts":326462359946,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":213,"tdur":183,"tts":113322},
-{"pid":27411,"tid":27474,"ts":326462359976,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113322,"id":"0xccc64306","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462359976,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":113322},
-{"pid":27411,"tid":27474,"ts":326462360068,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113413,"id":"0xc4c2510a"},
-{"pid":27411,"tid":27474,"ts":326462360129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":113505,"id":"0xaf88cab8f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462374931,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":113627,"id":"0xaf88cea5fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462374931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":113627},
-{"pid":27411,"tid":27474,"ts":326462374962,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113657,"id":"0xc4c25202"},
-{"pid":27411,"tid":27474,"ts":326462376885,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":113749},
-{"pid":27411,"tid":27474,"ts":326462376915,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":113779},
-{"pid":27411,"tid":27474,"ts":326462376915,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113779,"id":"0xba46f002","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462376946,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":113810,"id":"0xaf88cabaf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462377007,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":92,"tts":113871},
-{"pid":27411,"tid":27474,"ts":326462377037,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":61,"tdur":61,"tts":113902},
-{"pid":27411,"tid":27474,"ts":326462377037,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113902,"id":"0xccc64506","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462377037,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":113902,"id":"0xc4c2540a"},
-{"pid":27411,"tid":27474,"ts":326462377098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":113963,"id":"0xaf88cab4f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462391321,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":61,"tdur":61,"tts":114024},
-{"pid":27411,"tid":27474,"ts":326462391351,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":114054},
-{"pid":27411,"tid":27474,"ts":326462391351,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":114054,"id":"0xba46f302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462391382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":114085,"id":"0xaf88cab5f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462391626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":114237,"id":"0xaf88cea6fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462391626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":114237},
-{"pid":27411,"tid":27474,"ts":326462391656,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":114268,"id":"0xc4c25502"},
-{"pid":27411,"tid":27474,"ts":326462393945,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":245,"tdur":214,"tts":114420},
-{"pid":27411,"tid":27474,"ts":326462394007,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":183,"tdur":183,"tts":114451},
-{"pid":27411,"tid":27474,"ts":326462394037,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":114481,"id":"0xccc64706","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462394068,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":114512,"id":"0xc4c2570a"},
-{"pid":27411,"tid":27474,"ts":326462394159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":114603,"id":"0xaf88cab0f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462407832,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":214,"tdur":214,"tts":114756},
-{"pid":27411,"tid":27474,"ts":326462407924,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":114848},
-{"pid":27411,"tid":27474,"ts":326462407924,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":114878,"id":"0xba46f602","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462407985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":114909,"id":"0xaf88cab1f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462408321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":115061,"id":"0xaf88cea7fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462408321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":115061},
-{"pid":27411,"tid":27474,"ts":326462408351,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115092,"id":"0xc4c25802"},
-{"pid":27411,"tid":27474,"ts":326462409450,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":115214},
-{"pid":27411,"tid":27474,"ts":326462409480,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":123,"tts":115244},
-{"pid":27411,"tid":27474,"ts":326462409480,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115244,"id":"0xccc64906","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462409511,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115275,"id":"0xc4c25a0a"},
-{"pid":27411,"tid":27474,"ts":326462409572,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":115336,"id":"0xaf88cb4cf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462424588,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":153,"tdur":122,"tts":115458},
-{"pid":27411,"tid":27474,"ts":326462424649,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":115489},
-{"pid":27411,"tid":27474,"ts":326462424649,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115519,"id":"0xba46f902","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462424679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":115550,"id":"0xaf88cb4df3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462425442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":115672,"id":"0xaf88cea0fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462425442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":31,"tts":115702},
-{"pid":27411,"tid":27474,"ts":326462425473,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115702,"id":"0xc4c25b02"},
-{"pid":27411,"tid":27474,"ts":326462427396,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":214,"tts":115824},
-{"pid":27411,"tid":27474,"ts":326462427457,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":183,"tdur":183,"tts":115855},
-{"pid":27411,"tid":27428,"ts":326462408351,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1533282,"id":"0xaf88cab0f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462408382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":92,"tts":1533312},
-{"pid":27411,"tid":27428,"ts":326462408382,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":31,"tts":1533312},
-{"pid":27411,"tid":27428,"ts":326462408656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1533374,"id":"0xaf88cab2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462408687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1533404,"id":"0xaf88cab1f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462408687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":30,"tts":1533435},
-{"pid":27411,"tid":27428,"ts":326462408717,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1533435},
-{"pid":27411,"tid":27428,"ts":326462408717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1533435,"id":"0xaf88cab3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462408748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1533465,"id":"0xaf88cab2f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462408778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1533496},
-{"pid":27411,"tid":27428,"ts":326462408809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1533526,"id":"0xaf88cab3f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462408809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":16695,"tdur":4090,"tts":1533526},
-{"pid":27411,"tid":27428,"ts":326462408839,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":14644},"dur":16634,"tdur":3998,"tts":1533587},
-{"pid":27411,"tid":27428,"ts":326462408870,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":16603,"tdur":3998,"tts":1533587},
-{"pid":27411,"tid":27428,"ts":326462411128,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1535571,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462411159,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":162},"dur":14283,"tdur":1953,"tts":1535602},
-{"pid":27411,"tid":27428,"ts":326462411189,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":14070,"tdur":1740,"tts":1535632},
-{"pid":27411,"tid":27428,"ts":326462425290,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1537402},
-{"pid":27411,"tid":27428,"ts":326462425320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1537433,"id":"0xaf88cea0fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462425565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1537677,"id":"0xaf88cb4cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462425565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":61,"tts":1537707},
-{"pid":27411,"tid":27428,"ts":326462425626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1537738,"id":"0xaf88cb4ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462425717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1537829,"id":"0xaf88cb4df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462425748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1537860},
-{"pid":27411,"tid":27428,"ts":326462425778,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1537891},
-{"pid":27411,"tid":27428,"ts":326462425809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1537952,"id":"0xaf88cb4ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462425900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1538043,"id":"0xaf88cb4ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462425931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":61,"tdur":61,"tts":1538043},
-{"pid":27411,"tid":27428,"ts":326462426022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1538135,"id":"0xaf88cb4ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462426053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":15687,"tdur":6135,"tts":1538165},
-{"pid":27411,"tid":27428,"ts":326462426144,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":622},"dur":15596,"tdur":6043,"tts":1538257},
-{"pid":27411,"tid":27428,"ts":326462426175,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":15565,"tdur":6013,"tts":1538287},
-{"pid":27411,"tid":27428,"ts":326462430600,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1542713,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462430631,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":163},"dur":11079,"tdur":1495,"tts":1542774},
-{"pid":27411,"tid":27428,"ts":326462430753,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":10865,"tdur":1313,"tts":1542865},
-{"pid":27411,"tid":27428,"ts":326462441649,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1544208},
-{"pid":27411,"tid":27428,"ts":326462441649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1544208,"id":"0xaf88cea1fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462441771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1544330,"id":"0xaf88cb48f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462441771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1544330},
-{"pid":27411,"tid":27428,"ts":326462441801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1544361,"id":"0xaf88cb49f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462441832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1544391,"id":"0xaf88cb49f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462441862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":0,"tdur":0,"tts":1544422},
-{"pid":27411,"tid":27428,"ts":326462442107,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1544513,"id":"0xaf88cb4af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462442137,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1544544},
-{"pid":27411,"tid":27428,"ts":326462442137,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1544544},
-{"pid":27411,"tid":27428,"ts":326462442168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1544574,"id":"0xaf88cb4bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462442198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1544605,"id":"0xaf88cb4bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462442198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":16695,"tdur":3785,"tts":1544605},
-{"pid":27411,"tid":27428,"ts":326462442229,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":2984},"dur":16664,"tdur":3724,"tts":1544666},
-{"pid":27411,"tid":27428,"ts":326462442259,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":16603,"tdur":3693,"tts":1544666},
-{"pid":27411,"tid":27428,"ts":326462444792,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1546986,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462444823,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":164},"dur":14039,"tdur":1373,"tts":1546986},
-{"pid":27411,"tid":27428,"ts":326462444884,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":13612,"tdur":1159,"tts":1547047},
-{"pid":27411,"tid":27428,"ts":326462458527,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":335,"tdur":91,"tts":1548237},
-{"pid":27411,"tid":27428,"ts":326462458557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1548267,"id":"0xaf88cea2fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462458954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1548451,"id":"0xaf88cb44f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462458954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":1548451},
-{"pid":27411,"tid":27428,"ts":326462458984,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1548481,"id":"0xaf88cb45f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462459045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1548542,"id":"0xaf88cb45f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462459045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":31,"tdur":31,"tts":1548542},
-{"pid":27411,"tid":27428,"ts":326462460968,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1548695,"id":"0xaf88cb46f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462460999,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1548725},
-{"pid":27411,"tid":27428,"ts":326462461029,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":1548756},
-{"pid":27411,"tid":27428,"ts":326462461060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1548817,"id":"0xaf88cb47f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462427457,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115855,"id":"0xccc64b06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462427457,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":115855},
-{"pid":27411,"tid":27474,"ts":326462427548,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":115946,"id":"0xc4c25d0a"},
-{"pid":27411,"tid":27474,"ts":326462427609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":116007,"id":"0xaf88cb48f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462441740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":116130,"id":"0xaf88cea1fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462441771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":116160},
-{"pid":27411,"tid":27474,"ts":326462441771,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":116160,"id":"0xc4c25e02"},
-{"pid":27411,"tid":27474,"ts":326462441985,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":91,"tdur":91,"tts":116252},
-{"pid":27411,"tid":27474,"ts":326462442015,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":116282},
-{"pid":27411,"tid":27474,"ts":326462442015,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":116282,"id":"0xba46fc02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462442046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":116313,"id":"0xaf88cb4af3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462443938,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":152,"tdur":153,"tts":116404},
-{"pid":27411,"tid":27474,"ts":326462443968,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":122,"tdur":122,"tts":116435},
-{"pid":27411,"tid":27474,"ts":326462443999,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":116465,"id":"0xccc64e06","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462443999,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":116465,"id":"0xc4c2600a"},
-{"pid":27411,"tid":27474,"ts":326462444060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":116526,"id":"0xaf88cb44f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462458710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":116679,"id":"0xaf88cea2fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462458740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":116709},
-{"pid":27411,"tid":27474,"ts":326462458740,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":116709,"id":"0xc4c26102"},
-{"pid":27411,"tid":27474,"ts":326462460755,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":152,"tdur":153,"tts":116862},
-{"pid":27411,"tid":27474,"ts":326462460785,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":122,"tdur":122,"tts":116893},
-{"pid":27411,"tid":27474,"ts":326462460816,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":116923,"id":"0xba470402","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462460846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":116954,"id":"0xaf88cb46f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462475710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":117106,"id":"0xaf88cea3fec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462475740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":117106},
-{"pid":27411,"tid":27474,"ts":326462475771,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117137,"id":"0xc4c26302"},
-{"pid":27411,"tid":27474,"ts":326462695059,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":153,"tdur":153,"tts":117228},
-{"pid":27411,"tid":27474,"ts":326462695090,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":92,"tdur":61,"tts":117289},
-{"pid":27411,"tid":27474,"ts":326462695121,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117289,"id":"0xccc66202","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462695151,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":117320,"id":"0xaf88cb40f3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462703727,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":244,"tdur":214,"tts":117442},
-{"pid":27411,"tid":27474,"ts":326462703758,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":117472},
-{"pid":27411,"tid":27474,"ts":326462703788,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117503,"id":"0xccc66302","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462703788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":117503,"id":"0xaf88cb5ef3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462703849,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":611},"dur":92,"tdur":92,"tts":117564},
-{"pid":27411,"tid":27474,"ts":326462703849,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117564,"id":"0xccc66406","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462703880,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117594,"id":"0xc4c2640a"},
-{"pid":27411,"tid":27474,"ts":326462703941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":117656,"id":"0xaf88cb5ff3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462710716,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":58},"dur":122,"tdur":91,"tts":117717},
-{"pid":27411,"tid":27474,"ts":326462710777,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":117747},
-{"pid":27411,"tid":27474,"ts":326462710777,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117747,"id":"0xba471b02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":326462710808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":117778,"id":"0xaf88cb5bf3321ac2"},
-{"pid":27411,"tid":27474,"ts":326462719018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":117900,"id":"0xaf88cebcfec55fe2"},
-{"pid":27411,"tid":27474,"ts":326462719018,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":117900},
-{"pid":27411,"tid":27474,"ts":326462719048,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":117930,"id":"0xc4c26602"},
-{"pid":27411,"tid":27474,"ts":326463172825,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"tdur":0,"tts":118022},
-{"pid":27411,"tid":27474,"ts":326463172886,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":61,"line":40},"tdur":0,"tts":118083},
-{"pid":27411,"tid":27474,"ts":326463172886,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":118083,"id":"0xba471e02","bp":"e"},
-{"pid":27411,"tid":27474,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.010443708609271523}},
-{"pid":27411,"tid":27428,"ts":326462461151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1548908,"id":"0xaf88cb47f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462461151,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":92,"tts":1548908},
-{"pid":27411,"tid":27428,"ts":326462461304,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":14436,"tdur":6227,"tts":1549030},
-{"pid":27411,"tid":27428,"ts":326462461395,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":5346},"dur":14315,"tdur":6104,"tts":1549122},
-{"pid":27411,"tid":27428,"ts":326462461426,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":14284,"tdur":6043,"tts":1549183},
-{"pid":27411,"tid":27428,"ts":326462461426,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1549183},
-{"pid":27411,"tid":27428,"ts":326462466126,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1553853,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462466157,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":165},"dur":9553,"tdur":1343,"tts":1553883},
-{"pid":27411,"tid":27428,"ts":326462466279,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":9339,"tdur":1099,"tts":1554036},
-{"pid":27411,"tid":27428,"ts":326462475618,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1555135},
-{"pid":27411,"tid":27428,"ts":326462475649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1555165,"id":"0xaf88cea3fec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462695243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1555348,"id":"0xaf88cb40f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462695243,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1555348},
-{"pid":27411,"tid":27428,"ts":326462695273,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1555379},
-{"pid":27411,"tid":27428,"ts":326462695304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1555409,"id":"0xaf88cb41f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462695334,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1555440,"id":"0xaf88cb41f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462695334,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":2961,"tdur":2960,"tts":1555440},
-{"pid":27411,"tid":27428,"ts":326462695365,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":122,"tdur":91,"tts":1555501},
-{"pid":27411,"tid":27428,"ts":326462695517,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":18911},"dur":2686,"tdur":2656,"tts":1555653},
-{"pid":27411,"tid":27428,"ts":326462695548,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":2655,"tdur":2656,"tts":1555653},
-{"pid":27411,"tid":27428,"ts":326462695578,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1555684},
-{"pid":27411,"tid":27428,"ts":326462695609,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1555714},
-{"pid":27411,"tid":27428,"ts":326462695639,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1555745},
-{"pid":27411,"tid":27428,"ts":326462695639,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1555745},
-{"pid":27411,"tid":27428,"ts":326462695670,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":245,"tts":1555775},
-{"pid":27411,"tid":27428,"ts":326462695700,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":183,"tts":1555806},
-{"pid":27411,"tid":27428,"ts":326462696036,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1556142},
-{"pid":27411,"tid":27428,"ts":326462696067,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1556172},
-{"pid":27411,"tid":27428,"ts":326462696097,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":0,"tts":1556203},
-{"pid":27411,"tid":27428,"ts":326462696097,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1556203},
-{"pid":27411,"tid":27428,"ts":326462696128,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":214,"tts":1556233},
-{"pid":27411,"tid":27428,"ts":326462696128,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":183,"tts":1556264},
-{"pid":27411,"tid":27428,"ts":326462696463,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":30,"tts":1556600},
-{"pid":27411,"tid":27428,"ts":326462696494,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1556600},
-{"pid":27411,"tid":27428,"ts":326462696524,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1556630},
-{"pid":27411,"tid":27428,"ts":326462696555,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1556661},
-{"pid":27411,"tid":27428,"ts":326462696555,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1556661},
-{"pid":27411,"tid":27428,"ts":326462696585,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":214,"tts":1556691},
-{"pid":27411,"tid":27428,"ts":326462696921,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1557027},
-{"pid":27411,"tid":27428,"ts":326462696952,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1557057},
-{"pid":27411,"tid":27428,"ts":326462696952,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":0,"tts":1557088},
-{"pid":27411,"tid":27428,"ts":326462696982,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1557088},
-{"pid":27411,"tid":27428,"ts":326462697013,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":214,"tts":1557118},
-{"pid":27411,"tid":27428,"ts":326462697013,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":213,"tdur":214,"tts":1557118},
-{"pid":27411,"tid":27428,"ts":326462697348,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":62,"tdur":61,"tts":1557454},
-{"pid":27411,"tid":27428,"ts":326462697379,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1557485},
-{"pid":27411,"tid":27428,"ts":326462697410,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1557515},
-{"pid":27411,"tid":27428,"ts":326462697410,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1557515},
-{"pid":27411,"tid":27428,"ts":326462697440,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1557546},
-{"pid":27411,"tid":27428,"ts":326462697471,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1557576},
-{"pid":27411,"tid":27428,"ts":326462697776,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1557881},
-{"pid":27411,"tid":27428,"ts":326462697806,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1557912},
-{"pid":27411,"tid":27428,"ts":326462697837,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":0,"tts":1557942},
-{"pid":27411,"tid":27428,"ts":326462697837,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1557942},
-{"pid":27411,"tid":27428,"ts":326462697867,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":244,"tts":1557973},
-{"pid":27411,"tid":27428,"ts":326462697867,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":244,"tdur":214,"tts":1558003},
-{"pid":27411,"tid":27428,"ts":326462698264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1558370,"id":"0xaf88cb42f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462700462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462700},"tts":1558553,"id":"0xaf88cb42f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462700462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":152,"tdur":122,"tts":1558583},
-{"pid":27411,"tid":27428,"ts":326462700492,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":122,"tdur":122,"tts":1558583},
-{"pid":27411,"tid":27428,"ts":326462700584,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1558675,"id":"0xaf88cb43f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462701804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462701},"tts":1558858,"id":"0xaf88cb43f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462701804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":123,"tdur":122,"tts":1558858},
-{"pid":27411,"tid":27428,"ts":326462701804,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":123,"tdur":91,"tts":1558889},
-{"pid":27411,"tid":27428,"ts":326462701896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1558950,"id":"0xaf88cb5cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462703117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462702},"tts":1559102,"id":"0xaf88cb5cf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462703117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":122,"tdur":122,"tts":1559102},
-{"pid":27411,"tid":27428,"ts":326462703147,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":92,"tdur":91,"tts":1559133},
-{"pid":27411,"tid":27428,"ts":326462703208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1559194,"id":"0xaf88cb5df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462703880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1559346,"id":"0xaf88cb5ef3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462703910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1559377},
-{"pid":27411,"tid":27428,"ts":326462703910,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1559377},
-{"pid":27411,"tid":27428,"ts":326462703941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1559407,"id":"0xaf88cb58f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462703971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1559438,"id":"0xaf88cb5ff3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462704002,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":1559468},
-{"pid":27411,"tid":27428,"ts":326462704032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1559499,"id":"0xaf88cb58f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462704063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":2747,"tdur":2656,"tts":1559529},
-{"pid":27411,"tid":27428,"ts":326462704093,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":19085},"dur":2656,"tdur":2564,"tts":1559560},
-{"pid":27411,"tid":27428,"ts":326462704124,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":2625,"tdur":2533,"tts":1559591},
-{"pid":27411,"tid":27428,"ts":326462704124,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1559591},
-{"pid":27411,"tid":27428,"ts":326462704216,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1559682},
-{"pid":27411,"tid":27428,"ts":326462704216,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1559682},
-{"pid":27411,"tid":27428,"ts":326462704246,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":30,"tts":1559713},
-{"pid":27411,"tid":27428,"ts":326462704277,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1559743},
-{"pid":27411,"tid":27428,"ts":326462704307,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":213,"tts":1559774},
-{"pid":27411,"tid":27428,"ts":326462704307,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":213,"tts":1559774},
-{"pid":27411,"tid":27428,"ts":326462704643,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":61,"tts":1560109},
-{"pid":27411,"tid":27428,"ts":326462704673,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1560140},
-{"pid":27411,"tid":27428,"ts":326462704704,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1560170},
-{"pid":27411,"tid":27428,"ts":326462704704,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1560170},
-{"pid":27411,"tid":27428,"ts":326462704734,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":214,"tdur":214,"tts":1560201},
-{"pid":27411,"tid":27428,"ts":326462704765,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":184,"tts":1560231},
-{"pid":27411,"tid":27428,"ts":326462705040,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1560506},
-{"pid":27411,"tid":27428,"ts":326462705070,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1560537},
-{"pid":27411,"tid":27428,"ts":326462705101,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1560567},
-{"pid":27411,"tid":27428,"ts":326462705101,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1560567},
-{"pid":27411,"tid":27428,"ts":326462705131,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":336,"tdur":213,"tts":1560598},
-{"pid":27411,"tid":27428,"ts":326462705131,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":214,"tdur":213,"tts":1560598},
-{"pid":27411,"tid":27428,"ts":326462705558,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":62,"tdur":30,"tts":1560964},
-{"pid":27411,"tid":27428,"ts":326462705589,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1560964},
-{"pid":27411,"tid":27428,"ts":326462705620,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":30,"tdur":31,"tts":1560994},
-{"pid":27411,"tid":27428,"ts":326462705650,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1561025},
-{"pid":27411,"tid":27428,"ts":326462705650,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":244,"tdur":184,"tts":1561055},
-{"pid":27411,"tid":27428,"ts":326462705681,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":184,"tts":1561055},
-{"pid":27411,"tid":27428,"ts":326462705986,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":30,"tdur":30,"tts":1561361},
-{"pid":27411,"tid":27428,"ts":326462705986,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1561361},
-{"pid":27411,"tid":27428,"ts":326462706016,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1561391},
-{"pid":27411,"tid":27428,"ts":326462706047,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1561422},
-{"pid":27411,"tid":27428,"ts":326462706047,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":213,"tts":1561422},
-{"pid":27411,"tid":27428,"ts":326462706077,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1561452},
-{"pid":27411,"tid":27428,"ts":326462706352,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM","args":{},"dur":61,"tdur":31,"tts":1561757},
-{"pid":27411,"tid":27428,"ts":326462706383,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62628932},"tts":1561757},
-{"pid":27411,"tid":27428,"ts":326462706413,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoBindTexImage2DCHROMIUM","args":{},"dur":31,"tdur":31,"tts":1561788},
-{"pid":27411,"tid":27428,"ts":326462706444,"ph":"C","cat":"gpu","name":"GpuMemoryUsage","args":{"value":62960708},"tts":1561819},
-{"pid":27411,"tid":27428,"ts":326462706444,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCopySubTextureCHROMIUM","args":{},"dur":213,"tdur":213,"tts":1561819},
-{"pid":27411,"tid":27428,"ts":326462706474,"ph":"X","cat":"gpu","name":"GLImageMemory::CopyTexSubImage","args":{"width":288,"height":288},"dur":183,"tdur":183,"tts":1561849},
-{"pid":27411,"tid":27428,"ts":326462706810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1562185,"id":"0xaf88cb59f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462706840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462704},"tts":1562215,"id":"0xaf88cb5df3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462706871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":91,"tdur":91,"tts":1562246},
-{"pid":27411,"tid":27428,"ts":326462706871,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":91,"tdur":91,"tts":1562246},
-{"pid":27411,"tid":27428,"ts":326462706932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1562307,"id":"0xaf88cb5af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462706962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1562368,"id":"0xaf88cb59f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462706993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":30,"tdur":30,"tts":1562368},
-{"pid":27411,"tid":27428,"ts":326462710472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462707},"tts":1562490,"id":"0xaf88cb5af3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462710472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":428,"tdur":122,"tts":1562490},
-{"pid":27411,"tid":27428,"ts":326462710503,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":397,"tdur":92,"tts":1562520},
-{"pid":27411,"tid":27428,"ts":326462710869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1562582,"id":"0xaf88cb54f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462710900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1562643,"id":"0xaf88cb5bf3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462710930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":91,"tts":1562643},
-{"pid":27411,"tid":27428,"ts":326462710930,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1562643},
-{"pid":27411,"tid":27428,"ts":326462710991,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1562704},
-{"pid":27411,"tid":27428,"ts":326462711022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1562734,"id":"0xaf88cb55f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462711083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1562795,"id":"0xaf88cb55f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462711083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_channel.cc","src_func":"OnScheduled"},"dur":7935,"tdur":6837,"tts":1562795},
-{"pid":27411,"tid":27428,"ts":326462711113,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":92,"tdur":91,"tts":1562826},
-{"pid":27411,"tid":27428,"ts":326462711235,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::OnAsyncFlush","args":{"put_offset":8656},"dur":7783,"tdur":6684,"tts":1562948},
-{"pid":27411,"tid":27428,"ts":326462711266,"ph":"X","cat":"gpu","name":"GpuScheduler:PutChanged","args":{"decoder":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78"},"dur":7752,"tdur":6654,"tts":1562978},
-{"pid":27411,"tid":27428,"ts":326462711602,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":145},"dur":30,"tdur":31,"tts":1563314},
-{"pid":27411,"tid":27428,"ts":326462711724,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":94},"dur":30,"tdur":31,"tts":1563436},
-{"pid":27411,"tid":27428,"ts":326462711815,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":230},"dur":31,"tdur":30,"tts":1563528},
-{"pid":27411,"tid":27428,"ts":326462711876,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":43},"dur":31,"tdur":30,"tts":1563589},
-{"pid":27411,"tid":27428,"ts":326462711968,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":237},"dur":30,"tdur":31,"tts":1563680},
-{"pid":27411,"tid":27428,"ts":326462712029,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":164},"dur":30,"tdur":31,"tts":1563741},
-{"pid":27411,"tid":27428,"ts":326462712120,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":32},"dur":0,"tdur":0,"tts":1563833},
-{"pid":27411,"tid":27428,"ts":326462712181,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":177},"dur":31,"tdur":30,"tts":1563894},
-{"pid":27411,"tid":27428,"ts":326462712273,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":230},"dur":0,"tdur":0,"tts":1563985},
-{"pid":27411,"tid":27428,"ts":326462712334,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":138},"dur":31,"tdur":31,"tts":1564046},
-{"pid":27411,"tid":27428,"ts":326462712426,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":210},"dur":30,"tdur":31,"tts":1564138},
-{"pid":27411,"tid":27428,"ts":326462712487,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoCreateAndConsumeTextureCHROMIUM","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:ECFDAD78","mailbox[0]":115},"dur":30,"tdur":31,"tts":1564199},
-{"pid":27411,"tid":27428,"ts":326462714196,"ph":"I","cat":"test_gpu","name":"SwapBuffersLatency","args":{"GLImpl":5,"width":768},"tts":1565908,"s":"t"},
-{"pid":27411,"tid":27428,"ts":326462714196,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::DoSwapBuffers","args":{"offscreen":false,"frame":166},"dur":4791,"tdur":3693,"tts":1565908},
-{"pid":27411,"tid":27428,"ts":326462714257,"ph":"X","cat":"gpu","name":"NativeViewGLSurfaceEGL:RealSwapBuffers","args":{"width":768,"height":1040},"dur":4608,"tdur":3510,"tts":1565969},
-{"pid":27411,"tid":27428,"ts":326462718896,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":586},"dur":91,"tdur":91,"tts":1569510},
-{"pid":27411,"tid":27428,"ts":326462718926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1569540,"id":"0xaf88cebcfec55fe2"},
-{"pid":27411,"tid":27428,"ts":326462719048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462711},"tts":1569662,"id":"0xaf88cb54f3321ac2"},
-{"pid":27411,"tid":27428,"ts":326462719079,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/gpu_command_buffer_stub.cc","src_func":"ScheduleDelayedWork"},"dur":794,"tdur":458,"tts":1569693},
-{"pid":27411,"tid":27428,"ts":326462719079,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":30,"tts":1569693},
-{"pid":27411,"tid":27428,"ts":326462719445,"ph":"X","cat":"gpu","name":"GpuCommandBufferStub::PollWork","args":{},"dur":397,"tdur":397,"tts":1569723},
-{"pid":27411,"tid":27428,"ts":326462719476,"ph":"X","cat":"gpu","name":"GLES2DecoderImpl::RestoreState","args":{"context":"GroupMarkerNotSet(crbug.com/242999)!:4459AD78"},"dur":122,"tdur":122,"tts":1569754},
-{"pid":27411,"tid":27428,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.014667108460349016}},{"pid":27443,"tid":27459,"ts":326458407863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5976804},
-{"pid":27443,"tid":27459,"ts":326458407893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5976835,"id":"0xaf88abd5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458407893,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":5976835},
-{"pid":27443,"tid":27459,"ts":326458407893,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":0,"tts":5976835},
-{"pid":27443,"tid":27459,"ts":326458407954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5976896,"id":"0xaf88a89ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458407954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5976896},
-{"pid":27443,"tid":27459,"ts":326458408748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5976987,"id":"0xaf88a898f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458408748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5976987},
-{"pid":27443,"tid":27459,"ts":326458408778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5977018,"id":"0xaf88a899f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458408778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5977018,"id":"0xaf88abd7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458408778,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":0,"tts":5977048},
-{"pid":27443,"tid":27459,"ts":326458408809,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":5977048},
-{"pid":27443,"tid":27459,"ts":326458408870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5977109,"id":"0xaf88a899f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458408870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":5977109},
-{"pid":27443,"tid":27459,"ts":326458418820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5977170,"id":"0xaf88a89af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458418820,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1892,"tdur":1190,"tts":5977201},
-{"pid":27443,"tid":27459,"ts":326458418850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5977201,"id":"0xaf88a89bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458418881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5977231,"id":"0xaf88abd0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458418881,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1831,"tdur":1160,"tts":5977231},
-{"pid":27443,"tid":27459,"ts":326458418942,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1739,"tdur":1069,"tts":5977292},
-{"pid":27443,"tid":27459,"ts":326458418942,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5977292,"id":"0x300000025"},
-{"pid":27443,"tid":27459,"ts":326458418972,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1618,"tdur":946,"tts":5977323},
-{"pid":27443,"tid":27459,"ts":326458419003,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1587,"tdur":885,"tts":5977384},
-{"pid":27443,"tid":27459,"ts":326458419064,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":5977445},
-{"pid":27443,"tid":27459,"ts":326458419125,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":5977475},
-{"pid":27443,"tid":27459,"ts":326458419186,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5977537},
-{"pid":27443,"tid":27459,"ts":326458419216,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5977567},
-{"pid":27443,"tid":27459,"ts":326458419277,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1313,"tdur":641,"tts":5977628},
-{"pid":27443,"tid":27459,"ts":326458419430,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1099,"tdur":397,"tts":5977811},
-{"pid":27443,"tid":27459,"ts":326458419460,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5977811},
-{"pid":27443,"tid":27459,"ts":326458420468,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":22,"frame":"0x78c60000"}},"tts":5978177,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458420529,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5978208},
-{"pid":27443,"tid":27459,"ts":326458420620,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5978300},
-{"pid":27443,"tid":27459,"ts":326458420620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5978300,"id":"0xaf88adf0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458420742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5978422,"id":"0xaf88a89bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458420742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10347,"tdur":9644,"tts":5978422},
-{"pid":27443,"tid":27459,"ts":326458420773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5978452,"id":"0xaf88a895f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458420773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5978452,"id":"0xaf88abd1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458420803,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10255,"tdur":9553,"tts":5978483},
-{"pid":27443,"tid":27459,"ts":326458420803,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":71},"tts":5978483},
-{"pid":27443,"tid":27459,"ts":326458420834,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5978513},
-{"pid":27443,"tid":27459,"ts":326458420864,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6379,"tdur":6256,"tts":5978544},
-{"pid":27443,"tid":27459,"ts":326458420895,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5978574},
-{"pid":27443,"tid":27459,"ts":326458420925,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":21,"frame":"0x78c60000"}},"dur":6135,"tdur":6012,"tts":5978605},
-{"pid":27443,"tid":27459,"ts":326458420987,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6073,"tdur":5951,"tts":5978666},
-{"pid":27443,"tid":27459,"ts":326458421017,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5978696},
-{"pid":27443,"tid":27459,"ts":326458421200,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5978879},
-{"pid":27443,"tid":27459,"ts":326458421231,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":5978910},
-{"pid":27443,"tid":27459,"ts":326458427030,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5984587},
-{"pid":27443,"tid":27459,"ts":326458427091,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":22,"frame":"0x78c60000"}},"dur":152,"tdur":152,"tts":5984648},
-{"pid":27443,"tid":27459,"ts":326458427152,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":31,"tts":5984739},
-{"pid":27443,"tid":27459,"ts":326458427182,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5984739},
-{"pid":27443,"tid":27459,"ts":326458427213,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5984770},
-{"pid":27443,"tid":27459,"ts":326458427243,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2533,"tdur":2534,"tts":5984800},
-{"pid":27443,"tid":27459,"ts":326458427274,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5984831},
-{"pid":27443,"tid":27459,"ts":326458427304,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5984861},
-{"pid":27443,"tid":27459,"ts":326458427304,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5984861},
-{"pid":27443,"tid":27459,"ts":326458427732,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5985289},
-{"pid":27443,"tid":27459,"ts":326458427762,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5985319},
-{"pid":27443,"tid":27459,"ts":326458427793,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1983,"tdur":1984,"tts":5985350},
-{"pid":27443,"tid":27459,"ts":326458427793,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1831,"tts":5985350},
-{"pid":27443,"tid":27459,"ts":326458427823,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":305,"tdur":305,"tts":5985380},
-{"pid":27443,"tid":27459,"ts":326458428159,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":5985716},
-{"pid":27443,"tid":27459,"ts":326458428342,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":5985899},
-{"pid":27443,"tid":27459,"ts":326458428433,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":5985991},
-{"pid":27443,"tid":27459,"ts":326458428464,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":5986021},
-{"pid":27443,"tid":27459,"ts":326458429624,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":5987181},
-{"pid":27443,"tid":27459,"ts":326458429654,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":123,"tts":5987211},
-{"pid":27443,"tid":27459,"ts":326458429776,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":71},"dur":519,"tdur":518,"tts":5987334},
-{"pid":27443,"tid":27459,"ts":326458429807,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":488,"tdur":488,"tts":5987364},
-{"pid":27443,"tid":27459,"ts":326458430112,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":31,"tdur":31,"tts":5987669},
-{"pid":27443,"tid":27459,"ts":326458430143,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":0,"tdur":0,"tts":5987700},
-{"pid":27443,"tid":27459,"ts":326458430143,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":30,"tdur":30,"tts":5987700},
-{"pid":27443,"tid":27459,"ts":326458430173,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":0,"tdur":0,"tts":5987730},
-{"pid":27443,"tid":27459,"ts":326458430204,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":0,"tdur":0,"tts":5987761},
-{"pid":27443,"tid":27459,"ts":326458430204,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":30,"tdur":30,"tts":5987761},
-{"pid":27443,"tid":27459,"ts":326458430234,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":0,"tdur":0,"tts":5987791},
-{"pid":27443,"tid":27459,"ts":326458430234,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":31,"tdur":31,"tts":5987791},
-{"pid":27443,"tid":27459,"ts":326458430265,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":71},"dur":0,"tdur":0,"tts":5987822},
-{"pid":27443,"tid":27459,"ts":326458430295,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5987852,"id":"0x300000024"},
-{"pid":27443,"tid":27459,"ts":326458430295,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":5987852,"id":"0x300000025"},
-{"pid":27443,"tid":27459,"ts":326458430295,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":672,"tdur":92,"tts":5987852},
-{"pid":27443,"tid":27459,"ts":326458430326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5987883,"id":"0xaf88a863f182217a"},
-{"pid":27443,"tid":27459,"ts":326458431028,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2652},"tts":5988005,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458431028,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":5988005,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458431058,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":5988036},
-{"pid":27443,"tid":27459,"ts":326458431119,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5988097,"id":"0xaf88a894f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458431119,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":366,"tts":5988097},
-{"pid":27443,"tid":27459,"ts":326458431150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5988127,"id":"0xaf88ab03f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458431150,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":336,"tdur":336,"tts":5988127},
-{"pid":27443,"tid":27459,"ts":326458431150,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":305,"tdur":274,"tts":5988158},
-{"pid":27443,"tid":27459,"ts":326458431180,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":138,"frame":"0x78c60000"}},"dur":275,"tdur":244,"tts":5988188},
-{"pid":27443,"tid":27459,"ts":326458431211,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":244,"tdur":213,"tts":5988219},
-{"pid":27443,"tid":27459,"ts":326458431272,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":183,"tdur":183,"tts":5988249},
-{"pid":27443,"tid":27459,"ts":326458431302,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5988280},
-{"pid":27443,"tid":27459,"ts":326458431424,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5988402},
-{"pid":27443,"tid":27459,"ts":326458431516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5988493,"id":"0xaf88a895f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458431516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":183,"tts":5988524},
-{"pid":27443,"tid":27459,"ts":326458431547,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5988524,"id":"0xaf88a896f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458431547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5988554,"id":"0xaf88ab1df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458431577,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":5988554},
-{"pid":27443,"tid":27459,"ts":326458431577,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":5988554,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458431608,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.041},"dur":122,"tdur":122,"tts":5988585},
-{"pid":27443,"tid":27477,"ts":326458431577,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":302243},
-{"pid":27443,"tid":27477,"ts":326458431577,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":302243},
-{"pid":27443,"tid":27477,"ts":326458431608,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":302273,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458431608,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":302273},
-{"pid":27443,"tid":27477,"ts":326458431638,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":302304},
-{"pid":27443,"tid":27477,"ts":326458431669,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":302365,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458431699,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":177}},"tts":302365,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458431730,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3403776},"tts":302395,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458431913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":302487,"id":"0xaf88a87cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458431913,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":302487},
-{"pid":27443,"tid":27477,"ts":326458431943,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":302517},
-{"pid":27443,"tid":27477,"ts":326458431943,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":302517,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458431943,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":302517},
-{"pid":27443,"tid":27477,"ts":326458431974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":302548,"id":"0xaf88a87ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458432004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":302578,"id":"0xaf88a87df182217a"},
-{"pid":27443,"tid":27477,"ts":326458432004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":302578},
-{"pid":27443,"tid":27477,"ts":326458432035,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":302609},
-{"pid":27443,"tid":27477,"ts":326458432035,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":302609,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458432035,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":302609},
-{"pid":27443,"tid":27477,"ts":326458432065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":302640,"id":"0xaf88a878f182217a"},
-{"pid":27443,"tid":27477,"ts":326458432096,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":302670,"id":"0xaf88a87ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458432096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1099,"tdur":1099,"tts":302670},
-{"pid":27443,"tid":27477,"ts":326458432096,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1099,"tdur":1068,"tts":302701},
-{"pid":27443,"tid":27477,"ts":326458432126,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":302701},
-{"pid":27443,"tid":27477,"ts":326458432126,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":302701},
-{"pid":27443,"tid":27477,"ts":326458432157,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":302731},
-{"pid":27443,"tid":27477,"ts":326458432157,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":302731},
-{"pid":27443,"tid":27477,"ts":326458432249,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":302823},
-{"pid":27443,"tid":27477,"ts":326458432249,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":302823},
-{"pid":27443,"tid":27477,"ts":326458432249,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":915,"tdur":915,"tts":302823},
-{"pid":27443,"tid":27477,"ts":326458432249,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":302853,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458432340,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":302914},
-{"pid":27443,"tid":27477,"ts":326458432371,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":302945},
-{"pid":27443,"tid":27477,"ts":326458432401,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":302975},
-{"pid":27443,"tid":27477,"ts":326458432401,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":302975},
-{"pid":27443,"tid":27477,"ts":326458432432,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303006},
-{"pid":27443,"tid":27477,"ts":326458432462,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303036},
-{"pid":27443,"tid":27477,"ts":326458432462,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":303036},
-{"pid":27443,"tid":27477,"ts":326458432493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303067},
-{"pid":27443,"tid":27477,"ts":326458432523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303097},
-{"pid":27443,"tid":27477,"ts":326458432523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303097},
-{"pid":27443,"tid":27477,"ts":326458432554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303128},
-{"pid":27443,"tid":27477,"ts":326458432554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":303128},
-{"pid":27443,"tid":27477,"ts":326458432584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303158},
-{"pid":27443,"tid":27477,"ts":326458432615,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303189},
-{"pid":27443,"tid":27477,"ts":326458432615,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":303189},
-{"pid":27443,"tid":27477,"ts":326458432645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303219},
-{"pid":27443,"tid":27477,"ts":326458432676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303250},
-{"pid":27443,"tid":27477,"ts":326458432676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303250},
-{"pid":27443,"tid":27477,"ts":326458432706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303280},
-{"pid":27443,"tid":27477,"ts":326458432706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":303280},
-{"pid":27443,"tid":27477,"ts":326458432737,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303311},
-{"pid":27443,"tid":27477,"ts":326458432767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303341},
-{"pid":27443,"tid":27477,"ts":326458432767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":303341},
-{"pid":27443,"tid":27477,"ts":326458432798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303372},
-{"pid":27443,"tid":27477,"ts":326458432798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":303372},
-{"pid":27443,"tid":27477,"ts":326458432828,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303403},
-{"pid":27443,"tid":27477,"ts":326458432920,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303494},
-{"pid":27443,"tid":27477,"ts":326458432920,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":303494},
-{"pid":27443,"tid":27477,"ts":326458432951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303525},
-{"pid":27443,"tid":27477,"ts":326458432981,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303555},
-{"pid":27443,"tid":27477,"ts":326458432981,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":303555},
-{"pid":27443,"tid":27477,"ts":326458433012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":303586},
-{"pid":27443,"tid":27477,"ts":326458433012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":303586},
-{"pid":27443,"tid":27459,"ts":326458431608,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":5988585},
-{"pid":27443,"tid":27459,"ts":326458431669,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":5988646},
-{"pid":27443,"tid":27459,"ts":326458431699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5988676,"id":"0xaf88abd2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458431699,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":5988676,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458431760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5988737,"id":"0xaf88a896f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458431760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":5988737},
-{"pid":27443,"tid":27459,"ts":326458436247,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5988829,"id":"0xaf88a897f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458436247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":5988829},
-{"pid":27443,"tid":27459,"ts":326458436277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5988860,"id":"0xaf88a890f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458436277,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5988890,"id":"0xaf88abd3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458436308,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":5988890},
-{"pid":27443,"tid":27459,"ts":326458436308,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5988890},
-{"pid":27443,"tid":27459,"ts":326458436369,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":5988951,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458436369,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":5988951,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458436399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5988982,"id":"0xaf88a890f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458436430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":5989012},
-{"pid":27443,"tid":27459,"ts":326458436430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5989012,"id":"0xaf88a891f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458436460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5989043,"id":"0xaf88abd2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458436460,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":5989043},
-{"pid":27443,"tid":27459,"ts":326458436460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":5989043,"id":"0xaf88abedf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458436521,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5989104,"id":"0xaf88a891f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458436521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1252,"tdur":1129,"tts":5989104},
-{"pid":27443,"tid":27459,"ts":326458436552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5989134,"id":"0xaf88a892f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458436552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5989134,"id":"0xaf88abecf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458436552,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1221,"tdur":1099,"tts":5989134},
-{"pid":27443,"tid":27459,"ts":326458436613,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":1007,"tts":5989195},
-{"pid":27443,"tid":27459,"ts":326458436643,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":5989226,"id":"0x300000026"},
-{"pid":27443,"tid":27459,"ts":326458436643,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1038,"tdur":885,"tts":5989256},
-{"pid":27443,"tid":27459,"ts":326458436674,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1007,"tdur":824,"tts":5989287},
-{"pid":27443,"tid":27459,"ts":326458436735,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":5989317},
-{"pid":27443,"tid":27459,"ts":326458436796,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5989378},
-{"pid":27443,"tid":27459,"ts":326458436827,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5989409},
-{"pid":27443,"tid":27459,"ts":326458436857,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5989439},
-{"pid":27443,"tid":27459,"ts":326458436888,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":763,"tdur":580,"tts":5989500},
-{"pid":27443,"tid":27459,"ts":326458437040,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":397,"tts":5989653},
-{"pid":27443,"tid":27459,"ts":326458437071,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5989653},
-{"pid":27443,"tid":27459,"ts":326458437345,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":23,"frame":"0x78c60000"}},"tts":5989958,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458437376,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":5989958},
-{"pid":27443,"tid":27459,"ts":326458437406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5989989,"id":"0xaf88a875f182217a"},
-{"pid":27443,"tid":27459,"ts":326458437437,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5990019},
-{"pid":27443,"tid":27459,"ts":326458437681,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":5990141},
-{"pid":27443,"tid":27459,"ts":326458437712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5990172,"id":"0xaf88adf3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458437986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":5990264,"id":"0xaf88a892f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458437986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11079,"tdur":10437,"tts":5990264},
-{"pid":27443,"tid":27459,"ts":326458438047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5990325,"id":"0xaf88a8acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458438078,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":5990355,"id":"0xaf88abeef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458438078,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10957,"tdur":10316,"tts":5990355},
-{"pid":27443,"tid":27459,"ts":326458438078,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":72},"tts":5990355},
-{"pid":27443,"tid":27459,"ts":326458438108,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":5990386},
-{"pid":27443,"tid":27459,"ts":326458438139,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7142,"tdur":7081,"tts":5990416},
-{"pid":27443,"tid":27459,"ts":326458438169,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":5990447},
-{"pid":27443,"tid":27459,"ts":326458438200,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":23,"frame":"0x78c60000"}},"dur":7050,"tdur":6989,"tts":5990477},
-{"pid":27443,"tid":27459,"ts":326458438261,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6989,"tdur":6897,"tts":5990569},
-{"pid":27443,"tid":27459,"ts":326458438292,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5990569},
-{"pid":27443,"tid":27459,"ts":326458438475,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":5990752},
-{"pid":27443,"tid":27459,"ts":326458438536,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":5990813},
-{"pid":27443,"tid":27459,"ts":326458439055,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5991332},
-{"pid":27443,"tid":27459,"ts":326458439146,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":5991454},
-{"pid":27443,"tid":27459,"ts":326458439207,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5991515},
-{"pid":27443,"tid":27459,"ts":326458439238,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5991515},
-{"pid":27443,"tid":27459,"ts":326458439329,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":5991606},
-{"pid":27443,"tid":27459,"ts":326458439451,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5991728},
-{"pid":27443,"tid":27459,"ts":326458439757,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5992034},
-{"pid":27443,"tid":27459,"ts":326458439879,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":5992156},
-{"pid":27443,"tid":27477,"ts":326458433073,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":303647},
-{"pid":27443,"tid":27477,"ts":326458433103,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":303677},
-{"pid":27443,"tid":27477,"ts":326458433103,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":303708},
-{"pid":27443,"tid":27477,"ts":326458433134,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":303708},
-{"pid":27443,"tid":27477,"ts":326458433164,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":303738},
-{"pid":27443,"tid":27477,"ts":326458433164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":303738,"id":"0xaf88a879f182217a"},
-{"pid":27443,"tid":27477,"ts":326458433195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":303769,"id":"0xaf88a87ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458433225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":303799},
-{"pid":27443,"tid":27477,"ts":326458433225,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":303799},
-{"pid":27443,"tid":27477,"ts":326458433225,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":303799,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458433225,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":303830},
-{"pid":27443,"tid":27477,"ts":326458433256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":303830,"id":"0xaf88a878f182217a"},
-{"pid":27443,"tid":27477,"ts":326458433256,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":303830},
-{"pid":27443,"tid":27477,"ts":326458433286,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":303860},
-{"pid":27443,"tid":27477,"ts":326458433286,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":303860},
-{"pid":27443,"tid":27477,"ts":326458433286,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":303860},
-{"pid":27443,"tid":27477,"ts":326458433317,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":30,"tts":303891},
-{"pid":27443,"tid":27477,"ts":326458433317,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":303891},
-{"pid":27443,"tid":27477,"ts":326458433347,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":303921},
-{"pid":27443,"tid":27477,"ts":326458433378,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":303952},
-{"pid":27443,"tid":27477,"ts":326458433408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":303952,"id":"0xaf88a879f182217a"},
-{"pid":27443,"tid":27477,"ts":326458433408,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":30,"tts":303952},
-{"pid":27443,"tid":27477,"ts":326458433622,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2381,"tdur":1649,"tts":303982},
-{"pid":27443,"tid":27477,"ts":326458433652,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2351,"tdur":1618,"tts":304013},
-{"pid":27443,"tid":27477,"ts":326458433652,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":304013},
-{"pid":27443,"tid":27477,"ts":326458433683,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2320,"tdur":1588,"tts":304043},
-{"pid":27443,"tid":27477,"ts":326458433683,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":71},"dur":1099,"tdur":916,"tts":304043},
-{"pid":27443,"tid":27477,"ts":326458433714,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":71},"dur":457,"tdur":275,"tts":304074},
-{"pid":27443,"tid":27477,"ts":326458434171,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":71},"dur":61,"tdur":31,"tts":304379},
-{"pid":27443,"tid":27477,"ts":326458434232,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":71},"tts":304410},
-{"pid":27443,"tid":27477,"ts":326458434354,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":304532},
-{"pid":27443,"tid":27477,"ts":326458434385,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":304562},
-{"pid":27443,"tid":27477,"ts":326458434385,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":304562},
-{"pid":27443,"tid":27477,"ts":326458434385,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":304562},
-{"pid":27443,"tid":27477,"ts":326458434415,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":304593,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458434477,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":304654},
-{"pid":27443,"tid":27477,"ts":326458434782,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":304959},
-{"pid":27443,"tid":27477,"ts":326458434812,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":824,"tdur":274,"tts":304990},
-{"pid":27443,"tid":27477,"ts":326458434812,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":304990},
-{"pid":27443,"tid":27477,"ts":326458434843,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":732,"tdur":183,"tts":305020},
-{"pid":27443,"tid":27477,"ts":326458434904,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12175},"dur":30,"tdur":31,"tts":305081},
-{"pid":27443,"tid":27477,"ts":326458434965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305142,"id":"0xaf88adf1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458435636,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":305264,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458435667,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":305295,"id":"0x300000024"},
-{"pid":27443,"tid":27477,"ts":326458435667,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":305295,"id":"0x300000025"},
-{"pid":27443,"tid":27477,"ts":326458435697,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":305325},
-{"pid":27443,"tid":27477,"ts":326458435880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305508,"id":"0xaf88adf2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458435911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":305569,"id":"0xaf88abd3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458435941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305569,"id":"0xaf88a897f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458436033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458433},"tts":305661,"id":"0xaf88a862f182217a"},
-{"pid":27443,"tid":27477,"ts":326458436033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":305661},
-{"pid":27443,"tid":27477,"ts":326458436064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":305692,"id":"0xaf88a87af182217a"},
-{"pid":27443,"tid":27477,"ts":326458436064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":91,"tts":305692},
-{"pid":27443,"tid":27477,"ts":326458436064,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":91,"tts":305692},
-{"pid":27443,"tid":27477,"ts":326458436094,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":305722,"id":"0x300000026"},
-{"pid":27443,"tid":27477,"ts":326458436094,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":305722},
-{"pid":27443,"tid":27477,"ts":326458436125,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":305753,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458436155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":305783,"id":"0xaf88abecf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458436186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":305814,"id":"0xaf88a87bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458436186,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":305814},
-{"pid":27443,"tid":27477,"ts":326458436216,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458417661.0,"frame_time_us":326458433660.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":305844},
-{"pid":27443,"tid":27477,"ts":326458436247,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458417661.0,"frame_time_us":326458433660.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":305875},
-{"pid":27443,"tid":27477,"ts":326458436277,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458450326},"dur":31,"tdur":31,"tts":305905},
-{"pid":27443,"tid":27477,"ts":326458436308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305936,"id":"0xaf88a874f182217a"},
-{"pid":27443,"tid":27477,"ts":326458437437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":306027,"id":"0xaf88a875f182217a"},
-{"pid":27443,"tid":27477,"ts":326458437468,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":306027},
-{"pid":27443,"tid":27477,"ts":326458437468,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":306027},
-{"pid":27443,"tid":27477,"ts":326458437864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":306119,"id":"0xaf88a876f182217a"},
-{"pid":27443,"tid":27477,"ts":326458437864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":306119},
-{"pid":27443,"tid":27477,"ts":326458437895,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":152,"tdur":122,"tts":306149},
-{"pid":27443,"tid":27477,"ts":326458437895,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":72},"tts":306149},
-{"pid":27443,"tid":27477,"ts":326458437956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":306210,"id":"0xaf88abeef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458437986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":306241,"id":"0xaf88a893f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458437986,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":306241},
-{"pid":27443,"tid":27477,"ts":326458438017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":306271,"id":"0xaf88abeff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458448363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":306363,"id":"0xaf88a877f182217a"},
-{"pid":27443,"tid":27477,"ts":326458448363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1374,"tdur":1373,"tts":306363},
-{"pid":27443,"tid":27477,"ts":326458448394,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1343,"tdur":1342,"tts":306394},
-{"pid":27443,"tid":27477,"ts":326458448394,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":306394},
-{"pid":27443,"tid":27477,"ts":326458448394,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1342,"tts":306394},
-{"pid":27443,"tid":27477,"ts":326458448424,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1313,"tdur":1312,"tts":306424},
-{"pid":27443,"tid":27477,"ts":326458448424,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":306424},
-{"pid":27443,"tid":27477,"ts":326458448424,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":306424},
-{"pid":27443,"tid":27477,"ts":326458448455,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":306455,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458448455,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":306455},
-{"pid":27443,"tid":27477,"ts":326458448485,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":306485},
-{"pid":27443,"tid":27477,"ts":326458448943,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":306943},
-{"pid":27443,"tid":27477,"ts":326458448943,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":72},"dur":244,"tdur":244,"tts":306943},
-{"pid":27443,"tid":27477,"ts":326458449187,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":72},"dur":31,"tdur":31,"tts":307187},
-{"pid":27443,"tid":27477,"ts":326458449218,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":72},"tts":307248},
-{"pid":27443,"tid":27477,"ts":326458449401,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":307401},
-{"pid":27443,"tid":27477,"ts":326458449401,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":307401},
-{"pid":27443,"tid":27477,"ts":326458449401,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":307401},
-{"pid":27443,"tid":27477,"ts":326458449523,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":307553},
-{"pid":27443,"tid":27477,"ts":326458449554,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":307553},
-{"pid":27443,"tid":27477,"ts":326458449554,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":307553},
-{"pid":27443,"tid":27477,"ts":326458449554,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":91,"tts":307584},
-{"pid":27443,"tid":27477,"ts":326458449584,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":307584,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458449584,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":307584},
-{"pid":27443,"tid":27477,"ts":326458449615,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":307614},
-{"pid":27443,"tid":27477,"ts":326458449676,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":307675,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458449706,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":177}},"tts":307706,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458449706,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3403776},"tts":307706,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458449767,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307767,"id":"0xaf88a870f182217a"},
-{"pid":27443,"tid":27477,"ts":326458449798,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":307797},
-{"pid":27443,"tid":27477,"ts":326458449798,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":31,"tts":307797},
-{"pid":27443,"tid":27477,"ts":326458449798,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":307797,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458449828,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":307828},
-{"pid":27443,"tid":27477,"ts":326458449828,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":307828,"id":"0xaf88a873f182217a"},
-{"pid":27443,"tid":27477,"ts":326458449859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307858,"id":"0xaf88a871f182217a"},
-{"pid":27443,"tid":27477,"ts":326458449859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":307858},
-{"pid":27443,"tid":27477,"ts":326458449859,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":62,"tts":307858},
-{"pid":27443,"tid":27477,"ts":326458449889,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":307889,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458449889,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":307889},
-{"pid":27443,"tid":27477,"ts":326458449889,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":307920,"id":"0xaf88a80cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458449920,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307920,"id":"0xaf88a872f182217a"},
-{"pid":27443,"tid":27477,"ts":326458449920,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":307950},
-{"pid":27443,"tid":27477,"ts":326458449950,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":307950},
-{"pid":27443,"tid":27477,"ts":326458449950,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":307950,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458449950,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":307950},
-{"pid":27443,"tid":27477,"ts":326458449981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307981,"id":"0xaf88a873f182217a"},
-{"pid":27443,"tid":27477,"ts":326458449981,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1770,"tdur":1587,"tts":307981},
-{"pid":27443,"tid":27477,"ts":326458449981,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1770,"tdur":1587,"tts":307981},
-{"pid":27443,"tid":27477,"ts":326458449981,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":61,"tts":307981},
-{"pid":27443,"tid":27477,"ts":326458450225,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":308042},
-{"pid":27443,"tid":27477,"ts":326458450225,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":308042},
-{"pid":27443,"tid":27477,"ts":326458450256,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":308072},
-{"pid":27443,"tid":27477,"ts":326458450286,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":308103},
-{"pid":27443,"tid":27466,"ts":326458437620,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":235617},
-{"pid":27443,"tid":27466,"ts":326458437651,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":235647},
-{"pid":27443,"tid":27466,"ts":326458437651,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235647,"id":"0xba444902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458437681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":235678,"id":"0xaf88a876f182217a"},
-{"pid":27443,"tid":27466,"ts":326458437742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":235739,"id":"0xaf88adf3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458437742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":235769},
-{"pid":27443,"tid":27466,"ts":326458437773,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235769,"id":"0xccc3b902"},
-{"pid":27443,"tid":27466,"ts":326458451965,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":235891},
-{"pid":27443,"tid":27466,"ts":326458451995,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":235922},
-{"pid":27443,"tid":27466,"ts":326458452026,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":235952,"id":"0xba444b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458452056,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":235983},
-{"pid":27443,"tid":27466,"ts":326458452087,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":236014,"id":"0xaf88a80ef182217a"},
-{"pid":27443,"tid":27466,"ts":326458452484,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":236105},
-{"pid":27443,"tid":27466,"ts":326458452514,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":236136},
-{"pid":27443,"tid":27466,"ts":326458452545,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236166,"id":"0xba444c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458452575,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":236197,"id":"0xaf88a80ff182217a"},
-{"pid":27443,"tid":27466,"ts":326458454406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":236288,"id":"0xaf88ad8cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458454406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":236288},
-{"pid":27443,"tid":27466,"ts":326458454406,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236288,"id":"0xccc3ba06"},
-{"pid":27443,"tid":27466,"ts":326458454712,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":236380},
-{"pid":27443,"tid":27466,"ts":326458454742,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":236410},
-{"pid":27443,"tid":27466,"ts":326458454742,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236410,"id":"0xc4c1080a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458455108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":236532,"id":"0xaf88ad8df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458455108,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":236532},
-{"pid":27443,"tid":27466,"ts":326458455108,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236563,"id":"0xccc3bb02"},
-{"pid":27443,"tid":27466,"ts":326458456909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":236685,"id":"0xaf88ad8ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458456940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":236685},
-{"pid":27443,"tid":27466,"ts":326458456940,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236685,"id":"0xccc3bd02"},
-{"pid":27443,"tid":27466,"ts":326458457550,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":236777},
-{"pid":27443,"tid":27466,"ts":326458457580,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":236807},
-{"pid":27443,"tid":27466,"ts":326458457580,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236807,"id":"0xba444f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458457611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":236838,"id":"0xaf88a80af182217a"},
-{"pid":27443,"tid":27466,"ts":326458468995,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":236929},
-{"pid":27443,"tid":27466,"ts":326458469026,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":236960},
-{"pid":27443,"tid":27466,"ts":326458469026,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":236960,"id":"0xba445102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458469056,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":236990},
-{"pid":27443,"tid":27466,"ts":326458469087,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":237021,"id":"0xaf88a806f182217a"},
-{"pid":27443,"tid":27466,"ts":326458470582,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":237143},
-{"pid":27443,"tid":27466,"ts":326458470613,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":31,"tts":237173},
-{"pid":27443,"tid":27466,"ts":326458470643,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":237173,"id":"0xba445202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458470674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":237204,"id":"0xaf88a807f182217a"},
-{"pid":27443,"tid":27466,"ts":326458470948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":237295,"id":"0xaf88ad8ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458470948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":237295},
-{"pid":27443,"tid":27466,"ts":326458470979,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":237326,"id":"0xccc3be02"},
-{"pid":27443,"tid":27466,"ts":326458473817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":237448,"id":"0xaf88ad88f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458473817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":237448},
-{"pid":27443,"tid":27466,"ts":326458473817,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":237448,"id":"0xccc3c002"},
-{"pid":27443,"tid":27466,"ts":326458475954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":237601,"id":"0xaf88ad89f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458475954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":237601},
-{"pid":27443,"tid":27466,"ts":326458475984,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":237631,"id":"0xccc3c102"},
-{"pid":27443,"tid":27466,"ts":326458477266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":237723,"id":"0xaf88ad8af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458477297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":237753},
-{"pid":27443,"tid":27466,"ts":326458477297,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":237753,"id":"0xccc3c206"},
-{"pid":27443,"tid":27466,"ts":326458477693,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":237845},
-{"pid":27443,"tid":27466,"ts":326458477724,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":237875},
-{"pid":27443,"tid":27466,"ts":326458477724,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":237875,"id":"0xc4c10d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458478182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238028,"id":"0xaf88ad8bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458478182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":238028},
-{"pid":27443,"tid":27466,"ts":326458478212,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":238058,"id":"0xccc3c302"},
-{"pid":27443,"tid":27466,"ts":326458480349,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":238150},
-{"pid":27443,"tid":27466,"ts":326458480379,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":238180},
-{"pid":27443,"tid":27466,"ts":326458480410,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":238211,"id":"0xba445302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458480440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":238241,"id":"0xaf88a819f182217a"},
-{"pid":27443,"tid":27466,"ts":326458486697,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":238333},
-{"pid":27443,"tid":27459,"ts":326458445220,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":5997436},
-{"pid":27443,"tid":27459,"ts":326458445281,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2533,"tdur":2533,"tts":5997497},
-{"pid":27443,"tid":27459,"ts":326458445311,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":5997558},
-{"pid":27443,"tid":27459,"ts":326458445342,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":5997558},
-{"pid":27443,"tid":27459,"ts":326458445342,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":5997588},
-{"pid":27443,"tid":27459,"ts":326458445800,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":5998016},
-{"pid":27443,"tid":27459,"ts":326458445830,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":5998046},
-{"pid":27443,"tid":27459,"ts":326458445830,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1984,"tdur":1953,"tts":5998077},
-{"pid":27443,"tid":27459,"ts":326458445861,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1800,"tdur":1800,"tts":5998077},
-{"pid":27443,"tid":27459,"ts":326458445861,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":335,"tts":5998077},
-{"pid":27443,"tid":27459,"ts":326458446196,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":5998412},
-{"pid":27443,"tid":27459,"ts":326458446410,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":5998626},
-{"pid":27443,"tid":27459,"ts":326458446502,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":5998718},
-{"pid":27443,"tid":27459,"ts":326458446532,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":5998748},
-{"pid":27443,"tid":27459,"ts":326458447661,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":5999877},
-{"pid":27443,"tid":27459,"ts":326458447692,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":5999938},
-{"pid":27443,"tid":27459,"ts":326458447814,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":72},"dur":458,"tdur":458,"tts":6000030},
-{"pid":27443,"tid":27459,"ts":326458447844,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":428,"tdur":427,"tts":6000061},
-{"pid":27443,"tid":27459,"ts":326458448089,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":30,"tdur":30,"tts":6000305},
-{"pid":27443,"tid":27459,"ts":326458448119,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":0,"tdur":0,"tts":6000335},
-{"pid":27443,"tid":27459,"ts":326458448119,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":31,"tdur":31,"tts":6000335},
-{"pid":27443,"tid":27459,"ts":326458448150,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":0,"tdur":0,"tts":6000366},
-{"pid":27443,"tid":27459,"ts":326458448180,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":0,"tdur":0,"tts":6000396},
-{"pid":27443,"tid":27459,"ts":326458448180,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":31,"tdur":31,"tts":6000396},
-{"pid":27443,"tid":27459,"ts":326458448211,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":0,"tdur":0,"tts":6000427},
-{"pid":27443,"tid":27459,"ts":326458448211,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":30,"tdur":30,"tts":6000427},
-{"pid":27443,"tid":27459,"ts":326458448241,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":72},"dur":0,"tdur":0,"tts":6000457},
-{"pid":27443,"tid":27459,"ts":326458448272,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6000488,"id":"0x300000026"},
-{"pid":27443,"tid":27459,"ts":326458448272,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":91,"tts":6000488},
-{"pid":27443,"tid":27459,"ts":326458448302,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6000518,"id":"0xaf88a877f182217a"},
-{"pid":27443,"tid":27459,"ts":326458449004,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1352},"tts":6000640,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458449004,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6000640,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458449035,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6000671},
-{"pid":27443,"tid":27459,"ts":326458449096,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6000732,"id":"0xaf88a893f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458449096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6000732},
-{"pid":27443,"tid":27459,"ts":326458449126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6000763,"id":"0xaf88abeff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458449126,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6000763},
-{"pid":27443,"tid":27459,"ts":326458449157,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6000793},
-{"pid":27443,"tid":27459,"ts":326458449187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6000824,"id":"0xaf88a8acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458449218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":6000854},
-{"pid":27443,"tid":27459,"ts":326458449218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6000854,"id":"0xaf88a8adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458449248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6000885,"id":"0xaf88abedf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458449248,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":6000885},
-{"pid":27443,"tid":27459,"ts":326458449248,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6000885,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458449279,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.047},"dur":91,"tdur":92,"tts":6000915},
-{"pid":27443,"tid":27459,"ts":326458449279,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6000915},
-{"pid":27443,"tid":27459,"ts":326458449309,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6000976},
-{"pid":27443,"tid":27459,"ts":326458449340,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6000976,"id":"0xaf88abe8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458449370,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6001007,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458449401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6001037,"id":"0xaf88a8adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458449432,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6001068},
-{"pid":27443,"tid":27459,"ts":326458455413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6001159,"id":"0xaf88a8aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458455444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6001159},
-{"pid":27443,"tid":27459,"ts":326458455475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6001190,"id":"0xaf88a8aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458455475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6001190,"id":"0xaf88abe9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458455475,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6001190},
-{"pid":27443,"tid":27459,"ts":326458455505,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6001220},
-{"pid":27443,"tid":27459,"ts":326458455536,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6001251,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458455566,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6001281,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458455597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6001312,"id":"0xaf88a8aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458455597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6001312},
-{"pid":27443,"tid":27459,"ts":326458455627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6001342,"id":"0xaf88a8a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458455627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6001342,"id":"0xaf88abe8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458455627,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":6001342},
-{"pid":27443,"tid":27477,"ts":326458450378,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1373,"tdur":1374,"tts":308194},
-{"pid":27443,"tid":27477,"ts":326458450408,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1343,"tdur":1313,"tts":308255},
-{"pid":27443,"tid":27477,"ts":326458450439,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1251,"tdur":1252,"tts":308255},
-{"pid":27443,"tid":27477,"ts":326458450439,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":308255,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458450561,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308377},
-{"pid":27443,"tid":27477,"ts":326458450591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308408},
-{"pid":27443,"tid":27477,"ts":326458450622,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308438},
-{"pid":27443,"tid":27477,"ts":326458450652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308469},
-{"pid":27443,"tid":27477,"ts":326458450652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":308499},
-{"pid":27443,"tid":27477,"ts":326458450683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":308499},
-{"pid":27443,"tid":27477,"ts":326458450713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":308560},
-{"pid":27443,"tid":27477,"ts":326458450744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":308560},
-{"pid":27443,"tid":27477,"ts":326458450774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":308591},
-{"pid":27443,"tid":27477,"ts":326458450805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308622},
-{"pid":27443,"tid":27477,"ts":326458450835,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":308652},
-{"pid":27443,"tid":27477,"ts":326458450866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":308683},
-{"pid":27443,"tid":27477,"ts":326458450896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":308713},
-{"pid":27443,"tid":27477,"ts":326458450927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":308744},
-{"pid":27443,"tid":27477,"ts":326458450958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":308774},
-{"pid":27443,"tid":27477,"ts":326458450988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":308805},
-{"pid":27443,"tid":27477,"ts":326458451049,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308866},
-{"pid":27443,"tid":27477,"ts":326458451080,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308896},
-{"pid":27443,"tid":27477,"ts":326458451110,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":308927},
-{"pid":27443,"tid":27477,"ts":326458451141,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308957},
-{"pid":27443,"tid":27477,"ts":326458451171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":308988},
-{"pid":27443,"tid":27477,"ts":326458451171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":308988},
-{"pid":27443,"tid":27477,"ts":326458451202,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":309018},
-{"pid":27443,"tid":27477,"ts":326458451232,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":309049},
-{"pid":27443,"tid":27477,"ts":326458451263,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":309079},
-{"pid":27443,"tid":27477,"ts":326458451293,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":309110},
-{"pid":27443,"tid":27477,"ts":326458451385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":309201},
-{"pid":27443,"tid":27477,"ts":326458451415,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":309232},
-{"pid":27443,"tid":27477,"ts":326458451446,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":309262},
-{"pid":27443,"tid":27477,"ts":326458451476,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":309293},
-{"pid":27443,"tid":27477,"ts":326458451507,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":309323},
-{"pid":27443,"tid":27477,"ts":326458451507,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":309323},
-{"pid":27443,"tid":27477,"ts":326458451537,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":309354},
-{"pid":27443,"tid":27477,"ts":326458451598,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":309415},
-{"pid":27443,"tid":27477,"ts":326458451629,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":309446},
-{"pid":27443,"tid":27477,"ts":326458451659,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":309476},
-{"pid":27443,"tid":27477,"ts":326458451659,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":309476},
-{"pid":27443,"tid":27477,"ts":326458451721,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":309537},
-{"pid":27443,"tid":27477,"ts":326458451721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":309537,"id":"0xaf88a80df182217a"},
-{"pid":27443,"tid":27477,"ts":326458451782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458450},"tts":309598,"id":"0xaf88a874f182217a"},
-{"pid":27443,"tid":27477,"ts":326458451782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":309598},
-{"pid":27443,"tid":27477,"ts":326458451812,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":309629,"id":"0xaf88a80cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458451812,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":427,"tdur":153,"tts":309659},
-{"pid":27443,"tid":27477,"ts":326458451843,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":396,"tdur":153,"tts":309659},
-{"pid":27443,"tid":27477,"ts":326458451843,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":309659},
-{"pid":27443,"tid":27477,"ts":326458451873,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":309690},
-{"pid":27443,"tid":27477,"ts":326458451873,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":336,"tdur":61,"tts":309690},
-{"pid":27443,"tid":27477,"ts":326458451904,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":274,"tdur":31,"tts":309720},
-{"pid":27443,"tid":27477,"ts":326458452209,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":309781},
-{"pid":27443,"tid":27477,"ts":326458452209,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":309781},
-{"pid":27443,"tid":27477,"ts":326458452270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":309842,"id":"0xaf88a80df182217a"},
-{"pid":27443,"tid":27477,"ts":326458452270,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2930,"tdur":2137,"tts":309842},
-{"pid":27443,"tid":27477,"ts":326458452270,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2930,"tdur":2106,"tts":309873},
-{"pid":27443,"tid":27477,"ts":326458452300,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":309873},
-{"pid":27443,"tid":27477,"ts":326458452331,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2838,"tdur":2045,"tts":309903},
-{"pid":27443,"tid":27477,"ts":326458452331,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":72},"dur":1312,"tdur":1160,"tts":309903},
-{"pid":27443,"tid":27477,"ts":326458452392,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":72},"dur":519,"tdur":367,"tts":309964},
-{"pid":27443,"tid":27477,"ts":326458452911,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":72},"dur":61,"tdur":30,"tts":310331},
-{"pid":27443,"tid":27477,"ts":326458452972,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":72},"tts":310392},
-{"pid":27443,"tid":27477,"ts":326458453155,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":310575},
-{"pid":27443,"tid":27477,"ts":326458453155,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":92,"tdur":61,"tts":310605},
-{"pid":27443,"tid":27477,"ts":326458453155,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":310605},
-{"pid":27443,"tid":27477,"ts":326458453216,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":310636},
-{"pid":27443,"tid":27477,"ts":326458453216,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":310636},
-{"pid":27443,"tid":27477,"ts":326458453247,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":310666,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458453308,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":310758},
-{"pid":27443,"tid":27477,"ts":326458453643,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":311063},
-{"pid":27443,"tid":27477,"ts":326458453643,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1191,"tdur":519,"tts":311094},
-{"pid":27443,"tid":27477,"ts":326458453674,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":311094},
-{"pid":27443,"tid":27477,"ts":326458453704,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1099,"tdur":458,"tts":311124},
-{"pid":27443,"tid":27477,"ts":326458454254,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12175},"dur":0,"tdur":0,"tts":311399},
-{"pid":27443,"tid":27477,"ts":326458454284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":311429,"id":"0xaf88ad8cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458454834,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":311613,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458454864,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":311643,"id":"0x300000026"},
-{"pid":27443,"tid":27477,"ts":326458454895,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":213,"tts":311674},
-{"pid":27443,"tid":27477,"ts":326458455047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":311826,"id":"0xaf88ad8df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458455108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":311887,"id":"0xaf88abe9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458455139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":311918,"id":"0xaf88a8aef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458455200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":311979,"id":"0xaf88a80ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458455200,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":311979},
-{"pid":27443,"tid":27477,"ts":326458455230,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":312009},
-{"pid":27443,"tid":27477,"ts":326458455230,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":312009,"id":"0x300000027"},
-{"pid":27443,"tid":27477,"ts":326458455261,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":312040},
-{"pid":27443,"tid":27477,"ts":326458455261,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":312070,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458455291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":312070,"id":"0xaf88abeaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458455322,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":312101,"id":"0xaf88a80ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458455352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":123,"tdur":122,"tts":312131},
-{"pid":27443,"tid":27477,"ts":326458455383,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458434337.0,"frame_time_us":326458450336.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":312162},{"pid":27443,"tid":27477,"ts":326458455383,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458434337.0,"frame_time_us":326458450336.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":91,"tts":312162},
-{"pid":27443,"tid":27477,"ts":326458455413,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458467002},"dur":31,"tdur":0,"tts":312223},
-{"pid":27443,"tid":27477,"ts":326458455444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":312223,"id":"0xaf88a808f182217a"},
-{"pid":27443,"tid":27477,"ts":326458456817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":312314,"id":"0xaf88a809f182217a"},
-{"pid":27443,"tid":27477,"ts":326458456817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":312314},
-{"pid":27443,"tid":27477,"ts":326458456817,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":31,"tts":312314},
-{"pid":27443,"tid":27477,"ts":326458457672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":312406,"id":"0xaf88a80af182217a"},
-{"pid":27443,"tid":27477,"ts":326458457672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":312406},
-{"pid":27443,"tid":27477,"ts":326458457703,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":152,"tdur":152,"tts":312437},
-{"pid":27443,"tid":27477,"ts":326458457733,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":73},"tts":312467},
-{"pid":27443,"tid":27477,"ts":326458457794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":312528,"id":"0xaf88abe4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458457825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":312559,"id":"0xaf88a8aaf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458457855,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":312589},
-{"pid":27443,"tid":27477,"ts":326458457855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":312589,"id":"0xaf88abe5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458467103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458467},"tts":312650,"id":"0xaf88a808f182217a"},
-{"pid":27443,"tid":27477,"ts":326458467133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":733,"tdur":671,"tts":312681},
-{"pid":27443,"tid":27477,"ts":326458467133,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":733,"tdur":671,"tts":312681},
-{"pid":27443,"tid":27477,"ts":326458467164,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":671,"tdur":611,"tts":312711},
-{"pid":27443,"tid":27477,"ts":326458467164,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":671,"tdur":611,"tts":312711},
-{"pid":27443,"tid":27477,"ts":326458467164,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":183,"tts":312711},
-{"pid":27443,"tid":27477,"ts":326458467408,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":312894},
-{"pid":27443,"tid":27477,"ts":326458467469,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":312955},
-{"pid":27443,"tid":27477,"ts":326458467500,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":7},"dur":305,"tdur":305,"tts":312986},
-{"pid":27443,"tid":27477,"ts":326458467622,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":152,"tts":313139},
-{"pid":27443,"tid":27477,"ts":326458467652,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":313139,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458467683,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":313169},
-{"pid":27443,"tid":27477,"ts":326458467713,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":10,"num_edges":7},"dur":61,"tdur":31,"tts":313230},
-{"pid":27443,"tid":27477,"ts":326458467805,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":313291,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458467835,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":313322,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458467835,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":313322,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458467866,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":313352,"id":"0xaf88a80bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458467896,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":3205,"tdur":1861,"tts":313383},
-{"pid":27443,"tid":27477,"ts":326458467896,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":3205,"tdur":1861,"tts":313383},
-{"pid":27443,"tid":27477,"ts":326458467896,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":313383},
-{"pid":27443,"tid":27477,"ts":326458467896,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":3174,"tdur":1831,"tts":313383},
-{"pid":27443,"tid":27477,"ts":326458467927,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":3143,"tdur":1801,"tts":313413},
-{"pid":27443,"tid":27459,"ts":326458455658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6001373,"id":"0xaf88abebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458455719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6001434,"id":"0xaf88a8a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458455719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1099,"tts":6001434},
-{"pid":27443,"tid":27459,"ts":326458455719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6001464,"id":"0xaf88a8a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458455749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6001464,"id":"0xaf88abeaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458455749,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1038,"tdur":1038,"tts":6001464},
-{"pid":27443,"tid":27459,"ts":326458455810,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":977,"tdur":976,"tts":6001526},
-{"pid":27443,"tid":27459,"ts":326458455810,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6001556,"id":"0x300000027"},
-{"pid":27443,"tid":27459,"ts":326458455841,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":854,"tdur":855,"tts":6001556},
-{"pid":27443,"tid":27459,"ts":326458455871,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":824,"tdur":824,"tts":6001587},
-{"pid":27443,"tid":27459,"ts":326458455932,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6001648},
-{"pid":27443,"tid":27459,"ts":326458455963,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6001709},
-{"pid":27443,"tid":27459,"ts":326458455993,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6001739},
-{"pid":27443,"tid":27459,"ts":326458456024,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6001770},
-{"pid":27443,"tid":27459,"ts":326458456085,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":611,"tts":6001800},
-{"pid":27443,"tid":27459,"ts":326458456207,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":427,"tts":6001953},
-{"pid":27443,"tid":27459,"ts":326458456238,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6001953},
-{"pid":27443,"tid":27459,"ts":326458456543,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":24,"frame":"0x78c60000"}},"tts":6002258,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458456573,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6002289},
-{"pid":27443,"tid":27459,"ts":326458456573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6002289,"id":"0xaf88a809f182217a"},
-{"pid":27443,"tid":27459,"ts":326458456634,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6002350},
-{"pid":27443,"tid":27459,"ts":326458456726,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":31,"tts":6002441},
-{"pid":27443,"tid":27459,"ts":326458456726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6002441,"id":"0xaf88ad8ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458457306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6002594,"id":"0xaf88a8a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458457306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":6002594},
-{"pid":27443,"tid":27459,"ts":326458457855,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6002655,"id":"0xaf88a8aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458457886,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12055,"tdur":9614,"tts":6002685},
-{"pid":27443,"tid":27459,"ts":326458457886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6002685,"id":"0xaf88a8abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458457916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6002716,"id":"0xaf88abe4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458457916,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12025,"tdur":9583,"tts":6002716},
-{"pid":27443,"tid":27459,"ts":326458457916,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":73},"tts":6002716},
-{"pid":27443,"tid":27459,"ts":326458457947,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6002746},
-{"pid":27443,"tid":27459,"ts":326458457977,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6409,"tdur":6195,"tts":6002777},
-{"pid":27443,"tid":27459,"ts":326458458008,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6002807},
-{"pid":27443,"tid":27459,"ts":326458458038,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":24,"frame":"0x78c60000"}},"dur":6348,"tdur":6134,"tts":6002838},
-{"pid":27443,"tid":27459,"ts":326458458099,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6257,"tdur":6043,"tts":6002899},
-{"pid":27443,"tid":27459,"ts":326458458130,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6002929},
-{"pid":27443,"tid":27459,"ts":326458458313,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6003113},
-{"pid":27443,"tid":27459,"ts":326458458343,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":31,"tts":6003143},
-{"pid":27443,"tid":27459,"ts":326458464325,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6008911},
-{"pid":27443,"tid":27459,"ts":326458464386,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2656,"tdur":2625,"tts":6008972},
-{"pid":27443,"tid":27459,"ts":326458464448,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6009034},
-{"pid":27443,"tid":27459,"ts":326458464478,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6009064},
-{"pid":27443,"tid":27459,"ts":326458464478,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6009064},
-{"pid":27443,"tid":27459,"ts":326458464966,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6009552},
-{"pid":27443,"tid":27459,"ts":326458465027,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6009583},
-{"pid":27443,"tid":27459,"ts":326458465027,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2015,"tdur":1984,"tts":6009613},
-{"pid":27443,"tid":27459,"ts":326458465058,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1832,"tts":6009613},
-{"pid":27443,"tid":27459,"ts":326458465058,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":305,"tts":6009644},
-{"pid":27443,"tid":27459,"ts":326458465394,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":183,"tts":6009949},
-{"pid":27443,"tid":27459,"ts":326458465607,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6010163},
-{"pid":27443,"tid":27459,"ts":326458465699,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6010254},
-{"pid":27443,"tid":27459,"ts":326458465729,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1130,"tdur":1129,"tts":6010285},
-{"pid":27443,"tid":27459,"ts":326458466889,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":6011445},
-{"pid":27443,"tid":27459,"ts":326458466920,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":6011475},
-{"pid":27443,"tid":27459,"ts":326458467042,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":73},"dur":641,"tdur":519,"tts":6011597},
-{"pid":27443,"tid":27459,"ts":326458467072,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":611,"tdur":458,"tts":6011628},
-{"pid":27443,"tid":27459,"ts":326458467439,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":30,"tdur":0,"tts":6011902},
-{"pid":27443,"tid":27459,"ts":326458467500,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":0,"tdur":0,"tts":6011933},
-{"pid":27443,"tid":27459,"ts":326458467530,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":0,"tdur":0,"tts":6011963},
-{"pid":27443,"tid":27459,"ts":326458467561,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":0,"tdur":0,"tts":6011994},
-{"pid":27443,"tid":27459,"ts":326458467591,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":0,"tdur":0,"tts":6012025},
-{"pid":27443,"tid":27459,"ts":326458467622,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":0,"tdur":0,"tts":6012055},
-{"pid":27443,"tid":27459,"ts":326458467622,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":73},"dur":30,"tdur":0,"tts":6012086},
-{"pid":27443,"tid":27459,"ts":326458467683,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6012116,"id":"0x300000027"},
-{"pid":27443,"tid":27459,"ts":326458467713,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2167,"tdur":61,"tts":6012147},
-{"pid":27443,"tid":27459,"ts":326458467713,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6012147,"id":"0xaf88a80bf182217a"},
-{"pid":27443,"tid":27459,"ts":326458469911,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6012269},
-{"pid":27443,"tid":27459,"ts":326458469972,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6012330,"id":"0xaf88a8abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458469972,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":6012330},
-{"pid":27443,"tid":27459,"ts":326458470033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6012391},
-{"pid":27443,"tid":27459,"ts":326458470063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6012421,"id":"0xaf88a8a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458470063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6012421,"id":"0xaf88abe5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458470063,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":6012421},
-{"pid":27443,"tid":27459,"ts":326458470094,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6012452},
-{"pid":27443,"tid":27459,"ts":326458470124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6012513,"id":"0xaf88a8a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458470155,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6012513},
-{"pid":27443,"tid":27459,"ts":326458472566,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6012635,"id":"0xaf88a8a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458472566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1251,"tdur":1251,"tts":6012635},
-{"pid":27443,"tid":27459,"ts":326458472596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6012665,"id":"0xaf88a8a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458472596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6012665,"id":"0xaf88abe6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458472596,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1221,"tdur":1190,"tts":6012696},
-{"pid":27443,"tid":27459,"ts":326458472719,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1068,"tts":6012788},
-{"pid":27443,"tid":27459,"ts":326458472719,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6012788,"id":"0x300000028"},
-{"pid":27443,"tid":27459,"ts":326458472749,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":916,"tts":6012818},
-{"pid":27443,"tid":27459,"ts":326458472780,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":6012849},
-{"pid":27443,"tid":27459,"ts":326458472841,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6012910},
-{"pid":27443,"tid":27459,"ts":326458472902,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6012971},
-{"pid":27443,"tid":27459,"ts":326458472932,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6013001},
-{"pid":27443,"tid":27459,"ts":326458472963,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6013032},
-{"pid":27443,"tid":27459,"ts":326458472993,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":672,"tdur":672,"tts":6013062},
-{"pid":27443,"tid":27459,"ts":326458473146,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":458,"tts":6013215},
-{"pid":27443,"tid":27459,"ts":326458473146,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6013215},
-{"pid":27443,"tid":27459,"ts":326458473512,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":25,"frame":"0x78c60000"}},"tts":6013581,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458473543,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":6013612},
-{"pid":27443,"tid":27459,"ts":326458473573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6013642,"id":"0xaf88a81df182217a"},
-{"pid":27443,"tid":27459,"ts":326458473604,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6013673},
-{"pid":27443,"tid":27459,"ts":326458473695,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":6013764},
-{"pid":27443,"tid":27459,"ts":326458473695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6013795,"id":"0xaf88ad88f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458473848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6013917,"id":"0xaf88a8a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458473878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6013947},
-{"pid":27443,"tid":27459,"ts":326458475832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6014008,"id":"0xaf88a8a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458475862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13826,"tdur":10621,"tts":6014039},
-{"pid":27443,"tid":27459,"ts":326458475862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6014039,"id":"0xaf88a8a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458475893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6014069,"id":"0xaf88abe7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458475893,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13764,"tdur":10560,"tts":6014069},
-{"pid":27443,"tid":27459,"ts":326458475923,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":74},"tts":6014100},
-{"pid":27443,"tid":27459,"ts":326458475923,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6014100},
-{"pid":27443,"tid":27459,"ts":326458475984,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8607,"tdur":6898,"tts":6014161},
-{"pid":27443,"tid":27459,"ts":326458475984,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":244,"tdur":30,"tts":6014161},
-{"pid":27443,"tid":27459,"ts":326458475984,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":30,"tts":6014161},
-{"pid":27443,"tid":27459,"ts":326458476228,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":25,"frame":"0x78c60000"}},"dur":8363,"tdur":6806,"tts":6014253},
-{"pid":27443,"tid":27459,"ts":326458476320,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":8271,"tdur":6745,"tts":6014314},
-{"pid":27443,"tid":27459,"ts":326458476350,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6014344},
-{"pid":27443,"tid":27459,"ts":326458476564,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6014558},
-{"pid":27443,"tid":27459,"ts":326458476625,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":6014619},
-{"pid":27443,"tid":27459,"ts":326458484560,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6021028},
-{"pid":27443,"tid":27459,"ts":326458484621,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3846,"tdur":2930,"tts":6021089},
-{"pid":27443,"tid":27459,"ts":326458484652,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6021150},
-{"pid":27443,"tid":27459,"ts":326458484683,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6021150},
-{"pid":27443,"tid":27459,"ts":326458484713,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6021181},
-{"pid":27443,"tid":27459,"ts":326458485171,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6021608},
-{"pid":27443,"tid":27459,"ts":326458485201,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6021638},
-{"pid":27443,"tid":27459,"ts":326458485232,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3205,"tdur":2320,"tts":6021669},
-{"pid":27443,"tid":27459,"ts":326458485232,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2594,"tdur":2106,"tts":6021699},
-{"pid":27443,"tid":27459,"ts":326458485262,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":428,"tdur":428,"tts":6021699},
-{"pid":27443,"tid":27459,"ts":326458485690,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":214,"tts":6022157},
-{"pid":27443,"tid":27459,"ts":326458485934,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6022371},
-{"pid":27443,"tid":27477,"ts":326458467927,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":1129,"tdur":61,"tts":313413},
-{"pid":27443,"tid":27477,"ts":326458467927,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":1099,"tdur":31,"tts":313413},
-{"pid":27443,"tid":27477,"ts":326458467927,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1099,"tdur":31,"tts":313413},
-{"pid":27443,"tid":27477,"ts":326458469026,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":313444,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458469056,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":313474},
-{"pid":27443,"tid":27477,"ts":326458469087,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":457,"tdur":458,"tts":313505},
-{"pid":27443,"tid":27477,"ts":326458469636,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1434,"tdur":1160,"tts":314054},
-{"pid":27443,"tid":27477,"ts":326458469636,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":73},"dur":275,"tdur":275,"tts":314054},
-{"pid":27443,"tid":27477,"ts":326458469911,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":73},"dur":30,"tdur":30,"tts":314329},
-{"pid":27443,"tid":27477,"ts":326458469972,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":73},"tts":314390},
-{"pid":27443,"tid":27477,"ts":326458470277,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":314573},
-{"pid":27443,"tid":27477,"ts":326458470307,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":314604},
-{"pid":27443,"tid":27477,"ts":326458470307,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":763,"tdur":579,"tts":314604},
-{"pid":27443,"tid":27477,"ts":326458470307,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":92,"tdur":91,"tts":314604},
-{"pid":27443,"tid":27477,"ts":326458470307,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":314604},
-{"pid":27443,"tid":27477,"ts":326458470338,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":31,"tts":314634},
-{"pid":27443,"tid":27477,"ts":326458470338,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":314634},
-{"pid":27443,"tid":27477,"ts":326458470399,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":314695},
-{"pid":27443,"tid":27477,"ts":326458470399,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":366,"tdur":183,"tts":314726},
-{"pid":27443,"tid":27477,"ts":326458470765,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":314909},
-{"pid":27443,"tid":27477,"ts":326458470796,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":314939},
-{"pid":27443,"tid":27477,"ts":326458470826,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":6},"dur":183,"tdur":183,"tts":314970},
-{"pid":27443,"tid":27477,"ts":326458470826,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":314970},
-{"pid":27443,"tid":27477,"ts":326458470857,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12214},"dur":61,"tdur":61,"tts":315000},
-{"pid":27443,"tid":27477,"ts":326458470857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315000,"id":"0xaf88ad8ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458470918,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":315061},
-{"pid":27443,"tid":27477,"ts":326458470948,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":9,"num_edges":6},"dur":31,"tdur":30,"tts":315092},
-{"pid":27443,"tid":27477,"ts":326458470979,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":315122,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458471040,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":315183,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458471040,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":315183,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458471101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315244,"id":"0xaf88a804f182217a"},
-{"pid":27443,"tid":27477,"ts":326458471101,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":315244},
-{"pid":27443,"tid":27477,"ts":326458471131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315275,"id":"0xaf88a805f182217a"},
-{"pid":27443,"tid":27477,"ts":326458471131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":315275},
-{"pid":27443,"tid":27477,"ts":326458471162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315305,"id":"0xaf88a806f182217a"},
-{"pid":27443,"tid":27477,"ts":326458471162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":1373,"tdur":214,"tts":315305},
-{"pid":27443,"tid":27477,"ts":326458471162,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1190,"tdur":0,"tts":315305},
-{"pid":27443,"tid":27477,"ts":326458472352,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":152,"tts":315367},
-{"pid":27443,"tid":27477,"ts":326458472383,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":315367,"id":"0x300000028"},
-{"pid":27443,"tid":27477,"ts":326458472413,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":315397},
-{"pid":27443,"tid":27477,"ts":326458472444,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":315428,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458472474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":315458,"id":"0xaf88abe6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458472474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315458,"id":"0xaf88a8a5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458472535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315519,"id":"0xaf88a807f182217a"},
-{"pid":27443,"tid":27477,"ts":326458472566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":315550},
-{"pid":27443,"tid":27477,"ts":326458472596,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458451013.0,"frame_time_us":326458467012.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":315580},
-{"pid":27443,"tid":27477,"ts":326458472596,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458451013.0,"frame_time_us":326458467012.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":62,"tdur":61,"tts":315580},
-{"pid":27443,"tid":27477,"ts":326458472658,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458483678},"dur":0,"tdur":0,"tts":315641},
-{"pid":27443,"tid":27477,"ts":326458472658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315641,"id":"0xaf88a802f182217a"},
-{"pid":27443,"tid":27477,"ts":326458472688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315672,"id":"0xaf88a800f182217a"},
-{"pid":27443,"tid":27477,"ts":326458472688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":315672},
-{"pid":27443,"tid":27477,"ts":326458472719,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":315702},
-{"pid":27443,"tid":27477,"ts":326458472719,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":315702,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458472749,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":315733},
-{"pid":27443,"tid":27477,"ts":326458472749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315733,"id":"0xaf88a803f182217a"},
-{"pid":27443,"tid":27477,"ts":326458472780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315763,"id":"0xaf88a801f182217a"},
-{"pid":27443,"tid":27477,"ts":326458472780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":315763},
-{"pid":27443,"tid":27477,"ts":326458472810,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":315794},
-{"pid":27443,"tid":27477,"ts":326458472810,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":315794,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458472841,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":315824},
-{"pid":27443,"tid":27477,"ts":326458472841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315824,"id":"0xaf88a81cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458472871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315855,"id":"0xaf88a803f182217a"},
-{"pid":27443,"tid":27477,"ts":326458472871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2503,"tdur":1678,"tts":315855},
-{"pid":27443,"tid":27477,"ts":326458472902,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2472,"tdur":1648,"tts":315885},
-{"pid":27443,"tid":27469,"ts":326458468202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278254,"id":"0xaf88a805f182217a"},
-{"pid":27443,"tid":27469,"ts":326458468232,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2533,"tdur":1007,"tts":278284},
-{"pid":27443,"tid":27469,"ts":326458468232,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":2533,"tdur":1007,"tts":278284},
-{"pid":27443,"tid":27469,"ts":326458468263,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7bd50030"},"tileResolution":"HIGH_RESOLUTION"}},"tts":278315},
-{"pid":27443,"tid":27469,"ts":326458468263,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":278315},
-{"pid":27443,"tid":27469,"ts":326458468324,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":278376},
-{"pid":27443,"tid":27469,"ts":326458468385,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7bd50030"},"tileResolution":"HIGH_RESOLUTION"}},"tts":278437},
-{"pid":27443,"tid":27469,"ts":326458468446,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":278467,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458469148,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":339874},
-{"pid":27443,"tid":27471,"ts":326458469178,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":733,"tdur":732,"tts":339905},
-{"pid":27443,"tid":27471,"ts":326458469209,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7b4d2138"},"tileResolution":"HIGH_RESOLUTION"}},"tts":339935},
-{"pid":27443,"tid":27471,"ts":326458469209,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":339935},
-{"pid":27443,"tid":27471,"ts":326458469270,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":339996},
-{"pid":27443,"tid":27471,"ts":326458469270,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7b4d2138"},"tileResolution":"HIGH_RESOLUTION"}},"tts":340027},
-{"pid":27443,"tid":27471,"ts":326458469300,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":340027,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458469880,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":340607},
-{"pid":27443,"tid":27471,"ts":326458469911,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1922,"tdur":885,"tts":340637},
-{"pid":27443,"tid":27471,"ts":326458469911,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1922,"tdur":885,"tts":340637},
-{"pid":27443,"tid":27471,"ts":326458469941,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":71,"tileId":{"id_ref":"0x799eeb28"},"tileResolution":"HIGH_RESOLUTION"}},"tts":340668},
-{"pid":27443,"tid":27471,"ts":326458469941,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":340668},
-{"pid":27443,"tid":27469,"ts":326458470765,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":279291},
-{"pid":27443,"tid":27469,"ts":326458470765,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1435,"tdur":1008,"tts":279291},
-{"pid":27443,"tid":27469,"ts":326458470796,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1373,"tdur":946,"tts":279322},
-{"pid":27443,"tid":27469,"ts":326458470796,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7b4d2088"},"tileResolution":"HIGH_RESOLUTION"}},"tts":279322},
-{"pid":27443,"tid":27469,"ts":326458470826,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":428,"tdur":31,"tts":279352},
-{"pid":27443,"tid":27471,"ts":326458471101,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":340790},
-{"pid":27443,"tid":27471,"ts":326458471101,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":71,"tileId":{"id_ref":"0x799eeb28"},"tileResolution":"HIGH_RESOLUTION"}},"tts":340820},
-{"pid":27443,"tid":27471,"ts":326458471131,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":340820,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458471284,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":279414},
-{"pid":27443,"tid":27469,"ts":326458471284,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7b4d2088"},"tileResolution":"HIGH_RESOLUTION"}},"tts":279414},
-{"pid":27443,"tid":27469,"ts":326458471315,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":279444,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458471803,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":341492},
-{"pid":27443,"tid":27471,"ts":326458471833,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":341522},
-{"pid":27443,"tid":27471,"ts":326458471833,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":341522},
-{"pid":27443,"tid":27471,"ts":326458471864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":341553,"id":"0xaf88a800f182217a"},
-{"pid":27443,"tid":27471,"ts":326458471864,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":341553},
-{"pid":27443,"tid":27471,"ts":326458471864,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":341553},
-{"pid":27443,"tid":27471,"ts":326458471894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":341584,"id":"0xaf88a801f182217a"},
-{"pid":27443,"tid":27471,"ts":326458471894,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":733,"tdur":701,"tts":341584},
-{"pid":27443,"tid":27471,"ts":326458471894,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":671,"tts":341614},
-{"pid":27443,"tid":27471,"ts":326458471925,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7b4d1fd8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":341614},
-{"pid":27443,"tid":27471,"ts":326458471925,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":341614},
-{"pid":27443,"tid":27471,"ts":326458471986,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":341675},
-{"pid":27443,"tid":27471,"ts":326458472017,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":71,"tileId":{"id_ref":"0x7b4d1fd8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":341706},
-{"pid":27443,"tid":27471,"ts":326458472017,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":341706,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458472169,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":280268},
-{"pid":27443,"tid":27469,"ts":326458472200,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1922,"tdur":793,"tts":280299},
-{"pid":27443,"tid":27469,"ts":326458472200,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1922,"tdur":763,"tts":280299},
-{"pid":27443,"tid":27469,"ts":326458472230,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":71,"tileId":{"id_ref":"0x797ba658"},"tileResolution":"HIGH_RESOLUTION"}},"tts":280329},
-{"pid":27443,"tid":27469,"ts":326458472230,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":280329},
-{"pid":27443,"tid":27469,"ts":326458472261,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":280360},
-{"pid":27443,"tid":27469,"ts":326458472291,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":71,"tileId":{"id_ref":"0x797ba658"},"tileResolution":"HIGH_RESOLUTION"}},"tts":280390},
-{"pid":27443,"tid":27469,"ts":326458472291,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":280390,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458472596,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":342285},
-{"pid":27443,"tid":27471,"ts":326458472627,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":824,"tts":342316},
-{"pid":27443,"tid":27471,"ts":326458472627,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":794,"tts":342316},
-{"pid":27443,"tid":27471,"ts":326458472658,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":71,"tileId":{"id_ref":"0x799eef40"},"tileResolution":"HIGH_RESOLUTION"}},"tts":342347},
-{"pid":27443,"tid":27471,"ts":326458472688,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":342377},
-{"pid":27443,"tid":27471,"ts":326458472719,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":342408},
-{"pid":27443,"tid":27471,"ts":326458472719,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":71,"tileId":{"id_ref":"0x799eef40"},"tileResolution":"HIGH_RESOLUTION"}},"tts":342438},
-{"pid":27443,"tid":27471,"ts":326458472749,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":342438,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458473421,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":343110},
-{"pid":27443,"tid":27469,"ts":326458474092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281062,"id":"0xaf88a81ef182217a"},
-{"pid":27443,"tid":27469,"ts":326458474092,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":281062},
-{"pid":27443,"tid":27477,"ts":326458472902,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":335,"tdur":336,"tts":315885},
-{"pid":27443,"tid":27477,"ts":326458472902,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":315885},
-{"pid":27443,"tid":27477,"ts":326458472932,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":315916},
-{"pid":27443,"tid":27477,"ts":326458472932,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":315916},
-{"pid":27443,"tid":27477,"ts":326458472993,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":315977},
-{"pid":27443,"tid":27477,"ts":326458472993,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":315977},
-{"pid":27443,"tid":27477,"ts":326458473024,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":316007},
-{"pid":27443,"tid":27477,"ts":326458473054,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":316038},
-{"pid":27443,"tid":27477,"ts":326458473054,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":92,"tdur":92,"tts":316038},
-{"pid":27443,"tid":27477,"ts":326458473085,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":62,"tts":316068},
-{"pid":27443,"tid":27477,"ts":326458473146,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":316130},
-{"pid":27443,"tid":27477,"ts":326458473176,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":316160},
-{"pid":27443,"tid":27477,"ts":326458473176,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":316160},
-{"pid":27443,"tid":27477,"ts":326458473207,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":316191},
-{"pid":27443,"tid":27477,"ts":326458473237,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":153,"tts":316221},
-{"pid":27443,"tid":27477,"ts":326458473237,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":316221},
-{"pid":27443,"tid":27477,"ts":326458473390,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1984,"tdur":1159,"tts":316374},
-{"pid":27443,"tid":27477,"ts":326458473390,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":316374},
-{"pid":27443,"tid":27477,"ts":326458473451,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1892,"tdur":1129,"tts":316374},
-{"pid":27443,"tid":27477,"ts":326458473482,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1831,"tdur":1068,"tts":316404},
-{"pid":27443,"tid":27477,"ts":326458473482,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":316404,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458473634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316496},
-{"pid":27443,"tid":27477,"ts":326458473634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":316496},
-{"pid":27443,"tid":27477,"ts":326458473665,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":316526},
-{"pid":27443,"tid":27477,"ts":326458473695,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316557},
-{"pid":27443,"tid":27477,"ts":326458473726,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":316587},
-{"pid":27443,"tid":27477,"ts":326458473787,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":316618},
-{"pid":27443,"tid":27477,"ts":326458473817,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":316648},
-{"pid":27443,"tid":27477,"ts":326458473848,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316679},
-{"pid":27443,"tid":27477,"ts":326458473848,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":305,"tdur":30,"tts":316679},
-{"pid":27443,"tid":27477,"ts":326458473848,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":316679},
-{"pid":27443,"tid":27477,"ts":326458474153,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":316709},
-{"pid":27443,"tid":27477,"ts":326458474184,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":316740},
-{"pid":27443,"tid":27477,"ts":326458474214,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316770},
-{"pid":27443,"tid":27477,"ts":326458474245,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316801},
-{"pid":27443,"tid":27477,"ts":326458474245,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":316801},
-{"pid":27443,"tid":27477,"ts":326458474306,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":316831},
-{"pid":27443,"tid":27477,"ts":326458474336,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":316862},
-{"pid":27443,"tid":27477,"ts":326458474367,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316893},
-{"pid":27443,"tid":27477,"ts":326458474397,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":316923},
-{"pid":27443,"tid":27477,"ts":326458474397,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":316923},
-{"pid":27443,"tid":27477,"ts":326458474428,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":396,"tdur":0,"tts":316954},
-{"pid":27443,"tid":27477,"ts":326458474855,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317015},
-{"pid":27443,"tid":27477,"ts":326458474855,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":317015},
-{"pid":27443,"tid":27477,"ts":326458474885,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317045},
-{"pid":27443,"tid":27477,"ts":326458474885,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":317076},
-{"pid":27443,"tid":27477,"ts":326458474916,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":317076},
-{"pid":27443,"tid":27477,"ts":326458474947,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317106},
-{"pid":27443,"tid":27477,"ts":326458475038,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":317228},
-{"pid":27443,"tid":27477,"ts":326458475069,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":317228},
-{"pid":27443,"tid":27477,"ts":326458475099,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317259},
-{"pid":27443,"tid":27477,"ts":326458475130,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317289},
-{"pid":27443,"tid":27477,"ts":326458475130,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":317289},
-{"pid":27443,"tid":27477,"ts":326458475160,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317320},
-{"pid":27443,"tid":27477,"ts":326458475191,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":317350},
-{"pid":27443,"tid":27477,"ts":326458475221,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":317381},
-{"pid":27443,"tid":27477,"ts":326458475252,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":317442},
-{"pid":27443,"tid":27477,"ts":326458475282,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":317442},
-{"pid":27443,"tid":27477,"ts":326458475282,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":317442},
-{"pid":27443,"tid":27477,"ts":326458475313,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":0,"tts":317503},
-{"pid":27443,"tid":27477,"ts":326458475343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":317503,"id":"0xaf88a818f182217a"},
-{"pid":27443,"tid":27477,"ts":326458475374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317533,"id":"0xaf88a81cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458475404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":275,"tdur":275,"tts":317564},
-{"pid":27443,"tid":27477,"ts":326458475404,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":275,"tdur":275,"tts":317564},
-{"pid":27443,"tid":27469,"ts":326458474122,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":62,"tdur":61,"tts":281092},
-{"pid":27443,"tid":27469,"ts":326458474153,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":281123},
-{"pid":27443,"tid":27469,"ts":326458474153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281123,"id":"0xaf88a81ff182217a"},
-{"pid":27443,"tid":27469,"ts":326458490695,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":281184},
-{"pid":27443,"tid":27469,"ts":326458490726,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":281214},
-{"pid":27443,"tid":27469,"ts":326458490726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281214,"id":"0xaf88a816f182217a"},
-{"pid":27443,"tid":27469,"ts":326458490756,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":281245},
-{"pid":27443,"tid":27469,"ts":326458490756,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":281245},
-{"pid":27443,"tid":27469,"ts":326458490756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281275,"id":"0xaf88a817f182217a"},
-{"pid":27443,"tid":27469,"ts":326458490787,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":281275},
-{"pid":27443,"tid":27469,"ts":326458490787,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":281275},
-{"pid":27443,"tid":27469,"ts":326458490817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281306,"id":"0xaf88a810f182217a"},
-{"pid":27443,"tid":27469,"ts":326458504124,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":281367},
-{"pid":27443,"tid":27469,"ts":326458504155,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":281397},
-{"pid":27443,"tid":27469,"ts":326458504155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281397,"id":"0xaf88a829f182217a"},
-{"pid":27443,"tid":27469,"ts":326458504185,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":61,"tts":281428},
-{"pid":27443,"tid":27469,"ts":326458504277,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":281458},
-{"pid":27443,"tid":27469,"ts":326458504277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281458,"id":"0xaf88a82af182217a"},
-{"pid":27443,"tid":27469,"ts":326458504307,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":281489},
-{"pid":27443,"tid":27469,"ts":326458504307,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":281489},
-{"pid":27443,"tid":27469,"ts":326458504307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281519,"id":"0xaf88a82bf182217a"},
-{"pid":27443,"tid":27469,"ts":326458531440,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":281550},
-{"pid":27443,"tid":27469,"ts":326458531501,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":281580},
-{"pid":27443,"tid":27469,"ts":326458531501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281580,"id":"0xaf88a83ef182217a"},
-{"pid":27443,"tid":27471,"ts":326458531501,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":343354},
-{"pid":27443,"tid":27471,"ts":326458531531,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":343354},
-{"pid":27443,"tid":27469,"ts":326458531562,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":281642},
-{"pid":27443,"tid":27471,"ts":326458531562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343384,"id":"0xaf88a83ff182217a"},
-{"pid":27443,"tid":27469,"ts":326458531562,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":281642},
-{"pid":27443,"tid":27469,"ts":326458531562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281642,"id":"0xaf88a838f182217a"},
-{"pid":27443,"tid":27471,"ts":326458551186,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":123,"tdur":122,"tts":343384},
-{"pid":27443,"tid":27471,"ts":326458551247,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":343445},
-{"pid":27443,"tid":27471,"ts":326458551247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343445,"id":"0xaf88a832f182217a"},
-{"pid":27443,"tid":27471,"ts":326458551309,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":343506},
-{"pid":27443,"tid":27471,"ts":326458551309,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":343506},
-{"pid":27443,"tid":27471,"ts":326458551339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343537,"id":"0xaf88a833f182217a"},
-{"pid":27443,"tid":27471,"ts":326458551339,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":91,"tts":343537},
-{"pid":27443,"tid":27471,"ts":326458551370,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":343567},
-{"pid":27443,"tid":27471,"ts":326458551370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343567,"id":"0xaf88a8ccf182217a"},
-{"pid":27443,"tid":27471,"ts":326458557474,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":343659},
-{"pid":27443,"tid":27471,"ts":326458557504,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":343689},
-{"pid":27443,"tid":27471,"ts":326458557504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343720,"id":"0xaf88a8cbf182217a"},
-{"pid":27443,"tid":27471,"ts":326458557535,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":343720},
-{"pid":27443,"tid":27471,"ts":326458557535,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":343720},
-{"pid":27443,"tid":27471,"ts":326458557565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343750,"id":"0xaf88a8c4f182217a"},
-{"pid":27443,"tid":27471,"ts":326458557596,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":343781},
-{"pid":27443,"tid":27471,"ts":326458557596,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":343811},
-{"pid":27443,"tid":27471,"ts":326458557626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343811,"id":"0xaf88a8c5f182217a"},
-{"pid":27443,"tid":27471,"ts":326458581707,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":343842},
-{"pid":27443,"tid":27471,"ts":326458581737,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":343873},
-{"pid":27443,"tid":27471,"ts":326458581737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343873,"id":"0xaf88a8ddf182217a"},
-{"pid":27443,"tid":27469,"ts":326458581737,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":281794},
-{"pid":27443,"tid":27469,"ts":326458581768,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":281825},
-{"pid":27443,"tid":27469,"ts":326458581798,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281855,"id":"0xaf88a8def182217a"},
-{"pid":27443,"tid":27471,"ts":326458581798,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":343934},
-{"pid":27443,"tid":27471,"ts":326458581798,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":343934},
-{"pid":27443,"tid":27471,"ts":326458581798,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343934,"id":"0xaf88a8dff182217a"},
-{"pid":27443,"tid":27469,"ts":326458602613,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":281886},
-{"pid":27443,"tid":27469,"ts":326458602674,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":281947},
-{"pid":27443,"tid":27469,"ts":326458602674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281947,"id":"0xaf88a8d2f182217a"},
-{"pid":27443,"tid":27469,"ts":326458602735,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":282008},
-{"pid":27443,"tid":27469,"ts":326458602735,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":282008},
-{"pid":27443,"tid":27469,"ts":326458602735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":282008,"id":"0xaf88a8d3f182217a"},
-{"pid":27443,"tid":27469,"ts":326458602766,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1038,"tdur":1038,"tts":282038},
-{"pid":27443,"tid":27477,"ts":326458475404,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":183,"tdur":183,"tts":317564},
-{"pid":27443,"tid":27477,"ts":326458475435,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":317594},
-{"pid":27443,"tid":27477,"ts":326458475435,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":317594},
-{"pid":27443,"tid":27477,"ts":326458475465,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":317625},
-{"pid":27443,"tid":27477,"ts":326458475496,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":317656},
-{"pid":27443,"tid":27477,"ts":326458475526,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":317686},
-{"pid":27443,"tid":27477,"ts":326458475526,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":317686},
-{"pid":27443,"tid":27477,"ts":326458475557,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":317717},
-{"pid":27443,"tid":27477,"ts":326458475587,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":62,"tdur":61,"tts":317747},
-{"pid":27443,"tid":27477,"ts":326458475587,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":317747},
-{"pid":27443,"tid":27477,"ts":326458475649,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":317808},
-{"pid":27443,"tid":27477,"ts":326458475649,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":317808},
-{"pid":27443,"tid":27477,"ts":326458475679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317839,"id":"0xaf88a81df182217a"},
-{"pid":27443,"tid":27477,"ts":326458475679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":152,"tts":317839},
-{"pid":27443,"tid":27477,"ts":326458475710,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":317869},
-{"pid":27443,"tid":27477,"ts":326458475710,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":74},"tts":317869},
-{"pid":27443,"tid":27477,"ts":326458475771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":317930,"id":"0xaf88abe7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458475771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":317930,"id":"0xaf88a8a7f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458475801,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":317991},
-{"pid":27443,"tid":27477,"ts":326458475832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317991,"id":"0xaf88a81ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458475862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":61,"tdur":61,"tts":318022},
-{"pid":27443,"tid":27477,"ts":326458475862,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12388},"dur":61,"tdur":61,"tts":318022},
-{"pid":27443,"tid":27477,"ts":326458475893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":318052,"id":"0xaf88ad89f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458475923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":318083,"id":"0xaf88a81ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458475954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":318113},
-{"pid":27443,"tid":27477,"ts":326458475954,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":318113},
-{"pid":27443,"tid":27477,"ts":326458475954,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":318113,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458475984,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":318144},
-{"pid":27443,"tid":27477,"ts":326458475984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":318144,"id":"0xaf88a818f182217a"},
-{"pid":27443,"tid":27477,"ts":326458476015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2716,"tdur":1648,"tts":318174},
-{"pid":27443,"tid":27477,"ts":326458476015,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2716,"tdur":1648,"tts":318174},
-{"pid":27443,"tid":27477,"ts":326458476015,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":318174},
-{"pid":27443,"tid":27477,"ts":326458476045,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2686,"tdur":1587,"tts":318205},
-{"pid":27443,"tid":27477,"ts":326458476045,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":73},"dur":916,"tdur":916,"tts":318205},
-{"pid":27443,"tid":27477,"ts":326458476076,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":73},"dur":274,"tdur":275,"tts":318235},
-{"pid":27443,"tid":27477,"ts":326458476350,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":73},"dur":31,"tdur":31,"tts":318510},
-{"pid":27443,"tid":27477,"ts":326458476381,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":73},"tts":318541},
-{"pid":27443,"tid":27477,"ts":326458476534,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":318693},
-{"pid":27443,"tid":27477,"ts":326458476534,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":318693},
-{"pid":27443,"tid":27477,"ts":326458476564,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":318724},
-{"pid":27443,"tid":27477,"ts":326458476564,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":318724},
-{"pid":27443,"tid":27477,"ts":326458476595,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":7}},"tts":318754,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458476656,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":318815},
-{"pid":27443,"tid":27477,"ts":326458476961,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":319121},
-{"pid":27443,"tid":27477,"ts":326458476961,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":915,"tdur":366,"tts":319121},
-{"pid":27443,"tid":27477,"ts":326458476991,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":319151},
-{"pid":27443,"tid":27477,"ts":326458476991,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":824,"tdur":275,"tts":319151},
-{"pid":27443,"tid":27477,"ts":326458477144,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12388},"dur":0,"tdur":0,"tts":319304},
-{"pid":27443,"tid":27477,"ts":326458477175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":319334,"id":"0xaf88ad8af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458477846,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":319456,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458477876,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":319517,"id":"0x300000027"},
-{"pid":27443,"tid":27477,"ts":326458477907,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":733,"tdur":214,"tts":319517},
-{"pid":27443,"tid":27477,"ts":326458478090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":319700,"id":"0xaf88ad8bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458478670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":319761,"id":"0xaf88abe0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458478670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":319792,"id":"0xaf88a8a1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458480501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":319914,"id":"0xaf88a819f182217a"},
-{"pid":27443,"tid":27477,"ts":326458480501,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":319914},
-{"pid":27443,"tid":27477,"ts":326458480532,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":319945},
-{"pid":27443,"tid":27477,"ts":326458480532,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":319945,"id":"0xaf88abe1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458483828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458483},"tts":320036,"id":"0xaf88a802f182217a"},
-{"pid":27443,"tid":27477,"ts":326458483858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":320067},
-{"pid":27443,"tid":27477,"ts":326458486941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":320128,"id":"0xaf88a81af182217a"},
-{"pid":27443,"tid":27477,"ts":326458486941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":320128},
-{"pid":27443,"tid":27477,"ts":326458486972,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":320158},
-{"pid":27443,"tid":27459,"ts":326458486025,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":6022463},
-{"pid":27443,"tid":27459,"ts":326458486056,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1740,"tdur":1282,"tts":6022493},
-{"pid":27443,"tid":27459,"ts":326458487826,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":458,"tdur":31,"tts":6023805},
-{"pid":27443,"tid":27459,"ts":326458487826,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":458,"tdur":31,"tts":6023805},
-{"pid":27443,"tid":27459,"ts":326458488314,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":123,"tdur":123,"tts":6023866},
-{"pid":27443,"tid":27459,"ts":326458488467,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":74},"dur":427,"tdur":427,"tts":6024019},
-{"pid":27443,"tid":27459,"ts":326458488467,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":6024019},
-{"pid":27443,"tid":27459,"ts":326458488742,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":30,"tdur":30,"tts":6024294},
-{"pid":27443,"tid":27459,"ts":326458488772,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":31,"tdur":31,"tts":6024324},
-{"pid":27443,"tid":27459,"ts":326458488803,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":0,"tdur":0,"tts":6024355},
-{"pid":27443,"tid":27459,"ts":326458488803,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":30,"tdur":0,"tts":6024385},
-{"pid":27443,"tid":27459,"ts":326458488833,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":0,"tdur":0,"tts":6024385},
-{"pid":27443,"tid":27459,"ts":326458488864,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":0,"tdur":0,"tts":6024416},
-{"pid":27443,"tid":27459,"ts":326458488864,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":74},"dur":30,"tdur":30,"tts":6024416},
-{"pid":27443,"tid":27459,"ts":326458488894,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6024446,"id":"0x300000028"},
-{"pid":27443,"tid":27459,"ts":326458488925,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":91,"tts":6024477},
-{"pid":27443,"tid":27459,"ts":326458488925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6024477,"id":"0xaf88a815f182217a"},
-{"pid":27443,"tid":27459,"ts":326458489627,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6024629},
-{"pid":27443,"tid":27459,"ts":326458489718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6024690,"id":"0xaf88a8a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458489718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6024690},
-{"pid":27443,"tid":27459,"ts":326458489749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6024721,"id":"0xaf88a8a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458489749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6024721,"id":"0xaf88abe0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458489779,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6024752},
-{"pid":27443,"tid":27459,"ts":326458489779,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6024752},
-{"pid":27443,"tid":27459,"ts":326458489810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6024782,"id":"0xaf88a8a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458489840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":62,"tdur":61,"tts":6024813},
-{"pid":27443,"tid":27459,"ts":326458489840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6024813,"id":"0xaf88abe1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458489871,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":6024843},
-{"pid":27443,"tid":27459,"ts":326458489871,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6024843},
-{"pid":27443,"tid":27459,"ts":326458489932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6024904,"id":"0xaf88a8a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458489932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":1099,"tts":6024904},
-{"pid":27443,"tid":27459,"ts":326458489932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6024935,"id":"0xaf88a8a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458489963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6024935,"id":"0xaf88abe2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458489963,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1068,"tdur":1068,"tts":6024935},
-{"pid":27443,"tid":27459,"ts":326458490054,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":977,"tdur":946,"tts":6025026},
-{"pid":27443,"tid":27459,"ts":326458490085,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6025057,"id":"0x300000029"},
-{"pid":27443,"tid":27459,"ts":326458490085,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":794,"tts":6025087},
-{"pid":27443,"tid":27459,"ts":326458490115,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":794,"tdur":794,"tts":6025087},
-{"pid":27443,"tid":27459,"ts":326458490176,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6025148},
-{"pid":27443,"tid":27459,"ts":326458490207,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6025179},
-{"pid":27443,"tid":27459,"ts":326458490237,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6025209},
-{"pid":27443,"tid":27459,"ts":326458490268,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6025240},
-{"pid":27443,"tid":27459,"ts":326458490298,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":580,"tts":6025301},
-{"pid":27443,"tid":27459,"ts":326458490481,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":396,"tts":6025454},
-{"pid":27443,"tid":27459,"ts":326458490481,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6025454},
-{"pid":27443,"tid":27459,"ts":326458490787,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":26,"frame":"0x78c60000"}},"tts":6025789,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458490817,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6025789},
-{"pid":27443,"tid":27459,"ts":326458490817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6025820,"id":"0xaf88a811f182217a"},
-{"pid":27443,"tid":27459,"ts":326458490848,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6025820},
-{"pid":27443,"tid":27459,"ts":326458490939,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6025911},
-{"pid":27443,"tid":27459,"ts":326458490970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6025942,"id":"0xaf88ad84f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458491061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6026033,"id":"0xaf88a8a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458491061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6026033},
-{"pid":27443,"tid":27459,"ts":326458492740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6026155,"id":"0xaf88a8bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458492770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11781,"tdur":9828,"tts":6026155},
-{"pid":27443,"tid":27459,"ts":326458492770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6026186,"id":"0xaf88a8bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458492801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6026186,"id":"0xaf88abe3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458492801,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11689,"tdur":9767,"tts":6026186},
-{"pid":27443,"tid":27459,"ts":326458492801,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":75},"tts":6026186},
-{"pid":27443,"tid":27459,"ts":326458492831,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6026217},
-{"pid":27443,"tid":27459,"ts":326458492893,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6317,"tdur":6226,"tts":6026278},
-{"pid":27443,"tid":27459,"ts":326458492893,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":6026278},
-{"pid":27443,"tid":27459,"ts":326458492954,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":26,"frame":"0x78c60000"}},"dur":6226,"tdur":6165,"tts":6026339},
-{"pid":27443,"tid":27459,"ts":326458493015,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6165,"tdur":6104,"tts":6026400},
-{"pid":27443,"tid":27466,"ts":326458486727,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":153,"tdur":152,"tts":238364},
-{"pid":27443,"tid":27466,"ts":326458486758,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":238394,"id":"0xba445502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458486819,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":238455},
-{"pid":27443,"tid":27466,"ts":326458486849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":238486,"id":"0xaf88a81af182217a"},
-{"pid":27443,"tid":27466,"ts":326458487857,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":238577},
-{"pid":27443,"tid":27466,"ts":326458487887,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":238608},
-{"pid":27443,"tid":27466,"ts":326458487887,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":238608,"id":"0xba445602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458487918,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":238638,"id":"0xaf88a81bf182217a"},
-{"pid":27443,"tid":27466,"ts":326458491031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238760,"id":"0xaf88ad84f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458491031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":238760},
-{"pid":27443,"tid":27466,"ts":326458491061,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":238791,"id":"0xccc3c502"},
-{"pid":27443,"tid":27466,"ts":326458494083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":238913,"id":"0xaf88ad85f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458494113,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":238913},
-{"pid":27443,"tid":27466,"ts":326458494113,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":238913,"id":"0xccc3c606"},
-{"pid":27443,"tid":27466,"ts":326458494327,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":153,"tdur":122,"tts":239035},
-{"pid":27443,"tid":27466,"ts":326458494419,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":239096},
-{"pid":27443,"tid":27466,"ts":326458494449,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":239127,"id":"0xc4c1100a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458495670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":239279,"id":"0xaf88ad86f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458495670,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":239279},
-{"pid":27443,"tid":27466,"ts":326458495700,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":239310,"id":"0xccc3c702"},
-{"pid":27443,"tid":27466,"ts":326458497440,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":91,"tts":239432},
-{"pid":27443,"tid":27466,"ts":326458497471,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":239462},
-{"pid":27443,"tid":27466,"ts":326458497501,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":239462,"id":"0xba445702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458497532,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":239493,"id":"0xaf88a82df182217a"},
-{"pid":27443,"tid":27466,"ts":326458503758,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":214,"tts":239584},
-{"pid":27443,"tid":27466,"ts":326458503788,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":239645},
-{"pid":27443,"tid":27466,"ts":326458503819,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":239645,"id":"0xba445902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458503849,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":239676},
-{"pid":27443,"tid":27466,"ts":326458503880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":239706,"id":"0xaf88a82ff182217a"},
-{"pid":27443,"tid":27466,"ts":326458503910,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":239737},
-{"pid":27443,"tid":27466,"ts":326458503910,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":239737,"id":"0xba445a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458503941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":239768,"id":"0xaf88a828f182217a"},
-{"pid":27443,"tid":27466,"ts":326458507023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":239890,"id":"0xaf88ad87f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458507023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":239890},
-{"pid":27443,"tid":27466,"ts":326458507023,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":239890,"id":"0xccc3c902"},
-{"pid":27443,"tid":27466,"ts":326458507329,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":239981,"id":"0xaf88ad80f3d03dca"},{"pid":27443,"tid":27466,"ts":326458507329,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":239981},
-{"pid":27443,"tid":27466,"ts":326458507329,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240012,"id":"0xccc3ca06"},
-{"pid":27443,"tid":27466,"ts":326458507603,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":240042},
-{"pid":27443,"tid":27466,"ts":326458507634,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":240073},
-{"pid":27443,"tid":27466,"ts":326458507634,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240103,"id":"0xc4c1130a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458508031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":240164,"id":"0xaf88ad81f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458508031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":240164},
-{"pid":27443,"tid":27466,"ts":326458508061,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240195,"id":"0xccc3cb02"},
-{"pid":27443,"tid":27466,"ts":326458509740,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":240286},
-{"pid":27443,"tid":27466,"ts":326458509770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":240317},
-{"pid":27443,"tid":27466,"ts":326458509770,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240317,"id":"0xba445b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458509801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":240347,"id":"0xaf88a821f182217a"},
-{"pid":27443,"tid":27466,"ts":326458518560,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":240439},
-{"pid":27443,"tid":27466,"ts":326458518591,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":240469},
-{"pid":27443,"tid":27466,"ts":326458518591,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240500,"id":"0xba445d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458518652,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":240531},
-{"pid":27443,"tid":27466,"ts":326458518652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":240531,"id":"0xaf88a822f182217a"},
-{"pid":27443,"tid":27466,"ts":326458519079,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":240653},
-{"pid":27443,"tid":27466,"ts":326458519110,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":240683},
-{"pid":27443,"tid":27466,"ts":326458519110,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240683,"id":"0xba445e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458519140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":240714,"id":"0xaf88a823f182217a"},
-{"pid":27443,"tid":27466,"ts":326458520452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":240836,"id":"0xaf88ad82f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458520452,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":240836},
-{"pid":27443,"tid":27466,"ts":326458520483,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":240866,"id":"0xccc3cd02"},
-{"pid":27443,"tid":27466,"ts":326458534217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":240988,"id":"0xaf88ad83f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458534217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":240988},
-{"pid":27443,"tid":27466,"ts":326458534248,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241019,"id":"0xccc3ce06"},
-{"pid":27443,"tid":27466,"ts":326458534583,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":245,"tdur":122,"tts":241110},
-{"pid":27443,"tid":27477,"ts":326458486972,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":320189,"id":"0x300000029"},
-{"pid":27443,"tid":27477,"ts":326458487002,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":320189},
-{"pid":27443,"tid":27477,"ts":326458487033,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":320219,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458487063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":320250,"id":"0xaf88abe2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458488009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":320311,"id":"0xaf88a81bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458488009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":213,"tts":320311},
-{"pid":27443,"tid":27477,"ts":326458488040,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458467690.0,"frame_time_us":326458483689.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":320341},
-{"pid":27443,"tid":27477,"ts":326458488070,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458467690.0,"frame_time_us":326458483689.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":320372},
-{"pid":27443,"tid":27477,"ts":326458488162,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458500355},"dur":30,"tdur":31,"tts":320463},
-{"pid":27443,"tid":27477,"ts":326458488192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":320494,"id":"0xaf88a814f182217a"},
-{"pid":27443,"tid":27477,"ts":326458489016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":320585,"id":"0xaf88a815f182217a"},
-{"pid":27443,"tid":27477,"ts":326458489016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1771,"tdur":1496,"tts":320585},
-{"pid":27443,"tid":27477,"ts":326458489016,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1771,"tdur":1465,"tts":320616},
-{"pid":27443,"tid":27477,"ts":326458489047,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":320616},
-{"pid":27443,"tid":27477,"ts":326458489047,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1740,"tdur":1465,"tts":320616},
-{"pid":27443,"tid":27477,"ts":326458489047,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1740,"tdur":1465,"tts":320616},
-{"pid":27443,"tid":27477,"ts":326458489077,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":320647},
-{"pid":27443,"tid":27477,"ts":326458489077,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":320647},
-{"pid":27443,"tid":27477,"ts":326458489077,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":320647,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458489108,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":320677},
-{"pid":27443,"tid":27477,"ts":326458489139,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":396,"tdur":396,"tts":320708},
-{"pid":27443,"tid":27477,"ts":326458489596,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1191,"tdur":916,"tts":321165},
-{"pid":27443,"tid":27477,"ts":326458489596,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":74},"dur":244,"tdur":245,"tts":321165},
-{"pid":27443,"tid":27477,"ts":326458489871,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":74},"dur":31,"tdur":31,"tts":321440},
-{"pid":27443,"tid":27477,"ts":326458489902,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":74},"tts":321471},
-{"pid":27443,"tid":27477,"ts":326458490390,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":321684},
-{"pid":27443,"tid":27477,"ts":326458490420,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":367,"tdur":335,"tts":321715},
-{"pid":27443,"tid":27477,"ts":326458490420,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":321715},
-{"pid":27443,"tid":27477,"ts":326458490542,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":321837},
-{"pid":27443,"tid":27477,"ts":326458490573,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":321867},
-{"pid":27443,"tid":27477,"ts":326458490573,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":321867},
-{"pid":27443,"tid":27477,"ts":326458490573,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":321867},
-{"pid":27443,"tid":27477,"ts":326458490603,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":321898,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458490634,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":321928},
-{"pid":27443,"tid":27477,"ts":326458490634,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":321928},
-{"pid":27443,"tid":27477,"ts":326458490695,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":321989,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458490756,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":322050,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458490756,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":322050,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458490848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322112,"id":"0xaf88a816f182217a"},
-{"pid":27443,"tid":27477,"ts":326458490878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":322142},
-{"pid":27443,"tid":27477,"ts":326458490878,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":322142},
-{"pid":27443,"tid":27477,"ts":326458490909,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":322173,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458490909,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":322173},
-{"pid":27443,"tid":27477,"ts":326458490909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322173,"id":"0xaf88a812f182217a"},
-{"pid":27443,"tid":27477,"ts":326458490939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322203,"id":"0xaf88a817f182217a"},
-{"pid":27443,"tid":27477,"ts":326458490939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":322203},
-{"pid":27443,"tid":27477,"ts":326458490970,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":322234},
-{"pid":27443,"tid":27477,"ts":326458490970,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":322234,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458491000,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":322264},
-{"pid":27443,"tid":27477,"ts":326458491000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322264,"id":"0xaf88a813f182217a"},
-{"pid":27443,"tid":27477,"ts":326458491031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322295,"id":"0xaf88a810f182217a"},
-{"pid":27443,"tid":27477,"ts":326458491031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":322295},
-{"pid":27443,"tid":27477,"ts":326458491061,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":322325},
-{"pid":27443,"tid":27477,"ts":326458491061,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":322325,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458491061,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":322325},
-{"pid":27443,"tid":27477,"ts":326458491092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322356,"id":"0xaf88a811f182217a"},
-{"pid":27443,"tid":27477,"ts":326458491092,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":322356},
-{"pid":27443,"tid":27477,"ts":326458491366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":0,"tdur":0,"tts":322386},
-{"pid":27443,"tid":27477,"ts":326458491366,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":322386},
-{"pid":27443,"tid":27477,"ts":326458491397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322417,"id":"0xaf88a812f182217a"},
-{"pid":27443,"tid":27477,"ts":326458491397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1404,"tdur":1282,"tts":322417},
-{"pid":27443,"tid":27477,"ts":326458491397,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1373,"tdur":1282,"tts":322417},
-{"pid":27443,"tid":27477,"ts":326458491428,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":322447},
-{"pid":27443,"tid":27477,"ts":326458491428,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":322447},
-{"pid":27443,"tid":27477,"ts":326458491428,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":153,"tts":322447},
-{"pid":27443,"tid":27477,"ts":326458491458,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":322478},
-{"pid":27443,"tid":27477,"ts":326458491580,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1190,"tdur":1099,"tts":322600},
-{"pid":27443,"tid":27477,"ts":326458491580,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1190,"tdur":1099,"tts":322600},
-{"pid":27443,"tid":27477,"ts":326458491580,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1038,"tdur":946,"tts":322600},
-{"pid":27443,"tid":27477,"ts":326458491611,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":322630,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458491702,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":122,"tdur":30,"tts":322722},
-{"pid":27443,"tid":27477,"ts":326458491702,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":322722},
-{"pid":27443,"tid":27477,"ts":326458491855,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322783},
-{"pid":27443,"tid":27477,"ts":326458491885,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322813},
-{"pid":27443,"tid":27477,"ts":326458491885,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":322813},
-{"pid":27443,"tid":27477,"ts":326458491916,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322844},
-{"pid":27443,"tid":27477,"ts":326458491916,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":322875},
-{"pid":27443,"tid":27477,"ts":326458491946,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":322875},
-{"pid":27443,"tid":27477,"ts":326458491977,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322905},
-{"pid":27443,"tid":27477,"ts":326458491977,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":322905},
-{"pid":27443,"tid":27477,"ts":326458492007,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322936},
-{"pid":27443,"tid":27477,"ts":326458492038,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322966},
-{"pid":27443,"tid":27477,"ts":326458492038,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322966},
-{"pid":27443,"tid":27477,"ts":326458492068,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":322997},
-{"pid":27443,"tid":27477,"ts":326458492068,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":322997},
-{"pid":27443,"tid":27477,"ts":326458492099,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323027},
-{"pid":27443,"tid":27477,"ts":326458492130,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323058},
-{"pid":27443,"tid":27477,"ts":326458492130,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":323058},
-{"pid":27443,"tid":27477,"ts":326458492160,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323088},
-{"pid":27443,"tid":27477,"ts":326458492160,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":323119},
-{"pid":27443,"tid":27477,"ts":326458492191,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323119},
-{"pid":27443,"tid":27477,"ts":326458492221,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323149},
-{"pid":27443,"tid":27477,"ts":326458492221,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":323149},
-{"pid":27443,"tid":27477,"ts":326458492252,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323180},
-{"pid":27443,"tid":27477,"ts":326458492252,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":323210},
-{"pid":27443,"tid":27477,"ts":326458492282,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":323210},
-{"pid":27443,"tid":27477,"ts":326458492313,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323241},
-{"pid":27443,"tid":27477,"ts":326458492404,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323332},
-{"pid":27443,"tid":27477,"ts":326458492404,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":323332},
-{"pid":27443,"tid":27477,"ts":326458492435,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323363},
-{"pid":27443,"tid":27477,"ts":326458492465,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323393},
-{"pid":27443,"tid":27477,"ts":326458492465,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323393},
-{"pid":27443,"tid":27477,"ts":326458492496,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":323424},
-{"pid":27443,"tid":27477,"ts":326458492496,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":323424},
-{"pid":27443,"tid":27477,"ts":326458492526,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":323485},
-{"pid":27443,"tid":27477,"ts":326458492587,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":323515},
-{"pid":27443,"tid":27477,"ts":326458492587,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":323515},
-{"pid":27443,"tid":27477,"ts":326458492587,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":323515},
-{"pid":27443,"tid":27477,"ts":326458492618,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":75},"tts":323546},
-{"pid":27443,"tid":27477,"ts":326458492679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":323607,"id":"0xaf88abe3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458492709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":323638,"id":"0xaf88a8bcf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458492740,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":323668},
-{"pid":27443,"tid":27477,"ts":326458492740,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":323668},
-{"pid":27443,"tid":27477,"ts":326458492770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":323699,"id":"0xaf88a82cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458492801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":323729,"id":"0xaf88a813f182217a"},
-{"pid":27443,"tid":27477,"ts":326458492801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":122,"tts":323729},
-{"pid":27443,"tid":27477,"ts":326458492801,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":323729},
-{"pid":27443,"tid":27477,"ts":326458492831,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":323760},
-{"pid":27443,"tid":27477,"ts":326458492831,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":323760},
-{"pid":27443,"tid":27477,"ts":326458492831,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":62,"tdur":61,"tts":323760},
-{"pid":27443,"tid":27477,"ts":326458492862,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":323790},
-{"pid":27443,"tid":27477,"ts":326458492923,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":323851},
-{"pid":27443,"tid":27477,"ts":326458492923,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":323851},
-{"pid":27443,"tid":27477,"ts":326458492954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":323882,"id":"0xaf88a82cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458492954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2807,"tdur":1526,"tts":323882},
-{"pid":27443,"tid":27477,"ts":326458492954,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2807,"tdur":1526,"tts":323882},
-{"pid":27443,"tid":27477,"ts":326458492984,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":323912},
-{"pid":27443,"tid":27477,"ts":326458492984,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2747,"tdur":1465,"tts":323912},
-{"pid":27443,"tid":27477,"ts":326458493015,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":74},"dur":824,"tdur":824,"tts":323943},
-{"pid":27443,"tid":27477,"ts":326458493045,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":74},"dur":214,"tdur":214,"tts":323973},
-{"pid":27443,"tid":27477,"ts":326458493259,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":74},"dur":30,"tdur":30,"tts":324187},
-{"pid":27443,"tid":27477,"ts":326458493289,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":74},"tts":324217},
-{"pid":27443,"tid":27477,"ts":326458493442,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":324370},
-{"pid":27443,"tid":27477,"ts":326458493442,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":324370},
-{"pid":27443,"tid":27477,"ts":326458493472,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":324401},
-{"pid":27443,"tid":27477,"ts":326458493472,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":324401},
-{"pid":27443,"tid":27477,"ts":326458493472,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":324431,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458493533,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":324462},
-{"pid":27443,"tid":27477,"ts":326458493808,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":324736},
-{"pid":27443,"tid":27477,"ts":326458493839,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":732,"tdur":305,"tts":324767},
-{"pid":27443,"tid":27477,"ts":326458493869,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":324797},
-{"pid":27443,"tid":27477,"ts":326458493869,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":672,"tdur":244,"tts":324797},
-{"pid":27443,"tid":27477,"ts":326458493991,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12388},"dur":0,"tdur":0,"tts":324919},
-{"pid":27443,"tid":27477,"ts":326458494022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324950,"id":"0xaf88ad85f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458494571,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":325072,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458494602,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":325103,"id":"0x300000028"},
-{"pid":27443,"tid":27477,"ts":326458494632,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":1038,"tdur":183,"tts":325133},
-{"pid":27443,"tid":27477,"ts":326458494846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":325255,"id":"0xaf88ad86f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458495700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":325347,"id":"0xaf88abfcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458495700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":325347,"id":"0xaf88a8bef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458497684,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":325469,"id":"0xaf88a82df182217a"},
-{"pid":27443,"tid":27477,"ts":326458497684,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":31,"tts":325499},
-{"pid":27443,"tid":27477,"ts":326458497715,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":325499},
-{"pid":27443,"tid":27477,"ts":326458497745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":325530,"id":"0xaf88abfdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458500462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458500},"tts":325591,"id":"0xaf88a814f182217a"},
-{"pid":27443,"tid":27477,"ts":326458500492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":325621},
-{"pid":27443,"tid":27477,"ts":326458502659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":325713,"id":"0xaf88a82ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458502690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1495,"tdur":1496,"tts":325743},
-{"pid":27443,"tid":27477,"ts":326458502690,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1465,"tdur":1465,"tts":325743},
-{"pid":27443,"tid":27477,"ts":326458502690,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":325743},
-{"pid":27443,"tid":27477,"ts":326458502720,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1435,"tdur":1434,"tts":325774},
-{"pid":27443,"tid":27477,"ts":326458502720,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1435,"tdur":1434,"tts":325774},
-{"pid":27443,"tid":27477,"ts":326458502720,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":325774},
-{"pid":27443,"tid":27477,"ts":326458502751,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":325804},
-{"pid":27443,"tid":27477,"ts":326458502751,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":325804,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458502781,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":325835},
-{"pid":27443,"tid":27477,"ts":326458502812,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":488,"tdur":457,"tts":325866},
-{"pid":27443,"tid":27477,"ts":326458503330,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":825,"tdur":824,"tts":326384},
-{"pid":27443,"tid":27477,"ts":326458503330,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":75},"dur":275,"tdur":275,"tts":326384},
-{"pid":27443,"tid":27477,"ts":326458503605,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":75},"dur":61,"tdur":61,"tts":326659},
-{"pid":27443,"tid":27477,"ts":326458503666,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":75},"tts":326720},
-{"pid":27443,"tid":27477,"ts":326458503819,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":326873},
-{"pid":27443,"tid":27477,"ts":326458503819,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":326873},
-{"pid":27443,"tid":27477,"ts":326458503849,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":326903},
-{"pid":27443,"tid":27477,"ts":326458503971,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":327025},
-{"pid":27443,"tid":27477,"ts":326458503971,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":327025},
-{"pid":27443,"tid":27477,"ts":326458503971,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":327025},
-{"pid":27443,"tid":27477,"ts":326458504002,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":327056},
-{"pid":27443,"tid":27477,"ts":326458504002,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":327056,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458504032,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":327086},
-{"pid":27443,"tid":27477,"ts":326458504032,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":327086},
-{"pid":27443,"tid":27477,"ts":326458504093,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":327147,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458504124,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":327178,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458504124,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":327178,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458504185,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327239,"id":"0xaf88a82ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458504185,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":327239},
-{"pid":27443,"tid":27477,"ts":326458504216,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":123,"tts":327269},
-{"pid":27443,"tid":27477,"ts":326458504246,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":327300,"id":"0x30000002a"},
-{"pid":27443,"tid":27477,"ts":326458504277,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":327331},
-{"pid":27443,"tid":27477,"ts":326458504307,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":327361,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458504338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":327392,"id":"0xaf88abfef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458504368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327422,"id":"0xaf88a828f182217a"},
-{"pid":27443,"tid":27459,"ts":326458493045,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6026430},
-{"pid":27443,"tid":27459,"ts":326458493228,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6026613},
-{"pid":27443,"tid":27459,"ts":326458493259,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":6026644},
-{"pid":27443,"tid":27459,"ts":326458499149,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6032473},
-{"pid":27443,"tid":27459,"ts":326458499210,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2778,"tdur":2717,"tts":6032534},
-{"pid":27443,"tid":27459,"ts":326458499241,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6032565},
-{"pid":27443,"tid":27459,"ts":326458499271,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6032595},
-{"pid":27443,"tid":27459,"ts":326458499271,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6032595},
-{"pid":27443,"tid":27459,"ts":326458499699,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6033023},
-{"pid":27443,"tid":27459,"ts":326458499729,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6033053},
-{"pid":27443,"tid":27459,"ts":326458499760,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2197,"tdur":2136,"tts":6033084},
-{"pid":27443,"tid":27459,"ts":326458499760,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2044,"tdur":1983,"tts":6033084},
-{"pid":27443,"tid":27459,"ts":326458499790,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":427,"tdur":366,"tts":6033114},
-{"pid":27443,"tid":27459,"ts":326458500217,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":184,"tdur":183,"tts":6033511},
-{"pid":27443,"tid":27459,"ts":326458500401,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6033694},
-{"pid":27443,"tid":27459,"ts":326458500492,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6033786},
-{"pid":27443,"tid":27459,"ts":326458500523,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1251,"tdur":1221,"tts":6033816},
-{"pid":27443,"tid":27459,"ts":326458501804,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":6035067},
-{"pid":27443,"tid":27459,"ts":326458501835,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6035098},
-{"pid":27443,"tid":27459,"ts":326458501988,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":75},"dur":518,"tdur":488,"tts":6035251},
-{"pid":27443,"tid":27459,"ts":326458501988,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":488,"tdur":458,"tts":6035281},
-{"pid":27443,"tid":27459,"ts":326458502323,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":31,"tdur":31,"tts":6035586},
-{"pid":27443,"tid":27459,"ts":326458502354,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":30,"tdur":30,"tts":6035617},
-{"pid":27443,"tid":27459,"ts":326458502384,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":31,"tdur":0,"tts":6035647},
-{"pid":27443,"tid":27459,"ts":326458502415,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":0,"tdur":0,"tts":6035678},
-{"pid":27443,"tid":27459,"ts":326458502415,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":30,"tdur":30,"tts":6035678},
-{"pid":27443,"tid":27459,"ts":326458502445,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":0,"tdur":0,"tts":6035708},
-{"pid":27443,"tid":27459,"ts":326458502445,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":75},"dur":31,"tdur":0,"tts":6035739},
-{"pid":27443,"tid":27459,"ts":326458502506,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6035769,"id":"0x300000029"},
-{"pid":27443,"tid":27459,"ts":326458502506,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1923,"tdur":122,"tts":6035769},
-{"pid":27443,"tid":27459,"ts":326458502537,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6035800,"id":"0xaf88a82ef182217a"},
-{"pid":27443,"tid":27459,"ts":326458504490,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6035953},
-{"pid":27443,"tid":27459,"ts":326458504643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6036014,"id":"0xaf88a8bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458504643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6036014},
-{"pid":27443,"tid":27459,"ts":326458504673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6036044,"id":"0xaf88a8bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458504704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6036075,"id":"0xaf88abfcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458504704,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":61,"tdur":61,"tts":6036075},
-{"pid":27443,"tid":27459,"ts":326458504734,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6036105},
-{"pid":27443,"tid":27459,"ts":326458504795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6036166,"id":"0xaf88a8bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458504795,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":519,"tdur":31,"tts":6036166},
-{"pid":27443,"tid":27459,"ts":326458505314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":6036227},
-{"pid":27443,"tid":27459,"ts":326458505345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6036258,"id":"0xaf88abfdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458505345,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6036258},
-{"pid":27443,"tid":27459,"ts":326458505345,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6036258},
-{"pid":27443,"tid":27459,"ts":326458505406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6036349,"id":"0xaf88a8bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458505436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1587,"tdur":1130,"tts":6036349},
-{"pid":27443,"tid":27459,"ts":326458505467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6036380,"id":"0xaf88a8b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458505467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6036380,"id":"0xaf88abfef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458505467,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":30,"tts":6036380},
-{"pid":27443,"tid":27459,"ts":326458505803,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1220,"tdur":1069,"tts":6036410},
-{"pid":27443,"tid":27459,"ts":326458505864,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":977,"tts":6036471},
-{"pid":27443,"tid":27459,"ts":326458505864,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6036471,"id":"0x30000002a"},
-{"pid":27443,"tid":27459,"ts":326458505894,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1007,"tdur":854,"tts":6036502},
-{"pid":27443,"tid":27459,"ts":326458505925,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":976,"tdur":824,"tts":6036532},
-{"pid":27443,"tid":27459,"ts":326458505986,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6036593},
-{"pid":27443,"tid":27459,"ts":326458506016,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6036654},
-{"pid":27443,"tid":27459,"ts":326458506047,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6036685},
-{"pid":27443,"tid":27459,"ts":326458506077,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6036685},
-{"pid":27443,"tid":27459,"ts":326458506138,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":733,"tdur":580,"tts":6036746},
-{"pid":27443,"tid":27459,"ts":326458506413,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":427,"tts":6036868},
-{"pid":27443,"tid":27459,"ts":326458506444,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6036899},
-{"pid":27443,"tid":27459,"ts":326458506749,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":27,"frame":"0x78c60000"}},"tts":6037204,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458506779,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6037234},
-{"pid":27443,"tid":27459,"ts":326458506779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6037234,"id":"0xaf88a820f182217a"},
-{"pid":27443,"tid":27477,"ts":326458504368,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":327422},
-{"pid":27443,"tid":27477,"ts":326458504399,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458484366.0,"frame_time_us":326458500365.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":327453},
-{"pid":27443,"tid":27477,"ts":326458504429,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458484366.0,"frame_time_us":326458500365.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":327483},
-{"pid":27443,"tid":27477,"ts":326458504490,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458517031},"dur":31,"tdur":31,"tts":327544},
-{"pid":27443,"tid":27477,"ts":326458504521,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327575,"id":"0xaf88a824f182217a"},
-{"pid":27443,"tid":27477,"ts":326458504551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327605,"id":"0xaf88a829f182217a"},
-{"pid":27443,"tid":27477,"ts":326458504551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":327605},
-{"pid":27443,"tid":27477,"ts":326458504551,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":327605},
-{"pid":27443,"tid":27477,"ts":326458504582,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":327636,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458504582,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":327636},
-{"pid":27443,"tid":27477,"ts":326458504612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327666,"id":"0xaf88a825f182217a"},
-{"pid":27443,"tid":27477,"ts":326458504612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327666,"id":"0xaf88a82af182217a"},
-{"pid":27443,"tid":27477,"ts":326458504643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":327697},
-{"pid":27443,"tid":27477,"ts":326458504643,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":327697},
-{"pid":27443,"tid":27477,"ts":326458504643,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":327697,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458504673,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":327727},
-{"pid":27443,"tid":27477,"ts":326458504673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327727,"id":"0xaf88a826f182217a"},
-{"pid":27443,"tid":27477,"ts":326458504704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327758,"id":"0xaf88a82bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458504734,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":327788},
-{"pid":27443,"tid":27477,"ts":326458504734,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":327788},
-{"pid":27443,"tid":27477,"ts":326458504765,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":327819,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458504765,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":327819},
-{"pid":27443,"tid":27477,"ts":326458504795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327849,"id":"0xaf88a825f182217a"},
-{"pid":27443,"tid":27477,"ts":326458504826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1251,"tdur":1190,"tts":327880},
-{"pid":27443,"tid":27477,"ts":326458504826,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1251,"tdur":1160,"tts":327880},
-{"pid":27443,"tid":27477,"ts":326458504826,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":327880},
-{"pid":27443,"tid":27477,"ts":326458504857,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":327910},
-{"pid":27443,"tid":27477,"ts":326458504857,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":92,"tts":327910},
-{"pid":27443,"tid":27477,"ts":326458504887,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":61,"tts":327941},
-{"pid":27443,"tid":27477,"ts":326458505009,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1038,"tdur":1038,"tts":328002},
-{"pid":27443,"tid":27477,"ts":326458505009,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1038,"tdur":1038,"tts":328002},
-{"pid":27443,"tid":27477,"ts":326458505040,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":976,"tdur":977,"tts":328032},
-{"pid":27443,"tid":27477,"ts":326458505040,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":328032,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458505101,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":328094},
-{"pid":27443,"tid":27477,"ts":326458505131,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328124},
-{"pid":27443,"tid":27477,"ts":326458505162,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328155},
-{"pid":27443,"tid":27477,"ts":326458505192,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328185},
-{"pid":27443,"tid":27477,"ts":326458505223,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328216},
-{"pid":27443,"tid":27477,"ts":326458505223,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":328216},
-{"pid":27443,"tid":27477,"ts":326458505253,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":328246},
-{"pid":27443,"tid":27477,"ts":326458505284,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":328277},
-{"pid":27443,"tid":27477,"ts":326458505314,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":328307},
-{"pid":27443,"tid":27477,"ts":326458505345,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328338},
-{"pid":27443,"tid":27477,"ts":326458505345,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":328338},
-{"pid":27443,"tid":27477,"ts":326458505375,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328368},
-{"pid":27443,"tid":27477,"ts":326458505406,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328399},
-{"pid":27443,"tid":27477,"ts":326458505436,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328429},
-{"pid":27443,"tid":27477,"ts":326458505467,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328460},
-{"pid":27443,"tid":27477,"ts":326458505467,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":328460},
-{"pid":27443,"tid":27477,"ts":326458505497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":328490},
-{"pid":27443,"tid":27477,"ts":326458505528,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328521},
-{"pid":27443,"tid":27477,"ts":326458505558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328551},
-{"pid":27443,"tid":27477,"ts":326458505558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":328551},
-{"pid":27443,"tid":27477,"ts":326458505589,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328582},
-{"pid":27443,"tid":27477,"ts":326458505620,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328612},
-{"pid":27443,"tid":27477,"ts":326458505620,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":328612},
-{"pid":27443,"tid":27477,"ts":326458505650,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328643},
-{"pid":27443,"tid":27477,"ts":326458505650,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":328673},
-{"pid":27443,"tid":27477,"ts":326458505681,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328673},
-{"pid":27443,"tid":27477,"ts":326458505772,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328765},
-{"pid":27443,"tid":27477,"ts":326458505772,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":328795},
-{"pid":27443,"tid":27477,"ts":326458505803,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":328795},
-{"pid":27443,"tid":27477,"ts":326458505833,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":328826},
-{"pid":27443,"tid":27477,"ts":326458505864,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":328857},
-{"pid":27443,"tid":27477,"ts":326458505864,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":328857},
-{"pid":27443,"tid":27477,"ts":326458505894,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":328887},
-{"pid":27443,"tid":27477,"ts":326458505925,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":328948},
-{"pid":27443,"tid":27477,"ts":326458505986,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":328979},
-{"pid":27443,"tid":27477,"ts":326458505986,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":328979},
-{"pid":27443,"tid":27477,"ts":326458505986,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":0,"tts":329009},
-{"pid":27443,"tid":27477,"ts":326458506016,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":329009},
-{"pid":27443,"tid":27477,"ts":326458506047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":329040,"id":"0xaf88a827f182217a"},
-{"pid":27443,"tid":27477,"ts":326458506077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":329070,"id":"0xaf88a826f182217a"},
-{"pid":27443,"tid":27477,"ts":326458506077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":329070},
-{"pid":27443,"tid":27477,"ts":326458506108,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":91,"tts":329101},
-{"pid":27443,"tid":27477,"ts":326458506108,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":329101},
-{"pid":27443,"tid":27477,"ts":326458506108,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":329101},
-{"pid":27443,"tid":27477,"ts":326458506108,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":31,"tts":329131},
-{"pid":27443,"tid":27477,"ts":326458506138,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":329131},
-{"pid":27443,"tid":27477,"ts":326458506169,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":329162},
-{"pid":27443,"tid":27477,"ts":326458506199,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":329192},
-{"pid":27443,"tid":27477,"ts":326458506230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":329223,"id":"0xaf88a827f182217a"},
-{"pid":27443,"tid":27477,"ts":326458506230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1892,"tdur":1465,"tts":329223},
-{"pid":27443,"tid":27477,"ts":326458506230,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1892,"tdur":1465,"tts":329223},
-{"pid":27443,"tid":27477,"ts":326458506260,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":329253},
-{"pid":27443,"tid":27477,"ts":326458506260,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1862,"tdur":1435,"tts":329253},
-{"pid":27443,"tid":27477,"ts":326458506291,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":75},"dur":793,"tdur":793,"tts":329284},
-{"pid":27443,"tid":27477,"ts":326458506321,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":75},"dur":245,"tdur":244,"tts":329314},
-{"pid":27443,"tid":27477,"ts":326458506566,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":75},"dur":30,"tdur":31,"tts":329558},
-{"pid":27443,"tid":27477,"ts":326458506596,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":75},"tts":329589},
-{"pid":27443,"tid":27477,"ts":326458506749,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":329742},
-{"pid":27443,"tid":27477,"ts":326458506749,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":329742},
-{"pid":27443,"tid":27477,"ts":326458506779,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":329772},
-{"pid":27443,"tid":27477,"ts":326458506779,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":329772},
-{"pid":27443,"tid":27477,"ts":326458506779,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":329772,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458506840,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":329833},
-{"pid":27443,"tid":27477,"ts":326458507084,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":330077},
-{"pid":27443,"tid":27477,"ts":326458507084,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":275,"tts":330077},
-{"pid":27443,"tid":27477,"ts":326458507115,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":330108},
-{"pid":27443,"tid":27477,"ts":326458507115,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":610,"tdur":183,"tts":330108},
-{"pid":27443,"tid":27477,"ts":326458507207,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12388},"dur":0,"tdur":0,"tts":330199},
-{"pid":27443,"tid":27477,"ts":326458507237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":330230,"id":"0xaf88ad80f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458507756,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":330321,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458507786,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":330352,"id":"0x300000029"},
-{"pid":27443,"tid":27477,"ts":326458507817,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":213,"tts":330383},
-{"pid":27443,"tid":27477,"ts":326458507970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":330535,"id":"0xaf88ad81f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458508031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":330596,"id":"0xaf88abf8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458508061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":330627,"id":"0xaf88a8b4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458508153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":330718,"id":"0xaf88a820f182217a"},
-{"pid":27443,"tid":27477,"ts":326458508153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":330718},
-{"pid":27443,"tid":27477,"ts":326458508153,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":330718},
-{"pid":27443,"tid":27477,"ts":326458509862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":330779,"id":"0xaf88a821f182217a"},
-{"pid":27443,"tid":27477,"ts":326458509862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":330779},
-{"pid":27443,"tid":27477,"ts":326458509892,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":330810},
-{"pid":27443,"tid":27477,"ts":326458509923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":330840,"id":"0xaf88abf9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458509923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":330840,"id":"0xaf88a8b6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458517126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458517},"tts":330932,"id":"0xaf88a824f182217a"},
-{"pid":27443,"tid":27477,"ts":326458517156,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":330962},
-{"pid":27443,"tid":27477,"ts":326458518774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":331023,"id":"0xaf88a822f182217a"},
-{"pid":27443,"tid":27477,"ts":326458518774,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":153,"tts":331023},
-{"pid":27443,"tid":27477,"ts":326458518774,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":427,"tdur":153,"tts":331023},
-{"pid":27443,"tid":27477,"ts":326458518804,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":331054,"id":"0x30000002b"},
-{"pid":27443,"tid":27477,"ts":326458518804,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":331085},
-{"pid":27443,"tid":27477,"ts":326458518835,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":331085,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458518865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":331115,"id":"0xaf88abfaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458518896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":331146,"id":"0xaf88a8b0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458519232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":331207,"id":"0xaf88a823f182217a"},
-{"pid":27443,"tid":27477,"ts":326458519232,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":331207},
-{"pid":27443,"tid":27459,"ts":326458506810,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6037265},
-{"pid":27443,"tid":27459,"ts":326458506932,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6037387},
-{"pid":27443,"tid":27459,"ts":326458506932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6037387,"id":"0xaf88ad87f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458507054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6037509,"id":"0xaf88a8b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":6037509},
-{"pid":27443,"tid":27459,"ts":326458507664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458507},"tts":6037631,"id":"0xaf88a89ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":6037631},
-{"pid":27443,"tid":27459,"ts":326458507695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6037631,"id":"0xaf88a8b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6037692,"id":"0xaf88a8b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":122,"tts":6037692},
-{"pid":27443,"tid":27459,"ts":326458507786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6037723,"id":"0xaf88a8baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6037723,"id":"0xaf88abd6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458507786,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6037723},
-{"pid":27443,"tid":27459,"ts":326458507817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6037753,"id":"0xaf88abfff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458507847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6037784,"id":"0xaf88a8bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6037845,"id":"0xaf88a8baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458507939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6037845},
-{"pid":27443,"tid":27459,"ts":326458508122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6037967,"id":"0xaf88a8b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458508122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6037967},
-{"pid":27443,"tid":27459,"ts":326458508153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6037997,"id":"0xaf88a8b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458508153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6037997,"id":"0xaf88abf8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458508153,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6037997},
-{"pid":27443,"tid":27459,"ts":326458508183,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6038028},
-{"pid":27443,"tid":27459,"ts":326458508214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6038058,"id":"0xaf88a8b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458508214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":6038058},
-{"pid":27443,"tid":27459,"ts":326458509984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6038150,"id":"0xaf88a8b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458509984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6038150},
-{"pid":27443,"tid":27459,"ts":326458510045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6038211,"id":"0xaf88a8b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458510075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6038242,"id":"0xaf88abf9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458510075,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6038242},
-{"pid":27443,"tid":27459,"ts":326458510075,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":6038242},
-{"pid":27443,"tid":27459,"ts":326458510137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6038303,"id":"0xaf88a8b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458510167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6038333},
-{"pid":27443,"tid":27459,"ts":326458519323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6038394,"id":"0xaf88a8b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458519323,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1129,"tts":6038394},
-{"pid":27443,"tid":27459,"ts":326458519354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6038425,"id":"0xaf88a8b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458519384,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6038455,"id":"0xaf88abfaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458519384,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1068,"tdur":1068,"tts":6038455},
-{"pid":27443,"tid":27459,"ts":326458519445,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":6038516},
-{"pid":27443,"tid":27459,"ts":326458519476,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6038547,"id":"0x30000002b"},
-{"pid":27443,"tid":27459,"ts":326458519506,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6038577},
-{"pid":27443,"tid":27459,"ts":326458519537,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":793,"tts":6038608},
-{"pid":27443,"tid":27459,"ts":326458519598,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6038669},
-{"pid":27443,"tid":27459,"ts":326458519659,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6038730},
-{"pid":27443,"tid":27459,"ts":326458519689,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6038760},
-{"pid":27443,"tid":27459,"ts":326458519720,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6038791},
-{"pid":27443,"tid":27459,"ts":326458519750,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":6038821},
-{"pid":27443,"tid":27459,"ts":326458519903,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6038974},
-{"pid":27443,"tid":27459,"ts":326458519903,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6039005},
-{"pid":27443,"tid":27459,"ts":326458520239,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":28,"frame":"0x78c60000"}},"tts":6039310,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458520269,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6039340},
-{"pid":27443,"tid":27459,"ts":326458520361,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6039432},
-{"pid":27443,"tid":27459,"ts":326458520391,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6039462,"id":"0xaf88ad82f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458520483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6039554,"id":"0xaf88a8b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458520513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10316,"tdur":9614,"tts":6039584},
-{"pid":27443,"tid":27459,"ts":326458520513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6039584,"id":"0xaf88a8b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458520544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6039615,"id":"0xaf88abfbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458520544,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10285,"tdur":9583,"tts":6039615},
-{"pid":27443,"tid":27459,"ts":326458520544,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":76},"tts":6039615},
-{"pid":27443,"tid":27459,"ts":326458520574,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6039645},
-{"pid":27443,"tid":27459,"ts":326458520605,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6409,"tdur":6318,"tts":6039676},
-{"pid":27443,"tid":27459,"ts":326458520636,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6039707},
-{"pid":27443,"tid":27459,"ts":326458520666,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":27,"frame":"0x78c60000"}},"dur":6165,"tdur":6074,"tts":6039737},
-{"pid":27443,"tid":27459,"ts":326458520727,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6074,"tdur":5982,"tts":6039798},
-{"pid":27443,"tid":27477,"ts":326458519262,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458501042.0,"frame_time_us":326458517041.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":244,"tts":331237},
-{"pid":27443,"tid":27477,"ts":326458519293,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458501042.0,"frame_time_us":326458517041.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":213,"tdur":213,"tts":331268},
-{"pid":27443,"tid":27477,"ts":326458519354,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":76},"tts":331329},
-{"pid":27443,"tid":27477,"ts":326458519415,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":331420,"id":"0xaf88abfbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458519445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":331420,"id":"0xaf88a8b2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458519476,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":331451},
-{"pid":27443,"tid":27477,"ts":326458519476,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458533707},"dur":30,"tdur":30,"tts":331451},
-{"pid":27443,"tid":27477,"ts":326458519506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":331481,"id":"0xaf88a83cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458530127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":331573,"id":"0xaf88a83df182217a"},
-{"pid":27443,"tid":27477,"ts":326458530158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1404,"tdur":1404,"tts":331603},
-{"pid":27443,"tid":27477,"ts":326458530158,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1404,"tdur":1404,"tts":331603},
-{"pid":27443,"tid":27477,"ts":326458530158,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":331603},
-{"pid":27443,"tid":27477,"ts":326458530188,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1374,"tdur":1373,"tts":331634},
-{"pid":27443,"tid":27477,"ts":326458530188,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1343,"tdur":1343,"tts":331634},
-{"pid":27443,"tid":27477,"ts":326458530188,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":331634},
-{"pid":27443,"tid":27477,"ts":326458530219,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":331664},
-{"pid":27443,"tid":27477,"ts":326458530219,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":331664,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458530219,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":31,"tts":331664},
-{"pid":27443,"tid":27477,"ts":326458530280,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":367,"tts":331725},
-{"pid":27443,"tid":27477,"ts":326458530707,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":824,"tdur":824,"tts":332153},
-{"pid":27443,"tid":27477,"ts":326458530738,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":76},"dur":244,"tdur":244,"tts":332183},
-{"pid":27443,"tid":27477,"ts":326458530982,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":76},"dur":30,"tdur":31,"tts":332427},
-{"pid":27443,"tid":27477,"ts":326458531012,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":76},"tts":332458},
-{"pid":27443,"tid":27477,"ts":326458531165,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":332611},
-{"pid":27443,"tid":27477,"ts":326458531196,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":332641},
-{"pid":27443,"tid":27477,"ts":326458531196,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":332641},
-{"pid":27443,"tid":27477,"ts":326458531318,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":332763},
-{"pid":27443,"tid":27477,"ts":326458531348,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":332794},
-{"pid":27443,"tid":27477,"ts":326458531348,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":332794},
-{"pid":27443,"tid":27477,"ts":326458531348,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":332794},
-{"pid":27443,"tid":27477,"ts":326458531379,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":332824,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458531379,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":332824},
-{"pid":27443,"tid":27477,"ts":326458531409,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":332855},
-{"pid":27443,"tid":27477,"ts":326458531470,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":332916,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458531501,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":332946,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458531531,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":332977,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458531562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":333007,"id":"0xaf88a83ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458531592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":333038},
-{"pid":27443,"tid":27477,"ts":326458531592,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":30,"tts":333038},
-{"pid":27443,"tid":27477,"ts":326458531592,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":333038,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458531623,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":333068},
-{"pid":27443,"tid":27477,"ts":326458531623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":333068,"id":"0xaf88a839f182217a"},
-{"pid":27443,"tid":27477,"ts":326458531653,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":333099,"id":"0xaf88a83ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458531653,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":333099},
-{"pid":27443,"tid":27477,"ts":326458531653,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":333099},
-{"pid":27443,"tid":27477,"ts":326458531684,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":333129,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458531684,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":333129},
-{"pid":27443,"tid":27477,"ts":326458531714,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":333160,"id":"0xaf88a83af182217a"},
-{"pid":27443,"tid":27477,"ts":326458531714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":333160,"id":"0xaf88a838f182217a"},
-{"pid":27443,"tid":27477,"ts":326458531745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":333190},
-{"pid":27443,"tid":27477,"ts":326458531745,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":333190},
-{"pid":27443,"tid":27477,"ts":326458531745,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":333190,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458531745,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":333190},
-{"pid":27443,"tid":27477,"ts":326458531775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":333221,"id":"0xaf88a839f182217a"},
-{"pid":27443,"tid":27477,"ts":326458531775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1099,"tdur":1099,"tts":333221},
-{"pid":27443,"tid":27477,"ts":326458531806,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1068,"tdur":1069,"tts":333251},
-{"pid":27443,"tid":27477,"ts":326458531806,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":333251},
-{"pid":27443,"tid":27477,"ts":326458531806,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":333251},
-{"pid":27443,"tid":27477,"ts":326458531837,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":333282},
-{"pid":27443,"tid":27477,"ts":326458531837,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":333282},
-{"pid":27443,"tid":27477,"ts":326458531898,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":976,"tdur":946,"tts":333374},
-{"pid":27443,"tid":27477,"ts":326458531928,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":915,"tts":333374},
-{"pid":27443,"tid":27477,"ts":326458531928,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":885,"tdur":885,"tts":333374},
-{"pid":27443,"tid":27477,"ts":326458531928,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":333374,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27459,"ts":326458520727,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6039798},
-{"pid":27443,"tid":27459,"ts":326458520910,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6039981},
-{"pid":27443,"tid":27459,"ts":326458520941,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":0,"tts":6040042},
-{"pid":27443,"tid":27459,"ts":326458526770,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6045780},
-{"pid":27443,"tid":27459,"ts":326458526862,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":28,"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":6045841},
-{"pid":27443,"tid":27459,"ts":326458526923,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":6045902},
-{"pid":27443,"tid":27459,"ts":326458526953,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6045933},
-{"pid":27443,"tid":27459,"ts":326458526953,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6045963},
-{"pid":27443,"tid":27459,"ts":326458527014,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2533,"tdur":2533,"tts":6045994},
-{"pid":27443,"tid":27459,"ts":326458527045,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6046024},
-{"pid":27443,"tid":27459,"ts":326458527045,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6046055},
-{"pid":27443,"tid":27459,"ts":326458527075,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6046055},
-{"pid":27443,"tid":27459,"ts":326458527472,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6046482},
-{"pid":27443,"tid":27459,"ts":326458527533,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6046513},
-{"pid":27443,"tid":27459,"ts":326458527533,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2014,"tdur":1984,"tts":6046543},
-{"pid":27443,"tid":27459,"ts":326458527564,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1831,"tts":6046543},
-{"pid":27443,"tid":27459,"ts":326458527564,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":6046543},
-{"pid":27443,"tid":27459,"ts":326458527899,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":213,"tts":6046879},
-{"pid":27443,"tid":27459,"ts":326458528113,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":6047092},
-{"pid":27443,"tid":27459,"ts":326458528205,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":6047184},
-{"pid":27443,"tid":27459,"ts":326458528235,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":6047215},
-{"pid":27443,"tid":27459,"ts":326458529395,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":6048374},
-{"pid":27443,"tid":27459,"ts":326458529425,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":6048405},
-{"pid":27443,"tid":27459,"ts":326458529547,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":76},"dur":428,"tdur":427,"tts":6048527},
-{"pid":27443,"tid":27459,"ts":326458529578,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":6048557},
-{"pid":27443,"tid":27459,"ts":326458529822,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":31,"tdur":30,"tts":6048802},
-{"pid":27443,"tid":27459,"ts":326458529853,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":0,"tdur":0,"tts":6048832},
-{"pid":27443,"tid":27459,"ts":326458529883,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":0,"tdur":0,"tts":6048863},
-{"pid":27443,"tid":27459,"ts":326458529883,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":31,"tdur":30,"tts":6048863},
-{"pid":27443,"tid":27459,"ts":326458529914,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":0,"tdur":0,"tts":6048893},
-{"pid":27443,"tid":27459,"ts":326458529914,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":30,"tdur":31,"tts":6048893},
-{"pid":27443,"tid":27459,"ts":326458529944,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":76},"dur":0,"tdur":0,"tts":6048924},
-{"pid":27443,"tid":27459,"ts":326458529975,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6048954,"id":"0x30000002a"},{"pid":27443,"tid":27459,"ts":326458529975,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6048954,"id":"0x30000002b"},
-{"pid":27443,"tid":27459,"ts":326458529975,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":763,"tdur":92,"tts":6049015},
-{"pid":27443,"tid":27459,"ts":326458529975,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6049015},
-{"pid":27443,"tid":27459,"ts":326458530066,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6049046,"id":"0xaf88a83df182217a"},
-{"pid":27443,"tid":27459,"ts":326458530768,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2939},"tts":6049137,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458530799,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6049168,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458530799,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6049198},
-{"pid":27443,"tid":27459,"ts":326458530890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6049259,"id":"0xaf88a8b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458530890,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":184,"tdur":153,"tts":6049259},
-{"pid":27443,"tid":27459,"ts":326458530921,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6049290,"id":"0xaf88abebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458530921,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":6049290},
-{"pid":27443,"tid":27459,"ts":326458530921,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6049290,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458530951,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.786},"dur":92,"tdur":92,"tts":6049320},
-{"pid":27443,"tid":27459,"ts":326458530951,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6049320},
-{"pid":27443,"tid":27459,"ts":326458530982,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6049351},
-{"pid":27443,"tid":27459,"ts":326458531012,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6049381,"id":"0xaf88abf4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458531043,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6049412,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458531074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6049443,"id":"0xaf88a8b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458531104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6049473},
-{"pid":27443,"tid":27459,"ts":326458537300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6049534,"id":"0xaf88a94cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458537300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6049534},
-{"pid":27443,"tid":27459,"ts":326458537330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6049565,"id":"0xaf88a94df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458537330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6049565,"id":"0xaf88abf5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458537361,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6049595},
-{"pid":27443,"tid":27459,"ts":326458537361,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6049595},
-{"pid":27443,"tid":27459,"ts":326458537422,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6049656,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458537422,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6049656,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458537483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6049717,"id":"0xaf88a94df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458537483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6049717},
-{"pid":27443,"tid":27459,"ts":326458537483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6049717,"id":"0xaf88a94ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458537513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6049748,"id":"0xaf88abf4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458532020,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":333465},
-{"pid":27443,"tid":27477,"ts":326458532050,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333496},
-{"pid":27443,"tid":27477,"ts":326458532081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333526},
-{"pid":27443,"tid":27477,"ts":326458532081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":333526},
-{"pid":27443,"tid":27477,"ts":326458532111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333557},
-{"pid":27443,"tid":27477,"ts":326458532111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":333587},
-{"pid":27443,"tid":27477,"ts":326458532142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":333587},
-{"pid":27443,"tid":27477,"ts":326458532172,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333618},
-{"pid":27443,"tid":27477,"ts":326458532172,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":333618},
-{"pid":27443,"tid":27477,"ts":326458532203,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333648},
-{"pid":27443,"tid":27477,"ts":326458532233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333679},
-{"pid":27443,"tid":27477,"ts":326458532233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333679},
-{"pid":27443,"tid":27477,"ts":326458532264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333709},
-{"pid":27443,"tid":27477,"ts":326458532264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":333709},
-{"pid":27443,"tid":27477,"ts":326458532294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":333740},
-{"pid":27443,"tid":27477,"ts":326458532325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333770},
-{"pid":27443,"tid":27477,"ts":326458532325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":333770},
-{"pid":27443,"tid":27477,"ts":326458532355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333801},
-{"pid":27443,"tid":27477,"ts":326458532386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333831},
-{"pid":27443,"tid":27477,"ts":326458532386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333831},
-{"pid":27443,"tid":27477,"ts":326458532416,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333862},
-{"pid":27443,"tid":27477,"ts":326458532447,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333892},
-{"pid":27443,"tid":27477,"ts":326458532447,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":333892},
-{"pid":27443,"tid":27477,"ts":326458532477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333923},
-{"pid":27443,"tid":27477,"ts":326458532477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":333953},
-{"pid":27443,"tid":27477,"ts":326458532508,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":333953},
-{"pid":27443,"tid":27477,"ts":326458532600,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":334045},
-{"pid":27443,"tid":27477,"ts":326458532600,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":334045},
-{"pid":27443,"tid":27477,"ts":326458532630,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":334076},
-{"pid":27443,"tid":27477,"ts":326458532661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":334106},
-{"pid":27443,"tid":27477,"ts":326458532661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":334106},
-{"pid":27443,"tid":27477,"ts":326458532691,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":334137},
-{"pid":27443,"tid":27477,"ts":326458532691,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":334167},
-{"pid":27443,"tid":27477,"ts":326458532752,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":334198},
-{"pid":27443,"tid":27477,"ts":326458532783,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":334228},
-{"pid":27443,"tid":27477,"ts":326458532783,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":334228},
-{"pid":27443,"tid":27477,"ts":326458532813,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":334259},
-{"pid":27443,"tid":27477,"ts":326458532844,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":334289},
-{"pid":27443,"tid":27477,"ts":326458532844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":334289,"id":"0xaf88a83bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458532874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":334320,"id":"0xaf88a83af182217a"},
-{"pid":27443,"tid":27477,"ts":326458532874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":334320},
-{"pid":27443,"tid":27477,"ts":326458532905,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":92,"tts":334350},
-{"pid":27443,"tid":27477,"ts":326458532905,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":334350},
-{"pid":27443,"tid":27477,"ts":326458532905,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":334350},
-{"pid":27443,"tid":27477,"ts":326458532935,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":30,"tts":334381},
-{"pid":27443,"tid":27477,"ts":326458532935,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":334381},
-{"pid":27443,"tid":27477,"ts":326458532966,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":334411},
-{"pid":27443,"tid":27477,"ts":326458532996,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":334442},
-{"pid":27443,"tid":27477,"ts":326458533027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":334472,"id":"0xaf88a83bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458533027,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2533,"tdur":1587,"tts":334472},
-{"pid":27443,"tid":27477,"ts":326458533027,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2533,"tdur":1587,"tts":334472},
-{"pid":27443,"tid":27477,"ts":326458533057,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":334503},
-{"pid":27443,"tid":27477,"ts":326458533057,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2442,"tdur":1556,"tts":334503},
-{"pid":27443,"tid":27477,"ts":326458533088,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":76},"dur":732,"tdur":733,"tts":334533},
-{"pid":27443,"tid":27477,"ts":326458533088,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":76},"dur":244,"tdur":214,"tts":334533},
-{"pid":27443,"tid":27477,"ts":326458533332,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":76},"dur":31,"tdur":31,"tts":334777},
-{"pid":27443,"tid":27477,"ts":326458533363,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":76},"tts":334808},
-{"pid":27443,"tid":27477,"ts":326458533485,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":334930},
-{"pid":27443,"tid":27477,"ts":326458533485,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":334930},
-{"pid":27443,"tid":27477,"ts":326458533515,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":334961},
-{"pid":27443,"tid":27477,"ts":326458533515,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":334961},
-{"pid":27443,"tid":27477,"ts":326458533515,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":334991,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458533576,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":335022},
-{"pid":27443,"tid":27477,"ts":326458533820,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":335266},
-{"pid":27443,"tid":27477,"ts":326458533820,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1099,"tdur":366,"tts":335266},
-{"pid":27443,"tid":27477,"ts":326458533881,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":335327},
-{"pid":27443,"tid":27477,"ts":326458533881,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":977,"tdur":244,"tts":335327},
-{"pid":27443,"tid":27477,"ts":326458534064,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12388},"dur":31,"tdur":30,"tts":335449},
-{"pid":27443,"tid":27477,"ts":326458534095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":335479,"id":"0xaf88ad83f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458534889,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":335602,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458534950,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":335663,"id":"0x30000002a"},
-{"pid":27443,"tid":27477,"ts":326458534950,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":335663,"id":"0x30000002b"},
-{"pid":27443,"tid":27477,"ts":326458534980,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":458,"tdur":275,"tts":335693},
-{"pid":27443,"tid":27477,"ts":326458535163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":335907,"id":"0xaf88ad9cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458535438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335998,"id":"0xaf88abf5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458535468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":336029,"id":"0xaf88a94cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458535591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458533},"tts":336090,"id":"0xaf88a83cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458535621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":336090},
-{"pid":27443,"tid":27477,"ts":326458536628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336151,"id":"0xaf88a834f182217a"},
-{"pid":27443,"tid":27477,"ts":326458536628,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":336151},
-{"pid":27443,"tid":27477,"ts":326458536781,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":336181},
-{"pid":27443,"tid":27477,"ts":326458536781,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":336181},
-{"pid":27443,"tid":27477,"ts":326458536811,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":336212,"id":"0x30000002c"},
-{"pid":27443,"tid":27477,"ts":326458536811,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":336212},
-{"pid":27443,"tid":27477,"ts":326458536842,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":336242,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458536872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336273,"id":"0xaf88abf6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458536903,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336303,"id":"0xaf88a835f182217a"},
-{"pid":27443,"tid":27477,"ts":326458536933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":336334},
-{"pid":27443,"tid":27477,"ts":326458536964,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458517719.0,"frame_time_us":326458533718.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":336365},
-{"pid":27443,"tid":27477,"ts":326458536964,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458517719.0,"frame_time_us":326458533718.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":122,"tdur":92,"tts":336395},
-{"pid":27443,"tid":27477,"ts":326458537025,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458550384},"dur":61,"tdur":61,"tts":336426},
-{"pid":27443,"tid":27477,"ts":326458537055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":336456,"id":"0xaf88a836f182217a"},
-{"pid":27443,"tid":27477,"ts":326458538063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336578,"id":"0xaf88a837f182217a"},
-{"pid":27443,"tid":27477,"ts":326458538093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":336609},
-{"pid":27443,"tid":27477,"ts":326458538124,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":336639},
-{"pid":27443,"tid":27477,"ts":326458538124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336639,"id":"0xaf88abf0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458538154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":336670,"id":"0xaf88a948f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458538917,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336731,"id":"0xaf88a830f182217a"},
-{"pid":27443,"tid":27477,"ts":326458538948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":336761},
-{"pid":27443,"tid":27477,"ts":326458538948,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":336761},
-{"pid":27443,"tid":27477,"ts":326458538948,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":77},"tts":336761},
-{"pid":27443,"tid":27477,"ts":326458539039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336853,"id":"0xaf88abf1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458539039,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":336853},
-{"pid":27443,"tid":27477,"ts":326458549111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336914,"id":"0xaf88a831f182217a"},
-{"pid":27443,"tid":27477,"ts":326458549142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1922,"tdur":1557,"tts":336944},
-{"pid":27443,"tid":27477,"ts":326458549142,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1922,"tdur":1557,"tts":336944},
-{"pid":27443,"tid":27477,"ts":326458549142,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":336944},
-{"pid":27443,"tid":27477,"ts":326458549172,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1892,"tdur":1526,"tts":336975},
-{"pid":27443,"tid":27477,"ts":326458549172,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1892,"tdur":1526,"tts":336975},
-{"pid":27443,"tid":27477,"ts":326458549172,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":0,"tts":337005},
-{"pid":27443,"tid":27477,"ts":326458549203,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":337005},
-{"pid":27443,"tid":27477,"ts":326458549203,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":337005,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458549233,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":337036},
-{"pid":27443,"tid":27477,"ts":326458549264,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":367,"tts":337066},
-{"pid":27443,"tid":27477,"ts":326458549691,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1343,"tdur":976,"tts":337494},
-{"pid":27443,"tid":27477,"ts":326458549691,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":77},"dur":244,"tdur":214,"tts":337524},
-{"pid":27443,"tid":27477,"ts":326458549966,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":77},"dur":30,"tdur":31,"tts":337768},
-{"pid":27443,"tid":27477,"ts":326458549996,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":77},"tts":337799},
-{"pid":27443,"tid":27477,"ts":326458550576,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":338013},
-{"pid":27443,"tid":27477,"ts":326458550576,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":458,"tdur":457,"tts":338013},
-{"pid":27443,"tid":27477,"ts":326458550607,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":153,"tts":338043},
-{"pid":27443,"tid":27477,"ts":326458550759,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":338196},
-{"pid":27443,"tid":27477,"ts":326458550790,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":338226},
-{"pid":27443,"tid":27477,"ts":326458550790,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":338226},
-{"pid":27443,"tid":27477,"ts":326458550820,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":338257},
-{"pid":27443,"tid":27477,"ts":326458550820,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":338257,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458550851,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":338287},
-{"pid":27443,"tid":27477,"ts":326458550851,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":338318},
-{"pid":27443,"tid":27466,"ts":326458534614,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":183,"tdur":61,"tts":241141},
-{"pid":27443,"tid":27466,"ts":326458534614,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":30,"tts":241141},
-{"pid":27443,"tid":27466,"ts":326458534736,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241171,"id":"0xc4c1160a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458534736,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":241171},
-{"pid":27443,"tid":27466,"ts":326458535285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":241294,"id":"0xaf88ad9cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458535285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":241294},
-{"pid":27443,"tid":27466,"ts":326458535316,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241324,"id":"0xccc3cf02"},
-{"pid":27443,"tid":27466,"ts":326458536262,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":241385},
-{"pid":27443,"tid":27466,"ts":326458536292,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":241416},
-{"pid":27443,"tid":27466,"ts":326458536323,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241446,"id":"0xba445f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458536354,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":241477},
-{"pid":27443,"tid":27466,"ts":326458536354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":241477,"id":"0xaf88a834f182217a"},
-{"pid":27443,"tid":27466,"ts":326458536659,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":61,"tdur":61,"tts":241568},
-{"pid":27443,"tid":27466,"ts":326458536659,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":241568},
-{"pid":27443,"tid":27466,"ts":326458536689,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241599,"id":"0xba446002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458536689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":241629,"id":"0xaf88a835f182217a"},
-{"pid":27443,"tid":27466,"ts":326458537971,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":241721},
-{"pid":27443,"tid":27466,"ts":326458537971,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":61,"tts":241751},
-{"pid":27443,"tid":27466,"ts":326458538002,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241751,"id":"0xba446102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458538032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":241782,"id":"0xaf88a837f182217a"},
-{"pid":27443,"tid":27466,"ts":326458539100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":241873,"id":"0xaf88ad9df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458539131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":241904},
-{"pid":27443,"tid":27466,"ts":326458539131,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":241904,"id":"0xccc3d102"},
-{"pid":27443,"tid":27466,"ts":326458552224,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":242026},
-{"pid":27443,"tid":27466,"ts":326458552285,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":242057},
-{"pid":27443,"tid":27466,"ts":326458552285,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242057,"id":"0xba446302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458552316,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":242087},
-{"pid":27443,"tid":27466,"ts":326458552346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":242118,"id":"0xaf88a8cff182217a"},
-{"pid":27443,"tid":27466,"ts":326458553109,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":242209},
-{"pid":27443,"tid":27466,"ts":326458553140,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":242240},
-{"pid":27443,"tid":27466,"ts":326458553170,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242270,"id":"0xba446402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458553201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":242301,"id":"0xaf88a8c8f182217a"},
-{"pid":27443,"tid":27466,"ts":326458555307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":242392,"id":"0xaf88ad9ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458555307,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":242392},
-{"pid":27443,"tid":27466,"ts":326458555398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":242423},
-{"pid":27443,"tid":27466,"ts":326458555398,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242423,"id":"0xccc3d302"},
-{"pid":27443,"tid":27466,"ts":326458555459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":242484,"id":"0xaf88ad9ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458555490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":242514},
-{"pid":27443,"tid":27466,"ts":326458555490,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242514,"id":"0xccc3d406"},
-{"pid":27443,"tid":27466,"ts":326458555856,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":242636},
-{"pid":27443,"tid":27466,"ts":326458555887,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":242667},
-{"pid":27443,"tid":27466,"ts":326458555917,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242697,"id":"0xc4c1190a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458556589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":242789,"id":"0xaf88ad98f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458556589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":30,"tts":242820},
-{"pid":27443,"tid":27466,"ts":326458556619,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242820,"id":"0xccc3d502"},
-{"pid":27443,"tid":27466,"ts":326458559274,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":242911},
-{"pid":27443,"tid":27466,"ts":326458559305,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":242942},
-{"pid":27443,"tid":27466,"ts":326458559305,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":242942,"id":"0xba446702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458559335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":242972,"id":"0xaf88a8c0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458568644,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":243094},
-{"pid":27443,"tid":27466,"ts":326458568675,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":243125},
-{"pid":27443,"tid":27466,"ts":326458568675,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":243125,"id":"0xba446902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458568705,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":243155},
-{"pid":27443,"tid":27466,"ts":326458568736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":243186,"id":"0xaf88a8c1f182217a"},
-{"pid":27443,"tid":27466,"ts":326458569285,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":243277},
-{"pid":27443,"tid":27466,"ts":326458569316,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":243308},
-{"pid":27443,"tid":27466,"ts":326458569316,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":243308,"id":"0xba446a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458569346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":243338,"id":"0xaf88a8c2f182217a"},
-{"pid":27443,"tid":27466,"ts":326458570750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":243460,"id":"0xaf88ad99f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458570750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":243460},
-{"pid":27443,"tid":27466,"ts":326458570781,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":243491,"id":"0xccc3d702"},
-{"pid":27443,"tid":27466,"ts":326458585186,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":243583},
-{"pid":27443,"tid":27466,"ts":326458585217,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":243613},
-{"pid":27443,"tid":27466,"ts":326458585217,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":243613,"id":"0xba446b02","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326458537513,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":6049748},
-{"pid":27443,"tid":27459,"ts":326458537544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6049778,"id":"0xaf88abf7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458537574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6049809,"id":"0xaf88a94ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458537605,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1648,"tdur":1160,"tts":6049839},
-{"pid":27443,"tid":27459,"ts":326458537605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6049839,"id":"0xaf88a94ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458537635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6049870,"id":"0xaf88abf6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458537635,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1587,"tdur":1099,"tts":6049870},
-{"pid":27443,"tid":27459,"ts":326458537696,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1526,"tdur":1038,"tts":6049931},
-{"pid":27443,"tid":27459,"ts":326458537696,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6049931,"id":"0x30000002c"},
-{"pid":27443,"tid":27459,"ts":326458537727,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1251,"tdur":885,"tts":6049961},
-{"pid":27443,"tid":27459,"ts":326458537757,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1221,"tdur":854,"tts":6049992},
-{"pid":27443,"tid":27459,"ts":326458537819,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6050053},
-{"pid":27443,"tid":27459,"ts":326458537880,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6050114},
-{"pid":27443,"tid":27459,"ts":326458537910,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":183,"tdur":0,"tts":6050144},
-{"pid":27443,"tid":27459,"ts":326458538124,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6050175},
-{"pid":27443,"tid":27459,"ts":326458538185,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":793,"tdur":610,"tts":6050236},
-{"pid":27443,"tid":27459,"ts":326458538337,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":611,"tdur":427,"tts":6050389},
-{"pid":27443,"tid":27459,"ts":326458538337,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6050419},
-{"pid":27443,"tid":27459,"ts":326458538643,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":29,"frame":"0x78c60000"}},"tts":6050694,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458538673,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":214,"tdur":31,"tts":6050724},
-{"pid":27443,"tid":27459,"ts":326458538673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6050724,"id":"0xaf88a830f182217a"},
-{"pid":27443,"tid":27459,"ts":326458538673,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":6050724},
-{"pid":27443,"tid":27459,"ts":326458538917,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6050785},
-{"pid":27443,"tid":27459,"ts":326458539009,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":213,"tdur":61,"tts":6050877},
-{"pid":27443,"tid":27459,"ts":326458539009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6050877,"id":"0xaf88ad9df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458539283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6051030,"id":"0xaf88a94ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458539283,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6051030},
-{"pid":27443,"tid":27459,"ts":326458539314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6051060,"id":"0xaf88a949f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458539314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6051060,"id":"0xaf88abf0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458539345,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":0,"tts":6051091},
-{"pid":27443,"tid":27459,"ts":326458539345,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6051091},
-{"pid":27443,"tid":27459,"ts":326458539406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6051152,"id":"0xaf88a948f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458539406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10376,"tdur":9308,"tts":6051152},
-{"pid":27443,"tid":27459,"ts":326458539436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6051182,"id":"0xaf88abf1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458539436,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10316,"tdur":9248,"tts":6051182},
-{"pid":27443,"tid":27459,"ts":326458539436,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":77},"tts":6051182},
-{"pid":27443,"tid":27459,"ts":326458539467,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6051213},
-{"pid":27443,"tid":27459,"ts":326458539497,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6043,"tdur":6043,"tts":6051243},
-{"pid":27443,"tid":27459,"ts":326458539497,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":0,"tts":6051274},
-{"pid":27443,"tid":27459,"ts":326458539558,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":29,"frame":"0x78c60000"}},"dur":5982,"tdur":5982,"tts":6051304},
-{"pid":27443,"tid":27459,"ts":326458539619,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5891,"tdur":5891,"tts":6051365},
-{"pid":27443,"tid":27459,"ts":326458539619,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6051396},
-{"pid":27443,"tid":27459,"ts":326458539802,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6051579},
-{"pid":27443,"tid":27459,"ts":326458539863,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6051609},
-{"pid":27443,"tid":27459,"ts":326458545479,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6057256},
-{"pid":27443,"tid":27459,"ts":326458545540,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3052,"tdur":2564,"tts":6057286},
-{"pid":27443,"tid":27459,"ts":326458545571,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6057347},
-{"pid":27443,"tid":27459,"ts":326458545601,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6057347},
-{"pid":27443,"tid":27459,"ts":326458545632,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6057378},
-{"pid":27443,"tid":27459,"ts":326458546273,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6057805},
-{"pid":27443,"tid":27459,"ts":326458546303,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6057836},
-{"pid":27443,"tid":27459,"ts":326458546334,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2258,"tdur":1984,"tts":6057866},
-{"pid":27443,"tid":27459,"ts":326458546334,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2106,"tdur":1831,"tts":6057866},
-{"pid":27443,"tid":27459,"ts":326458546334,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":6057866},
-{"pid":27443,"tid":27459,"ts":326458546395,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":580,"tdur":336,"tts":6057927},
-{"pid":27443,"tid":27459,"ts":326458546395,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":6057927},
-{"pid":27443,"tid":27459,"ts":326458546975,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6058263},
-{"pid":27443,"tid":27459,"ts":326458547158,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6058446},
-{"pid":27443,"tid":27459,"ts":326458547249,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":6058538},
-{"pid":27443,"tid":27459,"ts":326458547280,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1129,"tts":6058568},
-{"pid":27443,"tid":27459,"ts":326458548470,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6059728},
-{"pid":27443,"tid":27459,"ts":326458548501,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":92,"tts":6059758},
-{"pid":27443,"tid":27459,"ts":326458548623,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":77},"dur":396,"tdur":397,"tts":6059880},
-{"pid":27443,"tid":27459,"ts":326458548623,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":396,"tdur":397,"tts":6059880},
-{"pid":27443,"tid":27459,"ts":326458548867,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":30,"tdur":30,"tts":6060125},
-{"pid":27443,"tid":27459,"ts":326458548897,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":31,"tdur":31,"tts":6060155},
-{"pid":27443,"tid":27459,"ts":326458548928,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":0,"tdur":0,"tts":6060186},
-{"pid":27443,"tid":27459,"ts":326458548958,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":0,"tdur":0,"tts":6060216},
-{"pid":27443,"tid":27459,"ts":326458548958,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":31,"tdur":31,"tts":6060216},
-{"pid":27443,"tid":27459,"ts":326458548989,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":0,"tdur":0,"tts":6060247},
-{"pid":27443,"tid":27459,"ts":326458548989,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":77},"dur":30,"tdur":30,"tts":6060247},
-{"pid":27443,"tid":27459,"ts":326458549019,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6060277,"id":"0x30000002c"},
-{"pid":27443,"tid":27459,"ts":326458549050,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":91,"tts":6060308},
-{"pid":27443,"tid":27459,"ts":326458549050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6060308,"id":"0xaf88a831f182217a"},
-{"pid":27443,"tid":27459,"ts":326458549752,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6060430},
-{"pid":27443,"tid":27459,"ts":326458549813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6060491,"id":"0xaf88a949f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458549813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6060491},
-{"pid":27443,"tid":27459,"ts":326458553903,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6060613,"id":"0xaf88a94af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458553933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1404,"tdur":1312,"tts":6060613},
-{"pid":27443,"tid":27459,"ts":326458553964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6060643,"id":"0xaf88a94bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458553964,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6060643,"id":"0xaf88abf2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458553994,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1343,"tdur":1251,"tts":6060674},
-{"pid":27443,"tid":27459,"ts":326458554055,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1252,"tdur":1160,"tts":6060735},
-{"pid":27443,"tid":27459,"ts":326458554055,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6060766,"id":"0x30000002d"},
-{"pid":27443,"tid":27459,"ts":326458554086,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1068,"tdur":977,"tts":6060796},
-{"pid":27443,"tid":27459,"ts":326458554116,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1038,"tdur":915,"tts":6060827},
-{"pid":27443,"tid":27459,"ts":326458554177,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6060888},
-{"pid":27443,"tid":27459,"ts":326458554238,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6060918},
-{"pid":27443,"tid":27459,"ts":326458554269,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6060949},
-{"pid":27443,"tid":27459,"ts":326458554300,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6060979},
-{"pid":27443,"tid":27459,"ts":326458554361,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":763,"tdur":702,"tts":6061040},
-{"pid":27443,"tid":27459,"ts":326458554513,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":580,"tdur":489,"tts":6061223},
-{"pid":27443,"tid":27459,"ts":326458554544,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6061223},
-{"pid":27443,"tid":27459,"ts":326458555001,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":30,"frame":"0x78c60000"}},"tts":6061620,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458555032,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":6061651},
-{"pid":27443,"tid":27459,"ts":326458555032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6061651,"id":"0xaf88a8caf182217a"},
-{"pid":27443,"tid":27459,"ts":326458555063,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6061681},
-{"pid":27443,"tid":27459,"ts":326458555154,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":153,"tdur":92,"tts":6061803},
-{"pid":27443,"tid":27459,"ts":326458555185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6061803,"id":"0xaf88ad9ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458555368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6061956,"id":"0xaf88a94bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458555398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6061986},
-{"pid":27443,"tid":27459,"ts":326458556924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6062047,"id":"0xaf88a944f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458556924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6062047},
-{"pid":27443,"tid":27459,"ts":326458556955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6062078,"id":"0xaf88a945f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458556955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6062078,"id":"0xaf88abf3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458556985,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6062108},
-{"pid":27443,"tid":27459,"ts":326458556985,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6062108},
-{"pid":27443,"tid":27459,"ts":326458557046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6062170,"id":"0xaf88a945f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458557046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6062170},
-{"pid":27443,"tid":27459,"ts":326458559518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6062231,"id":"0xaf88a946f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458559518,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6062231},
-{"pid":27443,"tid":27459,"ts":326458559549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6062261,"id":"0xaf88a947f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458559549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6062292,"id":"0xaf88ab8cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458559580,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6062292},
-{"pid":27443,"tid":27459,"ts":326458559580,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6062292},
-{"pid":27443,"tid":27459,"ts":326458559641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6062353,"id":"0xaf88a947f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458559641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6062353},
-{"pid":27443,"tid":27459,"ts":326458569621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6062444,"id":"0xaf88a940f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458569651,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":1098,"tts":6062475},
-{"pid":27443,"tid":27459,"ts":326458569651,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6062475,"id":"0xaf88a941f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458569682,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6062505,"id":"0xaf88ab8df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458569682,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1068,"tdur":1068,"tts":6062505},
-{"pid":27443,"tid":27459,"ts":326458569743,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":976,"tdur":977,"tts":6062566},
-{"pid":27443,"tid":27459,"ts":326458569773,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6062597,"id":"0x30000002e"},
-{"pid":27443,"tid":27459,"ts":326458569804,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6062627},
-{"pid":27443,"tid":27459,"ts":326458569834,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":794,"tdur":793,"tts":6062658},
-{"pid":27443,"tid":27459,"ts":326458569865,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6062719},
-{"pid":27443,"tid":27459,"ts":326458569926,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6062749},
-{"pid":27443,"tid":27477,"ts":326458550942,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":338379,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458551003,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":338440,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458551003,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":338440,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458551095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458550},"tts":338531,"id":"0xaf88a836f182217a"},
-{"pid":27443,"tid":27477,"ts":326458551095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":31,"tts":338562},
-{"pid":27443,"tid":27477,"ts":326458551125,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":338562},
-{"pid":27443,"tid":27477,"ts":326458551614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":338654,"id":"0xaf88a832f182217a"},
-{"pid":27443,"tid":27477,"ts":326458551644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":338684},
-{"pid":27443,"tid":27477,"ts":326458551644,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":338684},
-{"pid":27443,"tid":27477,"ts":326458551675,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":338715,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458551675,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":338715},
-{"pid":27443,"tid":27477,"ts":326458551705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338745,"id":"0xaf88a8cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458551736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":338806,"id":"0xaf88a833f182217a"},
-{"pid":27443,"tid":27477,"ts":326458551766,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":338806},
-{"pid":27443,"tid":27477,"ts":326458551766,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":92,"tts":338806},
-{"pid":27443,"tid":27477,"ts":326458551797,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":338837,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458551797,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":338837},
-{"pid":27443,"tid":27477,"ts":326458551827,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338867,"id":"0xaf88a8cef182217a"},
-{"pid":27443,"tid":27477,"ts":326458551858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":338898,"id":"0xaf88a8ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326458551888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":338928},
-{"pid":27443,"tid":27477,"ts":326458551888,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":338928},
-{"pid":27443,"tid":27477,"ts":326458551919,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":338959,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458551919,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":338959},
-{"pid":27443,"tid":27477,"ts":326458551949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":338989,"id":"0xaf88a8cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458551980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1526,"tdur":1373,"tts":339020},
-{"pid":27443,"tid":27477,"ts":326458551980,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1495,"tdur":1343,"tts":339020},
-{"pid":27443,"tid":27477,"ts":326458552010,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":339050},
-{"pid":27443,"tid":27477,"ts":326458552010,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":339050},
-{"pid":27443,"tid":27477,"ts":326458552041,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":339081},
-{"pid":27443,"tid":27477,"ts":326458552072,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":339111},
-{"pid":27443,"tid":27477,"ts":326458552163,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1312,"tdur":1160,"tts":339203},
-{"pid":27443,"tid":27477,"ts":326458552194,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1281,"tdur":1130,"tts":339233},
-{"pid":27443,"tid":27477,"ts":326458552194,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1281,"tdur":1130,"tts":339233},
-{"pid":27443,"tid":27477,"ts":326458552194,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":339233,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458552285,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":339325},
-{"pid":27443,"tid":27477,"ts":326458552316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339356},
-{"pid":27443,"tid":27477,"ts":326458552346,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339386},
-{"pid":27443,"tid":27477,"ts":326458552346,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":339417},
-{"pid":27443,"tid":27477,"ts":326458552377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":339417},
-{"pid":27443,"tid":27477,"ts":326458552407,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339447},
-{"pid":27443,"tid":27477,"ts":326458552438,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":183,"tdur":0,"tts":339478},
-{"pid":27443,"tid":27477,"ts":326458552621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339508},
-{"pid":27443,"tid":27477,"ts":326458552651,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339539},
-{"pid":27443,"tid":27477,"ts":326458552682,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339569},
-{"pid":27443,"tid":27477,"ts":326458552682,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":339569},
-{"pid":27443,"tid":27477,"ts":326458552712,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339600},
-{"pid":27443,"tid":27477,"ts":326458552743,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339630},
-{"pid":27443,"tid":27477,"ts":326458552743,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":339630},
-{"pid":27443,"tid":27477,"ts":326458552773,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":339661},
-{"pid":27443,"tid":27477,"ts":326458552804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339691},
-{"pid":27443,"tid":27477,"ts":326458552804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":339691},
-{"pid":27443,"tid":27477,"ts":326458552835,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":339722},
-{"pid":27443,"tid":27477,"ts":326458552865,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339752},
-{"pid":27443,"tid":27477,"ts":326458552865,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":339783},
-{"pid":27443,"tid":27477,"ts":326458552896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":339783},
-{"pid":27443,"tid":27477,"ts":326458552926,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":339813},
-{"pid":27443,"tid":27477,"ts":326458552957,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":339844},
-{"pid":27443,"tid":27477,"ts":326458552987,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":339874},
-{"pid":27443,"tid":27477,"ts":326458553018,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":339905},
-{"pid":27443,"tid":27477,"ts":326458553048,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":339935},
-{"pid":27443,"tid":27477,"ts":326458553170,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":340057},
-{"pid":27443,"tid":27477,"ts":326458553201,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":340088},
-{"pid":27443,"tid":27477,"ts":326458553201,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":340088},
-{"pid":27443,"tid":27477,"ts":326458553231,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":340119},
-{"pid":27443,"tid":27477,"ts":326458553262,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":340149},
-{"pid":27443,"tid":27477,"ts":326458553292,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":340180},
-{"pid":27443,"tid":27477,"ts":326458553292,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":340210},
-{"pid":27443,"tid":27477,"ts":326458553353,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":340241},
-{"pid":27443,"tid":27477,"ts":326458553414,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":340302},
-{"pid":27443,"tid":27477,"ts":326458553414,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":340332},
-{"pid":27443,"tid":27477,"ts":326458553445,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":340332},
-{"pid":27443,"tid":27477,"ts":326458553506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":340393,"id":"0xaf88a8cef182217a"},
-{"pid":27443,"tid":27477,"ts":326458553506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":152,"tts":340424},
-{"pid":27443,"tid":27477,"ts":326458553536,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":340424},
-{"pid":27443,"tid":27477,"ts":326458553536,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":340424},
-{"pid":27443,"tid":27477,"ts":326458553567,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":340454},
-{"pid":27443,"tid":27477,"ts":326458553567,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":340454},
-{"pid":27443,"tid":27477,"ts":326458553598,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":340485},
-{"pid":27443,"tid":27477,"ts":326458553659,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":340546},
-{"pid":27443,"tid":27477,"ts":326458553659,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":340546},
-{"pid":27443,"tid":27477,"ts":326458553689,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":340607,"id":"0xaf88a8cff182217a"},
-{"pid":27443,"tid":27477,"ts":326458553720,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":340607},
-{"pid":27443,"tid":27477,"ts":326458553720,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":183,"tts":340607},
-{"pid":27443,"tid":27477,"ts":326458553750,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":340637,"id":"0x30000002d"},
-{"pid":27443,"tid":27477,"ts":326458553781,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":340668},
-{"pid":27443,"tid":27477,"ts":326458553781,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":340668,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458553842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340729,"id":"0xaf88abf2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458553842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":340729,"id":"0xaf88a94af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458553903,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":340790,"id":"0xaf88a8c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458553933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":340821},
-{"pid":27443,"tid":27477,"ts":326458553933,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458547119.0,"frame_time_us":326458550394.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":340851},
-{"pid":27443,"tid":27477,"ts":326458553964,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458547119.0,"frame_time_us":326458550394.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":340851},
-{"pid":27443,"tid":27477,"ts":326458553994,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":340912},
-{"pid":27443,"tid":27477,"ts":326458554025,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":340912},
-{"pid":27443,"tid":27477,"ts":326458554055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":340943,"id":"0xaf88a8c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458554086,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":340973,"id":"0xaf88a8c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458554086,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3449,"tdur":1923,"tts":340973},
-{"pid":27443,"tid":27477,"ts":326458554086,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3449,"tdur":1892,"tts":341004},
-{"pid":27443,"tid":27477,"ts":326458554116,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2411,"tdur":1587,"tts":341004},
-{"pid":27443,"tid":27477,"ts":326458554116,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":77},"dur":1008,"tdur":1007,"tts":341004},
-{"pid":27443,"tid":27477,"ts":326458554147,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":77},"dur":275,"tdur":275,"tts":341034},
-{"pid":27443,"tid":27477,"ts":326458554422,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":77},"dur":61,"tdur":31,"tts":341339},
-{"pid":27443,"tid":27477,"ts":326458554483,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":77},"tts":341370},
-{"pid":27443,"tid":27477,"ts":326458554635,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":341522},
-{"pid":27443,"tid":27477,"ts":326458554666,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":341553},
-{"pid":27443,"tid":27477,"ts":326458554666,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":341553},
-{"pid":27443,"tid":27477,"ts":326458554666,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":341553},
-{"pid":27443,"tid":27477,"ts":326458554696,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":341584,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458554757,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":341645},
-{"pid":27443,"tid":27477,"ts":326458555124,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":342011},
-{"pid":27443,"tid":27477,"ts":326458555124,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1159,"tdur":305,"tts":342011},
-{"pid":27443,"tid":27477,"ts":326458555185,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":342072},
-{"pid":27443,"tid":27477,"ts":326458555185,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1037,"tdur":183,"tts":342102},
-{"pid":27443,"tid":27477,"ts":326458555307,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12388},"dur":30,"tdur":0,"tts":342194},
-{"pid":27443,"tid":27477,"ts":326458555368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":342255,"id":"0xaf88ad9ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458556253,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":342316,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458556283,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":342347,"id":"0x30000002c"},
-{"pid":27443,"tid":27477,"ts":326458556314,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":342377},
-{"pid":27443,"tid":27477,"ts":326458556375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":342469,"id":"0xaf88ad98f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458556466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":342530,"id":"0xaf88abf3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458556466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":342530,"id":"0xaf88a944f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458556527,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1008,"tdur":305,"tts":342591},
-{"pid":27443,"tid":27477,"ts":326458556527,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":580,"tdur":30,"tts":342591},
-{"pid":27443,"tid":27477,"ts":326458557107,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":428,"tdur":275,"tts":342621},
-{"pid":27443,"tid":27477,"ts":326458557107,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":342621},
-{"pid":27443,"tid":27477,"ts":326458557260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":342621},
-{"pid":27443,"tid":27477,"ts":326458557352,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":342713},
-{"pid":27443,"tid":27477,"ts":326458557352,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":342713},
-{"pid":27443,"tid":27477,"ts":326458557382,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":342743},
-{"pid":27443,"tid":27477,"ts":326458557382,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":342743},
-{"pid":27443,"tid":27477,"ts":326458557382,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":342743,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458557413,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":342774},
-{"pid":27443,"tid":27477,"ts":326458557413,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":342774},
-{"pid":27443,"tid":27477,"ts":326458557474,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":342835,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458557504,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":342865,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458557504,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":342865,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458557596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":342926,"id":"0xaf88a8caf182217a"},
-{"pid":27443,"tid":27477,"ts":326458557626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":0,"tdur":0,"tts":342957},
-{"pid":27443,"tid":27477,"ts":326458557626,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":342957},
-{"pid":27443,"tid":27477,"ts":326458557657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":342987,"id":"0xaf88a8cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458557657,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":342987},
-{"pid":27443,"tid":27477,"ts":326458557657,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":342987},
-{"pid":27443,"tid":27477,"ts":326458557687,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":343018,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458557687,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":343018},
-{"pid":27443,"tid":27477,"ts":326458557687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343048,"id":"0xaf88a8c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458557718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343048,"id":"0xaf88a8c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458557718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":343079},
-{"pid":27443,"tid":27477,"ts":326458557748,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":343079},
-{"pid":27443,"tid":27477,"ts":326458557748,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":343079,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458557748,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":343079},
-{"pid":27443,"tid":27477,"ts":326458557779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343110,"id":"0xaf88a8c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458557809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343140,"id":"0xaf88a8c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458557809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":343140},
-{"pid":27443,"tid":27477,"ts":326458557809,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":343140},
-{"pid":27443,"tid":27477,"ts":326458557809,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":343140,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458557840,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":343171},
-{"pid":27443,"tid":27477,"ts":326458557840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343171,"id":"0xaf88a8c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458557840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":343171},
-{"pid":27443,"tid":27477,"ts":326458557870,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":343201},
-{"pid":27443,"tid":27477,"ts":326458557870,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":343201},
-{"pid":27443,"tid":27477,"ts":326458557870,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":343201},
-{"pid":27443,"tid":27477,"ts":326458557901,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":343232},
-{"pid":27443,"tid":27477,"ts":326458557901,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":30,"tts":343232},
-{"pid":27443,"tid":27477,"ts":326458557962,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":343293},
-{"pid":27443,"tid":27477,"ts":326458557962,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":343293},
-{"pid":27443,"tid":27477,"ts":326458557992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343323,"id":"0xaf88a8c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458557992,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":343323},
-{"pid":27443,"tid":27477,"ts":326458558023,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":91,"tts":343354},
-{"pid":27443,"tid":27477,"ts":326458558023,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":343354},
-{"pid":27443,"tid":27477,"ts":326458558023,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":343354},
-{"pid":27443,"tid":27477,"ts":326458558023,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":31,"tts":343384},
-{"pid":27443,"tid":27477,"ts":326458558054,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":343384},
-{"pid":27443,"tid":27477,"ts":326458558084,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":343415},
-{"pid":27443,"tid":27477,"ts":326458558084,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":343445},
-{"pid":27443,"tid":27477,"ts":326458559396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343506,"id":"0xaf88a8c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458559396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":92,"tts":343506},
-{"pid":27443,"tid":27477,"ts":326458559427,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":343537},
-{"pid":27443,"tid":27477,"ts":326458559457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":343567,"id":"0xaf88ab8cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458559457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343567,"id":"0xaf88a946f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458569407,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343659,"id":"0xaf88a8c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458569438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":184,"tts":343689},
-{"pid":27443,"tid":27477,"ts":326458569438,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":343689},
-{"pid":27443,"tid":27477,"ts":326458569468,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":343720,"id":"0x30000002e"},
-{"pid":27443,"tid":27477,"ts":326458569499,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":343750},
-{"pid":27443,"tid":27477,"ts":326458569499,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":343750,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458569560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":343812,"id":"0xaf88ab8df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458569560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343812,"id":"0xaf88a940f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458569621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":343873,"id":"0xaf88a8c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458569621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":343873},
-{"pid":27443,"tid":27477,"ts":326458569651,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458563795.0,"frame_time_us":326458567070.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":343903},
-{"pid":27443,"tid":27477,"ts":326458569682,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458563795.0,"frame_time_us":326458567070.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":343934},
-{"pid":27443,"tid":27477,"ts":326458569712,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":78},"tts":343964},
-{"pid":27443,"tid":27477,"ts":326458569773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":344025,"id":"0xaf88ab8ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458569804,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":344056,"id":"0xaf88a942f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458569804,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":344056},
-{"pid":27443,"tid":27477,"ts":326458569834,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458583736},"dur":31,"tdur":31,"tts":344086},
-{"pid":27443,"tid":27477,"ts":326458569834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":344086,"id":"0xaf88a8c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458580394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":344208,"id":"0xaf88a8dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458580394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1374,"tdur":1374,"tts":344208},
-{"pid":27443,"tid":27477,"ts":326458580394,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1374,"tdur":1343,"tts":344239},
-{"pid":27443,"tid":27477,"ts":326458580425,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":344239},
-{"pid":27443,"tid":27477,"ts":326458580425,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":344239},
-{"pid":27443,"tid":27477,"ts":326458580455,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1313,"tdur":1313,"tts":344269},
-{"pid":27443,"tid":27477,"ts":326458580455,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":344269},
-{"pid":27443,"tid":27477,"ts":326458580455,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":344269},
-{"pid":27443,"tid":27477,"ts":326458580486,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":344300,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458580486,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":344300},
-{"pid":27443,"tid":27477,"ts":326458580517,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":396,"tdur":397,"tts":344330},
-{"pid":27443,"tid":27477,"ts":326458580974,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":794,"tts":344788},
-{"pid":27443,"tid":27477,"ts":326458580974,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":78},"dur":244,"tdur":244,"tts":344788},
-{"pid":27443,"tid":27477,"ts":326458581218,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":78},"dur":31,"tdur":31,"tts":345032},
-{"pid":27443,"tid":27477,"ts":326458581280,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":78},"tts":345093},
-{"pid":27443,"tid":27477,"ts":326458581432,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":345246},
-{"pid":27443,"tid":27477,"ts":326458581432,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":345246},
-{"pid":27443,"tid":27477,"ts":326458581463,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":274,"tdur":275,"tts":345276},
-{"pid":27443,"tid":27477,"ts":326458581463,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":123,"tts":345276},
-{"pid":27443,"tid":27477,"ts":326458581585,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":345399},
-{"pid":27443,"tid":27477,"ts":326458581585,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":345399},
-{"pid":27443,"tid":27477,"ts":326458581615,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":92,"tdur":92,"tts":345429},
-{"pid":27443,"tid":27477,"ts":326458581615,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":345429},
-{"pid":27443,"tid":27477,"ts":326458581615,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":345429,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458581646,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":345460},
-{"pid":27443,"tid":27477,"ts":326458581646,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":345460},
-{"pid":27443,"tid":27477,"ts":326458581707,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":345521,"id":"0xaf88ae4cff2ed3d2"},{"pid":27443,"tid":27477,"ts":326458581737,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":345551,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458581737,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":345551,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458581829,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":345612,"id":"0xaf88a8ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326458581859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":345643},
-{"pid":27443,"tid":27477,"ts":326458581859,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":345643},
-{"pid":27443,"tid":27477,"ts":326458581859,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":345673,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458581890,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":345673},
-{"pid":27443,"tid":27477,"ts":326458581890,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":345673,"id":"0xaf88a8d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458581920,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":345704,"id":"0xaf88a8def182217a"},
-{"pid":27443,"tid":27477,"ts":326458581920,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":345704},
-{"pid":27443,"tid":27477,"ts":326458581951,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":345734},
-{"pid":27443,"tid":27477,"ts":326458581951,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":345734,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458581951,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":345734},
-{"pid":27443,"tid":27477,"ts":326458581981,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":345765,"id":"0xaf88a8d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458581981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":345795,"id":"0xaf88a8dff182217a"},
-{"pid":27443,"tid":27477,"ts":326458582012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":345795},
-{"pid":27443,"tid":27477,"ts":326458582012,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":345795},
-{"pid":27443,"tid":27477,"ts":326458582012,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":345795,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458582012,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":345826},
-{"pid":27443,"tid":27477,"ts":326458582043,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":345826,"id":"0xaf88a8d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458582043,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1129,"tdur":1129,"tts":345826},
-{"pid":27443,"tid":27477,"ts":326458582073,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1099,"tdur":1099,"tts":345856},
-{"pid":27443,"tid":27477,"ts":326458582073,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":345856},
-{"pid":27443,"tid":27477,"ts":326458582073,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":345856},
-{"pid":27443,"tid":27477,"ts":326458582104,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":345887},
-{"pid":27443,"tid":27477,"ts":326458582104,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":345887},
-{"pid":27443,"tid":27477,"ts":326458582195,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":977,"tdur":977,"tts":345978},
-{"pid":27443,"tid":27477,"ts":326458582195,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":947,"tts":345978},
-{"pid":27443,"tid":27477,"ts":326458582195,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":916,"tdur":916,"tts":345978},
-{"pid":27443,"tid":27477,"ts":326458582226,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":346009,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458582287,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":346070},
-{"pid":27443,"tid":27477,"ts":326458582317,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346101},
-{"pid":27443,"tid":27459,"ts":326458569956,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6062780},
-{"pid":27443,"tid":27459,"ts":326458569987,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6062810},
-{"pid":27443,"tid":27459,"ts":326458570048,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":519,"tts":6062902},
-{"pid":27443,"tid":27459,"ts":326458570201,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":366,"tdur":335,"tts":6063055},
-{"pid":27443,"tid":27459,"ts":326458570231,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6063055},
-{"pid":27443,"tid":27459,"ts":326458570536,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":31,"frame":"0x78c60000"}},"tts":6063360,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458570567,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6063390},
-{"pid":27443,"tid":27459,"ts":326458570658,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6063482},
-{"pid":27443,"tid":27459,"ts":326458570658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6063482,"id":"0xaf88ad99f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458570781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6063604,"id":"0xaf88a941f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458570781,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10315,"tdur":9584,"tts":6063634},
-{"pid":27443,"tid":27459,"ts":326458570811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6063634,"id":"0xaf88a943f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458570811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6063634,"id":"0xaf88ab8ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458570842,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10224,"tdur":9522,"tts":6063665},
-{"pid":27443,"tid":27459,"ts":326458570842,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":78},"tts":6063665},
-{"pid":27443,"tid":27459,"ts":326458570842,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6063665},
-{"pid":27443,"tid":27459,"ts":326458570903,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6378,"tdur":6257,"tts":6063726},
-{"pid":27443,"tid":27459,"ts":326458570903,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":6063726},
-{"pid":27443,"tid":27459,"ts":326458570933,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":30,"frame":"0x78c60000"}},"dur":6135,"tdur":5982,"tts":6063787},
-{"pid":27443,"tid":27459,"ts":326458571025,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6012,"tdur":5921,"tts":6063848},
-{"pid":27443,"tid":27459,"ts":326458571025,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6063848},
-{"pid":27443,"tid":27459,"ts":326458571208,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6064031},
-{"pid":27443,"tid":27459,"ts":326458571238,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":6064062},
-{"pid":27443,"tid":27459,"ts":326458576976,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6069739},
-{"pid":27443,"tid":27459,"ts":326458577068,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":31,"frame":"0x78c60000"}},"dur":213,"tdur":183,"tts":6069800},
-{"pid":27443,"tid":27459,"ts":326458577068,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":6069800},
-{"pid":27443,"tid":27459,"ts":326458577190,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":91,"tdur":92,"tts":6069891},
-{"pid":27443,"tid":27459,"ts":326458577220,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6069922},
-{"pid":27443,"tid":27459,"ts":326458577251,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6069952},
-{"pid":27443,"tid":27459,"ts":326458577281,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2534,"tdur":2503,"tts":6070013},
-{"pid":27443,"tid":27459,"ts":326458577342,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6070044},
-{"pid":27443,"tid":27459,"ts":326458577342,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6070044},
-{"pid":27443,"tid":27459,"ts":326458577373,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6070074},
-{"pid":27443,"tid":27459,"ts":326458577770,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6070471},
-{"pid":27443,"tid":27459,"ts":326458577800,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6070502},
-{"pid":27443,"tid":27459,"ts":326458577831,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1984,"tdur":1984,"tts":6070532},
-{"pid":27443,"tid":27459,"ts":326458577831,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1800,"tts":6070563},
-{"pid":27443,"tid":27459,"ts":326458577861,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":335,"tts":6070563},
-{"pid":27443,"tid":27459,"ts":326458578197,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":183,"tts":6070898},
-{"pid":27443,"tid":27459,"ts":326458578411,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6071112},
-{"pid":27443,"tid":27459,"ts":326458578502,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6071204},
-{"pid":27443,"tid":27459,"ts":326458578502,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1129,"tts":6071234},
-{"pid":27443,"tid":27459,"ts":326458579662,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":6072394},
-{"pid":27443,"tid":27459,"ts":326458579723,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":6072424},
-{"pid":27443,"tid":27459,"ts":326458579845,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":78},"dur":427,"tdur":428,"tts":6072546},
-{"pid":27443,"tid":27459,"ts":326458579845,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":428,"tts":6072546},
-{"pid":27443,"tid":27459,"ts":326458580120,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":30,"tdur":0,"tts":6072852},
-{"pid":27443,"tid":27459,"ts":326458580150,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":31,"tdur":0,"tts":6072882},
-{"pid":27443,"tid":27459,"ts":326458580181,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":30,"tdur":31,"tts":6072882},
-{"pid":27443,"tid":27459,"ts":326458580211,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":0,"tdur":0,"tts":6072913},
-{"pid":27443,"tid":27459,"ts":326458580211,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":31,"tdur":30,"tts":6072913},
-{"pid":27443,"tid":27459,"ts":326458580242,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":0,"tdur":0,"tts":6072943},
-{"pid":27443,"tid":27459,"ts":326458580242,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":78},"dur":30,"tdur":0,"tts":6072974},
-{"pid":27443,"tid":27459,"ts":326458580272,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6072974,"id":"0x30000002d"},
-{"pid":27443,"tid":27459,"ts":326458580303,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6073004,"id":"0x30000002e"},
-{"pid":27443,"tid":27459,"ts":326458580303,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":92,"tts":6073004},
-{"pid":27443,"tid":27459,"ts":326458580333,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6073035,"id":"0xaf88a8dcf182217a"},
-{"pid":27443,"tid":27459,"ts":326458581035,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2731},"tts":6073157,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458581035,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6073157,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458581066,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6073187},
-{"pid":27443,"tid":27459,"ts":326458581127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6073248,"id":"0xaf88a942f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458581127,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":184,"tts":6073248},
-{"pid":27443,"tid":27459,"ts":326458581157,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6073279,"id":"0xaf88abf7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458581157,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":6073279},
-{"pid":27443,"tid":27459,"ts":326458581188,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6073309,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458581188,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.548},"dur":122,"tdur":123,"tts":6073309},
-{"pid":27443,"tid":27459,"ts":326458581218,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6073340},
-{"pid":27443,"tid":27459,"ts":326458581249,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6073370},
-{"pid":27443,"tid":27459,"ts":326458581280,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6073401,"id":"0xaf88ab8ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458581280,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6073401,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458581341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6073462,"id":"0xaf88a943f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458581341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":6073462},
-{"pid":27443,"tid":27459,"ts":326458587231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6073554,"id":"0xaf88a95cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458587262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":91,"tts":6073554},
-{"pid":27443,"tid":27459,"ts":326458587292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6073584,"id":"0xaf88a95df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458587323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6073584,"id":"0xaf88ab88f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458587323,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6073584},
-{"pid":27443,"tid":27459,"ts":326458587353,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6073615},
-{"pid":27443,"tid":27459,"ts":326458587414,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6073676,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458587414,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6073676,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458587445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6073706,"id":"0xaf88a95df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458587475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6073737},
-{"pid":27443,"tid":27459,"ts":326458587475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6073737,"id":"0xaf88a95ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458587506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6073767,"id":"0xaf88ab8ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458587506,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":31,"tts":6073767},
-{"pid":27443,"tid":27459,"ts":326458587506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6073767,"id":"0xaf88ab8af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458587567,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6073828,"id":"0xaf88a95ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458587567,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1098,"tdur":1099,"tts":6073828},
-{"pid":27443,"tid":27459,"ts":326458587597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6073859,"id":"0xaf88a95ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458587597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6073859,"id":"0xaf88ab89f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458587597,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1038,"tdur":1038,"tts":6073859},
-{"pid":27443,"tid":27459,"ts":326458587689,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":946,"tdur":947,"tts":6073950},
-{"pid":27443,"tid":27459,"ts":326458587689,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6073950,"id":"0x30000002f"},
-{"pid":27443,"tid":27459,"ts":326458587719,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6073981},
-{"pid":27443,"tid":27459,"ts":326458587750,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":794,"tts":6074011},
-{"pid":27443,"tid":27459,"ts":326458587780,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6074072},
-{"pid":27443,"tid":27459,"ts":326458587841,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6074103},
-{"pid":27443,"tid":27459,"ts":326458587872,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6074133},
-{"pid":27443,"tid":27459,"ts":326458587902,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6074164},
-{"pid":27443,"tid":27459,"ts":326458587933,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":579,"tts":6074195},
-{"pid":27443,"tid":27459,"ts":326458588086,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":397,"tts":6074347},
-{"pid":27443,"tid":27459,"ts":326458588086,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6074378},
-{"pid":27443,"tid":27459,"ts":326458588421,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":32,"frame":"0x78c60000"}},"tts":6074683,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458588421,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":6074683},
-{"pid":27443,"tid":27459,"ts":326458588452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6074713,"id":"0xaf88a8d5f182217a"},
-{"pid":27443,"tid":27459,"ts":326458588482,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6074744},
-{"pid":27443,"tid":27459,"ts":326458588543,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6074805},
-{"pid":27443,"tid":27459,"ts":326458588574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6074835,"id":"0xaf88ad95f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458588696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6074958,"id":"0xaf88a95ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458588696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6074958},
-{"pid":27443,"tid":27459,"ts":326458590344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6075019,"id":"0xaf88a958f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458590344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10713,"tdur":9675,"tts":6075019},
-{"pid":27443,"tid":27459,"ts":326458590375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6075049,"id":"0xaf88a959f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458590405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6075080,"id":"0xaf88ab8bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458590405,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10652,"tdur":9583,"tts":6075080},
-{"pid":27443,"tid":27459,"ts":326458590405,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":79},"tts":6075080},
-{"pid":27443,"tid":27459,"ts":326458590436,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6075110},
-{"pid":27443,"tid":27459,"ts":326458590466,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6287,"tdur":6256,"tts":6075141},
-{"pid":27443,"tid":27459,"ts":326458590497,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6075171},
-{"pid":27443,"tid":27459,"ts":326458590527,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":32,"frame":"0x78c60000"}},"dur":6196,"tdur":6195,"tts":6075202},
-{"pid":27443,"tid":27459,"ts":326458590588,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6135,"tdur":6104,"tts":6075293},
-{"pid":27443,"tid":27459,"ts":326458590619,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6075293},
-{"pid":27443,"tid":27459,"ts":326458590802,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6075476},
-{"pid":27443,"tid":27459,"ts":326458590832,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":0,"tts":6075537},
-{"pid":27443,"tid":27459,"ts":326458596692,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6081367},
-{"pid":27443,"tid":27459,"ts":326458596753,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2747,"tdur":2686,"tts":6081428},
-{"pid":27443,"tid":27459,"ts":326458596784,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6081458},
-{"pid":27443,"tid":27459,"ts":326458596814,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6081489},
-{"pid":27443,"tid":27477,"ts":326458582348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":346131},
-{"pid":27443,"tid":27477,"ts":326458582378,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346162},
-{"pid":27443,"tid":27477,"ts":326458582409,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346192},
-{"pid":27443,"tid":27477,"ts":326458582409,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":346192},
-{"pid":27443,"tid":27477,"ts":326458582439,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346223},
-{"pid":27443,"tid":27477,"ts":326458582439,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":346223},
-{"pid":27443,"tid":27477,"ts":326458582470,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":346253},
-{"pid":27443,"tid":27477,"ts":326458582500,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346284},
-{"pid":27443,"tid":27477,"ts":326458582500,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":346284},
-{"pid":27443,"tid":27477,"ts":326458582531,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346314},
-{"pid":27443,"tid":27477,"ts":326458582531,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":346345},
-{"pid":27443,"tid":27477,"ts":326458582561,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346345},
-{"pid":27443,"tid":27477,"ts":326458582592,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346375},
-{"pid":27443,"tid":27477,"ts":326458582592,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":346375},
-{"pid":27443,"tid":27477,"ts":326458582622,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346406},
-{"pid":27443,"tid":27477,"ts":326458582622,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":346406},
-{"pid":27443,"tid":27477,"ts":326458582653,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346436},
-{"pid":27443,"tid":27477,"ts":326458582683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346467},
-{"pid":27443,"tid":27477,"ts":326458582683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":346467},
-{"pid":27443,"tid":27477,"ts":326458582714,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":346497},
-{"pid":27443,"tid":27477,"ts":326458582744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346528},
-{"pid":27443,"tid":27477,"ts":326458582744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":346558},
-{"pid":27443,"tid":27477,"ts":326458582775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":346558},
-{"pid":27443,"tid":27477,"ts":326458582806,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346589},
-{"pid":27443,"tid":27477,"ts":326458582867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":346650},
-{"pid":27443,"tid":27477,"ts":326458582897,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346680},
-{"pid":27443,"tid":27477,"ts":326458582928,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346711},
-{"pid":27443,"tid":27477,"ts":326458582928,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":346711},
-{"pid":27443,"tid":27477,"ts":326458582958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346741},
-{"pid":27443,"tid":27477,"ts":326458582958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":346741},
-{"pid":27443,"tid":27477,"ts":326458582989,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":346772},
-{"pid":27443,"tid":27477,"ts":326458583019,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":346802},
-{"pid":27443,"tid":27477,"ts":326458583050,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":346833},
-{"pid":27443,"tid":27477,"ts":326458583080,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":346864},
-{"pid":27443,"tid":27477,"ts":326458583080,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":346864},
-{"pid":27443,"tid":27477,"ts":326458583141,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":346925},
-{"pid":27443,"tid":27477,"ts":326458583141,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346925,"id":"0xaf88a8daf182217a"},
-{"pid":27443,"tid":27477,"ts":326458583172,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":346955,"id":"0xaf88a8d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458583172,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":122,"tts":346986},
-{"pid":27443,"tid":27477,"ts":326458583202,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":91,"tts":346986},
-{"pid":27443,"tid":27477,"ts":326458583202,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":346986},
-{"pid":27443,"tid":27477,"ts":326458583202,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":346986},
-{"pid":27443,"tid":27477,"ts":326458583233,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":31,"tts":347016},
-{"pid":27443,"tid":27477,"ts":326458583233,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":347016},
-{"pid":27443,"tid":27477,"ts":326458583294,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":347077},
-{"pid":27443,"tid":27477,"ts":326458583294,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":347077},
-{"pid":27443,"tid":27477,"ts":326458583324,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":347108,"id":"0xaf88a8daf182217a"},
-{"pid":27443,"tid":27477,"ts":326458583324,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3693,"tdur":1831,"tts":347108},
-{"pid":27443,"tid":27477,"ts":326458583324,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3693,"tdur":1831,"tts":347108},
-{"pid":27443,"tid":27477,"ts":326458583355,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":347138},
-{"pid":27443,"tid":27477,"ts":326458583355,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3632,"tdur":1770,"tts":347138},
-{"pid":27443,"tid":27477,"ts":326458583385,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":78},"dur":2289,"tdur":793,"tts":347169},
-{"pid":27443,"tid":27477,"ts":326458583416,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":78},"dur":214,"tdur":214,"tts":347199},
-{"pid":27443,"tid":27477,"ts":326458583630,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":78},"dur":30,"tdur":30,"tts":347413},
-{"pid":27443,"tid":27477,"ts":326458583660,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":78},"tts":347443},
-{"pid":27443,"tid":27477,"ts":326458583782,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":347596},
-{"pid":27443,"tid":27477,"ts":326458583813,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":347596},
-{"pid":27443,"tid":27477,"ts":326458583813,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":347596},
-{"pid":27443,"tid":27477,"ts":326458583813,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":347596},
-{"pid":27443,"tid":27477,"ts":326458583843,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":347627,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458583904,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":347688},
-{"pid":27443,"tid":27477,"ts":326458585674,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":347962},
-{"pid":27443,"tid":27477,"ts":326458585674,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":886,"tdur":550,"tts":347962},
-{"pid":27443,"tid":27477,"ts":326458585705,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":347993},
-{"pid":27443,"tid":27466,"ts":326458585247,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":243644},
-{"pid":27443,"tid":27466,"ts":326458585308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":243705,"id":"0xaf88a8dbf182217a"},
-{"pid":27443,"tid":27466,"ts":326458585552,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":61,"tdur":61,"tts":243766},
-{"pid":27443,"tid":27466,"ts":326458585552,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":243766},
-{"pid":27443,"tid":27466,"ts":326458585583,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":243796,"id":"0xba446c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458585583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":243827,"id":"0xaf88a8d4f182217a"},
-{"pid":27443,"tid":27466,"ts":326458586132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":243918,"id":"0xaf88ad9af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458586132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":243918},
-{"pid":27443,"tid":27466,"ts":326458586163,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":243949,"id":"0xccc3d802"},
-{"pid":27443,"tid":27466,"ts":326458586193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":243979,"id":"0xaf88ad9bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458586224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":244010},
-{"pid":27443,"tid":27466,"ts":326458586224,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244010,"id":"0xccc3d906"},
-{"pid":27443,"tid":27466,"ts":326458586437,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":244071},
-{"pid":27443,"tid":27466,"ts":326458586468,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":244101},
-{"pid":27443,"tid":27466,"ts":326458586468,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244101,"id":"0xc4c11e0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458587384,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":244223,"id":"0xaf88ad94f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458587414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":244223},
-{"pid":27443,"tid":27466,"ts":326458587414,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244223,"id":"0xccc3da02"},
-{"pid":27443,"tid":27466,"ts":326458588635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":244346,"id":"0xaf88ad95f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458588665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":244346},
-{"pid":27443,"tid":27466,"ts":326458588665,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244346,"id":"0xccc3dc02"},
-{"pid":27443,"tid":27466,"ts":326458589703,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":244437},
-{"pid":27443,"tid":27466,"ts":326458589734,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":244468},
-{"pid":27443,"tid":27466,"ts":326458589764,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244498,"id":"0xba446f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458589795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":244529,"id":"0xaf88a8d7f182217a"},
-{"pid":27443,"tid":27466,"ts":326458602003,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":244590},
-{"pid":27443,"tid":27466,"ts":326458602064,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":61,"tts":244651},
-{"pid":27443,"tid":27466,"ts":326458602064,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244651,"id":"0xba447102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458602094,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":244681},
-{"pid":27443,"tid":27466,"ts":326458602125,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":244712,"id":"0xaf88a8d1f182217a"},
-{"pid":27443,"tid":27466,"ts":326458602735,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":244803},
-{"pid":27443,"tid":27466,"ts":326458602766,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":244834},
-{"pid":27443,"tid":27466,"ts":326458602766,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":244834,"id":"0xba447202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458602796,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":244864,"id":"0xaf88a8ecf182217a"},
-{"pid":27443,"tid":27466,"ts":326458604139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":245048,"id":"0xaf88ad96f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458604170,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":245078},
-{"pid":27443,"tid":27466,"ts":326458604170,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245078,"id":"0xccc3de02"},
-{"pid":27443,"tid":27466,"ts":326458609419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":245231,"id":"0xaf88ad97f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458609419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":245231},
-{"pid":27443,"tid":27466,"ts":326458609419,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245231,"id":"0xccc3df02"},
-{"pid":27443,"tid":27466,"ts":326458609480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":245292,"id":"0xaf88ad90f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458609511,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":245322},
-{"pid":27443,"tid":27466,"ts":326458609511,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245322,"id":"0xccc3e006"},
-{"pid":27443,"tid":27466,"ts":326458609725,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":245383},
-{"pid":27443,"tid":27466,"ts":326458609755,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":245414},
-{"pid":27443,"tid":27466,"ts":326458609755,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245414,"id":"0xc4c1230a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458610640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":245536,"id":"0xaf88ad91f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458610671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":245536},
-{"pid":27443,"tid":27466,"ts":326458610671,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245536,"id":"0xccc3e102"},
-{"pid":27443,"tid":27466,"ts":326458612807,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":245627},
-{"pid":27443,"tid":27466,"ts":326458612838,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":92,"tts":245658},
-{"pid":27443,"tid":27466,"ts":326458612868,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245688,"id":"0xba447302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458612899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":245719,"id":"0xaf88a8e0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458619552,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":245811},
-{"pid":27443,"tid":27466,"ts":326458619583,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":245841},
-{"pid":27443,"tid":27466,"ts":326458619613,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":245872,"id":"0xba447502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458619644,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":245902},
-{"pid":27443,"tid":27466,"ts":326458619674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":245933,"id":"0xaf88a8e2f182217a"},
-{"pid":27443,"tid":27466,"ts":326458620193,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":246055},
-{"pid":27443,"tid":27466,"ts":326458620224,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":246055},
-{"pid":27443,"tid":27466,"ts":326458620254,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246085,"id":"0xba447602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458620285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":246116,"id":"0xaf88a8e3f182217a"},
-{"pid":27443,"tid":27466,"ts":326458622574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":246207,"id":"0xaf88ad92f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458622604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":246238},
-{"pid":27443,"tid":27477,"ts":326458585705,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":824,"tdur":488,"tts":347993},
-{"pid":27443,"tid":27477,"ts":326458586010,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12394},"dur":92,"tdur":61,"tts":348329},
-{"pid":27443,"tid":27477,"ts":326458586071,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348359,"id":"0xaf88ad9af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458586132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348420,"id":"0xaf88ad9bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458586560,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":348512,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458586621,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":348573,"id":"0x30000002d"},
-{"pid":27443,"tid":27477,"ts":326458586621,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":348573,"id":"0x30000002e"},
-{"pid":27443,"tid":27477,"ts":326458586621,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":244,"tts":348573},
-{"pid":27443,"tid":27477,"ts":326458586834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348786,"id":"0xaf88ad94f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458586926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348847,"id":"0xaf88ab88f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458586956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348878,"id":"0xaf88a95cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458587048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458583},"tts":348969,"id":"0xaf88a8c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458587048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":348969},
-{"pid":27443,"tid":27477,"ts":326458587078,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349000,"id":"0xaf88a8dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458587078,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":1679,"tdur":153,"tts":349000},
-{"pid":27443,"tid":27477,"ts":326458587078,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":1679,"tdur":122,"tts":349000},
-{"pid":27443,"tid":27477,"ts":326458587109,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":349030,"id":"0x30000002f"},
-{"pid":27443,"tid":27477,"ts":326458587139,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":349061},
-{"pid":27443,"tid":27477,"ts":326458587139,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":349061,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458587170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":349092,"id":"0xaf88ab89f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458588788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349183,"id":"0xaf88a8d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458588788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":122,"tts":349183},
-{"pid":27443,"tid":27477,"ts":326458588818,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458580472.0,"frame_time_us":326458583747.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":349214},
-{"pid":27443,"tid":27477,"ts":326458588818,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458580472.0,"frame_time_us":326458583747.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":61,"tts":349244},
-{"pid":27443,"tid":27477,"ts":326458588879,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458600413},"dur":31,"tdur":30,"tts":349275},
-{"pid":27443,"tid":27477,"ts":326458588910,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349305,"id":"0xaf88a8d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458588940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349336,"id":"0xaf88a8d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458588940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":349336},
-{"pid":27443,"tid":27477,"ts":326458588940,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":30,"tts":349336},
-{"pid":27443,"tid":27477,"ts":326458589825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349427,"id":"0xaf88a8d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458589856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":213,"tts":349458},
-{"pid":27443,"tid":27477,"ts":326458589886,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":183,"tdur":183,"tts":349488},
-{"pid":27443,"tid":27477,"ts":326458589886,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":79},"tts":349488},
-{"pid":27443,"tid":27477,"ts":326458589947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":349549,"id":"0xaf88ab8bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458589978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349580,"id":"0xaf88a958f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458590039,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":349641},
-{"pid":27443,"tid":27477,"ts":326458590039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":349641,"id":"0xaf88ab84f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458599989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349732,"id":"0xaf88a8d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458599989,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2319,"tdur":2137,"tts":349732},
-{"pid":27443,"tid":27477,"ts":326458599989,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":31,"tts":349732},
-{"pid":27443,"tid":27477,"ts":326458600202,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2076,"tdur":2045,"tts":349793},
-{"pid":27443,"tid":27477,"ts":326458600233,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":349793},
-{"pid":27443,"tid":27477,"ts":326458600263,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2015,"tdur":2014,"tts":349824},
-{"pid":27443,"tid":27477,"ts":326458600263,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2015,"tdur":2014,"tts":349824},
-{"pid":27443,"tid":27477,"ts":326458600263,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":30,"tts":349855},
-{"pid":27443,"tid":27477,"ts":326458600294,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":349855},
-{"pid":27443,"tid":27477,"ts":326458600324,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":349885,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458600324,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":349885},
-{"pid":27443,"tid":27477,"ts":326458600355,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":549,"tdur":519,"tts":349946},
-{"pid":27443,"tid":27477,"ts":326458600965,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1282,"tdur":1282,"tts":350526},
-{"pid":27443,"tid":27477,"ts":326458600996,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":79},"dur":366,"tdur":335,"tts":350557},
-{"pid":27443,"tid":27477,"ts":326458601362,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":79},"dur":30,"tdur":30,"tts":350923},
-{"pid":27443,"tid":27477,"ts":326458601423,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":79},"tts":350984},
-{"pid":27443,"tid":27477,"ts":326458601637,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":351197},
-{"pid":27443,"tid":27477,"ts":326458601667,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":580,"tdur":580,"tts":351228},
-{"pid":27443,"tid":27477,"ts":326458601667,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":214,"tts":351228},
-{"pid":27443,"tid":27477,"ts":326458601881,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":351442},
-{"pid":27443,"tid":27477,"ts":326458601911,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":351472},
-{"pid":27443,"tid":27477,"ts":326458601942,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":4},"dur":244,"tdur":244,"tts":351503},
-{"pid":27443,"tid":27477,"ts":326458602003,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":152,"tts":351564},
-{"pid":27443,"tid":27477,"ts":326458602003,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":351564,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458602033,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":351594},
-{"pid":27443,"tid":27477,"ts":326458602064,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":7,"num_edges":4},"dur":61,"tdur":61,"tts":351625},
-{"pid":27443,"tid":27477,"ts":326458602155,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":351716,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326458596845,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6081519},
-{"pid":27443,"tid":27459,"ts":326458597364,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6082038},
-{"pid":27443,"tid":27459,"ts":326458597364,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6082069},
-{"pid":27443,"tid":27459,"ts":326458597394,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2106,"tdur":2045,"tts":6082069},
-{"pid":27443,"tid":27459,"ts":326458597425,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1923,"tdur":1862,"tts":6082099},
-{"pid":27443,"tid":27459,"ts":326458597425,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":427,"tdur":367,"tts":6082099},
-{"pid":27443,"tid":27459,"ts":326458597425,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6082099},
-{"pid":27443,"tid":27459,"ts":326458597852,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6082466},
-{"pid":27443,"tid":27459,"ts":326458598035,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6082649},
-{"pid":27443,"tid":27459,"ts":326458598127,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":6082740},
-{"pid":27443,"tid":27459,"ts":326458598157,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":6082771},
-{"pid":27443,"tid":27459,"ts":326458599348,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":6083961},
-{"pid":27443,"tid":27459,"ts":326458599378,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6083992},
-{"pid":27443,"tid":27459,"ts":326458599500,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":79},"dur":397,"tdur":396,"tts":6084114},
-{"pid":27443,"tid":27459,"ts":326458599531,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":366,"tdur":366,"tts":6084144},
-{"pid":27443,"tid":27459,"ts":326458599775,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":79},"dur":30,"tdur":31,"tts":6084388},
-{"pid":27443,"tid":27459,"ts":326458599805,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":79},"dur":31,"tdur":30,"tts":6084419},
-{"pid":27443,"tid":27459,"ts":326458599836,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":79},"dur":0,"tdur":0,"tts":6084449},
-{"pid":27443,"tid":27459,"ts":326458599836,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":79},"dur":30,"tdur":31,"tts":6084449},
-{"pid":27443,"tid":27459,"ts":326458599866,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":79},"dur":0,"tdur":0,"tts":6084480},
-{"pid":27443,"tid":27459,"ts":326458599897,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6084510,"id":"0x30000002f"},
-{"pid":27443,"tid":27459,"ts":326458599897,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1099,"tdur":123,"tts":6084510},
-{"pid":27443,"tid":27459,"ts":326458599927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6084541,"id":"0xaf88a8d0f182217a"},
-{"pid":27443,"tid":27459,"ts":326458601026,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6084663},
-{"pid":27443,"tid":27459,"ts":326458601118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6084755,"id":"0xaf88a959f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458601118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6084755},
-{"pid":27443,"tid":27459,"ts":326458601148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6084785,"id":"0xaf88a95af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458601179,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6084816,"id":"0xaf88ab84f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458601179,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6084816},
-{"pid":27443,"tid":27459,"ts":326458601179,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6084816},
-{"pid":27443,"tid":27459,"ts":326458601240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6084877,"id":"0xaf88a95af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458601240,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":6084907},
-{"pid":27443,"tid":27459,"ts":326458602857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6084968,"id":"0xaf88a95bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458602888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1709,"tdur":1221,"tts":6084999},
-{"pid":27443,"tid":27459,"ts":326458602888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6084999,"id":"0xaf88a954f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458602918,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6085029,"id":"0xaf88ab85f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458602918,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1649,"tdur":1160,"tts":6085029},
-{"pid":27443,"tid":27459,"ts":326458603010,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1557,"tdur":1068,"tts":6085121},
-{"pid":27443,"tid":27459,"ts":326458603010,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6085121,"id":"0x300000030"},
-{"pid":27443,"tid":27459,"ts":326458603041,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":6085151},
-{"pid":27443,"tid":27459,"ts":326458603071,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":824,"tts":6085212},
-{"pid":27443,"tid":27459,"ts":326458603163,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6085273},
-{"pid":27443,"tid":27459,"ts":326458603193,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6085304},
-{"pid":27443,"tid":27459,"ts":326458603224,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6085334},
-{"pid":27443,"tid":27459,"ts":326458603254,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6085365},
-{"pid":27443,"tid":27459,"ts":326458603285,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":610,"tts":6085426},
-{"pid":27443,"tid":27459,"ts":326458603468,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":6085579},
-{"pid":27443,"tid":27459,"ts":326458603468,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6085609},
-{"pid":27443,"tid":27459,"ts":326458603773,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":33,"frame":"0x78c60000"}},"tts":6085914,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458603804,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":6085914},
-{"pid":27443,"tid":27459,"ts":326458603834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6085945,"id":"0xaf88a8edf182217a"},
-{"pid":27443,"tid":27459,"ts":326458603865,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6085975},
-{"pid":27443,"tid":27459,"ts":326458603956,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":580,"tdur":92,"tts":6086067},
-{"pid":27443,"tid":27459,"ts":326458603987,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6086097,"id":"0xaf88ad96f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458604628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6086250,"id":"0xaf88a954f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458604628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":6086250},
-{"pid":27443,"tid":27459,"ts":326458606520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6086372,"id":"0xaf88a955f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458606550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13979,"tdur":10530,"tts":6086372},
-{"pid":27443,"tid":27459,"ts":326458606581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6086403,"id":"0xaf88a956f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458606611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6086433,"id":"0xaf88ab86f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458606611,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13887,"tdur":10438,"tts":6086433},
-{"pid":27443,"tid":27459,"ts":326458606611,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":80},"tts":6086433},
-{"pid":27443,"tid":27459,"ts":326458606642,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6086464},
-{"pid":27443,"tid":27459,"ts":326458606734,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7935,"tdur":6928,"tts":6086525},
-{"pid":27443,"tid":27477,"ts":326458602186,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":351747,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458602216,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":351808,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458602308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458600},"tts":351869,"id":"0xaf88a8d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458602308,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":31,"tts":351899},
-{"pid":27443,"tid":27477,"ts":326458602339,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":351899},
-{"pid":27443,"tid":27477,"ts":326458602369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":351930,"id":"0xaf88a8d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458602400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":184,"tts":351960},
-{"pid":27443,"tid":27477,"ts":326458602400,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":184,"tts":351960},
-{"pid":27443,"tid":27477,"ts":326458602430,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":351991,"id":"0x300000030"},
-{"pid":27443,"tid":27477,"ts":326458602461,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":352021},
-{"pid":27443,"tid":27477,"ts":326458602461,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":352021,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458602491,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":352083,"id":"0xaf88ab85f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458602522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":352083,"id":"0xaf88a95bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458604170,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":352205,"id":"0xaf88a8d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458604200,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":352235},
-{"pid":27443,"tid":27477,"ts":326458604200,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":352235},
-{"pid":27443,"tid":27477,"ts":326458604231,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":352266,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458604261,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":352296},
-{"pid":27443,"tid":27477,"ts":326458604261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":352296,"id":"0xaf88a8eef182217a"},
-{"pid":27443,"tid":27477,"ts":326458604292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":352327,"id":"0xaf88a8d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458604322,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":352357},
-{"pid":27443,"tid":27477,"ts":326458604322,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":352357},
-{"pid":27443,"tid":27477,"ts":326458604353,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":352388,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458604353,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":352388},
-{"pid":27443,"tid":27477,"ts":326458604383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":352418,"id":"0xaf88a8eff182217a"},
-{"pid":27443,"tid":27477,"ts":326458604414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":352449,"id":"0xaf88a8ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326458604414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":352449},
-{"pid":27443,"tid":27477,"ts":326458604444,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458597148.0,"frame_time_us":326458600423.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":123,"tdur":122,"tts":352479},
-{"pid":27443,"tid":27477,"ts":326458604475,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458597148.0,"frame_time_us":326458600423.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":91,"tts":352510},
-{"pid":27443,"tid":27477,"ts":326458604536,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458617089},"dur":31,"tdur":30,"tts":352571},
-{"pid":27443,"tid":27477,"ts":326458604536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":352571,"id":"0xaf88a8e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458604597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":352632,"id":"0xaf88a8edf182217a"},
-{"pid":27443,"tid":27477,"ts":326458604597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":352632},
-{"pid":27443,"tid":27477,"ts":326458604628,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":352662},
-{"pid":27443,"tid":27477,"ts":326458604628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":352693,"id":"0xaf88a8eef182217a"},
-{"pid":27443,"tid":27477,"ts":326458604658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1923,"tdur":1923,"tts":352693},
-{"pid":27443,"tid":27477,"ts":326458604658,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1923,"tdur":1923,"tts":352693},
-{"pid":27443,"tid":27477,"ts":326458604689,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":213,"tdur":214,"tts":352723},
-{"pid":27443,"tid":27477,"ts":326458604689,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":352723},
-{"pid":27443,"tid":27477,"ts":326458604719,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":352754},
-{"pid":27443,"tid":27477,"ts":326458604719,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":352754},
-{"pid":27443,"tid":27477,"ts":326458604780,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":352815},
-{"pid":27443,"tid":27477,"ts":326458604811,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":352846},
-{"pid":27443,"tid":27477,"ts":326458604841,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":352876},
-{"pid":27443,"tid":27477,"ts":326458604872,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":352907},
-{"pid":27443,"tid":27477,"ts":326458604902,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":153,"tts":352937},
-{"pid":27443,"tid":27477,"ts":326458604902,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":352937},
-{"pid":27443,"tid":27477,"ts":326458605055,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1495,"tdur":1495,"tts":353090},
-{"pid":27443,"tid":27477,"ts":326458605085,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1465,"tdur":1465,"tts":353120},
-{"pid":27443,"tid":27477,"ts":326458605085,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1252,"tdur":1252,"tts":353120},
-{"pid":27443,"tid":27477,"ts":326458605116,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":353151,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458605207,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":353242},
-{"pid":27443,"tid":27477,"ts":326458605238,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":353273},
-{"pid":27443,"tid":27477,"ts":326458605299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353334},
-{"pid":27443,"tid":27477,"ts":326458605299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":353334},
-{"pid":27443,"tid":27477,"ts":326458605330,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":353364},
-{"pid":27443,"tid":27477,"ts":326458605360,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":353395},
-{"pid":27443,"tid":27477,"ts":326458605391,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":353425},
-{"pid":27443,"tid":27477,"ts":326458605421,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353456},
-{"pid":27443,"tid":27477,"ts":326458605452,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353486},
-{"pid":27443,"tid":27477,"ts":326458605482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353517},
-{"pid":27443,"tid":27477,"ts":326458605513,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353547},
-{"pid":27443,"tid":27477,"ts":326458605543,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353578},
-{"pid":27443,"tid":27477,"ts":326458605574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353609},
-{"pid":27443,"tid":27469,"ts":326458602766,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1038,"tdur":1038,"tts":282038},
-{"pid":27443,"tid":27469,"ts":326458602827,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":77,"tileId":{"id_ref":"0x7bd7e3c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":282099},
-{"pid":27443,"tid":27469,"ts":326458602827,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":282099},
-{"pid":27443,"tid":27471,"ts":326458602888,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":343995},
-{"pid":27443,"tid":27469,"ts":326458602918,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":282191},
-{"pid":27443,"tid":27471,"ts":326458602918,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":916,"tts":344025},
-{"pid":27443,"tid":27469,"ts":326458602918,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":77,"tileId":{"id_ref":"0x7bd7e3c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":282221},
-{"pid":27443,"tid":27471,"ts":326458602949,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":92,"sourceFrameNumber":77,"tileId":{"id_ref":"0x799ebfb8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":344056},
-{"pid":27443,"tid":27471,"ts":326458602949,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":344056},
-{"pid":27443,"tid":27469,"ts":326458602979,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":282252,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458603010,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":344117},
-{"pid":27443,"tid":27471,"ts":326458603041,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":92,"sourceFrameNumber":77,"tileId":{"id_ref":"0x799ebfb8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":344147},
-{"pid":27443,"tid":27471,"ts":326458603071,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":344178,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458603773,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":283076},
-{"pid":27443,"tid":27471,"ts":326458603804,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":344941},
-{"pid":27443,"tid":27469,"ts":326458603834,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2442,"tdur":1099,"tts":283106},
-{"pid":27443,"tid":27469,"ts":326458603834,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":2442,"tdur":1099,"tts":283106},
-{"pid":27443,"tid":27471,"ts":326458603834,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1618,"tdur":1098,"tts":344941},
-{"pid":27443,"tid":27471,"ts":326458603865,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1587,"tdur":1068,"tts":344971},
-{"pid":27443,"tid":27469,"ts":326458603865,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":77,"tileId":{"id_ref":"0x7bde0f58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":283137},
-{"pid":27443,"tid":27469,"ts":326458603865,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":283137},
-{"pid":27443,"tid":27471,"ts":326458603865,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":92,"sourceFrameNumber":77,"tileId":{"id_ref":"0x7bd81ee0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":344971},
-{"pid":27443,"tid":27471,"ts":326458603895,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":345002},
-{"pid":27443,"tid":27471,"ts":326458603926,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":345032},
-{"pid":27443,"tid":27469,"ts":326458603926,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":283198},
-{"pid":27443,"tid":27471,"ts":326458603956,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":92,"sourceFrameNumber":77,"tileId":{"id_ref":"0x7bd81ee0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":345063},
-{"pid":27443,"tid":27469,"ts":326458603987,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":77,"tileId":{"id_ref":"0x7bde0f58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":283259},
-{"pid":27443,"tid":27471,"ts":326458603987,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":345093,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326458604017,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":283290,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326458605421,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":346009},
-{"pid":27443,"tid":27469,"ts":326458606276,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":284205},
-{"pid":27443,"tid":27469,"ts":326458606306,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":284236},
-{"pid":27443,"tid":27469,"ts":326458606337,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":284266},
-{"pid":27443,"tid":27469,"ts":326458606337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284266,"id":"0xaf88a8e9f182217a"},
-{"pid":27443,"tid":27471,"ts":326458610762,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":346101},
-{"pid":27443,"tid":27471,"ts":326458610793,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":346131},
-{"pid":27443,"tid":27471,"ts":326458610823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346131,"id":"0xaf88a8ebf182217a"},
-{"pid":27443,"tid":27471,"ts":326458610854,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":346162},
-{"pid":27443,"tid":27471,"ts":326458610884,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":346192},
-{"pid":27443,"tid":27471,"ts":326458610884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346192,"id":"0xaf88a8e4f182217a"},
-{"pid":27443,"tid":27471,"ts":326458610884,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":346192},
-{"pid":27443,"tid":27471,"ts":326458610915,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":346223},
-{"pid":27443,"tid":27471,"ts":326458610915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346223,"id":"0xaf88a8e5f182217a"},
-{"pid":27443,"tid":27471,"ts":326458621170,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":346284},
-{"pid":27443,"tid":27471,"ts":326458621200,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":346314},
-{"pid":27443,"tid":27471,"ts":326458621200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346314,"id":"0xaf88a8fcf182217a"},
-{"pid":27443,"tid":27469,"ts":326458621200,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":284327},
-{"pid":27443,"tid":27469,"ts":326458621231,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":284327},
-{"pid":27443,"tid":27471,"ts":326458621261,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":346375},
-{"pid":27443,"tid":27469,"ts":326458621261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284358,"id":"0xaf88a8fdf182217a"},
-{"pid":27443,"tid":27471,"ts":326458621261,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":346375},
-{"pid":27443,"tid":27471,"ts":326458621261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346375,"id":"0xaf88a8fef182217a"},
-{"pid":27443,"tid":27469,"ts":326458651293,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":91,"tts":284419},
-{"pid":27443,"tid":27469,"ts":326458651324,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":284449},
-{"pid":27443,"tid":27469,"ts":326458651354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284480,"id":"0xaf88a8f0f182217a"},
-{"pid":27443,"tid":27469,"ts":326458651415,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":284541},
-{"pid":27443,"tid":27469,"ts":326458651415,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":284541},
-{"pid":27443,"tid":27469,"ts":326458651446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284571,"id":"0xaf88a8f1f182217a"},
-{"pid":27443,"tid":27469,"ts":326458651476,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":284602},
-{"pid":27443,"tid":27469,"ts":326458651476,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":284602},
-{"pid":27443,"tid":27469,"ts":326458651476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284633,"id":"0xaf88a8f2f182217a"},
-{"pid":27443,"tid":27469,"ts":326458663227,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":284663},
-{"pid":27443,"tid":27469,"ts":326458663257,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":284694},
-{"pid":27443,"tid":27469,"ts":326458663257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284694,"id":"0xaf88a888f182217a"},
-{"pid":27443,"tid":27477,"ts":326458605574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":353609},
-{"pid":27443,"tid":27477,"ts":326458605635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353670},
-{"pid":27443,"tid":27477,"ts":326458605635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":353670},
-{"pid":27443,"tid":27477,"ts":326458605665,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":353700},
-{"pid":27443,"tid":27477,"ts":326458605696,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":353731},
-{"pid":27443,"tid":27477,"ts":326458605726,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":353761},
-{"pid":27443,"tid":27477,"ts":326458605757,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353792},
-{"pid":27443,"tid":27477,"ts":326458605787,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353822},
-{"pid":27443,"tid":27477,"ts":326458605787,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":353822},
-{"pid":27443,"tid":27477,"ts":326458605818,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":353853},
-{"pid":27443,"tid":27477,"ts":326458605848,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":353883},
-{"pid":27443,"tid":27477,"ts":326458605879,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":353914},
-{"pid":27443,"tid":27477,"ts":326458605909,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":353944},
-{"pid":27443,"tid":27477,"ts":326458606032,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":354066},
-{"pid":27443,"tid":27477,"ts":326458606062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":354097},
-{"pid":27443,"tid":27477,"ts":326458606093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":354127},
-{"pid":27443,"tid":27477,"ts":326458606123,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":354158},
-{"pid":27443,"tid":27477,"ts":326458606123,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":354158},
-{"pid":27443,"tid":27477,"ts":326458606154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":354188},
-{"pid":27443,"tid":27477,"ts":326458606184,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":354219},
-{"pid":27443,"tid":27477,"ts":326458606245,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":354280},
-{"pid":27443,"tid":27477,"ts":326458606276,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":354311},
-{"pid":27443,"tid":27477,"ts":326458606306,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":354341},
-{"pid":27443,"tid":27477,"ts":326458606337,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":354372},
-{"pid":27443,"tid":27477,"ts":326458606367,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":80},"tts":354402},
-{"pid":27443,"tid":27477,"ts":326458606428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":354463,"id":"0xaf88ab86f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458606459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354494,"id":"0xaf88a955f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458606489,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":354555},
-{"pid":27443,"tid":27477,"ts":326458606520,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":354555},
-{"pid":27443,"tid":27477,"ts":326458606550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354585,"id":"0xaf88a8eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458606581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":354616,"id":"0xaf88a8eff182217a"},
-{"pid":27443,"tid":27477,"ts":326458606611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":397,"tdur":397,"tts":354646},
-{"pid":27443,"tid":27477,"ts":326458606611,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":367,"tdur":366,"tts":354646},
-{"pid":27443,"tid":27477,"ts":326458606611,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":245,"tdur":244,"tts":354646},
-{"pid":27443,"tid":27477,"ts":326458606642,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":354677},
-{"pid":27443,"tid":27477,"ts":326458606642,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":92,"tdur":91,"tts":354677},
-{"pid":27443,"tid":27477,"ts":326458606703,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":354738},
-{"pid":27443,"tid":27477,"ts":326458606764,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":354799},
-{"pid":27443,"tid":27477,"ts":326458606795,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":354829},
-{"pid":27443,"tid":27477,"ts":326458606795,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":354829},{"pid":27443,"tid":27477,"ts":326458606856,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":354890},
-{"pid":27443,"tid":27477,"ts":326458606856,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":61,"tts":354921},
-{"pid":27443,"tid":27477,"ts":326458606886,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":354921},
-{"pid":27443,"tid":27477,"ts":326458606947,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":354982},
-{"pid":27443,"tid":27477,"ts":326458606978,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":355012},
-{"pid":27443,"tid":27477,"ts":326458607008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":355043,"id":"0xaf88a8e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458607008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":355043},
-{"pid":27443,"tid":27477,"ts":326458607039,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":355074},
-{"pid":27443,"tid":27477,"ts":326458607039,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":355074,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458607039,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":355104},
-{"pid":27443,"tid":27477,"ts":326458607069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":355104,"id":"0xaf88a8eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458607100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3479,"tdur":2075,"tts":355135},
-{"pid":27443,"tid":27477,"ts":326458607100,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3449,"tdur":2044,"tts":355135},
-{"pid":27443,"tid":27477,"ts":326458607130,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":580,"tdur":0,"tts":355165},
-{"pid":27443,"tid":27477,"ts":326458607710,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2503,"tdur":1679,"tts":355165},
-{"pid":27443,"tid":27477,"ts":326458607741,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":79},"dur":1251,"tdur":946,"tts":355196},
-{"pid":27443,"tid":27477,"ts":326458607771,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":79},"dur":580,"tdur":275,"tts":355226},
-{"pid":27443,"tid":27477,"ts":326458608351,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":79},"dur":61,"tdur":31,"tts":355531},
-{"pid":27443,"tid":27477,"ts":326458608412,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":79},"tts":355562},
-{"pid":27443,"tid":27477,"ts":326458608565,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":355714},
-{"pid":27443,"tid":27477,"ts":326458608565,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":355714},
-{"pid":27443,"tid":27477,"ts":326458608595,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":355745},
-{"pid":27443,"tid":27477,"ts":326458608595,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":355745},
-{"pid":27443,"tid":27477,"ts":326458608626,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":4}},"tts":355775,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458606764,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":6086555},
-{"pid":27443,"tid":27459,"ts":326458606825,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":33,"frame":"0x78c60000"}},"dur":7813,"tdur":6775,"tts":6086647},
-{"pid":27443,"tid":27459,"ts":326458606947,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7691,"tdur":6684,"tts":6086738},
-{"pid":27443,"tid":27459,"ts":326458606978,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6086769},
-{"pid":27443,"tid":27459,"ts":326458607374,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6087013},
-{"pid":27443,"tid":27459,"ts":326458607435,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":6087044},
-{"pid":27443,"tid":27459,"ts":326458614608,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6093392},
-{"pid":27443,"tid":27459,"ts":326458614669,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2960,"tdur":2808,"tts":6093453},
-{"pid":27443,"tid":27459,"ts":326458614699,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6093514},
-{"pid":27443,"tid":27459,"ts":326458614730,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6093514},
-{"pid":27443,"tid":27459,"ts":326458614760,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6093544},
-{"pid":27443,"tid":27459,"ts":326458615157,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6093972},
-{"pid":27443,"tid":27459,"ts":326458615188,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6093972},
-{"pid":27443,"tid":27459,"ts":326458615218,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2411,"tdur":2259,"tts":6094002},
-{"pid":27443,"tid":27459,"ts":326458615249,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1984,"tdur":1953,"tts":6094033},
-{"pid":27443,"tid":27459,"ts":326458615249,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":6094033},
-{"pid":27443,"tid":27459,"ts":326458615584,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":184,"tdur":183,"tts":6094369},
-{"pid":27443,"tid":27459,"ts":326458615768,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":6094552},
-{"pid":27443,"tid":27459,"ts":326458615890,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6094674},
-{"pid":27443,"tid":27459,"ts":326458615890,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1312,"tdur":1312,"tts":6094674},
-{"pid":27443,"tid":27459,"ts":326458617233,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6096017},
-{"pid":27443,"tid":27459,"ts":326458617294,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":335,"tdur":183,"tts":6096078},
-{"pid":27443,"tid":27459,"ts":326458617629,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":80},"dur":489,"tdur":488,"tts":6096261},
-{"pid":27443,"tid":27459,"ts":326458617660,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":458,"tts":6096291},
-{"pid":27443,"tid":27459,"ts":326458617965,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":80},"dur":31,"tdur":31,"tts":6096596},
-{"pid":27443,"tid":27459,"ts":326458617996,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":80},"dur":30,"tdur":31,"tts":6096627},
-{"pid":27443,"tid":27459,"ts":326458618026,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":80},"dur":31,"tdur":30,"tts":6096658},
-{"pid":27443,"tid":27459,"ts":326458618057,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":80},"dur":30,"tdur":31,"tts":6096688},
-{"pid":27443,"tid":27459,"ts":326458618087,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":80},"dur":31,"tdur":30,"tts":6096719},
-{"pid":27443,"tid":27459,"ts":326458618118,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6096749,"id":"0x300000030"},
-{"pid":27443,"tid":27459,"ts":326458618148,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2289,"tdur":30,"tts":6096780},
-{"pid":27443,"tid":27459,"ts":326458618148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6096780,"id":"0xaf88a8e1f182217a"},
-{"pid":27443,"tid":27459,"ts":326458620498,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6096871},
-{"pid":27443,"tid":27459,"ts":326458620559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458606},"tts":6096932,"id":"0xaf88a8bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620559,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":6096932},
-{"pid":27443,"tid":27459,"ts":326458620620,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6096993,"id":"0xaf88a956f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6096993},
-{"pid":27443,"tid":27459,"ts":326458620651,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6097024,"id":"0xaf88a950f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6097024,"id":"0xaf88abfff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458620681,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":31,"tdur":31,"tts":6097054},
-{"pid":27443,"tid":27459,"ts":326458620681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6097054,"id":"0xaf88ab81f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458620712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6097085,"id":"0xaf88a951f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6097115,"id":"0xaf88a957f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620773,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":30,"tts":6097146},
-{"pid":27443,"tid":27459,"ts":326458620773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6097146,"id":"0xaf88ab87f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458620773,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6097146},
-{"pid":27443,"tid":27459,"ts":326458620803,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6097176},
-{"pid":27443,"tid":27459,"ts":326458620834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6097207,"id":"0xaf88a950f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":6097237},
-{"pid":27443,"tid":27459,"ts":326458620864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6097237,"id":"0xaf88a952f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6097237,"id":"0xaf88ab80f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458620895,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6097268},
-{"pid":27443,"tid":27459,"ts":326458620895,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6097268},
-{"pid":27443,"tid":27459,"ts":326458620956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6097329,"id":"0xaf88a952f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458620987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6097360},
-{"pid":27443,"tid":27459,"ts":326458621444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6097421,"id":"0xaf88a953f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458621475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1099,"tts":6097451},
-{"pid":27443,"tid":27459,"ts":326458621475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6097451,"id":"0xaf88a96cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458621505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6097482,"id":"0xaf88ab82f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458621505,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1069,"tdur":1037,"tts":6097482},
-{"pid":27443,"tid":27459,"ts":326458621566,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1008,"tdur":976,"tts":6097543},
-{"pid":27443,"tid":27459,"ts":326458621566,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6097543,"id":"0x300000031"},
-{"pid":27443,"tid":27459,"ts":326458621597,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":855,"tts":6097573},
-{"pid":27443,"tid":27459,"ts":326458621627,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":824,"tdur":793,"tts":6097604},
-{"pid":27443,"tid":27477,"ts":326458608656,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":355837},
-{"pid":27443,"tid":27477,"ts":326458608961,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":356142},
-{"pid":27443,"tid":27477,"ts":326458608992,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":885,"tdur":366,"tts":356142},
-{"pid":27443,"tid":27477,"ts":326458609023,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":356172},
-{"pid":27443,"tid":27477,"ts":326458609023,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":793,"tdur":275,"tts":356172},
-{"pid":27443,"tid":27477,"ts":326458609084,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12518},"dur":274,"tdur":122,"tts":356233},
-{"pid":27443,"tid":27477,"ts":326458609297,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356294,"id":"0xaf88ad97f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458609358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356355,"id":"0xaf88ad90f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458609847,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":356477,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458609877,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":356508,"id":"0x30000002f"},
-{"pid":27443,"tid":27477,"ts":326458609908,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":245,"tts":356538},
-{"pid":27443,"tid":27477,"ts":326458610091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356722,"id":"0xaf88ad91f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458610152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":356783,"id":"0xaf88ab87f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458610182,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356813,"id":"0xaf88a957f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458610213,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":336,"tdur":335,"tts":356844},
-{"pid":27443,"tid":27477,"ts":326458610213,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":356844},
-{"pid":27443,"tid":27477,"ts":326458610243,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":356874},
-{"pid":27443,"tid":27477,"ts":326458610335,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":356966},
-{"pid":27443,"tid":27477,"ts":326458610335,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":356966},
-{"pid":27443,"tid":27477,"ts":326458610365,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":356996},
-{"pid":27443,"tid":27477,"ts":326458610365,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":356996},
-{"pid":27443,"tid":27477,"ts":326458610365,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":356996,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458610426,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":357057},
-{"pid":27443,"tid":27477,"ts":326458610426,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":357057},
-{"pid":27443,"tid":27477,"ts":326458610488,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":357118,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458610518,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":357149,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458610549,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":357179,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458610976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357271,"id":"0xaf88a8ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326458611006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":357302},
-{"pid":27443,"tid":27477,"ts":326458611006,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":357302},
-{"pid":27443,"tid":27477,"ts":326458611037,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":357332,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458611037,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":357332},
-{"pid":27443,"tid":27477,"ts":326458611037,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357332,"id":"0xaf88a8e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458611067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357363,"id":"0xaf88a8e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458611098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":357393},
-{"pid":27443,"tid":27477,"ts":326458611098,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":357393},
-{"pid":27443,"tid":27477,"ts":326458611098,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":357393,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458611128,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":0,"tts":357424},
-{"pid":27443,"tid":27477,"ts":326458611128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357424,"id":"0xaf88a8e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458611159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357454,"id":"0xaf88a8e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458611159,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":357454},
-{"pid":27443,"tid":27477,"ts":326458611159,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":357454},
-{"pid":27443,"tid":27477,"ts":326458611189,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":357485,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458611189,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":357485},
-{"pid":27443,"tid":27477,"ts":326458611220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357515,"id":"0xaf88a8e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458611220,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":357515},
-{"pid":27443,"tid":27477,"ts":326458611220,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":153,"tts":357515},
-{"pid":27443,"tid":27477,"ts":326458611220,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":357515},
-{"pid":27443,"tid":27477,"ts":326458611251,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":357546},
-{"pid":27443,"tid":27477,"ts":326458611251,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":357546},
-{"pid":27443,"tid":27477,"ts":326458611281,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":357576},
-{"pid":27443,"tid":27477,"ts":326458611342,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":357637},
-{"pid":27443,"tid":27477,"ts":326458611373,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":357668},
-{"pid":27443,"tid":27477,"ts":326458611373,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357698,"id":"0xaf88a8e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458611403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":357698},
-{"pid":27443,"tid":27477,"ts":326458611403,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":357698},
-{"pid":27443,"tid":27477,"ts":326458611403,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":357698},
-{"pid":27443,"tid":27477,"ts":326458611434,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":357729},
-{"pid":27443,"tid":27477,"ts":326458611434,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":357729},
-{"pid":27443,"tid":27477,"ts":326458611434,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":357729},
-{"pid":27443,"tid":27477,"ts":326458611495,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":357790},
-{"pid":27443,"tid":27477,"ts":326458611495,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":357790},
-{"pid":27443,"tid":27477,"ts":326458612990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357881,"id":"0xaf88a8e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458612990,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":357881},
-{"pid":27443,"tid":27477,"ts":326458613021,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":357912},
-{"pid":27443,"tid":27477,"ts":326458613051,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":357942,"id":"0xaf88ab80f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458617202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458617},"tts":358065,"id":"0xaf88a8e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458617202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":855,"tdur":30,"tts":358065},
-{"pid":27443,"tid":27477,"ts":326458617202,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":824,"tdur":0,"tts":358065},
-{"pid":27443,"tid":27477,"ts":326458619155,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358156,"id":"0xaf88a8e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458619186,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2075,"tdur":1556,"tts":358187},
-{"pid":27443,"tid":27477,"ts":326458619186,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2045,"tdur":1526,"tts":358187},
-{"pid":27443,"tid":27477,"ts":326458619186,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":358187},
-{"pid":27443,"tid":27477,"ts":326458619216,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2015,"tdur":1496,"tts":358217},
-{"pid":27443,"tid":27477,"ts":326458619216,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2015,"tdur":1465,"tts":358248},
-{"pid":27443,"tid":27477,"ts":326458619247,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":358248},
-{"pid":27443,"tid":27477,"ts":326458619247,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":358248},
-{"pid":27443,"tid":27477,"ts":326458619277,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":358278,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458619277,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":358278},
-{"pid":27443,"tid":27477,"ts":326458619308,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1038,"tdur":519,"tts":358309},
-{"pid":27443,"tid":27477,"ts":326458620407,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":824,"tdur":824,"tts":358889},
-{"pid":27443,"tid":27477,"ts":326458620407,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":80},"dur":244,"tdur":244,"tts":358889},
-{"pid":27443,"tid":27477,"ts":326458620651,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":80},"dur":61,"tdur":61,"tts":359133},
-{"pid":27443,"tid":27477,"ts":326458620712,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":80},"tts":359194},
-{"pid":27443,"tid":27477,"ts":326458620864,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":359346},
-{"pid":27443,"tid":27477,"ts":326458620864,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":359346},
-{"pid":27443,"tid":27477,"ts":326458620895,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":359377},
-{"pid":27443,"tid":27477,"ts":326458620895,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":359377},
-{"pid":27443,"tid":27477,"ts":326458621017,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":359499},
-{"pid":27443,"tid":27477,"ts":326458621048,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":359529},
-{"pid":27443,"tid":27477,"ts":326458621048,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":123,"tts":359529},
-{"pid":27443,"tid":27477,"ts":326458621048,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":123,"tts":359529},
-{"pid":27443,"tid":27477,"ts":326458621048,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":359560,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458621109,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":359591},
-{"pid":27443,"tid":27477,"ts":326458621109,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":359591},
-{"pid":27443,"tid":27477,"ts":326458621170,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":359652,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458621200,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":359682,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458621200,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":359682,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458621292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":359774,"id":"0xaf88a8e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458621292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":359774},
-{"pid":27443,"tid":27477,"ts":326458621322,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":359804},
-{"pid":27443,"tid":27477,"ts":326458621322,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":359804,"id":"0x300000031"},
-{"pid":27443,"tid":27477,"ts":326458621353,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":359835},
-{"pid":27443,"tid":27477,"ts":326458621353,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":359835,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458621383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":359865,"id":"0xaf88ab82f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458621414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":359896,"id":"0xaf88a953f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458621444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":359926,"id":"0xaf88a8e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458621475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":359957},
-{"pid":27443,"tid":27477,"ts":326458621505,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458613824.0,"frame_time_us":326458617099.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":359987},
-{"pid":27443,"tid":27477,"ts":326458621505,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458613824.0,"frame_time_us":326458617099.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":359987},
-{"pid":27443,"tid":27477,"ts":326458621566,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458633765},"dur":31,"tdur":0,"tts":360048},
-{"pid":27443,"tid":27477,"ts":326458621566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":360048,"id":"0xaf88a8fff182217a"},
-{"pid":27443,"tid":27477,"ts":326458621597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":360079,"id":"0xaf88a8fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458621597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":31,"tts":360109},
-{"pid":27443,"tid":27477,"ts":326458621627,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":31,"tts":360109},
-{"pid":27443,"tid":27477,"ts":326458621627,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":360109,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458621658,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":360140},
-{"pid":27443,"tid":27477,"ts":326458621658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":360140,"id":"0xaf88a8f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458621688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":360170,"id":"0xaf88a8fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458621688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":62,"tdur":61,"tts":360170},
-{"pid":27443,"tid":27477,"ts":326458621688,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":62,"tdur":61,"tts":360170},
-{"pid":27443,"tid":27477,"ts":326458621719,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":360201,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458621719,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":360201},
-{"pid":27443,"tid":27477,"ts":326458621719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":360201,"id":"0xaf88a8f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458621750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":360231,"id":"0xaf88a8fef182217a"},
-{"pid":27443,"tid":27477,"ts":326458621750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":360231},
-{"pid":27443,"tid":27477,"ts":326458621780,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":360262},
-{"pid":27443,"tid":27477,"ts":326458621780,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":360262,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326458621688,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6097665},
-{"pid":27443,"tid":27459,"ts":326458621719,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6097726},
-{"pid":27443,"tid":27459,"ts":326458621750,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6097756},
-{"pid":27443,"tid":27459,"ts":326458621780,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6097787},
-{"pid":27443,"tid":27459,"ts":326458621841,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":6097817},
-{"pid":27443,"tid":27459,"ts":326458621994,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":397,"tts":6097970},
-{"pid":27443,"tid":27459,"ts":326458622024,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6098000},
-{"pid":27443,"tid":27459,"ts":326458622329,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":34,"frame":"0x78c60000"}},"tts":6098306,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458622360,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":6098306},
-{"pid":27443,"tid":27459,"ts":326458622390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6098336,"id":"0xaf88a8faf182217a"},
-{"pid":27443,"tid":27459,"ts":326458622390,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6098367},
-{"pid":27443,"tid":27459,"ts":326458622482,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6098428},
-{"pid":27443,"tid":27459,"ts":326458622513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6098458,"id":"0xaf88ad92f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458622665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6098580,"id":"0xaf88a96cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458622665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6098580},
-{"pid":27443,"tid":27459,"ts":326458623550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6098641,"id":"0xaf88a96df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458623581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":39005,"tdur":35007,"tts":6098672},
-{"pid":27443,"tid":27459,"ts":326458623581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6098672,"id":"0xaf88a96ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458623611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6098702,"id":"0xaf88ab83f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458623611,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":38944,"tdur":34977,"tts":6098702},
-{"pid":27443,"tid":27459,"ts":326458623611,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":81},"tts":6098702},
-{"pid":27443,"tid":27459,"ts":326458623642,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6098733},
-{"pid":27443,"tid":27459,"ts":326458623672,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":34885,"tdur":31772,"tts":6098763},
-{"pid":27443,"tid":27459,"ts":326458623703,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6098794},
-{"pid":27443,"tid":27459,"ts":326458623733,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":34,"frame":"0x78c60000"}},"dur":34824,"tdur":31681,"tts":6098824},
-{"pid":27443,"tid":27459,"ts":326458623794,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":34733,"tdur":31619,"tts":6098886},
-{"pid":27443,"tid":27459,"ts":326458623825,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6098916},
-{"pid":27443,"tid":27459,"ts":326458624008,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6099099},
-{"pid":27443,"tid":27459,"ts":326458624039,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":6099130},
-{"pid":27443,"tid":27459,"ts":326458629135,"ph":"B","cat":"v8","name":"V8.GCScavenger","args":{},"tts":6103891},
-{"pid":27443,"tid":27459,"ts":326458629166,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":22215520},"tts":6103921},
-{"pid":27443,"tid":27459,"ts":326458655352,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":30,"tts":6127392},
-{"pid":27443,"tid":27459,"ts":326458655627,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":6127697},
-{"pid":27443,"tid":27459,"ts":326458655719,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":30,"tdur":30,"tts":6127758},
-{"pid":27443,"tid":27459,"ts":326458655810,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":6127849},
-{"pid":27443,"tid":27459,"ts":326458655902,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":30,"tdur":30,"tts":6127941},
-{"pid":27443,"tid":27459,"ts":326458656054,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":20075560},"tts":6128094},
-{"pid":27443,"tid":27459,"ts":326458656085,"ph":"E","cat":"v8","name":"V8.GCScavenger","args":{},"tts":6128124},
-{"pid":27443,"tid":27459,"ts":326458658496,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6130505},
-{"pid":27443,"tid":27459,"ts":326458658557,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2838,"tdur":2594,"tts":6130535},
-{"pid":27443,"tid":27459,"ts":326458658588,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6130596},
-{"pid":27443,"tid":27459,"ts":326458658618,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6130596},
-{"pid":27443,"tid":27459,"ts":326458658649,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6130627},
-{"pid":27443,"tid":27459,"ts":326458659320,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6131054},
-{"pid":27443,"tid":27459,"ts":326458659351,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6131085},
-{"pid":27443,"tid":27459,"ts":326458659381,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2014,"tdur":2014,"tts":6131115},
-{"pid":27443,"tid":27459,"ts":326458659412,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1831,"tts":6131146},
-{"pid":27443,"tid":27459,"ts":326458659412,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":335,"tts":6131146},
-{"pid":27443,"tid":27459,"ts":326458659747,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":184,"tdur":183,"tts":6131481},
-{"pid":27443,"tid":27459,"ts":326458659931,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":152,"tdur":122,"tts":6131664},
-{"pid":27443,"tid":27459,"ts":326458660083,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6131817},
-{"pid":27443,"tid":27459,"ts":326458660083,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":6131817},
-{"pid":27443,"tid":27459,"ts":326458661243,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6132977},
-{"pid":27443,"tid":27459,"ts":326458661273,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":6133007},
-{"pid":27443,"tid":27459,"ts":326458661395,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":81},"dur":397,"tdur":367,"tts":6133129},
-{"pid":27443,"tid":27459,"ts":326458661426,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":336,"tts":6133160},
-{"pid":27443,"tid":27459,"ts":326458661670,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":81},"dur":31,"tdur":31,"tts":6133404},
-{"pid":27443,"tid":27459,"ts":326458661701,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":81},"dur":0,"tdur":0,"tts":6133435},
-{"pid":27443,"tid":27459,"ts":326458661731,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":81},"dur":0,"tdur":0,"tts":6133465},
-{"pid":27443,"tid":27459,"ts":326458661731,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":81},"dur":31,"tdur":31,"tts":6133465},
-{"pid":27443,"tid":27459,"ts":326458661762,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":81},"dur":0,"tdur":0,"tts":6133496},
-{"pid":27443,"tid":27459,"ts":326458661792,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6133526,"id":"0x300000031"},
-{"pid":27443,"tid":27459,"ts":326458661792,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":92,"tts":6133526},
-{"pid":27443,"tid":27459,"ts":326458661823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6133557,"id":"0xaf88a88ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458621780,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":360262},
-{"pid":27443,"tid":27477,"ts":326458621811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":360293,"id":"0xaf88a8f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458621811,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1434,"tdur":1129,"tts":360293},
-{"pid":27443,"tid":27477,"ts":326458621841,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1404,"tdur":1099,"tts":360323},
-{"pid":27443,"tid":27477,"ts":326458621841,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":360323},
-{"pid":27443,"tid":27477,"ts":326458621841,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":360323},
-{"pid":27443,"tid":27477,"ts":326458621872,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":360354},
-{"pid":27443,"tid":27477,"ts":326458621872,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":360354},
-{"pid":27443,"tid":27477,"ts":326458621933,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1312,"tdur":977,"tts":360445},
-{"pid":27443,"tid":27477,"ts":326458621963,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1282,"tdur":946,"tts":360445},
-{"pid":27443,"tid":27477,"ts":326458621963,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":916,"tts":360445},
-{"pid":27443,"tid":27477,"ts":326458621963,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":360445,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458622055,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360537},
-{"pid":27443,"tid":27477,"ts":326458622055,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":360537},
-{"pid":27443,"tid":27477,"ts":326458622085,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":360567},
-{"pid":27443,"tid":27477,"ts":326458622116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360598},
-{"pid":27443,"tid":27477,"ts":326458622116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":360598},
-{"pid":27443,"tid":27477,"ts":326458622146,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360628},
-{"pid":27443,"tid":27477,"ts":326458622177,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360659},
-{"pid":27443,"tid":27477,"ts":326458622177,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":91,"tdur":30,"tts":360659},
-{"pid":27443,"tid":27477,"ts":326458622177,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":30,"tts":360659},
-{"pid":27443,"tid":27477,"ts":326458622299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360720},
-{"pid":27443,"tid":27477,"ts":326458622299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":360720},
-{"pid":27443,"tid":27477,"ts":326458622329,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360750},
-{"pid":27443,"tid":27477,"ts":326458622329,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":360750},
-{"pid":27443,"tid":27477,"ts":326458622360,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":360781},
-{"pid":27443,"tid":27477,"ts":326458622390,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360811},
-{"pid":27443,"tid":27477,"ts":326458622390,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":360811},
-{"pid":27443,"tid":27477,"ts":326458622421,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360842},
-{"pid":27443,"tid":27477,"ts":326458622451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360872},
-{"pid":27443,"tid":27477,"ts":326458622451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":360872},
-{"pid":27443,"tid":27477,"ts":326458622482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360903},
-{"pid":27443,"tid":27477,"ts":326458622482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":360903},
-{"pid":27443,"tid":27477,"ts":326458622513,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":360933},
-{"pid":27443,"tid":27477,"ts":326458622543,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360964},
-{"pid":27443,"tid":27477,"ts":326458622574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":360994},
-{"pid":27443,"tid":27477,"ts":326458622574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":360994},
-{"pid":27443,"tid":27477,"ts":326458622604,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":361025},
-{"pid":27443,"tid":27477,"ts":326458622635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":361056},
-{"pid":27443,"tid":27477,"ts":326458622940,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":361147},
-{"pid":27443,"tid":27477,"ts":326458622970,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":361147},
-{"pid":27443,"tid":27477,"ts":326458623001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":361178},
-{"pid":27443,"tid":27477,"ts":326458623031,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":361208},
-{"pid":27443,"tid":27477,"ts":326458623031,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":361208},
-{"pid":27443,"tid":27477,"ts":326458623062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":361239},
-{"pid":27443,"tid":27477,"ts":326458623062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":361239},
-{"pid":27443,"tid":27477,"ts":326458623123,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":361300},
-{"pid":27443,"tid":27477,"ts":326458623153,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":361330},
-{"pid":27443,"tid":27477,"ts":326458623153,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":361330},
-{"pid":27443,"tid":27477,"ts":326458623184,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":361361},
-{"pid":27443,"tid":27477,"ts":326458623215,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":361391},
-{"pid":27443,"tid":27477,"ts":326458623215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":361391,"id":"0xaf88a8fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458623245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":361422,"id":"0xaf88a8f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458623245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":361422},
-{"pid":27443,"tid":27477,"ts":326458623276,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":92,"tts":361452},
-{"pid":27443,"tid":27477,"ts":326458623276,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":361452},
-{"pid":27443,"tid":27477,"ts":326458623276,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":361452},
-{"pid":27443,"tid":27477,"ts":326458623306,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":30,"tts":361483},
-{"pid":27443,"tid":27477,"ts":326458623306,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":361483},
-{"pid":27443,"tid":27477,"ts":326458623367,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":361544},
-{"pid":27443,"tid":27477,"ts":326458623367,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":361544},
-{"pid":27443,"tid":27477,"ts":326458623398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":361574,"id":"0xaf88a8faf182217a"},
-{"pid":27443,"tid":27477,"ts":326458623398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":153,"tts":361574},
-{"pid":27443,"tid":27477,"ts":326458623398,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":152,"tdur":153,"tts":361574},
-{"pid":27443,"tid":27466,"ts":326458622604,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246238,"id":"0xccc3e302"},
-{"pid":27443,"tid":27466,"ts":326458624649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":246390,"id":"0xaf88ad93f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458624679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":246421},
-{"pid":27443,"tid":27466,"ts":326458624679,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246421,"id":"0xccc3e402"},
-{"pid":27443,"tid":27466,"ts":326458624741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":246482,"id":"0xaf88adacf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458624741,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":246482},
-{"pid":27443,"tid":27466,"ts":326458624741,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246482,"id":"0xccc3e506"},
-{"pid":27443,"tid":27466,"ts":326458624954,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":246543},
-{"pid":27443,"tid":27466,"ts":326458624985,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":246574},
-{"pid":27443,"tid":27466,"ts":326458624985,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246604,"id":"0xc4c1260a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458625504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":246696,"id":"0xaf88adadf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458625504,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":246696},
-{"pid":27443,"tid":27466,"ts":326458625504,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246696,"id":"0xccc3e602"},
-{"pid":27443,"tid":27466,"ts":326458627335,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":246787},
-{"pid":27443,"tid":27466,"ts":326458627365,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":246818},
-{"pid":27443,"tid":27466,"ts":326458627365,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":246818,"id":"0xba447702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458627426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":246879,"id":"0xaf88a8f4f182217a"},
-{"pid":27443,"tid":27466,"ts":326458635301,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":246970},
-{"pid":27443,"tid":27466,"ts":326458635331,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":247001},
-{"pid":27443,"tid":27466,"ts":326458635331,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":247001,"id":"0xba447902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458635392,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":247062},
-{"pid":27443,"tid":27466,"ts":326458635423,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247092,"id":"0xaf88a8f5f182217a"},
-{"pid":27443,"tid":27466,"ts":326458635850,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":247214},
-{"pid":27443,"tid":27466,"ts":326458635880,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":247245},
-{"pid":27443,"tid":27466,"ts":326458635880,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":247276,"id":"0xba447a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458635911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247276,"id":"0xaf88a8f6f182217a"},
-{"pid":27443,"tid":27466,"ts":326458654223,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":247367},
-{"pid":27443,"tid":27466,"ts":326458654284,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":247428},
-{"pid":27443,"tid":27466,"ts":326458654284,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":247428,"id":"0xba447b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458654345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247489,"id":"0xaf88a88df182217a"},
-{"pid":27443,"tid":27466,"ts":326458663868,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":247642,"id":"0xaf88adaef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458663868,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":247642},
-{"pid":27443,"tid":27466,"ts":326458663898,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":247672,"id":"0xccc3e802"},
-{"pid":27443,"tid":27466,"ts":326458664722,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":247764},
-{"pid":27443,"tid":27466,"ts":326458664722,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":247764},
-{"pid":27443,"tid":27466,"ts":326458664753,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":247794,"id":"0xba447c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458664783,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":247825},
-{"pid":27443,"tid":27466,"ts":326458664783,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":247855,"id":"0xaf88a887f182217a"},
-{"pid":27443,"tid":27466,"ts":326458666065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":247947,"id":"0xaf88adaff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458666065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":247947},
-{"pid":27443,"tid":27466,"ts":326458666065,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":247947,"id":"0xccc3e906"},
-{"pid":27443,"tid":27466,"ts":326458666279,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":248039},
-{"pid":27443,"tid":27466,"ts":326458666309,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":248069},
-{"pid":27443,"tid":27466,"ts":326458666309,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":248069,"id":"0xc4c1290a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458667042,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248191,"id":"0xaf88ada8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458667042,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":248191},
-{"pid":27443,"tid":27466,"ts":326458667042,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":248191,"id":"0xccc3ea02"},
-{"pid":27443,"tid":27466,"ts":326458670063,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":248344},
-{"pid":27443,"tid":27466,"ts":326458670094,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":248374},
-{"pid":27443,"tid":27466,"ts":326458670124,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":248374,"id":"0xba447d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458670155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":248405,"id":"0xaf88a880f182217a"},
-{"pid":27443,"tid":27466,"ts":326458678792,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248527,"id":"0xaf88ada9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458678823,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":248527},
-{"pid":27443,"tid":27466,"ts":326458678823,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":248527,"id":"0xccc3ec02"},
-{"pid":27443,"tid":27466,"ts":326458681692,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":214,"tts":248649},
-{"pid":27443,"tid":27466,"ts":326458681753,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":248710},
-{"pid":27443,"tid":27466,"ts":326458681753,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":248710,"id":"0xba447e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458681783,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":248741},
-{"pid":27443,"tid":27466,"ts":326458681814,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":248771,"id":"0xaf88a899f182217a"},
-{"pid":27443,"tid":27466,"ts":326458681844,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":248802},
-{"pid":27443,"tid":27466,"ts":326458681844,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":248802,"id":"0xba447f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458681875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":248832,"id":"0xaf88a89af182217a"},
-{"pid":27443,"tid":27466,"ts":326458686880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":248985,"id":"0xaf88adaaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458686880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":248985},
-{"pid":27443,"tid":27477,"ts":326458623428,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":81},"tts":361605},
-{"pid":27443,"tid":27477,"ts":326458623489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":361666,"id":"0xaf88ab83f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458623520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":361696,"id":"0xaf88a96df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458623550,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":361727},
-{"pid":27443,"tid":27477,"ts":326458623550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":361727,"id":"0xaf88a8fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458623581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1800,"tdur":1435,"tts":361757},
-{"pid":27443,"tid":27477,"ts":326458623581,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1800,"tdur":1435,"tts":361757},
-{"pid":27443,"tid":27477,"ts":326458623581,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":361757},
-{"pid":27443,"tid":27477,"ts":326458623611,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1740,"tdur":1373,"tts":361788},
-{"pid":27443,"tid":27477,"ts":326458623611,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":80},"dur":824,"tdur":824,"tts":361788},
-{"pid":27443,"tid":27477,"ts":326458623642,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":80},"dur":244,"tdur":213,"tts":361819},
-{"pid":27443,"tid":27477,"ts":326458623886,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":80},"dur":30,"tdur":30,"tts":362063},
-{"pid":27443,"tid":27477,"ts":326458623916,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":80},"tts":362093},
-{"pid":27443,"tid":27477,"ts":326458624039,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":362215},
-{"pid":27443,"tid":27477,"ts":326458624069,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":362246},
-{"pid":27443,"tid":27477,"ts":326458624069,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":362246},
-{"pid":27443,"tid":27477,"ts":326458624069,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":362246},
-{"pid":27443,"tid":27477,"ts":326458624100,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":362276,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458624161,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":362337},
-{"pid":27443,"tid":27477,"ts":326458624405,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":362582},
-{"pid":27443,"tid":27477,"ts":326458624435,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":672,"tdur":305,"tts":362612},
-{"pid":27443,"tid":27477,"ts":326458624435,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":362612},
-{"pid":27443,"tid":27477,"ts":326458624466,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":213,"tts":362643},
-{"pid":27443,"tid":27477,"ts":326458624527,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":61,"tdur":61,"tts":362704},
-{"pid":27443,"tid":27477,"ts":326458624557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":362734,"id":"0xaf88ad93f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458624618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":362795,"id":"0xaf88adacf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458625076,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":362887,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458625107,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":362917,"id":"0x300000030"},
-{"pid":27443,"tid":27477,"ts":326458625137,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":362948},
-{"pid":27443,"tid":27477,"ts":326458625259,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":363070,"id":"0xaf88adadf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458625320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":363131,"id":"0xaf88ab9cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458625320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":363161,"id":"0xaf88a96ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458627457,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":363253,"id":"0xaf88a8f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458627457,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":363253},
-{"pid":27443,"tid":27477,"ts":326458627640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":62,"tts":363283},
-{"pid":27443,"tid":27477,"ts":326458627640,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":363283},
-{"pid":27443,"tid":27477,"ts":326458627670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":363314,"id":"0xaf88ab9df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458633897,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458633},"tts":363406,"id":"0xaf88a8fff182217a"},
-{"pid":27443,"tid":27477,"ts":326458633897,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":363406},
-{"pid":27443,"tid":27477,"ts":326458635514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":363436,"id":"0xaf88a8f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458635545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":363467},
-{"pid":27443,"tid":27477,"ts":326458635545,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":363467},
-{"pid":27443,"tid":27477,"ts":326458635575,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":363497,"id":"0x300000032"},
-{"pid":27443,"tid":27477,"ts":326458635575,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":363497},
-{"pid":27443,"tid":27477,"ts":326458635606,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":363528,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458635636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":363558,"id":"0xaf88ab9ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458636003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":363650,"id":"0xaf88a8f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458636003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":183,"tts":363680},
-{"pid":27443,"tid":27477,"ts":326458636064,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458630501.0,"frame_time_us":326458633776.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":152,"tts":363711},
-{"pid":27443,"tid":27477,"ts":326458636094,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458630501.0,"frame_time_us":326458633776.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":363741},
-{"pid":27443,"tid":27477,"ts":326458636155,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458650442},"dur":31,"tdur":31,"tts":363802},
-{"pid":27443,"tid":27477,"ts":326458636186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":363833,"id":"0xaf88a8f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458650561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458650},"tts":363955,"id":"0xaf88a8f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458650561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":702,"tdur":519,"tts":363955},
-{"pid":27443,"tid":27477,"ts":326458650591,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":641,"tdur":458,"tts":363985},
-{"pid":27443,"tid":27477,"ts":326458650591,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":641,"tdur":458,"tts":363985},
-{"pid":27443,"tid":27477,"ts":326458650622,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":610,"tdur":427,"tts":364016},
-{"pid":27443,"tid":27477,"ts":326458650622,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":364016},
-{"pid":27443,"tid":27477,"ts":326458650713,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":364138},
-{"pid":27443,"tid":27477,"ts":326458650744,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":364138},
-{"pid":27443,"tid":27477,"ts":326458650744,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":427,"tdur":213,"tts":364169},
-{"pid":27443,"tid":27477,"ts":326458650774,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":397,"tdur":213,"tts":364169},
-{"pid":27443,"tid":27477,"ts":326458650774,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":364169,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458650805,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":364199},
-{"pid":27443,"tid":27477,"ts":326458650866,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":244,"tdur":61,"tts":364260},
-{"pid":27443,"tid":27477,"ts":326458651141,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":364352,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458651171,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":364413,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458651202,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":364413,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458651568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":364504,"id":"0xaf88a8f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458651568,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":364504},
-{"pid":27443,"tid":27477,"ts":326458651598,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":364535},
-{"pid":27443,"tid":27477,"ts":326458651629,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":364565,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458651629,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":364565},
-{"pid":27443,"tid":27477,"ts":326458651659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":364596,"id":"0xaf88a8f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458651659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":364626,"id":"0xaf88a8f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458651690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":244,"tdur":122,"tts":364626},
-{"pid":27443,"tid":27477,"ts":326458651690,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":244,"tdur":122,"tts":364626},
-{"pid":27443,"tid":27477,"ts":326458651721,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":364657,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458651721,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":213,"tdur":91,"tts":364657},
-{"pid":27443,"tid":27477,"ts":326458651721,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":364657},
-{"pid":27443,"tid":27477,"ts":326458651904,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":364718,"id":"0xaf88a88cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458651934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":364748,"id":"0xaf88a8f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458651965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":364779},
-{"pid":27443,"tid":27477,"ts":326458651965,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":364779},
-{"pid":27443,"tid":27477,"ts":326458651965,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":364779,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458651995,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":364810},
-{"pid":27443,"tid":27477,"ts":326458652026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":364840,"id":"0xaf88a8f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458652026,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":213,"tts":364871},
-{"pid":27443,"tid":27477,"ts":326458652056,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":183,"tdur":183,"tts":364871},
-{"pid":27443,"tid":27477,"ts":326458652056,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":31,"tts":364901},
-{"pid":27443,"tid":27477,"ts":326458652087,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":364901},
-{"pid":27443,"tid":27477,"ts":326458652117,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":364932},
-{"pid":27443,"tid":27477,"ts":326458652117,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":364932},
-{"pid":27443,"tid":27477,"ts":326458652209,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":365023},
-{"pid":27443,"tid":27477,"ts":326458652209,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":365054},
-{"pid":27443,"tid":27477,"ts":326458652270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":365084,"id":"0xaf88a88cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458652270,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":214,"tts":365084},
-{"pid":27443,"tid":27477,"ts":326458652300,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":184,"tdur":183,"tts":365115},
-{"pid":27443,"tid":27477,"ts":326458652300,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":365115},
-{"pid":27443,"tid":27477,"ts":326458652331,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":365145},
-{"pid":27443,"tid":27477,"ts":326458652361,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":62,"tdur":61,"tts":365176},
-{"pid":27443,"tid":27477,"ts":326458652361,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":62,"tdur":61,"tts":365176},
-{"pid":27443,"tid":27477,"ts":326458652423,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":61,"tts":365237},
-{"pid":27443,"tid":27477,"ts":326458652453,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":365267},
-{"pid":27443,"tid":27477,"ts":326458654437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":365359,"id":"0xaf88a88df182217a"},
-{"pid":27443,"tid":27477,"ts":326458654467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":365359},
-{"pid":27443,"tid":27477,"ts":326458654498,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458647177.0,"frame_time_us":326458650452.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":365389},
-{"pid":27443,"tid":27477,"ts":326458654528,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458647177.0,"frame_time_us":326458650452.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":61,"tts":365450},
-{"pid":27443,"tid":27477,"ts":326458654589,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458667118},"dur":31,"tdur":30,"tts":365481},
-{"pid":27443,"tid":27477,"ts":326458654620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":365511,"id":"0xaf88a88ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458661884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":365634,"id":"0xaf88a88ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458661884,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1434,"tdur":1434,"tts":365634},
-{"pid":27443,"tid":27477,"ts":326458661914,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1404,"tdur":1404,"tts":365664},
-{"pid":27443,"tid":27477,"ts":326458661914,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":365664},
-{"pid":27443,"tid":27477,"ts":326458661914,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1404,"tdur":1374,"tts":365664},
-{"pid":27443,"tid":27477,"ts":326458661945,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1343,"tdur":1343,"tts":365695},
-{"pid":27443,"tid":27477,"ts":326458661945,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":365695},
-{"pid":27443,"tid":27477,"ts":326458661945,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":365695},
-{"pid":27443,"tid":27477,"ts":326458661975,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":365725,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458661975,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":365725},
-{"pid":27443,"tid":27477,"ts":326458662006,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":427,"tdur":427,"tts":365756},
-{"pid":27443,"tid":27477,"ts":326458662464,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":824,"tdur":825,"tts":366213},
-{"pid":27443,"tid":27477,"ts":326458662494,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":81},"dur":244,"tdur":244,"tts":366244},
-{"pid":27443,"tid":27477,"ts":326458662738,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":81},"dur":31,"tdur":31,"tts":366488},
-{"pid":27443,"tid":27477,"ts":326458662769,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":81},"tts":366519},
-{"pid":27443,"tid":27477,"ts":326458662922,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":366671},
-{"pid":27443,"tid":27477,"ts":326458662952,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":366702},
-{"pid":27443,"tid":27477,"ts":326458662952,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":366702},
-{"pid":27443,"tid":27459,"ts":326458662525,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6133648},
-{"pid":27443,"tid":27459,"ts":326458662616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6133740,"id":"0xaf88a96ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458662616,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6133740},
-{"pid":27443,"tid":27459,"ts":326458662647,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6133770,"id":"0xaf88a968f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458662647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6133770,"id":"0xaf88ab9cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458662647,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6133770},
-{"pid":27443,"tid":27459,"ts":326458662677,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6133801},
-{"pid":27443,"tid":27459,"ts":326458662708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6133831,"id":"0xaf88a96ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458662738,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6133862},
-{"pid":27443,"tid":27459,"ts":326458662738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6133862,"id":"0xaf88ab9df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458662738,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6133862},
-{"pid":27443,"tid":27459,"ts":326458662769,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6133892},
-{"pid":27443,"tid":27459,"ts":326458662799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6133923,"id":"0xaf88a968f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458662830,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1038,"tdur":1038,"tts":6133953},
-{"pid":27443,"tid":27459,"ts":326458662830,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6133953,"id":"0xaf88a969f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458662860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6133984,"id":"0xaf88ab9ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458662860,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1008,"tdur":1007,"tts":6133984},
-{"pid":27443,"tid":27459,"ts":326458662922,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":946,"tdur":916,"tts":6134045},
-{"pid":27443,"tid":27459,"ts":326458662922,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6134045,"id":"0x300000032"},
-{"pid":27443,"tid":27459,"ts":326458662952,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":794,"tdur":793,"tts":6134076},
-{"pid":27443,"tid":27459,"ts":326458662983,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":763,"tdur":763,"tts":6134106},
-{"pid":27443,"tid":27459,"ts":326458663013,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6134167},
-{"pid":27443,"tid":27459,"ts":326458663074,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6134198},
-{"pid":27443,"tid":27459,"ts":326458663105,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6134228},
-{"pid":27443,"tid":27459,"ts":326458663135,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6134259},
-{"pid":27443,"tid":27459,"ts":326458663166,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":6134289},
-{"pid":27443,"tid":27459,"ts":326458663318,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6134442},
-{"pid":27443,"tid":27459,"ts":326458663318,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6134442},
-{"pid":27443,"tid":27459,"ts":326458663623,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":35,"frame":"0x78c60000"}},"tts":6134747,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458663654,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":6134777},
-{"pid":27443,"tid":27459,"ts":326458663654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6134777,"id":"0xaf88a885f182217a"},
-{"pid":27443,"tid":27459,"ts":326458663685,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6134808},
-{"pid":27443,"tid":27459,"ts":326458663776,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6134900},
-{"pid":27443,"tid":27459,"ts":326458663776,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6134930,"id":"0xaf88adaef3d03dca"},{"pid":27443,"tid":27459,"ts":326458663898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6135022,"id":"0xaf88a969f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458663898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6135052},
-{"pid":27443,"tid":27459,"ts":326458664997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6135144,"id":"0xaf88a96af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458664997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12391,"tdur":10773,"tts":6135144},
-{"pid":27443,"tid":27459,"ts":326458665027,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6135174,"id":"0xaf88a96bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458665027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6135174,"id":"0xaf88ab9ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458665027,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12361,"tdur":10743,"tts":6135174},
-{"pid":27443,"tid":27459,"ts":326458665027,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":82},"tts":6135205},
-{"pid":27443,"tid":27459,"ts":326458665058,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6135205},
-{"pid":27443,"tid":27459,"ts":326458665088,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8729,"tdur":7661,"tts":6135235},
-{"pid":27443,"tid":27459,"ts":326458665119,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":6135266},
-{"pid":27443,"tid":27459,"ts":326458665149,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":35,"frame":"0x78c60000"}},"dur":8638,"tdur":7600,"tts":6135296},
-{"pid":27443,"tid":27459,"ts":326458665241,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":8546,"tdur":7508,"tts":6135388},
-{"pid":27443,"tid":27459,"ts":326458665241,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6135388},
-{"pid":27443,"tid":27459,"ts":326458665424,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6135602},
-{"pid":27443,"tid":27459,"ts":326458665485,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6135632},
-{"pid":27443,"tid":27459,"ts":326458666004,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6136151},
-{"pid":27443,"tid":27459,"ts":326458666462,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6136365},
-{"pid":27443,"tid":27459,"ts":326458666523,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6136426},
-{"pid":27443,"tid":27459,"ts":326458666523,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6136426},
-{"pid":27443,"tid":27459,"ts":326458666859,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6136761},
-{"pid":27443,"tid":27459,"ts":326458667683,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6137036},
-{"pid":27443,"tid":27459,"ts":326458667683,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6137067},
-{"pid":27443,"tid":27459,"ts":326458667866,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6137250},
-{"pid":27443,"tid":27459,"ts":326458673726,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6142865},
-{"pid":27443,"tid":27459,"ts":326458673817,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2442,"tdur":2442,"tts":6142926},
-{"pid":27443,"tid":27459,"ts":326458673848,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6142957},
-{"pid":27443,"tid":27459,"ts":326458673878,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6142987},
-{"pid":27443,"tid":27459,"ts":326458673878,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6142987},
-{"pid":27443,"tid":27459,"ts":326458674275,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6143384},
-{"pid":27443,"tid":27477,"ts":326458662983,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":366732},
-{"pid":27443,"tid":27477,"ts":326458663105,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":366854},
-{"pid":27443,"tid":27477,"ts":326458663105,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":366854},
-{"pid":27443,"tid":27477,"ts":326458663105,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":366854},
-{"pid":27443,"tid":27477,"ts":326458663135,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":91,"tts":366885},
-{"pid":27443,"tid":27477,"ts":326458663135,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":366885,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458663166,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":366915},
-{"pid":27443,"tid":27477,"ts":326458663166,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":366915},
-{"pid":27443,"tid":27477,"ts":326458663227,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":366976,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458663257,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":367007,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458663257,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":367007,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458663318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":367068,"id":"0xaf88a888f182217a"},
-{"pid":27443,"tid":27477,"ts":326458663318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":367099},
-{"pid":27443,"tid":27477,"ts":326458663349,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":367099},
-{"pid":27443,"tid":27477,"ts":326458663349,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":367099,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458663379,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":367129},
-{"pid":27443,"tid":27477,"ts":326458663379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":367129,"id":"0xaf88a88bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458663410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":367160,"id":"0xaf88a889f182217a"},
-{"pid":27443,"tid":27477,"ts":326458663410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":367160},
-{"pid":27443,"tid":27477,"ts":326458663410,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":367160},
-{"pid":27443,"tid":27477,"ts":326458663440,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":367190,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458663440,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":367190},
-{"pid":27443,"tid":27477,"ts":326458663440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":367221,"id":"0xaf88a884f182217a"},
-{"pid":27443,"tid":27477,"ts":326458663471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":367221,"id":"0xaf88a88af182217a"},
-{"pid":27443,"tid":27477,"ts":326458663501,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":367251},
-{"pid":27443,"tid":27477,"ts":326458663501,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":367251},
-{"pid":27443,"tid":27477,"ts":326458663501,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":367251,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458663501,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":367251},
-{"pid":27443,"tid":27477,"ts":326458663532,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":367282,"id":"0xaf88a88bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458663532,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1099,"tdur":1098,"tts":367282},
-{"pid":27443,"tid":27477,"ts":326458663532,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1099,"tdur":1098,"tts":367282},
-{"pid":27443,"tid":27477,"ts":326458663562,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":367312},
-{"pid":27443,"tid":27477,"ts":326458663562,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":367312},
-{"pid":27443,"tid":27477,"ts":326458663593,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":367343},
-{"pid":27443,"tid":27477,"ts":326458663593,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":367343},
-{"pid":27443,"tid":27477,"ts":326458663685,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":367434},
-{"pid":27443,"tid":27477,"ts":326458663685,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":367434},
-{"pid":27443,"tid":27477,"ts":326458663685,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":915,"tdur":916,"tts":367434},
-{"pid":27443,"tid":27477,"ts":326458663685,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":367465,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458663776,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":367526},
-{"pid":27443,"tid":27477,"ts":326458663807,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367556},
-{"pid":27443,"tid":27477,"ts":326458663837,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367587},
-{"pid":27443,"tid":27477,"ts":326458663837,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":367587},
-{"pid":27443,"tid":27477,"ts":326458663868,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":367617},
-{"pid":27443,"tid":27477,"ts":326458663898,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367648},
-{"pid":27443,"tid":27477,"ts":326458663898,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":367648},
-{"pid":27443,"tid":27477,"ts":326458663929,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367678},
-{"pid":27443,"tid":27477,"ts":326458663959,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367709},
-{"pid":27443,"tid":27477,"ts":326458663959,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":367709},
-{"pid":27443,"tid":27477,"ts":326458663990,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367739},
-{"pid":27443,"tid":27477,"ts":326458663990,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":367739},
-{"pid":27443,"tid":27477,"ts":326458664020,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367770},
-{"pid":27443,"tid":27477,"ts":326458664051,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367801},
-{"pid":27443,"tid":27477,"ts":326458664051,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":367801},
-{"pid":27443,"tid":27477,"ts":326458664081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367831},
-{"pid":27443,"tid":27477,"ts":326458664081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":367831},
-{"pid":27443,"tid":27477,"ts":326458664112,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367862},
-{"pid":27443,"tid":27477,"ts":326458664142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367892},
-{"pid":27443,"tid":27477,"ts":326458664142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":367892},
-{"pid":27443,"tid":27477,"ts":326458664173,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":367923},
-{"pid":27443,"tid":27477,"ts":326458664203,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367953},
-{"pid":27443,"tid":27477,"ts":326458664203,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":367953},
-{"pid":27443,"tid":27477,"ts":326458664234,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":367984},
-{"pid":27443,"tid":27477,"ts":326458664264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":368014},
-{"pid":27443,"tid":27469,"ts":326458663288,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":284724},
-{"pid":27443,"tid":27469,"ts":326458663288,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":284724},
-{"pid":27443,"tid":27469,"ts":326458663318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284755,"id":"0xaf88a889f182217a"},
-{"pid":27443,"tid":27469,"ts":326458663318,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":284755},
-{"pid":27443,"tid":27469,"ts":326458663318,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":284785},
-{"pid":27443,"tid":27469,"ts":326458663349,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284785,"id":"0xaf88a88af182217a"},
-{"pid":27443,"tid":27546,"ts":326458667164,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":488,"tdur":489,"tts":24324},
-{"pid":27443,"tid":27546,"ts":326458667194,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":24355},
-{"pid":27443,"tid":27546,"ts":326458667622,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":24782},
-{"pid":27443,"tid":27469,"ts":326458678304,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":91,"tts":284816},
-{"pid":27443,"tid":27469,"ts":326458678365,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":284846},
-{"pid":27443,"tid":27469,"ts":326458678365,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284877,"id":"0xaf88a883f182217a"},
-{"pid":27443,"tid":27469,"ts":326458678426,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1251,"tdur":61,"tts":284907},
-{"pid":27443,"tid":27469,"ts":326458678456,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1191,"tdur":30,"tts":284938},
-{"pid":27443,"tid":27471,"ts":326458678701,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":346467},
-{"pid":27443,"tid":27471,"ts":326458678731,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":346497},
-{"pid":27443,"tid":27471,"ts":326458678731,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346497,"id":"0xaf88a89ef182217a"},
-{"pid":27443,"tid":27469,"ts":326458679647,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284968,"id":"0xaf88a89ff182217a"},
-{"pid":27443,"tid":27471,"ts":326458691244,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":346558},
-{"pid":27443,"tid":27471,"ts":326458691275,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":346589},
-{"pid":27443,"tid":27471,"ts":326458691275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346589,"id":"0xaf88a896f182217a"},
-{"pid":27443,"tid":27471,"ts":326458691336,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":346650},
-{"pid":27443,"tid":27471,"ts":326458691336,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":346650},
-{"pid":27443,"tid":27471,"ts":326458691336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346650,"id":"0xaf88a897f182217a"},
-{"pid":27443,"tid":27471,"ts":326458691366,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":346680},
-{"pid":27443,"tid":27471,"ts":326458691366,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":346680},
-{"pid":27443,"tid":27471,"ts":326458691366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346680,"id":"0xaf88a890f182217a"},
-{"pid":27443,"tid":27471,"ts":326458703147,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":580,"tdur":92,"tts":346741},
-{"pid":27443,"tid":27471,"ts":326458703208,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":489,"tdur":30,"tts":346772},
-{"pid":27443,"tid":27469,"ts":326458703208,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":31,"tts":285029},
-{"pid":27443,"tid":27469,"ts":326458703239,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":285029},
-{"pid":27443,"tid":27469,"ts":326458703239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285029,"id":"0xaf88a8a8f182217a"},
-{"pid":27443,"tid":27469,"ts":326458703269,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":285060},
-{"pid":27443,"tid":27469,"ts":326458703300,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":285090},
-{"pid":27443,"tid":27469,"ts":326458703300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285090,"id":"0xaf88a8a9f182217a"},
-{"pid":27443,"tid":27471,"ts":326458703697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346802,"id":"0xaf88a8aaf182217a"},
-{"pid":27443,"tid":27498,"ts":326458709648,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1770,"tdur":1587,"tts":39829},
-{"pid":27443,"tid":27498,"ts":326458709648,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":39829},
-{"pid":27443,"tid":27498,"ts":326458711388,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":41416},
-{"pid":27443,"tid":27469,"ts":326458735011,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":285121},
-{"pid":27443,"tid":27469,"ts":326458735072,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":285151},
-{"pid":27443,"tid":27469,"ts":326458735072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285151,"id":"0xaf88a8a3f182217a"},
-{"pid":27443,"tid":27471,"ts":326458735072,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":580,"tdur":91,"tts":346864},
-{"pid":27443,"tid":27471,"ts":326458735102,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":346894},
-{"pid":27443,"tid":27471,"ts":326458735133,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":346925,"id":"0xaf88a8bcf182217a"},
-{"pid":27443,"tid":27469,"ts":326458735529,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":285212},
-{"pid":27443,"tid":27469,"ts":326458735560,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":285243},
-{"pid":27443,"tid":27469,"ts":326458735591,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285273,"id":"0xaf88a8bdf182217a"},
-{"pid":27443,"tid":27496,"ts":326458931592,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":794,"tdur":793,"tts":58019},
-{"pid":27443,"tid":27496,"ts":326458931592,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":58049},
-{"pid":27443,"tid":27496,"ts":326458932386,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":58812},
-{"pid":27443,"tid":27469,"ts":326458940565,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2656,"tdur":122,"tts":285304},
-{"pid":27443,"tid":27469,"ts":326458942519,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":31,"tts":285365},
-{"pid":27443,"tid":27471,"ts":326458943068,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":244,"tdur":31,"tts":347016},
-{"pid":27443,"tid":27471,"ts":326458943099,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":0,"tts":347016},
-{"pid":27443,"tid":27469,"ts":326458943190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285396,"id":"0xaf88a949f182217a"},
-{"pid":27443,"tid":27469,"ts":326458943221,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":285426},
-{"pid":27443,"tid":27469,"ts":326458943221,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":285457},
-{"pid":27443,"tid":27469,"ts":326458943251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285457,"id":"0xaf88a94af182217a"},
-{"pid":27443,"tid":27471,"ts":326458943282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347016,"id":"0xaf88a94bf182217a"},
-{"pid":27443,"tid":27469,"ts":326458957748,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":285518},
-{"pid":27443,"tid":27469,"ts":326458957779,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":285548},
-{"pid":27443,"tid":27469,"ts":326458957779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285548,"id":"0xaf88a941f182217a"},
-{"pid":27443,"tid":27469,"ts":326458957840,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":285609},
-{"pid":27443,"tid":27477,"ts":326458664264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":368014},
-{"pid":27443,"tid":27477,"ts":326458664356,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":368106},
-{"pid":27443,"tid":27477,"ts":326458664386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":368136},
-{"pid":27443,"tid":27477,"ts":326458664386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":368136},
-{"pid":27443,"tid":27477,"ts":326458664417,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":368167},
-{"pid":27443,"tid":27477,"ts":326458664417,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":368197},
-{"pid":27443,"tid":27477,"ts":326458664448,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":368197},
-{"pid":27443,"tid":27477,"ts":326458664478,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":368228},
-{"pid":27443,"tid":27477,"ts":326458664509,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":368258},
-{"pid":27443,"tid":27477,"ts":326458664539,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":368289},
-{"pid":27443,"tid":27477,"ts":326458664570,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":368319},
-{"pid":27443,"tid":27477,"ts":326458664570,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":368319},
-{"pid":27443,"tid":27477,"ts":326458664600,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":368350},
-{"pid":27443,"tid":27477,"ts":326458664631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":368380,"id":"0xaf88a886f182217a"},
-{"pid":27443,"tid":27477,"ts":326458664661,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":368411,"id":"0xaf88a884f182217a"},
-{"pid":27443,"tid":27477,"ts":326458664661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":368411},
-{"pid":27443,"tid":27477,"ts":326458664661,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":368411},
-{"pid":27443,"tid":27477,"ts":326458664692,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":368441},
-{"pid":27443,"tid":27477,"ts":326458664692,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":368441},
-{"pid":27443,"tid":27477,"ts":326458664692,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":368441},
-{"pid":27443,"tid":27477,"ts":326458664722,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":368472},
-{"pid":27443,"tid":27477,"ts":326458664753,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":368502},
-{"pid":27443,"tid":27477,"ts":326458664753,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":368502},
-{"pid":27443,"tid":27477,"ts":326458664844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":368564,"id":"0xaf88a885f182217a"},
-{"pid":27443,"tid":27477,"ts":326458664844,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":368564},
-{"pid":27443,"tid":27477,"ts":326458664844,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":368564},
-{"pid":27443,"tid":27477,"ts":326458664844,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":82},"tts":368594},
-{"pid":27443,"tid":27477,"ts":326458664905,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":368625,"id":"0xaf88ab9ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458664936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":368655,"id":"0xaf88a96af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458664966,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":368686},
-{"pid":27443,"tid":27477,"ts":326458664997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":368716,"id":"0xaf88a886f182217a"},
-{"pid":27443,"tid":27477,"ts":326458664997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2106,"tdur":1526,"tts":368716},
-{"pid":27443,"tid":27477,"ts":326458664997,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2106,"tdur":1526,"tts":368716},
-{"pid":27443,"tid":27477,"ts":326458665027,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":368747},
-{"pid":27443,"tid":27477,"ts":326458665027,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2045,"tdur":1465,"tts":368747},
-{"pid":27443,"tid":27477,"ts":326458665058,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":81},"dur":732,"tdur":733,"tts":368777},
-{"pid":27443,"tid":27477,"ts":326458665058,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":81},"dur":244,"tdur":213,"tts":368808},
-{"pid":27443,"tid":27477,"ts":326458665302,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":81},"dur":31,"tdur":31,"tts":369021},
-{"pid":27443,"tid":27477,"ts":326458665333,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":81},"tts":369052},
-{"pid":27443,"tid":27477,"ts":326458665455,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":369174},
-{"pid":27443,"tid":27477,"ts":326458665485,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":369204},
-{"pid":27443,"tid":27477,"ts":326458665485,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":369204},
-{"pid":27443,"tid":27477,"ts":326458665485,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":369204},
-{"pid":27443,"tid":27477,"ts":326458665516,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":369235,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458665577,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":369296},
-{"pid":27443,"tid":27477,"ts":326458665790,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":369510},
-{"pid":27443,"tid":27477,"ts":326458665790,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1008,"tdur":427,"tts":369510},
-{"pid":27443,"tid":27477,"ts":326458665821,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":369540},
-{"pid":27443,"tid":27477,"ts":326458665821,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":275,"tts":369540},
-{"pid":27443,"tid":27477,"ts":326458665943,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":31,"tdur":31,"tts":369662},
-{"pid":27443,"tid":27477,"ts":326458665974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":369693,"id":"0xaf88adaff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458666767,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":369906,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458666798,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":369937,"id":"0x300000031"},
-{"pid":27443,"tid":27477,"ts":326458666828,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":184,"tts":369967},
-{"pid":27443,"tid":27477,"ts":326458666981,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":370120,"id":"0xaf88ada8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458667042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":370181,"id":"0xaf88ab98f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458667042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":370212,"id":"0xaf88a964f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458667103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":370242,"id":"0xaf88a887f182217a"},
-{"pid":27443,"tid":27477,"ts":326458667133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":370273},
-{"pid":27443,"tid":27477,"ts":326458667133,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":91,"tts":370273},
-{"pid":27443,"tid":27477,"ts":326458667133,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":370273,"id":"0x300000033"},
-{"pid":27443,"tid":27477,"ts":326458667164,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":370303},
-{"pid":27443,"tid":27477,"ts":326458667164,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":370334,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458667194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":370334,"id":"0xaf88ab99f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458667255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458667},"tts":370395,"id":"0xaf88a88ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458667255,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":370395},
-{"pid":27443,"tid":27477,"ts":326458670246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":370456,"id":"0xaf88a880f182217a"},
-{"pid":27443,"tid":27477,"ts":326458670246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":184,"tdur":183,"tts":370456},
-{"pid":27443,"tid":27477,"ts":326458670277,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458663853.0,"frame_time_us":326458667128.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":370486},
-{"pid":27443,"tid":27477,"ts":326458670307,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458663853.0,"frame_time_us":326458667128.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":91,"tts":370517},
-{"pid":27443,"tid":27477,"ts":326458670368,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458683794},"dur":31,"tdur":30,"tts":370578},
-{"pid":27443,"tid":27477,"ts":326458670399,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":370608,"id":"0xaf88a881f182217a"},
-{"pid":27443,"tid":27477,"ts":326458676747,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":370700,"id":"0xaf88a882f182217a"},
-{"pid":27443,"tid":27477,"ts":326458676747,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1496,"tdur":1343,"tts":370700},
-{"pid":27443,"tid":27477,"ts":326458676747,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1496,"tdur":1343,"tts":370700},
-{"pid":27443,"tid":27477,"ts":326458676778,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":370730},
-{"pid":27443,"tid":27477,"ts":326458676778,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1465,"tdur":1282,"tts":370730},
-{"pid":27443,"tid":27477,"ts":326458676778,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1434,"tdur":1282,"tts":370730},
-{"pid":27443,"tid":27477,"ts":326458676808,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":370761},
-{"pid":27443,"tid":27477,"ts":326458676808,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":370761},
-{"pid":27443,"tid":27477,"ts":326458676808,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":370761,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458676839,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":370792},
-{"pid":27443,"tid":27477,"ts":326458676869,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":366,"tts":370822},
-{"pid":27443,"tid":27477,"ts":326458677297,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":915,"tdur":763,"tts":371249},
-{"pid":27443,"tid":27477,"ts":326458677327,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":82},"dur":214,"tdur":213,"tts":371280},
-{"pid":27443,"tid":27477,"ts":326458677571,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":82},"dur":31,"tdur":31,"tts":371524},
-{"pid":27443,"tid":27477,"ts":326458677602,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":82},"tts":371555},
-{"pid":27443,"tid":27477,"ts":326458677754,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":371707},
-{"pid":27443,"tid":27477,"ts":326458677754,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":458,"tdur":305,"tts":371707},
-{"pid":27443,"tid":27477,"ts":326458677754,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":245,"tdur":92,"tts":371707},
-{"pid":27443,"tid":27477,"ts":326458677754,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":371707},
-{"pid":27443,"tid":27477,"ts":326458677999,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":371829},
-{"pid":27443,"tid":27477,"ts":326458677999,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":371829},
-{"pid":27443,"tid":27477,"ts":326458677999,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":122,"tts":371860},
-{"pid":27443,"tid":27477,"ts":326458678029,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":122,"tts":371860},
-{"pid":27443,"tid":27477,"ts":326458678029,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":371860,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458678060,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":371890},
-{"pid":27443,"tid":27477,"ts":326458678060,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":91,"tdur":61,"tts":371890},
-{"pid":27443,"tid":27477,"ts":326458678151,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":371951,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458678182,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":371982,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458678182,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":371982,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458678487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":372104,"id":"0xaf88a883f182217a"},
-{"pid":27443,"tid":27477,"ts":326458678487,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":1190,"tdur":61,"tts":372104},
-{"pid":27443,"tid":27477,"ts":326458678487,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":1190,"tdur":61,"tts":372104},
-{"pid":27443,"tid":27477,"ts":326458678517,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":372134,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458678517,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":1160,"tdur":31,"tts":372134},
-{"pid":27443,"tid":27477,"ts":326458678548,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":372165,"id":"0xaf88a89df182217a"},
-{"pid":27443,"tid":27477,"ts":326458679708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":372195,"id":"0xaf88a89cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458679708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":372195},
-{"pid":27443,"tid":27477,"ts":326458679708,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":372195},
-{"pid":27443,"tid":27477,"ts":326458679738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":372226,"id":"0xaf88a89df182217a"},
-{"pid":27443,"tid":27477,"ts":326458679738,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1496,"tdur":1251,"tts":372226},
-{"pid":27443,"tid":27477,"ts":326458679769,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1221,"tts":372256},
-{"pid":27443,"tid":27477,"ts":326458679769,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":183,"tdur":31,"tts":372256},
-{"pid":27443,"tid":27477,"ts":326458679769,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":372256},
-{"pid":27443,"tid":27477,"ts":326458679952,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":152,"tts":372318},
-{"pid":27443,"tid":27477,"ts":326458679952,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":372318},
-{"pid":27443,"tid":27477,"ts":326458680104,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1130,"tdur":1007,"tts":372470},
-{"pid":27443,"tid":27477,"ts":326458680104,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1099,"tdur":946,"tts":372501},
-{"pid":27443,"tid":27477,"ts":326458680135,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1068,"tdur":946,"tts":372501},
-{"pid":27443,"tid":27477,"ts":326458680135,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":372501,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458680227,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":372592},
-{"pid":27443,"tid":27477,"ts":326458680257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372623},
-{"pid":27443,"tid":27477,"ts":326458680257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":372653},
-{"pid":27443,"tid":27477,"ts":326458680288,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372653},
-{"pid":27443,"tid":27477,"ts":326458680318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372684},
-{"pid":27443,"tid":27477,"ts":326458680318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":372684},
-{"pid":27443,"tid":27477,"ts":326458680349,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":372714},
-{"pid":27443,"tid":27459,"ts":326458674306,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6143415},
-{"pid":27443,"tid":27459,"ts":326458674336,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1923,"tdur":1923,"tts":6143445},
-{"pid":27443,"tid":27459,"ts":326458674367,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1739,"tdur":1739,"tts":6143476},
-{"pid":27443,"tid":27459,"ts":326458674367,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":305,"tdur":305,"tts":6143476},
-{"pid":27443,"tid":27459,"ts":326458674672,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":152,"tts":6143812},
-{"pid":27443,"tid":27459,"ts":326458674885,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6143995},
-{"pid":27443,"tid":27459,"ts":326458674977,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6144086},
-{"pid":27443,"tid":27459,"ts":326458674977,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":6144086},
-{"pid":27443,"tid":27459,"ts":326458676137,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6145246},
-{"pid":27443,"tid":27459,"ts":326458676167,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":6145276},
-{"pid":27443,"tid":27459,"ts":326458676289,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":82},"dur":336,"tdur":335,"tts":6145399},
-{"pid":27443,"tid":27459,"ts":326458676289,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":335,"tts":6145399},
-{"pid":27443,"tid":27459,"ts":326458676534,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":82},"dur":30,"tdur":30,"tts":6145643},
-{"pid":27443,"tid":27459,"ts":326458676564,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":82},"dur":31,"tdur":31,"tts":6145673},
-{"pid":27443,"tid":27459,"ts":326458676595,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":82},"dur":0,"tdur":0,"tts":6145704},
-{"pid":27443,"tid":27459,"ts":326458676625,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6145734,"id":"0x300000032"},
-{"pid":27443,"tid":27459,"ts":326458676625,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":122,"tts":6145734},
-{"pid":27443,"tid":27459,"ts":326458676656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6145765,"id":"0xaf88a882f182217a"},
-{"pid":27443,"tid":27459,"ts":326458677358,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6145887},
-{"pid":27443,"tid":27459,"ts":326458677419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6145948,"id":"0xaf88a96bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458677449,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6145978},
-{"pid":27443,"tid":27459,"ts":326458677449,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6145978,"id":"0xaf88a965f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458677480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6146009,"id":"0xaf88ab98f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458677480,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6146009},
-{"pid":27443,"tid":27459,"ts":326458677480,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6146009},
-{"pid":27443,"tid":27459,"ts":326458677541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6146070,"id":"0xaf88a964f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458677541,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1434,"tdur":1160,"tts":6146070},
-{"pid":27443,"tid":27459,"ts":326458677571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6146101,"id":"0xaf88ab99f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458677571,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1374,"tdur":1098,"tts":6146101},
-{"pid":27443,"tid":27459,"ts":326458677632,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1313,"tdur":1037,"tts":6146162},
-{"pid":27443,"tid":27459,"ts":326458677632,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6146162,"id":"0x300000033"},
-{"pid":27443,"tid":27459,"ts":326458677663,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":6146192},
-{"pid":27443,"tid":27459,"ts":326458677693,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":854,"tts":6146223},
-{"pid":27443,"tid":27459,"ts":326458677754,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6146284},
-{"pid":27443,"tid":27459,"ts":326458677785,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6146314},
-{"pid":27443,"tid":27459,"ts":326458677815,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6146345},
-{"pid":27443,"tid":27459,"ts":326458677846,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6146375},
-{"pid":27443,"tid":27459,"ts":326458677876,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":672,"tdur":641,"tts":6146436},
-{"pid":27443,"tid":27459,"ts":326458678029,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":488,"tdur":458,"tts":6146589},
-{"pid":27443,"tid":27459,"ts":326458678060,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6146589},
-{"pid":27443,"tid":27459,"ts":326458678365,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":36,"frame":"0x78c60000"}},"tts":6146894,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458678395,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":92,"tdur":61,"tts":6146925},
-{"pid":27443,"tid":27459,"ts":326458678456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6146986,"id":"0xaf88a89cf182217a"},
-{"pid":27443,"tid":27459,"ts":326458678487,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6147016},
-{"pid":27443,"tid":27459,"ts":326458678578,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":336,"tdur":61,"tts":6147108},
-{"pid":27443,"tid":27459,"ts":326458678578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6147138,"id":"0xaf88ada9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458679006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6147260,"id":"0xaf88a965f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458679006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":6147260},
-{"pid":27443,"tid":27459,"ts":326458684713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6147352,"id":"0xaf88a966f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458684713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2320,"tdur":1495,"tts":6147352},
-{"pid":27443,"tid":27459,"ts":326458684744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6147382,"id":"0xaf88a967f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458684744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6147382,"id":"0xaf88ab9af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458684744,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2289,"tdur":1434,"tts":6147413},
-{"pid":27443,"tid":27459,"ts":326458684835,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2167,"tdur":1343,"tts":6147474},
-{"pid":27443,"tid":27459,"ts":326458684835,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6147474,"id":"0x300000034"},
-{"pid":27443,"tid":27459,"ts":326458684866,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1861,"tdur":1221,"tts":6147504},
-{"pid":27443,"tid":27459,"ts":326458684896,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1831,"tdur":1159,"tts":6147566},
-{"pid":27443,"tid":27459,"ts":326458685262,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":123,"tdur":31,"tts":6147657},
-{"pid":27443,"tid":27459,"ts":326458685262,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6147657},
-{"pid":27443,"tid":27459,"ts":326458685446,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":30,"tts":6147749},
-{"pid":27443,"tid":27459,"ts":326458685537,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":92,"tdur":0,"tts":6147810},
-{"pid":27443,"tid":27459,"ts":326458685537,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6147810},
-{"pid":27443,"tid":27459,"ts":326458685720,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":122,"tdur":30,"tts":6147810},
-{"pid":27443,"tid":27459,"ts":326458685720,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6147810},
-{"pid":27443,"tid":27477,"ts":326458680379,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372745},
-{"pid":27443,"tid":27477,"ts":326458680410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372775},
-{"pid":27443,"tid":27477,"ts":326458680410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":372775},
-{"pid":27443,"tid":27477,"ts":326458680440,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372806},
-{"pid":27443,"tid":27477,"ts":326458680440,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":372806},
-{"pid":27443,"tid":27477,"ts":326458680471,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372836},
-{"pid":27443,"tid":27477,"ts":326458680501,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372867},
-{"pid":27443,"tid":27477,"ts":326458680501,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":372867},
-{"pid":27443,"tid":27477,"ts":326458680532,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":152,"tdur":31,"tts":372897},
-{"pid":27443,"tid":27477,"ts":326458680532,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":31,"tts":372897},
-{"pid":27443,"tid":27477,"ts":326458680715,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372958},
-{"pid":27443,"tid":27477,"ts":326458680715,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372958},
-{"pid":27443,"tid":27477,"ts":326458680745,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":372989},
-{"pid":27443,"tid":27477,"ts":326458680745,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":372989},
-{"pid":27443,"tid":27477,"ts":326458680776,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":373020},
-{"pid":27443,"tid":27477,"ts":326458680806,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373050},
-{"pid":27443,"tid":27477,"ts":326458680806,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":373050},
-{"pid":27443,"tid":27477,"ts":326458680837,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373081},
-{"pid":27443,"tid":27477,"ts":326458680867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373111},
-{"pid":27443,"tid":27477,"ts":326458680867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":373111},
-{"pid":27443,"tid":27477,"ts":326458680959,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":373203},
-{"pid":27443,"tid":27477,"ts":326458680990,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373233},
-{"pid":27443,"tid":27477,"ts":326458681020,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373264},
-{"pid":27443,"tid":27477,"ts":326458681020,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":373264},
-{"pid":27443,"tid":27477,"ts":326458681051,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373294},
-{"pid":27443,"tid":27477,"ts":326458681081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373325},
-{"pid":27443,"tid":27477,"ts":326458681081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":373325},
-{"pid":27443,"tid":27477,"ts":326458681112,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":373355},
-{"pid":27443,"tid":27477,"ts":326458681173,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":373416},
-{"pid":27443,"tid":27477,"ts":326458681173,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":373416},
-{"pid":27443,"tid":27477,"ts":326458681173,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":0,"tts":373447},
-{"pid":27443,"tid":27477,"ts":326458681234,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":373477,"id":"0xaf88a89ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458681234,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":373477},
-{"pid":27443,"tid":27477,"ts":326458681417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":373508},
-{"pid":27443,"tid":27477,"ts":326458681417,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":373508},
-{"pid":27443,"tid":27477,"ts":326458681447,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":373538,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458681447,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":373538},
-{"pid":27443,"tid":27477,"ts":326458681478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":373569,"id":"0xaf88a89ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458681478,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":373569},
-{"pid":27443,"tid":27477,"ts":326458681478,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":373569},
-{"pid":27443,"tid":27477,"ts":326458681508,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":373599,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458681508,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":373599},
-{"pid":27443,"tid":27477,"ts":326458681508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":373599,"id":"0xaf88a898f182217a"},
-{"pid":27443,"tid":27477,"ts":326458681539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":373630,"id":"0xaf88a898f182217a"},
-{"pid":27443,"tid":27477,"ts":326458681539,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":373630},
-{"pid":27443,"tid":27477,"ts":326458681569,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":373660},
-{"pid":27443,"tid":27477,"ts":326458681569,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":373660},
-{"pid":27443,"tid":27477,"ts":326458681569,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":373660},
-{"pid":27443,"tid":27477,"ts":326458681600,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":373691},
-{"pid":27443,"tid":27477,"ts":326458681600,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":373691},
-{"pid":27443,"tid":27477,"ts":326458681661,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":373752},
-{"pid":27443,"tid":27477,"ts":326458681661,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":373752},
-{"pid":27443,"tid":27477,"ts":326458684072,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":373844,"id":"0xaf88a899f182217a"},
-{"pid":27443,"tid":27477,"ts":326458684103,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":396,"tdur":183,"tts":373874},
-{"pid":27443,"tid":27477,"ts":326458684103,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":31,"tts":373874},
-{"pid":27443,"tid":27477,"ts":326458684347,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":152,"tts":373905},
-{"pid":27443,"tid":27477,"ts":326458684377,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":373935,"id":"0x300000034"},
-{"pid":27443,"tid":27477,"ts":326458684377,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":373935},
-{"pid":27443,"tid":27477,"ts":326458684408,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":373966,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458684438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":373996,"id":"0xaf88ab9af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458684469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":374027,"id":"0xaf88a966f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458684499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458683},"tts":374088,"id":"0xaf88a881f182217a"},
-{"pid":27443,"tid":27477,"ts":326458684530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":374088},
-{"pid":27443,"tid":27477,"ts":326458684530,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":374088},
-{"pid":27443,"tid":27477,"ts":326458684560,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":374118},
-{"pid":27443,"tid":27477,"ts":326458684591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":374149,"id":"0xaf88a89af182217a"},
-{"pid":27443,"tid":27477,"ts":326458684591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":374149},
-{"pid":27443,"tid":27477,"ts":326458684621,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":374179},
-{"pid":27443,"tid":27477,"ts":326458684652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":374210,"id":"0xaf88ab9bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458688162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":374271,"id":"0xaf88a89bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458688192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":306,"tdur":306,"tts":374301},
-{"pid":27443,"tid":27477,"ts":326458688223,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458680530.0,"frame_time_us":326458683805.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":244,"tdur":244,"tts":374332},
-{"pid":27443,"tid":27477,"ts":326458688223,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458680530.0,"frame_time_us":326458683805.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":244,"tdur":244,"tts":374332},
-{"pid":27443,"tid":27477,"ts":326458688284,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":0,"tts":374423},
-{"pid":27443,"tid":27477,"ts":326458688314,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":83},"tts":374423},
-{"pid":27443,"tid":27477,"ts":326458688375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":374484,"id":"0xaf88ab94f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458688406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":374515,"id":"0xaf88a961f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458688437,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":374546},
-{"pid":27443,"tid":27477,"ts":326458688437,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":0,"tts":374576},
-{"pid":27443,"tid":27477,"ts":326458688467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":374576,"id":"0xaf88a894f182217a"},
-{"pid":27443,"tid":27477,"ts":326458688498,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":374607,"id":"0xaf88a894f182217a"},
-{"pid":27443,"tid":27477,"ts":326458688498,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2594,"tdur":1678,"tts":374607},
-{"pid":27443,"tid":27477,"ts":326458688498,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2594,"tdur":1648,"tts":374637},
-{"pid":27443,"tid":27477,"ts":326458688528,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1984,"tdur":1343,"tts":374637},
-{"pid":27443,"tid":27477,"ts":326458688528,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":82},"dur":977,"tdur":824,"tts":374637},
-{"pid":27443,"tid":27477,"ts":326458688559,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":82},"dur":427,"tdur":274,"tts":374668},
-{"pid":27443,"tid":27477,"ts":326458688986,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":82},"dur":30,"tdur":31,"tts":374942},
-{"pid":27443,"tid":27477,"ts":326458689016,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":82},"tts":374973},
-{"pid":27443,"tid":27477,"ts":326458689200,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":375156},
-{"pid":27443,"tid":27477,"ts":326458689200,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":31,"tts":375186},
-{"pid":27443,"tid":27477,"ts":326458689230,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":375186},
-{"pid":27443,"tid":27477,"ts":326458689230,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":375186},
-{"pid":27443,"tid":27477,"ts":326458689261,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":375217,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458689291,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":375247},
-{"pid":27443,"tid":27477,"ts":326458689505,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":375461},
-{"pid":27443,"tid":27477,"ts":326458689535,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":274,"tts":375492},
-{"pid":27443,"tid":27477,"ts":326458689535,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":375492},
-{"pid":27443,"tid":27477,"ts":326458689535,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":183,"tts":375522},
-{"pid":27443,"tid":27477,"ts":326458689627,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":0,"tdur":0,"tts":375583},
-{"pid":27443,"tid":27477,"ts":326458689657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":375614,"id":"0xaf88adabf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458690268,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":375736,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458690298,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":375766,"id":"0x300000032"},
-{"pid":27443,"tid":27477,"ts":326458690329,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":375797},
-{"pid":27443,"tid":27477,"ts":326458690390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":375888,"id":"0xaf88ada4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458690481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":375949,"id":"0xaf88ab95f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458690481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":375949,"id":"0xaf88a963f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458690512,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":549,"tdur":275,"tts":375980},
-{"pid":27443,"tid":27477,"ts":326458690512,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":30,"tts":375980},
-{"pid":27443,"tid":27477,"ts":326458690817,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":244,"tdur":245,"tts":376010},
-{"pid":27443,"tid":27477,"ts":326458690817,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":62,"tts":376010},
-{"pid":27443,"tid":27477,"ts":326458690878,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":376102},
-{"pid":27443,"tid":27477,"ts":326458690909,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":376102},
-{"pid":27443,"tid":27477,"ts":326458690909,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":376102},
-{"pid":27443,"tid":27477,"ts":326458690939,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":91,"tts":376133},
-{"pid":27443,"tid":27477,"ts":326458690939,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":376133,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458690939,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":376163},
-{"pid":27443,"tid":27477,"ts":326458690970,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":376163},
-{"pid":27443,"tid":27477,"ts":326458691031,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":376224,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458691031,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":376255,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458691061,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":376255,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458691092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376285,"id":"0xaf88a895f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":376285},
-{"pid":27443,"tid":27477,"ts":326458691122,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":91,"tts":376316},
-{"pid":27443,"tid":27477,"ts":326458691122,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":376316,"id":"0x300000035"},
-{"pid":27443,"tid":27477,"ts":326458691153,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":376346},
-{"pid":27443,"tid":27477,"ts":326458691153,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":376346,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458691183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":376377,"id":"0xaf88ab96f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458691428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376438,"id":"0xaf88a896f182217a"},
-{"pid":27443,"tid":27459,"ts":326458685934,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":793,"tdur":732,"tts":6147993},
-{"pid":27443,"tid":27459,"ts":326458685934,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":61,"tts":6147993},
-{"pid":27443,"tid":27459,"ts":326458686300,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6148298},
-{"pid":27443,"tid":27459,"ts":326458686331,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6148329},
-{"pid":27443,"tid":27459,"ts":326458686636,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":37,"frame":"0x78c60000"}},"tts":6148634,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458686666,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6148664},
-{"pid":27443,"tid":27459,"ts":326458686758,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":61,"tts":6148756},
-{"pid":27443,"tid":27459,"ts":326458686788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6148786,"id":"0xaf88adaaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458687063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6148878,"id":"0xaf88a967f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458687063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6148878},
-{"pid":27443,"tid":27459,"ts":326458687094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6148908,"id":"0xaf88a960f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458687094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6148939,"id":"0xaf88ab9bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458687124,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6148939},
-{"pid":27443,"tid":27459,"ts":326458687124,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":6148939},
-{"pid":27443,"tid":27459,"ts":326458687185,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6149000,"id":"0xaf88a960f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458687185,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6149000},
-{"pid":27443,"tid":27459,"ts":326458688467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6149092,"id":"0xaf88a961f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458688467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13612,"tdur":11262,"tts":6149092},
-{"pid":27443,"tid":27459,"ts":326458688498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6149122,"id":"0xaf88a962f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458688498,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6149122,"id":"0xaf88ab94f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458688498,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13581,"tdur":11232,"tts":6149122},
-{"pid":27443,"tid":27459,"ts":326458688528,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":83},"tts":6149153},
-{"pid":27443,"tid":27459,"ts":326458688528,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6149153},
-{"pid":27443,"tid":27459,"ts":326458688559,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8728,"tdur":8026,"tts":6149214},
-{"pid":27443,"tid":27459,"ts":326458688589,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":6149214},
-{"pid":27443,"tid":27459,"ts":326458688650,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":36,"frame":"0x78c60000"}},"dur":8454,"tdur":7782,"tts":6149275},
-{"pid":27443,"tid":27459,"ts":326458688711,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":8363,"tdur":7691,"tts":6149336},
-{"pid":27443,"tid":27459,"ts":326458688742,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6149366},
-{"pid":27443,"tid":27459,"ts":326458689077,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6149580},
-{"pid":27443,"tid":27459,"ts":326458689169,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":6149641},
-{"pid":27443,"tid":27459,"ts":326458693289,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6153242},
-{"pid":27443,"tid":27459,"ts":326458694052,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6154036},
-{"pid":27443,"tid":27459,"ts":326458697074,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6157027},
-{"pid":27443,"tid":27459,"ts":326458697135,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":37,"frame":"0x78c60000"}},"dur":152,"tdur":122,"tts":6157088},
-{"pid":27443,"tid":27459,"ts":326458697196,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":6157149},
-{"pid":27443,"tid":27459,"ts":326458697226,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6157179},
-{"pid":27443,"tid":27459,"ts":326458697257,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6157210},
-{"pid":27443,"tid":27459,"ts":326458697287,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2473,"tdur":2473,"tts":6157240},
-{"pid":27443,"tid":27459,"ts":326458697318,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6157271},
-{"pid":27443,"tid":27459,"ts":326458697348,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6157302},
-{"pid":27443,"tid":27459,"ts":326458697348,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6157302},
-{"pid":27443,"tid":27459,"ts":326458697776,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6157729},
-{"pid":27443,"tid":27459,"ts":326458697806,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6157759},
-{"pid":27443,"tid":27459,"ts":326458697837,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1923,"tdur":1923,"tts":6157790},
-{"pid":27443,"tid":27459,"ts":326458697837,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1770,"tdur":1770,"tts":6157790},
-{"pid":27443,"tid":27459,"ts":326458697867,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":306,"tdur":306,"tts":6157820},
-{"pid":27443,"tid":27459,"ts":326458698173,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6158126},
-{"pid":27443,"tid":27459,"ts":326458698356,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":6158309},
-{"pid":27443,"tid":27459,"ts":326458698447,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":6158400},
-{"pid":27443,"tid":27459,"ts":326458698478,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":6158431},
-{"pid":27443,"tid":27459,"ts":326458699607,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":6159591},
-{"pid":27443,"tid":27459,"ts":326458699668,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":6159621},
-{"pid":27443,"tid":27459,"ts":326458699760,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":83},"dur":457,"tdur":427,"tts":6159713},
-{"pid":27443,"tid":27459,"ts":326458699790,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":397,"tts":6159743},
-{"pid":27443,"tid":27459,"ts":326458700126,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":83},"dur":30,"tdur":0,"tts":6160048},
-{"pid":27443,"tid":27459,"ts":326458700156,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":83},"dur":0,"tdur":0,"tts":6160079},
-{"pid":27443,"tid":27459,"ts":326458700156,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":83},"dur":31,"tdur":30,"tts":6160079},
-{"pid":27443,"tid":27459,"ts":326458700187,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":83},"dur":0,"tdur":0,"tts":6160109},
-{"pid":27443,"tid":27459,"ts":326458700187,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":83},"dur":30,"tdur":0,"tts":6160140},
-{"pid":27443,"tid":27459,"ts":326458700217,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6160140,"id":"0x300000033"},
-{"pid":27443,"tid":27459,"ts":326458700248,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6160170,"id":"0x300000034"},
-{"pid":27443,"tid":27459,"ts":326458700248,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1770,"tdur":123,"tts":6160170},
-{"pid":27443,"tid":27459,"ts":326458700278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6160201,"id":"0xaf88a8acf182217a"},
-{"pid":27443,"tid":27459,"ts":326458702049,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6160323},
-{"pid":27443,"tid":27466,"ts":326458686911,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249015,"id":"0xccc3ee02"},
-{"pid":27443,"tid":27466,"ts":326458688040,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":249107},
-{"pid":27443,"tid":27466,"ts":326458688070,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":249137},
-{"pid":27443,"tid":27466,"ts":326458688070,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249137,"id":"0xba448102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458688101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":249168,"id":"0xaf88a89bf182217a"},
-{"pid":27443,"tid":27466,"ts":326458688894,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":249259},
-{"pid":27443,"tid":27466,"ts":326458688925,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":249290},
-{"pid":27443,"tid":27466,"ts":326458688925,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249290,"id":"0xba448202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458688955,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":249320},
-{"pid":27443,"tid":27466,"ts":326458688986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":249351,"id":"0xaf88a895f182217a"},
-{"pid":27443,"tid":27466,"ts":326458689749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":249442,"id":"0xaf88adabf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458689749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":249442},
-{"pid":27443,"tid":27466,"ts":326458689749,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249442,"id":"0xccc3ef06"},
-{"pid":27443,"tid":27466,"ts":326458690146,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":249534},
-{"pid":27443,"tid":27466,"ts":326458690176,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":249565},
-{"pid":27443,"tid":27466,"ts":326458690176,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249565,"id":"0xc4c12c0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458690481,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":249687,"id":"0xaf88ada4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458690481,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":249687},
-{"pid":27443,"tid":27466,"ts":326458690481,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249687,"id":"0xccc3f002"},
-{"pid":27443,"tid":27466,"ts":326458692160,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":249778},
-{"pid":27443,"tid":27466,"ts":326458692191,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":249809},
-{"pid":27443,"tid":27466,"ts":326458692191,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":249839,"id":"0xba448302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458692252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":249870,"id":"0xaf88a893f182217a"},
-{"pid":27443,"tid":27466,"ts":326458701377,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":249961},
-{"pid":27443,"tid":27466,"ts":326458701408,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":249992},
-{"pid":27443,"tid":27466,"ts":326458701408,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250022,"id":"0xba448502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458701469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":250053,"id":"0xaf88a8adf182217a"},
-{"pid":27443,"tid":27466,"ts":326458703453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250175,"id":"0xaf88ada5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458703453,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":250175},
-{"pid":27443,"tid":27466,"ts":326458703483,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250205,"id":"0xccc3f202"},
-{"pid":27443,"tid":27466,"ts":326458706444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250328,"id":"0xaf88ada6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458706474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":250328},
-{"pid":27443,"tid":27466,"ts":326458706474,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250328,"id":"0xccc3f306"},
-{"pid":27443,"tid":27466,"ts":326458706688,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":250450},
-{"pid":27443,"tid":27466,"ts":326458706718,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":250480},
-{"pid":27443,"tid":27466,"ts":326458706749,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250511,"id":"0xc4c12f0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458707084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250633,"id":"0xaf88ada7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458707084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":250633},
-{"pid":27443,"tid":27466,"ts":326458707115,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250663,"id":"0xccc3f402"},
-{"pid":27443,"tid":27466,"ts":326458709129,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":250755},
-{"pid":27443,"tid":27466,"ts":326458709160,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":250785},
-{"pid":27443,"tid":27466,"ts":326458709160,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250785,"id":"0xba448602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458709190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":250816,"id":"0xaf88a8a6f182217a"},
-{"pid":27443,"tid":27466,"ts":326458718530,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":250907},
-{"pid":27443,"tid":27466,"ts":326458718560,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":250938},
-{"pid":27443,"tid":27466,"ts":326458718560,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":250938,"id":"0xba448802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458718621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":250999,"id":"0xaf88a8a0f182217a"},
-{"pid":27443,"tid":27466,"ts":326458734766,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":251060},{"pid":27443,"tid":27466,"ts":326458734797,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":31,"tdur":30,"tts":251091},
-{"pid":27443,"tid":27466,"ts":326458734797,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251091,"id":"0xba448902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458734828,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":251121,"id":"0xaf88a8a2f182217a"},
-{"pid":27443,"tid":27466,"ts":326458735194,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251182,"id":"0xaf88ada0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458735194,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":251182},
-{"pid":27443,"tid":27466,"ts":326458735224,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251213,"id":"0xccc3f502"},
-{"pid":27443,"tid":27466,"ts":326458823947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251335,"id":"0xaf88ada1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458823978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":251365},
-{"pid":27443,"tid":27466,"ts":326458823978,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251365,"id":"0xccc3f602"},
-{"pid":27443,"tid":27466,"ts":326458825137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251518,"id":"0xaf88ada2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825137,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":251518},
-{"pid":27443,"tid":27466,"ts":326458825137,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251518,"id":"0xccc3f702"},
-{"pid":27443,"tid":27466,"ts":326458825198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251579,"id":"0xaf88ada3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":251579},
-{"pid":27443,"tid":27466,"ts":326458825198,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251609,"id":"0xccc3f802"},
-{"pid":27443,"tid":27466,"ts":326458825259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251640,"id":"0xaf88adbcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458691428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":376438},
-{"pid":27443,"tid":27477,"ts":326458691458,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":376468},
-{"pid":27443,"tid":27477,"ts":326458691458,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":376468,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458691489,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":376499},
-{"pid":27443,"tid":27477,"ts":326458691489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":376499,"id":"0xaf88a891f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376529,"id":"0xaf88a897f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":376529},
-{"pid":27443,"tid":27477,"ts":326458691519,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":376529},
-{"pid":27443,"tid":27477,"ts":326458691550,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":376560,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458691550,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":376560},
-{"pid":27443,"tid":27477,"ts":326458691550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":376590,"id":"0xaf88a892f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376590,"id":"0xaf88a890f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":376590},
-{"pid":27443,"tid":27477,"ts":326458691611,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":376621},
-{"pid":27443,"tid":27477,"ts":326458691611,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":376621,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458691611,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":376621},
-{"pid":27443,"tid":27477,"ts":326458691641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376651,"id":"0xaf88a891f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":376651},
-{"pid":27443,"tid":27477,"ts":326458691641,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":123,"tts":376651},
-{"pid":27443,"tid":27477,"ts":326458691672,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":376682},
-{"pid":27443,"tid":27477,"ts":326458691672,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":376682},
-{"pid":27443,"tid":27477,"ts":326458691672,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":61,"tts":376682},
-{"pid":27443,"tid":27477,"ts":326458691702,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":376712},
-{"pid":27443,"tid":27477,"ts":326458691763,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":376774},
-{"pid":27443,"tid":27477,"ts":326458691763,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":376774},
-{"pid":27443,"tid":27477,"ts":326458691794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376804,"id":"0xaf88a892f182217a"},
-{"pid":27443,"tid":27477,"ts":326458691794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":376804},
-{"pid":27443,"tid":27477,"ts":326458691794,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":376804},
-{"pid":27443,"tid":27477,"ts":326458691824,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":376835},
-{"pid":27443,"tid":27477,"ts":326458691824,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":376835},
-{"pid":27443,"tid":27477,"ts":326458691824,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":376835},
-{"pid":27443,"tid":27477,"ts":326458691855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":376865},
-{"pid":27443,"tid":27477,"ts":326458691885,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":376896},
-{"pid":27443,"tid":27477,"ts":326458691885,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":376896},
-{"pid":27443,"tid":27477,"ts":326458692465,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":376926,"id":"0xaf88a893f182217a"},
-{"pid":27443,"tid":27477,"ts":326458692496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":376957},
-{"pid":27443,"tid":27477,"ts":326458692496,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":0,"tts":376987},
-{"pid":27443,"tid":27477,"ts":326458692526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":376987,"id":"0xaf88ab97f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458700309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":377048,"id":"0xaf88a8acf182217a"},
-{"pid":27443,"tid":27477,"ts":326458700339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2595,"tdur":1648,"tts":377079},
-{"pid":27443,"tid":27477,"ts":326458700339,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2595,"tdur":1648,"tts":377079},
-{"pid":27443,"tid":27477,"ts":326458700339,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":377079},
-{"pid":27443,"tid":27477,"ts":326458700370,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2564,"tdur":1618,"tts":377109},
-{"pid":27443,"tid":27477,"ts":326458700370,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2564,"tdur":1618,"tts":377109},
-{"pid":27443,"tid":27477,"ts":326458700370,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":0,"tts":377140},
-{"pid":27443,"tid":27477,"ts":326458700401,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":377140},
-{"pid":27443,"tid":27477,"ts":326458700401,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":377140,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458700431,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":377170},
-{"pid":27443,"tid":27477,"ts":326458700462,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1465,"tdur":519,"tts":377201},
-{"pid":27443,"tid":27477,"ts":326458701988,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":915,"tdur":915,"tts":377781},
-{"pid":27443,"tid":27477,"ts":326458701988,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":83},"dur":335,"tdur":305,"tts":377811},
-{"pid":27443,"tid":27477,"ts":326458702323,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":83},"dur":31,"tdur":31,"tts":378116},
-{"pid":27443,"tid":27477,"ts":326458702384,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":83},"tts":378177},
-{"pid":27443,"tid":27477,"ts":326458702537,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":378330},
-{"pid":27443,"tid":27477,"ts":326458702567,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":378361},
-{"pid":27443,"tid":27477,"ts":326458702567,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":378361},
-{"pid":27443,"tid":27477,"ts":326458702567,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":378361},
-{"pid":27443,"tid":27477,"ts":326458702690,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":378513},
-{"pid":27443,"tid":27477,"ts":326458702720,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":378513},
-{"pid":27443,"tid":27477,"ts":326458702720,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":378513},
-{"pid":27443,"tid":27477,"ts":326458702751,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":378544},
-{"pid":27443,"tid":27477,"ts":326458702751,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":378544,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458702751,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":378544},
-{"pid":27443,"tid":27477,"ts":326458702781,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":378574},
-{"pid":27443,"tid":27459,"ts":326458702140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6160415,"id":"0xaf88a962f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458702140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":6160445},
-{"pid":27443,"tid":27459,"ts":326458702171,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6160445,"id":"0xaf88a97cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458702201,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6160476,"id":"0xaf88ab95f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458702201,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":61,"tdur":61,"tts":6160476},
-{"pid":27443,"tid":27459,"ts":326458702232,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6160506},
-{"pid":27443,"tid":27459,"ts":326458702293,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6160567,"id":"0xaf88a963f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458702293,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":6160567},
-{"pid":27443,"tid":27459,"ts":326458702323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6160598,"id":"0xaf88ab96f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458702323,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1130,"tdur":1129,"tts":6160598},
-{"pid":27443,"tid":27459,"ts":326458702384,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1069,"tdur":1068,"tts":6160659},
-{"pid":27443,"tid":27459,"ts":326458702415,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6160689,"id":"0x300000035"},
-{"pid":27443,"tid":27459,"ts":326458702415,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":885,"tts":6160720},
-{"pid":27443,"tid":27459,"ts":326458702445,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":6160720},
-{"pid":27443,"tid":27459,"ts":326458702506,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6160781},
-{"pid":27443,"tid":27459,"ts":326458702567,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6160842},
-{"pid":27443,"tid":27459,"ts":326458702598,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6160872},
-{"pid":27443,"tid":27459,"ts":326458702629,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6160903},
-{"pid":27443,"tid":27459,"ts":326458702659,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":671,"tdur":672,"tts":6160933},
-{"pid":27443,"tid":27459,"ts":326458702781,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":519,"tdur":458,"tts":6161086},
-{"pid":27443,"tid":27459,"ts":326458702812,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6161086},
-{"pid":27443,"tid":27459,"ts":326458703147,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":38,"frame":"0x78c60000"}},"tts":6161422,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458703178,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6161452},
-{"pid":27443,"tid":27459,"ts":326458703178,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6161483,"id":"0xaf88a8aff182217a"},
-{"pid":27443,"tid":27459,"ts":326458703269,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6161544},
-{"pid":27443,"tid":27459,"ts":326458703361,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6161635},
-{"pid":27443,"tid":27459,"ts":326458703392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6161666,"id":"0xaf88ada5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458703514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6161788,"id":"0xaf88a97cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458703514,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6161788},
-{"pid":27443,"tid":27459,"ts":326458703544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6161819,"id":"0xaf88a97df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458703544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6161819,"id":"0xaf88ab97f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458703544,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":0,"tts":6161849},
-{"pid":27443,"tid":27459,"ts":326458703575,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6161849},
-{"pid":27443,"tid":27459,"ts":326458703636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6161910,"id":"0xaf88a97df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458703636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6161910},
-{"pid":27443,"tid":27459,"ts":326458704673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458704},"tts":6161971,"id":"0xaf88a951f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458704704,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":6162002},
-{"pid":27443,"tid":27459,"ts":326458704704,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6162002,"id":"0xaf88a97ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458704765,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6162063,"id":"0xaf88a97ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458704765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":91,"tts":6162063},
-{"pid":27443,"tid":27459,"ts":326458704795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6162093,"id":"0xaf88a97ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458704795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6162093,"id":"0xaf88ab81f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458704795,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6162093},
-{"pid":27443,"tid":27459,"ts":326458704826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6162124,"id":"0xaf88ab90f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458704856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6162154,"id":"0xaf88a978f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458704887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6162185,"id":"0xaf88a97ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458704918,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6162215},
-{"pid":27443,"tid":27459,"ts":326458705345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6162276,"id":"0xaf88a979f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458705345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10011,"tdur":10011,"tts":6162276},
-{"pid":27443,"tid":27459,"ts":326458705375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6162307,"id":"0xaf88a97af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458705375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6162307,"id":"0xaf88ab91f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458705375,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9950,"tdur":9919,"tts":6162337},
-{"pid":27443,"tid":27459,"ts":326458705406,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":84},"tts":6162337},
-{"pid":27443,"tid":27459,"ts":326458705406,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6162337},
-{"pid":27443,"tid":27459,"ts":326458705467,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9187,"tdur":9187,"tts":6162398},
-{"pid":27443,"tid":27459,"ts":326458705467,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":6162429},
-{"pid":27443,"tid":27459,"ts":326458705528,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":38,"frame":"0x78c60000"}},"dur":9126,"tdur":9096,"tts":6162459},
-{"pid":27443,"tid":27459,"ts":326458705589,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9034,"tdur":9035,"tts":6162520},
-{"pid":27443,"tid":27459,"ts":326458705620,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6162551},
-{"pid":27443,"tid":27459,"ts":326458705803,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6162734},
-{"pid":27443,"tid":27459,"ts":326458705833,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":31,"tts":6162795},
-{"pid":27443,"tid":27459,"ts":326458707756,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6164718},
-{"pid":27443,"tid":27459,"ts":326458708122,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6165054},
-{"pid":27443,"tid":27459,"ts":326458708275,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6165206},
-{"pid":27443,"tid":27477,"ts":326458702842,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":378635,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458702873,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":378666,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458702903,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":378696,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458702964,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":378757,"id":"0xaf88a8adf182217a"},
-{"pid":27443,"tid":27477,"ts":326458702964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":378757},
-{"pid":27443,"tid":27477,"ts":326458702995,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458697206.0,"frame_time_us":326458700481.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":378788},
-{"pid":27443,"tid":27477,"ts":326458703025,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458697206.0,"frame_time_us":326458700481.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":378818},
-{"pid":27443,"tid":27477,"ts":326458703056,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458717147},"dur":30,"tdur":30,"tts":378849},
-{"pid":27443,"tid":27477,"ts":326458703056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":378879,"id":"0xaf88a8aef182217a"},
-{"pid":27443,"tid":27477,"ts":326458703330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":378971,"id":"0xaf88a8aff182217a"},
-{"pid":27443,"tid":27477,"ts":326458703330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":62,"tdur":0,"tts":379001},
-{"pid":27443,"tid":27477,"ts":326458703361,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":379001},
-{"pid":27443,"tid":27477,"ts":326458703392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":379032,"id":"0xaf88a8a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458703392,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":457,"tdur":92,"tts":379032},
-{"pid":27443,"tid":27477,"ts":326458703422,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":427,"tdur":92,"tts":379032},
-{"pid":27443,"tid":27477,"ts":326458703422,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":31,"tts":379032},
-{"pid":27443,"tid":27477,"ts":326458703788,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":379093,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458703819,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":379093},
-{"pid":27443,"tid":27477,"ts":326458703819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":379093,"id":"0xaf88a8abf182217a"},
-{"pid":27443,"tid":27477,"ts":326458703849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":379124,"id":"0xaf88a8a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458703849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":379124},
-{"pid":27443,"tid":27477,"ts":326458703880,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":379154},
-{"pid":27443,"tid":27477,"ts":326458703880,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,false,false]}},"tts":379154,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458703880,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":379154},
-{"pid":27443,"tid":27477,"ts":326458703910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":379185,"id":"0xaf88a8aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326458703910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":379185},
-{"pid":27443,"tid":27477,"ts":326458703910,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":379185},
-{"pid":27443,"tid":27477,"ts":326458703941,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":379215,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458703941,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":379215},
-{"pid":27443,"tid":27477,"ts":326458703941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":379215,"id":"0xaf88a8a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458703971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":379246,"id":"0xaf88a8abf182217a"},
-{"pid":27443,"tid":27477,"ts":326458703971,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":379246},
-{"pid":27443,"tid":27477,"ts":326458704002,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":379276},
-{"pid":27443,"tid":27477,"ts":326458704002,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":379276},
-{"pid":27443,"tid":27477,"ts":326458704002,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":379276},
-{"pid":27443,"tid":27477,"ts":326458704032,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":379307},
-{"pid":27443,"tid":27477,"ts":326458704032,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":379307},
-{"pid":27443,"tid":27477,"ts":326458704093,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":379368},
-{"pid":27443,"tid":27477,"ts":326458704093,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":379368},
-{"pid":27443,"tid":27477,"ts":326458704124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":379398,"id":"0xaf88a8a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458704124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1251,"tdur":1252,"tts":379398},
-{"pid":27443,"tid":27477,"ts":326458704155,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1220,"tdur":1221,"tts":379429},
-{"pid":27443,"tid":27477,"ts":326458704155,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":379429},
-{"pid":27443,"tid":27477,"ts":326458704155,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":379429},
-{"pid":27443,"tid":27477,"ts":326458704185,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":379459},
-{"pid":27443,"tid":27477,"ts":326458704185,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":379459},
-{"pid":27443,"tid":27477,"ts":326458704277,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1098,"tdur":1099,"tts":379551},
-{"pid":27443,"tid":27477,"ts":326458704277,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1098,"tdur":1099,"tts":379551},
-{"pid":27443,"tid":27477,"ts":326458704277,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":946,"tdur":916,"tts":379581},
-{"pid":27443,"tid":27477,"ts":326458704307,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":379581,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458704368,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":379642},
-{"pid":27443,"tid":27477,"ts":326458704399,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":379673},
-{"pid":27443,"tid":27477,"ts":326458704429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":379703},
-{"pid":27443,"tid":27477,"ts":326458704460,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379734},
-{"pid":27443,"tid":27477,"ts":326458704460,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":379734},
-{"pid":27443,"tid":27477,"ts":326458704490,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379765},
-{"pid":27443,"tid":27477,"ts":326458704521,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379795},
-{"pid":27443,"tid":27477,"ts":326458704521,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":379795},
-{"pid":27443,"tid":27477,"ts":326458704551,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379826},
-{"pid":27443,"tid":27477,"ts":326458704582,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379856},
-{"pid":27443,"tid":27477,"ts":326458704582,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":379856},
-{"pid":27443,"tid":27477,"ts":326458704612,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379887},
-{"pid":27443,"tid":27477,"ts":326458704612,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":379887},
-{"pid":27443,"tid":27477,"ts":326458704643,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379917},
-{"pid":27443,"tid":27477,"ts":326458704673,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":379948},
-{"pid":27443,"tid":27477,"ts":326458704673,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":379948},
-{"pid":27443,"tid":27477,"ts":326458704704,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":379978},
-{"pid":27443,"tid":27477,"ts":326458704734,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380009},
-{"pid":27443,"tid":27477,"ts":326458704734,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":380009},
-{"pid":27443,"tid":27477,"ts":326458704765,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380039},
-{"pid":27443,"tid":27477,"ts":326458704795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380070},
-{"pid":27443,"tid":27477,"ts":326458704795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":380070},
-{"pid":27443,"tid":27477,"ts":326458704826,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":380100},
-{"pid":27443,"tid":27477,"ts":326458704856,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380131},
-{"pid":27443,"tid":27477,"ts":326458704856,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":380131},
-{"pid":27443,"tid":27477,"ts":326458704887,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380161},
-{"pid":27443,"tid":27477,"ts":326458704979,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380253},
-{"pid":27443,"tid":27477,"ts":326458704979,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":380283},
-{"pid":27443,"tid":27477,"ts":326458705009,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":380283},
-{"pid":27443,"tid":27477,"ts":326458705040,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380314},
-{"pid":27443,"tid":27477,"ts":326458705040,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":380344},
-{"pid":27443,"tid":27477,"ts":326458705070,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":380344},
-{"pid":27443,"tid":27477,"ts":326458705101,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":380375},
-{"pid":27443,"tid":27477,"ts":326458705131,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":380405},
-{"pid":27443,"tid":27477,"ts":326458705162,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":380436},
-{"pid":27443,"tid":27477,"ts":326458705192,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":380466},
-{"pid":27443,"tid":27477,"ts":326458705192,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":0,"tts":380466},
-{"pid":27443,"tid":27477,"ts":326458705223,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":84},"tts":380497},
-{"pid":27443,"tid":27477,"ts":326458705284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":380558,"id":"0xaf88ab91f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458705284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":380558,"id":"0xaf88a979f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458705314,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":380589},
-{"pid":27443,"tid":27477,"ts":326458705345,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":380619},
-{"pid":27443,"tid":27477,"ts":326458705345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":380619,"id":"0xaf88a8a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458705375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":380650,"id":"0xaf88a8a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458705406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2014,"tdur":1404,"tts":380680},
-{"pid":27443,"tid":27477,"ts":326458705406,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2014,"tdur":1404,"tts":380680},
-{"pid":27443,"tid":27477,"ts":326458705406,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":380680},
-{"pid":27443,"tid":27477,"ts":326458705436,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1710,"tdur":1373,"tts":380711},
-{"pid":27443,"tid":27477,"ts":326458705436,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":83},"dur":763,"tdur":733,"tts":380741},
-{"pid":27443,"tid":27477,"ts":326458705467,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":83},"dur":244,"tdur":244,"tts":380741},
-{"pid":27443,"tid":27477,"ts":326458705711,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":83},"dur":31,"tdur":31,"tts":380985},
-{"pid":27443,"tid":27477,"ts":326458705742,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":83},"tts":381016},
-{"pid":27443,"tid":27477,"ts":326458705864,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":381138},
-{"pid":27443,"tid":27477,"ts":326458705894,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":381168},
-{"pid":27443,"tid":27477,"ts":326458705894,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":381168},
-{"pid":27443,"tid":27477,"ts":326458705894,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":381168},
-{"pid":27443,"tid":27477,"ts":326458705925,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":381199,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458705986,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":381260},
-{"pid":27443,"tid":27477,"ts":326458706199,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":381474},
-{"pid":27443,"tid":27477,"ts":326458706199,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":641,"tdur":305,"tts":381474},
-{"pid":27443,"tid":27477,"ts":326458706230,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":381504},
-{"pid":27443,"tid":27477,"ts":326458706230,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":214,"tts":381504},
-{"pid":27443,"tid":27477,"ts":326458706352,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":0,"tdur":0,"tts":381626},
-{"pid":27443,"tid":27477,"ts":326458706383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":381657,"id":"0xaf88ada6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458706840,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":381779,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458706871,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":381809,"id":"0x300000033"},
-{"pid":27443,"tid":27477,"ts":326458706871,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":381809,"id":"0x300000034"},
-{"pid":27443,"tid":27477,"ts":326458706901,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":381840},
-{"pid":27443,"tid":27477,"ts":326458707023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":381962,"id":"0xaf88ada7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458707084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":382023,"id":"0xaf88ab92f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458707115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382054,"id":"0xaf88a97bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458709282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382145,"id":"0xaf88a8a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458709282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":382145},
-{"pid":27443,"tid":27477,"ts":326458709343,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":382206},
-{"pid":27443,"tid":27477,"ts":326458709343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":382237,"id":"0xaf88ab93f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458715142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382298,"id":"0xaf88a8a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458715172,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":92,"tts":382328},
-{"pid":27443,"tid":27477,"ts":326458715172,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":92,"tdur":92,"tts":382328},
-{"pid":27443,"tid":27459,"ts":326458708275,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6165237},
-{"pid":27443,"tid":27459,"ts":326458708580,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6165511},
-{"pid":27443,"tid":27459,"ts":326458708794,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6165756},
-{"pid":27443,"tid":27459,"ts":326458708855,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6165786},
-{"pid":27443,"tid":27459,"ts":326458708977,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6165939},
-{"pid":27443,"tid":27459,"ts":326458709038,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6165969},
-{"pid":27443,"tid":27459,"ts":326458709221,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6166152},
-{"pid":27443,"tid":27459,"ts":326458709404,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6166336},
-{"pid":27443,"tid":27459,"ts":326458709618,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6166549},
-{"pid":27443,"tid":27459,"ts":326458711418,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6168350},
-{"pid":27443,"tid":27459,"ts":326458711876,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6168838},
-{"pid":27443,"tid":27459,"ts":326458714592,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6171524},
-{"pid":27443,"tid":27459,"ts":326458714654,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":183,"tdur":183,"tts":6171585},
-{"pid":27443,"tid":27459,"ts":326458714715,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":91,"tdur":92,"tts":6171646},
-{"pid":27443,"tid":27459,"ts":326458714715,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":30,"tdur":31,"tts":6171646},
-{"pid":27443,"tid":27459,"ts":326458714745,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":6171677},
-{"pid":27443,"tid":27459,"ts":326458714776,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":0,"tts":6171738},
-{"pid":27443,"tid":27459,"ts":326458714837,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":84},"dur":213,"tdur":214,"tts":6171768},
-{"pid":27443,"tid":27459,"ts":326458714837,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":213,"tdur":214,"tts":6171768},
-{"pid":27443,"tid":27459,"ts":326458715081,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6172012,"id":"0x300000035"},
-{"pid":27443,"tid":27459,"ts":326458715081,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6172012,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458715081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6172043,"id":"0xaf88a8a7f182217a"},
-{"pid":27443,"tid":27459,"ts":326458715172,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1975},"tts":6172104,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458715172,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6172104,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458715294,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901941.0,"time":326458687551.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458678000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458703239.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458715203.0},"coordinates":[{"x":574.5,"y":227.99038696289062}],"trace_id":12884901941.0}},"tts":6172226,"id":"0x300000035"},
-{"pid":27443,"tid":27459,"ts":326458715294,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6172226,"id":"0x300000035","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326458715325,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6172256},
-{"pid":27443,"tid":27459,"ts":326458715386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6172318,"id":"0xaf88a97af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458715386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6172318},
-{"pid":27443,"tid":27459,"ts":326458715417,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6172348,"id":"0xaf88a974f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458715447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6172379,"id":"0xaf88ab92f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458715447,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":6172379},
-{"pid":27443,"tid":27459,"ts":326458715447,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6172379},
-{"pid":27443,"tid":27459,"ts":326458715508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6172440,"id":"0xaf88a97bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458715508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6172440},
-{"pid":27443,"tid":27459,"ts":326458715539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6172470,"id":"0xaf88ab93f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458715539,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":6172470},
-{"pid":27443,"tid":27459,"ts":326458715539,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":6172470},
-{"pid":27443,"tid":27459,"ts":326458715600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6172531,"id":"0xaf88a974f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458715600,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1343,"tts":6172531},
-{"pid":27443,"tid":27459,"ts":326458715630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6172562,"id":"0xaf88a975f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458715630,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6172562,"id":"0xaf88ab8af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458715661,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":1251,"tdur":1252,"tts":6172592},
-{"pid":27443,"tid":27459,"ts":326458715661,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6172592,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458715661,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.486},"dur":1251,"tdur":1252,"tts":6172592},
-{"pid":27443,"tid":27459,"ts":326458715691,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6172623},
-{"pid":27443,"tid":27459,"ts":326458715722,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6172653},
-{"pid":27443,"tid":27459,"ts":326458716820,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6173783},
-{"pid":27443,"tid":27459,"ts":326458716851,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6173783},
-{"pid":27443,"tid":27459,"ts":326458716882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6173813,"id":"0xaf88abacf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458716912,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6173844,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458716973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6173905,"id":"0xaf88a975f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458716973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6173905},
-{"pid":27443,"tid":27459,"ts":326458735255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6173966,"id":"0xaf88a976f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458735285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":611,"tdur":244,"tts":6173996},
-{"pid":27443,"tid":27459,"ts":326458735285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6174027,"id":"0xaf88a977f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458735316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6174027,"id":"0xaf88abadf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458735316,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":549,"tdur":183,"tts":6174027},
-{"pid":27443,"tid":27459,"ts":326458735346,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":519,"tdur":153,"tts":6174057},
-{"pid":27443,"tid":27459,"ts":326458735377,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6174088,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458735377,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6174088,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458735438,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6174149,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458735438,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":30,"tts":6174149},
-{"pid":27443,"tid":27459,"ts":326458735835,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6174179,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27477,"ts":326458715233,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":31,"tts":382389},
-{"pid":27443,"tid":27477,"ts":326458717248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458717},"tts":382481,"id":"0xaf88a8aef182217a"},
-{"pid":27443,"tid":27477,"ts":326458717248,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":0,"tts":382511},
-{"pid":27443,"tid":27477,"ts":326458718652,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382542,"id":"0xaf88a8a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458718652,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":382542},
-{"pid":27443,"tid":27477,"ts":326458718682,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458713882.0,"frame_time_us":326458717157.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":382572},
-{"pid":27443,"tid":27477,"ts":326458718713,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458713882.0,"frame_time_us":326458717157.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":91,"tdur":91,"tts":382603},
-{"pid":27443,"tid":27477,"ts":326458718774,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458733823},"dur":30,"tdur":30,"tts":382664},
-{"pid":27443,"tid":27477,"ts":326458718774,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382664,"id":"0xaf88a8a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458733912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458733},"tts":382755,"id":"0xaf88a8a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458733942,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1710,"tdur":488,"tts":382786},
-{"pid":27443,"tid":27477,"ts":326458733942,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1710,"tdur":488,"tts":382786},
-{"pid":27443,"tid":27477,"ts":326458733942,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1008,"tdur":336,"tts":382786},
-{"pid":27443,"tid":27477,"ts":326458733973,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":977,"tdur":305,"tts":382817},
-{"pid":27443,"tid":27477,"ts":326458733973,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":382817},
-{"pid":27443,"tid":27477,"ts":326458734064,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":382908},
-{"pid":27443,"tid":27477,"ts":326458734064,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":382908},
-{"pid":27443,"tid":27477,"ts":326458734095,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":824,"tdur":152,"tts":382939},
-{"pid":27443,"tid":27477,"ts":326458734095,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":794,"tdur":122,"tts":382939},
-{"pid":27443,"tid":27477,"ts":326458734095,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":382939,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458734126,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":702,"tdur":31,"tts":382969},
-{"pid":27443,"tid":27477,"ts":326458734126,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":671,"tdur":0,"tts":382969},
-{"pid":27443,"tid":27477,"ts":326458734828,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":383000},
-{"pid":27443,"tid":27477,"ts":326458734889,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":383061,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458734919,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":383091,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458734919,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":383091,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458734950,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383152,"id":"0xaf88ada0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458734950,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":383152},
-{"pid":27443,"tid":27477,"ts":326458735194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":383244,"id":"0xaf88abadf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458735194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383244,"id":"0xaf88a976f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458735682,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383305,"id":"0xaf88a8a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458735682,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":383305},
-{"pid":27443,"tid":27477,"ts":326458735713,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458730559.0,"frame_time_us":326458733834.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":30,"tdur":31,"tts":383335},
-{"pid":27443,"tid":27477,"ts":326458735743,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":383366,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458735774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383396,"id":"0xaf88a8a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458735774,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":383396},
-{"pid":27443,"tid":27477,"ts":326458735774,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":383396},
-{"pid":27443,"tid":27477,"ts":326458735804,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":383427,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458735804,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":30,"tts":383427},
-{"pid":27443,"tid":27477,"ts":326458735835,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383457,"id":"0xaf88a8bef182217a"},
-{"pid":27443,"tid":27477,"ts":326458735865,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383488,"id":"0xaf88a8bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326458735865,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":383488},
-{"pid":27443,"tid":27477,"ts":326458735896,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":383519},
-{"pid":27443,"tid":27477,"ts":326458735896,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":383519,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458735926,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":383549},
-{"pid":27443,"tid":27477,"ts":326458735926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383549,"id":"0xaf88a8bff182217a"},
-{"pid":27443,"tid":27477,"ts":326458735957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383580,"id":"0xaf88a8bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326458735957,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":383580},
-{"pid":27443,"tid":27477,"ts":326458735987,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":383610},
-{"pid":27443,"tid":27477,"ts":326458735987,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":383610,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458735987,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":383610},
-{"pid":27443,"tid":27477,"ts":326458736018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383641,"id":"0xaf88a8bef182217a"},
-{"pid":27443,"tid":27477,"ts":326458736018,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":213,"tdur":213,"tts":383641},
-{"pid":27443,"tid":27477,"ts":326458736048,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":183,"tdur":183,"tts":383671},
-{"pid":27443,"tid":27477,"ts":326458736048,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":383671},
-{"pid":27443,"tid":27477,"ts":326458736048,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":383671},
-{"pid":27443,"tid":27477,"ts":326458736079,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":92,"tts":383732},
-{"pid":27443,"tid":27477,"ts":326458736109,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":383732},
-{"pid":27443,"tid":27477,"ts":326458736201,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":383824},
-{"pid":27443,"tid":27477,"ts":326458736201,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":383824},
-{"pid":27443,"tid":27477,"ts":326458736262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383885,"id":"0xaf88a8bff182217a"},
-{"pid":27443,"tid":27477,"ts":326458736262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":213,"tts":383885},
-{"pid":27443,"tid":27477,"ts":326458736262,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":214,"tdur":183,"tts":383915},
-{"pid":27443,"tid":27477,"ts":326458736292,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":383915},
-{"pid":27443,"tid":27459,"ts":326458735926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6174271,"id":"0xaf88a977f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458735926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":48955,"tdur":48619,"tts":6174271},
-{"pid":27443,"tid":27459,"ts":326458735957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6174301,"id":"0xaf88a970f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458735957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6174301,"id":"0xaf88abacf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458735987,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":48894,"tdur":48558,"tts":6174332},
-{"pid":27443,"tid":27459,"ts":326458735987,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6174332,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458735987,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.42},"dur":48863,"tdur":48527,"tts":6174332},
-{"pid":27443,"tid":27459,"ts":326458736018,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6174362},
-{"pid":27443,"tid":27459,"ts":326458736048,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6174393},
-{"pid":27443,"tid":27459,"ts":326458737178,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6175522},
-{"pid":27443,"tid":27459,"ts":326458737208,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6175553},
-{"pid":27443,"tid":27459,"ts":326458738185,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6176529},
-{"pid":27443,"tid":27459,"ts":326458738185,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6176529},
-{"pid":27443,"tid":27459,"ts":326458739314,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6177689},
-{"pid":27443,"tid":27459,"ts":326458739345,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6177689},
-{"pid":27443,"tid":27459,"ts":326458740352,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6178727},
-{"pid":27443,"tid":27459,"ts":326458740382,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6178727},
-{"pid":27443,"tid":27459,"ts":326458741389,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6179765},
-{"pid":27443,"tid":27459,"ts":326458741420,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6179765},
-{"pid":27443,"tid":27459,"ts":326458742274,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6180650},
-{"pid":27443,"tid":27459,"ts":326458742305,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6180650},
-{"pid":27443,"tid":27459,"ts":326458743190,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6181535},
-{"pid":27443,"tid":27459,"ts":326458743190,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6181565},
-{"pid":27443,"tid":27459,"ts":326458744014,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6182389},
-{"pid":27443,"tid":27459,"ts":326458744045,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6182389},
-{"pid":27443,"tid":27459,"ts":326458744838,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6183213},
-{"pid":27443,"tid":27459,"ts":326458744869,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6183213},
-{"pid":27443,"tid":27459,"ts":326458745906,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6184251},
-{"pid":27443,"tid":27459,"ts":326458745937,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6184282},
-{"pid":27443,"tid":27459,"ts":326458747005,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6185350},
-{"pid":27443,"tid":27459,"ts":326458747005,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6185350},
-{"pid":27443,"tid":27459,"ts":326458748073,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6186448},
-{"pid":27443,"tid":27459,"ts":326458748104,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6186448},
-{"pid":27443,"tid":27459,"ts":326458748867,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6187211},
-{"pid":27443,"tid":27459,"ts":326458748897,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6187242},
-{"pid":27443,"tid":27459,"ts":326458749477,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6187822},
-{"pid":27443,"tid":27459,"ts":326458749477,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6187822},
-{"pid":27443,"tid":27459,"ts":326458749538,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6187883},
-{"pid":27443,"tid":27459,"ts":326458749538,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6187883},
-{"pid":27443,"tid":27459,"ts":326458751003,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6189043},
-{"pid":27443,"tid":27459,"ts":326458751034,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6189043},
-{"pid":27443,"tid":27459,"ts":326458752072,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6190111},
-{"pid":27443,"tid":27459,"ts":326458752102,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6190111},
-{"pid":27443,"tid":27459,"ts":326458753536,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6191545},
-{"pid":27443,"tid":27459,"ts":326458753567,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6191576},
-{"pid":27443,"tid":27459,"ts":326458754971,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6192980},
-{"pid":27443,"tid":27459,"ts":326458755001,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6193010},
-{"pid":27443,"tid":27459,"ts":326458756161,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6194170},
-{"pid":27443,"tid":27459,"ts":326458756192,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6194201},
-{"pid":27443,"tid":27459,"ts":326458757260,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6195299},
-{"pid":27443,"tid":27459,"ts":326458757291,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6195299},
-{"pid":27443,"tid":27459,"ts":326458757840,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6195849},
-{"pid":27443,"tid":27459,"ts":326458757840,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6195849},
-{"pid":27443,"tid":27459,"ts":326458758847,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6196856},
-{"pid":27443,"tid":27459,"ts":326458758878,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6196886},
-{"pid":27443,"tid":27459,"ts":326458760190,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6198229},
-{"pid":27443,"tid":27459,"ts":326458760220,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6198229},
-{"pid":27443,"tid":27459,"ts":326458761289,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6199328},
-{"pid":27443,"tid":27459,"ts":326458761319,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6199328},
-{"pid":27443,"tid":27459,"ts":326458762082,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6200091},
-{"pid":27443,"tid":27459,"ts":326458762113,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6200122},
-{"pid":27443,"tid":27459,"ts":326458763150,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6201159},
-{"pid":27443,"tid":27459,"ts":326458763181,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6201190},
-{"pid":27443,"tid":27459,"ts":326458764493,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6202502},
-{"pid":27443,"tid":27477,"ts":326458736292,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":383946},
-{"pid":27443,"tid":27477,"ts":326458736323,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":122,"tdur":92,"tts":383976},
-{"pid":27443,"tid":27477,"ts":326458736354,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":383976},
-{"pid":27443,"tid":27477,"ts":326458736445,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":384068},
-{"pid":27443,"tid":27477,"ts":326458736445,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":384068},
-{"pid":27443,"tid":27477,"ts":326458839451,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384159,"id":"0xaf88a8b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326458839451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":184,"tts":384159},
-{"pid":27443,"tid":27477,"ts":326458839482,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":384190},
-{"pid":27443,"tid":27477,"ts":326458839512,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":384220,"id":"0x300000036"},
-{"pid":27443,"tid":27477,"ts":326458839512,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":384220},
-{"pid":27443,"tid":27477,"ts":326458839543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":384251,"id":"0xaf88aba4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458839573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384282,"id":"0xaf88a907f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458839573,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":384282,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458839604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":384312,"id":"0xaf88aba5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458839604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384343,"id":"0xaf88a900f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458840611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384404,"id":"0xaf88a8b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326458840611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":384404},
-{"pid":27443,"tid":27477,"ts":326458840642,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458831184.0,"frame_time_us":326458834459.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":30,"tdur":31,"tts":384434},
-{"pid":27443,"tid":27477,"ts":326458840672,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":384465,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458854437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384495,"id":"0xaf88a8baf182217a"},
-{"pid":27443,"tid":27477,"ts":326458854467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":30,"tts":384526},
-{"pid":27443,"tid":27477,"ts":326458854498,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458847850.0,"frame_time_us":326458851125.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":0,"tdur":0,"tts":384556},
-{"pid":27443,"tid":27477,"ts":326458854498,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":384556,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458870857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384617,"id":"0xaf88a8bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326458870887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":384617},
-{"pid":27443,"tid":27477,"ts":326458870948,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458864552.0,"frame_time_us":326458867827.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":31,"tdur":31,"tts":384678},
-{"pid":27443,"tid":27477,"ts":326458870948,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":384678,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458875984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384800,"id":"0xaf88a8b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326458875984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":384800},
-{"pid":27443,"tid":27477,"ts":326458875984,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":384800},
-{"pid":27443,"tid":27477,"ts":326458876015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384831,"id":"0xaf88adbbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458876076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384892,"id":"0xaf88a8b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458876106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384922,"id":"0xaf88a8b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326458876137,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":549,"tdur":153,"tts":384953},
-{"pid":27443,"tid":27477,"ts":326458876137,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":519,"tdur":122,"tts":384953},
-{"pid":27443,"tid":27477,"ts":326458876167,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-145.578,"BeginFrameArgs":{"deadline_us":326458730559.0,"frame_time_us":326458733834.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":384983,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458876167,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":31,"tts":384983},
-{"pid":27443,"tid":27477,"ts":326458876595,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-44.953,"BeginFrameArgs":{"deadline_us":326458831184.0,"frame_time_us":326458834459.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":385014,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458876625,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-28.287,"BeginFrameArgs":{"deadline_us":326458847850.0,"frame_time_us":326458851125.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":385045,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458876656,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-11.585,"BeginFrameArgs":{"deadline_us":326458864552.0,"frame_time_us":326458867827.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":385075,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458876656,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":385075,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458877724,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385136,"id":"0xaf88a8b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326458877754,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":385167},
-{"pid":27443,"tid":27477,"ts":326458877754,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":385167},
-{"pid":27443,"tid":27477,"ts":326458877785,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":385197,"id":"0x300000037"},
-{"pid":27443,"tid":27477,"ts":326458877785,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":385197},
-{"pid":27443,"tid":27477,"ts":326458877815,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":385228,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458877846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":385258,"id":"0xaf88aba1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458877846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":385289,"id":"0xaf88a91cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458889322,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385350,"id":"0xaf88a8b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326458889322,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":274,"tts":385350},
-{"pid":27443,"tid":27477,"ts":326458889352,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458881236.0,"frame_time_us":326458884511.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":183,"tts":385411},
-{"pid":27443,"tid":27477,"ts":326458889383,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458881236.0,"frame_time_us":326458884511.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":385411},
-{"pid":27443,"tid":27477,"ts":326458889413,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":85},"tts":385441},
-{"pid":27443,"tid":27477,"ts":326458889505,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":385533,"id":"0xaf88aba2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458889535,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":385563},
-{"pid":27443,"tid":27477,"ts":326458889535,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458901177},"dur":31,"tdur":31,"tts":385563},
-{"pid":27443,"tid":27477,"ts":326458889566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":385594,"id":"0xaf88a8b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458901286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458901},"tts":385746,"id":"0xaf88a8b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326458901286,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":4028,"tdur":0,"tts":385746},
-{"pid":27443,"tid":27477,"ts":326458905314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":385746},
-{"pid":27443,"tid":27477,"ts":326458905314,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":385746},
-{"pid":27443,"tid":27477,"ts":326458905589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385838,"id":"0xaf88a8b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326458905589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":385869},
-{"pid":27443,"tid":27459,"ts":326458764524,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6202533},
-{"pid":27443,"tid":27459,"ts":326458764951,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6202960},
-{"pid":27443,"tid":27459,"ts":326458764982,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6202991},
-{"pid":27443,"tid":27459,"ts":326458765989,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6203998},
-{"pid":27443,"tid":27459,"ts":326458765989,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6204028},
-{"pid":27443,"tid":27459,"ts":326458766508,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6204517},
-{"pid":27443,"tid":27459,"ts":326458766538,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6204547},
-{"pid":27443,"tid":27459,"ts":326458767790,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6205798},
-{"pid":27443,"tid":27459,"ts":326458767820,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6205829},
-{"pid":27443,"tid":27459,"ts":326458769621,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6207660},
-{"pid":27443,"tid":27459,"ts":326458769651,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6207660},
-{"pid":27443,"tid":27459,"ts":326458770689,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6208698},
-{"pid":27443,"tid":27459,"ts":326458770689,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6208698},
-{"pid":27443,"tid":27459,"ts":326458772123,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6210163},
-{"pid":27443,"tid":27459,"ts":326458772154,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6210163},
-{"pid":27443,"tid":27459,"ts":326458773314,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6211353},
-{"pid":27443,"tid":27459,"ts":326458773344,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6211353},
-{"pid":27443,"tid":27459,"ts":326458774412,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6212452},
-{"pid":27443,"tid":27459,"ts":326458774443,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6212452},
-{"pid":27443,"tid":27459,"ts":326458775389,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6213428},
-{"pid":27443,"tid":27459,"ts":326458775420,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6213428},
-{"pid":27443,"tid":27459,"ts":326458776732,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6214741},
-{"pid":27443,"tid":27459,"ts":326458776762,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6214771},
-{"pid":27443,"tid":27459,"ts":326458777526,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6215534},
-{"pid":27443,"tid":27459,"ts":326458777526,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6215534},
-{"pid":27443,"tid":27459,"ts":326458779204,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6217213},
-{"pid":27443,"tid":27459,"ts":326458779204,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6217244},
-{"pid":27443,"tid":27459,"ts":326458780730,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6218739},
-{"pid":27443,"tid":27459,"ts":326458780730,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6218770},
-{"pid":27443,"tid":27459,"ts":326458781829,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6219838},
-{"pid":27443,"tid":27459,"ts":326458781829,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6219868},
-{"pid":27443,"tid":27459,"ts":326458783172,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6221181},
-{"pid":27443,"tid":27459,"ts":326458783202,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6221211},
-{"pid":27443,"tid":27459,"ts":326458784637,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6222646},
-{"pid":27443,"tid":27459,"ts":326458784637,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6222676},
-{"pid":27443,"tid":27459,"ts":326458784698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6222707,"id":"0xaf88abaef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458784728,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6222737,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458784759,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6222768,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458784789,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6222798,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458784820,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":18633},"tts":6222829,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458784850,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6222859,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458784942,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6222951,"id":"0xaf88a970f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458784942,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16817,"tdur":16603,"tts":6222951},
-{"pid":27443,"tid":27459,"ts":326458784972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6222981,"id":"0xaf88a971f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458785003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6223012,"id":"0xaf88abaef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458785003,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":16725,"tdur":16511,"tts":6223012},
-{"pid":27443,"tid":27459,"ts":326458785003,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6223012,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458785034,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":18.388},"dur":16694,"tdur":16481,"tts":6223042},
-{"pid":27443,"tid":27459,"ts":326458785034,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6223042},
-{"pid":27443,"tid":27459,"ts":326458785064,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6223103},
-{"pid":27443,"tid":27459,"ts":326458786285,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6224294},
-{"pid":27443,"tid":27459,"ts":326458786315,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6224324},
-{"pid":27443,"tid":27459,"ts":326458787506,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6225515},
-{"pid":27443,"tid":27459,"ts":326458787536,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6225545},
-{"pid":27443,"tid":27459,"ts":326458788818,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6226827},{"pid":27443,"tid":27459,"ts":326458788849,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6226857},
-{"pid":27443,"tid":27459,"ts":326458790191,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6228200},
-{"pid":27443,"tid":27459,"ts":326458790222,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6228231},
-{"pid":27443,"tid":27459,"ts":326458791717,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6229726},
-{"pid":27443,"tid":27459,"ts":326458791717,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6229726},
-{"pid":27443,"tid":27459,"ts":326458793091,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6231100},
-{"pid":27443,"tid":27459,"ts":326458793121,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6231130},
-{"pid":27443,"tid":27459,"ts":326458794464,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6232473},
-{"pid":27443,"tid":27459,"ts":326458794495,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6232504},
-{"pid":27443,"tid":27459,"ts":326458795899,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6233908},
-{"pid":27443,"tid":27459,"ts":326458795929,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6233938},
-{"pid":27443,"tid":27459,"ts":326458797120,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6235128},
-{"pid":27443,"tid":27459,"ts":326458797120,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6235128},
-{"pid":27443,"tid":27459,"ts":326458798890,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6236899},
-{"pid":27443,"tid":27459,"ts":326458798920,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6236929},
-{"pid":27443,"tid":27459,"ts":326458800446,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6238242},
-{"pid":27443,"tid":27459,"ts":326458800446,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6238242},
-{"pid":27443,"tid":27459,"ts":326458801270,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6239096},
-{"pid":27443,"tid":27459,"ts":326458801301,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6239096},
-{"pid":27443,"tid":27459,"ts":326458801637,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6239432},
-{"pid":27443,"tid":27459,"ts":326458801637,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6239432},
-{"pid":27443,"tid":27459,"ts":326458801667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6239462,"id":"0xaf88abaff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458801698,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6239493,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458801698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6239523,"id":"0xaf88aba8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458801789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6239584,"id":"0xaf88a971f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458801789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6239584},
-{"pid":27443,"tid":27459,"ts":326458803559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458803},"tts":6239707,"id":"0xaf88a978f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":6239707},
-{"pid":27443,"tid":27459,"ts":326458803590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6239707,"id":"0xaf88a972f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803651,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6239768,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458803651,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6239768,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458803681,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":17443},"tts":6239798,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458803681,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6239798,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458803712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6239829,"id":"0xaf88a972f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6239859},
-{"pid":27443,"tid":27459,"ts":326458803743,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6239859,"id":"0xaf88a973f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6239890,"id":"0xaf88ab90f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458803773,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":0,"tdur":0,"tts":6239890},
-{"pid":27443,"tid":27459,"ts":326458803804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6239920,"id":"0xaf88a973f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6239951},
-{"pid":27443,"tid":27459,"ts":326458803834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6239951,"id":"0xaf88a90cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803865,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6239981,"id":"0xaf88aba8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458803865,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"UpdateLongIdlePeriodStateAfterIdleTask"},"dur":0,"tdur":0,"tts":6239981},
-{"pid":27443,"tid":27459,"ts":326458803895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6240012,"id":"0xaf88a90cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":15412,"tdur":14894,"tts":6240042},
-{"pid":27443,"tid":27459,"ts":326458803926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6240042,"id":"0xaf88a90df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458803956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6240073,"id":"0xaf88abaff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458803956,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":15352,"tdur":14833,"tts":6240073},
-{"pid":27443,"tid":27459,"ts":326458803956,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6240073,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458803956,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":17.168},"dur":15352,"tdur":14833,"tts":6240073},
-{"pid":27443,"tid":27459,"ts":326458803987,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6240103},
-{"pid":27443,"tid":27459,"ts":326458804017,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6240134},
-{"pid":27443,"tid":27459,"ts":326458805330,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6241446},
-{"pid":27443,"tid":27459,"ts":326458805330,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6241446},
-{"pid":27443,"tid":27459,"ts":326458806276,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6242392},
-{"pid":27443,"tid":27459,"ts":326458806306,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6242423},
-{"pid":27443,"tid":27459,"ts":326458807222,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6243338},
-{"pid":27443,"tid":27459,"ts":326458807252,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6243369},
-{"pid":27443,"tid":27459,"ts":326458808107,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6244254},
-{"pid":27443,"tid":27459,"ts":326458808137,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6244254},
-{"pid":27443,"tid":27459,"ts":326458808931,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6245048},
-{"pid":27443,"tid":27459,"ts":326458808931,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6245048},
-{"pid":27443,"tid":27459,"ts":326458809297,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6245414},
-{"pid":27443,"tid":27459,"ts":326458809297,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6245414},
-{"pid":27443,"tid":27459,"ts":326458809908,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6246024},
-{"pid":27443,"tid":27459,"ts":326458809908,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6246055},
-{"pid":27443,"tid":27459,"ts":326458810854,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6246970},
-{"pid":27443,"tid":27459,"ts":326458810854,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6247001},
-{"pid":27443,"tid":27459,"ts":326458812868,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6248466},
-{"pid":27443,"tid":27459,"ts":326458812899,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6248496},
-{"pid":27443,"tid":27459,"ts":326458813723,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6249320},
-{"pid":27443,"tid":27459,"ts":326458813723,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6249351},
-{"pid":27443,"tid":27459,"ts":326458813784,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6249381},
-{"pid":27443,"tid":27459,"ts":326458813814,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6249412},
-{"pid":27443,"tid":27459,"ts":326458814882,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6250480},
-{"pid":27443,"tid":27459,"ts":326458814913,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6250511},
-{"pid":27443,"tid":27459,"ts":326458815798,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6251396},
-{"pid":27443,"tid":27459,"ts":326458815798,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6251396},
-{"pid":27443,"tid":27459,"ts":326458816866,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6252495},
-{"pid":27443,"tid":27459,"ts":326458816897,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6252495},
-{"pid":27443,"tid":27459,"ts":326458818148,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6253776},
-{"pid":27443,"tid":27459,"ts":326458818179,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6253776},
-{"pid":27443,"tid":27459,"ts":326458819155,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6254753},
-{"pid":27443,"tid":27459,"ts":326458819186,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6254784},
-{"pid":27443,"tid":27459,"ts":326458819216,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6254814,"id":"0xaf88aba9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458819247,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6254845,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458819277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6254875,"id":"0xaf88abaaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458819277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6254875,"id":"0xaf88a90ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458819369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6254967,"id":"0xaf88a90df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458819369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6254967},
-{"pid":27443,"tid":27459,"ts":326458821231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458821},"tts":6255058,"id":"0xaf88a8e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458821261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6255089},
-{"pid":27443,"tid":27459,"ts":326458821261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6255089,"id":"0xaf88a90ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458821322,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6255150,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458821322,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6255150,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458821353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6255180,"id":"0xaf88ababf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458821383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6255211,"id":"0xaf88a90ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458821383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3815,"tdur":3815,"tts":6255211},
-{"pid":27443,"tid":27459,"ts":326458821414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6255241,"id":"0xaf88a908f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458821414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6255241,"id":"0xaf88abcef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458821414,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":3784,"tdur":3785,"tts":6255241},
-{"pid":27443,"tid":27459,"ts":326458821444,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":3724,"tdur":3723,"tts":6255272},
-{"pid":27443,"tid":27459,"ts":326458821475,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":139,"frame":"0x78c60000"}},"dur":3693,"tdur":3662,"tts":6255333},
-{"pid":27443,"tid":27459,"ts":326458821505,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":3663,"tdur":3662,"tts":6255333},
-{"pid":27443,"tid":27459,"ts":326458821719,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":3418,"tdur":3418,"tts":6255547},
-{"pid":27443,"tid":27459,"ts":326458821750,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6255577},
-{"pid":27443,"tid":27459,"ts":326458823794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6257622,"id":"0xaf88a909f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458823825,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStartLoading","args":{"id":1},"dur":91,"tdur":92,"tts":6257652},
-{"pid":27443,"tid":27459,"ts":326458823855,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":711},"dur":61,"tdur":61,"tts":6257683},
-{"pid":27443,"tid":27459,"ts":326458823886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6257714,"id":"0xaf88ada1f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824008,"ph":"X","cat":"blink","name":"PinchViewport::mainFrameDidChangeSize","args":{},"dur":31,"tdur":30,"tts":6257836},
-{"pid":27443,"tid":27459,"ts":326458824039,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didNavigateWithinPage","args":{"id":1},"dur":763,"tdur":763,"tts":6257866},
-{"pid":27443,"tid":27459,"ts":326458824100,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didCommitProvisionalLoad","args":{"id":1,"url":"https://www.google.com/maps/@37.4118271,-122.072205,13z?hl=en"},"dur":702,"tdur":702,"tts":6257927},
-{"pid":27443,"tid":27459,"ts":326458824222,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":61,"tdur":31,"tts":6258049},
-{"pid":27443,"tid":27459,"ts":326458824222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258049,"id":"0xaf88ada2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824313,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":749},"dur":31,"tdur":30,"tts":6258141},
-{"pid":27443,"tid":27459,"ts":326458824344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258171,"id":"0xaf88ada3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824405,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258232,"id":"0xaf88a90af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458824618,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1402},"dur":31,"tdur":31,"tts":6258446},
-{"pid":27443,"tid":27459,"ts":326458824618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258446,"id":"0xaf88adbcf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824741,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":694},"dur":30,"tdur":31,"tts":6258568},
-{"pid":27443,"tid":27459,"ts":326458824741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258568,"id":"0xaf88adbdf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824771,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":31,"tdur":30,"tts":6258599},
-{"pid":27443,"tid":27459,"ts":326458824802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258629,"id":"0xaf88adbef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824832,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":761},"dur":31,"tdur":30,"tts":6258660},
-{"pid":27443,"tid":27459,"ts":326458824832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258660,"id":"0xaf88adbff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824863,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":30,"tdur":31,"tts":6258690},
-{"pid":27443,"tid":27459,"ts":326458824893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258721,"id":"0xaf88adb8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458824893,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStopLoading","args":{"id":1},"dur":214,"tdur":213,"tts":6258721},
-{"pid":27443,"tid":27459,"ts":326458824954,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1517},"dur":31,"tdur":30,"tts":6258782},
-{"pid":27443,"tid":27459,"ts":326458824985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258812,"id":"0xaf88adb9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458825046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258873,"id":"0xaf88a90bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825046,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":714},"dur":61,"tdur":30,"tts":6258904},
-{"pid":27443,"tid":27459,"ts":326458825076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6258904,"id":"0xaf88adbaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458825137,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6258965},
-{"pid":27443,"tid":27459,"ts":326458825229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458821},"tts":6259056,"id":"0xaf88a90ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":6259056},
-{"pid":27443,"tid":27466,"ts":326458825259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":251640},
-{"pid":27443,"tid":27466,"ts":326458825259,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251640,"id":"0xccc3f902"},
-{"pid":27443,"tid":27466,"ts":326458825320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251701,"id":"0xaf88adbdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":251701},
-{"pid":27443,"tid":27466,"ts":326458825351,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251732,"id":"0xccc3fa02"},
-{"pid":27443,"tid":27466,"ts":326458825381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251762,"id":"0xaf88adbef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":251762},
-{"pid":27443,"tid":27466,"ts":326458825381,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251762,"id":"0xccc3fb02"},
-{"pid":27443,"tid":27466,"ts":326458825412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251793,"id":"0xaf88adbff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":251823},
-{"pid":27443,"tid":27466,"ts":326458825442,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251823,"id":"0xccc3fc02"},
-{"pid":27443,"tid":27466,"ts":326458825473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251854,"id":"0xaf88adb8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":0,"tts":251884},
-{"pid":27443,"tid":27466,"ts":326458825504,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251884,"id":"0xccc3fd02"},
-{"pid":27443,"tid":27466,"ts":326458825534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251915,"id":"0xaf88adb9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":251915},
-{"pid":27443,"tid":27466,"ts":326458825534,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251915,"id":"0xccc3fe02"},
-{"pid":27443,"tid":27466,"ts":326458825595,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":251976,"id":"0xaf88adbaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458825595,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":251976},
-{"pid":27443,"tid":27466,"ts":326458825595,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":251976,"id":"0xccc3ff02"},
-{"pid":27443,"tid":27466,"ts":326458839024,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":183,"tts":252006},
-{"pid":27443,"tid":27466,"ts":326458839085,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":153,"tdur":122,"tts":252067},
-{"pid":27443,"tid":27466,"ts":326458839085,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":252067,"id":"0xba448a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458839177,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":252128},
-{"pid":27443,"tid":27466,"ts":326458839207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":252159,"id":"0xaf88a8b8f182217a"},
-{"pid":27443,"tid":27466,"ts":326458840459,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":252281},
-{"pid":27443,"tid":27466,"ts":326458840489,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":252311},
-{"pid":27443,"tid":27466,"ts":326458840489,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":252311,"id":"0xba448b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458840520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":252342,"id":"0xaf88a8b9f182217a"},
-{"pid":27443,"tid":27466,"ts":326458854284,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":252433},
-{"pid":27443,"tid":27466,"ts":326458854315,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":252464},
-{"pid":27443,"tid":27466,"ts":326458854315,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":252464,"id":"0xba448c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458854345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":252495,"id":"0xaf88a8baf182217a"},
-{"pid":27443,"tid":27466,"ts":326458870643,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":252647},
-{"pid":27443,"tid":27466,"ts":326458870704,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":252678},
-{"pid":27443,"tid":27466,"ts":326458870704,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":252678,"id":"0xba448d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458870765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":252739,"id":"0xaf88a8bbf182217a"},
-{"pid":27443,"tid":27466,"ts":326458876106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":252861,"id":"0xaf88adbbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458876106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":252861},
-{"pid":27443,"tid":27466,"ts":326458876137,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":252891,"id":"0xccc40102"},
-{"pid":27443,"tid":27466,"ts":326458876198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":252952,"id":"0xaf88adb4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458876198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":252952},
-{"pid":27443,"tid":27466,"ts":326458876198,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":252952,"id":"0xccc40202"},
-{"pid":27443,"tid":27466,"ts":326458876259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":253013,"id":"0xaf88adb5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458876259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":253013},
-{"pid":27443,"tid":27466,"ts":326458876259,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":253013,"id":"0xccc40302"},
-{"pid":27443,"tid":27466,"ts":326458876991,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":253074},
-{"pid":27443,"tid":27466,"ts":326458877022,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":126},"dur":91,"tdur":91,"tts":253105},
-{"pid":27443,"tid":27466,"ts":326458877052,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":253135,"id":"0xba448e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458877083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":253166,"id":"0xaf88aba0f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326458877083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253166,"id":"0xaf88a903f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326458877602,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":253258},
-{"pid":27443,"tid":27466,"ts":326458877632,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":253288},
-{"pid":27443,"tid":27466,"ts":326458877632,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":253288,"id":"0xba448f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458877663,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":253319},
-{"pid":27443,"tid":27466,"ts":326458877693,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253349,"id":"0xaf88a8b6f182217a"},
-{"pid":27443,"tid":27466,"ts":326458889169,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":253441},
-{"pid":27443,"tid":27466,"ts":326458889200,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":253471},
-{"pid":27443,"tid":27466,"ts":326458889230,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":253502,"id":"0xba449002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458889261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253532,"id":"0xaf88a8b7f182217a"},
-{"pid":27443,"tid":27466,"ts":326458905406,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":253654},
-{"pid":27443,"tid":27466,"ts":326458905467,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":253685},
-{"pid":27443,"tid":27466,"ts":326458905467,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":253685,"id":"0xba449102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458905497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253715,"id":"0xaf88a8b1f182217a"},
-{"pid":27443,"tid":27459,"ts":326458825290,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6259117,"id":"0xaf88a908f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825290,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":62,"tts":6259117},
-{"pid":27443,"tid":27459,"ts":326458825320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6259148,"id":"0xaf88a904f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6259148,"id":"0xaf88abaaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458825351,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"UpdateLongIdlePeriodStateAfterIdleTask"},"dur":0,"tdur":0,"tts":6259179},
-{"pid":27443,"tid":27459,"ts":326458825381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6259209,"id":"0xaf88a904f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":122,"tts":6259209},
-{"pid":27443,"tid":27459,"ts":326458825412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6259240,"id":"0xaf88a905f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6259240,"id":"0xaf88ababf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458825442,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":62,"tdur":31,"tts":6259270},
-{"pid":27443,"tid":27459,"ts":326458825473,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6259301,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458825473,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6259301,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458825534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6259362,"id":"0xaf88a905f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":49107,"tdur":48558,"tts":6259362},
-{"pid":27443,"tid":27459,"ts":326458825565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6259392,"id":"0xaf88a906f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458825565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6259392,"id":"0xaf88aba9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458825565,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":49046,"tdur":48497,"tts":6259392},
-{"pid":27443,"tid":27459,"ts":326458825565,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6259392,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458825595,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.847},"dur":49016,"tdur":48466,"tts":6259423},
-{"pid":27443,"tid":27459,"ts":326458825595,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6259423},
-{"pid":27443,"tid":27459,"ts":326458825626,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6259453},
-{"pid":27443,"tid":27459,"ts":326458826785,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6260613},
-{"pid":27443,"tid":27459,"ts":326458826785,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6260613},
-{"pid":27443,"tid":27459,"ts":326458827701,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6261529},
-{"pid":27443,"tid":27459,"ts":326458827732,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6261559},
-{"pid":27443,"tid":27459,"ts":326458828769,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6262597},
-{"pid":27443,"tid":27459,"ts":326458828800,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6262627},
-{"pid":27443,"tid":27459,"ts":326458829898,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6263757},
-{"pid":27443,"tid":27459,"ts":326458829929,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6263757},
-{"pid":27443,"tid":27459,"ts":326458830784,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6264642},
-{"pid":27443,"tid":27459,"ts":326458830814,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6264642},
-{"pid":27443,"tid":27459,"ts":326458831699,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6265557},
-{"pid":27443,"tid":27459,"ts":326458831730,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6265557},
-{"pid":27443,"tid":27459,"ts":326458832706,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6266564},
-{"pid":27443,"tid":27459,"ts":326458832737,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6266564},
-{"pid":27443,"tid":27459,"ts":326458833805,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6267633},
-{"pid":27443,"tid":27459,"ts":326458833805,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6267633},
-{"pid":27443,"tid":27459,"ts":326458835117,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6268945},
-{"pid":27443,"tid":27459,"ts":326458835148,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6268976},
-{"pid":27443,"tid":27459,"ts":326458836277,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6270135},
-{"pid":27443,"tid":27459,"ts":326458836308,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6270135},
-{"pid":27443,"tid":27459,"ts":326458837132,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6270959},
-{"pid":27443,"tid":27459,"ts":326458837162,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6270990},
-{"pid":27443,"tid":27459,"ts":326458838383,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6272211},
-{"pid":27443,"tid":27459,"ts":326458838414,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6272241},
-{"pid":27443,"tid":27459,"ts":326458839573,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6273401},
-{"pid":27443,"tid":27459,"ts":326458839573,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6273401},
-{"pid":27443,"tid":27459,"ts":326458840703,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6274530},
-{"pid":27443,"tid":27459,"ts":326458840733,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6274561},
-{"pid":27443,"tid":27459,"ts":326458841527,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6275354},
-{"pid":27443,"tid":27459,"ts":326458841557,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6275385},
-{"pid":27443,"tid":27459,"ts":326458841740,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6275598},
-{"pid":27443,"tid":27459,"ts":326458841771,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6275598},
-{"pid":27443,"tid":27459,"ts":326458842809,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6276575},
-{"pid":27443,"tid":27459,"ts":326458842839,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6276606},
-{"pid":27443,"tid":27459,"ts":326458843907,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6277674},
-{"pid":27443,"tid":27459,"ts":326458843938,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6277704},
-{"pid":27443,"tid":27459,"ts":326458844823,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6278589},
-{"pid":27443,"tid":27459,"ts":326458844853,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6278620},
-{"pid":27443,"tid":27459,"ts":326458844914,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6278681},
-{"pid":27443,"tid":27459,"ts":326458844914,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6278712},
-{"pid":27443,"tid":27459,"ts":326458845616,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6279414},
-{"pid":27443,"tid":27459,"ts":326458845647,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6279414},
-{"pid":27443,"tid":27459,"ts":326458846410,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6280207},
-{"pid":27443,"tid":27459,"ts":326458846441,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6280207},
-{"pid":27443,"tid":27459,"ts":326458847081,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6280879},
-{"pid":27443,"tid":27459,"ts":326458847112,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6280879},
-{"pid":27443,"tid":27459,"ts":326458847844,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6281611},
-{"pid":27443,"tid":27459,"ts":326458847844,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6281611},
-{"pid":27443,"tid":27459,"ts":326458848668,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6282343},
-{"pid":27443,"tid":27459,"ts":326458848668,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6282343},
-{"pid":27443,"tid":27459,"ts":326458849340,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6283015},
-{"pid":27443,"tid":27459,"ts":326458849370,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6283045},
-{"pid":27443,"tid":27459,"ts":326458850225,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6283900},
-{"pid":27443,"tid":27459,"ts":326458850256,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6283931},
-{"pid":27443,"tid":27459,"ts":326458850835,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6284541},
-{"pid":27443,"tid":27459,"ts":326458850866,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6284541},
-{"pid":27443,"tid":27459,"ts":326458851721,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6285396},
-{"pid":27443,"tid":27459,"ts":326458851721,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6285396},
-{"pid":27443,"tid":27459,"ts":326458852697,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6286311},
-{"pid":27443,"tid":27459,"ts":326458852728,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6286342},
-{"pid":27443,"tid":27459,"ts":326458854071,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6287593},
-{"pid":27443,"tid":27459,"ts":326458854101,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6287593},
-{"pid":27443,"tid":27459,"ts":326458855078,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6288570},
-{"pid":27443,"tid":27459,"ts":326458855108,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6288600},
-{"pid":27443,"tid":27459,"ts":326458856238,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6289729},
-{"pid":27443,"tid":27459,"ts":326458856238,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6289729},
-{"pid":27443,"tid":27459,"ts":326458857184,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6290676},
-{"pid":27443,"tid":27459,"ts":326458857214,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6290706},
-{"pid":27443,"tid":27459,"ts":326458858435,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6291927},
-{"pid":27443,"tid":27459,"ts":326458858466,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6291957},
-{"pid":27443,"tid":27459,"ts":326458859808,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6293300},
-{"pid":27443,"tid":27459,"ts":326458859808,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6293300},
-{"pid":27443,"tid":27459,"ts":326458861029,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6294552},
-{"pid":27443,"tid":27459,"ts":326458861060,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6294552},
-{"pid":27443,"tid":27459,"ts":326458862342,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6295833},
-{"pid":27443,"tid":27459,"ts":326458862372,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6295864},
-{"pid":27443,"tid":27459,"ts":326458863685,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6297115},
-{"pid":27443,"tid":27459,"ts":326458863715,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6297146},
-{"pid":27443,"tid":27459,"ts":326458864478,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6297939},
-{"pid":27443,"tid":27459,"ts":326458864509,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6297939},
-{"pid":27443,"tid":27459,"ts":326458865760,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6299191},
-{"pid":27443,"tid":27459,"ts":326458865790,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6299221},
-{"pid":27443,"tid":27459,"ts":326458866706,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6300167},
-{"pid":27443,"tid":27459,"ts":326458866737,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6300167},
-{"pid":27443,"tid":27459,"ts":326458867835,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6301266},
-{"pid":27443,"tid":27459,"ts":326458867835,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6301297},
-{"pid":27443,"tid":27459,"ts":326458869209,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6302548},
-{"pid":27443,"tid":27459,"ts":326458869209,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6302578},
-{"pid":27443,"tid":27459,"ts":326458870277,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6303616},
-{"pid":27443,"tid":27459,"ts":326458870277,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6303616},
-{"pid":27443,"tid":27459,"ts":326458871681,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6305051},
-{"pid":27443,"tid":27459,"ts":326458871711,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6305051},
-{"pid":27443,"tid":27459,"ts":326458873268,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6306546},
-{"pid":27443,"tid":27459,"ts":326458873268,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6306546},
-{"pid":27443,"tid":27459,"ts":326458874367,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6307645},
-{"pid":27443,"tid":27459,"ts":326458874397,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6307675},
-{"pid":27443,"tid":27459,"ts":326458874458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6307736,"id":"0xaf88aba6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458874489,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6307767,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458874489,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6307767,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458874519,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6307797,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458874519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6307797,"id":"0xaf88aba7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458874550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6307828,"id":"0xaf88a901f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458874580,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6307859,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458874580,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6307889,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458874672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6307950,"id":"0xaf88a906f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458874672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6307950},
-{"pid":27443,"tid":27459,"ts":326458874702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6307981,"id":"0xaf88a902f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458874733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6308011,"id":"0xaf88aba4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458874733,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":30,"tdur":0,"tts":6308011},
-{"pid":27443,"tid":27459,"ts":326458874763,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6308072,"id":"0xaf88a907f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458874794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1404,"tdur":1404,"tts":6308072},
-{"pid":27443,"tid":27459,"ts":326458874794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6308072,"id":"0xaf88aba5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458874824,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1343,"tdur":1343,"tts":6308103},
-{"pid":27443,"tid":27459,"ts":326458874885,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1282,"tdur":1282,"tts":6308164},
-{"pid":27443,"tid":27459,"ts":326458874885,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6308164,"id":"0x300000036"},
-{"pid":27443,"tid":27459,"ts":326458874916,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1099,"tdur":1099,"tts":6308194},
-{"pid":27443,"tid":27459,"ts":326458874947,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1068,"tdur":1068,"tts":6308225},
-{"pid":27443,"tid":27459,"ts":326458875008,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6308286},
-{"pid":27443,"tid":27459,"ts":326458875069,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6308347},
-{"pid":27443,"tid":27459,"ts":326458875099,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6308377},
-{"pid":27443,"tid":27459,"ts":326458875130,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6308408},
-{"pid":27443,"tid":27459,"ts":326458875160,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":855,"tdur":855,"tts":6308438},
-{"pid":27443,"tid":27459,"ts":326458875313,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":671,"tdur":640,"tts":6308622},
-{"pid":27443,"tid":27459,"ts":326458875343,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6308622},
-{"pid":27443,"tid":27459,"ts":326458875862,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":39,"frame":"0x78c60000"}},"tts":6309171,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458875893,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6309171},
-{"pid":27443,"tid":27459,"ts":326458875923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6309201,"id":"0xaf88a8b4f182217a"},
-{"pid":27443,"tid":27459,"ts":326458875954,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6309262},
-{"pid":27443,"tid":27459,"ts":326458876045,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":23,"line":232},"dur":61,"tdur":62,"tts":6309323},
-{"pid":27443,"tid":27459,"ts":326458876076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6309354,"id":"0xaf88adb4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458876137,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":0,"tdur":0,"tts":6309415},
-{"pid":27443,"tid":27459,"ts":326458876137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6309415,"id":"0xaf88adb5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458876198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6309476,"id":"0xaf88a900f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458876228,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":47460,"tdur":47245,"tts":6309507},
-{"pid":27443,"tid":27459,"ts":326458876228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6309507,"id":"0xaf88aba6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458876259,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":47429,"tdur":47215,"tts":6309537},
-{"pid":27443,"tid":27459,"ts":326458876259,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6309537,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458876259,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":48.321},"dur":47429,"tdur":47215,"tts":6309537},
-{"pid":27443,"tid":27459,"ts":326458876289,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6309568},
-{"pid":27443,"tid":27459,"ts":326458876320,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6309598},
-{"pid":27443,"tid":27459,"ts":326458877052,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6310331},
-{"pid":27443,"tid":27459,"ts":326458877083,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6310361},
-{"pid":27443,"tid":27459,"ts":326458878151,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6311429},
-{"pid":27443,"tid":27459,"ts":326458878151,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6311429},
-{"pid":27443,"tid":27459,"ts":326458879006,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6312284},
-{"pid":27443,"tid":27459,"ts":326458879036,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6312314},
-{"pid":27443,"tid":27459,"ts":326458880166,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6313444},
-{"pid":27443,"tid":27459,"ts":326458880166,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6313444},
-{"pid":27443,"tid":27459,"ts":326458881539,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6314848},
-{"pid":27443,"tid":27459,"ts":326458881569,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6314848},
-{"pid":27443,"tid":27459,"ts":326458883126,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6316374},
-{"pid":27443,"tid":27459,"ts":326458883157,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6316404},
-{"pid":27443,"tid":27459,"ts":326458884560,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6317808},
-{"pid":27443,"tid":27459,"ts":326458884591,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6317839},
-{"pid":27443,"tid":27459,"ts":326458886239,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6319365},
-{"pid":27443,"tid":27459,"ts":326458886270,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6319395},
-{"pid":27443,"tid":27459,"ts":326458887826,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6320952},
-{"pid":27443,"tid":27459,"ts":326458887857,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6320982},
-{"pid":27443,"tid":27459,"ts":326458889200,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6322325},
-{"pid":27443,"tid":27459,"ts":326458889230,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6322356},
-{"pid":27443,"tid":27459,"ts":326458890726,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6323882},
-{"pid":27443,"tid":27459,"ts":326458890756,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6323882},
-{"pid":27443,"tid":27459,"ts":326458892282,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6325408},
-{"pid":27443,"tid":27459,"ts":326458892282,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6325408},
-{"pid":27443,"tid":27459,"ts":326458893991,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6327117},
-{"pid":27443,"tid":27459,"ts":326458893991,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6327147},
-{"pid":27443,"tid":27459,"ts":326458895639,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6328765},
-{"pid":27443,"tid":27459,"ts":326458895670,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6328795},
-{"pid":27443,"tid":27459,"ts":326458896738,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6329864},
-{"pid":27443,"tid":27459,"ts":326458896738,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6329864},
-{"pid":27443,"tid":27459,"ts":326458898813,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6331939},
-{"pid":27443,"tid":27459,"ts":326458898844,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6331970},
-{"pid":27443,"tid":27459,"ts":326458899424,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6332549},
-{"pid":27443,"tid":27459,"ts":326458899424,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6332580},
-{"pid":27443,"tid":27459,"ts":326458900553,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6333679},
-{"pid":27443,"tid":27459,"ts":326458900584,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6333709},
-{"pid":27443,"tid":27459,"ts":326458901621,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6334777},
-{"pid":27443,"tid":27459,"ts":326458901652,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6334777},
-{"pid":27443,"tid":27459,"ts":326458902232,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6335388},
-{"pid":27443,"tid":27459,"ts":326458902262,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6335388},
-{"pid":27443,"tid":27459,"ts":326458903178,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6336303},
-{"pid":27443,"tid":27459,"ts":326458903208,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6336334},
-{"pid":27443,"tid":27459,"ts":326458904124,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6337189},
-{"pid":27443,"tid":27459,"ts":326458904155,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6337219},
-{"pid":27443,"tid":27459,"ts":326458904643,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6337738},
-{"pid":27443,"tid":27459,"ts":326458904673,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6337738},
-{"pid":27443,"tid":27459,"ts":326458905955,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6339020},
-{"pid":27443,"tid":27459,"ts":326458905986,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6339050},
-{"pid":27443,"tid":27459,"ts":326458907298,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6340393},
-{"pid":27443,"tid":27459,"ts":326458907329,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6340393},
-{"pid":27443,"tid":27459,"ts":326458908183,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6341248},
-{"pid":27443,"tid":27459,"ts":326458908214,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6341278},
-{"pid":27443,"tid":27459,"ts":326458909282,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6342347},
-{"pid":27443,"tid":27459,"ts":326458909312,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6342377},
-{"pid":27443,"tid":27459,"ts":326458910320,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6343415},
-{"pid":27443,"tid":27459,"ts":326458910350,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6343415},
-{"pid":27443,"tid":27459,"ts":326458911663,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6344727},
-{"pid":27443,"tid":27459,"ts":326458911693,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6344758},
-{"pid":27443,"tid":27459,"ts":326458913097,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6346192},
-{"pid":27443,"tid":27459,"ts":326458913128,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6346192},
-{"pid":27443,"tid":27459,"ts":326458914379,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6347474},
-{"pid":27443,"tid":27459,"ts":326458914409,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6347474},
-{"pid":27443,"tid":27459,"ts":326458915752,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6348817},
-{"pid":27443,"tid":27459,"ts":326458915752,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6348817},
-{"pid":27443,"tid":27459,"ts":326458917583,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6350679},
-{"pid":27443,"tid":27459,"ts":326458917614,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6350679},
-{"pid":27443,"tid":27459,"ts":326458918682,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6351747},
-{"pid":27443,"tid":27459,"ts":326458918713,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6351777},
-{"pid":27443,"tid":27459,"ts":326458920269,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6353364},
-{"pid":27443,"tid":27459,"ts":326458920300,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6353364},
-{"pid":27443,"tid":27459,"ts":326458921887,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6354982},
-{"pid":27443,"tid":27459,"ts":326458921917,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6354982},
-{"pid":27443,"tid":27459,"ts":326458923504,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6356569},
-{"pid":27443,"tid":27459,"ts":326458923535,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6356600},
-{"pid":27443,"tid":27459,"ts":326458923565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6356630,"id":"0xaf88aba3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458923565,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6356630,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458923596,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6356661,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458923596,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6356661,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458923657,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6356722,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458923657,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6356722,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458923749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6356813,"id":"0xaf88a902f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458923749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1281,"tdur":1252,"tts":6356813},
-{"pid":27443,"tid":27459,"ts":326458923779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6356844,"id":"0xaf88a91df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458923779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6356844,"id":"0xaf88aba1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458923779,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1251,"tdur":1221,"tts":6356844},
-{"pid":27443,"tid":27459,"ts":326458923901,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":1130,"tts":6356935},
-{"pid":27443,"tid":27459,"ts":326458923901,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6356966,"id":"0x300000037"},
-{"pid":27443,"tid":27459,"ts":326458923932,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":976,"tdur":946,"tts":6356996},
-{"pid":27443,"tid":27459,"ts":326458923993,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":915,"tdur":915,"tts":6357027},
-{"pid":27443,"tid":27459,"ts":326458924023,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6357088},
-{"pid":27443,"tid":27459,"ts":326458924084,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6357118},
-{"pid":27443,"tid":27459,"ts":326458924115,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6357149},
-{"pid":27443,"tid":27459,"ts":326458924145,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6357210},
-{"pid":27443,"tid":27459,"ts":326458924206,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":702,"tdur":702,"tts":6357240},
-{"pid":27443,"tid":27459,"ts":326458924390,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":488,"tdur":488,"tts":6357424},
-{"pid":27443,"tid":27477,"ts":326458905650,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458897921.0,"frame_time_us":326458901196.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":385899},
-{"pid":27443,"tid":27477,"ts":326458905650,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458897921.0,"frame_time_us":326458901196.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":385899},
-{"pid":27443,"tid":27477,"ts":326458905711,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458917862},"dur":0,"tdur":0,"tts":385960},
-{"pid":27443,"tid":27477,"ts":326458905711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":385960,"id":"0xaf88a8b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458917950,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458917},"tts":386052,"id":"0xaf88a8b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326458917950,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":30,"tts":386052},
-{"pid":27443,"tid":27477,"ts":326458918133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":386113},
-{"pid":27443,"tid":27477,"ts":326458918133,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":386113},
-{"pid":27443,"tid":27477,"ts":326458922284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386174,"id":"0xaf88a8b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326458922314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":386174},
-{"pid":27443,"tid":27477,"ts":326458922345,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458914605.0,"frame_time_us":326458917880.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":386204},
-{"pid":27443,"tid":27477,"ts":326458922375,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458914605.0,"frame_time_us":326458917880.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":91,"tts":386235},
-{"pid":27443,"tid":27477,"ts":326458922436,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458934546},"dur":31,"tdur":30,"tts":386296},
-{"pid":27443,"tid":27477,"ts":326458922436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":386296,"id":"0xaf88a94cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458925916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386387,"id":"0xaf88a94df182217a"},
-{"pid":27443,"tid":27477,"ts":326458925916,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":123,"tts":386387},
-{"pid":27443,"tid":27477,"ts":326458925916,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":92,"tts":386418},
-{"pid":27443,"tid":27477,"ts":326458925946,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":386418,"id":"0x300000039"},
-{"pid":27443,"tid":27477,"ts":326458925946,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":386448},
-{"pid":27443,"tid":27477,"ts":326458925977,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":386448,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458926007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":386479,"id":"0xaf88abbcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458926038,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":386510,"id":"0xaf88a91ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458934950,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458934},"tts":386571,"id":"0xaf88a94cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458934980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":386601},
-{"pid":27443,"tid":27477,"ts":326458934980,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":386601},
-{"pid":27443,"tid":27477,"ts":326458938368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386693,"id":"0xaf88a94ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458938368,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1587,"tdur":1374,"tts":386723},
-{"pid":27443,"tid":27477,"ts":326458938398,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1557,"tdur":1374,"tts":386723},
-{"pid":27443,"tid":27477,"ts":326458938398,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":386723},
-{"pid":27443,"tid":27477,"ts":326458938429,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1495,"tdur":1312,"tts":386754},
-{"pid":27443,"tid":27477,"ts":326458938429,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1495,"tdur":1312,"tts":386754},
-{"pid":27443,"tid":27477,"ts":326458938429,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":386754},
-{"pid":27443,"tid":27477,"ts":326458938459,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":386784},
-{"pid":27443,"tid":27477,"ts":326458938459,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":386784,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458938459,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":386784},
-{"pid":27443,"tid":27477,"ts":326458938490,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":396,"tts":386815},
-{"pid":27443,"tid":27477,"ts":326458938948,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":976,"tdur":793,"tts":387273},
-{"pid":27443,"tid":27477,"ts":326458938978,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":85},"dur":397,"tdur":214,"tts":387303},
-{"pid":27443,"tid":27477,"ts":326458939406,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":85},"dur":30,"tdur":31,"tts":387547},
-{"pid":27443,"tid":27477,"ts":326458939436,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":85},"tts":387578},
-{"pid":27443,"tid":27477,"ts":326458939589,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":387730},
-{"pid":27443,"tid":27477,"ts":326458939589,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":387761},
-{"pid":27443,"tid":27477,"ts":326458939619,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":387761},
-{"pid":27443,"tid":27477,"ts":326458939619,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":387761},
-{"pid":27443,"tid":27477,"ts":326458939741,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":387883},
-{"pid":27443,"tid":27477,"ts":326458939741,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":387883},
-{"pid":27443,"tid":27477,"ts":326458939772,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":123,"tts":387913},
-{"pid":27443,"tid":27477,"ts":326458939772,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":387913},
-{"pid":27443,"tid":27477,"ts":326458939772,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":387913,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458939802,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":387944},
-{"pid":27443,"tid":27477,"ts":326458939802,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":387944},
-{"pid":27443,"tid":27477,"ts":326458939863,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":388005,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458939894,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":388036,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458939894,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":388036,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458939955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388097,"id":"0xaf88a94ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458939955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":3510,"tdur":213,"tts":388097},
-{"pid":27443,"tid":27477,"ts":326458939985,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458931289.0,"frame_time_us":326458934564.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":3480,"tdur":183,"tts":388127},
-{"pid":27443,"tid":27477,"ts":326458939985,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":3327,"tdur":31,"tts":388127},
-{"pid":27443,"tid":27477,"ts":326458943343,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458931289.0,"frame_time_us":326458934564.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":388188},
-{"pid":27443,"tid":27477,"ts":326458943434,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458951230},"dur":31,"tdur":30,"tts":388280},
-{"pid":27443,"tid":27477,"ts":326458943434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":388280,"id":"0xaf88a944f182217a"},
-{"pid":27443,"tid":27477,"ts":326458943495,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388341,"id":"0xaf88a948f182217a"},
-{"pid":27443,"tid":27477,"ts":326458943495,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":388341},
-{"pid":27443,"tid":27477,"ts":326458943495,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":30,"tts":388341},
-{"pid":27443,"tid":27466,"ts":326458920574,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":183,"tts":253807},
-{"pid":27443,"tid":27466,"ts":326458920574,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":253807},
-{"pid":27443,"tid":27466,"ts":326458920666,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":253898},
-{"pid":27443,"tid":27466,"ts":326458920666,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":253898,"id":"0xba449202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458920727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":253959,"id":"0xaf88a8b3f182217a"},
-{"pid":27443,"tid":27466,"ts":326458925030,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":254082,"id":"0xaf88adb6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458925030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":31,"tts":254112},
-{"pid":27443,"tid":27466,"ts":326458925061,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":254112,"id":"0xccc40502"},
-{"pid":27443,"tid":27466,"ts":326458925763,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":254204},
-{"pid":27443,"tid":27466,"ts":326458925793,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":254234},
-{"pid":27443,"tid":27466,"ts":326458925793,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":254234,"id":"0xba449302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458925824,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":254265},
-{"pid":27443,"tid":27466,"ts":326458925855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":254295,"id":"0xaf88a94df182217a"},
-{"pid":27443,"tid":27466,"ts":326458939253,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":254387},
-{"pid":27443,"tid":27466,"ts":326458939283,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":61,"tts":254417},
-{"pid":27443,"tid":27466,"ts":326458939283,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":254448,"id":"0xba449402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458939345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":254478,"id":"0xaf88a94ff182217a"},
-{"pid":27443,"tid":27466,"ts":326458940169,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":254570,"id":"0xaf88adb7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458940169,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":254570},
-{"pid":27443,"tid":27466,"ts":326458940199,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":254600,"id":"0xccc40702"},
-{"pid":27443,"tid":27466,"ts":326458944655,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":427,"tdur":122,"tts":254692},
-{"pid":27443,"tid":27466,"ts":326458944686,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":254723},
-{"pid":27443,"tid":27466,"ts":326458944686,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":254723,"id":"0xba449502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458944716,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":254753},
-{"pid":27443,"tid":27466,"ts":326458944747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":254784,"id":"0xaf88a947f182217a"},
-{"pid":27443,"tid":27466,"ts":326458947188,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":254875,"id":"0xaf88adb0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458947219,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":254906},
-{"pid":27443,"tid":27466,"ts":326458947219,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":254906,"id":"0xccc40906"},
-{"pid":27443,"tid":27466,"ts":326458947402,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":254997},
-{"pid":27443,"tid":27466,"ts":326458947432,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":255028},
-{"pid":27443,"tid":27466,"ts":326458947432,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":255028,"id":"0xc4c1320a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458950759,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":255180,"id":"0xaf88adb1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458950790,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":255211},
-{"pid":27443,"tid":27466,"ts":326458950790,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":255211,"id":"0xccc40a02"},
-{"pid":27443,"tid":27466,"ts":326458959793,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":255333},
-{"pid":27443,"tid":27466,"ts":326458959824,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":255363},
-{"pid":27443,"tid":27466,"ts":326458959824,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":255363,"id":"0xba449602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458959854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":255394,"id":"0xaf88a95ef182217a"},
-{"pid":27443,"tid":27466,"ts":326458966325,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":255486},
-{"pid":27443,"tid":27466,"ts":326458966355,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":255516},
-{"pid":27443,"tid":27466,"ts":326458966355,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":255547,"id":"0xba449702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458966416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":255577,"id":"0xaf88a958f182217a"},
-{"pid":27443,"tid":27466,"ts":326458973375,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":255669},
-{"pid":27443,"tid":27466,"ts":326458973405,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":255699},
-{"pid":27443,"tid":27466,"ts":326458973405,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":255699,"id":"0xba449902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458973466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":255760,"id":"0xaf88a95af182217a"},
-{"pid":27443,"tid":27466,"ts":326458976305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":255821,"id":"0xaf88adb2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458976335,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":255852},
-{"pid":27443,"tid":27466,"ts":326458976335,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":255852,"id":"0xccc40b02"},
-{"pid":27443,"tid":27466,"ts":326458977068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":255943},
-{"pid":27443,"tid":27466,"ts":326458977098,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":255974},
-{"pid":27443,"tid":27466,"ts":326458977129,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256004,"id":"0xba449a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458977129,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":256004},
-{"pid":27443,"tid":27466,"ts":326458977159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":256035,"id":"0xaf88a953f182217a"},
-{"pid":27443,"tid":27466,"ts":326458977983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":256096,"id":"0xaf88adb3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458978014,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":256126},
-{"pid":27443,"tid":27466,"ts":326458978014,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256126,"id":"0xccc40c06"},
-{"pid":27443,"tid":27466,"ts":326458978289,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":62,"tts":256187},
-{"pid":27443,"tid":27466,"ts":326458978319,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":256218},
-{"pid":27443,"tid":27466,"ts":326458978319,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256249,"id":"0xc4c1350a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458978746,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":256340,"id":"0xaf88aa4cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326458978746,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":256340},
-{"pid":27443,"tid":27466,"ts":326458978777,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256371,"id":"0xccc40d02"},
-{"pid":27443,"tid":27466,"ts":326458980547,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":256462},
-{"pid":27443,"tid":27459,"ts":326458924420,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6357454},
-{"pid":27443,"tid":27459,"ts":326458924817,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":40,"frame":"0x78c60000"}},"tts":6357851,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458924847,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6357881},
-{"pid":27443,"tid":27459,"ts":326458924939,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6357973},
-{"pid":27443,"tid":27459,"ts":326458924969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6358003,"id":"0xaf88adb6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458925092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6358126,"id":"0xaf88a903f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458925092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13947,"tdur":13245,"tts":6358126},
-{"pid":27443,"tid":27459,"ts":326458925092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6358126,"id":"0xaf88aba2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458925122,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13917,"tdur":13215,"tts":6358156},
-{"pid":27443,"tid":27459,"ts":326458925122,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":85},"tts":6358156},
-{"pid":27443,"tid":27459,"ts":326458925122,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6358156},
-{"pid":27443,"tid":27459,"ts":326458925183,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6358217,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458925183,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6358217,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326458925214,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9888,"tdur":9797,"tts":6358248},
-{"pid":27443,"tid":27459,"ts":326458925214,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":6358248},
-{"pid":27443,"tid":27459,"ts":326458925275,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":39,"frame":"0x78c60000"}},"dur":9614,"tdur":9522,"tts":6358309},
-{"pid":27443,"tid":27459,"ts":326458925336,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9553,"tdur":9461,"tts":6358370},
-{"pid":27443,"tid":27459,"ts":326458925336,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6358370},
-{"pid":27443,"tid":27459,"ts":326458925610,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6358675},
-{"pid":27443,"tid":27459,"ts":326458925671,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6358705},
-{"pid":27443,"tid":27459,"ts":326458930616,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6363650},
-{"pid":27443,"tid":27459,"ts":326458930829,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6363894},
-{"pid":27443,"tid":27459,"ts":326458930890,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6363924},
-{"pid":27443,"tid":27459,"ts":326458930921,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6363955},
-{"pid":27443,"tid":27459,"ts":326458931226,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6364260},
-{"pid":27443,"tid":27459,"ts":326458931562,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6364596},
-{"pid":27443,"tid":27459,"ts":326458932386,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6365389},
-{"pid":27443,"tid":27459,"ts":326458932722,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6365725},
-{"pid":27443,"tid":27459,"ts":326458934858,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6367801},
-{"pid":27443,"tid":27459,"ts":326458934919,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":40,"frame":"0x78c60000"}},"dur":183,"tdur":153,"tts":6367892},
-{"pid":27443,"tid":27459,"ts":326458935011,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":91,"tdur":92,"tts":6367953},
-{"pid":27443,"tid":27459,"ts":326458935041,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6367984},
-{"pid":27443,"tid":27459,"ts":326458935072,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6368014},
-{"pid":27443,"tid":27459,"ts":326458935102,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2778,"tdur":2747,"tts":6368075},
-{"pid":27443,"tid":27459,"ts":326458935133,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6368106},
-{"pid":27443,"tid":27459,"ts":326458935163,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6368106},
-{"pid":27443,"tid":27459,"ts":326458935163,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6368136},
-{"pid":27443,"tid":27459,"ts":326458935652,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6368625},
-{"pid":27443,"tid":27459,"ts":326458935682,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6368625},
-{"pid":27443,"tid":27459,"ts":326458935713,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2167,"tdur":2167,"tts":6368655},
-{"pid":27443,"tid":27459,"ts":326458935743,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1984,"tdur":1983,"tts":6368686},
-{"pid":27443,"tid":27459,"ts":326458935743,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":366,"tdur":366,"tts":6368686},
-{"pid":27443,"tid":27459,"ts":326458936109,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":275,"tdur":214,"tts":6369082},
-{"pid":27443,"tid":27459,"ts":326458936384,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6369327},
-{"pid":27443,"tid":27459,"ts":326458936476,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":6369418},
-{"pid":27443,"tid":27459,"ts":326458936506,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1221,"tdur":1220,"tts":6369449},
-{"pid":27443,"tid":27459,"ts":326458937727,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":6370700},
-{"pid":27443,"tid":27459,"ts":326458937788,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":6370730},
-{"pid":27443,"tid":27459,"ts":326458937880,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":85},"dur":396,"tdur":366,"tts":6370853},
-{"pid":27443,"tid":27459,"ts":326458937910,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":335,"tts":6370853},
-{"pid":27443,"tid":27459,"ts":326458938154,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":85},"dur":31,"tdur":30,"tts":6371097},
-{"pid":27443,"tid":27459,"ts":326458938185,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":85},"dur":0,"tdur":0,"tts":6371127},
-{"pid":27443,"tid":27459,"ts":326458938215,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":85},"dur":0,"tdur":0,"tts":6371158},{"pid":27443,"tid":27459,"ts":326458938215,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":85},"dur":31,"tdur":30,"tts":6371158},
-{"pid":27443,"tid":27459,"ts":326458938246,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":85},"dur":0,"tdur":0,"tts":6371188},
-{"pid":27443,"tid":27459,"ts":326458938276,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6371219,"id":"0x300000036"},
-{"pid":27443,"tid":27459,"ts":326458938276,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6371219,"id":"0x300000037"},
-{"pid":27443,"tid":27459,"ts":326458938276,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":91,"tts":6371219},
-{"pid":27443,"tid":27459,"ts":326458938307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6371249,"id":"0xaf88a94ef182217a"},
-{"pid":27443,"tid":27459,"ts":326458939009,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6371341},
-{"pid":27443,"tid":27459,"ts":326458939070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6371402,"id":"0xaf88a91cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458939070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1099,"tts":6371432},
-{"pid":27443,"tid":27459,"ts":326458939100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6371432,"id":"0xaf88abbcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458939131,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1038,"tdur":1038,"tts":6371463},
-{"pid":27443,"tid":27459,"ts":326458939192,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":977,"tdur":977,"tts":6371524},
-{"pid":27443,"tid":27459,"ts":326458939192,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6371524,"id":"0x300000039"},
-{"pid":27443,"tid":27459,"ts":326458939222,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":855,"tdur":824,"tts":6371555},
-{"pid":27443,"tid":27459,"ts":326458939253,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":794,"tts":6371585},
-{"pid":27443,"tid":27459,"ts":326458939314,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6371646},
-{"pid":27443,"tid":27459,"ts":326458939345,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6371677},
-{"pid":27443,"tid":27459,"ts":326458939375,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6371707},
-{"pid":27443,"tid":27459,"ts":326458939406,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6371738},
-{"pid":27443,"tid":27459,"ts":326458939436,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":611,"tts":6371768},
-{"pid":27443,"tid":27459,"ts":326458939589,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":397,"tts":6371921},
-{"pid":27443,"tid":27459,"ts":326458939619,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6371951},
-{"pid":27443,"tid":27459,"ts":326458939894,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":41,"frame":"0x78c60000"}},"tts":6372226,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458939924,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6372256},
-{"pid":27443,"tid":27459,"ts":326458939924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6372256,"id":"0xaf88a948f182217a"},
-{"pid":27443,"tid":27459,"ts":326458939955,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6372287},
-{"pid":27443,"tid":27459,"ts":326458940077,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6372409},
-{"pid":27443,"tid":27459,"ts":326458940108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6372440,"id":"0xaf88adb7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458940199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6372531,"id":"0xaf88a91df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458940230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6372562},
-{"pid":27443,"tid":27459,"ts":326458940230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6372562,"id":"0xaf88a91ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458940260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6372592,"id":"0xaf88aba0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458940260,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":6372592},
-{"pid":27443,"tid":27459,"ts":326458940260,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":126},"dur":61,"tdur":61,"tts":6372592},
-{"pid":27443,"tid":27459,"ts":326458940352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6372684,"id":"0xaf88a91ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458940352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6372684},
-{"pid":27443,"tid":27459,"ts":326458940413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6372745,"id":"0xaf88a91ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458940413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6372745},
-{"pid":27443,"tid":27459,"ts":326458947219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6372867,"id":"0xaf88a918f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458947219,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":26705,"tdur":10438,"tts":6372867},
-{"pid":27443,"tid":27459,"ts":326458947249,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6372897,"id":"0xaf88a919f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458947249,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":6372897},
-{"pid":27443,"tid":27459,"ts":326458947493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6372928,"id":"0xaf88abbdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458947493,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":26431,"tdur":10346,"tts":6372928},
-{"pid":27443,"tid":27459,"ts":326458947524,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":86},"tts":6372958},
-{"pid":27443,"tid":27459,"ts":326458947524,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6372958},
-{"pid":27443,"tid":27459,"ts":326458947585,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":16695,"tdur":6928,"tts":6373020},
-{"pid":27443,"tid":27459,"ts":326458947616,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6373050},
-{"pid":27443,"tid":27459,"ts":326458947646,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":41,"frame":"0x78c60000"}},"dur":16634,"tdur":6837,"tts":6373111},
-{"pid":27443,"tid":27459,"ts":326458947768,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":16481,"tdur":6714,"tts":6373203},
-{"pid":27443,"tid":27459,"ts":326458947768,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6373233},
-{"pid":27443,"tid":27459,"ts":326458948012,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6373447},
-{"pid":27443,"tid":27459,"ts":326458948073,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":6373508},
-{"pid":27443,"tid":27459,"ts":326458964219,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6379887},
-{"pid":27443,"tid":27459,"ts":326458964280,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3937,"tdur":2716,"tts":6379948},
-{"pid":27443,"tid":27459,"ts":326458964341,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6380009},
-{"pid":27443,"tid":27459,"ts":326458964341,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6380039},
-{"pid":27443,"tid":27459,"ts":326458964371,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6380039},
-{"pid":27443,"tid":27459,"ts":326458964860,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6380497},
-{"pid":27443,"tid":27459,"ts":326458964890,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6380497},
-{"pid":27443,"tid":27459,"ts":326458964921,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3296,"tdur":2136,"tts":6380528},
-{"pid":27443,"tid":27459,"ts":326458964951,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2747,"tdur":1892,"tts":6380558},
-{"pid":27443,"tid":27459,"ts":326458964951,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":458,"tdur":335,"tts":6380589},
-{"pid":27443,"tid":27459,"ts":326458965409,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":183,"tts":6380924},
-{"pid":27443,"tid":27459,"ts":326458965623,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":6381138},
-{"pid":27443,"tid":27459,"ts":326458965714,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6381229},
-{"pid":27443,"tid":27459,"ts":326458965714,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1953,"tdur":1191,"tts":6381229},
-{"pid":27443,"tid":27459,"ts":326458967698,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":6382450},
-{"pid":27443,"tid":27459,"ts":326458967759,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":427,"tdur":122,"tts":6382511},
-{"pid":27443,"tid":27459,"ts":326458968217,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":86},"dur":3906,"tdur":519,"tts":6382664},
-{"pid":27443,"tid":27459,"ts":326458968247,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":3876,"tdur":458,"tts":6382694},
-{"pid":27443,"tid":27459,"ts":326458971940,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":61,"tdur":30,"tts":6383000},
-{"pid":27443,"tid":27459,"ts":326458972001,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":0,"tdur":0,"tts":6383061},
-{"pid":27443,"tid":27459,"ts":326458972001,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":31,"tdur":30,"tts":6383061},
-{"pid":27443,"tid":27459,"ts":326458972032,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":0,"tdur":0,"tts":6383091},
-{"pid":27443,"tid":27477,"ts":326458943526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388371,"id":"0xaf88a949f182217a"},
-{"pid":27443,"tid":27477,"ts":326458943556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":388402},
-{"pid":27443,"tid":27477,"ts":326458943587,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":31,"tts":388432},
-{"pid":27443,"tid":27477,"ts":326458943587,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":388432,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458943587,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":388432},
-{"pid":27443,"tid":27477,"ts":326458943617,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":388463,"id":"0xaf88a945f182217a"},
-{"pid":27443,"tid":27477,"ts":326458943648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388493,"id":"0xaf88a94af182217a"},
-{"pid":27443,"tid":27477,"ts":326458943648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":388493},
-{"pid":27443,"tid":27477,"ts":326458943648,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":388493},
-{"pid":27443,"tid":27477,"ts":326458943678,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":388524,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458943678,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":388524},
-{"pid":27443,"tid":27477,"ts":326458943709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388554,"id":"0xaf88a94bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458943739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":388585},
-{"pid":27443,"tid":27477,"ts":326458943739,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":30,"tts":388585},
-{"pid":27443,"tid":27477,"ts":326458943739,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":388585,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458943739,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":0,"tts":388615},
-{"pid":27443,"tid":27477,"ts":326458943770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":388615,"id":"0xaf88a946f182217a"},
-{"pid":27443,"tid":27477,"ts":326458943800,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388646,"id":"0xaf88a945f182217a"},
-{"pid":27443,"tid":27477,"ts":326458943800,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2076,"tdur":1434,"tts":388646},
-{"pid":27443,"tid":27477,"ts":326458943800,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2076,"tdur":1434,"tts":388646},
-{"pid":27443,"tid":27477,"ts":326458943831,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":388676},
-{"pid":27443,"tid":27477,"ts":326458943831,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":388676},
-{"pid":27443,"tid":27477,"ts":326458943862,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":153,"tts":388707},
-{"pid":27443,"tid":27477,"ts":326458943862,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":153,"tts":388707},
-{"pid":27443,"tid":27477,"ts":326458944014,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1831,"tdur":1190,"tts":388860},
-{"pid":27443,"tid":27477,"ts":326458944045,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1800,"tdur":1160,"tts":388890},
-{"pid":27443,"tid":27477,"ts":326458944045,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1648,"tdur":1007,"tts":388890},
-{"pid":27443,"tid":27477,"ts":326458944045,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":388890,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458944136,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":388982},
-{"pid":27443,"tid":27477,"ts":326458944197,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":389043},
-{"pid":27443,"tid":27477,"ts":326458944289,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389073},
-{"pid":27443,"tid":27477,"ts":326458944289,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":389073},
-{"pid":27443,"tid":27477,"ts":326458944319,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":389104},
-{"pid":27443,"tid":27477,"ts":326458944350,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389134},
-{"pid":27443,"tid":27477,"ts":326458944350,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":389165},
-{"pid":27443,"tid":27477,"ts":326458944380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":389165},
-{"pid":27443,"tid":27477,"ts":326458944411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":519,"tdur":31,"tts":389195},
-{"pid":27443,"tid":27477,"ts":326458944411,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":488,"tdur":0,"tts":389195},
-{"pid":27443,"tid":27477,"ts":326458944930,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389226},
-{"pid":27443,"tid":27477,"ts":326458944960,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389256},
-{"pid":27443,"tid":27477,"ts":326458944960,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389256},
-{"pid":27443,"tid":27477,"ts":326458944991,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389287},
-{"pid":27443,"tid":27477,"ts":326458944991,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":122,"tdur":30,"tts":389287},
-{"pid":27443,"tid":27477,"ts":326458944991,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":30,"tts":389287},
-{"pid":27443,"tid":27477,"ts":326458945143,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389348},
-{"pid":27443,"tid":27477,"ts":326458945143,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389348},
-{"pid":27443,"tid":27477,"ts":326458945174,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389378},
-{"pid":27443,"tid":27477,"ts":326458945174,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":389378},
-{"pid":27443,"tid":27477,"ts":326458945204,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389409},
-{"pid":27443,"tid":27477,"ts":326458945235,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389439},
-{"pid":27443,"tid":27477,"ts":326458945235,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":389439},
-{"pid":27443,"tid":27477,"ts":326458945265,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389470},
-{"pid":27443,"tid":27477,"ts":326458945296,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389501},
-{"pid":27443,"tid":27477,"ts":326458945296,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":389501},
-{"pid":27443,"tid":27477,"ts":326458945327,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389531},
-{"pid":27443,"tid":27477,"ts":326458945327,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":389531},
-{"pid":27443,"tid":27477,"ts":326458945449,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389653},
-{"pid":27443,"tid":27477,"ts":326458945449,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":389653},
-{"pid":27443,"tid":27477,"ts":326458945479,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":389684},
-{"pid":27443,"tid":27477,"ts":326458945510,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389714},
-{"pid":27443,"tid":27477,"ts":326458945510,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":389745},
-{"pid":27443,"tid":27477,"ts":326458945540,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":389745},
-{"pid":27443,"tid":27477,"ts":326458945571,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":389775},
-{"pid":27443,"tid":27477,"ts":326458945601,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":389806},
-{"pid":27443,"tid":27477,"ts":326458945632,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":389836},
-{"pid":27443,"tid":27477,"ts":326458945662,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":389867},
-{"pid":27443,"tid":27477,"ts":326458945693,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":389897},
-{"pid":27443,"tid":27477,"ts":326458945693,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":86},"tts":389897},
-{"pid":27443,"tid":27477,"ts":326458945754,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":389958,"id":"0xaf88abbdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458945784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":389989,"id":"0xaf88a918f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458945815,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":390019},
-{"pid":27443,"tid":27477,"ts":326458945815,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":390019},
-{"pid":27443,"tid":27477,"ts":326458945845,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":390050,"id":"0xaf88a940f182217a"},
-{"pid":27443,"tid":27477,"ts":326458945876,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":390080,"id":"0xaf88a946f182217a"},
-{"pid":27443,"tid":27477,"ts":326458945876,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":390080},
-{"pid":27443,"tid":27477,"ts":326458945906,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":91,"tts":390111},
-{"pid":27443,"tid":27477,"ts":326458945906,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":390111},
-{"pid":27443,"tid":27477,"ts":326458945906,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":390111},
-{"pid":27443,"tid":27477,"ts":326458945937,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":31,"tts":390141},
-{"pid":27443,"tid":27477,"ts":326458945937,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":390141},
-{"pid":27443,"tid":27477,"ts":326458945967,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":390172},
-{"pid":27443,"tid":27477,"ts":326458945998,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":390202},
-{"pid":27443,"tid":27477,"ts":326458945998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":390233,"id":"0xaf88a947f182217a"},
-{"pid":27443,"tid":27477,"ts":326458946028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":390233},
-{"pid":27443,"tid":27477,"ts":326458946028,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":390233},
-{"pid":27443,"tid":27477,"ts":326458946059,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":390264,"id":"0x30000003c"},
-{"pid":27443,"tid":27477,"ts":326458946059,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":390264},
-{"pid":27443,"tid":27477,"ts":326458946090,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":390294,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458946120,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":390325,"id":"0xaf88abbef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458946151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":390355,"id":"0xaf88a940f182217a"},
-{"pid":27443,"tid":27477,"ts":326458946151,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":11506,"tdur":1984,"tts":390355},
-{"pid":27443,"tid":27477,"ts":326458946151,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":11506,"tdur":1984,"tts":390355},
-{"pid":27443,"tid":27477,"ts":326458946181,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":390386},
-{"pid":27443,"tid":27477,"ts":326458946181,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":11110,"tdur":1556,"tts":390386},
-{"pid":27443,"tid":27477,"ts":326458946212,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":85},"dur":763,"tdur":763,"tts":390416},
-{"pid":27443,"tid":27477,"ts":326458946212,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":85},"dur":274,"tdur":275,"tts":390416},
-{"pid":27443,"tid":27477,"ts":326458946486,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":85},"dur":31,"tdur":30,"tts":390691},
-{"pid":27443,"tid":27477,"ts":326458946517,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":85},"tts":390721},
-{"pid":27443,"tid":27477,"ts":326458946669,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":390874},
-{"pid":27443,"tid":27477,"ts":326458946669,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":390874},
-{"pid":27443,"tid":27477,"ts":326458946669,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":390874},
-{"pid":27443,"tid":27477,"ts":326458946700,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":390904},
-{"pid":27443,"tid":27477,"ts":326458946700,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":390904,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458946761,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":390965},
-{"pid":27443,"tid":27477,"ts":326458946975,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":391179},
-{"pid":27443,"tid":27477,"ts":326458946975,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":3387,"tdur":305,"tts":391210},
-{"pid":27443,"tid":27477,"ts":326458947005,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":391210},
-{"pid":27443,"tid":27477,"ts":326458947005,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":3266,"tdur":183,"tts":391240},
-{"pid":27443,"tid":27477,"ts":326458947097,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":0,"tdur":0,"tts":391301},
-{"pid":27443,"tid":27477,"ts":326458947127,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":391332,"id":"0xaf88adb0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458950332,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":391484,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458950393,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":391545,"id":"0x300000036"},
-{"pid":27443,"tid":27477,"ts":326458950423,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":391576,"id":"0x300000037"},
-{"pid":27443,"tid":27477,"ts":326458950423,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":6776,"tdur":305,"tts":391576},
-{"pid":27443,"tid":27477,"ts":326458950607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":391759,"id":"0xaf88adb1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458957199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":391881,"id":"0xaf88abbff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458957229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":391912,"id":"0xaf88a91af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458957291,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":366,"tdur":366,"tts":391973},
-{"pid":27443,"tid":27477,"ts":326458957291,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":335,"tts":391973},
-{"pid":27443,"tid":27477,"ts":326458957321,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":392003},
-{"pid":27443,"tid":27477,"ts":326458957413,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":392095},
-{"pid":27443,"tid":27477,"ts":326458957443,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":392125},
-{"pid":27443,"tid":27477,"ts":326458957443,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":392125},
-{"pid":27443,"tid":27477,"ts":326458957474,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":392156},
-{"pid":27443,"tid":27477,"ts":326458957474,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":392156,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458957504,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":392186},
-{"pid":27443,"tid":27477,"ts":326458957504,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":31,"tts":392186},
-{"pid":27443,"tid":27477,"ts":326458957565,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":392247,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458957596,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":392308,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458957626,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":392308,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458957687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458951},"tts":392369,"id":"0xaf88a944f182217a"},
-{"pid":27443,"tid":27477,"ts":326458957687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":392369},
-{"pid":27443,"tid":27477,"ts":326458958206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392400,"id":"0xaf88a941f182217a"},
-{"pid":27443,"tid":27477,"ts":326458958237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":392430},
-{"pid":27443,"tid":27477,"ts":326458958237,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":392430},
-{"pid":27443,"tid":27477,"ts":326458958267,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":392461,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458958267,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":392461},
-{"pid":27443,"tid":27477,"ts":326458958267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":392461,"id":"0xaf88a95cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458958298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392491,"id":"0xaf88a942f182217a"},
-{"pid":27443,"tid":27477,"ts":326458958298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":392491},
-{"pid":27443,"tid":27477,"ts":326458958328,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":392522},
-{"pid":27443,"tid":27477,"ts":326458958328,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":392522,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458958328,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":392522},
-{"pid":27443,"tid":27477,"ts":326458958359,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":392553,"id":"0xaf88a95df182217a"},
-{"pid":27443,"tid":27477,"ts":326458958359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392553,"id":"0xaf88a943f182217a"},
-{"pid":27443,"tid":27477,"ts":326458958389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":392583},
-{"pid":27443,"tid":27477,"ts":326458958389,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":392583},
-{"pid":27443,"tid":27477,"ts":326458958389,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":392583,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458958389,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":392583},
-{"pid":27443,"tid":27477,"ts":326458958420,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392614,"id":"0xaf88a95cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458958420,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":392614},
-{"pid":27443,"tid":27477,"ts":326458958450,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":92,"tdur":92,"tts":392644},
-{"pid":27443,"tid":27477,"ts":326458958450,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":392644},
-{"pid":27443,"tid":27477,"ts":326458958450,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":392644},
-{"pid":27443,"tid":27477,"ts":326458958481,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":30,"tts":392675},
-{"pid":27443,"tid":27477,"ts":326458958481,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":392675},
-{"pid":27443,"tid":27477,"ts":326458958542,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":392736},
-{"pid":27443,"tid":27477,"ts":326458958542,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":392736},
-{"pid":27443,"tid":27477,"ts":326458958572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392766,"id":"0xaf88a95df182217a"},
-{"pid":27443,"tid":27477,"ts":326458958572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":392766},
-{"pid":27443,"tid":27477,"ts":326458958572,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":392766},
-{"pid":27443,"tid":27477,"ts":326458958603,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":392797},
-{"pid":27443,"tid":27477,"ts":326458958603,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":392797},
-{"pid":27443,"tid":27477,"ts":326458958603,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":392797},
-{"pid":27443,"tid":27477,"ts":326458958603,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":392827},
-{"pid":27443,"tid":27477,"ts":326458958664,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":392858},
-{"pid":27443,"tid":27477,"ts":326458958664,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":392858},
-{"pid":27443,"tid":27477,"ts":326458959976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392919,"id":"0xaf88a95ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458959976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":213,"tts":392919},
-{"pid":27443,"tid":27477,"ts":326458960159,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458947974.0,"frame_time_us":326458951249.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":393010},
-{"pid":27443,"tid":27477,"ts":326458960190,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458947974.0,"frame_time_us":326458951249.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":393010},
-{"pid":27443,"tid":27477,"ts":326458960251,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458967915},"dur":30,"tdur":31,"tts":393071},
-{"pid":27443,"tid":27477,"ts":326458960281,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":393102,"id":"0xaf88a95ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458966508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":393163,"id":"0xaf88a958f182217a"},
-{"pid":27443,"tid":27477,"ts":326458966508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":393163},
-{"pid":27443,"tid":27477,"ts":326458966538,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":393193},
-{"pid":27443,"tid":27477,"ts":326458966569,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":393224,"id":"0xaf88abb8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458968034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458967},"tts":393255,"id":"0xaf88a95ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458968064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":393285},
-{"pid":27443,"tid":27477,"ts":326458968064,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":393285},
-{"pid":27443,"tid":27477,"ts":326458972276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":393438,"id":"0xaf88a959f182217a"},
-{"pid":27443,"tid":27477,"ts":326458972276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1709,"tdur":1434,"tts":393438},
-{"pid":27443,"tid":27477,"ts":326458972307,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1678,"tdur":1404,"tts":393468},
-{"pid":27443,"tid":27477,"ts":326458972307,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":393468},
-{"pid":27443,"tid":27477,"ts":326458972307,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1678,"tdur":1374,"tts":393468},
-{"pid":27443,"tid":27477,"ts":326458972337,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1618,"tdur":1343,"tts":393499},
-{"pid":27443,"tid":27477,"ts":326458972337,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":393499},
-{"pid":27443,"tid":27477,"ts":326458972337,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":393499},
-{"pid":27443,"tid":27477,"ts":326458972368,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":393529,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458972368,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":393529},
-{"pid":27443,"tid":27477,"ts":326458972398,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":396,"tts":393560},
-{"pid":27443,"tid":27477,"ts":326458972825,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1130,"tdur":824,"tts":394018},
-{"pid":27443,"tid":27469,"ts":326458957840,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":285609},
-{"pid":27443,"tid":27469,"ts":326458957870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285640,"id":"0xaf88a942f182217a"},
-{"pid":27443,"tid":27469,"ts":326458957870,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":306,"tdur":61,"tts":285640},
-{"pid":27443,"tid":27469,"ts":326458957901,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":285670},
-{"pid":27443,"tid":27469,"ts":326458957901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285670,"id":"0xaf88a943f182217a"},
-{"pid":27443,"tid":27469,"ts":326458974107,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":285731},
-{"pid":27443,"tid":27469,"ts":326458974138,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":285762},
-{"pid":27443,"tid":27469,"ts":326458974138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285762,"id":"0xaf88a95bf182217a"},
-{"pid":27443,"tid":27469,"ts":326458974168,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":275,"tdur":61,"tts":285792},
-{"pid":27443,"tid":27469,"ts":326458974168,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":275,"tdur":61,"tts":285792},
-{"pid":27443,"tid":27471,"ts":326458974229,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":275,"tdur":92,"tts":347077},
-{"pid":27443,"tid":27471,"ts":326458974260,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":213,"tdur":30,"tts":347108},
-{"pid":27443,"tid":27469,"ts":326458974168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285792,"id":"0xaf88a954f182217a"},
-{"pid":27443,"tid":27471,"ts":326458974473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347138,"id":"0xaf88a955f182217a"},
-{"pid":27443,"tid":27469,"ts":326458979387,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":122,"tts":285884},
-{"pid":27443,"tid":27469,"ts":326458979418,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":152,"tdur":92,"tts":285914},
-{"pid":27443,"tid":27469,"ts":326458979418,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285914,"id":"0xaf88a96cf182217a"},
-{"pid":27443,"tid":27471,"ts":326458979448,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":61,"tts":347199},
-{"pid":27443,"tid":27471,"ts":326458979479,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":61,"tts":347199},
-{"pid":27443,"tid":27469,"ts":326458979570,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":286006},
-{"pid":27443,"tid":27469,"ts":326458979601,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":286036},
-{"pid":27443,"tid":27469,"ts":326458979601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286036,"id":"0xaf88a96df182217a"},
-{"pid":27443,"tid":27471,"ts":326458979631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347230,"id":"0xaf88a96ef182217a"},
-{"pid":27443,"tid":27546,"ts":326458983172,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":6379,"tdur":1953,"tts":24843},
-{"pid":27443,"tid":27546,"ts":326458983172,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":24843},
-{"pid":27443,"tid":27546,"ts":326458989520,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":26796},
-{"pid":27443,"tid":27498,"ts":326458995594,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":763,"tdur":702,"tts":41507},
-{"pid":27443,"tid":27498,"ts":326458995594,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":41538},
-{"pid":27443,"tid":27498,"ts":326458996326,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":42209},
-{"pid":27443,"tid":27469,"ts":326459001881,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":286067},
-{"pid":27443,"tid":27469,"ts":326459001911,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":286097},
-{"pid":27443,"tid":27469,"ts":326459001942,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286097,"id":"0xaf88a965f182217a"},
-{"pid":27443,"tid":27469,"ts":326459001972,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":286128},
-{"pid":27443,"tid":27469,"ts":326459001972,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":286128},
-{"pid":27443,"tid":27469,"ts":326459001972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286128,"id":"0xaf88a966f182217a"},
-{"pid":27443,"tid":27469,"ts":326459002003,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":286159},
-{"pid":27443,"tid":27469,"ts":326459002033,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":286189},
-{"pid":27443,"tid":27469,"ts":326459002033,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286189,"id":"0xaf88a967f182217a"},
-{"pid":27443,"tid":27496,"ts":326459005207,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":428,"tdur":336,"tts":58873},
-{"pid":27443,"tid":27496,"ts":326459005238,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":58904},
-{"pid":27443,"tid":27496,"ts":326459005574,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":59209},
-{"pid":27443,"tid":27469,"ts":326459010243,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":286220},
-{"pid":27443,"tid":27469,"ts":326459010274,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":286250},
-{"pid":27443,"tid":27469,"ts":326459010274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286250,"id":"0xaf88a97df182217a"},
-{"pid":27443,"tid":27469,"ts":326459010304,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":286281},
-{"pid":27443,"tid":27469,"ts":326459010335,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":286311},
-{"pid":27443,"tid":27469,"ts":326459010335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286311,"id":"0xaf88a97ef182217a"},
-{"pid":27443,"tid":27469,"ts":326459010335,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":854,"tdur":855,"tts":286311},
-{"pid":27443,"tid":27469,"ts":326459010365,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":824,"tts":286342},
-{"pid":27443,"tid":27469,"ts":326459010396,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":86,"tileId":{"id_ref":"0x7992c7b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":286372},
-{"pid":27443,"tid":27469,"ts":326459010396,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":286372},
-{"pid":27443,"tid":27469,"ts":326459010457,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":286433},
-{"pid":27443,"tid":27469,"ts":326459010457,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":86,"tileId":{"id_ref":"0x7992c7b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":286464},
-{"pid":27443,"tid":27469,"ts":326459010488,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":286494,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326459011159,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":287135},
-{"pid":27443,"tid":27469,"ts":326459011189,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":855,"tdur":854,"tts":287166},
-{"pid":27443,"tid":27469,"ts":326459011189,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":855,"tdur":854,"tts":287166},
-{"pid":27443,"tid":27469,"ts":326459011220,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":86,"tileId":{"id_ref":"0x7b4dd358"},"tileResolution":"HIGH_RESOLUTION"}},"tts":287196},
-{"pid":27443,"tid":27469,"ts":326459011220,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":287196},
-{"pid":27443,"tid":27469,"ts":326459011251,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":287257},
-{"pid":27443,"tid":27469,"ts":326459011281,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":83,"sourceFrameNumber":86,"tileId":{"id_ref":"0x7b4dd358"},"tileResolution":"HIGH_RESOLUTION"}},"tts":287257},
-{"pid":27443,"tid":27469,"ts":326459011312,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":287288,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326459012014,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":287990},
-{"pid":27443,"tid":27469,"ts":326459012044,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":288020},
-{"pid":27443,"tid":27459,"ts":326458972062,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":0,"tdur":0,"tts":6383122},
-{"pid":27443,"tid":27459,"ts":326458972062,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":31,"tdur":30,"tts":6383122},
-{"pid":27443,"tid":27459,"ts":326458972093,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":86},"dur":0,"tdur":0,"tts":6383152},
-{"pid":27443,"tid":27459,"ts":326458972123,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6383183,"id":"0x300000039"},
-{"pid":27443,"tid":27459,"ts":326458972123,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1740,"tdur":61,"tts":6383183},
-{"pid":27443,"tid":27459,"ts":326458972154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6383213,"id":"0xaf88a959f182217a"},
-{"pid":27443,"tid":27459,"ts":326458973894,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6383274},
-{"pid":27443,"tid":27459,"ts":326458973955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6383335,"id":"0xaf88a919f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458973955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2380,"tdur":1160,"tts":6383366},
-{"pid":27443,"tid":27459,"ts":326458973985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6383366,"id":"0xaf88a91bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458974016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6383396,"id":"0xaf88abbef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458974016,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2319,"tdur":1099,"tts":6383396},
-{"pid":27443,"tid":27459,"ts":326458974077,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2228,"tdur":1038,"tts":6383457},
-{"pid":27443,"tid":27459,"ts":326458974077,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6383488,"id":"0x30000003c"},
-{"pid":27443,"tid":27459,"ts":326458974107,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2106,"tdur":916,"tts":6383488},
-{"pid":27443,"tid":27459,"ts":326458974138,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2075,"tdur":885,"tts":6383519},
-{"pid":27443,"tid":27459,"ts":326458974199,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6383580},
-{"pid":27443,"tid":27459,"ts":326458974260,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6383641},
-{"pid":27443,"tid":27459,"ts":326458974290,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6383671},
-{"pid":27443,"tid":27459,"ts":326458974321,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6383702},
-{"pid":27443,"tid":27459,"ts":326458974351,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1832,"tdur":641,"tts":6383732},
-{"pid":27443,"tid":27459,"ts":326458974504,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1648,"tdur":428,"tts":6383915},
-{"pid":27443,"tid":27459,"ts":326458974535,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6383915},
-{"pid":27443,"tid":27459,"ts":326458974840,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":42,"frame":"0x78c60000"}},"tts":6384220,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326458974870,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":1252,"tdur":61,"tts":6384251},
-{"pid":27443,"tid":27459,"ts":326458974870,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1221,"tdur":0,"tts":6384251},
-{"pid":27443,"tid":27459,"ts":326458976091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6384282,"id":"0xaf88a951f182217a"},
-{"pid":27443,"tid":27459,"ts":326458976122,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6384343},
-{"pid":27443,"tid":27459,"ts":326458976213,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":31,"tts":6384434},
-{"pid":27443,"tid":27459,"ts":326458976244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6384434,"id":"0xaf88adb2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326458976366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458974},"tts":6384556,"id":"0xaf88a901f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458976366,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":946,"tdur":0,"tts":6384556},
-{"pid":27443,"tid":27459,"ts":326458977312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":6384587},
-{"pid":27443,"tid":27459,"ts":326458977342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6384617,"id":"0xaf88a91af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":6384617},
-{"pid":27443,"tid":27459,"ts":326458977373,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6384648,"id":"0xaf88aba7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458977373,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6384648},
-{"pid":27443,"tid":27459,"ts":326458977403,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6384678,"id":"0xaf88abbaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458977434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6384709,"id":"0xaf88a915f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977464,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6384739,"id":"0xaf88a91bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977495,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6384770},
-{"pid":27443,"tid":27459,"ts":326458977495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6384770,"id":"0xaf88a916f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6384800,"id":"0xaf88abbff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458977526,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6384800},
-{"pid":27443,"tid":27459,"ts":326458977526,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6384800},
-{"pid":27443,"tid":27459,"ts":326458977556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6384861,"id":"0xaf88a914f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6384861},
-{"pid":27443,"tid":27459,"ts":326458977587,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6384861,"id":"0xaf88abb8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458977617,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6384892},
-{"pid":27443,"tid":27459,"ts":326458977617,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6384892},
-{"pid":27443,"tid":27459,"ts":326458977678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6384953,"id":"0xaf88a916f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977678,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":23409,"tdur":12788,"tts":6384953},
-{"pid":27443,"tid":27459,"ts":326458977709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6384983,"id":"0xaf88a917f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326458977709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6384983,"id":"0xaf88abb9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326458977709,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":23348,"tdur":12727,"tts":6384983},
-{"pid":27443,"tid":27459,"ts":326458977709,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":87},"tts":6385014},
-{"pid":27443,"tid":27459,"ts":326458977739,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":6385014},
-{"pid":27443,"tid":27459,"ts":326458977770,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":19411,"tdur":9430,"tts":6385045},
-{"pid":27443,"tid":27459,"ts":326458977800,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6385075},
-{"pid":27443,"tid":27459,"ts":326458977831,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":42,"frame":"0x78c60000"}},"dur":19319,"tdur":9369,"tts":6385106},
-{"pid":27443,"tid":27459,"ts":326458977892,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":19258,"tdur":9278,"tts":6385197},
-{"pid":27443,"tid":27459,"ts":326458977922,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6385197},
-{"pid":27443,"tid":27459,"ts":326458978136,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6385411},
-{"pid":27443,"tid":27459,"ts":326458978166,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6385441},
-{"pid":27443,"tid":27477,"ts":326458972856,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":86},"dur":244,"tdur":244,"tts":394018},
-{"pid":27443,"tid":27477,"ts":326458973100,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":86},"dur":61,"tdur":31,"tts":394292},
-{"pid":27443,"tid":27477,"ts":326458973161,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":86},"tts":394323},
-{"pid":27443,"tid":27477,"ts":326458973619,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":394506},
-{"pid":27443,"tid":27477,"ts":326458973649,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":394536},
-{"pid":27443,"tid":27477,"ts":326458973649,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":306,"tdur":306,"tts":394536},
-{"pid":27443,"tid":27477,"ts":326458973649,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":394536},
-{"pid":27443,"tid":27477,"ts":326458973772,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":394658},
-{"pid":27443,"tid":27477,"ts":326458973802,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":394689},
-{"pid":27443,"tid":27477,"ts":326458973802,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":394689},
-{"pid":27443,"tid":27477,"ts":326458973802,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":394689},
-{"pid":27443,"tid":27477,"ts":326458973802,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":394689,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458973833,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":394719},
-{"pid":27443,"tid":27477,"ts":326458973833,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":31,"tts":394750},
-{"pid":27443,"tid":27477,"ts":326458973894,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":394781,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458973924,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":394811,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458973924,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":394811,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458973985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":394872,"id":"0xaf88a95af182217a"},
-{"pid":27443,"tid":27477,"ts":326458973985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":550,"tdur":214,"tts":394872},
-{"pid":27443,"tid":27477,"ts":326458974016,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458964658.0,"frame_time_us":326458967933.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":519,"tdur":183,"tts":394903},
-{"pid":27443,"tid":27477,"ts":326458974016,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":61,"tts":394903},
-{"pid":27443,"tid":27477,"ts":326458974290,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458964658.0,"frame_time_us":326458967933.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":245,"tdur":122,"tts":394964},
-{"pid":27443,"tid":27477,"ts":326458974321,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326458984599},"dur":214,"tdur":61,"tts":395025},
-{"pid":27443,"tid":27477,"ts":326458974504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":395086,"id":"0xaf88a956f182217a"},
-{"pid":27443,"tid":27477,"ts":326458974596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395147,"id":"0xaf88a95bf182217a"},
-{"pid":27443,"tid":27477,"ts":326458974626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":395147},
-{"pid":27443,"tid":27477,"ts":326458974626,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":395147},
-{"pid":27443,"tid":27477,"ts":326458974657,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":395177,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458974657,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":395177},
-{"pid":27443,"tid":27477,"ts":326458974687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":395208,"id":"0xaf88a957f182217a"},
-{"pid":27443,"tid":27477,"ts":326458974687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395208,"id":"0xaf88a954f182217a"},
-{"pid":27443,"tid":27477,"ts":326458974718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":395238},
-{"pid":27443,"tid":27477,"ts":326458974718,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":395238},
-{"pid":27443,"tid":27477,"ts":326458974718,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":395238,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458974748,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":395269},
-{"pid":27443,"tid":27477,"ts":326458974748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":395269,"id":"0xaf88a950f182217a"},
-{"pid":27443,"tid":27477,"ts":326458974779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395299,"id":"0xaf88a955f182217a"},
-{"pid":27443,"tid":27477,"ts":326458974779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":183,"tdur":31,"tts":395299},
-{"pid":27443,"tid":27477,"ts":326458974779,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":152,"tdur":31,"tts":395299},
-{"pid":27443,"tid":27477,"ts":326458974779,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":395299,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458974809,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":122,"tdur":0,"tts":395330},
-{"pid":27443,"tid":27477,"ts":326458974809,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":395330},
-{"pid":27443,"tid":27477,"ts":326458974962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395360,"id":"0xaf88a957f182217a"},
-{"pid":27443,"tid":27477,"ts":326458974962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1282,"tts":395360},
-{"pid":27443,"tid":27477,"ts":326458974962,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1282,"tts":395360},
-{"pid":27443,"tid":27477,"ts":326458974992,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":395391},
-{"pid":27443,"tid":27477,"ts":326458974992,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":395391},
-{"pid":27443,"tid":27477,"ts":326458975023,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":395421},
-{"pid":27443,"tid":27477,"ts":326458975023,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":395421},
-{"pid":27443,"tid":27477,"ts":326458975114,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1313,"tdur":1129,"tts":395513},
-{"pid":27443,"tid":27477,"ts":326458975145,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1098,"tts":395544},
-{"pid":27443,"tid":27477,"ts":326458975145,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1099,"tdur":1037,"tts":395544},
-{"pid":27443,"tid":27477,"ts":326458975145,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":395544,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326458975236,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":395635},
-{"pid":27443,"tid":27477,"ts":326458975267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":395666},
-{"pid":27443,"tid":27477,"ts":326458975298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":395696},
-{"pid":27443,"tid":27477,"ts":326458975328,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":395727},
-{"pid":27443,"tid":27477,"ts":326458975359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":395757},
-{"pid":27443,"tid":27477,"ts":326458975389,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":92,"tdur":30,"tts":395788},
-{"pid":27443,"tid":27477,"ts":326458975389,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":395788},
-{"pid":27443,"tid":27477,"ts":326458975481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":395849},
-{"pid":27443,"tid":27477,"ts":326458975511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":395849},
-{"pid":27443,"tid":27477,"ts":326458975542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":395879},
-{"pid":27443,"tid":27477,"ts":326458975542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":395879},
-{"pid":27443,"tid":27477,"ts":326458975572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":395910},
-{"pid":27443,"tid":27477,"ts":326458975603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":395940},
-{"pid":27443,"tid":27477,"ts":326458975633,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":395971},
-{"pid":27443,"tid":27477,"ts":326458975664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396001},
-{"pid":27443,"tid":27477,"ts":326458975694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396032},
-{"pid":27443,"tid":27477,"ts":326458975694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":396032},
-{"pid":27443,"tid":27477,"ts":326458975725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396062},
-{"pid":27443,"tid":27477,"ts":326458975725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":396062},
-{"pid":27443,"tid":27477,"ts":326458975755,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":396093},
-{"pid":27443,"tid":27477,"ts":326458975786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396123},
-{"pid":27443,"tid":27477,"ts":326458975786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":396123},
-{"pid":27443,"tid":27477,"ts":326458975816,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396154},
-{"pid":27443,"tid":27477,"ts":326458975847,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396184},
-{"pid":27443,"tid":27477,"ts":326458975847,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":396184},
-{"pid":27443,"tid":27477,"ts":326458975877,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396215},
-{"pid":27443,"tid":27477,"ts":326458975877,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":396246},
-{"pid":27443,"tid":27477,"ts":326458975999,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":396337},
-{"pid":27443,"tid":27477,"ts":326458976030,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396368},
-{"pid":27443,"tid":27477,"ts":326458976030,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":396368},
-{"pid":27443,"tid":27477,"ts":326458976061,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":396398},
-{"pid":27443,"tid":27477,"ts":326458976091,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396429},
-{"pid":27443,"tid":27477,"ts":326458976091,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":396429},
-{"pid":27443,"tid":27477,"ts":326458976122,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":396459},
-{"pid":27443,"tid":27477,"ts":326458976152,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":396490},
-{"pid":27443,"tid":27477,"ts":326458976183,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":396520},
-{"pid":27443,"tid":27477,"ts":326458976213,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":396551},
-{"pid":27443,"tid":27477,"ts":326458976213,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":396551},
-{"pid":27443,"tid":27477,"ts":326458976244,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":152,"tdur":31,"tts":396581},
-{"pid":27443,"tid":27477,"ts":326458976274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":396612,"id":"0xaf88a952f182217a"},
-{"pid":27443,"tid":27477,"ts":326458976274,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":396612},
-{"pid":27443,"tid":27477,"ts":326458976427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":396642,"id":"0xaf88a950f182217a"},
-{"pid":27443,"tid":27477,"ts":326458976457,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":396673},
-{"pid":27443,"tid":27477,"ts":326458976457,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":396673},
-{"pid":27443,"tid":27477,"ts":326458976457,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":396673},
-{"pid":27443,"tid":27477,"ts":326458976457,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":396673},
-{"pid":27443,"tid":27477,"ts":326458976488,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":396703},
-{"pid":27443,"tid":27477,"ts":326458976488,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":396703},
-{"pid":27443,"tid":27477,"ts":326458976549,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":396764},
-{"pid":27443,"tid":27477,"ts":326458976549,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":396764},
-{"pid":27443,"tid":27477,"ts":326458976579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":396795,"id":"0xaf88a951f182217a"},
-{"pid":27443,"tid":27477,"ts":326458976579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":396795},
-{"pid":27443,"tid":27477,"ts":326458976610,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":91,"tdur":92,"tts":396825},
-{"pid":27443,"tid":27477,"ts":326458976610,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":87},"tts":396825},
-{"pid":27443,"tid":27477,"ts":326458976671,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":396886,"id":"0xaf88abb9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458976671,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":396886,"id":"0xaf88a914f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458976701,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":396917},
-{"pid":27443,"tid":27477,"ts":326458976732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":396947,"id":"0xaf88a952f182217a"},
-{"pid":27443,"tid":27477,"ts":326458976732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2503,"tdur":1771,"tts":396947},
-{"pid":27443,"tid":27477,"ts":326458976732,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2472,"tdur":1740,"tts":396947},
-{"pid":27443,"tid":27477,"ts":326458976732,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":396947},
-{"pid":27443,"tid":27477,"ts":326458976762,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2167,"tdur":1434,"tts":396978},
-{"pid":27443,"tid":27477,"ts":326458976762,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":86},"dur":977,"tdur":824,"tts":396978},
-{"pid":27443,"tid":27477,"ts":326458976793,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":86},"dur":427,"tdur":244,"tts":397009},
-{"pid":27443,"tid":27477,"ts":326458977220,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":86},"dur":31,"tdur":31,"tts":397283},
-{"pid":27443,"tid":27477,"ts":326458977251,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":86},"tts":397314},
-{"pid":27443,"tid":27477,"ts":326458977403,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":397466},
-{"pid":27443,"tid":27477,"ts":326458977403,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":397466},
-{"pid":27443,"tid":27477,"ts":326458977403,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":397497},
-{"pid":27443,"tid":27477,"ts":326458977434,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":397497},
-{"pid":27443,"tid":27477,"ts":326458977434,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":397497,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458977495,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":397558},
-{"pid":27443,"tid":27477,"ts":326458977739,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":397802},
-{"pid":27443,"tid":27477,"ts":326458977739,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":275,"tts":397802},
-{"pid":27443,"tid":27477,"ts":326458977770,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":397833},
-{"pid":27443,"tid":27477,"ts":326458977770,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":213,"tts":397833},
-{"pid":27443,"tid":27477,"ts":326458977861,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":31,"tdur":31,"tts":397924},
-{"pid":27443,"tid":27477,"ts":326458977892,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":397955,"id":"0xaf88adb3f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458978441,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":398077,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458978472,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":398107,"id":"0x300000039"},
-{"pid":27443,"tid":27477,"ts":326458978472,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":396,"tdur":244,"tts":398107},
-{"pid":27443,"tid":27477,"ts":326458978655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":398290,"id":"0xaf88aa4cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326458978868,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":398382,"id":"0xaf88abbbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458978899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":398382,"id":"0xaf88a910f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326458978929,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":275,"tdur":275,"tts":398412},
-{"pid":27443,"tid":27477,"ts":326458978929,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":244,"tts":398443},
-{"pid":27443,"tid":27477,"ts":326458978960,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":398443},
-{"pid":27443,"tid":27477,"ts":326458979021,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":398504},
-{"pid":27443,"tid":27477,"ts":326458979052,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":398535},
-{"pid":27443,"tid":27477,"ts":326458979052,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":398535},
-{"pid":27443,"tid":27477,"ts":326458979052,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":398535},
-{"pid":27443,"tid":27477,"ts":326458979082,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":398565,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458979082,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":398596},
-{"pid":27443,"tid":27477,"ts":326458979113,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":398596},
-{"pid":27443,"tid":27477,"ts":326458979143,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":398657,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458979174,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":398657,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458979204,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":398687,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326458979235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398718,"id":"0xaf88a953f182217a"},
-{"pid":27443,"tid":27477,"ts":326458979235,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":398718},
-{"pid":27443,"tid":27477,"ts":326458979265,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":61,"tts":398748},
-{"pid":27443,"tid":27477,"ts":326458979265,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":398748,"id":"0x30000003d"},
-{"pid":27443,"tid":27477,"ts":326458979265,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":398779},
-{"pid":27443,"tid":27477,"ts":326458979296,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":398779,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326458979326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":398809,"id":"0xaf88abb4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458979692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398901,"id":"0xaf88a96cf182217a"},
-{"pid":27443,"tid":27477,"ts":326458979692,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":398901},
-{"pid":27443,"tid":27477,"ts":326458979692,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":398901},
-{"pid":27443,"tid":27477,"ts":326458979723,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":398931,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458979723,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":398931},
-{"pid":27443,"tid":27477,"ts":326458979753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":398962,"id":"0xaf88a96ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458979753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398962,"id":"0xaf88a96df182217a"},
-{"pid":27443,"tid":27477,"ts":326458979784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":398992},
-{"pid":27443,"tid":27477,"ts":326458979784,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":398992},
-{"pid":27443,"tid":27477,"ts":326458979784,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":398992,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458979784,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":399023},
-{"pid":27443,"tid":27477,"ts":326458979815,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399023,"id":"0xaf88a96ef182217a"},
-{"pid":27443,"tid":27477,"ts":326458979815,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":399023},
-{"pid":27443,"tid":27477,"ts":326458979845,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":399053},
-{"pid":27443,"tid":27477,"ts":326458979845,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":399053,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326458979845,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":399053},
-{"pid":27443,"tid":27477,"ts":326458979876,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":399084,"id":"0xaf88a968f182217a"},
-{"pid":27443,"tid":27477,"ts":326458979876,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399084,"id":"0xaf88a96ff182217a"},
-{"pid":27443,"tid":27477,"ts":326458979906,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":153,"tts":399114},
-{"pid":27443,"tid":27477,"ts":326458979906,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":214,"tdur":153,"tts":399114},
-{"pid":27443,"tid":27477,"ts":326458979906,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":399114},
-{"pid":27443,"tid":27477,"ts":326458979906,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":399114},
-{"pid":27443,"tid":27477,"ts":326458979937,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":399145},
-{"pid":27443,"tid":27477,"ts":326458979937,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":399145},
-{"pid":27443,"tid":27477,"ts":326458979998,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":122,"tdur":61,"tts":399206},{"pid":27443,"tid":27477,"ts":326458979998,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":122,"tdur":61,"tts":399206},
-{"pid":27443,"tid":27477,"ts":326458980150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399298,"id":"0xaf88a968f182217a"},
-{"pid":27443,"tid":27477,"ts":326458980150,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":399298},
-{"pid":27443,"tid":27477,"ts":326458980150,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":399298},
-{"pid":27443,"tid":27477,"ts":326458980181,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":399328},
-{"pid":27443,"tid":27477,"ts":326458980181,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":399328},
-{"pid":27443,"tid":27477,"ts":326458980181,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":399328},
-{"pid":27443,"tid":27477,"ts":326458980211,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":399359},
-{"pid":27443,"tid":27477,"ts":326458980242,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":399389},
-{"pid":27443,"tid":27477,"ts":326458980242,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":399420},
-{"pid":27443,"tid":27466,"ts":326458980578,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":256493},
-{"pid":27443,"tid":27466,"ts":326458980608,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256523,"id":"0xba449b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458980639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":256554,"id":"0xaf88a969f182217a"},
-{"pid":27443,"tid":27466,"ts":326458989093,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":256645},
-{"pid":27443,"tid":27466,"ts":326458989123,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":256706},
-{"pid":27443,"tid":27466,"ts":326458989154,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256706,"id":"0xba449d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326458989184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":256737,"id":"0xaf88a96af182217a"},
-{"pid":27443,"tid":27466,"ts":326459006550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":256828,"id":"0xaf88aa4df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459006581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":256859},
-{"pid":27443,"tid":27466,"ts":326459006581,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256859,"id":"0xccc40f02"},
-{"pid":27443,"tid":27466,"ts":326459007558,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":256950},
-{"pid":27443,"tid":27466,"ts":326459007588,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":256981},
-{"pid":27443,"tid":27466,"ts":326459007588,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":256981,"id":"0xba449e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459007649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":257042,"id":"0xaf88a963f182217a"},
-{"pid":27443,"tid":27466,"ts":326459009114,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":257164,"id":"0xaf88aa4ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459009114,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":257164},
-{"pid":27443,"tid":27466,"ts":326459009114,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":257164,"id":"0xccc41006"},
-{"pid":27443,"tid":27466,"ts":326459009419,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":257256},
-{"pid":27443,"tid":27466,"ts":326459009450,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":257286},
-{"pid":27443,"tid":27466,"ts":326459009450,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":257286,"id":"0xc4c1380a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459009786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":257408,"id":"0xaf88aa4ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459009786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":257408},
-{"pid":27443,"tid":27466,"ts":326459009786,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":257408,"id":"0xccc41102"},
-{"pid":27443,"tid":27466,"ts":326459010518,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":257500},
-{"pid":27443,"tid":27466,"ts":326459010549,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":257530},
-{"pid":27443,"tid":27466,"ts":326459010549,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":257530,"id":"0xba449f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459010579,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":257561},
-{"pid":27443,"tid":27466,"ts":326459010610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":257591,"id":"0xaf88a97ff182217a"},
-{"pid":27443,"tid":27466,"ts":326459012380,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":257652},
-{"pid":27443,"tid":27466,"ts":326459012410,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":257683},
-{"pid":27443,"tid":27466,"ts":326459012410,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":257683,"id":"0xba44a002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459012441,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":257713,"id":"0xaf88a97bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459020742,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":257805},
-{"pid":27443,"tid":27466,"ts":326459020773,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":257836},
-{"pid":27443,"tid":27466,"ts":326459020773,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":257836,"id":"0xba44a202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459020834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":257897,"id":"0xaf88a974f182217a"},
-{"pid":27443,"tid":27466,"ts":326459030539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":258019,"id":"0xaf88aa48f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459030539,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":258019},
-{"pid":27443,"tid":27466,"ts":326459030570,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258049,"id":"0xccc41302"},
-{"pid":27443,"tid":27466,"ts":326459032279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":258171,"id":"0xaf88aa49f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459032279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":258171},
-{"pid":27443,"tid":27466,"ts":326459032310,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258202,"id":"0xccc41402"},
-{"pid":27443,"tid":27466,"ts":326459033225,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":152,"tts":258263},
-{"pid":27443,"tid":27466,"ts":326459033256,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":183,"tdur":122,"tts":258293},
-{"pid":27443,"tid":27466,"ts":326459033286,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258324,"id":"0xba44a302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459033286,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":153,"tdur":31,"tts":258354},
-{"pid":27443,"tid":27466,"ts":326459033408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":258385,"id":"0xaf88a90cf182217a"},
-{"pid":27443,"tid":27466,"ts":326459034690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":258477,"id":"0xaf88aa4af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459034721,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":258538},
-{"pid":27443,"tid":27466,"ts":326459034751,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258538,"id":"0xccc41602"},
-{"pid":27443,"tid":27466,"ts":326459039024,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":258629},
-{"pid":27443,"tid":27466,"ts":326459039085,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":258660},
-{"pid":27443,"tid":27466,"ts":326459039085,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258660,"id":"0xba44a402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459039116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":258721,"id":"0xaf88a90ff182217a"},
-{"pid":27443,"tid":27466,"ts":326459039146,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":258721},
-{"pid":27443,"tid":27466,"ts":326459039146,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258721,"id":"0xba44a502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459039177,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":258751},
-{"pid":27443,"tid":27466,"ts":326459039177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":258782,"id":"0xaf88a908f182217a"},
-{"pid":27443,"tid":27466,"ts":326459040367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":258843,"id":"0xaf88aa4bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459040397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":258873},
-{"pid":27443,"tid":27466,"ts":326459040397,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258873,"id":"0xccc41702"},
-{"pid":27443,"tid":27466,"ts":326459041008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":258995,"id":"0xaf88aa44f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459041008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":258995},
-{"pid":27443,"tid":27466,"ts":326459041008,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":258995,"id":"0xccc41806"},
-{"pid":27443,"tid":27477,"ts":326458980700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399481,"id":"0xaf88a969f182217a"},
-{"pid":27443,"tid":27477,"ts":326458980761,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":31,"tts":399511},
-{"pid":27443,"tid":27477,"ts":326458980761,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":399511},
-{"pid":27443,"tid":27477,"ts":326458980791,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":399542,"id":"0xaf88abb5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326458984881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458984},"tts":399603,"id":"0xaf88a956f182217a"},
-{"pid":27443,"tid":27477,"ts":326458984881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":0,"tts":399633},
-{"pid":27443,"tid":27477,"ts":326458989276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399694,"id":"0xaf88a96af182217a"},
-{"pid":27443,"tid":27477,"ts":326458989276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":399694},
-{"pid":27443,"tid":27477,"ts":326458989306,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326458983826.0,"frame_time_us":326458984618.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":399725},
-{"pid":27443,"tid":27477,"ts":326458989337,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326458983826.0,"frame_time_us":326458984618.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":399755},
-{"pid":27443,"tid":27477,"ts":326458989398,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459001284},"dur":30,"tdur":0,"tts":399847},
-{"pid":27443,"tid":27477,"ts":326458989428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":399847,"id":"0xaf88a96bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459000355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399938,"id":"0xaf88a964f182217a"},
-{"pid":27443,"tid":27477,"ts":326459000355,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1526,"tdur":1495,"tts":399969},
-{"pid":27443,"tid":27477,"ts":326459000385,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1496,"tdur":1495,"tts":399969},
-{"pid":27443,"tid":27477,"ts":326459000385,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":31,"tts":399969},
-{"pid":27443,"tid":27477,"ts":326459000416,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1465,"tdur":1464,"tts":400000},
-{"pid":27443,"tid":27477,"ts":326459000416,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1434,"tdur":1434,"tts":400000},
-{"pid":27443,"tid":27477,"ts":326459000416,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":400000},
-{"pid":27443,"tid":27477,"ts":326459000446,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":400030},
-{"pid":27443,"tid":27477,"ts":326459000446,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":400030,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459000477,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":400061},
-{"pid":27443,"tid":27477,"ts":326459000507,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":428,"tdur":427,"tts":400091},
-{"pid":27443,"tid":27477,"ts":326459000996,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":854,"tdur":855,"tts":400579},
-{"pid":27443,"tid":27477,"ts":326459000996,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":87},"dur":274,"tdur":275,"tts":400579},
-{"pid":27443,"tid":27477,"ts":326459001270,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":87},"dur":31,"tdur":31,"tts":400854},
-{"pid":27443,"tid":27477,"ts":326459001331,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":87},"tts":400915},
-{"pid":27443,"tid":27477,"ts":326459001484,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":401068},
-{"pid":27443,"tid":27477,"ts":326459001515,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":401098},
-{"pid":27443,"tid":27477,"ts":326459001515,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":401098},
-{"pid":27443,"tid":27477,"ts":326459001515,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":401098},
-{"pid":27443,"tid":27477,"ts":326459001637,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":401251},
-{"pid":27443,"tid":27477,"ts":326459001667,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":401251},
-{"pid":27443,"tid":27477,"ts":326459001667,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":401251},
-{"pid":27443,"tid":27477,"ts":326459001698,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":401281},
-{"pid":27443,"tid":27477,"ts":326459001698,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":401281,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459001728,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":401312},
-{"pid":27443,"tid":27477,"ts":326459001728,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":401312},
-{"pid":27443,"tid":27477,"ts":326459001789,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":401373,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459001820,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":182}},"tts":401403,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459001820,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1744896},"tts":401403,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459001881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459001},"tts":401464,"id":"0xaf88a96bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459001911,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":401495},
-{"pid":27443,"tid":27477,"ts":326459001911,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":401495},
-{"pid":27443,"tid":27477,"ts":326459002033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401556,"id":"0xaf88a965f182217a"},
-{"pid":27443,"tid":27477,"ts":326459002033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":401556},
-{"pid":27443,"tid":27477,"ts":326459002033,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":401556},
-{"pid":27443,"tid":27477,"ts":326459002064,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":401587,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459002064,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":30,"tts":401587},
-{"pid":27443,"tid":27477,"ts":326459002094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":401617,"id":"0xaf88a960f182217a"},
-{"pid":27443,"tid":27477,"ts":326459002125,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401648,"id":"0xaf88a966f182217a"},
-{"pid":27443,"tid":27477,"ts":326459002125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":401648},
-{"pid":27443,"tid":27477,"ts":326459002125,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":31,"tts":401678},
-{"pid":27443,"tid":27477,"ts":326459002155,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":401678,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459002155,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":401678},
-{"pid":27443,"tid":27477,"ts":326459002186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":401709,"id":"0xaf88a961f182217a"},
-{"pid":27443,"tid":27477,"ts":326459002186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401709,"id":"0xaf88a967f182217a"},
-{"pid":27443,"tid":27477,"ts":326459002216,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":401739},
-{"pid":27443,"tid":27477,"ts":326459002216,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":401739},
-{"pid":27443,"tid":27477,"ts":326459002216,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":401739,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459002247,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":401770},
-{"pid":27443,"tid":27477,"ts":326459002247,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401770,"id":"0xaf88a960f182217a"},
-{"pid":27443,"tid":27477,"ts":326459002278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1526,"tdur":1404,"tts":401800},
-{"pid":27443,"tid":27477,"ts":326459002278,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1526,"tdur":1404,"tts":401800},
-{"pid":27443,"tid":27459,"ts":326458981951,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6387120},
-{"pid":27443,"tid":27459,"ts":326458982195,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6387334},
-{"pid":27443,"tid":27459,"ts":326458982287,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6387425},
-{"pid":27443,"tid":27459,"ts":326458982531,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6387700},
-{"pid":27443,"tid":27459,"ts":326458982653,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6387791},
-{"pid":27443,"tid":27459,"ts":326458982806,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6387944},
-{"pid":27443,"tid":27459,"ts":326458982867,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6388005},
-{"pid":27443,"tid":27459,"ts":326458989581,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6388280},
-{"pid":27443,"tid":27459,"ts":326458989612,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6388310},
-{"pid":27443,"tid":27459,"ts":326458990436,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6388860},
-{"pid":27443,"tid":27459,"ts":326458994861,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6393285},
-{"pid":27443,"tid":27459,"ts":326458994983,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6393407},
-{"pid":27443,"tid":27459,"ts":326458995075,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6393499},
-{"pid":27443,"tid":27459,"ts":326458995105,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6393529},
-{"pid":27443,"tid":27459,"ts":326458995227,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6393651},
-{"pid":27443,"tid":27459,"ts":326458996387,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6393926},
-{"pid":27443,"tid":27459,"ts":326458996418,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6393926},
-{"pid":27443,"tid":27459,"ts":326458996814,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6394140},
-{"pid":27443,"tid":27459,"ts":326458997120,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6394445},
-{"pid":27443,"tid":27459,"ts":326458997181,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2563,"tdur":2564,"tts":6394506},
-{"pid":27443,"tid":27459,"ts":326458997211,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6394536},
-{"pid":27443,"tid":27459,"ts":326458997242,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6394567},
-{"pid":27443,"tid":27459,"ts":326458997242,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6394567},
-{"pid":27443,"tid":27459,"ts":326458997699,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6395025},
-{"pid":27443,"tid":27459,"ts":326458997730,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6395055},
-{"pid":27443,"tid":27459,"ts":326458997761,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1983,"tdur":1984,"tts":6395086},
-{"pid":27443,"tid":27459,"ts":326458997761,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1831,"tts":6395086},
-{"pid":27443,"tid":27459,"ts":326458997791,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":305,"tts":6395116},
-{"pid":27443,"tid":27459,"ts":326458998127,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6395452},
-{"pid":27443,"tid":27459,"ts":326458998310,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6395635},
-{"pid":27443,"tid":27459,"ts":326458998401,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":6395727},
-{"pid":27443,"tid":27459,"ts":326458998432,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":6395757},
-{"pid":27443,"tid":27459,"ts":326458999592,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6396917},
-{"pid":27443,"tid":27459,"ts":326458999622,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":6396947},
-{"pid":27443,"tid":27459,"ts":326458999744,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":87},"dur":519,"tdur":488,"tts":6397070},
-{"pid":27443,"tid":27459,"ts":326458999775,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":488,"tdur":458,"tts":6397100},
-{"pid":27443,"tid":27459,"ts":326459000111,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":30,"tdur":31,"tts":6397405},
-{"pid":27443,"tid":27459,"ts":326459000141,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":31,"tdur":0,"tts":6397436},
-{"pid":27443,"tid":27459,"ts":326459000172,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":0,"tdur":0,"tts":6397466},
-{"pid":27443,"tid":27459,"ts":326459000172,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":30,"tdur":31,"tts":6397466},
-{"pid":27443,"tid":27459,"ts":326459000202,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":0,"tdur":0,"tts":6397497},
-{"pid":27443,"tid":27459,"ts":326459000202,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":31,"tdur":0,"tts":6397527},
-{"pid":27443,"tid":27459,"ts":326459000233,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":87},"dur":0,"tdur":0,"tts":6397527},
-{"pid":27443,"tid":27459,"ts":326459000263,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6397558,"id":"0x30000003c"},
-{"pid":27443,"tid":27459,"ts":326459000263,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":733,"tdur":91,"tts":6397558},
-{"pid":27443,"tid":27459,"ts":326459000294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6397588,"id":"0xaf88a964f182217a"},
-{"pid":27443,"tid":27459,"ts":326459001057,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6397710},
-{"pid":27443,"tid":27459,"ts":326459001118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6397772,"id":"0xaf88a917f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459001118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":91,"tts":6397772},
-{"pid":27443,"tid":27459,"ts":326459001148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6397802,"id":"0xaf88a911f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459001148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6397802,"id":"0xaf88abbbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459001148,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":92,"tdur":0,"tts":6397833},
-{"pid":27443,"tid":27459,"ts":326459001179,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":61,"tdur":0,"tts":6397833},
-{"pid":27443,"tid":27459,"ts":326459001179,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6397833},
-{"pid":27443,"tid":27459,"ts":326459001301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6397894,"id":"0xaf88a910f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459001331,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5616,"tdur":1923,"tts":6397924},
-{"pid":27443,"tid":27459,"ts":326459001331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6397924,"id":"0xaf88abb4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459001331,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":5586,"tdur":1861,"tts":6397955},
-{"pid":27443,"tid":27459,"ts":326459001423,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":5494,"tdur":1800,"tts":6398016},
-{"pid":27443,"tid":27459,"ts":326459001423,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6398016,"id":"0x30000003d"},
-{"pid":27443,"tid":27459,"ts":326459001453,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":4975,"tdur":1618,"tts":6398046},
-{"pid":27443,"tid":27459,"ts":326459001484,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":4944,"tdur":1556,"tts":6398077},
-{"pid":27443,"tid":27459,"ts":326459001545,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6398138},
-{"pid":27443,"tid":27459,"ts":326459001576,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6398168},
-{"pid":27443,"tid":27459,"ts":326459001606,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6398199},
-{"pid":27443,"tid":27459,"ts":326459001637,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6398260},
-{"pid":27443,"tid":27459,"ts":326459001698,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":4700,"tdur":1343,"tts":6398290},
-{"pid":27443,"tid":27459,"ts":326459004750,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1587,"tdur":1068,"tts":6398504},
-{"pid":27443,"tid":27459,"ts":326459004780,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6398535},
-{"pid":27443,"tid":27459,"ts":326459004872,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6398626},
-{"pid":27443,"tid":27459,"ts":326459004994,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6398748},
-{"pid":27443,"tid":27459,"ts":326459005055,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6398809},
-{"pid":27443,"tid":27459,"ts":326459005665,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6398992},
-{"pid":27443,"tid":27459,"ts":326459005665,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6398992},
-{"pid":27443,"tid":27459,"ts":326459005818,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6399145},
-{"pid":27443,"tid":27459,"ts":326459006154,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":43,"frame":"0x78c60000"}},"tts":6399481,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459006154,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":6399481},
-{"pid":27443,"tid":27459,"ts":326459006276,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":6399511},
-{"pid":27443,"tid":27459,"ts":326459006276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6399511,"id":"0xaf88a962f182217a"},
-{"pid":27443,"tid":27459,"ts":326459006337,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6399572},
-{"pid":27443,"tid":27459,"ts":326459006459,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":427,"tdur":92,"tts":6399694},
-{"pid":27443,"tid":27459,"ts":326459006459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6399694,"id":"0xaf88aa4df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459006978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6399877,"id":"0xaf88a911f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459006978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6399877},
-{"pid":27443,"tid":27459,"ts":326459007008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6399908,"id":"0xaf88a912f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459007008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6399908,"id":"0xaf88abb5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459007008,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6399908},
-{"pid":27443,"tid":27459,"ts":326459007039,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6399938},
-{"pid":27443,"tid":27459,"ts":326459007069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6399969,"id":"0xaf88a912f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459007100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6400000},
-{"pid":27443,"tid":27459,"ts":326459007985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6400091,"id":"0xaf88a913f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459007985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":21822,"tdur":14162,"tts":6400091},
-{"pid":27443,"tid":27459,"ts":326459008015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6400122,"id":"0xaf88a92cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459008015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6400122,"id":"0xaf88abb6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459008015,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":21761,"tdur":14131,"tts":6400122},
-{"pid":27443,"tid":27459,"ts":326459008046,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":88},"tts":6400152},
-{"pid":27443,"tid":27459,"ts":326459008046,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6400152},
-{"pid":27443,"tid":27459,"ts":326459008076,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":17794,"tdur":10835,"tts":6400213},
-{"pid":27443,"tid":27459,"ts":326459008107,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":6400213},
-{"pid":27443,"tid":27459,"ts":326459008137,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":43,"frame":"0x78c60000"}},"dur":17702,"tdur":10774,"tts":6400274},
-{"pid":27443,"tid":27459,"ts":326459008229,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":17610,"tdur":10713,"tts":6400335},
-{"pid":27443,"tid":27459,"ts":326459008260,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6400366},
-{"pid":27443,"tid":27459,"ts":326459008443,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6400549},
-{"pid":27443,"tid":27459,"ts":326459008504,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":6400610},
-{"pid":27443,"tid":27459,"ts":326459016012,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6402868},
-{"pid":27443,"tid":27459,"ts":326459021750,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6406958},
-{"pid":27443,"tid":27459,"ts":326459025809,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6411017},
-{"pid":27443,"tid":27459,"ts":326459025870,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2716,"tdur":2564,"tts":6411078},
-{"pid":27443,"tid":27459,"ts":326459025931,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6411139},
-{"pid":27443,"tid":27459,"ts":326459025931,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6411139},
-{"pid":27443,"tid":27459,"ts":326459025992,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6411139},
-{"pid":27443,"tid":27459,"ts":326459026022,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6411170},
-{"pid":27443,"tid":27459,"ts":326459026450,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6411597},
-{"pid":27443,"tid":27459,"ts":326459026450,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":6411597},
-{"pid":27443,"tid":27459,"ts":326459026572,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6411628},
-{"pid":27443,"tid":27459,"ts":326459026602,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1984,"tdur":1984,"tts":6411658},
-{"pid":27443,"tid":27459,"ts":326459026602,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1831,"tdur":1801,"tts":6411689},
-{"pid":27443,"tid":27459,"ts":326459026633,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":305,"tts":6411689},
-{"pid":27443,"tid":27459,"ts":326459026969,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6412025},
-{"pid":27443,"tid":27459,"ts":326459027152,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":6412208},
-{"pid":27443,"tid":27459,"ts":326459027243,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":6412330},
-{"pid":27443,"tid":27459,"ts":326459027274,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1159,"tdur":1160,"tts":6412330},
-{"pid":27443,"tid":27459,"ts":326459028433,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":6413520},
-{"pid":27443,"tid":27459,"ts":326459028464,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":6413551},
-{"pid":27443,"tid":27459,"ts":326459028586,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":88},"dur":427,"tdur":396,"tts":6413673},
-{"pid":27443,"tid":27459,"ts":326459028617,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":396,"tdur":396,"tts":6413673},
-{"pid":27443,"tid":27459,"ts":326459028861,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":30,"tdur":30,"tts":6413917},
-{"pid":27443,"tid":27459,"ts":326459028891,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":31,"tdur":31,"tts":6413947},
-{"pid":27443,"tid":27477,"ts":326459002308,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":401831},
-{"pid":27443,"tid":27477,"ts":326459002308,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":401831},
-{"pid":27443,"tid":27477,"ts":326459002339,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":91,"tts":401892},
-{"pid":27443,"tid":27477,"ts":326459002369,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":401892},
-{"pid":27443,"tid":27477,"ts":326459002461,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1343,"tdur":1221,"tts":401983},
-{"pid":27443,"tid":27477,"ts":326459002491,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1313,"tdur":1190,"tts":402014},
-{"pid":27443,"tid":27477,"ts":326459002491,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1313,"tdur":1190,"tts":402014},
-{"pid":27443,"tid":27477,"ts":326459002522,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":402044,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459002613,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":402136},
-{"pid":27443,"tid":27477,"ts":326459002644,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":402166},
-{"pid":27443,"tid":27477,"ts":326459002674,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":402197},
-{"pid":27443,"tid":27477,"ts":326459002705,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":402227},
-{"pid":27443,"tid":27477,"ts":326459002735,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":402258},
-{"pid":27443,"tid":27477,"ts":326459002766,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402289},
-{"pid":27443,"tid":27477,"ts":326459002766,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":402289},
-{"pid":27443,"tid":27477,"ts":326459002796,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402319},
-{"pid":27443,"tid":27477,"ts":326459002827,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402350},
-{"pid":27443,"tid":27477,"ts":326459002827,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":152,"tdur":30,"tts":402350},
-{"pid":27443,"tid":27477,"ts":326459002827,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":402350},
-{"pid":27443,"tid":27477,"ts":326459002979,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":402411},
-{"pid":27443,"tid":27477,"ts":326459003010,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":402411},
-{"pid":27443,"tid":27477,"ts":326459003041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":402441},
-{"pid":27443,"tid":27477,"ts":326459003071,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402472},
-{"pid":27443,"tid":27477,"ts":326459003102,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":402502},
-{"pid":27443,"tid":27477,"ts":326459003132,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402533},
-{"pid":27443,"tid":27477,"ts":326459003163,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402563},
-{"pid":27443,"tid":27477,"ts":326459003193,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402594},
-{"pid":27443,"tid":27477,"ts":326459003224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402624},
-{"pid":27443,"tid":27477,"ts":326459003224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":402655},
-{"pid":27443,"tid":27477,"ts":326459003285,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402685},
-{"pid":27443,"tid":27477,"ts":326459003315,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402716},
-{"pid":27443,"tid":27477,"ts":326459003346,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402746},
-{"pid":27443,"tid":27477,"ts":326459003376,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402777},
-{"pid":27443,"tid":27477,"ts":326459003407,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402807},
-{"pid":27443,"tid":27477,"ts":326459003407,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":402838},
-{"pid":27443,"tid":27477,"ts":326459003529,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":402929},
-{"pid":27443,"tid":27477,"ts":326459003529,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":402929},
-{"pid":27443,"tid":27477,"ts":326459003559,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":402960},
-{"pid":27443,"tid":27477,"ts":326459003590,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":402991},
-{"pid":27443,"tid":27477,"ts":326459003620,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":403021},
-{"pid":27443,"tid":27477,"ts":326459003620,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":403052},
-{"pid":27443,"tid":27477,"ts":326459003651,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":403052},
-{"pid":27443,"tid":27477,"ts":326459003712,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":403113},
-{"pid":27443,"tid":27477,"ts":326459003743,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":403143},
-{"pid":27443,"tid":27477,"ts":326459003743,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":403174},
-{"pid":27443,"tid":27477,"ts":326459003773,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":403174},
-{"pid":27443,"tid":27477,"ts":326459003834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403235,"id":"0xaf88a961f182217a"},
-{"pid":27443,"tid":27477,"ts":326459003834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":403235},
-{"pid":27443,"tid":27477,"ts":326459003834,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":403235},
-{"pid":27443,"tid":27477,"ts":326459003834,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":403265},
-{"pid":27443,"tid":27477,"ts":326459003865,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":403265},
-{"pid":27443,"tid":27477,"ts":326459003865,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":403265},
-{"pid":27443,"tid":27477,"ts":326459003895,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":403296},
-{"pid":27443,"tid":27477,"ts":326459003926,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":403326},
-{"pid":27443,"tid":27477,"ts":326459003956,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":403357},
-{"pid":27443,"tid":27477,"ts":326459006886,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403387,"id":"0xaf88a962f182217a"},
-{"pid":27443,"tid":27477,"ts":326459006917,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":403418},
-{"pid":27443,"tid":27477,"ts":326459006917,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":0,"tts":403418},
-{"pid":27443,"tid":27477,"ts":326459007680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403479,"id":"0xaf88a963f182217a"},
-{"pid":27443,"tid":27477,"ts":326459007680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":335,"tdur":306,"tts":403509},
-{"pid":27443,"tid":27477,"ts":326459007741,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459000510.0,"frame_time_us":326459001302.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":274,"tdur":275,"tts":403540},
-{"pid":27443,"tid":27477,"ts":326459007741,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459000510.0,"frame_time_us":326459001302.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":274,"tdur":275,"tts":403540},
-{"pid":27443,"tid":27477,"ts":326459007802,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":403601},
-{"pid":27443,"tid":27477,"ts":326459007832,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":88},"tts":403631},
-{"pid":27443,"tid":27477,"ts":326459007893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":403692,"id":"0xaf88abb6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459007924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":403723,"id":"0xaf88a913f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459007954,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":403754},
-{"pid":27443,"tid":27477,"ts":326459007985,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":403784},
-{"pid":27443,"tid":27477,"ts":326459007985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":403784,"id":"0xaf88a97cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459008015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403815,"id":"0xaf88a97cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459008015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2198,"tdur":1740,"tts":403845},
-{"pid":27443,"tid":27477,"ts":326459008046,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2167,"tdur":1740,"tts":403845},
-{"pid":27443,"tid":27477,"ts":326459008046,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1770,"tdur":1343,"tts":403845},
-{"pid":27443,"tid":27477,"ts":326459008076,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":87},"dur":824,"tdur":824,"tts":403876},
-{"pid":27443,"tid":27477,"ts":326459008107,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":87},"dur":244,"tdur":244,"tts":403906},
-{"pid":27443,"tid":27477,"ts":326459008351,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":87},"dur":31,"tdur":31,"tts":404150},
-{"pid":27443,"tid":27477,"ts":326459008382,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":87},"tts":404211},
-{"pid":27443,"tid":27477,"ts":326459008565,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":404364},
-{"pid":27443,"tid":27477,"ts":326459008565,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":404364},
-{"pid":27443,"tid":27477,"ts":326459008565,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":404364},
-{"pid":27443,"tid":27477,"ts":326459008595,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":404394},
-{"pid":27443,"tid":27477,"ts":326459008595,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":404394,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459008656,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":404455},
-{"pid":27443,"tid":27477,"ts":326459008870,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":404669},
-{"pid":27443,"tid":27477,"ts":326459008900,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":274,"tts":404700},
-{"pid":27443,"tid":27477,"ts":326459008900,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":404700},
-{"pid":27443,"tid":27477,"ts":326459008931,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":610,"tdur":183,"tts":404730},
-{"pid":27443,"tid":27477,"ts":326459008992,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12522},"dur":31,"tdur":0,"tts":404791},
-{"pid":27443,"tid":27477,"ts":326459009023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":404822,"id":"0xaf88aa4ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459009572,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":404944,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459009602,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":404974,"id":"0x30000003c"},
-{"pid":27443,"tid":27477,"ts":326459009633,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":405005},
-{"pid":27443,"tid":27477,"ts":326459009725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":405096,"id":"0xaf88aa4ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459009786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":405157,"id":"0xaf88abb7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459009816,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":405188,"id":"0xaf88a92df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459009847,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":366,"tdur":336,"tts":405218},
-{"pid":27443,"tid":27477,"ts":326459009847,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":405218},
-{"pid":27443,"tid":27477,"ts":326459009847,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":62,"tts":405218},
-{"pid":27443,"tid":27477,"ts":326459009938,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":405310},
-{"pid":27443,"tid":27477,"ts":326459009938,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":405341},
-{"pid":27443,"tid":27477,"ts":326459009969,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":2},"dur":183,"tdur":183,"tts":405341},
-{"pid":27443,"tid":27477,"ts":326459009999,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":405371},
-{"pid":27443,"tid":27477,"ts":326459009999,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":405371,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459009999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":405371},
-{"pid":27443,"tid":27477,"ts":326459010060,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":405432},
-{"pid":27443,"tid":27477,"ts":326459010091,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":5,"num_edges":2},"dur":30,"tdur":30,"tts":405463},
-{"pid":27443,"tid":27477,"ts":326459010152,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":405524,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459010182,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":405554,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459010182,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":405554,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459012136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405615,"id":"0xaf88a97df182217a"},
-{"pid":27443,"tid":27477,"ts":326459012136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":405615},
-{"pid":27443,"tid":27477,"ts":326459012166,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":405646},
-{"pid":27443,"tid":27477,"ts":326459012197,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":405676,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459012197,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":405676},
-{"pid":27443,"tid":27477,"ts":326459012197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":405707,"id":"0xaf88a979f182217a"},
-{"pid":27443,"tid":27477,"ts":326459012227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405707,"id":"0xaf88a97ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459012258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":405737},
-{"pid":27443,"tid":27477,"ts":326459012258,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":405737},
-{"pid":27443,"tid":27477,"ts":326459012258,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":405737,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459012288,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":405768},
-{"pid":27443,"tid":27477,"ts":326459012288,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":405768,"id":"0xaf88a97af182217a"},
-{"pid":27443,"tid":27477,"ts":326459012319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405798,"id":"0xaf88a97ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459012319,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":405798},
-{"pid":27443,"tid":27477,"ts":326459012319,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":405798},
-{"pid":27443,"tid":27477,"ts":326459012349,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":405829,"id":"0x30000003f"},
-{"pid":27443,"tid":27477,"ts":326459012349,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":405829},
-{"pid":27443,"tid":27477,"ts":326459012380,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":405859,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459012410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":405890,"id":"0xaf88abb0f3d0445e"},
-{"pid":27443,"tid":27469,"ts":326459012044,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":288020},
-{"pid":27443,"tid":27469,"ts":326459012075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288051,"id":"0xaf88a978f182217a"},
-{"pid":27443,"tid":27469,"ts":326459030723,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2746,"tdur":122,"tts":288081},
-{"pid":27443,"tid":27546,"ts":326459031333,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":214,"tdur":214,"tts":26918},
-{"pid":27443,"tid":27546,"ts":326459031333,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":26949},
-{"pid":27443,"tid":27546,"ts":326459031516,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":27132},
-{"pid":27443,"tid":27471,"ts":326459031669,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":347260},
-{"pid":27443,"tid":27471,"ts":326459031699,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":347291},
-{"pid":27443,"tid":27471,"ts":326459031699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347291,"id":"0xaf88a977f182217a"},
-{"pid":27443,"tid":27471,"ts":326459031730,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":347321},
-{"pid":27443,"tid":27471,"ts":326459031760,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":347352},
-{"pid":27443,"tid":27471,"ts":326459031760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347352,"id":"0xaf88a970f182217a"},
-{"pid":27443,"tid":27469,"ts":326459030753,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":2716,"tdur":91,"tts":288112},
-{"pid":27443,"tid":27469,"ts":326459033042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288142,"id":"0xaf88a973f182217a"},
-{"pid":27443,"tid":27471,"ts":326459051934,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":519,"tdur":61,"tts":347352},
-{"pid":27443,"tid":27471,"ts":326459051965,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":488,"tdur":31,"tts":347382},
-{"pid":27443,"tid":27471,"ts":326459051995,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347413,"id":"0xaf88a90bf182217a"},
-{"pid":27443,"tid":27469,"ts":326459052056,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2411,"tdur":61,"tts":288234},
-{"pid":27443,"tid":27471,"ts":326459052453,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":347413},
-{"pid":27443,"tid":27471,"ts":326459052484,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":347443},
-{"pid":27443,"tid":27471,"ts":326459052484,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347443,"id":"0xaf88a905f182217a"},
-{"pid":27443,"tid":27469,"ts":326459052087,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":2350,"tdur":31,"tts":288264},
-{"pid":27443,"tid":27469,"ts":326459054437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288295,"id":"0xaf88a907f182217a"},
-{"pid":27443,"tid":27471,"ts":326459058252,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":61,"tts":347504},
-{"pid":27443,"tid":27471,"ts":326459058282,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":153,"tdur":30,"tts":347535},
-{"pid":27443,"tid":27471,"ts":326459058282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347535,"id":"0xaf88a903f182217a"},
-{"pid":27443,"tid":27469,"ts":326459058313,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":92,"tts":288325},
-{"pid":27443,"tid":27469,"ts":326459058343,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":153,"tdur":31,"tts":288356},
-{"pid":27443,"tid":27471,"ts":326459058435,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":347565},
-{"pid":27443,"tid":27471,"ts":326459058435,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":347565},
-{"pid":27443,"tid":27471,"ts":326459058466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347596,"id":"0xaf88a91cf182217a"},
-{"pid":27443,"tid":27469,"ts":326459058496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288387,"id":"0xaf88a91df182217a"},
-{"pid":27443,"tid":27471,"ts":326459080990,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":347596},
-{"pid":27443,"tid":27471,"ts":326459081020,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":347627},
-{"pid":27443,"tid":27471,"ts":326459081051,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347657,"id":"0xaf88a917f182217a"},
-{"pid":27443,"tid":27471,"ts":326459081081,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":347688},
-{"pid":27443,"tid":27471,"ts":326459081081,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":347688},
-{"pid":27443,"tid":27471,"ts":326459081081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347688,"id":"0xaf88a910f182217a"},
-{"pid":27443,"tid":27471,"ts":326459081112,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":347718},
-{"pid":27443,"tid":27471,"ts":326459081112,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":347718},
-{"pid":27443,"tid":27471,"ts":326459081112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347718,"id":"0xaf88a911f182217a"},
-{"pid":27443,"tid":27471,"ts":326459100126,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":347810},
-{"pid":27443,"tid":27471,"ts":326459100156,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":347840},
-{"pid":27443,"tid":27471,"ts":326459100156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347840,"id":"0xaf88a924f182217a"},
-{"pid":27443,"tid":27471,"ts":326459100187,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":347871},
-{"pid":27443,"tid":27471,"ts":326459100187,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":347871},
-{"pid":27443,"tid":27471,"ts":326459100187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347871,"id":"0xaf88a925f182217a"},
-{"pid":27443,"tid":27471,"ts":326459100217,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":347901},
-{"pid":27443,"tid":27471,"ts":326459100217,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":347901},
-{"pid":27443,"tid":27471,"ts":326459100217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347932,"id":"0xaf88a926f182217a"},
-{"pid":27443,"tid":27471,"ts":326459121399,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":213,"tdur":153,"tts":347962},
-{"pid":27443,"tid":27471,"ts":326459121429,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":122,"tts":347993},
-{"pid":27443,"tid":27471,"ts":326459121460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348023,"id":"0xaf88a93ef182217a"},
-{"pid":27443,"tid":27469,"ts":326459121490,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":61,"tts":288478},
-{"pid":27443,"tid":27469,"ts":326459121521,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":30,"tts":288509},
-{"pid":27443,"tid":27471,"ts":326459121612,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":348115},
-{"pid":27443,"tid":27471,"ts":326459121643,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":348145},
-{"pid":27443,"tid":27471,"ts":326459121643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348145,"id":"0xaf88a93ff182217a"},
-{"pid":27443,"tid":27469,"ts":326459121673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288509,"id":"0xaf88a938f182217a"},
-{"pid":27443,"tid":27471,"ts":326459128113,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":427,"tdur":152,"tts":348176},
-{"pid":27443,"tid":27471,"ts":326459128357,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":122,"tts":348206},
-{"pid":27443,"tid":27471,"ts":326459128357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348237,"id":"0xaf88a936f182217a"},
-{"pid":27443,"tid":27469,"ts":326459128418,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":580,"tdur":61,"tts":288539},
-{"pid":27443,"tid":27469,"ts":326459128449,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":30,"tts":288570},
-{"pid":27443,"tid":27477,"ts":326459012441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405920,"id":"0xaf88a978f182217a"},
-{"pid":27443,"tid":27477,"ts":326459012441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":405920},
-{"pid":27443,"tid":27477,"ts":326459012471,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":405951},
-{"pid":27443,"tid":27477,"ts":326459012471,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":405951,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459012471,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":405951},
-{"pid":27443,"tid":27477,"ts":326459012502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405982,"id":"0xaf88a979f182217a"},
-{"pid":27443,"tid":27477,"ts":326459012502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":305,"tdur":305,"tts":405982},
-{"pid":27443,"tid":27477,"ts":326459012502,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":305,"tdur":275,"tts":406012},
-{"pid":27443,"tid":27477,"ts":326459012532,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":153,"tdur":153,"tts":406012},
-{"pid":27443,"tid":27477,"ts":326459012532,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":406012},
-{"pid":27443,"tid":27477,"ts":326459012563,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":406043},
-{"pid":27443,"tid":27477,"ts":326459012563,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":406043},
-{"pid":27443,"tid":27477,"ts":326459012593,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":406073},
-{"pid":27443,"tid":27477,"ts":326459012624,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":406104},
-{"pid":27443,"tid":27477,"ts":326459012624,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":406104},
-{"pid":27443,"tid":27477,"ts":326459012654,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":406165},
-{"pid":27443,"tid":27477,"ts":326459012685,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":406165},
-{"pid":27443,"tid":27477,"ts":326459012685,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":406165},
-{"pid":27443,"tid":27477,"ts":326459012777,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":406256},
-{"pid":27443,"tid":27477,"ts":326459012777,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":406256},
-{"pid":27443,"tid":27477,"ts":326459012807,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406287,"id":"0xaf88a97af182217a"},
-{"pid":27443,"tid":27477,"ts":326459012807,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":406287},
-{"pid":27443,"tid":27477,"ts":326459012838,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":92,"tts":406317},
-{"pid":27443,"tid":27477,"ts":326459012838,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":406317},
-{"pid":27443,"tid":27477,"ts":326459012838,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":406317},
-{"pid":27443,"tid":27477,"ts":326459012868,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":406348},
-{"pid":27443,"tid":27477,"ts":326459012868,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":406348},
-{"pid":27443,"tid":27477,"ts":326459012929,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":406409},
-{"pid":27443,"tid":27477,"ts":326459012929,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":406409},
-{"pid":27443,"tid":27477,"ts":326459012960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406439,"id":"0xaf88a97bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459012960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":406439},
-{"pid":27443,"tid":27477,"ts":326459012990,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":406470},
-{"pid":27443,"tid":27477,"ts":326459012990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":406470,"id":"0xaf88abb1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459020895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406561,"id":"0xaf88a974f182217a"},
-{"pid":27443,"tid":27477,"ts":326459020895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":153,"tts":406561},
-{"pid":27443,"tid":27477,"ts":326459020925,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459017168.0,"frame_time_us":326459017960.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":122,"tts":406592},
-{"pid":27443,"tid":27477,"ts":326459020956,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459017168.0,"frame_time_us":326459017960.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":183,"tdur":92,"tts":406622},
-{"pid":27443,"tid":27477,"ts":326459020956,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":406622},
-{"pid":27443,"tid":27477,"ts":326459021109,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459034626},"dur":30,"tdur":31,"tts":406683},
-{"pid":27443,"tid":27477,"ts":326459021109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":406683,"id":"0xaf88a975f182217a"},
-{"pid":27443,"tid":27477,"ts":326459029105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406775,"id":"0xaf88a976f182217a"},
-{"pid":27443,"tid":27477,"ts":326459029135,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1557,"tdur":1556,"tts":406806},
-{"pid":27443,"tid":27477,"ts":326459029135,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1557,"tdur":1556,"tts":406806},
-{"pid":27443,"tid":27477,"ts":326459029135,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":406806},
-{"pid":27443,"tid":27477,"ts":326459029166,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1526,"tdur":1526,"tts":406836},
-{"pid":27443,"tid":27477,"ts":326459029166,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1495,"tdur":1496,"tts":406836},
-{"pid":27443,"tid":27477,"ts":326459029166,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":406836},
-{"pid":27443,"tid":27477,"ts":326459029196,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":406867},
-{"pid":27443,"tid":27477,"ts":326459029196,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":406867,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459029227,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":406897},
-{"pid":27443,"tid":27477,"ts":326459029258,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":396,"tdur":396,"tts":406928},
-{"pid":27443,"tid":27477,"ts":326459029715,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":946,"tdur":947,"tts":407385},
-{"pid":27443,"tid":27477,"ts":326459029715,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":88},"dur":245,"tdur":245,"tts":407385},
-{"pid":27443,"tid":27477,"ts":326459029960,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":88},"dur":30,"tdur":30,"tts":407630},
-{"pid":27443,"tid":27477,"ts":326459030051,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":88},"tts":407721},
-{"pid":27443,"tid":27477,"ts":326459030204,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":407874},
-{"pid":27443,"tid":27477,"ts":326459030204,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":407874},
-{"pid":27443,"tid":27477,"ts":326459030234,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":428,"tts":407904},
-{"pid":27443,"tid":27477,"ts":326459030234,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":407904},
-{"pid":27443,"tid":27477,"ts":326459030356,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":408026},
-{"pid":27443,"tid":27477,"ts":326459030387,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":408057},
-{"pid":27443,"tid":27477,"ts":326459030387,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":244,"tdur":244,"tts":408057},
-{"pid":27443,"tid":27477,"ts":326459030387,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":213,"tdur":214,"tts":408057},
-{"pid":27443,"tid":27477,"ts":326459030417,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":408087,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326459028922,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":0,"tdur":0,"tts":6413978},
-{"pid":27443,"tid":27459,"ts":326459028952,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":0,"tdur":0,"tts":6414008},
-{"pid":27443,"tid":27459,"ts":326459028952,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":31,"tdur":31,"tts":6414008},
-{"pid":27443,"tid":27459,"ts":326459028983,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":0,"tdur":0,"tts":6414039},
-{"pid":27443,"tid":27459,"ts":326459028983,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":88},"dur":30,"tdur":30,"tts":6414039},
-{"pid":27443,"tid":27459,"ts":326459029013,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6414069,"id":"0x30000003d"},
-{"pid":27443,"tid":27459,"ts":326459029044,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":91,"tts":6414100},
-{"pid":27443,"tid":27459,"ts":326459029044,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6414100,"id":"0xaf88a976f182217a"},
-{"pid":27443,"tid":27459,"ts":326459029746,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6414253},
-{"pid":27443,"tid":27459,"ts":326459029837,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6414314,"id":"0xaf88a92cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459029837,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6414314},
-{"pid":27443,"tid":27459,"ts":326459029868,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6414344,"id":"0xaf88a92ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459029868,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6414344,"id":"0xaf88abb7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459029868,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6414344},
-{"pid":27443,"tid":27459,"ts":326459029898,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6414375},
-{"pid":27443,"tid":27459,"ts":326459029929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6414405,"id":"0xaf88a92df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459029929,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2869,"tdur":1648,"tts":6414405},
-{"pid":27443,"tid":27459,"ts":326459029960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6414436,"id":"0xaf88abb0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459029960,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2838,"tdur":1617,"tts":6414436},
-{"pid":27443,"tid":27459,"ts":326459030051,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2716,"tdur":1496,"tts":6414527},
-{"pid":27443,"tid":27459,"ts":326459030082,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6414558,"id":"0x30000003f"},
-{"pid":27443,"tid":27459,"ts":326459030082,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2075,"tdur":1313,"tts":6414588},
-{"pid":27443,"tid":27459,"ts":326459030112,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2014,"tdur":1313,"tts":6414588},
-{"pid":27443,"tid":27459,"ts":326459030173,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6414649},
-{"pid":27443,"tid":27459,"ts":326459030204,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6414680},
-{"pid":27443,"tid":27459,"ts":326459030234,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6414710},
-{"pid":27443,"tid":27459,"ts":326459030265,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6414741},
-{"pid":27443,"tid":27459,"ts":326459030295,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1831,"tdur":1099,"tts":6414802},
-{"pid":27443,"tid":27459,"ts":326459030448,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1648,"tdur":916,"tts":6414924},
-{"pid":27443,"tid":27459,"ts":326459030448,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6414954},
-{"pid":27443,"tid":27459,"ts":326459030936,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6415077},
-{"pid":27443,"tid":27459,"ts":326459031028,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6415168},
-{"pid":27443,"tid":27459,"ts":326459031058,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6415199},
-{"pid":27443,"tid":27459,"ts":326459031089,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6415229},
-{"pid":27443,"tid":27459,"ts":326459031180,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6415321},
-{"pid":27443,"tid":27459,"ts":326459031608,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6415412},
-{"pid":27443,"tid":27459,"ts":326459031638,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6415443},
-{"pid":27443,"tid":27459,"ts":326459031760,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6415534},
-{"pid":27443,"tid":27459,"ts":326459032004,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":44,"frame":"0x78c60000"}},"tts":6415779,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459032004,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":6415779},
-{"pid":27443,"tid":27459,"ts":326459032035,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6415809,"id":"0xaf88a972f182217a"},
-{"pid":27443,"tid":27459,"ts":326459032065,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6415840},
-{"pid":27443,"tid":27459,"ts":326459032157,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":610,"tdur":92,"tts":6415931},
-{"pid":27443,"tid":27459,"ts":326459032187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6415962,"id":"0xaf88aa49f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459032828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6416084,"id":"0xaf88a92ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459032859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6416114},
-{"pid":27443,"tid":27459,"ts":326459032859,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6416114,"id":"0xaf88a92ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459032889,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6416145,"id":"0xaf88abb1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459032889,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6416145},
-{"pid":27443,"tid":27459,"ts":326459032889,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":6416145},
-{"pid":27443,"tid":27459,"ts":326459032951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6416206,"id":"0xaf88a92ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459032951,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6416206},
-{"pid":27443,"tid":27459,"ts":326459033683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6416328,"id":"0xaf88a928f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459033683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5616,"tdur":1038,"tts":6416328},
-{"pid":27443,"tid":27459,"ts":326459033714,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6416358,"id":"0xaf88a929f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459033714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6416358,"id":"0xaf88abb2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459033714,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":5585,"tdur":1008,"tts":6416358},
-{"pid":27443,"tid":27459,"ts":326459033775,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":5493,"tdur":916,"tts":6416419},
-{"pid":27443,"tid":27459,"ts":326459033805,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6416450,"id":"0x300000041"},
-{"pid":27443,"tid":27459,"ts":326459033805,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":733,"tdur":732,"tts":6416450},
-{"pid":27443,"tid":27459,"ts":326459033836,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":702,"tdur":701,"tts":6416481},
-{"pid":27443,"tid":27459,"ts":326459033897,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6416542},
-{"pid":27443,"tid":27459,"ts":326459033927,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6416572},
-{"pid":27443,"tid":27459,"ts":326459033958,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6416603},
-{"pid":27443,"tid":27477,"ts":326459030417,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12580},"dur":92,"tdur":92,"tts":408087},
-{"pid":27443,"tid":27477,"ts":326459030448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":408118,"id":"0xaf88aa48f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459030509,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":408209},
-{"pid":27443,"tid":27477,"ts":326459030539,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":408209},
-{"pid":27443,"tid":27477,"ts":326459030600,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":408271,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459030631,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":408301,"s":"t"},{"pid":27443,"tid":27477,"ts":326459030631,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":408301,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459031791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408423,"id":"0xaf88a977f182217a"},
-{"pid":27443,"tid":27477,"ts":326459031821,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":408454},
-{"pid":27443,"tid":27477,"ts":326459031821,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":408454},
-{"pid":27443,"tid":27477,"ts":326459031852,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":408484,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459031852,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":408484},
-{"pid":27443,"tid":27477,"ts":326459031852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":408515,"id":"0xaf88a971f182217a"},
-{"pid":27443,"tid":27477,"ts":326459031882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408515,"id":"0xaf88a970f182217a"},
-{"pid":27443,"tid":27477,"ts":326459031913,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":408545},
-{"pid":27443,"tid":27477,"ts":326459031913,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":408545},
-{"pid":27443,"tid":27477,"ts":326459031913,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,false,false]}},"tts":408545,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459031943,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":408576},
-{"pid":27443,"tid":27477,"ts":326459031943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408576,"id":"0xaf88a971f182217a"},
-{"pid":27443,"tid":27477,"ts":326459031974,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":408606},
-{"pid":27443,"tid":27477,"ts":326459031974,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":408606},
-{"pid":27443,"tid":27477,"ts":326459031974,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":408606},
-{"pid":27443,"tid":27477,"ts":326459032004,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":408637},
-{"pid":27443,"tid":27477,"ts":326459032004,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":408637},
-{"pid":27443,"tid":27477,"ts":326459032004,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":408637},
-{"pid":27443,"tid":27477,"ts":326459032065,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":408698},
-{"pid":27443,"tid":27477,"ts":326459032096,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":408728},
-{"pid":27443,"tid":27477,"ts":326459032126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408759,"id":"0xaf88a972f182217a"},
-{"pid":27443,"tid":27477,"ts":326459032126,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":408759},
-{"pid":27443,"tid":27477,"ts":326459032126,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":0,"tts":408759},
-{"pid":27443,"tid":27477,"ts":326459033439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408881,"id":"0xaf88a973f182217a"},
-{"pid":27443,"tid":27477,"ts":326459033439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":408881},
-{"pid":27443,"tid":27477,"ts":326459033439,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":31,"tts":408911},
-{"pid":27443,"tid":27477,"ts":326459033469,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":408911,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459033469,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":408911},
-{"pid":27443,"tid":27477,"ts":326459033500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":408942,"id":"0xaf88a90df182217a"},
-{"pid":27443,"tid":27477,"ts":326459033500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408942,"id":"0xaf88a90cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459033530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":408973},
-{"pid":27443,"tid":27477,"ts":326459033530,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":408973},
-{"pid":27443,"tid":27477,"ts":326459033530,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":409003,"id":"0x300000041"},
-{"pid":27443,"tid":27477,"ts":326459033561,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":409003},
-{"pid":27443,"tid":27477,"ts":326459033591,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":409034,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459033622,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":409064,"id":"0xaf88abb2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459033622,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":409064,"id":"0xaf88a928f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459033683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":409125,"id":"0xaf88a90df182217a"},
-{"pid":27443,"tid":27477,"ts":326459033683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1434,"tdur":1343,"tts":409125},
-{"pid":27443,"tid":27477,"ts":326459033683,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1434,"tdur":1343,"tts":409125},
-{"pid":27443,"tid":27477,"ts":326459033714,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":409156},
-{"pid":27443,"tid":27477,"ts":326459033714,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":409156},
-{"pid":27443,"tid":27477,"ts":326459033744,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":409186},
-{"pid":27443,"tid":27477,"ts":326459033744,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":409186},
-{"pid":27443,"tid":27477,"ts":326459033866,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1129,"tts":409308},
-{"pid":27443,"tid":27477,"ts":326459033866,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1129,"tts":409308},
-{"pid":27443,"tid":27477,"ts":326459033866,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1099,"tdur":1007,"tts":409308},
-{"pid":27443,"tid":27477,"ts":326459033866,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":409339,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459033958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":409400},
-{"pid":27443,"tid":27477,"ts":326459033988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":409430},
-{"pid":27443,"tid":27477,"ts":326459034019,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":409461},
-{"pid":27443,"tid":27477,"ts":326459034049,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409491},
-{"pid":27443,"tid":27477,"ts":326459034049,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":409522},
-{"pid":27443,"tid":27477,"ts":326459034080,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409522},
-{"pid":27443,"tid":27477,"ts":326459034110,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409552},
-{"pid":27443,"tid":27477,"ts":326459034110,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":409552},
-{"pid":27443,"tid":27477,"ts":326459034141,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409583},
-{"pid":27443,"tid":27459,"ts":326459033988,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6416633},
-{"pid":27443,"tid":27459,"ts":326459034019,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":488,"tdur":458,"tts":6416694},
-{"pid":27443,"tid":27459,"ts":326459034171,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":306,"tdur":305,"tts":6416816},
-{"pid":27443,"tid":27459,"ts":326459034171,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6416816},
-{"pid":27443,"tid":27459,"ts":326459034446,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":45,"frame":"0x78c60000"}},"tts":6417091,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459034477,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6417121},
-{"pid":27443,"tid":27459,"ts":326459034568,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":4700,"tdur":122,"tts":6417213},
-{"pid":27443,"tid":27459,"ts":326459034568,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6417213,"id":"0xaf88aa4af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459039329,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6417396,"id":"0xaf88a929f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459039360,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":18251,"tdur":11658,"tts":6417427},
-{"pid":27443,"tid":27459,"ts":326459039360,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6417427,"id":"0xaf88a92bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459039390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6417457,"id":"0xaf88abb3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459039390,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":18221,"tdur":11628,"tts":6417457},
-{"pid":27443,"tid":27459,"ts":326459039390,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":89},"tts":6417457},
-{"pid":27443,"tid":27459,"ts":326459039421,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6417488},
-{"pid":27443,"tid":27459,"ts":326459039451,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9675,"tdur":8027,"tts":6417518},
-{"pid":27443,"tid":27459,"ts":326459039482,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":6417549},
-{"pid":27443,"tid":27459,"ts":326459039543,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":44,"frame":"0x78c60000"}},"dur":9248,"tdur":7721,"tts":6417610},
-{"pid":27443,"tid":27459,"ts":326459039634,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9157,"tdur":7630,"tts":6417701},
-{"pid":27443,"tid":27459,"ts":326459039634,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6417701},
-{"pid":27443,"tid":27459,"ts":326459039848,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6417915},
-{"pid":27443,"tid":27459,"ts":326459039909,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6417976},
-{"pid":27443,"tid":27459,"ts":326459047234,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6423775},
-{"pid":27443,"tid":27459,"ts":326459048577,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6425118},
-{"pid":27443,"tid":27459,"ts":326459048760,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6425301},
-{"pid":27443,"tid":27459,"ts":326459048943,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":45,"frame":"0x78c60000"}},"dur":183,"tdur":153,"tts":6425392},
-{"pid":27443,"tid":27459,"ts":326459049004,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":122,"tdur":61,"tts":6425454},
-{"pid":27443,"tid":27459,"ts":326459049004,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":6425454},
-{"pid":27443,"tid":27459,"ts":326459049065,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6425484},
-{"pid":27443,"tid":27459,"ts":326459049096,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6425515},
-{"pid":27443,"tid":27459,"ts":326459049126,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":6715,"tdur":2838,"tts":6425576},
-{"pid":27443,"tid":27459,"ts":326459049187,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6425606},
-{"pid":27443,"tid":27459,"ts":326459049187,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6425637},
-{"pid":27443,"tid":27459,"ts":326459049218,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6425637},
-{"pid":27443,"tid":27459,"ts":326459049767,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6426155},
-{"pid":27443,"tid":27459,"ts":326459049798,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6426155},
-{"pid":27443,"tid":27459,"ts":326459049828,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":5982,"tdur":2197,"tts":6426186},
-{"pid":27443,"tid":27459,"ts":326459049859,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":5768,"tdur":1983,"tts":6426217},
-{"pid":27443,"tid":27459,"ts":326459049859,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":397,"tdur":366,"tts":6426217},
-{"pid":27443,"tid":27459,"ts":326459050286,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":427,"tdur":183,"tts":6426613},
-{"pid":27443,"tid":27459,"ts":326459050713,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":61,"tts":6426827},
-{"pid":27443,"tid":27459,"ts":326459050835,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6426918},
-{"pid":27443,"tid":27459,"ts":326459050835,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":4762,"tdur":1252,"tts":6426918},
-{"pid":27443,"tid":27459,"ts":326459055627,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":6428200},
-{"pid":27443,"tid":27459,"ts":326459055658,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":152,"tdur":122,"tts":6428261},
-{"pid":27443,"tid":27459,"ts":326459055841,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":89},"dur":488,"tdur":488,"tts":6428414},
-{"pid":27443,"tid":27459,"ts":326459055871,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":458,"tts":6428444},
-{"pid":27443,"tid":27459,"ts":326459056177,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":30,"tdur":30,"tts":6428750},
-{"pid":27443,"tid":27459,"ts":326459056207,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":0,"tdur":0,"tts":6428780},
-{"pid":27443,"tid":27459,"ts":326459056207,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":31,"tdur":31,"tts":6428780},
-{"pid":27443,"tid":27459,"ts":326459056238,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":0,"tdur":0,"tts":6428811},
-{"pid":27443,"tid":27459,"ts":326459056268,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":31,"tdur":0,"tts":6428841},
-{"pid":27443,"tid":27459,"ts":326459056299,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":0,"tdur":0,"tts":6428872},
-{"pid":27443,"tid":27459,"ts":326459056299,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":89},"dur":30,"tdur":30,"tts":6428872},
-{"pid":27443,"tid":27459,"ts":326459056329,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6428902,"id":"0x30000003f"},
-{"pid":27443,"tid":27459,"ts":326459056329,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6428933,"id":"0x300000041"},
-{"pid":27443,"tid":27459,"ts":326459056360,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1190,"tdur":61,"tts":6428933},
-{"pid":27443,"tid":27459,"ts":326459056390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6428963,"id":"0xaf88a902f182217a"},
-{"pid":27443,"tid":27459,"ts":326459057580,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6429055},
-{"pid":27443,"tid":27459,"ts":326459057641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6429116,"id":"0xaf88a92af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459057672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":62,"tts":6429146},
-{"pid":27443,"tid":27459,"ts":326459057672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6429146,"id":"0xaf88a84cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459057703,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6429177},
-{"pid":27443,"tid":27459,"ts":326459057703,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6429177},
-{"pid":27443,"tid":27477,"ts":326459034171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409613},
-{"pid":27443,"tid":27477,"ts":326459034171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":409644},
-{"pid":27443,"tid":27477,"ts":326459034202,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409644},
-{"pid":27443,"tid":27477,"ts":326459034232,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409674},
-{"pid":27443,"tid":27477,"ts":326459034232,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":409674},
-{"pid":27443,"tid":27477,"ts":326459034263,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409705},
-{"pid":27443,"tid":27477,"ts":326459034263,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":409705},
-{"pid":27443,"tid":27477,"ts":326459034293,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":409736},
-{"pid":27443,"tid":27477,"ts":326459034324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409766},
-{"pid":27443,"tid":27477,"ts":326459034324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":409766},
-{"pid":27443,"tid":27477,"ts":326459034354,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409797},
-{"pid":27443,"tid":27477,"ts":326459034385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409827},
-{"pid":27443,"tid":27477,"ts":326459034385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":409827},
-{"pid":27443,"tid":27477,"ts":326459034415,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":409858},
-{"pid":27443,"tid":27477,"ts":326459034446,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409888},
-{"pid":27443,"tid":27477,"ts":326459034446,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":409888},
-{"pid":27443,"tid":27477,"ts":326459034477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":409919},
-{"pid":27443,"tid":27477,"ts":326459034568,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":410010},
-{"pid":27443,"tid":27477,"ts":326459034599,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":410041},
-{"pid":27443,"tid":27477,"ts":326459034629,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":410071},
-{"pid":27443,"tid":27477,"ts":326459034660,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":122,"tdur":0,"tts":410102},
-{"pid":27443,"tid":27477,"ts":326459034782,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":410132},
-{"pid":27443,"tid":27477,"ts":326459034812,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":410163},
-{"pid":27443,"tid":27477,"ts":326459034843,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":410193},
-{"pid":27443,"tid":27477,"ts":326459034873,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":410224},
-{"pid":27443,"tid":27477,"ts":326459034904,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":410254},
-{"pid":27443,"tid":27477,"ts":326459034934,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":410285},
-{"pid":27443,"tid":27477,"ts":326459034934,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":410285},
-{"pid":27443,"tid":27477,"ts":326459034965,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":89},"tts":410315},
-{"pid":27443,"tid":27477,"ts":326459035026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":410376,"id":"0xaf88abb3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459035056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410407,"id":"0xaf88a92af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459035056,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":410407},
-{"pid":27443,"tid":27477,"ts":326459035056,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":410407},
-{"pid":27443,"tid":27477,"ts":326459035087,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410437,"id":"0xaf88a90ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459035117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459034},"tts":410468,"id":"0xaf88a975f182217a"},
-{"pid":27443,"tid":27477,"ts":326459035117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":410468},
-{"pid":27443,"tid":27477,"ts":326459035148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":410499,"id":"0xaf88a90ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459035148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6867,"tdur":1678,"tts":410499},
-{"pid":27443,"tid":27477,"ts":326459035148,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6867,"tdur":1648,"tts":410499},
-{"pid":27443,"tid":27477,"ts":326459035178,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":410529},
-{"pid":27443,"tid":27477,"ts":326459035178,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6807,"tdur":1618,"tts":410529},
-{"pid":27443,"tid":27477,"ts":326459035209,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":88},"dur":4670,"tdur":885,"tts":410560},
-{"pid":27443,"tid":27477,"ts":326459035240,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":88},"dur":4089,"tdur":305,"tts":410590},
-{"pid":27443,"tid":27477,"ts":326459039329,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":88},"dur":31,"tdur":31,"tts":410895},
-{"pid":27443,"tid":27477,"ts":326459039360,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":88},"tts":410926},
-{"pid":27443,"tid":27477,"ts":326459039543,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":411109},
-{"pid":27443,"tid":27477,"ts":326459039543,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":411109},
-{"pid":27443,"tid":27477,"ts":326459039543,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":411109},
-{"pid":27443,"tid":27477,"ts":326459039573,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":411139},
-{"pid":27443,"tid":27477,"ts":326459039573,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":2}},"tts":411139,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459039634,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":411200},
-{"pid":27443,"tid":27477,"ts":326459039879,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":411445},
-{"pid":27443,"tid":27477,"ts":326459039879,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1678,"tdur":427,"tts":411445},
-{"pid":27443,"tid":27477,"ts":326459039909,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":411475},
-{"pid":27443,"tid":27477,"ts":326459039909,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1587,"tdur":336,"tts":411475},
-{"pid":27443,"tid":27477,"ts":326459040001,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12581},"dur":885,"tdur":152,"tts":411567},
-{"pid":27443,"tid":27477,"ts":326459040031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":411597,"id":"0xaf88aa4bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459040916,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":411750,"id":"0xaf88aa44f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459041527,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":411872,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459041588,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":411902,"id":"0x30000003d"},
-{"pid":27443,"tid":27477,"ts":326459041588,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":335,"tdur":184,"tts":411902},
-{"pid":27443,"tid":27477,"ts":326459041710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":412025,"id":"0xaf88aa45f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459041923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":412086,"id":"0xaf88a84cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459041954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":412116,"id":"0xaf88a924f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326459041252,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":259056},
-{"pid":27443,"tid":27466,"ts":326459041283,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":259087},
-{"pid":27443,"tid":27466,"ts":326459041313,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259117,"id":"0xc4c13b0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459041801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":259209,"id":"0xaf88aa45f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459041801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":259209},
-{"pid":27443,"tid":27466,"ts":326459041832,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259240,"id":"0xccc41902"},
-{"pid":27443,"tid":27466,"ts":326459043846,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":259331},
-{"pid":27443,"tid":27466,"ts":326459043877,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":259362},
-{"pid":27443,"tid":27466,"ts":326459043877,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259362,"id":"0xba44a602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459043907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":259392,"id":"0xaf88a90af182217a"},
-{"pid":27443,"tid":27466,"ts":326459054162,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":259484},
-{"pid":27443,"tid":27466,"ts":326459054193,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":259514},
-{"pid":27443,"tid":27466,"ts":326459054223,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259545,"id":"0xba44a802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459054254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":259575,"id":"0xaf88a906f182217a"},
-{"pid":27443,"tid":27466,"ts":326459058832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":259667,"id":"0xaf88aa46f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459058862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":259697},
-{"pid":27443,"tid":27466,"ts":326459058862,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259697,"id":"0xccc41b02"},
-{"pid":27443,"tid":27466,"ts":326459059808,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":259789},
-{"pid":27443,"tid":27466,"ts":326459059839,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":259819},
-{"pid":27443,"tid":27466,"ts":326459059839,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259850,"id":"0xba44a902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459059869,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":259850},
-{"pid":27443,"tid":27466,"ts":326459059900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":259880,"id":"0xaf88a919f182217a"},
-{"pid":27443,"tid":27466,"ts":326459061762,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":259941,"id":"0xaf88aa47f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459061792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":259972},
-{"pid":27443,"tid":27466,"ts":326459061792,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":259972,"id":"0xccc41d06"},
-{"pid":27443,"tid":27466,"ts":326459062067,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":260064},
-{"pid":27443,"tid":27466,"ts":326459062097,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":260094},
-{"pid":27443,"tid":27466,"ts":326459062097,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260094,"id":"0xc4c13e0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459062616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260216,"id":"0xaf88aa40f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459062616,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":260216},
-{"pid":27443,"tid":27466,"ts":326459062616,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260216,"id":"0xccc41e02"},
-{"pid":27443,"tid":27466,"ts":326459064417,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":260308},
-{"pid":27443,"tid":27466,"ts":326459064448,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":260338},
-{"pid":27443,"tid":27466,"ts":326459064448,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260338,"id":"0xba44aa02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459064478,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":260369,"id":"0xaf88a91bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459070338,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":260460},
-{"pid":27443,"tid":27466,"ts":326459070368,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":61,"tts":260491},
-{"pid":27443,"tid":27466,"ts":326459070368,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260491,"id":"0xba44ac02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459070430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":260552,"id":"0xaf88a914f182217a"},
-{"pid":27443,"tid":27466,"ts":326459081478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260643,"id":"0xaf88aa41f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459081508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":260643},
-{"pid":27443,"tid":27466,"ts":326459081508,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260643,"id":"0xccc41f02"},
-{"pid":27443,"tid":27466,"ts":326459082790,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":260735},
-{"pid":27443,"tid":27466,"ts":326459082821,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":260766},
-{"pid":27443,"tid":27466,"ts":326459082821,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260766,"id":"0xba44ad02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459082851,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":260796},
-{"pid":27443,"tid":27466,"ts":326459082882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":260827,"id":"0xaf88a92ef182217a"},
-{"pid":27443,"tid":27466,"ts":326459083889,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":260918,"id":"0xaf88aa42f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459083889,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":260918},
-{"pid":27443,"tid":27466,"ts":326459083889,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":260918,"id":"0xccc42006"},
-{"pid":27443,"tid":27466,"ts":326459084103,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":261010},
-{"pid":27443,"tid":27466,"ts":326459084103,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":261040},
-{"pid":27443,"tid":27466,"ts":326459084133,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261040,"id":"0xc4c1410a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459084469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":261162,"id":"0xaf88aa43f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459084469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":261162},
-{"pid":27443,"tid":27466,"ts":326459084469,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261162,"id":"0xccc42102"},
-{"pid":27443,"tid":27466,"ts":326459092282,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":261254},
-{"pid":27443,"tid":27466,"ts":326459092313,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":261284},
-{"pid":27443,"tid":27466,"ts":326459092313,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261284,"id":"0xba44ae02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459092374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":261345,"id":"0xaf88a92ff182217a"},
-{"pid":27443,"tid":27466,"ts":326459099821,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":261437},
-{"pid":27443,"tid":27466,"ts":326459099851,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":261468},
-{"pid":27443,"tid":27466,"ts":326459099851,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261468,"id":"0xba44af02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459099882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":261498,"id":"0xaf88a92bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459042015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":412177,"id":"0xaf88a90ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459042015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":412177},
-{"pid":27443,"tid":27477,"ts":326459042046,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459033860.0,"frame_time_us":326459034652.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":412208},
-{"pid":27443,"tid":27477,"ts":326459042076,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459033860.0,"frame_time_us":326459034652.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":412238},
-{"pid":27443,"tid":27477,"ts":326459042137,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459051318},"dur":31,"tdur":31,"tts":412299},
-{"pid":27443,"tid":27477,"ts":326459042137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":412299,"id":"0xaf88a909f182217a"},
-{"pid":27443,"tid":27477,"ts":326459042168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":412360,"id":"0xaf88a908f182217a"},
-{"pid":27443,"tid":27477,"ts":326459042198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":412360},
-{"pid":27443,"tid":27477,"ts":326459042198,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":412360},
-{"pid":27443,"tid":27477,"ts":326459042229,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":412391,"id":"0x300000042"},
-{"pid":27443,"tid":27477,"ts":326459042229,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":412391},
-{"pid":27443,"tid":27477,"ts":326459042259,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":412421,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459042290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":412452,"id":"0xaf88a84df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459043999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":412513,"id":"0xaf88a90af182217a"},
-{"pid":27443,"tid":27477,"ts":326459043999,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":412513},
-{"pid":27443,"tid":27477,"ts":326459044029,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":412543},
-{"pid":27443,"tid":27477,"ts":326459044029,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":412543,"id":"0xaf88a84ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459051507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459051},"tts":412635,"id":"0xaf88a909f182217a"},
-{"pid":27443,"tid":27477,"ts":326459051507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":397,"tdur":397,"tts":412635},
-{"pid":27443,"tid":27477,"ts":326459051537,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":367,"tdur":367,"tts":412665},
-{"pid":27443,"tid":27477,"ts":326459051537,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":367,"tdur":336,"tts":412665},
-{"pid":27443,"tid":27477,"ts":326459051568,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":412696},
-{"pid":27443,"tid":27477,"ts":326459051568,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":412696},
-{"pid":27443,"tid":27477,"ts":326459051659,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":412788},
-{"pid":27443,"tid":27477,"ts":326459051659,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":412788},
-{"pid":27443,"tid":27477,"ts":326459051690,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":412818},
-{"pid":27443,"tid":27477,"ts":326459051690,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":412818},
-{"pid":27443,"tid":27477,"ts":326459051690,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":412818,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459051751,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":412879},
-{"pid":27443,"tid":27477,"ts":326459051751,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":412879},
-{"pid":27443,"tid":27477,"ts":326459051812,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":412940,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459051843,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":413001,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459051873,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":413001,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459052148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413093,"id":"0xaf88a90bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459052178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":413093},
-{"pid":27443,"tid":27477,"ts":326459052178,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":91,"tts":413093},
-{"pid":27443,"tid":27477,"ts":326459052209,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":413123,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459052209,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":413123},
-{"pid":27443,"tid":27477,"ts":326459052239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":413154,"id":"0xaf88a904f182217a"},
-{"pid":27443,"tid":27477,"ts":326459052270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413184,"id":"0xaf88a904f182217a"},
-{"pid":27443,"tid":27477,"ts":326459052300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":413215},
-{"pid":27443,"tid":27477,"ts":326459052300,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":123,"tdur":122,"tts":413215},
-{"pid":27443,"tid":27477,"ts":326459052300,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":413215},
-{"pid":27443,"tid":27477,"ts":326459052331,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":413245},
-{"pid":27443,"tid":27477,"ts":326459052331,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":413245},
-{"pid":27443,"tid":27477,"ts":326459052331,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":413245},
-{"pid":27443,"tid":27477,"ts":326459052392,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":413306},
-{"pid":27443,"tid":27477,"ts":326459052392,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":413337},
-{"pid":27443,"tid":27477,"ts":326459052545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413398,"id":"0xaf88a905f182217a"},
-{"pid":27443,"tid":27477,"ts":326459052545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":413398},
-{"pid":27443,"tid":27477,"ts":326459052545,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":413398},
-{"pid":27443,"tid":27477,"ts":326459052575,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":413428,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459052575,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":413428},
-{"pid":27443,"tid":27477,"ts":326459054437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413490,"id":"0xaf88a906f182217a"},
-{"pid":27443,"tid":27477,"ts":326459054437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":413490},
-{"pid":27443,"tid":27477,"ts":326459054467,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459050532.0,"frame_time_us":326459051324.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":413520},
-{"pid":27443,"tid":27477,"ts":326459054498,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459050532.0,"frame_time_us":326459051324.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":413551},
-{"pid":27443,"tid":27477,"ts":326459054528,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459067990},"dur":31,"tdur":0,"tts":413612},
-{"pid":27443,"tid":27477,"ts":326459054559,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":413612,"id":"0xaf88a900f182217a"},
-{"pid":27443,"tid":27477,"ts":326459054589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413642,"id":"0xaf88a907f182217a"},
-{"pid":27443,"tid":27477,"ts":326459054620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":413673},
-{"pid":27443,"tid":27477,"ts":326459054620,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":413673},
-{"pid":27443,"tid":27477,"ts":326459054620,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":413673,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459054650,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":413703},
-{"pid":27443,"tid":27477,"ts":326459054650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":413703,"id":"0xaf88a901f182217a"},
-{"pid":27443,"tid":27477,"ts":326459054712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413764,"id":"0xaf88a901f182217a"},
-{"pid":27443,"tid":27477,"ts":326459054712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":413764},
-{"pid":27443,"tid":27477,"ts":326459054712,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":153,"tts":413764},
-{"pid":27443,"tid":27477,"ts":326459054742,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":413795},
-{"pid":27443,"tid":27477,"ts":326459054742,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":413795},
-{"pid":27443,"tid":27477,"ts":326459054773,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":413825},
-{"pid":27443,"tid":27477,"ts":326459054773,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":413825},
-{"pid":27443,"tid":27477,"ts":326459054834,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":413886},
-{"pid":27443,"tid":27477,"ts":326459054834,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":413886},
-{"pid":27443,"tid":27477,"ts":326459056421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413978,"id":"0xaf88a902f182217a"},
-{"pid":27443,"tid":27477,"ts":326459056421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1709,"tdur":1435,"tts":414008},
-{"pid":27443,"tid":27477,"ts":326459056451,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1679,"tdur":1435,"tts":414008},
-{"pid":27443,"tid":27477,"ts":326459056451,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":414008},
-{"pid":27443,"tid":27477,"ts":326459056451,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1679,"tdur":1435,"tts":414008},
-{"pid":27443,"tid":27477,"ts":326459056482,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1617,"tdur":1373,"tts":414039},
-{"pid":27443,"tid":27477,"ts":326459056482,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":414039},
-{"pid":27443,"tid":27477,"ts":326459056482,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":414039},
-{"pid":27443,"tid":27477,"ts":326459056512,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":414069,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459056512,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":414069},
-{"pid":27443,"tid":27477,"ts":326459056543,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":702,"tdur":458,"tts":414100},
-{"pid":27443,"tid":27477,"ts":326459057306,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":793,"tdur":793,"tts":414619},
-{"pid":27443,"tid":27477,"ts":326459057306,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":89},"dur":274,"tdur":274,"tts":414619},
-{"pid":27443,"tid":27477,"ts":326459057580,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":89},"dur":31,"tdur":31,"tts":414893},
-{"pid":27443,"tid":27477,"ts":326459057641,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":89},"tts":414954},
-{"pid":27443,"tid":27477,"ts":326459057764,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":415107},
-{"pid":27443,"tid":27477,"ts":326459057794,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":415107},
-{"pid":27443,"tid":27477,"ts":326459057794,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":415107},
-{"pid":27443,"tid":27477,"ts":326459057825,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":415138},
-{"pid":27443,"tid":27477,"ts":326459057947,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":415260},
-{"pid":27443,"tid":27477,"ts":326459057947,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":415260},
-{"pid":27443,"tid":27477,"ts":326459057947,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":415260},
-{"pid":27443,"tid":27477,"ts":326459057947,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":415290},
-{"pid":27443,"tid":27477,"ts":326459057977,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":415290,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459057977,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":415290},
-{"pid":27443,"tid":27477,"ts":326459058008,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":415321},
-{"pid":27443,"tid":27477,"ts":326459058038,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":415351,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459058069,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":415382,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459058099,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":415412,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459058527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":415565,"id":"0xaf88a903f182217a"},
-{"pid":27443,"tid":27477,"ts":326459058557,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":415595},
-{"pid":27443,"tid":27477,"ts":326459058557,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":415595},
-{"pid":27443,"tid":27477,"ts":326459058588,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":415626,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459058588,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":415626},
-{"pid":27443,"tid":27477,"ts":326459058588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":415626,"id":"0xaf88a91ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459058618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":415656,"id":"0xaf88a91cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459058618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":415687},
-{"pid":27443,"tid":27477,"ts":326459058649,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":415687},
-{"pid":27443,"tid":27477,"ts":326459058649,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":415687,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459058649,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":415718},
-{"pid":27443,"tid":27477,"ts":326459058679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":415718,"id":"0xaf88a91df182217a"},
-{"pid":27443,"tid":27477,"ts":326459058679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":415718},
-{"pid":27443,"tid":27477,"ts":326459058710,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":415748},
-{"pid":27443,"tid":27477,"ts":326459058710,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":415748,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459058710,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":415748},
-{"pid":27443,"tid":27477,"ts":326459058740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":415779,"id":"0xaf88a918f182217a"},
-{"pid":27443,"tid":27477,"ts":326459058740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":415779,"id":"0xaf88a91ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459058771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1190,"tts":415809},
-{"pid":27443,"tid":27477,"ts":326459058771,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1190,"tts":415809},
-{"pid":27443,"tid":27477,"ts":326459058771,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":183,"tdur":31,"tts":415809},
-{"pid":27443,"tid":27477,"ts":326459058771,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":415809},
-{"pid":27443,"tid":27477,"ts":326459058954,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":415870},
-{"pid":27443,"tid":27477,"ts":326459058954,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":415870},
-{"pid":27443,"tid":27477,"ts":326459059045,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1037,"tts":415962},
-{"pid":27443,"tid":27459,"ts":326459057733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6429208,"id":"0xaf88a92bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459057764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1098,"tdur":1099,"tts":6429238},
-{"pid":27443,"tid":27459,"ts":326459057764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6429269,"id":"0xaf88a925f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459057794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6429269,"id":"0xaf88a84df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459057794,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1068,"tdur":1068,"tts":6429269},
-{"pid":27443,"tid":27459,"ts":326459057886,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":946,"tdur":946,"tts":6429360},
-{"pid":27443,"tid":27459,"ts":326459057886,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6429360,"id":"0x300000042"},
-{"pid":27443,"tid":27459,"ts":326459057916,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6429391},
-{"pid":27443,"tid":27459,"ts":326459057947,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":794,"tts":6429421},
-{"pid":27443,"tid":27459,"ts":326459058008,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6429482},
-{"pid":27443,"tid":27459,"ts":326459058038,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6429543},
-{"pid":27443,"tid":27459,"ts":326459058069,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6429574},
-{"pid":27443,"tid":27459,"ts":326459058099,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6429574},
-{"pid":27443,"tid":27459,"ts":326459058160,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":550,"tdur":549,"tts":6429635},
-{"pid":27443,"tid":27459,"ts":326459058282,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6429757},
-{"pid":27443,"tid":27459,"ts":326459058313,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6429787},
-{"pid":27443,"tid":27459,"ts":326459058618,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":46,"frame":"0x78c60000"}},"tts":6430093,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459058618,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":0,"tts":6430123},
-{"pid":27443,"tid":27459,"ts":326459058649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6430123,"id":"0xaf88a91ff182217a"},
-{"pid":27443,"tid":27459,"ts":326459058679,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6430154},
-{"pid":27443,"tid":27459,"ts":326459058740,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":6430245},
-{"pid":27443,"tid":27459,"ts":326459058771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6430245,"id":"0xaf88aa46f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459058893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6430367,"id":"0xaf88a924f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459058893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":61,"tts":6430367},
-{"pid":27443,"tid":27459,"ts":326459058893,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":6430367},
-{"pid":27443,"tid":27459,"ts":326459059168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6430398,"id":"0xaf88a84ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459059168,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6430398},
-{"pid":27443,"tid":27459,"ts":326459059168,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6430398},
-{"pid":27443,"tid":27459,"ts":326459059229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6430459,"id":"0xaf88a925f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459059229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6430459},
-{"pid":27443,"tid":27459,"ts":326459060419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6430581,"id":"0xaf88a926f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459060419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":19777,"tdur":9889,"tts":6430581},
-{"pid":27443,"tid":27459,"ts":326459060449,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6430611,"id":"0xaf88a927f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459060449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6430611,"id":"0xaf88a84ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459060449,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":19747,"tdur":9859,"tts":6430611},
-{"pid":27443,"tid":27459,"ts":326459060480,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":90},"tts":6430642},
-{"pid":27443,"tid":27459,"ts":326459060480,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6430642},
-{"pid":27443,"tid":27459,"ts":326459060510,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":15535,"tdur":6593,"tts":6430672},
-{"pid":27443,"tid":27459,"ts":326459060541,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":6430703},
-{"pid":27443,"tid":27459,"ts":326459060571,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":46,"frame":"0x78c60000"}},"dur":15474,"tdur":6531,"tts":6430734},
-{"pid":27443,"tid":27459,"ts":326459060632,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":15383,"tdur":6409,"tts":6430825},
-{"pid":27443,"tid":27459,"ts":326459060663,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6430825},
-{"pid":27443,"tid":27459,"ts":326459060846,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6431008},
-{"pid":27443,"tid":27459,"ts":326459060877,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":31,"tts":6431069},
-{"pid":27443,"tid":27459,"ts":326459075984,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6437234},
-{"pid":27443,"tid":27459,"ts":326459076045,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2900,"tdur":2594,"tts":6437265},
-{"pid":27443,"tid":27459,"ts":326459076106,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6437326},
-{"pid":27443,"tid":27459,"ts":326459076106,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6437326},
-{"pid":27443,"tid":27459,"ts":326459076137,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6437356},
-{"pid":27443,"tid":27459,"ts":326459076564,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6437784},
-{"pid":27443,"tid":27459,"ts":326459076595,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6437814},
-{"pid":27443,"tid":27459,"ts":326459076625,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2289,"tdur":1984,"tts":6437845},
-{"pid":27443,"tid":27459,"ts":326459076625,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2167,"tdur":1831,"tts":6437845},
-{"pid":27443,"tid":27459,"ts":326459076625,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":305,"tts":6437875},
-{"pid":27443,"tid":27459,"ts":326459076961,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":458,"tdur":183,"tts":6438211},
-{"pid":27443,"tid":27459,"ts":326459077419,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":92,"tts":6438394},
-{"pid":27443,"tid":27459,"ts":326459077541,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6438516},
-{"pid":27443,"tid":27459,"ts":326459077541,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1221,"tdur":1160,"tts":6438516},
-{"pid":27443,"tid":27459,"ts":326459078792,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6439707},
-{"pid":27443,"tid":27459,"ts":326459078823,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":92,"tts":6439737},
-{"pid":27443,"tid":27459,"ts":326459078945,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":90},"dur":458,"tdur":458,"tts":6439859},
-{"pid":27443,"tid":27459,"ts":326459078945,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":458,"tts":6439859},
-{"pid":27443,"tid":27459,"ts":326459079219,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":31,"tdur":30,"tts":6440134},
-{"pid":27443,"tid":27459,"ts":326459079250,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":0,"tdur":0,"tts":6440164},
-{"pid":27443,"tid":27477,"ts":326459059045,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1007,"tts":415992},
-{"pid":27443,"tid":27477,"ts":326459059076,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1129,"tdur":977,"tts":415992},
-{"pid":27443,"tid":27477,"ts":326459059076,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":416023,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459059168,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":416084},
-{"pid":27443,"tid":27477,"ts":326459059198,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416114},
-{"pid":27443,"tid":27477,"ts":326459059229,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416145},
-{"pid":27443,"tid":27477,"ts":326459059229,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":416145},
-{"pid":27443,"tid":27477,"ts":326459059259,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416175},
-{"pid":27443,"tid":27477,"ts":326459059259,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":416175},
-{"pid":27443,"tid":27477,"ts":326459059290,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":416206},
-{"pid":27443,"tid":27477,"ts":326459059320,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416236},
-{"pid":27443,"tid":27477,"ts":326459059351,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416267},
-{"pid":27443,"tid":27477,"ts":326459059351,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":416267},
-{"pid":27443,"tid":27477,"ts":326459059381,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416297},
-{"pid":27443,"tid":27477,"ts":326459059381,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":416328},
-{"pid":27443,"tid":27477,"ts":326459059412,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":416328},
-{"pid":27443,"tid":27477,"ts":326459059442,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416358},
-{"pid":27443,"tid":27477,"ts":326459059442,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":416358},
-{"pid":27443,"tid":27477,"ts":326459059473,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416389},
-{"pid":27443,"tid":27477,"ts":326459059503,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416419},
-{"pid":27443,"tid":27477,"ts":326459059503,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416419},
-{"pid":27443,"tid":27477,"ts":326459059534,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416450},
-{"pid":27443,"tid":27477,"ts":326459059534,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":416450},
-{"pid":27443,"tid":27477,"ts":326459059564,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":416481},
-{"pid":27443,"tid":27477,"ts":326459059595,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416511},
-{"pid":27443,"tid":27477,"ts":326459059595,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":416511},
-{"pid":27443,"tid":27477,"ts":326459059625,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416542},
-{"pid":27443,"tid":27477,"ts":326459059625,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":416572},
-{"pid":27443,"tid":27477,"ts":326459059656,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":416572},
-{"pid":27443,"tid":27477,"ts":326459059747,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":416664},
-{"pid":27443,"tid":27477,"ts":326459059778,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":183,"tdur":0,"tts":416694},
-{"pid":27443,"tid":27477,"ts":326459059961,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":416725},
-{"pid":27443,"tid":27477,"ts":326459059992,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416755},
-{"pid":27443,"tid":27477,"ts":326459060022,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":416816},
-{"pid":27443,"tid":27477,"ts":326459060053,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":416816},
-{"pid":27443,"tid":27477,"ts":326459060083,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":416847},
-{"pid":27443,"tid":27477,"ts":326459060114,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":416877},
-{"pid":27443,"tid":27477,"ts":326459060144,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":416908},
-{"pid":27443,"tid":27477,"ts":326459060175,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":416938},
-{"pid":27443,"tid":27477,"ts":326459060175,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":416938},
-{"pid":27443,"tid":27477,"ts":326459060205,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":416969},
-{"pid":27443,"tid":27477,"ts":326459060236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":416999,"id":"0xaf88a91af182217a"},
-{"pid":27443,"tid":27477,"ts":326459060266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":417030,"id":"0xaf88a91ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459060266,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":417030},
-{"pid":27443,"tid":27477,"ts":326459060266,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":417030},
-{"pid":27443,"tid":27477,"ts":326459060297,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":90},"tts":417060},
-{"pid":27443,"tid":27477,"ts":326459060327,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":417091,"id":"0xaf88a84ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459060358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":417121,"id":"0xaf88a926f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459060388,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":417152},
-{"pid":27443,"tid":27477,"ts":326459060419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":417182,"id":"0xaf88a918f182217a"},
-{"pid":27443,"tid":27477,"ts":326459060419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":123,"tts":417182},
-{"pid":27443,"tid":27477,"ts":326459060419,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":123,"tts":417182},
-{"pid":27443,"tid":27477,"ts":326459060419,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":417182},
-{"pid":27443,"tid":27477,"ts":326459060449,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":417213},
-{"pid":27443,"tid":27477,"ts":326459060449,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":417213},
-{"pid":27443,"tid":27477,"ts":326459060449,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":417213},
-{"pid":27443,"tid":27477,"ts":326459060510,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":417274},
-{"pid":27443,"tid":27477,"ts":326459060510,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":417274},
-{"pid":27443,"tid":27477,"ts":326459060541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":417305,"id":"0xaf88a919f182217a"},
-{"pid":27443,"tid":27477,"ts":326459060541,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":417305},
-{"pid":27443,"tid":27477,"ts":326459060571,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":417335},
-{"pid":27443,"tid":27477,"ts":326459060571,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":417335,"id":"0x300000043"},
-{"pid":27443,"tid":27477,"ts":326459060602,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":417366},
-{"pid":27443,"tid":27477,"ts":326459060602,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":417366,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459060632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":417396,"id":"0xaf88a848f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459060663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":417427,"id":"0xaf88a920f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459060694,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":417457,"id":"0xaf88a91af182217a"},
-{"pid":27443,"tid":27477,"ts":326459060694,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2380,"tdur":1435,"tts":417457},
-{"pid":27443,"tid":27477,"ts":326459060694,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2380,"tdur":1435,"tts":417457},
-{"pid":27443,"tid":27477,"ts":326459060724,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":417488},
-{"pid":27443,"tid":27477,"ts":326459060724,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2320,"tdur":1373,"tts":417488},
-{"pid":27443,"tid":27477,"ts":326459060755,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":89},"dur":763,"tdur":763,"tts":417518},
-{"pid":27443,"tid":27477,"ts":326459060755,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":89},"dur":244,"tdur":213,"tts":417549},
-{"pid":27443,"tid":27477,"ts":326459060999,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":89},"dur":30,"tdur":31,"tts":417762},
-{"pid":27443,"tid":27477,"ts":326459061029,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":89},"tts":417793},
-{"pid":27443,"tid":27477,"ts":326459061182,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":417945},
-{"pid":27443,"tid":27477,"ts":326459061182,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":417945},
-{"pid":27443,"tid":27477,"ts":326459061182,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":417945},
-{"pid":27443,"tid":27477,"ts":326459061182,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":417945},
-{"pid":27443,"tid":27477,"ts":326459061212,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":417976,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459061273,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":418037},
-{"pid":27443,"tid":27477,"ts":326459061518,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":418281},
-{"pid":27443,"tid":27477,"ts":326459061518,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":854,"tdur":305,"tts":418281},
-{"pid":27443,"tid":27477,"ts":326459061548,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":418312},
-{"pid":27443,"tid":27477,"ts":326459061548,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":763,"tdur":213,"tts":418312},
-{"pid":27443,"tid":27477,"ts":326459061640,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12581},"dur":0,"tdur":0,"tts":418403},
-{"pid":27443,"tid":27477,"ts":326459061670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":418434,"id":"0xaf88aa47f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459062342,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":418586,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459062403,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":418617,"id":"0x30000003f"},
-{"pid":27443,"tid":27477,"ts":326459062403,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":418617,"id":"0x300000041"},
-{"pid":27443,"tid":27477,"ts":326459062403,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":610,"tdur":214,"tts":418617},
-{"pid":27443,"tid":27477,"ts":326459062494,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":418739,"id":"0xaf88aa40f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459063013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":418831,"id":"0xaf88a849f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459064570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":418953,"id":"0xaf88a91bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459064570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":418953},
-{"pid":27443,"tid":27477,"ts":326459064600,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":418983},
-{"pid":27443,"tid":27477,"ts":326459064600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":418983,"id":"0xaf88a84af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459070460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459067},"tts":419075,"id":"0xaf88a900f182217a"},
-{"pid":27443,"tid":27477,"ts":326459070491,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":419105},
-{"pid":27443,"tid":27477,"ts":326459070491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":419136,"id":"0xaf88a914f182217a"},
-{"pid":27443,"tid":27477,"ts":326459070521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":419136},
-{"pid":27443,"tid":27477,"ts":326459070552,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459067221.0,"frame_time_us":326459068013.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":419166},
-{"pid":27443,"tid":27477,"ts":326459070552,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459067221.0,"frame_time_us":326459068013.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":419166},
-{"pid":27443,"tid":27477,"ts":326459070643,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459084679},"dur":31,"tdur":30,"tts":419258},
-{"pid":27443,"tid":27477,"ts":326459070643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":419258,"id":"0xaf88a915f182217a"},
-{"pid":27443,"tid":27477,"ts":326459079494,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":419349,"id":"0xaf88a916f182217a"},
-{"pid":27443,"tid":27477,"ts":326459079494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1435,"tdur":1435,"tts":419349},
-{"pid":27443,"tid":27477,"ts":326459079525,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1404,"tdur":1404,"tts":419380},
-{"pid":27443,"tid":27477,"ts":326459079525,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":419380},
-{"pid":27443,"tid":27477,"ts":326459079525,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1404,"tdur":1404,"tts":419380},
-{"pid":27443,"tid":27477,"ts":326459079555,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1374,"tdur":1374,"tts":419410},
-{"pid":27443,"tid":27477,"ts":326459079555,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":419410},
-{"pid":27443,"tid":27477,"ts":326459079555,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":419441},
-{"pid":27443,"tid":27477,"ts":326459079586,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":419441,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459079586,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":419441},
-{"pid":27443,"tid":27477,"ts":326459079616,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":458,"tdur":457,"tts":419472},
-{"pid":27443,"tid":27477,"ts":326459080135,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":419990},
-{"pid":27443,"tid":27477,"ts":326459080135,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":90},"dur":244,"tdur":245,"tts":419990},
-{"pid":27443,"tid":27477,"ts":326459080379,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":90},"dur":31,"tdur":30,"tts":420235},
-{"pid":27443,"tid":27477,"ts":326459080440,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":90},"tts":420296},
-{"pid":27443,"tid":27477,"ts":326459080562,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":420418},
-{"pid":27443,"tid":27477,"ts":326459080593,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":420448},
-{"pid":27443,"tid":27477,"ts":326459080593,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":420448},
-{"pid":27443,"tid":27477,"ts":326459080715,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":420570},
-{"pid":27443,"tid":27477,"ts":326459080715,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":420601},
-{"pid":27443,"tid":27477,"ts":326459080745,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":420601},
-{"pid":27443,"tid":27477,"ts":326459080745,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":420601},
-{"pid":27443,"tid":27477,"ts":326459080745,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":420601,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326459079250,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":30,"tdur":31,"tts":6440164},
-{"pid":27443,"tid":27459,"ts":326459079280,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":31,"tdur":30,"tts":6440195},
-{"pid":27443,"tid":27459,"ts":326459079311,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":0,"tdur":0,"tts":6440225},
-{"pid":27443,"tid":27459,"ts":326459079311,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":30,"tdur":31,"tts":6440225},
-{"pid":27443,"tid":27459,"ts":326459079341,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":0,"tdur":0,"tts":6440256},
-{"pid":27443,"tid":27459,"ts":326459079341,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":31,"tdur":30,"tts":6440256},
-{"pid":27443,"tid":27459,"ts":326459079372,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":90},"dur":0,"tdur":0,"tts":6440286},
-{"pid":27443,"tid":27459,"ts":326459079403,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6440317,"id":"0x300000042"},
-{"pid":27443,"tid":27459,"ts":326459079403,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":732,"tdur":91,"tts":6440317},{"pid":27443,"tid":27459,"ts":326459079433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6440347,"id":"0xaf88a916f182217a"},
-{"pid":27443,"tid":27459,"ts":326459080166,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6440439},
-{"pid":27443,"tid":27459,"ts":326459080257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459076},"tts":6440531,"id":"0xaf88a915f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459080257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6440531},
-{"pid":27443,"tid":27459,"ts":326459080288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6440561,"id":"0xaf88a927f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459080318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6440592},
-{"pid":27443,"tid":27459,"ts":326459080318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6440592,"id":"0xaf88a921f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459080349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6440622,"id":"0xaf88abbaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459080349,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6440622},
-{"pid":27443,"tid":27459,"ts":326459080379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6440653,"id":"0xaf88a84bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459080379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6440653,"id":"0xaf88a922f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459080440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6440714,"id":"0xaf88a920f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459080440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1465,"tdur":1068,"tts":6440714},
-{"pid":27443,"tid":27459,"ts":326459080471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6440744,"id":"0xaf88a848f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459080471,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1404,"tdur":1007,"tts":6440744},
-{"pid":27443,"tid":27459,"ts":326459080532,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1343,"tdur":946,"tts":6440805},
-{"pid":27443,"tid":27459,"ts":326459080532,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6440805,"id":"0x300000043"},
-{"pid":27443,"tid":27459,"ts":326459080562,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":794,"tdur":793,"tts":6440836},
-{"pid":27443,"tid":27459,"ts":326459080593,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":763,"tdur":763,"tts":6440866},
-{"pid":27443,"tid":27459,"ts":326459080654,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6440927},
-{"pid":27443,"tid":27459,"ts":326459080684,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6440958},
-{"pid":27443,"tid":27459,"ts":326459080715,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6440988},
-{"pid":27443,"tid":27459,"ts":326459080745,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6441019},
-{"pid":27443,"tid":27459,"ts":326459080776,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":519,"tts":6441080},
-{"pid":27443,"tid":27459,"ts":326459080929,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":366,"tdur":366,"tts":6441202},
-{"pid":27443,"tid":27459,"ts":326459080929,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6441202},
-{"pid":27443,"tid":27459,"ts":326459081234,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":47,"frame":"0x78c60000"}},"tts":6441507,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459081234,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":6441507},
-{"pid":27443,"tid":27459,"ts":326459081264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6441538,"id":"0xaf88a913f182217a"},
-{"pid":27443,"tid":27459,"ts":326459081295,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6441568},
-{"pid":27443,"tid":27459,"ts":326459081356,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":488,"tdur":61,"tts":6441660},
-{"pid":27443,"tid":27459,"ts":326459081386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6441660,"id":"0xaf88aa41f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459081905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6441812,"id":"0xaf88a921f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459081936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6441812},
-{"pid":27443,"tid":27459,"ts":326459081936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6441812,"id":"0xaf88a923f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459081966,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6441843,"id":"0xaf88a849f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459081966,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":6441843},
-{"pid":27443,"tid":27459,"ts":326459081966,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6441843},
-{"pid":27443,"tid":27459,"ts":326459082027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6441904,"id":"0xaf88a923f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459082027,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6441904},
-{"pid":27443,"tid":27459,"ts":326459082058,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6441935,"id":"0xaf88a93cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459082058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6441935,"id":"0xaf88a84af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459082058,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6441935},
-{"pid":27443,"tid":27459,"ts":326459082088,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6441965},
-{"pid":27443,"tid":27459,"ts":326459082119,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6441996,"id":"0xaf88a93cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459082149,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6442026},
-{"pid":27443,"tid":27459,"ts":326459083157,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6442118,"id":"0xaf88a93df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459083157,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":15534,"tdur":11658,"tts":6442118},
-{"pid":27443,"tid":27459,"ts":326459083187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6442148,"id":"0xaf88a93ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459083187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6442148,"id":"0xaf88a844f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459083187,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":15474,"tdur":11598,"tts":6442148},
-{"pid":27443,"tid":27459,"ts":326459083218,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":91},"tts":6442179},
-{"pid":27443,"tid":27459,"ts":326459083218,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6442179},
-{"pid":27443,"tid":27459,"ts":326459083248,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9675,"tdur":8149,"tts":6442209},
-{"pid":27443,"tid":27459,"ts":326459083279,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":6442240},
-{"pid":27443,"tid":27477,"ts":326459080776,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":420631},
-{"pid":27443,"tid":27477,"ts":326459080806,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":420662},
-{"pid":27443,"tid":27477,"ts":326459080867,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":420723,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459080898,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":184}},"tts":420753,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459080898,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":420753,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459081173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":420845,"id":"0xaf88a917f182217a"},
-{"pid":27443,"tid":27477,"ts":326459081173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":420875},
-{"pid":27443,"tid":27477,"ts":326459081203,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":31,"tts":420875},
-{"pid":27443,"tid":27477,"ts":326459081203,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":420875,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459081234,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":420906},
-{"pid":27443,"tid":27477,"ts":326459081234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":420906,"id":"0xaf88a912f182217a"},
-{"pid":27443,"tid":27477,"ts":326459081264,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":420936,"id":"0xaf88a910f182217a"},
-{"pid":27443,"tid":27477,"ts":326459081264,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":420936},
-{"pid":27443,"tid":27477,"ts":326459081264,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":62,"tts":420936},
-{"pid":27443,"tid":27477,"ts":326459081295,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":420967,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459081295,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":420967},
-{"pid":27443,"tid":27477,"ts":326459081295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":420998,"id":"0xaf88a92cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459081325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":420998,"id":"0xaf88a911f182217a"},
-{"pid":27443,"tid":27477,"ts":326459081325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":421028},
-{"pid":27443,"tid":27477,"ts":326459081356,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":421028},
-{"pid":27443,"tid":27477,"ts":326459081356,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":421028,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459081356,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":421028},
-{"pid":27443,"tid":27477,"ts":326459081386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":421059,"id":"0xaf88a912f182217a"},
-{"pid":27443,"tid":27477,"ts":326459081386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1130,"tdur":1129,"tts":421059},
-{"pid":27443,"tid":27477,"ts":326459081386,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1130,"tdur":1129,"tts":421059},
-{"pid":27443,"tid":27477,"ts":326459081417,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":421089},
-{"pid":27443,"tid":27477,"ts":326459081417,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":421089},
-{"pid":27443,"tid":27477,"ts":326459081447,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":421120},
-{"pid":27443,"tid":27477,"ts":326459081447,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":421120},
-{"pid":27443,"tid":27477,"ts":326459081539,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":977,"tdur":977,"tts":421211},
-{"pid":27443,"tid":27477,"ts":326459081539,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":977,"tdur":977,"tts":421211},
-{"pid":27443,"tid":27477,"ts":326459081539,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":916,"tdur":916,"tts":421211},
-{"pid":27443,"tid":27477,"ts":326459081569,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":421242,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459081630,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":421303},
-{"pid":27443,"tid":27477,"ts":326459081661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421333},
-{"pid":27443,"tid":27477,"ts":326459081661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":421364},
-{"pid":27443,"tid":27477,"ts":326459081692,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421364},
-{"pid":27443,"tid":27477,"ts":326459081722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421394},
-{"pid":27443,"tid":27477,"ts":326459081722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":421394},
-{"pid":27443,"tid":27477,"ts":326459081753,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":421425},
-{"pid":27443,"tid":27477,"ts":326459081783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421455},
-{"pid":27443,"tid":27477,"ts":326459081814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421486},
-{"pid":27443,"tid":27477,"ts":326459081814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":421486},
-{"pid":27443,"tid":27477,"ts":326459081844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":421516},
-{"pid":27443,"tid":27477,"ts":326459081875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421547},
-{"pid":27443,"tid":27477,"ts":326459081905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421577},
-{"pid":27443,"tid":27477,"ts":326459081905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":421577},
-{"pid":27443,"tid":27477,"ts":326459081936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":421608},
-{"pid":27443,"tid":27477,"ts":326459081966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421638},
-{"pid":27443,"tid":27477,"ts":326459081966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":421669},
-{"pid":27443,"tid":27477,"ts":326459081997,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421669},
-{"pid":27443,"tid":27477,"ts":326459082027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421700},
-{"pid":27443,"tid":27477,"ts":326459082027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":421700},
-{"pid":27443,"tid":27477,"ts":326459082058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421730},
-{"pid":27443,"tid":27477,"ts":326459082058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":421730},
-{"pid":27443,"tid":27477,"ts":326459082088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":421761},
-{"pid":27443,"tid":27477,"ts":326459082119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421791},
-{"pid":27443,"tid":27477,"ts":326459082119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":421791},
-{"pid":27443,"tid":27477,"ts":326459082149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421822},
-{"pid":27443,"tid":27477,"ts":326459082241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421913},
-{"pid":27443,"tid":27477,"ts":326459082241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":421913},
-{"pid":27443,"tid":27477,"ts":326459082271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421944},
-{"pid":27443,"tid":27477,"ts":326459082302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":421974},
-{"pid":27443,"tid":27477,"ts":326459082302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":421974},
-{"pid":27443,"tid":27477,"ts":326459082332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":422005},
-{"pid":27443,"tid":27477,"ts":326459082363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":422035},
-{"pid":27443,"tid":27477,"ts":326459082394,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":422066},
-{"pid":27443,"tid":27477,"ts":326459082424,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":422096},
-{"pid":27443,"tid":27477,"ts":326459082424,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":422096},
-{"pid":27443,"tid":27477,"ts":326459082455,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":422127},
-{"pid":27443,"tid":27477,"ts":326459082485,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":422157},
-{"pid":27443,"tid":27477,"ts":326459082485,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":422157,"id":"0xaf88a92df182217a"},
-{"pid":27443,"tid":27477,"ts":326459082516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":422188,"id":"0xaf88a913f182217a"},
-{"pid":27443,"tid":27477,"ts":326459082516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":122,"tts":422218},
-{"pid":27443,"tid":27477,"ts":326459082546,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":422218},
-{"pid":27443,"tid":27477,"ts":326459082546,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":91},"tts":422218},
-{"pid":27443,"tid":27477,"ts":326459082607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":422279,"id":"0xaf88a844f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459082638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":422310,"id":"0xaf88a93df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459082668,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":422340},
-{"pid":27443,"tid":27477,"ts":326459082668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":422340,"id":"0xaf88a92cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459082699,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":422371},
-{"pid":27443,"tid":27477,"ts":326459082699,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":422371},
-{"pid":27443,"tid":27477,"ts":326459082699,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":422371},
-{"pid":27443,"tid":27477,"ts":326459082699,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":422401},
-{"pid":27443,"tid":27477,"ts":326459082729,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":62,"tts":422401},
-{"pid":27443,"tid":27477,"ts":326459082729,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":422401},
-{"pid":27443,"tid":27477,"ts":326459082790,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":422463},
-{"pid":27443,"tid":27477,"ts":326459082790,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":422463},
-{"pid":27443,"tid":27477,"ts":326459082821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":422493,"id":"0xaf88a92df182217a"},
-{"pid":27443,"tid":27477,"ts":326459082821,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1709,"tdur":1404,"tts":422493},
-{"pid":27443,"tid":27477,"ts":326459082851,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1679,"tdur":1373,"tts":422524},
-{"pid":27443,"tid":27477,"ts":326459082851,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":422524},
-{"pid":27443,"tid":27477,"ts":326459082851,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1648,"tdur":1342,"tts":422524},
-{"pid":27443,"tid":27477,"ts":326459082882,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":90},"dur":763,"tdur":763,"tts":422554},
-{"pid":27443,"tid":27477,"ts":326459082912,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":90},"dur":214,"tdur":213,"tts":422585},
-{"pid":27443,"tid":27477,"ts":326459083126,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":90},"dur":31,"tdur":31,"tts":422798},
-{"pid":27443,"tid":27477,"ts":326459083187,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":90},"tts":422859},
-{"pid":27443,"tid":27477,"ts":326459083279,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":422981},
-{"pid":27443,"tid":27477,"ts":326459083309,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":422981},
-{"pid":27443,"tid":27477,"ts":326459083309,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":422981},
-{"pid":27443,"tid":27477,"ts":326459083309,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":422981},
-{"pid":27443,"tid":27477,"ts":326459083340,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":423012,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459083401,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":423073},
-{"pid":27443,"tid":27477,"ts":326459083645,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":423317},
-{"pid":27443,"tid":27477,"ts":326459083645,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":275,"tts":423317},
-{"pid":27443,"tid":27477,"ts":326459083675,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":423348},
-{"pid":27443,"tid":27477,"ts":326459083675,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":213,"tts":423348},
-{"pid":27443,"tid":27477,"ts":326459083767,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12581},"dur":30,"tdur":0,"tts":423470},
-{"pid":27443,"tid":27477,"ts":326459083797,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":423500,"id":"0xaf88aa42f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459084225,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":423592,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459084255,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":423622,"id":"0x300000042"},
-{"pid":27443,"tid":27477,"ts":326459084255,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":423622},
-{"pid":27443,"tid":27477,"ts":326459084408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":423775,"id":"0xaf88aa43f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459084469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":423836,"id":"0xaf88a845f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459084469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":423836,"id":"0xaf88a93ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459084530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":423897,"id":"0xaf88a92ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459084530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":423897},
-{"pid":27443,"tid":27477,"ts":326459084560,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":423927},
-{"pid":27443,"tid":27477,"ts":326459084560,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":423927,"id":"0x300000044"},
-{"pid":27443,"tid":27477,"ts":326459084591,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":423958},
-{"pid":27443,"tid":27477,"ts":326459084591,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":423958,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459084621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":423989,"id":"0xaf88a846f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459090420,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459084},"tts":424080,"id":"0xaf88a915f182217a"},
-{"pid":27443,"tid":27477,"ts":326459090420,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":424080},
-{"pid":27443,"tid":27477,"ts":326459093350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":424141,"id":"0xaf88a92ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459093381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":424141},
-{"pid":27443,"tid":27477,"ts":326459093411,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459083912.0,"frame_time_us":326459084704.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":424172},
-{"pid":27443,"tid":27477,"ts":326459093442,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459083912.0,"frame_time_us":326459084704.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":424202},
-{"pid":27443,"tid":27459,"ts":326459083309,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":47,"frame":"0x78c60000"}},"dur":9614,"tdur":8057,"tts":6442301},
-{"pid":27443,"tid":27459,"ts":326459083401,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9492,"tdur":7966,"tts":6442362},
-{"pid":27443,"tid":27459,"ts":326459083431,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6442392},
-{"pid":27443,"tid":27459,"ts":326459083614,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6442575},
-{"pid":27443,"tid":27459,"ts":326459083645,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":6442606},
-{"pid":27443,"tid":27459,"ts":326459089047,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6446940},
-{"pid":27443,"tid":27459,"ts":326459090603,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6448466},
-{"pid":27443,"tid":27459,"ts":326459092893,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6450328},
-{"pid":27443,"tid":27459,"ts":326459092923,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3418,"tdur":2655,"tts":6450389},
-{"pid":27443,"tid":27459,"ts":326459092984,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6450419},
-{"pid":27443,"tid":27459,"ts":326459092984,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6450419},
-{"pid":27443,"tid":27459,"ts":326459093015,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6450450},
-{"pid":27443,"tid":27459,"ts":326459094083,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6450907},
-{"pid":27443,"tid":27459,"ts":326459094113,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6450938},
-{"pid":27443,"tid":27459,"ts":326459094144,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2167,"tdur":2044,"tts":6450969},
-{"pid":27443,"tid":27459,"ts":326459094174,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1984,"tdur":1862,"tts":6450999},
-{"pid":27443,"tid":27459,"ts":326459094174,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":366,"tts":6450999},
-{"pid":27443,"tid":27459,"ts":326459094693,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":213,"tts":6451396},
-{"pid":27443,"tid":27459,"ts":326459094907,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6451609},
-{"pid":27443,"tid":27459,"ts":326459094998,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":6451732},
-{"pid":27443,"tid":27459,"ts":326459095029,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1129,"tdur":1129,"tts":6451732},
-{"pid":27443,"tid":27459,"ts":326459096189,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6452891},
-{"pid":27443,"tid":27459,"ts":326459096219,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":6452922},
-{"pid":27443,"tid":27459,"ts":326459096341,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":91},"dur":519,"tdur":519,"tts":6453044},
-{"pid":27443,"tid":27459,"ts":326459096341,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":519,"tdur":519,"tts":6453044},
-{"pid":27443,"tid":27459,"ts":326459096647,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":30,"tdur":31,"tts":6453349},
-{"pid":27443,"tid":27459,"ts":326459096677,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":0,"tdur":0,"tts":6453380},
-{"pid":27443,"tid":27459,"ts":326459096708,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":0,"tdur":0,"tts":6453410},
-{"pid":27443,"tid":27459,"ts":326459096708,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":30,"tdur":31,"tts":6453410},
-{"pid":27443,"tid":27459,"ts":326459096738,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":31,"tdur":30,"tts":6453441},
-{"pid":27443,"tid":27459,"ts":326459096769,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":30,"tdur":31,"tts":6453471},
-{"pid":27443,"tid":27459,"ts":326459096799,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":0,"tdur":0,"tts":6453502},
-{"pid":27443,"tid":27459,"ts":326459096799,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":31,"tdur":30,"tts":6453502},
-{"pid":27443,"tid":27459,"ts":326459096830,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":91},"dur":0,"tdur":0,"tts":6453532},
-{"pid":27443,"tid":27459,"ts":326459096860,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6453563,"id":"0x300000043"},
-{"pid":27443,"tid":27459,"ts":326459096860,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1740,"tdur":122,"tts":6453563},
-{"pid":27443,"tid":27459,"ts":326459096891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6453593,"id":"0xaf88a929f182217a"},
-{"pid":27443,"tid":27459,"ts":326459098630,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6453746},
-{"pid":27443,"tid":27459,"ts":326459098722,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6453807,"id":"0xaf88a93ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459098722,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":6453837},
-{"pid":27443,"tid":27459,"ts":326459098752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6453837,"id":"0xaf88a938f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459098783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6453868,"id":"0xaf88a845f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459098783,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6453868},
-{"pid":27443,"tid":27459,"ts":326459098783,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":6453868},
-{"pid":27443,"tid":27459,"ts":326459098844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6453929,"id":"0xaf88a93ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459098844,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1068,"tdur":1068,"tts":6453929},
-{"pid":27443,"tid":27459,"ts":326459098844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6453960,"id":"0xaf88a846f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459098875,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1007,"tdur":1007,"tts":6453960},
-{"pid":27443,"tid":27459,"ts":326459098936,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":946,"tdur":946,"tts":6454021},
-{"pid":27443,"tid":27459,"ts":326459098936,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6454021,"id":"0x300000044"},
-{"pid":27443,"tid":27459,"ts":326459098966,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6454051},
-{"pid":27443,"tid":27459,"ts":326459098997,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":793,"tts":6454082},
-{"pid":27443,"tid":27459,"ts":326459099058,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6454143},
-{"pid":27443,"tid":27459,"ts":326459099088,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6454173},
-{"pid":27443,"tid":27459,"ts":326459099119,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6454204},
-{"pid":27443,"tid":27459,"ts":326459099149,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6454234},
-{"pid":27443,"tid":27459,"ts":326459099180,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":6454265},
-{"pid":27443,"tid":27459,"ts":326459099332,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":397,"tts":6454417},
-{"pid":27443,"tid":27459,"ts":326459099332,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6454417},
-{"pid":27443,"tid":27459,"ts":326459099638,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":48,"frame":"0x78c60000"}},"tts":6454723,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459099668,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6454753},
-{"pid":27443,"tid":27459,"ts":326459099668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6454753,"id":"0xaf88a92af182217a"},
-{"pid":27443,"tid":27459,"ts":326459099729,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6454814},
-{"pid":27443,"tid":27459,"ts":326459099821,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":30,"tts":6454906},
-{"pid":27443,"tid":27477,"ts":326459093533,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459101370},"dur":31,"tdur":30,"tts":424294},
-{"pid":27443,"tid":27477,"ts":326459093564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":424324,"id":"0xaf88a928f182217a"},
-{"pid":27443,"tid":27477,"ts":326459096982,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":424385,"id":"0xaf88a929f182217a"},
-{"pid":27443,"tid":27477,"ts":326459096982,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1770,"tdur":1496,"tts":424385},
-{"pid":27443,"tid":27477,"ts":326459096982,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1770,"tdur":1496,"tts":424385},
-{"pid":27443,"tid":27477,"ts":326459097013,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":424416},
-{"pid":27443,"tid":27477,"ts":326459097013,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1739,"tdur":1465,"tts":424416},
-{"pid":27443,"tid":27477,"ts":326459097013,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1739,"tdur":1465,"tts":424416},
-{"pid":27443,"tid":27477,"ts":326459097043,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":424446},
-{"pid":27443,"tid":27477,"ts":326459097043,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":424446},
-{"pid":27443,"tid":27477,"ts":326459097043,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":424477,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459097074,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":424477},
-{"pid":27443,"tid":27477,"ts":326459097104,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":641,"tdur":428,"tts":424507},
-{"pid":27443,"tid":27477,"ts":326459097806,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":916,"tdur":854,"tts":424996},
-{"pid":27443,"tid":27477,"ts":326459097837,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":91},"dur":274,"tdur":244,"tts":425026},
-{"pid":27443,"tid":27477,"ts":326459098111,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":91},"dur":62,"tdur":61,"tts":425270},
-{"pid":27443,"tid":27477,"ts":326459098173,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":91},"tts":425331},
-{"pid":27443,"tid":27477,"ts":326459098325,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":425484},
-{"pid":27443,"tid":27477,"ts":326459098325,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":366,"tts":425484},
-{"pid":27443,"tid":27477,"ts":326459098356,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":122,"tts":425515},
-{"pid":27443,"tid":27477,"ts":326459098508,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":425637},
-{"pid":27443,"tid":27477,"ts":326459098539,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":425667},
-{"pid":27443,"tid":27477,"ts":326459098569,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":425698},
-{"pid":27443,"tid":27477,"ts":326459098569,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":425698},
-{"pid":27443,"tid":27477,"ts":326459098569,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":425728,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459098600,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":425728},
-{"pid":27443,"tid":27477,"ts":326459098630,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":425759},
-{"pid":27443,"tid":27477,"ts":326459098691,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":425820,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459098722,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":177}},"tts":425850,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459098722,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3403776},"tts":425850,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459100309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":425942,"id":"0xaf88a92af182217a"},
-{"pid":27443,"tid":27477,"ts":326459100309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":425942},
-{"pid":27443,"tid":27477,"ts":326459100309,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":30,"tts":425942},
-{"pid":27443,"tid":27477,"ts":326459100339,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":425972,"id":"0xaf88a92bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459100339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":425972},
-{"pid":27443,"tid":27477,"ts":326459100370,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":426003},
-{"pid":27443,"tid":27477,"ts":326459100401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":426033,"id":"0xaf88a847f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459100401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426033,"id":"0xaf88a939f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459100462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":426094,"id":"0xaf88a924f182217a"},
-{"pid":27443,"tid":27477,"ts":326459100462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":426094},
-{"pid":27443,"tid":27477,"ts":326459100462,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":426094},
-{"pid":27443,"tid":27477,"ts":326459100492,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":426125,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459100492,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":426125},
-{"pid":27443,"tid":27477,"ts":326459100523,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426155,"id":"0xaf88a927f182217a"},
-{"pid":27443,"tid":27477,"ts":326459100523,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":426186,"id":"0xaf88a925f182217a"},
-{"pid":27443,"tid":27477,"ts":326459100553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":426186},
-{"pid":27443,"tid":27477,"ts":326459100553,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":426186},
-{"pid":27443,"tid":27477,"ts":326459100553,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":426186,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459100584,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":426217},
-{"pid":27443,"tid":27477,"ts":326459100584,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426217,"id":"0xaf88a920f182217a"},
-{"pid":27443,"tid":27477,"ts":326459100614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":426247,"id":"0xaf88a926f182217a"},
-{"pid":27443,"tid":27477,"ts":326459100614,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":426247},
-{"pid":27443,"tid":27477,"ts":326459100614,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":426247},
-{"pid":27443,"tid":27477,"ts":326459100645,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":426278,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459100645,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":426278},
-{"pid":27443,"tid":27477,"ts":326459100675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":426308,"id":"0xaf88a927f182217a"},
-{"pid":27443,"tid":27477,"ts":326459100675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":5982,"tdur":1343,"tts":426308},
-{"pid":27443,"tid":27477,"ts":326459100675,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":5982,"tdur":1343,"tts":426308},
-{"pid":27443,"tid":27477,"ts":326459100675,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":426308},
-{"pid":27443,"tid":27477,"ts":326459100706,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":426339},
-{"pid":27443,"tid":27477,"ts":326459100706,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":426339},
-{"pid":27443,"tid":27477,"ts":326459100706,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":426339},
-{"pid":27443,"tid":27477,"ts":326459100828,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":5829,"tdur":1190,"tts":426461},
-{"pid":27443,"tid":27477,"ts":326459100828,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":5799,"tdur":1159,"tts":426461},
-{"pid":27443,"tid":27459,"ts":326459099821,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6454906,"id":"0xaf88aa5cf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459099912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6454997,"id":"0xaf88a938f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459099943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6455028},
-{"pid":27443,"tid":27459,"ts":326459108641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6455089,"id":"0xaf88a939f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459108672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6455119},
-{"pid":27443,"tid":27459,"ts":326459108702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6455150,"id":"0xaf88a93af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459108702,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6455150,"id":"0xaf88a847f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459108702,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":6455180},
-{"pid":27443,"tid":27459,"ts":326459108733,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6455180},
-{"pid":27443,"tid":27459,"ts":326459108794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6455241,"id":"0xaf88a93af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459108794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":23348,"tdur":9736,"tts":6455241},
-{"pid":27443,"tid":27459,"ts":326459108824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6455272,"id":"0xaf88a93bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459108824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6455272,"id":"0xaf88a840f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459108824,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":23318,"tdur":9675,"tts":6455302},
-{"pid":27443,"tid":27459,"ts":326459108855,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":92},"tts":6455302},
-{"pid":27443,"tid":27459,"ts":326459108855,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6455302},
-{"pid":27443,"tid":27459,"ts":326459108916,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":13703,"tdur":6410,"tts":6455363},
-{"pid":27443,"tid":27459,"ts":326459108946,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":6455394},
-{"pid":27443,"tid":27459,"ts":326459109007,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":48,"frame":"0x78c60000"}},"dur":13582,"tdur":6287,"tts":6455455},
-{"pid":27443,"tid":27459,"ts":326459109099,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":13490,"tdur":6195,"tts":6455547},
-{"pid":27443,"tid":27459,"ts":326459109129,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6455577},
-{"pid":27443,"tid":27459,"ts":326459110106,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6455821},
-{"pid":27443,"tid":27459,"ts":326459110167,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6455882},
-{"pid":27443,"tid":27459,"ts":326459122528,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6461712},
-{"pid":27443,"tid":27459,"ts":326459122619,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3022,"tdur":2594,"tts":6461773},
-{"pid":27443,"tid":27459,"ts":326459122650,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6461834},
-{"pid":27443,"tid":27459,"ts":326459122680,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6461834},
-{"pid":27443,"tid":27459,"ts":326459122711,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6461864},
-{"pid":27443,"tid":27459,"ts":326459123169,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6462322},
-{"pid":27443,"tid":27459,"ts":326459123199,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6462353},
-{"pid":27443,"tid":27459,"ts":326459123230,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2380,"tdur":1953,"tts":6462383},
-{"pid":27443,"tid":27459,"ts":326459123260,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2198,"tdur":1770,"tts":6462414},
-{"pid":27443,"tid":27459,"ts":326459123260,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":335,"tts":6462414},
-{"pid":27443,"tid":27459,"ts":326459123596,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":275,"tdur":184,"tts":6462749},
-{"pid":27443,"tid":27459,"ts":326459123596,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":6462749},
-{"pid":27443,"tid":27459,"ts":326459123871,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":61,"tts":6462963},
-{"pid":27443,"tid":27459,"ts":326459123993,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6463055},
-{"pid":27443,"tid":27459,"ts":326459123993,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1465,"tdur":1129,"tts":6463055},
-{"pid":27443,"tid":27459,"ts":326459125488,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6464214},
-{"pid":27443,"tid":27459,"ts":326459125519,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":91,"tts":6464245},
-{"pid":27443,"tid":27459,"ts":326459125641,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":92},"dur":702,"tdur":488,"tts":6464367},
-{"pid":27443,"tid":27459,"ts":326459125641,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":702,"tdur":488,"tts":6464367},
-{"pid":27443,"tid":27459,"ts":326459125916,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":0,"tdur":0,"tts":6464642},
-{"pid":27443,"tid":27459,"ts":326459125946,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":0,"tdur":0,"tts":6464672},
-{"pid":27443,"tid":27459,"ts":326459125946,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":31,"tdur":31,"tts":6464672},
-{"pid":27443,"tid":27459,"ts":326459125977,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":0,"tdur":0,"tts":6464703},
-{"pid":27443,"tid":27459,"ts":326459125977,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":30,"tdur":30,"tts":6464703},
-{"pid":27443,"tid":27459,"ts":326459126007,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":31,"tdur":0,"tts":6464733},
-{"pid":27443,"tid":27459,"ts":326459126038,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":244,"tdur":0,"tts":6464764},
-{"pid":27443,"tid":27459,"ts":326459126282,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":30,"tdur":31,"tts":6464794},
-{"pid":27443,"tid":27459,"ts":326459126312,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":92},"dur":0,"tdur":0,"tts":6464825},
-{"pid":27443,"tid":27459,"ts":326459126343,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6464855,"id":"0x300000044"},
-{"pid":27443,"tid":27459,"ts":326459126343,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":5738,"tdur":61,"tts":6464855},
-{"pid":27443,"tid":27459,"ts":326459126373,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6464886,"id":"0xaf88a935f182217a"},
-{"pid":27443,"tid":27459,"ts":326459132111,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6464947},
-{"pid":27443,"tid":27459,"ts":326459132233,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6465038,"id":"0xaf88a93bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459132264,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1770,"tdur":1129,"tts":6465069},
-{"pid":27443,"tid":27459,"ts":326459132294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6465099,"id":"0xaf88a935f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459132294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6465099,"id":"0xaf88a841f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459132294,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1740,"tdur":1099,"tts":6465099},
-{"pid":27443,"tid":27459,"ts":326459132722,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1312,"tdur":1007,"tts":6465161},
-{"pid":27443,"tid":27459,"ts":326459132752,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6465191,"id":"0x300000045"},
-{"pid":27443,"tid":27459,"ts":326459132783,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6465222},
-{"pid":27443,"tid":27459,"ts":326459132813,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":794,"tdur":794,"tts":6465252},
-{"pid":27443,"tid":27466,"ts":326459099912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":261529,"id":"0xaf88aa5cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459099943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":305,"tdur":31,"tts":261559},
-{"pid":27443,"tid":27466,"ts":326459099943,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261559,"id":"0xccc42302"},
-{"pid":27443,"tid":27466,"ts":326459105558,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":261742},
-{"pid":27443,"tid":27466,"ts":326459105589,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":261803},
-{"pid":27443,"tid":27466,"ts":326459105620,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261803,"id":"0xba44b102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459105650,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":261834},
-{"pid":27443,"tid":27466,"ts":326459105681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":261864,"id":"0xaf88a921f182217a"},
-{"pid":27443,"tid":27466,"ts":326459109007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":261925,"id":"0xaf88aa5df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459109038,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":261956},
-{"pid":27443,"tid":27466,"ts":326459109038,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":261956,"id":"0xccc42506"},
-{"pid":27443,"tid":27466,"ts":326459109312,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":262047},
-{"pid":27443,"tid":27466,"ts":326459109343,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":262078},
-{"pid":27443,"tid":27466,"ts":326459109343,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262078,"id":"0xc4c1440a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459109618,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":262200},
-{"pid":27443,"tid":27466,"ts":326459109648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":262231},
-{"pid":27443,"tid":27466,"ts":326459109648,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262231,"id":"0xba44b202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459109679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":262261,"id":"0xaf88a923f182217a"},
-{"pid":27443,"tid":27466,"ts":326459109709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":262292,"id":"0xaf88aa5ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459109740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":262322},
-{"pid":27443,"tid":27466,"ts":326459109740,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262322,"id":"0xccc42602"},
-{"pid":27443,"tid":27466,"ts":326459115172,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":262444},
-{"pid":27443,"tid":27466,"ts":326459115203,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":262475},
-{"pid":27443,"tid":27466,"ts":326459115203,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262475,"id":"0xba44b302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459115233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":262505,"id":"0xaf88a93df182217a"},
-{"pid":27443,"tid":27466,"ts":326459124725,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":262627},
-{"pid":27443,"tid":27466,"ts":326459124756,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":262658},
-{"pid":27443,"tid":27466,"ts":326459124756,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262688,"id":"0xba44b502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459124817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":262719,"id":"0xaf88a93bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459131592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":262841,"id":"0xaf88aa5ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459131623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":262871},
-{"pid":27443,"tid":27466,"ts":326459131623,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262871,"id":"0xccc42706"},
-{"pid":27443,"tid":27466,"ts":326459131959,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":262963},
-{"pid":27443,"tid":27466,"ts":326459131959,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":262963},
-{"pid":27443,"tid":27466,"ts":326459131989,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":262994,"id":"0xc4c1470a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459132386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":263116,"id":"0xaf88aa58f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459132386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":263116},
-{"pid":27443,"tid":27466,"ts":326459132386,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":263116,"id":"0xccc42802"},
-{"pid":27443,"tid":27466,"ts":326459133759,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":263238,"id":"0xaf88aa59f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459133759,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":263238},
-{"pid":27443,"tid":27466,"ts":326459133759,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":263238,"id":"0xccc42902"},
-{"pid":27443,"tid":27466,"ts":326459134522,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":263329},
-{"pid":27443,"tid":27466,"ts":326459134553,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":263360},
-{"pid":27443,"tid":27466,"ts":326459134553,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":263360,"id":"0xba44b602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459134614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":263421,"id":"0xaf88a9cdf182217a"},
-{"pid":27443,"tid":27466,"ts":326459136109,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":263512},
-{"pid":27443,"tid":27466,"ts":326459136140,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":263543},
-{"pid":27443,"tid":27466,"ts":326459136170,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":263573,"id":"0xba44b802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459136170,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":263573},
-{"pid":27443,"tid":27466,"ts":326459136201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":263604,"id":"0xaf88a9cef182217a"},
-{"pid":27443,"tid":27466,"ts":326459143556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":263726,"id":"0xaf88aa5af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459143587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":263726},
-{"pid":27443,"tid":27466,"ts":326459143587,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":263757,"id":"0xccc42b02"},
-{"pid":27443,"tid":27466,"ts":326459143739,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":263818},
-{"pid":27443,"tid":27466,"ts":326459143770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":263848},
-{"pid":27443,"tid":27466,"ts":326459143800,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":263879,"id":"0xba44b902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459143831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":263909,"id":"0xaf88a9cff182217a"},
-{"pid":27443,"tid":27466,"ts":326459147555,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":264001},
-{"pid":27443,"tid":27466,"ts":326459147585,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":264031},
-{"pid":27443,"tid":27466,"ts":326459147585,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":264062,"id":"0xba44ba02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459147616,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":264062},
-{"pid":27443,"tid":27466,"ts":326459147646,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":264092,"id":"0xaf88a9c9f182217a"},
-{"pid":27443,"tid":27466,"ts":326459153598,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":264214},
-{"pid":27443,"tid":27466,"ts":326459153659,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":264275},
-{"pid":27443,"tid":27477,"ts":326459100828,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":5677,"tdur":1037,"tts":426461},
-{"pid":27443,"tid":27477,"ts":326459100858,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":426491,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459100950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426583},
-{"pid":27443,"tid":27477,"ts":326459100950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":426583},
-{"pid":27443,"tid":27477,"ts":326459100980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":426613},
-{"pid":27443,"tid":27477,"ts":326459101011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426644},
-{"pid":27443,"tid":27477,"ts":326459101011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":426644},
-{"pid":27443,"tid":27477,"ts":326459101041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426674},
-{"pid":27443,"tid":27477,"ts":326459101072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426705},
-{"pid":27443,"tid":27477,"ts":326459101072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":183,"tdur":30,"tts":426705},
-{"pid":27443,"tid":27477,"ts":326459101072,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":426705},
-{"pid":27443,"tid":27477,"ts":326459101255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":426735},
-{"pid":27443,"tid":27477,"ts":326459101286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426766},
-{"pid":27443,"tid":27477,"ts":326459101286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":426796},
-{"pid":27443,"tid":27477,"ts":326459101316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":426796},
-{"pid":27443,"tid":27477,"ts":326459101347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426827},
-{"pid":27443,"tid":27477,"ts":326459101377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426857},
-{"pid":27443,"tid":27477,"ts":326459105894,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":426888},
-{"pid":27443,"tid":27477,"ts":326459105925,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426918},
-{"pid":27443,"tid":27477,"ts":326459105955,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426949},
-{"pid":27443,"tid":27477,"ts":326459105955,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":426949},
-{"pid":27443,"tid":27477,"ts":326459105986,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":426980},
-{"pid":27443,"tid":27477,"ts":326459105986,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":427010},
-{"pid":27443,"tid":27477,"ts":326459106016,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":427010},
-{"pid":27443,"tid":27477,"ts":326459106047,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427041},
-{"pid":27443,"tid":27477,"ts":326459106077,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427071},
-{"pid":27443,"tid":27477,"ts":326459106077,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":427071},
-{"pid":27443,"tid":27477,"ts":326459106108,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427102},
-{"pid":27443,"tid":27477,"ts":326459106138,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427132},
-{"pid":27443,"tid":27477,"ts":326459106230,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":427224},
-{"pid":27443,"tid":27477,"ts":326459106260,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427254},
-{"pid":27443,"tid":27477,"ts":326459106291,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427285},
-{"pid":27443,"tid":27477,"ts":326459106291,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":427285},
-{"pid":27443,"tid":27477,"ts":326459106321,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427315},
-{"pid":27443,"tid":27477,"ts":326459106352,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":427346},
-{"pid":27443,"tid":27477,"ts":326459106352,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":427346},
-{"pid":27443,"tid":27477,"ts":326459106413,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":427407},
-{"pid":27443,"tid":27477,"ts":326459106444,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":427437},
-{"pid":27443,"tid":27477,"ts":326459106474,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":427468},
-{"pid":27443,"tid":27477,"ts":326459106474,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":0,"tts":427498},
-{"pid":27443,"tid":27477,"ts":326459106535,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":92},"tts":427529},
-{"pid":27443,"tid":27477,"ts":326459106596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":427590,"id":"0xaf88a840f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459106596,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":427590},
-{"pid":27443,"tid":27477,"ts":326459106627,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":427620},
-{"pid":27443,"tid":27477,"ts":326459106627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":427620,"id":"0xaf88a922f182217a"},
-{"pid":27443,"tid":27477,"ts":326459106657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459101},"tts":427651,"id":"0xaf88a928f182217a"},
-{"pid":27443,"tid":27477,"ts":326459106688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":427681},
-{"pid":27443,"tid":27477,"ts":326459106688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":427681,"id":"0xaf88a920f182217a"},
-{"pid":27443,"tid":27477,"ts":326459106688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":427681},
-{"pid":27443,"tid":27477,"ts":326459106718,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":427712},
-{"pid":27443,"tid":27477,"ts":326459106718,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":427712},
-{"pid":27443,"tid":27477,"ts":326459106718,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":427712},
-{"pid":27443,"tid":27477,"ts":326459106749,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":427743},
-{"pid":27443,"tid":27477,"ts":326459106749,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":30,"tts":427743},
-{"pid":27443,"tid":27477,"ts":326459106810,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":427804},
-{"pid":27443,"tid":27477,"ts":326459106810,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":427804},
-{"pid":27443,"tid":27477,"ts":326459106840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":427834,"id":"0xaf88a921f182217a"},
-{"pid":27443,"tid":27477,"ts":326459106840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":427834},
-{"pid":27443,"tid":27477,"ts":326459106871,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":91,"tts":427865},
-{"pid":27443,"tid":27477,"ts":326459106871,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":427865,"id":"0x300000045"},
-{"pid":27443,"tid":27477,"ts":326459106901,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":427895},
-{"pid":27443,"tid":27477,"ts":326459106901,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":427895,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459106932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":427926,"id":"0xaf88a841f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459106962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":427956,"id":"0xaf88a922f182217a"},
-{"pid":27443,"tid":27477,"ts":326459106962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2839,"tdur":1618,"tts":427956},
-{"pid":27443,"tid":27477,"ts":326459106993,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2808,"tdur":1587,"tts":427987},
-{"pid":27443,"tid":27477,"ts":326459106993,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":427987},
-{"pid":27443,"tid":27477,"ts":326459107023,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2778,"tdur":1557,"tts":428017},
-{"pid":27443,"tid":27477,"ts":326459107023,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":91},"dur":1313,"tdur":916,"tts":428017},
-{"pid":27443,"tid":27477,"ts":326459107054,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":91},"dur":275,"tdur":274,"tts":428048},
-{"pid":27443,"tid":27477,"ts":326459107329,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":91},"dur":30,"tdur":31,"tts":428322},
-{"pid":27443,"tid":27477,"ts":326459107359,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":91},"tts":428353},
-{"pid":27443,"tid":27477,"ts":326459107512,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":428506},
-{"pid":27443,"tid":27477,"ts":326459107512,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":428506},
-{"pid":27443,"tid":27477,"ts":326459107542,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":428536},
-{"pid":27443,"tid":27477,"ts":326459107542,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":428536},
-{"pid":27443,"tid":27477,"ts":326459107573,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":428567,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459107603,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":428597},
-{"pid":27443,"tid":27477,"ts":326459108305,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":428933},
-{"pid":27443,"tid":27477,"ts":326459108336,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1160,"tdur":306,"tts":428963},
-{"pid":27443,"tid":27477,"ts":326459108336,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":428963},
-{"pid":27443,"tid":27477,"ts":326459108366,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1069,"tdur":214,"tts":428994},
-{"pid":27443,"tid":27477,"ts":326459108519,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12581},"dur":30,"tdur":31,"tts":429085},
-{"pid":27443,"tid":27477,"ts":326459108549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":429146,"id":"0xaf88aa5df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459109465,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":429269,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459109526,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":429299,"id":"0x300000043"},
-{"pid":27443,"tid":27477,"ts":326459109526,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":429299},
-{"pid":27443,"tid":27477,"ts":326459109679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":429452,"id":"0xaf88aa5ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459109740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":429513,"id":"0xaf88a842f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459109770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":429543,"id":"0xaf88a934f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459109831,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429604,"id":"0xaf88a923f182217a"},
-{"pid":27443,"tid":27477,"ts":326459109831,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":429604},
-{"pid":27443,"tid":27477,"ts":326459109862,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459100585.0,"frame_time_us":326459101377.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":429635},
-{"pid":27443,"tid":27477,"ts":326459109862,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459100585.0,"frame_time_us":326459101377.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":429635},
-{"pid":27443,"tid":27477,"ts":326459109923,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459118043},"dur":30,"tdur":30,"tts":429696},
-{"pid":27443,"tid":27477,"ts":326459109953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":429726,"id":"0xaf88a93cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459115294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429787,"id":"0xaf88a93df182217a"},
-{"pid":27443,"tid":27477,"ts":326459115325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":429818},
-{"pid":27443,"tid":27477,"ts":326459115356,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":429848},
-{"pid":27443,"tid":27477,"ts":326459115356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":429848,"id":"0xaf88a843f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459118163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459118},"tts":429971,"id":"0xaf88a93cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459118194,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":427,"tdur":396,"tts":429971},
-{"pid":27443,"tid":27477,"ts":326459118194,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":427,"tdur":396,"tts":429971},
-{"pid":27443,"tid":27477,"ts":326459118224,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":367,"tdur":336,"tts":430001},
-{"pid":27443,"tid":27477,"ts":326459118224,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":367,"tdur":336,"tts":430001},
-{"pid":27443,"tid":27477,"ts":326459118224,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":91,"tts":430032},
-{"pid":27443,"tid":27477,"ts":326459118347,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":430123},
-{"pid":27443,"tid":27477,"ts":326459118377,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":430154},
-{"pid":27443,"tid":27477,"ts":326459118377,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":122,"tts":430184},
-{"pid":27443,"tid":27477,"ts":326459118408,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":122,"tts":430184},
-{"pid":27443,"tid":27477,"ts":326459118408,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":430184,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459118438,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":430215},
-{"pid":27443,"tid":27477,"ts":326459118438,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":92,"tdur":30,"tts":430215},
-{"pid":27443,"tid":27477,"ts":326459118530,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":430276,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459118560,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":177}},"tts":430306,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459118591,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3403776},"tts":430337,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459121734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430428,"id":"0xaf88a93ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459121734,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":430428},
-{"pid":27443,"tid":27477,"ts":326459121734,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":30,"tts":430459},
-{"pid":27443,"tid":27477,"ts":326459121765,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":430459,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459121765,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":430459},
-{"pid":27443,"tid":27477,"ts":326459121795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":430489,"id":"0xaf88a939f182217a"},
-{"pid":27443,"tid":27477,"ts":326459121826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430520,"id":"0xaf88a93ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459121826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":430520},
-{"pid":27443,"tid":27477,"ts":326459121826,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":430520},
-{"pid":27443,"tid":27477,"ts":326459121856,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":430550,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459121856,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":430550},
-{"pid":27443,"tid":27477,"ts":326459121887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430581,"id":"0xaf88a938f182217a"},
-{"pid":27443,"tid":27477,"ts":326459121887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":430581},
-{"pid":27443,"tid":27477,"ts":326459121887,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":430581},
-{"pid":27443,"tid":27477,"ts":326459121917,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":430611,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459121917,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":430611},
-{"pid":27443,"tid":27477,"ts":326459121917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":430611,"id":"0xaf88a93af182217a"},
-{"pid":27443,"tid":27477,"ts":326459121948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430642,"id":"0xaf88a939f182217a"},{"pid":27443,"tid":27477,"ts":326459121948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":430642},
-{"pid":27443,"tid":27477,"ts":326459121978,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":123,"tdur":123,"tts":430672},
-{"pid":27443,"tid":27477,"ts":326459121978,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":430672},
-{"pid":27443,"tid":27477,"ts":326459121978,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":430672},
-{"pid":27443,"tid":27477,"ts":326459122009,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":430703},
-{"pid":27443,"tid":27477,"ts":326459122009,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":430703},
-{"pid":27443,"tid":27477,"ts":326459122070,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":430764},
-{"pid":27443,"tid":27477,"ts":326459122070,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":430764},
-{"pid":27443,"tid":27477,"ts":326459122101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430795,"id":"0xaf88a93af182217a"},
-{"pid":27443,"tid":27477,"ts":326459122131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":430825},
-{"pid":27443,"tid":27477,"ts":326459122131,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":430825},
-{"pid":27443,"tid":27477,"ts":326459122131,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":430825},
-{"pid":27443,"tid":27477,"ts":326459122131,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":430825},
-{"pid":27443,"tid":27477,"ts":326459122162,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":430856},
-{"pid":27443,"tid":27477,"ts":326459122162,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":430856},
-{"pid":27443,"tid":27477,"ts":326459122223,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":430917},
-{"pid":27443,"tid":27477,"ts":326459122223,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":430917},
-{"pid":27443,"tid":27477,"ts":326459124878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":431039,"id":"0xaf88a93bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459124878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":431039},
-{"pid":27443,"tid":27477,"ts":326459124908,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459117267.0,"frame_time_us":326459118059.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":431069},
-{"pid":27443,"tid":27477,"ts":326459124939,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459117267.0,"frame_time_us":326459118059.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":431100},
-{"pid":27443,"tid":27477,"ts":326459124969,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459134725},"dur":31,"tdur":31,"tts":431130},
-{"pid":27443,"tid":27477,"ts":326459124969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":431161,"id":"0xaf88a934f182217a"},
-{"pid":27443,"tid":27477,"ts":326459126495,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":431313,"id":"0xaf88a935f182217a"},
-{"pid":27443,"tid":27477,"ts":326459126495,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1374,"tdur":1374,"tts":431313},
-{"pid":27443,"tid":27477,"ts":326459126526,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1343,"tdur":1343,"tts":431344},
-{"pid":27443,"tid":27477,"ts":326459126526,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":431344},
-{"pid":27443,"tid":27477,"ts":326459126526,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":431344},
-{"pid":27443,"tid":27477,"ts":326459126556,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1282,"tdur":1282,"tts":431374},
-{"pid":27443,"tid":27477,"ts":326459126556,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":431374},
-{"pid":27443,"tid":27477,"ts":326459126556,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":431374},
-{"pid":27443,"tid":27477,"ts":326459126587,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":431405,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459126587,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":431405},
-{"pid":27443,"tid":27477,"ts":326459126618,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":367,"tts":431435},
-{"pid":27443,"tid":27477,"ts":326459127045,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":793,"tdur":793,"tts":431863},
-{"pid":27443,"tid":27477,"ts":326459127045,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":92},"dur":244,"tdur":244,"tts":431863},
-{"pid":27443,"tid":27477,"ts":326459127289,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":92},"dur":30,"tdur":30,"tts":432107},
-{"pid":27443,"tid":27477,"ts":326459127350,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":92},"tts":432168},
-{"pid":27443,"tid":27477,"ts":326459127503,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":432321},
-{"pid":27443,"tid":27477,"ts":326459127503,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":432321},
-{"pid":27443,"tid":27477,"ts":326459127503,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":305,"tts":432351},
-{"pid":27443,"tid":27477,"ts":326459127533,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":432351},
-{"pid":27443,"tid":27477,"ts":326459127655,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":432473},
-{"pid":27443,"tid":27477,"ts":326459127655,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":432473},
-{"pid":27443,"tid":27477,"ts":326459127655,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":432473},
-{"pid":27443,"tid":27477,"ts":326459127686,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":432504},
-{"pid":27443,"tid":27477,"ts":326459127686,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":432504,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459127716,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":432534},
-{"pid":27443,"tid":27477,"ts":326459127716,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":432534},
-{"pid":27443,"tid":27477,"ts":326459127777,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":432595,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459127808,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":177}},"tts":432626,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459127808,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3403776},"tts":432626,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459128693,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432778,"id":"0xaf88a936f182217a"},
-{"pid":27443,"tid":27477,"ts":326459128693,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":92,"tts":432778},
-{"pid":27443,"tid":27477,"ts":326459128723,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":30,"tts":432809},
-{"pid":27443,"tid":27477,"ts":326459128723,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":432809,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459128784,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":432839},
-{"pid":27443,"tid":27477,"ts":326459128784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":432839,"id":"0xaf88a931f182217a"},
-{"pid":27443,"tid":27471,"ts":326459128571,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":348359},
-{"pid":27443,"tid":27471,"ts":326459128571,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":348359},
-{"pid":27443,"tid":27471,"ts":326459128571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348359,"id":"0xaf88a937f182217a"},
-{"pid":27443,"tid":27469,"ts":326459128601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288600,"id":"0xaf88a930f182217a"},
-{"pid":27443,"tid":27471,"ts":326459152224,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":336,"tdur":122,"tts":348420},
-{"pid":27443,"tid":27471,"ts":326459152285,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":275,"tdur":91,"tts":348451},
-{"pid":27443,"tid":27471,"ts":326459152285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":348451,"id":"0xaf88a9caf182217a"},
-{"pid":27443,"tid":27469,"ts":326459152346,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":122,"tts":288631},
-{"pid":27443,"tid":27469,"ts":326459152377,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":92,"tts":288661},
-{"pid":27443,"tid":27471,"ts":326459152590,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3327,"tdur":1282,"tts":348573},
-{"pid":27443,"tid":27471,"ts":326459152590,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":3297,"tdur":1282,"tts":348573},
-{"pid":27443,"tid":27471,"ts":326459152621,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":91,"tileId":{"id_ref":"0x7c257bc0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":348634},
-{"pid":27443,"tid":27471,"ts":326459152651,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":92,"tdur":91,"tts":348634},
-{"pid":27443,"tid":27471,"ts":326459152743,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":348725},
-{"pid":27443,"tid":27471,"ts":326459152773,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":91,"tileId":{"id_ref":"0x7c257bc0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":348756},
-{"pid":27443,"tid":27471,"ts":326459152835,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":348817,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326459153048,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288722,"id":"0xaf88a9cbf182217a"},
-{"pid":27443,"tid":27471,"ts":326459155887,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":349855},
-{"pid":27443,"tid":27471,"ts":326459155917,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":92,"tts":349885},
-{"pid":27443,"tid":27471,"ts":326459155948,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":349916},
-{"pid":27443,"tid":27471,"ts":326459155978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349946,"id":"0xaf88a9c0f182217a"},
-{"pid":27443,"tid":27469,"ts":326459161777,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":288844},
-{"pid":27443,"tid":27469,"ts":326459161808,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":288875},
-{"pid":27443,"tid":27469,"ts":326459161808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288875,"id":"0xaf88a9c2f182217a"},
-{"pid":27443,"tid":27469,"ts":326459161838,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":0,"tdur":0,"tts":288905},
-{"pid":27443,"tid":27469,"ts":326459161838,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":288905},
-{"pid":27443,"tid":27469,"ts":326459161838,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288905,"id":"0xaf88a9c3f182217a"},
-{"pid":27443,"tid":27469,"ts":326459161869,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":0,"tts":288936},
-{"pid":27443,"tid":27469,"ts":326459161869,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":288936},
-{"pid":27443,"tid":27469,"ts":326459161869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288936,"id":"0xaf88a9dcf182217a"},
-{"pid":27443,"tid":27469,"ts":326459179174,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":30,"tts":288997},
-{"pid":27443,"tid":27469,"ts":326459179204,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":0,"tts":289027},
-{"pid":27443,"tid":27469,"ts":326459179235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289027,"id":"0xaf88a9d6f182217a"},
-{"pid":27443,"tid":27469,"ts":326459179296,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":289058},
-{"pid":27443,"tid":27469,"ts":326459179296,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":289058},
-{"pid":27443,"tid":27469,"ts":326459179296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289058,"id":"0xaf88a9d7f182217a"},
-{"pid":27443,"tid":27469,"ts":326459179326,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":289088},
-{"pid":27443,"tid":27469,"ts":326459179326,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":289088},
-{"pid":27443,"tid":27469,"ts":326459179326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289088,"id":"0xaf88a9d0f182217a"},
-{"pid":27443,"tid":27469,"ts":326459204658,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":289150},
-{"pid":27443,"tid":27469,"ts":326459204689,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":289150},
-{"pid":27443,"tid":27469,"ts":326459204719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289180,"id":"0xaf88a9eaf182217a"},
-{"pid":27443,"tid":27469,"ts":326459204719,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":289180},
-{"pid":27443,"tid":27469,"ts":326459204750,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":289211},
-{"pid":27443,"tid":27469,"ts":326459204750,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289211,"id":"0xaf88a9ebf182217a"},
-{"pid":27443,"tid":27469,"ts":326459204750,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":289211},
-{"pid":27443,"tid":27469,"ts":326459204780,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":289241},
-{"pid":27443,"tid":27469,"ts":326459204780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289241,"id":"0xaf88a9e4f182217a"},
-{"pid":27443,"tid":27469,"ts":326459206489,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":289302},
-{"pid":27443,"tid":27469,"ts":326459206520,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":289333},
-{"pid":27443,"tid":27469,"ts":326459206520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289333,"id":"0xaf88a9e6f182217a"},
-{"pid":27443,"tid":27469,"ts":326459206550,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":289363},
-{"pid":27443,"tid":27469,"ts":326459206550,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":289363},
-{"pid":27443,"tid":27469,"ts":326459206550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289363,"id":"0xaf88a9e7f182217a"},
-{"pid":27443,"tid":27469,"ts":326459206581,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":289394},
-{"pid":27443,"tid":27469,"ts":326459206581,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":289394},
-{"pid":27443,"tid":27469,"ts":326459206581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289394,"id":"0xaf88a9e0f182217a"},
-{"pid":27443,"tid":27469,"ts":326459227640,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":289455},
-{"pid":27443,"tid":27469,"ts":326459227670,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":289485},
-{"pid":27443,"tid":27469,"ts":326459227670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289485,"id":"0xaf88a9fbf182217a"},
-{"pid":27443,"tid":27469,"ts":326459227701,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":289516},
-{"pid":27443,"tid":27469,"ts":326459227732,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":289546},
-{"pid":27443,"tid":27469,"ts":326459227732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289546,"id":"0xaf88a9f4f182217a"},
-{"pid":27443,"tid":27469,"ts":326459227732,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":289546},
-{"pid":27443,"tid":27477,"ts":326459128815,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432870,"id":"0xaf88a937f182217a"},
-{"pid":27443,"tid":27477,"ts":326459128815,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":432870},
-{"pid":27443,"tid":27477,"ts":326459128846,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":432900},
-{"pid":27443,"tid":27477,"ts":326459128846,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":432900,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459128846,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":432900},
-{"pid":27443,"tid":27477,"ts":326459128876,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432931,"id":"0xaf88a930f182217a"},
-{"pid":27443,"tid":27477,"ts":326459128876,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":432931},
-{"pid":27443,"tid":27477,"ts":326459128876,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":432962},
-{"pid":27443,"tid":27477,"ts":326459128907,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":432962,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459128907,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":432962},
-{"pid":27443,"tid":27477,"ts":326459128907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":432962,"id":"0xaf88a932f182217a"},
-{"pid":27443,"tid":27477,"ts":326459128937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432992,"id":"0xaf88a931f182217a"},
-{"pid":27443,"tid":27477,"ts":326459128937,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1190,"tdur":1129,"tts":433023},
-{"pid":27443,"tid":27477,"ts":326459128968,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1159,"tdur":1129,"tts":433023},
-{"pid":27443,"tid":27477,"ts":326459128968,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":433023},
-{"pid":27443,"tid":27477,"ts":326459128968,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":61,"tdur":30,"tts":433023},
-{"pid":27443,"tid":27477,"ts":326459129029,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":61,"tts":433084},
-{"pid":27443,"tid":27477,"ts":326459129059,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":433084},
-{"pid":27443,"tid":27477,"ts":326459129151,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":976,"tdur":977,"tts":433175},
-{"pid":27443,"tid":27477,"ts":326459129151,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":976,"tdur":977,"tts":433175},
-{"pid":27443,"tid":27477,"ts":326459129151,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":946,"tdur":946,"tts":433175},
-{"pid":27443,"tid":27477,"ts":326459129151,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":433175,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459129242,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":433267},
-{"pid":27443,"tid":27477,"ts":326459129273,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433297},
-{"pid":27443,"tid":27477,"ts":326459129303,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433328},
-{"pid":27443,"tid":27477,"ts":326459129303,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433328},
-{"pid":27443,"tid":27477,"ts":326459129334,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433358},
-{"pid":27443,"tid":27477,"ts":326459129334,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":433358},
-{"pid":27443,"tid":27477,"ts":326459129364,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":433389},
-{"pid":27443,"tid":27477,"ts":326459129395,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433419},
-{"pid":27443,"tid":27477,"ts":326459129395,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":433419},
-{"pid":27443,"tid":27477,"ts":326459129425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433450},
-{"pid":27443,"tid":27477,"ts":326459129425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":433480},
-{"pid":27443,"tid":27477,"ts":326459129456,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":433480},
-{"pid":27443,"tid":27477,"ts":326459129486,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":433511},
-{"pid":27443,"tid":27477,"ts":326459129517,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433541},
-{"pid":27443,"tid":27477,"ts":326459129517,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":433572},
-{"pid":27443,"tid":27477,"ts":326459129547,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433572},
-{"pid":27443,"tid":27477,"ts":326459129578,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433602},
-{"pid":27443,"tid":27477,"ts":326459129578,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":433602},
-{"pid":27443,"tid":27477,"ts":326459129609,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433633},
-{"pid":27443,"tid":27477,"ts":326459129609,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":433663},
-{"pid":27443,"tid":27477,"ts":326459129639,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":433663},
-{"pid":27443,"tid":27477,"ts":326459129670,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433694},
-{"pid":27443,"tid":27477,"ts":326459129670,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":433694},
-{"pid":27443,"tid":27477,"ts":326459129700,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433725},
-{"pid":27443,"tid":27477,"ts":326459129731,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433755},
-{"pid":27443,"tid":27477,"ts":326459129731,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433755},
-{"pid":27443,"tid":27477,"ts":326459129822,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433847},
-{"pid":27443,"tid":27477,"ts":326459129822,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":433847},
-{"pid":27443,"tid":27477,"ts":326459129853,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433877},
-{"pid":27443,"tid":27477,"ts":326459129883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433908},
-{"pid":27443,"tid":27477,"ts":326459129883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":433908},
-{"pid":27443,"tid":27477,"ts":326459129914,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433938},
-{"pid":27443,"tid":27477,"ts":326459129944,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":433969},
-{"pid":27443,"tid":27477,"ts":326459129975,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":433999},
-{"pid":27443,"tid":27477,"ts":326459130036,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":434060},
-{"pid":27443,"tid":27477,"ts":326459130066,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":434091},
-{"pid":27443,"tid":27477,"ts":326459130066,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":0,"tts":434091},
-{"pid":27443,"tid":27477,"ts":326459130097,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":434121},
-{"pid":27443,"tid":27477,"ts":326459130097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":434121,"id":"0xaf88a933f182217a"},
-{"pid":27443,"tid":27477,"ts":326459130127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":434152,"id":"0xaf88a932f182217a"},
-{"pid":27443,"tid":27477,"ts":326459130158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":434182},
-{"pid":27443,"tid":27477,"ts":326459130158,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":434182},
-{"pid":27443,"tid":27477,"ts":326459130158,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":434182},
-{"pid":27443,"tid":27477,"ts":326459130188,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":434213},
-{"pid":27443,"tid":27477,"ts":326459130188,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":434213},
-{"pid":27443,"tid":27477,"ts":326459130188,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":434213},
-{"pid":27443,"tid":27477,"ts":326459130249,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":434274},
-{"pid":27443,"tid":27477,"ts":326459130249,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":434274},
-{"pid":27443,"tid":27477,"ts":326459130280,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":434304,"id":"0xaf88a933f182217a"},
-{"pid":27443,"tid":27477,"ts":326459130280,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2167,"tdur":1679,"tts":434304},
-{"pid":27443,"tid":27477,"ts":326459130310,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2106,"tdur":1618,"tts":434335},
-{"pid":27443,"tid":27477,"ts":326459130310,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":434335},
-{"pid":27443,"tid":27477,"ts":326459130341,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2075,"tdur":1588,"tts":434365},
-{"pid":27443,"tid":27477,"ts":326459130341,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":92},"dur":794,"tdur":794,"tts":434365},
-{"pid":27443,"tid":27477,"ts":326459130372,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":92},"dur":213,"tdur":214,"tts":434396},
-{"pid":27443,"tid":27477,"ts":326459130585,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":92},"dur":31,"tdur":30,"tts":434610},
-{"pid":27443,"tid":27477,"ts":326459130616,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":92},"tts":434671},
-{"pid":27443,"tid":27477,"ts":326459130738,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":434793},
-{"pid":27443,"tid":27477,"ts":326459130768,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":434793},
-{"pid":27443,"tid":27477,"ts":326459130768,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":434793},
-{"pid":27443,"tid":27477,"ts":326459130768,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":434793},
-{"pid":27443,"tid":27477,"ts":326459130799,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":434823,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459130860,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":434884},
-{"pid":27443,"tid":27477,"ts":326459131135,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":435159},
-{"pid":27443,"tid":27477,"ts":326459131135,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":976,"tdur":488,"tts":435159},
-{"pid":27443,"tid":27477,"ts":326459131165,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":435190},
-{"pid":27443,"tid":27477,"ts":326459131165,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":916,"tdur":427,"tts":435190},
-{"pid":27443,"tid":27477,"ts":326459131470,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12581},"dur":31,"tdur":30,"tts":435495},
-{"pid":27443,"tid":27477,"ts":326459131531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":435556,"id":"0xaf88aa5ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459132111,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":435647,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459132142,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":435678,"id":"0x300000044"},
-{"pid":27443,"tid":27477,"ts":326459132142,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":435678},
-{"pid":27443,"tid":27477,"ts":326459132325,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":435861,"id":"0xaf88aa58f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459132386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":435922,"id":"0xaf88a85cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459133546,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436014,"id":"0xaf88a9ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326459133576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":436044},
-{"pid":27443,"tid":27477,"ts":326459133576,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":436044},
-{"pid":27443,"tid":27477,"ts":326459134644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436105,"id":"0xaf88a9cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326459134675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":436136},
-{"pid":27443,"tid":27477,"ts":326459134675,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":436136},
-{"pid":27443,"tid":27477,"ts":326459134705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":436166,"id":"0xaf88a85df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459134705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":436166,"id":"0xaf88a930f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459134736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459134},"tts":436197,"id":"0xaf88a934f182217a"},
-{"pid":27443,"tid":27477,"ts":326459134766,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":436227},
-{"pid":27443,"tid":27477,"ts":326459136292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436258,"id":"0xaf88a9cef182217a"},
-{"pid":27443,"tid":27477,"ts":326459136292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":4029,"tdur":152,"tts":436258},
-{"pid":27443,"tid":27477,"ts":326459136323,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":3968,"tdur":122,"tts":436288},
-{"pid":27443,"tid":27477,"ts":326459136323,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":436288,"id":"0x300000046"},
-{"pid":27443,"tid":27477,"ts":326459136354,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":436319},
-{"pid":27443,"tid":27477,"ts":326459140230,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":436349,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459140260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":436380,"id":"0xaf88a85ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459140291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":436410,"id":"0xaf88a932f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459143892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436471,"id":"0xaf88a9cff182217a"},
-{"pid":27443,"tid":27477,"ts":326459143892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":436471},
-{"pid":27443,"tid":27477,"ts":326459143923,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459133948.0,"frame_time_us":326459134740.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":244,"tdur":244,"tts":436502},
-{"pid":27443,"tid":27477,"ts":326459143953,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459133948.0,"frame_time_us":326459134740.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":214,"tdur":214,"tts":436532},
-{"pid":27443,"tid":27477,"ts":326459143984,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":93},"tts":436593},
-{"pid":27443,"tid":27477,"ts":326459144075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":436654,"id":"0xaf88a85ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459144075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":436654,"id":"0xaf88a9ccf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459144106,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":436685},
-{"pid":27443,"tid":27477,"ts":326459144136,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459151406},"dur":31,"tdur":30,"tts":436716},
-{"pid":27443,"tid":27477,"ts":326459144136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":436716,"id":"0xaf88a9c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459147707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436807,"id":"0xaf88a9c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459147707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":436807},
-{"pid":27443,"tid":27477,"ts":326459147707,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":122,"tts":436838},
-{"pid":27443,"tid":27477,"ts":326459147738,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":436838,"id":"0x300000048"},
-{"pid":27443,"tid":27459,"ts":326459132844,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6465313},
-{"pid":27443,"tid":27459,"ts":326459132905,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6465344},
-{"pid":27443,"tid":27459,"ts":326459132935,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6465374},
-{"pid":27443,"tid":27459,"ts":326459132966,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6465405},
-{"pid":27443,"tid":27459,"ts":326459132996,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":611,"tts":6465435},
-{"pid":27443,"tid":27459,"ts":326459133149,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":6465588},
-{"pid":27443,"tid":27459,"ts":326459133179,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6465618},
-{"pid":27443,"tid":27459,"ts":326459133454,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":49,"frame":"0x78c60000"}},"tts":6465893,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459133485,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6465924},
-{"pid":27443,"tid":27459,"ts":326459133485,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6465924,"id":"0xaf88a9ccf182217a"},
-{"pid":27443,"tid":27459,"ts":326459133546,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6465985},
-{"pid":27443,"tid":27459,"ts":326459133637,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":366,"tdur":92,"tts":6466076},
-{"pid":27443,"tid":27459,"ts":326459133668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6466107,"id":"0xaf88aa59f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459134064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6466229,"id":"0xaf88a934f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6466259},
-{"pid":27443,"tid":27459,"ts":326459134095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6466259,"id":"0xaf88a842f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459134095,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":6466259},
-{"pid":27443,"tid":27459,"ts":326459134126,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6466290},
-{"pid":27443,"tid":27459,"ts":326459134156,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6466320,"id":"0xaf88a935f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134156,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6466320},
-{"pid":27443,"tid":27459,"ts":326459134187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6466351,"id":"0xaf88a936f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6466351,"id":"0xaf88a843f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459134217,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":0,"tts":6466381},
-{"pid":27443,"tid":27459,"ts":326459134217,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6466381},
-{"pid":27443,"tid":27459,"ts":326459134278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6466442,"id":"0xaf88a936f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6466442},
-{"pid":27443,"tid":27459,"ts":326459134278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6466442,"id":"0xaf88a937f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6466473,"id":"0xaf88a85cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459134309,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6466473},
-{"pid":27443,"tid":27459,"ts":326459134309,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6466473},
-{"pid":27443,"tid":27459,"ts":326459134370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6466534,"id":"0xaf88a937f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134370,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":0,"tts":6466534},
-{"pid":27443,"tid":27459,"ts":326459134736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6466534},
-{"pid":27443,"tid":27459,"ts":326459134766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6466564,"id":"0xaf88a931f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6466564,"id":"0xaf88a85df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459134766,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":0,"tts":6466595},
-{"pid":27443,"tid":27459,"ts":326459134797,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6466595},
-{"pid":27443,"tid":27459,"ts":326459134828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6466625,"id":"0xaf88a930f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459134858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6466656},
-{"pid":27443,"tid":27459,"ts":326459142305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6466748,"id":"0xaf88a931f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459142336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":6466748},
-{"pid":27443,"tid":27459,"ts":326459142366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6466778,"id":"0xaf88a933f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459142366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6466809,"id":"0xaf88a85ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459142397,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1098,"tdur":1098,"tts":6466809},
-{"pid":27443,"tid":27459,"ts":326459142488,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":6466900},
-{"pid":27443,"tid":27459,"ts":326459142488,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6466900,"id":"0x300000046"},
-{"pid":27443,"tid":27459,"ts":326459142519,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":854,"tdur":824,"tts":6466961},
-{"pid":27443,"tid":27459,"ts":326459142580,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":793,"tts":6466992},
-{"pid":27443,"tid":27459,"ts":326459142641,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6467053},
-{"pid":27443,"tid":27459,"ts":326459142671,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6467083},
-{"pid":27443,"tid":27459,"ts":326459142702,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6467114},
-{"pid":27443,"tid":27459,"ts":326459142732,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6467144},
-{"pid":27443,"tid":27459,"ts":326459142763,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":6467205},
-{"pid":27443,"tid":27459,"ts":326459142946,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6467358},
-{"pid":27443,"tid":27459,"ts":326459142946,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6467388},
-{"pid":27443,"tid":27459,"ts":326459143282,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":50,"frame":"0x78c60000"}},"tts":6467694,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459143312,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6467724},
-{"pid":27443,"tid":27459,"ts":326459143404,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6467816},
-{"pid":27443,"tid":27459,"ts":326459143434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6467846,"id":"0xaf88aa5af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459143526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6467938,"id":"0xaf88a932f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459143556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6467968},
-{"pid":27443,"tid":27459,"ts":326459143587,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6467999,"id":"0xaf88a933f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459143617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6468029},
-{"pid":27443,"tid":27459,"ts":326459144136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6468090,"id":"0xaf88a9ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459144136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16970,"tdur":12148,"tts":6468090},
-{"pid":27443,"tid":27459,"ts":326459144167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6468121,"id":"0xaf88a9cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459144197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6468152,"id":"0xaf88a85ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459144197,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16909,"tdur":12086,"tts":6468152},
-{"pid":27443,"tid":27459,"ts":326459144197,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":93},"tts":6468152},
-{"pid":27443,"tid":27459,"ts":326459144228,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6468182},
-{"pid":27443,"tid":27459,"ts":326459144258,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12727,"tdur":8515,"tts":6468213},
-{"pid":27443,"tid":27459,"ts":326459144289,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6468243},
-{"pid":27443,"tid":27459,"ts":326459144319,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":49,"frame":"0x78c60000"}},"dur":12483,"tdur":8271,"tts":6468274},
-{"pid":27443,"tid":27459,"ts":326459144380,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":12422,"tdur":8179,"tts":6468335},
-{"pid":27443,"tid":27459,"ts":326459144411,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6468365},
-{"pid":27443,"tid":27459,"ts":326459144594,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6468548},
-{"pid":27443,"tid":27459,"ts":326459144625,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":0,"tts":6468609},
-{"pid":27443,"tid":27459,"ts":326459147890,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6471661},
-{"pid":27443,"tid":27459,"ts":326459149996,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6473218},
-{"pid":27443,"tid":27459,"ts":326459149996,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":6473218},
-{"pid":27443,"tid":27459,"ts":326459156772,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6476514},
-{"pid":27443,"tid":27459,"ts":326459156833,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":50,"frame":"0x78c60000"}},"dur":152,"tdur":153,"tts":6476575},
-{"pid":27443,"tid":27459,"ts":326459156894,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":6476636},
-{"pid":27443,"tid":27459,"ts":326459156924,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6476667},
-{"pid":27443,"tid":27459,"ts":326459156955,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6476697},
-{"pid":27443,"tid":27459,"ts":326459156985,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2869,"tdur":2838,"tts":6476728},
-{"pid":27443,"tid":27459,"ts":326459157016,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6476758},
-{"pid":27443,"tid":27459,"ts":326459157046,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6476789},
-{"pid":27443,"tid":27459,"ts":326459157046,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6476789},
-{"pid":27443,"tid":27459,"ts":326459157504,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6477247},
-{"pid":27443,"tid":27459,"ts":326459157535,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6477277},
-{"pid":27443,"tid":27459,"ts":326459157565,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2289,"tdur":2258,"tts":6477308},
-{"pid":27443,"tid":27459,"ts":326459157565,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2106,"tdur":2045,"tts":6477338},
-{"pid":27443,"tid":27459,"ts":326459157596,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":366,"tdur":366,"tts":6477338},
-{"pid":27443,"tid":27459,"ts":326459157962,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":245,"tts":6477704},
-{"pid":27443,"tid":27459,"ts":326459158206,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":6477949},
-{"pid":27443,"tid":27459,"ts":326459158328,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":6478071},
-{"pid":27443,"tid":27459,"ts":326459158359,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1312,"tdur":1282,"tts":6478101},
-{"pid":27443,"tid":27459,"ts":326459159702,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6479414},
-{"pid":27443,"tid":27459,"ts":326459159732,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":6479444},
-{"pid":27443,"tid":27459,"ts":326459159854,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":93},"dur":489,"tdur":488,"tts":6479566},
-{"pid":27443,"tid":27459,"ts":326459159885,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":457,"tts":6479597},
-{"pid":27443,"tid":27459,"ts":326459160190,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":30,"tdur":0,"tts":6479902},
-{"pid":27443,"tid":27459,"ts":326459160220,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":0,"tdur":0,"tts":6479932},
-{"pid":27443,"tid":27459,"ts":326459160220,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":31,"tdur":31,"tts":6479932},
-{"pid":27443,"tid":27459,"ts":326459160251,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":0,"tdur":0,"tts":6479963},
-{"pid":27443,"tid":27459,"ts":326459160251,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":30,"tdur":30,"tts":6479963},
-{"pid":27443,"tid":27459,"ts":326459160281,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":0,"tdur":0,"tts":6479993},
-{"pid":27443,"tid":27459,"ts":326459160312,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":0,"tdur":0,"tts":6480024},
-{"pid":27443,"tid":27459,"ts":326459160312,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":31,"tdur":0,"tts":6480024},
-{"pid":27443,"tid":27459,"ts":326459160343,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":93},"dur":0,"tdur":0,"tts":6480054},
-{"pid":27443,"tid":27459,"ts":326459160373,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6480085,"id":"0x300000045"},
-{"pid":27443,"tid":27459,"ts":326459160373,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6480085,"id":"0x300000046"},
-{"pid":27443,"tid":27459,"ts":326459160373,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":672,"tdur":92,"tts":6480085},
-{"pid":27443,"tid":27459,"ts":326459160404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6480115,"id":"0xaf88a9c1f182217a"},
-{"pid":27443,"tid":27459,"ts":326459161075,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6480207},
-{"pid":27443,"tid":27459,"ts":326459161136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6480268,"id":"0xaf88a9cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459161167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1098,"tdur":1098,"tts":6480299},
-{"pid":27443,"tid":27459,"ts":326459161167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6480299,"id":"0xaf88a9cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459161197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6480329,"id":"0xaf88a858f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459161197,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1038,"tdur":1038,"tts":6480329},
-{"pid":27443,"tid":27459,"ts":326459161258,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":977,"tdur":977,"tts":6480390},
-{"pid":27443,"tid":27459,"ts":326459161258,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6480421,"id":"0x300000048"},
-{"pid":27443,"tid":27459,"ts":326459161289,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":854,"tdur":824,"tts":6480421},
-{"pid":27443,"tid":27459,"ts":326459161319,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":794,"tdur":794,"tts":6480451},
-{"pid":27443,"tid":27459,"ts":326459161380,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6480512},
-{"pid":27443,"tid":27459,"ts":326459161411,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6480543},
-{"pid":27443,"tid":27459,"ts":326459161441,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6480573},
-{"pid":27443,"tid":27477,"ts":326459147768,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":436868},
-{"pid":27443,"tid":27477,"ts":326459147799,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":436899,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459147799,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":436929,"id":"0xaf88a858f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459147829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":436929,"id":"0xaf88a9cef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459151522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459151},"tts":437021,"id":"0xaf88a9c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459151553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":641,"tdur":641,"tts":437051},
-{"pid":27443,"tid":27477,"ts":326459151553,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":641,"tdur":641,"tts":437051},
-{"pid":27443,"tid":27477,"ts":326459151583,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":580,"tdur":580,"tts":437082},
-{"pid":27443,"tid":27477,"ts":326459151583,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":580,"tdur":580,"tts":437082},
-{"pid":27443,"tid":27477,"ts":326459151614,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":437112},
-{"pid":27443,"tid":27477,"ts":326459151736,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":437234},
-{"pid":27443,"tid":27477,"ts":326459151797,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":437295},
-{"pid":27443,"tid":27477,"ts":326459151797,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":1},"dur":305,"tdur":306,"tts":437295},
-{"pid":27443,"tid":27477,"ts":326459151858,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":244,"tdur":214,"tts":437356},
-{"pid":27443,"tid":27477,"ts":326459151858,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":437387,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459151919,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":437417},
-{"pid":27443,"tid":27477,"ts":326459151949,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":4,"num_edges":1},"dur":92,"tdur":30,"tts":437479},
-{"pid":27443,"tid":27477,"ts":326459152072,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10285056,"bytes_used_for_staging_resources":10616832,"pending_copy_count":31,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":437570,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459152133,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":437631,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459152133,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":437631,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459153140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":437845,"id":"0xaf88a9caf182217a"},
-{"pid":27443,"tid":27477,"ts":326459153170,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":437875},
-{"pid":27443,"tid":27477,"ts":326459153170,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":122,"tdur":122,"tts":437875},
-{"pid":27443,"tid":27477,"ts":326459153201,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10285056,"bytes_used_for_staging_resources":10616832,"pending_copy_count":31,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":437936,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459153231,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":437936},
-{"pid":27443,"tid":27477,"ts":326459153262,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":437967,"id":"0xaf88a9c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459153323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":438028,"id":"0xaf88a9cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459153353,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":550,"tdur":123,"tts":438058},
-{"pid":27443,"tid":27477,"ts":326459153353,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":458,"tdur":0,"tts":438058},
-{"pid":27443,"tid":27477,"ts":326459153811,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":92,"tts":438089},
-{"pid":27443,"tid":27477,"ts":326459153842,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10285056,"bytes_used_for_staging_resources":10616832,"pending_copy_count":31,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":438119,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459153872,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":438150},
-{"pid":27443,"tid":27477,"ts":326459153872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":438150,"id":"0xaf88a9c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459153903,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":438211,"id":"0xaf88a9c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459153933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":214,"tts":438211},
-{"pid":27443,"tid":27477,"ts":326459153933,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":214,"tdur":214,"tts":438211},
-{"pid":27443,"tid":27477,"ts":326459153964,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":438242},
-{"pid":27443,"tid":27477,"ts":326459153964,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":438242},
-{"pid":27443,"tid":27477,"ts":326459153994,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":438272},
-{"pid":27443,"tid":27477,"ts":326459153994,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":438272},
-{"pid":27443,"tid":27477,"ts":326459154086,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":61,"tdur":31,"tts":438394},
-{"pid":27443,"tid":27477,"ts":326459154116,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":438394},
-{"pid":27443,"tid":27477,"ts":326459154177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":438455,"id":"0xaf88a9c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459154177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":438455},
-{"pid":27443,"tid":27477,"ts":326459154238,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459150630.0,"frame_time_us":326459151422.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":153,"tts":438516},
-{"pid":27443,"tid":27477,"ts":326459154269,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459150630.0,"frame_time_us":326459151422.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":438547},
-{"pid":27443,"tid":27477,"ts":326459154330,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459168088},"dur":61,"tdur":61,"tts":438608},
-{"pid":27443,"tid":27477,"ts":326459154361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":438638,"id":"0xaf88a9c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459154422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":438699,"id":"0xaf88a9c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459154422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":245,"tts":438699},
-{"pid":27443,"tid":27477,"ts":326459154452,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":214,"tdur":214,"tts":438730},
-{"pid":27443,"tid":27477,"ts":326459154452,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":31,"tts":438760},
-{"pid":27443,"tid":27477,"ts":326459154483,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":438760},
-{"pid":27443,"tid":27477,"ts":326459154513,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":91,"tts":438791},
-{"pid":27443,"tid":27477,"ts":326459154544,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":438821},
-{"pid":27443,"tid":27477,"ts":326459154605,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":62,"tts":438882},
-{"pid":27443,"tid":27477,"ts":326459154635,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":438913},
-{"pid":27443,"tid":27477,"ts":326459156039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":439035,"id":"0xaf88a9c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459156039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":439035},
-{"pid":27443,"tid":27477,"ts":326459156070,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":439066},
-{"pid":27443,"tid":27477,"ts":326459156070,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":439066,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459156070,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":439066},
-{"pid":27443,"tid":27477,"ts":326459160465,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":439188,"id":"0xaf88a9c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459160465,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1373,"tts":439188},
-{"pid":27443,"tid":27466,"ts":326459153659,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":264275,"id":"0xba44bb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459153720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":264336,"id":"0xaf88a9c5f182217a"},
-{"pid":27443,"tid":27466,"ts":326459162235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":264428,"id":"0xaf88aa5bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459162265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":264459},
-{"pid":27443,"tid":27466,"ts":326459162265,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":264459,"id":"0xccc42d02"},
-{"pid":27443,"tid":27466,"ts":326459163028,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":264611},
-{"pid":27443,"tid":27466,"ts":326459163028,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":264611},
-{"pid":27443,"tid":27466,"ts":326459163059,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":264642,"id":"0xba44bc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459163089,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":264672},
-{"pid":27443,"tid":27466,"ts":326459163089,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":264672,"id":"0xaf88a9d8f182217a"},
-{"pid":27443,"tid":27466,"ts":326459165104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":264794,"id":"0xaf88aa54f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459165134,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":264825},
-{"pid":27443,"tid":27466,"ts":326459165134,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":264825,"id":"0xccc42f02"},
-{"pid":27443,"tid":27466,"ts":326459165195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":264886,"id":"0xaf88aa55f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459165195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":264886},
-{"pid":27443,"tid":27466,"ts":326459165195,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":264886,"id":"0xccc43006"},
-{"pid":27443,"tid":27466,"ts":326459165409,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":264947},
-{"pid":27443,"tid":27466,"ts":326459165439,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":264977},
-{"pid":27443,"tid":27466,"ts":326459165439,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265008,"id":"0xc4c14a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459166538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265099,"id":"0xaf88aa56f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459166569,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":265099},
-{"pid":27443,"tid":27466,"ts":326459166569,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265099,"id":"0xccc43102"},
-{"pid":27443,"tid":27466,"ts":326459168522,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":265191},
-{"pid":27443,"tid":27466,"ts":326459168553,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":265222},
-{"pid":27443,"tid":27466,"ts":326459168553,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265222,"id":"0xba44bd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459168614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265283,"id":"0xaf88a9daf182217a"},
-{"pid":27443,"tid":27466,"ts":326459177312,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":265374},
-{"pid":27443,"tid":27466,"ts":326459177342,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":265405},
-{"pid":27443,"tid":27466,"ts":326459177342,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265405,"id":"0xba44bf02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459177403,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265466,"id":"0xaf88a9d4f182217a"},
-{"pid":27443,"tid":27466,"ts":326459178472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265527,"id":"0xaf88aa57f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459178502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":265557},
-{"pid":27443,"tid":27466,"ts":326459178502,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265557,"id":"0xccc43202"},
-{"pid":27443,"tid":27466,"ts":326459182226,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":265649},
-{"pid":27443,"tid":27466,"ts":326459182256,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":265679},
-{"pid":27443,"tid":27466,"ts":326459182256,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265679,"id":"0xba44c002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459182287,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":265710},
-{"pid":27443,"tid":27466,"ts":326459182317,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265740,"id":"0xaf88a9edf182217a"},
-{"pid":27443,"tid":27466,"ts":326459183202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265832,"id":"0xaf88aa50f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459183202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":265832},
-{"pid":27443,"tid":27466,"ts":326459183233,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265862,"id":"0xccc43306"},
-{"pid":27443,"tid":27466,"ts":326459183416,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":265954},
-{"pid":27443,"tid":27466,"ts":326459183446,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":265985},
-{"pid":27443,"tid":27466,"ts":326459183446,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":265985,"id":"0xc4c14d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459184789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":266076,"id":"0xaf88aa51f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459184789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":266107},
-{"pid":27443,"tid":27466,"ts":326459184820,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":266107,"id":"0xccc43402"},
-{"pid":27443,"tid":27466,"ts":326459196021,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":266198},
-{"pid":27443,"tid":27466,"ts":326459196082,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":266229},
-{"pid":27443,"tid":27466,"ts":326459196082,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":266229,"id":"0xba44c102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459196143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266290,"id":"0xaf88a9eef182217a"},
-{"pid":27443,"tid":27466,"ts":326459197913,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":266412},
-{"pid":27443,"tid":27466,"ts":326459197944,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":266442},
-{"pid":27443,"tid":27466,"ts":326459197944,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":266442,"id":"0xba44c202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459197974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266473,"id":"0xaf88a9e8f182217a"},
-{"pid":27443,"tid":27466,"ts":326459205452,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":266595},
-{"pid":27443,"tid":27466,"ts":326459205482,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":266625},
-{"pid":27443,"tid":27466,"ts":326459205513,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":266625,"id":"0xba44c402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459205543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266656,"id":"0xaf88a9e5f182217a"},
-{"pid":27443,"tid":27466,"ts":326459206978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":266778,"id":"0xaf88aa52f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459207008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":266778},
-{"pid":27443,"tid":27466,"ts":326459207008,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":266778,"id":"0xccc43602"},
-{"pid":27443,"tid":27466,"ts":326459207680,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":266870},
-{"pid":27443,"tid":27466,"ts":326459207710,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":266900},
-{"pid":27443,"tid":27477,"ts":326459160465,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":1373,"tts":439188},
-{"pid":27443,"tid":27477,"ts":326459160495,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":439218},
-{"pid":27443,"tid":27477,"ts":326459160495,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":439218},
-{"pid":27443,"tid":27477,"ts":326459160526,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1312,"tdur":1312,"tts":439249},
-{"pid":27443,"tid":27477,"ts":326459160526,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":439249},
-{"pid":27443,"tid":27477,"ts":326459160526,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":439249},
-{"pid":27443,"tid":27477,"ts":326459160556,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":439279,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459160556,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":439279},
-{"pid":27443,"tid":27477,"ts":326459160587,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":366,"tts":439310},
-{"pid":27443,"tid":27477,"ts":326459161014,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":794,"tts":439737},
-{"pid":27443,"tid":27477,"ts":326459161045,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":93},"dur":244,"tdur":244,"tts":439768},
-{"pid":27443,"tid":27477,"ts":326459161289,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":93},"dur":30,"tdur":30,"tts":440012},
-{"pid":27443,"tid":27477,"ts":326459161319,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":93},"tts":440073},
-{"pid":27443,"tid":27477,"ts":326459161472,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":440195},
-{"pid":27443,"tid":27477,"ts":326459161502,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":440225},
-{"pid":27443,"tid":27477,"ts":326459161502,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":306,"tdur":306,"tts":440225},
-{"pid":27443,"tid":27477,"ts":326459161502,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":440225},
-{"pid":27443,"tid":27477,"ts":326459161624,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":440347},
-{"pid":27443,"tid":27477,"ts":326459161655,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":440378},
-{"pid":27443,"tid":27477,"ts":326459161655,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":1},"dur":122,"tdur":122,"tts":440378},
-{"pid":27443,"tid":27477,"ts":326459161685,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":440408},
-{"pid":27443,"tid":27477,"ts":326459161685,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":440408,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459161716,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":440439},
-{"pid":27443,"tid":27477,"ts":326459161716,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":4,"num_edges":1},"dur":30,"tdur":31,"tts":440439},
-{"pid":27443,"tid":27477,"ts":326459161777,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10285056,"bytes_used_for_staging_resources":10616832,"pending_copy_count":31,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":440500,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459161808,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":440531,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459161808,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":440531,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459161869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":440592,"id":"0xaf88a9c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459161869,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":440592},
-{"pid":27443,"tid":27477,"ts":326459161869,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":440592},
-{"pid":27443,"tid":27477,"ts":326459161899,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10285056,"bytes_used_for_staging_resources":10616832,"pending_copy_count":31,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":440622,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459161899,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":440622},
-{"pid":27443,"tid":27477,"ts":326459161899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":440622,"id":"0xaf88a9ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326459161930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":440653,"id":"0xaf88a9c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459161930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":440653},
-{"pid":27443,"tid":27477,"ts":326459161960,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":440683},
-{"pid":27443,"tid":27477,"ts":326459161960,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10285056,"bytes_used_for_staging_resources":10616832,"pending_copy_count":31,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":440683,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459161960,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":440683},
-{"pid":27443,"tid":27477,"ts":326459161991,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":440714,"id":"0xaf88a9def182217a"},
-{"pid":27443,"tid":27477,"ts":326459162052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":440775,"id":"0xaf88a9dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326459162052,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":440775},
-{"pid":27443,"tid":27477,"ts":326459162082,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":440805},
-{"pid":27443,"tid":27477,"ts":326459162082,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":440805,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459162082,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":440805},
-{"pid":27443,"tid":27477,"ts":326459162113,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":440836,"id":"0xaf88a9ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326459162113,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1221,"tdur":1221,"tts":440836},
-{"pid":27443,"tid":27477,"ts":326459162113,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1221,"tdur":1221,"tts":440836},
-{"pid":27443,"tid":27477,"ts":326459162113,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":122,"tdur":92,"tts":440866},
-{"pid":27443,"tid":27477,"ts":326459162143,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":440866},
-{"pid":27443,"tid":27477,"ts":326459162143,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":440866},
-{"pid":27443,"tid":27477,"ts":326459162174,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":440897},
-{"pid":27443,"tid":27477,"ts":326459162204,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":440927},
-{"pid":27443,"tid":27477,"ts":326459162235,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":440958},
-{"pid":27443,"tid":27477,"ts":326459162265,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":440988},
-{"pid":27443,"tid":27477,"ts":326459162357,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":441080},
-{"pid":27443,"tid":27477,"ts":326459162357,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":946,"tdur":946,"tts":441080},
-{"pid":27443,"tid":27477,"ts":326459162387,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":885,"tdur":886,"tts":441110},
-{"pid":27443,"tid":27477,"ts":326459162387,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":441110,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459162448,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441171},
-{"pid":27443,"tid":27477,"ts":326459162479,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441202},
-{"pid":27443,"tid":27477,"ts":326459162509,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441233},
-{"pid":27443,"tid":27477,"ts":326459162509,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":441263},
-{"pid":27443,"tid":27477,"ts":326459162540,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441263},
-{"pid":27443,"tid":27477,"ts":326459162571,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441294},
-{"pid":27443,"tid":27459,"ts":326459161472,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6480604},
-{"pid":27443,"tid":27459,"ts":326459161502,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":580,"tts":6480665},
-{"pid":27443,"tid":27459,"ts":326459161655,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":6480787},
-{"pid":27443,"tid":27459,"ts":326459161655,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6480787},
-{"pid":27443,"tid":27459,"ts":326459161960,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":51,"frame":"0x78c60000"}},"tts":6481092,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459161991,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6481123},
-{"pid":27443,"tid":27459,"ts":326459162021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6481153,"id":"0xaf88a9dff182217a"},{"pid":27443,"tid":27459,"ts":326459162052,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6481184},
-{"pid":27443,"tid":27459,"ts":326459162143,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6481275},
-{"pid":27443,"tid":27459,"ts":326459162174,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6481306,"id":"0xaf88aa5bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459162296,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6481428,"id":"0xaf88a9cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459162296,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6481428},
-{"pid":27443,"tid":27459,"ts":326459162601,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6481489,"id":"0xaf88a9cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459162632,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6481519},
-{"pid":27443,"tid":27459,"ts":326459163608,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6481580,"id":"0xaf88a9c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459163639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13429,"tdur":10072,"tts":6481611},
-{"pid":27443,"tid":27459,"ts":326459163639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6481611,"id":"0xaf88a9c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459163669,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6481642,"id":"0xaf88a859f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459163669,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13368,"tdur":10010,"tts":6481642},
-{"pid":27443,"tid":27459,"ts":326459163669,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":94},"tts":6481642},
-{"pid":27443,"tid":27459,"ts":326459163700,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6481672},
-{"pid":27443,"tid":27459,"ts":326459163730,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9370,"tdur":6622,"tts":6481703},
-{"pid":27443,"tid":27459,"ts":326459163761,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6481733},
-{"pid":27443,"tid":27459,"ts":326459163791,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":51,"frame":"0x78c60000"}},"dur":9309,"tdur":6561,"tts":6481764},
-{"pid":27443,"tid":27459,"ts":326459163852,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9218,"tdur":6440,"tts":6481855},
-{"pid":27443,"tid":27459,"ts":326459163883,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6481855},
-{"pid":27443,"tid":27459,"ts":326459164066,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6482038},
-{"pid":27443,"tid":27459,"ts":326459164097,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":6482069},
-{"pid":27443,"tid":27459,"ts":326459173039,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6488295},
-{"pid":27443,"tid":27459,"ts":326459173100,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2716,"tdur":2686,"tts":6488325},
-{"pid":27443,"tid":27459,"ts":326459173161,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6488387},
-{"pid":27443,"tid":27459,"ts":326459173192,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6488417},
-{"pid":27443,"tid":27459,"ts":326459173192,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6488417},
-{"pid":27443,"tid":27459,"ts":326459173680,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6488875},
-{"pid":27443,"tid":27459,"ts":326459173710,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6488905},
-{"pid":27443,"tid":27459,"ts":326459173741,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2045,"tdur":2045,"tts":6488936},
-{"pid":27443,"tid":27459,"ts":326459173741,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1892,"tdur":1892,"tts":6488936},
-{"pid":27443,"tid":27459,"ts":326459173772,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":6488966},
-{"pid":27443,"tid":27459,"ts":326459174107,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6489302},
-{"pid":27443,"tid":27459,"ts":326459174290,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":6489485},
-{"pid":27443,"tid":27459,"ts":326459174382,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":6489577},
-{"pid":27443,"tid":27459,"ts":326459174412,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1221,"tdur":1221,"tts":6489607},
-{"pid":27443,"tid":27459,"ts":326459175664,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6490859},
-{"pid":27443,"tid":27459,"ts":326459175694,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":92,"tts":6490889},
-{"pid":27443,"tid":27459,"ts":326459175816,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":94},"dur":458,"tdur":458,"tts":6491011},
-{"pid":27443,"tid":27459,"ts":326459175816,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":458,"tts":6491011},
-{"pid":27443,"tid":27459,"ts":326459176091,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":31,"tdur":0,"tts":6491286},
-{"pid":27443,"tid":27459,"ts":326459176122,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":0,"tdur":0,"tts":6491316},
-{"pid":27443,"tid":27459,"ts":326459176122,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":30,"tdur":31,"tts":6491316},
-{"pid":27443,"tid":27459,"ts":326459176152,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":31,"tdur":31,"tts":6491347},
-{"pid":27443,"tid":27459,"ts":326459176183,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":30,"tdur":30,"tts":6491378},
-{"pid":27443,"tid":27459,"ts":326459176213,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":0,"tdur":0,"tts":6491408},
-{"pid":27443,"tid":27459,"ts":326459176213,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":31,"tdur":31,"tts":6491408},
-{"pid":27443,"tid":27459,"ts":326459176244,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":0,"tdur":0,"tts":6491439},
-{"pid":27443,"tid":27459,"ts":326459176274,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":94},"dur":0,"tdur":0,"tts":6491469},
-{"pid":27443,"tid":27459,"ts":326459176305,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6491500,"id":"0x300000048"},
-{"pid":27443,"tid":27459,"ts":326459176305,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":671,"tdur":91,"tts":6491500},
-{"pid":27443,"tid":27459,"ts":326459176305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6491530,"id":"0xaf88a9dbf182217a"},
-{"pid":27443,"tid":27459,"ts":326459177007,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6491652},
-{"pid":27443,"tid":27459,"ts":326459177098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6491713,"id":"0xaf88a9c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459177098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1129,"tts":6491713},
-{"pid":27443,"tid":27459,"ts":326459177129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6491744,"id":"0xaf88a9cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459177129,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6491744,"id":"0xaf88a85af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459177159,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1038,"tts":6491774},
-{"pid":27443,"tid":27477,"ts":326459162601,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441324},
-{"pid":27443,"tid":27477,"ts":326459162601,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441324},
-{"pid":27443,"tid":27477,"ts":326459162632,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441355},
-{"pid":27443,"tid":27477,"ts":326459162632,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":441355},
-{"pid":27443,"tid":27477,"ts":326459162662,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441385},
-{"pid":27443,"tid":27477,"ts":326459162693,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441416},
-{"pid":27443,"tid":27477,"ts":326459162693,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":441416},
-{"pid":27443,"tid":27477,"ts":326459162723,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441446},
-{"pid":27443,"tid":27477,"ts":326459162754,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441477},
-{"pid":27443,"tid":27477,"ts":326459162754,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":441477},
-{"pid":27443,"tid":27477,"ts":326459162784,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441507},
-{"pid":27443,"tid":27477,"ts":326459162784,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441507},
-{"pid":27443,"tid":27477,"ts":326459162815,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":441538},
-{"pid":27443,"tid":27477,"ts":326459162845,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441568},
-{"pid":27443,"tid":27477,"ts":326459162845,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441568},
-{"pid":27443,"tid":27477,"ts":326459162876,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441599},
-{"pid":27443,"tid":27477,"ts":326459162906,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441629},
-{"pid":27443,"tid":27477,"ts":326459162906,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441629},
-{"pid":27443,"tid":27477,"ts":326459162937,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":441660},
-{"pid":27443,"tid":27477,"ts":326459162967,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441690},
-{"pid":27443,"tid":27477,"ts":326459163028,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441751},
-{"pid":27443,"tid":27477,"ts":326459163059,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441782},
-{"pid":27443,"tid":27477,"ts":326459163089,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441812},
-{"pid":27443,"tid":27477,"ts":326459163089,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":441812},
-{"pid":27443,"tid":27477,"ts":326459163120,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441843},
-{"pid":27443,"tid":27477,"ts":326459163150,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":441873},
-{"pid":27443,"tid":27477,"ts":326459163150,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":441873},
-{"pid":27443,"tid":27477,"ts":326459163181,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":441904},
-{"pid":27443,"tid":27477,"ts":326459163211,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":441965},
-{"pid":27443,"tid":27477,"ts":326459163242,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":441965},
-{"pid":27443,"tid":27477,"ts":326459163242,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":441965},
-{"pid":27443,"tid":27477,"ts":326459163272,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":441996},
-{"pid":27443,"tid":27477,"ts":326459163303,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":442026,"id":"0xaf88a9d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459163334,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":442057,"id":"0xaf88a9def182217a"},
-{"pid":27443,"tid":27477,"ts":326459163334,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":442057},
-{"pid":27443,"tid":27477,"ts":326459163364,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":442087},
-{"pid":27443,"tid":27477,"ts":326459163364,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":442087},
-{"pid":27443,"tid":27477,"ts":326459163364,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":442087},
-{"pid":27443,"tid":27477,"ts":326459163395,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":30,"tts":442118},
-{"pid":27443,"tid":27477,"ts":326459163395,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":442118},
-{"pid":27443,"tid":27477,"ts":326459163425,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":442148},
-{"pid":27443,"tid":27477,"ts":326459163456,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":442179},
-{"pid":27443,"tid":27477,"ts":326459163486,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":442209,"id":"0xaf88a9dff182217a"},
-{"pid":27443,"tid":27477,"ts":326459163486,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":442209},
-{"pid":27443,"tid":27477,"ts":326459163486,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":442209},
-{"pid":27443,"tid":27477,"ts":326459163486,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":94},"tts":442209},
-{"pid":27443,"tid":27477,"ts":326459163547,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":442270,"id":"0xaf88a859f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459163578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":442301,"id":"0xaf88a9c8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459163608,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":442331},
-{"pid":27443,"tid":27477,"ts":326459163639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":442362,"id":"0xaf88a9d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459163639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":442362},
-{"pid":27443,"tid":27477,"ts":326459163639,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":91,"tts":442362},
-{"pid":27443,"tid":27477,"ts":326459163669,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":442392,"id":"0x300000049"},
-{"pid":27443,"tid":27477,"ts":326459163669,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":442392},
-{"pid":27443,"tid":27477,"ts":326459163700,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":442423,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459163700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":442453,"id":"0xaf88a85af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459163730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":442453,"id":"0xaf88a9caf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459163761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":442484,"id":"0xaf88a9d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459163761,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2167,"tdur":1801,"tts":442484},
-{"pid":27443,"tid":27477,"ts":326459163761,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2167,"tdur":1771,"tts":442514},
-{"pid":27443,"tid":27477,"ts":326459163791,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":442514},
-{"pid":27443,"tid":27477,"ts":326459163791,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2137,"tdur":1771,"tts":442514},
-{"pid":27443,"tid":27477,"ts":326459163822,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":93},"dur":885,"tdur":885,"tts":442545},
-{"pid":27443,"tid":27477,"ts":326459163822,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":93},"dur":244,"tdur":214,"tts":442575},
-{"pid":27443,"tid":27477,"ts":326459164066,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":93},"dur":61,"tdur":61,"tts":442789},
-{"pid":27443,"tid":27477,"ts":326459164127,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":93},"tts":442850},
-{"pid":27443,"tid":27477,"ts":326459164249,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":442972},
-{"pid":27443,"tid":27477,"ts":326459164280,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":443003},
-{"pid":27443,"tid":27477,"ts":326459164280,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":443003},
-{"pid":27443,"tid":27477,"ts":326459164280,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":443003},
-{"pid":27443,"tid":27477,"ts":326459164310,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":1}},"tts":443033,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459164341,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":443094},
-{"pid":27443,"tid":27477,"ts":326459164707,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":443430},
-{"pid":27443,"tid":27477,"ts":326459164707,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":855,"tdur":488,"tts":443430},
-{"pid":27443,"tid":27477,"ts":326459164737,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":443461},
-{"pid":27443,"tid":27477,"ts":326459164737,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":763,"tdur":396,"tts":443461},
-{"pid":27443,"tid":27477,"ts":326459165012,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12610},"dur":61,"tdur":61,"tts":443735},
-{"pid":27443,"tid":27477,"ts":326459165012,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":443766,"id":"0xaf88aa54f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459165104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":443827,"id":"0xaf88aa55f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459165531,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":443888,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459165592,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":443949,"id":"0x300000045"},
-{"pid":27443,"tid":27477,"ts":326459165592,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":443949,"id":"0x300000046"},
-{"pid":27443,"tid":27477,"ts":326459165623,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":245,"tts":443979},
-{"pid":27443,"tid":27477,"ts":326459165775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":444132,"id":"0xaf88aa56f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459165897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":444254,"id":"0xaf88a85bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459168217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459168},"tts":444376,"id":"0xaf88a9c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459168247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":444376},
-{"pid":27443,"tid":27477,"ts":326459168736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":444468,"id":"0xaf88a9daf182217a"},
-{"pid":27443,"tid":27477,"ts":326459168736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":444468},
-{"pid":27443,"tid":27477,"ts":326459168766,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":444498},
-{"pid":27443,"tid":27477,"ts":326459168797,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":444529,"id":"0xaf88a854f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459176366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":444620,"id":"0xaf88a9dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459176396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":3113,"tdur":1526,"tts":444651},
-{"pid":27443,"tid":27477,"ts":326459176396,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":3113,"tdur":1526,"tts":444651},
-{"pid":27443,"tid":27477,"ts":326459176396,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":444651},
-{"pid":27443,"tid":27477,"ts":326459176427,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":3082,"tdur":1496,"tts":444681},
-{"pid":27443,"tid":27477,"ts":326459176427,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":3082,"tdur":1465,"tts":444681},
-{"pid":27443,"tid":27477,"ts":326459176427,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":0,"tts":444712},
-{"pid":27443,"tid":27477,"ts":326459176457,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":444712},
-{"pid":27443,"tid":27477,"ts":326459176457,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":444712,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459176488,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":444742},
-{"pid":27443,"tid":27477,"ts":326459176518,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":444773},
-{"pid":27443,"tid":27477,"ts":326459176976,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":2503,"tdur":915,"tts":445231},
-{"pid":27443,"tid":27477,"ts":326459176976,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":94},"dur":824,"tdur":274,"tts":445231},
-{"pid":27443,"tid":27477,"ts":326459177800,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":94},"dur":31,"tdur":31,"tts":445505},
-{"pid":27443,"tid":27477,"ts":326459177861,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":94},"tts":445566},
-{"pid":27443,"tid":27477,"ts":326459178868,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":445719},
-{"pid":27443,"tid":27477,"ts":326459178868,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":611,"tdur":427,"tts":445719},
-{"pid":27443,"tid":27477,"ts":326459178899,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":122,"tts":445750},
-{"pid":27443,"tid":27477,"ts":326459179052,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":445902},
-{"pid":27443,"tid":27477,"ts":326459179052,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":445902},
-{"pid":27443,"tid":27477,"ts":326459179082,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":336,"tdur":152,"tts":445933},
-{"pid":27443,"tid":27477,"ts":326459179082,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":445933},
-{"pid":27443,"tid":27477,"ts":326459179082,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":445933,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459179113,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":445963},
-{"pid":27443,"tid":27477,"ts":326459179143,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":445994},
-{"pid":27443,"tid":27477,"ts":326459179174,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":446024,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459179448,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":446116,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459179448,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":446116,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459179509,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446177,"id":"0xaf88a9d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179540,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":446207},
-{"pid":27443,"tid":27477,"ts":326459179570,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459167311.0,"frame_time_us":326459168103.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":446238},
-{"pid":27443,"tid":27477,"ts":326459179601,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459167311.0,"frame_time_us":326459168103.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":446268},
-{"pid":27443,"tid":27477,"ts":326459179631,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459184769},"dur":61,"tdur":61,"tts":446299},
-{"pid":27443,"tid":27477,"ts":326459179662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":446329,"id":"0xaf88a9d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446360,"id":"0xaf88a9d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":62,"tts":446390},
-{"pid":27443,"tid":27477,"ts":326459179723,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":92,"tdur":31,"tts":446390},
-{"pid":27443,"tid":27459,"ts":326459177220,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":977,"tts":6491835},
-{"pid":27443,"tid":27459,"ts":326459177220,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6491835,"id":"0x300000049"},
-{"pid":27443,"tid":27459,"ts":326459177251,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":854,"tts":6491866},
-{"pid":27443,"tid":27459,"ts":326459177251,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":6491866},
-{"pid":27443,"tid":27459,"ts":326459177342,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":824,"tdur":763,"tts":6491927},
-{"pid":27443,"tid":27459,"ts":326459177403,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6491988},
-{"pid":27443,"tid":27459,"ts":326459177434,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6492018},
-{"pid":27443,"tid":27459,"ts":326459177464,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6492049},
-{"pid":27443,"tid":27459,"ts":326459177495,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6492079},
-{"pid":27443,"tid":27459,"ts":326459177526,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":6492110},
-{"pid":27443,"tid":27459,"ts":326459177709,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":366,"tts":6492293},
-{"pid":27443,"tid":27459,"ts":326459177739,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6492293},
-{"pid":27443,"tid":27459,"ts":326459178014,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":52,"frame":"0x78c60000"}},"tts":6492598,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459178044,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6492598},
-{"pid":27443,"tid":27459,"ts":326459178075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6492629,"id":"0xaf88a9d5f182217a"},
-{"pid":27443,"tid":27459,"ts":326459178105,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6492659},
-{"pid":27443,"tid":27459,"ts":326459178166,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6492720},
-{"pid":27443,"tid":27459,"ts":326459178197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6492751,"id":"0xaf88aa57f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459178319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6492873,"id":"0xaf88a9caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459178319,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":92,"tts":6492873},
-{"pid":27443,"tid":27459,"ts":326459178350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6492904,"id":"0xaf88a85bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459178350,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":396,"tdur":61,"tts":6492904},
-{"pid":27443,"tid":27459,"ts":326459178350,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":6492904},
-{"pid":27443,"tid":27459,"ts":326459178716,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":6492965},
-{"pid":27443,"tid":27459,"ts":326459178807,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6493026,"id":"0xaf88a9cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459178807,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":61,"tts":6493026},
-{"pid":27443,"tid":27459,"ts":326459178807,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6493026,"id":"0xaf88a9c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459178838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6493056,"id":"0xaf88a854f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459178838,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":6493056},
-{"pid":27443,"tid":27459,"ts":326459178838,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":6493056},
-{"pid":27443,"tid":27459,"ts":326459178960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6493148,"id":"0xaf88a9c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459178960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6493148},
-{"pid":27443,"tid":27459,"ts":326459180700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459180},"tts":6493270,"id":"0xaf88a922f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459180700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":6493270},
-{"pid":27443,"tid":27459,"ts":326459180730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6493300,"id":"0xaf88a9c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459180761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6493361,"id":"0xaf88a9c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459180791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6493361},
-{"pid":27443,"tid":27459,"ts":326459180791,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6493361,"id":"0xaf88a9c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459180822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6493392,"id":"0xaf88a84bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459180822,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6493392},
-{"pid":27443,"tid":27459,"ts":326459180852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6493422,"id":"0xaf88a855f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459180852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6493422,"id":"0xaf88a9c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459180913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6493483,"id":"0xaf88a9c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459180944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6493514},
-{"pid":27443,"tid":27459,"ts":326459181554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6493605,"id":"0xaf88a9c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459181554,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":24172,"tdur":21883,"tts":6493636},
-{"pid":27443,"tid":27459,"ts":326459181585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6493636,"id":"0xaf88a9c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459181585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6493636,"id":"0xaf88a856f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459181615,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":24111,"tdur":21852,"tts":6493667},
-{"pid":27443,"tid":27459,"ts":326459181615,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":95},"tts":6493667},
-{"pid":27443,"tid":27459,"ts":326459181615,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6493667},
-{"pid":27443,"tid":27459,"ts":326459181676,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":19472,"tdur":18342,"tts":6493728},
-{"pid":27443,"tid":27459,"ts":326459181707,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":6493758},
-{"pid":27443,"tid":27459,"ts":326459181737,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":52,"frame":"0x78c60000"}},"dur":19411,"tdur":18251,"tts":6493819},
-{"pid":27443,"tid":27459,"ts":326459181829,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":19319,"tdur":18190,"tts":6493880},
-{"pid":27443,"tid":27459,"ts":326459181859,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6493911},
-{"pid":27443,"tid":27459,"ts":326459182073,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6494124},
-{"pid":27443,"tid":27459,"ts":326459182104,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":31,"tts":6494185},
-{"pid":27443,"tid":27459,"ts":326459184026,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6495895},
-{"pid":27443,"tid":27459,"ts":326459195502,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6506821},
-{"pid":27443,"tid":27459,"ts":326459198066,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6509385},
-{"pid":27443,"tid":27459,"ts":326459198310,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6509629},
-{"pid":27443,"tid":27459,"ts":326459198371,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6509690},
-{"pid":27443,"tid":27459,"ts":326459198401,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6509720},
-{"pid":27443,"tid":27477,"ts":326459179723,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":446390},
-{"pid":27443,"tid":27477,"ts":326459179845,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446452,"id":"0xaf88a9d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179845,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":446452},
-{"pid":27443,"tid":27477,"ts":326459179845,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":446452},
-{"pid":27443,"tid":27477,"ts":326459179876,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":446482,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459179876,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":446482},
-{"pid":27443,"tid":27477,"ts":326459179906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":446513,"id":"0xaf88a9d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446543,"id":"0xaf88a9d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179937,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":446543},
-{"pid":27443,"tid":27477,"ts":326459179937,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":446543},
-{"pid":27443,"tid":27477,"ts":326459179967,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":446574,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459179967,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":446574},
-{"pid":27443,"tid":27477,"ts":326459179967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":446574,"id":"0xaf88a9d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446604,"id":"0xaf88a9d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459179998,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":446604},
-{"pid":27443,"tid":27477,"ts":326459179998,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":446604},
-{"pid":27443,"tid":27477,"ts":326459180059,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":446665},
-{"pid":27443,"tid":27477,"ts":326459180059,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":446665,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459180059,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":446665},
-{"pid":27443,"tid":27477,"ts":326459180089,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446696,"id":"0xaf88a9d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459180089,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1496,"tdur":1373,"tts":446696},
-{"pid":27443,"tid":27477,"ts":326459180120,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1343,"tts":446726},
-{"pid":27443,"tid":27477,"ts":326459180120,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":446726},
-{"pid":27443,"tid":27477,"ts":326459180120,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":446726},
-{"pid":27443,"tid":27477,"ts":326459180150,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":446757},
-{"pid":27443,"tid":27477,"ts":326459180150,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":446757},
-{"pid":27443,"tid":27477,"ts":326459180242,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1343,"tdur":1221,"tts":446848},
-{"pid":27443,"tid":27477,"ts":326459180242,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1343,"tdur":1221,"tts":446848},
-{"pid":27443,"tid":27477,"ts":326459180242,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":446848},
-{"pid":27443,"tid":27477,"ts":326459180303,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1129,"tdur":1069,"tts":446848},
-{"pid":27443,"tid":27477,"ts":326459180303,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":446848,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459180394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":446940},
-{"pid":27443,"tid":27477,"ts":326459180425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":446970},
-{"pid":27443,"tid":27477,"ts":326459180455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447001},
-{"pid":27443,"tid":27477,"ts":326459180455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":447001},
-{"pid":27443,"tid":27477,"ts":326459180486,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":447031},
-{"pid":27443,"tid":27477,"ts":326459180517,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":447062},
-{"pid":27443,"tid":27477,"ts":326459180547,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":447092},
-{"pid":27443,"tid":27477,"ts":326459180578,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447123},
-{"pid":27443,"tid":27477,"ts":326459180578,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":447123},
-{"pid":27443,"tid":27477,"ts":326459180639,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":447153},
-{"pid":27443,"tid":27477,"ts":326459180669,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":447184},
-{"pid":27443,"tid":27477,"ts":326459180700,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447215},
-{"pid":27443,"tid":27477,"ts":326459180730,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":447245},
-{"pid":27443,"tid":27477,"ts":326459180761,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":447245},
-{"pid":27443,"tid":27477,"ts":326459180791,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447276},
-{"pid":27443,"tid":27477,"ts":326459180822,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447306},
-{"pid":27443,"tid":27477,"ts":326459180822,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":447306},
-{"pid":27443,"tid":27477,"ts":326459180852,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447337},
-{"pid":27443,"tid":27477,"ts":326459180883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447367},
-{"pid":27443,"tid":27477,"ts":326459180883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":447367},
-{"pid":27443,"tid":27477,"ts":326459180944,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447428},
-{"pid":27443,"tid":27477,"ts":326459180944,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":447428},
-{"pid":27443,"tid":27477,"ts":326459180974,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":447459},
-{"pid":27443,"tid":27477,"ts":326459181005,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447489},
-{"pid":27443,"tid":27477,"ts":326459181035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447520},
-{"pid":27443,"tid":27477,"ts":326459181035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447520},
-{"pid":27443,"tid":27477,"ts":326459181157,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447642},
-{"pid":27443,"tid":27477,"ts":326459181188,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447672},
-{"pid":27443,"tid":27477,"ts":326459181218,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447703},
-{"pid":27443,"tid":27477,"ts":326459181218,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":447703},
-{"pid":27443,"tid":27477,"ts":326459181249,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447733},
-{"pid":27443,"tid":27477,"ts":326459181249,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":447764},
-{"pid":27443,"tid":27477,"ts":326459181280,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":447764},
-{"pid":27443,"tid":27477,"ts":326459181310,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":447794},
-{"pid":27443,"tid":27477,"ts":326459181371,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":31,"tts":447855},
-{"pid":27443,"tid":27477,"ts":326459181402,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":447886},
-{"pid":27443,"tid":27477,"ts":326459181402,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":447886},
-{"pid":27443,"tid":27477,"ts":326459181432,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":95},"tts":447917},
-{"pid":27443,"tid":27477,"ts":326459181493,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":447978,"id":"0xaf88a856f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459181493,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":447978,"id":"0xaf88a9c0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459181524,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":448008},
-{"pid":27443,"tid":27477,"ts":326459181554,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":448039},
-{"pid":27443,"tid":27477,"ts":326459181554,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":448039,"id":"0xaf88a9ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326459181585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":448069,"id":"0xaf88a9d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459181615,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":448100},
-{"pid":27443,"tid":27477,"ts":326459181615,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":448100},
-{"pid":27443,"tid":27477,"ts":326459181615,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":448100},
-{"pid":27443,"tid":27477,"ts":326459181615,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":448100},
-{"pid":27443,"tid":27477,"ts":326459181646,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":448130},
-{"pid":27443,"tid":27477,"ts":326459181646,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":448130},
-{"pid":27443,"tid":27477,"ts":326459181707,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":448191},
-{"pid":27443,"tid":27477,"ts":326459181707,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":448191},
-{"pid":27443,"tid":27477,"ts":326459181737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":448222,"id":"0xaf88a9ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326459181737,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3083,"tdur":1618,"tts":448252},
-{"pid":27443,"tid":27477,"ts":326459181768,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3052,"tdur":1618,"tts":448252},
-{"pid":27443,"tid":27477,"ts":326459181768,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":448252},
-{"pid":27443,"tid":27477,"ts":326459181798,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3022,"tdur":1587,"tts":448283},
-{"pid":27443,"tid":27477,"ts":326459181798,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":94},"dur":1160,"tdur":854,"tts":448283},
-{"pid":27443,"tid":27477,"ts":326459181829,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":94},"dur":580,"tdur":275,"tts":448313},
-{"pid":27443,"tid":27477,"ts":326459182409,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":94},"dur":61,"tdur":30,"tts":448588},
-{"pid":27443,"tid":27477,"ts":326459182470,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":94},"tts":448649},
-{"pid":27443,"tid":27477,"ts":326459182592,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":448771},
-{"pid":27443,"tid":27477,"ts":326459182592,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":448802},
-{"pid":27443,"tid":27477,"ts":326459182622,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":448802},
-{"pid":27443,"tid":27477,"ts":326459182622,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":448802},
-{"pid":27443,"tid":27477,"ts":326459182653,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":448832,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459182683,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":448893},
-{"pid":27443,"tid":27477,"ts":326459182958,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":449137},
-{"pid":27443,"tid":27477,"ts":326459182989,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1434,"tdur":305,"tts":449168},
-{"pid":27443,"tid":27477,"ts":326459182989,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":449168},
-{"pid":27443,"tid":27477,"ts":326459182989,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1373,"tdur":244,"tts":449168},
-{"pid":27443,"tid":27477,"ts":326459183080,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12610},"dur":31,"tdur":31,"tts":449259},
-{"pid":27443,"tid":27477,"ts":326459183111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449290,"id":"0xaf88aa50f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459184393,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":449443,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459184454,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":449504,"id":"0x300000048"},
-{"pid":27443,"tid":27477,"ts":326459184454,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":274,"tts":449504},
-{"pid":27443,"tid":27477,"ts":326459184667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449717,"id":"0xaf88aa51f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459184759,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":449809,"id":"0xaf88a857f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459184759,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449839,"id":"0xaf88a9c2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459184850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459184},"tts":449900,"id":"0xaf88a9d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459184850,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":367,"tdur":0,"tts":449900},
-{"pid":27443,"tid":27477,"ts":326459184850,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":449900},
-{"pid":27443,"tid":27477,"ts":326459185217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":449931,"id":"0xaf88a9edf182217a"},
-{"pid":27443,"tid":27477,"ts":326459185217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":449931},
-{"pid":27443,"tid":27477,"ts":326459185217,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":122,"tts":449931},
-{"pid":27443,"tid":27477,"ts":326459185247,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":449961,"id":"0x30000004a"},
-{"pid":27443,"tid":27477,"ts":326459185278,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":449992},
-{"pid":27443,"tid":27477,"ts":326459185308,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":450022,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459185339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":450053,"id":"0xaf88a850f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459196753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":450114,"id":"0xaf88a9eef182217a"},
-{"pid":27443,"tid":27477,"ts":326459196784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":450144},
-{"pid":27443,"tid":27477,"ts":326459196814,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459184196.0,"frame_time_us":326459184785.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":450175},
-{"pid":27443,"tid":27477,"ts":326459196814,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459184196.0,"frame_time_us":326459184785.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":450175},
-{"pid":27443,"tid":27477,"ts":326459196906,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459201451},"dur":30,"tdur":30,"tts":450267},
-{"pid":27443,"tid":27477,"ts":326459196906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":450267,"id":"0xaf88a9eff182217a"},
-{"pid":27443,"tid":27477,"ts":326459198005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":450389,"id":"0xaf88a9e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459198035,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":450389},
-{"pid":27443,"tid":27477,"ts":326459198066,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":450419},
-{"pid":27443,"tid":27477,"ts":326459198096,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":450450,"id":"0xaf88a851f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459201576,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459201},"tts":450541,"id":"0xaf88a9eff182217a"},
-{"pid":27443,"tid":27477,"ts":326459201576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2258,"tdur":519,"tts":450541},
-{"pid":27443,"tid":27477,"ts":326459201576,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2228,"tdur":519,"tts":450541},
-{"pid":27443,"tid":27477,"ts":326459201606,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":2198,"tdur":488,"tts":450572},
-{"pid":27443,"tid":27477,"ts":326459201606,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":2198,"tdur":488,"tts":450572},
-{"pid":27443,"tid":27477,"ts":326459201820,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":1282,"tdur":122,"tts":450633},
-{"pid":27443,"tid":27477,"ts":326459201820,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1159,"tdur":30,"tts":450633},
-{"pid":27443,"tid":27477,"ts":326459203102,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":450755},
-{"pid":27443,"tid":27477,"ts":326459203102,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":335,"tdur":30,"tts":450755},
-{"pid":27443,"tid":27477,"ts":326459203437,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":450785},
-{"pid":27443,"tid":27477,"ts":326459203468,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":275,"tdur":183,"tts":450816},
-{"pid":27443,"tid":27477,"ts":326459203498,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":245,"tdur":153,"tts":450846},
-{"pid":27443,"tid":27477,"ts":326459203498,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":450846,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459203529,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":450877},
-{"pid":27443,"tid":27477,"ts":326459203559,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":153,"tdur":61,"tts":450908},
-{"pid":27443,"tid":27477,"ts":326459203743,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":450999,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459203773,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":451030,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459203773,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":451030,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459204872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":451121,"id":"0xaf88a9e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459204872,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1709,"tdur":1587,"tts":451152},
-{"pid":27443,"tid":27477,"ts":326459204902,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1679,"tdur":1587,"tts":451152},
-{"pid":27443,"tid":27477,"ts":326459204902,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":451152},
-{"pid":27443,"tid":27477,"ts":326459204933,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1648,"tdur":1526,"tts":451182},
-{"pid":27443,"tid":27477,"ts":326459204933,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1617,"tdur":1526,"tts":451182},
-{"pid":27443,"tid":27477,"ts":326459204933,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":451182},
-{"pid":27443,"tid":27477,"ts":326459204963,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":451213},
-{"pid":27443,"tid":27477,"ts":326459204963,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":451213,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459204994,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":451243},
-{"pid":27443,"tid":27477,"ts":326459205024,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":550,"tdur":458,"tts":451274},
-{"pid":27443,"tid":27477,"ts":326459205635,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":915,"tdur":915,"tts":451793},
-{"pid":27443,"tid":27477,"ts":326459205665,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":95},"dur":275,"tdur":275,"tts":451823},
-{"pid":27443,"tid":27477,"ts":326459205940,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":95},"dur":61,"tdur":31,"tts":452128},
-{"pid":27443,"tid":27477,"ts":326459206001,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":95},"tts":452159},
-{"pid":27443,"tid":27477,"ts":326459206154,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":452342},
-{"pid":27443,"tid":27477,"ts":326459206184,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":452342},
-{"pid":27443,"tid":27477,"ts":326459206215,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":452372},
-{"pid":27443,"tid":27477,"ts":326459206215,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":452372},
-{"pid":27443,"tid":27477,"ts":326459206215,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":452372},
-{"pid":27443,"tid":27477,"ts":326459206245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":452403},
-{"pid":27443,"tid":27477,"ts":326459206367,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":452525},
-{"pid":27443,"tid":27477,"ts":326459206367,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":452525},
-{"pid":27443,"tid":27477,"ts":326459206398,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":91,"tts":452556},
-{"pid":27443,"tid":27477,"ts":326459206398,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":452556},
-{"pid":27443,"tid":27477,"ts":326459206428,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":452586},
-{"pid":27443,"tid":27477,"ts":326459206428,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":452586},
-{"pid":27443,"tid":27477,"ts":326459206489,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":452647,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459206520,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":452678,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459206520,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":452678,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459206581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452739,"id":"0xaf88a9eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326459206581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":0,"tts":452769},
-{"pid":27443,"tid":27477,"ts":326459206611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452769,"id":"0xaf88a9ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326459206611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":452769},
-{"pid":27443,"tid":27477,"ts":326459206642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452800,"id":"0xaf88a9e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459206642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":452800},
-{"pid":27443,"tid":27477,"ts":326459206672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452830,"id":"0xaf88a9e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459206672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":184,"tdur":122,"tts":452830},
-{"pid":27443,"tid":27477,"ts":326459206703,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459200878.0,"frame_time_us":326459201467.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":91,"tts":452861},
-{"pid":27443,"tid":27477,"ts":326459206734,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459200878.0,"frame_time_us":326459201467.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":61,"tts":452891},
-{"pid":27443,"tid":27477,"ts":326459206764,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459218133},"dur":61,"tdur":30,"tts":452922},
-{"pid":27443,"tid":27477,"ts":326459206795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":452952,"id":"0xaf88a9e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459206856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452983,"id":"0xaf88a9e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459206856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":452983},
-{"pid":27443,"tid":27459,"ts":326459198585,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6509903},
-{"pid":27443,"tid":27459,"ts":326459198768,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6510086},
-{"pid":27443,"tid":27459,"ts":326459201087,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6512040},
-{"pid":27443,"tid":27459,"ts":326459201179,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2899,"tdur":2716,"tts":6512101},
-{"pid":27443,"tid":27459,"ts":326459201209,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6512131},
-{"pid":27443,"tid":27459,"ts":326459201240,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6512162},
-{"pid":27443,"tid":27459,"ts":326459201240,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6512162},
-{"pid":27443,"tid":27459,"ts":326459201667,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6512589},
-{"pid":27443,"tid":27459,"ts":326459201698,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6512620},
-{"pid":27443,"tid":27459,"ts":326459201728,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2320,"tdur":2167,"tts":6512650},
-{"pid":27443,"tid":27459,"ts":326459201728,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2167,"tdur":2015,"tts":6512650},
-{"pid":27443,"tid":27459,"ts":326459201728,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":6512650},
-{"pid":27443,"tid":27459,"ts":326459201820,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":6512650},
-{"pid":27443,"tid":27459,"ts":326459202155,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":245,"tdur":214,"tts":6513016},
-{"pid":27443,"tid":27459,"ts":326459202400,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6513230},
-{"pid":27443,"tid":27459,"ts":326459202491,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":6513352},
-{"pid":27443,"tid":27459,"ts":326459202522,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1343,"tdur":1282,"tts":6513352},
-{"pid":27443,"tid":27459,"ts":326459203895,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":6514665},
-{"pid":27443,"tid":27459,"ts":326459203956,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":6514726},
-{"pid":27443,"tid":27459,"ts":326459204078,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":95},"dur":489,"tdur":488,"tts":6514848},
-{"pid":27443,"tid":27459,"ts":326459204078,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":489,"tdur":488,"tts":6514848},
-{"pid":27443,"tid":27459,"ts":326459204383,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":31,"tdur":30,"tts":6515153},
-{"pid":27443,"tid":27459,"ts":326459204414,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":0,"tdur":0,"tts":6515183},
-{"pid":27443,"tid":27459,"ts":326459204414,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":30,"tdur":31,"tts":6515183},
-{"pid":27443,"tid":27459,"ts":326459204444,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":31,"tdur":30,"tts":6515214},
-{"pid":27443,"tid":27459,"ts":326459204475,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":0,"tdur":0,"tts":6515244},
-{"pid":27443,"tid":27459,"ts":326459204475,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":31,"tdur":31,"tts":6515244},
-{"pid":27443,"tid":27459,"ts":326459204506,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":30,"tdur":30,"tts":6515275},
-{"pid":27443,"tid":27459,"ts":326459204536,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":0,"tdur":0,"tts":6515305},
-{"pid":27443,"tid":27459,"ts":326459204567,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":95},"dur":0,"tdur":0,"tts":6515336},
-{"pid":27443,"tid":27459,"ts":326459204567,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6515367,"id":"0x300000049"},
-{"pid":27443,"tid":27459,"ts":326459204597,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1068,"tdur":91,"tts":6515367},
-{"pid":27443,"tid":27459,"ts":326459204597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6515367,"id":"0xaf88a9e9f182217a"},
-{"pid":27443,"tid":27459,"ts":326459205696,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6515489},
-{"pid":27443,"tid":27459,"ts":326459205787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6515580,"id":"0xaf88a9c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459205787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6515580},
-{"pid":27443,"tid":27459,"ts":326459205818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6515611,"id":"0xaf88a9c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459205818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6515611,"id":"0xaf88a857f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459205818,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6515611},
-{"pid":27443,"tid":27459,"ts":326459205848,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6515641},
-{"pid":27443,"tid":27459,"ts":326459205879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6515672,"id":"0xaf88a9c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459205879,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1129,"tts":6515672},
-{"pid":27443,"tid":27459,"ts":326459205909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6515702,"id":"0xaf88a850f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459205909,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1099,"tts":6515702},
-{"pid":27443,"tid":27459,"ts":326459205970,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1008,"tdur":1007,"tts":6515763},
-{"pid":27443,"tid":27459,"ts":326459206001,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6515794,"id":"0x30000004a"},
-{"pid":27443,"tid":27459,"ts":326459206001,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":6515794},
-{"pid":27443,"tid":27459,"ts":326459206032,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":824,"tdur":824,"tts":6515824},
-{"pid":27443,"tid":27459,"ts":326459206093,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6515885},
-{"pid":27443,"tid":27459,"ts":326459206123,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6515916},
-{"pid":27443,"tid":27459,"ts":326459206154,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6515977},
-{"pid":27443,"tid":27459,"ts":326459206184,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6516007},
-{"pid":27443,"tid":27459,"ts":326459206245,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":610,"tts":6516038},
-{"pid":27443,"tid":27459,"ts":326459206398,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":6516191},
-{"pid":27443,"tid":27459,"ts":326459206428,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6516221},
-{"pid":27443,"tid":27459,"ts":326459206734,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":53,"frame":"0x78c60000"}},"tts":6516526,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459206764,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":6516557},
-{"pid":27443,"tid":27459,"ts":326459206764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6516557,"id":"0xaf88a9e1f182217a"},
-{"pid":27443,"tid":27459,"ts":326459206825,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6516618},
-{"pid":27443,"tid":27459,"ts":326459206886,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":6516709},
-{"pid":27443,"tid":27459,"ts":326459206917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6516709,"id":"0xaf88aa52f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459207039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6516832,"id":"0xaf88a9c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459207039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":366,"tdur":122,"tts":6516832},
-{"pid":27443,"tid":27459,"ts":326459207039,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":30,"tts":6516832},
-{"pid":27443,"tid":27477,"ts":326459206856,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":91,"tts":452983},
-{"pid":27443,"tid":27477,"ts":326459206886,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":453044,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459206917,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":453044},
-{"pid":27443,"tid":27477,"ts":326459206917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":453044,"id":"0xaf88a9e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459206947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453074,"id":"0xaf88a9e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459206978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":453105},
-{"pid":27443,"tid":27477,"ts":326459206978,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":453105},
-{"pid":27443,"tid":27477,"ts":326459207008,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":453135,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459207008,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":453135},
-{"pid":27443,"tid":27477,"ts":326459207039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":453166,"id":"0xaf88a9fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326459207039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453166,"id":"0xaf88a9e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459207069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":453197},
-{"pid":27443,"tid":27477,"ts":326459207069,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":453197},
-{"pid":27443,"tid":27477,"ts":326459207069,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":453197,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459207069,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":453227},
-{"pid":27443,"tid":27477,"ts":326459207100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453227,"id":"0xaf88a9e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459207100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":0,"tts":453258},
-{"pid":27443,"tid":27477,"ts":326459207130,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":453258},
-{"pid":27443,"tid":27477,"ts":326459207161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453258,"id":"0xaf88a9e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459207161,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":30,"tts":453258},
-{"pid":27443,"tid":27477,"ts":326459207252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1404,"tdur":1404,"tts":453288},
-{"pid":27443,"tid":27477,"ts":326459207283,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1343,"tdur":1343,"tts":453319},
-{"pid":27443,"tid":27477,"ts":326459207283,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":453319},
-{"pid":27443,"tid":27477,"ts":326459207283,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":453319},
-{"pid":27443,"tid":27477,"ts":326459207313,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":453349},
-{"pid":27443,"tid":27477,"ts":326459207313,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":453349},
-{"pid":27443,"tid":27477,"ts":326459207435,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1191,"tts":453471},
-{"pid":27443,"tid":27477,"ts":326459207435,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1191,"tts":453471},
-{"pid":27443,"tid":27477,"ts":326459207466,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1007,"tdur":1007,"tts":453502},
-{"pid":27443,"tid":27477,"ts":326459207466,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":453502,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459207558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453593},
-{"pid":27443,"tid":27477,"ts":326459207588,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453624},
-{"pid":27443,"tid":27477,"ts":326459207619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453654},
-{"pid":27443,"tid":27477,"ts":326459207619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":453654},
-{"pid":27443,"tid":27477,"ts":326459207649,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":453685},
-{"pid":27443,"tid":27477,"ts":326459207680,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453715},
-{"pid":27443,"tid":27477,"ts":326459207710,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453746},
-{"pid":27443,"tid":27477,"ts":326459207710,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":453746},
-{"pid":27443,"tid":27477,"ts":326459207741,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453776},
-{"pid":27443,"tid":27477,"ts":326459207771,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453807},
-{"pid":27443,"tid":27477,"ts":326459207771,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":453807},
-{"pid":27443,"tid":27477,"ts":326459207802,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453837},
-{"pid":27443,"tid":27477,"ts":326459207832,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453868},
-{"pid":27443,"tid":27477,"ts":326459207832,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":453868},
-{"pid":27443,"tid":27477,"ts":326459207863,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":453898},
-{"pid":27443,"tid":27477,"ts":326459207893,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453929},
-{"pid":27443,"tid":27477,"ts":326459207924,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":453960},
-{"pid":27443,"tid":27477,"ts":326459207924,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":453960},
-{"pid":27443,"tid":27477,"ts":326459207954,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":453990},
-{"pid":27443,"tid":27477,"ts":326459207985,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":454021},
-{"pid":27443,"tid":27477,"ts":326459207985,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":454051},
-{"pid":27443,"tid":27477,"ts":326459208015,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":454051},
-{"pid":27443,"tid":27477,"ts":326459208046,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":454082},
-{"pid":27443,"tid":27477,"ts":326459208046,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":454082},
-{"pid":27443,"tid":27477,"ts":326459208076,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":454112},
-{"pid":27443,"tid":27477,"ts":326459208107,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":454143},
-{"pid":27443,"tid":27477,"ts":326459208198,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":454234},
-{"pid":27443,"tid":27477,"ts":326459208198,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":454265},
-{"pid":27443,"tid":27477,"ts":326459208229,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":454265},
-{"pid":27443,"tid":27477,"ts":326459208260,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":454295},
-{"pid":27443,"tid":27477,"ts":326459208290,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":454326},
-{"pid":27443,"tid":27477,"ts":326459208290,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":454356},
-{"pid":27443,"tid":27477,"ts":326459208321,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":454356},
-{"pid":27443,"tid":27477,"ts":326459208351,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":454417},
-{"pid":27443,"tid":27459,"ts":326459207313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6516862,"id":"0xaf88a9dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459207344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6516893,"id":"0xaf88a851f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459207344,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6516893},
-{"pid":27443,"tid":27459,"ts":326459207374,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6516923},
-{"pid":27443,"tid":27459,"ts":326459207435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6516984,"id":"0xaf88a9dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459207435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6516984},
-{"pid":27443,"tid":27459,"ts":326459208595,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6517076,"id":"0xaf88a9ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459208626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":18343,"tdur":14558,"tts":6517106},
-{"pid":27443,"tid":27459,"ts":326459208626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6517106,"id":"0xaf88a9def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459208656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6517137,"id":"0xaf88a852f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459208656,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":18282,"tdur":14497,"tts":6517137},{"pid":27443,"tid":27459,"ts":326459208656,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":96},"tts":6517137},
-{"pid":27443,"tid":27459,"ts":326459208687,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6517167},
-{"pid":27443,"tid":27459,"ts":326459208717,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":13948,"tdur":11079,"tts":6517198},
-{"pid":27443,"tid":27459,"ts":326459208748,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6517228},
-{"pid":27443,"tid":27459,"ts":326459208778,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":53,"frame":"0x78c60000"}},"dur":13857,"tdur":10987,"tts":6517259},
-{"pid":27443,"tid":27459,"ts":326459208839,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":13796,"tdur":10896,"tts":6517350},
-{"pid":27443,"tid":27459,"ts":326459208870,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6517350},
-{"pid":27443,"tid":27459,"ts":326459209053,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6517533},
-{"pid":27443,"tid":27459,"ts":326459209084,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":31,"tts":6517564},
-{"pid":27443,"tid":27459,"ts":326459215859,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6523393},
-{"pid":27443,"tid":27459,"ts":326459221902,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6527727},
-{"pid":27443,"tid":27459,"ts":326459222604,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6528216},
-{"pid":27443,"tid":27459,"ts":326459222665,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2686,"tdur":2685,"tts":6528277},
-{"pid":27443,"tid":27459,"ts":326459222696,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6528338},
-{"pid":27443,"tid":27459,"ts":326459222726,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6528338},
-{"pid":27443,"tid":27459,"ts":326459222726,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6528368},
-{"pid":27443,"tid":27459,"ts":326459223184,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6528795},
-{"pid":27443,"tid":27459,"ts":326459223215,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6528826},
-{"pid":27443,"tid":27459,"ts":326459223215,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2136,"tdur":2105,"tts":6528857},
-{"pid":27443,"tid":27459,"ts":326459223245,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1953,"tdur":1922,"tts":6528857},
-{"pid":27443,"tid":27459,"ts":326459223245,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":335,"tts":6528857},
-{"pid":27443,"tid":27459,"ts":326459223581,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":6529192},
-{"pid":27443,"tid":27459,"ts":326459223794,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6529406},
-{"pid":27443,"tid":27459,"ts":326459223886,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":6529497},
-{"pid":27443,"tid":27459,"ts":326459223916,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1252,"tdur":1251,"tts":6529528},
-{"pid":27443,"tid":27459,"ts":326459225198,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6530810},
-{"pid":27443,"tid":27459,"ts":326459225229,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6530840},
-{"pid":27443,"tid":27459,"ts":326459225381,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":96},"dur":489,"tdur":488,"tts":6530993},
-{"pid":27443,"tid":27459,"ts":326459225381,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":489,"tdur":488,"tts":6530993},
-{"pid":27443,"tid":27459,"ts":326459225687,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":0,"tdur":0,"tts":6531298},
-{"pid":27443,"tid":27459,"ts":326459225717,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":0,"tdur":0,"tts":6531329},
-{"pid":27443,"tid":27459,"ts":326459225717,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":31,"tdur":30,"tts":6531329},
-{"pid":27443,"tid":27459,"ts":326459225748,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":0,"tdur":0,"tts":6531359},
-{"pid":27443,"tid":27459,"ts":326459225748,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":30,"tdur":31,"tts":6531359},
-{"pid":27443,"tid":27459,"ts":326459225778,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":0,"tdur":0,"tts":6531390},
-{"pid":27443,"tid":27459,"ts":326459225778,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":31,"tdur":0,"tts":6531420},
-{"pid":27443,"tid":27459,"ts":326459225809,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":0,"tdur":0,"tts":6531420},
-{"pid":27443,"tid":27459,"ts":326459225839,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":96},"dur":0,"tdur":0,"tts":6531451},
-{"pid":27443,"tid":27459,"ts":326459225870,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6531481,"id":"0x30000004a"},
-{"pid":27443,"tid":27459,"ts":326459225900,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":763,"tdur":61,"tts":6531512},
-{"pid":27443,"tid":27459,"ts":326459225900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6531512,"id":"0xaf88a9faf182217a"},
-{"pid":27443,"tid":27459,"ts":326459226938,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6531634},
-{"pid":27443,"tid":27459,"ts":326459227030,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6531725,"id":"0xaf88a9def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459227030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1831,"tdur":1221,"tts":6531725},
-{"pid":27443,"tid":27459,"ts":326459227060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6531786,"id":"0xaf88a9d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459227060,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":6531786},
-{"pid":27443,"tid":27459,"ts":326459227182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6531786,"id":"0xaf88a853f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459227213,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1648,"tdur":1129,"tts":6531817},
-{"pid":27443,"tid":27459,"ts":326459227274,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1556,"tdur":1038,"tts":6531878},
-{"pid":27443,"tid":27459,"ts":326459227274,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6531878,"id":"0x30000004b"},
-{"pid":27443,"tid":27459,"ts":326459227304,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1435,"tdur":915,"tts":6531909},
-{"pid":27443,"tid":27459,"ts":326459227335,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1404,"tdur":855,"tts":6531939},
-{"pid":27443,"tid":27459,"ts":326459227335,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":6531939},
-{"pid":27443,"tid":27466,"ts":326459207741,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":266931,"id":"0xba44c502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459207741,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":0,"tts":266961},
-{"pid":27443,"tid":27466,"ts":326459207771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":266961,"id":"0xaf88a9fdf182217a"},
-{"pid":27443,"tid":27466,"ts":326459210854,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":267083,"id":"0xaf88aa53f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459210854,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":267083},
-{"pid":27443,"tid":27466,"ts":326459210854,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267083,"id":"0xccc43802"},
-{"pid":27443,"tid":27466,"ts":326459210915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":267144,"id":"0xaf88aa6cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459210915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":267144},
-{"pid":27443,"tid":27466,"ts":326459210945,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267175,"id":"0xccc43906"},
-{"pid":27443,"tid":27466,"ts":326459211251,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":267205},
-{"pid":27443,"tid":27466,"ts":326459211281,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":267236},
-{"pid":27443,"tid":27466,"ts":326459211281,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267266,"id":"0xc4c1500a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459211830,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":267327,"id":"0xaf88aa6df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459211861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":267358},
-{"pid":27443,"tid":27466,"ts":326459211861,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267358,"id":"0xccc43a02"},
-{"pid":27443,"tid":27466,"ts":326459217141,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":267480},
-{"pid":27443,"tid":27466,"ts":326459217171,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":267511},
-{"pid":27443,"tid":27466,"ts":326459217202,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267541,"id":"0xba44c602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459217233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":267572,"id":"0xaf88a9fff182217a"},
-{"pid":27443,"tid":27466,"ts":326459222665,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":267633},
-{"pid":27443,"tid":27466,"ts":326459222726,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":267694},
-{"pid":27443,"tid":27466,"ts":326459222726,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267694,"id":"0xba44c802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459222757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":267724,"id":"0xaf88a9f8f182217a"},
-{"pid":27443,"tid":27466,"ts":326459228861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":267846,"id":"0xaf88aa6ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459228861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":267846},
-{"pid":27443,"tid":27466,"ts":326459228861,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267846,"id":"0xccc43b02"},
-{"pid":27443,"tid":27466,"ts":326459229593,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":267938},
-{"pid":27443,"tid":27466,"ts":326459229624,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":267968},
-{"pid":27443,"tid":27466,"ts":326459229624,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":267968,"id":"0xba44c902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459229654,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":267999},
-{"pid":27443,"tid":27466,"ts":326459229685,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":268029,"id":"0xaf88a9f2f182217a"},
-{"pid":27443,"tid":27466,"ts":326459231150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":268121,"id":"0xaf88aa6ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459231180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":268121},
-{"pid":27443,"tid":27466,"ts":326459231180,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":268121,"id":"0xccc43c06"},
-{"pid":27443,"tid":27466,"ts":326459231394,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":268243},
-{"pid":27443,"tid":27466,"ts":326459231424,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":268274},
-{"pid":27443,"tid":27466,"ts":326459231424,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":268274,"id":"0xc4c1530a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459231821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":268365,"id":"0xaf88aa68f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459231852,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":268396},
-{"pid":27443,"tid":27466,"ts":326459231852,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":268396,"id":"0xccc43d02"},
-{"pid":27443,"tid":27466,"ts":326459234477,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":268487},
-{"pid":27443,"tid":27466,"ts":326459234507,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":268518},
-{"pid":27443,"tid":27466,"ts":326459234538,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":268548,"id":"0xba44cc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459234568,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":268579,"id":"0xaf88a9f3f182217a"},
-{"pid":27443,"tid":27466,"ts":326459238261,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":268670},
-{"pid":27443,"tid":27466,"ts":326459238292,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":268701},
-{"pid":27443,"tid":27466,"ts":326459238292,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":268701,"id":"0xba44ce02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459238322,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":268731,"id":"0xaf88a98cf182217a"},
-{"pid":27443,"tid":27466,"ts":326459256115,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":3297,"tdur":123,"tts":268853},
-{"pid":27443,"tid":27466,"ts":326459256177,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":3235,"tdur":92,"tts":268884},
-{"pid":27443,"tid":27466,"ts":326459256177,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":268884,"id":"0xba44cf02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459259381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":268945,"id":"0xaf88a98bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459259442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":269006,"id":"0xaf88aa69f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459259442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":269006},
-{"pid":27443,"tid":27466,"ts":326459259442,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269006,"id":"0xccc43f02"},
-{"pid":27443,"tid":27466,"ts":326459260388,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":269128},
-{"pid":27443,"tid":27466,"ts":326459260449,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":269189},
-{"pid":27443,"tid":27466,"ts":326459260449,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269189,"id":"0xba44d002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459260480,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":269220},
-{"pid":27443,"tid":27466,"ts":326459260510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":269250,"id":"0xaf88a987f182217a"},
-{"pid":27443,"tid":27466,"ts":326459261609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":269372,"id":"0xaf88aa6af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459261640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":269403},
-{"pid":27443,"tid":27466,"ts":326459261640,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269403,"id":"0xccc44002"},
-{"pid":27443,"tid":27466,"ts":326459262006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":269494,"id":"0xaf88aa6bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459208412,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":454448},
-{"pid":27443,"tid":27477,"ts":326459208412,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":454478},
-{"pid":27443,"tid":27477,"ts":326459208443,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":454478},
-{"pid":27443,"tid":27477,"ts":326459208473,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":96},"tts":454509},
-{"pid":27443,"tid":27477,"ts":326459208534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":454570,"id":"0xaf88a852f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459208565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454600,"id":"0xaf88a9ddf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459208595,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":454631},
-{"pid":27443,"tid":27477,"ts":326459208595,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":454631},
-{"pid":27443,"tid":27477,"ts":326459208626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454662,"id":"0xaf88a9fef182217a"},
-{"pid":27443,"tid":27477,"ts":326459208656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":454692,"id":"0xaf88a9fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326459208656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":454692},
-{"pid":27443,"tid":27477,"ts":326459208687,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":454723},
-{"pid":27443,"tid":27477,"ts":326459208687,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":454723},
-{"pid":27443,"tid":27477,"ts":326459208687,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":454723},
-{"pid":27443,"tid":27477,"ts":326459208717,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":454753},
-{"pid":27443,"tid":27477,"ts":326459208717,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":454753},
-{"pid":27443,"tid":27477,"ts":326459208778,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":454814},
-{"pid":27443,"tid":27477,"ts":326459208778,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":454814},
-{"pid":27443,"tid":27477,"ts":326459208809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":454845,"id":"0xaf88a9fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326459208809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":454845},
-{"pid":27443,"tid":27477,"ts":326459208839,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":454875},
-{"pid":27443,"tid":27477,"ts":326459208839,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":454875,"id":"0x30000004b"},
-{"pid":27443,"tid":27477,"ts":326459208870,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":454906},
-{"pid":27443,"tid":27477,"ts":326459208900,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":454936,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459208900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":454967,"id":"0xaf88a853f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459208931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454967,"id":"0xaf88a9dff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459208961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":454997,"id":"0xaf88a9fef182217a"},
-{"pid":27443,"tid":27477,"ts":326459208961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2778,"tdur":1954,"tts":454997},
-{"pid":27443,"tid":27477,"ts":326459208992,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2716,"tdur":1892,"tts":455028},
-{"pid":27443,"tid":27477,"ts":326459208992,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":455028},
-{"pid":27443,"tid":27477,"ts":326459209023,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2685,"tdur":1862,"tts":455058},
-{"pid":27443,"tid":27477,"ts":326459209023,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":95},"dur":1342,"tdur":1099,"tts":455058},
-{"pid":27443,"tid":27477,"ts":326459209053,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":95},"dur":275,"tdur":274,"tts":455089},
-{"pid":27443,"tid":27477,"ts":326459209328,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":95},"dur":61,"tdur":62,"tts":455363},
-{"pid":27443,"tid":27477,"ts":326459209389,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":95},"tts":455425},
-{"pid":27443,"tid":27477,"ts":326459209541,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":455577},
-{"pid":27443,"tid":27477,"ts":326459209541,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":455577},
-{"pid":27443,"tid":27477,"ts":326459209541,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":455577},
-{"pid":27443,"tid":27477,"ts":326459209572,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":455608},
-{"pid":27443,"tid":27477,"ts":326459209572,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":455608,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459209663,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":455699},
-{"pid":27443,"tid":27477,"ts":326459210335,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":456126},
-{"pid":27443,"tid":27477,"ts":326459210365,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1038,"tdur":458,"tts":456157},
-{"pid":27443,"tid":27477,"ts":326459210396,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":456188},
-{"pid":27443,"tid":27477,"ts":326459210396,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":946,"tdur":366,"tts":456188},
-{"pid":27443,"tid":27477,"ts":326459210488,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":152,"tdur":61,"tts":456279},
-{"pid":27443,"tid":27477,"ts":326459210640,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":456340},
-{"pid":27443,"tid":27477,"ts":326459210701,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12648},"dur":92,"tdur":92,"tts":456401},
-{"pid":27443,"tid":27477,"ts":326459210732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456432,"id":"0xaf88aa53f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459210793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456493,"id":"0xaf88aa6cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459211403,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":456615,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459211434,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":456645,"id":"0x300000049"},
-{"pid":27443,"tid":27477,"ts":326459211434,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":456645},
-{"pid":27443,"tid":27477,"ts":326459211586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456798,"id":"0xaf88aa6df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459211678,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":456889,"id":"0xaf88a86cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459217599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456981,"id":"0xaf88a9fff182217a"},
-{"pid":27443,"tid":27477,"ts":326459217599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":456981},
-{"pid":27443,"tid":27477,"ts":326459217629,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":457012},
-{"pid":27443,"tid":27477,"ts":326459217660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":457042,"id":"0xaf88a86df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459220864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459218},"tts":457103,"id":"0xaf88a9e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459220895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":457134},
-{"pid":27443,"tid":27477,"ts":326459222848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":457225,"id":"0xaf88a9f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459222848,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":457225},
-{"pid":27443,"tid":27477,"ts":326459222879,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459217559.0,"frame_time_us":326459218148.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":152,"tts":457256},
-{"pid":27443,"tid":27477,"ts":326459222909,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459217559.0,"frame_time_us":326459218148.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":457286},
-{"pid":27443,"tid":27477,"ts":326459222970,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459234814},"dur":31,"tdur":0,"tts":457378},
-{"pid":27443,"tid":27477,"ts":326459223001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":457378,"id":"0xaf88a9f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459225961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":457469,"id":"0xaf88a9faf182217a"},
-{"pid":27443,"tid":27477,"ts":326459225992,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1587,"tdur":1587,"tts":457469},
-{"pid":27443,"tid":27477,"ts":326459225992,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1587,"tdur":1587,"tts":457469},
-{"pid":27443,"tid":27477,"ts":326459226022,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":457500},
-{"pid":27443,"tid":27477,"ts":326459226022,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1526,"tdur":1526,"tts":457500},
-{"pid":27443,"tid":27477,"ts":326459226053,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1495,"tdur":1496,"tts":457530},
-{"pid":27443,"tid":27477,"ts":326459226053,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":31,"tts":457530},
-{"pid":27443,"tid":27477,"ts":326459226083,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":457561},
-{"pid":27443,"tid":27477,"ts":326459226083,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":457561,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459226114,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":457591},
-{"pid":27443,"tid":27477,"ts":326459226144,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":428,"tdur":427,"tts":457622},
-{"pid":27443,"tid":27477,"ts":326459226633,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":915,"tdur":916,"tts":458110},
-{"pid":27443,"tid":27477,"ts":326459226663,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":96},"dur":306,"tdur":305,"tts":458141},
-{"pid":27443,"tid":27477,"ts":326459226969,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":96},"dur":61,"tdur":61,"tts":458446},
-{"pid":27443,"tid":27477,"ts":326459227060,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":96},"tts":458538},
-{"pid":27443,"tid":27477,"ts":326459227213,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":458690},
-{"pid":27443,"tid":27477,"ts":326459227213,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":458690},
-{"pid":27443,"tid":27477,"ts":326459227213,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":91,"tts":458721},
-{"pid":27443,"tid":27477,"ts":326459227365,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":458843},
-{"pid":27443,"tid":27477,"ts":326459227365,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":458843},
-{"pid":27443,"tid":27477,"ts":326459227365,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":458843},
-{"pid":27443,"tid":27477,"ts":326459227396,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":458873},
-{"pid":27443,"tid":27477,"ts":326459227396,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":458873,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459227426,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":458904},
-{"pid":27443,"tid":27477,"ts":326459227426,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":458904},
-{"pid":27443,"tid":27477,"ts":326459227487,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":458965,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459227518,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":178}},"tts":458995,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459227518,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":458995,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459227823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":459117,"id":"0xaf88a9fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459227823,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":459117},
-{"pid":27443,"tid":27477,"ts":326459227823,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":62,"tts":459117},
-{"pid":27443,"tid":27477,"ts":326459227854,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":459148,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459227854,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":459148},
-{"pid":27443,"tid":27477,"ts":326459227884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":459179,"id":"0xaf88a9f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459227884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":459209,"id":"0xaf88a9f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459227915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":459209},
-{"pid":27443,"tid":27477,"ts":326459227915,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":459209},
-{"pid":27443,"tid":27477,"ts":326459227915,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":459240,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459227945,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":0,"tts":459240},
-{"pid":27443,"tid":27477,"ts":326459227945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":459240,"id":"0xaf88a9f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459227976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":459270,"id":"0xaf88a9f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459227976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":459270},
-{"pid":27443,"tid":27477,"ts":326459227976,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":459270},
-{"pid":27443,"tid":27477,"ts":326459228006,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":459301,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459228006,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":459301},
-{"pid":27443,"tid":27477,"ts":326459228037,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":459331,"id":"0xaf88a9f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459228037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1159,"tdur":1160,"tts":459331},
-{"pid":27443,"tid":27477,"ts":326459228037,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1129,"tdur":1129,"tts":459331},
-{"pid":27443,"tid":27477,"ts":326459228037,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":459331},
-{"pid":27443,"tid":27477,"ts":326459228067,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":459362},
-{"pid":27443,"tid":27477,"ts":326459228067,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":459362},
-{"pid":27443,"tid":27477,"ts":326459228098,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":459392},
-{"pid":27443,"tid":27477,"ts":326459228159,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1007,"tdur":1007,"tts":459453},
-{"pid":27443,"tid":27477,"ts":326459228189,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":977,"tdur":976,"tts":459484},
-{"pid":27443,"tid":27477,"ts":326459228189,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":946,"tdur":946,"tts":459484},
-{"pid":27443,"tid":27477,"ts":326459228189,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":459484,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459228281,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459575},
-{"pid":27443,"tid":27477,"ts":326459228281,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":459575},
-{"pid":27443,"tid":27477,"ts":326459228311,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":459606},
-{"pid":27443,"tid":27477,"ts":326459228342,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459636},
-{"pid":27443,"tid":27477,"ts":326459228372,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459667},
-{"pid":27443,"tid":27459,"ts":326459227579,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6532031},
-{"pid":27443,"tid":27459,"ts":326459227609,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6532061},
-{"pid":27443,"tid":27459,"ts":326459227640,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6532092},
-{"pid":27443,"tid":27459,"ts":326459228067,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6532153},
-{"pid":27443,"tid":27459,"ts":326459228098,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":611,"tts":6532183},
-{"pid":27443,"tid":27459,"ts":326459228250,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":397,"tts":6532366},
-{"pid":27443,"tid":27459,"ts":326459228281,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6532366},
-{"pid":27443,"tid":27459,"ts":326459228586,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":54,"frame":"0x78c60000"}},"tts":6532702,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459228617,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":6532702},
-{"pid":27443,"tid":27459,"ts":326459228647,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6532733,"id":"0xaf88a9f0f182217a"},
-{"pid":27443,"tid":27459,"ts":326459228647,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6532763},
-{"pid":27443,"tid":27459,"ts":326459228739,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":61,"tts":6532824},
-{"pid":27443,"tid":27459,"ts":326459228769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6532855,"id":"0xaf88aa6ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459228891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6532977,"id":"0xaf88a9dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459228891,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6532977},
-{"pid":27443,"tid":27459,"ts":326459228922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6533007,"id":"0xaf88a86cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459228922,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6533007},
-{"pid":27443,"tid":27459,"ts":326459228922,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6533007},
-{"pid":27443,"tid":27459,"ts":326459228983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6533068,"id":"0xaf88a9d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459228983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6533068},
-{"pid":27443,"tid":27459,"ts":326459229013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6533099,"id":"0xaf88a9d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459229013,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6533099,"id":"0xaf88a86df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459229013,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6533099},
-{"pid":27443,"tid":27459,"ts":326459229044,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6533129},
-{"pid":27443,"tid":27459,"ts":326459229715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6533190,"id":"0xaf88a9d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459229746,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":27865,"tdur":10133,"tts":6533221},
-{"pid":27443,"tid":27459,"ts":326459229746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6533221,"id":"0xaf88a9dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459229776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6533251,"id":"0xaf88a86ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459229776,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":27835,"tdur":10103,"tts":6533251},
-{"pid":27443,"tid":27459,"ts":326459229776,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":97},"tts":6533251},
-{"pid":27443,"tid":27459,"ts":326459229807,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6533282},
-{"pid":27443,"tid":27459,"ts":326459229837,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":17519,"tdur":6837,"tts":6533312},
-{"pid":27443,"tid":27459,"ts":326459229868,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6533343},
-{"pid":27443,"tid":27459,"ts":326459229898,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":54,"frame":"0x78c60000"}},"dur":17428,"tdur":6745,"tts":6533374},
-{"pid":27443,"tid":27459,"ts":326459229960,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":17366,"tdur":6684,"tts":6533435},
-{"pid":27443,"tid":27459,"ts":326459229990,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6533465},
-{"pid":27443,"tid":27459,"ts":326459230234,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6533709},
-{"pid":27443,"tid":27459,"ts":326459230265,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":30,"tts":6533740},
-{"pid":27443,"tid":27459,"ts":326459247295,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6540088},
-{"pid":27443,"tid":27459,"ts":326459247356,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2533,"tdur":2533,"tts":6540149},
-{"pid":27443,"tid":27459,"ts":326459247387,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6540210},
-{"pid":27443,"tid":27459,"ts":326459247417,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6540210},
-{"pid":27443,"tid":27459,"ts":326459247448,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6540241},
-{"pid":27443,"tid":27459,"ts":326459247844,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6540637},
-{"pid":27443,"tid":27459,"ts":326459247875,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6540668},
-{"pid":27443,"tid":27459,"ts":326459247905,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1984,"tdur":1984,"tts":6540698},
-{"pid":27443,"tid":27459,"ts":326459247905,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1832,"tdur":1801,"tts":6540729},
-{"pid":27443,"tid":27459,"ts":326459247936,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":305,"tdur":305,"tts":6540729},
-{"pid":27443,"tid":27459,"ts":326459248241,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":6541034},
-{"pid":27443,"tid":27459,"ts":326459248455,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":61,"tts":6541278},
-{"pid":27443,"tid":27459,"ts":326459248577,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6541370},
-{"pid":27443,"tid":27459,"ts":326459248577,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":6541370},
-{"pid":27443,"tid":27459,"ts":326459249737,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6542530},
-{"pid":27443,"tid":27459,"ts":326459249767,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":6542591},
-{"pid":27443,"tid":27459,"ts":326459249889,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":97},"dur":550,"tdur":489,"tts":6542682},
-{"pid":27443,"tid":27459,"ts":326459249920,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":519,"tdur":458,"tts":6542713},
-{"pid":27443,"tid":27459,"ts":326459250256,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":30,"tdur":31,"tts":6542987},
-{"pid":27443,"tid":27459,"ts":326459250286,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":0,"tdur":0,"tts":6543018},
-{"pid":27443,"tid":27459,"ts":326459250317,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":0,"tdur":0,"tts":6543049},
-{"pid":27443,"tid":27459,"ts":326459250317,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":30,"tdur":30,"tts":6543049},
-{"pid":27443,"tid":27459,"ts":326459250347,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":0,"tdur":0,"tts":6543079},
-{"pid":27443,"tid":27459,"ts":326459250347,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":31,"tdur":31,"tts":6543079},
-{"pid":27443,"tid":27459,"ts":326459250378,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":0,"tdur":0,"tts":6543110},
-{"pid":27443,"tid":27459,"ts":326459250378,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":30,"tdur":0,"tts":6543140},
-{"pid":27443,"tid":27469,"ts":326459227762,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":289577},
-{"pid":27443,"tid":27469,"ts":326459227762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289577,"id":"0xaf88a9f5f182217a"},
-{"pid":27443,"tid":27469,"ts":326459254132,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3784,"tdur":122,"tts":289638},
-{"pid":27443,"tid":27469,"ts":326459254162,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":3724,"tdur":61,"tts":289668},
-{"pid":27443,"tid":27469,"ts":326459254193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289699,"id":"0xaf88a98ff182217a"},
-{"pid":27443,"tid":27471,"ts":326459254223,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":5158,"tdur":92,"tts":350068},
-{"pid":27443,"tid":27471,"ts":326459254254,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":5097,"tdur":61,"tts":350099},
-{"pid":27443,"tid":27469,"ts":326459257916,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":733,"tdur":732,"tts":289760},
-{"pid":27443,"tid":27469,"ts":326459257916,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":702,"tts":289760},
-{"pid":27443,"tid":27469,"ts":326459257947,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":95,"tileId":{"id_ref":"0x7c4fdf58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":289790},
-{"pid":27443,"tid":27469,"ts":326459257947,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":289821},
-{"pid":27443,"tid":27469,"ts":326459258008,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":289851},
-{"pid":27443,"tid":27469,"ts":326459258038,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":95,"tileId":{"id_ref":"0x7c4fdf58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":289882},
-{"pid":27443,"tid":27469,"ts":326459258069,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":289913,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326459258618,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":290462},
-{"pid":27443,"tid":27469,"ts":326459258649,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":290492},
-{"pid":27443,"tid":27469,"ts":326459258649,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":290492},
-{"pid":27443,"tid":27469,"ts":326459258679,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":95,"tileId":{"id_ref":"0x7c311a10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":290523},
-{"pid":27443,"tid":27469,"ts":326459258679,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":290523},
-{"pid":27443,"tid":27469,"ts":326459258710,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":290553},
-{"pid":27443,"tid":27469,"ts":326459258740,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":95,"tileId":{"id_ref":"0x7c311a10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":290584},
-{"pid":27443,"tid":27469,"ts":326459258740,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":290584,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326459259320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350129,"id":"0xaf88a98af182217a"},
-{"pid":27443,"tid":27469,"ts":326459259412,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":291255},
-{"pid":27443,"tid":27469,"ts":326459259412,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":291255},
-{"pid":27443,"tid":27469,"ts":326459259442,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":291286},
-{"pid":27443,"tid":27469,"ts":326459259442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291286,"id":"0xaf88a984f182217a"},
-{"pid":27443,"tid":27469,"ts":326459264478,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":61,"tts":291347},
-{"pid":27443,"tid":27469,"ts":326459264509,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":152,"tdur":30,"tts":291378},
-{"pid":27443,"tid":27469,"ts":326459264509,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291378,"id":"0xaf88a980f182217a"},
-{"pid":27443,"tid":27471,"ts":326459264539,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":91,"tts":350221},
-{"pid":27443,"tid":27471,"ts":326459264570,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":31,"tts":350251},
-{"pid":27443,"tid":27469,"ts":326459264661,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":291408},
-{"pid":27443,"tid":27469,"ts":326459264661,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":291408},
-{"pid":27443,"tid":27469,"ts":326459264692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291439,"id":"0xaf88a981f182217a"},
-{"pid":27443,"tid":27471,"ts":326459264722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350282,"id":"0xaf88a982f182217a"},
-{"pid":27443,"tid":27469,"ts":326459280990,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":291469},
-{"pid":27443,"tid":27469,"ts":326459281020,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":291500},
-{"pid":27443,"tid":27469,"ts":326459281051,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291530,"id":"0xaf88a999f182217a"},
-{"pid":27443,"tid":27469,"ts":326459281051,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":61,"tts":291530},
-{"pid":27443,"tid":27469,"ts":326459281142,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":291561},
-{"pid":27443,"tid":27469,"ts":326459281142,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291561,"id":"0xaf88a99af182217a"},
-{"pid":27443,"tid":27469,"ts":326459281173,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":291591},
-{"pid":27443,"tid":27469,"ts":326459281173,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":291591},
-{"pid":27443,"tid":27469,"ts":326459281203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291622,"id":"0xaf88a994f182217a"},
-{"pid":27443,"tid":27469,"ts":326459303025,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":336,"tdur":153,"tts":291652},
-{"pid":27443,"tid":27469,"ts":326459303056,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":274,"tdur":91,"tts":291683},
-{"pid":27443,"tid":27469,"ts":326459303056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291683,"id":"0xaf88a9acf182217a"},
-{"pid":27443,"tid":27471,"ts":326459303086,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":367,"tdur":92,"tts":350373},
-{"pid":27443,"tid":27471,"ts":326459303117,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":305,"tdur":30,"tts":350404},
-{"pid":27443,"tid":27469,"ts":326459303361,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":291805},
-{"pid":27443,"tid":27469,"ts":326459303361,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":291805},
-{"pid":27443,"tid":27469,"ts":326459303361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291805,"id":"0xaf88a9adf182217a"},
-{"pid":27443,"tid":27471,"ts":326459303392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350434,"id":"0xaf88a9aef182217a"},
-{"pid":27443,"tid":27469,"ts":326459305864,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":291866},
-{"pid":27443,"tid":27469,"ts":326459305894,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":291896},
-{"pid":27443,"tid":27469,"ts":326459305925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291927,"id":"0xaf88a9a4f182217a"},
-{"pid":27443,"tid":27469,"ts":326459305925,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":291927},
-{"pid":27443,"tid":27469,"ts":326459305925,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":291927},
-{"pid":27443,"tid":27469,"ts":326459305955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291957,"id":"0xaf88a9a5f182217a"},
-{"pid":27443,"tid":27469,"ts":326459305955,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":291957},
-{"pid":27443,"tid":27469,"ts":326459305955,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":291988},
-{"pid":27443,"tid":27469,"ts":326459305986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291988,"id":"0xaf88a9a6f182217a"},
-{"pid":27443,"tid":27469,"ts":326459320910,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":62,"tts":292079},
-{"pid":27443,"tid":27477,"ts":326459228372,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":459667},
-{"pid":27443,"tid":27477,"ts":326459228403,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":459697},
-{"pid":27443,"tid":27477,"ts":326459228433,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459728},
-{"pid":27443,"tid":27477,"ts":326459228433,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":459728},
-{"pid":27443,"tid":27477,"ts":326459228464,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459758},
-{"pid":27443,"tid":27477,"ts":326459228464,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":459789},
-{"pid":27443,"tid":27477,"ts":326459228495,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459789},
-{"pid":27443,"tid":27477,"ts":326459228525,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":459819},
-{"pid":27443,"tid":27477,"ts":326459228556,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459850},
-{"pid":27443,"tid":27477,"ts":326459228586,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459880},
-{"pid":27443,"tid":27477,"ts":326459228586,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":459880},
-{"pid":27443,"tid":27477,"ts":326459228617,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459911},
-{"pid":27443,"tid":27477,"ts":326459228647,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459942},
-{"pid":27443,"tid":27477,"ts":326459228647,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":459942},
-{"pid":27443,"tid":27477,"ts":326459228678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":459972},
-{"pid":27443,"tid":27477,"ts":326459228678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":460003},
-{"pid":27443,"tid":27477,"ts":326459228708,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460003},
-{"pid":27443,"tid":27477,"ts":326459228739,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460033},
-{"pid":27443,"tid":27477,"ts":326459228739,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":460033},
-{"pid":27443,"tid":27477,"ts":326459228769,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":460064},
-{"pid":27443,"tid":27477,"ts":326459228800,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460094},
-{"pid":27443,"tid":27477,"ts":326459228891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460186},
-{"pid":27443,"tid":27477,"ts":326459228922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460216},
-{"pid":27443,"tid":27477,"ts":326459228922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":460216},
-{"pid":27443,"tid":27477,"ts":326459228952,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460247},
-{"pid":27443,"tid":27477,"ts":326459228952,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":460277},
-{"pid":27443,"tid":27477,"ts":326459228983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":460277},
-{"pid":27443,"tid":27477,"ts":326459229013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":460308},
-{"pid":27443,"tid":27477,"ts":326459229044,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":460338},
-{"pid":27443,"tid":27477,"ts":326459229074,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":460369},
-{"pid":27443,"tid":27477,"ts":326459229105,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":460399},
-{"pid":27443,"tid":27477,"ts":326459229105,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":460399},
-{"pid":27443,"tid":27477,"ts":326459229135,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":460430},
-{"pid":27443,"tid":27477,"ts":326459229166,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":460460,"id":"0xaf88a9f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459229196,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":460491,"id":"0xaf88a9f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459229196,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":460491},
-{"pid":27443,"tid":27477,"ts":326459229196,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":122,"tts":460491},
-{"pid":27443,"tid":27477,"ts":326459229227,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":460521},
-{"pid":27443,"tid":27477,"ts":326459229227,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":460521},
-{"pid":27443,"tid":27477,"ts":326459229227,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":460521},
-{"pid":27443,"tid":27477,"ts":326459229258,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":460552},
-{"pid":27443,"tid":27477,"ts":326459229288,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":460582},
-{"pid":27443,"tid":27477,"ts":326459229319,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":460613},
-{"pid":27443,"tid":27477,"ts":326459229349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":460644,"id":"0xaf88a9f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459229349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":152,"tts":460644},
-{"pid":27443,"tid":27477,"ts":326459229349,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":152,"tts":460644},
-{"pid":27443,"tid":27477,"ts":326459229380,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":97},"tts":460674},
-{"pid":27443,"tid":27477,"ts":326459229410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":460705,"id":"0xaf88a86ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459229471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":460766,"id":"0xaf88a9daf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459229502,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":460796},
-{"pid":27443,"tid":27477,"ts":326459229502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":460796,"id":"0xaf88a9f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459229532,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2503,"tdur":1739,"tts":460827},
-{"pid":27443,"tid":27477,"ts":326459229532,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2503,"tdur":1739,"tts":460827},
-{"pid":27443,"tid":27477,"ts":326459229532,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":460827},
-{"pid":27443,"tid":27477,"ts":326459229563,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2441,"tdur":1679,"tts":460857},
-{"pid":27443,"tid":27477,"ts":326459229593,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":96},"dur":1313,"tdur":1037,"tts":460888},
-{"pid":27443,"tid":27477,"ts":326459229624,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":96},"dur":274,"tdur":275,"tts":460918},
-{"pid":27443,"tid":27477,"ts":326459229898,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":96},"dur":31,"tdur":30,"tts":461193},
-{"pid":27443,"tid":27477,"ts":326459229929,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":96},"tts":461223},
-{"pid":27443,"tid":27477,"ts":326459230143,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":461437},
-{"pid":27443,"tid":27477,"ts":326459230143,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":461437},
-{"pid":27443,"tid":27477,"ts":326459230143,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":461437},
-{"pid":27443,"tid":27477,"ts":326459230173,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":461468},
-{"pid":27443,"tid":27477,"ts":326459230173,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":461468,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459230234,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":461529},
-{"pid":27443,"tid":27477,"ts":326459230875,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":461895},
-{"pid":27443,"tid":27477,"ts":326459230906,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":641,"tdur":275,"tts":461925},
-{"pid":27443,"tid":27477,"ts":326459230936,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":461956},
-{"pid":27443,"tid":27477,"ts":326459230967,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":549,"tdur":184,"tts":461986},
-{"pid":27443,"tid":27477,"ts":326459231028,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12648},"dur":30,"tdur":31,"tts":462047},
-{"pid":27443,"tid":27477,"ts":326459231058,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":462078,"id":"0xaf88aa6ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459231547,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":462200,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459231577,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":462231,"id":"0x30000004a"},
-{"pid":27443,"tid":27477,"ts":326459231577,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":366,"tdur":244,"tts":462231},
-{"pid":27443,"tid":27477,"ts":326459231730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":462383,"id":"0xaf88aa68f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459231974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":462505,"id":"0xaf88a86ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459231974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":462505,"id":"0xaf88a9d4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459232035,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":462566,"id":"0xaf88a9f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459232065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":462597},
-{"pid":27443,"tid":27477,"ts":326459232065,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":91,"tts":462597},
-{"pid":27443,"tid":27477,"ts":326459232096,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":462627,"id":"0x30000004d"},
-{"pid":27443,"tid":27477,"ts":326459232096,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":0,"tts":462627},
-{"pid":27443,"tid":27477,"ts":326459232126,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":462658,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459232157,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":462688,"id":"0xaf88a868f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459234660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":462749,"id":"0xaf88a9f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459234660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":462749},
-{"pid":27443,"tid":27477,"ts":326459234690,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":462780},
-{"pid":27443,"tid":27477,"ts":326459234721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":462810,"id":"0xaf88a869f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459236064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459234},"tts":462902,"id":"0xaf88a9f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459236094,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":462933},
-{"pid":27443,"tid":27477,"ts":326459242473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":462994,"id":"0xaf88a98cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459242503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":213,"tts":462994},
-{"pid":27443,"tid":27477,"ts":326459242534,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459234241.0,"frame_time_us":326459234830.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":463024},
-{"pid":27443,"tid":27477,"ts":326459242564,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459234241.0,"frame_time_us":326459234830.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":123,"tdur":122,"tts":463055},
-{"pid":27443,"tid":27477,"ts":326459242656,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459251496},"dur":31,"tdur":31,"tts":463146},
-{"pid":27443,"tid":27477,"ts":326459242687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":463177,"id":"0xaf88a98df182217a"},
-{"pid":27443,"tid":27477,"ts":326459250530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":463268,"id":"0xaf88a98ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459250561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":3479,"tdur":1831,"tts":463299},
-{"pid":27443,"tid":27477,"ts":326459250561,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":3449,"tdur":1800,"tts":463299},
-{"pid":27443,"tid":27477,"ts":326459250561,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":463299},
-{"pid":27443,"tid":27477,"ts":326459250591,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":3419,"tdur":1770,"tts":463329},
-{"pid":27443,"tid":27477,"ts":326459250591,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":3419,"tdur":1770,"tts":463329},
-{"pid":27443,"tid":27477,"ts":326459250622,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":463360},
-{"pid":27443,"tid":27477,"ts":326459250622,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":463360},
-{"pid":27443,"tid":27477,"ts":326459250622,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":463360,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459250652,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":463390},
-{"pid":27443,"tid":27477,"ts":326459250683,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":641,"tdur":458,"tts":463421},
-{"pid":27443,"tid":27477,"ts":326459251385,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":2594,"tdur":1129,"tts":463940},
-{"pid":27443,"tid":27477,"ts":326459251385,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":97},"dur":397,"tdur":366,"tts":463940},
-{"pid":27443,"tid":27477,"ts":326459251782,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":97},"dur":30,"tdur":30,"tts":464306},
-{"pid":27443,"tid":27477,"ts":326459251843,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":97},"tts":464367},
-{"pid":27443,"tid":27477,"ts":326459253308,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":464520},
-{"pid":27443,"tid":27477,"ts":326459253338,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":641,"tdur":519,"tts":464550},
-{"pid":27443,"tid":27477,"ts":326459253369,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":464581},
-{"pid":27443,"tid":27477,"ts":326459253552,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":464764},
-{"pid":27443,"tid":27477,"ts":326459253704,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":464825},
-{"pid":27443,"tid":27477,"ts":326459253735,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":2},"dur":183,"tdur":183,"tts":464825},
-{"pid":27443,"tid":27477,"ts":326459253796,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":464886},
-{"pid":27443,"tid":27477,"ts":326459253796,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":464886,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459253826,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":464916},
-{"pid":27443,"tid":27477,"ts":326459253857,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":5,"num_edges":2},"dur":30,"tdur":30,"tts":464947},
-{"pid":27443,"tid":27477,"ts":326459253887,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":465008,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459253918,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":465038,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459253949,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":465038,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459254040,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459251},"tts":465130,"id":"0xaf88a98df182217a"},
-{"pid":27443,"tid":27477,"ts":326459254071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":465161},
-{"pid":27443,"tid":27477,"ts":326459254071,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":465161},
-{"pid":27443,"tid":27477,"ts":326459257886,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":465283,"id":"0xaf88a98ff182217a"},
-{"pid":27443,"tid":27459,"ts":326459250408,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":97},"dur":31,"tdur":31,"tts":6543140},
-{"pid":27443,"tid":27459,"ts":326459250439,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6543171,"id":"0x30000004b"},
-{"pid":27443,"tid":27459,"ts":326459250469,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":7081,"tdur":92,"tts":6543201},
-{"pid":27443,"tid":27459,"ts":326459250469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6543201,"id":"0xaf88a98ef182217a"},
-{"pid":27443,"tid":27459,"ts":326459257580,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6543323},
-{"pid":27443,"tid":27459,"ts":326459257672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6543415,"id":"0xaf88a9daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459257672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":91,"tts":6543415},
-{"pid":27443,"tid":27459,"ts":326459257825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6543476,"id":"0xaf88a86ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459257855,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":6543476},
-{"pid":27443,"tid":27459,"ts":326459257855,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":0,"tts":6543476},
-{"pid":27443,"tid":27459,"ts":326459257916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6543537,"id":"0xaf88a9dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459257916,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":1099,"tts":6543537},
-{"pid":27443,"tid":27459,"ts":326459257947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6543567,"id":"0xaf88a9d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459257947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6543567,"id":"0xaf88a868f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459257947,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1037,"tdur":1038,"tts":6543567},
-{"pid":27443,"tid":27459,"ts":326459258008,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":976,"tdur":977,"tts":6543628},
-{"pid":27443,"tid":27459,"ts":326459258038,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6543659,"id":"0x30000004d"},
-{"pid":27443,"tid":27459,"ts":326459258069,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":824,"tdur":824,"tts":6543689},
-{"pid":27443,"tid":27459,"ts":326459258099,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":794,"tdur":793,"tts":6543720},
-{"pid":27443,"tid":27459,"ts":326459258160,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6543781},
-{"pid":27443,"tid":27459,"ts":326459258191,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6543812},
-{"pid":27443,"tid":27459,"ts":326459258221,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6543842},
-{"pid":27443,"tid":27459,"ts":326459258252,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6543873},
-{"pid":27443,"tid":27459,"ts":326459258282,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":6543903},
-{"pid":27443,"tid":27459,"ts":326459258435,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":396,"tts":6544056},
-{"pid":27443,"tid":27459,"ts":326459258466,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6544086},
-{"pid":27443,"tid":27459,"ts":326459258740,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":55,"frame":"0x78c60000"}},"tts":6544361,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459258771,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":6544391},
-{"pid":27443,"tid":27459,"ts":326459258801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6544422,"id":"0xaf88a989f182217a"},
-{"pid":27443,"tid":27459,"ts":326459258832,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6544452},
-{"pid":27443,"tid":27459,"ts":326459258923,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":31,"tdur":31,"tts":6544544},
-{"pid":27443,"tid":27459,"ts":326459258923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6544544,"id":"0xaf88aa69f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459259045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6544666,"id":"0xaf88a9d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459259045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6544666},
-{"pid":27443,"tid":27459,"ts":326459259076,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6544697,"id":"0xaf88a869f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459259076,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6544697},
-{"pid":27443,"tid":27459,"ts":326459259076,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6544697},
-{"pid":27443,"tid":27459,"ts":326459259137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6544758,"id":"0xaf88a9d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459259137,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6544758},
-{"pid":27443,"tid":27459,"ts":326459260571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6544910,"id":"0xaf88a9d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459260602,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":19747,"tdur":11598,"tts":6544910},
-{"pid":27443,"tid":27459,"ts":326459260632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6544941,"id":"0xaf88a9d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459260663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6544971,"id":"0xaf88a86af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459260663,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":19655,"tdur":11506,"tts":6544971},
-{"pid":27443,"tid":27459,"ts":326459260663,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":98},"tts":6544971},
-{"pid":27443,"tid":27459,"ts":326459260694,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6545002},
-{"pid":27443,"tid":27459,"ts":326459260724,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":15657,"tdur":8271,"tts":6545032},
-{"pid":27443,"tid":27459,"ts":326459260755,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6545063},
-{"pid":27443,"tid":27459,"ts":326459260785,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":55,"frame":"0x78c60000"}},"dur":15565,"tdur":8149,"tts":6545124},
-{"pid":27443,"tid":27459,"ts":326459260907,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":15443,"tdur":8058,"tts":6545215},
-{"pid":27443,"tid":27459,"ts":326459260907,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6545246},
-{"pid":27443,"tid":27459,"ts":326459260907,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":6545246},
-{"pid":27443,"tid":27459,"ts":326459262952,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6545521},
-{"pid":27443,"tid":27459,"ts":326459263013,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":30,"tts":6545582},
-{"pid":27443,"tid":27459,"ts":326459267011,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6549549},
-{"pid":27443,"tid":27459,"ts":326459274122,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6551075},
-{"pid":27443,"tid":27459,"ts":326459276320,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6553242},
-{"pid":27443,"tid":27459,"ts":326459276381,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2686,"tdur":2564,"tts":6553303},
-{"pid":27443,"tid":27459,"ts":326459276412,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6553364},
-{"pid":27443,"tid":27459,"ts":326459276442,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6553364},
-{"pid":27443,"tid":27459,"ts":326459276473,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6553395},
-{"pid":27443,"tid":27459,"ts":326459276869,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6553822},
-{"pid":27443,"tid":27459,"ts":326459276900,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6553822},
-{"pid":27443,"tid":27459,"ts":326459276930,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2137,"tdur":2014,"tts":6553853},
-{"pid":27443,"tid":27477,"ts":326459257916,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":465283},
-{"pid":27443,"tid":27477,"ts":326459257947,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":465313},
-{"pid":27443,"tid":27477,"ts":326459257947,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":465313,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459257947,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":465313},
-{"pid":27443,"tid":27477,"ts":326459257977,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":465344,"id":"0xaf88a988f182217a"},
-{"pid":27443,"tid":27477,"ts":326459258008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":465374,"id":"0xaf88a988f182217a"},
-{"pid":27443,"tid":27477,"ts":326459258008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1190,"tdur":1190,"tts":465374},
-{"pid":27443,"tid":27477,"ts":326459258008,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1190,"tdur":1190,"tts":465374},
-{"pid":27443,"tid":27477,"ts":326459258008,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":465405},
-{"pid":27443,"tid":27477,"ts":326459258038,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":465405},
-{"pid":27443,"tid":27477,"ts":326459258038,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":152,"tts":465405},
-{"pid":27443,"tid":27477,"ts":326459258069,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":465435},
-{"pid":27443,"tid":27477,"ts":326459258191,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1007,"tdur":1007,"tts":465557},
-{"pid":27443,"tid":27477,"ts":326459258221,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":977,"tdur":976,"tts":465588},
-{"pid":27443,"tid":27477,"ts":326459258221,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":977,"tdur":976,"tts":465588},
-{"pid":27443,"tid":27477,"ts":326459258221,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":465588,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459258313,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":465679},
-{"pid":27443,"tid":27477,"ts":326459258343,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465710},
-{"pid":27443,"tid":27477,"ts":326459258374,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465740},{"pid":27443,"tid":27477,"ts":326459258374,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":465740},
-{"pid":27443,"tid":27477,"ts":326459258404,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":465771},
-{"pid":27443,"tid":27477,"ts":326459258435,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465801},
-{"pid":27443,"tid":27477,"ts":326459258466,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465832},
-{"pid":27443,"tid":27477,"ts":326459258466,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465832},
-{"pid":27443,"tid":27477,"ts":326459258496,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465862},
-{"pid":27443,"tid":27477,"ts":326459258496,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":465862},
-{"pid":27443,"tid":27477,"ts":326459258527,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465893},
-{"pid":27443,"tid":27477,"ts":326459258557,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465924},
-{"pid":27443,"tid":27477,"ts":326459258557,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":465924},
-{"pid":27443,"tid":27477,"ts":326459258588,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465954},
-{"pid":27443,"tid":27477,"ts":326459258618,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":465985},
-{"pid":27443,"tid":27477,"ts":326459258618,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":465985},
-{"pid":27443,"tid":27477,"ts":326459258649,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466015},
-{"pid":27443,"tid":27477,"ts":326459258649,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":466046},
-{"pid":27443,"tid":27477,"ts":326459258679,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":466046},
-{"pid":27443,"tid":27477,"ts":326459258710,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466076},
-{"pid":27443,"tid":27477,"ts":326459258710,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":466107},
-{"pid":27443,"tid":27477,"ts":326459258740,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466107},
-{"pid":27443,"tid":27477,"ts":326459258771,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466137},
-{"pid":27443,"tid":27477,"ts":326459258801,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466168},
-{"pid":27443,"tid":27477,"ts":326459258801,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":466168},
-{"pid":27443,"tid":27477,"ts":326459258832,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466198},
-{"pid":27443,"tid":27477,"ts":326459258923,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":466290},
-{"pid":27443,"tid":27477,"ts":326459258954,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466320},
-{"pid":27443,"tid":27477,"ts":326459258984,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466351},
-{"pid":27443,"tid":27477,"ts":326459259015,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466381},
-{"pid":27443,"tid":27477,"ts":326459259015,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":466381},
-{"pid":27443,"tid":27477,"ts":326459259045,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":466412},
-{"pid":27443,"tid":27477,"ts":326459259045,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":466412},
-{"pid":27443,"tid":27477,"ts":326459259106,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":466473},
-{"pid":27443,"tid":27477,"ts":326459259137,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":466503},
-{"pid":27443,"tid":27477,"ts":326459259168,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":466534},
-{"pid":27443,"tid":27477,"ts":326459259168,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":466534},
-{"pid":27443,"tid":27477,"ts":326459259229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":466595,"id":"0xaf88a989f182217a"},
-{"pid":27443,"tid":27477,"ts":326459259229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":466595},
-{"pid":27443,"tid":27477,"ts":326459259259,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":466625},
-{"pid":27443,"tid":27477,"ts":326459259412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":466687,"id":"0xaf88a98af182217a"},
-{"pid":27443,"tid":27477,"ts":326459259412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":466687},
-{"pid":27443,"tid":27477,"ts":326459259442,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":466717},
-{"pid":27443,"tid":27477,"ts":326459259442,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9953280,"bytes_used_for_staging_resources":10616832,"pending_copy_count":30,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":466717,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459259473,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":466748},
-{"pid":27443,"tid":27477,"ts":326459259473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":466748,"id":"0xaf88a985f182217a"},
-{"pid":27443,"tid":27477,"ts":326459259503,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":466778,"id":"0xaf88a98bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459259503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":466778},
-{"pid":27443,"tid":27477,"ts":326459259534,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459250922.0,"frame_time_us":326459251511.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":244,"tdur":244,"tts":466809},
-{"pid":27443,"tid":27477,"ts":326459259564,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459250922.0,"frame_time_us":326459251511.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":214,"tdur":214,"tts":466839},
-{"pid":27443,"tid":27477,"ts":326459259595,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":466870},
-{"pid":27443,"tid":27477,"ts":326459259625,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":98},"tts":466900},
-{"pid":27443,"tid":27477,"ts":326459259686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":466961,"id":"0xaf88a86af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459259686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":466961,"id":"0xaf88a9d6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459259717,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":466992},
-{"pid":27443,"tid":27477,"ts":326459259747,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":467022},
-{"pid":27443,"tid":27477,"ts":326459259747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467022,"id":"0xaf88a986f182217a"},
-{"pid":27443,"tid":27477,"ts":326459259808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":467083,"id":"0xaf88a984f182217a"},
-{"pid":27443,"tid":27477,"ts":326459259808,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":467083},
-{"pid":27443,"tid":27477,"ts":326459259808,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":467083},
-{"pid":27443,"tid":27477,"ts":326459259808,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":467083,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459259839,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":467114},
-{"pid":27443,"tid":27477,"ts":326459259839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":467114,"id":"0xaf88a985f182217a"},
-{"pid":27443,"tid":27477,"ts":326459259839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":336,"tdur":306,"tts":467144},
-{"pid":27443,"tid":27477,"ts":326459259869,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":306,"tdur":306,"tts":467144},
-{"pid":27443,"tid":27477,"ts":326459259869,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":214,"tdur":214,"tts":467144},
-{"pid":27443,"tid":27477,"ts":326459259869,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":467144},
-{"pid":27443,"tid":27477,"ts":326459259900,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":467175},
-{"pid":27443,"tid":27477,"ts":326459259900,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":467175},
-{"pid":27443,"tid":27477,"ts":326459259961,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":467236},
-{"pid":27443,"tid":27477,"ts":326459259961,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":467236},
-{"pid":27443,"tid":27477,"ts":326459259992,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":467266},
-{"pid":27443,"tid":27477,"ts":326459260053,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":467327},
-{"pid":27443,"tid":27477,"ts":326459260083,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":467358},
-{"pid":27443,"tid":27477,"ts":326459260083,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":467358},
-{"pid":27443,"tid":27477,"ts":326459260144,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":467419},
-{"pid":27443,"tid":27477,"ts":326459260175,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":467450},
-{"pid":27443,"tid":27477,"ts":326459260205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":467480,"id":"0xaf88a986f182217a"},
-{"pid":27443,"tid":27477,"ts":326459260205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4059,"tdur":2167,"tts":467480},
-{"pid":27443,"tid":27477,"ts":326459260205,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4059,"tdur":2167,"tts":467480},
-{"pid":27443,"tid":27477,"ts":326459260205,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3724,"tdur":1800,"tts":467511},
-{"pid":27443,"tid":27477,"ts":326459260236,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":97},"dur":946,"tdur":854,"tts":467511},
-{"pid":27443,"tid":27477,"ts":326459260266,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":97},"dur":275,"tdur":275,"tts":467541},
-{"pid":27443,"tid":27477,"ts":326459260541,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":97},"dur":30,"tdur":30,"tts":467816},
-{"pid":27443,"tid":27477,"ts":326459260571,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":97},"tts":467846},
-{"pid":27443,"tid":27477,"ts":326459260724,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":467999},
-{"pid":27443,"tid":27477,"ts":326459260724,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":467999},
-{"pid":27443,"tid":27477,"ts":326459260724,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":467999},
-{"pid":27443,"tid":27477,"ts":326459260755,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":468029},
-{"pid":27443,"tid":27477,"ts":326459260755,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":2}},"tts":468029,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459260816,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":468090},
-{"pid":27443,"tid":27477,"ts":326459261151,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":468335},
-{"pid":27443,"tid":27477,"ts":326459261182,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":2380,"tdur":580,"tts":468365},
-{"pid":27443,"tid":27477,"ts":326459261182,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":468396},
-{"pid":27443,"tid":27477,"ts":326459261212,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":2259,"tdur":457,"tts":468396},
-{"pid":27443,"tid":27477,"ts":326459261487,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":427,"tdur":61,"tts":468670},
-{"pid":27443,"tid":27477,"ts":326459261518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468701,"id":"0xaf88aa6af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459261945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468762,"id":"0xaf88aa6bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459263532,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":468915,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459263562,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":468976,"id":"0x30000004b"},
-{"pid":27443,"tid":27477,"ts":326459263593,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":275,"tdur":274,"tts":468976},
-{"pid":27443,"tid":27477,"ts":326459263807,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":469189,"id":"0xaf88aa64f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459263898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":469281,"id":"0xaf88a86bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459263898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":469281,"id":"0xaf88a9d0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459263929,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":335,"tdur":336,"tts":469311},
-{"pid":27443,"tid":27477,"ts":326459263959,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":469342},
-{"pid":27443,"tid":27477,"ts":326459263959,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":469342},
-{"pid":27443,"tid":27477,"ts":326459264051,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":469433},
-{"pid":27443,"tid":27477,"ts":326459264051,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":469433},
-{"pid":27443,"tid":27477,"ts":326459264081,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":469464},
-{"pid":27443,"tid":27477,"ts":326459264081,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":469464},
-{"pid":27443,"tid":27477,"ts":326459264081,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":469464,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27466,"ts":326459262006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":269494},
-{"pid":27443,"tid":27466,"ts":326459262036,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269525,"id":"0xccc44106"},
-{"pid":27443,"tid":27466,"ts":326459262433,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":269616},
-{"pid":27443,"tid":27466,"ts":326459262464,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":269647},
-{"pid":27443,"tid":27466,"ts":326459262464,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269647,"id":"0xc4c1580a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459263868,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":269769,"id":"0xaf88aa64f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459263898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":269769},
-{"pid":27443,"tid":27466,"ts":326459263898,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269769,"id":"0xccc44202"},
-{"pid":27443,"tid":27466,"ts":326459266004,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":269861},
-{"pid":27443,"tid":27466,"ts":326459266035,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":92,"tts":269891},
-{"pid":27443,"tid":27466,"ts":326459266065,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":269922,"id":"0xba44d102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459266096,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":269952,"id":"0xaf88a99df182217a"},
-{"pid":27443,"tid":27466,"ts":326459273970,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":270044},
-{"pid":27443,"tid":27466,"ts":326459274031,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":270074},
-{"pid":27443,"tid":27466,"ts":326459274031,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270074,"id":"0xba44d302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459274061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":270105,"id":"0xaf88a99ef182217a"},
-{"pid":27443,"tid":27466,"ts":326459282485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":270257,"id":"0xaf88aa65f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459282516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":270288},
-{"pid":27443,"tid":27466,"ts":326459282516,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270288,"id":"0xccc44402"},
-{"pid":27443,"tid":27466,"ts":326459283309,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":270379},
-{"pid":27443,"tid":27466,"ts":326459283340,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":270410},
-{"pid":27443,"tid":27466,"ts":326459283340,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270410,"id":"0xba44d402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459283370,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":270440},
-{"pid":27443,"tid":27466,"ts":326459283401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":270471,"id":"0xaf88a990f182217a"},
-{"pid":27443,"tid":27466,"ts":326459284377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":270532,"id":"0xaf88aa66f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459284408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":270563},
-{"pid":27443,"tid":27466,"ts":326459284408,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270563,"id":"0xccc44506"},
-{"pid":27443,"tid":27466,"ts":326459284591,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":61,"tts":270654},
-{"pid":27443,"tid":27466,"ts":326459284621,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":270685},
-{"pid":27443,"tid":27466,"ts":326459284621,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270685,"id":"0xc4c15b0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459285140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":270776,"id":"0xaf88aa67f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459285140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":270776},
-{"pid":27443,"tid":27466,"ts":326459285140,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270776,"id":"0xccc44602"},
-{"pid":27443,"tid":27466,"ts":326459288040,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":270898},
-{"pid":27443,"tid":27466,"ts":326459288101,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":270959},
-{"pid":27443,"tid":27466,"ts":326459288101,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":270959,"id":"0xba44d502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459288131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":270990,"id":"0xaf88a991f182217a"},
-{"pid":27443,"tid":27466,"ts":326459289749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":271112},
-{"pid":27443,"tid":27466,"ts":326459289779,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":62,"tts":271142},
-{"pid":27443,"tid":27466,"ts":326459289779,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":271142,"id":"0xba44d602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459289810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271173,"id":"0xaf88a992f182217a"},
-{"pid":27443,"tid":27466,"ts":326459303788,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":271265},
-{"pid":27443,"tid":27466,"ts":326459303819,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":271295},
-{"pid":27443,"tid":27466,"ts":326459303849,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":271326,"id":"0xba44d802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459303880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271356,"id":"0xaf88a9a8f182217a"},
-{"pid":27443,"tid":27466,"ts":326459306657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":271478,"id":"0xaf88aa60f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459306657,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":271478},
-{"pid":27443,"tid":27466,"ts":326459306688,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":271509,"id":"0xccc44802"},
-{"pid":27443,"tid":27466,"ts":326459307481,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":271631},
-{"pid":27443,"tid":27466,"ts":326459307481,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":271631},
-{"pid":27443,"tid":27466,"ts":326459307512,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":271661,"id":"0xba44d902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459307542,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":271692},
-{"pid":27443,"tid":27466,"ts":326459307542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":271692,"id":"0xaf88a9a2f182217a"},
-{"pid":27443,"tid":27466,"ts":326459309526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":271814,"id":"0xaf88aa61f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459309526,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":271814},
-{"pid":27443,"tid":27466,"ts":326459309526,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":271814,"id":"0xccc44a06"},
-{"pid":27443,"tid":27466,"ts":326459309740,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":62,"tts":271905},
-{"pid":27443,"tid":27466,"ts":326459309770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":271936},
-{"pid":27443,"tid":27466,"ts":326459309770,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":271936,"id":"0xc4c15e0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459310289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272058,"id":"0xaf88aa62f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459310289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":272058},
-{"pid":27443,"tid":27466,"ts":326459310289,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":272058,"id":"0xccc44b02"},
-{"pid":27443,"tid":27466,"ts":326459312365,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":272180},
-{"pid":27443,"tid":27466,"ts":326459312395,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":272211},
-{"pid":27443,"tid":27477,"ts":326459264112,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":469494},
-{"pid":27443,"tid":27477,"ts":326459264142,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":469525},
-{"pid":27443,"tid":27477,"ts":326459264203,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":469586,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459264234,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":469616,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459264234,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":469616,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459264295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":469678,"id":"0xaf88a987f182217a"},
-{"pid":27443,"tid":27477,"ts":326459264295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":469678},
-{"pid":27443,"tid":27477,"ts":326459264295,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":469678},
-{"pid":27443,"tid":27477,"ts":326459264325,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":469708,"id":"0x30000004e"},
-{"pid":27443,"tid":27477,"ts":326459264325,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":469739},
-{"pid":27443,"tid":27477,"ts":326459264356,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":469739,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459264386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":469769,"id":"0xaf88a864f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459264783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":469952,"id":"0xaf88a980f182217a"},
-{"pid":27443,"tid":27477,"ts":326459264783,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":469952},
-{"pid":27443,"tid":27477,"ts":326459264783,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":469952},
-{"pid":27443,"tid":27477,"ts":326459264814,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":469983,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459264814,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":469983},
-{"pid":27443,"tid":27477,"ts":326459264844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":470013,"id":"0xaf88a983f182217a"},
-{"pid":27443,"tid":27477,"ts":326459264844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470013,"id":"0xaf88a981f182217a"},
-{"pid":27443,"tid":27477,"ts":326459264875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":470044},
-{"pid":27443,"tid":27477,"ts":326459264875,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":470044},
-{"pid":27443,"tid":27477,"ts":326459264875,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":470074,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459264905,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":470074},
-{"pid":27443,"tid":27477,"ts":326459264905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470074,"id":"0xaf88a982f182217a"},
-{"pid":27443,"tid":27477,"ts":326459264936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":470105},
-{"pid":27443,"tid":27477,"ts":326459264936,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":470105},
-{"pid":27443,"tid":27477,"ts":326459264936,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":470105,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459264936,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":470105},
-{"pid":27443,"tid":27477,"ts":326459264966,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":470135,"id":"0xaf88a99cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459264997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470166,"id":"0xaf88a983f182217a"},
-{"pid":27443,"tid":27477,"ts":326459264997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":470166},
-{"pid":27443,"tid":27477,"ts":326459264997,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":470166},
-{"pid":27443,"tid":27477,"ts":326459264997,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":470196},
-{"pid":27443,"tid":27477,"ts":326459265027,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":470196},
-{"pid":27443,"tid":27477,"ts":326459265027,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":470196},
-{"pid":27443,"tid":27477,"ts":326459265058,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":470227},
-{"pid":27443,"tid":27477,"ts":326459265088,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":470288},
-{"pid":27443,"tid":27477,"ts":326459265119,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":470288},
-{"pid":27443,"tid":27477,"ts":326459265149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470318,"id":"0xaf88a99cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459265149,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":123,"tts":470318},
-{"pid":27443,"tid":27477,"ts":326459265149,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":123,"tts":470318},
-{"pid":27443,"tid":27477,"ts":326459265149,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":470318},
-{"pid":27443,"tid":27477,"ts":326459265180,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":470349},
-{"pid":27443,"tid":27477,"ts":326459265180,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":470349},
-{"pid":27443,"tid":27477,"ts":326459265180,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":470349},
-{"pid":27443,"tid":27477,"ts":326459265241,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":470410},
-{"pid":27443,"tid":27477,"ts":326459265241,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":470410},
-{"pid":27443,"tid":27477,"ts":326459266157,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470441,"id":"0xaf88a99df182217a"},
-{"pid":27443,"tid":27477,"ts":326459266187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":470471},
-{"pid":27443,"tid":27477,"ts":326459266187,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":0,"tts":470502},
-{"pid":27443,"tid":27477,"ts":326459266218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":470502,"id":"0xaf88a865f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459274519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470532,"id":"0xaf88a99ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459274550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":470563},
-{"pid":27443,"tid":27477,"ts":326459274580,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459267604.0,"frame_time_us":326459268193.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":470593},
-{"pid":27443,"tid":27477,"ts":326459274611,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459267604.0,"frame_time_us":326459268193.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":470624},
-{"pid":27443,"tid":27477,"ts":326459274641,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459284859},"dur":31,"tdur":31,"tts":470654},
-{"pid":27443,"tid":27477,"ts":326459274641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":470654,"id":"0xaf88a99ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459279616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":470746,"id":"0xaf88a998f182217a"},
-{"pid":27443,"tid":27477,"ts":326459279616,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1465,"tdur":1435,"tts":470776},
-{"pid":27443,"tid":27477,"ts":326459279647,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1434,"tdur":1435,"tts":470776},
-{"pid":27443,"tid":27477,"ts":326459279647,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":470776},
-{"pid":27443,"tid":27477,"ts":326459279647,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1434,"tdur":1435,"tts":470776},
-{"pid":27443,"tid":27477,"ts":326459279677,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1404,"tdur":1404,"tts":470807},
-{"pid":27443,"tid":27477,"ts":326459279677,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":470807},
-{"pid":27443,"tid":27459,"ts":326459276961,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1953,"tdur":1831,"tts":6553883},
-{"pid":27443,"tid":27459,"ts":326459276961,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":305,"tts":6553883},
-{"pid":27443,"tid":27459,"ts":326459277297,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6554219},
-{"pid":27443,"tid":27459,"ts":326459277480,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6554402},
-{"pid":27443,"tid":27459,"ts":326459277571,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6554494},
-{"pid":27443,"tid":27459,"ts":326459277571,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1343,"tdur":1190,"tts":6554524},
-{"pid":27443,"tid":27459,"ts":326459278914,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":6555714},
-{"pid":27443,"tid":27459,"ts":326459278945,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":6555775},
-{"pid":27443,"tid":27459,"ts":326459279067,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":98},"dur":458,"tdur":458,"tts":6555867},
-{"pid":27443,"tid":27459,"ts":326459279097,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":428,"tdur":427,"tts":6555898},
-{"pid":27443,"tid":27459,"ts":326459279341,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":31,"tdur":30,"tts":6556142},
-{"pid":27443,"tid":27459,"ts":326459279372,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":31,"tdur":31,"tts":6556172},
-{"pid":27443,"tid":27459,"ts":326459279403,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":0,"tdur":0,"tts":6556203},
-{"pid":27443,"tid":27459,"ts":326459279433,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":0,"tdur":0,"tts":6556233},
-{"pid":27443,"tid":27459,"ts":326459279433,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":31,"tdur":0,"tts":6556233},
-{"pid":27443,"tid":27459,"ts":326459279464,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":0,"tdur":0,"tts":6556264},
-{"pid":27443,"tid":27459,"ts":326459279464,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":30,"tdur":30,"tts":6556264},
-{"pid":27443,"tid":27459,"ts":326459279494,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":0,"tdur":0,"tts":6556294},
-{"pid":27443,"tid":27459,"ts":326459279494,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":98},"dur":31,"tdur":31,"tts":6556294},
-{"pid":27443,"tid":27459,"ts":326459279525,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6556325,"id":"0x30000004d"},
-{"pid":27443,"tid":27459,"ts":326459279555,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":733,"tdur":92,"tts":6556355},
-{"pid":27443,"tid":27459,"ts":326459279555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6556355,"id":"0xaf88a998f182217a"},
-{"pid":27443,"tid":27459,"ts":326459280318,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6556477},
-{"pid":27443,"tid":27459,"ts":326459280379,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459278},"tts":6556539,"id":"0xaf88a9c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6556539},
-{"pid":27443,"tid":27459,"ts":326459280440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6556600,"id":"0xaf88a9d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":152,"tts":6556600},
-{"pid":27443,"tid":27459,"ts":326459280471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6556630,"id":"0xaf88a9d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6556630,"id":"0xaf88a855f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459280501,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":92,"tdur":91,"tts":6556661},
-{"pid":27443,"tid":27459,"ts":326459280501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6556661,"id":"0xaf88a866f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459280562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6556722,"id":"0xaf88a9d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280623,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6556783,"id":"0xaf88a9d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6556783},
-{"pid":27443,"tid":27459,"ts":326459280654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6556813,"id":"0xaf88a86bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459280654,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6556813},
-{"pid":27443,"tid":27459,"ts":326459280654,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6556813},
-{"pid":27443,"tid":27459,"ts":326459280715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6556905,"id":"0xaf88a9d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1740,"tdur":1190,"tts":6556905},
-{"pid":27443,"tid":27459,"ts":326459280745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6556905,"id":"0xaf88a9d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459280776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6556935,"id":"0xaf88a864f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459280776,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1709,"tdur":1160,"tts":6556935},
-{"pid":27443,"tid":27459,"ts":326459280867,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1618,"tdur":1068,"tts":6557027},
-{"pid":27443,"tid":27459,"ts":326459280898,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6557057,"id":"0x30000004e"},
-{"pid":27443,"tid":27459,"ts":326459280898,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1465,"tdur":916,"tts":6557057},
-{"pid":27443,"tid":27459,"ts":326459280929,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1434,"tdur":855,"tts":6557118},
-{"pid":27443,"tid":27459,"ts":326459281020,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6557179},
-{"pid":27443,"tid":27459,"ts":326459281081,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6557240},
-{"pid":27443,"tid":27459,"ts":326459281112,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6557271},
-{"pid":27443,"tid":27459,"ts":326459281142,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6557302},
-{"pid":27443,"tid":27459,"ts":326459281203,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1160,"tdur":610,"tts":6557363},
-{"pid":27443,"tid":27459,"ts":326459281386,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":946,"tdur":427,"tts":6557515},
-{"pid":27443,"tid":27459,"ts":326459281386,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6557515},
-{"pid":27443,"tid":27459,"ts":326459281447,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6557546},
-{"pid":27443,"tid":27459,"ts":326459282241,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":56,"frame":"0x78c60000"}},"tts":6557851,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459282241,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":0,"tts":6557881},
-{"pid":27443,"tid":27459,"ts":326459282271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6557881,"id":"0xaf88a996f182217a"},
-{"pid":27443,"tid":27459,"ts":326459282302,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6557912},
-{"pid":27443,"tid":27459,"ts":326459282394,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":62,"tts":6558003},
-{"pid":27443,"tid":27459,"ts":326459282424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6558034,"id":"0xaf88aa65f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459282516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6558156,"id":"0xaf88a9d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459282546,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":6558156},
-{"pid":27443,"tid":27459,"ts":326459282546,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6558156,"id":"0xaf88a9ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459282577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6558187,"id":"0xaf88a865f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459279677,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":470837},
-{"pid":27443,"tid":27477,"ts":326459279708,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":470837,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459279708,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":470868},
-{"pid":27443,"tid":27477,"ts":326459279738,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":458,"tdur":458,"tts":470868},
-{"pid":27443,"tid":27477,"ts":326459280257,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":793,"tts":471387},
-{"pid":27443,"tid":27477,"ts":326459280288,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":98},"dur":244,"tdur":214,"tts":471417},
-{"pid":27443,"tid":27477,"ts":326459280532,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":98},"dur":30,"tdur":31,"tts":471661},
-{"pid":27443,"tid":27477,"ts":326459280562,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":98},"tts":471692},
-{"pid":27443,"tid":27477,"ts":326459280715,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":471844},
-{"pid":27443,"tid":27477,"ts":326459280745,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":471875},
-{"pid":27443,"tid":27477,"ts":326459280745,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":306,"tdur":305,"tts":471875},
-{"pid":27443,"tid":27477,"ts":326459280745,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":471875},
-{"pid":27443,"tid":27477,"ts":326459280867,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":471997},
-{"pid":27443,"tid":27477,"ts":326459280898,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":472028},
-{"pid":27443,"tid":27477,"ts":326459280898,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":472028},
-{"pid":27443,"tid":27477,"ts":326459280898,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":472028},
-{"pid":27443,"tid":27477,"ts":326459280929,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":472058,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459280929,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":472058},
-{"pid":27443,"tid":27477,"ts":326459280959,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":472089},
-{"pid":27443,"tid":27477,"ts":326459280990,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":472119,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459281020,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":472150,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459281051,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":472180,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459281081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":472211,"id":"0xaf88a999f182217a"},
-{"pid":27443,"tid":27477,"ts":326459281112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":472241},
-{"pid":27443,"tid":27477,"ts":326459281112,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":61,"tts":472241},
-{"pid":27443,"tid":27477,"ts":326459281112,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":472241,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459281142,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":472272},
-{"pid":27443,"tid":27477,"ts":326459281173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":472302,"id":"0xaf88a99bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459281203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":472333,"id":"0xaf88a99af182217a"},
-{"pid":27443,"tid":27477,"ts":326459281203,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":472333},
-{"pid":27443,"tid":27477,"ts":326459281234,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":472363},
-{"pid":27443,"tid":27477,"ts":326459281234,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":472363,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459281234,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":472363},
-{"pid":27443,"tid":27477,"ts":326459281264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":472394,"id":"0xaf88a995f182217a"},
-{"pid":27443,"tid":27477,"ts":326459281264,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":472424,"id":"0xaf88a99bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459281295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1587,"tdur":1221,"tts":472424},
-{"pid":27443,"tid":27477,"ts":326459281295,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1587,"tdur":1221,"tts":472424},
-{"pid":27443,"tid":27477,"ts":326459281295,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":472424},
-{"pid":27443,"tid":27477,"ts":326459281325,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":472455},
-{"pid":27443,"tid":27477,"ts":326459281325,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":91,"tts":472455},
-{"pid":27443,"tid":27477,"ts":326459281325,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":61,"tts":472485},
-{"pid":27443,"tid":27477,"ts":326459281478,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1404,"tdur":1068,"tts":472577},
-{"pid":27443,"tid":27477,"ts":326459281478,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1404,"tdur":1068,"tts":472577},
-{"pid":27443,"tid":27477,"ts":326459281478,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1373,"tdur":1038,"tts":472577},
-{"pid":27443,"tid":27477,"ts":326459281508,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":472607,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459281569,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":472669},
-{"pid":27443,"tid":27477,"ts":326459281600,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":472699},
-{"pid":27443,"tid":27477,"ts":326459281630,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":472730},
-{"pid":27443,"tid":27477,"ts":326459281661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":472760},
-{"pid":27443,"tid":27477,"ts":326459281661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":472760},
-{"pid":27443,"tid":27477,"ts":326459281692,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":472791},
-{"pid":27443,"tid":27477,"ts":326459281722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":472821},
-{"pid":27443,"tid":27477,"ts":326459281722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":472852},
-{"pid":27443,"tid":27477,"ts":326459281783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":472882},
-{"pid":27443,"tid":27477,"ts":326459281783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":366,"tdur":31,"tts":472882},
-{"pid":27443,"tid":27477,"ts":326459282180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":472943},
-{"pid":27443,"tid":27477,"ts":326459282210,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":472974},
-{"pid":27443,"tid":27477,"ts":326459282241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473004},
-{"pid":27443,"tid":27477,"ts":326459282241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473004},
-{"pid":27443,"tid":27477,"ts":326459282271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473035},
-{"pid":27443,"tid":27477,"ts":326459282271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":473035},
-{"pid":27443,"tid":27477,"ts":326459282302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":473065},
-{"pid":27443,"tid":27477,"ts":326459282332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473096},
-{"pid":27443,"tid":27477,"ts":326459282332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":473096},
-{"pid":27443,"tid":27477,"ts":326459282363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473126},
-{"pid":27443,"tid":27477,"ts":326459282394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473157},
-{"pid":27443,"tid":27477,"ts":326459282394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":473187},
-{"pid":27443,"tid":27477,"ts":326459282424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":473187},
-{"pid":27443,"tid":27477,"ts":326459282455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473218},
-{"pid":27443,"tid":27477,"ts":326459282485,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473248},
-{"pid":27443,"tid":27477,"ts":326459282485,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":473248},
-{"pid":27443,"tid":27477,"ts":326459282577,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":473340},
-{"pid":27443,"tid":27477,"ts":326459282607,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473370},
-{"pid":27443,"tid":27477,"ts":326459282638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473401},
-{"pid":27443,"tid":27477,"ts":326459282638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":473432},
-{"pid":27443,"tid":27477,"ts":326459282668,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473432},
-{"pid":27443,"tid":27477,"ts":326459282699,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":473462},
-{"pid":27443,"tid":27477,"ts":326459282699,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":473462},
-{"pid":27443,"tid":27477,"ts":326459282729,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":473523},
-{"pid":27443,"tid":27477,"ts":326459282790,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":473554},
-{"pid":27443,"tid":27477,"ts":326459282790,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":473554},
-{"pid":27443,"tid":27477,"ts":326459282821,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":473584},
-{"pid":27443,"tid":27477,"ts":326459282851,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":473615},
-{"pid":27443,"tid":27477,"ts":326459282851,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":473615,"id":"0xaf88a997f182217a"},
-{"pid":27443,"tid":27477,"ts":326459282912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":473676,"id":"0xaf88a994f182217a"},
-{"pid":27443,"tid":27477,"ts":326459282912,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":473676},
-{"pid":27443,"tid":27477,"ts":326459282912,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":473676},
-{"pid":27443,"tid":27477,"ts":326459282912,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":473676,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459282943,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":473706},
-{"pid":27443,"tid":27477,"ts":326459282943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":473706,"id":"0xaf88a995f182217a"},
-{"pid":27443,"tid":27477,"ts":326459282973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":473737},
-{"pid":27443,"tid":27477,"ts":326459282973,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":473737},
-{"pid":27443,"tid":27477,"ts":326459282973,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":473737},
-{"pid":27443,"tid":27477,"ts":326459282973,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":473737},
-{"pid":27443,"tid":27477,"ts":326459283004,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":473767},
-{"pid":27443,"tid":27477,"ts":326459283004,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":473767},
-{"pid":27443,"tid":27477,"ts":326459283065,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":473828},
-{"pid":27443,"tid":27477,"ts":326459283065,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":473828},
-{"pid":27443,"tid":27477,"ts":326459283095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":473859,"id":"0xaf88a996f182217a"},
-{"pid":27443,"tid":27477,"ts":326459283095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":152,"tts":473859},
-{"pid":27443,"tid":27477,"ts":326459283095,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":122,"tts":473889},
-{"pid":27443,"tid":27477,"ts":326459283126,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":99},"tts":473889},
-{"pid":27443,"tid":27477,"ts":326459283187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":473950,"id":"0xaf88a867f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459283187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":473950,"id":"0xaf88a9edf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459283218,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":473981},
-{"pid":27443,"tid":27477,"ts":326459283248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":474011,"id":"0xaf88a997f182217a"},
-{"pid":27443,"tid":27477,"ts":326459283248,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3022,"tdur":1618,"tts":474042},
-{"pid":27443,"tid":27477,"ts":326459283279,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2991,"tdur":1618,"tts":474042},
-{"pid":27443,"tid":27477,"ts":326459283279,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":0,"tts":474042},
-{"pid":27443,"tid":27477,"ts":326459283309,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2930,"tdur":1557,"tts":474072},
-{"pid":27443,"tid":27477,"ts":326459283309,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":98},"dur":855,"tdur":855,"tts":474072},
-{"pid":27443,"tid":27477,"ts":326459283340,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":98},"dur":244,"tdur":244,"tts":474103},
-{"pid":27443,"tid":27477,"ts":326459283584,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":98},"dur":30,"tdur":31,"tts":474347},
-{"pid":27443,"tid":27477,"ts":326459283614,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":98},"tts":474378},
-{"pid":27443,"tid":27477,"ts":326459283736,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":474500},
-{"pid":27443,"tid":27477,"ts":326459283767,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":474530},
-{"pid":27443,"tid":27477,"ts":326459283767,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":474530},
-{"pid":27443,"tid":27477,"ts":326459283767,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":474530},
-{"pid":27443,"tid":27477,"ts":326459283797,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":474561,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459283858,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":474622},
-{"pid":27443,"tid":27477,"ts":326459284164,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":474927},
-{"pid":27443,"tid":27477,"ts":326459284164,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":305,"tts":474927},
-{"pid":27443,"tid":27477,"ts":326459284194,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":474958},
-{"pid":27443,"tid":27477,"ts":326459284194,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":489,"tdur":213,"tts":474958},
-{"pid":27443,"tid":27477,"ts":326459284286,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":0,"tdur":0,"tts":475049},
-{"pid":27443,"tid":27477,"ts":326459284316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475080,"id":"0xaf88aa66f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459284713,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":475202,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459284744,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":475232,"id":"0x30000004d"},
-{"pid":27443,"tid":27459,"ts":326459282577,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6558187},
-{"pid":27443,"tid":27459,"ts":326459282607,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6558217},
-{"pid":27443,"tid":27459,"ts":326459282638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6558248,"id":"0xaf88a9ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459282668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6558278},
-{"pid":27443,"tid":27459,"ts":326459283370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6558339,"id":"0xaf88a9edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459283370,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":21822,"tdur":12880,"tts":6558339},
-{"pid":27443,"tid":27459,"ts":326459283401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6558370,"id":"0xaf88a9eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459283401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6558370,"id":"0xaf88a867f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459283401,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":21761,"tdur":12849,"tts":6558370},
-{"pid":27443,"tid":27459,"ts":326459283431,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":99},"tts":6558400},
-{"pid":27443,"tid":27459,"ts":326459283431,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6558400},
-{"pid":27443,"tid":27459,"ts":326459283462,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":17152,"tdur":9308,"tts":6558431},
-{"pid":27443,"tid":27459,"ts":326459283492,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":0,"tts":6558461},
-{"pid":27443,"tid":27459,"ts":326459283523,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":56,"frame":"0x78c60000"}},"dur":17061,"tdur":9217,"tts":6558492},
-{"pid":27443,"tid":27459,"ts":326459283614,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":16573,"tdur":9126,"tts":6558583},
-{"pid":27443,"tid":27459,"ts":326459283614,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6558583},
-{"pid":27443,"tid":27459,"ts":326459283828,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6558797},
-{"pid":27443,"tid":27459,"ts":326459283858,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":123,"tdur":31,"tts":6558858},
-{"pid":27443,"tid":27459,"ts":326459283858,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":6558858},
-{"pid":27443,"tid":27459,"ts":326459300126,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6567678},
-{"pid":27443,"tid":27459,"ts":326459300614,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2778,"tdur":2717,"tts":6567739},
-{"pid":27443,"tid":27459,"ts":326459300645,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6567770},
-{"pid":27443,"tid":27459,"ts":326459300675,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6567801},
-{"pid":27443,"tid":27459,"ts":326459300675,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6567801},
-{"pid":27443,"tid":27459,"ts":326459301102,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6568258},
-{"pid":27443,"tid":27459,"ts":326459301133,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6568258},
-{"pid":27443,"tid":27459,"ts":326459301164,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2228,"tdur":2167,"tts":6568289},
-{"pid":27443,"tid":27459,"ts":326459301194,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2045,"tdur":1984,"tts":6568319},
-{"pid":27443,"tid":27459,"ts":326459301194,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":6568319},
-{"pid":27443,"tid":27459,"ts":326459301560,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":152,"tts":6568686},
-{"pid":27443,"tid":27459,"ts":326459301743,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6568869},
-{"pid":27443,"tid":27459,"ts":326459301835,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":6568960},
-{"pid":27443,"tid":27459,"ts":326459301866,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1342,"tdur":1313,"tts":6568960},
-{"pid":27443,"tid":27459,"ts":326459303239,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":6570303},
-{"pid":27443,"tid":27459,"ts":326459303269,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":123,"tdur":122,"tts":6570334},
-{"pid":27443,"tid":27459,"ts":326459303392,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":99},"dur":579,"tdur":580,"tts":6570456},
-{"pid":27443,"tid":27459,"ts":326459303422,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":549,"tdur":550,"tts":6570486},
-{"pid":27443,"tid":27459,"ts":326459303697,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":30,"tdur":31,"tts":6570761},
-{"pid":27443,"tid":27459,"ts":326459303727,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":31,"tdur":0,"tts":6570822},
-{"pid":27443,"tid":27459,"ts":326459303758,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":30,"tdur":31,"tts":6570822},
-{"pid":27443,"tid":27459,"ts":326459303788,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":31,"tdur":0,"tts":6570883},
-{"pid":27443,"tid":27459,"ts":326459303819,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":30,"tdur":0,"tts":6570914},
-{"pid":27443,"tid":27459,"ts":326459303849,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":31,"tdur":30,"tts":6570914},
-{"pid":27443,"tid":27459,"ts":326459303880,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":30,"tdur":31,"tts":6570944},
-{"pid":27443,"tid":27459,"ts":326459303910,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":31,"tdur":30,"tts":6570975},
-{"pid":27443,"tid":27459,"ts":326459303941,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":99},"dur":30,"tdur":31,"tts":6571005},
-{"pid":27443,"tid":27459,"ts":326459304002,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6571066,"id":"0x30000004e"},
-{"pid":27443,"tid":27459,"ts":326459304002,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1099,"tdur":92,"tts":6571066},
-{"pid":27443,"tid":27459,"ts":326459304032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6571097,"id":"0xaf88a9a9f182217a"},
-{"pid":27443,"tid":27459,"ts":326459305131,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6571188},
-{"pid":27443,"tid":27459,"ts":326459305223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6571280,"id":"0xaf88a9eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459305223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6571280},
-{"pid":27443,"tid":27459,"ts":326459305253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6571310,"id":"0xaf88a9e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459305253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6571310,"id":"0xaf88a860f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459305284,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6571341},
-{"pid":27443,"tid":27459,"ts":326459305284,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6571341},
-{"pid":27443,"tid":27459,"ts":326459305314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6571371,"id":"0xaf88a9eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459305345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1251,"tts":6571402},
-{"pid":27443,"tid":27459,"ts":326459305345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6571402,"id":"0xaf88a861f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459305345,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1312,"tdur":1191,"tts":6571432},
-{"pid":27443,"tid":27459,"ts":326459305436,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1221,"tdur":1099,"tts":6571493},
-{"pid":27443,"tid":27459,"ts":326459305436,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6571493,"id":"0x300000050"},
-{"pid":27443,"tid":27459,"ts":326459305467,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":946,"tts":6571524},
-{"pid":27443,"tid":27459,"ts":326459305497,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":915,"tts":6571555},
-{"pid":27443,"tid":27477,"ts":326459284774,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":275,"tdur":274,"tts":475263},
-{"pid":27443,"tid":27477,"ts":326459284957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475476,"id":"0xaf88aa67f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459284957,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":475476},
-{"pid":27443,"tid":27477,"ts":326459285079,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":475568,"id":"0xaf88a860f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459286209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475598,"id":"0xaf88a9eff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459286300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459284},"tts":475690,"id":"0xaf88a99ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459286300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":475690},
-{"pid":27443,"tid":27477,"ts":326459286331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":475721,"id":"0xaf88a990f182217a"},
-{"pid":27443,"tid":27477,"ts":326459286331,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":475721},
-{"pid":27443,"tid":27477,"ts":326459286392,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":475751},
-{"pid":27443,"tid":27477,"ts":326459286392,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":475751},
-{"pid":27443,"tid":27477,"ts":326459286422,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":475782,"id":"0x300000050"},
-{"pid":27443,"tid":27477,"ts":326459286453,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":475812},
-{"pid":27443,"tid":27477,"ts":326459286483,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":475843,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459286514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":475873,"id":"0xaf88a861f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459291031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":475965,"id":"0xaf88a991f182217a"},
-{"pid":27443,"tid":27477,"ts":326459291031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":153,"tts":475995},
-{"pid":27443,"tid":27477,"ts":326459291122,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459284285.0,"frame_time_us":326459284874.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":476026},
-{"pid":27443,"tid":27477,"ts":326459291153,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459284285.0,"frame_time_us":326459284874.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":476056},
-{"pid":27443,"tid":27477,"ts":326459291214,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459301540},"dur":30,"tdur":31,"tts":476117},
-{"pid":27443,"tid":27477,"ts":326459291244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476148,"id":"0xaf88a993f182217a"},
-{"pid":27443,"tid":27477,"ts":326459291275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":476178,"id":"0xaf88a992f182217a"},
-{"pid":27443,"tid":27477,"ts":326459291305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":476178},
-{"pid":27443,"tid":27477,"ts":326459291336,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":476209},
-{"pid":27443,"tid":27477,"ts":326459291366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":476239,"id":"0xaf88a862f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459301621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459301},"tts":476300,"id":"0xaf88a993f182217a"},
-{"pid":27443,"tid":27477,"ts":326459301652,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1312,"tdur":397,"tts":476331},
-{"pid":27443,"tid":27477,"ts":326459301652,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1312,"tdur":397,"tts":476331},
-{"pid":27443,"tid":27477,"ts":326459301652,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1312,"tdur":397,"tts":476331},
-{"pid":27443,"tid":27477,"ts":326459301682,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1252,"tdur":336,"tts":476361},
-{"pid":27443,"tid":27477,"ts":326459301682,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":1008,"tdur":92,"tts":476361},
-{"pid":27443,"tid":27477,"ts":326459302690,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":476453},
-{"pid":27443,"tid":27477,"ts":326459302720,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":476484},
-{"pid":27443,"tid":27477,"ts":326459302751,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":476514},
-{"pid":27443,"tid":27477,"ts":326459302751,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":153,"tts":476514},
-{"pid":27443,"tid":27477,"ts":326459302751,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":476514,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459302781,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":476575},
-{"pid":27443,"tid":27477,"ts":326459302812,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":31,"tts":476575},
-{"pid":27443,"tid":27477,"ts":326459302873,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":476636,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459302903,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":476697,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459302934,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":476697,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459303453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":476819,"id":"0xaf88a9acf182217a"},
-{"pid":27443,"tid":27477,"ts":326459303483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":476850},
-{"pid":27443,"tid":27477,"ts":326459303483,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":476850},
-{"pid":27443,"tid":27477,"ts":326459303483,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":476880,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459303514,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":476880},
-{"pid":27443,"tid":27477,"ts":326459303514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476880,"id":"0xaf88a9aff182217a"},
-{"pid":27443,"tid":27477,"ts":326459303544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":476911,"id":"0xaf88a9adf182217a"},
-{"pid":27443,"tid":27477,"ts":326459303544,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":30,"tts":476911},
-{"pid":27443,"tid":27477,"ts":326459303971,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":476972},
-{"pid":27443,"tid":27477,"ts":326459303971,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":476972},
-{"pid":27443,"tid":27477,"ts":326459304002,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":477002,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459304002,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":477002},
-{"pid":27443,"tid":27477,"ts":326459304032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":477033,"id":"0xaf88a9aef182217a"},
-{"pid":27443,"tid":27477,"ts":326459304063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":477063},
-{"pid":27443,"tid":27477,"ts":326459304063,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":62,"tts":477063},
-{"pid":27443,"tid":27477,"ts":326459304063,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":477063,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459304093,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":477094},
-{"pid":27443,"tid":27477,"ts":326459304093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477094,"id":"0xaf88a9aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326459304124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":477125,"id":"0xaf88a9aff182217a"},
-{"pid":27443,"tid":27477,"ts":326459304124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":477125},
-{"pid":27443,"tid":27477,"ts":326459304155,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":477155},
-{"pid":27443,"tid":27477,"ts":326459304155,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":477155},
-{"pid":27443,"tid":27477,"ts":326459304155,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":477155},
-{"pid":27443,"tid":27477,"ts":326459304185,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":477186},
-{"pid":27443,"tid":27477,"ts":326459304185,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":477186},
-{"pid":27443,"tid":27477,"ts":326459304246,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":477247},
-{"pid":27443,"tid":27477,"ts":326459304277,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":477277},
-{"pid":27443,"tid":27477,"ts":326459304277,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":477308,"id":"0xaf88a9a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459304307,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":477308},
-{"pid":27443,"tid":27477,"ts":326459304338,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459300967.0,"frame_time_us":326459301556.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":477338},
-{"pid":27443,"tid":27477,"ts":326459304338,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459300967.0,"frame_time_us":326459301556.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":477338},
-{"pid":27443,"tid":27477,"ts":326459304368,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459318222},"dur":31,"tdur":0,"tts":477399},
-{"pid":27443,"tid":27477,"ts":326459304399,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477399,"id":"0xaf88a9abf182217a"},
-{"pid":27443,"tid":27477,"ts":326459304429,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":477430,"id":"0xaf88a9a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459304429,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1526,"tdur":1495,"tts":477430},{"pid":27443,"tid":27477,"ts":326459304460,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1495,"tdur":1465,"tts":477460},
-{"pid":27443,"tid":27477,"ts":326459304460,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":477460},
-{"pid":27443,"tid":27477,"ts":326459304460,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1465,"tdur":1435,"tts":477460},
-{"pid":27443,"tid":27477,"ts":326459304490,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1435,"tdur":1404,"tts":477491},
-{"pid":27443,"tid":27477,"ts":326459304490,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":477491},
-{"pid":27443,"tid":27477,"ts":326459304490,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":477491},
-{"pid":27443,"tid":27477,"ts":326459304490,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":477521,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459304521,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":477521},
-{"pid":27443,"tid":27477,"ts":326459304551,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":458,"tdur":427,"tts":477552},
-{"pid":27443,"tid":27477,"ts":326459304551,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":477552},
-{"pid":27443,"tid":27477,"ts":326459305070,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":855,"tdur":855,"tts":478040},
-{"pid":27443,"tid":27477,"ts":326459305101,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":99},"dur":244,"tdur":244,"tts":478071},
-{"pid":27443,"tid":27477,"ts":326459305345,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":99},"dur":61,"tdur":61,"tts":478315},
-{"pid":27443,"tid":27477,"ts":326459305406,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":99},"tts":478376},
-{"pid":27443,"tid":27477,"ts":326459305558,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":478528},
-{"pid":27443,"tid":27477,"ts":326459305558,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":478559},
-{"pid":27443,"tid":27477,"ts":326459305589,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":336,"tts":478559},
-{"pid":27443,"tid":27477,"ts":326459305589,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":478559},
-{"pid":27443,"tid":27477,"ts":326459305742,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":478712},
-{"pid":27443,"tid":27477,"ts":326459305772,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":478742},
-{"pid":27443,"tid":27477,"ts":326459305772,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":478742},
-{"pid":27443,"tid":27477,"ts":326459305772,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":478742},
-{"pid":27443,"tid":27477,"ts":326459305803,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":478773,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459305803,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":478773},
-{"pid":27443,"tid":27477,"ts":326459305833,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":478803},
-{"pid":27443,"tid":27477,"ts":326459305864,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":478834,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459305894,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":478864,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459305894,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":478864,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459305955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":478925,"id":"0xaf88a9aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326459305955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":478925},
-{"pid":27443,"tid":27477,"ts":326459305986,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":152,"tts":478956},
-{"pid":27443,"tid":27477,"ts":326459305986,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":478956},
-{"pid":27443,"tid":27477,"ts":326459305986,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":478956},
-{"pid":27443,"tid":27477,"ts":326459306016,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":478986},
-{"pid":27443,"tid":27477,"ts":326459306016,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":478986},
-{"pid":27443,"tid":27477,"ts":326459306108,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":479078},
-{"pid":27443,"tid":27477,"ts":326459306108,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":479078},
-{"pid":27443,"tid":27477,"ts":326459306138,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":479139,"id":"0xaf88a9a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459306169,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":479139},
-{"pid":27443,"tid":27477,"ts":326459306169,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":91,"tts":479139},
-{"pid":27443,"tid":27477,"ts":326459306199,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":479169,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459306199,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":30,"tts":479200},
-{"pid":27443,"tid":27477,"ts":326459306230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":479200,"id":"0xaf88a9a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459306291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":479261,"id":"0xaf88a9a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459306291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":479261},
-{"pid":27443,"tid":27477,"ts":326459306291,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":91,"tts":479261},
-{"pid":27443,"tid":27477,"ts":326459306321,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":479291,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459306352,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":479322},
-{"pid":27443,"tid":27477,"ts":326459306352,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":479352,"id":"0xaf88a9a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459306413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":479383,"id":"0xaf88a9a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459306413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":479383},
-{"pid":27443,"tid":27477,"ts":326459306444,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":91,"tdur":91,"tts":479414},
-{"pid":27443,"tid":27459,"ts":326459305558,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6571616},
-{"pid":27443,"tid":27459,"ts":326459305589,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6571677},
-{"pid":27443,"tid":27459,"ts":326459305650,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6571707},
-{"pid":27443,"tid":27459,"ts":326459305681,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6571738},
-{"pid":27443,"tid":27459,"ts":326459305742,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":641,"tts":6571799},
-{"pid":27443,"tid":27459,"ts":326459305894,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":458,"tts":6571951},
-{"pid":27443,"tid":27459,"ts":326459305894,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6571982},
-{"pid":27443,"tid":27459,"ts":326459306230,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":57,"frame":"0x78c60000"}},"tts":6572318,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459306260,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":6572318},
-{"pid":27443,"tid":27459,"ts":326459306291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6572348,"id":"0xaf88a9a0f182217a"},
-{"pid":27443,"tid":27459,"ts":326459306321,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6572379},
-{"pid":27443,"tid":27459,"ts":326459306444,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":183,"tdur":91,"tts":6572501},
-{"pid":27443,"tid":27459,"ts":326459306566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6572531,"id":"0xaf88aa60f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459306718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6572684,"id":"0xaf88a9e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459306718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6572684},
-{"pid":27443,"tid":27459,"ts":326459306749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6572714,"id":"0xaf88a9e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459306749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6572714,"id":"0xaf88a862f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459306749,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":6572714},
-{"pid":27443,"tid":27459,"ts":326459306749,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":6572745},
-{"pid":27443,"tid":27459,"ts":326459306840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6572806,"id":"0xaf88a9e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459306840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6572806},
-{"pid":27443,"tid":27459,"ts":326459308183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6572897,"id":"0xaf88a9eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459308214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12086,"tdur":10591,"tts":6572928},
-{"pid":27443,"tid":27459,"ts":326459308214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6572928,"id":"0xaf88a9ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459308244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6572958,"id":"0xaf88a863f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459308244,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12025,"tdur":10561,"tts":6572958},
-{"pid":27443,"tid":27459,"ts":326459308244,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":100},"tts":6572958},
-{"pid":27443,"tid":27459,"ts":326459308275,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":6572989},
-{"pid":27443,"tid":27459,"ts":326459308305,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7264,"tdur":7233,"tts":6573050},
-{"pid":27443,"tid":27459,"ts":326459308336,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":6573050},
-{"pid":27443,"tid":27459,"ts":326459308397,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":57,"frame":"0x78c60000"}},"dur":7142,"tdur":7142,"tts":6573111},
-{"pid":27443,"tid":27459,"ts":326459308458,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7081,"tdur":7081,"tts":6573172},
-{"pid":27443,"tid":27459,"ts":326459308488,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6573203},
-{"pid":27443,"tid":27459,"ts":326459308672,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6573386},
-{"pid":27443,"tid":27459,"ts":326459308702,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":30,"tts":6573447},
-{"pid":27443,"tid":27459,"ts":326459311540,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6576255},
-{"pid":27443,"tid":27459,"ts":326459312273,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6577018},
-{"pid":27443,"tid":27459,"ts":326459315508,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6580222},
-{"pid":27443,"tid":27459,"ts":326459315569,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2594,"tdur":2595,"tts":6580283},
-{"pid":27443,"tid":27459,"ts":326459315600,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6580314},
-{"pid":27443,"tid":27459,"ts":326459315630,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6580344},
-{"pid":27443,"tid":27459,"ts":326459315630,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6580344},
-{"pid":27443,"tid":27459,"ts":326459316057,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6580802},
-{"pid":27443,"tid":27459,"ts":326459316088,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6580802},
-{"pid":27443,"tid":27459,"ts":326459316119,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2044,"tdur":2015,"tts":6580863},
-{"pid":27443,"tid":27459,"ts":326459316149,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1862,"tdur":1862,"tts":6580863},
-{"pid":27443,"tid":27459,"ts":326459316149,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":6580863},
-{"pid":27443,"tid":27459,"ts":326459316485,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":184,"tts":6581229},
-{"pid":27443,"tid":27459,"ts":326459316729,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6581443},
-{"pid":27443,"tid":27459,"ts":326459316820,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":6581535},
-{"pid":27443,"tid":27459,"ts":326459316851,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1160,"tts":6581565},
-{"pid":27443,"tid":27459,"ts":326459318011,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":6582725},
-{"pid":27443,"tid":27459,"ts":326459318041,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":6582786},
-{"pid":27443,"tid":27459,"ts":326459318163,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":100},"dur":458,"tdur":457,"tts":6582878},
-{"pid":27443,"tid":27459,"ts":326459318194,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":6582908},
-{"pid":27443,"tid":27459,"ts":326459318438,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":31,"tdur":31,"tts":6583152},
-{"pid":27443,"tid":27459,"ts":326459318469,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":0,"tdur":0,"tts":6583183},
-{"pid":27443,"tid":27459,"ts":326459318499,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":0,"tdur":0,"tts":6583213},
-{"pid":27443,"tid":27459,"ts":326459318499,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":31,"tdur":31,"tts":6583213},
-{"pid":27443,"tid":27459,"ts":326459318530,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":0,"tdur":0,"tts":6583244},
-{"pid":27443,"tid":27459,"ts":326459318560,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":0,"tdur":0,"tts":6583274},
-{"pid":27443,"tid":27459,"ts":326459318560,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":100},"dur":31,"tdur":0,"tts":6583305},
-{"pid":27443,"tid":27459,"ts":326459318621,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6583335,"id":"0x300000050"},
-{"pid":27443,"tid":27459,"ts":326459318621,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1587,"tdur":91,"tts":6583366},
-{"pid":27443,"tid":27477,"ts":326459306444,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":479414,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459306444,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":479414},
-{"pid":27443,"tid":27477,"ts":326459306505,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":479475},
-{"pid":27443,"tid":27477,"ts":326459306535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":479536,"id":"0xaf88a9a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459306566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1190,"tts":479536},
-{"pid":27443,"tid":27477,"ts":326459306566,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1190,"tts":479536},
-{"pid":27443,"tid":27477,"ts":326459306596,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":479566},
-{"pid":27443,"tid":27477,"ts":326459306596,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":479566},
-{"pid":27443,"tid":27477,"ts":326459306627,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":396,"tdur":122,"tts":479597},
-{"pid":27443,"tid":27477,"ts":326459306627,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":366,"tdur":91,"tts":479597},
-{"pid":27443,"tid":27477,"ts":326459307023,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1008,"tdur":976,"tts":479719},
-{"pid":27443,"tid":27477,"ts":326459307023,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":977,"tdur":976,"tts":479719},
-{"pid":27443,"tid":27477,"ts":326459307054,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":916,"tdur":916,"tts":479749},
-{"pid":27443,"tid":27477,"ts":326459307054,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":479749,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459307146,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":479841},
-{"pid":27443,"tid":27477,"ts":326459307176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":479871},
-{"pid":27443,"tid":27477,"ts":326459307207,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":479902},
-{"pid":27443,"tid":27477,"ts":326459307237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":479932},
-{"pid":27443,"tid":27477,"ts":326459307237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":479932},
-{"pid":27443,"tid":27477,"ts":326459307268,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":479963},
-{"pid":27443,"tid":27477,"ts":326459307268,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":479993},
-{"pid":27443,"tid":27477,"ts":326459307298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":479993},
-{"pid":27443,"tid":27477,"ts":326459307329,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480024},
-{"pid":27443,"tid":27477,"ts":326459307329,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":480024},
-{"pid":27443,"tid":27477,"ts":326459307359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":480054},
-{"pid":27443,"tid":27477,"ts":326459307390,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480085},
-{"pid":27443,"tid":27477,"ts":326459307420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480116},
-{"pid":27443,"tid":27477,"ts":326459307420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":480116},
-{"pid":27443,"tid":27477,"ts":326459307451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480146},
-{"pid":27443,"tid":27477,"ts":326459307451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":480146},
-{"pid":27443,"tid":27477,"ts":326459307481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":480177},
-{"pid":27443,"tid":27477,"ts":326459307512,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480207},
-{"pid":27443,"tid":27477,"ts":326459307512,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":480207},
-{"pid":27443,"tid":27477,"ts":326459307542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480238},
-{"pid":27443,"tid":27477,"ts":326459307573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480268},
-{"pid":27443,"tid":27477,"ts":326459307573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480268},
-{"pid":27443,"tid":27477,"ts":326459307603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480299},
-{"pid":27443,"tid":27477,"ts":326459307603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":480299},
-{"pid":27443,"tid":27477,"ts":326459307634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480329},
-{"pid":27443,"tid":27477,"ts":326459307664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480360},
-{"pid":27443,"tid":27477,"ts":326459307725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":480421},
-{"pid":27443,"tid":27477,"ts":326459307756,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480451},
-{"pid":27443,"tid":27477,"ts":326459307786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480482},
-{"pid":27443,"tid":27477,"ts":326459307786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":480482},
-{"pid":27443,"tid":27477,"ts":326459307817,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480512},
-{"pid":27443,"tid":27477,"ts":326459307817,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":480543},
-{"pid":27443,"tid":27477,"ts":326459307847,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":480543},
-{"pid":27443,"tid":27477,"ts":326459307878,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":480573},
-{"pid":27443,"tid":27477,"ts":326459307909,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":480634},
-{"pid":27443,"tid":27477,"ts":326459307939,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":480634},
-{"pid":27443,"tid":27477,"ts":326459307939,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":480634},
-{"pid":27443,"tid":27477,"ts":326459308000,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":480695},
-{"pid":27443,"tid":27477,"ts":326459308000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":480695,"id":"0xaf88a9a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459308031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":480726,"id":"0xaf88a9a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459308031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":153,"tts":480726},
-{"pid":27443,"tid":27477,"ts":326459308061,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":123,"tts":480756},
-{"pid":27443,"tid":27477,"ts":326459308061,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":100},"tts":480756},
-{"pid":27443,"tid":27477,"ts":326459308122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":480817,"id":"0xaf88a863f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459308122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":480817,"id":"0xaf88a9eaf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459308153,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":480879},
-{"pid":27443,"tid":27477,"ts":326459308183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":480879,"id":"0xaf88a9a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459308214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":30,"tdur":31,"tts":480909},
-{"pid":27443,"tid":27477,"ts":326459308214,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":30,"tdur":31,"tts":480909},
-{"pid":27443,"tid":27477,"ts":326459308214,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":480909},
-{"pid":27443,"tid":27477,"ts":326459308214,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":480909},
-{"pid":27443,"tid":27477,"ts":326459308244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":480940,"id":"0xaf88a9a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459308275,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":480970},
-{"pid":27443,"tid":27477,"ts":326459308275,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":92,"tts":480970},
-{"pid":27443,"tid":27477,"ts":326459308305,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":481001,"id":"0x300000051"},
-{"pid":27443,"tid":27477,"ts":326459308305,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":481001},
-{"pid":27443,"tid":27477,"ts":326459308336,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":481031,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459308336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":481062,"id":"0xaf88a87cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459308366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":481062,"id":"0xaf88a9e4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459308397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":481092,"id":"0xaf88a9a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459308397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1953,"tdur":1526,"tts":481092},
-{"pid":27443,"tid":27477,"ts":326459308427,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1923,"tdur":1495,"tts":481123},
-{"pid":27443,"tid":27477,"ts":326459308427,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":481123},
-{"pid":27443,"tid":27477,"ts":326459308427,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1923,"tdur":1495,"tts":481123},
-{"pid":27443,"tid":27477,"ts":326459308458,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":99},"dur":824,"tdur":824,"tts":481153},
-{"pid":27443,"tid":27477,"ts":326459308488,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":99},"dur":245,"tdur":213,"tts":481184},
-{"pid":27443,"tid":27477,"ts":326459308733,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":99},"dur":30,"tdur":30,"tts":481428},
-{"pid":27443,"tid":27477,"ts":326459308763,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":99},"tts":481458},
-{"pid":27443,"tid":27477,"ts":326459308885,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":481580},
-{"pid":27443,"tid":27477,"ts":326459308885,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":62,"tts":481580},
-{"pid":27443,"tid":27477,"ts":326459308916,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":481611},
-{"pid":27443,"tid":27477,"ts":326459308916,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":481611},
-{"pid":27443,"tid":27477,"ts":326459308946,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":481642,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459309007,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":481703},
-{"pid":27443,"tid":27477,"ts":326459309282,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":481977},
-{"pid":27443,"tid":27477,"ts":326459309282,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":305,"tts":482008},
-{"pid":27443,"tid":27477,"ts":326459309312,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":482008},
-{"pid":27443,"tid":27477,"ts":326459309312,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":213,"tts":482008},
-{"pid":27443,"tid":27477,"ts":326459309404,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":0,"tdur":0,"tts":482099},
-{"pid":27443,"tid":27477,"ts":326459309435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":482130,"id":"0xaf88aa61f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459310045,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":482313,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459310075,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":482343,"id":"0x30000004e"},
-{"pid":27443,"tid":27477,"ts":326459310075,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":482343},
-{"pid":27443,"tid":27477,"ts":326459310198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":482466,"id":"0xaf88aa62f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459310320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":482588,"id":"0xaf88a87df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459312517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":482679,"id":"0xaf88a9bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326459312517,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":31,"tts":482679},
-{"pid":27443,"tid":27477,"ts":326459312853,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":482710},
-{"pid":27443,"tid":27477,"ts":326459312883,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":482740},
-{"pid":27443,"tid":27477,"ts":326459312883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":482740,"id":"0xaf88a87ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459318377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459318},"tts":482862,"id":"0xaf88a9abf182217a"},
-{"pid":27443,"tid":27477,"ts":326459318377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":482862},
-{"pid":27443,"tid":27477,"ts":326459319415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":482923,"id":"0xaf88a9bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326459319445,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1557,"tdur":1556,"tts":482954},
-{"pid":27443,"tid":27477,"ts":326459319445,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1557,"tdur":1556,"tts":482954},
-{"pid":27443,"tid":27477,"ts":326459319445,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":482954},
-{"pid":27443,"tid":27477,"ts":326459319476,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1526,"tdur":1526,"tts":482984},
-{"pid":27443,"tid":27477,"ts":326459319476,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1526,"tdur":1526,"tts":482984},
-{"pid":27443,"tid":27477,"ts":326459319506,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":483015},
-{"pid":27443,"tid":27477,"ts":326459319506,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":483015},
-{"pid":27443,"tid":27477,"ts":326459319537,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":483045,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459319567,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":483076},
-{"pid":27443,"tid":27477,"ts":326459319598,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":549,"tdur":549,"tts":483107},
-{"pid":27443,"tid":27477,"ts":326459320208,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":483717},
-{"pid":27443,"tid":27477,"ts":326459320208,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":100},"dur":244,"tdur":244,"tts":483717},
-{"pid":27443,"tid":27477,"ts":326459320452,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":100},"dur":61,"tdur":31,"tts":483961},
-{"pid":27443,"tid":27477,"ts":326459320513,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":100},"tts":484022},
-{"pid":27443,"tid":27477,"ts":326459320636,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":484144},
-{"pid":27443,"tid":27477,"ts":326459320636,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":484144},
-{"pid":27443,"tid":27477,"ts":326459320666,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":484175},
-{"pid":27443,"tid":27477,"ts":326459320788,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":484297},
-{"pid":27443,"tid":27477,"ts":326459320788,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":484297},
-{"pid":27443,"tid":27477,"ts":326459320819,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":484327},
-{"pid":27443,"tid":27477,"ts":326459320819,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":484327},
-{"pid":27443,"tid":27466,"ts":326459312395,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":272241,"id":"0xba44da02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459312456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272272,"id":"0xaf88a9bcf182217a"},
-{"pid":27443,"tid":27466,"ts":326459320117,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":92,"tts":272424},
-{"pid":27443,"tid":27466,"ts":326459320147,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":61,"tts":272455},
-{"pid":27443,"tid":27466,"ts":326459320147,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":272455,"id":"0xba44dc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459320147,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":272455},
-{"pid":27443,"tid":27466,"ts":326459320239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272485,"id":"0xaf88a9bef182217a"},
-{"pid":27443,"tid":27466,"ts":326459321521,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272607,"id":"0xaf88aa63f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459321551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":61,"tts":272638},
-{"pid":27443,"tid":27466,"ts":326459321551,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":272638,"id":"0xccc44c02"},
-{"pid":27443,"tid":27466,"ts":326459322589,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":272730},
-{"pid":27443,"tid":27466,"ts":326459322619,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":272760},
-{"pid":27443,"tid":27466,"ts":326459322619,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":272791,"id":"0xba44dd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459322650,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":272791},
-{"pid":27443,"tid":27466,"ts":326459322680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":272821,"id":"0xaf88a9b6f182217a"},
-{"pid":27443,"tid":27466,"ts":326459324786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":272943,"id":"0xaf88aa7cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459324786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":272974},
-{"pid":27443,"tid":27466,"ts":326459324817,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":272974,"id":"0xccc44e06"},
-{"pid":27443,"tid":27466,"ts":326459325000,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":273065},
-{"pid":27443,"tid":27466,"ts":326459325030,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":62,"tdur":61,"tts":273096},
-{"pid":27443,"tid":27466,"ts":326459325061,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":273126,"id":"0xc4c1610a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459325519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":273248,"id":"0xaf88aa7df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459325519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":273248},
-{"pid":27443,"tid":27466,"ts":326459325519,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":273248,"id":"0xccc44f02"},
-{"pid":27443,"tid":27466,"ts":326459327319,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":123,"tts":273370},
-{"pid":27443,"tid":27466,"ts":326459327350,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":273401},
-{"pid":27443,"tid":27466,"ts":326459327350,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":273401,"id":"0xba44de02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459327381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":273431,"id":"0xaf88a9b0f182217a"},
-{"pid":27443,"tid":27466,"ts":326459334309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":273523,"id":"0xaf88aa7ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459334339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/child/child_histogram_message_filter.cc","src_func":"SendHistograms"},"dur":3571,"tdur":3387,"tts":273554},
-{"pid":27443,"tid":27466,"ts":326459337819,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":276880,"id":"0xccc45202"},
-{"pid":27443,"tid":27466,"ts":326459337910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":276941,"id":"0xaf88aa7ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459337941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":276972},
-{"pid":27443,"tid":27466,"ts":326459337941,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":276972,"id":"0xccc45002"},
-{"pid":27443,"tid":27466,"ts":326459337971,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":277002},
-{"pid":27443,"tid":27466,"ts":326459338002,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":277033},
-{"pid":27443,"tid":27466,"ts":326459338002,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277033,"id":"0xba44e002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459338032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277094,"id":"0xaf88a648f182217a"},
-{"pid":27443,"tid":27466,"ts":326459338093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":277124,"id":"0xaf88aa78f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459338093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":277124},
-{"pid":27443,"tid":27466,"ts":326459338093,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277124,"id":"0xccc45102"},
-{"pid":27443,"tid":27466,"ts":326459339558,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":277216},
-{"pid":27443,"tid":27466,"ts":326459339589,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":277247},
-{"pid":27443,"tid":27466,"ts":326459339589,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277247,"id":"0xba44e102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459339619,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":277277},
-{"pid":27443,"tid":27466,"ts":326459339650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277308,"id":"0xaf88a64af182217a"},
-{"pid":27443,"tid":27466,"ts":326459340565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":277399,"id":"0xaf88aa79f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459340565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":277399},
-{"pid":27443,"tid":27466,"ts":326459340596,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277430,"id":"0xccc45306"},
-{"pid":27443,"tid":27466,"ts":326459340809,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":123,"tdur":122,"tts":277521},
-{"pid":27443,"tid":27466,"ts":326459340840,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":92,"tdur":31,"tts":277582},
-{"pid":27443,"tid":27466,"ts":326459340871,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277582,"id":"0xc4c1640a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459341206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":277704,"id":"0xaf88aa7af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459341237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":427,"tdur":91,"tts":277735},
-{"pid":27443,"tid":27466,"ts":326459341237,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277735,"id":"0xccc45402"},
-{"pid":27443,"tid":27466,"ts":326459344564,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":123,"tts":277887},
-{"pid":27443,"tid":27466,"ts":326459344594,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":277918},
-{"pid":27443,"tid":27466,"ts":326459344625,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":277949,"id":"0xba44e202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459344655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":277979,"id":"0xaf88a64bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459352835,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":278132,"id":"0xaf88aa7bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459352835,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":278162},
-{"pid":27443,"tid":27466,"ts":326459352865,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":278162,"id":"0xccc45602"},
-{"pid":27443,"tid":27466,"ts":326459355001,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":278254},
-{"pid":27443,"tid":27466,"ts":326459355032,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":92,"tts":278284},
-{"pid":27443,"tid":27459,"ts":326459318652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6583366,"id":"0xaf88a9bdf182217a"},
-{"pid":27443,"tid":27459,"ts":326459320239,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6583488},
-{"pid":27443,"tid":27459,"ts":326459320330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459314},"tts":6583580,"id":"0xaf88a8e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459320330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6583580},
-{"pid":27443,"tid":27459,"ts":326459320391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6583641,"id":"0xaf88a9ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459320391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1130,"tdur":1129,"tts":6583641},
-{"pid":27443,"tid":27459,"ts":326459320422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6583671,"id":"0xaf88a9e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459320422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6583671,"id":"0xaf88a87cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459320422,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1099,"tts":6583671},
-{"pid":27443,"tid":27459,"ts":326459320513,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1008,"tdur":976,"tts":6583763},
-{"pid":27443,"tid":27459,"ts":326459320513,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6583763,"id":"0x300000051"},
-{"pid":27443,"tid":27459,"ts":326459320544,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":855,"tdur":855,"tts":6583793},
-{"pid":27443,"tid":27459,"ts":326459320574,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":825,"tdur":824,"tts":6583824},
-{"pid":27443,"tid":27459,"ts":326459320636,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6583885},
-{"pid":27443,"tid":27459,"ts":326459320666,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6583915},
-{"pid":27443,"tid":27459,"ts":326459320697,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6583946},
-{"pid":27443,"tid":27459,"ts":326459320727,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6583976},
-{"pid":27443,"tid":27459,"ts":326459320788,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":580,"tts":6584037},
-{"pid":27443,"tid":27459,"ts":326459320941,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6584190},
-{"pid":27443,"tid":27459,"ts":326459320971,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6584220},
-{"pid":27443,"tid":27459,"ts":326459321276,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":58,"frame":"0x78c60000"}},"tts":6584526,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459321276,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":0,"tts":6584556},
-{"pid":27443,"tid":27459,"ts":326459321307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6584556,"id":"0xaf88a9b4f182217a"},
-{"pid":27443,"tid":27459,"ts":326459321338,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6584587},
-{"pid":27443,"tid":27459,"ts":326459321429,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6584678},
-{"pid":27443,"tid":27459,"ts":326459321429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6584709,"id":"0xaf88aa63f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459321551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6584800,"id":"0xaf88a9e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459321582,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":335,"tdur":61,"tts":6584831},
-{"pid":27443,"tid":27459,"ts":326459321582,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6584831,"id":"0xaf88a87df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459321612,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":6584861},
-{"pid":27443,"tid":27459,"ts":326459321612,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6584861},
-{"pid":27443,"tid":27459,"ts":326459321917,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6584953,"id":"0xaf88a9e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459321948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6584953},
-{"pid":27443,"tid":27459,"ts":326459321978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6584983,"id":"0xaf88a9e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459321978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6584983,"id":"0xaf88a87ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459321978,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":6584983},
-{"pid":27443,"tid":27459,"ts":326459322009,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6585014},
-{"pid":27443,"tid":27459,"ts":326459322039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6585045,"id":"0xaf88a9e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459322070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6585075},
-{"pid":27443,"tid":27459,"ts":326459323016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6585136,"id":"0xaf88a9e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459323047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10712,"tdur":10010,"tts":6585167},
-{"pid":27443,"tid":27459,"ts":326459323077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6585197,"id":"0xaf88a9e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459323077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6585197,"id":"0xaf88a87ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459323077,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10682,"tdur":9980,"tts":6585197},
-{"pid":27443,"tid":27459,"ts":326459323108,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":101},"tts":6585228},
-{"pid":27443,"tid":27459,"ts":326459323108,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6585228},
-{"pid":27443,"tid":27459,"ts":326459323169,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6348,"tdur":6348,"tts":6585289},
-{"pid":27443,"tid":27459,"ts":326459323169,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":6585319},
-{"pid":27443,"tid":27459,"ts":326459323230,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":58,"frame":"0x78c60000"}},"dur":6287,"tdur":6287,"tts":6585350},
-{"pid":27443,"tid":27459,"ts":326459323321,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6165,"tdur":6165,"tts":6585441},
-{"pid":27443,"tid":27459,"ts":326459323321,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6585441},
-{"pid":27443,"tid":27459,"ts":326459323535,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6585655},
-{"pid":27443,"tid":27459,"ts":326459323596,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":61,"tdur":61,"tts":6585716},
-{"pid":27443,"tid":27459,"ts":326459329456,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6591606},
-{"pid":27443,"tid":27459,"ts":326459329517,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2838,"tdur":2838,"tts":6591637},
-{"pid":27443,"tid":27459,"ts":326459329578,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6591698},
-{"pid":27443,"tid":27459,"ts":326459329578,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6591698},
-{"pid":27443,"tid":27459,"ts":326459329609,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6591728},
-{"pid":27443,"tid":27459,"ts":326459330066,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6592186},
-{"pid":27443,"tid":27459,"ts":326459330097,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6592217},
-{"pid":27443,"tid":27459,"ts":326459330097,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2258,"tdur":2228,"tts":6592247},
-{"pid":27443,"tid":27459,"ts":326459330127,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2076,"tdur":2076,"tts":6592247},
-{"pid":27443,"tid":27459,"ts":326459330127,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":6592247},
-{"pid":27443,"tid":27459,"ts":326459330463,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":6592583},
-{"pid":27443,"tid":27477,"ts":326459320819,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":484327,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459320849,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":484358},
-{"pid":27443,"tid":27477,"ts":326459320880,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":484388},
-{"pid":27443,"tid":27477,"ts":326459320910,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":484419,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459320941,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":484449,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459320971,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":484480,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459321063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":484571,"id":"0xaf88a9bef182217a"},
-{"pid":27443,"tid":27477,"ts":326459321063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":484571},
-{"pid":27443,"tid":27477,"ts":326459321093,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459317648.0,"frame_time_us":326459318237.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":484602},
-{"pid":27443,"tid":27477,"ts":326459321093,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459317648.0,"frame_time_us":326459318237.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":61,"tts":484633},
-{"pid":27443,"tid":27477,"ts":326459321154,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459334903},"dur":31,"tdur":31,"tts":484663},
-{"pid":27443,"tid":27477,"ts":326459321185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":484694,"id":"0xaf88a9baf182217a"},
-{"pid":27443,"tid":27477,"ts":326459321215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":484724,"id":"0xaf88a9bff182217a"},
-{"pid":27443,"tid":27477,"ts":326459321215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":484755},
-{"pid":27443,"tid":27477,"ts":326459321246,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":484755},
-{"pid":27443,"tid":27477,"ts":326459321246,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":484755,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459321276,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":484785},
-{"pid":27443,"tid":27477,"ts":326459321276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":484785,"id":"0xaf88a9bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459321307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":484816,"id":"0xaf88a9b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459321307,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":484816},
-{"pid":27443,"tid":27477,"ts":326459321307,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":484816},
-{"pid":27443,"tid":27477,"ts":326459321338,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":484846,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459321338,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":484846},
-{"pid":27443,"tid":27477,"ts":326459321338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":484877,"id":"0xaf88a9b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459321368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":484877,"id":"0xaf88a9b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459321399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":484907},
-{"pid":27443,"tid":27477,"ts":326459321399,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":484907},
-{"pid":27443,"tid":27477,"ts":326459321399,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":484938,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459321429,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":484938},
-{"pid":27443,"tid":27477,"ts":326459321429,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":484968,"id":"0xaf88a9bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459321460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1373,"tdur":1343,"tts":484968},
-{"pid":27443,"tid":27477,"ts":326459321460,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1373,"tdur":1343,"tts":484968},
-{"pid":27443,"tid":27477,"ts":326459321490,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":484999},
-{"pid":27443,"tid":27477,"ts":326459321490,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":484999},
-{"pid":27443,"tid":27477,"ts":326459321521,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":485029},
-{"pid":27443,"tid":27477,"ts":326459321521,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":485029},
-{"pid":27443,"tid":27477,"ts":326459321612,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1190,"tts":485121},
-{"pid":27443,"tid":27477,"ts":326459321643,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1190,"tdur":1160,"tts":485151},
-{"pid":27443,"tid":27477,"ts":326459321643,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1129,"tdur":1099,"tts":485151},
-{"pid":27443,"tid":27477,"ts":326459321643,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":485151,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459321734,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":485243},
-{"pid":27443,"tid":27477,"ts":326459321765,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485273},
-{"pid":27443,"tid":27477,"ts":326459321795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485304},
-{"pid":27443,"tid":27477,"ts":326459321795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":485304},
-{"pid":27443,"tid":27477,"ts":326459321826,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":485334},
-{"pid":27443,"tid":27477,"ts":326459321856,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":485365},
-{"pid":27443,"tid":27477,"ts":326459321887,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485396},
-{"pid":27443,"tid":27477,"ts":326459321917,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485426},
-{"pid":27443,"tid":27477,"ts":326459321917,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":485426},
-{"pid":27443,"tid":27477,"ts":326459321948,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485457},
-{"pid":27443,"tid":27477,"ts":326459321978,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485487},
-{"pid":27443,"tid":27477,"ts":326459322009,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485518},
-{"pid":27443,"tid":27477,"ts":326459322009,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":485518},
-{"pid":27443,"tid":27477,"ts":326459322039,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485548},
-{"pid":27443,"tid":27477,"ts":326459322039,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":485548},
-{"pid":27443,"tid":27477,"ts":326459322070,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485579},
-{"pid":27443,"tid":27477,"ts":326459322101,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485609},
-{"pid":27443,"tid":27477,"ts":326459322101,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":485609},
-{"pid":27443,"tid":27477,"ts":326459322131,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":485640},
-{"pid":27443,"tid":27477,"ts":326459322162,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485670},
-{"pid":27443,"tid":27477,"ts":326459322192,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":485701},
-{"pid":27443,"tid":27477,"ts":326459322223,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485731},
-{"pid":27443,"tid":27477,"ts":326459322253,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":485762},
-{"pid":27443,"tid":27477,"ts":326459322314,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485792},
-{"pid":27443,"tid":27469,"ts":326459320941,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":0,"tts":292110},
-{"pid":27443,"tid":27469,"ts":326459320971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292110,"id":"0xaf88a9bff182217a"},
-{"pid":27443,"tid":27469,"ts":326459321002,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":292141},
-{"pid":27443,"tid":27469,"ts":326459321002,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":292141},
-{"pid":27443,"tid":27469,"ts":326459321002,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292171,"id":"0xaf88a9b8f182217a"},
-{"pid":27443,"tid":27469,"ts":326459321063,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":292202},
-{"pid":27443,"tid":27469,"ts":326459321063,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":292202},
-{"pid":27443,"tid":27469,"ts":326459321063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292202,"id":"0xaf88a9b9f182217a"},
-{"pid":27443,"tid":27469,"ts":326459334339,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":292263},
-{"pid":27443,"tid":27469,"ts":326459334370,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":292293},
-{"pid":27443,"tid":27469,"ts":326459334400,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292324,"id":"0xaf88a9b2f182217a"},
-{"pid":27443,"tid":27469,"ts":326459334400,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":292324},
-{"pid":27443,"tid":27469,"ts":326459334431,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":292354},
-{"pid":27443,"tid":27469,"ts":326459334431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292354,"id":"0xaf88a9b3f182217a"},
-{"pid":27443,"tid":27469,"ts":326459334431,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":292354},
-{"pid":27443,"tid":27469,"ts":326459334461,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":292385},
-{"pid":27443,"tid":27469,"ts":326459334461,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292385,"id":"0xaf88a64cf182217a"},
-{"pid":27443,"tid":27469,"ts":326459352773,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":62,"tdur":61,"tts":292446},
-{"pid":27443,"tid":27469,"ts":326459352804,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":292476},
-{"pid":27443,"tid":27469,"ts":326459352835,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292507,"id":"0xaf88a646f182217a"},
-{"pid":27443,"tid":27469,"ts":326459352835,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":549,"tdur":61,"tts":292537},
-{"pid":27443,"tid":27469,"ts":326459352896,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":488,"tdur":30,"tts":292568},
-{"pid":27443,"tid":27471,"ts":326459353109,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":336,"tdur":61,"tts":350495},
-{"pid":27443,"tid":27471,"ts":326459353140,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":274,"tdur":31,"tts":350495},
-{"pid":27443,"tid":27469,"ts":326459352896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292568,"id":"0xaf88a647f182217a"},
-{"pid":27443,"tid":27471,"ts":326459353414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350526,"id":"0xaf88a640f182217a"},
-{"pid":27443,"tid":27469,"ts":326459385552,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":292629},
-{"pid":27443,"tid":27469,"ts":326459385583,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":292659},
-{"pid":27443,"tid":27469,"ts":326459385583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292659,"id":"0xaf88a656f182217a"},
-{"pid":27443,"tid":27469,"ts":326459385644,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":292720},
-{"pid":27443,"tid":27469,"ts":326459385644,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":292720},
-{"pid":27443,"tid":27469,"ts":326459385674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292751,"id":"0xaf88a657f182217a"},
-{"pid":27443,"tid":27469,"ts":326459385705,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":292781},
-{"pid":27443,"tid":27469,"ts":326459385705,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":292781},
-{"pid":27443,"tid":27469,"ts":326459385705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292781,"id":"0xaf88a650f182217a"},
-{"pid":27443,"tid":27498,"ts":326459402979,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":275,"tts":42270},
-{"pid":27443,"tid":27498,"ts":326459402979,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":42270},
-{"pid":27443,"tid":27498,"ts":326459403224,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":42514},
-{"pid":27443,"tid":27469,"ts":326459435880,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":123,"tdur":123,"tts":292842},
-{"pid":27443,"tid":27469,"ts":326459435941,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":62,"tdur":30,"tts":292904},
-{"pid":27443,"tid":27469,"ts":326459435972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292934,"id":"0xaf88a66bf182217a"},
-{"pid":27443,"tid":27469,"ts":326459436003,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":396,"tdur":92,"tts":292995},
-{"pid":27443,"tid":27469,"ts":326459436369,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":293056},
-{"pid":27443,"tid":27469,"ts":326459436399,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293087,"id":"0xaf88a665f182217a"},
-{"pid":27443,"tid":27469,"ts":326459436430,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":293117},
-{"pid":27443,"tid":27469,"ts":326459436430,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":293117},
-{"pid":27443,"tid":27469,"ts":326459436460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293148,"id":"0xaf88a666f182217a"},
-{"pid":27443,"tid":27469,"ts":326459443022,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":293239},
-{"pid":27443,"tid":27469,"ts":326459443083,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":293270},
-{"pid":27443,"tid":27469,"ts":326459443083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293270,"id":"0xaf88a663f182217a"},
-{"pid":27443,"tid":27469,"ts":326459443114,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":293300},
-{"pid":27443,"tid":27469,"ts":326459443114,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":293300},
-{"pid":27443,"tid":27469,"ts":326459443144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293331,"id":"0xaf88a67cf182217a"},
-{"pid":27443,"tid":27469,"ts":326459443175,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":293361},
-{"pid":27443,"tid":27469,"ts":326459443175,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":293361},
-{"pid":27443,"tid":27469,"ts":326459443205,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293392,"id":"0xaf88a67df182217a"},
-{"pid":27443,"tid":27471,"ts":326459495670,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":183,"tts":350709},
-{"pid":27443,"tid":27471,"ts":326459495761,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":61,"tts":350831},
-{"pid":27443,"tid":27469,"ts":326459495792,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":214,"tts":293422},
-{"pid":27443,"tid":27469,"ts":326459495792,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":61,"tts":293453},
-{"pid":27443,"tid":27471,"ts":326459495792,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350831,"id":"0xaf88a671f182217a"},
-{"pid":27443,"tid":27469,"ts":326459495853,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293483,"id":"0xaf88a672f182217a"},
-{"pid":27443,"tid":27471,"ts":326459495884,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":152,"tdur":152,"tts":350923},
-{"pid":27443,"tid":27471,"ts":326459495914,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":61,"tts":350953},
-{"pid":27443,"tid":27477,"ts":326459322345,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":485853},
-{"pid":27443,"tid":27477,"ts":326459322375,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":485853},
-{"pid":27443,"tid":27477,"ts":326459322497,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":485975},
-{"pid":27443,"tid":27477,"ts":326459322528,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":486006},
-{"pid":27443,"tid":27477,"ts":326459322528,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":486006},
-{"pid":27443,"tid":27477,"ts":326459322558,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":486036},
-{"pid":27443,"tid":27477,"ts":326459322589,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":486067},
-{"pid":27443,"tid":27477,"ts":326459322589,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":486067},
-{"pid":27443,"tid":27477,"ts":326459322619,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":486097},
-{"pid":27443,"tid":27477,"ts":326459322680,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":486159},
-{"pid":27443,"tid":27477,"ts":326459322711,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":486189},
-{"pid":27443,"tid":27477,"ts":326459322741,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":486220},
-{"pid":27443,"tid":27477,"ts":326459322741,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":486220},
-{"pid":27443,"tid":27477,"ts":326459322802,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":0,"tts":486281},
-{"pid":27443,"tid":27477,"ts":326459322802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":486281,"id":"0xaf88a9b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459322864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":486342,"id":"0xaf88a9b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459322864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":152,"tts":486342},
-{"pid":27443,"tid":27477,"ts":326459322864,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":152,"tdur":152,"tts":486342},
-{"pid":27443,"tid":27477,"ts":326459322864,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":101},"tts":486342},
-{"pid":27443,"tid":27477,"ts":326459322925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":486403,"id":"0xaf88a87ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459322955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":486433,"id":"0xaf88a9e7f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459322986,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":486464},
-{"pid":27443,"tid":27477,"ts":326459323016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":486494,"id":"0xaf88a9b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459323047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":486525},
-{"pid":27443,"tid":27477,"ts":326459323047,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":122,"tts":486525},
-{"pid":27443,"tid":27477,"ts":326459323077,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":486555},
-{"pid":27443,"tid":27477,"ts":326459323077,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":486555},
-{"pid":27443,"tid":27477,"ts":326459323077,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":486555},
-{"pid":27443,"tid":27477,"ts":326459323108,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":486586},
-{"pid":27443,"tid":27477,"ts":326459323169,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":486647},
-{"pid":27443,"tid":27477,"ts":326459323169,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":486647},
-{"pid":27443,"tid":27477,"ts":326459323199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":486677,"id":"0xaf88a9b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459323199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":486677},
-{"pid":27443,"tid":27477,"ts":326459323230,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":486708},
-{"pid":27443,"tid":27477,"ts":326459323260,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":486738,"id":"0x300000053"},
-{"pid":27443,"tid":27477,"ts":326459323260,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":486738},
-{"pid":27443,"tid":27477,"ts":326459323291,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":486769,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459323321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":486799,"id":"0xaf88a878f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459323321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":486799,"id":"0xaf88a9e1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459323352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":486830,"id":"0xaf88a9b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459323352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2228,"tdur":1801,"tts":486830},
-{"pid":27443,"tid":27477,"ts":326459323382,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2198,"tdur":1739,"tts":486861},
-{"pid":27443,"tid":27477,"ts":326459323382,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":486861},
-{"pid":27443,"tid":27477,"ts":326459323413,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2136,"tdur":1709,"tts":486891},
-{"pid":27443,"tid":27477,"ts":326459323413,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":100},"dur":1160,"tdur":1160,"tts":486891},
-{"pid":27443,"tid":27477,"ts":326459323443,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":100},"dur":367,"tdur":366,"tts":486922},
-{"pid":27443,"tid":27477,"ts":326459323810,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":100},"dur":61,"tdur":61,"tts":487288},
-{"pid":27443,"tid":27477,"ts":326459323871,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":100},"tts":487349},
-{"pid":27443,"tid":27477,"ts":326459324054,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":487532},
-{"pid":27443,"tid":27477,"ts":326459324054,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":487532},
-{"pid":27443,"tid":27477,"ts":326459324054,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":487562},
-{"pid":27443,"tid":27477,"ts":326459324084,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":487562},
-{"pid":27443,"tid":27477,"ts":326459324084,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":487562,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459324145,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":487624},
-{"pid":27443,"tid":27477,"ts":326459324542,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":488020},
-{"pid":27443,"tid":27477,"ts":326459324573,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":274,"tts":488051},
-{"pid":27443,"tid":27477,"ts":326459324573,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":488051},
-{"pid":27443,"tid":27477,"ts":326459324603,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":611,"tdur":183,"tts":488081},
-{"pid":27443,"tid":27477,"ts":326459324664,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":31,"tdur":31,"tts":488142},
-{"pid":27443,"tid":27477,"ts":326459324695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":488173,"id":"0xaf88aa7cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459325244,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":488295,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459325275,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":488356,"id":"0x300000050"},
-{"pid":27443,"tid":27477,"ts":326459325305,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":488356},
-{"pid":27443,"tid":27477,"ts":326459325458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":488509,"id":"0xaf88aa7df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459325519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":488570,"id":"0xaf88a879f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459327442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":488692,"id":"0xaf88a9b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459327472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":488722},
-{"pid":27443,"tid":27477,"ts":326459327472,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":488722},
-{"pid":27443,"tid":27477,"ts":326459327503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":488753,"id":"0xaf88a87af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459333027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":488814,"id":"0xaf88a9b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459333027,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1434,"tdur":1404,"tts":488814},
-{"pid":27443,"tid":27477,"ts":326459333057,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1404,"tdur":1374,"tts":488844},
-{"pid":27443,"tid":27477,"ts":326459333057,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":488844},
-{"pid":27443,"tid":27477,"ts":326459333057,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1404,"tdur":1374,"tts":488844},
-{"pid":27443,"tid":27477,"ts":326459333057,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":488844},
-{"pid":27443,"tid":27477,"ts":326459333118,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1343,"tdur":1343,"tts":488875},
-{"pid":27443,"tid":27477,"ts":326459333118,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":30,"tts":488875},
-{"pid":27443,"tid":27477,"ts":326459333149,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":488905},
-{"pid":27443,"tid":27477,"ts":326459333149,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":488905,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459333179,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":488936},
-{"pid":27443,"tid":27477,"ts":326459333210,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":367,"tts":488966},
-{"pid":27443,"tid":27477,"ts":326459333637,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":793,"tts":489394},
-{"pid":27443,"tid":27477,"ts":326459333668,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":101},"dur":244,"tdur":214,"tts":489424},
-{"pid":27443,"tid":27477,"ts":326459333912,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":101},"dur":30,"tdur":31,"tts":489668},
-{"pid":27443,"tid":27477,"ts":326459333942,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":101},"tts":489699},
-{"pid":27443,"tid":27477,"ts":326459334064,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":489821},
-{"pid":27443,"tid":27477,"ts":326459334095,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":489852},
-{"pid":27443,"tid":27477,"ts":326459334095,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":489852},
-{"pid":27443,"tid":27477,"ts":326459334217,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":489974},
-{"pid":27443,"tid":27477,"ts":326459334217,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":489974},
-{"pid":27443,"tid":27477,"ts":326459334217,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":489974},{"pid":27443,"tid":27477,"ts":326459334248,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":153,"tts":490004},
-{"pid":27443,"tid":27477,"ts":326459334248,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":490004,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459334278,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":490035},
-{"pid":27443,"tid":27477,"ts":326459334278,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":490035},
-{"pid":27443,"tid":27477,"ts":326459334370,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":490126,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459334400,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":490157,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459334431,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":490187,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459334492,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":490248,"id":"0xaf88a9b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459334492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":490248},
-{"pid":27443,"tid":27477,"ts":326459334492,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":490248},
-{"pid":27443,"tid":27477,"ts":326459334522,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":490279,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459334553,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":490309},
-{"pid":27443,"tid":27477,"ts":326459334553,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":490309,"id":"0xaf88a64df182217a"},
-{"pid":27443,"tid":27477,"ts":326459334583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":490340,"id":"0xaf88a9b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459334583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":490340},
-{"pid":27443,"tid":27477,"ts":326459334583,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":490340},
-{"pid":27443,"tid":27477,"ts":326459334614,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":490370,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459334614,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":490370},
-{"pid":27443,"tid":27477,"ts":326459334644,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":490401,"id":"0xaf88a64ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459334644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":490401,"id":"0xaf88a64cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459334675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":490431},
-{"pid":27443,"tid":27477,"ts":326459334675,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":490431},
-{"pid":27443,"tid":27477,"ts":326459334675,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":490431,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459334675,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":490431},
-{"pid":27443,"tid":27477,"ts":326459334705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":490462,"id":"0xaf88a64df182217a"},
-{"pid":27443,"tid":27477,"ts":326459334705,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":4029,"tdur":1343,"tts":490462},
-{"pid":27443,"tid":27477,"ts":326459334705,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":4029,"tdur":1313,"tts":490492},
-{"pid":27443,"tid":27477,"ts":326459334736,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":490492},
-{"pid":27443,"tid":27477,"ts":326459334736,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":490492},
-{"pid":27443,"tid":27477,"ts":326459334766,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":490523},
-{"pid":27443,"tid":27477,"ts":326459334766,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":490523},
-{"pid":27443,"tid":27477,"ts":326459334858,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":3876,"tdur":1190,"tts":490615},
-{"pid":27443,"tid":27477,"ts":326459334858,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":490615},
-{"pid":27443,"tid":27477,"ts":326459335011,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":3723,"tdur":1190,"tts":490615},
-{"pid":27443,"tid":27477,"ts":326459335041,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":3663,"tdur":1098,"tts":490676},
-{"pid":27443,"tid":27477,"ts":326459335072,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":490676,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459337544,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":490767},
-{"pid":27443,"tid":27459,"ts":326459330677,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":6592797},
-{"pid":27443,"tid":27459,"ts":326459330799,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6592919},
-{"pid":27443,"tid":27459,"ts":326459330799,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1373,"tdur":1373,"tts":6592919},
-{"pid":27443,"tid":27459,"ts":326459332203,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6594323},
-{"pid":27443,"tid":27459,"ts":326459332233,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":6594384},
-{"pid":27443,"tid":27459,"ts":326459332386,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":101},"dur":549,"tdur":488,"tts":6594506},
-{"pid":27443,"tid":27459,"ts":326459332386,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":549,"tdur":488,"tts":6594506},
-{"pid":27443,"tid":27459,"ts":326459332752,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":31,"tdur":31,"tts":6594811},
-{"pid":27443,"tid":27459,"ts":326459332783,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":0,"tdur":0,"tts":6594842},
-{"pid":27443,"tid":27459,"ts":326459332813,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":0,"tdur":0,"tts":6594872},
-{"pid":27443,"tid":27459,"ts":326459332813,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":31,"tdur":31,"tts":6594872},
-{"pid":27443,"tid":27459,"ts":326459332844,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":30,"tdur":0,"tts":6594903},
-{"pid":27443,"tid":27459,"ts":326459332874,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":0,"tdur":0,"tts":6594933},
-{"pid":27443,"tid":27459,"ts":326459332905,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":101},"dur":0,"tdur":0,"tts":6594964},
-{"pid":27443,"tid":27459,"ts":326459332935,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6594994,"id":"0x300000051"},
-{"pid":27443,"tid":27459,"ts":326459332935,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":733,"tdur":92,"tts":6594994},
-{"pid":27443,"tid":27459,"ts":326459332966,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6595025,"id":"0xaf88a9b1f182217a"},
-{"pid":27443,"tid":27459,"ts":326459333698,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1205},"tts":6595116,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459333729,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6595147,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459333729,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6595177},
-{"pid":27443,"tid":27459,"ts":326459333820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459325},"tts":6595238,"id":"0xaf88a90bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459333820,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/renderer/chrome_render_view_observer.cc","src_func":"CapturePageInfoLater"},"dur":794,"tdur":794,"tts":6595238},
-{"pid":27443,"tid":27459,"ts":326459334248,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6595666,"id":"0xaf88aa7ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459334553,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":85,"line":61},"dur":30,"tdur":30,"tts":6595971},
-{"pid":27443,"tid":27459,"ts":326459334583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6596001,"id":"0xaf88aa7ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459334583,"ph":"X","cat":"renderer","name":"ChromeRenderViewObserver::CapturePageInfo","args":{},"dur":31,"tdur":0,"tts":6596032},
-{"pid":27443,"tid":27459,"ts":326459334644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6596062,"id":"0xaf88a9e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459334644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1252,"tdur":1160,"tts":6596062},
-{"pid":27443,"tid":27459,"ts":326459334675,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6596093,"id":"0xaf88a9e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459334675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6596123,"id":"0xaf88abcdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459334705,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1191,"tdur":1099,"tts":6596123},
-{"pid":27443,"tid":27459,"ts":326459334705,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1160,"tdur":1069,"tts":6596123},
-{"pid":27443,"tid":27459,"ts":326459334736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6596154,"id":"0xaf88a87bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459334766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6596184,"id":"0xaf88a9e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459334797,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":16,"frame":"0x78c60000"}},"dur":1068,"tdur":977,"tts":6596215},
-{"pid":27443,"tid":27459,"ts":326459334828,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1037,"tdur":946,"tts":6596246},
-{"pid":27443,"tid":27459,"ts":326459334919,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"69","scriptName":"undefined","scriptLine":22,"frame":"0x78c60000"}},"dur":946,"tdur":855,"tts":6596337},
-{"pid":27443,"tid":27459,"ts":326459334950,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6596368},
-{"pid":27443,"tid":27459,"ts":326459335835,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6597161},
-{"pid":27443,"tid":27459,"ts":326459335926,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6597253,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459335926,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6597253,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459335987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6597314,"id":"0xaf88a9e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459335987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1374,"tdur":1312,"tts":6597314},
-{"pid":27443,"tid":27459,"ts":326459336018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6597344,"id":"0xaf88a878f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459336018,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1343,"tdur":1282,"tts":6597344},
-{"pid":27443,"tid":27459,"ts":326459336109,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1221,"tdur":1160,"tts":6597436},
-{"pid":27443,"tid":27459,"ts":326459336109,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6597436,"id":"0x300000053"},
-{"pid":27443,"tid":27459,"ts":326459336170,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1099,"tdur":1038,"tts":6597497},
-{"pid":27443,"tid":27459,"ts":326459336201,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1068,"tdur":1008,"tts":6597527},
-{"pid":27443,"tid":27459,"ts":326459336262,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6597588},
-{"pid":27443,"tid":27459,"ts":326459336292,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6597649},
-{"pid":27443,"tid":27459,"ts":326459336354,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":61,"tts":6597680},
-{"pid":27443,"tid":27459,"ts":326459336445,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6597772},
-{"pid":27443,"tid":27459,"ts":326459336476,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":763,"tdur":702,"tts":6597802},
-{"pid":27443,"tid":27459,"ts":326459336659,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":549,"tdur":518,"tts":6597955},
-{"pid":27443,"tid":27459,"ts":326459336689,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6597985},
-{"pid":27443,"tid":27459,"ts":326459337086,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":59,"frame":"0x78c60000"}},"tts":6598382,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459337117,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":6598382},
-{"pid":27443,"tid":27459,"ts":326459337147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6598412,"id":"0xaf88a64ff182217a"},
-{"pid":27443,"tid":27459,"ts":326459337178,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6598443},
-{"pid":27443,"tid":27459,"ts":326459337269,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":31,"tts":6598565},
-{"pid":27443,"tid":27459,"ts":326459337300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6598565,"id":"0xaf88aa78f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459337422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6598687,"id":"0xaf88a9e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459337422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":6598687},
-{"pid":27443,"tid":27459,"ts":326459337452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6598718,"id":"0xaf88a9fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459337452,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":6598718},
-{"pid":27443,"tid":27459,"ts":326459337513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6598779,"id":"0xaf88a879f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459337544,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6598809},
-{"pid":27443,"tid":27459,"ts":326459337544,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6598809},
-{"pid":27443,"tid":27459,"ts":326459337666,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6598931,"id":"0xaf88a9fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459337666,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6598931},
-{"pid":27443,"tid":27459,"ts":326459337696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6598962,"id":"0xaf88a9fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459337696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6598962,"id":"0xaf88a87af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459337696,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":6598992},
-{"pid":27443,"tid":27459,"ts":326459337727,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6598992},
-{"pid":27443,"tid":27459,"ts":326459337788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6599053,"id":"0xaf88a9fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459337788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6599053},
-{"pid":27443,"tid":27459,"ts":326459339253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6599175,"id":"0xaf88a9fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459339253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12300,"tdur":11171,"tts":6599175},
-{"pid":27443,"tid":27459,"ts":326459339283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6599206,"id":"0xaf88a9fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459339283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6599206,"id":"0xaf88a874f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459339314,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12208,"tdur":11078,"tts":6599237},
-{"pid":27443,"tid":27459,"ts":326459339314,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":102},"tts":6599237},
-{"pid":27443,"tid":27459,"ts":326459339314,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6599237},
-{"pid":27443,"tid":27459,"ts":326459339375,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8302,"tdur":7782,"tts":6599298},
-{"pid":27443,"tid":27459,"ts":326459339406,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":213,"tdur":61,"tts":6599328},
-{"pid":27443,"tid":27459,"ts":326459339406,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":6599328},
-{"pid":27443,"tid":27459,"ts":326459339650,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":59,"frame":"0x78c60000"}},"dur":7996,"tdur":7630,"tts":6599420},
-{"pid":27443,"tid":27459,"ts":326459339741,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7905,"tdur":7539,"tts":6599511},
-{"pid":27443,"tid":27459,"ts":326459339741,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6599511},
-{"pid":27443,"tid":27459,"ts":326459340077,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6599816},
-{"pid":27443,"tid":27459,"ts":326459340138,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":30,"tts":6599847},
-{"pid":27443,"tid":27459,"ts":326459342122,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6601617},
-{"pid":27443,"tid":27459,"ts":326459343160,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6602563},
-{"pid":27443,"tid":27459,"ts":326459347616,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6607019},
-{"pid":27443,"tid":27459,"ts":326459347677,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2655,"tdur":2656,"tts":6607080},
-{"pid":27443,"tid":27459,"ts":326459347707,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6607141},
-{"pid":27443,"tid":27459,"ts":326459347738,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6607141},
-{"pid":27443,"tid":27459,"ts":326459347768,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6607172},
-{"pid":27443,"tid":27459,"ts":326459348195,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6607599},
-{"pid":27443,"tid":27459,"ts":326459348195,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6607630},
-{"pid":27443,"tid":27459,"ts":326459348226,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2106,"tdur":2076,"tts":6607660},
-{"pid":27443,"tid":27459,"ts":326459348256,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1923,"tdur":1923,"tts":6607660},
-{"pid":27443,"tid":27459,"ts":326459348256,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":6607660},
-{"pid":27443,"tid":27459,"ts":326459348592,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":213,"tts":6607996},
-{"pid":27443,"tid":27459,"ts":326459348806,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6608209},
-{"pid":27443,"tid":27459,"ts":326459348897,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":6608332},
-{"pid":27443,"tid":27459,"ts":326459348928,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1221,"tdur":1220,"tts":6608332},
-{"pid":27443,"tid":27459,"ts":326459350179,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":6609583},
-{"pid":27443,"tid":27459,"ts":326459350210,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":123,"tts":6609613},
-{"pid":27443,"tid":27459,"ts":326459350332,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":102},"dur":427,"tdur":427,"tts":6609736},
-{"pid":27443,"tid":27459,"ts":326459350362,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":367,"tdur":366,"tts":6609766},
-{"pid":27443,"tid":27459,"ts":326459350607,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":30,"tdur":31,"tts":6610010},
-{"pid":27443,"tid":27459,"ts":326459350637,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":0,"tdur":0,"tts":6610041},
-{"pid":27443,"tid":27459,"ts":326459350637,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":31,"tdur":0,"tts":6610071},
-{"pid":27443,"tid":27459,"ts":326459350668,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":30,"tdur":0,"tts":6610071},
-{"pid":27443,"tid":27459,"ts":326459350698,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":0,"tdur":0,"tts":6610102},
-{"pid":27443,"tid":27459,"ts":326459350698,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":31,"tdur":30,"tts":6610102},
-{"pid":27443,"tid":27459,"ts":326459350729,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":102},"dur":0,"tdur":0,"tts":6610132},
-{"pid":27443,"tid":27459,"ts":326459350759,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6610163,"id":"0x300000053"},
-{"pid":27443,"tid":27459,"ts":326459350759,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":91,"tts":6610163},
-{"pid":27443,"tid":27459,"ts":326459350790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6610193,"id":"0xaf88a644f182217a"},
-{"pid":27443,"tid":27459,"ts":326459351522,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6610315},
-{"pid":27443,"tid":27459,"ts":326459351583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6610376,"id":"0xaf88a9fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459351583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6610376},
-{"pid":27443,"tid":27459,"ts":326459351614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6610407,"id":"0xaf88a9f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459351614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6610407,"id":"0xaf88a875f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459351644,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":6610437},
-{"pid":27443,"tid":27477,"ts":326459337574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":490798},
-{"pid":27443,"tid":27477,"ts":326459337574,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":490798},
-{"pid":27443,"tid":27477,"ts":326459337666,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":490889},
-{"pid":27443,"tid":27477,"ts":326459337666,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":490920},
-{"pid":27443,"tid":27477,"ts":326459337696,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":490920},
-{"pid":27443,"tid":27477,"ts":326459337727,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":490950},
-{"pid":27443,"tid":27477,"ts":326459337757,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":490981},
-{"pid":27443,"tid":27477,"ts":326459337788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491011},
-{"pid":27443,"tid":27477,"ts":326459337788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":491042},
-{"pid":27443,"tid":27477,"ts":326459337819,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491042},
-{"pid":27443,"tid":27477,"ts":326459337849,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491072},
-{"pid":27443,"tid":27477,"ts":326459337849,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":491072},
-{"pid":27443,"tid":27477,"ts":326459337880,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":491103},
-{"pid":27443,"tid":27477,"ts":326459337880,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":491103},
-{"pid":27443,"tid":27477,"ts":326459337941,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491133},
-{"pid":27443,"tid":27477,"ts":326459337971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491164},
-{"pid":27443,"tid":27477,"ts":326459337971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":491164},
-{"pid":27443,"tid":27477,"ts":326459338002,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":491194},
-{"pid":27443,"tid":27477,"ts":326459338032,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491225},
-{"pid":27443,"tid":27477,"ts":326459338032,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":491225},
-{"pid":27443,"tid":27477,"ts":326459338063,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491255},
-{"pid":27443,"tid":27477,"ts":326459338093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491286},
-{"pid":27443,"tid":27477,"ts":326459338093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":491286},
-{"pid":27443,"tid":27477,"ts":326459338124,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491316},
-{"pid":27443,"tid":27477,"ts":326459338124,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":491347},
-{"pid":27443,"tid":27477,"ts":326459338154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":491347},
-{"pid":27443,"tid":27477,"ts":326459338185,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":152,"tdur":0,"tts":491378},
-{"pid":27443,"tid":27477,"ts":326459338429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":491500},
-{"pid":27443,"tid":27477,"ts":326459338459,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491530},
-{"pid":27443,"tid":27477,"ts":326459338459,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":491561},
-{"pid":27443,"tid":27477,"ts":326459338490,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":491561},
-{"pid":27443,"tid":27477,"ts":326459338520,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491591},
-{"pid":27443,"tid":27477,"ts":326459338551,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":491622},
-{"pid":27443,"tid":27477,"ts":326459338551,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":491622},
-{"pid":27443,"tid":27477,"ts":326459338612,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":491683},
-{"pid":27443,"tid":27477,"ts":326459338643,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":491744},
-{"pid":27443,"tid":27477,"ts":326459338673,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":491744},
-{"pid":27443,"tid":27477,"ts":326459338673,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":491744},
-{"pid":27443,"tid":27477,"ts":326459338734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459334},"tts":491805,"id":"0xaf88a9baf182217a"},
-{"pid":27443,"tid":27477,"ts":326459338765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":491835},
-{"pid":27443,"tid":27477,"ts":326459338795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":491866,"id":"0xaf88a64ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459338795,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":491866},
-{"pid":27443,"tid":27477,"ts":326459338795,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":491866},
-{"pid":27443,"tid":27477,"ts":326459338795,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":491866},
-{"pid":27443,"tid":27477,"ts":326459338826,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":491896},
-{"pid":27443,"tid":27477,"ts":326459338856,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":491927},
-{"pid":27443,"tid":27477,"ts":326459338856,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":491927},
-{"pid":27443,"tid":27477,"ts":326459338917,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":491988},
-{"pid":27443,"tid":27477,"ts":326459338917,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":491988},
-{"pid":27443,"tid":27477,"ts":326459338948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":492018,"id":"0xaf88a64ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459338948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":492018},
-{"pid":27443,"tid":27477,"ts":326459338978,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":492049},
-{"pid":27443,"tid":27477,"ts":326459338978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":492049,"id":"0xaf88a648f182217a"},
-{"pid":27443,"tid":27477,"ts":326459339009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":275,"tts":492079},
-{"pid":27443,"tid":27477,"ts":326459339009,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459334330.0,"frame_time_us":326459334919.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":244,"tdur":214,"tts":492110},
-{"pid":27443,"tid":27477,"ts":326459339039,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459334330.0,"frame_time_us":326459334919.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":214,"tdur":214,"tts":492110},
-{"pid":27443,"tid":27477,"ts":326459339070,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":492141},
-{"pid":27443,"tid":27477,"ts":326459339100,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":102},"tts":492171},
-{"pid":27443,"tid":27477,"ts":326459339161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":492232,"id":"0xaf88a874f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459339192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":492263,"id":"0xaf88a9fef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459339222,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":492293},
-{"pid":27443,"tid":27477,"ts":326459339222,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":0,"tts":492324},
-{"pid":27443,"tid":27477,"ts":326459339253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":492324,"id":"0xaf88a649f182217a"},
-{"pid":27443,"tid":27477,"ts":326459339283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":492354,"id":"0xaf88a649f182217a"},
-{"pid":27443,"tid":27477,"ts":326459339283,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2015,"tdur":1648,"tts":492354},
-{"pid":27443,"tid":27477,"ts":326459339314,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1984,"tdur":1617,"tts":492385},
-{"pid":27443,"tid":27477,"ts":326459339314,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1984,"tdur":1617,"tts":492385},
-{"pid":27443,"tid":27477,"ts":326459339345,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":101},"dur":976,"tdur":977,"tts":492415},
-{"pid":27443,"tid":27477,"ts":326459339345,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":101},"dur":305,"tdur":274,"tts":492446},
-{"pid":27443,"tid":27477,"ts":326459339650,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":101},"dur":30,"tdur":31,"tts":492720},
-{"pid":27443,"tid":27477,"ts":326459339680,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":101},"tts":492751},
-{"pid":27443,"tid":27477,"ts":326459339833,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":492904},
-{"pid":27443,"tid":27477,"ts":326459339833,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":492904},
-{"pid":27443,"tid":27477,"ts":326459339833,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":492934},
-{"pid":27443,"tid":27477,"ts":326459339863,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":492934},
-{"pid":27443,"tid":27477,"ts":326459339894,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":492965,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459339955,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":493026},
-{"pid":27443,"tid":27477,"ts":326459340291,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":493361},
-{"pid":27443,"tid":27477,"ts":326459340321,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":672,"tdur":305,"tts":493392},
-{"pid":27443,"tid":27477,"ts":326459340321,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":493392},
-{"pid":27443,"tid":27477,"ts":326459340352,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":214,"tts":493422},
-{"pid":27443,"tid":27477,"ts":326459340443,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":0,"tdur":0,"tts":493514},
-{"pid":27443,"tid":27477,"ts":326459340474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":493544,"id":"0xaf88aa79f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459340962,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":493667,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459340993,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":493697,"id":"0x300000051"},
-{"pid":27443,"tid":27477,"ts":326459341023,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":493728},
-{"pid":27443,"tid":27477,"ts":326459341145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":493850,"id":"0xaf88aa7af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459341237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":493941,"id":"0xaf88a875f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459341237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":493972,"id":"0xaf88a9f8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459341328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":494033,"id":"0xaf88a64af182217a"},
-{"pid":27443,"tid":27477,"ts":326459341328,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":494033},
-{"pid":27443,"tid":27477,"ts":326459341359,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":92,"tts":494063},
-{"pid":27443,"tid":27477,"ts":326459341359,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":494063,"id":"0x300000054"},
-{"pid":27443,"tid":27477,"ts":326459341389,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":494094},
-{"pid":27443,"tid":27477,"ts":326459341420,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":494124,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459341450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":494155,"id":"0xaf88a876f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459344747,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":494216,"id":"0xaf88a64bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459344777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":494216},
-{"pid":27443,"tid":27477,"ts":326459344808,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":494246},
-{"pid":27443,"tid":27477,"ts":326459344808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":494246,"id":"0xaf88a877f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459350820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":494369,"id":"0xaf88a644f182217a"},
-{"pid":27443,"tid":27477,"ts":326459350851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1861,"tdur":1739,"tts":494369},
-{"pid":27443,"tid":27477,"ts":326459350851,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1861,"tdur":1709,"tts":494369},
-{"pid":27443,"tid":27477,"ts":326459350881,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":494399},
-{"pid":27443,"tid":27477,"ts":326459350881,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1801,"tdur":1679,"tts":494399},
-{"pid":27443,"tid":27477,"ts":326459350881,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1801,"tdur":1679,"tts":494399},
-{"pid":27443,"tid":27477,"ts":326459350912,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":494430},
-{"pid":27443,"tid":27477,"ts":326459350912,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":494430},
-{"pid":27443,"tid":27477,"ts":326459350942,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":494460,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459350942,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":494460},
-{"pid":27443,"tid":27477,"ts":326459350973,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":427,"tdur":427,"tts":494491},
-{"pid":27443,"tid":27477,"ts":326459351461,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1190,"tdur":1068,"tts":494979},
-{"pid":27443,"tid":27477,"ts":326459351461,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":102},"dur":336,"tdur":336,"tts":494979},
-{"pid":27443,"tid":27477,"ts":326459351797,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":102},"dur":30,"tdur":30,"tts":495315},
-{"pid":27443,"tid":27477,"ts":326459351858,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":102},"tts":495376},
-{"pid":27443,"tid":27477,"ts":326459351858,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":495376},
-{"pid":27443,"tid":27477,"ts":326459352194,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":495589},
-{"pid":27443,"tid":27477,"ts":326459352224,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":495620},
-{"pid":27443,"tid":27477,"ts":326459352224,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":152,"tts":495620},
-{"pid":27443,"tid":27477,"ts":326459352407,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":495803},
-{"pid":27443,"tid":27477,"ts":326459352407,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":495803},
-{"pid":27443,"tid":27477,"ts":326459352407,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":214,"tdur":184,"tts":495833},
-{"pid":27443,"tid":27477,"ts":326459352438,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":153,"tts":495833},
-{"pid":27443,"tid":27477,"ts":326459352438,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":495833,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459352468,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":495895},
-{"pid":27443,"tid":27477,"ts":326459352499,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":495895},
-{"pid":27443,"tid":27477,"ts":326459352560,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":495986,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459352621,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":496017,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459351644,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6610437},
-{"pid":27443,"tid":27459,"ts":326459351705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6610499,"id":"0xaf88a9f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459351705,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1098,"tts":6610499},
-{"pid":27443,"tid":27459,"ts":326459351705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6610529,"id":"0xaf88a876f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459351736,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1312,"tdur":1068,"tts":6610529},
-{"pid":27443,"tid":27459,"ts":326459351797,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1221,"tdur":977,"tts":6610590},
-{"pid":27443,"tid":27459,"ts":326459351797,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6610590,"id":"0x300000054"},
-{"pid":27443,"tid":27459,"ts":326459351827,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":855,"tdur":854,"tts":6610621},
-{"pid":27443,"tid":27459,"ts":326459351858,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":793,"tdur":794,"tts":6610651},
-{"pid":27443,"tid":27459,"ts":326459351919,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6610712},
-{"pid":27443,"tid":27459,"ts":326459351949,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6610743},
-{"pid":27443,"tid":27459,"ts":326459351980,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6610773},
-{"pid":27443,"tid":27459,"ts":326459352010,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6610804},
-{"pid":27443,"tid":27459,"ts":326459352041,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":6610865},
-{"pid":27443,"tid":27459,"ts":326459352194,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":6610987},
-{"pid":27443,"tid":27459,"ts":326459352224,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6611017},
-{"pid":27443,"tid":27459,"ts":326459352529,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":60,"frame":"0x78c60000"}},"tts":6611323,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459352560,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":6611353},
-{"pid":27443,"tid":27459,"ts":326459352560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6611384,"id":"0xaf88a645f182217a"},
-{"pid":27443,"tid":27459,"ts":326459352590,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6611414},
-{"pid":27443,"tid":27459,"ts":326459352682,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":275,"tdur":92,"tts":6611475},
-{"pid":27443,"tid":27459,"ts":326459352712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6611506,"id":"0xaf88aa7bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459353079,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6611628,"id":"0xaf88a9f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459353079,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":6611658},
-{"pid":27443,"tid":27459,"ts":326459353109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6611658,"id":"0xaf88a9faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459353140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6611689,"id":"0xaf88a877f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459353140,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6611689},
-{"pid":27443,"tid":27459,"ts":326459353140,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6611689},
-{"pid":27443,"tid":27459,"ts":326459353201,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6611750,"id":"0xaf88a9faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459353201,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6611750},
-{"pid":27443,"tid":27459,"ts":326459356283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6611841,"id":"0xaf88a9fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459356314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9003,"tdur":8485,"tts":6611872},
-{"pid":27443,"tid":27459,"ts":326459356344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6611902,"id":"0xaf88a9f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459356344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6611902,"id":"0xaf88a870f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459356344,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8943,"tdur":8424,"tts":6611902},
-{"pid":27443,"tid":27459,"ts":326459356375,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":103},"tts":6611933},
-{"pid":27443,"tid":27459,"ts":326459356375,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6611933},
-{"pid":27443,"tid":27459,"ts":326459356436,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8210,"tdur":7661,"tts":6611994},
-{"pid":27443,"tid":27459,"ts":326459356466,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":6612025},
-{"pid":27443,"tid":27459,"ts":326459356527,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":60,"frame":"0x78c60000"}},"dur":8088,"tdur":7569,"tts":6612086},
-{"pid":27443,"tid":27459,"ts":326459356619,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7996,"tdur":7478,"tts":6612177},
-{"pid":27443,"tid":27459,"ts":326459356650,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6612208},
-{"pid":27443,"tid":27459,"ts":326459356863,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6612452},
-{"pid":27443,"tid":27459,"ts":326459356924,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6612482},
-{"pid":27443,"tid":27459,"ts":326459363211,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6618281},
-{"pid":27443,"tid":27459,"ts":326459364158,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6619197},
-{"pid":27443,"tid":27459,"ts":326459364585,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6619624},
-{"pid":27443,"tid":27459,"ts":326459364646,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":153,"tdur":153,"tts":6619685},
-{"pid":27443,"tid":27459,"ts":326459364676,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":123,"tdur":122,"tts":6619716},
-{"pid":27443,"tid":27459,"ts":326459364707,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":6619746},
-{"pid":27443,"tid":27459,"ts":326459364737,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6619777},
-{"pid":27443,"tid":27459,"ts":326459364768,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":31,"tts":6619807},
-{"pid":27443,"tid":27459,"ts":326459364799,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":103},"dur":244,"tdur":244,"tts":6619838},
-{"pid":27443,"tid":27459,"ts":326459364829,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":214,"tdur":214,"tts":6619868},
-{"pid":27443,"tid":27459,"ts":326459365043,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6620082,"id":"0x300000054"},
-{"pid":27443,"tid":27459,"ts":326459365073,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6620112,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459365073,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6620112,"id":"0xaf88a65ff182217a"},
-{"pid":27443,"tid":27459,"ts":326459365165,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3133},"tts":6620204,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459365165,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6620204,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459365256,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901972.0,"time":326459336018.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459329000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459352590.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459365195.0},"coordinates":[{"x":467.5,"y":525.8719482421875}],"trace_id":12884901972.0}},"tts":6620296,"id":"0x300000054"},
-{"pid":27443,"tid":27459,"ts":326459365256,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6620296,"id":"0x300000054","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459365287,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6620326},
-{"pid":27443,"tid":27459,"ts":326459365348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6620387,"id":"0xaf88a9f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459365348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1038,"tdur":1038,"tts":6620387},
-{"pid":27443,"tid":27477,"ts":326459352651,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":496047,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459352712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":496108,"id":"0xaf88a645f182217a"},
-{"pid":27443,"tid":27477,"ts":326459352712,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":763,"tdur":31,"tts":496108},
-{"pid":27443,"tid":27477,"ts":326459353475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":496139},
-{"pid":27443,"tid":27477,"ts":326459353475,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":30,"tts":496139},
-{"pid":27443,"tid":27477,"ts":326459353506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":496169,"id":"0xaf88a646f182217a"},
-{"pid":27443,"tid":27477,"ts":326459353506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":496169},
-{"pid":27443,"tid":27477,"ts":326459353536,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":91,"tts":496200},
-{"pid":27443,"tid":27477,"ts":326459353567,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":496230,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459353567,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":496230},
-{"pid":27443,"tid":27477,"ts":326459353598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":496261,"id":"0xaf88a641f182217a"},
-{"pid":27443,"tid":27477,"ts":326459353628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":496322,"id":"0xaf88a647f182217a"},
-{"pid":27443,"tid":27477,"ts":326459353659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":496322},
-{"pid":27443,"tid":27477,"ts":326459353659,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":61,"tts":496352},
-{"pid":27443,"tid":27477,"ts":326459353689,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":496352,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459353720,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":496383},
-{"pid":27443,"tid":27477,"ts":326459353720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":496383,"id":"0xaf88a642f182217a"},
-{"pid":27443,"tid":27477,"ts":326459353750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":496413,"id":"0xaf88a640f182217a"},
-{"pid":27443,"tid":27477,"ts":326459353750,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":496413},
-{"pid":27443,"tid":27477,"ts":326459353872,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":496413},
-{"pid":27443,"tid":27477,"ts":326459353903,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":496444},
-{"pid":27443,"tid":27477,"ts":326459353903,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":496444,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459353903,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":496444},
-{"pid":27443,"tid":27477,"ts":326459353933,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":496474,"id":"0xaf88a641f182217a"},
-{"pid":27443,"tid":27477,"ts":326459353964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1862,"tdur":1526,"tts":496505},
-{"pid":27443,"tid":27477,"ts":326459353964,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1862,"tdur":1526,"tts":496505},
-{"pid":27443,"tid":27477,"ts":326459353994,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":496535},
-{"pid":27443,"tid":27477,"ts":326459353994,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":496535},
-{"pid":27443,"tid":27477,"ts":326459354025,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":496566},
-{"pid":27443,"tid":27477,"ts":326459354025,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":496566},
-{"pid":27443,"tid":27477,"ts":326459354147,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1679,"tdur":1343,"tts":496688},
-{"pid":27443,"tid":27477,"ts":326459354147,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1679,"tdur":1343,"tts":496688},
-{"pid":27443,"tid":27477,"ts":326459354177,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1618,"tdur":1281,"tts":496719},
-{"pid":27443,"tid":27477,"ts":326459354177,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":496719,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459354269,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":496810},
-{"pid":27443,"tid":27477,"ts":326459354300,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":496841},
-{"pid":27443,"tid":27477,"ts":326459354330,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":496871},
-{"pid":27443,"tid":27477,"ts":326459354361,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":496902},
-{"pid":27443,"tid":27477,"ts":326459354391,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":496932},
-{"pid":27443,"tid":27477,"ts":326459354422,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":91,"tdur":61,"tts":496963},
-{"pid":27443,"tid":27477,"ts":326459354422,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":496963},
-{"pid":27443,"tid":27477,"ts":326459354544,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":497054},
-{"pid":27443,"tid":27477,"ts":326459354574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":497085},
-{"pid":27443,"tid":27477,"ts":326459354605,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":497115},
-{"pid":27443,"tid":27477,"ts":326459354635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":497146},
-{"pid":27443,"tid":27477,"ts":326459354666,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":497176},
-{"pid":27443,"tid":27477,"ts":326459354696,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":497207},
-{"pid":27443,"tid":27477,"ts":326459354727,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":497237},
-{"pid":27443,"tid":27477,"ts":326459354757,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":497268},
-{"pid":27443,"tid":27477,"ts":326459354788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":497298},
-{"pid":27443,"tid":27477,"ts":326459354818,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":497329},
-{"pid":27443,"tid":27477,"ts":326459354849,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":497360},
-{"pid":27443,"tid":27477,"ts":326459354879,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":184,"tdur":31,"tts":497390},
-{"pid":27443,"tid":27477,"ts":326459354879,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":497390},
-{"pid":27443,"tid":27477,"ts":326459355093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":497451},
-{"pid":27443,"tid":27477,"ts":326459355124,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497482},
-{"pid":27443,"tid":27477,"ts":326459355154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497512},
-{"pid":27443,"tid":27477,"ts":326459355154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":497512},
-{"pid":27443,"tid":27477,"ts":326459355185,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":497543},
-{"pid":27443,"tid":27477,"ts":326459355215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497573},
-{"pid":27443,"tid":27477,"ts":326459355215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":497604},
-{"pid":27443,"tid":27477,"ts":326459355246,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497604},
-{"pid":27443,"tid":27477,"ts":326459355337,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":497695},
-{"pid":27443,"tid":27477,"ts":326459355368,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497726},
-{"pid":27443,"tid":27466,"ts":326459355063,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":278315,"id":"0xba44e402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459355124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278376,"id":"0xaf88a643f182217a"},
-{"pid":27443,"tid":27466,"ts":326459355612,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":278467},
-{"pid":27443,"tid":27466,"ts":326459355642,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":278498},
-{"pid":27443,"tid":27466,"ts":326459355673,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":278528,"id":"0xba44e502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459355673,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":278528},
-{"pid":27443,"tid":27466,"ts":326459355703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":278559,"id":"0xaf88a65cf182217a"},
-{"pid":27443,"tid":27466,"ts":326459357870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":278620,"id":"0xaf88aa74f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459357901,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":278650},
-{"pid":27443,"tid":27466,"ts":326459357901,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":278650,"id":"0xccc45806"},
-{"pid":27443,"tid":27466,"ts":326459358115,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":278773},
-{"pid":27443,"tid":27466,"ts":326459358145,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":278803},
-{"pid":27443,"tid":27466,"ts":326459358176,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":278834,"id":"0xc4c1670a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459358817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":278956,"id":"0xaf88aa75f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459358847,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":278956},
-{"pid":27443,"tid":27466,"ts":326459358847,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":278956,"id":"0xccc45902"},
-{"pid":27443,"tid":27466,"ts":326459363364,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":279078},
-{"pid":27443,"tid":27466,"ts":326459363395,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":92,"tts":279108},
-{"pid":27443,"tid":27466,"ts":326459363395,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":279139,"id":"0xba44e602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459363456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":279169,"id":"0xaf88a65ef182217a"},
-{"pid":27443,"tid":27466,"ts":326459366386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":279291,"id":"0xaf88aa76f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459366386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":279291},
-{"pid":27443,"tid":27466,"ts":326459366386,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":279291,"id":"0xccc45a02"},
-{"pid":27443,"tid":27466,"ts":326459370567,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":279383},
-{"pid":27443,"tid":27466,"ts":326459370597,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":279413},
-{"pid":27443,"tid":27466,"ts":326459370597,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":279413,"id":"0xba44e802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459370628,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":279475},
-{"pid":27443,"tid":27466,"ts":326459370658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":279475,"id":"0xaf88a659f182217a"},
-{"pid":27443,"tid":27466,"ts":326459370903,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":279597},
-{"pid":27443,"tid":27466,"ts":326459370933,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":31,"tdur":31,"tts":279627},
-{"pid":27443,"tid":27466,"ts":326459370933,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":279627,"id":"0xba44e902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459370964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":279658,"id":"0xaf88a65af182217a"},
-{"pid":27443,"tid":27466,"ts":326459372978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":279749,"id":"0xaf88aa77f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459372978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":279749},
-{"pid":27443,"tid":27466,"ts":326459373039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":279780},
-{"pid":27443,"tid":27466,"ts":326459373039,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":279780,"id":"0xccc45c02"},
-{"pid":27443,"tid":27466,"ts":326459374718,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":279871},
-{"pid":27443,"tid":27466,"ts":326459374748,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":279902},
-{"pid":27443,"tid":27466,"ts":326459374748,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":279902,"id":"0xba44ea02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459374779,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":279932},
-{"pid":27443,"tid":27466,"ts":326459374809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":279963,"id":"0xaf88a654f182217a"},
-{"pid":27443,"tid":27466,"ts":326459386315,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":280054},
-{"pid":27443,"tid":27466,"ts":326459386346,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":280085},
-{"pid":27443,"tid":27466,"ts":326459386346,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":280085,"id":"0xba44eb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459386376,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280115,"id":"0xaf88a653f182217a"},
-{"pid":27443,"tid":27466,"ts":326459403132,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":280207},
-{"pid":27443,"tid":27466,"ts":326459403163,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":280238},
-{"pid":27443,"tid":27466,"ts":326459403193,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":280268,"id":"0xba44ec02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459403224,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280299,"id":"0xaf88a66ef182217a"},
-{"pid":27443,"tid":27466,"ts":326459419766,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":280451},
-{"pid":27443,"tid":27466,"ts":326459419827,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":280482},
-{"pid":27443,"tid":27466,"ts":326459419827,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":280482,"id":"0xba44ed02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459419888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":280543,"id":"0xaf88a668f182217a"},
-{"pid":27443,"tid":27466,"ts":326459427396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280726,"id":"0xaf88aa70f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459427396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":280726},
-{"pid":27443,"tid":27466,"ts":326459427426,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":280756,"id":"0xccc45e02"},
-{"pid":27443,"tid":27466,"ts":326459427487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":280817,"id":"0xaf88aa71f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459427518,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":280848},
-{"pid":27443,"tid":27466,"ts":326459427518,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":280848,"id":"0xccc45f02"},
-{"pid":27443,"tid":27466,"ts":326459428830,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":280970},
-{"pid":27443,"tid":27466,"ts":326459428861,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":942},"dur":91,"tdur":91,"tts":281001},
-{"pid":27443,"tid":27466,"ts":326459428861,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":281031,"id":"0xba44ee02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459428922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":281062,"id":"0xaf88a807f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326459428952,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281092,"id":"0xaf88a98bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459355398,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497756},
-{"pid":27443,"tid":27477,"ts":326459355429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":497787},
-{"pid":27443,"tid":27477,"ts":326459355429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":497817},
-{"pid":27443,"tid":27477,"ts":326459355459,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":497817},
-{"pid":27443,"tid":27477,"ts":326459355490,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":183,"tdur":30,"tts":497848},
-{"pid":27443,"tid":27477,"ts":326459355490,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":497848},
-{"pid":27443,"tid":27477,"ts":326459355703,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":497909},
-{"pid":27443,"tid":27477,"ts":326459355734,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":497970},
-{"pid":27443,"tid":27477,"ts":326459355764,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":497970},
-{"pid":27443,"tid":27477,"ts":326459355764,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":497970},
-{"pid":27443,"tid":27477,"ts":326459355856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":498061,"id":"0xaf88a642f182217a"},
-{"pid":27443,"tid":27477,"ts":326459355856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":498061},
-{"pid":27443,"tid":27477,"ts":326459355856,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":153,"tts":498061},
-{"pid":27443,"tid":27477,"ts":326459355856,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":498061},
-{"pid":27443,"tid":27477,"ts":326459355887,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":498092},
-{"pid":27443,"tid":27477,"ts":326459355917,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":498123},
-{"pid":27443,"tid":27477,"ts":326459355917,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":498123},
-{"pid":27443,"tid":27477,"ts":326459355978,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":498184},
-{"pid":27443,"tid":27477,"ts":326459355978,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":498184},
-{"pid":27443,"tid":27477,"ts":326459356009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":498214,"id":"0xaf88a643f182217a"},
-{"pid":27443,"tid":27477,"ts":326459356039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":274,"tts":498245},
-{"pid":27443,"tid":27477,"ts":326459356039,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459351012.0,"frame_time_us":326459351601.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":244,"tts":498275},
-{"pid":27443,"tid":27477,"ts":326459356070,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459351012.0,"frame_time_us":326459351601.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":244,"tdur":244,"tts":498275},
-{"pid":27443,"tid":27477,"ts":326459356100,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":498306},
-{"pid":27443,"tid":27477,"ts":326459356131,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":103},"tts":498336},
-{"pid":27443,"tid":27477,"ts":326459356192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":498397,"id":"0xaf88a870f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459356222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":498428,"id":"0xaf88a9fbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459356253,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":498458},
-{"pid":27443,"tid":27477,"ts":326459356283,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":498489},
-{"pid":27443,"tid":27477,"ts":326459356283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":498489,"id":"0xaf88a65df182217a"},
-{"pid":27443,"tid":27477,"ts":326459356344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":498550,"id":"0xaf88a65cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459356344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":498550},
-{"pid":27443,"tid":27477,"ts":326459356344,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":498550},
-{"pid":27443,"tid":27477,"ts":326459356375,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":498580,"id":"0x300000055"},
-{"pid":27443,"tid":27477,"ts":326459356375,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":498580},
-{"pid":27443,"tid":27477,"ts":326459356405,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":498611,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459356436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":498641,"id":"0xaf88a871f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459356466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":498672,"id":"0xaf88a9f5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459356497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":498702,"id":"0xaf88a65df182217a"},
-{"pid":27443,"tid":27477,"ts":326459356497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2747,"tdur":1771,"tts":498702},
-{"pid":27443,"tid":27477,"ts":326459356497,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2381,"tdur":1771,"tts":498702},
-{"pid":27443,"tid":27477,"ts":326459356527,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2351,"tdur":1740,"tts":498733},
-{"pid":27443,"tid":27477,"ts":326459356527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":102},"dur":1099,"tdur":1099,"tts":498733},
-{"pid":27443,"tid":27477,"ts":326459356558,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":102},"dur":336,"tdur":336,"tts":498763},
-{"pid":27443,"tid":27477,"ts":326459356894,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":102},"dur":30,"tdur":31,"tts":499099},
-{"pid":27443,"tid":27477,"ts":326459356924,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":102},"tts":499130},
-{"pid":27443,"tid":27477,"ts":326459357046,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":499282},
-{"pid":27443,"tid":27477,"ts":326459357077,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":499282},
-{"pid":27443,"tid":27477,"ts":326459357077,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":499282},
-{"pid":27443,"tid":27477,"ts":326459357107,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":499313},
-{"pid":27443,"tid":27477,"ts":326459357107,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":499343,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459357199,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":499404},
-{"pid":27443,"tid":27477,"ts":326459357596,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":499801},
-{"pid":27443,"tid":27477,"ts":326459357626,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":946,"tdur":335,"tts":499832},
-{"pid":27443,"tid":27477,"ts":326459357626,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":499832},
-{"pid":27443,"tid":27477,"ts":326459357657,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":793,"tdur":214,"tts":499862},
-{"pid":27443,"tid":27477,"ts":326459357748,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":31,"tdur":30,"tts":499954},
-{"pid":27443,"tid":27477,"ts":326459357809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":500015,"id":"0xaf88aa74f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459358542,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":500137,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459358572,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":500167,"id":"0x300000053"},
-{"pid":27443,"tid":27477,"ts":326459358603,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":500198},
-{"pid":27443,"tid":27477,"ts":326459358755,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":500351,"id":"0xaf88aa75f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459358847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":500442,"id":"0xaf88a872f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459363486,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":500564,"id":"0xaf88a65ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459363517,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":500564},
-{"pid":27443,"tid":27477,"ts":326459363547,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":500595},
-{"pid":27443,"tid":27477,"ts":326459363578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":500625,"id":"0xaf88a873f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459365134,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":500686,"id":"0xaf88a65ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459365134,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":92,"tts":500686},
-{"pid":27443,"tid":27477,"ts":326459365134,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":92,"tdur":61,"tts":500717},
-{"pid":27443,"tid":27477,"ts":326459365195,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":31,"tts":500747},
-{"pid":27443,"tid":27477,"ts":326459366202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":500839,"id":"0xaf88a658f182217a"},
-{"pid":27443,"tid":27477,"ts":326459366233,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":0,"tdur":0,"tts":500869},
-{"pid":27443,"tid":27477,"ts":326459366233,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":500869},
-{"pid":27443,"tid":27477,"ts":326459371025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":500900,"id":"0xaf88a659f182217a"},
-{"pid":27443,"tid":27477,"ts":326459371055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":153,"tts":500930},
-{"pid":27443,"tid":27477,"ts":326459371055,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":214,"tdur":153,"tts":500930},
-{"pid":27443,"tid":27477,"ts":326459371086,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":500961,"id":"0x300000056"},
-{"pid":27443,"tid":27477,"ts":326459371086,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":61,"tdur":0,"tts":500961},
-{"pid":27443,"tid":27477,"ts":326459371177,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":500991,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459371208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":501022,"id":"0xaf88a80df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459371208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":501052,"id":"0xaf88a9f1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459371269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":501083,"id":"0xaf88a65af182217a"},
-{"pid":27443,"tid":27477,"ts":326459371299,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":306,"tdur":305,"tts":501114},
-{"pid":27443,"tid":27477,"ts":326459371330,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459367693.0,"frame_time_us":326459368282.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":244,"tts":501144},
-{"pid":27443,"tid":27477,"ts":326459371330,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459367693.0,"frame_time_us":326459368282.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":244,"tdur":244,"tts":501144},
-{"pid":27443,"tid":27477,"ts":326459371421,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":104},"tts":501236},
-{"pid":27443,"tid":27477,"ts":326459371482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":501297,"id":"0xaf88a80ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459371513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":501327,"id":"0xaf88a9f3f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459371513,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":501327},{"pid":27443,"tid":27477,"ts":326459371544,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459384948},"dur":30,"tdur":30,"tts":501358},
-{"pid":27443,"tid":27477,"ts":326459371574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":501388,"id":"0xaf88a65bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459374870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":501480,"id":"0xaf88a654f182217a"},
-{"pid":27443,"tid":27477,"ts":326459374870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":501480},
-{"pid":27443,"tid":27477,"ts":326459374870,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":92,"tts":501510},
-{"pid":27443,"tid":27477,"ts":326459374901,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":501510,"id":"0x300000057"},
-{"pid":27443,"tid":27477,"ts":326459374931,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchEnd"},"dur":0,"tdur":0,"tts":501541},
-{"pid":27443,"tid":27477,"ts":326459374931,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":501541,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459374962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":501571,"id":"0xaf88a80ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459374992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":501602,"id":"0xaf88a98df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459381005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":501693,"id":"0xaf88a655f182217a"},
-{"pid":27443,"tid":27477,"ts":326459381005,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":91,"tdur":92,"tts":501693},
-{"pid":27443,"tid":27477,"ts":326459381035,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":501724},
-{"pid":27443,"tid":27477,"ts":326459381066,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":31,"tts":501754},
-{"pid":27443,"tid":27477,"ts":326459385034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459384},"tts":501846,"id":"0xaf88a65bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459385064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":458,"tdur":366,"tts":501877},
-{"pid":27443,"tid":27477,"ts":326459385064,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":427,"tdur":366,"tts":501877},
-{"pid":27443,"tid":27477,"ts":326459385064,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":427,"tdur":366,"tts":501877},
-{"pid":27443,"tid":27477,"ts":326459385095,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":396,"tdur":305,"tts":501907},
-{"pid":27443,"tid":27477,"ts":326459385095,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":501907},
-{"pid":27443,"tid":27477,"ts":326459385186,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":501999},
-{"pid":27443,"tid":27477,"ts":326459385186,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":501999},
-{"pid":27443,"tid":27477,"ts":326459385186,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":501999},
-{"pid":27443,"tid":27477,"ts":326459385278,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":502029},
-{"pid":27443,"tid":27477,"ts":326459385308,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":502060},
-{"pid":27443,"tid":27477,"ts":326459385308,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":502060,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459385339,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":502090},
-{"pid":27443,"tid":27477,"ts":326459385339,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":502090},
-{"pid":27443,"tid":27477,"ts":326459385400,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":502182,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459385461,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":502212,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459385461,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":502212,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459385797,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":502304,"id":"0xaf88a656f182217a"},
-{"pid":27443,"tid":27477,"ts":326459385797,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":30,"tts":502304},
-{"pid":27443,"tid":27477,"ts":326459385980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":91,"tts":502365},
-{"pid":27443,"tid":27477,"ts":326459386010,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":502365},
-{"pid":27443,"tid":27477,"ts":326459386041,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":502395,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459386041,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":502395},
-{"pid":27443,"tid":27477,"ts":326459386071,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":502426,"id":"0xaf88a651f182217a"},
-{"pid":27443,"tid":27459,"ts":326459365378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6620418,"id":"0xaf88a9f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459365378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6620418,"id":"0xaf88a871f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459365409,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":977,"tdur":977,"tts":6620448},
-{"pid":27443,"tid":27459,"ts":326459365470,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":885,"tdur":885,"tts":6620509},
-{"pid":27443,"tid":27459,"ts":326459365470,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6620509,"id":"0x300000055"},
-{"pid":27443,"tid":27459,"ts":326459365500,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":763,"tdur":763,"tts":6620540},
-{"pid":27443,"tid":27459,"ts":326459365531,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":732,"tdur":733,"tts":6620570},
-{"pid":27443,"tid":27459,"ts":326459365562,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6620601},
-{"pid":27443,"tid":27459,"ts":326459365592,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6620662},
-{"pid":27443,"tid":27459,"ts":326459365623,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6620692},
-{"pid":27443,"tid":27459,"ts":326459365653,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6620723},
-{"pid":27443,"tid":27459,"ts":326459365714,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":550,"tts":6620753},
-{"pid":27443,"tid":27459,"ts":326459365836,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6620875},
-{"pid":27443,"tid":27459,"ts":326459365836,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6620906},
-{"pid":27443,"tid":27459,"ts":326459366111,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":61,"frame":"0x78c60000"}},"tts":6621181,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459366141,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6621181},
-{"pid":27443,"tid":27459,"ts":326459366172,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6621211,"id":"0xaf88a658f182217a"},
-{"pid":27443,"tid":27459,"ts":326459366202,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6621242},
-{"pid":27443,"tid":27459,"ts":326459366294,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6621333},
-{"pid":27443,"tid":27459,"ts":326459366294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6621333,"id":"0xaf88aa76f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459366416,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6621455,"id":"0xaf88a9f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459366416,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6621455},
-{"pid":27443,"tid":27459,"ts":326459366447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6621486,"id":"0xaf88a872f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459366447,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":6621486},
-{"pid":27443,"tid":27459,"ts":326459366447,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6621486},
-{"pid":27443,"tid":27459,"ts":326459366508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6621547,"id":"0xaf88a9f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459366508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6621547},
-{"pid":27443,"tid":27459,"ts":326459366538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6621577,"id":"0xaf88a9f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459366569,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6621608,"id":"0xaf88a873f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459366569,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6621608},
-{"pid":27443,"tid":27459,"ts":326459366569,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6621608},
-{"pid":27443,"tid":27459,"ts":326459366630,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6621669,"id":"0xaf88a9f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459366630,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1678,"tdur":1679,"tts":6621669},
-{"pid":27443,"tid":27459,"ts":326459366660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6621700,"id":"0xaf88a9f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459366660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6621700,"id":"0xaf88aba3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459366691,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":1587,"tdur":1587,"tts":6621730},
-{"pid":27443,"tid":27459,"ts":326459366691,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6621730,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459366721,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.546},"dur":1557,"tdur":1556,"tts":6621761},
-{"pid":27443,"tid":27459,"ts":326459366721,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6621791},
-{"pid":27443,"tid":27459,"ts":326459366782,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6621822},
-{"pid":27443,"tid":27459,"ts":326459368186,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6623226},
-{"pid":27443,"tid":27459,"ts":326459368217,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6623256},
-{"pid":27443,"tid":27459,"ts":326459368247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6623287,"id":"0xaf88a80cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459368278,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6623317,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459368308,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6623378,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459368339,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6623378,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459368369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6623409,"id":"0xaf88a9f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459368369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6623409},
-{"pid":27443,"tid":27459,"ts":326459371299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6623531,"id":"0xaf88a9f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459371299,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1771,"tdur":1404,"tts":6623531},
-{"pid":27443,"tid":27459,"ts":326459371330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6623561,"id":"0xaf88a9f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459371330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6623561,"id":"0xaf88a80df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459371360,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1679,"tdur":1343,"tts":6623592},
-{"pid":27443,"tid":27459,"ts":326459371605,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1403,"tdur":1251,"tts":6623653},
-{"pid":27443,"tid":27459,"ts":326459371635,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6623683,"id":"0x300000056"},
-{"pid":27443,"tid":27459,"ts":326459371666,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1190,"tdur":1038,"tts":6623714},
-{"pid":27443,"tid":27459,"ts":326459371696,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1129,"tdur":1008,"tts":6623744},
-{"pid":27443,"tid":27459,"ts":326459371757,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6623805},
-{"pid":27443,"tid":27459,"ts":326459371788,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":152,"tdur":30,"tts":6623836},
-{"pid":27443,"tid":27459,"ts":326459371788,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":30,"tts":6623836},
-{"pid":27443,"tid":27459,"ts":326459372001,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6623927},
-{"pid":27443,"tid":27459,"ts":326459372032,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6623958},
-{"pid":27443,"tid":27459,"ts":326459372062,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":763,"tdur":763,"tts":6623989},
-{"pid":27443,"tid":27459,"ts":326459372245,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":519,"tdur":518,"tts":6624172},
-{"pid":27443,"tid":27459,"ts":326459372276,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6624202},
-{"pid":27443,"tid":27459,"ts":326459372673,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":62,"frame":"0x78c60000"}},"tts":6624599,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459372734,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6624660},
-{"pid":27443,"tid":27459,"ts":326459372856,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":61,"tts":6624813},
-{"pid":27443,"tid":27459,"ts":326459372886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6624813,"id":"0xaf88aa77f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459373161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6625026,"id":"0xaf88a9f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459373192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8057,"tdur":7080,"tts":6625057},
-{"pid":27443,"tid":27459,"ts":326459373222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6625087,"id":"0xaf88a98cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459373253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6625118,"id":"0xaf88a80ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459373253,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":7965,"tdur":6989,"tts":6625118},
-{"pid":27443,"tid":27459,"ts":326459373253,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":104},"tts":6625118},
-{"pid":27443,"tid":27459,"ts":326459373283,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":885,"tdur":31,"tts":6625148},
-{"pid":27443,"tid":27459,"ts":326459374168,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6318,"tdur":6165,"tts":6625209},
-{"pid":27443,"tid":27459,"ts":326459374199,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":6625209},
-{"pid":27443,"tid":27459,"ts":326459374260,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":61,"frame":"0x78c60000"}},"dur":6073,"tdur":5921,"tts":6625270},
-{"pid":27443,"tid":27459,"ts":326459374321,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5982,"tdur":5829,"tts":6625362},
-{"pid":27443,"tid":27459,"ts":326459374351,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6625362},
-{"pid":27443,"tid":27459,"ts":326459374535,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6625576},
-{"pid":27443,"tid":27459,"ts":326459374596,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":30,"tdur":31,"tts":6625606},
-{"pid":27443,"tid":27459,"ts":326459380272,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6631191},
-{"pid":27443,"tid":27459,"ts":326459380333,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":62,"frame":"0x78c60000"}},"dur":153,"tdur":122,"tts":6631252},
-{"pid":27443,"tid":27459,"ts":326459380425,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":6631313},
-{"pid":27443,"tid":27459,"ts":326459380425,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6631313},
-{"pid":27443,"tid":27459,"ts":326459380455,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6631344},
-{"pid":27443,"tid":27459,"ts":326459380486,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":183,"tdur":153,"tts":6631405},
-{"pid":27443,"tid":27459,"ts":326459380517,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":91,"tts":6631436},
-{"pid":27443,"tid":27459,"ts":326459380547,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":31,"tdur":30,"tts":6631436},
-{"pid":27443,"tid":27459,"ts":326459380578,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":6631466},
-{"pid":27443,"tid":27459,"ts":326459380608,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":30,"tts":6631497},
-{"pid":27443,"tid":27459,"ts":326459380669,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":104},"dur":214,"tdur":213,"tts":6631558},
-{"pid":27443,"tid":27459,"ts":326459380669,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":214,"tdur":213,"tts":6631558},
-{"pid":27443,"tid":27459,"ts":326459380913,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6631802,"id":"0x300000055"},
-{"pid":27443,"tid":27459,"ts":326459380913,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6631802,"id":"0x300000056"},
-{"pid":27443,"tid":27459,"ts":326459380913,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6631802,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459380944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6631832,"id":"0xaf88a655f182217a"},
-{"pid":27443,"tid":27459,"ts":326459381005,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3943},"tts":6631893,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459381035,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6631924,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459381127,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901973.0,"time":326459354055.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459337000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459366202.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459381035.0},"coordinates":[{"x":467.5,"y":526.25}],"trace_id":12884901973.0}},"tts":6632015,"id":"0x300000055"},
-{"pid":27443,"tid":27459,"ts":326459381127,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6632015,"id":"0x300000055","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459381188,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901974.0,"time":326459369773.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459360000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459372734.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459381127.0},"coordinates":[{"x":467.5,"y":526.6956176757812}],"trace_id":12884901974.0}},"tts":6632076,"id":"0x300000056"},
-{"pid":27443,"tid":27459,"ts":326459381188,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6632076,"id":"0x300000056","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459381218,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6632107},
-{"pid":27443,"tid":27459,"ts":326459381280,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459380},"tts":6632168,"id":"0xaf88a9d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459381280,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":6632168},
-{"pid":27443,"tid":27459,"ts":326459381341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6632229,"id":"0xaf88a9f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459381341,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":6632229},
-{"pid":27443,"tid":27459,"ts":326459381341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6632260,"id":"0xaf88a866f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459381371,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6632260},
-{"pid":27443,"tid":27459,"ts":326459381371,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6632290,"id":"0xaf88a808f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459381402,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6632290,"id":"0xaf88a98ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459381463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6632351,"id":"0xaf88a98cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459381463,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":45994,"tdur":45598,"tts":6632351},
-{"pid":27443,"tid":27459,"ts":326459381463,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6632382,"id":"0xaf88a98ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459381493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6632382,"id":"0xaf88a80ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459381493,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":45933,"tdur":45536,"tts":6632382},
-{"pid":27443,"tid":27459,"ts":326459381554,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchEnd"},"dur":45842,"tdur":45445,"tts":6632443},
-{"pid":27443,"tid":27459,"ts":326459381554,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6632473,"id":"0x300000057"},
-{"pid":27443,"tid":27459,"ts":326459381585,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchend"},"dur":45658,"tdur":45262,"tts":6632473},
-{"pid":27443,"tid":27459,"ts":326459381615,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":45628,"tdur":45231,"tts":6632504},
-{"pid":27443,"tid":27459,"ts":326459381676,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6632565},
-{"pid":27443,"tid":27459,"ts":326459381707,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6632595},
-{"pid":27443,"tid":27459,"ts":326459381737,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchend"}},"dur":45476,"tdur":45078,"tts":6632626},
-{"pid":27443,"tid":27459,"ts":326459381859,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":45293,"tdur":44895,"tts":6632748},
-{"pid":27443,"tid":27459,"ts":326459381890,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6632778},
-{"pid":27443,"tid":27459,"ts":326459381920,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6632809},
-{"pid":27443,"tid":27459,"ts":326459382165,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6633053},
-{"pid":27443,"tid":27459,"ts":326459382317,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6633206},
-{"pid":27443,"tid":27459,"ts":326459382592,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6633480},
-{"pid":27443,"tid":27459,"ts":326459382897,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6633786},
-{"pid":27443,"tid":27459,"ts":326459382928,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mouseup"}},"dur":30,"tdur":31,"tts":6633816},
-{"pid":27443,"tid":27459,"ts":326459390344,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6641202},
-{"pid":27443,"tid":27459,"ts":326459390436,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6641324},
-{"pid":27443,"tid":27459,"ts":326459390497,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6641385},
-{"pid":27443,"tid":27459,"ts":326459390588,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6641477},
-{"pid":27443,"tid":27459,"ts":326459391382,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6642240},
-{"pid":27443,"tid":27459,"ts":326459391443,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6642301},
-{"pid":27443,"tid":27459,"ts":326459391473,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6642362},
-{"pid":27443,"tid":27459,"ts":326459391534,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6642423},
-{"pid":27443,"tid":27459,"ts":326459392145,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6643003},
-{"pid":27443,"tid":27459,"ts":326459392206,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6643094},
-{"pid":27443,"tid":27459,"ts":326459392267,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6643125},
-{"pid":27443,"tid":27459,"ts":326459392358,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6643216},
-{"pid":27443,"tid":27459,"ts":326459392633,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6643491},
-{"pid":27443,"tid":27459,"ts":326459392664,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6643522,"id":"0xaf88a66df182217a"},
-{"pid":27443,"tid":27459,"ts":326459392938,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6643796},
-{"pid":27443,"tid":27459,"ts":326459393030,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6643888},
-{"pid":27443,"tid":27459,"ts":326459393091,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6643949},
-{"pid":27443,"tid":27459,"ts":326459393152,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6644040},
-{"pid":27443,"tid":27459,"ts":326459396234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6647123,"id":"0xaf88a80af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459396265,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6647123,"id":"0xaf88a989f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459396326,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":140,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":6647184,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459401545,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6652342},
-{"pid":27443,"tid":27459,"ts":326459401759,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6652586},
-{"pid":27443,"tid":27459,"ts":326459401850,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6652678},
-{"pid":27443,"tid":27459,"ts":326459402003,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6652800},
-{"pid":27443,"tid":27459,"ts":326459402491,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6653288},
-{"pid":27443,"tid":27459,"ts":326459402583,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6653380},
-{"pid":27443,"tid":27459,"ts":326459402644,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6653441},
-{"pid":27443,"tid":27459,"ts":326459402674,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6653471},
-{"pid":27443,"tid":27459,"ts":326459402735,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6653563},
-{"pid":27443,"tid":27459,"ts":326459403285,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6653776},
-{"pid":27443,"tid":27459,"ts":326459403315,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6653807},
-{"pid":27443,"tid":27459,"ts":326459403468,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6653960},
-{"pid":27443,"tid":27459,"ts":326459403651,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6654143},
-{"pid":27443,"tid":27459,"ts":326459403773,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6654265},
-{"pid":27443,"tid":27459,"ts":326459403804,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6654295},
-{"pid":27443,"tid":27459,"ts":326459403926,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6654417},
-{"pid":27443,"tid":27459,"ts":326459404109,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6654600},
-{"pid":27443,"tid":27459,"ts":326459404200,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6654692},
-{"pid":27443,"tid":27459,"ts":326459404261,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6654753},
-{"pid":27443,"tid":27459,"ts":326459404383,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6654875},
-{"pid":27443,"tid":27459,"ts":326459404872,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6655363},
-{"pid":27443,"tid":27459,"ts":326459404933,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6655455},
-{"pid":27443,"tid":27459,"ts":326459404994,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6655486},
-{"pid":27443,"tid":27459,"ts":326459405055,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6655577},
-{"pid":27443,"tid":27459,"ts":326459405452,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6655943},
-{"pid":27443,"tid":27459,"ts":326459405574,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6656065},
-{"pid":27443,"tid":27459,"ts":326459405635,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6656157},
-{"pid":27443,"tid":27459,"ts":326459405757,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6656249},
-{"pid":27443,"tid":27459,"ts":326459406001,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6656493},
-{"pid":27443,"tid":27459,"ts":326459406184,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6656676},
-{"pid":27443,"tid":27459,"ts":326459406276,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6656798},
-{"pid":27443,"tid":27459,"ts":326459406459,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6656951},
-{"pid":27443,"tid":27459,"ts":326459407771,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6658263},
-{"pid":27443,"tid":27459,"ts":326459408046,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6658538},
-{"pid":27443,"tid":27459,"ts":326459408168,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6658660},
-{"pid":27443,"tid":27459,"ts":326459408565,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6659056},
-{"pid":27443,"tid":27459,"ts":326459410091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6660582,"id":"0xaf88a80bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459386102,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":502456,"id":"0xaf88a657f182217a"},
-{"pid":27443,"tid":27477,"ts":326459386102,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":502456},
-{"pid":27443,"tid":27477,"ts":326459386102,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":502487},
-{"pid":27443,"tid":27477,"ts":326459386132,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":502487,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459386132,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":502487},
-{"pid":27443,"tid":27477,"ts":326459386163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":502517,"id":"0xaf88a652f182217a"},
-{"pid":27443,"tid":27477,"ts":326459386193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":502548,"id":"0xaf88a650f182217a"},
-{"pid":27443,"tid":27477,"ts":326459386193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":502548},
-{"pid":27443,"tid":27477,"ts":326459386193,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":502548},
-{"pid":27443,"tid":27477,"ts":326459386193,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":502548,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459386224,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":502578},
-{"pid":27443,"tid":27477,"ts":326459386224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":502578,"id":"0xaf88a651f182217a"},
-{"pid":27443,"tid":27477,"ts":326459386224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":502578},
-{"pid":27443,"tid":27477,"ts":326459386254,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":502609},
-{"pid":27443,"tid":27477,"ts":326459386254,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":502609},
-{"pid":27443,"tid":27477,"ts":326459386254,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":502609},
-{"pid":27443,"tid":27477,"ts":326459386285,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":502640},
-{"pid":27443,"tid":27477,"ts":326459386285,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":502640},
-{"pid":27443,"tid":27477,"ts":326459386346,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":502701},
-{"pid":27443,"tid":27477,"ts":326459386346,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":502701},
-{"pid":27443,"tid":27477,"ts":326459386376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":502731,"id":"0xaf88a652f182217a"},
-{"pid":27443,"tid":27477,"ts":326459386407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":91,"tdur":91,"tts":502762},
-{"pid":27443,"tid":27477,"ts":326459386407,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":91,"tts":502762},
-{"pid":27443,"tid":27477,"ts":326459386407,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":502762},
-{"pid":27443,"tid":27477,"ts":326459386407,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":502762},
-{"pid":27443,"tid":27477,"ts":326459386437,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":31,"tts":502792},
-{"pid":27443,"tid":27477,"ts":326459386437,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":502792},
-{"pid":27443,"tid":27477,"ts":326459386498,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":502853},
-{"pid":27443,"tid":27477,"ts":326459386498,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":502853},
-{"pid":27443,"tid":27477,"ts":326459386529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":502884,"id":"0xaf88a653f182217a"},
-{"pid":27443,"tid":27477,"ts":326459386529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":502884},
-{"pid":27443,"tid":27477,"ts":326459386560,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459384375.0,"frame_time_us":326459384964.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":502914},
-{"pid":27443,"tid":27477,"ts":326459386590,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459384375.0,"frame_time_us":326459384964.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":502945},
-{"pid":27443,"tid":27477,"ts":326459386621,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459401630},"dur":30,"tdur":31,"tts":502975},
-{"pid":27443,"tid":27477,"ts":326459386621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":503006,"id":"0xaf88a66cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459392725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":503097,"id":"0xaf88a66df182217a"},
-{"pid":27443,"tid":27477,"ts":326459392725,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":183,"tdur":183,"tts":503097},
-{"pid":27443,"tid":27477,"ts":326459392755,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":503128},
-{"pid":27443,"tid":27477,"ts":326459392755,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":105},"tts":503128},
-{"pid":27443,"tid":27477,"ts":326459392847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":503219,"id":"0xaf88a809f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459392877,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":503250,"id":"0xaf88a988f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459392877,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":503250},
-{"pid":27443,"tid":27477,"ts":326459401789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459401},"tts":503372,"id":"0xaf88a66cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459401789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":503372},
-{"pid":27443,"tid":27477,"ts":326459401789,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":503372},
-{"pid":27443,"tid":27477,"ts":326459403346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":503433,"id":"0xaf88a66ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459403376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":503464},
-{"pid":27443,"tid":27477,"ts":326459403407,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459401056.0,"frame_time_us":326459401645.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":503494},
-{"pid":27443,"tid":27477,"ts":326459403437,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459401056.0,"frame_time_us":326459401645.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":91,"tts":503525},
-{"pid":27443,"tid":27477,"ts":326459403468,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459418311},"dur":61,"tdur":30,"tts":503586},
-{"pid":27443,"tid":27477,"ts":326459403498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":503586,"id":"0xaf88a66ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459418392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459418},"tts":503708,"id":"0xaf88a66ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459418423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":503708},
-{"pid":27443,"tid":27477,"ts":326459418423,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":0,"tts":503738},
-{"pid":27443,"tid":27477,"ts":326459419979,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":503799,"id":"0xaf88a668f182217a"},
-{"pid":27443,"tid":27477,"ts":326459419979,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":1160,"tdur":275,"tts":503799},
-{"pid":27443,"tid":27477,"ts":326459420681,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459417738.0,"frame_time_us":326459418327.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":458,"tdur":214,"tts":503860},
-{"pid":27443,"tid":27477,"ts":326459420712,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459417738.0,"frame_time_us":326459418327.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":427,"tdur":183,"tts":503891},
-{"pid":27443,"tid":27477,"ts":326459420773,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459434993},"dur":366,"tdur":91,"tts":503952},
-{"pid":27443,"tid":27477,"ts":326459420773,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":30,"tts":503952},
-{"pid":27443,"tid":27477,"ts":326459421078,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":504043,"id":"0xaf88a669f182217a"},
-{"pid":27443,"tid":27477,"ts":326459433347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":504196,"id":"0xaf88a66af182217a"},
-{"pid":27443,"tid":27477,"ts":326459433378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":3235,"tdur":2289,"tts":504196},
-{"pid":27443,"tid":27477,"ts":326459433408,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":3174,"tdur":2228,"tts":504227},
-{"pid":27443,"tid":27459,"ts":326459410121,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":141,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":6660643,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459411556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6662047,"id":"0xaf88a804f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459411586,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":142,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":6662078,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459412410,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":141,"frame":"0x78c60000"}},"tts":6662902,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459413204,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6663696},
-{"pid":27443,"tid":27459,"ts":326459413295,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6663787},
-{"pid":27443,"tid":27459,"ts":326459413356,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6663848},
-{"pid":27443,"tid":27459,"ts":326459413448,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6663940},
-{"pid":27443,"tid":27459,"ts":326459413967,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6664489},
-{"pid":27443,"tid":27459,"ts":326459414089,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6664581},
-{"pid":27443,"tid":27459,"ts":326459414150,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6664642},
-{"pid":27443,"tid":27459,"ts":326459414242,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6664733},
-{"pid":27443,"tid":27459,"ts":326459414394,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6664886},
-{"pid":27443,"tid":27459,"ts":326459414486,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6664977},
-{"pid":27443,"tid":27459,"ts":326459414547,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6665038},
-{"pid":27443,"tid":27459,"ts":326459414638,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6665130},
-{"pid":27443,"tid":27459,"ts":326459415157,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6665679},
-{"pid":27443,"tid":27459,"ts":326459415249,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6665771},
-{"pid":27443,"tid":27459,"ts":326459415340,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6665832},
-{"pid":27443,"tid":27459,"ts":326459415401,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6665924},
-{"pid":27443,"tid":27459,"ts":326459415829,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6666320},
-{"pid":27443,"tid":27459,"ts":326459415920,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6666412},
-{"pid":27443,"tid":27459,"ts":326459415981,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6666473},
-{"pid":27443,"tid":27459,"ts":326459416073,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6666564},
-{"pid":27443,"tid":27459,"ts":326459416408,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":62,"tdur":61,"tts":6666900},
-{"pid":27443,"tid":27459,"ts":326459416561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6667053,"id":"0xaf88a805f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459417202,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommit","args":{},"dur":31,"tdur":0,"tts":6667694},
-{"pid":27443,"tid":27459,"ts":326459418026,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":6668518},
-{"pid":27443,"tid":27459,"ts":326459418820,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":6669311},
-{"pid":27443,"tid":27459,"ts":326459421231,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6671722},
-{"pid":27443,"tid":27459,"ts":326459424130,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6674652},
-{"pid":27443,"tid":27459,"ts":326459425809,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6676300},
-{"pid":27443,"tid":27459,"ts":326459425931,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6676423},
-{"pid":27443,"tid":27459,"ts":326459425961,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6676484},
-{"pid":27443,"tid":27459,"ts":326459426083,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6676575},
-{"pid":27443,"tid":27459,"ts":326459426785,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6677277},
-{"pid":27443,"tid":27459,"ts":326459426846,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6677369},
-{"pid":27443,"tid":27459,"ts":326459426907,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6677399},
-{"pid":27443,"tid":27459,"ts":326459426938,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6677460},
-{"pid":27443,"tid":27459,"ts":326459427152,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6677643},
-{"pid":27443,"tid":27459,"ts":326459427274,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6677765},
-{"pid":27443,"tid":27459,"ts":326459427274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6677765,"id":"0xaf88aa70f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459427365,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1382},"dur":31,"tdur":31,"tts":6677857},
-{"pid":27443,"tid":27459,"ts":326459427396,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6677888,"id":"0xaf88aa71f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459427487,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6677979,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459427487,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6677979,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459427548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6678040,"id":"0xaf88a98df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459427548,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6837,"tdur":5860,"tts":6678040},
-{"pid":27443,"tid":27459,"ts":326459427579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6678071,"id":"0xaf88a809f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459427579,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":6806,"tdur":5829,"tts":6678071},
-{"pid":27443,"tid":27459,"ts":326459427579,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":105},"tts":6678101},
-{"pid":27443,"tid":27459,"ts":326459427609,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":6678101},
-{"pid":27443,"tid":27459,"ts":326459427640,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":6678132},
-{"pid":27443,"tid":27459,"ts":326459427670,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6678162},
-{"pid":27443,"tid":27459,"ts":326459427701,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":5280,"tdur":5280,"tts":6678193},
-{"pid":27443,"tid":27459,"ts":326459427732,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6678223},
-{"pid":27443,"tid":27459,"ts":326459427762,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6678254},
-{"pid":27443,"tid":27459,"ts":326459427762,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6678254},
-{"pid":27443,"tid":27459,"ts":326459428159,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6678651},
-{"pid":27443,"tid":27459,"ts":326459428189,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6678681},
-{"pid":27443,"tid":27459,"ts":326459428189,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":794,"tdur":794,"tts":6678681},
-{"pid":27443,"tid":27459,"ts":326459428281,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":10,"totalObjects":306,"partialLayout":false,"frame":"0x78c60000"}},"tts":6678803},
-{"pid":27443,"tid":27459,"ts":326459428311,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":6678803},
-{"pid":27443,"tid":27459,"ts":326459428342,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":6678834},
-{"pid":27443,"tid":27459,"ts":326459428556,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":30,"tdur":31,"tts":6679047},
-{"pid":27443,"tid":27459,"ts":326459428586,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":6679078},
-{"pid":27443,"tid":27459,"ts":326459428586,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":244,"tdur":214,"tts":6679108},
-{"pid":27443,"tid":27459,"ts":326459428830,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":92,"tdur":62,"tts":6679352},
-{"pid":27443,"tid":27459,"ts":326459428861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6679383,"id":"0xaf88a806f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459428891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6679383,"id":"0xaf88a98af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459428952,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":6679444},
-{"pid":27443,"tid":27459,"ts":326459428983,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3968,"tdur":3937,"tts":6679505},
-{"pid":27443,"tid":27459,"ts":326459429013,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2656,"tdur":2655,"tts":6679505},
-{"pid":27443,"tid":27459,"ts":326459429044,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":824,"tdur":824,"tts":6679536},
-{"pid":27443,"tid":27459,"ts":326459429868,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6680360},
-{"pid":27443,"tid":27459,"ts":326459430051,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6680543},
-{"pid":27443,"tid":27459,"ts":326459430143,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":6680634},
-{"pid":27443,"tid":27459,"ts":326459430173,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1435,"tdur":1434,"tts":6680665},
-{"pid":27443,"tid":27459,"ts":326459431608,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":61,"tdur":61,"tts":6682099},
-{"pid":27443,"tid":27459,"ts":326459431699,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":977,"tdur":977,"tts":6682191},
-{"pid":27443,"tid":27459,"ts":326459431699,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":946,"tdur":946,"tts":6682191},
-{"pid":27443,"tid":27459,"ts":326459431730,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":213,"tdur":184,"tts":6682221},
-{"pid":27443,"tid":27459,"ts":326459431943,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":702,"tdur":671,"tts":6682435},
-{"pid":27443,"tid":27459,"ts":326459432004,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":489,"tdur":488,"tts":6682496},
-{"pid":27443,"tid":27459,"ts":326459432676,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6683168},
-{"pid":27443,"tid":27459,"ts":326459432706,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":245,"tdur":244,"tts":6683198},
-{"pid":27443,"tid":27459,"ts":326459432981,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":105},"dur":275,"tdur":274,"tts":6683473},
-{"pid":27443,"tid":27459,"ts":326459432981,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":274,"tts":6683473},
-{"pid":27443,"tid":27459,"ts":326459433256,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6683747,"id":"0x300000057"},
-{"pid":27443,"tid":27459,"ts":326459433256,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1068,"tdur":92,"tts":6683747},
-{"pid":27443,"tid":27459,"ts":326459433286,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6683778,"id":"0xaf88a66af182217a"},
-{"pid":27443,"tid":27459,"ts":326459434354,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6683869},
-{"pid":27443,"tid":27459,"ts":326459434415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6683931,"id":"0xaf88a98ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459434415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":122,"tts":6683931},
-{"pid":27443,"tid":27459,"ts":326459434446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6683961,"id":"0xaf88a984f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459434446,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6683992,"id":"0xaf88a807f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459434477,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":6683992},
-{"pid":27443,"tid":27459,"ts":326459434477,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":942},"dur":61,"tdur":61,"tts":6683992},
-{"pid":27443,"tid":27459,"ts":326459434568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684083,"id":"0xaf88a988f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459434568,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6684083},
-{"pid":27443,"tid":27459,"ts":326459434629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684144,"id":"0xaf88a98bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459434629,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6684144},
-{"pid":27443,"tid":27459,"ts":326459434660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459397},"tts":6684175,"id":"0xaf88a989f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459434660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":6684175},
-{"pid":27443,"tid":27459,"ts":326459434721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684236,"id":"0xaf88a984f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459434721,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6684236},
-{"pid":27443,"tid":27459,"ts":326459442717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684327,"id":"0xaf88a985f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459442748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6684358},
-{"pid":27443,"tid":27459,"ts":326459442748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6684358,"id":"0xaf88a986f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459442778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6684388,"id":"0xaf88a800f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459442778,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":6684388},
-{"pid":27443,"tid":27459,"ts":326459442778,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6684388},
-{"pid":27443,"tid":27459,"ts":326459442839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684449,"id":"0xaf88a986f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459442870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6684480},
-{"pid":27443,"tid":27459,"ts":326459445006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684571,"id":"0xaf88a987f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459445037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":6684571},
-{"pid":27443,"tid":27459,"ts":326459445067,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6684602,"id":"0xaf88a980f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459445067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6684602,"id":"0xaf88a801f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459445098,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6684633},
-{"pid":27443,"tid":27459,"ts":326459445098,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6684633},
-{"pid":27443,"tid":27459,"ts":326459445159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684724,"id":"0xaf88a980f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459445189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6684724},
-{"pid":27443,"tid":27459,"ts":326459450042,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459449},"tts":6684846,"id":"0xaf88a98af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459450042,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":153,"tdur":92,"tts":6684846},
-{"pid":27443,"tid":27459,"ts":326459450072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6684877,"id":"0xaf88a981f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459450225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6684968,"id":"0xaf88a981f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459450225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6684999},
-{"pid":27443,"tid":27459,"ts":326459469178,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6685121,"id":"0xaf88a982f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459433408,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":504227},
-{"pid":27443,"tid":27477,"ts":326459433439,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":3143,"tdur":2198,"tts":504257},
-{"pid":27443,"tid":27477,"ts":326459433469,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":3113,"tdur":2167,"tts":504288},
-{"pid":27443,"tid":27477,"ts":326459433469,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":504288},
-{"pid":27443,"tid":27477,"ts":326459433500,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":504318},
-{"pid":27443,"tid":27477,"ts":326459433530,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":504349,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459433530,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":504349},
-{"pid":27443,"tid":27477,"ts":326459433561,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":427,"tdur":427,"tts":504379},
-{"pid":27443,"tid":27477,"ts":326459433988,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":504806},
-{"pid":27443,"tid":27477,"ts":326459434049,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":504868},
-{"pid":27443,"tid":27477,"ts":326459434293,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":2259,"tdur":1252,"tts":505142},
-{"pid":27443,"tid":27477,"ts":326459434324,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":105},"dur":427,"tdur":427,"tts":505142},
-{"pid":27443,"tid":27477,"ts":326459434751,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":105},"dur":61,"tdur":31,"tts":505600},
-{"pid":27443,"tid":27477,"ts":326459434843,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":105},"tts":505661},
-{"pid":27443,"tid":27477,"ts":326459434995,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":505814},
-{"pid":27443,"tid":27477,"ts":326459434995,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":505844},
-{"pid":27443,"tid":27477,"ts":326459435026,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":549,"tdur":550,"tts":505844},
-{"pid":27443,"tid":27477,"ts":326459435056,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":152,"tts":505875},
-{"pid":27443,"tid":27477,"ts":326459435240,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":506058},
-{"pid":27443,"tid":27477,"ts":326459435240,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":506058},
-{"pid":27443,"tid":27477,"ts":326459435270,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":214,"tdur":183,"tts":506088},
-{"pid":27443,"tid":27477,"ts":326459435301,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":152,"tts":506119},
-{"pid":27443,"tid":27477,"ts":326459435301,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":506119,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459435331,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":506149},
-{"pid":27443,"tid":27477,"ts":326459435362,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":506180},
-{"pid":27443,"tid":27477,"ts":326459435453,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":506271,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459435514,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":180}},"tts":506333,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459435545,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":506363,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459436613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459434},"tts":506485,"id":"0xaf88a669f182217a"},
-{"pid":27443,"tid":27477,"ts":326459436643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":62,"tdur":30,"tts":506516},
-{"pid":27443,"tid":27477,"ts":326459436643,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":506516},
-{"pid":27443,"tid":27477,"ts":326459436705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":506577,"id":"0xaf88a66bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459436735,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":506607},
-{"pid":27443,"tid":27477,"ts":326459436735,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":506607},
-{"pid":27443,"tid":27477,"ts":326459436766,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":506638,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459436796,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":506668},
-{"pid":27443,"tid":27477,"ts":326459436796,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506668,"id":"0xaf88a667f182217a"},
-{"pid":27443,"tid":27477,"ts":326459436857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":506729,"id":"0xaf88a664f182217a"},
-{"pid":27443,"tid":27477,"ts":326459436857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":506729},
-{"pid":27443,"tid":27477,"ts":326459436918,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459434419.0,"frame_time_us":326459435008.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":506790},
-{"pid":27443,"tid":27477,"ts":326459436949,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459434419.0,"frame_time_us":326459435008.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":506821},
-{"pid":27443,"tid":27477,"ts":326459436979,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459451674},"dur":61,"tdur":61,"tts":506851},
-{"pid":27443,"tid":27477,"ts":326459437010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506882,"id":"0xaf88a660f182217a"},
-{"pid":27443,"tid":27477,"ts":326459437071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":506943,"id":"0xaf88a665f182217a"},
-{"pid":27443,"tid":27477,"ts":326459437071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":506943},
-{"pid":27443,"tid":27477,"ts":326459437101,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":92,"tts":506973},
-{"pid":27443,"tid":27477,"ts":326459437132,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":507004,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459437132,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":30,"tts":507004},
-{"pid":27443,"tid":27477,"ts":326459437162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":507034,"id":"0xaf88a661f182217a"},
-{"pid":27443,"tid":27477,"ts":326459437193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":507096,"id":"0xaf88a666f182217a"},
-{"pid":27443,"tid":27477,"ts":326459437223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":507096},
-{"pid":27443,"tid":27477,"ts":326459437223,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":507096},
-{"pid":27443,"tid":27477,"ts":326459437254,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":507126,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459437254,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":507126},
-{"pid":27443,"tid":27477,"ts":326459437284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":507157,"id":"0xaf88a667f182217a"},
-{"pid":27443,"tid":27477,"ts":326459437315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2350,"tdur":2350,"tts":507187},
-{"pid":27443,"tid":27477,"ts":326459437345,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2289,"tdur":2289,"tts":507218},
-{"pid":27443,"tid":27477,"ts":326459437345,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":507218},
-{"pid":27443,"tid":27477,"ts":326459437376,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":507248},
-{"pid":27443,"tid":27477,"ts":326459437406,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":123,"tdur":122,"tts":507279},
-{"pid":27443,"tid":27477,"ts":326459437406,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":507279},
-{"pid":27443,"tid":27477,"ts":326459437559,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2075,"tdur":2076,"tts":507431},
-{"pid":27443,"tid":27477,"ts":326459437559,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2075,"tdur":2076,"tts":507431},
-{"pid":27443,"tid":27477,"ts":326459437590,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1953,"tdur":1953,"tts":507462},
-{"pid":27443,"tid":27466,"ts":326459436247,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":281184},
-{"pid":27443,"tid":27466,"ts":326459436308,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":281214},
-{"pid":27443,"tid":27466,"ts":326459436308,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":281214,"id":"0xba44ef02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459436369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281275,"id":"0xaf88a664f182217a"},
-{"pid":27443,"tid":27466,"ts":326459441893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":281367,"id":"0xaf88aa72f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459441923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":281397},
-{"pid":27443,"tid":27466,"ts":326459441923,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":281397,"id":"0xccc46006"},
-{"pid":27443,"tid":27466,"ts":326459442137,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":281519},
-{"pid":27443,"tid":27466,"ts":326459442168,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":281550},
-{"pid":27443,"tid":27466,"ts":326459442198,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":281580,"id":"0xc4c16a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459442625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":281703,"id":"0xaf88aa73f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459442625,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":281703},
-{"pid":27443,"tid":27466,"ts":326459442656,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":281733,"id":"0xccc46102"},
-{"pid":27443,"tid":27466,"ts":326459444731,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":281855},
-{"pid":27443,"tid":27466,"ts":326459444762,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":281886},
-{"pid":27443,"tid":27466,"ts":326459444762,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":281886,"id":"0xba44f002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459444823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":281947,"id":"0xaf88a678f182217a"},
-{"pid":27443,"tid":27466,"ts":326459452972,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":282038},
-{"pid":27443,"tid":27466,"ts":326459453002,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":153,"tdur":122,"tts":282069},
-{"pid":27443,"tid":27466,"ts":326459453033,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":282099,"id":"0xba44f202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459453094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":282160,"id":"0xaf88a679f182217a"},
-{"pid":27443,"tid":27466,"ts":326459468720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":282313,"id":"0xaf88aa0cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459468751,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":282343},
-{"pid":27443,"tid":27466,"ts":326459468751,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":282343,"id":"0xccc46202"},
-{"pid":27443,"tid":27466,"ts":326459469422,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":282466},
-{"pid":27443,"tid":27466,"ts":326459469453,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":282496},
-{"pid":27443,"tid":27466,"ts":326459469483,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":282527,"id":"0xba44f302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459469514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":282557,"id":"0xaf88a67bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459480867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":282740,"id":"0xaf88aa0df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459480898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":282771},
-{"pid":27443,"tid":27466,"ts":326459480929,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":282801,"id":"0xccc46302"},
-{"pid":27443,"tid":27466,"ts":326459486300,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":244,"tts":282954},
-{"pid":27443,"tid":27466,"ts":326459486361,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":153,"tdur":152,"tts":283015},
-{"pid":27443,"tid":27466,"ts":326459486392,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":283045,"id":"0xba44f402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459486453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":283106,"id":"0xaf88a676f182217a"},
-{"pid":27443,"tid":27466,"ts":326459502964,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":274,"tts":283290},
-{"pid":27443,"tid":27466,"ts":326459503025,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":183,"tdur":153,"tts":283381},
-{"pid":27443,"tid":27466,"ts":326459503056,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":283381,"id":"0xba44f502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459503117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":283473,"id":"0xaf88a60ff182217a"},
-{"pid":27443,"tid":27466,"ts":326459519537,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":213,"tts":283656},
-{"pid":27443,"tid":27466,"ts":326459519598,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":122,"tts":283717},
-{"pid":27443,"tid":27466,"ts":326459519628,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":283747,"id":"0xba44f602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459519689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":283808,"id":"0xaf88a60bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459520178,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":283992,"id":"0xaf88aa0ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459520178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":283992},
-{"pid":27443,"tid":27466,"ts":326459520208,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":284022,"id":"0xccc46402"},
-{"pid":27443,"tid":27466,"ts":326459625534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":284144,"id":"0xaf88aa0ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459625565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":284175},
-{"pid":27443,"tid":27466,"ts":326459625565,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":284175,"id":"0xccc46502"},
-{"pid":27443,"tid":27466,"ts":326459627091,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":284297},
-{"pid":27443,"tid":27466,"ts":326459627121,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":284327},
-{"pid":27443,"tid":27466,"ts":326459627152,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":284358,"id":"0xba44f702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459627182,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284388,"id":"0xaf88a601f182217a"},
-{"pid":27443,"tid":27466,"ts":326459636552,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":284510},
-{"pid":27443,"tid":27466,"ts":326459636613,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":284571},
-{"pid":27443,"tid":27466,"ts":326459636613,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":284571,"id":"0xba44f802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459636643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284602,"id":"0xaf88a61cf182217a"},
-{"pid":27443,"tid":27466,"ts":326459652087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":284724,"id":"0xaf88aa08f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459652117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":284755},
-{"pid":27443,"tid":27466,"ts":326459652117,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":284755,"id":"0xccc46602"},
-{"pid":27443,"tid":27466,"ts":326459652972,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":284877},
-{"pid":27443,"tid":27466,"ts":326459653002,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":31,"tdur":31,"tts":284907},
-{"pid":27443,"tid":27466,"ts":326459653002,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":284907,"id":"0xba44f902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459653033,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":284938,"id":"0xaf88a61ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459437590,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":507462,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459437651,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":488,"tdur":488,"tts":507523},
-{"pid":27443,"tid":27477,"ts":326459438139,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":508011},
-{"pid":27443,"tid":27477,"ts":326459438292,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":508164},
-{"pid":27443,"tid":27477,"ts":326459438322,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":508225},
-{"pid":27443,"tid":27477,"ts":326459438383,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":508255},
-{"pid":27443,"tid":27477,"ts":326459438414,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":508286},
-{"pid":27443,"tid":27477,"ts":326459438444,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":508316},
-{"pid":27443,"tid":27477,"ts":326459438475,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":508347},
-{"pid":27443,"tid":27477,"ts":326459438505,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":508377},
-{"pid":27443,"tid":27477,"ts":326459438536,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":508408},
-{"pid":27443,"tid":27477,"ts":326459438597,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":508469},
-{"pid":27443,"tid":27477,"ts":326459438627,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":508499},
-{"pid":27443,"tid":27477,"ts":326459438658,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":508530},
-{"pid":27443,"tid":27477,"ts":326459438688,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":508560},
-{"pid":27443,"tid":27477,"ts":326459438719,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":508591},
-{"pid":27443,"tid":27477,"ts":326459438749,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":508622},
-{"pid":27443,"tid":27477,"ts":326459438780,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":508652},
-{"pid":27443,"tid":27477,"ts":326459438810,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":508683},
-{"pid":27443,"tid":27477,"ts":326459438841,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":508744},
-{"pid":27443,"tid":27477,"ts":326459438902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":508774},
-{"pid":27443,"tid":27477,"ts":326459438932,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":508835},
-{"pid":27443,"tid":27477,"ts":326459438994,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":508866},
-{"pid":27443,"tid":27477,"ts":326459439085,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":508957},
-{"pid":27443,"tid":27477,"ts":326459439116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":508988},
-{"pid":27443,"tid":27477,"ts":326459439146,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":509049},
-{"pid":27443,"tid":27477,"ts":326459439207,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":509079},
-{"pid":27443,"tid":27477,"ts":326459439238,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":509110},
-{"pid":27443,"tid":27477,"ts":326459439268,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":509140},
-{"pid":27443,"tid":27477,"ts":326459439299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":509171},
-{"pid":27443,"tid":27477,"ts":326459439360,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":509232},
-{"pid":27443,"tid":27477,"ts":326459439421,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":509293},{"pid":27443,"tid":27477,"ts":326459439451,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":509323},
-{"pid":27443,"tid":27477,"ts":326459439482,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":509354},
-{"pid":27443,"tid":27477,"ts":326459439543,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":61,"tts":509415},
-{"pid":27443,"tid":27477,"ts":326459439573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509476,"id":"0xaf88a662f182217a"},
-{"pid":27443,"tid":27477,"ts":326459439665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":509537,"id":"0xaf88a661f182217a"},
-{"pid":27443,"tid":27477,"ts":326459439696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":335,"tdur":335,"tts":509568},
-{"pid":27443,"tid":27477,"ts":326459439726,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":244,"tdur":244,"tts":509598},
-{"pid":27443,"tid":27477,"ts":326459439757,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":509629},
-{"pid":27443,"tid":27477,"ts":326459439787,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":509659},
-{"pid":27443,"tid":27477,"ts":326459439818,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":91,"tts":509690},
-{"pid":27443,"tid":27477,"ts":326459439848,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":509720},
-{"pid":27443,"tid":27477,"ts":326459439909,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":30,"tts":509812},
-{"pid":27443,"tid":27477,"ts":326459439940,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":509812},
-{"pid":27443,"tid":27477,"ts":326459440031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":509934,"id":"0xaf88a662f182217a"},
-{"pid":27443,"tid":27477,"ts":326459440062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3082,"tdur":2747,"tts":509934},
-{"pid":27443,"tid":27477,"ts":326459440062,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3052,"tdur":2716,"tts":509934},
-{"pid":27443,"tid":27477,"ts":326459440092,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":509964},
-{"pid":27443,"tid":27477,"ts":326459440123,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2594,"tdur":2258,"tts":509995},
-{"pid":27443,"tid":27477,"ts":326459440153,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":105},"dur":1404,"tdur":1404,"tts":510025},
-{"pid":27443,"tid":27477,"ts":326459440184,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":105},"dur":488,"tdur":488,"tts":510056},
-{"pid":27443,"tid":27477,"ts":326459440672,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":105},"dur":61,"tdur":61,"tts":510544},
-{"pid":27443,"tid":27477,"ts":326459440733,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":105},"tts":510605},
-{"pid":27443,"tid":27477,"ts":326459440855,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":510727},
-{"pid":27443,"tid":27477,"ts":326459440886,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":510758},
-{"pid":27443,"tid":27477,"ts":326459440886,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":510758},
-{"pid":27443,"tid":27477,"ts":326459440916,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":510788},
-{"pid":27443,"tid":27477,"ts":326459440947,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":510819,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459441038,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":510911},
-{"pid":27443,"tid":27477,"ts":326459441527,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":511399},
-{"pid":27443,"tid":27477,"ts":326459441557,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":428,"tts":511429},
-{"pid":27443,"tid":27477,"ts":326459441588,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":511460},
-{"pid":27443,"tid":27477,"ts":326459441618,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":306,"tts":511490},
-{"pid":27443,"tid":27477,"ts":326459441740,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":31,"tdur":30,"tts":511613},
-{"pid":27443,"tid":27477,"ts":326459441801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":511674,"id":"0xaf88aa72f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459442290,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":511826,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459442351,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":511887,"id":"0x300000057"},
-{"pid":27443,"tid":27477,"ts":326459442351,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":274,"tdur":275,"tts":511887},
-{"pid":27443,"tid":27477,"ts":326459442534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512070,"id":"0xaf88aa73f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459442625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":512162,"id":"0xaf88a800f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459442656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512192,"id":"0xaf88a985f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459442717,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":397,"tdur":397,"tts":512253},
-{"pid":27443,"tid":27477,"ts":326459442748,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":512284},
-{"pid":27443,"tid":27477,"ts":326459442809,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":512345},
-{"pid":27443,"tid":27477,"ts":326459442870,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":512406},
-{"pid":27443,"tid":27477,"ts":326459442900,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":512437},
-{"pid":27443,"tid":27477,"ts":326459442931,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":512467},
-{"pid":27443,"tid":27477,"ts":326459442931,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":512467},
-{"pid":27443,"tid":27477,"ts":326459442931,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":512467,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459442961,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":512498},
-{"pid":27443,"tid":27477,"ts":326459442992,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":512528},
-{"pid":27443,"tid":27477,"ts":326459443053,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":512589,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459443083,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":165}},"tts":512620,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459443083,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":512620,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459443144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":512681,"id":"0xaf88a663f182217a"},
-{"pid":27443,"tid":27477,"ts":326459443175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":512711},
-{"pid":27443,"tid":27477,"ts":326459443175,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":512711},
-{"pid":27443,"tid":27477,"ts":326459443205,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":512742,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459443205,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":512742},
-{"pid":27443,"tid":27477,"ts":326459443236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512772,"id":"0xaf88a67ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459443236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":512803,"id":"0xaf88a67cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459443266,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":512803},
-{"pid":27443,"tid":27477,"ts":326459443266,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":512803},
-{"pid":27443,"tid":27477,"ts":326459443297,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":512833,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459443297,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":512833},
-{"pid":27443,"tid":27477,"ts":326459443327,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512864,"id":"0xaf88a67ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459443358,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":512894,"id":"0xaf88a67df182217a"},
-{"pid":27443,"tid":27477,"ts":326459443358,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":512894},
-{"pid":27443,"tid":27477,"ts":326459443358,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":512894},
-{"pid":27443,"tid":27477,"ts":326459443388,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":512925,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459443388,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":512925},
-{"pid":27443,"tid":27477,"ts":326459443419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":512955,"id":"0xaf88a67ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459443419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":184,"tts":512955},
-{"pid":27443,"tid":27477,"ts":326459443450,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":512986},
-{"pid":27443,"tid":27477,"ts":326459443450,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":512986},
-{"pid":27443,"tid":27477,"ts":326459443450,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":512986},
-{"pid":27443,"tid":27477,"ts":326459443480,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":62,"tts":513016},
-{"pid":27443,"tid":27477,"ts":326459443480,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":62,"tts":513016},
-{"pid":27443,"tid":27477,"ts":326459443541,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":513078},
-{"pid":27443,"tid":27477,"ts":326459443572,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":513108},
-{"pid":27443,"tid":27477,"ts":326459443602,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":513139,"id":"0xaf88a67ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459443602,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":513139},
-{"pid":27443,"tid":27477,"ts":326459443633,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":513169},
-{"pid":27443,"tid":27477,"ts":326459443633,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":513169},
-{"pid":27443,"tid":27477,"ts":326459443633,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":513169},
-{"pid":27443,"tid":27477,"ts":326459443663,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":513200},
-{"pid":27443,"tid":27477,"ts":326459443663,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":513200},
-{"pid":27443,"tid":27477,"ts":326459443724,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":513261},
-{"pid":27443,"tid":27477,"ts":326459443724,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":513261},
-{"pid":27443,"tid":27477,"ts":326459444884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":513383,"id":"0xaf88a678f182217a"},
-{"pid":27443,"tid":27477,"ts":326459444884,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":513383},
-{"pid":27443,"tid":27477,"ts":326459444914,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":92,"tdur":92,"tts":513413},
-{"pid":27443,"tid":27477,"ts":326459444945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":513444,"id":"0xaf88a801f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459444945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":513444,"id":"0xaf88a987f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459451782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459451},"tts":513566,"id":"0xaf88a660f182217a"},
-{"pid":27443,"tid":27477,"ts":326459451812,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":513596},
-{"pid":27443,"tid":27477,"ts":326459453491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":513688,"id":"0xaf88a679f182217a"},
-{"pid":27443,"tid":27477,"ts":326459453521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":306,"tts":513718},
-{"pid":27443,"tid":27477,"ts":326459453613,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459451101.0,"frame_time_us":326459451690.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":305,"tdur":214,"tts":513810},
-{"pid":27443,"tid":27477,"ts":326459453643,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459451101.0,"frame_time_us":326459451690.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":244,"tdur":152,"tts":513841},
-{"pid":27443,"tid":27477,"ts":326459453735,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459468356},"dur":152,"tdur":61,"tts":513932},
-{"pid":27443,"tid":27477,"ts":326459453765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":513963,"id":"0xaf88a67af182217a"},
-{"pid":27443,"tid":27477,"ts":326459453765,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":513963},
-{"pid":27443,"tid":27477,"ts":326459468507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459468},"tts":514176,"id":"0xaf88a67af182217a"},
-{"pid":27443,"tid":27477,"ts":326459468507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":366,"tdur":305,"tts":514207},
-{"pid":27443,"tid":27477,"ts":326459468537,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":305,"tdur":305,"tts":514207},
-{"pid":27443,"tid":27477,"ts":326459468598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":514268,"id":"0xaf88aa0cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459468690,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":514359,"id":"0xaf88a802f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459468751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":514420,"id":"0xaf88a982f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459470124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":514634,"id":"0xaf88a67bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459470124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":514634},
-{"pid":27443,"tid":27477,"ts":326459470155,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459467783.0,"frame_time_us":326459468372.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":30,"tdur":0,"tts":514695},
-{"pid":27443,"tid":27477,"ts":326459470185,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":514695,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459480684,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":514787,"id":"0xaf88a674f182217a"},
-{"pid":27443,"tid":27477,"ts":326459480715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":514817},
-{"pid":27443,"tid":27477,"ts":326459480715,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":514817},
-{"pid":27443,"tid":27477,"ts":326459480745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":514848,"id":"0xaf88aa0df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459480806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":514909,"id":"0xaf88a675f182217a"},
-{"pid":27443,"tid":27477,"ts":326459480837,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":514939,"id":"0xaf88a675f182217a"},
-{"pid":27443,"tid":27477,"ts":326459480867,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":62,"tdur":61,"tts":514970},
-{"pid":27443,"tid":27477,"ts":326459480867,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":62,"tdur":61,"tts":514970},
-{"pid":27443,"tid":27477,"ts":326459480898,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-13.084,"BeginFrameArgs":{"deadline_us":326459467783.0,"frame_time_us":326459468372.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":515000,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459480929,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":515031,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459486514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":515092,"id":"0xaf88a676f182217a"},
-{"pid":27443,"tid":27477,"ts":326459486544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":515092},
-{"pid":27443,"tid":27477,"ts":326459486575,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459484464.0,"frame_time_us":326459485053.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":274,"tdur":275,"tts":515122},
-{"pid":27443,"tid":27477,"ts":326459486605,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459484464.0,"frame_time_us":326459485053.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":244,"tdur":244,"tts":515153},
-{"pid":27443,"tid":27477,"ts":326459486636,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":106},"tts":515183},
-{"pid":27443,"tid":27477,"ts":326459486727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":515275,"id":"0xaf88a814f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459486758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":515305,"id":"0xaf88a9adf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459486788,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":515336},
-{"pid":27443,"tid":27477,"ts":326459486788,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459501719},"dur":61,"tdur":31,"tts":515336},
-{"pid":27443,"tid":27477,"ts":326459486819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":515367,"id":"0xaf88a677f182217a"},
-{"pid":27443,"tid":27477,"ts":326459494174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":515489,"id":"0xaf88a670f182217a"},
-{"pid":27443,"tid":27477,"ts":326459494174,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1679,"tdur":1678,"tts":515489},
-{"pid":27443,"tid":27477,"ts":326459494205,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1648,"tdur":1618,"tts":515519},
-{"pid":27443,"tid":27477,"ts":326459494205,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":515519},
-{"pid":27443,"tid":27477,"ts":326459494235,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1587,"tdur":1587,"tts":515550},
-{"pid":27443,"tid":27477,"ts":326459494235,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1587,"tdur":1587,"tts":515550},
-{"pid":27443,"tid":27477,"ts":326459494266,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":515580},
-{"pid":27443,"tid":27477,"ts":326459494266,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":515580},
-{"pid":27443,"tid":27477,"ts":326459494296,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":515611,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459494296,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":515611},
-{"pid":27443,"tid":27477,"ts":326459494327,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":305,"tdur":305,"tts":515641},
-{"pid":27443,"tid":27477,"ts":326459494663,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":515977},
-{"pid":27443,"tid":27477,"ts":326459494693,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":0,"tdur":0,"tts":516007},
-{"pid":27443,"tid":27477,"ts":326459494754,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1038,"tdur":1037,"tts":516069},
-{"pid":27443,"tid":27477,"ts":326459494785,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":106},"dur":305,"tdur":305,"tts":516099},
-{"pid":27443,"tid":27477,"ts":326459495090,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":106},"dur":61,"tdur":31,"tts":516404},
-{"pid":27443,"tid":27477,"ts":326459495151,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":106},"tts":516465},
-{"pid":27443,"tid":27477,"ts":326459495273,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":516587},
-{"pid":27443,"tid":27477,"ts":326459495273,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":516618},
-{"pid":27443,"tid":27477,"ts":326459495304,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":488,"tdur":488,"tts":516618},
-{"pid":27443,"tid":27477,"ts":326459495304,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":122,"tts":516648},
-{"pid":27443,"tid":27477,"ts":326459495487,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":516801},
-{"pid":27443,"tid":27477,"ts":326459495487,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":516801},
-{"pid":27443,"tid":27477,"ts":326459495517,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":214,"tdur":213,"tts":516832},
-{"pid":27443,"tid":27477,"ts":326459495517,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":214,"tdur":213,"tts":516832},
-{"pid":27443,"tid":27477,"ts":326459495548,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":516862,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459495578,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":516893},
-{"pid":27443,"tid":27477,"ts":326459495578,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":516893},
-{"pid":27443,"tid":27459,"ts":326459469209,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":183,"tts":6685151},
-{"pid":27443,"tid":27459,"ts":326459469209,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":31,"tts":6685151},
-{"pid":27443,"tid":27459,"ts":326459469636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6685182,"id":"0xaf88a983f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459469667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6685212,"id":"0xaf88a802f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459469667,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":122,"tdur":122,"tts":6685212},
-{"pid":27443,"tid":27459,"ts":326459469697,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":61,"tdur":61,"tts":6685243},
-{"pid":27443,"tid":27459,"ts":326459469728,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":11674},"tts":6685273,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459469758,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6685304,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459469819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6685365,"id":"0xaf88a983f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459469850,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":518,"tdur":518,"tts":6685396},
-{"pid":27443,"tid":27459,"ts":326459469850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6685396,"id":"0xaf88a99cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459469880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6685426,"id":"0xaf88a805f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459469880,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":488,"tdur":457,"tts":6685457},
-{"pid":27443,"tid":27459,"ts":326459469911,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":427,"tdur":427,"tts":6685457},
-{"pid":27443,"tid":27459,"ts":326459469941,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6685487},
-{"pid":27443,"tid":27459,"ts":326459470033,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":6685579},
-{"pid":27443,"tid":27459,"ts":326459470094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6685640,"id":"0xaf88a803f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459470124,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6685670},
-{"pid":27443,"tid":27459,"ts":326459470155,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":6685731},
-{"pid":27443,"tid":27459,"ts":326459470216,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6685762,"id":"0xaf88a81cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459470246,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6685792},
-{"pid":27443,"tid":27459,"ts":326459470277,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":6685823},
-{"pid":27443,"tid":27459,"ts":326459470338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6685884,"id":"0xaf88a81df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459470399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6685945,"id":"0xaf88a99cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459470430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5615,"tdur":5616,"tts":6685975},
-{"pid":27443,"tid":27459,"ts":326459470460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6686006,"id":"0xaf88a99df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459470460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6686006,"id":"0xaf88a80af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459470491,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":5524,"tdur":5525,"tts":6686036},
-{"pid":27443,"tid":27459,"ts":326459470491,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":5524,"tdur":5525,"tts":6686036},
-{"pid":27443,"tid":27459,"ts":326459470521,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":140,"frame":"0x78c60000"}},"dur":5494,"tdur":5464,"tts":6686097},
-{"pid":27443,"tid":27459,"ts":326459470552,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":5432,"tdur":5402,"tts":6686128},
-{"pid":27443,"tid":27459,"ts":326459470674,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":64,"frame":"0x78c60000"}},"dur":5310,"tdur":5310,"tts":6686220},
-{"pid":27443,"tid":27459,"ts":326459470704,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6686250},
-{"pid":27443,"tid":27459,"ts":326459471284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6686830,"id":"0xaf88a81ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459471315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6686860,"id":"0xaf88a99ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459471345,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":143,"frame":"0x78c60000","timeout":50,"singleShot":true}},"tts":6686922,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459472383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6687959,"id":"0xaf88a81ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459472444,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":144,"frame":"0x78c60000","timeout":300,"singleShot":true}},"tts":6687990,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459474947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6690492,"id":"0xaf88a818f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459474977,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6690553,"id":"0xaf88a99ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459475038,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":145,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":6690584,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459475954,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6691500},
-{"pid":27443,"tid":27459,"ts":326459476076,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6691622,"id":"0xaf88a99df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459476106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6691652},
-{"pid":27443,"tid":27459,"ts":326459476106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6691652,"id":"0xaf88a998f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459476137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6691683,"id":"0xaf88a80bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459476137,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":30,"tdur":30,"tts":6691683},
-{"pid":27443,"tid":27459,"ts":326459476198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6691744,"id":"0xaf88a998f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459476228,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6837,"tdur":6837,"tts":6691774},
-{"pid":27443,"tid":27459,"ts":326459476228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6691805,"id":"0xaf88a999f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459476259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6691805,"id":"0xaf88a804f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459476259,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":6775,"tdur":6775,"tts":6691805},
-{"pid":27443,"tid":27459,"ts":326459476289,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":6715,"tdur":6715,"tts":6691835},
-{"pid":27443,"tid":27459,"ts":326459476320,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":142,"frame":"0x78c60000"}},"dur":6684,"tdur":6684,"tts":6691866},
-{"pid":27443,"tid":27459,"ts":326459476350,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":6654,"tdur":6654,"tts":6691896},
-{"pid":27443,"tid":27459,"ts":326459476412,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":6561,"tdur":6562,"tts":6691957},
-{"pid":27443,"tid":27459,"ts":326459476442,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6691988},
-{"pid":27443,"tid":27459,"ts":326459477693,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6693239},
-{"pid":27443,"tid":27459,"ts":326459477815,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6693392},
-{"pid":27443,"tid":27459,"ts":326459477907,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6693483},
-{"pid":27443,"tid":27459,"ts":326459478029,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6693575},
-{"pid":27443,"tid":27459,"ts":326459478334,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6693880},
-{"pid":27443,"tid":27459,"ts":326459478487,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6694033},
-{"pid":27443,"tid":27459,"ts":326459478548,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6694094},
-{"pid":27443,"tid":27459,"ts":326459478701,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6694246},
-{"pid":27443,"tid":27459,"ts":326459478884,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6694430},
-{"pid":27443,"tid":27459,"ts":326459478975,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6694521},
-{"pid":27443,"tid":27459,"ts":326459479006,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6694582},
-{"pid":27443,"tid":27459,"ts":326459479097,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6694643},
-{"pid":27443,"tid":27459,"ts":326459479158,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6694704},
-{"pid":27443,"tid":27459,"ts":326459479280,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6694826},
-{"pid":27443,"tid":27459,"ts":326459479372,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6694918},
-{"pid":27443,"tid":27459,"ts":326459479464,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6695040},
-{"pid":27443,"tid":27459,"ts":326459479708,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6695284},
-{"pid":27443,"tid":27459,"ts":326459479830,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6695406},
-{"pid":27443,"tid":27459,"ts":326459479891,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6695437},
-{"pid":27443,"tid":27459,"ts":326459480043,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6695589},
-{"pid":27443,"tid":27459,"ts":326459480593,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6696139},
-{"pid":27443,"tid":27459,"ts":326459480623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6696169,"id":"0xaf88a674f182217a"},
-{"pid":27443,"tid":27459,"ts":326459480684,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommit","args":{},"dur":31,"tdur":0,"tts":6696261},
-{"pid":27443,"tid":27459,"ts":326459482943,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6698489},
-{"pid":27443,"tid":27459,"ts":326459483095,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6698641,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459483095,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6698641,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459483157,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6698702,"id":"0xaf88a819f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459483187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459475},"tts":6698733,"id":"0xaf88a99ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6698733},
-{"pid":27443,"tid":27459,"ts":326459483248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6698794,"id":"0xaf88a999f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483248,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6698794},
-{"pid":27443,"tid":27459,"ts":326459483309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459481},"tts":6698855,"id":"0xaf88a98ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":6698855},
-{"pid":27443,"tid":27459,"ts":326459483340,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6698886,"id":"0xaf88a99af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6698916,"id":"0xaf88a99bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6698947,"id":"0xaf88a99af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483431,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6698977},
-{"pid":27443,"tid":27459,"ts":326459483431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699008,"id":"0xaf88a994f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6699008,"id":"0xaf88a808f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459483462,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":6699008},
-{"pid":27443,"tid":27459,"ts":326459483492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6699038,"id":"0xaf88a81af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459483553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6699099,"id":"0xaf88a994f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459483584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6699130},
-{"pid":27443,"tid":27459,"ts":326459484316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459484},"tts":6699221,"id":"0xaf88a99bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484316,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":6699221},
-{"pid":27443,"tid":27459,"ts":326459484347,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699252,"id":"0xaf88a995f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484377,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699282,"id":"0xaf88a996f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6699313,"id":"0xaf88a995f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":6699313},
-{"pid":27443,"tid":27459,"ts":326459484438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699343,"id":"0xaf88a997f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6699374,"id":"0xaf88a819f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459484469,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":91,"tdur":61,"tts":6699374},
-{"pid":27443,"tid":27459,"ts":326459484499,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":36785},"tts":6699404,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459484530,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6699435,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459484591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6699496,"id":"0xaf88a997f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6699496},
-{"pid":27443,"tid":27459,"ts":326459484621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699526,"id":"0xaf88a990f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6699557,"id":"0xaf88a806f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459484652,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":61,"tts":6699557},
-{"pid":27443,"tid":27459,"ts":326459484652,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":61,"tdur":0,"tts":6699587},
-{"pid":27443,"tid":27459,"ts":326459484683,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":0,"tdur":0,"tts":6699587},
-{"pid":27443,"tid":27459,"ts":326459484744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6699649,"id":"0xaf88a990f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":6699679},
-{"pid":27443,"tid":27459,"ts":326459484774,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699679,"id":"0xaf88a991f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484805,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6699710,"id":"0xaf88a803f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459484805,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":6699710},
-{"pid":27443,"tid":27459,"ts":326459484805,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":0,"tts":6699740},
-{"pid":27443,"tid":27459,"ts":326459484896,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6699801,"id":"0xaf88a991f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484896,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6699801},
-{"pid":27443,"tid":27459,"ts":326459484927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699832,"id":"0xaf88a992f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459484927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6699832,"id":"0xaf88a81cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459484957,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":6699862},
-{"pid":27443,"tid":27459,"ts":326459484957,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":6699862},
-{"pid":27443,"tid":27459,"ts":326459485018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6699923,"id":"0xaf88a992f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459485049,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6699954},
-{"pid":27443,"tid":27459,"ts":326459485049,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6699984,"id":"0xaf88a993f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459485079,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6699984,"id":"0xaf88a81df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459485079,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":61,"tts":6699984},
-{"pid":27443,"tid":27459,"ts":326459485110,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":6700015},
-{"pid":27443,"tid":27459,"ts":326459485171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6700076,"id":"0xaf88a993f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459485171,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1831,"tdur":1831,"tts":6700076},
-{"pid":27443,"tid":27459,"ts":326459485201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6700106,"id":"0xaf88a9acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459485201,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6700137,"id":"0xaf88a818f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459485232,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1740,"tdur":1740,"tts":6700137},
-{"pid":27443,"tid":27459,"ts":326459485232,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1740,"tdur":1740,"tts":6700137},
-{"pid":27443,"tid":27459,"ts":326459485293,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":145,"frame":"0x78c60000"}},"dur":1679,"tdur":1679,"tts":6700198},
-{"pid":27443,"tid":27459,"ts":326459485323,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1618,"tdur":1618,"tts":6700228},
-{"pid":27443,"tid":27459,"ts":326459485385,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":1556,"tdur":1557,"tts":6700289},
-{"pid":27443,"tid":27459,"ts":326459485415,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6700320},
-{"pid":27443,"tid":27459,"ts":326459486392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6701297,"id":"0xaf88a81bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459486453,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":146,"frame":"0x78c60000","timeout":500,"singleShot":true}},"tts":6701388,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459486911,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6701815},
-{"pid":27443,"tid":27459,"ts":326459487033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6701938,"id":"0xaf88a9acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459487033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7904,"tdur":7142,"tts":6701968},
-{"pid":27443,"tid":27459,"ts":326459487063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6701968,"id":"0xaf88a9aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459487094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6701999,"id":"0xaf88a814f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459487094,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":7813,"tdur":7080,"tts":6701999},
-{"pid":27443,"tid":27459,"ts":326459487094,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":106},"tts":6702029},
-{"pid":27443,"tid":27459,"ts":326459487124,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6702029},
-{"pid":27443,"tid":27459,"ts":326459487185,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6702090,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459487185,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6702090,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459487216,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":6702121},
-{"pid":27443,"tid":27459,"ts":326459487246,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6702151},
-{"pid":27443,"tid":27459,"ts":326459487277,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":6440,"tdur":6317,"tts":6702182},
-{"pid":27443,"tid":27459,"ts":326459487307,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1099,"tdur":1099,"tts":6702212},
-{"pid":27443,"tid":27459,"ts":326459487429,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":11,"totalObjects":303,"partialLayout":false,"frame":"0x78c60000"}},"tts":6702334},
-{"pid":27443,"tid":27459,"ts":326459487460,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":6702365},
-{"pid":27443,"tid":27459,"ts":326459487490,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":6702395},
-{"pid":27443,"tid":27459,"ts":326459487826,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":31,"tdur":31,"tts":6702731},
-{"pid":27443,"tid":27459,"ts":326459487857,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":6702762},
-{"pid":27443,"tid":27459,"ts":326459487887,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":336,"tdur":336,"tts":6702792},
-{"pid":27443,"tid":27459,"ts":326459488223,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":91,"tdur":91,"tts":6703128},
-{"pid":27443,"tid":27459,"ts":326459488284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6703189,"id":"0xaf88a815f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459488284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6703219,"id":"0xaf88a9aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459488345,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":6703250},
-{"pid":27443,"tid":27459,"ts":326459488406,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":5280,"tdur":5128,"tts":6703341},
-{"pid":27443,"tid":27459,"ts":326459488437,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3601,"tdur":3480,"tts":6703341},
-{"pid":27443,"tid":27459,"ts":326459488467,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1373,"tdur":1251,"tts":6703372},
-{"pid":27443,"tid":27459,"ts":326459489840,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":245,"tdur":214,"tts":6704654},
-{"pid":27443,"tid":27459,"ts":326459490085,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":92,"tts":6704898},
-{"pid":27443,"tid":27459,"ts":326459490207,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":6704990},
-{"pid":27443,"tid":27459,"ts":326459490237,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1679,"tdur":1679,"tts":6705020},
-{"pid":27443,"tid":27459,"ts":326459491946,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":92,"tdur":92,"tts":6706729},
-{"pid":27443,"tid":27459,"ts":326459492038,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1282,"tdur":1282,"tts":6706821},
-{"pid":27443,"tid":27459,"ts":326459492068,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1221,"tdur":1221,"tts":6706851},
-{"pid":27443,"tid":27459,"ts":326459492099,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":244,"tdur":244,"tts":6706882},
-{"pid":27443,"tid":27459,"ts":326459492343,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":916,"tdur":916,"tts":6707126},
-{"pid":27443,"tid":27459,"ts":326459492404,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":672,"tdur":672,"tts":6707187},
-{"pid":27443,"tid":27459,"ts":326459493320,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6708103},
-{"pid":27443,"tid":27459,"ts":326459493350,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":336,"tdur":305,"tts":6708164},
-{"pid":27443,"tid":27459,"ts":326459493717,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":106},"dur":366,"tdur":367,"tts":6708499},
-{"pid":27443,"tid":27459,"ts":326459493747,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":305,"tdur":305,"tts":6708530},
-{"pid":27443,"tid":27459,"ts":326459494083,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":702,"tdur":91,"tts":6708866},
-{"pid":27443,"tid":27459,"ts":326459494113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6708896,"id":"0xaf88a670f182217a"},
-{"pid":27443,"tid":27459,"ts":326459494846,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":6904},"tts":6709018,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459494846,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6709018,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459494876,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6709079},
-{"pid":27443,"tid":27459,"ts":326459494968,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6709140,"id":"0xaf88a9adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459494998,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6135,"tdur":6073,"tts":6709171},
-{"pid":27443,"tid":27459,"ts":326459494998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6709171,"id":"0xaf88a80cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459495029,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":6104,"tdur":6043,"tts":6709201},
-{"pid":27443,"tid":27459,"ts":326459495029,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6709201,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459495059,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":6.66},"dur":6074,"tdur":6012,"tts":6709232},
-{"pid":27443,"tid":27459,"ts":326459495059,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6709262},
-{"pid":27443,"tid":27459,"ts":326459495121,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6709293},
-{"pid":27443,"tid":27459,"ts":326459498569,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6712711},
-{"pid":27443,"tid":27459,"ts":326459498600,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6712742},
-{"pid":27443,"tid":27459,"ts":326459501011,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6715153},
-{"pid":27443,"tid":27459,"ts":326459501041,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6715153},
-{"pid":27443,"tid":27459,"ts":326459501072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6715183,"id":"0xaf88a817f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459501102,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6715214,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459501164,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6715305,"id":"0xaf88a9aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459501194,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6715305},
-{"pid":27443,"tid":27459,"ts":326459501225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6715336,"id":"0xaf88a9a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459501225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6715336,"id":"0xaf88a816f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459501255,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":6715367},
-{"pid":27443,"tid":27459,"ts":326459501255,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6715367},
-{"pid":27443,"tid":27459,"ts":326459501316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6715428,"id":"0xaf88a9a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459501316,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6715458},
-{"pid":27443,"tid":27459,"ts":326459501377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6715489,"id":"0xaf88a9a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459501377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6715489},
-{"pid":27443,"tid":27459,"ts":326459509404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459509},"tts":6715641,"id":"0xaf88a9aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459509435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":6715641},
-{"pid":27443,"tid":27459,"ts":326459509465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6715672,"id":"0xaf88a9aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459509526,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6715733,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459509526,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6715733,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459509587,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6715794,"id":"0xaf88a9aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459509618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6715824},
-{"pid":27443,"tid":27459,"ts":326459520819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6715977,"id":"0xaf88a9abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459520849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":275,"tts":6716007},
-{"pid":27443,"tid":27459,"ts":326459520880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6716038,"id":"0xaf88a9a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459520910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6716099,"id":"0xaf88a810f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459520941,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":183,"tdur":183,"tts":6716099},
-{"pid":27443,"tid":27459,"ts":326459520971,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":122,"tdur":122,"tts":6716130},
-{"pid":27443,"tid":27459,"ts":326459521032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6716191,"id":"0xaf88a811f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459521063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6716221,"id":"0xaf88a9a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459521185,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6716343,"id":"0xaf88a9a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459521215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":30,"tts":6716374},
-{"pid":27443,"tid":27459,"ts":326459521551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459521},"tts":6716587,"id":"0xaf88a99ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459521582,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":152,"tdur":122,"tts":6716618},
-{"pid":27443,"tid":27459,"ts":326459521643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6716679,"id":"0xaf88a9a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459521673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6716740,"id":"0xaf88a9a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459521765,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6716801,"id":"0xaf88a9a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459521795,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6716831},
-{"pid":27443,"tid":27459,"ts":326459522223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459522},"tts":6717076,"id":"0xaf88a9a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459522253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":92,"tdur":61,"tts":6717076},
-{"pid":27443,"tid":27459,"ts":326459522284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6717137,"id":"0xaf88a9a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459522375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6717198,"id":"0xaf88a9a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459522406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":274,"tdur":275,"tts":6717228},
-{"pid":27443,"tid":27459,"ts":326459522436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6717259,"id":"0xaf88a9a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459522467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6717289,"id":"0xaf88a811f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459522497,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":153,"tdur":152,"tts":6717320},
-{"pid":27443,"tid":27459,"ts":326459522558,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":4807},"tts":6717381,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459522589,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6717411,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459522741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6717564,"id":"0xaf88a9a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459522772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":427,"tts":6717595},
-{"pid":27443,"tid":27459,"ts":326459522833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6717656,"id":"0xaf88a9a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459522864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6717686,"id":"0xaf88a815f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459522894,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":275,"tdur":274,"tts":6717717},
-{"pid":27443,"tid":27477,"ts":326459495670,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":516984,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459495670,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":516984},
-{"pid":27443,"tid":27477,"ts":326459495761,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":165}},"tts":517076,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459495761,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":517106,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459495884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":517198,"id":"0xaf88a671f182217a"},
-{"pid":27443,"tid":27477,"ts":326459495884,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":183,"tdur":153,"tts":517228},
-{"pid":27443,"tid":27477,"ts":326459495914,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":153,"tdur":153,"tts":517228},
-{"pid":27443,"tid":27477,"ts":326459496006,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":517320,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459496006,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":517320},
-{"pid":27443,"tid":27477,"ts":326459496036,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":517350,"id":"0xaf88a60cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459496067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":517381,"id":"0xaf88a672f182217a"},
-{"pid":27443,"tid":27477,"ts":326459496067,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":517381},
-{"pid":27443,"tid":27477,"ts":326459496097,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":517411},
-{"pid":27443,"tid":27477,"ts":326459496097,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":517411,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459496128,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":517442},
-{"pid":27443,"tid":27477,"ts":326459496128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":517442,"id":"0xaf88a60df182217a"},
-{"pid":27443,"tid":27477,"ts":326459496158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":517472,"id":"0xaf88a673f182217a"},
-{"pid":27443,"tid":27477,"ts":326459496189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":517503},
-{"pid":27443,"tid":27477,"ts":326459496189,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":517503},
-{"pid":27443,"tid":27477,"ts":326459496189,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":517503,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459496189,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":517533},
-{"pid":27443,"tid":27477,"ts":326459496219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":517533,"id":"0xaf88a60cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459496250,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1465,"tts":517564},
-{"pid":27443,"tid":27477,"ts":326459496250,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1434,"tdur":1434,"tts":517564},
-{"pid":27443,"tid":27477,"ts":326459496250,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":517564},
-{"pid":27443,"tid":27477,"ts":326459496280,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":517595},
-{"pid":27443,"tid":27477,"ts":326459496311,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":517625},
-{"pid":27443,"tid":27477,"ts":326459496311,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":517625},
-{"pid":27443,"tid":27477,"ts":326459496402,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1281,"tts":517717},
-{"pid":27443,"tid":27477,"ts":326459496402,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1281,"tts":517717},
-{"pid":27443,"tid":27477,"ts":326459496433,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":1190,"tts":517747},
-{"pid":27443,"tid":27477,"ts":326459496433,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":517747,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459496463,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":275,"tdur":274,"tts":517778},
-{"pid":27443,"tid":27477,"ts":326459496738,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":518052},
-{"pid":27443,"tid":27477,"ts":326459496830,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":518144},
-{"pid":27443,"tid":27477,"ts":326459496860,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518174},
-{"pid":27443,"tid":27477,"ts":326459496891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518205},
-{"pid":27443,"tid":27477,"ts":326459496891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":518235},
-{"pid":27443,"tid":27477,"ts":326459496921,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":518235},
-{"pid":27443,"tid":27477,"ts":326459496952,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518266},
-{"pid":27443,"tid":27477,"ts":326459496982,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518296},
-{"pid":27443,"tid":27477,"ts":326459496982,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":518296},
-{"pid":27443,"tid":27477,"ts":326459497013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":518327},
-{"pid":27443,"tid":27477,"ts":326459497043,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518358},
-{"pid":27443,"tid":27477,"ts":326459497074,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518388},
-{"pid":27443,"tid":27477,"ts":326459497074,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":518388},
-{"pid":27443,"tid":27477,"ts":326459497104,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":518419},
-{"pid":27443,"tid":27477,"ts":326459497135,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518449},
-{"pid":27443,"tid":27477,"ts":326459497165,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518480},
-{"pid":27443,"tid":27477,"ts":326459497165,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":518480},
-{"pid":27443,"tid":27477,"ts":326459497196,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":518510},
-{"pid":27443,"tid":27477,"ts":326459497226,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518541},
-{"pid":27443,"tid":27477,"ts":326459497226,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":518571},
-{"pid":27443,"tid":27477,"ts":326459497257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":518571},
-{"pid":27443,"tid":27477,"ts":326459497318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":518663},
-{"pid":27443,"tid":27477,"ts":326459497348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":518663},
-{"pid":27443,"tid":27477,"ts":326459497379,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":518693},
-{"pid":27443,"tid":27477,"ts":326459497410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":518724},
-{"pid":27443,"tid":27477,"ts":326459497440,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518754},
-{"pid":27443,"tid":27477,"ts":326459497471,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":518785},
-{"pid":27443,"tid":27477,"ts":326459497471,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":518785},
-{"pid":27443,"tid":27477,"ts":326459497501,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":518846},
-{"pid":27443,"tid":27477,"ts":326459497562,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":518876},
-{"pid":27443,"tid":27477,"ts":326459497562,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":518876},
-{"pid":27443,"tid":27471,"ts":326459495945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350984,"id":"0xaf88a673f182217a"},
-{"pid":27443,"tid":27469,"ts":326459518865,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":153,"tdur":122,"tts":293667},
-{"pid":27443,"tid":27469,"ts":326459518926,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":293728},
-{"pid":27443,"tid":27469,"ts":326459518957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293758,"id":"0xaf88a609f182217a"},
-{"pid":27443,"tid":27469,"ts":326459519018,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":293819},
-{"pid":27443,"tid":27469,"ts":326459519048,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":293850},
-{"pid":27443,"tid":27469,"ts":326459519048,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293880,"id":"0xaf88a60af182217a"},
-{"pid":27443,"tid":27469,"ts":326459519110,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":92,"tts":293941},
-{"pid":27443,"tid":27469,"ts":326459519140,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":30,"tts":293972},
-{"pid":27443,"tid":27469,"ts":326459519873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293972,"id":"0xaf88a604f182217a"},
-{"pid":27443,"tid":27496,"ts":326459531287,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":641,"tdur":641,"tts":59270},
-{"pid":27443,"tid":27496,"ts":326459531318,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":59301},
-{"pid":27443,"tid":27496,"ts":326459531928,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":59911},
-{"pid":27443,"tid":27546,"ts":326459598798,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":21731,"tdur":21333,"tts":27224},
-{"pid":27443,"tid":27498,"ts":326459751553,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":885,"tdur":825,"tts":42636},
-{"pid":27443,"tid":27498,"ts":326459751553,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":42636},
-{"pid":27443,"tid":27498,"ts":326459752407,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":43430},
-{"pid":27443,"tid":27496,"ts":326459755917,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":488,"tdur":488,"tts":59972},
-{"pid":27443,"tid":27496,"ts":326459755917,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60003},
-{"pid":27443,"tid":27496,"ts":326459756375,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60430},
-{"pid":27443,"tid":27546,"ts":326459777434,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1770,"tdur":1771,"tts":48618},
-{"pid":27443,"tid":27546,"ts":326459777464,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":48649},
-{"pid":27443,"tid":27546,"ts":326459779174,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":50358},
-{"pid":27443,"tid":27498,"ts":326459781432,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":3907,"tdur":3448,"tts":43522},
-{"pid":27443,"tid":27498,"ts":326459781463,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":43552},
-{"pid":27443,"tid":27498,"ts":326459785308,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":46970},
-{"pid":27443,"tid":27471,"ts":326459838383,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":153,"tdur":31,"tts":351136},
-{"pid":27443,"tid":27471,"ts":326459838414,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":351136},
-{"pid":27443,"tid":27471,"ts":326459838444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":351167,"id":"0xaf88a63ef182217a"},
-{"pid":27443,"tid":27469,"ts":326459838444,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":294063},
-{"pid":27443,"tid":27469,"ts":326459838475,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":294094},
-{"pid":27443,"tid":27469,"ts":326459838505,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":294124,"id":"0xaf88a63ff182217a"},
-{"pid":27443,"tid":27469,"ts":326459838505,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":294124},
-{"pid":27443,"tid":27469,"ts":326459838505,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":30,"tts":294155},
-{"pid":27443,"tid":27469,"ts":326459838566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":294185,"id":"0xaf88a639f182217a"},
-{"pid":27443,"tid":27471,"ts":326459845830,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":351167},
-{"pid":27443,"tid":27471,"ts":326459845861,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":351197},
-{"pid":27443,"tid":27471,"ts":326459845861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":351228,"id":"0xaf88a636f182217a"},
-{"pid":27443,"tid":27471,"ts":326459845891,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":351228},
-{"pid":27443,"tid":27471,"ts":326459845891,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":351228},
-{"pid":27443,"tid":27471,"ts":326459845922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":351258,"id":"0xaf88a637f182217a"},
-{"pid":27443,"tid":27471,"ts":326459845922,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":5463,"tdur":825,"tts":351258},
-{"pid":27443,"tid":27471,"ts":326459845922,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":5432,"tdur":763,"tts":351289},
-{"pid":27443,"tid":27471,"ts":326459845952,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7991cad8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":351289},
-{"pid":27443,"tid":27471,"ts":326459845952,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":351319},
-{"pid":27443,"tid":27471,"ts":326459846013,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":351350},
-{"pid":27443,"tid":27471,"ts":326459846044,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7991cad8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":351381},
-{"pid":27443,"tid":27471,"ts":326459846074,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":351411,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326459846624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":351960,"id":"0xaf88a630f182217a"},
-{"pid":27443,"tid":27471,"ts":326459846624,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":4700,"tdur":61,"tts":351960},
-{"pid":27443,"tid":27469,"ts":326459846654,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":9553,"tdur":855,"tts":294246},
-{"pid":27443,"tid":27469,"ts":326459846685,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":5676,"tdur":824,"tts":294246},
-{"pid":27443,"tid":27469,"ts":326459846715,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7bdf4f20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":294277},
-{"pid":27443,"tid":27469,"ts":326459846715,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":294277},
-{"pid":27443,"tid":27469,"ts":326459846746,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":294307},
-{"pid":27443,"tid":27469,"ts":326459846776,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7bdf4f20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":294338},
-{"pid":27443,"tid":27469,"ts":326459846776,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":294369,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326459847417,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":4914,"tdur":31,"tts":295009},
-{"pid":27443,"tid":27471,"ts":326459851354,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":352052},
-{"pid":27443,"tid":27471,"ts":326459851385,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":701,"tts":352083},
-{"pid":27443,"tid":27471,"ts":326459851385,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":701,"tts":352083},
-{"pid":27443,"tid":27471,"ts":326459851415,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7bdf9280"},"tileResolution":"HIGH_RESOLUTION"}},"tts":352113},
-{"pid":27443,"tid":27471,"ts":326459851415,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":352113},
-{"pid":27443,"tid":27471,"ts":326459851476,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":352174},
-{"pid":27443,"tid":27477,"ts":326459497593,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":518907},
-{"pid":27443,"tid":27477,"ts":326459497654,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":518968},
-{"pid":27443,"tid":27477,"ts":326459497684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":518998,"id":"0xaf88a60ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459497715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":519029,"id":"0xaf88a60df182217a"},
-{"pid":27443,"tid":27477,"ts":326459497715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":519029},
-{"pid":27443,"tid":27477,"ts":326459497745,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":123,"tts":519059},
-{"pid":27443,"tid":27477,"ts":326459497745,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":519059},
-{"pid":27443,"tid":27477,"ts":326459497745,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":519059},
-{"pid":27443,"tid":27477,"ts":326459497776,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":519090},
-{"pid":27443,"tid":27477,"ts":326459497776,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":519090},
-{"pid":27443,"tid":27477,"ts":326459497837,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":519151},
-{"pid":27443,"tid":27477,"ts":326459497837,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":519182},
-{"pid":27443,"tid":27477,"ts":326459497898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":519212,"id":"0xaf88a60ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459497898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":763,"tdur":763,"tts":519212},
-{"pid":27443,"tid":27477,"ts":326459497898,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":763,"tdur":763,"tts":519212},
-{"pid":27443,"tid":27477,"ts":326459497928,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":519243},
-{"pid":27443,"tid":27477,"ts":326459497959,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":702,"tdur":702,"tts":519273},
-{"pid":27443,"tid":27477,"ts":326459497959,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":106},"dur":610,"tdur":611,"tts":519273},
-{"pid":27443,"tid":27477,"ts":326459497989,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":106},"dur":275,"tdur":274,"tts":519304},
-{"pid":27443,"tid":27477,"ts":326459498295,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":106},"dur":30,"tdur":30,"tts":519609},{"pid":27443,"tid":27477,"ts":326459498325,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":106},"tts":519639},
-{"pid":27443,"tid":27477,"ts":326459498417,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":519731},
-{"pid":27443,"tid":27477,"ts":326459498417,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":31,"tts":519761},
-{"pid":27443,"tid":27477,"ts":326459498447,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":519761},
-{"pid":27443,"tid":27477,"ts":326459498447,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":519761},
-{"pid":27443,"tid":27477,"ts":326459498478,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":519792,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459498539,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses::EmptyDamageRect","args":{},"dur":0,"tdur":0,"tts":519853},
-{"pid":27443,"tid":27477,"ts":326459498569,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":31,"tdur":0,"tts":519884},
-{"pid":27443,"tid":27477,"ts":326459498569,"ph":"I","cat":"cc","name":"EarlyOut_NoDamage","args":{},"tts":519884,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459498600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":519914,"id":"0xaf88a816f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459498630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":519945,"id":"0xaf88a9a8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459501804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459501},"tts":520036,"id":"0xaf88a677f182217a"},
-{"pid":27443,"tid":27477,"ts":326459501835,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":520067},
-{"pid":27443,"tid":27477,"ts":326459503208,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":520128,"id":"0xaf88a60ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459503239,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":520158},
-{"pid":27443,"tid":27477,"ts":326459503269,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459501146.0,"frame_time_us":326459501735.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":520189},
-{"pid":27443,"tid":27477,"ts":326459503269,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459501146.0,"frame_time_us":326459501735.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":91,"tts":520189},
-{"pid":27443,"tid":27477,"ts":326459503330,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459518401},"dur":31,"tdur":30,"tts":520250},
-{"pid":27443,"tid":27477,"ts":326459503330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":520250,"id":"0xaf88a608f182217a"},
-{"pid":27443,"tid":27477,"ts":326459518499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459518},"tts":520341,"id":"0xaf88a608f182217a"},
-{"pid":27443,"tid":27477,"ts":326459518499,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1709,"tdur":519,"tts":520341},
-{"pid":27443,"tid":27477,"ts":326459518530,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1678,"tdur":488,"tts":520372},
-{"pid":27443,"tid":27477,"ts":326459518530,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1556,"tdur":336,"tts":520372},
-{"pid":27443,"tid":27477,"ts":326459518530,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1526,"tdur":336,"tts":520372},
-{"pid":27443,"tid":27477,"ts":326459518560,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":520402},
-{"pid":27443,"tid":27477,"ts":326459518652,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":520494},
-{"pid":27443,"tid":27477,"ts":326459518652,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":520524},
-{"pid":27443,"tid":27477,"ts":326459518682,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":1068,"tdur":153,"tts":520524},
-{"pid":27443,"tid":27477,"ts":326459518682,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":1068,"tdur":153,"tts":520524},
-{"pid":27443,"tid":27477,"ts":326459518682,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":520524,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459518713,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":520555},
-{"pid":27443,"tid":27477,"ts":326459518743,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":855,"tdur":0,"tts":520586},
-{"pid":27443,"tid":27477,"ts":326459519720,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":520647,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459519750,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":165}},"tts":520677,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459519781,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":520708,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459520086,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":520738,"id":"0xaf88aa0ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459520147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":520799,"id":"0xaf88a810f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459520147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":520799,"id":"0xaf88a9abf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459520208,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":520860,"id":"0xaf88a609f182217a"},
-{"pid":27443,"tid":27477,"ts":326459520239,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":520891},
-{"pid":27443,"tid":27477,"ts":326459520239,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":520891},
-{"pid":27443,"tid":27477,"ts":326459520269,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":520921,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459520269,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":520921},
-{"pid":27443,"tid":27477,"ts":326459520269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":520952,"id":"0xaf88a605f182217a"},
-{"pid":27443,"tid":27477,"ts":326459520300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":520952,"id":"0xaf88a60af182217a"},
-{"pid":27443,"tid":27477,"ts":326459520330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":520982},
-{"pid":27443,"tid":27477,"ts":326459520330,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":31,"tts":520982},
-{"pid":27443,"tid":27477,"ts":326459520330,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":520982,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459520361,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":521013},
-{"pid":27443,"tid":27477,"ts":326459520361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":521013,"id":"0xaf88a606f182217a"},
-{"pid":27443,"tid":27477,"ts":326459520391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521043,"id":"0xaf88a60bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459520391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":521043},
-{"pid":27443,"tid":27477,"ts":326459520422,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459517827.0,"frame_time_us":326459518416.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":0,"tdur":0,"tts":521074},
-{"pid":27443,"tid":27477,"ts":326459520422,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":521074,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459520452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521104,"id":"0xaf88a604f182217a"},
-{"pid":27443,"tid":27477,"ts":326459520452,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":521104},
-{"pid":27443,"tid":27477,"ts":326459520452,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":521104},
-{"pid":27443,"tid":27477,"ts":326459520483,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":521135,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459520483,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":521135},
-{"pid":27443,"tid":27477,"ts":326459520513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521165,"id":"0xaf88a605f182217a"},
-{"pid":27443,"tid":27477,"ts":326459520513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":521165},
-{"pid":27443,"tid":27477,"ts":326459520513,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":153,"tts":521165},
-{"pid":27443,"tid":27477,"ts":326459520544,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":521196},
-{"pid":27443,"tid":27477,"ts":326459520544,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":521196},
-{"pid":27443,"tid":27477,"ts":326459520574,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":62,"tdur":61,"tts":521226},
-{"pid":27443,"tid":27477,"ts":326459520574,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":62,"tdur":61,"tts":521226},
-{"pid":27443,"tid":27477,"ts":326459520636,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":521287},
-{"pid":27443,"tid":27477,"ts":326459520636,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":521287},
-{"pid":27443,"tid":27477,"ts":326459520666,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521318,"id":"0xaf88a606f182217a"},
-{"pid":27443,"tid":27477,"ts":326459520697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":521349},
-{"pid":27443,"tid":27477,"ts":326459520697,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":152,"tts":521349},
-{"pid":27443,"tid":27477,"ts":326459520697,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":521349},
-{"pid":27443,"tid":27477,"ts":326459520697,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":521349},
-{"pid":27443,"tid":27477,"ts":326459520727,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":61,"tts":521410},
-{"pid":27443,"tid":27477,"ts":326459520758,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":521410},
-{"pid":27443,"tid":27477,"ts":326459520819,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":521471},
-{"pid":27443,"tid":27477,"ts":326459520849,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":521501},
-{"pid":27443,"tid":27477,"ts":326459625381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521562,"id":"0xaf88a607f182217a"},
-{"pid":27443,"tid":27477,"ts":326459625412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":521593},
-{"pid":27443,"tid":27477,"ts":326459625412,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":521593},
-{"pid":27443,"tid":27477,"ts":326459625442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":521623,"id":"0xaf88aa0ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459625504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":521684,"id":"0xaf88a600f182217a"},
-{"pid":27443,"tid":27477,"ts":326459625565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521745,"id":"0xaf88a600f182217a"},
-{"pid":27443,"tid":27477,"ts":326459625565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":91,"tdur":92,"tts":521745},
-{"pid":27443,"tid":27477,"ts":326459625595,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":61,"tdur":30,"tts":521776},
-{"pid":27443,"tid":27477,"ts":326459625626,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-107.768,"BeginFrameArgs":{"deadline_us":326459517827.0,"frame_time_us":326459518416.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":521806,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459625626,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":521806,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459627243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":521867,"id":"0xaf88a601f182217a"},
-{"pid":27443,"tid":27477,"ts":326459627274,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":305,"tts":521898},
-{"pid":27443,"tid":27477,"ts":326459627304,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459617842.0,"frame_time_us":326459618431.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":428,"tdur":275,"tts":521928},
-{"pid":27443,"tid":27477,"ts":326459627335,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459617842.0,"frame_time_us":326459618431.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":397,"tdur":244,"tts":521959},
-{"pid":27443,"tid":27477,"ts":326459627365,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":107},"tts":521989},
-{"pid":27443,"tid":27477,"ts":326459627365,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":521989},
-{"pid":27443,"tid":27477,"ts":326459627640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":522112,"id":"0xaf88a82ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459627670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":522142,"id":"0xaf88a9bbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459627670,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":522142},
-{"pid":27443,"tid":27477,"ts":326459627701,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459635097},"dur":31,"tdur":30,"tts":522173},
-{"pid":27443,"tid":27477,"ts":326459627701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":522173,"id":"0xaf88a602f182217a"},
-{"pid":27443,"tid":27477,"ts":326459629471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":522264,"id":"0xaf88a603f182217a"},
-{"pid":27443,"tid":27477,"ts":326459629502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":61,"tdur":61,"tts":522295},
-{"pid":27443,"tid":27477,"ts":326459629502,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":522295},
-{"pid":27443,"tid":27477,"ts":326459629532,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":31,"tts":522325},
-{"pid":27443,"tid":27477,"ts":326459635209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459635},"tts":522447,"id":"0xaf88a602f182217a"},
-{"pid":27443,"tid":27477,"ts":326459635209,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":30,"tts":522478},
-{"pid":27443,"tid":27477,"ts":326459635240,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":522478},
-{"pid":27443,"tid":27477,"ts":326459637254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":522539,"id":"0xaf88a61cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459637284,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":245,"tdur":183,"tts":522569},
-{"pid":27443,"tid":27477,"ts":326459637315,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459634598.0,"frame_time_us":326459635187.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":122,"tts":522600},
-{"pid":27443,"tid":27459,"ts":326459522925,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":213,"tdur":183,"tts":6717778},
-{"pid":27443,"tid":27459,"ts":326459522925,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":122,"tts":6717778},
-{"pid":27443,"tid":27459,"ts":326459523108,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":30,"tdur":31,"tts":6717930},
-{"pid":27443,"tid":27459,"ts":326459523260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6718083,"id":"0xaf88a9a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459523260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8454,"tdur":8271,"tts":6718113},
-{"pid":27443,"tid":27459,"ts":326459523321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6718144,"id":"0xaf88a9a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459523352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6718174,"id":"0xaf88a81ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459523352,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":8362,"tdur":8149,"tts":6718205},
-{"pid":27443,"tid":27459,"ts":326459523413,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":8271,"tdur":8119,"tts":6718235},
-{"pid":27443,"tid":27459,"ts":326459523474,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":143,"frame":"0x78c60000"}},"dur":8179,"tdur":7996,"tts":6718327},
-{"pid":27443,"tid":27459,"ts":326459523535,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":8088,"tdur":7905,"tts":6718388},
-{"pid":27443,"tid":27459,"ts":326459523688,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":7904,"tdur":7752,"tts":6718510},
-{"pid":27443,"tid":27459,"ts":326459523718,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6718571},
-{"pid":27443,"tid":27459,"ts":326459529731,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6724584},
-{"pid":27443,"tid":27459,"ts":326459529975,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6724919},
-{"pid":27443,"tid":27459,"ts":326459529975,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":6724919},
-{"pid":27443,"tid":27459,"ts":326459530372,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6725041},
-{"pid":27443,"tid":27459,"ts":326459530433,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6725103},
-{"pid":27443,"tid":27459,"ts":326459530646,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6725347},
-{"pid":27443,"tid":27459,"ts":326459531287,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6725957},
-{"pid":27443,"tid":27459,"ts":326459531562,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6726232},
-{"pid":27443,"tid":27459,"ts":326459531837,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6726537,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459531867,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6726567,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459531959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6726629,"id":"0xaf88a812f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459532050,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459527},"tts":6726720,"id":"0xaf88a996f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459532050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":122,"tdur":91,"tts":6726751},
-{"pid":27443,"tid":27459,"ts":326459532111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6726812,"id":"0xaf88a9bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459532203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6726903,"id":"0xaf88a9a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459532233,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":6726903},
-{"pid":27443,"tid":27459,"ts":326459532294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6726964,"id":"0xaf88a9bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459532325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6726995,"id":"0xaf88a81af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459532355,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":31,"tdur":31,"tts":6727025},
-{"pid":27443,"tid":27459,"ts":326459532477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6727147,"id":"0xaf88a9bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459532508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":6727178},
-{"pid":27443,"tid":27459,"ts":326459533179,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459533},"tts":6727422,"id":"0xaf88a9bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459533210,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":91,"tdur":92,"tts":6727422},
-{"pid":27443,"tid":27459,"ts":326459533271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6727483,"id":"0xaf88a9bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459533363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6727575,"id":"0xaf88a9bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459533393,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":6727605},
-{"pid":27443,"tid":27459,"ts":326459533424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6727636,"id":"0xaf88a9bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459533454,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6727666,"id":"0xaf88a812f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459533485,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":152,"tdur":122,"tts":6727697},
-{"pid":27443,"tid":27459,"ts":326459533546,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6727758,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459533576,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6727788,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459533698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6727910,"id":"0xaf88a9bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459533729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":41172,"tdur":37418,"tts":6727941},
-{"pid":27443,"tid":27459,"ts":326459533790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6728002,"id":"0xaf88a9b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459533820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6728032,"id":"0xaf88a817f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459533820,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":41081,"tdur":37327,"tts":6728032},
-{"pid":27443,"tid":27459,"ts":326459533851,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6728063,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459533881,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.634},"dur":40989,"tdur":37234,"tts":6728094},
-{"pid":27443,"tid":27459,"ts":326459533942,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6728155},
-{"pid":27443,"tid":27459,"ts":326459534003,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6728216},
-{"pid":27443,"tid":27459,"ts":326459534980,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6729223},
-{"pid":27443,"tid":27459,"ts":326459535041,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6729253},
-{"pid":27443,"tid":27459,"ts":326459538246,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6731756},
-{"pid":27443,"tid":27459,"ts":326459538307,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6731817},
-{"pid":27443,"tid":27459,"ts":326459540657,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6734198},
-{"pid":27443,"tid":27459,"ts":326459540718,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6734228},
-{"pid":27443,"tid":27459,"ts":326459544686,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6737189},
-{"pid":27443,"tid":27459,"ts":326459544686,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":6737189},
-{"pid":27443,"tid":27459,"ts":326459544777,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6737250},
-{"pid":27443,"tid":27459,"ts":326459548012,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6740515},
-{"pid":27443,"tid":27459,"ts":326459548073,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6740546},
-{"pid":27443,"tid":27459,"ts":326459551217,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6743537},
-{"pid":27443,"tid":27459,"ts":326459551217,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":6743537},
-{"pid":27443,"tid":27459,"ts":326459551278,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6743598},
-{"pid":27443,"tid":27459,"ts":326459554818,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6745307},
-{"pid":27443,"tid":27459,"ts":326459554849,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6745307},
-{"pid":27443,"tid":27459,"ts":326459555856,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6746314},
-{"pid":27443,"tid":27459,"ts":326459555887,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6746345},
-{"pid":27443,"tid":27459,"ts":326459556802,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6747260},
-{"pid":27443,"tid":27459,"ts":326459556833,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6747291},
-{"pid":27443,"tid":27459,"ts":326459557687,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6748145},
-{"pid":27443,"tid":27459,"ts":326459557687,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6748176},
-{"pid":27443,"tid":27459,"ts":326459558694,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6749153},
-{"pid":27443,"tid":27459,"ts":326459558725,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6749183},
-{"pid":27443,"tid":27459,"ts":326459559274,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6749732},
-{"pid":27443,"tid":27459,"ts":326459559305,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6749763},
-{"pid":27443,"tid":27459,"ts":326459560098,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6750557},
-{"pid":27443,"tid":27459,"ts":326459560098,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6750557},
-{"pid":27443,"tid":27459,"ts":326459561563,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6752021},
-{"pid":27443,"tid":27459,"ts":326459561594,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6752052},
-{"pid":27443,"tid":27459,"ts":326459562876,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6753334},
-{"pid":27443,"tid":27459,"ts":326459562876,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6753334},
-{"pid":27443,"tid":27459,"ts":326459564432,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6754890},
-{"pid":27443,"tid":27459,"ts":326459564463,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6754921},
-{"pid":27443,"tid":27459,"ts":326459566050,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6756508},
-{"pid":27443,"tid":27459,"ts":326459566080,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6756539},
-{"pid":27443,"tid":27459,"ts":326459566599,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6757057},
-{"pid":27443,"tid":27459,"ts":326459566630,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6757088},
-{"pid":27443,"tid":27459,"ts":326459567301,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6757759},
-{"pid":27443,"tid":27459,"ts":326459567332,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6757790},
-{"pid":27443,"tid":27459,"ts":326459567912,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6758370},
-{"pid":27443,"tid":27459,"ts":326459567912,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6758370},
-{"pid":27443,"tid":27459,"ts":326459568308,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6758766},
-{"pid":27443,"tid":27459,"ts":326459568308,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6758766},
-{"pid":27443,"tid":27459,"ts":326459568736,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6759194},
-{"pid":27443,"tid":27459,"ts":326459568736,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6759224},
-{"pid":27443,"tid":27459,"ts":326459569499,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6759957},
-{"pid":27443,"tid":27459,"ts":326459569529,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6759987},
-{"pid":27443,"tid":27459,"ts":326459570567,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6761025},
-{"pid":27443,"tid":27459,"ts":326459570597,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6761056},
-{"pid":27443,"tid":27459,"ts":326459571391,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6761849},
-{"pid":27443,"tid":27459,"ts":326459571391,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6761849},
-{"pid":27443,"tid":27459,"ts":326459572337,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6762795},
-{"pid":27443,"tid":27459,"ts":326459572368,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6762826},
-{"pid":27443,"tid":27459,"ts":326459573192,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6763650},
-{"pid":27443,"tid":27459,"ts":326459573253,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":21247640},"tts":6763711},
-{"pid":27443,"tid":27459,"ts":326459574687,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":21247640},"tts":6765176},
-{"pid":27443,"tid":27459,"ts":326459574748,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6765206},
-{"pid":27443,"tid":27459,"ts":326459574779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6765237,"id":"0xaf88a813f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459574779,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6765267,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459574809,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6765267,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459574840,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6765298,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459574870,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6765328,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459574870,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6765328,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459574931,"ph":"X","cat":"blink_gc","name":"Heap::GCScope","args":{},"dur":305,"tdur":122,"tts":6765389},
-{"pid":27443,"tid":27459,"ts":326459574962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6765420,"id":"0xaf88ae68ff1cb276"},
-{"pid":27443,"tid":27459,"ts":326459574992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6765450,"id":"0xaf88ae73ff1893d2"},
-{"pid":27443,"tid":27459,"ts":326459575267,"ph":"X","cat":"blink_gc","name":"Heap::collectGarbage","args":{"lazySweeping":true,"gcReason":"PreciseGC"},"dur":1679,"tdur":1679,"tts":6765542},
-{"pid":27443,"tid":27459,"ts":326459575267,"ph":"X","cat":"blink_gc","name":"ThreadState::makeConsistentForGC","args":{},"dur":31,"tdur":0,"tts":6765573},
-{"pid":27443,"tid":27459,"ts":326459575328,"ph":"X","cat":"blink_gc","name":"ThreadState::makeConsistentForGC","args":{},"dur":0,"tdur":0,"tts":6765603},
-{"pid":27443,"tid":27459,"ts":326459575328,"ph":"X","cat":"blink_gc","name":"ThreadState::visitPersistentRoots","args":{},"dur":397,"tdur":366,"tts":6765634},
-{"pid":27443,"tid":27459,"ts":326459575511,"ph":"X","cat":"blink_gc","name":"V8GCController::traceDOMWrappers","args":{},"dur":214,"tdur":214,"tts":6765786},
-{"pid":27443,"tid":27459,"ts":326459575725,"ph":"X","cat":"blink_gc","name":"ThreadState::visitStackRoots","args":{},"dur":30,"tdur":30,"tts":6766000},
-{"pid":27443,"tid":27459,"ts":326459575755,"ph":"X","cat":"blink_gc","name":"Heap::processMarkingStackSingleThreaded","args":{},"dur":0,"tdur":0,"tts":6766030},
-{"pid":27443,"tid":27459,"ts":326459575786,"ph":"X","cat":"blink_gc","name":"Heap::processEphemeronStack","args":{},"dur":0,"tdur":0,"tts":6766061},
-{"pid":27443,"tid":27483,"ts":326459575084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":14191,"id":"0xaf88ae73ff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459575114,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":14222},
-{"pid":27443,"tid":27483,"ts":326459575145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":14253,"id":"0xaf88ae0cff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459575175,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":14283,"id":"0xaf88ae68ff1cb276"},
-{"pid":27443,"tid":27483,"ts":326459575175,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/platform/heap/glue/MessageLoopInterruptor.h","src_func":"requestInterrupt"},"dur":0,"tdur":0,"tts":14283},
-{"pid":27443,"tid":27483,"ts":326459576976,"ph":"X","cat":"blink_gc","name":"ThreadState::threadLocalWeakProcessing","args":{},"dur":31,"tdur":0,"tts":14405},
-{"pid":27443,"tid":27483,"ts":326459577007,"ph":"X","cat":"blink_gc","name":"ThreadState::invokePreFinalizers","args":{},"dur":30,"tdur":31,"tts":14405},
-{"pid":27443,"tid":27483,"ts":326459577037,"ph":"X","cat":"blink_gc","name":"ThreadState::completeSweep","args":{},"dur":61,"tdur":61,"tts":14436},
-{"pid":27443,"tid":27483,"ts":326459577129,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":14527,"id":"0xaf88ae0cff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459577129,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":14527},
-{"pid":27443,"tid":27483,"ts":326459579448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":14619,"id":"0xaf88ae0dff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459579448,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":14619},
-{"pid":27443,"tid":27483,"ts":326459579479,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":14649,"id":"0xaf88ae0eff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459579509,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":14680,"id":"0xaf88ae69ff1cb276"},
-{"pid":27443,"tid":27483,"ts":326459579509,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/platform/heap/glue/MessageLoopInterruptor.h","src_func":"requestInterrupt"},"dur":0,"tdur":0,"tts":14680},
-{"pid":27443,"tid":27483,"ts":326459579937,"ph":"X","cat":"blink_gc","name":"ThreadState::threadLocalWeakProcessing","args":{},"dur":30,"tdur":31,"tts":14771},
-{"pid":27443,"tid":27483,"ts":326459579967,"ph":"X","cat":"blink_gc","name":"ThreadState::invokePreFinalizers","args":{},"dur":31,"tdur":0,"tts":14802},
-{"pid":27443,"tid":27483,"ts":326459579998,"ph":"X","cat":"blink_gc","name":"ThreadState::completeSweep","args":{},"dur":61,"tdur":0,"tts":14832},
-{"pid":27443,"tid":27483,"ts":326459580059,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":14893,"id":"0xaf88ae0eff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459580059,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":14924},
-{"pid":27443,"tid":27483,"ts":326459626816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":15016,"id":"0xaf88ae0fff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459626816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":15016},
-{"pid":27443,"tid":27483,"ts":326459626846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":15046,"id":"0xaf88ae08ff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459626846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":15046,"id":"0xaf88ae6aff1cb276"},
-{"pid":27443,"tid":27483,"ts":326459626877,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/platform/heap/glue/MessageLoopInterruptor.h","src_func":"requestInterrupt"},"dur":0,"tdur":0,"tts":15077},
-{"pid":27443,"tid":27483,"ts":326459627457,"ph":"X","cat":"blink_gc","name":"ThreadState::threadLocalWeakProcessing","args":{},"dur":0,"tdur":0,"tts":15199},
-{"pid":27443,"tid":27483,"ts":326459627487,"ph":"X","cat":"blink_gc","name":"ThreadState::invokePreFinalizers","args":{},"dur":0,"tdur":0,"tts":15229},
-{"pid":27443,"tid":27483,"ts":326459627487,"ph":"X","cat":"blink_gc","name":"ThreadState::completeSweep","args":{},"dur":31,"tdur":31,"tts":15229},
-{"pid":27443,"tid":27483,"ts":326459627548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":15290,"id":"0xaf88ae08ff1893d2"},
-{"pid":27443,"tid":27483,"ts":326459627548,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":15290},
-{"pid":27443,"tid":27483,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.009133333333333334}},
-{"pid":27443,"tid":27459,"ts":326459575786,"ph":"X","cat":"blink_gc","name":"Heap::postMarkingProcessing","args":{},"dur":30,"tdur":30,"tts":6766061},
-{"pid":27443,"tid":27459,"ts":326459575816,"ph":"X","cat":"blink_gc","name":"Heap::globalWeakProcessing","args":{},"dur":31,"tdur":31,"tts":6766091},
-{"pid":27443,"tid":27459,"ts":326459576976,"ph":"X","cat":"blink_gc","name":"ThreadState::threadLocalWeakProcessing","args":{},"dur":31,"tdur":31,"tts":6767251},
-{"pid":27443,"tid":27459,"ts":326459577007,"ph":"X","cat":"blink_gc","name":"ThreadState::invokePreFinalizers","args":{},"dur":0,"tdur":0,"tts":6767282},
-{"pid":27443,"tid":27459,"ts":326459577007,"ph":"X","cat":"blink_gc","name":"ThreadState::completeSweep","args":{},"dur":152,"tdur":152,"tts":6767282},
-{"pid":27443,"tid":27459,"ts":326459577159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6767465,"id":"0xaf88a9b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459577190,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2167,"tdur":2167,"tts":6767465},
-{"pid":27443,"tid":27459,"ts":326459577190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6767465,"id":"0xaf88a9b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459577220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6767495,"id":"0xaf88a813f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459577220,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":2106,"tdur":2106,"tts":6767495},
-{"pid":27443,"tid":27459,"ts":326459577220,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6767495,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459577251,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":47.589},"dur":2075,"tdur":2075,"tts":6767526},
-{"pid":27443,"tid":27459,"ts":326459577251,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6767526},
-{"pid":27443,"tid":27459,"ts":326459577281,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6767556},
-{"pid":27443,"tid":27459,"ts":326459578044,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6768319},
-{"pid":27443,"tid":27459,"ts":326459578075,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":21247640},"tts":6768350},
-{"pid":27443,"tid":27459,"ts":326459579174,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":21247640},"tts":6769479},
-{"pid":27443,"tid":27459,"ts":326459579204,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6769479},
-{"pid":27443,"tid":27459,"ts":326459579235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6769510,"id":"0xaf88a82cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459579265,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6769540,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459579265,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6769540,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459579296,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6769571,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459579296,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6769571,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459579326,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6769601,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459579357,"ph":"X","cat":"blink_gc","name":"Heap::GCScope","args":{},"dur":213,"tdur":91,"tts":6769632},
-{"pid":27443,"tid":27459,"ts":326459579387,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6769662,"id":"0xaf88ae69ff1cb276"},
-{"pid":27443,"tid":27459,"ts":326459579387,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6769662,"id":"0xaf88ae0dff1893d2"},
-{"pid":27443,"tid":27459,"ts":326459579570,"ph":"X","cat":"blink_gc","name":"Heap::collectGarbage","args":{"lazySweeping":true,"gcReason":"PreciseGC"},"dur":336,"tdur":336,"tts":6769723},
-{"pid":27443,"tid":27459,"ts":326459579601,"ph":"X","cat":"blink_gc","name":"ThreadState::makeConsistentForGC","args":{},"dur":0,"tdur":0,"tts":6769754},
-{"pid":27443,"tid":27459,"ts":326459579601,"ph":"X","cat":"blink_gc","name":"ThreadState::makeConsistentForGC","args":{},"dur":30,"tdur":30,"tts":6769754},
-{"pid":27443,"tid":27459,"ts":326459579631,"ph":"X","cat":"blink_gc","name":"ThreadState::visitPersistentRoots","args":{},"dur":184,"tdur":183,"tts":6769784},
-{"pid":27443,"tid":27459,"ts":326459579662,"ph":"X","cat":"blink_gc","name":"V8GCController::traceDOMWrappers","args":{},"dur":153,"tdur":152,"tts":6769815},
-{"pid":27443,"tid":27459,"ts":326459579815,"ph":"X","cat":"blink_gc","name":"ThreadState::visitStackRoots","args":{},"dur":30,"tdur":31,"tts":6769967},
-{"pid":27443,"tid":27459,"ts":326459579845,"ph":"X","cat":"blink_gc","name":"Heap::processMarkingStackSingleThreaded","args":{},"dur":0,"tdur":0,"tts":6769998},
-{"pid":27443,"tid":27459,"ts":326459579845,"ph":"X","cat":"blink_gc","name":"Heap::processEphemeronStack","args":{},"dur":0,"tdur":0,"tts":6769998},
-{"pid":27443,"tid":27459,"ts":326459579845,"ph":"X","cat":"blink_gc","name":"Heap::postMarkingProcessing","args":{},"dur":31,"tdur":0,"tts":6770029},
-{"pid":27443,"tid":27459,"ts":326459579876,"ph":"X","cat":"blink_gc","name":"Heap::globalWeakProcessing","args":{},"dur":0,"tdur":0,"tts":6770029},
-{"pid":27443,"tid":27459,"ts":326459579937,"ph":"X","cat":"blink_gc","name":"ThreadState::threadLocalWeakProcessing","args":{},"dur":0,"tdur":0,"tts":6770090},
-{"pid":27443,"tid":27459,"ts":326459579937,"ph":"X","cat":"blink_gc","name":"ThreadState::invokePreFinalizers","args":{},"dur":30,"tdur":30,"tts":6770090},
-{"pid":27443,"tid":27459,"ts":326459579967,"ph":"X","cat":"blink_gc","name":"ThreadState::completeSweep","args":{},"dur":31,"tdur":31,"tts":6770120},
-{"pid":27443,"tid":27459,"ts":326459579998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6770181,"id":"0xaf88a9b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459579998,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":6770181},
-{"pid":27443,"tid":27459,"ts":326459580059,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":46635,"tdur":46116,"tts":6770212},
-{"pid":27443,"tid":27459,"ts":326459580059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6770212,"id":"0xaf88a9baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459580089,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6770242,"id":"0xaf88a82cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459580089,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":46574,"tdur":46055,"tts":6770242},
-{"pid":27443,"tid":27459,"ts":326459580089,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6770242,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459580120,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.176},"dur":46543,"tdur":46024,"tts":6770273},
-{"pid":27443,"tid":27459,"ts":326459580120,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6770273},
-{"pid":27443,"tid":27459,"ts":326459580150,"ph":"B","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6770303},
-{"pid":27443,"tid":27459,"ts":326459580150,"ph":"E","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"tts":6770334},
-{"pid":27443,"tid":27459,"ts":326459580242,"ph":"B","cat":"v8","name":"V8.GCCompactor","args":{},"tts":6770395},
-{"pid":27443,"tid":27459,"ts":326459580272,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":21247640},"tts":6770425},
-{"pid":27443,"tid":27459,"ts":326459625290,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6815229},
-{"pid":27443,"tid":27459,"ts":326459625320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6815260,"id":"0xaf88a607f182217a"},
-{"pid":27443,"tid":27459,"ts":326459626358,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":16449916},"tts":6815992},
-{"pid":27443,"tid":27459,"ts":326459626389,"ph":"E","cat":"v8","name":"V8.GCCompactor","args":{},"tts":6816023},
-{"pid":27443,"tid":27459,"ts":326459626511,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6816145},
-{"pid":27443,"tid":27459,"ts":326459626541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6816175,"id":"0xaf88a82df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459626572,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6816206,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459626602,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6816236,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459626602,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6816236,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459626633,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6816267,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459626633,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6816297,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459626694,"ph":"X","cat":"blink_gc","name":"Heap::GCScope","args":{},"dur":244,"tdur":122,"tts":6816328},
-{"pid":27443,"tid":27459,"ts":326459626724,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6816358,"id":"0xaf88ae6aff1cb276"},
-{"pid":27443,"tid":27459,"ts":326459626755,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6816389,"id":"0xaf88ae0fff1893d2"},
-{"pid":27443,"tid":27459,"ts":326459626938,"ph":"X","cat":"blink_gc","name":"Heap::collectGarbage","args":{"lazySweeping":true,"gcReason":"PreciseGC"},"dur":458,"tdur":427,"tts":6816481},
-{"pid":27443,"tid":27459,"ts":326459626969,"ph":"X","cat":"blink_gc","name":"ThreadState::makeConsistentForGC","args":{},"dur":30,"tdur":30,"tts":6816481},
-{"pid":27443,"tid":27459,"ts":326459626999,"ph":"X","cat":"blink_gc","name":"ThreadState::makeConsistentForGC","args":{},"dur":0,"tdur":0,"tts":6816511},
-{"pid":27443,"tid":27459,"ts":326459627030,"ph":"X","cat":"blink_gc","name":"ThreadState::visitPersistentRoots","args":{},"dur":244,"tdur":213,"tts":6816542},
-{"pid":27443,"tid":27459,"ts":326459627091,"ph":"X","cat":"blink_gc","name":"V8GCController::traceDOMWrappers","args":{},"dur":152,"tdur":152,"tts":6816603},
-{"pid":27443,"tid":27459,"ts":326459627274,"ph":"X","cat":"blink_gc","name":"ThreadState::visitStackRoots","args":{},"dur":0,"tdur":0,"tts":6816786},
-{"pid":27443,"tid":27459,"ts":326459627274,"ph":"X","cat":"blink_gc","name":"Heap::processMarkingStackSingleThreaded","args":{},"dur":30,"tdur":30,"tts":6816786},
-{"pid":27443,"tid":27459,"ts":326459627304,"ph":"X","cat":"blink_gc","name":"Heap::processEphemeronStack","args":{},"dur":0,"tdur":0,"tts":6816816},
-{"pid":27443,"tid":27459,"ts":326459627335,"ph":"X","cat":"blink_gc","name":"Heap::postMarkingProcessing","args":{},"dur":0,"tdur":0,"tts":6816847},
-{"pid":27443,"tid":27459,"ts":326459627335,"ph":"X","cat":"blink_gc","name":"Heap::globalWeakProcessing","args":{},"dur":30,"tdur":0,"tts":6816877},
-{"pid":27443,"tid":27459,"ts":326459627609,"ph":"X","cat":"blink_gc","name":"ThreadState::threadLocalWeakProcessing","args":{},"dur":0,"tdur":0,"tts":6816938},
-{"pid":27443,"tid":27459,"ts":326459627609,"ph":"X","cat":"blink_gc","name":"ThreadState::invokePreFinalizers","args":{},"dur":31,"tdur":31,"tts":6816938},
-{"pid":27443,"tid":27459,"ts":326459627640,"ph":"X","cat":"blink_gc","name":"ThreadState::completeSweep","args":{},"dur":30,"tdur":30,"tts":6816969},
-{"pid":27443,"tid":27459,"ts":326459627701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6817030,"id":"0xaf88a9baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459627701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1831,"tdur":1831,"tts":6817030},
-{"pid":27443,"tid":27459,"ts":326459627732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6817060,"id":"0xaf88a9b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459627732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6817060,"id":"0xaf88a82ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459627732,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":1800,"tdur":1801,"tts":6817060},
-{"pid":27443,"tid":27459,"ts":326459627762,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":107},"tts":6817091},
-{"pid":27443,"tid":27459,"ts":326459627762,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":6817091},
-{"pid":27443,"tid":27459,"ts":326459627793,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6817121,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459627823,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6817152,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459627823,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":6817152},
-{"pid":27443,"tid":27459,"ts":326459627854,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6817182},
-{"pid":27443,"tid":27459,"ts":326459627884,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":1312,"tdur":1312,"tts":6817213},
-{"pid":27443,"tid":27459,"ts":326459627915,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1251,"tdur":1251,"tts":6817244},
-{"pid":27443,"tid":27459,"ts":326459627915,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":30,"tdur":0,"tts":6817274},
-{"pid":27443,"tid":27459,"ts":326459627945,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1160,"tdur":1160,"tts":6817274},
-{"pid":27443,"tid":27459,"ts":326459627976,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1129,"tdur":1129,"tts":6817305},
-{"pid":27443,"tid":27459,"ts":326459627976,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":244,"tdur":244,"tts":6817305},
-{"pid":27443,"tid":27459,"ts":326459628250,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":824,"tdur":824,"tts":6817579},
-{"pid":27443,"tid":27459,"ts":326459628311,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":611,"tdur":580,"tts":6817640},
-{"pid":27443,"tid":27459,"ts":326459629105,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6818434},
-{"pid":27443,"tid":27459,"ts":326459629135,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":0,"tts":6818495},
-{"pid":27443,"tid":27459,"ts":326459629196,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":107},"dur":214,"tdur":214,"tts":6818525},
-{"pid":27443,"tid":27459,"ts":326459629196,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":214,"tdur":184,"tts":6818525},
-{"pid":27443,"tid":27459,"ts":326459629410,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6818739,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459629410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6818739,"id":"0xaf88a603f182217a"},
-{"pid":27443,"tid":27459,"ts":326459629502,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":5626},"tts":6818831,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459629502,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6818831,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459629502,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6818831},
-{"pid":27443,"tid":27459,"ts":326459629563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6818892,"id":"0xaf88a9bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459629563,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":6818892},
-{"pid":27443,"tid":27459,"ts":326459629593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6818922,"id":"0xaf88a82df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459629593,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":6818922},
-{"pid":27443,"tid":27459,"ts":326459629624,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6818953,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459629624,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":5.473},"dur":122,"tdur":122,"tts":6818953},
-{"pid":27443,"tid":27459,"ts":326459629624,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6818953},
-{"pid":27443,"tid":27459,"ts":326459629685,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6819014},
-{"pid":27443,"tid":27459,"ts":326459629715,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6819044,"id":"0xaf88a82ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459629715,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6819044,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459629776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6819105,"id":"0xaf88a9b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459629776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6819105},
-{"pid":27443,"tid":27459,"ts":326459654071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6819227,"id":"0xaf88a9b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459654071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":6819227},
-{"pid":27443,"tid":27459,"ts":326459654101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6819258,"id":"0xaf88a9b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459654132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6819288,"id":"0xaf88a828f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459654132,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":152,"tdur":153,"tts":6819288},
-{"pid":27443,"tid":27459,"ts":326459654162,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":122,"tdur":122,"tts":6819319},
-{"pid":27443,"tid":27459,"ts":326459654193,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6819349,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459654193,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6819349,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27477,"ts":326459637315,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":522600},
-{"pid":27443,"tid":27477,"ts":326459637406,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459634598.0,"frame_time_us":326459635187.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":92,"tts":522630},
-{"pid":27443,"tid":27477,"ts":326459637468,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459651853},"dur":30,"tdur":31,"tts":522691},
-{"pid":27443,"tid":27477,"ts":326459637498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":522722,"id":"0xaf88a61df182217a"},
-{"pid":27443,"tid":27477,"ts":326459651934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459651},"tts":522844,"id":"0xaf88a61df182217a"},
-{"pid":27443,"tid":27477,"ts":326459651965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2289,"tdur":214,"tts":522844},
-{"pid":27443,"tid":27477,"ts":326459651995,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2228,"tdur":152,"tts":522875},
-{"pid":27443,"tid":27477,"ts":326459652026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":522905,"id":"0xaf88aa08f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459652056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":522966,"id":"0xaf88a828f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459652087,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":522966,"id":"0xaf88a9b5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459654254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":523058,"id":"0xaf88a61ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459654254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":523058},
-{"pid":27443,"tid":27477,"ts":326459654315,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459651280.0,"frame_time_us":326459651869.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":0,"tdur":0,"tts":523119},
-{"pid":27443,"tid":27477,"ts":326459654315,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":523119,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459724054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":523180,"id":"0xaf88a61ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459724084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":367,"tdur":367,"tts":523210},
-{"pid":27443,"tid":27477,"ts":326459724084,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":367,"tdur":367,"tts":523210},
-{"pid":27443,"tid":27477,"ts":326459724115,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":523241,"id":"0x300000058"},
-{"pid":27443,"tid":27477,"ts":326459724145,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchStart"},"dur":153,"tdur":153,"tts":523271},
-{"pid":27443,"tid":27477,"ts":326459724328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":523454,"id":"0xaf88a82af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459724328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":523454,"id":"0xaf88a9b0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459724359,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":523485,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459724390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":523515,"id":"0xaf88a82bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459724420,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":523546,"id":"0xaf88a9b1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459743221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":523638,"id":"0xaf88a618f182217a"},
-{"pid":27443,"tid":27477,"ts":326459743251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":523668},
-{"pid":27443,"tid":27477,"ts":326459743251,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":523668},
-{"pid":27443,"tid":27477,"ts":326459743282,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":523699,"id":"0x300000059"},
-{"pid":27443,"tid":27477,"ts":326459743282,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":523699},
-{"pid":27443,"tid":27477,"ts":326459743312,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":523729,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459743343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":523760,"id":"0xaf88a821f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459743343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":523760,"id":"0xaf88a64ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459744472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":523851,"id":"0xaf88a619f182217a"},
-{"pid":27443,"tid":27477,"ts":326459744472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":92,"tdur":92,"tts":523851},
-{"pid":27443,"tid":27477,"ts":326459744502,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":62,"tdur":61,"tts":523882},
-{"pid":27443,"tid":27477,"ts":326459744502,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":523882,"id":"0xaf88aa0af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459744564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":523943,"id":"0xaf88a61af182217a"},
-{"pid":27443,"tid":27477,"ts":326459744594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":523973,"id":"0xaf88a61af182217a"},
-{"pid":27443,"tid":27477,"ts":326459744594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":61,"tdur":61,"tts":523973},
-{"pid":27443,"tid":27477,"ts":326459744594,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":61,"tdur":61,"tts":523973},
-{"pid":27443,"tid":27477,"ts":326459744625,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-93.345,"BeginFrameArgs":{"deadline_us":326459651280.0,"frame_time_us":326459651869.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":524004,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459744655,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":524034,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459745784,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":524095,"id":"0xaf88a61bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459745784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":306,"tdur":306,"tts":524095},
-{"pid":27443,"tid":27477,"ts":326459745815,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":275,"tdur":275,"tts":524126},
-{"pid":27443,"tid":27477,"ts":326459745815,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":524126,"id":"0x30000005a"},
-{"pid":27443,"tid":27477,"ts":326459745815,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchStart"},"dur":183,"tdur":153,"tts":524156},
-{"pid":27443,"tid":27477,"ts":326459745998,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":524309,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459746028,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":524340,"id":"0xaf88a822f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459746059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":524370,"id":"0xaf88a649f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459754391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":524462,"id":"0xaf88a614f182217a"},
-{"pid":27443,"tid":27477,"ts":326459754422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":524492},
-{"pid":27443,"tid":27477,"ts":326459754452,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459751369.0,"frame_time_us":326459751958.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":524523},
-{"pid":27443,"tid":27477,"ts":326459754483,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459751369.0,"frame_time_us":326459751958.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":152,"tdur":153,"tts":524553},
-{"pid":27443,"tid":27477,"ts":326459754483,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":108},"tts":524553},
-{"pid":27443,"tid":27477,"ts":326459754574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":524645,"id":"0xaf88a823f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459754605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":524675,"id":"0xaf88a64bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459754605,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":524675},
-{"pid":27443,"tid":27477,"ts":326459754605,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459768624},"dur":30,"tdur":31,"tts":524675},
-{"pid":27443,"tid":27477,"ts":326459754635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":524706,"id":"0xaf88a615f182217a"},
-{"pid":27443,"tid":27477,"ts":326459765531,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":524767,"id":"0xaf88a616f182217a"},
-{"pid":27443,"tid":27477,"ts":326459765562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":61,"tdur":61,"tts":524797},
-{"pid":27443,"tid":27477,"ts":326459765562,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":524797},
-{"pid":27443,"tid":27477,"ts":326459765592,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":0,"tts":524858},
-{"pid":27443,"tid":27459,"ts":326459654223,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":6819380,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459654254,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6819410,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459654345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6819502,"id":"0xaf88a9b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459654345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":275,"tts":6819502},
-{"pid":27443,"tid":27459,"ts":326459654376,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6819533,"id":"0xaf88a9b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459654406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6819563,"id":"0xaf88a82ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459654406,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":214,"tdur":214,"tts":6819563},
-{"pid":27443,"tid":27459,"ts":326459654406,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6819594,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459654437,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.786},"dur":183,"tdur":183,"tts":6819594},
-{"pid":27443,"tid":27459,"ts":326459654467,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6819624},
-{"pid":27443,"tid":27459,"ts":326459654498,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6819655},
-{"pid":27443,"tid":27459,"ts":326459654528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6819685,"id":"0xaf88a829f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459654559,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6819716,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459654589,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":6819746,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459654650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6819838,"id":"0xaf88a9b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459654681,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6819838},
-{"pid":27443,"tid":27459,"ts":326459725092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6819929,"id":"0xaf88a9b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459725092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6819929},
-{"pid":27443,"tid":27459,"ts":326459725122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6819960,"id":"0xaf88a9b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459725153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6819990,"id":"0xaf88a82af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459725153,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":61,"tdur":61,"tts":6819990},
-{"pid":27443,"tid":27459,"ts":326459725183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6820021,"id":"0xaf88a824f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459725183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6820021,"id":"0xaf88a9b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459725244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6820082,"id":"0xaf88a9b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459725244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":17275,"tdur":14741,"tts":6820082},
-{"pid":27443,"tid":27459,"ts":326459725275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6820112,"id":"0xaf88a82bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459725275,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":17213,"tdur":14681,"tts":6820112},
-{"pid":27443,"tid":27459,"ts":326459725336,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchStart"},"dur":17152,"tdur":14620,"tts":6820173},
-{"pid":27443,"tid":27459,"ts":326459725366,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6820204,"id":"0x300000058"},
-{"pid":27443,"tid":27459,"ts":326459725397,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchstart"},"dur":16328,"tdur":14375,"tts":6820235},
-{"pid":27443,"tid":27459,"ts":326459725427,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":16268,"tdur":14345,"tts":6820265},
-{"pid":27443,"tid":27459,"ts":326459725427,"ph":"X","cat":"blink","name":"EventHandler::hitTestResultAtPoint","args":{},"dur":855,"tdur":824,"tts":6820296},
-{"pid":27443,"tid":27459,"ts":326459725488,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":6820326},
-{"pid":27443,"tid":27459,"ts":326459725519,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":6820357},
-{"pid":27443,"tid":27459,"ts":326459725519,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":6820387},
-{"pid":27443,"tid":27459,"ts":326459725580,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":0,"tdur":0,"tts":6820418},
-{"pid":27443,"tid":27459,"ts":326459725610,"ph":"B","cat":"blink,devtools.timeline","name":"HitTest","args":{},"tts":6820448},
-{"pid":27443,"tid":27459,"ts":326459726251,"ph":"E","cat":"blink,devtools.timeline","name":"HitTest","args":{"endData":{"x":67,"y":387,"rectilinear":true,"touch":true,"nodeId":19,"nodeName":"DIV"}},"tts":6821120},
-{"pid":27443,"tid":27459,"ts":326459726312,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6821181},
-{"pid":27443,"tid":27459,"ts":326459726373,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6821211},
-{"pid":27443,"tid":27459,"ts":326459726404,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6821242},
-{"pid":27443,"tid":27459,"ts":326459726434,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6821272},
-{"pid":27443,"tid":27459,"ts":326459726465,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchstart"}},"dur":15230,"tdur":13307,"tts":6821303},
-{"pid":27443,"tid":27459,"ts":326459726587,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6821455},
-{"pid":27443,"tid":27459,"ts":326459726831,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6821669},
-{"pid":27443,"tid":27459,"ts":326459726892,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":14681,"tdur":12788,"tts":6821761},
-{"pid":27443,"tid":27459,"ts":326459726923,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6821761},
-{"pid":27443,"tid":27459,"ts":326459728388,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6823226},
-{"pid":27443,"tid":27459,"ts":326459728418,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousedown"}},"dur":31,"tdur":31,"tts":6823256},
-{"pid":27443,"tid":27459,"ts":326459739528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6832748,"id":"0xaf88a825f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459739589,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6832809,"id":"0xaf88a64cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459739650,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":147,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":6832870,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459741542,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6834518},
-{"pid":27443,"tid":27459,"ts":326459741725,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":733,"tdur":122,"tts":6834640},
-{"pid":27443,"tid":27459,"ts":326459741756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6834671,"id":"0xaf88aa09f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459742549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6834854,"id":"0xaf88a9b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459742549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6834854},
-{"pid":27443,"tid":27459,"ts":326459742580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6834884,"id":"0xaf88a64df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459742580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6834884,"id":"0xaf88a829f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459742610,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":6834915},
-{"pid":27443,"tid":27459,"ts":326459742610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6834915,"id":"0xaf88a826f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459742641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6834945,"id":"0xaf88a827f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459742671,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6835006,"id":"0xaf88a64df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459742702,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6835006},
-{"pid":27443,"tid":27466,"ts":326459723504,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":183,"tts":284999},
-{"pid":27443,"tid":27466,"ts":326459723565,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":285060},
-{"pid":27443,"tid":27466,"ts":326459723565,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285060,"id":"0xba44fb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459723596,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":285090},
-{"pid":27443,"tid":27466,"ts":326459723627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285121,"id":"0xaf88a61ff182217a"},
-{"pid":27443,"tid":27466,"ts":326459742244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285243,"id":"0xaf88aa09f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459742244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":285243},
-{"pid":27443,"tid":27466,"ts":326459742244,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285243,"id":"0xccc46802"},
-{"pid":27443,"tid":27466,"ts":326459743068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":285365},
-{"pid":27443,"tid":27466,"ts":326459743099,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":123,"tts":285395},
-{"pid":27443,"tid":27466,"ts":326459743129,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285426,"id":"0xba44fc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459743160,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":285457},
-{"pid":27443,"tid":27466,"ts":326459743160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285457,"id":"0xaf88a618f182217a"},
-{"pid":27443,"tid":27466,"ts":326459744594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285609,"id":"0xaf88aa0af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459744594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":285609},
-{"pid":27443,"tid":27466,"ts":326459744594,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285640,"id":"0xccc46a02"},
-{"pid":27443,"tid":27466,"ts":326459744655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":285670,"id":"0xaf88aa0bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459744686,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":285701},
-{"pid":27443,"tid":27466,"ts":326459744686,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285701,"id":"0xccc46b02"},
-{"pid":27443,"tid":27466,"ts":326459745662,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":285762},
-{"pid":27443,"tid":27466,"ts":326459745693,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":285792},
-{"pid":27443,"tid":27466,"ts":326459745693,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285792,"id":"0xba44fe02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459745723,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":285823},
-{"pid":27443,"tid":27466,"ts":326459745723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":285823,"id":"0xaf88a61bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459754208,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":285914},
-{"pid":27443,"tid":27466,"ts":326459754238,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":285945},
-{"pid":27443,"tid":27466,"ts":326459754269,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":285975,"id":"0xba44ff02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459754300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286006,"id":"0xaf88a614f182217a"},
-{"pid":27443,"tid":27466,"ts":326459764524,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":286128,"id":"0xaf88aa04f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459764524,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":286128},
-{"pid":27443,"tid":27466,"ts":326459764524,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":286128,"id":"0xccc46d02"},
-{"pid":27443,"tid":27466,"ts":326459765500,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":286220},
-{"pid":27443,"tid":27466,"ts":326459765531,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":286250},
-{"pid":27443,"tid":27466,"ts":326459765531,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":286250,"id":"0xba450002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459765562,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":0,"tts":286311},
-{"pid":27443,"tid":27466,"ts":326459765592,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286311,"id":"0xaf88a617f182217a"},
-{"pid":27443,"tid":27466,"ts":326459766965,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":286433,"id":"0xaf88aa05f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459766965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":286433},
-{"pid":27443,"tid":27466,"ts":326459766965,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":286433,"id":"0xccc46f02"},
-{"pid":27443,"tid":27466,"ts":326459770262,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":286525},
-{"pid":27443,"tid":27466,"ts":326459770292,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":153,"tdur":91,"tts":286586},
-{"pid":27443,"tid":27466,"ts":326459770323,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":286586,"id":"0xba450102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459770353,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":286616},
-{"pid":27443,"tid":27466,"ts":326459770384,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286647,"id":"0xaf88a611f182217a"},
-{"pid":27443,"tid":27466,"ts":326459770994,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":286769},
-{"pid":27443,"tid":27466,"ts":326459771025,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":286799},
-{"pid":27443,"tid":27466,"ts":326459771025,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":286799,"id":"0xba450202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459771055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":286830,"id":"0xaf88a612f182217a"},
-{"pid":27443,"tid":27466,"ts":326459772703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":286952,"id":"0xaf88aa06f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459772734,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":286983},
-{"pid":27443,"tid":27466,"ts":326459772734,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":286983,"id":"0xccc47102"},
-{"pid":27443,"tid":27466,"ts":326459787048,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":287105},{"pid":27443,"tid":27466,"ts":326459787078,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":287135},
-{"pid":27443,"tid":27466,"ts":326459787109,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":287166,"id":"0xba450302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459787139,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":287196},
-{"pid":27443,"tid":27466,"ts":326459787139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":287196,"id":"0xaf88a62df182217a"},
-{"pid":27443,"tid":27466,"ts":326459787658,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":287318},
-{"pid":27443,"tid":27466,"ts":326459787689,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":287349},
-{"pid":27443,"tid":27466,"ts":326459787689,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":287349,"id":"0xba450402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459787719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":287379,"id":"0xaf88a62ef182217a"},
-{"pid":27443,"tid":27466,"ts":326459793976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":287501,"id":"0xaf88aa07f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459793976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":287501},
-{"pid":27443,"tid":27466,"ts":326459793976,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":287532,"id":"0xccc47302"},
-{"pid":27443,"tid":27466,"ts":326459805085,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":287623},
-{"pid":27443,"tid":27459,"ts":326459742702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6835006,"id":"0xaf88a64ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459742732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6835037,"id":"0xaf88a826f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459742732,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":92,"tdur":91,"tts":6835037},
-{"pid":27443,"tid":27459,"ts":326459742763,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":6835067,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459742793,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":6835098,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459742793,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6835098,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459742824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6835128,"id":"0xaf88a820f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459742854,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459740},"tts":6835159,"id":"0xaf88a64cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459742885,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":6835190},
-{"pid":27443,"tid":27459,"ts":326459742915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6835220,"id":"0xaf88a64ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459742915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6835220},
-{"pid":27443,"tid":27459,"ts":326459743404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6835312,"id":"0xaf88a64ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459743404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1220,"tts":6835312},
-{"pid":27443,"tid":27459,"ts":326459743434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6835342,"id":"0xaf88a648f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459743434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6835342,"id":"0xaf88a821f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459743434,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1129,"tts":6835373},
-{"pid":27443,"tid":27459,"ts":326459743495,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1068,"tts":6835434},
-{"pid":27443,"tid":27459,"ts":326459743526,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6835434,"id":"0x300000059"},
-{"pid":27443,"tid":27459,"ts":326459743556,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":977,"tdur":977,"tts":6835464},
-{"pid":27443,"tid":27459,"ts":326459743587,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":946,"tts":6835495},
-{"pid":27443,"tid":27459,"ts":326459743617,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6835525},
-{"pid":27443,"tid":27459,"ts":326459743678,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6835586},
-{"pid":27443,"tid":27459,"ts":326459743709,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6835617},
-{"pid":27443,"tid":27459,"ts":326459743739,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6835647},
-{"pid":27443,"tid":27459,"ts":326459743770,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":732,"tdur":732,"tts":6835678},
-{"pid":27443,"tid":27459,"ts":326459743892,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":580,"tdur":550,"tts":6835830},
-{"pid":27443,"tid":27459,"ts":326459743923,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6835830},
-{"pid":27443,"tid":27459,"ts":326459744380,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":63,"frame":"0x78c60000"}},"tts":6836288,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459744411,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":6836319},
-{"pid":27443,"tid":27459,"ts":326459744411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6836319,"id":"0xaf88a619f182217a"},
-{"pid":27443,"tid":27459,"ts":326459744472,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6836380},
-{"pid":27443,"tid":27459,"ts":326459744564,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":31,"tts":6836471},
-{"pid":27443,"tid":27459,"ts":326459744564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6836471,"id":"0xaf88aa0bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459744655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6836563,"id":"0xaf88a648f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459744655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6836563},
-{"pid":27443,"tid":27459,"ts":326459746120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6836685,"id":"0xaf88a649f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459746120,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":18404,"tdur":15657,"tts":6836685},
-{"pid":27443,"tid":27459,"ts":326459746151,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6836716,"id":"0xaf88a64af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459746151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6836716,"id":"0xaf88a822f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459746151,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":18373,"tdur":15626,"tts":6836716},
-{"pid":27443,"tid":27459,"ts":326459746212,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchStart"},"dur":18281,"tdur":15534,"tts":6836777},
-{"pid":27443,"tid":27459,"ts":326459746212,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6836777,"id":"0x30000005a"},
-{"pid":27443,"tid":27459,"ts":326459746242,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchstart"},"dur":18129,"tdur":15382,"tts":6836807},
-{"pid":27443,"tid":27459,"ts":326459746273,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":18098,"tdur":15351,"tts":6836838},
-{"pid":27443,"tid":27459,"ts":326459746303,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":6836868},
-{"pid":27443,"tid":27459,"ts":326459746334,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":6836899},
-{"pid":27443,"tid":27459,"ts":326459746364,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6836929},
-{"pid":27443,"tid":27459,"ts":326459746395,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":30,"tts":6836960},
-{"pid":27443,"tid":27459,"ts":326459746425,"ph":"B","cat":"blink,devtools.timeline","name":"HitTest","args":{},"tts":6836990},
-{"pid":27443,"tid":27459,"ts":326459747097,"ph":"E","cat":"blink,devtools.timeline","name":"HitTest","args":{"endData":{"x":327,"y":170,"rectilinear":true,"touch":true,"nodeId":19,"nodeName":"DIV"}},"tts":6837692},
-{"pid":27443,"tid":27459,"ts":326459747158,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6837723},
-{"pid":27443,"tid":27459,"ts":326459747188,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6837753},
-{"pid":27443,"tid":27459,"ts":326459747219,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6837784},
-{"pid":27443,"tid":27459,"ts":326459747249,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6837814},
-{"pid":27443,"tid":27459,"ts":326459747280,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6837845},
-{"pid":27443,"tid":27459,"ts":326459747310,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6837875},
-{"pid":27443,"tid":27459,"ts":326459747341,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchstart"}},"dur":17000,"tdur":14253,"tts":6837906},
-{"pid":27443,"tid":27459,"ts":326459747432,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":16878,"tdur":14100,"tts":6838028},
-{"pid":27443,"tid":27459,"ts":326459747463,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6838028},
-{"pid":27443,"tid":27459,"ts":326459747677,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6838242},
-{"pid":27443,"tid":27459,"ts":326459747707,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":6838272},
-{"pid":27443,"tid":27459,"ts":326459750973,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6841385},
-{"pid":27443,"tid":27459,"ts":326459751125,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6841538},
-{"pid":27443,"tid":27459,"ts":326459751186,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6841599},
-{"pid":27443,"tid":27459,"ts":326459751522,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6841904},
-{"pid":27443,"tid":27459,"ts":326459754422,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6842606},
-{"pid":27443,"tid":27459,"ts":326459754696,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6842911},
-{"pid":27443,"tid":27459,"ts":326459755215,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6843399},
-{"pid":27443,"tid":27459,"ts":326459755398,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6843583},
-{"pid":27443,"tid":27459,"ts":326459755459,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6843644},
-{"pid":27443,"tid":27459,"ts":326459755490,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6843674},
-{"pid":27443,"tid":27459,"ts":326459755642,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6843857},
-{"pid":27443,"tid":27459,"ts":326459755887,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6844071},
-{"pid":27443,"tid":27459,"ts":326459756375,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6844559},
-{"pid":27443,"tid":27459,"ts":326459756589,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6844773},
-{"pid":27443,"tid":27459,"ts":326459763578,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6851396},
-{"pid":27443,"tid":27459,"ts":326459763700,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6851548},
-{"pid":27443,"tid":27459,"ts":326459763791,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6851609},
-{"pid":27443,"tid":27459,"ts":326459763913,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6851732},
-{"pid":27443,"tid":27459,"ts":326459764280,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6852098},
-{"pid":27443,"tid":27459,"ts":326459764402,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6852220},
-{"pid":27443,"tid":27459,"ts":326459764432,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6852250,"id":"0xaf88aa04f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459764554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6852372,"id":"0xaf88a64af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459764585,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1007,"tdur":1007,"tts":6852403},
-{"pid":27443,"tid":27459,"ts":326459764585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6852403,"id":"0xaf88a644f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459764615,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6852434,"id":"0xaf88a823f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459764615,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":947,"tdur":946,"tts":6852434},
-{"pid":27443,"tid":27459,"ts":326459764615,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":108},"tts":6852434},
-{"pid":27443,"tid":27459,"ts":326459764646,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6852464},
-{"pid":27443,"tid":27459,"ts":326459764676,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":275,"tdur":274,"tts":6852495},
-{"pid":27443,"tid":27459,"ts":326459764707,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6852525},
-{"pid":27443,"tid":27459,"ts":326459764737,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":63,"frame":"0x78c60000"}},"dur":184,"tdur":153,"tts":6852586},
-{"pid":27443,"tid":27459,"ts":326459764829,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":92,"tdur":92,"tts":6852647},
-{"pid":27443,"tid":27459,"ts":326459764860,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6852678},
-{"pid":27443,"tid":27459,"ts":326459764890,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6852739},
-{"pid":27443,"tid":27459,"ts":326459764951,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":153,"tdur":153,"tts":6852769},
-{"pid":27443,"tid":27459,"ts":326459764982,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":91,"tts":6852800},
-{"pid":27443,"tid":27459,"ts":326459764982,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":30,"tdur":0,"tts":6852830},
-{"pid":27443,"tid":27459,"ts":326459765012,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":6852830},
-{"pid":27443,"tid":27459,"ts":326459765043,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":0,"tts":6852891},
-{"pid":27443,"tid":27459,"ts":326459765104,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":108},"dur":213,"tdur":213,"tts":6852922},
-{"pid":27443,"tid":27459,"ts":326459765104,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":213,"tdur":213,"tts":6852922},
-{"pid":27443,"tid":27459,"ts":326459765317,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6853135,"id":"0x300000059"},
-{"pid":27443,"tid":27459,"ts":326459765317,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6853166,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459765348,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6853166,"id":"0xaf88a616f182217a"},
-{"pid":27443,"tid":27459,"ts":326459765409,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3215},"tts":6853227,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459765439,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6853258,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459765531,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901977.0,"time":326459732691.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459731000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459744441.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459765439.0},"coordinates":[{"x":135.0,"y":772.5}],"trace_id":12884901977.0}},"tts":6853349,"id":"0x300000059"},
-{"pid":27443,"tid":27459,"ts":326459765531,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6853349,"id":"0x300000059","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459765562,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6853380},
-{"pid":27443,"tid":27459,"ts":326459765623,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6853441,"id":"0xaf88a64bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459765623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":152,"tts":6853441},
-{"pid":27443,"tid":27459,"ts":326459765623,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6853441,"id":"0xaf88a827f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459765653,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":6853471},
-{"pid":27443,"tid":27459,"ts":326459765653,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6853471,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459765653,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.971},"dur":122,"tdur":122,"tts":6853471},
-{"pid":27443,"tid":27459,"ts":326459765684,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6853502},
-{"pid":27443,"tid":27459,"ts":326459765714,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6853532},
-{"pid":27443,"tid":27459,"ts":326459765745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6853563,"id":"0xaf88a83df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459765775,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6853593,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459765806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6853624,"id":"0xaf88a644f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459765836,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1130,"tts":6853654},
-{"pid":27443,"tid":27459,"ts":326459765836,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6853654,"id":"0xaf88a646f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459765867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6853685,"id":"0xaf88a83cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459765867,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1098,"tdur":1099,"tts":6853685},
-{"pid":27443,"tid":27459,"ts":326459765928,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":6853746},
-{"pid":27443,"tid":27459,"ts":326459765928,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6853746,"id":"0x30000005b"},
-{"pid":27443,"tid":27459,"ts":326459765958,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":886,"tts":6853776},
-{"pid":27443,"tid":27477,"ts":326459765653,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":524889,"id":"0xaf88a617f182217a"},
-{"pid":27443,"tid":27477,"ts":326459765653,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":524889},
-{"pid":27443,"tid":27477,"ts":326459765653,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":524889},
-{"pid":27443,"tid":27477,"ts":326459765684,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":524919,"id":"0x30000005b"},
-{"pid":27443,"tid":27477,"ts":326459765684,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":524919},
-{"pid":27443,"tid":27477,"ts":326459765714,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":524950,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459765745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":524980,"id":"0xaf88a83cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459765745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":524980,"id":"0xaf88a645f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459766782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":525103,"id":"0xaf88a610f182217a"},
-{"pid":27443,"tid":27477,"ts":326459766813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":525103},
-{"pid":27443,"tid":27477,"ts":326459766813,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":0,"tts":525103},
-{"pid":27443,"tid":27477,"ts":326459768705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459768},"tts":525164,"id":"0xaf88a615f182217a"},
-{"pid":27443,"tid":27477,"ts":326459768705,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":30,"tts":525164},
-{"pid":27443,"tid":27477,"ts":326459768736,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":525194},
-{"pid":27443,"tid":27477,"ts":326459770445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":525255,"id":"0xaf88a611f182217a"},
-{"pid":27443,"tid":27477,"ts":326459770445,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":214,"tts":525255},
-{"pid":27443,"tid":27477,"ts":326459770475,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":183,"tts":525286},
-{"pid":27443,"tid":27477,"ts":326459770506,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":525316,"id":"0x30000005c"},
-{"pid":27443,"tid":27477,"ts":326459770506,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":525316},
-{"pid":27443,"tid":27477,"ts":326459770536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":525347,"id":"0xaf88a83ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459770567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":525377,"id":"0xaf88a647f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459770597,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":525408,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459770628,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":525438,"id":"0xaf88a83ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459770658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":525469,"id":"0xaf88a640f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459771116,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":525530,"id":"0xaf88a612f182217a"},
-{"pid":27443,"tid":27477,"ts":326459771116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":525530},
-{"pid":27443,"tid":27477,"ts":326459771147,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459768051.0,"frame_time_us":326459768640.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":183,"tts":525560},
-{"pid":27443,"tid":27477,"ts":326459771147,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459768051.0,"frame_time_us":326459768640.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":152,"tts":525591},
-{"pid":27443,"tid":27477,"ts":326459771208,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":109},"tts":525621},
-{"pid":27443,"tid":27477,"ts":326459771269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":525682,"id":"0xaf88a838f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459771299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":525713,"id":"0xaf88a642f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459771299,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":525713},
-{"pid":27443,"tid":27477,"ts":326459771299,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459785306},"dur":31,"tdur":0,"tts":525743},
-{"pid":27443,"tid":27477,"ts":326459771330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":525743,"id":"0xaf88a613f182217a"},
-{"pid":27443,"tid":27477,"ts":326459783874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":525835,"id":"0xaf88a62cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459783874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":91,"tdur":92,"tts":525835},
-{"pid":27443,"tid":27477,"ts":326459783904,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":525866},
-{"pid":27443,"tid":27477,"ts":326459783935,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":31,"tts":525896},
-{"pid":27443,"tid":27477,"ts":326459785400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459785},"tts":525988,"id":"0xaf88a613f182217a"},
-{"pid":27443,"tid":27477,"ts":326459785400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":30,"tts":525988},
-{"pid":27443,"tid":27477,"ts":326459785430,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":526018},
-{"pid":27443,"tid":27477,"ts":326459787200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":526110,"id":"0xaf88a62df182217a"},
-{"pid":27443,"tid":27477,"ts":326459787231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":526140},
-{"pid":27443,"tid":27477,"ts":326459787231,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":526140},
-{"pid":27443,"tid":27477,"ts":326459787262,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":526171,"id":"0x30000005d"},
-{"pid":27443,"tid":27477,"ts":326459787262,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":526171},
-{"pid":27443,"tid":27477,"ts":326459787292,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":526201,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459787323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":526232,"id":"0xaf88a83af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459787353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":526262,"id":"0xaf88a65ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459787780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":526323,"id":"0xaf88a62ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459787780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":526323},
-{"pid":27443,"tid":27477,"ts":326459787811,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459784732.0,"frame_time_us":326459785321.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":526354},
-{"pid":27443,"tid":27477,"ts":326459787841,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459784732.0,"frame_time_us":326459785321.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":92,"tts":526384},
-{"pid":27443,"tid":27477,"ts":326459787902,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459801987},"dur":31,"tdur":31,"tts":526445},
-{"pid":27443,"tid":27477,"ts":326459787902,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":526445,"id":"0xaf88a62ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459793793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":526537,"id":"0xaf88a628f182217a"},
-{"pid":27443,"tid":27477,"ts":326459793793,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":153,"tts":526537},
-{"pid":27443,"tid":27477,"ts":326459793823,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":526568},
-{"pid":27443,"tid":27477,"ts":326459793823,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":110},"tts":526568},
-{"pid":27443,"tid":27477,"ts":326459793915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":526659,"id":"0xaf88a834f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459793915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":526659,"id":"0xaf88a659f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459793945,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":526690},
-{"pid":27443,"tid":27477,"ts":326459799256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":526751,"id":"0xaf88a629f182217a"},
-{"pid":27443,"tid":27477,"ts":326459799287,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":61,"tdur":61,"tts":526781},
-{"pid":27443,"tid":27459,"ts":326459765958,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":855,"tts":6853807},
-{"pid":27443,"tid":27459,"ts":326459766019,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6853837},
-{"pid":27443,"tid":27459,"ts":326459766050,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6853898},
-{"pid":27443,"tid":27459,"ts":326459766111,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6853929},
-{"pid":27443,"tid":27459,"ts":326459766172,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6854021},
-{"pid":27443,"tid":27459,"ts":326459766202,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6854051},
-{"pid":27443,"tid":27459,"ts":326459766233,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6854082},
-{"pid":27443,"tid":27459,"ts":326459766294,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":550,"tts":6854112},
-{"pid":27443,"tid":27459,"ts":326459766416,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":6854234},
-{"pid":27443,"tid":27459,"ts":326459766447,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6854265},
-{"pid":27443,"tid":27459,"ts":326459766691,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":64,"frame":"0x78c60000"}},"tts":6854509,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459766721,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":6854539},
-{"pid":27443,"tid":27459,"ts":326459766752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6854570,"id":"0xaf88a610f182217a"},
-{"pid":27443,"tid":27459,"ts":326459766782,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6854600},
-{"pid":27443,"tid":27459,"ts":326459766874,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6854692},
-{"pid":27443,"tid":27459,"ts":326459766874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6854692,"id":"0xaf88aa05f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459766996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6854814,"id":"0xaf88a645f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459766996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":6854814},
-{"pid":27443,"tid":27459,"ts":326459767026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6854875,"id":"0xaf88a646f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459767057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6854875},
-{"pid":27443,"tid":27459,"ts":326459770933,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6854936,"id":"0xaf88a647f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459770964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6854967},
-{"pid":27443,"tid":27459,"ts":326459770994,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6854997,"id":"0xaf88a641f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459770994,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6854997,"id":"0xaf88a83ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459770994,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":31,"tdur":31,"tts":6854997},
-{"pid":27443,"tid":27459,"ts":326459771055,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6855058,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459771055,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":31,"tts":6855058},
-{"pid":27443,"tid":27459,"ts":326459771391,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6855089,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459771421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6855150,"id":"0xaf88a640f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459771452,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2014,"tdur":1099,"tts":6855150},
-{"pid":27443,"tid":27459,"ts":326459771452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6855150,"id":"0xaf88a83ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459771482,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1954,"tdur":1038,"tts":6855180},
-{"pid":27443,"tid":27459,"ts":326459771513,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1923,"tdur":1007,"tts":6855211},
-{"pid":27443,"tid":27459,"ts":326459771544,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6855241,"id":"0x30000005c"},
-{"pid":27443,"tid":27459,"ts":326459771544,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1007,"tdur":793,"tts":6855272},
-{"pid":27443,"tid":27459,"ts":326459771574,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":977,"tdur":763,"tts":6855302},
-{"pid":27443,"tid":27459,"ts":326459771635,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6855363},
-{"pid":27443,"tid":27459,"ts":326459771696,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6855394},
-{"pid":27443,"tid":27459,"ts":326459771727,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6855425},
-{"pid":27443,"tid":27459,"ts":326459771757,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6855455},
-{"pid":27443,"tid":27459,"ts":326459771788,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6855486},
-{"pid":27443,"tid":27459,"ts":326459771818,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6855516},
-{"pid":27443,"tid":27459,"ts":326459771849,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":671,"tdur":488,"tts":6855547},
-{"pid":27443,"tid":27459,"ts":326459772001,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":489,"tdur":305,"tts":6855699},
-{"pid":27443,"tid":27459,"ts":326459772001,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6855730},
-{"pid":27443,"tid":27459,"ts":326459772398,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":65,"frame":"0x78c60000"}},"tts":6855974,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459772490,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6856004},
-{"pid":27443,"tid":27459,"ts":326459772581,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":824,"tdur":92,"tts":6856096},
-{"pid":27443,"tid":27459,"ts":326459772612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6856126,"id":"0xaf88aa06f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459773497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459772},"tts":6856279,"id":"0xaf88a9a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459773527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":122,"tdur":61,"tts":6856310},
-{"pid":27443,"tid":27459,"ts":326459773558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6856340,"id":"0xaf88a643f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459773680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6856401,"id":"0xaf88a641f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459773710,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":62,"tdur":61,"tts":6856432},
-{"pid":27443,"tid":27459,"ts":326459773710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6856432,"id":"0xaf88a65cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459773741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6856462,"id":"0xaf88a83df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459773741,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":6856462},
-{"pid":27443,"tid":27459,"ts":326459773741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6856462,"id":"0xaf88a839f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459773802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6856523,"id":"0xaf88a642f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459773802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10346,"tdur":9888,"tts":6856554},
-{"pid":27443,"tid":27459,"ts":326459773833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6856554,"id":"0xaf88a838f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459773833,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10285,"tdur":9858,"tts":6856554},
-{"pid":27443,"tid":27459,"ts":326459773863,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":109},"tts":6856584},
-{"pid":27443,"tid":27459,"ts":326459773863,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6856584},
-{"pid":27443,"tid":27459,"ts":326459773924,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9461,"tdur":9034,"tts":6856645},
-{"pid":27443,"tid":27459,"ts":326459773955,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":6856676},
-{"pid":27443,"tid":27459,"ts":326459774016,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":64,"frame":"0x78c60000"}},"dur":8851,"tdur":8729,"tts":6856737},
-{"pid":27443,"tid":27459,"ts":326459774077,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":8790,"tdur":8668,"tts":6856798},
-{"pid":27443,"tid":27459,"ts":326459774107,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6856828},
-{"pid":27443,"tid":27459,"ts":326459776274,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6859026},
-{"pid":27443,"tid":27459,"ts":326459776518,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6859270},
-{"pid":27443,"tid":27459,"ts":326459776671,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6859392},
-{"pid":27443,"tid":27459,"ts":326459776915,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6859636},
-{"pid":27443,"tid":27459,"ts":326459776976,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6859697},
-{"pid":27443,"tid":27459,"ts":326459777129,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6859850},
-{"pid":27443,"tid":27459,"ts":326459777190,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6859911},
-{"pid":27443,"tid":27459,"ts":326459777434,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6860155},
-{"pid":27443,"tid":27459,"ts":326459779204,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6861925},
-{"pid":27443,"tid":27459,"ts":326459779601,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6862322},
-{"pid":27443,"tid":27459,"ts":326459779876,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6862627},
-{"pid":27443,"tid":27459,"ts":326459779998,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6862749},
-{"pid":27443,"tid":27459,"ts":326459779998,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":6862749},
-{"pid":27443,"tid":27459,"ts":326459780089,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6862841},
-{"pid":27443,"tid":27459,"ts":326459780303,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6863024},
-{"pid":27443,"tid":27459,"ts":326459780547,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6863268},
-{"pid":27443,"tid":27459,"ts":326459781066,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6863787},
-{"pid":27443,"tid":27459,"ts":326459781127,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6863848},
-{"pid":27443,"tid":27459,"ts":326459781432,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6864153},
-{"pid":27443,"tid":27459,"ts":326459782836,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6865435},
-{"pid":27443,"tid":27459,"ts":326459782897,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":65,"frame":"0x78c60000"}},"dur":458,"tdur":122,"tts":6865527},
-{"pid":27443,"tid":27459,"ts":326459783294,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":6865588},
-{"pid":27443,"tid":27459,"ts":326459783294,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6865588},
-{"pid":27443,"tid":27459,"ts":326459783324,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6865649},
-{"pid":27443,"tid":27459,"ts":326459783385,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":153,"tdur":153,"tts":6865679},
-{"pid":27443,"tid":27459,"ts":326459783416,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":6865710},
-{"pid":27443,"tid":27459,"ts":326459783446,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":6865740},
-{"pid":27443,"tid":27459,"ts":326459783477,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6865771},
-{"pid":27443,"tid":27459,"ts":326459783507,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":31,"tts":6865801},
-{"pid":27443,"tid":27459,"ts":326459783569,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":109},"dur":213,"tdur":214,"tts":6865862},
-{"pid":27443,"tid":27459,"ts":326459783569,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":183,"tdur":184,"tts":6865862},
-{"pid":27443,"tid":27459,"ts":326459783782,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6866076,"id":"0x30000005b"},
-{"pid":27443,"tid":27459,"ts":326459783782,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6866076,"id":"0x30000005c"},
-{"pid":27443,"tid":27459,"ts":326459783782,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6866107,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459783813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6866107,"id":"0xaf88a62cf182217a"},
-{"pid":27443,"tid":27459,"ts":326459783904,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1432},"tts":6866198,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459783904,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6866198,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459783996,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901979.0,"time":326459753353.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459746000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459766782.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459783935.0},"coordinates":[{"x":135.0,"y":772.5},{"x":651.5,"y":342.0}],"trace_id":12884901979.0}},"tts":6866290,"id":"0x30000005b"},
-{"pid":27443,"tid":27459,"ts":326459784026,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6866320,"id":"0x30000005b","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459784087,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901980.0,"time":326459769712.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459763000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459772459.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459784026.0},"coordinates":[{"x":136.07620239257812,"y":771.9619140625},{"x":651.5,"y":342.0}],"trace_id":12884901980.0}},"tts":6866381,"id":"0x30000005c"},
-{"pid":27443,"tid":27459,"ts":326459784087,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6866412,"id":"0x30000005c","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459784118,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6866412},
-{"pid":27443,"tid":27459,"ts":326459784179,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6866473,"id":"0xaf88a65cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459784179,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":855,"tdur":763,"tts":6866503},
-{"pid":27443,"tid":27459,"ts":326459784209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6866503,"id":"0xaf88a65df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459784240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6866534,"id":"0xaf88a825f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459784240,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":794,"tdur":732,"tts":6866534},
-{"pid":27443,"tid":27459,"ts":326459784240,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":794,"tdur":732,"tts":6866534},
-{"pid":27443,"tid":27459,"ts":326459784271,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":147,"frame":"0x78c60000"}},"dur":732,"tdur":611,"tts":6866625},
-{"pid":27443,"tid":27459,"ts":326459784271,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":6866625},
-{"pid":27443,"tid":27459,"ts":326459784423,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":580,"tdur":580,"tts":6866656},
-{"pid":27443,"tid":27459,"ts":326459784484,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":519,"tdur":519,"tts":6866717},
-{"pid":27443,"tid":27459,"ts":326459784515,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6866748},
-{"pid":27443,"tid":27459,"ts":326459784972,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6867205},
-{"pid":27443,"tid":27459,"ts":326459785064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6867297,"id":"0xaf88a65df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459785064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7111,"tdur":4945,"tts":6867327},
-{"pid":27443,"tid":27459,"ts":326459785095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6867327,"id":"0xaf88a65ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459785095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6867327,"id":"0xaf88a81ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459785125,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":7020,"tdur":4883,"tts":6867358},
-{"pid":27443,"tid":27459,"ts":326459785125,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":7020,"tdur":4883,"tts":6867358},
-{"pid":27443,"tid":27459,"ts":326459785156,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":144,"frame":"0x78c60000"}},"dur":6989,"tdur":4853,"tts":6867388},
-{"pid":27443,"tid":27459,"ts":326459785186,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":6928,"tdur":4792,"tts":6867419},
-{"pid":27443,"tid":27459,"ts":326459785247,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":144,"frame":"0x78c60000"}},"dur":6867,"tdur":4731,"tts":6867480},
-{"pid":27443,"tid":27459,"ts":326459785247,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6867511},
-{"pid":27443,"tid":27459,"ts":326459785400,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6867633},
-{"pid":27443,"tid":27459,"ts":326459788330,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6868548},
-{"pid":27443,"tid":27459,"ts":326459791992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6872089,"id":"0xaf88a83bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459792053,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":148,"frame":"0x78c60000","timeout":500,"singleShot":true}},"tts":6872150,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459792084,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6872180},
-{"pid":27443,"tid":27459,"ts":326459792206,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6872302,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459792206,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6872302,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459792267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6872363,"id":"0xaf88a65ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459792267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1709,"tdur":1221,"tts":6872363},
-{"pid":27443,"tid":27459,"ts":326459792297,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6872394,"id":"0xaf88a658f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459792297,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6872394,"id":"0xaf88a83af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459792297,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1679,"tdur":1190,"tts":6872394},
-{"pid":27443,"tid":27459,"ts":326459792389,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1556,"tdur":1069,"tts":6872485},
-{"pid":27443,"tid":27459,"ts":326459792389,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6872485,"id":"0x30000005d"},
-{"pid":27443,"tid":27459,"ts":326459792419,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1435,"tdur":946,"tts":6872516},
-{"pid":27443,"tid":27459,"ts":326459792450,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1404,"tdur":916,"tts":6872546},
-{"pid":27443,"tid":27459,"ts":326459792511,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6872607},
-{"pid":27443,"tid":27459,"ts":326459792542,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6872638},
-{"pid":27443,"tid":27459,"ts":326459792572,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6872669},
-{"pid":27443,"tid":27459,"ts":326459792603,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6872699},
-{"pid":27443,"tid":27459,"ts":326459792633,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6872730},
-{"pid":27443,"tid":27459,"ts":326459792664,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6872760},
-{"pid":27443,"tid":27459,"ts":326459792664,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6872791},
-{"pid":27443,"tid":27459,"ts":326459792816,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1007,"tdur":580,"tts":6872852},
-{"pid":27443,"tid":27459,"ts":326459792816,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6872852},
-{"pid":27443,"tid":27459,"ts":326459792969,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":824,"tdur":397,"tts":6873004},
-{"pid":27443,"tid":27459,"ts":326459792999,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6873004},
-{"pid":27443,"tid":27459,"ts":326459793701,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":66,"frame":"0x78c60000"}},"tts":6873309,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459793732,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":6873340},
-{"pid":27443,"tid":27459,"ts":326459793732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6873340,"id":"0xaf88a628f182217a"},
-{"pid":27443,"tid":27459,"ts":326459793793,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6873401},
-{"pid":27443,"tid":27459,"ts":326459793884,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6873493},
-{"pid":27443,"tid":27459,"ts":326459793884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6873493,"id":"0xaf88aa07f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459794007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6873615,"id":"0xaf88a65ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459794007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5432,"tdur":5432,"tts":6873615},
-{"pid":27443,"tid":27459,"ts":326459794037,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6873645,"id":"0xaf88a834f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459794037,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5372,"tdur":5372,"tts":6873645},
-{"pid":27443,"tid":27459,"ts":326459794037,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":110},"tts":6873645},
-{"pid":27443,"tid":27459,"ts":326459794068,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6873676},
-{"pid":27443,"tid":27459,"ts":326459794098,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4670,"tdur":4670,"tts":6873706},
-{"pid":27443,"tid":27459,"ts":326459794129,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6873737},
-{"pid":27443,"tid":27459,"ts":326459794159,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":66,"frame":"0x78c60000"}},"dur":4609,"tdur":4609,"tts":6873767},
-{"pid":27443,"tid":27459,"ts":326459794220,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4548,"tdur":4548,"tts":6873828},
-{"pid":27443,"tid":27459,"ts":326459794251,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6873859},
-{"pid":27443,"tid":27459,"ts":326459798737,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6878345},
-{"pid":27443,"tid":27459,"ts":326459798798,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":153,"tdur":153,"tts":6878406},
-{"pid":27443,"tid":27459,"ts":326459798829,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":91,"tdur":91,"tts":6878437},
-{"pid":27443,"tid":27459,"ts":326459798829,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":30,"tdur":30,"tts":6878437},
-{"pid":27443,"tid":27459,"ts":326459798859,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":6878467},
-{"pid":27443,"tid":27459,"ts":326459798890,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":30,"tts":6878498},
-{"pid":27443,"tid":27459,"ts":326459798951,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":110},"dur":213,"tdur":214,"tts":6878559},
-{"pid":27443,"tid":27459,"ts":326459798951,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":213,"tdur":214,"tts":6878559},
-{"pid":27443,"tid":27459,"ts":326459799164,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6878773,"id":"0x30000005d"},
-{"pid":27443,"tid":27459,"ts":326459799195,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6878803,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459799195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6878803,"id":"0xaf88a629f182217a"},
-{"pid":27443,"tid":27459,"ts":326459799256,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2731},"tts":6878895,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459799287,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6878895,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459799378,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901981.0,"time":326459786621.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459780000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459793762.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459799317.0},"coordinates":[{"x":139.0579833984375,"y":770.2210083007812},{"x":649.8314819335938,"y":343.27899169921875}],"trace_id":12884901981.0}},"tts":6878986,"id":"0x30000005d"},
-{"pid":27443,"tid":27459,"ts":326459799378,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6878986,"id":"0x30000005d","bp":"e"},
-{"pid":27443,"tid":27477,"ts":326459799287,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":526781},
-{"pid":27443,"tid":27477,"ts":326459799317,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":30,"tts":526812},
-{"pid":27443,"tid":27477,"ts":326459802094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459801},"tts":526903,"id":"0xaf88a62ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459802125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":526934},
-{"pid":27443,"tid":27477,"ts":326459802125,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":526934},
-{"pid":27443,"tid":27477,"ts":326459805238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":527025,"id":"0xaf88a62af182217a"},
-{"pid":27443,"tid":27477,"ts":326459805269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":527056},
-{"pid":27443,"tid":27477,"ts":326459805269,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":152,"tts":527056},
-{"pid":27443,"tid":27477,"ts":326459805299,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":527086,"id":"0x30000005e"},
-{"pid":27443,"tid":27477,"ts":326459805299,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":527086},
-{"pid":27443,"tid":27477,"ts":326459805330,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":527117,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459805360,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":527147,"id":"0xaf88a836f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459805391,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527178,"id":"0xaf88a65bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459806856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":527269,"id":"0xaf88a62bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459806856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":527269},
-{"pid":27443,"tid":27477,"ts":326459806886,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459801414.0,"frame_time_us":326459802003.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":527300},
-{"pid":27443,"tid":27477,"ts":326459806917,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459801414.0,"frame_time_us":326459802003.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":91,"tdur":91,"tts":527331},
-{"pid":27443,"tid":27477,"ts":326459806978,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459818669},"dur":30,"tdur":30,"tts":527392},
-{"pid":27443,"tid":27477,"ts":326459806978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527422,"id":"0xaf88a624f182217a"},
-{"pid":27443,"tid":27477,"ts":326459807252,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":527483,"id":"0xaf88a625f182217a"},
-{"pid":27443,"tid":27477,"ts":326459807252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":527483},
-{"pid":27443,"tid":27477,"ts":326459807252,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":91,"tts":527514},
-{"pid":27443,"tid":27477,"ts":326459807283,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":111},"tts":527514},
-{"pid":27443,"tid":27477,"ts":326459807344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":527575,"id":"0xaf88a837f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459807344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527575,"id":"0xaf88a655f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459807374,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":527605},
-{"pid":27443,"tid":27477,"ts":326459812593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":527666,"id":"0xaf88a626f182217a"},
-{"pid":27443,"tid":27477,"ts":326459812593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":92,"tts":527666},
-{"pid":27443,"tid":27477,"ts":326459812624,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":30,"tts":527697},
-{"pid":27443,"tid":27477,"ts":326459812654,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":0,"tdur":0,"tts":527727},
-{"pid":27443,"tid":27477,"ts":326459818759,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459818},"tts":527819,"id":"0xaf88a624f182217a"},
-{"pid":27443,"tid":27477,"ts":326459818789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":527849},
-{"pid":27443,"tid":27477,"ts":326459818789,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":527849},
-{"pid":27443,"tid":27477,"ts":326459820468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":527910,"id":"0xaf88a627f182217a"},
-{"pid":27443,"tid":27477,"ts":326459820468,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":184,"tts":527910},
-{"pid":27443,"tid":27477,"ts":326459820498,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":527941},
-{"pid":27443,"tid":27477,"ts":326459820498,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":527941,"id":"0x30000005f"},
-{"pid":27443,"tid":27477,"ts":326459820529,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":527971},
-{"pid":27443,"tid":27477,"ts":326459820559,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":528002,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459820590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":528032,"id":"0xaf88a832f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459820590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528032,"id":"0xaf88a650f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459820834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":528124,"id":"0xaf88a620f182217a"},
-{"pid":27443,"tid":27477,"ts":326459820864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":123,"tdur":122,"tts":528155},
-{"pid":27443,"tid":27477,"ts":326459820864,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459818095.0,"frame_time_us":326459818684.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":123,"tdur":92,"tts":528185},
-{"pid":27443,"tid":27477,"ts":326459820895,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459818095.0,"frame_time_us":326459818684.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":92,"tts":528185},
-{"pid":27443,"tid":27477,"ts":326459820956,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459835350},"dur":0,"tdur":0,"tts":528246},
-{"pid":27443,"tid":27477,"ts":326459820956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528246,"id":"0xaf88a621f182217a"},
-{"pid":27443,"tid":27477,"ts":326459821750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":528338,"id":"0xaf88a622f182217a"},
-{"pid":27443,"tid":27477,"ts":326459821780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":528368},
-{"pid":27443,"tid":27477,"ts":326459821780,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":528368},
-{"pid":27443,"tid":27477,"ts":326459821780,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":112},"tts":528368},
-{"pid":27443,"tid":27477,"ts":326459821841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":528429,"id":"0xaf88a833f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459821872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528460,"id":"0xaf88a652f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459821872,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":528460},
-{"pid":27443,"tid":27477,"ts":326459835453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459835},"tts":528551,"id":"0xaf88a621f182217a"},
-{"pid":27443,"tid":27477,"ts":326459835484,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":528582},
-{"pid":27443,"tid":27477,"ts":326459835484,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":528582},
-{"pid":27443,"tid":27477,"ts":326459836643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":528673,"id":"0xaf88a623f182217a"},
-{"pid":27443,"tid":27477,"ts":326459836674,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1587,"tdur":1587,"tts":528704},
-{"pid":27443,"tid":27477,"ts":326459836674,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1557,"tdur":1556,"tts":528704},
-{"pid":27443,"tid":27477,"ts":326459836674,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":528704},
-{"pid":27443,"tid":27477,"ts":326459836705,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1526,"tdur":1526,"tts":528734},
-{"pid":27443,"tid":27477,"ts":326459836705,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1526,"tdur":1526,"tts":528734},
-{"pid":27443,"tid":27477,"ts":326459836735,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":528765},
-{"pid":27443,"tid":27459,"ts":326459799409,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6879017},
-{"pid":27443,"tid":27459,"ts":326459799470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6879078,"id":"0xaf88a658f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459799470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":6879078},
-{"pid":27443,"tid":27459,"ts":326459799500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6879108,"id":"0xaf88a65af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459799500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6879108,"id":"0xaf88a839f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459799500,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":122,"tts":6879139},
-{"pid":27443,"tid":27459,"ts":326459799531,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6879139,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459799531,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.456},"dur":122,"tdur":122,"tts":6879139},
-{"pid":27443,"tid":27459,"ts":326459799561,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6879169},
-{"pid":27443,"tid":27459,"ts":326459799592,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6879200},
-{"pid":27443,"tid":27459,"ts":326459799622,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6879230,"id":"0xaf88a835f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459799622,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6879230,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459799683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6879291,"id":"0xaf88a659f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459799683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6879291},
-{"pid":27443,"tid":27459,"ts":326459799714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6879322,"id":"0xaf88a65af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459799744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6879352},
-{"pid":27443,"tid":27459,"ts":326459806093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6879414,"id":"0xaf88a65bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459806093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1342,"tdur":1342,"tts":6879414},
-{"pid":27443,"tid":27459,"ts":326459806123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6879444,"id":"0xaf88a654f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459806154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6879475,"id":"0xaf88a836f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459806154,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1281,"tdur":1281,"tts":6879475},
-{"pid":27443,"tid":27459,"ts":326459806215,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1190,"tdur":1190,"tts":6879536},
-{"pid":27443,"tid":27459,"ts":326459806245,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6879566,"id":"0x30000005e"},
-{"pid":27443,"tid":27459,"ts":326459806276,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1037,"tdur":1037,"tts":6879597},
-{"pid":27443,"tid":27459,"ts":326459806306,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1007,"tdur":1007,"tts":6879627},
-{"pid":27443,"tid":27459,"ts":326459806367,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6879688},
-{"pid":27443,"tid":27459,"ts":326459806398,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6879749},
-{"pid":27443,"tid":27459,"ts":326459806459,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6879780},
-{"pid":27443,"tid":27459,"ts":326459806489,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6879810},
-{"pid":27443,"tid":27459,"ts":326459806550,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6879871},
-{"pid":27443,"tid":27459,"ts":326459806581,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6879902},
-{"pid":27443,"tid":27459,"ts":326459806611,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6879932},
-{"pid":27443,"tid":27459,"ts":326459806672,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":611,"tts":6879993},
-{"pid":27443,"tid":27459,"ts":326459806825,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":458,"tts":6880146},
-{"pid":27443,"tid":27459,"ts":326459806856,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6880177},
-{"pid":27443,"tid":27459,"ts":326459807161,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":67,"frame":"0x78c60000"}},"tts":6880482,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459807191,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6880512},
-{"pid":27443,"tid":27459,"ts":326459807191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6880512,"id":"0xaf88a625f182217a"},
-{"pid":27443,"tid":27459,"ts":326459807252,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6880573},
-{"pid":27443,"tid":27459,"ts":326459807344,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6880665},
-{"pid":27443,"tid":27459,"ts":326459807344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6880665,"id":"0xaf88aa00f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459807466,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6880787,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459807466,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6880787,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459807527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6880848,"id":"0xaf88a654f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459807527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6880848},
-{"pid":27443,"tid":27459,"ts":326459807527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6880879,"id":"0xaf88a656f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459807558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6880879,"id":"0xaf88a835f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459807558,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":30,"tts":6880879},
-{"pid":27443,"tid":27459,"ts":326459807588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6880909,"id":"0xaf88a830f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459807619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6880940,"id":"0xaf88a655f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459807619,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5158,"tdur":5157,"tts":6880940},
-{"pid":27443,"tid":27459,"ts":326459807649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6880970,"id":"0xaf88a837f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459807649,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5097,"tdur":5097,"tts":6880970},
-{"pid":27443,"tid":27459,"ts":326459807649,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":111},"tts":6880970},
-{"pid":27443,"tid":27459,"ts":326459807680,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":6881001},
-{"pid":27443,"tid":27459,"ts":326459807710,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4395,"tdur":4395,"tts":6881031},
-{"pid":27443,"tid":27459,"ts":326459807741,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6881062},
-{"pid":27443,"tid":27459,"ts":326459807771,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":67,"frame":"0x78c60000"}},"dur":4334,"tdur":4334,"tts":6881092},
-{"pid":27443,"tid":27459,"ts":326459807832,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4273,"tdur":4273,"tts":6881153},
-{"pid":27443,"tid":27459,"ts":326459807863,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6881184},
-{"pid":27443,"tid":27459,"ts":326459812075,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6885396},
-{"pid":27443,"tid":27459,"ts":326459812105,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":183,"tdur":152,"tts":6885457},
-{"pid":27443,"tid":27459,"ts":326459812166,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":6885487},
-{"pid":27443,"tid":27459,"ts":326459812166,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":31,"tdur":31,"tts":6885487},
-{"pid":27443,"tid":27466,"ts":326459805116,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":287654},
-{"pid":27443,"tid":27466,"ts":326459805146,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":287685,"id":"0xba450502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459805177,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":287715},
-{"pid":27443,"tid":27466,"ts":326459805177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":287715,"id":"0xaf88a62af182217a"},
-{"pid":27443,"tid":27466,"ts":326459806337,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":287837},
-{"pid":27443,"tid":27466,"ts":326459806337,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":287837},
-{"pid":27443,"tid":27466,"ts":326459806398,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":287868},
-{"pid":27443,"tid":27466,"ts":326459806428,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":287898,"id":"0xba450602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459806459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":287929,"id":"0xaf88a62bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459807435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":288051,"id":"0xaf88aa00f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459807435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":288051},
-{"pid":27443,"tid":27466,"ts":326459807435,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":288051,"id":"0xccc47502"},
-{"pid":27443,"tid":27466,"ts":326459820315,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":288173},
-{"pid":27443,"tid":27466,"ts":326459820346,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":288203},
-{"pid":27443,"tid":27466,"ts":326459820346,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":288203,"id":"0xba450702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459820376,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":288234},
-{"pid":27443,"tid":27466,"ts":326459820407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288264,"id":"0xaf88a627f182217a"},
-{"pid":27443,"tid":27466,"ts":326459820712,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":288325},
-{"pid":27443,"tid":27466,"ts":326459820742,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":288356},
-{"pid":27443,"tid":27466,"ts":326459820773,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":288386,"id":"0xba450802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459820803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288417,"id":"0xaf88a620f182217a"},
-{"pid":27443,"tid":27466,"ts":326459821933,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":288539,"id":"0xaf88aa01f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459821933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":288539},
-{"pid":27443,"tid":27466,"ts":326459821933,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":288539,"id":"0xccc47702"},
-{"pid":27443,"tid":27466,"ts":326459836857,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":288661},
-{"pid":27443,"tid":27466,"ts":326459836918,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":288692},
-{"pid":27443,"tid":27466,"ts":326459836918,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":288692,"id":"0xba450902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459836949,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":288722},
-{"pid":27443,"tid":27466,"ts":326459836979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288783,"id":"0xaf88a63cf182217a"},
-{"pid":27443,"tid":27466,"ts":326459837468,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":288844},
-{"pid":27443,"tid":27466,"ts":326459837498,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":288875},
-{"pid":27443,"tid":27466,"ts":326459837529,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":288905,"id":"0xba450a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459837529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":288905,"id":"0xaf88a63df182217a"},
-{"pid":27443,"tid":27466,"ts":326459837834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":289027,"id":"0xaf88aa02f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459837864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":289027},{"pid":27443,"tid":27466,"ts":326459837864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289027,"id":"0xccc47802"},
-{"pid":27443,"tid":27466,"ts":326459839634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":289149,"id":"0xaf88aa03f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459839634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":62,"tts":289149},
-{"pid":27443,"tid":27466,"ts":326459839665,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289180,"id":"0xccc47a02"},
-{"pid":27443,"tid":27466,"ts":326459843846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":289272,"id":"0xaf88aa1cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459843846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":289272},
-{"pid":27443,"tid":27466,"ts":326459843877,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289302,"id":"0xccc47b06"},
-{"pid":27443,"tid":27466,"ts":326459844457,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":289394},
-{"pid":27443,"tid":27466,"ts":326459844457,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":289424},
-{"pid":27443,"tid":27466,"ts":326459844487,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289424,"id":"0xc4c16d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459845403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":289516,"id":"0xaf88aa1df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459845403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":289516},
-{"pid":27443,"tid":27466,"ts":326459845433,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289546,"id":"0xccc47c02"},
-{"pid":27443,"tid":27466,"ts":326459849920,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":289638},
-{"pid":27443,"tid":27466,"ts":326459849950,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":122,"tts":289668},
-{"pid":27443,"tid":27466,"ts":326459849950,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289668,"id":"0xba450b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459850042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289760,"id":"0xaf88a633f182217a"},
-{"pid":27443,"tid":27466,"ts":326459854101,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":611,"tdur":214,"tts":289851},
-{"pid":27443,"tid":27466,"ts":326459854101,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":31,"tts":289851},
-{"pid":27443,"tid":27466,"ts":326459854559,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":289912},
-{"pid":27443,"tid":27466,"ts":326459854559,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":289912,"id":"0xba450d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459854589,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":289943},
-{"pid":27443,"tid":27466,"ts":326459854620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":289974,"id":"0xaf88a6ccf182217a"},
-{"pid":27443,"tid":27466,"ts":326459854650,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":61,"tts":290004},
-{"pid":27443,"tid":27466,"ts":326459854681,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290035,"id":"0xba450e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459854681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":290035,"id":"0xaf88a6cdf182217a"},
-{"pid":27443,"tid":27466,"ts":326459858588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290126,"id":"0xaf88aa1ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459858618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":290157},
-{"pid":27443,"tid":27466,"ts":326459858618,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290157,"id":"0xccc47e02"},
-{"pid":27443,"tid":27459,"ts":326459812197,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":6885518},
-{"pid":27443,"tid":27459,"ts":326459812258,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":0,"tdur":0,"tts":6885579},
-{"pid":27443,"tid":27459,"ts":326459812288,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":111},"dur":214,"tdur":214,"tts":6885609},
-{"pid":27443,"tid":27459,"ts":326459812319,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":183,"tdur":183,"tts":6885640},
-{"pid":27443,"tid":27459,"ts":326459812502,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6885823,"id":"0x30000005e"},
-{"pid":27443,"tid":27459,"ts":326459812532,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":6885853,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459812532,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6885853,"id":"0xaf88a626f182217a"},
-{"pid":27443,"tid":27459,"ts":326459812624,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":6076},"tts":6885945,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459812624,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6885945,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459812715,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901982.0,"time":326459804719.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459797000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459807222.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459812654.0},"coordinates":[{"x":143.0207977294922,"y":767.8875122070312},{"x":645.2750244140625,"y":346.316650390625}],"trace_id":12884901982.0}},"tts":6886036,"id":"0x30000005e"},
-{"pid":27443,"tid":27459,"ts":326459812715,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":6886036,"id":"0x30000005e","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326459812746,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6886067},
-{"pid":27443,"tid":27459,"ts":326459812807,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6886128,"id":"0xaf88a656f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459812807,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":6886128},
-{"pid":27443,"tid":27459,"ts":326459812838,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6886159,"id":"0xaf88a657f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459812838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6886159,"id":"0xaf88a830f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459812838,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":152,"tts":6886159},
-{"pid":27443,"tid":27459,"ts":326459812868,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6886189,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459812868,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":5.801},"dur":92,"tdur":92,"tts":6886189},
-{"pid":27443,"tid":27459,"ts":326459812868,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6886220},
-{"pid":27443,"tid":27459,"ts":326459812929,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":6886250},
-{"pid":27443,"tid":27459,"ts":326459812960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6886281,"id":"0xaf88a831f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459812960,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":6886281,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459813021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6886342,"id":"0xaf88a657f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459813021,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6886342},
-{"pid":27443,"tid":27459,"ts":326459820681,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6886403,"id":"0xaf88a650f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459820681,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":6886403},
-{"pid":27443,"tid":27459,"ts":326459820742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1191,"tts":6886433},
-{"pid":27443,"tid":27459,"ts":326459820773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6886464,"id":"0xaf88a651f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459820773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6886464,"id":"0xaf88a832f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459820803,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1130,"tdur":1099,"tts":6886494},
-{"pid":27443,"tid":27459,"ts":326459820864,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1038,"tts":6886555},
-{"pid":27443,"tid":27459,"ts":326459820864,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6886555,"id":"0x30000005f"},
-{"pid":27443,"tid":27459,"ts":326459820895,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":915,"tts":6886586},
-{"pid":27443,"tid":27459,"ts":326459820925,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":886,"tdur":885,"tts":6886616},
-{"pid":27443,"tid":27459,"ts":326459820987,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6886677},
-{"pid":27443,"tid":27459,"ts":326459821017,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6886708},
-{"pid":27443,"tid":27459,"ts":326459821048,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6886738},
-{"pid":27443,"tid":27459,"ts":326459821078,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6886769},
-{"pid":27443,"tid":27459,"ts":326459821109,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6886799},
-{"pid":27443,"tid":27459,"ts":326459821139,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6886830},
-{"pid":27443,"tid":27459,"ts":326459821170,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6886860},
-{"pid":27443,"tid":27459,"ts":326459821200,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":580,"tts":6886891},
-{"pid":27443,"tid":27459,"ts":326459821353,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":6887044},
-{"pid":27443,"tid":27459,"ts":326459821353,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6887044},
-{"pid":27443,"tid":27459,"ts":326459821658,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":68,"frame":"0x78c60000"}},"tts":6887349,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459821688,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6887379},
-{"pid":27443,"tid":27459,"ts":326459821688,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6887379,"id":"0xaf88a622f182217a"},
-{"pid":27443,"tid":27459,"ts":326459821750,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6887440},
-{"pid":27443,"tid":27459,"ts":326459821841,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6887532},
-{"pid":27443,"tid":27459,"ts":326459821841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6887532,"id":"0xaf88aa01f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459821963,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":6887654,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459821963,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":6887654,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326459822024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6887715,"id":"0xaf88a651f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459822024,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6887715},
-{"pid":27443,"tid":27459,"ts":326459822024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6887746,"id":"0xaf88a653f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459822055,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6887746,"id":"0xaf88a831f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459822055,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":30,"tts":6887746},
-{"pid":27443,"tid":27459,"ts":326459822085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6887776,"id":"0xaf88a8ccf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459822116,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6887807,"id":"0xaf88a652f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459822116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":15474,"tdur":14192,"tts":6887807},
-{"pid":27443,"tid":27459,"ts":326459822146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6887837,"id":"0xaf88a833f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459822146,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":15413,"tdur":14131,"tts":6887837},
-{"pid":27443,"tid":27459,"ts":326459822177,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":112},"tts":6887868},
-{"pid":27443,"tid":27459,"ts":326459822177,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6887868},
-{"pid":27443,"tid":27459,"ts":326459822238,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":10865,"tdur":10682,"tts":6887929},
-{"pid":27443,"tid":27459,"ts":326459822268,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":0,"tts":6887959},
-{"pid":27443,"tid":27459,"ts":326459822299,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":68,"frame":"0x78c60000"}},"dur":10804,"tdur":10621,"tts":6887990},
-{"pid":27443,"tid":27459,"ts":326459822360,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":10713,"tdur":10529,"tts":6888051},
-{"pid":27443,"tid":27459,"ts":326459822390,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6888081},
-{"pid":27443,"tid":27459,"ts":326459833042,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6898580},
-{"pid":27443,"tid":27459,"ts":326459833103,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3022,"tdur":2777,"tts":6898611},
-{"pid":27443,"tid":27459,"ts":326459833134,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6898672},
-{"pid":27443,"tid":27459,"ts":326459833164,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6898672},
-{"pid":27443,"tid":27459,"ts":326459833195,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6898702},
-{"pid":27443,"tid":27459,"ts":326459833866,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":4,"counters":true},"tts":6899252},
-{"pid":27443,"tid":27459,"ts":326459833897,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":4},"tts":6899282},
-{"pid":27443,"tid":27459,"ts":326459833927,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2167,"tdur":2045,"tts":6899313},
-{"pid":27443,"tid":27459,"ts":326459833927,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1953,"tdur":1801,"tts":6899343},
-{"pid":27443,"tid":27459,"ts":326459833958,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":457,"tdur":366,"tts":6899374},
-{"pid":27443,"tid":27459,"ts":326459834415,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":184,"tdur":152,"tts":6899771},
-{"pid":27443,"tid":27459,"ts":326459834629,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":153,"tdur":152,"tts":6899954},
-{"pid":27443,"tid":27459,"ts":326459834782,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6900106},
-{"pid":27443,"tid":27459,"ts":326459834782,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1037,"tdur":946,"tts":6900106},
-{"pid":27443,"tid":27459,"ts":326459835819,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":61,"tdur":61,"tts":6901083},
-{"pid":27443,"tid":27459,"ts":326459835880,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":31,"tdur":0,"tts":6901175},
-{"pid":27443,"tid":27459,"ts":326459835911,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":6901205},
-{"pid":27443,"tid":27459,"ts":326459835972,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6901236},
-{"pid":27443,"tid":27459,"ts":326459836125,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":112},"dur":457,"tdur":458,"tts":6901388},
-{"pid":27443,"tid":27459,"ts":326459836125,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":457,"tdur":458,"tts":6901388},
-{"pid":27443,"tid":27459,"ts":326459836369,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":61,"tdur":0,"tts":6901663},
-{"pid":27443,"tid":27459,"ts":326459836430,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":0,"tdur":0,"tts":6901693},
-{"pid":27443,"tid":27459,"ts":326459836460,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":0,"tdur":0,"tts":6901724},
-{"pid":27443,"tid":27459,"ts":326459836460,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":31,"tdur":30,"tts":6901724},
-{"pid":27443,"tid":27459,"ts":326459836491,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":0,"tdur":0,"tts":6901754},
-{"pid":27443,"tid":27459,"ts":326459836491,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":30,"tdur":31,"tts":6901754},
-{"pid":27443,"tid":27459,"ts":326459836521,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":0,"tdur":0,"tts":6901785},
-{"pid":27443,"tid":27459,"ts":326459836521,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":31,"tdur":30,"tts":6901785},
-{"pid":27443,"tid":27459,"ts":326459836552,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":112},"dur":0,"tdur":0,"tts":6901815},
-{"pid":27443,"tid":27459,"ts":326459836582,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6901846,"id":"0x30000005f"},
-{"pid":27443,"tid":27459,"ts":326459836582,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":947,"tdur":92,"tts":6901846},
-{"pid":27443,"tid":27459,"ts":326459836613,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6901877,"id":"0xaf88a623f182217a"},
-{"pid":27443,"tid":27459,"ts":326459837559,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6901968},
-{"pid":27443,"tid":27459,"ts":326459837620,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459823},"tts":6902029,"id":"0xaf88a909f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459837620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/render_view_impl.cc","src_func":"StartNavStateSyncTimerIfNecessary"},"dur":214,"tdur":183,"tts":6902060},
-{"pid":27443,"tid":27459,"ts":326459837773,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":61,"tdur":61,"tts":6902182},
-{"pid":27443,"tid":27459,"ts":326459837773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6902182,"id":"0xaf88aa02f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459837864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6902273,"id":"0xaf88a653f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459837864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6902273},
-{"pid":27443,"tid":27459,"ts":326459838139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459825},"tts":6902334,"id":"0xaf88a9b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":30,"tts":6902365},
-{"pid":27443,"tid":27459,"ts":326459838169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6902365,"id":"0xaf88a66cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6902395,"id":"0xaf88a66df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6902426,"id":"0xaf88a66cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":6902426},
-{"pid":27443,"tid":27459,"ts":326459838261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6902456,"id":"0xaf88a66ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6902456,"id":"0xaf88a824f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459838292,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":30,"tdur":30,"tts":6902487},
-{"pid":27443,"tid":27459,"ts":326459838292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6902517,"id":"0xaf88a8cdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459838353,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6902548,"id":"0xaf88a66ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838353,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1281,"tdur":1191,"tts":6902578},
-{"pid":27443,"tid":27459,"ts":326459838475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6902609,"id":"0xaf88a668f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459838475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6902609,"id":"0xaf88a8cef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459838505,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1098,"tts":6902640},
-{"pid":27443,"tid":27459,"ts":326459838566,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1037,"tts":6902701},
-{"pid":27443,"tid":27459,"ts":326459838566,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6902701,"id":"0x300000060"},
-{"pid":27443,"tid":27459,"ts":326459838597,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":916,"tts":6902731},
-{"pid":27443,"tid":27459,"ts":326459838627,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":6902762},
-{"pid":27443,"tid":27477,"ts":326459836735,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":528765},
-{"pid":27443,"tid":27477,"ts":326459836766,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":528796,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459836766,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":528796},
-{"pid":27443,"tid":27477,"ts":326459836796,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":244,"tdur":244,"tts":528826},
-{"pid":27443,"tid":27477,"ts":326459837040,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":529070},
-{"pid":27443,"tid":27477,"ts":326459837071,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":305,"tdur":305,"tts":529101},
-{"pid":27443,"tid":27477,"ts":326459837437,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":763,"tts":529467},
-{"pid":27443,"tid":27477,"ts":326459837437,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":112},"dur":244,"tdur":244,"tts":529467},
-{"pid":27443,"tid":27477,"ts":326459837681,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":112},"dur":61,"tdur":31,"tts":529711},
-{"pid":27443,"tid":27477,"ts":326459837742,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":112},"tts":529772},
-{"pid":27443,"tid":27477,"ts":326459837895,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":529925},
-{"pid":27443,"tid":27477,"ts":326459837895,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":529925},
-{"pid":27443,"tid":27477,"ts":326459837895,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":275,"tts":529955},
-{"pid":27443,"tid":27477,"ts":326459837925,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":529955},
-{"pid":27443,"tid":27477,"ts":326459838017,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":530047},
-{"pid":27443,"tid":27477,"ts":326459838047,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":530077},
-{"pid":27443,"tid":27477,"ts":326459838047,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":530077},
-{"pid":27443,"tid":27477,"ts":326459838078,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":530108},
-{"pid":27443,"tid":27477,"ts":326459838078,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":530108,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459838108,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":530138},
-{"pid":27443,"tid":27477,"ts":326459838108,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":530138},
-{"pid":27443,"tid":27477,"ts":326459838169,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":530199,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459838200,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":165}},"tts":530230,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459838200,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":530230,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459838261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":530291,"id":"0xaf88a63cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459838261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":530291},
-{"pid":27443,"tid":27477,"ts":326459838261,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":530291},
-{"pid":27443,"tid":27477,"ts":326459838292,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":530322,"id":"0x300000060"},
-{"pid":27443,"tid":27477,"ts":326459838292,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":0,"tts":530352},
-{"pid":27443,"tid":27477,"ts":326459838322,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":530352,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459838353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":530383,"id":"0xaf88a8cef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459838383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":530413,"id":"0xaf88a66ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459838414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":530444,"id":"0xaf88a63df182217a"},
-{"pid":27443,"tid":27477,"ts":326459838414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":530444},
-{"pid":27443,"tid":27477,"ts":326459838444,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459834777.0,"frame_time_us":326459835366.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":530474},
-{"pid":27443,"tid":27477,"ts":326459838475,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459834777.0,"frame_time_us":326459835366.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":530505},
-{"pid":27443,"tid":27477,"ts":326459838505,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459852032},"dur":31,"tdur":31,"tts":530535},
-{"pid":27443,"tid":27477,"ts":326459838505,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":530566,"id":"0xaf88a638f182217a"},
-{"pid":27443,"tid":27477,"ts":326459838597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":530627,"id":"0xaf88a63ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459838597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":530627},
-{"pid":27443,"tid":27477,"ts":326459838597,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":530627},
-{"pid":27443,"tid":27477,"ts":326459838627,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":530657,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459838627,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":530657},
-{"pid":27443,"tid":27477,"ts":326459838627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":530688,"id":"0xaf88a63af182217a"},
-{"pid":27443,"tid":27477,"ts":326459838658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":530688,"id":"0xaf88a63ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459838658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":530718},
-{"pid":27443,"tid":27477,"ts":326459838688,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":530718},
-{"pid":27443,"tid":27477,"ts":326459838688,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":530718,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459838688,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":530718},
-{"pid":27443,"tid":27477,"ts":326459838719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":530749,"id":"0xaf88a63bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459838749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":530779,"id":"0xaf88a639f182217a"},
-{"pid":27443,"tid":27477,"ts":326459838749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":530779},
-{"pid":27443,"tid":27477,"ts":326459838749,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":530779},
-{"pid":27443,"tid":27477,"ts":326459838780,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":530810,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459838780,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":530810},
-{"pid":27443,"tid":27477,"ts":326459838780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":530810,"id":"0xaf88a63af182217a"},
-{"pid":27443,"tid":27477,"ts":326459838810,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":3113,"tdur":1374,"tts":530840},
-{"pid":27443,"tid":27477,"ts":326459838810,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":3113,"tdur":1374,"tts":530840},
-{"pid":27443,"tid":27477,"ts":326459838810,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":530840},
-{"pid":27443,"tid":27477,"ts":326459838841,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":530871},
-{"pid":27443,"tid":27477,"ts":326459838841,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":530871},
-{"pid":27443,"tid":27477,"ts":326459838841,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":530901},
-{"pid":27443,"tid":27477,"ts":326459838932,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2961,"tdur":1221,"tts":530962},
-{"pid":27443,"tid":27477,"ts":326459838932,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2961,"tdur":1221,"tts":530962},
-{"pid":27443,"tid":27459,"ts":326459838658,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6902823},
-{"pid":27443,"tid":27459,"ts":326459838719,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6902853},
-{"pid":27443,"tid":27459,"ts":326459838749,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6902884},
-{"pid":27443,"tid":27459,"ts":326459838780,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6902914},
-{"pid":27443,"tid":27459,"ts":326459838810,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6902945},
-{"pid":27443,"tid":27459,"ts":326459838841,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6902975},
-{"pid":27443,"tid":27459,"ts":326459838841,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6903006},
-{"pid":27443,"tid":27459,"ts":326459838902,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":6903036},
-{"pid":27443,"tid":27459,"ts":326459839055,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":367,"tts":6903219},
-{"pid":27443,"tid":27459,"ts":326459839085,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6903219},
-{"pid":27443,"tid":27459,"ts":326459839390,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":69,"frame":"0x78c60000"}},"tts":6903525,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459839390,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":0,"tts":6903555},
-{"pid":27443,"tid":27459,"ts":326459839421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6903555,"id":"0xaf88a634f182217a"},
-{"pid":27443,"tid":27459,"ts":326459839451,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6903586},
-{"pid":27443,"tid":27459,"ts":326459839543,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":31,"tts":6903677},
-{"pid":27443,"tid":27459,"ts":326459839543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6903677,"id":"0xaf88aa03f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459839665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6903799,"id":"0xaf88a66ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459839665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":6903799},
-{"pid":27443,"tid":27459,"ts":326459839909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6903830,"id":"0xaf88a668f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459839940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6903860},
-{"pid":27443,"tid":27459,"ts":326459843144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6903952,"id":"0xaf88a669f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459843144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":20937,"tdur":10621,"tts":6903952},
-{"pid":27443,"tid":27459,"ts":326459843175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6903982,"id":"0xaf88a66af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459843205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6904013,"id":"0xaf88a8cff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459843205,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6904013},
-{"pid":27443,"tid":27459,"ts":326459843266,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":20815,"tdur":10530,"tts":6904043},
-{"pid":27443,"tid":27459,"ts":326459843266,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":113},"tts":6904043},
-{"pid":27443,"tid":27459,"ts":326459843297,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":6904074},
-{"pid":27443,"tid":27459,"ts":326459843327,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":15383,"tdur":6928,"tts":6904135},
-{"pid":27443,"tid":27459,"ts":326459843419,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":6904135},
-{"pid":27443,"tid":27459,"ts":326459843480,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":69,"frame":"0x78c60000"}},"dur":15230,"tdur":6867,"tts":6904196},
-{"pid":27443,"tid":27459,"ts":326459843633,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":15077,"tdur":6745,"tts":6904318},
-{"pid":27443,"tid":27459,"ts":326459843663,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6904349},
-{"pid":27443,"tid":27459,"ts":326459858679,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6911033},
-{"pid":27443,"tid":27459,"ts":326459858740,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4395,"tdur":2808,"tts":6911094},
-{"pid":27443,"tid":27459,"ts":326459858771,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6911124},
-{"pid":27443,"tid":27459,"ts":326459858801,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":1557,"tdur":61,"tts":6911155},
-{"pid":27443,"tid":27459,"ts":326459858801,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1526,"tdur":30,"tts":6911155},
-{"pid":27443,"tid":27459,"ts":326459860358,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6911216},
-{"pid":27443,"tid":27459,"ts":326459860907,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6911765},
-{"pid":27443,"tid":27459,"ts":326459860938,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6911796},
-{"pid":27443,"tid":27459,"ts":326459860968,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2167,"tdur":2076,"tts":6911826},
-{"pid":27443,"tid":27459,"ts":326459860999,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1923,"tdur":1831,"tts":6911857},
-{"pid":27443,"tid":27459,"ts":326459860999,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":427,"tdur":427,"tts":6911857},
-{"pid":27443,"tid":27459,"ts":326459861426,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":6912284},
-{"pid":27443,"tid":27459,"ts":326459861640,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":6912498},
-{"pid":27443,"tid":27459,"ts":326459861731,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":6912620},
-{"pid":27443,"tid":27459,"ts":326459861762,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1160,"tdur":1068,"tts":6912620},
-{"pid":27443,"tid":27459,"ts":326459862952,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6913718},
-{"pid":27443,"tid":27459,"ts":326459862983,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":152,"tdur":122,"tts":6913749},
-{"pid":27443,"tid":27459,"ts":326459863135,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":113},"dur":488,"tdur":488,"tts":6913902},
-{"pid":27443,"tid":27459,"ts":326459863166,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":457,"tdur":427,"tts":6913932},
-{"pid":27443,"tid":27459,"ts":326459863410,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":30,"tdur":31,"tts":6914176},
-{"pid":27443,"tid":27459,"ts":326459863440,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":0,"tdur":0,"tts":6914207},
-{"pid":27443,"tid":27459,"ts":326459863471,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":0,"tdur":0,"tts":6914237},
-{"pid":27443,"tid":27459,"ts":326459863471,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":30,"tdur":31,"tts":6914237},
-{"pid":27443,"tid":27459,"ts":326459863501,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":0,"tdur":0,"tts":6914268},
-{"pid":27443,"tid":27459,"ts":326459863532,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":0,"tdur":0,"tts":6914298},
-{"pid":27443,"tid":27459,"ts":326459863532,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":30,"tdur":31,"tts":6914298},
-{"pid":27443,"tid":27459,"ts":326459863562,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":31,"tdur":0,"tts":6914329},
-{"pid":27443,"tid":27459,"ts":326459863593,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":113},"dur":0,"tdur":0,"tts":6914359},
-{"pid":27443,"tid":27459,"ts":326459863623,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6914390,"id":"0x300000060"},
-{"pid":27443,"tid":27459,"ts":326459863623,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":367,"tdur":91,"tts":6914390},
-{"pid":27443,"tid":27459,"ts":326459863654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6914420,"id":"0xaf88a6c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459838963,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1007,"tdur":1007,"tts":530993},
-{"pid":27443,"tid":27477,"ts":326459838963,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":530993,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459838963,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":214,"tdur":184,"tts":531023},
-{"pid":27443,"tid":27477,"ts":326459839177,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":531237},
-{"pid":27443,"tid":27477,"ts":326459839268,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531298},
-{"pid":27443,"tid":27477,"ts":326459839299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531329},
-{"pid":27443,"tid":27477,"ts":326459839299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":531329},
-{"pid":27443,"tid":27477,"ts":326459839329,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531359},
-{"pid":27443,"tid":27477,"ts":326459839360,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531390},
-{"pid":27443,"tid":27477,"ts":326459839360,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531390},
-{"pid":27443,"tid":27477,"ts":326459839390,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":531420},
-{"pid":27443,"tid":27477,"ts":326459839421,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531451},
-{"pid":27443,"tid":27477,"ts":326459839451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531481},
-{"pid":27443,"tid":27477,"ts":326459839451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":531481},
-{"pid":27443,"tid":27477,"ts":326459839482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":531512},
-{"pid":27443,"tid":27477,"ts":326459839512,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531542},
-{"pid":27443,"tid":27477,"ts":326459839512,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":531542},
-{"pid":27443,"tid":27477,"ts":326459839543,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531573},
-{"pid":27443,"tid":27477,"ts":326459839573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531603},
-{"pid":27443,"tid":27477,"ts":326459839573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":531603},
-{"pid":27443,"tid":27477,"ts":326459839604,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531634},
-{"pid":27443,"tid":27477,"ts":326459839634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531664},
-{"pid":27443,"tid":27477,"ts":326459839665,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531695},
-{"pid":27443,"tid":27477,"ts":326459839665,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531695},
-{"pid":27443,"tid":27477,"ts":326459839726,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":531786},
-{"pid":27443,"tid":27477,"ts":326459839757,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531786},
-{"pid":27443,"tid":27477,"ts":326459839787,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531817},
-{"pid":27443,"tid":27477,"ts":326459839787,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":531848},
-{"pid":27443,"tid":27477,"ts":326459839818,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531848},
-{"pid":27443,"tid":27477,"ts":326459839848,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":531878},
-{"pid":27443,"tid":27477,"ts":326459839848,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":531878},
-{"pid":27443,"tid":27477,"ts":326459839909,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":531939},
-{"pid":27443,"tid":27477,"ts":326459839940,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":531970},
-{"pid":27443,"tid":27477,"ts":326459839940,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":531970},
-{"pid":27443,"tid":27477,"ts":326459839970,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":532000},
-{"pid":27443,"tid":27477,"ts":326459840031,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":1862,"tdur":122,"tts":532061},
-{"pid":27443,"tid":27477,"ts":326459840031,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":0,"tts":532061},
-{"pid":27443,"tid":27477,"ts":326459840581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":532122,"id":"0xaf88a635f182217a"},
-{"pid":27443,"tid":27477,"ts":326459840581,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1312,"tdur":31,"tts":532122},
-{"pid":27443,"tid":27477,"ts":326459841923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":532244,"id":"0xaf88a63bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459841954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":214,"tts":532244},
-{"pid":27443,"tid":27477,"ts":326459841954,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":214,"tdur":214,"tts":532244},
-{"pid":27443,"tid":27477,"ts":326459841985,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":532275},
-{"pid":27443,"tid":27477,"ts":326459841985,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":532275},
-{"pid":27443,"tid":27477,"ts":326459842015,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":532305},
-{"pid":27443,"tid":27477,"ts":326459842015,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":532305},
-{"pid":27443,"tid":27477,"ts":326459842137,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":532427},
-{"pid":27443,"tid":27477,"ts":326459842137,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":532427},
-{"pid":27443,"tid":27477,"ts":326459842168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":532458,"id":"0xaf88a634f182217a"},
-{"pid":27443,"tid":27477,"ts":326459842198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":153,"tts":532488},
-{"pid":27443,"tid":27477,"ts":326459842198,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":153,"tts":532488},
-{"pid":27443,"tid":27477,"ts":326459842198,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":113},"tts":532488},
-{"pid":27443,"tid":27477,"ts":326459842290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":532580,"id":"0xaf88a8cff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459842290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":532580,"id":"0xaf88a669f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459842320,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":532641},
-{"pid":27443,"tid":27477,"ts":326459842351,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":532641,"id":"0xaf88a635f182217a"},
-{"pid":27443,"tid":27477,"ts":326459842381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":5158,"tdur":1953,"tts":532672},
-{"pid":27443,"tid":27477,"ts":326459842381,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":5128,"tdur":1922,"tts":532672},
-{"pid":27443,"tid":27477,"ts":326459842381,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":532672},
-{"pid":27443,"tid":27477,"ts":326459842412,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2747,"tdur":1435,"tts":532702},
-{"pid":27443,"tid":27477,"ts":326459842412,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":112},"dur":1099,"tdur":885,"tts":532702},
-{"pid":27443,"tid":27477,"ts":326459842442,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":112},"dur":458,"tdur":274,"tts":532733},
-{"pid":27443,"tid":27477,"ts":326459842900,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":112},"dur":92,"tdur":61,"tts":533007},
-{"pid":27443,"tid":27477,"ts":326459842992,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":112},"tts":533068},
-{"pid":27443,"tid":27477,"ts":326459843114,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":533190},
-{"pid":27443,"tid":27477,"ts":326459843144,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":533221},
-{"pid":27443,"tid":27477,"ts":326459843144,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":533221},
-{"pid":27443,"tid":27477,"ts":326459843144,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":533221},
-{"pid":27443,"tid":27477,"ts":326459843175,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":533251,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459843236,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":533313},
-{"pid":27443,"tid":27477,"ts":326459843480,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":533587},
-{"pid":27443,"tid":27477,"ts":326459843511,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1373,"tdur":275,"tts":533587},
-{"pid":27443,"tid":27477,"ts":326459843511,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":533618},
-{"pid":27443,"tid":27477,"ts":326459843541,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1282,"tdur":183,"tts":533618},
-{"pid":27443,"tid":27477,"ts":326459843633,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12726},"dur":0,"tdur":0,"tts":533709},
-{"pid":27443,"tid":27477,"ts":326459843663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":533740,"id":"0xaf88aa1cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459844884,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":533862,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459844914,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":533892,"id":"0x30000005f"},
-{"pid":27443,"tid":27477,"ts":326459844914,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":184,"tdur":184,"tts":533892},
-{"pid":27443,"tid":27477,"ts":326459845037,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":534014,"id":"0xaf88aa1df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459845098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":534076,"id":"0xaf88a8c8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459845128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":534106,"id":"0xaf88a66bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459845159,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":2350,"tdur":457,"tts":534137},
-{"pid":27443,"tid":27477,"ts":326459845159,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":2350,"tdur":457,"tts":534137},
-{"pid":27443,"tid":27477,"ts":326459845159,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":396,"tdur":122,"tts":534137},
-{"pid":27443,"tid":27477,"ts":326459845555,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":534259},
-{"pid":27443,"tid":27477,"ts":326459845586,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":534289},
-{"pid":27443,"tid":27477,"ts":326459845616,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":4},"dur":184,"tdur":183,"tts":534320},
-{"pid":27443,"tid":27477,"ts":326459845677,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":534381},
-{"pid":27443,"tid":27477,"ts":326459845677,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":534381,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459845708,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":534411},
-{"pid":27443,"tid":27477,"ts":326459845739,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":7,"num_edges":4},"dur":30,"tdur":30,"tts":534442},
-{"pid":27443,"tid":27477,"ts":326459845800,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":534503,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459847478,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":534564,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459847478,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":534564,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459847539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":534625,"id":"0xaf88a636f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847539,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":534625},
-{"pid":27443,"tid":27477,"ts":326459847570,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":534655},
-{"pid":27443,"tid":27477,"ts":326459847570,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":534655,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459847570,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":534655},
-{"pid":27443,"tid":27477,"ts":326459847600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":534686,"id":"0xaf88a631f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":534716,"id":"0xaf88a637f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847631,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":534716},
-{"pid":27443,"tid":27477,"ts":326459847631,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":534716},
-{"pid":27443,"tid":27477,"ts":326459847661,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":534747,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459847661,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":534747},
-{"pid":27443,"tid":27477,"ts":326459847692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":534777,"id":"0xaf88a632f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":534777,"id":"0xaf88a630f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847722,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"ScheduleCheckForCompletedCopyOperationsWithLockAcquired"},"dur":31,"tdur":31,"tts":534808},
-{"pid":27443,"tid":27477,"ts":326459847722,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedCopyOperations","args":{"wait_if_needed":false},"dur":31,"tdur":31,"tts":534808},
-{"pid":27443,"tid":27477,"ts":326459847753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":534839,"id":"0xaf88a631f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847783,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":534869},
-{"pid":27443,"tid":27477,"ts":326459847783,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":534869},
-{"pid":27443,"tid":27477,"ts":326459847783,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":534869},
-{"pid":27443,"tid":27477,"ts":326459847783,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":534869},
-{"pid":27443,"tid":27477,"ts":326459847814,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":534900},
-{"pid":27443,"tid":27477,"ts":326459847814,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":534900},
-{"pid":27443,"tid":27477,"ts":326459847905,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":534991},
-{"pid":27443,"tid":27477,"ts":326459847905,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":534991},
-{"pid":27443,"tid":27477,"ts":326459847936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":535022,"id":"0xaf88a632f182217a"},
-{"pid":27443,"tid":27477,"ts":326459847936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":535022},
-{"pid":27443,"tid":27477,"ts":326459847936,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":535022},
-{"pid":27443,"tid":27477,"ts":326459847967,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":535052},
-{"pid":27443,"tid":27477,"ts":326459847967,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":535052},
-{"pid":27443,"tid":27477,"ts":326459847967,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":535052},
-{"pid":27443,"tid":27477,"ts":326459847997,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":535083},
-{"pid":27443,"tid":27477,"ts":326459848028,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":535113},
-{"pid":27443,"tid":27477,"ts":326459848058,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":535144},
-{"pid":27443,"tid":27477,"ts":326459850103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":535174,"id":"0xaf88a633f182217a"},
-{"pid":27443,"tid":27477,"ts":326459850133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":62,"tdur":61,"tts":535205},
-{"pid":27443,"tid":27477,"ts":326459850164,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":535235},
-{"pid":27443,"tid":27477,"ts":326459850164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":535266,"id":"0xaf88a8c9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459852178,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459852},"tts":535357,"id":"0xaf88a638f182217a"},
-{"pid":27443,"tid":27477,"ts":326459852178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":535357},
-{"pid":27443,"tid":27477,"ts":326459855444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":535418,"id":"0xaf88a6ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326459855444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":123,"tts":535418},
-{"pid":27443,"tid":27477,"ts":326459855444,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":123,"tts":535418},
-{"pid":27443,"tid":27477,"ts":326459855475,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":535449,"id":"0x300000061"},
-{"pid":27443,"tid":27477,"ts":326459855505,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":535479},
-{"pid":27443,"tid":27477,"ts":326459855505,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":535479,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459855536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":535510,"id":"0xaf88a8caf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459855566,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":535541,"id":"0xaf88a6cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326459855597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":535571},
-{"pid":27443,"tid":27477,"ts":326459855597,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459851459.0,"frame_time_us":326459852048.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":91,"tts":535602},
-{"pid":27443,"tid":27477,"ts":326459855627,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459851459.0,"frame_time_us":326459852048.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":91,"tts":535602},
-{"pid":27443,"tid":27477,"ts":326459855688,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459868714},"dur":31,"tdur":30,"tts":535663},
-{"pid":27443,"tid":27477,"ts":326459855719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":535693,"id":"0xaf88a6cef182217a"},
-{"pid":27443,"tid":27477,"ts":326459858282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":535785,"id":"0xaf88a6cff182217a"},
-{"pid":27443,"tid":27477,"ts":326459858313,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":214,"tdur":183,"tts":535815},
-{"pid":27443,"tid":27477,"ts":326459858313,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":4},"dur":153,"tdur":122,"tts":535815},
-{"pid":27443,"tid":27477,"ts":326459858343,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":535815},
-{"pid":27443,"tid":27477,"ts":326459858404,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":535876},
-{"pid":27443,"tid":27477,"ts":326459858404,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":535876},
-{"pid":27443,"tid":27477,"ts":326459858435,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":535907},
-{"pid":27443,"tid":27477,"ts":326459858466,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":61,"tdur":61,"tts":535937},
-{"pid":27443,"tid":27477,"ts":326459858496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":535968,"id":"0xaf88aa1ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459859045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":536151,"id":"0xaf88a6c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459859045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":536151},
-{"pid":27443,"tid":27477,"ts":326459859045,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":536151},
-{"pid":27443,"tid":27477,"ts":326459859076,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":536181,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459859076,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":536181},
-{"pid":27443,"tid":27477,"ts":326459863715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":536242,"id":"0xaf88a6c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459863715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1251,"tdur":1191,"tts":536242},
-{"pid":27443,"tid":27477,"ts":326459863746,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1220,"tdur":1160,"tts":536273},
-{"pid":27443,"tid":27477,"ts":326459863746,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":536273},
-{"pid":27443,"tid":27477,"ts":326459863776,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1190,"tdur":1129,"tts":536304},
-{"pid":27443,"tid":27477,"ts":326459863776,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1190,"tdur":1129,"tts":536304},
-{"pid":27443,"tid":27477,"ts":326459863807,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":536334},
-{"pid":27443,"tid":27477,"ts":326459863807,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":536334},
-{"pid":27443,"tid":27477,"ts":326459863807,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":536334,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459863837,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":536365},
-{"pid":27443,"tid":27477,"ts":326459863868,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":536395},
-{"pid":27443,"tid":27477,"ts":326459863990,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":946,"tdur":885,"tts":536517},
-{"pid":27443,"tid":27477,"ts":326459863990,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":113},"dur":366,"tdur":305,"tts":536517},
-{"pid":27443,"tid":27477,"ts":326459864356,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":113},"dur":30,"tdur":31,"tts":536822},
-{"pid":27443,"tid":27477,"ts":326459864417,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":113},"tts":536883},
-{"pid":27443,"tid":27477,"ts":326459864539,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":537005},
-{"pid":27443,"tid":27477,"ts":326459864539,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":537005},
-{"pid":27443,"tid":27477,"ts":326459864539,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":537005},
-{"pid":27443,"tid":27477,"ts":326459864570,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":537036},
-{"pid":27443,"tid":27477,"ts":326459864722,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":537189},
-{"pid":27443,"tid":27477,"ts":326459864753,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":537219},
-{"pid":27443,"tid":27477,"ts":326459864753,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":4},"dur":152,"tdur":153,"tts":537219},
-{"pid":27443,"tid":27477,"ts":326459864783,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":537250},
-{"pid":27443,"tid":27477,"ts":326459864783,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":537250,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459864814,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":537280},
-{"pid":27443,"tid":27477,"ts":326459864814,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":7,"num_edges":4},"dur":30,"tdur":31,"tts":537280},
-{"pid":27443,"tid":27477,"ts":326459864875,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":537341,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459864905,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":537372,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459864905,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":537402,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459865272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":537494,"id":"0xaf88a6caf182217a"},
-{"pid":27443,"tid":27477,"ts":326459865272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":537494},
-{"pid":27443,"tid":27471,"ts":326459851476,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7bdf9280"},"tileResolution":"HIGH_RESOLUTION"}},"tts":352205},
-{"pid":27443,"tid":27471,"ts":326459851507,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":352235,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326459852056,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":352784},
-{"pid":27443,"tid":27471,"ts":326459852087,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":6775,"tdur":1099,"tts":352784},
-{"pid":27443,"tid":27469,"ts":326459852331,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":295040},
-{"pid":27443,"tid":27471,"ts":326459856207,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":2655,"tdur":1068,"tts":352815},
-{"pid":27443,"tid":27471,"ts":326459856238,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7bdf91e8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":352846},
-{"pid":27443,"tid":27471,"ts":326459856543,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":61,"tts":352876},
-{"pid":27443,"tid":27471,"ts":326459856634,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":352937},
-{"pid":27443,"tid":27471,"ts":326459856665,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":106,"tileId":{"id_ref":"0x7bdf91e8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":352968},
-{"pid":27443,"tid":27471,"ts":326459856695,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":352998,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326459858160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":353731,"id":"0xaf88a6cff182217a"},
-{"pid":27443,"tid":27471,"ts":326459858862,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":353883},
-{"pid":27443,"tid":27471,"ts":326459858893,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":244,"tdur":61,"tts":353914},
-{"pid":27443,"tid":27471,"ts":326459858893,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":244,"tdur":61,"tts":353914},
-{"pid":27443,"tid":27471,"ts":326459858923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":353944,"id":"0xaf88a6c8f182217a"},
-{"pid":27443,"tid":27469,"ts":326459865119,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":295132},
-{"pid":27443,"tid":27469,"ts":326459865149,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":295162},
-{"pid":27443,"tid":27469,"ts":326459865149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295162,"id":"0xaf88a6caf182217a"},
-{"pid":27443,"tid":27469,"ts":326459865180,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":295193},
-{"pid":27443,"tid":27469,"ts":326459865211,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":295223},
-{"pid":27443,"tid":27469,"ts":326459865211,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295223,"id":"0xaf88a6cbf182217a"},
-{"pid":27443,"tid":27469,"ts":326459865211,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":295223},
-{"pid":27443,"tid":27469,"ts":326459865241,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":295254},
-{"pid":27443,"tid":27469,"ts":326459865241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295254,"id":"0xaf88a6c4f182217a"},
-{"pid":27443,"tid":27496,"ts":326459884957,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1252,"tdur":519,"tts":60552},
-{"pid":27443,"tid":27496,"ts":326459884988,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60582},
-{"pid":27443,"tid":27469,"ts":326459886025,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":550,"tdur":92,"tts":295284},
-{"pid":27443,"tid":27469,"ts":326459886056,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":519,"tdur":61,"tts":295315},
-{"pid":27443,"tid":27469,"ts":326459886056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295315,"id":"0xaf88a6ddf182217a"},
-{"pid":27443,"tid":27496,"ts":326459886209,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":61071},
-{"pid":27443,"tid":27469,"ts":326459886575,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":366,"tdur":122,"tts":295376},
-{"pid":27443,"tid":27469,"ts":326459886575,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":366,"tdur":122,"tts":295376},
-{"pid":27443,"tid":27469,"ts":326459886605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295406,"id":"0xaf88a6dff182217a"},
-{"pid":27443,"tid":27469,"ts":326459886941,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":244,"tdur":122,"tts":295498},
-{"pid":27443,"tid":27469,"ts":326459886972,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":61,"tts":295528},
-{"pid":27443,"tid":27469,"ts":326459886972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295528,"id":"0xaf88a6d9f182217a"},
-{"pid":27443,"tid":27471,"ts":326459898386,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":354036},
-{"pid":27443,"tid":27471,"ts":326459898417,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":354066},
-{"pid":27443,"tid":27471,"ts":326459898417,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354066,"id":"0xaf88a6d6f182217a"},
-{"pid":27443,"tid":27471,"ts":326459898447,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":354097},
-{"pid":27443,"tid":27471,"ts":326459898478,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":354127},
-{"pid":27443,"tid":27471,"ts":326459898478,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354127,"id":"0xaf88a6d7f182217a"},
-{"pid":27443,"tid":27471,"ts":326459898478,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":354127},
-{"pid":27443,"tid":27471,"ts":326459898508,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":354158},
-{"pid":27443,"tid":27471,"ts":326459898508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354158,"id":"0xaf88a6d0f182217a"},
-{"pid":27443,"tid":27546,"ts":326459901255,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":4059,"tdur":1251,"tts":50450},
-{"pid":27443,"tid":27546,"ts":326459901255,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":50480},
-{"pid":27443,"tid":27546,"ts":326459905284,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":51670},
-{"pid":27443,"tid":27471,"ts":326459917126,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":213,"tdur":92,"tts":354188},
-{"pid":27443,"tid":27471,"ts":326459917156,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":153,"tdur":30,"tts":354219},
-{"pid":27443,"tid":27471,"ts":326459917156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354219,"id":"0xaf88a6eaf182217a"},
-{"pid":27443,"tid":27469,"ts":326459917217,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":214,"tdur":91,"tts":295681},
-{"pid":27443,"tid":27469,"ts":326459917217,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":61,"tts":295681},
-{"pid":27443,"tid":27471,"ts":326459917339,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":354280},
-{"pid":27443,"tid":27471,"ts":326459917339,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":354280},
-{"pid":27443,"tid":27471,"ts":326459917339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354280,"id":"0xaf88a6ebf182217a"},
-{"pid":27443,"tid":27469,"ts":326459917400,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295742,"id":"0xaf88a6e4f182217a"},
-{"pid":27443,"tid":27498,"ts":326459931837,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1098,"tdur":1099,"tts":47001},
-{"pid":27443,"tid":27498,"ts":326459931867,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":47031},
-{"pid":27443,"tid":27498,"ts":326459932905,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":48069},
-{"pid":27443,"tid":27496,"ts":326459939741,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":641,"tdur":641,"tts":61162},
-{"pid":27443,"tid":27496,"ts":326459939741,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":61162},
-{"pid":27443,"tid":27496,"ts":326459940352,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":61773},
-{"pid":27443,"tid":27459,"ts":326459864051,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6914542},
-{"pid":27443,"tid":27459,"ts":326459864142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459842},"tts":6914634,"id":"0xaf88a66df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459864142,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1313,"tdur":0,"tts":6914634},
-{"pid":27443,"tid":27459,"ts":326459865485,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6914665},
-{"pid":27443,"tid":27459,"ts":326459865516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6914695,"id":"0xaf88a664f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865546,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6914726,"id":"0xaf88a66af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865546,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6914726},
-{"pid":27443,"tid":27459,"ts":326459865577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6914756,"id":"0xaf88a665f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865607,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6914787,"id":"0xaf88a820f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459865607,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":0,"tdur":0,"tts":6914787},
-{"pid":27443,"tid":27459,"ts":326459865638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6914817,"id":"0xaf88a66bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":30,"tts":6914848},
-{"pid":27443,"tid":27459,"ts":326459865668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6914848,"id":"0xaf88a8c8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459865668,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":6914848},
-{"pid":27443,"tid":27459,"ts":326459865699,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6914878},
-{"pid":27443,"tid":27459,"ts":326459865729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6914909,"id":"0xaf88a665f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6914939},
-{"pid":27443,"tid":27459,"ts":326459865760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6914939,"id":"0xaf88a666f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6914970,"id":"0xaf88a8c9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459865790,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6914970},
-{"pid":27443,"tid":27459,"ts":326459865790,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":6914970},
-{"pid":27443,"tid":27459,"ts":326459865851,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6915031,"id":"0xaf88a666f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1160,"tts":6915031},
-{"pid":27443,"tid":27459,"ts":326459865882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6915061,"id":"0xaf88a667f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459865882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6915061,"id":"0xaf88a8caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459865882,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1282,"tdur":1099,"tts":6915061},
-{"pid":27443,"tid":27459,"ts":326459865943,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1221,"tdur":1007,"tts":6915153},
-{"pid":27443,"tid":27459,"ts":326459865974,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6915153,"id":"0x300000061"},
-{"pid":27443,"tid":27459,"ts":326459866004,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":6915183},
-{"pid":27443,"tid":27459,"ts":326459866035,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":854,"tdur":854,"tts":6915214},{"pid":27443,"tid":27459,"ts":326459866096,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6915275},
-{"pid":27443,"tid":27459,"ts":326459866126,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6915305},
-{"pid":27443,"tid":27459,"ts":326459866157,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6915336},
-{"pid":27443,"tid":27459,"ts":326459866187,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6915367},
-{"pid":27443,"tid":27459,"ts":326459866218,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6915397},
-{"pid":27443,"tid":27459,"ts":326459866218,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6915428},
-{"pid":27443,"tid":27459,"ts":326459866248,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6915428},
-{"pid":27443,"tid":27459,"ts":326459866279,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":549,"tts":6915489},
-{"pid":27443,"tid":27459,"ts":326459866431,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":397,"tts":6915641},
-{"pid":27443,"tid":27459,"ts":326459866462,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6915641},
-{"pid":27443,"tid":27459,"ts":326459866767,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":70,"frame":"0x78c60000"}},"tts":6915946,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459866798,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":6915977},
-{"pid":27443,"tid":27459,"ts":326459866798,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6915977,"id":"0xaf88a6c0f182217a"},
-{"pid":27443,"tid":27459,"ts":326459866828,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6916007},
-{"pid":27443,"tid":27459,"ts":326459866920,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":31,"tts":6916099},
-{"pid":27443,"tid":27459,"ts":326459866920,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6916099,"id":"0xaf88aa1ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459867225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6916221,"id":"0xaf88a667f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459867225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6916221},
-{"pid":27443,"tid":27459,"ts":326459873085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6916343,"id":"0xaf88a660f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459873085,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":6916343},
-{"pid":27443,"tid":27459,"ts":326459873115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6916374,"id":"0xaf88a661f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459873146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6916404,"id":"0xaf88a8cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459873146,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":6916404},
-{"pid":27443,"tid":27459,"ts":326459873146,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":6916435},
-{"pid":27443,"tid":27459,"ts":326459873237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6916496,"id":"0xaf88a661f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459873237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":6916496},
-{"pid":27443,"tid":27459,"ts":326459874122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6916587,"id":"0xaf88a662f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459874153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1434,"tdur":1190,"tts":6916618},
-{"pid":27443,"tid":27459,"ts":326459874153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6916618,"id":"0xaf88a663f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459874184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6916648,"id":"0xaf88a8c4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459874184,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1373,"tdur":1130,"tts":6916648},
-{"pid":27443,"tid":27459,"ts":326459874245,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1312,"tdur":1069,"tts":6916709},
-{"pid":27443,"tid":27459,"ts":326459874245,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6916709,"id":"0x300000062"},
-{"pid":27443,"tid":27459,"ts":326459874275,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1099,"tdur":916,"tts":6916740},
-{"pid":27443,"tid":27477,"ts":326459865302,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":537524},
-{"pid":27443,"tid":27477,"ts":326459865302,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":537555,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459865333,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":537555},
-{"pid":27443,"tid":27477,"ts":326459865333,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":537555,"id":"0xaf88a6c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459865363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":537585,"id":"0xaf88a6cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459865363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":537585},
-{"pid":27443,"tid":27477,"ts":326459865394,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":537616},
-{"pid":27443,"tid":27477,"ts":326459865394,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":537616,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459865394,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":537616},
-{"pid":27443,"tid":27477,"ts":326459865424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":537646,"id":"0xaf88a6c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459865455,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":537677,"id":"0xaf88a6c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459865455,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":537677},
-{"pid":27443,"tid":27477,"ts":326459865455,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":537677},
-{"pid":27443,"tid":27477,"ts":326459865455,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":537707,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459865485,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":537707},
-{"pid":27443,"tid":27477,"ts":326459865485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":537707,"id":"0xaf88a6c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459865516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":976,"tdur":977,"tts":537738},
-{"pid":27443,"tid":27477,"ts":326459865516,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":976,"tdur":977,"tts":537738},
-{"pid":27443,"tid":27477,"ts":326459865516,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":122,"tdur":122,"tts":537738},
-{"pid":27443,"tid":27477,"ts":326459865516,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":537768},
-{"pid":27443,"tid":27477,"ts":326459865546,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":537768},
-{"pid":27443,"tid":27477,"ts":326459865577,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":537799},
-{"pid":27443,"tid":27477,"ts":326459865607,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":537830},
-{"pid":27443,"tid":27477,"ts":326459865607,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":537830},
-{"pid":27443,"tid":27477,"ts":326459865638,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":61,"tts":537860},
-{"pid":27443,"tid":27477,"ts":326459865638,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":537860},
-{"pid":27443,"tid":27477,"ts":326459865729,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":537952},
-{"pid":27443,"tid":27477,"ts":326459865729,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":537952},
-{"pid":27443,"tid":27477,"ts":326459865729,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":733,"tdur":732,"tts":537952},
-{"pid":27443,"tid":27477,"ts":326459865729,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":537982,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459865821,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":538043},
-{"pid":27443,"tid":27477,"ts":326459865851,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538074},
-{"pid":27443,"tid":27477,"ts":326459865851,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":538104},
-{"pid":27443,"tid":27477,"ts":326459865882,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538104},
-{"pid":27443,"tid":27477,"ts":326459865913,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538135},
-{"pid":27443,"tid":27477,"ts":326459865913,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":538135},
-{"pid":27443,"tid":27477,"ts":326459865943,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538165},
-{"pid":27443,"tid":27477,"ts":326459865943,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":538196},
-{"pid":27443,"tid":27477,"ts":326459865974,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":538196},
-{"pid":27443,"tid":27477,"ts":326459866004,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538226},
-{"pid":27443,"tid":27477,"ts":326459866004,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":538226},
-{"pid":27443,"tid":27477,"ts":326459866035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538257},
-{"pid":27443,"tid":27477,"ts":326459866035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":538257},
-{"pid":27443,"tid":27477,"ts":326459866065,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538287},
-{"pid":27443,"tid":27477,"ts":326459866096,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538318},
-{"pid":27443,"tid":27477,"ts":326459866096,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538318},
-{"pid":27443,"tid":27477,"ts":326459866126,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538348},
-{"pid":27443,"tid":27477,"ts":326459866126,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":538348},
-{"pid":27443,"tid":27477,"ts":326459866157,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538379},
-{"pid":27443,"tid":27477,"ts":326459866157,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":538379},
-{"pid":27443,"tid":27477,"ts":326459866218,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":538440},
-{"pid":27443,"tid":27477,"ts":326459866248,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538470},
-{"pid":27443,"tid":27477,"ts":326459866279,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538501},
-{"pid":27443,"tid":27477,"ts":326459866279,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":538501},
-{"pid":27443,"tid":27477,"ts":326459866309,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538532},
-{"pid":27443,"tid":27477,"ts":326459866340,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538562},
-{"pid":27443,"tid":27477,"ts":326459866340,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":538562},
-{"pid":27443,"tid":27477,"ts":326459866370,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":538593},
-{"pid":27443,"tid":27477,"ts":326459866401,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":538623},
-{"pid":27443,"tid":27477,"ts":326459866431,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":538654},
-{"pid":27443,"tid":27477,"ts":326459866431,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":538654},
-{"pid":27443,"tid":27477,"ts":326459866462,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":538684},
-{"pid":27443,"tid":27477,"ts":326459866492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":538715,"id":"0xaf88a6c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459866523,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":538745,"id":"0xaf88a6c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459866523,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":538745},
-{"pid":27443,"tid":27477,"ts":326459866523,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":538745},
-{"pid":27443,"tid":27477,"ts":326459866553,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":538776},
-{"pid":27443,"tid":27477,"ts":326459866553,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":538776},
-{"pid":27443,"tid":27477,"ts":326459866553,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":538776},
-{"pid":27443,"tid":27477,"ts":326459866584,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":538806},
-{"pid":27443,"tid":27477,"ts":326459866614,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":538837},
-{"pid":27443,"tid":27477,"ts":326459866614,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":538837},
-{"pid":27443,"tid":27477,"ts":326459866645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":538867,"id":"0xaf88a6c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459866676,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6775,"tdur":1434,"tts":538898},
-{"pid":27443,"tid":27477,"ts":326459866676,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6745,"tdur":1404,"tts":538898},
-{"pid":27443,"tid":27477,"ts":326459866676,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":538898},
-{"pid":27443,"tid":27477,"ts":326459866706,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6715,"tdur":1374,"tts":538928},
-{"pid":27443,"tid":27477,"ts":326459866706,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":113},"dur":1038,"tdur":794,"tts":538928},
-{"pid":27443,"tid":27477,"ts":326459866737,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":113},"dur":213,"tdur":213,"tts":538959},
-{"pid":27443,"tid":27477,"ts":326459866950,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":113},"dur":31,"tdur":31,"tts":539172},
-{"pid":27443,"tid":27477,"ts":326459866981,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":113},"tts":539203},
-{"pid":27443,"tid":27477,"ts":326459867103,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":539325},
-{"pid":27443,"tid":27477,"ts":326459867103,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":539325},
-{"pid":27443,"tid":27477,"ts":326459867377,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":62,"tdur":61,"tts":539356},
-{"pid":27443,"tid":27477,"ts":326459867377,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":539356},
-{"pid":27443,"tid":27477,"ts":326459867408,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":539386},
-{"pid":27443,"tid":27477,"ts":326459867408,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":4}},"tts":539386,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459867469,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":539447},
-{"pid":27443,"tid":27477,"ts":326459867744,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":539722},
-{"pid":27443,"tid":27477,"ts":326459867774,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":733,"tdur":275,"tts":539752},
-{"pid":27443,"tid":27477,"ts":326459867774,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":539752},
-{"pid":27443,"tid":27477,"ts":326459867805,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":183,"tts":539783},
-{"pid":27443,"tid":27477,"ts":326459867866,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":30,"tdur":30,"tts":539844},
-{"pid":27443,"tid":27477,"ts":326459867896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":539905,"id":"0xaf88aa18f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459868476,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":539996,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459868507,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":540027,"id":"0x300000060"},
-{"pid":27443,"tid":27477,"ts":326459868537,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":540058},
-{"pid":27443,"tid":27477,"ts":326459868629,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":540149,"id":"0xaf88aa19f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459868720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":540241,"id":"0xaf88a8cbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459868720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":540241,"id":"0xaf88a660f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459873451,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459868},"tts":540332,"id":"0xaf88a6cef182217a"},
-{"pid":27443,"tid":27477,"ts":326459873451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":540332},
-{"pid":27443,"tid":27477,"ts":326459873482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":540363,"id":"0xaf88a6c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459873482,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":213,"tdur":91,"tts":540363},
-{"pid":27443,"tid":27477,"ts":326459873482,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":213,"tdur":61,"tts":540393},
-{"pid":27443,"tid":27477,"ts":326459873482,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":540393},
-{"pid":27443,"tid":27477,"ts":326459873695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":540454,"id":"0xaf88a6c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459873695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":152,"tts":540485},
-{"pid":27443,"tid":27477,"ts":326459873726,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":152,"tts":540485},
-{"pid":27443,"tid":27477,"ts":326459873726,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":540515,"id":"0x300000062"},
-{"pid":27443,"tid":27477,"ts":326459873756,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":540515},
-{"pid":27443,"tid":27477,"ts":326459873787,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":540546,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459873817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":540576,"id":"0xaf88a8c4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459873848,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":540607,"id":"0xaf88a662f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459873909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":540668,"id":"0xaf88a6c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459873909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":540668},
-{"pid":27443,"tid":27477,"ts":326459873939,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459869751.0,"frame_time_us":326459868729.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":123,"tts":540698},
-{"pid":27443,"tid":27477,"ts":326459873970,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459869751.0,"frame_time_us":326459868729.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":91,"tdur":92,"tts":540729},
-{"pid":27443,"tid":27477,"ts":326459874000,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459885395},"dur":61,"tdur":62,"tts":540759},
-{"pid":27443,"tid":27477,"ts":326459874031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":540790,"id":"0xaf88a6c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459882394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":540882,"id":"0xaf88a6dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326459882394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":540882},
-{"pid":27443,"tid":27477,"ts":326459882424,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":153,"tts":540912},
-{"pid":27443,"tid":27477,"ts":326459882424,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":114},"tts":540943},
-{"pid":27443,"tid":27477,"ts":326459882516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":541004,"id":"0xaf88a8c5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459882516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":541004,"id":"0xaf88a67cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459882546,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":541034},
-{"pid":27443,"tid":27477,"ts":326459882577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":541065,"id":"0xaf88a8c6f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326459867042,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290309,"id":"0xaf88aa1ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459867042,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":30,"tts":290340},
-{"pid":27443,"tid":27466,"ts":326459867072,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290340,"id":"0xccc47f02"},
-{"pid":27443,"tid":27466,"ts":326459867988,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290462,"id":"0xaf88aa18f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459867988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":290462},
-{"pid":27443,"tid":27466,"ts":326459867988,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290492,"id":"0xccc48006"},
-{"pid":27443,"tid":27466,"ts":326459868202,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":290584},
-{"pid":27443,"tid":27466,"ts":326459868202,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":290584},
-{"pid":27443,"tid":27466,"ts":326459868232,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290614,"id":"0xc4c1700a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459868690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":290706,"id":"0xaf88aa19f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459868720,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":290737},
-{"pid":27443,"tid":27466,"ts":326459868720,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290737,"id":"0xccc48102"},
-{"pid":27443,"tid":27466,"ts":326459872505,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":183,"tts":290859},
-{"pid":27443,"tid":27466,"ts":326459872566,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":61,"tts":290889},
-{"pid":27443,"tid":27466,"ts":326459872566,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290889,"id":"0xba450f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459872596,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":62,"tdur":30,"tts":290920},
-{"pid":27443,"tid":27466,"ts":326459872627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":290950,"id":"0xaf88a6c1f182217a"},
-{"pid":27443,"tid":27466,"ts":326459872658,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":30,"tts":290981},
-{"pid":27443,"tid":27466,"ts":326459872688,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":290981,"id":"0xba451002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459872719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291011,"id":"0xaf88a6c2f182217a"},
-{"pid":27443,"tid":27466,"ts":326459875557,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":291103,"id":"0xaf88aa1af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459875557,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":291103},
-{"pid":27443,"tid":27466,"ts":326459875587,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":291133,"id":"0xccc48302"},
-{"pid":27443,"tid":27466,"ts":326459882271,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":91,"tts":291225},
-{"pid":27443,"tid":27466,"ts":326459882302,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":291255},
-{"pid":27443,"tid":27466,"ts":326459882302,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":291255,"id":"0xba451102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459882332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291286,"id":"0xaf88a6dcf182217a"},
-{"pid":27443,"tid":27466,"ts":326459889932,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":184,"tts":291377},
-{"pid":27443,"tid":27466,"ts":326459889993,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":183,"tdur":122,"tts":291439},
-{"pid":27443,"tid":27466,"ts":326459889993,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":291439,"id":"0xba451302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459890115,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":291500},
-{"pid":27443,"tid":27466,"ts":326459890146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291530,"id":"0xaf88a6daf182217a"},
-{"pid":27443,"tid":27466,"ts":326459892038,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":291622},
-{"pid":27443,"tid":27466,"ts":326459892068,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":61,"tts":291652},
-{"pid":27443,"tid":27466,"ts":326459892068,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":291652,"id":"0xba451402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459892099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":291683,"id":"0xaf88a6dbf182217a"},
-{"pid":27443,"tid":27466,"ts":326459899088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":291774,"id":"0xaf88aa1bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459899088,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":291774},
-{"pid":27443,"tid":27466,"ts":326459899119,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":291805,"id":"0xccc48502"},
-{"pid":27443,"tid":27466,"ts":326459901621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":291896,"id":"0xaf88aa14f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459901621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":291896},
-{"pid":27443,"tid":27466,"ts":326459901652,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":291927,"id":"0xccc48606"},
-{"pid":27443,"tid":27466,"ts":326459901957,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":122,"tdur":92,"tts":292018},
-{"pid":27443,"tid":27466,"ts":326459901988,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":91,"tdur":61,"tts":292049},
-{"pid":27443,"tid":27466,"ts":326459901988,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":292049,"id":"0xc4c1730a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459903025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":292171,"id":"0xaf88aa15f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459903025,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":292171},
-{"pid":27443,"tid":27466,"ts":326459903056,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":292202,"id":"0xccc48702"},
-{"pid":27443,"tid":27466,"ts":326459906291,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":292293},
-{"pid":27443,"tid":27466,"ts":326459906321,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":292324},
-{"pid":27443,"tid":27466,"ts":326459906321,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":292324,"id":"0xba451502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459906352,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":292354},
-{"pid":27443,"tid":27466,"ts":326459906383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292385,"id":"0xaf88a6edf182217a"},
-{"pid":27443,"tid":27466,"ts":326459907237,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":292476},
-{"pid":27443,"tid":27466,"ts":326459907268,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":292507},
-{"pid":27443,"tid":27466,"ts":326459907298,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":292537,"id":"0xba451602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459907298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292537,"id":"0xaf88a6eef182217a"},
-{"pid":27443,"tid":27466,"ts":326459909831,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":292629},
-{"pid":27443,"tid":27466,"ts":326459909862,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":292659},
-{"pid":27443,"tid":27466,"ts":326459909862,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":292659,"id":"0xba451702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459909892,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292690,"id":"0xaf88a6e8f182217a"},
-{"pid":27443,"tid":27466,"ts":326459921338,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":184,"tts":292781},
-{"pid":27443,"tid":27466,"ts":326459921399,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":244,"tdur":92,"tts":292842},
-{"pid":27443,"tid":27466,"ts":326459921399,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":31,"tts":292842},
-{"pid":27443,"tid":27459,"ts":326459874306,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1068,"tdur":855,"tts":6916770},
-{"pid":27443,"tid":27459,"ts":326459874367,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6916831},
-{"pid":27443,"tid":27459,"ts":326459874428,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6916893},
-{"pid":27443,"tid":27459,"ts":326459874458,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":92,"tdur":0,"tts":6916923},
-{"pid":27443,"tid":27459,"ts":326459874458,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6916923},
-{"pid":27443,"tid":27459,"ts":326459874580,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6916954},
-{"pid":27443,"tid":27459,"ts":326459874611,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6916984},
-{"pid":27443,"tid":27459,"ts":326459874641,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6917015},
-{"pid":27443,"tid":27459,"ts":326459874672,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6917045},
-{"pid":27443,"tid":27459,"ts":326459874702,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":549,"tts":6917076},
-{"pid":27443,"tid":27459,"ts":326459874855,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":367,"tts":6917228},
-{"pid":27443,"tid":27459,"ts":326459874885,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6917259},
-{"pid":27443,"tid":27459,"ts":326459875252,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":71,"frame":"0x78c60000"}},"tts":6917533,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459875282,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6917595},
-{"pid":27443,"tid":27459,"ts":326459875374,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":152,"tdur":91,"tts":6917656},
-{"pid":27443,"tid":27459,"ts":326459875404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6917686,"id":"0xaf88aa1af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459875618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6917808,"id":"0xaf88a663f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459875618,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":31,"tts":6917808},
-{"pid":27443,"tid":27459,"ts":326459875862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6917839},
-{"pid":27443,"tid":27459,"ts":326459882638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6917900,"id":"0xaf88a67cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459882638,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":14985,"tdur":10591,"tts":6917930},
-{"pid":27443,"tid":27459,"ts":326459882668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6917930,"id":"0xaf88a67df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459882699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6917961,"id":"0xaf88a8c5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459882699,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":14924,"tdur":10560,"tts":6917961},
-{"pid":27443,"tid":27459,"ts":326459882699,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":114},"tts":6917961},
-{"pid":27443,"tid":27459,"ts":326459882729,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6917991},
-{"pid":27443,"tid":27459,"ts":326459882760,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":11292,"tdur":7325,"tts":6918022},
-{"pid":27443,"tid":27459,"ts":326459882790,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6918052},
-{"pid":27443,"tid":27459,"ts":326459882821,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":70,"frame":"0x78c60000"}},"dur":11018,"tdur":7050,"tts":6918083},
-{"pid":27443,"tid":27459,"ts":326459882882,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":10926,"tdur":6929,"tts":6918174},
-{"pid":27443,"tid":27459,"ts":326459882912,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6918174},
-{"pid":27443,"tid":27459,"ts":326459884438,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6919395},
-{"pid":27443,"tid":27459,"ts":326459884560,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6919517},
-{"pid":27443,"tid":27459,"ts":326459884621,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6919578},
-{"pid":27443,"tid":27459,"ts":326459887216,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6919792},
-{"pid":27443,"tid":27459,"ts":326459887216,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6919822},
-{"pid":27443,"tid":27459,"ts":326459887429,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6920036},
-{"pid":27443,"tid":27459,"ts":326459893778,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6925103},
-{"pid":27443,"tid":27459,"ts":326459893869,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":71,"frame":"0x78c60000"}},"dur":153,"tdur":152,"tts":6925164},
-{"pid":27443,"tid":27459,"ts":326459893930,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":92,"tdur":91,"tts":6925225},
-{"pid":27443,"tid":27459,"ts":326459893991,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6925286},
-{"pid":27443,"tid":27459,"ts":326459893991,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6925316},
-{"pid":27443,"tid":27459,"ts":326459894052,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2747,"tdur":2594,"tts":6925347},
-{"pid":27443,"tid":27459,"ts":326459894083,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6925377},
-{"pid":27443,"tid":27459,"ts":326459894113,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6925438},
-{"pid":27443,"tid":27459,"ts":326459894144,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6925438},
-{"pid":27443,"tid":27459,"ts":326459894663,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6925957},
-{"pid":27443,"tid":27459,"ts":326459894693,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6925988},
-{"pid":27443,"tid":27459,"ts":326459894724,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2075,"tdur":1892,"tts":6926049},
-{"pid":27443,"tid":27459,"ts":326459894754,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1862,"tdur":1709,"tts":6926049},
-{"pid":27443,"tid":27459,"ts":326459894754,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":427,"tts":6926049},
-{"pid":27443,"tid":27459,"ts":326459895243,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":6926476},
-{"pid":27443,"tid":27459,"ts":326459895456,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":214,"tdur":122,"tts":6926690},
-{"pid":27443,"tid":27459,"ts":326459895670,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6926812},
-{"pid":27443,"tid":27459,"ts":326459895670,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":946,"tdur":946,"tts":6926812},
-{"pid":27443,"tid":27459,"ts":326459896616,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":6927758},
-{"pid":27443,"tid":27459,"ts":326459896677,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":6927819},
-{"pid":27443,"tid":27459,"ts":326459896799,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":114},"dur":397,"tdur":397,"tts":6927941},
-{"pid":27443,"tid":27459,"ts":326459896799,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":6927941},
-{"pid":27443,"tid":27459,"ts":326459897013,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":30,"tdur":30,"tts":6928155},
-{"pid":27443,"tid":27459,"ts":326459897043,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":31,"tdur":31,"tts":6928185},
-{"pid":27443,"tid":27459,"ts":326459897074,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":0,"tdur":0,"tts":6928216},
-{"pid":27443,"tid":27459,"ts":326459897074,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":30,"tdur":30,"tts":6928216},
-{"pid":27443,"tid":27459,"ts":326459897104,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":0,"tdur":0,"tts":6928246},
-{"pid":27443,"tid":27477,"ts":326459885507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459885},"tts":541126,"id":"0xaf88a6c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459885537,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":366,"tdur":366,"tts":541156},
-{"pid":27443,"tid":27477,"ts":326459885537,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":366,"tdur":366,"tts":541156},
-{"pid":27443,"tid":27477,"ts":326459885568,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":335,"tdur":335,"tts":541187},
-{"pid":27443,"tid":27477,"ts":326459885568,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":335,"tts":541187},
-{"pid":27443,"tid":27477,"ts":326459885568,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":541187},
-{"pid":27443,"tid":27477,"ts":326459885690,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":541309},
-{"pid":27443,"tid":27477,"ts":326459885690,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":541309},
-{"pid":27443,"tid":27477,"ts":326459885720,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":541339},
-{"pid":27443,"tid":27477,"ts":326459885720,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":541339},
-{"pid":27443,"tid":27477,"ts":326459885720,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":541339,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459885781,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":541400},
-{"pid":27443,"tid":27477,"ts":326459885781,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":541400},
-{"pid":27443,"tid":27477,"ts":326459885842,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":541461,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459885873,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":541492,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459885873,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":541492,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459886331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":541645,"id":"0xaf88a6ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326459886331,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":541645},
-{"pid":27443,"tid":27477,"ts":326459886331,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":31,"tts":541675},
-{"pid":27443,"tid":27477,"ts":326459886361,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":541675,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459886361,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":541675},
-{"pid":27443,"tid":27477,"ts":326459886392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":541706,"id":"0xaf88a6def182217a"},
-{"pid":27443,"tid":27477,"ts":326459886422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":541736,"id":"0xaf88a6def182217a"},
-{"pid":27443,"tid":27477,"ts":326459886422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":541736},
-{"pid":27443,"tid":27477,"ts":326459886422,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":541736},
-{"pid":27443,"tid":27477,"ts":326459886422,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":541767},
-{"pid":27443,"tid":27477,"ts":326459886453,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":541767},
-{"pid":27443,"tid":27477,"ts":326459886453,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":541767},
-{"pid":27443,"tid":27477,"ts":326459886453,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":541797},
-{"pid":27443,"tid":27477,"ts":326459886514,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":541828},
-{"pid":27443,"tid":27477,"ts":326459886514,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":541828},
-{"pid":27443,"tid":27477,"ts":326459886697,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":541889,"id":"0xaf88a6dff182217a"},
-{"pid":27443,"tid":27477,"ts":326459886727,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":541919},
-{"pid":27443,"tid":27477,"ts":326459886727,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":541919},
-{"pid":27443,"tid":27477,"ts":326459886758,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":541950,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459886758,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":541950},
-{"pid":27443,"tid":27477,"ts":326459886758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":541950,"id":"0xaf88a6d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459886788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":541980,"id":"0xaf88a6d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459886788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":541980},
-{"pid":27443,"tid":27477,"ts":326459886819,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":91,"tts":542011},
-{"pid":27443,"tid":27477,"ts":326459886819,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":542011},
-{"pid":27443,"tid":27477,"ts":326459886819,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":542011},
-{"pid":27443,"tid":27477,"ts":326459886849,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":31,"tts":542041},
-{"pid":27443,"tid":27477,"ts":326459886849,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":542041},
-{"pid":27443,"tid":27477,"ts":326459886880,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":542072},
-{"pid":27443,"tid":27477,"ts":326459886880,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":542072},
-{"pid":27443,"tid":27477,"ts":326459887094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":542163,"id":"0xaf88a6d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459887094,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":542163},
-{"pid":27443,"tid":27477,"ts":326459887124,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":0,"tts":542194},
-{"pid":27443,"tid":27477,"ts":326459887124,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":542194,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459887124,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":542194},
-{"pid":27443,"tid":27477,"ts":326459890237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":542255,"id":"0xaf88a6daf182217a"},
-{"pid":27443,"tid":27477,"ts":326459890237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":542255},
-{"pid":27443,"tid":27477,"ts":326459890237,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":542255},
-{"pid":27443,"tid":27477,"ts":326459890268,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":542286,"id":"0x300000063"},
-{"pid":27443,"tid":27477,"ts":326459890268,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":542286},
-{"pid":27443,"tid":27477,"ts":326459890298,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":542316,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459890329,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":542347,"id":"0xaf88a8c7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459890359,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":542377,"id":"0xaf88a67ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459892282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":542438,"id":"0xaf88a6dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459892282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":542469},
-{"pid":27443,"tid":27477,"ts":326459892313,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459886433.0,"frame_time_us":326459885411.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":542499},
-{"pid":27443,"tid":27477,"ts":326459892343,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459886433.0,"frame_time_us":326459885411.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":542499},
-{"pid":27443,"tid":27477,"ts":326459892404,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459902077},"dur":31,"tdur":31,"tts":542560},
-{"pid":27443,"tid":27477,"ts":326459892404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":542560,"id":"0xaf88a6d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459897318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":542682,"id":"0xaf88a6d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459897318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1007,"tdur":1007,"tts":542682},
-{"pid":27443,"tid":27477,"ts":326459897318,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1007,"tts":542682},
-{"pid":27443,"tid":27477,"ts":326459897348,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":542713},
-{"pid":27443,"tid":27477,"ts":326459897348,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":977,"tdur":976,"tts":542713},
-{"pid":27443,"tid":27477,"ts":326459897348,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":977,"tdur":946,"tts":542713},
-{"pid":27443,"tid":27477,"ts":326459897379,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":542743},
-{"pid":27443,"tid":27477,"ts":326459897379,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":542743},
-{"pid":27443,"tid":27477,"ts":326459897379,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":542774,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459897410,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":542774},
-{"pid":27443,"tid":27477,"ts":326459897440,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":542804},
-{"pid":27443,"tid":27477,"ts":326459897562,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":733,"tdur":733,"tts":542926},
-{"pid":27443,"tid":27477,"ts":326459897562,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":114},"dur":244,"tdur":245,"tts":542926},
-{"pid":27443,"tid":27477,"ts":326459897806,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":114},"dur":31,"tdur":30,"tts":543171},
-{"pid":27443,"tid":27477,"ts":326459897867,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":114},"tts":543232},
-{"pid":27443,"tid":27477,"ts":326459897959,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":543323},
-{"pid":27443,"tid":27477,"ts":326459897989,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":543354},
-{"pid":27443,"tid":27477,"ts":326459897989,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":306,"tdur":305,"tts":543354},
-{"pid":27443,"tid":27477,"ts":326459897989,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":543384},
-{"pid":27443,"tid":27477,"ts":326459898111,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":543476},
-{"pid":27443,"tid":27477,"ts":326459898142,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":543506},
-{"pid":27443,"tid":27477,"ts":326459898142,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":543506},
-{"pid":27443,"tid":27477,"ts":326459898142,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":543506},
-{"pid":27443,"tid":27477,"ts":326459898173,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":543537,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459898173,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":543537},
-{"pid":27443,"tid":27477,"ts":326459898203,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":543567},
-{"pid":27443,"tid":27477,"ts":326459898234,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":543598,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459898264,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":543628,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459898295,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":543659,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459898539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":543750,"id":"0xaf88a6d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459898569,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":543750},
-{"pid":27443,"tid":27477,"ts":326459898569,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":543750},
-{"pid":27443,"tid":27477,"ts":326459898600,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":543781,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459898630,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":543812},
-{"pid":27443,"tid":27477,"ts":326459898630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":543812,"id":"0xaf88a6d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459898661,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":543842,"id":"0xaf88a6d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459898661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":543842},
-{"pid":27443,"tid":27477,"ts":326459898691,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":543873},
-{"pid":27443,"tid":27477,"ts":326459898691,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":543873,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459898691,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":543873},
-{"pid":27443,"tid":27477,"ts":326459898722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":543934,"id":"0xaf88a6d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459898752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":543934,"id":"0xaf88a6d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459898783,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":543964},
-{"pid":27443,"tid":27477,"ts":326459898783,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":543964},
-{"pid":27443,"tid":27477,"ts":326459898783,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":543964,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459898783,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":543964},
-{"pid":27443,"tid":27477,"ts":326459898813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":543995,"id":"0xaf88a6d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459898813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1008,"tdur":1007,"tts":543995},
-{"pid":27443,"tid":27477,"ts":326459898844,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":977,"tdur":977,"tts":544025},
-{"pid":27443,"tid":27477,"ts":326459898844,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":544025},
-{"pid":27443,"tid":27477,"ts":326459898844,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":544025},
-{"pid":27443,"tid":27477,"ts":326459898875,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":544056},
-{"pid":27443,"tid":27477,"ts":326459898875,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":544056},
-{"pid":27443,"tid":27477,"ts":326459898966,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":855,"tdur":824,"tts":544147},
-{"pid":27443,"tid":27477,"ts":326459898997,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":793,"tdur":793,"tts":544178},
-{"pid":27443,"tid":27477,"ts":326459898997,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":763,"tdur":763,"tts":544178},
-{"pid":27443,"tid":27477,"ts":326459898997,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":544178,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459899088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":544269},
-{"pid":27443,"tid":27477,"ts":326459899119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544300},
-{"pid":27443,"tid":27477,"ts":326459899149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544330},
-{"pid":27443,"tid":27477,"ts":326459899149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544330},
-{"pid":27443,"tid":27477,"ts":326459899180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544361},
-{"pid":27443,"tid":27477,"ts":326459899180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":544361},
-{"pid":27443,"tid":27459,"ts":326459897104,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":31,"tdur":0,"tts":6928277},
-{"pid":27443,"tid":27459,"ts":326459897135,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":30,"tdur":30,"tts":6928277},
-{"pid":27443,"tid":27459,"ts":326459897165,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":0,"tdur":0,"tts":6928307},
-{"pid":27443,"tid":27459,"ts":326459897196,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":114},"dur":0,"tdur":0,"tts":6928338},
-{"pid":27443,"tid":27459,"ts":326459897196,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6928368,"id":"0x300000061"},
-{"pid":27443,"tid":27459,"ts":326459897226,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6928368,"id":"0x300000062"},
-{"pid":27443,"tid":27459,"ts":326459897226,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":92,"tts":6928368},
-{"pid":27443,"tid":27459,"ts":326459897257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6928399,"id":"0xaf88a6d5f182217a"},
-{"pid":27443,"tid":27459,"ts":326459897593,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6928490},
-{"pid":27443,"tid":27459,"ts":326459897654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6928582,"id":"0xaf88a67df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459897684,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6928582},
-{"pid":27443,"tid":27459,"ts":326459897715,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6928612,"id":"0xaf88a67ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459897715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6928612,"id":"0xaf88a8c6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459897715,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":6928612},
-{"pid":27443,"tid":27459,"ts":326459897745,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":6928643},
-{"pid":27443,"tid":27459,"ts":326459897776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6928673,"id":"0xaf88a67ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459897806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1160,"tdur":1129,"tts":6928704},
-{"pid":27443,"tid":27459,"ts":326459897806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6928704,"id":"0xaf88a8c7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459897837,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1099,"tts":6928734},
-{"pid":27443,"tid":27459,"ts":326459897867,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1069,"tdur":1038,"tts":6928795},
-{"pid":27443,"tid":27459,"ts":326459897898,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6928795,"id":"0x300000063"},
-{"pid":27443,"tid":27459,"ts":326459897928,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":6928826},
-{"pid":27443,"tid":27459,"ts":326459897959,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":854,"tdur":854,"tts":6928857},
-{"pid":27443,"tid":27459,"ts":326459897989,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6928887},
-{"pid":27443,"tid":27459,"ts":326459898020,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6928948},
-{"pid":27443,"tid":27459,"ts":326459898050,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6928979},
-{"pid":27443,"tid":27459,"ts":326459898081,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6929009},
-{"pid":27443,"tid":27459,"ts":326459898111,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6929009},
-{"pid":27443,"tid":27459,"ts":326459898142,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6929040},
-{"pid":27443,"tid":27459,"ts":326459898173,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6929070},
-{"pid":27443,"tid":27459,"ts":326459898203,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":550,"tts":6929131},
-{"pid":27443,"tid":27459,"ts":326459898356,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":428,"tts":6929253},
-{"pid":27443,"tid":27459,"ts":326459898386,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6929284},
-{"pid":27443,"tid":27459,"ts":326459898661,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":72,"frame":"0x78c60000"}},"tts":6929589,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459898691,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6929589},
-{"pid":27443,"tid":27459,"ts":326459898722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6929620,"id":"0xaf88a6d2f182217a"},
-{"pid":27443,"tid":27459,"ts":326459898752,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6929650},
-{"pid":27443,"tid":27459,"ts":326459898844,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6929742},
-{"pid":27443,"tid":27459,"ts":326459898844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6929742,"id":"0xaf88aa1bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459898966,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6929864,"id":"0xaf88a67ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459898997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6929894},
-{"pid":27443,"tid":27459,"ts":326459899973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6929986,"id":"0xaf88a678f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459899973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":18282,"tdur":10743,"tts":6929986},
-{"pid":27443,"tid":27459,"ts":326459900095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6930077,"id":"0xaf88a679f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459900095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6930077,"id":"0xaf88a8c0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459900095,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":18129,"tdur":10652,"tts":6930077},
-{"pid":27443,"tid":27459,"ts":326459900126,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":115},"tts":6930108},
-{"pid":27443,"tid":27459,"ts":326459900126,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6930108},
-{"pid":27443,"tid":27459,"ts":326459900156,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12086,"tdur":7386,"tts":6930169},
-{"pid":27443,"tid":27459,"ts":326459900187,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":6930169},
-{"pid":27443,"tid":27459,"ts":326459900248,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":72,"frame":"0x78c60000"}},"dur":11964,"tdur":7294,"tts":6930230},
-{"pid":27443,"tid":27459,"ts":326459900309,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":11903,"tdur":7233,"tts":6930291},
-{"pid":27443,"tid":27459,"ts":326459900339,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6930322},
-{"pid":27443,"tid":27459,"ts":326459900523,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6930505},
-{"pid":27443,"tid":27459,"ts":326459900645,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6930627},
-{"pid":27443,"tid":27459,"ts":326459900706,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6930688},
-{"pid":27443,"tid":27459,"ts":326459900950,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6930932},
-{"pid":27443,"tid":27459,"ts":326459901011,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6930993},
-{"pid":27443,"tid":27459,"ts":326459901499,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6931207},
-{"pid":27443,"tid":27459,"ts":326459901499,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":3846,"tdur":0,"tts":6931207},
-{"pid":27443,"tid":27459,"ts":326459905345,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6931237},
-{"pid":27443,"tid":27459,"ts":326459905711,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6931603},
-{"pid":27443,"tid":27459,"ts":326459912181,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6937494},
-{"pid":27443,"tid":27459,"ts":326459912242,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2900,"tdur":2502,"tts":6937555},
-{"pid":27443,"tid":27477,"ts":326459899210,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":544391},
-{"pid":27443,"tid":27477,"ts":326459899241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544422},
-{"pid":27443,"tid":27477,"ts":326459899241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":544422},
-{"pid":27443,"tid":27477,"ts":326459899271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544452},
-{"pid":27443,"tid":27477,"ts":326459899302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544483},
-{"pid":27443,"tid":27477,"ts":326459899302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544483},
-{"pid":27443,"tid":27477,"ts":326459899332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544513},
-{"pid":27443,"tid":27477,"ts":326459899332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":544513},
-{"pid":27443,"tid":27477,"ts":326459899363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":544544},
-{"pid":27443,"tid":27477,"ts":326459899393,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544575},
-{"pid":27443,"tid":27477,"ts":326459899424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544605},
-{"pid":27443,"tid":27477,"ts":326459899424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":544605},
-{"pid":27443,"tid":27477,"ts":326459899454,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544636},
-{"pid":27443,"tid":27477,"ts":326459899454,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":544666},
-{"pid":27443,"tid":27477,"ts":326459899515,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":544727},
-{"pid":27443,"tid":27477,"ts":326459899546,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544727},
-{"pid":27443,"tid":27477,"ts":326459899576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544758},
-{"pid":27443,"tid":27477,"ts":326459899607,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544788},
-{"pid":27443,"tid":27477,"ts":326459899607,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544788},
-{"pid":27443,"tid":27477,"ts":326459899638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":544819},
-{"pid":27443,"tid":27477,"ts":326459899638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":544819},
-{"pid":27443,"tid":27477,"ts":326459899668,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":544849},
-{"pid":27443,"tid":27477,"ts":326459899729,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":544910},
-{"pid":27443,"tid":27477,"ts":326459899729,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":544910},
-{"pid":27443,"tid":27477,"ts":326459899729,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":544910},
-{"pid":27443,"tid":27477,"ts":326459899760,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":0,"tts":544971},
-{"pid":27443,"tid":27477,"ts":326459899790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":544971,"id":"0xaf88a6ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326459899821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":545002,"id":"0xaf88a6d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459899821,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":152,"tts":545002},
-{"pid":27443,"tid":27477,"ts":326459899851,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":92,"tts":545032},
-{"pid":27443,"tid":27477,"ts":326459899851,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":115},"tts":545032},
-{"pid":27443,"tid":27477,"ts":326459899882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":545093,"id":"0xaf88a8c0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459899912,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":545093,"id":"0xaf88a678f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459899943,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":545124},
-{"pid":27443,"tid":27477,"ts":326459899973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":545154,"id":"0xaf88a6d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459899973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":336,"tdur":184,"tts":545154},
-{"pid":27443,"tid":27477,"ts":326459899973,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":336,"tdur":123,"tts":545215},
-{"pid":27443,"tid":27477,"ts":326459899973,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":545215},
-{"pid":27443,"tid":27477,"ts":326459900217,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":545246},
-{"pid":27443,"tid":27477,"ts":326459900217,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":545246},
-{"pid":27443,"tid":27477,"ts":326459900217,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":545246},
-{"pid":27443,"tid":27477,"ts":326459900248,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":545277},
-{"pid":27443,"tid":27477,"ts":326459900278,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":545307},
-{"pid":27443,"tid":27477,"ts":326459900278,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":545338},
-{"pid":27443,"tid":27477,"ts":326459900309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":545368,"id":"0xaf88a6ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326459900339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2564,"tdur":1740,"tts":545368},
-{"pid":27443,"tid":27477,"ts":326459900339,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2534,"tdur":1709,"tts":545368},
-{"pid":27443,"tid":27477,"ts":326459900339,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":545368},
-{"pid":27443,"tid":27477,"ts":326459900370,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2503,"tdur":1678,"tts":545399},
-{"pid":27443,"tid":27477,"ts":326459900370,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":114},"dur":824,"tdur":794,"tts":545429},
-{"pid":27443,"tid":27477,"ts":326459900401,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":114},"dur":244,"tdur":244,"tts":545429},
-{"pid":27443,"tid":27477,"ts":326459900645,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":114},"dur":30,"tdur":31,"tts":545673},
-{"pid":27443,"tid":27477,"ts":326459900675,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":114},"tts":545704},
-{"pid":27443,"tid":27477,"ts":326459900797,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":545826},
-{"pid":27443,"tid":27477,"ts":326459900797,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":545826},
-{"pid":27443,"tid":27477,"ts":326459900797,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":545826},
-{"pid":27443,"tid":27477,"ts":326459900828,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":545856},
-{"pid":27443,"tid":27477,"ts":326459900828,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":545856,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459900889,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":545917},
-{"pid":27443,"tid":27477,"ts":326459901194,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":546223},
-{"pid":27443,"tid":27477,"ts":326459901194,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1251,"tdur":427,"tts":546223},
-{"pid":27443,"tid":27477,"ts":326459901225,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":546253},
-{"pid":27443,"tid":27477,"ts":326459901225,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1159,"tdur":336,"tts":546253},
-{"pid":27443,"tid":27477,"ts":326459901408,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":30,"tdur":0,"tts":546406},
-{"pid":27443,"tid":27477,"ts":326459901469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":546436,"id":"0xaf88aa14f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459901469,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":546436},
-{"pid":27443,"tid":27477,"ts":326459902415,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":546650,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459902476,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":546680,"id":"0x300000061"},
-{"pid":27443,"tid":27477,"ts":326459902506,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":546711,"id":"0x300000062"},
-{"pid":27443,"tid":27477,"ts":326459902506,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":306,"tdur":305,"tts":546711},
-{"pid":27443,"tid":27477,"ts":326459902751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":546955,"id":"0xaf88aa15f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459902842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":547047,"id":"0xaf88a8c1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459902842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":547047,"id":"0xaf88a67af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459902903,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459902},"tts":547108,"id":"0xaf88a6d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459902903,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":153,"tdur":30,"tts":547108},
-{"pid":27443,"tid":27477,"ts":326459909343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":547199,"id":"0xaf88a6edf182217a"},
-{"pid":27443,"tid":27477,"ts":326459909374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":547230},
-{"pid":27443,"tid":27477,"ts":326459909374,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":547230},
-{"pid":27443,"tid":27477,"ts":326459909404,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":547260,"id":"0x300000064"},
-{"pid":27443,"tid":27477,"ts":326459909404,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":547260},
-{"pid":27443,"tid":27477,"ts":326459909435,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":547291,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459909465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":547321,"id":"0xaf88a8c2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459909496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":547352,"id":"0xaf88a6eef182217a"},
-{"pid":27443,"tid":27477,"ts":326459909496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":547352},
-{"pid":27443,"tid":27477,"ts":326459909526,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459903114.0,"frame_time_us":326459902092.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":547382},
-{"pid":27443,"tid":27477,"ts":326459909557,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459903114.0,"frame_time_us":326459902092.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":547413},
-{"pid":27443,"tid":27477,"ts":326459909618,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459918758},"dur":30,"tdur":30,"tts":547474},
-{"pid":27443,"tid":27477,"ts":326459909648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":547504,"id":"0xaf88a6eff182217a"},
-{"pid":27443,"tid":27477,"ts":326459910686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":547596,"id":"0xaf88a6e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459910716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":547596},
-{"pid":27443,"tid":27477,"ts":326459910747,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":547627},
-{"pid":27443,"tid":27477,"ts":326459910747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":547627,"id":"0xaf88a8c3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459915874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":547810,"id":"0xaf88a6e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459915905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1190,"tdur":1099,"tts":547840},
-{"pid":27443,"tid":27477,"ts":326459915905,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1160,"tdur":1068,"tts":547840},
-{"pid":27443,"tid":27477,"ts":326459915905,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":547840},
-{"pid":27443,"tid":27477,"ts":326459915935,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1130,"tdur":1037,"tts":547871},
-{"pid":27443,"tid":27477,"ts":326459915935,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1130,"tdur":1037,"tts":547871},{"pid":27443,"tid":27477,"ts":326459915966,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":122,"tdur":31,"tts":547901},
-{"pid":27443,"tid":27477,"ts":326459915966,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":547901},
-{"pid":27443,"tid":27477,"ts":326459915966,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":547932,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459915966,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":547932},
-{"pid":27443,"tid":27477,"ts":326459916088,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":547932},
-{"pid":27443,"tid":27477,"ts":326459916119,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":547962},
-{"pid":27443,"tid":27477,"ts":326459916241,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":824,"tdur":794,"tts":548084},
-{"pid":27443,"tid":27477,"ts":326459916241,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":115},"dur":244,"tdur":245,"tts":548084},
-{"pid":27443,"tid":27477,"ts":326459916485,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":115},"dur":30,"tdur":30,"tts":548329},
-{"pid":27443,"tid":27477,"ts":326459916546,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":115},"tts":548390},
-{"pid":27443,"tid":27477,"ts":326459916729,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":548573},
-{"pid":27443,"tid":27477,"ts":326459916729,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":275,"tts":548603},
-{"pid":27443,"tid":27477,"ts":326459916759,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":548603},
-{"pid":27443,"tid":27477,"ts":326459916851,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":548695},
-{"pid":27443,"tid":27477,"ts":326459916882,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":548725},
-{"pid":27443,"tid":27477,"ts":326459916882,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":548725},
-{"pid":27443,"tid":27477,"ts":326459916912,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":91,"tts":548756},
-{"pid":27443,"tid":27477,"ts":326459916912,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":548756,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459916943,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":548786},
-{"pid":27443,"tid":27477,"ts":326459916943,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":548786},
-{"pid":27443,"tid":27477,"ts":326459917004,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":548847,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459917034,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":548878,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459917034,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":548878,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459917431,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":549000,"id":"0xaf88a6eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326459917461,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":549031},
-{"pid":27443,"tid":27477,"ts":326459917461,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":549031},
-{"pid":27443,"tid":27477,"ts":326459917461,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":549031,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459917492,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":0,"tts":549061},
-{"pid":27443,"tid":27477,"ts":326459917492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":549061,"id":"0xaf88a6e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459917522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":549092,"id":"0xaf88a6ebf182217a"},
-{"pid":27443,"tid":27459,"ts":326459912273,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6937616},
-{"pid":27443,"tid":27459,"ts":326459912303,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6937616},
-{"pid":27443,"tid":27459,"ts":326459912334,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6937646},
-{"pid":27443,"tid":27459,"ts":326459912731,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6938074},
-{"pid":27443,"tid":27459,"ts":326459912761,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6938074},
-{"pid":27443,"tid":27459,"ts":326459912792,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2319,"tdur":1953,"tts":6938104},
-{"pid":27443,"tid":27459,"ts":326459912822,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1954,"tdur":1709,"tts":6938135},
-{"pid":27443,"tid":27459,"ts":326459912822,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":367,"tdur":366,"tts":6938135},
-{"pid":27443,"tid":27459,"ts":326459913189,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6938501},
-{"pid":27443,"tid":27459,"ts":326459913372,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":6938684},
-{"pid":27443,"tid":27459,"ts":326459913463,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6938776},
-{"pid":27443,"tid":27459,"ts":326459913463,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1313,"tdur":1038,"tts":6938806},
-{"pid":27443,"tid":27459,"ts":326459914806,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6939874},
-{"pid":27443,"tid":27459,"ts":326459914837,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":274,"tdur":122,"tts":6939935},
-{"pid":27443,"tid":27459,"ts":326459914837,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":6939935},
-{"pid":27443,"tid":27459,"ts":326459915142,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":115},"dur":549,"tdur":488,"tts":6940088},
-{"pid":27443,"tid":27459,"ts":326459915142,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":549,"tdur":488,"tts":6940088},
-{"pid":27443,"tid":27459,"ts":326459915447,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":31,"tdur":30,"tts":6940363},
-{"pid":27443,"tid":27459,"ts":326459915478,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":0,"tdur":0,"tts":6940393},
-{"pid":27443,"tid":27459,"ts":326459915508,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":0,"tdur":0,"tts":6940424},
-{"pid":27443,"tid":27459,"ts":326459915508,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":31,"tdur":30,"tts":6940424},
-{"pid":27443,"tid":27459,"ts":326459915539,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":30,"tdur":31,"tts":6940454},
-{"pid":27443,"tid":27459,"ts":326459915569,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":0,"tdur":0,"tts":6940485},
-{"pid":27443,"tid":27459,"ts":326459915569,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":31,"tdur":30,"tts":6940485},
-{"pid":27443,"tid":27459,"ts":326459915600,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":61,"tdur":31,"tts":6940515},
-{"pid":27443,"tid":27459,"ts":326459915600,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":6940515},
-{"pid":27443,"tid":27459,"ts":326459915661,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":115},"dur":30,"tdur":30,"tts":6940546},
-{"pid":27443,"tid":27459,"ts":326459915691,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6940576,"id":"0x300000063"},
-{"pid":27443,"tid":27459,"ts":326459915722,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2441,"tdur":61,"tts":6940607},
-{"pid":27443,"tid":27459,"ts":326459915722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6940607,"id":"0xaf88a6e9f182217a"},
-{"pid":27443,"tid":27459,"ts":326459918194,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6940698},
-{"pid":27443,"tid":27459,"ts":326459918285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6940790,"id":"0xaf88a679f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459918285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":6940790},
-{"pid":27443,"tid":27459,"ts":326459918316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6940821,"id":"0xaf88a67bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459918316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6940821,"id":"0xaf88a8c1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459918347,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6940851},
-{"pid":27443,"tid":27459,"ts":326459918347,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6940851},
-{"pid":27443,"tid":27459,"ts":326459918377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6940882,"id":"0xaf88a67af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459918408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3906,"tdur":1221,"tts":6940912},
-{"pid":27443,"tid":27459,"ts":326459918408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6940912,"id":"0xaf88a8c2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459918438,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":3846,"tdur":1159,"tts":6940943},
-{"pid":27443,"tid":27459,"ts":326459918499,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":3785,"tdur":1098,"tts":6941004},
-{"pid":27443,"tid":27459,"ts":326459918499,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6941004,"id":"0x300000064"},
-{"pid":27443,"tid":27459,"ts":326459918530,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":3632,"tdur":946,"tts":6941034},
-{"pid":27443,"tid":27459,"ts":326459918560,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":3602,"tdur":915,"tts":6941065},
-{"pid":27443,"tid":27459,"ts":326459918621,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6941126},
-{"pid":27443,"tid":27459,"ts":326459918682,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6941187},
-{"pid":27443,"tid":27459,"ts":326459918713,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6941217},
-{"pid":27443,"tid":27459,"ts":326459918713,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6941248},
-{"pid":27443,"tid":27459,"ts":326459918743,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6941248},
-{"pid":27443,"tid":27459,"ts":326459918774,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6941278},
-{"pid":27443,"tid":27459,"ts":326459918804,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6941309},
-{"pid":27443,"tid":27459,"ts":326459918835,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":3327,"tdur":610,"tts":6941370},
-{"pid":27443,"tid":27459,"ts":326459921704,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":366,"tts":6941553},
-{"pid":27443,"tid":27459,"ts":326459921734,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6941553},
-{"pid":27443,"tid":27459,"ts":326459922039,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":73,"frame":"0x78c60000"}},"tts":6941858,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459922039,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6941858},
-{"pid":27443,"tid":27459,"ts":326459922070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6941889,"id":"0xaf88a6e1f182217a"},
-{"pid":27443,"tid":27459,"ts":326459922101,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6941919},
-{"pid":27443,"tid":27459,"ts":326459922192,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6942011},
-{"pid":27443,"tid":27459,"ts":326459922223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6942041,"id":"0xaf88aa16f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459927045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459921},"tts":6942163,"id":"0xaf88a664f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":6942163},
-{"pid":27443,"tid":27459,"ts":326459927106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6942224,"id":"0xaf88a67bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459917522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":549092},
-{"pid":27443,"tid":27477,"ts":326459917553,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":549122},
-{"pid":27443,"tid":27477,"ts":326459917553,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":549122,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459917553,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":549122},
-{"pid":27443,"tid":27477,"ts":326459917583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":549153,"id":"0xaf88a6e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459917583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":62,"tdur":61,"tts":549153},
-{"pid":27443,"tid":27477,"ts":326459917614,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":549183},
-{"pid":27443,"tid":27477,"ts":326459917614,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":549183,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459917614,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":549183},
-{"pid":27443,"tid":27477,"ts":326459917614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":549183,"id":"0xaf88a6e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459917645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":549214,"id":"0xaf88a6e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459917675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":885,"tdur":885,"tts":549244},
-{"pid":27443,"tid":27477,"ts":326459917675,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":885,"tdur":885,"tts":549244},
-{"pid":27443,"tid":27477,"ts":326459917675,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":549244},
-{"pid":27443,"tid":27477,"ts":326459917675,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":549275},
-{"pid":27443,"tid":27477,"ts":326459917706,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":549275},
-{"pid":27443,"tid":27477,"ts":326459917706,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":549275},
-{"pid":27443,"tid":27477,"ts":326459917797,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":549366},
-{"pid":27443,"tid":27477,"ts":326459917797,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":549366},
-{"pid":27443,"tid":27477,"ts":326459917797,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":733,"tdur":733,"tts":549366},
-{"pid":27443,"tid":27477,"ts":326459917828,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":549397,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459917889,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":549458},
-{"pid":27443,"tid":27477,"ts":326459917919,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549488},
-{"pid":27443,"tid":27477,"ts":326459917919,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":549488},
-{"pid":27443,"tid":27477,"ts":326459917950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549519},
-{"pid":27443,"tid":27477,"ts":326459917980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549549},
-{"pid":27443,"tid":27477,"ts":326459917980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549549},
-{"pid":27443,"tid":27477,"ts":326459918011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549580},
-{"pid":27443,"tid":27477,"ts":326459918011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":549580},
-{"pid":27443,"tid":27477,"ts":326459918041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549610},
-{"pid":27443,"tid":27477,"ts":326459918041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":549610},
-{"pid":27443,"tid":27477,"ts":326459918072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549641},
-{"pid":27443,"tid":27477,"ts":326459918102,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549671},
-{"pid":27443,"tid":27477,"ts":326459918102,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":549671},
-{"pid":27443,"tid":27477,"ts":326459918133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549702},
-{"pid":27443,"tid":27477,"ts":326459918133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":549702},
-{"pid":27443,"tid":27477,"ts":326459918163,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549732},
-{"pid":27443,"tid":27477,"ts":326459918163,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":549763},
-{"pid":27443,"tid":27477,"ts":326459918194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549763},
-{"pid":27443,"tid":27477,"ts":326459918224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549794},
-{"pid":27443,"tid":27477,"ts":326459918224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549794},
-{"pid":27443,"tid":27477,"ts":326459918285,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":549855},
-{"pid":27443,"tid":27477,"ts":326459918316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549885},
-{"pid":27443,"tid":27477,"ts":326459918316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":549885},
-{"pid":27443,"tid":27477,"ts":326459918347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549916},
-{"pid":27443,"tid":27477,"ts":326459918377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549946},
-{"pid":27443,"tid":27477,"ts":326459918377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":549946},
-{"pid":27443,"tid":27477,"ts":326459918408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":549977},
-{"pid":27443,"tid":27477,"ts":326459918438,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":550007},
-{"pid":27443,"tid":27477,"ts":326459918469,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":550038},
-{"pid":27443,"tid":27477,"ts":326459918469,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":550038},
-{"pid":27443,"tid":27477,"ts":326459918499,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":550068},
-{"pid":27443,"tid":27477,"ts":326459918530,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":550099},
-{"pid":27443,"tid":27477,"ts":326459918530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":550129,"id":"0xaf88a6e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459918560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":550129,"id":"0xaf88a6e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459918591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":550160},
-{"pid":27443,"tid":27477,"ts":326459918591,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":550160},
-{"pid":27443,"tid":27477,"ts":326459918591,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":550160},
-{"pid":27443,"tid":27477,"ts":326459918591,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":550190},
-{"pid":27443,"tid":27477,"ts":326459918621,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":550190},
-{"pid":27443,"tid":27477,"ts":326459918621,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":550190},
-{"pid":27443,"tid":27477,"ts":326459918682,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":550251},
-{"pid":27443,"tid":27477,"ts":326459918682,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":550251},
-{"pid":27443,"tid":27477,"ts":326459918713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":550282,"id":"0xaf88a6e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459918713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4730,"tdur":1465,"tts":550282},
-{"pid":27443,"tid":27477,"ts":326459918743,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4700,"tdur":1435,"tts":550312},
-{"pid":27443,"tid":27477,"ts":326459918743,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":550312},
-{"pid":27443,"tid":27477,"ts":326459918774,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":4639,"tdur":1373,"tts":550343},
-{"pid":27443,"tid":27477,"ts":326459918774,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":115},"dur":3632,"tdur":824,"tts":550343},
-{"pid":27443,"tid":27477,"ts":326459918865,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":115},"dur":2869,"tdur":244,"tts":550404},
-{"pid":27443,"tid":27477,"ts":326459921734,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":115},"dur":31,"tdur":31,"tts":550648},
-{"pid":27443,"tid":27477,"ts":326459921765,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":115},"tts":550679},
-{"pid":27443,"tid":27477,"ts":326459921887,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":550801},
-{"pid":27443,"tid":27477,"ts":326459921887,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":550801},
-{"pid":27443,"tid":27477,"ts":326459921917,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":550831},
-{"pid":27443,"tid":27477,"ts":326459921917,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":550831},
-{"pid":27443,"tid":27477,"ts":326459921917,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":550862,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459921978,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":550892},
-{"pid":27443,"tid":27477,"ts":326459922406,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":551167},
-{"pid":27443,"tid":27477,"ts":326459922406,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":610,"tdur":275,"tts":551167},
-{"pid":27443,"tid":27477,"ts":326459922436,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":551197},
-{"pid":27443,"tid":27477,"ts":326459922436,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":550,"tdur":184,"tts":551197},
-{"pid":27443,"tid":27477,"ts":326459922528,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":0,"tdur":0,"tts":551289},
-{"pid":27443,"tid":27477,"ts":326459922558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":551320,"id":"0xaf88aa17f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459923016,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":551442,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459923047,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":551472,"id":"0x300000063"},
-{"pid":27443,"tid":27477,"ts":326459923047,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":335,"tdur":183,"tts":551472},
-{"pid":27443,"tid":27477,"ts":326459923138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":551594,"id":"0xaf88aa10f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459923382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":551686,"id":"0xaf88a8dcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459923382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":551686,"id":"0xaf88a674f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459923443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459918},"tts":551747,"id":"0xaf88a6eff182217a"},
-{"pid":27443,"tid":27477,"ts":326459923474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":551777},
-{"pid":27443,"tid":27477,"ts":326459923474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":551777,"id":"0xaf88a6e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459923474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":153,"tts":551777},
-{"pid":27443,"tid":27477,"ts":326459923504,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459924497.0,"frame_time_us":326459918774.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":91,"tts":551808},
-{"pid":27443,"tid":27477,"ts":326459923535,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459924497.0,"frame_time_us":326459918774.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":244,"tdur":61,"tts":551838},
-{"pid":27443,"tid":27477,"ts":326459923565,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459935440},"dur":214,"tdur":30,"tts":551869},
-{"pid":27443,"tid":27477,"ts":326459923596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":551869,"id":"0xaf88a6e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459923596,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":551869},
-{"pid":27443,"tid":27477,"ts":326459923810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":551930,"id":"0xaf88a6e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459923810,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":551930},
-{"pid":27443,"tid":27477,"ts":326459923840,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":551960},
-{"pid":27443,"tid":27477,"ts":326459923840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":551960,"id":"0xaf88a6e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459923871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":551991},
-{"pid":27443,"tid":27477,"ts":326459923871,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":92,"tts":551991},
-{"pid":27443,"tid":27477,"ts":326459923871,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":551991,"id":"0x300000065"},
-{"pid":27443,"tid":27477,"ts":326459923901,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":552022},
-{"pid":27443,"tid":27477,"ts":326459923932,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":552052,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459923932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":552052,"id":"0xaf88a8ddf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459925641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":552144,"id":"0xaf88a6fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326459925641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":552144},
-{"pid":27443,"tid":27477,"ts":326459925671,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":122,"tdur":122,"tts":552174},
-{"pid":27443,"tid":27477,"ts":326459925671,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":116},"tts":552174},
-{"pid":27443,"tid":27477,"ts":326459925732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":552235,"id":"0xaf88a8def3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459925763,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":552266},
-{"pid":27443,"tid":27477,"ts":326459925763,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":552266,"id":"0xaf88a8dff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459935560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459935},"tts":552357,"id":"0xaf88a6e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459935591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4150,"tdur":366,"tts":552388},
-{"pid":27443,"tid":27477,"ts":326459935591,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4150,"tdur":366,"tts":552388},
-{"pid":27443,"tid":27477,"ts":326459935591,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":4150,"tdur":336,"tts":552418},
-{"pid":27443,"tid":27477,"ts":326459935621,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":4120,"tdur":336,"tts":552418},
-{"pid":27443,"tid":27477,"ts":326459935621,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":3907,"tdur":122,"tts":552418},
-{"pid":27443,"tid":27477,"ts":326459939528,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":552540},
-{"pid":27443,"tid":27477,"ts":326459939528,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":552571},
-{"pid":27443,"tid":27477,"ts":326459939558,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":552571},
-{"pid":27443,"tid":27477,"ts":326459939558,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":552601},
-{"pid":27443,"tid":27477,"ts":326459939589,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":552601,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459939619,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":552632},
-{"pid":27443,"tid":27466,"ts":326459921551,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":292873,"id":"0xba451902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459921612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":292934,"id":"0xaf88a6e0f182217a"},
-{"pid":27443,"tid":27466,"ts":326459922284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":293056,"id":"0xaf88aa16f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459922284,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":293056},
-{"pid":27443,"tid":27466,"ts":326459922314,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293087,"id":"0xccc48902"},
-{"pid":27443,"tid":27466,"ts":326459922650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":293209,"id":"0xaf88aa17f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459922650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":293209},
-{"pid":27443,"tid":27466,"ts":326459922680,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293239,"id":"0xccc48a06"},
-{"pid":27443,"tid":27466,"ts":326459922833,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":61,"tts":293331},
-{"pid":27443,"tid":27466,"ts":326459922864,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":293361},
-{"pid":27443,"tid":27466,"ts":326459922894,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293361,"id":"0xc4c1760a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459923230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":293483,"id":"0xaf88aa10f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459923260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":293483},
-{"pid":27443,"tid":27466,"ts":326459923260,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293483,"id":"0xccc48b02"},
-{"pid":27443,"tid":27466,"ts":326459923596,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":293575},
-{"pid":27443,"tid":27466,"ts":326459923627,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":293605},
-{"pid":27443,"tid":27466,"ts":326459923657,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293636,"id":"0xba451a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459923657,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":92,"tdur":61,"tts":293636},
-{"pid":27443,"tid":27466,"ts":326459923718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293667,"id":"0xaf88a6e3f182217a"},
-{"pid":27443,"tid":27466,"ts":326459925336,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":293758},
-{"pid":27443,"tid":27466,"ts":326459925366,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":293789},
-{"pid":27443,"tid":27466,"ts":326459925366,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293789,"id":"0xba451b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459925397,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":293819,"id":"0xaf88a6fcf182217a"},
-{"pid":27443,"tid":27466,"ts":326459928571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":293941,"id":"0xaf88aa11f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459928571,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":293941},
-{"pid":27443,"tid":27466,"ts":326459928571,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":293941,"id":"0xccc48d02"},
-{"pid":27443,"tid":27466,"ts":326459939039,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":294033},
-{"pid":27443,"tid":27466,"ts":326459939100,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":294094},
-{"pid":27443,"tid":27466,"ts":326459939100,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":294094,"id":"0xba451d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459939131,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":294124},
-{"pid":27443,"tid":27466,"ts":326459939161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":294155,"id":"0xaf88a6fdf182217a"},
-{"pid":27443,"tid":27466,"ts":326459939375,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":294246},
-{"pid":27443,"tid":27466,"ts":326459939406,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":30,"tdur":30,"tts":294277},
-{"pid":27443,"tid":27466,"ts":326459939406,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":294277,"id":"0xba451e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459939436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":294307,"id":"0xaf88a6fef182217a"},
-{"pid":27443,"tid":27466,"ts":326459949416,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":294399,"id":"0xaf88aa12f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459949416,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":294399},
-{"pid":27443,"tid":27466,"ts":326459949416,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":294399,"id":"0xccc48f02"},
-{"pid":27443,"tid":27466,"ts":326459951797,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":294582,"id":"0xaf88aa13f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459951827,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":294613},
-{"pid":27443,"tid":27466,"ts":326459951858,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":294643,"id":"0xccc49006"},
-{"pid":27443,"tid":27466,"ts":326459952133,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":183,"tdur":183,"tts":294887},
-{"pid":27443,"tid":27466,"ts":326459952194,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":91,"tdur":92,"tts":294948},
-{"pid":27443,"tid":27466,"ts":326459952194,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":294979,"id":"0xc4c1790a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459953323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":295254,"id":"0xaf88aa2cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459953353,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":153,"tdur":153,"tts":295284},
-{"pid":27443,"tid":27466,"ts":326459953353,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":295315,"id":"0xccc49102"},
-{"pid":27443,"tid":27466,"ts":326459953842,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":519,"tdur":519,"tts":295559},
-{"pid":27443,"tid":27466,"ts":326459953903,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":244,"tdur":244,"tts":295620},
-{"pid":27443,"tid":27466,"ts":326459953933,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":295650,"id":"0xba451f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459953994,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":153,"tdur":153,"tts":295711},
-{"pid":27443,"tid":27466,"ts":326459954055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295772,"id":"0xaf88a68df182217a"},
-{"pid":27443,"tid":27466,"ts":326459954177,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":153,"tdur":153,"tts":295894},
-{"pid":27443,"tid":27466,"ts":326459954208,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":295925,"id":"0xba452002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459954300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296017,"id":"0xaf88a68ef182217a"},
-{"pid":27443,"tid":27466,"ts":326459956253,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":296169},
-{"pid":27443,"tid":27466,"ts":326459956283,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":296200},
-{"pid":27443,"tid":27466,"ts":326459956314,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":296230,"id":"0xba452102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459956314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296261,"id":"0xaf88a688f182217a"},
-{"pid":27443,"tid":27466,"ts":326459970597,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":296352},
-{"pid":27443,"tid":27466,"ts":326459970628,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":296383},
-{"pid":27443,"tid":27466,"ts":326459970658,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":296413,"id":"0xba452302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459970689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296444,"id":"0xaf88a686f182217a"},
-{"pid":27443,"tid":27466,"ts":326459970750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":296474,"id":"0xaf88aa2df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459927106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":123,"tts":6942224},
-{"pid":27443,"tid":27459,"ts":326459927136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6942255,"id":"0xaf88a675f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6942285,"id":"0xaf88a8cdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459927167,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":62,"tts":6942285},
-{"pid":27443,"tid":27459,"ts":326459927167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":6942316,"id":"0xaf88a8d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459927197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6942316,"id":"0xaf88a676f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6942377,"id":"0xaf88a674f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6942377},
-{"pid":27443,"tid":27459,"ts":326459927289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6942408,"id":"0xaf88a8c3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459927289,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":6942408},
-{"pid":27443,"tid":27459,"ts":326459927289,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":6942408},
-{"pid":27443,"tid":27459,"ts":326459927350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6942469,"id":"0xaf88a675f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":6942469},
-{"pid":27443,"tid":27459,"ts":326459927381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6942499,"id":"0xaf88a677f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6942499,"id":"0xaf88a8dcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459927411,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6942530},
-{"pid":27443,"tid":27459,"ts":326459927411,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6942530},
-{"pid":27443,"tid":27459,"ts":326459927442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6942560,"id":"0xaf88a677f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":1098,"tts":6942591},
-{"pid":27443,"tid":27459,"ts":326459927472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6942591,"id":"0xaf88a670f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459927503,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6942621,"id":"0xaf88a8ddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459927503,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1068,"tdur":1068,"tts":6942621},
-{"pid":27443,"tid":27459,"ts":326459927564,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":976,"tdur":977,"tts":6942682},
-{"pid":27443,"tid":27459,"ts":326459927564,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6942682,"id":"0x300000065"},
-{"pid":27443,"tid":27459,"ts":326459927594,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":855,"tdur":854,"tts":6942713},
-{"pid":27443,"tid":27459,"ts":326459927625,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":824,"tdur":824,"tts":6942743},
-{"pid":27443,"tid":27459,"ts":326459927686,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6942804},
-{"pid":27443,"tid":27459,"ts":326459927716,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6942835},
-{"pid":27443,"tid":27459,"ts":326459927747,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6942865},
-{"pid":27443,"tid":27459,"ts":326459927777,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":6942896},
-{"pid":27443,"tid":27459,"ts":326459927808,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6942926},
-{"pid":27443,"tid":27459,"ts":326459927838,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6942957},
-{"pid":27443,"tid":27459,"ts":326459927869,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6942987},
-{"pid":27443,"tid":27459,"ts":326459927899,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":519,"tdur":489,"tts":6943048},
-{"pid":27443,"tid":27459,"ts":326459928052,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":336,"tdur":335,"tts":6943171},
-{"pid":27443,"tid":27459,"ts":326459928083,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6943201},
-{"pid":27443,"tid":27459,"ts":326459928327,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":74,"frame":"0x78c60000"}},"tts":6943476,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459928388,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6943506},
-{"pid":27443,"tid":27459,"ts":326459928449,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":61,"tts":6943598},
-{"pid":27443,"tid":27459,"ts":326459928479,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6943598,"id":"0xaf88aa11f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459928601,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6943720,"id":"0xaf88a670f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459928601,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":19442,"tdur":11842,"tts":6943720},
-{"pid":27443,"tid":27459,"ts":326459928632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6943750,"id":"0xaf88a671f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459928632,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6943750,"id":"0xaf88a8def3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459928662,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":19381,"tdur":11781,"tts":6943781},
-{"pid":27443,"tid":27459,"ts":326459928662,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":116},"tts":6943781},
-{"pid":27443,"tid":27459,"ts":326459928662,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6943781},
-{"pid":27443,"tid":27459,"ts":326459928693,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":15657,"tdur":8729,"tts":6943842},
-{"pid":27443,"tid":27459,"ts":326459928723,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":6943842},
-{"pid":27443,"tid":27459,"ts":326459928754,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":73,"frame":"0x78c60000"}},"dur":15413,"tdur":8485,"tts":6943903},
-{"pid":27443,"tid":27459,"ts":326459929242,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":14925,"tdur":8393,"tts":6943995},
-{"pid":27443,"tid":27459,"ts":326459929242,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6943995},
-{"pid":27443,"tid":27459,"ts":326459930310,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6944788},
-{"pid":27443,"tid":27459,"ts":326459930433,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6944910},
-{"pid":27443,"tid":27459,"ts":326459930524,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6945002},
-{"pid":27443,"tid":27459,"ts":326459930555,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6945032},
-{"pid":27443,"tid":27459,"ts":326459930707,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6945185},
-{"pid":27443,"tid":27459,"ts":326459931074,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6945307},
-{"pid":27443,"tid":27459,"ts":326459931165,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6945399},
-{"pid":27443,"tid":27459,"ts":326459931196,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6945460},
-{"pid":27443,"tid":27459,"ts":326459931348,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6945521},
-{"pid":27443,"tid":27459,"ts":326459931745,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6945765},
-{"pid":27443,"tid":27459,"ts":326459931745,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":610,"tdur":0,"tts":6945765},
-{"pid":27443,"tid":27459,"ts":326459932905,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6946314},
-{"pid":27443,"tid":27459,"ts":326459933240,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6946650},
-{"pid":27443,"tid":27459,"ts":326459935255,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6948695},
-{"pid":27443,"tid":27459,"ts":326459935377,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6948786},
-{"pid":27443,"tid":27459,"ts":326459935407,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6948817},
-{"pid":27443,"tid":27459,"ts":326459940413,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6949122},
-{"pid":27443,"tid":27459,"ts":326459940443,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6949153},
-{"pid":27443,"tid":27459,"ts":326459940626,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6949336},
-{"pid":27443,"tid":27459,"ts":326459944136,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6952357},
-{"pid":27443,"tid":27459,"ts":326459944197,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":74,"frame":"0x78c60000"}},"dur":153,"tdur":153,"tts":6952418},
-{"pid":27443,"tid":27459,"ts":326459944258,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":92,"tdur":61,"tts":6952510},
-{"pid":27443,"tid":27459,"ts":326459944289,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6952510},
-{"pid":27443,"tid":27459,"ts":326459944319,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6952540},
-{"pid":27443,"tid":27459,"ts":326459944350,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2869,"tdur":2411,"tts":6952601},
-{"pid":27443,"tid":27459,"ts":326459944411,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6952632},
-{"pid":27443,"tid":27459,"ts":326459944411,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6952632},
-{"pid":27443,"tid":27459,"ts":326459944441,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6952662},
-{"pid":27443,"tid":27459,"ts":326459944869,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6953090},
-{"pid":27443,"tid":27459,"ts":326459944899,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6953120},
-{"pid":27443,"tid":27459,"ts":326459944930,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2258,"tdur":1831,"tts":6953151},
-{"pid":27443,"tid":27459,"ts":326459944930,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1984,"tdur":1678,"tts":6953151},
-{"pid":27443,"tid":27459,"ts":326459944930,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":366,"tdur":336,"tts":6953181},
-{"pid":27443,"tid":27459,"ts":326459945296,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":6953517},
-{"pid":27443,"tid":27459,"ts":326459945510,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":6953731},
-{"pid":27443,"tid":27459,"ts":326459945601,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":6953822},
-{"pid":27443,"tid":27459,"ts":326459945601,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1282,"tdur":977,"tts":6953822},
-{"pid":27443,"tid":27459,"ts":326459946914,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":6954829},
-{"pid":27443,"tid":27459,"ts":326459947066,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6954860},
-{"pid":27443,"tid":27459,"ts":326459947219,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":116},"dur":397,"tdur":397,"tts":6955012},
-{"pid":27443,"tid":27459,"ts":326459947219,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":6955012},
-{"pid":27443,"tid":27459,"ts":326459947432,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":31,"tdur":31,"tts":6955226},
-{"pid":27443,"tid":27459,"ts":326459947463,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":0,"tdur":0,"tts":6955257},
-{"pid":27443,"tid":27459,"ts":326459947463,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":30,"tdur":30,"tts":6955257},
-{"pid":27443,"tid":27459,"ts":326459947493,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":31,"tdur":0,"tts":6955287},
-{"pid":27443,"tid":27459,"ts":326459947524,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":0,"tdur":0,"tts":6955318},
-{"pid":27443,"tid":27459,"ts":326459947524,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":31,"tdur":30,"tts":6955318},
-{"pid":27443,"tid":27459,"ts":326459947555,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":0,"tdur":0,"tts":6955348},
-{"pid":27443,"tid":27459,"ts":326459947555,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":30,"tdur":31,"tts":6955348},
-{"pid":27443,"tid":27459,"ts":326459947585,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":116},"dur":0,"tdur":0,"tts":6955379},
-{"pid":27443,"tid":27459,"ts":326459947616,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6955409,"id":"0x300000064"},
-{"pid":27443,"tid":27459,"ts":326459947616,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6955409,"id":"0x300000065"},
-{"pid":27443,"tid":27459,"ts":326459947646,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":61,"tts":6955440},
-{"pid":27443,"tid":27459,"ts":326459947646,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6955440,"id":"0xaf88a6f5f182217a"},
-{"pid":27443,"tid":27459,"ts":326459948012,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6955531},
-{"pid":27443,"tid":27459,"ts":326459948073,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6955592,"id":"0xaf88a671f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459948104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6955623},
-{"pid":27443,"tid":27459,"ts":326459948104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6955623,"id":"0xaf88a673f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459948134,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6955653,"id":"0xaf88a8dff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459948134,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":6955653},
-{"pid":27443,"tid":27459,"ts":326459948134,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":6955653},
-{"pid":27443,"tid":27459,"ts":326459948195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6955714,"id":"0xaf88a672f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459948195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1160,"tts":6955714},
-{"pid":27443,"tid":27459,"ts":326459948226,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6955745,"id":"0xaf88a8d9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459948226,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1190,"tdur":1129,"tts":6955745},
-{"pid":27443,"tid":27459,"ts":326459948287,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1038,"tts":6955806},
-{"pid":27443,"tid":27459,"ts":326459948318,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6955837,"id":"0x300000066"},
-{"pid":27443,"tid":27459,"ts":326459948318,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":976,"tdur":885,"tts":6955867},
-{"pid":27443,"tid":27459,"ts":326459948348,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":854,"tts":6955898},
-{"pid":27443,"tid":27459,"ts":326459948409,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":6955928},
-{"pid":27443,"tid":27459,"ts":326459948440,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6955989},
-{"pid":27443,"tid":27459,"ts":326459948470,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6956020},
-{"pid":27443,"tid":27459,"ts":326459948592,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6956050},
-{"pid":27443,"tid":27459,"ts":326459948623,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6956081},
-{"pid":27443,"tid":27459,"ts":326459948653,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6956111},
-{"pid":27443,"tid":27459,"ts":326459948684,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6956142},
-{"pid":27443,"tid":27477,"ts":326459939619,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":552632},
-{"pid":27443,"tid":27477,"ts":326459939680,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":552693,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459939711,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":552723,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459939711,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":552723,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459939772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":552785,"id":"0xaf88a6fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326459939772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":552785},
-{"pid":27443,"tid":27477,"ts":326459939772,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":552785},
-{"pid":27443,"tid":27477,"ts":326459939802,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":552815,"id":"0x300000066"},
-{"pid":27443,"tid":27477,"ts":326459939802,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":552815},
-{"pid":27443,"tid":27477,"ts":326459939833,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":552846,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459939863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":552876,"id":"0xaf88a8d9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459939863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":552876,"id":"0xaf88a672f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459939894,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":552907,"id":"0xaf88a6fef182217a"},
-{"pid":27443,"tid":27477,"ts":326459939924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":2991,"tdur":214,"tts":552937},
-{"pid":27443,"tid":27477,"ts":326459939955,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459941278.0,"frame_time_us":326459935455.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":2930,"tdur":152,"tts":552968},
-{"pid":27443,"tid":27477,"ts":326459939955,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459941278.0,"frame_time_us":326459935455.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":2930,"tdur":152,"tts":552968},
-{"pid":27443,"tid":27477,"ts":326459940809,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459952121},"dur":2076,"tdur":61,"tts":553059},
-{"pid":27443,"tid":27477,"ts":326459940809,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2045,"tdur":31,"tts":553059},
-{"pid":27443,"tid":27477,"ts":326459942885,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":553120,"id":"0xaf88a6faf182217a"},
-{"pid":27443,"tid":27477,"ts":326459942915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":553151,"id":"0xaf88a6fff182217a"},
-{"pid":27443,"tid":27477,"ts":326459942915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":553151},
-{"pid":27443,"tid":27477,"ts":326459942946,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":553181},
-{"pid":27443,"tid":27477,"ts":326459942946,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":553181,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459942976,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":553212},
-{"pid":27443,"tid":27477,"ts":326459942976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":553212,"id":"0xaf88a6fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459943007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":553242,"id":"0xaf88a6f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326459943007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":553242},
-{"pid":27443,"tid":27477,"ts":326459943037,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":30,"tts":553273},
-{"pid":27443,"tid":27477,"ts":326459943037,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":553273,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459943037,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":553273},
-{"pid":27443,"tid":27477,"ts":326459943068,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":553303,"id":"0xaf88a6f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459943068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":553334,"id":"0xaf88a6f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326459943099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":553334},
-{"pid":27443,"tid":27477,"ts":326459943099,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":553334},
-{"pid":27443,"tid":27477,"ts":326459943099,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":553334,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459943099,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":553364},
-{"pid":27443,"tid":27477,"ts":326459943129,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":553364,"id":"0xaf88a6fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326459943129,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":184,"tts":553364},
-{"pid":27443,"tid":27477,"ts":326459943160,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":553395},
-{"pid":27443,"tid":27477,"ts":326459943160,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":553395},
-{"pid":27443,"tid":27477,"ts":326459943160,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":553395},
-{"pid":27443,"tid":27477,"ts":326459943190,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":553425},
-{"pid":27443,"tid":27477,"ts":326459943190,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":553425},
-{"pid":27443,"tid":27477,"ts":326459943282,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":553517},
-{"pid":27443,"tid":27477,"ts":326459943282,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":553517},
-{"pid":27443,"tid":27477,"ts":326459943312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":553548,"id":"0xaf88a6f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326459943312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":553548},
-{"pid":27443,"tid":27477,"ts":326459943312,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":553548},
-{"pid":27443,"tid":27477,"ts":326459943343,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":553578},
-{"pid":27443,"tid":27477,"ts":326459943343,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":553578},
-{"pid":27443,"tid":27477,"ts":326459943343,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":553578},
-{"pid":27443,"tid":27477,"ts":326459943373,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":553609},
-{"pid":27443,"tid":27477,"ts":326459943404,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":553639},
-{"pid":27443,"tid":27477,"ts":326459943404,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":553639},
-{"pid":27443,"tid":27477,"ts":326459947707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":553731,"id":"0xaf88a6f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326459947707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1099,"tdur":1098,"tts":553731},
-{"pid":27443,"tid":27477,"ts":326459947738,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1037,"tdur":1038,"tts":553761},
-{"pid":27443,"tid":27477,"ts":326459947738,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":553761},
-{"pid":27443,"tid":27477,"ts":326459947738,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1037,"tdur":1038,"tts":553761},
-{"pid":27443,"tid":27477,"ts":326459947768,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1007,"tdur":1007,"tts":553792},
-{"pid":27443,"tid":27477,"ts":326459947768,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":553792},
-{"pid":27443,"tid":27477,"ts":326459947768,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":553792},
-{"pid":27443,"tid":27477,"ts":326459947799,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":553822,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459947799,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":553822},
-{"pid":27443,"tid":27471,"ts":326459942397,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":244,"tdur":92,"tts":354341},
-{"pid":27443,"tid":27471,"ts":326459942610,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":354402},
-{"pid":27443,"tid":27471,"ts":326459942610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354402,"id":"0xaf88a6fff182217a"},
-{"pid":27443,"tid":27471,"ts":326459942641,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":354433},
-{"pid":27443,"tid":27471,"ts":326459942641,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":354433},
-{"pid":27443,"tid":27471,"ts":326459942641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354433,"id":"0xaf88a6f8f182217a"},
-{"pid":27443,"tid":27471,"ts":326459942671,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":354463},
-{"pid":27443,"tid":27471,"ts":326459942671,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":354463},
-{"pid":27443,"tid":27471,"ts":326459942671,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354463,"id":"0xaf88a6f9f182217a"},
-{"pid":27443,"tid":27471,"ts":326459948714,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":354524},
-{"pid":27443,"tid":27471,"ts":326459948745,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":354555},
-{"pid":27443,"tid":27471,"ts":326459948745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354555,"id":"0xaf88a6f6f182217a"},
-{"pid":27443,"tid":27471,"ts":326459948745,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":0,"tts":354585},
-{"pid":27443,"tid":27471,"ts":326459948775,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":354585},
-{"pid":27443,"tid":27471,"ts":326459948775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354585,"id":"0xaf88a6f7f182217a"},
-{"pid":27443,"tid":27471,"ts":326459948806,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":354616},
-{"pid":27443,"tid":27471,"ts":326459948806,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":354616},
-{"pid":27443,"tid":27471,"ts":326459948806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354616,"id":"0xaf88a6f0f182217a"},
-{"pid":27443,"tid":27546,"ts":326459956833,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":2380,"tdur":2381,"tts":51762},
-{"pid":27443,"tid":27546,"ts":326459956833,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":51762},
-{"pid":27443,"tid":27546,"ts":326459959183,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":54112},
-{"pid":27443,"tid":27498,"ts":326459965287,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":244,"tdur":244,"tts":48130},
-{"pid":27443,"tid":27498,"ts":326459965287,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":48161},
-{"pid":27443,"tid":27498,"ts":326459965500,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":48374},
-{"pid":27443,"tid":27471,"ts":326459970353,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":354646},
-{"pid":27443,"tid":27471,"ts":326459970384,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":354677},
-{"pid":27443,"tid":27471,"ts":326459970414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354707,"id":"0xaf88a68af182217a"},
-{"pid":27443,"tid":27469,"ts":326459970414,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":295803},
-{"pid":27443,"tid":27469,"ts":326459970414,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":295803},
-{"pid":27443,"tid":27469,"ts":326459970445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295833,"id":"0xaf88a68bf182217a"},
-{"pid":27443,"tid":27471,"ts":326459970445,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":354738},
-{"pid":27443,"tid":27471,"ts":326459970445,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":354738},
-{"pid":27443,"tid":27471,"ts":326459970445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354768,"id":"0xaf88a684f182217a"},
-{"pid":27443,"tid":27469,"ts":326459974992,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":31,"tts":295864},
-{"pid":27443,"tid":27469,"ts":326459975053,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":295895},
-{"pid":27443,"tid":27469,"ts":326459975053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295895,"id":"0xaf88a69cf182217a"},
-{"pid":27443,"tid":27469,"ts":326459975084,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":0,"tts":295925},
-{"pid":27443,"tid":27469,"ts":326459975084,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":295925},
-{"pid":27443,"tid":27469,"ts":326459975084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295925,"id":"0xaf88a69df182217a"},
-{"pid":27443,"tid":27469,"ts":326459975114,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":295956},
-{"pid":27443,"tid":27469,"ts":326459975114,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":295956},
-{"pid":27443,"tid":27469,"ts":326459975114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":295956,"id":"0xaf88a69ef182217a"},
-{"pid":27443,"tid":27496,"ts":326459984301,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":824,"tdur":794,"tts":61864},
-{"pid":27443,"tid":27496,"ts":326459984332,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":61864},
-{"pid":27443,"tid":27496,"ts":326459985095,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":62658},
-{"pid":27443,"tid":27469,"ts":326459990375,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":91,"tts":296017},
-{"pid":27443,"tid":27469,"ts":326459990405,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296017},
-{"pid":27443,"tid":27469,"ts":326459990436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296047,"id":"0xaf88a695f182217a"},
-{"pid":27443,"tid":27471,"ts":326459990466,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1282,"tdur":30,"tts":354799},
-{"pid":27443,"tid":27471,"ts":326459990466,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":354829},
-{"pid":27443,"tid":27471,"ts":326459990497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":354829,"id":"0xaf88a696f182217a"},
-{"pid":27443,"tid":27469,"ts":326459990497,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":296108},
-{"pid":27443,"tid":27469,"ts":326459990527,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296139},
-{"pid":27443,"tid":27469,"ts":326459990527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296139,"id":"0xaf88a697f182217a"},
-{"pid":27443,"tid":27546,"ts":326459995258,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":3632,"tdur":2076,"tts":54234},
-{"pid":27443,"tid":27546,"ts":326459995258,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":54234},
-{"pid":27443,"tid":27498,"ts":326459997211,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1404,"tdur":702,"tts":48435},
-{"pid":27443,"tid":27498,"ts":326459997211,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":48466},
-{"pid":27443,"tid":27498,"ts":326459998585,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":49137},
-{"pid":27443,"tid":27546,"ts":326459998890,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":56310},
-{"pid":27443,"tid":27469,"ts":326460008900,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":30,"tts":296200},
-{"pid":27443,"tid":27469,"ts":326460008961,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":296230},
-{"pid":27443,"tid":27469,"ts":326460008961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296230,"id":"0xaf88a6a9f182217a"},
-{"pid":27443,"tid":27469,"ts":326460008992,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":296261},
-{"pid":27443,"tid":27477,"ts":326459947829,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":553853},
-{"pid":27443,"tid":27477,"ts":326459947951,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":793,"tts":553975},
-{"pid":27443,"tid":27477,"ts":326459947982,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":116},"dur":213,"tdur":214,"tts":554005},
-{"pid":27443,"tid":27477,"ts":326459948226,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":116},"dur":30,"tdur":31,"tts":554249},
-{"pid":27443,"tid":27477,"ts":326459948256,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":116},"tts":554280},
-{"pid":27443,"tid":27477,"ts":326459948379,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":554402},
-{"pid":27443,"tid":27477,"ts":326459948379,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":554402},
-{"pid":27443,"tid":27477,"ts":326459948379,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":335,"tts":554433},
-{"pid":27443,"tid":27477,"ts":326459948409,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":152,"tts":554433},
-{"pid":27443,"tid":27477,"ts":326459948592,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":554616},
-{"pid":27443,"tid":27477,"ts":326459948592,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":554616},
-{"pid":27443,"tid":27477,"ts":326459948592,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":554616},
-{"pid":27443,"tid":27477,"ts":326459948623,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":554646},
-{"pid":27443,"tid":27477,"ts":326459948623,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":554646,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459948653,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":554677},
-{"pid":27443,"tid":27477,"ts":326459948653,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":554677},
-{"pid":27443,"tid":27477,"ts":326459948714,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":554738,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459948745,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":554768,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459948745,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":554768,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459948806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":554829,"id":"0xaf88a6f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326459948806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":554829},
-{"pid":27443,"tid":27477,"ts":326459948806,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":30,"tts":554860},
-{"pid":27443,"tid":27477,"ts":326459948836,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":554860,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459948836,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":554860},
-{"pid":27443,"tid":27477,"ts":326459948867,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":554890,"id":"0xaf88a6f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459948897,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":554921,"id":"0xaf88a6f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326459948897,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":554921},
-{"pid":27443,"tid":27477,"ts":326459948897,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":554921},
-{"pid":27443,"tid":27477,"ts":326459948928,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":554951,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459948928,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":554951},
-{"pid":27443,"tid":27477,"ts":326459948928,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":554951,"id":"0xaf88a6f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459948958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":554982,"id":"0xaf88a6f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326459948958,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":554982},
-{"pid":27443,"tid":27477,"ts":326459948958,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":0,"tts":555013},
-{"pid":27443,"tid":27477,"ts":326459948989,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":555013,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459948989,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":555013},
-{"pid":27443,"tid":27477,"ts":326459949019,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":555043,"id":"0xaf88a6f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326459949019,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1343,"tdur":1007,"tts":555043},
-{"pid":27443,"tid":27477,"ts":326459949019,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1343,"tdur":1007,"tts":555043},
-{"pid":27443,"tid":27477,"ts":326459949019,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":555043},
-{"pid":27443,"tid":27477,"ts":326459949050,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":555074},
-{"pid":27443,"tid":27477,"ts":326459949050,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":555074},{"pid":27443,"tid":27477,"ts":326459949081,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":555104},
-{"pid":27443,"tid":27477,"ts":326459949142,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1220,"tdur":885,"tts":555165},
-{"pid":27443,"tid":27477,"ts":326459949172,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1190,"tdur":854,"tts":555196},
-{"pid":27443,"tid":27477,"ts":326459949172,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1160,"tdur":824,"tts":555196},
-{"pid":27443,"tid":27477,"ts":326459949172,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":555196,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459949264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555287},
-{"pid":27443,"tid":27477,"ts":326459949264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":555287},
-{"pid":27443,"tid":27477,"ts":326459949294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":555318},
-{"pid":27443,"tid":27477,"ts":326459949325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555348},
-{"pid":27443,"tid":27477,"ts":326459949325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":555348},
-{"pid":27443,"tid":27477,"ts":326459949355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555379},
-{"pid":27443,"tid":27477,"ts":326459949386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555409},
-{"pid":27443,"tid":27477,"ts":326459949386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":555409},
-{"pid":27443,"tid":27477,"ts":326459949416,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555440},
-{"pid":27443,"tid":27477,"ts":326459949447,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555470},
-{"pid":27443,"tid":27477,"ts":326459949447,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":305,"tdur":31,"tts":555470},
-{"pid":27443,"tid":27477,"ts":326459949752,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555531},
-{"pid":27443,"tid":27477,"ts":326459949782,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555562},
-{"pid":27443,"tid":27477,"ts":326459949782,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":555562},
-{"pid":27443,"tid":27477,"ts":326459949813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555592},
-{"pid":27443,"tid":27477,"ts":326459949813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":555592},
-{"pid":27443,"tid":27477,"ts":326459949844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555623},
-{"pid":27443,"tid":27459,"ts":326459948714,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":550,"tdur":550,"tts":6956172},
-{"pid":27443,"tid":27459,"ts":326459948836,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":366,"tts":6956325},
-{"pid":27443,"tid":27459,"ts":326459948867,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6956325},
-{"pid":27443,"tid":27459,"ts":326459949172,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":75,"frame":"0x78c60000"}},"tts":6956630,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459949172,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":6956630},
-{"pid":27443,"tid":27459,"ts":326459949203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6956661,"id":"0xaf88a6f3f182217a"},
-{"pid":27443,"tid":27459,"ts":326459949233,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6956691},
-{"pid":27443,"tid":27459,"ts":326459949294,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":6956783},
-{"pid":27443,"tid":27459,"ts":326459949325,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6956783,"id":"0xaf88aa12f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459949447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6956905,"id":"0xaf88a673f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459949447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":6956905},
-{"pid":27443,"tid":27459,"ts":326459950698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6956996,"id":"0xaf88a60cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459950698,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":18556,"tdur":13338,"tts":6956996},
-{"pid":27443,"tid":27459,"ts":326459950729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6957027,"id":"0xaf88a60df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459950729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6957027,"id":"0xaf88a8daf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459950729,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":18525,"tdur":13307,"tts":6957027},
-{"pid":27443,"tid":27459,"ts":326459950759,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":117},"tts":6957057},
-{"pid":27443,"tid":27459,"ts":326459950759,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6957057},
-{"pid":27443,"tid":27459,"ts":326459950790,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":15138,"tdur":10194,"tts":6957118},
-{"pid":27443,"tid":27459,"ts":326459950820,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":6957118},
-{"pid":27443,"tid":27459,"ts":326459950881,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":75,"frame":"0x78c60000"}},"dur":15047,"tdur":10103,"tts":6957179},
-{"pid":27443,"tid":27459,"ts":326459950973,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":14924,"tdur":10011,"tts":6957271},
-{"pid":27443,"tid":27459,"ts":326459951003,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6957302},
-{"pid":27443,"tid":27459,"ts":326459951614,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6957912},
-{"pid":27443,"tid":27459,"ts":326459951705,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6958034},
-{"pid":27443,"tid":27459,"ts":326459951797,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6958095},
-{"pid":27443,"tid":27459,"ts":326459951797,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6958095},
-{"pid":27443,"tid":27459,"ts":326459951919,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6958217},
-{"pid":27443,"tid":27459,"ts":326459952041,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6958370},
-{"pid":27443,"tid":27459,"ts":326459952133,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6958431},
-{"pid":27443,"tid":27459,"ts":326459952163,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6958492},
-{"pid":27443,"tid":27459,"ts":326459952285,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6958614},
-{"pid":27443,"tid":27459,"ts":326459952285,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":6958614},
-{"pid":27443,"tid":27459,"ts":326459953628,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6958766},
-{"pid":27443,"tid":27459,"ts":326459953781,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6958889},
-{"pid":27443,"tid":27459,"ts":326459953781,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":671,"tdur":30,"tts":6958889},
-{"pid":27443,"tid":27459,"ts":326459954940,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6959468},
-{"pid":27443,"tid":27459,"ts":326459955185,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6959713},
-{"pid":27443,"tid":27459,"ts":326459955398,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6959926},
-{"pid":27443,"tid":27459,"ts":326459955520,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6960048},
-{"pid":27443,"tid":27459,"ts":326459959244,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6960659},
-{"pid":27443,"tid":27459,"ts":326459959274,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6960659},
-{"pid":27443,"tid":27459,"ts":326459959885,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6961300},
-{"pid":27443,"tid":27459,"ts":326459964890,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6966275},
-{"pid":27443,"tid":27459,"ts":326459964982,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6966366},
-{"pid":27443,"tid":27459,"ts":326459965043,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6966427},
-{"pid":27443,"tid":27459,"ts":326459965043,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6966427},
-{"pid":27443,"tid":27459,"ts":326459965134,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6966519},
-{"pid":27443,"tid":27459,"ts":326459965256,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6966641},
-{"pid":27443,"tid":27459,"ts":326459965562,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6966946},
-{"pid":27443,"tid":27459,"ts":326459965653,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6967038},
-{"pid":27443,"tid":27459,"ts":326459965867,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6967282},
-{"pid":27443,"tid":27459,"ts":326459965928,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2533,"tdur":2472,"tts":6967312},
-{"pid":27443,"tid":27459,"ts":326459965958,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6967373},
-{"pid":27443,"tid":27459,"ts":326459965989,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6967373},
-{"pid":27443,"tid":27459,"ts":326459965989,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6967404},
-{"pid":27443,"tid":27459,"ts":326459966538,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6967892},
-{"pid":27443,"tid":27459,"ts":326459966569,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6967892},
-{"pid":27443,"tid":27459,"ts":326459966599,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1862,"tdur":1861,"tts":6967923},
-{"pid":27443,"tid":27459,"ts":326459966630,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1678,"tdur":1679,"tts":6967953},
-{"pid":27443,"tid":27459,"ts":326459966630,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":427,"tdur":397,"tts":6967953},
-{"pid":27443,"tid":27459,"ts":326459967057,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":184,"tts":6968380},
-{"pid":27443,"tid":27459,"ts":326459967240,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":6968564},
-{"pid":27443,"tid":27459,"ts":326459967332,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":6968655},
-{"pid":27443,"tid":27477,"ts":326459949844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":555623},
-{"pid":27443,"tid":27477,"ts":326459949874,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":555653},
-{"pid":27443,"tid":27477,"ts":326459949905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555684},
-{"pid":27443,"tid":27477,"ts":326459949966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555745},
-{"pid":27443,"tid":27477,"ts":326459949966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":555776},
-{"pid":27443,"tid":27477,"ts":326459949996,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":122,"tdur":0,"tts":555776},
-{"pid":27443,"tid":27477,"ts":326459950118,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":555806},
-{"pid":27443,"tid":27477,"ts":326459950149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555837},
-{"pid":27443,"tid":27477,"ts":326459950179,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":555867},
-{"pid":27443,"tid":27477,"ts":326459950179,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":555867},
-{"pid":27443,"tid":27477,"ts":326459950240,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":555928},
-{"pid":27443,"tid":27477,"ts":326459950271,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":555959},
-{"pid":27443,"tid":27477,"ts":326459950271,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":555959},
-{"pid":27443,"tid":27477,"ts":326459950301,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":555989},
-{"pid":27443,"tid":27477,"ts":326459950332,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":556020},
-{"pid":27443,"tid":27477,"ts":326459950332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":556020,"id":"0xaf88a68cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459950393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":556081,"id":"0xaf88a6f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326459950393,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":556081},
-{"pid":27443,"tid":27477,"ts":326459950393,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":556081},
-{"pid":27443,"tid":27477,"ts":326459950423,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":556111},
-{"pid":27443,"tid":27477,"ts":326459950423,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":556111},
-{"pid":27443,"tid":27477,"ts":326459950423,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":556111},
-{"pid":27443,"tid":27477,"ts":326459950454,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":556142},
-{"pid":27443,"tid":27477,"ts":326459950484,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":556172},
-{"pid":27443,"tid":27477,"ts":326459950484,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":556203},
-{"pid":27443,"tid":27477,"ts":326459950515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":556233,"id":"0xaf88a6f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326459950545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":123,"tdur":122,"tts":556233},
-{"pid":27443,"tid":27477,"ts":326459950545,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":123,"tdur":122,"tts":556233},
-{"pid":27443,"tid":27477,"ts":326459950545,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":117},"tts":556233},
-{"pid":27443,"tid":27477,"ts":326459950607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":556294,"id":"0xaf88a8daf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459950637,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":556325,"id":"0xaf88a60cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459950668,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":556355},
-{"pid":27443,"tid":27477,"ts":326459950698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":556386,"id":"0xaf88a68cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459950698,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2228,"tdur":1495,"tts":556386},
-{"pid":27443,"tid":27477,"ts":326459950698,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2228,"tdur":1495,"tts":556386},
-{"pid":27443,"tid":27477,"ts":326459950698,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":556416},
-{"pid":27443,"tid":27477,"ts":326459950729,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2167,"tdur":1435,"tts":556416},
-{"pid":27443,"tid":27477,"ts":326459950759,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":116},"dur":733,"tdur":732,"tts":556447},
-{"pid":27443,"tid":27477,"ts":326459950759,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":116},"dur":214,"tdur":214,"tts":556447},
-{"pid":27443,"tid":27477,"ts":326459951003,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":116},"dur":31,"tdur":31,"tts":556691},
-{"pid":27443,"tid":27477,"ts":326459951034,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":116},"tts":556722},
-{"pid":27443,"tid":27477,"ts":326459951125,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":556813},
-{"pid":27443,"tid":27477,"ts":326459951125,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":556813},
-{"pid":27443,"tid":27477,"ts":326459951156,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":556844},
-{"pid":27443,"tid":27477,"ts":326459951156,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":556844},
-{"pid":27443,"tid":27477,"ts":326459951156,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":556874,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459951217,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":556905},
-{"pid":27443,"tid":27477,"ts":326459951492,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":557179},
-{"pid":27443,"tid":27477,"ts":326459951522,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1007,"tdur":275,"tts":557210},
-{"pid":27443,"tid":27477,"ts":326459951522,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":557210},
-{"pid":27443,"tid":27477,"ts":326459951553,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":946,"tdur":214,"tts":557240},
-{"pid":27443,"tid":27477,"ts":326459951644,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":0,"tdur":0,"tts":557332},
-{"pid":27443,"tid":27477,"ts":326459951675,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":557363,"id":"0xaf88aa13f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459952529,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":557485,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459952560,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":557515,"id":"0x300000064"},
-{"pid":27443,"tid":27477,"ts":326459952590,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":557546,"id":"0x300000065"},
-{"pid":27443,"tid":27477,"ts":326459952590,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":245,"tdur":244,"tts":557546},
-{"pid":27443,"tid":27477,"ts":326459952773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":557729,"id":"0xaf88aa2cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459952865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":557820,"id":"0xaf88a8dbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459952865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":557820,"id":"0xaf88a60ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459952926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459952},"tts":557881,"id":"0xaf88a6faf182217a"},
-{"pid":27443,"tid":27477,"ts":326459952926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":557881},
-{"pid":27443,"tid":27477,"ts":326459954208,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":557912,"id":"0xaf88a68df182217a"},
-{"pid":27443,"tid":27477,"ts":326459954238,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":123,"tdur":123,"tts":557942},
-{"pid":27443,"tid":27477,"ts":326459954238,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":123,"tdur":123,"tts":557942},
-{"pid":27443,"tid":27477,"ts":326459954269,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":557973,"id":"0x300000067"},
-{"pid":27443,"tid":27477,"ts":326459954300,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":558003},
-{"pid":27443,"tid":27477,"ts":326459954300,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":558003,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459954330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":558034,"id":"0xaf88a8d4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459954361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":558065,"id":"0xaf88a68ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459954391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":558095},
-{"pid":27443,"tid":27477,"ts":326459954391,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459957960.0,"frame_time_us":326459952137.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":91,"tts":558126},
-{"pid":27443,"tid":27477,"ts":326459954422,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459957960.0,"frame_time_us":326459952137.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":558126},
-{"pid":27443,"tid":27477,"ts":326459954483,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459968803},"dur":30,"tdur":30,"tts":558187},
-{"pid":27443,"tid":27477,"ts":326459954483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":558187,"id":"0xaf88a68ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459960373,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":558278,"id":"0xaf88a688f182217a"},
-{"pid":27443,"tid":27477,"ts":326459960373,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":558278},
-{"pid":27443,"tid":27477,"ts":326459960404,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":558309},
-{"pid":27443,"tid":27477,"ts":326459960434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":558339,"id":"0xaf88a8d5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459968919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":558461,"id":"0xaf88a689f182217a"},
-{"pid":27443,"tid":27477,"ts":326459968919,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1037,"tdur":1038,"tts":558461},
-{"pid":27443,"tid":27477,"ts":326459968949,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1007,"tts":558492},
-{"pid":27443,"tid":27477,"ts":326459968949,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":558492},
-{"pid":27443,"tid":27477,"ts":326459968980,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":976,"tdur":977,"tts":558522},
-{"pid":27443,"tid":27477,"ts":326459968980,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":976,"tdur":977,"tts":558522},
-{"pid":27443,"tid":27477,"ts":326459968980,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":558522},
-{"pid":27443,"tid":27477,"ts":326459969010,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":558553},
-{"pid":27443,"tid":27477,"ts":326459969010,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":558553,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459969010,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":558553},
-{"pid":27443,"tid":27477,"ts":326459969071,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":31,"tdur":30,"tts":558614},
-{"pid":27443,"tid":27477,"ts":326459969163,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":558705},
-{"pid":27443,"tid":27477,"ts":326459969193,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":117},"dur":245,"tdur":244,"tts":558736},
-{"pid":27443,"tid":27477,"ts":326459969438,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":117},"dur":30,"tdur":31,"tts":558980},
-{"pid":27443,"tid":27477,"ts":326459969499,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":117},"tts":559041},
-{"pid":27443,"tid":27477,"ts":326459969590,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":559133},
-{"pid":27443,"tid":27477,"ts":326459969590,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":305,"tts":559163},
-{"pid":27443,"tid":27477,"ts":326459969621,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":559163},
-{"pid":27443,"tid":27477,"ts":326459969743,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":559285},
-{"pid":27443,"tid":27477,"ts":326459969743,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":559285},
-{"pid":27443,"tid":27477,"ts":326459969743,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":559285},
-{"pid":27443,"tid":27477,"ts":326459969773,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":559316},
-{"pid":27443,"tid":27477,"ts":326459969773,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":559316,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459969804,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":559346},
-{"pid":27443,"tid":27477,"ts":326459969834,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":559377},
-{"pid":27443,"tid":27477,"ts":326459969895,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":559438,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459969895,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":559468,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459969926,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":559468,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459969987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459968},"tts":559530,"id":"0xaf88a68ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459969987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":559530},
-{"pid":27443,"tid":27477,"ts":326459969987,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":61,"tdur":61,"tts":559530},
-{"pid":27443,"tid":27477,"ts":326459970658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":559621,"id":"0xaf88a68af182217a"},
-{"pid":27443,"tid":27477,"ts":326459970689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":559652},
-{"pid":27443,"tid":27477,"ts":326459970689,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":559652},
-{"pid":27443,"tid":27477,"ts":326459970689,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":559682,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459970719,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":559682},
-{"pid":27443,"tid":27477,"ts":326459970750,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":559713,"id":"0xaf88a687f182217a"},
-{"pid":27443,"tid":27477,"ts":326459970750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":559713,"id":"0xaf88a68bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459970781,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":559743},
-{"pid":27443,"tid":27477,"ts":326459970781,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":559743},
-{"pid":27443,"tid":27477,"ts":326459970781,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":559743,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459970811,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":559774},
-{"pid":27443,"tid":27477,"ts":326459970811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":559774,"id":"0xaf88a680f182217a"},
-{"pid":27443,"tid":27477,"ts":326459970842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":559804,"id":"0xaf88a684f182217a"},
-{"pid":27443,"tid":27477,"ts":326459970842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":559835},
-{"pid":27443,"tid":27477,"ts":326459970872,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":559835},
-{"pid":27443,"tid":27477,"ts":326459970872,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":559835,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459970872,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":559835},
-{"pid":27443,"tid":27477,"ts":326459970903,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":559865,"id":"0xaf88a685f182217a"},
-{"pid":27443,"tid":27459,"ts":326459967362,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":916,"tdur":915,"tts":6968686},
-{"pid":27443,"tid":27459,"ts":326459968308,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":6969632},
-{"pid":27443,"tid":27459,"ts":326459968339,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6969662},
-{"pid":27443,"tid":27459,"ts":326459968461,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":117},"dur":397,"tdur":366,"tts":6969815},
-{"pid":27443,"tid":27459,"ts":326459968491,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":367,"tdur":366,"tts":6969815},
-{"pid":27443,"tid":27459,"ts":326459968705,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":0,"tdur":0,"tts":6970029},
-{"pid":27443,"tid":27459,"ts":326459968736,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":0,"tdur":0,"tts":6970059},
-{"pid":27443,"tid":27459,"ts":326459968736,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":30,"tdur":31,"tts":6970059},
-{"pid":27443,"tid":27459,"ts":326459968766,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":0,"tdur":0,"tts":6970090},
-{"pid":27443,"tid":27459,"ts":326459968766,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":31,"tdur":30,"tts":6970090},
-{"pid":27443,"tid":27459,"ts":326459968797,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":0,"tdur":0,"tts":6970120},
-{"pid":27443,"tid":27459,"ts":326459968797,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":30,"tdur":0,"tts":6970151},
-{"pid":27443,"tid":27459,"ts":326459968827,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":117},"dur":31,"tdur":0,"tts":6970151},
-{"pid":27443,"tid":27459,"ts":326459968858,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6970181,"id":"0x300000066"},
-{"pid":27443,"tid":27459,"ts":326459968858,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":335,"tdur":92,"tts":6970181},
-{"pid":27443,"tid":27459,"ts":326459968888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6970212,"id":"0xaf88a689f182217a"},
-{"pid":27443,"tid":27459,"ts":326459969224,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6970303},
-{"pid":27443,"tid":27459,"ts":326459969285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6970364,"id":"0xaf88a60df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459969316,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":6970395},
-{"pid":27443,"tid":27459,"ts":326459969316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6970395,"id":"0xaf88a60ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459969346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6970425,"id":"0xaf88a8dbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459969346,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":6970425},
-{"pid":27443,"tid":27459,"ts":326459969346,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":31,"tts":6970425},
-{"pid":27443,"tid":27459,"ts":326459969407,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6970486,"id":"0xaf88a60ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459969438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1160,"tts":6970517},
-{"pid":27443,"tid":27459,"ts":326459969438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6970517,"id":"0xaf88a8d4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459969468,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1313,"tdur":1130,"tts":6970547},
-{"pid":27443,"tid":27459,"ts":326459969499,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1282,"tdur":1069,"tts":6970608},
-{"pid":27443,"tid":27459,"ts":326459969529,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6970608,"id":"0x300000067"},
-{"pid":27443,"tid":27459,"ts":326459969560,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1098,"tdur":916,"tts":6970639},
-{"pid":27443,"tid":27459,"ts":326459969590,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1068,"tdur":886,"tts":6970669},
-{"pid":27443,"tid":27459,"ts":326459969621,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":6970700},
-{"pid":27443,"tid":27459,"ts":326459969651,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6970761},
-{"pid":27443,"tid":27459,"ts":326459969712,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6970792},
-{"pid":27443,"tid":27459,"ts":326459969743,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6970822},
-{"pid":27443,"tid":27459,"ts":326459969743,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":6970853},
-{"pid":27443,"tid":27459,"ts":326459969804,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6970883},
-{"pid":27443,"tid":27459,"ts":326459969834,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6970914},
-{"pid":27443,"tid":27459,"ts":326459969865,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":793,"tdur":611,"tts":6970944},
-{"pid":27443,"tid":27459,"ts":326459970048,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":580,"tdur":397,"tts":6971127},
-{"pid":27443,"tid":27459,"ts":326459970079,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6971158},
-{"pid":27443,"tid":27459,"ts":326459970536,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":76,"frame":"0x78c60000"}},"tts":6971432,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459970567,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":6971463},
-{"pid":27443,"tid":27459,"ts":326459970567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6971463,"id":"0xaf88a685f182217a"},
-{"pid":27443,"tid":27459,"ts":326459970597,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6971493},
-{"pid":27443,"tid":27459,"ts":326459970689,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6971585},
-{"pid":27443,"tid":27459,"ts":326459970719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6971616,"id":"0xaf88aa2df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459970811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6971707,"id":"0xaf88a60ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459970842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6971738},
-{"pid":27443,"tid":27459,"ts":326459970842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6971738,"id":"0xaf88a608f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459970872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6971768,"id":"0xaf88a8d5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459970872,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":6971768},
-{"pid":27443,"tid":27459,"ts":326459970872,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":6971768},
-{"pid":27443,"tid":27459,"ts":326459970933,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6971829,"id":"0xaf88a608f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459970933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6971829},
-{"pid":27443,"tid":27459,"ts":326459972673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6971921,"id":"0xaf88a609f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459972673,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16847,"tdur":16176,"tts":6971921},
-{"pid":27443,"tid":27459,"ts":326459972703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6971951,"id":"0xaf88a60af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459972703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6971951,"id":"0xaf88a8d6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459972734,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16786,"tdur":16115,"tts":6971982},
-{"pid":27443,"tid":27459,"ts":326459972734,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":118},"tts":6971982},
-{"pid":27443,"tid":27459,"ts":326459972734,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":6971982},
-{"pid":27443,"tid":27459,"ts":326459972795,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12910,"tdur":12788,"tts":6972043},
-{"pid":27443,"tid":27459,"ts":326459972825,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6972073},
-{"pid":27443,"tid":27466,"ts":326459970781,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":296505},
-{"pid":27443,"tid":27466,"ts":326459970781,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":296505,"id":"0xccc49302"},
-{"pid":27443,"tid":27466,"ts":326459971513,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":296627},
-{"pid":27443,"tid":27466,"ts":326459971513,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":62,"tts":296657},
-{"pid":27443,"tid":27466,"ts":326459971544,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":296657,"id":"0xba452402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459971544,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":62,"tts":296657},
-{"pid":27443,"tid":27466,"ts":326459971574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296688,"id":"0xaf88a681f182217a"},
-{"pid":27443,"tid":27466,"ts":326459974046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":296810,"id":"0xaf88aa2ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459974077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":296841},
-{"pid":27443,"tid":27466,"ts":326459974077,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":296841,"id":"0xccc49506"},
-{"pid":27443,"tid":27466,"ts":326459974260,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":296932},
-{"pid":27443,"tid":27466,"ts":326459974290,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":296963},
-{"pid":27443,"tid":27466,"ts":326459974290,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":296963,"id":"0xc4c17c0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459974596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":297054,"id":"0xaf88aa2ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459974596,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":30,"tts":297085},
-{"pid":27443,"tid":27466,"ts":326459974626,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":297085,"id":"0xccc49602"},
-{"pid":27443,"tid":27466,"ts":326459976457,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":122,"tts":297176},
-{"pid":27443,"tid":27466,"ts":326459976488,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":274,"tdur":91,"tts":297207},
-{"pid":27443,"tid":27466,"ts":326459976488,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":297207,"id":"0xba452502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459976732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297268,"id":"0xaf88a699f182217a"},
-{"pid":27443,"tid":27466,"ts":326459989245,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":297359},
-{"pid":27443,"tid":27466,"ts":326459989276,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":297390},
-{"pid":27443,"tid":27466,"ts":326459989306,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":297421,"id":"0xba452702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459989337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297451,"id":"0xaf88a69bf182217a"},
-{"pid":27443,"tid":27466,"ts":326459990863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":297543,"id":"0xaf88aa28f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459990863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":297543},
-{"pid":27443,"tid":27466,"ts":326459990863,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":297573,"id":"0xccc49702"},
-{"pid":27443,"tid":27466,"ts":326459991565,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":297665},
-{"pid":27443,"tid":27466,"ts":326459991595,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":297695},
-{"pid":27443,"tid":27466,"ts":326459991595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":297726,"id":"0xba452802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459991626,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":297726},
-{"pid":27443,"tid":27466,"ts":326459991656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297756,"id":"0xaf88a693f182217a"},
-{"pid":27443,"tid":27466,"ts":326459993182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":297848,"id":"0xaf88aa29f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459993182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":297848},
-{"pid":27443,"tid":27466,"ts":326459993182,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":297878,"id":"0xccc49906"},
-{"pid":27443,"tid":27466,"ts":326459993396,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":297970},
-{"pid":27443,"tid":27466,"ts":326459993427,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":298000},
-{"pid":27443,"tid":27466,"ts":326459993427,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":298000,"id":"0xc4c17f0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459993976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":298092,"id":"0xaf88aa2af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326459994007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":298122},
-{"pid":27443,"tid":27466,"ts":326459994007,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":298122,"id":"0xccc49a02"},
-{"pid":27443,"tid":27466,"ts":326459996845,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":793,"tdur":214,"tts":298214},
-{"pid":27443,"tid":27466,"ts":326459996875,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":763,"tdur":183,"tts":298245},
-{"pid":27443,"tid":27466,"ts":326459996875,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":306,"tdur":0,"tts":298245},
-{"pid":27443,"tid":27466,"ts":326459997181,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":298306,"id":"0xba452902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326459997242,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298336,"id":"0xaf88a6adf182217a"},
-{"pid":27443,"tid":27466,"ts":326460004414,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":152,"tts":298489},
-{"pid":27443,"tid":27466,"ts":326460004475,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":298519},
-{"pid":27443,"tid":27466,"ts":326460004475,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":298550,"id":"0xba452b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460004536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298580,"id":"0xaf88a6aef182217a"},
-{"pid":27443,"tid":27466,"ts":326460009633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":298702,"id":"0xaf88aa2bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460009633,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":298702},
-{"pid":27443,"tid":27466,"ts":326460009663,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":298733,"id":"0xccc49b02"},
-{"pid":27443,"tid":27466,"ts":326460010518,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":298794},
-{"pid":27443,"tid":27466,"ts":326460010549,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":298824},
-{"pid":27443,"tid":27466,"ts":326460010579,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":298855,"id":"0xba452c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460010579,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":298885},
-{"pid":27443,"tid":27466,"ts":326460010610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298885,"id":"0xaf88a6a0f182217a"},
-{"pid":27443,"tid":27466,"ts":326460011861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":299008,"id":"0xaf88aa24f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460011861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":299008},
-{"pid":27443,"tid":27466,"ts":326460011891,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299038,"id":"0xccc49c06"},
-{"pid":27443,"tid":27466,"ts":326460012105,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":299130},
-{"pid":27443,"tid":27466,"ts":326460012136,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":299160},
-{"pid":27443,"tid":27466,"ts":326460012166,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299191,"id":"0xc4c1820a","bp":"e"},
-{"pid":27443,"tid":27477,"ts":326459970903,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":559865},
-{"pid":27443,"tid":27477,"ts":326459970933,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":559896},
-{"pid":27443,"tid":27477,"ts":326459970933,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":559896,"id":"0xaf88a686f182217a"},
-{"pid":27443,"tid":27477,"ts":326459970964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":671,"tdur":92,"tts":559926},
-{"pid":27443,"tid":27477,"ts":326459970964,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459974641.0,"frame_time_us":326459968818.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":641,"tdur":92,"tts":559926},
-{"pid":27443,"tid":27477,"ts":326459970994,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459974641.0,"frame_time_us":326459968818.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":611,"tdur":61,"tts":559957},
-{"pid":27443,"tid":27477,"ts":326459971025,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326459985484},"dur":580,"tdur":31,"tts":559987},
-{"pid":27443,"tid":27477,"ts":326459971025,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":549,"tdur":0,"tts":559987},
-{"pid":27443,"tid":27477,"ts":326459971605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":560018,"id":"0xaf88a682f182217a"},
-{"pid":27443,"tid":27477,"ts":326459971635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":560048,"id":"0xaf88a687f182217a"},
-{"pid":27443,"tid":27477,"ts":326459971635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1068,"tdur":1069,"tts":560048},
-{"pid":27443,"tid":27477,"ts":326459971635,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1068,"tdur":1069,"tts":560048},
-{"pid":27443,"tid":27477,"ts":326459971666,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":560079},
-{"pid":27443,"tid":27477,"ts":326459971666,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":560079},
-{"pid":27443,"tid":27477,"ts":326459971696,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":560109},
-{"pid":27443,"tid":27477,"ts":326459971696,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":560109},
-{"pid":27443,"tid":27477,"ts":326459971788,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":915,"tdur":916,"tts":560201},
-{"pid":27443,"tid":27477,"ts":326459971788,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":915,"tdur":916,"tts":560201},
-{"pid":27443,"tid":27477,"ts":326459971788,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":763,"tdur":763,"tts":560201},
-{"pid":27443,"tid":27477,"ts":326459971818,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":560231,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459971879,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":560293},
-{"pid":27443,"tid":27477,"ts":326459971910,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":560323},
-{"pid":27443,"tid":27477,"ts":326459971940,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560354},
-{"pid":27443,"tid":27477,"ts":326459971971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560384},
-{"pid":27443,"tid":27477,"ts":326459971971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":560384},
-{"pid":27443,"tid":27477,"ts":326459972001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560415},
-{"pid":27443,"tid":27477,"ts":326459972001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":560415},
-{"pid":27443,"tid":27477,"ts":326459972032,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560445},
-{"pid":27443,"tid":27477,"ts":326459972062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560476},
-{"pid":27443,"tid":27477,"ts":326459972062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560476},
-{"pid":27443,"tid":27477,"ts":326459972093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560506},
-{"pid":27443,"tid":27477,"ts":326459972093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":560506},
-{"pid":27443,"tid":27477,"ts":326459972123,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560537},
-{"pid":27443,"tid":27477,"ts":326459972123,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":560537},
-{"pid":27443,"tid":27477,"ts":326459972154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":560567},
-{"pid":27443,"tid":27477,"ts":326459972184,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560598},
-{"pid":27443,"tid":27477,"ts":326459972184,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":560598},
-{"pid":27443,"tid":27477,"ts":326459972215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560628},
-{"pid":27443,"tid":27477,"ts":326459972215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":560628},
-{"pid":27443,"tid":27477,"ts":326459972245,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560659},
-{"pid":27443,"tid":27477,"ts":326459972307,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":560720},
-{"pid":27443,"tid":27477,"ts":326459972337,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560750},
-{"pid":27443,"tid":27477,"ts":326459972337,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":560750},
-{"pid":27443,"tid":27477,"ts":326459972368,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":560781},
-{"pid":27443,"tid":27477,"ts":326459972398,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560811},
-{"pid":27443,"tid":27477,"ts":326459972398,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":560811},
-{"pid":27443,"tid":27477,"ts":326459972429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":560842},
-{"pid":27443,"tid":27477,"ts":326459972459,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":560872},
-{"pid":27443,"tid":27477,"ts":326459972490,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":560903},
-{"pid":27443,"tid":27477,"ts":326459972520,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":560933},
-{"pid":27443,"tid":27477,"ts":326459972520,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":560933},
-{"pid":27443,"tid":27477,"ts":326459972551,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":118},"tts":560964},
-{"pid":27443,"tid":27477,"ts":326459972612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":561025,"id":"0xaf88a8d6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459972612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":561025,"id":"0xaf88a609f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459972642,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":561056},
-{"pid":27443,"tid":27477,"ts":326459972673,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":561086},
-{"pid":27443,"tid":27477,"ts":326459972673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":561086,"id":"0xaf88a683f182217a"},
-{"pid":27443,"tid":27477,"ts":326459972703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":561117,"id":"0xaf88a680f182217a"},
-{"pid":27443,"tid":27477,"ts":326459972703,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":561117},
-{"pid":27443,"tid":27477,"ts":326459972734,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":561147},
-{"pid":27443,"tid":27477,"ts":326459972734,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":561147},
-{"pid":27443,"tid":27477,"ts":326459972734,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":561147},
-{"pid":27443,"tid":27477,"ts":326459972764,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":561178},
-{"pid":27443,"tid":27477,"ts":326459972764,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":561178},
-{"pid":27443,"tid":27477,"ts":326459972825,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":561239},
-{"pid":27443,"tid":27477,"ts":326459972825,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":561239},
-{"pid":27443,"tid":27477,"ts":326459972856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":561269,"id":"0xaf88a681f182217a"},
-{"pid":27443,"tid":27477,"ts":326459972856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":561269},
-{"pid":27443,"tid":27477,"ts":326459972886,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":91,"tts":561300},
-{"pid":27443,"tid":27477,"ts":326459972886,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":561300,"id":"0x300000068"},
-{"pid":27443,"tid":27477,"ts":326459972917,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":561330},
-{"pid":27443,"tid":27477,"ts":326459972917,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":561330,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459972947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":561361,"id":"0xaf88a8d7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459972978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":561391,"id":"0xaf88a60bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459973008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":561422,"id":"0xaf88a683f182217a"},
-{"pid":27443,"tid":27477,"ts":326459973008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2717,"tdur":1617,"tts":561422},
-{"pid":27443,"tid":27477,"ts":326459973008,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2686,"tdur":1587,"tts":561422},
-{"pid":27443,"tid":27477,"ts":326459973039,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":561452},
-{"pid":27443,"tid":27477,"ts":326459973039,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1587,"tdur":1282,"tts":561452},
-{"pid":27443,"tid":27477,"ts":326459973070,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":117},"dur":763,"tdur":763,"tts":561483},
-{"pid":27443,"tid":27477,"ts":326459973070,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":117},"dur":244,"tdur":244,"tts":561483},
-{"pid":27443,"tid":27477,"ts":326459973314,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":117},"dur":30,"tdur":31,"tts":561727},
-{"pid":27443,"tid":27477,"ts":326459973344,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":117},"tts":561758},
-{"pid":27443,"tid":27477,"ts":326459973436,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":561849},
-{"pid":27443,"tid":27477,"ts":326459973466,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":561880},
-{"pid":27443,"tid":27477,"ts":326459973466,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":561880},
-{"pid":27443,"tid":27477,"ts":326459973466,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":561880},
-{"pid":27443,"tid":27477,"ts":326459973497,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":561910,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459973558,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":561971},
-{"pid":27443,"tid":27477,"ts":326459973802,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":562215},
-{"pid":27443,"tid":27477,"ts":326459973833,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":579,"tdur":275,"tts":562246},
-{"pid":27443,"tid":27477,"ts":326459973833,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":562246},
-{"pid":27443,"tid":27477,"ts":326459973863,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":488,"tdur":183,"tts":562276},
-{"pid":27443,"tid":27477,"ts":326459973924,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":31,"tdur":31,"tts":562337},
-{"pid":27443,"tid":27477,"ts":326459973955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":562398,"id":"0xaf88aa2ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459974382,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":562490,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459974412,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":562521,"id":"0x300000066"},
-{"pid":27443,"tid":27477,"ts":326459974443,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":562551},
-{"pid":27443,"tid":27477,"ts":326459974535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":562643,"id":"0xaf88aa2ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459974596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":562704,"id":"0xaf88a8d0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459974657,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1037,"tdur":244,"tts":562765},
-{"pid":27443,"tid":27477,"ts":326459974657,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":244,"tdur":244,"tts":562765},
-{"pid":27443,"tid":27477,"ts":326459974657,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":562765},
-{"pid":27443,"tid":27477,"ts":326459974748,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":562856},
-{"pid":27443,"tid":27477,"ts":326459974748,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":562856},
-{"pid":27443,"tid":27477,"ts":326459974748,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":562856},
-{"pid":27443,"tid":27477,"ts":326459974779,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":562887},
-{"pid":27443,"tid":27477,"ts":326459974779,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":562887,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459974809,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":562917},
-{"pid":27443,"tid":27477,"ts":326459974809,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":562917},
-{"pid":27443,"tid":27477,"ts":326459974870,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":562978,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459974870,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":562978,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459974901,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":563009,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459975725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563039,"id":"0xaf88a69cf182217a"},
-{"pid":27443,"tid":27477,"ts":326459975755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":91,"tts":563070},
-{"pid":27443,"tid":27477,"ts":326459975755,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":122,"tdur":91,"tts":563070},
-{"pid":27443,"tid":27477,"ts":326459975816,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":563100,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459975847,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":563131},
-{"pid":27443,"tid":27477,"ts":326459975847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":563131,"id":"0xaf88a69ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459975877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563161,"id":"0xaf88a69df182217a"},
-{"pid":27443,"tid":27477,"ts":326459975877,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":92,"tts":563161},
-{"pid":27443,"tid":27477,"ts":326459975908,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":61,"tts":563192},
-{"pid":27443,"tid":27477,"ts":326459975908,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":563192,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459975908,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":91,"tdur":61,"tts":563192},
-{"pid":27443,"tid":27477,"ts":326459975969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":563253,"id":"0xaf88a698f182217a"},
-{"pid":27443,"tid":27477,"ts":326459975999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563253,"id":"0xaf88a69ef182217a"},
-{"pid":27443,"tid":27477,"ts":326459976030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":563284},
-{"pid":27443,"tid":27477,"ts":326459976030,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":563284},
-{"pid":27443,"tid":27459,"ts":326459972856,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":76,"frame":"0x78c60000"}},"dur":12818,"tdur":12727,"tts":6972104},
-{"pid":27443,"tid":27459,"ts":326459972947,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":12727,"tdur":12636,"tts":6972195},
-{"pid":27443,"tid":27459,"ts":326459972947,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6972226},
-{"pid":27443,"tid":27459,"ts":326459976885,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6976041},
-{"pid":27443,"tid":27459,"ts":326459977312,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6976499},
-{"pid":27443,"tid":27459,"ts":326459977526,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6976682},
-{"pid":27443,"tid":27459,"ts":326459977892,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6977048},
-{"pid":27443,"tid":27459,"ts":326459977983,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6977140},
-{"pid":27443,"tid":27459,"ts":326459978075,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6977231},
-{"pid":27443,"tid":27459,"ts":326459978105,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6977292},
-{"pid":27443,"tid":27459,"ts":326459978227,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6977384},
-{"pid":27443,"tid":27459,"ts":326459978868,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6978025},
-{"pid":27443,"tid":27459,"ts":326459979021,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6978208},
-{"pid":27443,"tid":27459,"ts":326459979113,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6978300},
-{"pid":27443,"tid":27459,"ts":326459979265,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6978422},
-{"pid":27443,"tid":27459,"ts":326459979723,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6978879},
-{"pid":27443,"tid":27459,"ts":326459979815,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6978971},
-{"pid":27443,"tid":27459,"ts":326459979876,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6979032},
-{"pid":27443,"tid":27459,"ts":326459979967,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6979124},
-{"pid":27443,"tid":27459,"ts":326459979998,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6979154},
-{"pid":27443,"tid":27459,"ts":326459979998,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6979154},
-{"pid":27443,"tid":27459,"ts":326459980242,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6979398},
-{"pid":27443,"tid":27459,"ts":326459980364,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6979520},
-{"pid":27443,"tid":27459,"ts":326459980578,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6979734},
-{"pid":27443,"tid":27459,"ts":326459980730,"ph":"B","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":6979887},
-{"pid":27443,"tid":27459,"ts":326459980822,"ph":"E","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":6980009},
-{"pid":27443,"tid":27459,"ts":326459980852,"ph":"B","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":6980009},
-{"pid":27443,"tid":27459,"ts":326459980883,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6980039},
-{"pid":27443,"tid":27459,"ts":326459980944,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6980100},
-{"pid":27443,"tid":27459,"ts":326459980974,"ph":"E","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":6980131},
-{"pid":27443,"tid":27459,"ts":326459981127,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6980283},
-{"pid":27443,"tid":27459,"ts":326459981218,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6980375},
-{"pid":27443,"tid":27459,"ts":326459981249,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6980436},
-{"pid":27443,"tid":27459,"ts":326459981371,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6980528},
-{"pid":27443,"tid":27459,"ts":326459981585,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6980741},
-{"pid":27443,"tid":27459,"ts":326459981676,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6980833},
-{"pid":27443,"tid":27459,"ts":326459981737,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6980894},
-{"pid":27443,"tid":27459,"ts":326459981798,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6980985},
-{"pid":27443,"tid":27459,"ts":326459981920,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6981107},
-{"pid":27443,"tid":27459,"ts":326459982073,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6981229},
-{"pid":27443,"tid":27459,"ts":326459982165,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6981321},
-{"pid":27443,"tid":27459,"ts":326459982287,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6981443},
-{"pid":27443,"tid":27459,"ts":326459983538,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6982694},
-{"pid":27443,"tid":27459,"ts":326459983660,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6982847},
-{"pid":27443,"tid":27459,"ts":326459983752,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6982908},
-{"pid":27443,"tid":27459,"ts":326459983752,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6982939},
-{"pid":27443,"tid":27459,"ts":326459983874,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6983030},
-{"pid":27443,"tid":27459,"ts":326459984057,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6983213},
-{"pid":27443,"tid":27459,"ts":326459984118,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6983274},
-{"pid":27443,"tid":27459,"ts":326459984301,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6983457},
-{"pid":27443,"tid":27459,"ts":326459985217,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6984373},
-{"pid":27443,"tid":27459,"ts":326459985552,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6984709},
-{"pid":27443,"tid":27459,"ts":326459985644,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6984800},
-{"pid":27443,"tid":27459,"ts":326459985705,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2930,"tdur":2625,"tts":6984861},
-{"pid":27443,"tid":27459,"ts":326459985735,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6984892},
-{"pid":27443,"tid":27459,"ts":326459985766,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6984922},
-{"pid":27443,"tid":27459,"ts":326459985766,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6984922},
-{"pid":27443,"tid":27459,"ts":326459986224,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6985411},
-{"pid":27443,"tid":27459,"ts":326459986254,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6985441},
-{"pid":27443,"tid":27459,"ts":326459986315,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2320,"tdur":2014,"tts":6985472},
-{"pid":27443,"tid":27459,"ts":326459986346,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2106,"tdur":1801,"tts":6985502},
-{"pid":27443,"tid":27459,"ts":326459986346,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":397,"tdur":397,"tts":6985502},
-{"pid":27443,"tid":27459,"ts":326459986743,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":335,"tdur":183,"tts":6985930},
-{"pid":27443,"tid":27459,"ts":326459987078,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":6986113},
-{"pid":27443,"tid":27477,"ts":326459976030,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":563284,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459976061,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":563314},
-{"pid":27443,"tid":27477,"ts":326459976091,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563345,"id":"0xaf88a69ff182217a"},
-{"pid":27443,"tid":27477,"ts":326459976091,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":152,"tts":563345},
-{"pid":27443,"tid":27477,"ts":326459976091,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":183,"tdur":152,"tts":563345},
-{"pid":27443,"tid":27477,"ts":326459976091,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":563345},
-{"pid":27443,"tid":27477,"ts":326459976122,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":563375},
-{"pid":27443,"tid":27477,"ts":326459976122,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":92,"tts":563375},
-{"pid":27443,"tid":27477,"ts":326459976183,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":563406},
-{"pid":27443,"tid":27477,"ts":326459976244,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":563467},
-{"pid":27443,"tid":27477,"ts":326459976274,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":563497},
-{"pid":27443,"tid":27477,"ts":326459976274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563497,"id":"0xaf88a698f182217a"},
-{"pid":27443,"tid":27477,"ts":326459976305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":641,"tdur":152,"tts":563528},
-{"pid":27443,"tid":27477,"ts":326459976305,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":641,"tdur":152,"tts":563528},
-{"pid":27443,"tid":27477,"ts":326459976305,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":549,"tdur":61,"tts":563528},
-{"pid":27443,"tid":27477,"ts":326459976305,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":549,"tdur":0,"tts":563558},
-{"pid":27443,"tid":27477,"ts":326459976854,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":563589},
-{"pid":27443,"tid":27477,"ts":326459976885,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":563619},
-{"pid":27443,"tid":27477,"ts":326459976915,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":563650},
-{"pid":27443,"tid":27477,"ts":326459976946,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":563680},
-{"pid":27443,"tid":27477,"ts":326459976976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563711,"id":"0xaf88a699f182217a"},
-{"pid":27443,"tid":27477,"ts":326459976976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":563711},
-{"pid":27443,"tid":27477,"ts":326459977007,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":563741},
-{"pid":27443,"tid":27477,"ts":326459977037,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":563772,"id":"0xaf88a8d1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459985583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459985},"tts":563833,"id":"0xaf88a682f182217a"},
-{"pid":27443,"tid":27477,"ts":326459985613,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":563863},
-{"pid":27443,"tid":27477,"ts":326459989184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":563924,"id":"0xaf88a69af182217a"},
-{"pid":27443,"tid":27477,"ts":326459989184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1069,"tdur":1069,"tts":563924},
-{"pid":27443,"tid":27477,"ts":326459989184,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1069,"tdur":1069,"tts":563924},
-{"pid":27443,"tid":27477,"ts":326459989215,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":563955},
-{"pid":27443,"tid":27477,"ts":326459989215,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1038,"tdur":1007,"tts":563955},
-{"pid":27443,"tid":27477,"ts":326459989215,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1007,"tdur":1007,"tts":563955},
-{"pid":27443,"tid":27477,"ts":326459989245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":62,"tts":563985},
-{"pid":27443,"tid":27477,"ts":326459989276,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":564016},
-{"pid":27443,"tid":27477,"ts":326459989276,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":564016,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459989306,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":564047},
-{"pid":27443,"tid":27477,"ts":326459989337,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":564077},
-{"pid":27443,"tid":27477,"ts":326459989428,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":763,"tts":564199},
-{"pid":27443,"tid":27477,"ts":326459989459,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":118},"dur":244,"tdur":214,"tts":564199},
-{"pid":27443,"tid":27477,"ts":326459989703,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":118},"dur":31,"tdur":31,"tts":564443},
-{"pid":27443,"tid":27477,"ts":326459989734,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":118},"tts":564474},
-{"pid":27443,"tid":27477,"ts":326459989856,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":564596},
-{"pid":27443,"tid":27477,"ts":326459989856,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":564596},
-{"pid":27443,"tid":27477,"ts":326459989856,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":336,"tts":564626},
-{"pid":27443,"tid":27477,"ts":326459989886,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":564626},
-{"pid":27443,"tid":27477,"ts":326459990039,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":564779},
-{"pid":27443,"tid":27477,"ts":326459990039,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":564779},
-{"pid":27443,"tid":27477,"ts":326459990039,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":564779},
-{"pid":27443,"tid":27477,"ts":326459990069,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":91,"tts":564810},
-{"pid":27443,"tid":27477,"ts":326459990069,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":564810,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459990100,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":564840},
-{"pid":27443,"tid":27477,"ts":326459990100,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":564840},
-{"pid":27443,"tid":27477,"ts":326459990161,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":564901,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459990191,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":564932,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459990191,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":564932,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326459990253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":564993,"id":"0xaf88a69bf182217a"},
-{"pid":27443,"tid":27477,"ts":326459990253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":564993},
-{"pid":27443,"tid":27477,"ts":326459990283,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326459991323.0,"frame_time_us":326459985500.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":565023},
-{"pid":27443,"tid":27477,"ts":326459990314,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326459991323.0,"frame_time_us":326459985500.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":565054},
-{"pid":27443,"tid":27477,"ts":326459990344,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460002166},"dur":31,"tdur":31,"tts":565084},
-{"pid":27443,"tid":27477,"ts":326459990375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":565115,"id":"0xaf88a694f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":565206,"id":"0xaf88a695f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":565206},
-{"pid":27443,"tid":27477,"ts":326459990558,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":565237},
-{"pid":27443,"tid":27459,"ts":326459987200,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":6986235},{"pid":27443,"tid":27459,"ts":326459987231,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1221,"tdur":1007,"tts":6986296},
-{"pid":27443,"tid":27459,"ts":326459988482,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":6987334},
-{"pid":27443,"tid":27459,"ts":326459988513,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":6987364},
-{"pid":27443,"tid":27459,"ts":326459988635,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":118},"dur":427,"tdur":427,"tts":6987486},
-{"pid":27443,"tid":27459,"ts":326459988665,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":396,"tts":6987517},
-{"pid":27443,"tid":27459,"ts":326459988879,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":31,"tdur":31,"tts":6987730},
-{"pid":27443,"tid":27459,"ts":326459988910,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":0,"tdur":0,"tts":6987761},
-{"pid":27443,"tid":27459,"ts":326459988910,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":30,"tdur":0,"tts":6987791},
-{"pid":27443,"tid":27459,"ts":326459988940,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":31,"tdur":31,"tts":6987791},
-{"pid":27443,"tid":27459,"ts":326459988971,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":0,"tdur":0,"tts":6987822},
-{"pid":27443,"tid":27459,"ts":326459988971,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":30,"tdur":30,"tts":6987822},
-{"pid":27443,"tid":27459,"ts":326459989001,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":31,"tdur":31,"tts":6987852},
-{"pid":27443,"tid":27459,"ts":326459989032,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":118},"dur":30,"tdur":30,"tts":6987883},
-{"pid":27443,"tid":27459,"ts":326459989062,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":6987913,"id":"0x300000067"},
-{"pid":27443,"tid":27459,"ts":326459989093,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":92,"tts":6987944},
-{"pid":27443,"tid":27459,"ts":326459989093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6987944,"id":"0xaf88a69af182217a"},
-{"pid":27443,"tid":27459,"ts":326459989489,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":6988066},
-{"pid":27443,"tid":27459,"ts":326459989581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459986},"tts":6988158,"id":"0xaf88a643f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459989581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":6988158},
-{"pid":27443,"tid":27459,"ts":326459989612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6988188,"id":"0xaf88a604f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459989642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6988219,"id":"0xaf88a60af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459989642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1251,"tdur":1190,"tts":6988249},
-{"pid":27443,"tid":27459,"ts":326459989673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6988249,"id":"0xaf88a605f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459989703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6988280,"id":"0xaf88a8d7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459989703,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1159,"tts":6988280},
-{"pid":27443,"tid":27459,"ts":326459989764,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1068,"tts":6988341},
-{"pid":27443,"tid":27459,"ts":326459989764,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":6988341,"id":"0x300000068"},
-{"pid":27443,"tid":27459,"ts":326459989795,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":946,"tts":6988371},
-{"pid":27443,"tid":27459,"ts":326459989825,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":915,"tts":6988402},
-{"pid":27443,"tid":27459,"ts":326459989886,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6988463},
-{"pid":27443,"tid":27459,"ts":326459989917,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6988493},
-{"pid":27443,"tid":27459,"ts":326459989947,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":6988554},
-{"pid":27443,"tid":27459,"ts":326459989978,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":0,"tts":6988615},
-{"pid":27443,"tid":27459,"ts":326459989978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":6988615},
-{"pid":27443,"tid":27459,"ts":326459990069,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6988646},
-{"pid":27443,"tid":27459,"ts":326459990100,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6988676},
-{"pid":27443,"tid":27459,"ts":326459990130,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":6988707},
-{"pid":27443,"tid":27459,"ts":326459990161,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":6988737},
-{"pid":27443,"tid":27459,"ts":326459990314,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":397,"tts":6988890},
-{"pid":27443,"tid":27459,"ts":326459990344,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6988921},
-{"pid":27443,"tid":27459,"ts":326459990619,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":77,"frame":"0x78c60000"}},"tts":6989195,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326459990619,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":0,"tts":6989226},
-{"pid":27443,"tid":27459,"ts":326459990649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6989226,"id":"0xaf88a691f182217a"},
-{"pid":27443,"tid":27459,"ts":326459990680,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6989256},
-{"pid":27443,"tid":27459,"ts":326459990771,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":6989348},
-{"pid":27443,"tid":27459,"ts":326459990771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6989378,"id":"0xaf88aa28f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326459990893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6989470,"id":"0xaf88a60bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459990924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6989501},
-{"pid":27443,"tid":27459,"ts":326459990924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6989501,"id":"0xaf88a8d0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459990954,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":6989531},
-{"pid":27443,"tid":27459,"ts":326459990954,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6989531},
-{"pid":27443,"tid":27459,"ts":326459990985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6989562,"id":"0xaf88a605f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459991016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":6989592},
-{"pid":27443,"tid":27459,"ts":326459991016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6989592,"id":"0xaf88a606f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459991046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6989623,"id":"0xaf88a8d1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326459991046,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":6989623},
-{"pid":27443,"tid":27459,"ts":326459991046,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":6989623},
-{"pid":27443,"tid":27459,"ts":326459991656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6989714,"id":"0xaf88a606f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459991656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":6989714},
-{"pid":27443,"tid":27459,"ts":326459991870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":6989836,"id":"0xaf88a607f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459991870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16481,"tdur":12025,"tts":6989836},
-{"pid":27443,"tid":27459,"ts":326459991901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6989867,"id":"0xaf88a600f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326459991901,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":6989867,"id":"0xaf88a8d2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459990558,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":565237,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459990588,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":0,"tts":565267},
-{"pid":27443,"tid":27477,"ts":326459990588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":565267,"id":"0xaf88a690f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":565298,"id":"0xaf88a696f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990619,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":565298},
-{"pid":27443,"tid":27477,"ts":326459990619,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":31,"tts":565328},
-{"pid":27443,"tid":27477,"ts":326459990649,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":565328,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459990649,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":565328},
-{"pid":27443,"tid":27477,"ts":326459990680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":565359,"id":"0xaf88a692f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":565389,"id":"0xaf88a697f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990710,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":565389},
-{"pid":27443,"tid":27477,"ts":326459990710,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":565389},
-{"pid":27443,"tid":27477,"ts":326459990741,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":565420,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326459990741,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":565420},
-{"pid":27443,"tid":27477,"ts":326459990741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":565420,"id":"0xaf88a690f182217a"},
-{"pid":27443,"tid":27477,"ts":326459990771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":946,"tdur":947,"tts":565450},
-{"pid":27443,"tid":27477,"ts":326459990771,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":946,"tdur":947,"tts":565450},
-{"pid":27443,"tid":27477,"ts":326459990771,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":565450},
-{"pid":27443,"tid":27477,"ts":326459990771,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":565481},
-{"pid":27443,"tid":27477,"ts":326459990802,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":565481},
-{"pid":27443,"tid":27477,"ts":326459990802,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":565481},
-{"pid":27443,"tid":27477,"ts":326459990893,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":794,"tdur":793,"tts":565573},
-{"pid":27443,"tid":27477,"ts":326459990924,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":565603},
-{"pid":27443,"tid":27477,"ts":326459990924,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":732,"tdur":733,"tts":565603},
-{"pid":27443,"tid":27477,"ts":326459990924,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":565603,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326459990985,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":565664},
-{"pid":27443,"tid":27477,"ts":326459991016,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":565695},
-{"pid":27443,"tid":27477,"ts":326459991046,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565725},
-{"pid":27443,"tid":27477,"ts":326459991077,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565756},
-{"pid":27443,"tid":27477,"ts":326459991077,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":565756},
-{"pid":27443,"tid":27477,"ts":326459991107,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565786},
-{"pid":27443,"tid":27477,"ts":326459991138,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565817},
-{"pid":27443,"tid":27477,"ts":326459991138,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":565817},
-{"pid":27443,"tid":27477,"ts":326459991168,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565847},
-{"pid":27443,"tid":27477,"ts":326459991168,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":565878},
-{"pid":27443,"tid":27477,"ts":326459991199,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":565878},
-{"pid":27443,"tid":27477,"ts":326459991229,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565908},
-{"pid":27443,"tid":27477,"ts":326459991229,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":565908},
-{"pid":27443,"tid":27477,"ts":326459991260,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565939},
-{"pid":27443,"tid":27477,"ts":326459991260,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":565939},
-{"pid":27443,"tid":27477,"ts":326459991290,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":565969},
-{"pid":27443,"tid":27477,"ts":326459991290,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":566000},
-{"pid":27443,"tid":27477,"ts":326459991321,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":566000},
-{"pid":27443,"tid":27477,"ts":326459991351,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":566030},
-{"pid":27443,"tid":27477,"ts":326459991351,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":566030},
-{"pid":27443,"tid":27477,"ts":326459991412,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":566091},
-{"pid":27443,"tid":27477,"ts":326459991443,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":566122},
-{"pid":27443,"tid":27477,"ts":326459991473,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":566152},
-{"pid":27443,"tid":27477,"ts":326459991473,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":566183},
-{"pid":27443,"tid":27477,"ts":326459991504,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":566183},
-{"pid":27443,"tid":27477,"ts":326459991534,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":566213},
-{"pid":27443,"tid":27477,"ts":326459991534,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":566213},
-{"pid":27443,"tid":27477,"ts":326459991595,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":566275},
-{"pid":27443,"tid":27477,"ts":326459991626,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":566305},
-{"pid":27443,"tid":27477,"ts":326459991626,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":566305},
-{"pid":27443,"tid":27477,"ts":326459991656,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":566336},
-{"pid":27443,"tid":27477,"ts":326459991656,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":0,"tts":566366},
-{"pid":27443,"tid":27477,"ts":326459991687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":566366,"id":"0xaf88a6acf182217a"},
-{"pid":27443,"tid":27477,"ts":326459991717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":566397,"id":"0xaf88a691f182217a"},
-{"pid":27443,"tid":27477,"ts":326459991717,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":152,"tts":566397},
-{"pid":27443,"tid":27477,"ts":326459991717,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":122,"tts":566427},
-{"pid":27443,"tid":27477,"ts":326459991748,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":119},"tts":566427},
-{"pid":27443,"tid":27477,"ts":326459991809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":566488,"id":"0xaf88a8d2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459991809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":566488,"id":"0xaf88a607f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459991840,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":566519},
-{"pid":27443,"tid":27477,"ts":326459991870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":566549,"id":"0xaf88a692f182217a"},
-{"pid":27443,"tid":27477,"ts":326459991901,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":566580},
-{"pid":27443,"tid":27477,"ts":326459991901,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":91,"tts":566580},
-{"pid":27443,"tid":27477,"ts":326459991901,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":566580},
-{"pid":27443,"tid":27477,"ts":326459991901,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":566580},
-{"pid":27443,"tid":27477,"ts":326459991931,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":31,"tts":566610},
-{"pid":27443,"tid":27477,"ts":326459991931,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":566610},
-{"pid":27443,"tid":27477,"ts":326459991992,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":566671},
-{"pid":27443,"tid":27477,"ts":326459991992,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":566671},
-{"pid":27443,"tid":27477,"ts":326459992023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":566702,"id":"0xaf88a693f182217a"},
-{"pid":27443,"tid":27477,"ts":326459992023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":566702},
-{"pid":27443,"tid":27477,"ts":326459992023,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":566702},
-{"pid":27443,"tid":27477,"ts":326459992053,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":566732,"id":"0x300000069"},
-{"pid":27443,"tid":27477,"ts":326459992053,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":566732},
-{"pid":27443,"tid":27477,"ts":326459992084,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":566763,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459992114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":566793,"id":"0xaf88a8d3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459992114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":566793,"id":"0xaf88a601f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326459992145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":566824,"id":"0xaf88a6acf182217a"},
-{"pid":27443,"tid":27477,"ts":326459992175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1862,"tdur":1374,"tts":566854},
-{"pid":27443,"tid":27477,"ts":326459992175,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1862,"tdur":1374,"tts":566854},
-{"pid":27443,"tid":27477,"ts":326459992175,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":566854},
-{"pid":27443,"tid":27477,"ts":326459992206,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1831,"tdur":1343,"tts":566885},
-{"pid":27443,"tid":27477,"ts":326459992206,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":118},"dur":732,"tdur":732,"tts":566885},
-{"pid":27443,"tid":27477,"ts":326459992236,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":118},"dur":214,"tdur":214,"tts":566915},
-{"pid":27443,"tid":27477,"ts":326459992450,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":118},"dur":30,"tdur":31,"tts":567129},
-{"pid":27443,"tid":27477,"ts":326459992480,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":118},"tts":567160},
-{"pid":27443,"tid":27477,"ts":326459992572,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":567251},
-{"pid":27443,"tid":27477,"ts":326459992572,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":567251},
-{"pid":27443,"tid":27477,"ts":326459992603,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":567282},
-{"pid":27443,"tid":27477,"ts":326459992603,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":567282},
-{"pid":27443,"tid":27477,"ts":326459992603,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":567312,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459992664,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":567343},
-{"pid":27443,"tid":27477,"ts":326459992938,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":567617},
-{"pid":27443,"tid":27477,"ts":326459992969,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":244,"tts":567648},
-{"pid":27443,"tid":27477,"ts":326459992969,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":567648},
-{"pid":27443,"tid":27477,"ts":326459992969,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":214,"tts":567648},
-{"pid":27443,"tid":27477,"ts":326459993060,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":31,"tdur":31,"tts":567739},
-{"pid":27443,"tid":27477,"ts":326459993091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":567770,"id":"0xaf88aa29f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459993518,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":567892,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326459993549,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":567923,"id":"0x300000067"},
-{"pid":27443,"tid":27477,"ts":326459993579,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":397,"tdur":214,"tts":567953},
-{"pid":27443,"tid":27477,"ts":326459993915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":568106,"id":"0xaf88aa2af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326459994007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":568197,"id":"0xaf88a8ecf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326459998401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":568289,"id":"0xaf88a6adf182217a"},
-{"pid":27443,"tid":27477,"ts":326459998401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":568289},
-{"pid":27443,"tid":27477,"ts":326459998432,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":568319},
-{"pid":27443,"tid":27477,"ts":326459998462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":568350,"id":"0xaf88a8edf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460002247,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460002},"tts":568441,"id":"0xaf88a694f182217a"},
-{"pid":27443,"tid":27477,"ts":326460002278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":568472},
-{"pid":27443,"tid":27477,"ts":326460004628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":568503,"id":"0xaf88a6aef182217a"},
-{"pid":27443,"tid":27477,"ts":326460004628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":213,"tts":568503},
-{"pid":27443,"tid":27477,"ts":326460004689,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460008005.0,"frame_time_us":326460002182.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":568564},
-{"pid":27443,"tid":27477,"ts":326460004689,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460008005.0,"frame_time_us":326460002182.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":568564},
-{"pid":27443,"tid":27477,"ts":326460004780,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460018848},"dur":31,"tdur":31,"tts":568655},
-{"pid":27443,"tid":27477,"ts":326460004811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":568686,"id":"0xaf88a6aff182217a"},
-{"pid":27443,"tid":27477,"ts":326460007985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":568747,"id":"0xaf88a6a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460008015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1038,"tdur":1038,"tts":568777},
-{"pid":27443,"tid":27477,"ts":326460008015,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1038,"tdur":1038,"tts":568777},
-{"pid":27443,"tid":27477,"ts":326460008015,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":31,"tts":568777},
-{"pid":27443,"tid":27477,"ts":326460008046,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":946,"tdur":946,"tts":568808},
-{"pid":27443,"tid":27477,"ts":326460008046,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":946,"tdur":946,"tts":568808},
-{"pid":27443,"tid":27477,"ts":326460008046,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":568808},
-{"pid":27443,"tid":27477,"ts":326460008076,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":568838},
-{"pid":27443,"tid":27459,"ts":326459991931,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16420,"tdur":11934,"tts":6989897},
-{"pid":27443,"tid":27459,"ts":326459991931,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":119},"tts":6989897},
-{"pid":27443,"tid":27459,"ts":326459991962,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":6989928},
-{"pid":27443,"tid":27459,"ts":326459991992,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":10133,"tdur":8546,"tts":6989958},
-{"pid":27443,"tid":27459,"ts":326459992023,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":6989989},
-{"pid":27443,"tid":27459,"ts":326459992053,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":77,"frame":"0x78c60000"}},"dur":10072,"tdur":8485,"tts":6990019},
-{"pid":27443,"tid":27459,"ts":326459992114,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9980,"tdur":8393,"tts":6990080},
-{"pid":27443,"tid":27459,"ts":326459992145,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":6990111},
-{"pid":27443,"tid":27459,"ts":326459993335,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6991301},
-{"pid":27443,"tid":27459,"ts":326459993427,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6991393},
-{"pid":27443,"tid":27459,"ts":326459993457,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6991454},
-{"pid":27443,"tid":27459,"ts":326459993488,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6991454},
-{"pid":27443,"tid":27459,"ts":326459993579,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6991545},
-{"pid":27443,"tid":27459,"ts":326459993671,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6991637},
-{"pid":27443,"tid":27459,"ts":326459993976,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6991973},
-{"pid":27443,"tid":27459,"ts":326459994037,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6992034},
-{"pid":27443,"tid":27459,"ts":326459994159,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6992125},
-{"pid":27443,"tid":27459,"ts":326459994251,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6992217},
-{"pid":27443,"tid":27459,"ts":326459994342,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6992308},
-{"pid":27443,"tid":27459,"ts":326459994373,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6992339},
-{"pid":27443,"tid":27459,"ts":326459994464,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6992430},
-{"pid":27443,"tid":27459,"ts":326459994708,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6992675},
-{"pid":27443,"tid":27459,"ts":326459994770,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6992736},
-{"pid":27443,"tid":27459,"ts":326459994800,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6992766},
-{"pid":27443,"tid":27459,"ts":326459994861,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":6992827},
-{"pid":27443,"tid":27459,"ts":326459995227,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6993193},
-{"pid":27443,"tid":27459,"ts":326459995258,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6993224},
-{"pid":27443,"tid":27459,"ts":326459995319,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":6993316},
-{"pid":27443,"tid":27459,"ts":326459995380,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6993346},
-{"pid":27443,"tid":27459,"ts":326459995533,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6993499},
-{"pid":27443,"tid":27459,"ts":326459999103,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6995727},
-{"pid":27443,"tid":27459,"ts":326459999287,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6995910},
-{"pid":27443,"tid":27459,"ts":326459999317,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6995940},
-{"pid":27443,"tid":27459,"ts":326459999714,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":6996337},
-{"pid":27443,"tid":27459,"ts":326460002094,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":6998473},
-{"pid":27443,"tid":27459,"ts":326460002155,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":5036,"tdur":2716,"tts":6998535},
-{"pid":27443,"tid":27459,"ts":326460002186,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":6998565},
-{"pid":27443,"tid":27459,"ts":326460002339,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":6998626},
-{"pid":27443,"tid":27459,"ts":326460002369,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":6998657},
-{"pid":27443,"tid":27459,"ts":326460005146,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":6999206},
-{"pid":27443,"tid":27459,"ts":326460005177,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":6999237},
-{"pid":27443,"tid":27459,"ts":326460005207,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1954,"tdur":1922,"tts":6999298},
-{"pid":27443,"tid":27459,"ts":326460005238,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1770,"tdur":1770,"tts":6999298},
-{"pid":27443,"tid":27459,"ts":326460005238,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":397,"tdur":396,"tts":6999298},
-{"pid":27443,"tid":27459,"ts":326460005635,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":6999694},
-{"pid":27443,"tid":27459,"ts":326460005848,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":92,"tts":6999908},
-{"pid":27443,"tid":27459,"ts":326460005970,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7000030},
-{"pid":27443,"tid":27459,"ts":326460005970,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1008,"tdur":1007,"tts":7000030},
-{"pid":27443,"tid":27459,"ts":326460007008,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":7001068},
-{"pid":27443,"tid":27459,"ts":326460007039,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7001098},
-{"pid":27443,"tid":27459,"ts":326460007191,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":119},"dur":611,"tdur":397,"tts":7001251},
-{"pid":27443,"tid":27459,"ts":326460007191,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":611,"tdur":397,"tts":7001251},
-{"pid":27443,"tid":27459,"ts":326460007619,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":30,"tdur":31,"tts":7001464},
-{"pid":27443,"tid":27459,"ts":326460007649,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":31,"tdur":0,"tts":7001526},
-{"pid":27443,"tid":27459,"ts":326460007680,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":30,"tdur":30,"tts":7001526},
-{"pid":27443,"tid":27459,"ts":326460007710,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":0,"tdur":0,"tts":7001556},
-{"pid":27443,"tid":27459,"ts":326460007741,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":0,"tdur":0,"tts":7001587},
-{"pid":27443,"tid":27459,"ts":326460007741,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":30,"tdur":0,"tts":7001617},
-{"pid":27443,"tid":27459,"ts":326460007771,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":119},"dur":31,"tdur":31,"tts":7001617},
-{"pid":27443,"tid":27459,"ts":326460007802,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7001678,"id":"0x300000068"},
-{"pid":27443,"tid":27459,"ts":326460007832,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":458,"tdur":122,"tts":7001678},
-{"pid":27443,"tid":27459,"ts":326460007863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7001709,"id":"0xaf88a6a8f182217a"},
-{"pid":27443,"tid":27459,"ts":326460008321,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7001831},
-{"pid":27443,"tid":27459,"ts":326460008382,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7001892,"id":"0xaf88a600f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460008076,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":568838,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460008107,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":568869},
-{"pid":27443,"tid":27477,"ts":326460008137,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":568899},
-{"pid":27443,"tid":27477,"ts":326460008260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":701,"tdur":702,"tts":569021},
-{"pid":27443,"tid":27477,"ts":326460008260,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":119},"dur":244,"tdur":214,"tts":569052},
-{"pid":27443,"tid":27477,"ts":326460008504,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":119},"dur":30,"tdur":30,"tts":569266},
-{"pid":27443,"tid":27477,"ts":326460008565,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":119},"tts":569327},
-{"pid":27443,"tid":27477,"ts":326460008656,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":569418},
-{"pid":27443,"tid":27477,"ts":326460008687,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":274,"tdur":274,"tts":569449},
-{"pid":27443,"tid":27477,"ts":326460008687,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":569449},
-{"pid":27443,"tid":27477,"ts":326460008778,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":569540},
-{"pid":27443,"tid":27477,"ts":326460008809,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":569571},
-{"pid":27443,"tid":27477,"ts":326460008809,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":569571},
-{"pid":27443,"tid":27477,"ts":326460008839,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":569601},
-{"pid":27443,"tid":27477,"ts":326460008839,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":569601,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460008839,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":569632},
-{"pid":27443,"tid":27477,"ts":326460008870,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":569632},
-{"pid":27443,"tid":27477,"ts":326460008931,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":569693,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460008961,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":569723,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460008961,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":569723,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460009053,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":569815,"id":"0xaf88a6a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460009084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":569845},
-{"pid":27443,"tid":27477,"ts":326460009084,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":569845},
-{"pid":27443,"tid":27477,"ts":326460009084,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":569845,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460009114,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":0,"tts":569876},
-{"pid":27443,"tid":27477,"ts":326460009114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":569876,"id":"0xaf88a6a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460009145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":569906,"id":"0xaf88a6aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326460009145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":569906},
-{"pid":27443,"tid":27477,"ts":326460009145,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":569937},
-{"pid":27443,"tid":27477,"ts":326460009175,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":569937,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460009175,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":569937},
-{"pid":27443,"tid":27477,"ts":326460009206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":569967,"id":"0xaf88a6a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460009206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":569967,"id":"0xaf88a6abf182217a"},
-{"pid":27443,"tid":27477,"ts":326460009236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":569998},
-{"pid":27443,"tid":27477,"ts":326460009236,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":569998},
-{"pid":27443,"tid":27477,"ts":326460009236,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":569998,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460009236,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":569998},
-{"pid":27443,"tid":27477,"ts":326460009267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":570029,"id":"0xaf88a6a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460009267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1282,"tdur":1037,"tts":570029},
-{"pid":27443,"tid":27477,"ts":326460009297,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1221,"tdur":977,"tts":570059},
-{"pid":27443,"tid":27477,"ts":326460009297,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":570059},
-{"pid":27443,"tid":27477,"ts":326460009297,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":570059},
-{"pid":27443,"tid":27477,"ts":326460009328,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":570090},
-{"pid":27443,"tid":27477,"ts":326460009328,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":570090},
-{"pid":27443,"tid":27477,"ts":326460009389,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1129,"tdur":885,"tts":570151},
-{"pid":27443,"tid":27477,"ts":326460009419,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1099,"tdur":855,"tts":570181},
-{"pid":27443,"tid":27477,"ts":326460009419,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1069,"tdur":824,"tts":570181},
-{"pid":27443,"tid":27477,"ts":326460009419,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":570181,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460009511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570273},
-{"pid":27443,"tid":27477,"ts":326460009511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":570273},
-{"pid":27443,"tid":27477,"ts":326460009541,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":570303},
-{"pid":27443,"tid":27477,"ts":326460009572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570334},
-{"pid":27443,"tid":27477,"ts":326460009602,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570364},
-{"pid":27443,"tid":27477,"ts":326460009602,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570364},
-{"pid":27443,"tid":27477,"ts":326460009633,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570395},
-{"pid":27443,"tid":27477,"ts":326460009633,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":570395},
-{"pid":27443,"tid":27477,"ts":326460009663,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570425},
-{"pid":27443,"tid":27477,"ts":326460009694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":275,"tdur":30,"tts":570456},
-{"pid":27443,"tid":27477,"ts":326460009694,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":30,"tts":570456},
-{"pid":27443,"tid":27477,"ts":326460009969,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":570486},
-{"pid":27443,"tid":27477,"ts":326460009999,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570517},
-{"pid":27443,"tid":27477,"ts":326460009999,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":570517},
-{"pid":27443,"tid":27477,"ts":326460009999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":570517},
-{"pid":27443,"tid":27477,"ts":326460010060,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":570578},
-{"pid":27443,"tid":27459,"ts":326460008382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1251,"tdur":1221,"tts":7001892},
-{"pid":27443,"tid":27459,"ts":326460008412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7001922,"id":"0xaf88a602f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460008443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7001953,"id":"0xaf88a8d3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460008443,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1190,"tdur":1160,"tts":7001953},
-{"pid":27443,"tid":27459,"ts":326460008504,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1098,"tdur":1068,"tts":7002014},
-{"pid":27443,"tid":27459,"ts":326460008504,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7002014,"id":"0x300000069"},
-{"pid":27443,"tid":27459,"ts":326460008534,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":977,"tdur":947,"tts":7002044},
-{"pid":27443,"tid":27459,"ts":326460008565,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":916,"tts":7002075},
-{"pid":27443,"tid":27459,"ts":326460008626,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7002136},
-{"pid":27443,"tid":27459,"ts":326460008656,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7002166},
-{"pid":27443,"tid":27459,"ts":326460008687,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7002197},
-{"pid":27443,"tid":27459,"ts":326460008717,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7002228},
-{"pid":27443,"tid":27459,"ts":326460008748,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7002258},
-{"pid":27443,"tid":27459,"ts":326460008778,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7002289},
-{"pid":27443,"tid":27459,"ts":326460008809,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7002319},
-{"pid":27443,"tid":27459,"ts":326460008839,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":672,"tdur":641,"tts":7002350},
-{"pid":27443,"tid":27459,"ts":326460008992,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":488,"tdur":458,"tts":7002502},
-{"pid":27443,"tid":27459,"ts":326460009023,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7002533},
-{"pid":27443,"tid":27459,"ts":326460009389,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":78,"frame":"0x78c60000"}},"tts":7002868,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460009419,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":7002899},
-{"pid":27443,"tid":27459,"ts":326460009419,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7002899,"id":"0xaf88a6a6f182217a"},
-{"pid":27443,"tid":27459,"ts":326460009450,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7002929},
-{"pid":27443,"tid":27459,"ts":326460009541,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7003021},
-{"pid":27443,"tid":27459,"ts":326460009541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7003021,"id":"0xaf88aa2bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460009663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7003143,"id":"0xaf88a601f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460009663,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7003143},
-{"pid":27443,"tid":27459,"ts":326460009694,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7003174,"id":"0xaf88a8ecf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460009694,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7003174},
-{"pid":27443,"tid":27459,"ts":326460009694,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":7003204},
-{"pid":27443,"tid":27459,"ts":326460009755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7003235,"id":"0xaf88a602f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460009755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7003235},
-{"pid":27443,"tid":27459,"ts":326460009786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7003265,"id":"0xaf88a603f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460009786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7003265,"id":"0xaf88a8edf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460009786,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7003265},
-{"pid":27443,"tid":27459,"ts":326460009816,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7003296},
-{"pid":27443,"tid":27459,"ts":326460009847,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7003326,"id":"0xaf88a603f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460009877,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7003357},
-{"pid":27443,"tid":27459,"ts":326460010823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7003418,"id":"0xaf88a61cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460010854,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7935,"tdur":6288,"tts":7003448},
-{"pid":27443,"tid":27459,"ts":326460010854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7003448,"id":"0xaf88a61df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460010884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7003479,"id":"0xaf88a8eef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460010884,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":7905,"tdur":6257,"tts":7003479},
-{"pid":27443,"tid":27459,"ts":326460010884,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":120},"tts":7003479},
-{"pid":27443,"tid":27459,"ts":326460010915,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7003509},
-{"pid":27443,"tid":27459,"ts":326460010945,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3632,"tdur":3357,"tts":7003540},
-{"pid":27443,"tid":27459,"ts":326460010976,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7003570},
-{"pid":27443,"tid":27459,"ts":326460011037,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":78,"frame":"0x78c60000"}},"dur":3540,"tdur":3266,"tts":7003631},
-{"pid":27443,"tid":27459,"ts":326460011098,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3449,"tdur":3144,"tts":7003723},
-{"pid":27443,"tid":27459,"ts":326460011128,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7003723},
-{"pid":27443,"tid":27459,"ts":326460014547,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7006867},
-{"pid":27443,"tid":27459,"ts":326460014577,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2320,"tdur":2289,"tts":7006928},
-{"pid":27443,"tid":27459,"ts":326460014638,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7006958},
-{"pid":27443,"tid":27459,"ts":326460014638,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7006958},
-{"pid":27443,"tid":27459,"ts":326460014669,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7006989},
-{"pid":27443,"tid":27459,"ts":326460015066,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7007385},
-{"pid":27443,"tid":27459,"ts":326460015096,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7007416},
-{"pid":27443,"tid":27459,"ts":326460015127,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1739,"tdur":1740,"tts":7007446},
-{"pid":27443,"tid":27459,"ts":326460015127,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1587,"tdur":1588,"tts":7007446},
-{"pid":27443,"tid":27459,"ts":326460015157,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":7007477},
-{"pid":27443,"tid":27459,"ts":326460015493,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":153,"tts":7007843},
-{"pid":27443,"tid":27459,"ts":326460015676,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":7007996},
-{"pid":27443,"tid":27459,"ts":326460015768,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":7008087},
-{"pid":27443,"tid":27459,"ts":326460015798,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":916,"tdur":916,"tts":7008118},
-{"pid":27443,"tid":27459,"ts":326460016714,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":7009034},
-{"pid":27443,"tid":27469,"ts":326460008992,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296261},
-{"pid":27443,"tid":27469,"ts":326460009023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296291,"id":"0xaf88a6aaf182217a"},
-{"pid":27443,"tid":27469,"ts":326460009023,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":296291},
-{"pid":27443,"tid":27469,"ts":326460009053,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296322},
-{"pid":27443,"tid":27469,"ts":326460009053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296352,"id":"0xaf88a6abf182217a"},
-{"pid":27443,"tid":27469,"ts":326460018606,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":296383},
-{"pid":27443,"tid":27469,"ts":326460018636,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":296413},
-{"pid":27443,"tid":27469,"ts":326460018667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296413,"id":"0xaf88a6a3f182217a"},
-{"pid":27443,"tid":27469,"ts":326460018667,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":296413},
-{"pid":27443,"tid":27469,"ts":326460018697,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296444},
-{"pid":27443,"tid":27469,"ts":326460018697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296444,"id":"0xaf88a6bcf182217a"},
-{"pid":27443,"tid":27469,"ts":326460018728,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":296474},
-{"pid":27443,"tid":27469,"ts":326460018728,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":296474},
-{"pid":27443,"tid":27469,"ts":326460018728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296505,"id":"0xaf88a6bdf182217a"},
-{"pid":27443,"tid":27469,"ts":326460031119,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":296535},
-{"pid":27443,"tid":27469,"ts":326460031150,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":296566},
-{"pid":27443,"tid":27469,"ts":326460031150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296596,"id":"0xaf88a6b6f182217a"},
-{"pid":27443,"tid":27469,"ts":326460031180,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":62,"tts":296596},
-{"pid":27443,"tid":27469,"ts":326460031211,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":296627},
-{"pid":27443,"tid":27469,"ts":326460031211,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296627,"id":"0xaf88a6b7f182217a"},
-{"pid":27443,"tid":27469,"ts":326460031241,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":296658},
-{"pid":27443,"tid":27469,"ts":326460031241,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296658},
-{"pid":27443,"tid":27469,"ts":326460031241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296658,"id":"0xaf88a6b0f182217a"},
-{"pid":27443,"tid":27469,"ts":326460049248,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":296719},
-{"pid":27443,"tid":27469,"ts":326460049279,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":296749},
-{"pid":27443,"tid":27469,"ts":326460049279,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296749,"id":"0xaf88a749f182217a"},
-{"pid":27443,"tid":27469,"ts":326460049309,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":306,"tdur":61,"tts":296780},
-{"pid":27443,"tid":27469,"ts":326460049340,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":275,"tdur":31,"tts":296810},
-{"pid":27443,"tid":27471,"ts":326460049401,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":275,"tdur":61,"tts":354951},
-{"pid":27443,"tid":27471,"ts":326460049401,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":244,"tdur":61,"tts":354951},
-{"pid":27443,"tid":27469,"ts":326460049340,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296810,"id":"0xaf88a74af182217a"},
-{"pid":27443,"tid":27471,"ts":326460049645,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355012,"id":"0xaf88a74bf182217a"},
-{"pid":27443,"tid":27496,"ts":326460064112,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1556,"tdur":1404,"tts":62719},
-{"pid":27443,"tid":27496,"ts":326460064142,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":62749},
-{"pid":27443,"tid":27496,"ts":326460065638,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":64123},
-{"pid":27443,"tid":27469,"ts":326460071864,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":296871},
-{"pid":27443,"tid":27469,"ts":326460071894,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":296902},
-{"pid":27443,"tid":27469,"ts":326460071925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296932,"id":"0xaf88a75ef182217a"},
-{"pid":27443,"tid":27469,"ts":326460071925,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":296932},
-{"pid":27443,"tid":27469,"ts":326460071956,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":296963},
-{"pid":27443,"tid":27469,"ts":326460071956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":296963,"id":"0xaf88a75ff182217a"},
-{"pid":27443,"tid":27471,"ts":326460071956,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":355043},
-{"pid":27443,"tid":27471,"ts":326460071986,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":355074},
-{"pid":27443,"tid":27471,"ts":326460072017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355104,"id":"0xaf88a758f182217a"},
-{"pid":27443,"tid":27469,"ts":326460102384,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":297024},
-{"pid":27443,"tid":27469,"ts":326460102445,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":297085},
-{"pid":27443,"tid":27469,"ts":326460102445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297085,"id":"0xaf88a753f182217a"},
-{"pid":27443,"tid":27469,"ts":326460102476,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":297115},
-{"pid":27443,"tid":27469,"ts":326460102476,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":297115},
-{"pid":27443,"tid":27469,"ts":326460102506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297146,"id":"0xaf88a76cf182217a"},
-{"pid":27443,"tid":27469,"ts":326460102506,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":297146},
-{"pid":27443,"tid":27469,"ts":326460102537,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":297176},
-{"pid":27443,"tid":27469,"ts":326460102537,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297176,"id":"0xaf88a76df182217a"},
-{"pid":27443,"tid":27469,"ts":326460112365,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":297237},
-{"pid":27443,"tid":27469,"ts":326460112395,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":297268},
-{"pid":27443,"tid":27469,"ts":326460112395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297268,"id":"0xaf88a765f182217a"},
-{"pid":27443,"tid":27469,"ts":326460112426,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":297298},
-{"pid":27443,"tid":27469,"ts":326460112426,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":297298},
-{"pid":27443,"tid":27469,"ts":326460112426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297298,"id":"0xaf88a766f182217a"},
-{"pid":27443,"tid":27469,"ts":326460112456,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":297329},
-{"pid":27443,"tid":27469,"ts":326460112456,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":297329},
-{"pid":27443,"tid":27469,"ts":326460112456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297329,"id":"0xaf88a767f182217a"},
-{"pid":27443,"tid":27498,"ts":326460128968,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":488,"tdur":489,"tts":49198},
-{"pid":27443,"tid":27498,"ts":326460128968,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":49229},
-{"pid":27443,"tid":27477,"ts":326460010091,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570608},
-{"pid":27443,"tid":27477,"ts":326460010091,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":570639},
-{"pid":27443,"tid":27477,"ts":326460010121,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":570639},
-{"pid":27443,"tid":27477,"ts":326460010152,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570669},
-{"pid":27443,"tid":27477,"ts":326460010152,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":570669},
-{"pid":27443,"tid":27477,"ts":326460010182,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570700},
-{"pid":27443,"tid":27477,"ts":326460010243,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570761},
-{"pid":27443,"tid":27477,"ts":326460010243,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":570761},
-{"pid":27443,"tid":27477,"ts":326460010274,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570792},
-{"pid":27443,"tid":27477,"ts":326460010304,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570822},
-{"pid":27443,"tid":27477,"ts":326460010335,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570853},
-{"pid":27443,"tid":27477,"ts":326460010335,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":570853},
-{"pid":27443,"tid":27477,"ts":326460010365,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":570883},
-{"pid":27443,"tid":27477,"ts":326460010396,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":570914},
-{"pid":27443,"tid":27477,"ts":326460010426,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":31,"tts":570944},
-{"pid":27443,"tid":27477,"ts":326460010457,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":570975},
-{"pid":27443,"tid":27477,"ts":326460010457,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":570975},
-{"pid":27443,"tid":27477,"ts":326460010488,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":571005},
-{"pid":27443,"tid":27477,"ts":326460010518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":571036,"id":"0xaf88a6a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460010549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":571066,"id":"0xaf88a6a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460010549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":571066},
-{"pid":27443,"tid":27477,"ts":326460010549,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":571066},
-{"pid":27443,"tid":27477,"ts":326460010579,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":571097},
-{"pid":27443,"tid":27477,"ts":326460010579,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":571097},
-{"pid":27443,"tid":27477,"ts":326460010579,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":571097},
-{"pid":27443,"tid":27477,"ts":326460010610,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":571127},
-{"pid":27443,"tid":27477,"ts":326460010640,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":571158},
-{"pid":27443,"tid":27477,"ts":326460010640,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":571188},
-{"pid":27443,"tid":27477,"ts":326460010671,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":571188,"id":"0xaf88a6a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460010701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":571219},
-{"pid":27443,"tid":27477,"ts":326460010701,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":571219},
-{"pid":27443,"tid":27477,"ts":326460010701,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":120},"tts":571219},
-{"pid":27443,"tid":27477,"ts":326460010762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":571280,"id":"0xaf88a8eef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460010762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":571310,"id":"0xaf88a61cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460010823,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":571341},
-{"pid":27443,"tid":27477,"ts":326460010823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":571341,"id":"0xaf88a6a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460010854,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1861,"tdur":1374,"tts":571371},
-{"pid":27443,"tid":27477,"ts":326460010854,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1861,"tdur":1374,"tts":571371},
-{"pid":27443,"tid":27477,"ts":326460010854,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":571371},
-{"pid":27443,"tid":27477,"ts":326460010884,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1801,"tdur":1312,"tts":571402},
-{"pid":27443,"tid":27477,"ts":326460010884,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":119},"dur":763,"tdur":763,"tts":571402},
-{"pid":27443,"tid":27477,"ts":326460010915,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":119},"dur":213,"tdur":214,"tts":571432},
-{"pid":27443,"tid":27477,"ts":326460011128,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":119},"dur":31,"tdur":31,"tts":571646},
-{"pid":27443,"tid":27477,"ts":326460011159,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":119},"tts":571677},
-{"pid":27443,"tid":27477,"ts":326460011251,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":571768},
-{"pid":27443,"tid":27477,"ts":326460011281,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":571799},
-{"pid":27443,"tid":27477,"ts":326460011281,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":571799},
-{"pid":27443,"tid":27477,"ts":326460011281,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":571799},
-{"pid":27443,"tid":27477,"ts":326460011312,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":571829,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460011373,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":571890},
-{"pid":27443,"tid":27477,"ts":326460011617,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":572134},
-{"pid":27443,"tid":27477,"ts":326460011647,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":794,"tdur":305,"tts":572165},
-{"pid":27443,"tid":27477,"ts":326460011647,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":572165},
-{"pid":27443,"tid":27477,"ts":326460011678,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":671,"tdur":184,"tts":572195},
-{"pid":27443,"tid":27477,"ts":326460011739,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":30,"tdur":30,"tts":572257},
-{"pid":27443,"tid":27477,"ts":326460011769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":572287,"id":"0xaf88aa24f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460012410,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":572470,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460012471,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":572501,"id":"0x300000068"},
-{"pid":27443,"tid":27477,"ts":326460012471,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":572501},
-{"pid":27443,"tid":27477,"ts":326460012563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":572592,"id":"0xaf88aa25f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460012654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":572684,"id":"0xaf88a8eff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460012654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":572684,"id":"0xaf88a61ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460012715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":572745,"id":"0xaf88a6a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460012715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":123,"tdur":122,"tts":572745},
-{"pid":27443,"tid":27466,"ts":326460012654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":299313,"id":"0xaf88aa25f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460012654,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":299313},
-{"pid":27443,"tid":27466,"ts":326460012654,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299343,"id":"0xccc49d02"},
-{"pid":27443,"tid":27466,"ts":326460014486,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":299404},
-{"pid":27443,"tid":27466,"ts":326460014516,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":299435},
-{"pid":27443,"tid":27466,"ts":326460014547,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299465,"id":"0xba452d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460014577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299496,"id":"0xaf88a6a1f182217a"},
-{"pid":27443,"tid":27466,"ts":326460020987,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":299587},
-{"pid":27443,"tid":27466,"ts":326460021017,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":299618},
-{"pid":27443,"tid":27466,"ts":326460021017,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299618,"id":"0xba452f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460021078,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299679,"id":"0xaf88a6b8f182217a"},
-{"pid":27443,"tid":27466,"ts":326460022329,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":299740,"id":"0xaf88aa26f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460022360,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":299771},
-{"pid":27443,"tid":27466,"ts":326460022360,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299771,"id":"0xccc49f02"},
-{"pid":27443,"tid":27466,"ts":326460023123,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":299893},
-{"pid":27443,"tid":27466,"ts":326460023153,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":299923},
-{"pid":27443,"tid":27466,"ts":326460023153,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":299923,"id":"0xba453002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460023184,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":299954},
-{"pid":27443,"tid":27466,"ts":326460023215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299984,"id":"0xaf88a6bbf182217a"},
-{"pid":27443,"tid":27466,"ts":326460024344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300106,"id":"0xaf88aa27f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460024374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":300106},
-{"pid":27443,"tid":27466,"ts":326460024374,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300106,"id":"0xccc4a006"},
-{"pid":27443,"tid":27466,"ts":326460024557,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":300198},
-{"pid":27443,"tid":27466,"ts":326460024588,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":300228},
-{"pid":27443,"tid":27466,"ts":326460024588,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300228,"id":"0xc4c1850a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460024924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300320,"id":"0xaf88aa20f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460024954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":300350},
-{"pid":27443,"tid":27466,"ts":326460024954,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300350,"id":"0xccc4a102"},
-{"pid":27443,"tid":27466,"ts":326460026877,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":300442},
-{"pid":27443,"tid":27466,"ts":326460026938,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":300503},
-{"pid":27443,"tid":27466,"ts":326460026938,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300503,"id":"0xba453102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460026969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":300534,"id":"0xaf88a6b4f182217a"},
-{"pid":27443,"tid":27466,"ts":326460035117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300686,"id":"0xaf88aa21f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460035117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":300686},
-{"pid":27443,"tid":27466,"ts":326460035148,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300717,"id":"0xccc4a302"},
-{"pid":27443,"tid":27466,"ts":326460036582,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":300808,"id":"0xaf88aa22f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460036613,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":300808},
-{"pid":27443,"tid":27466,"ts":326460036613,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300808,"id":"0xccc4a402"},
-{"pid":27443,"tid":27466,"ts":326460040672,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":300930},
-{"pid":27443,"tid":27466,"ts":326460040703,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":300961},
-{"pid":27443,"tid":27466,"ts":326460040703,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":300961,"id":"0xba453302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460040733,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":301022,"id":"0xaf88a74cf182217a"},
-{"pid":27443,"tid":27466,"ts":326460041313,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":301113},
-{"pid":27443,"tid":27466,"ts":326460041344,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":301144},
-{"pid":27443,"tid":27466,"ts":326460041344,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":301175,"id":"0xba453402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460041374,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":301175},
-{"pid":27443,"tid":27466,"ts":326460041405,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":301205,"id":"0xaf88a74ef182217a"},
-{"pid":27443,"tid":27466,"ts":326460042381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":301297,"id":"0xaf88aa23f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460042412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":301327},
-{"pid":27443,"tid":27466,"ts":326460042412,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":301327,"id":"0xccc4a506"},
-{"pid":27443,"tid":27466,"ts":326460042625,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":301388},
-{"pid":27443,"tid":27466,"ts":326460042656,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":301419},
-{"pid":27443,"tid":27466,"ts":326460042656,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":301419,"id":"0xc4c1880a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460043144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":301541,"id":"0xaf88aa3cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460043144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":301541},
-{"pid":27443,"tid":27466,"ts":326460043175,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":301571,"id":"0xccc4a602"},
-{"pid":27443,"tid":27466,"ts":326460045006,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":301663},
-{"pid":27443,"tid":27466,"ts":326460045037,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":122,"tts":301693},
-{"pid":27443,"tid":27466,"ts":326460045037,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":301693,"id":"0xba453502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460045128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":301785,"id":"0xaf88a74ff182217a"},
-{"pid":27443,"tid":27466,"ts":326460050713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":301876,"id":"0xaf88aa3df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460050744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":301907},
-{"pid":27443,"tid":27466,"ts":326460050744,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":301907,"id":"0xccc4a802"},
-{"pid":27443,"tid":27466,"ts":326460053918,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":302029},
-{"pid":27443,"tid":27477,"ts":326460012746,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":572775},
-{"pid":27443,"tid":27477,"ts":326460012746,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":572806,"id":"0x30000006a"},
-{"pid":27443,"tid":27477,"ts":326460012777,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":572806},
-{"pid":27443,"tid":27477,"ts":326460012807,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":572836,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460012807,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":572867,"id":"0xaf88a8e8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460014669,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":572928,"id":"0xaf88a6a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460014669,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":572928},
-{"pid":27443,"tid":27477,"ts":326460014699,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":572958},
-{"pid":27443,"tid":27477,"ts":326460014699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":572958,"id":"0xaf88a8e9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460017324,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":573050,"id":"0xaf88a6a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460017355,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1342,"tdur":1037,"tts":573081},
-{"pid":27443,"tid":27477,"ts":326460017355,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1342,"tdur":1007,"tts":573081},
-{"pid":27443,"tid":27477,"ts":326460017355,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":573081},
-{"pid":27443,"tid":27477,"ts":326460017355,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1312,"tdur":977,"tts":573111},
-{"pid":27443,"tid":27477,"ts":326460017385,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1282,"tdur":977,"tts":573111},
-{"pid":27443,"tid":27477,"ts":326460017385,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":573111},
-{"pid":27443,"tid":27477,"ts":326460017416,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":573142},
-{"pid":27443,"tid":27477,"ts":326460017416,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":573142,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460017416,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":573142},
-{"pid":27443,"tid":27477,"ts":326460017446,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":573172},
-{"pid":27443,"tid":27477,"ts":326460017873,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":794,"tdur":794,"tts":573294},
-{"pid":27443,"tid":27477,"ts":326460017904,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":120},"dur":275,"tdur":274,"tts":573325},{"pid":27443,"tid":27477,"ts":326460018179,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":120},"dur":30,"tdur":31,"tts":573599},
-{"pid":27443,"tid":27477,"ts":326460018209,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":120},"tts":573630},
-{"pid":27443,"tid":27477,"ts":326460018301,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":573721},
-{"pid":27443,"tid":27477,"ts":326460018331,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":573752},
-{"pid":27443,"tid":27477,"ts":326460018331,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":573752},
-{"pid":27443,"tid":27477,"ts":326460018423,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":573844},
-{"pid":27443,"tid":27477,"ts":326460018453,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":573874},
-{"pid":27443,"tid":27477,"ts":326460018453,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":573874},
-{"pid":27443,"tid":27477,"ts":326460018453,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":122,"tts":573905},
-{"pid":27443,"tid":27477,"ts":326460018484,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":573905,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460018514,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":573935},
-{"pid":27443,"tid":27477,"ts":326460018545,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":573966},
-{"pid":27443,"tid":27477,"ts":326460018606,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":574027,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460018636,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":574057,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460018636,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":574057,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460019277,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":574118,"id":"0xaf88a6a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460019308,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":574149},
-{"pid":27443,"tid":27477,"ts":326460019308,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":91,"tts":574149},
-{"pid":27443,"tid":27477,"ts":326460019338,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":574179,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460019338,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":574179},
-{"pid":27443,"tid":27477,"ts":326460019369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":574210,"id":"0xaf88a6bef182217a"},
-{"pid":27443,"tid":27477,"ts":326460019399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460018},"tts":574240,"id":"0xaf88a6aff182217a"},
-{"pid":27443,"tid":27477,"ts":326460019430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":574271},
-{"pid":27443,"tid":27477,"ts":326460019460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":574301,"id":"0xaf88a6bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326460019460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":574301},
-{"pid":27443,"tid":27477,"ts":326460019460,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":92,"tts":574301},
-{"pid":27443,"tid":27477,"ts":326460019491,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":574332,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460019491,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":31,"tts":574362},
-{"pid":27443,"tid":27477,"ts":326460019522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":574362,"id":"0xaf88a6bff182217a"},
-{"pid":27443,"tid":27477,"ts":326460019552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":574393,"id":"0xaf88a6bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460019583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":574423},
-{"pid":27443,"tid":27477,"ts":326460019583,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":574423},
-{"pid":27443,"tid":27477,"ts":326460019583,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":574454,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460019613,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":574454},
-{"pid":27443,"tid":27477,"ts":326460019644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":574484,"id":"0xaf88a6bef182217a"},
-{"pid":27443,"tid":27477,"ts":326460019674,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2411,"tdur":1160,"tts":574515},
-{"pid":27443,"tid":27477,"ts":326460019674,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2411,"tdur":1160,"tts":574515},
-{"pid":27443,"tid":27477,"ts":326460019705,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":574546},
-{"pid":27443,"tid":27477,"ts":326460019705,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":574546},
-{"pid":27443,"tid":27477,"ts":326460019735,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":574576},
-{"pid":27443,"tid":27477,"ts":326460019735,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":574576},
-{"pid":27443,"tid":27477,"ts":326460019827,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2258,"tdur":1007,"tts":574668},
-{"pid":27443,"tid":27459,"ts":326460016744,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":7009095},
-{"pid":27443,"tid":27459,"ts":326460016897,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":120},"dur":336,"tdur":335,"tts":7009217},
-{"pid":27443,"tid":27459,"ts":326460016897,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":335,"tts":7009217},
-{"pid":27443,"tid":27459,"ts":326460017110,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":0,"tdur":0,"tts":7009430},
-{"pid":27443,"tid":27459,"ts":326460017141,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":0,"tdur":0,"tts":7009461},
-{"pid":27443,"tid":27459,"ts":326460017141,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":30,"tdur":30,"tts":7009461},
-{"pid":27443,"tid":27459,"ts":326460017171,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":0,"tdur":0,"tts":7009491},
-{"pid":27443,"tid":27459,"ts":326460017171,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":31,"tdur":31,"tts":7009491},
-{"pid":27443,"tid":27459,"ts":326460017202,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":0,"tdur":0,"tts":7009522},
-{"pid":27443,"tid":27459,"ts":326460017233,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":120},"dur":0,"tdur":0,"tts":7009552},
-{"pid":27443,"tid":27459,"ts":326460017233,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7009583,"id":"0x300000069"},
-{"pid":27443,"tid":27459,"ts":326460017263,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1465,"tdur":91,"tts":7009583},
-{"pid":27443,"tid":27459,"ts":326460017263,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7009583,"id":"0xaf88a6a2f182217a"},
-{"pid":27443,"tid":27459,"ts":326460018759,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7009705},
-{"pid":27443,"tid":27459,"ts":326460018820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7009766,"id":"0xaf88a61df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460018850,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7009797},
-{"pid":27443,"tid":27459,"ts":326460018881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7009827,"id":"0xaf88a61ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460018881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7009827,"id":"0xaf88a8eff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460018881,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7009827},
-{"pid":27443,"tid":27459,"ts":326460018911,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7009858},
-{"pid":27443,"tid":27459,"ts":326460018942,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7009919,"id":"0xaf88a61ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460018972,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3418,"tdur":1373,"tts":7009919},
-{"pid":27443,"tid":27459,"ts":326460019003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7009949,"id":"0xaf88a8e8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460019003,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":3357,"tdur":1313,"tts":7009949},
-{"pid":27443,"tid":27459,"ts":326460019064,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":3265,"tdur":1221,"tts":7010010},
-{"pid":27443,"tid":27459,"ts":326460019064,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7010010,"id":"0x30000006a"},
-{"pid":27443,"tid":27459,"ts":326460019094,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":3144,"tdur":1068,"tts":7010041},
-{"pid":27443,"tid":27459,"ts":326460019125,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":3082,"tdur":1038,"tts":7010071},
-{"pid":27443,"tid":27459,"ts":326460019125,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2045,"tdur":31,"tts":7010071},
-{"pid":27443,"tid":27459,"ts":326460021231,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7010163},
-{"pid":27443,"tid":27459,"ts":326460021292,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7010224},
-{"pid":27443,"tid":27459,"ts":326460021322,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7010285},
-{"pid":27443,"tid":27459,"ts":326460021353,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7010315},
-{"pid":27443,"tid":27459,"ts":326460021414,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7010346},
-{"pid":27443,"tid":27459,"ts":326460021444,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7010376},
-{"pid":27443,"tid":27459,"ts":326460021475,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7010407},
-{"pid":27443,"tid":27459,"ts":326460021505,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":641,"tts":7010437},
-{"pid":27443,"tid":27459,"ts":326460021688,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":397,"tts":7010651},
-{"pid":27443,"tid":27459,"ts":326460021719,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7010651},
-{"pid":27443,"tid":27459,"ts":326460022024,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":79,"frame":"0x78c60000"}},"tts":7010956,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460022055,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7010987},
-{"pid":27443,"tid":27459,"ts":326460022085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7011017,"id":"0xaf88a6b9f182217a"},
-{"pid":27443,"tid":27459,"ts":326460022085,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7011048},
-{"pid":27443,"tid":27459,"ts":326460022238,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7011139},
-{"pid":27443,"tid":27459,"ts":326460022268,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7011170,"id":"0xaf88aa26f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460022665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7011353,"id":"0xaf88a61ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460022665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":122,"tts":7011353},
-{"pid":27443,"tid":27459,"ts":326460022696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7011384,"id":"0xaf88a618f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460022696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7011384,"id":"0xaf88a8e9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460022726,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":458,"tdur":31,"tts":7011414},
-{"pid":27443,"tid":27459,"ts":326460022726,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":458,"tdur":31,"tts":7011414},
-{"pid":27443,"tid":27459,"ts":326460022726,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":458,"tdur":0,"tts":7011414},
-{"pid":27443,"tid":27459,"ts":326460023245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7011506,"id":"0xaf88a618f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460023245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7264,"tdur":6470,"tts":7011506},
-{"pid":27443,"tid":27459,"ts":326460023245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7011506,"id":"0xaf88a61af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460023276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7011536,"id":"0xaf88a8eaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460023276,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":7233,"tdur":6440,"tts":7011536},
-{"pid":27443,"tid":27459,"ts":326460023276,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":121},"tts":7011536},
-{"pid":27443,"tid":27459,"ts":326460023306,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7011567},
-{"pid":27443,"tid":27459,"ts":326460023337,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3601,"tdur":3296,"tts":7011628},
-{"pid":27443,"tid":27459,"ts":326460023367,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7011628},
-{"pid":27443,"tid":27459,"ts":326460023428,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":79,"frame":"0x78c60000"}},"dur":3510,"tdur":3235,"tts":7011689},
-{"pid":27443,"tid":27459,"ts":326460023489,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3418,"tdur":3143,"tts":7011750},
-{"pid":27443,"tid":27459,"ts":326460023520,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7011780},
-{"pid":27443,"tid":27477,"ts":326460019827,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2228,"tdur":976,"tts":574668},
-{"pid":27443,"tid":27477,"ts":326460019827,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":946,"tdur":946,"tts":574668},
-{"pid":27443,"tid":27477,"ts":326460019857,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":574698,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460019918,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":574759},
-{"pid":27443,"tid":27477,"ts":326460019949,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":574790},
-{"pid":27443,"tid":27477,"ts":326460019979,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":574820},
-{"pid":27443,"tid":27477,"ts":326460019979,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":574820},
-{"pid":27443,"tid":27477,"ts":326460020040,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":574881},
-{"pid":27443,"tid":27477,"ts":326460020071,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":574912},
-{"pid":27443,"tid":27477,"ts":326460020071,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":574942},
-{"pid":27443,"tid":27477,"ts":326460020101,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":574942},
-{"pid":27443,"tid":27477,"ts":326460020132,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":574973},
-{"pid":27443,"tid":27477,"ts":326460020162,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575003},
-{"pid":27443,"tid":27477,"ts":326460020193,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575034},
-{"pid":27443,"tid":27477,"ts":326460020193,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":575064},
-{"pid":27443,"tid":27477,"ts":326460020224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":575064},
-{"pid":27443,"tid":27477,"ts":326460020254,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":575095},
-{"pid":27443,"tid":27477,"ts":326460020285,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":575125},
-{"pid":27443,"tid":27477,"ts":326460020315,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575156},
-{"pid":27443,"tid":27477,"ts":326460020346,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575186},
-{"pid":27443,"tid":27477,"ts":326460020346,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":575217},
-{"pid":27443,"tid":27477,"ts":326460020407,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575248},
-{"pid":27443,"tid":27477,"ts":326460020407,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":575248},
-{"pid":27443,"tid":27477,"ts":326460020498,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":575339},
-{"pid":27443,"tid":27477,"ts":326460020529,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575370},
-{"pid":27443,"tid":27477,"ts":326460020559,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575400},
-{"pid":27443,"tid":27477,"ts":326460020590,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575431},
-{"pid":27443,"tid":27477,"ts":326460020590,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":575431},
-{"pid":27443,"tid":27477,"ts":326460020620,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":575461},
-{"pid":27443,"tid":27477,"ts":326460020651,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":575492},
-{"pid":27443,"tid":27477,"ts":326460020681,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":575522},
-{"pid":27443,"tid":27477,"ts":326460020712,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":575553},
-{"pid":27443,"tid":27477,"ts":326460020742,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":575583},
-{"pid":27443,"tid":27477,"ts":326460020742,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":575583},
-{"pid":27443,"tid":27477,"ts":326460022085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":575705,"id":"0xaf88a6bff182217a"},
-{"pid":27443,"tid":27477,"ts":326460022116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":763,"tdur":153,"tts":575705},
-{"pid":27443,"tid":27477,"ts":326460022146,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":733,"tdur":122,"tts":575736},
-{"pid":27443,"tid":27477,"ts":326460022146,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":575736},
-{"pid":27443,"tid":27477,"ts":326460022146,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":575736},
-{"pid":27443,"tid":27477,"ts":326460022177,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":671,"tdur":61,"tts":575766},
-{"pid":27443,"tid":27477,"ts":326460022177,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":671,"tdur":61,"tts":575766},
-{"pid":27443,"tid":27477,"ts":326460022848,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":575827},
-{"pid":27443,"tid":27477,"ts":326460022879,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":575858},
-{"pid":27443,"tid":27477,"ts":326460022879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":575888,"id":"0xaf88a6b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460022909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":575888},
-{"pid":27443,"tid":27477,"ts":326460022940,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460024686.0,"frame_time_us":326460018863.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":575919},
-{"pid":27443,"tid":27477,"ts":326460022940,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460024686.0,"frame_time_us":326460018863.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":575919},
-{"pid":27443,"tid":27477,"ts":326460023001,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":575980},
-{"pid":27443,"tid":27477,"ts":326460023031,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":576011},
-{"pid":27443,"tid":27477,"ts":326460023031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":576011,"id":"0xaf88a6baf182217a"},
-{"pid":27443,"tid":27477,"ts":326460023062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":576041,"id":"0xaf88a6b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460023092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":123,"tdur":122,"tts":576072},
-{"pid":27443,"tid":27477,"ts":326460023092,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":92,"tdur":91,"tts":576072},
-{"pid":27443,"tid":27477,"ts":326460023092,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":121},"tts":576072},
-{"pid":27443,"tid":27477,"ts":326460023153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":576133,"id":"0xaf88a8eaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460023184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":576163,"id":"0xaf88a619f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460023184,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":576163},
-{"pid":27443,"tid":27477,"ts":326460023245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":576224,"id":"0xaf88a6baf182217a"},
-{"pid":27443,"tid":27477,"ts":326460023245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1770,"tdur":1435,"tts":576224},
-{"pid":27443,"tid":27477,"ts":326460023245,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1740,"tdur":1373,"tts":576255},
-{"pid":27443,"tid":27477,"ts":326460023276,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1709,"tdur":1373,"tts":576255},
-{"pid":27443,"tid":27477,"ts":326460023276,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":120},"dur":854,"tdur":854,"tts":576255},
-{"pid":27443,"tid":27477,"ts":326460023337,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":120},"dur":244,"tdur":244,"tts":576316},
-{"pid":27443,"tid":27477,"ts":326460023581,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":120},"dur":30,"tdur":30,"tts":576560},
-{"pid":27443,"tid":27477,"ts":326460023611,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":120},"tts":576621},
-{"pid":27443,"tid":27477,"ts":326460023733,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":576712},
-{"pid":27443,"tid":27477,"ts":326460023764,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":576743},
-{"pid":27443,"tid":27477,"ts":326460023764,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":576743},
-{"pid":27443,"tid":27477,"ts":326460023764,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":576743},
-{"pid":27443,"tid":27477,"ts":326460023794,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":576774,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460023855,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":576835},
-{"pid":27443,"tid":27477,"ts":326460024100,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":577109},
-{"pid":27443,"tid":27477,"ts":326460024130,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":611,"tdur":275,"tts":577109},
-{"pid":27443,"tid":27477,"ts":326460024161,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":577140},
-{"pid":27443,"tid":27477,"ts":326460024161,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":518,"tdur":183,"tts":577140},
-{"pid":27443,"tid":27477,"ts":326460024252,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":0,"tdur":0,"tts":577231},
-{"pid":27443,"tid":27477,"ts":326460024283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":577262,"id":"0xaf88aa27f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460024710,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":577353,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460024741,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":577384,"id":"0x300000069"},
-{"pid":27443,"tid":27477,"ts":326460024771,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":577414},
-{"pid":27443,"tid":27477,"ts":326460024863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":577506,"id":"0xaf88aa20f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460024924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":577567,"id":"0xaf88a8ebf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460024954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":577598,"id":"0xaf88a61bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460025015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":577659,"id":"0xaf88a6bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326460025015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":577659},
-{"pid":27443,"tid":27477,"ts":326460025046,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":61,"tts":577689},
-{"pid":27443,"tid":27477,"ts":326460025046,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":577689,"id":"0x30000006b"},
-{"pid":27443,"tid":27477,"ts":326460025046,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":0,"tts":577720},
-{"pid":27443,"tid":27477,"ts":326460025076,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":577720,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460025107,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":577750,"id":"0xaf88a8e4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460027060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":577781,"id":"0xaf88a6b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460027091,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":577811},
-{"pid":27443,"tid":27477,"ts":326460027121,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":577842},
-{"pid":27443,"tid":27477,"ts":326460027121,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":577842,"id":"0xaf88a8e5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460030143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":577964,"id":"0xaf88a6b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460030143,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1281,"tdur":1038,"tts":577964},
-{"pid":27443,"tid":27477,"ts":326460030143,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1281,"tdur":1007,"tts":577964},
-{"pid":27443,"tid":27477,"ts":326460030173,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":577994},
-{"pid":27443,"tid":27477,"ts":326460030173,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1221,"tdur":977,"tts":577994},
-{"pid":27443,"tid":27477,"ts":326460030173,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1221,"tdur":946,"tts":578025},
-{"pid":27443,"tid":27477,"ts":326460030204,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":578025},
-{"pid":27443,"tid":27477,"ts":326460030204,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":578025},
-{"pid":27443,"tid":27477,"ts":326460030234,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":578055,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460030234,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":578055},
-{"pid":27443,"tid":27477,"ts":326460030265,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":578086},
-{"pid":27443,"tid":27477,"ts":326460030387,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":976,"tdur":732,"tts":578208},
-{"pid":27443,"tid":27477,"ts":326460030387,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":121},"dur":244,"tdur":244,"tts":578208},
-{"pid":27443,"tid":27477,"ts":326460030631,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":121},"dur":30,"tdur":31,"tts":578452},
-{"pid":27443,"tid":27477,"ts":326460030692,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":121},"tts":578513},
-{"pid":27443,"tid":27477,"ts":326460030784,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":578605},
-{"pid":27443,"tid":27477,"ts":326460030814,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":549,"tdur":305,"tts":578635},
-{"pid":27443,"tid":27477,"ts":326460030814,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":578635},
-{"pid":27443,"tid":27477,"ts":326460030906,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":578757},
-{"pid":27443,"tid":27477,"ts":326460030936,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":578757},
-{"pid":27443,"tid":27477,"ts":326460030936,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":397,"tdur":153,"tts":578757},
-{"pid":27443,"tid":27477,"ts":326460030967,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":366,"tdur":122,"tts":578788},
-{"pid":27443,"tid":27477,"ts":326460030967,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":578788,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460030997,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":578818},
-{"pid":27443,"tid":27477,"ts":326460030997,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":578818},
-{"pid":27443,"tid":27477,"ts":326460031058,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":578879,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460031058,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":578879},
-{"pid":27443,"tid":27477,"ts":326460031363,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":578940,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460031363,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":578940,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460031424,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":579002,"id":"0xaf88a6b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460031424,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":579002},
-{"pid":27443,"tid":27477,"ts":326460031455,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":579032},
-{"pid":27443,"tid":27477,"ts":326460031455,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":579032,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460031486,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":579063},
-{"pid":27443,"tid":27459,"ts":326460026877,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7014893},
-{"pid":27443,"tid":27459,"ts":326460026938,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2716,"tdur":2442,"tts":7014924},
-{"pid":27443,"tid":27459,"ts":326460026969,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7014985},
-{"pid":27443,"tid":27459,"ts":326460026999,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7014985},
-{"pid":27443,"tid":27459,"ts":326460026999,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7015016},
-{"pid":27443,"tid":27459,"ts":326460027426,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7015412},
-{"pid":27443,"tid":27459,"ts":326460027457,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7015443},
-{"pid":27443,"tid":27459,"ts":326460027487,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2167,"tdur":1893,"tts":7015473},
-{"pid":27443,"tid":27459,"ts":326460027487,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1984,"tdur":1709,"tts":7015473},
-{"pid":27443,"tid":27459,"ts":326460027518,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":702,"tdur":427,"tts":7015504},
-{"pid":27443,"tid":27459,"ts":326460028220,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7015931},
-{"pid":27443,"tid":27459,"ts":326460028403,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7016114},
-{"pid":27443,"tid":27459,"ts":326460028495,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":7016206},
-{"pid":27443,"tid":27459,"ts":326460028525,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":946,"tdur":946,"tts":7016236},
-{"pid":27443,"tid":27459,"ts":326460029471,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7017182},
-{"pid":27443,"tid":27459,"ts":326460029532,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":7017244},
-{"pid":27443,"tid":27459,"ts":326460029654,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":121},"dur":397,"tdur":396,"tts":7017366},
-{"pid":27443,"tid":27459,"ts":326460029654,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":366,"tts":7017396},
-{"pid":27443,"tid":27459,"ts":326460029868,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":30,"tdur":31,"tts":7017579},
-{"pid":27443,"tid":27459,"ts":326460029898,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":31,"tdur":0,"tts":7017610},
-{"pid":27443,"tid":27459,"ts":326460029929,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":0,"tdur":0,"tts":7017640},
-{"pid":27443,"tid":27459,"ts":326460029929,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":31,"tdur":31,"tts":7017640},
-{"pid":27443,"tid":27459,"ts":326460029960,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":0,"tdur":0,"tts":7017671},
-{"pid":27443,"tid":27459,"ts":326460029960,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":30,"tdur":30,"tts":7017671},
-{"pid":27443,"tid":27459,"ts":326460029990,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":121},"dur":0,"tdur":0,"tts":7017701},
-{"pid":27443,"tid":27459,"ts":326460030051,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7017762,"id":"0x30000006a"},
-{"pid":27443,"tid":27459,"ts":326460030051,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":92,"tts":7017762},
-{"pid":27443,"tid":27459,"ts":326460030082,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7017793,"id":"0xaf88a6b5f182217a"},
-{"pid":27443,"tid":27459,"ts":326460030448,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":5112},"tts":7017915,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460030448,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7017915,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460030478,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7017945},
-{"pid":27443,"tid":27459,"ts":326460030539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460027},"tts":7018037,"id":"0xaf88a676f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460030570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7018037},
-{"pid":27443,"tid":27459,"ts":326460030600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7018068,"id":"0xaf88a619f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460030600,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7018098},
-{"pid":27443,"tid":27459,"ts":326460030631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7018098,"id":"0xaf88a8d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460030631,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":7018098},
-{"pid":27443,"tid":27459,"ts":326460030661,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7018129,"id":"0xaf88a8e6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460030692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7018159,"id":"0xaf88a614f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460030723,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7018190,"id":"0xaf88a61af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460030723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":4486,"tdur":4303,"tts":7018190},
-{"pid":27443,"tid":27459,"ts":326460030753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7018220,"id":"0xaf88a615f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460030753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7018220,"id":"0xaf88a81bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460030784,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":4394,"tdur":4212,"tts":7018251},
-{"pid":27443,"tid":27459,"ts":326460030784,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":4394,"tdur":4212,"tts":7018251},
-{"pid":27443,"tid":27459,"ts":326460030814,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":146,"frame":"0x78c60000"}},"dur":4364,"tdur":4182,"tts":7018281},
-{"pid":27443,"tid":27459,"ts":326460030845,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":4303,"tdur":4120,"tts":7018312},
-{"pid":27443,"tid":27459,"ts":326460030997,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"91","scriptName":"undefined","scriptLine":3,"frame":"0x78c60000"}},"dur":4151,"tdur":3937,"tts":7018495},
-{"pid":27443,"tid":27459,"ts":326460031028,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7018495},
-{"pid":27443,"tid":27459,"ts":326460034324,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7021638},
-{"pid":27443,"tid":27459,"ts":326460034446,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas"}},"dur":641,"tdur":641,"tts":7021730},
-{"pid":27443,"tid":27459,"ts":326460034843,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.95","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas","requestMethod":"GET"}},"tts":7022127,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460034873,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas","priority":0},"tts":7022188,"id":"0xaf88ae4cfda78de2"},
-{"pid":27443,"tid":27459,"ts":326460034995,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":92,"tdur":92,"tts":7022279},
-{"pid":27443,"tid":27459,"ts":326460035026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7022310,"id":"0xaf88aa21f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460035117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7022401,"id":"0xaf88a8e7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460035240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7022524,"id":"0xaf88a61bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460035240,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7022524},
-{"pid":27443,"tid":27459,"ts":326460035270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7022554,"id":"0xaf88a8ebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460035270,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":7022554},
-{"pid":27443,"tid":27459,"ts":326460035270,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7022554},
-{"pid":27443,"tid":27459,"ts":326460035331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7022615,"id":"0xaf88a615f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460035331,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1251,"tdur":1190,"tts":7022615},
-{"pid":27443,"tid":27459,"ts":326460035362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7022646,"id":"0xaf88a616f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460031486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":579063,"id":"0xaf88a6b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460031516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":579093,"id":"0xaf88a6b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460031547,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":579124},
-{"pid":27443,"tid":27477,"ts":326460031547,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":579124},
-{"pid":27443,"tid":27477,"ts":326460031577,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":579154,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460031577,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":579154},
-{"pid":27443,"tid":27477,"ts":326460031608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":579185,"id":"0xaf88a6b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460031638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":579215,"id":"0xaf88a6b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460031638,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":579215},
-{"pid":27443,"tid":27477,"ts":326460031638,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":579215},
-{"pid":27443,"tid":27477,"ts":326460031669,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":579246,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460031669,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":579246},
-{"pid":27443,"tid":27477,"ts":326460031699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":579276,"id":"0xaf88a6b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460031699,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1740,"tdur":1099,"tts":579276},
-{"pid":27443,"tid":27477,"ts":326460031699,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1740,"tdur":1099,"tts":579276},
-{"pid":27443,"tid":27477,"ts":326460031699,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":579276},
-{"pid":27443,"tid":27477,"ts":326460031730,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":579307},
-{"pid":27443,"tid":27477,"ts":326460031730,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":366,"tdur":122,"tts":579337},
-{"pid":27443,"tid":27477,"ts":326460031760,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":336,"tdur":122,"tts":579337},
-{"pid":27443,"tid":27477,"ts":326460032126,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1313,"tdur":885,"tts":579490},
-{"pid":27443,"tid":27477,"ts":326460032126,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1313,"tdur":885,"tts":579490},
-{"pid":27443,"tid":27477,"ts":326460032157,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1282,"tdur":855,"tts":579520},
-{"pid":27443,"tid":27477,"ts":326460032157,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":579520,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460032310,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":579612},
-{"pid":27443,"tid":27477,"ts":326460032340,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579642},
-{"pid":27443,"tid":27477,"ts":326460032371,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579673},
-{"pid":27443,"tid":27477,"ts":326460032371,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":579673},
-{"pid":27443,"tid":27477,"ts":326460032401,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579703},
-{"pid":27443,"tid":27477,"ts":326460032401,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":579734},
-{"pid":27443,"tid":27477,"ts":326460032432,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":579734},
-{"pid":27443,"tid":27477,"ts":326460032462,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579765},
-{"pid":27443,"tid":27477,"ts":326460032493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579795},
-{"pid":27443,"tid":27477,"ts":326460032493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":579795},
-{"pid":27443,"tid":27477,"ts":326460032523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":579826},
-{"pid":27443,"tid":27477,"ts":326460032554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579856},
-{"pid":27443,"tid":27477,"ts":326460032584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579887},
-{"pid":27443,"tid":27477,"ts":326460032584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":579887},
-{"pid":27443,"tid":27477,"ts":326460032615,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579917},
-{"pid":27443,"tid":27477,"ts":326460032645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579948},
-{"pid":27443,"tid":27477,"ts":326460032645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":579948},
-{"pid":27443,"tid":27477,"ts":326460032676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":579978},
-{"pid":27443,"tid":27477,"ts":326460032676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":579978},
-{"pid":27443,"tid":27477,"ts":326460032706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":580009},
-{"pid":27443,"tid":27477,"ts":326460032767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":580070},
-{"pid":27443,"tid":27477,"ts":326460032798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":580100},
-{"pid":27443,"tid":27477,"ts":326460032798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":580131},
-{"pid":27443,"tid":27477,"ts":326460032828,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":428,"tdur":61,"tts":580131},
-{"pid":27443,"tid":27477,"ts":326460032828,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":30,"tts":580131},
-{"pid":27443,"tid":27477,"ts":326460033256,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":580192},
-{"pid":27443,"tid":27477,"ts":326460033286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":580222},
-{"pid":27443,"tid":27477,"ts":326460033286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":580222},
-{"pid":27443,"tid":27477,"ts":326460033347,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":580283},
-{"pid":27443,"tid":27477,"ts":326460033378,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":580314},
-{"pid":27443,"tid":27477,"ts":326460033378,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":580314},
-{"pid":27443,"tid":27477,"ts":326460033408,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":580344},
-{"pid":27443,"tid":27477,"ts":326460033439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":580375,"id":"0xaf88a6b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460033469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":123,"tts":580405},
-{"pid":27443,"tid":27477,"ts":326460033469,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":123,"tts":580405},
-{"pid":27443,"tid":27477,"ts":326460033469,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":580405},
-{"pid":27443,"tid":27477,"ts":326460033469,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":580436},
-{"pid":27443,"tid":27477,"ts":326460033500,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":580436},
-{"pid":27443,"tid":27477,"ts":326460033500,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":580436},
-{"pid":27443,"tid":27477,"ts":326460033561,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":580497},
-{"pid":27443,"tid":27477,"ts":326460033561,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":580497},
-{"pid":27443,"tid":27459,"ts":326460035362,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7022646,"id":"0xaf88a8e4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460035392,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1099,"tts":7022676},
-{"pid":27443,"tid":27459,"ts":326460035453,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1038,"tts":7022737},
-{"pid":27443,"tid":27459,"ts":326460035453,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7022737,"id":"0x30000006b"},
-{"pid":27443,"tid":27459,"ts":326460035484,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":976,"tdur":915,"tts":7022768},
-{"pid":27443,"tid":27459,"ts":326460035514,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":885,"tts":7022798},
-{"pid":27443,"tid":27459,"ts":326460035545,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7022829},
-{"pid":27443,"tid":27459,"ts":326460035575,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7022890},
-{"pid":27443,"tid":27459,"ts":326460035606,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7022920},
-{"pid":27443,"tid":27459,"ts":326460035636,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7022920},
-{"pid":27443,"tid":27459,"ts":326460035667,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7022951},
-{"pid":27443,"tid":27459,"ts":326460035697,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7022981},
-{"pid":27443,"tid":27459,"ts":326460035728,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7023012},
-{"pid":27443,"tid":27459,"ts":326460035758,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":702,"tdur":611,"tts":7023042},
-{"pid":27443,"tid":27459,"ts":326460035941,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":489,"tdur":458,"tts":7023195},
-{"pid":27443,"tid":27459,"ts":326460035972,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7023195},
-{"pid":27443,"tid":27459,"ts":326460036308,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":80,"frame":"0x78c60000"}},"tts":7023531,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460036338,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":7023561},
-{"pid":27443,"tid":27459,"ts":326460036338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7023561,"id":"0xaf88a6b3f182217a"},
-{"pid":27443,"tid":27459,"ts":326460036399,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7023622},
-{"pid":27443,"tid":27459,"ts":326460036491,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7023714},
-{"pid":27443,"tid":27459,"ts":326460036491,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7023714,"id":"0xaf88aa22f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460036613,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7023836,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460036613,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7023836,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460036643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7023866,"id":"0xaf88a616f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460036674,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7023897},
-{"pid":27443,"tid":27459,"ts":326460036674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7023897,"id":"0xaf88a617f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460036705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7023927,"id":"0xaf88a8e5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460036705,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7023927},
-{"pid":27443,"tid":27459,"ts":326460036705,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":7023927},
-{"pid":27443,"tid":27459,"ts":326460036766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7023989,"id":"0xaf88a617f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460036796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7024019},
-{"pid":27443,"tid":27459,"ts":326460041099,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7024080,"id":"0xaf88a610f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460041099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6776,"tdur":6379,"tts":7024080},
-{"pid":27443,"tid":27459,"ts":326460041130,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7024111,"id":"0xaf88a611f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460041130,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7024111,"id":"0xaf88a8e0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460041160,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":6715,"tdur":6318,"tts":7024141},
-{"pid":27443,"tid":27459,"ts":326460041160,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":122},"tts":7024141},
-{"pid":27443,"tid":27459,"ts":326460041160,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7024141},
-{"pid":27443,"tid":27459,"ts":326460041222,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3509,"tdur":3357,"tts":7024202},
-{"pid":27443,"tid":27459,"ts":326460041252,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7024233},
-{"pid":27443,"tid":27459,"ts":326460041466,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":80,"frame":"0x78c60000"}},"dur":3265,"tdur":3265,"tts":7024294},
-{"pid":27443,"tid":27459,"ts":326460041588,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3143,"tdur":3113,"tts":7024416},
-{"pid":27443,"tid":27459,"ts":326460041588,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7024416},
-{"pid":27443,"tid":27459,"ts":326460044701,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7027529},
-{"pid":27443,"tid":27459,"ts":326460044731,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2289,"tdur":2258,"tts":7027590},
-{"pid":27443,"tid":27459,"ts":326460044792,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7027620},
-{"pid":27443,"tid":27459,"ts":326460044792,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7027620},
-{"pid":27443,"tid":27459,"ts":326460044823,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7027651},
-{"pid":27443,"tid":27459,"ts":326460045220,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7028048},
-{"pid":27443,"tid":27459,"ts":326460045250,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7028078},
-{"pid":27443,"tid":27459,"ts":326460045281,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1739,"tdur":1739,"tts":7028109},
-{"pid":27443,"tid":27459,"ts":326460045281,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1587,"tdur":1587,"tts":7028109},
-{"pid":27443,"tid":27459,"ts":326460045311,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":7028139},
-{"pid":27443,"tid":27459,"ts":326460045647,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7028475},
-{"pid":27443,"tid":27459,"ts":326460045830,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7028658},
-{"pid":27443,"tid":27459,"ts":326460045922,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":7028750},
-{"pid":27443,"tid":27459,"ts":326460045952,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":885,"tdur":885,"tts":7028780},
-{"pid":27443,"tid":27459,"ts":326460046868,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":7029696},
-{"pid":27443,"tid":27459,"ts":326460046898,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7029726},
-{"pid":27443,"tid":27459,"ts":326460047051,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":122},"dur":336,"tdur":336,"tts":7029879},
-{"pid":27443,"tid":27459,"ts":326460047051,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":336,"tts":7029879},
-{"pid":27443,"tid":27459,"ts":326460047234,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":31,"tdur":31,"tts":7030062},
-{"pid":27443,"tid":27459,"ts":326460047265,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":30,"tdur":30,"tts":7030093},
-{"pid":27443,"tid":27477,"ts":326460036857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":580589,"id":"0xaf88a6b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460036888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":91,"tdur":31,"tts":580619},
-{"pid":27443,"tid":27477,"ts":326460036888,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":580619},
-{"pid":27443,"tid":27477,"ts":326460040794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":580711,"id":"0xaf88a74cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460040825,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":580741},
-{"pid":27443,"tid":27477,"ts":326460040855,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460041368.0,"frame_time_us":326460035545.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":274,"tts":580772},
-{"pid":27443,"tid":27477,"ts":326460040855,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460041368.0,"frame_time_us":326460035545.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":275,"tdur":274,"tts":580772},
-{"pid":27443,"tid":27477,"ts":326460040947,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":580863},
-{"pid":27443,"tid":27477,"ts":326460040947,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":122},"tts":580863},
-{"pid":27443,"tid":27477,"ts":326460041008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":580924,"id":"0xaf88a8e0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460041038,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":580955,"id":"0xaf88a610f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460041069,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":580985},
-{"pid":27443,"tid":27477,"ts":326460041099,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":581016},
-{"pid":27443,"tid":27477,"ts":326460041099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":581016,"id":"0xaf88a74df182217a"},
-{"pid":27443,"tid":27477,"ts":326460041130,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":581046,"id":"0xaf88a74df182217a"},
-{"pid":27443,"tid":27477,"ts":326460041160,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2381,"tdur":1465,"tts":581077},
-{"pid":27443,"tid":27477,"ts":326460041160,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2351,"tdur":1434,"tts":581077},
-{"pid":27443,"tid":27477,"ts":326460041160,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2045,"tdur":1434,"tts":581077},
-{"pid":27443,"tid":27477,"ts":326460041191,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":121},"dur":946,"tdur":794,"tts":581107},
-{"pid":27443,"tid":27477,"ts":326460041344,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":121},"dur":274,"tdur":275,"tts":581107},
-{"pid":27443,"tid":27477,"ts":326460041618,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":121},"dur":31,"tdur":31,"tts":581382},
-{"pid":27443,"tid":27477,"ts":326460041649,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":121},"tts":581413},
-{"pid":27443,"tid":27477,"ts":326460041771,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":581535},
-{"pid":27443,"tid":27477,"ts":326460041771,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":581535},
-{"pid":27443,"tid":27477,"ts":326460041801,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":581565},
-{"pid":27443,"tid":27477,"ts":326460041801,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":581565},
-{"pid":27443,"tid":27477,"ts":326460041832,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":581596,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460041862,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":581626},
-{"pid":27443,"tid":27477,"ts":326460042137,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":581901},
-{"pid":27443,"tid":27477,"ts":326460042137,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":733,"tdur":245,"tts":581931},
-{"pid":27443,"tid":27477,"ts":326460042168,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":581931},
-{"pid":27443,"tid":27477,"ts":326460042168,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":671,"tdur":184,"tts":581931},
-{"pid":27443,"tid":27477,"ts":326460042259,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":31,"tdur":31,"tts":582023},
-{"pid":27443,"tid":27477,"ts":326460042290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":582054,"id":"0xaf88aa23f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460042870,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":582176,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460042900,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":582206,"id":"0x30000006a"},
-{"pid":27443,"tid":27477,"ts":326460042900,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":582206},
-{"pid":27443,"tid":27477,"ts":326460043083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":582389,"id":"0xaf88aa3cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460043144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":582450,"id":"0xaf88a8e1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460043175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":582481,"id":"0xaf88a612f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460043541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":582542,"id":"0xaf88a74ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460043541,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":582542},
-{"pid":27443,"tid":27477,"ts":326460043572,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":92,"tts":582572},
-{"pid":27443,"tid":27477,"ts":326460043572,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":582572,"id":"0x30000006c"},
-{"pid":27443,"tid":27477,"ts":326460043602,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":582603},
-{"pid":27443,"tid":27477,"ts":326460043602,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":582633,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460043633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":582633,"id":"0xaf88a8e2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460045189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":582725,"id":"0xaf88a74ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460045189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":582725},
-{"pid":27443,"tid":27477,"ts":326460045220,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":582756},
-{"pid":27443,"tid":27477,"ts":326460045250,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":582786,"id":"0xaf88a8e3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460047478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":582847,"id":"0xaf88a748f182217a"},
-{"pid":27443,"tid":27477,"ts":326460047478,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1740,"tdur":1099,"tts":582847},
-{"pid":27443,"tid":27477,"ts":326460047509,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1678,"tdur":1037,"tts":582878},
-{"pid":27443,"tid":27477,"ts":326460047509,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":582878},
-{"pid":27443,"tid":27477,"ts":326460047509,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1678,"tdur":1037,"tts":582878},
-{"pid":27443,"tid":27477,"ts":326460047539,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1648,"tdur":1007,"tts":582908},
-{"pid":27443,"tid":27477,"ts":326460047539,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":582908},
-{"pid":27443,"tid":27477,"ts":326460047539,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":582908},
-{"pid":27443,"tid":27477,"ts":326460047570,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":582939,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460047570,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":582939},
-{"pid":27443,"tid":27477,"ts":326460047600,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":582969},
-{"pid":27443,"tid":27477,"ts":326460047722,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1435,"tdur":794,"tts":583091},
-{"pid":27443,"tid":27477,"ts":326460047722,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":122},"dur":245,"tdur":244,"tts":583091},
-{"pid":27443,"tid":27459,"ts":326460047295,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":31,"tdur":31,"tts":7030123},
-{"pid":27443,"tid":27459,"ts":326460047326,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":0,"tdur":0,"tts":7030154},
-{"pid":27443,"tid":27459,"ts":326460047326,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":30,"tdur":30,"tts":7030154},
-{"pid":27443,"tid":27459,"ts":326460047356,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":0,"tdur":0,"tts":7030184},
-{"pid":27443,"tid":27459,"ts":326460047387,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":122},"dur":0,"tdur":0,"tts":7030215},
-{"pid":27443,"tid":27459,"ts":326460047387,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7030245,"id":"0x30000006b"},
-{"pid":27443,"tid":27459,"ts":326460047417,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":305,"tdur":92,"tts":7030245},
-{"pid":27443,"tid":27459,"ts":326460047417,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7030245,"id":"0xaf88a748f182217a"},
-{"pid":27443,"tid":27459,"ts":326460047814,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":4397},"tts":7030398,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460047814,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7030398,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460047844,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7030428},
-{"pid":27443,"tid":27459,"ts":326460047905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7030489,"id":"0xaf88a611f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460047936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7030520},
-{"pid":27443,"tid":27459,"ts":326460047936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7030520,"id":"0xaf88a613f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460047967,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7030550,"id":"0xaf88a8e1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460047967,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7030550},
-{"pid":27443,"tid":27459,"ts":326460047967,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7030550},
-{"pid":27443,"tid":27459,"ts":326460048028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7030611,"id":"0xaf88a612f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460048028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7030611},
-{"pid":27443,"tid":27459,"ts":326460048058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7030642,"id":"0xaf88a8e7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460048058,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/Document.cpp","src_func":"checkLoadEventSoon"},"dur":31,"tdur":30,"tts":7030642},
-{"pid":27443,"tid":27459,"ts":326460048058,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":7030672},
-{"pid":27443,"tid":27459,"ts":326460048546,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7030734,"id":"0xaf88a613f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460048546,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2320,"tdur":1312,"tts":7030734},
-{"pid":27443,"tid":27459,"ts":326460048577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7030764,"id":"0xaf88a62cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460048577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7030764,"id":"0xaf88a8e2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460048577,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2289,"tdur":1282,"tts":7030764},
-{"pid":27443,"tid":27459,"ts":326460048668,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2198,"tdur":1190,"tts":7030856},
-{"pid":27443,"tid":27459,"ts":326460048668,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7030856,"id":"0x30000006c"},
-{"pid":27443,"tid":27459,"ts":326460048699,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1862,"tdur":1007,"tts":7030886},
-{"pid":27443,"tid":27459,"ts":326460048699,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":488,"tdur":31,"tts":7030886},
-{"pid":27443,"tid":27459,"ts":326460049187,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1374,"tdur":946,"tts":7030947},
-{"pid":27443,"tid":27459,"ts":326460049248,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7031008},
-{"pid":27443,"tid":27459,"ts":326460049309,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7031039},
-{"pid":27443,"tid":27459,"ts":326460049340,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7031069},
-{"pid":27443,"tid":27459,"ts":326460049370,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7031100},
-{"pid":27443,"tid":27459,"ts":326460049401,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7031130},
-{"pid":27443,"tid":27459,"ts":326460049401,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7031161},
-{"pid":27443,"tid":27459,"ts":326460049432,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7031191},
-{"pid":27443,"tid":27459,"ts":326460049493,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1037,"tdur":641,"tts":7031222},
-{"pid":27443,"tid":27459,"ts":326460049645,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":855,"tdur":458,"tts":7031374},
-{"pid":27443,"tid":27459,"ts":326460049676,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7031405},
-{"pid":27443,"tid":27459,"ts":326460049981,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":81,"frame":"0x78c60000"}},"tts":7031680,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460049981,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":30,"tts":7031680},
-{"pid":27443,"tid":27459,"ts":326460050408,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":7031741},
-{"pid":27443,"tid":27459,"ts":326460050408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7031741,"id":"0xaf88a746f182217a"},
-{"pid":27443,"tid":27459,"ts":326460050469,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7031802},
-{"pid":27443,"tid":27459,"ts":326460050591,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":91,"tts":7031924},
-{"pid":27443,"tid":27459,"ts":326460050591,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7031924,"id":"0xaf88aa3df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460050896,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7032076,"id":"0xaf88a62cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460050927,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7032107},
-{"pid":27443,"tid":27459,"ts":326460050958,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7032137,"id":"0xaf88a62df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460050958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7032137,"id":"0xaf88a8e3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460050958,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7032137},
-{"pid":27443,"tid":27459,"ts":326460050988,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7032168},
-{"pid":27443,"tid":27459,"ts":326460051049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7032229,"id":"0xaf88a62df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460051049,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7032229},
-{"pid":27443,"tid":27459,"ts":326460051049,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7032260,"id":"0xaf88a62ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460051080,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7032260,"id":"0xaf88a8ccf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460051080,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":152,"tts":7032260},
-{"pid":27443,"tid":27459,"ts":326460051110,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7032290,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460051110,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.101},"dur":122,"tdur":122,"tts":7032290},
-{"pid":27443,"tid":27459,"ts":326460051141,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7032321},
-{"pid":27443,"tid":27459,"ts":326460051171,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7032351},
-{"pid":27443,"tid":27477,"ts":326460047967,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":122},"dur":30,"tdur":31,"tts":583335},
-{"pid":27443,"tid":27477,"ts":326460048028,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":122},"tts":583396},
-{"pid":27443,"tid":27477,"ts":326460048119,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":583488},
-{"pid":27443,"tid":27477,"ts":326460048150,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1007,"tdur":366,"tts":583519},
-{"pid":27443,"tid":27477,"ts":326460048150,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":213,"tdur":152,"tts":583519},
-{"pid":27443,"tid":27477,"ts":326460048394,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":583702},
-{"pid":27443,"tid":27477,"ts":326460048394,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":583702},
-{"pid":27443,"tid":27477,"ts":326460048394,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":732,"tdur":152,"tts":583702},
-{"pid":27443,"tid":27477,"ts":326460048424,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":702,"tdur":122,"tts":583732},
-{"pid":27443,"tid":27477,"ts":326460048424,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":583732,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460048455,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":580,"tdur":0,"tts":583763},
-{"pid":27443,"tid":27477,"ts":326460049035,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":583763},
-{"pid":27443,"tid":27477,"ts":326460049096,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":583824,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460049126,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":583854,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460049157,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":583885,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460049676,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":583946,"id":"0xaf88a749f182217a"},
-{"pid":27443,"tid":27477,"ts":326460049706,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":583976},
-{"pid":27443,"tid":27477,"ts":326460049706,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":583976},{"pid":27443,"tid":27477,"ts":326460049706,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":583976,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460049737,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":584007},
-{"pid":27443,"tid":27477,"ts":326460049737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":584007,"id":"0xaf88a744f182217a"},
-{"pid":27443,"tid":27477,"ts":326460049767,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":584037,"id":"0xaf88a74af182217a"},
-{"pid":27443,"tid":27477,"ts":326460049767,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":584037},
-{"pid":27443,"tid":27477,"ts":326460049798,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":584068},
-{"pid":27443,"tid":27477,"ts":326460049798,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":584068,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460049798,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":584068},
-{"pid":27443,"tid":27477,"ts":326460049828,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":584098,"id":"0xaf88a745f182217a"},
-{"pid":27443,"tid":27477,"ts":326460049859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":584129,"id":"0xaf88a74bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460049859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":584129},
-{"pid":27443,"tid":27477,"ts":326460049859,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":584129},
-{"pid":27443,"tid":27477,"ts":326460049889,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":584159,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460049889,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":584159},
-{"pid":27443,"tid":27477,"ts":326460049889,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":584190,"id":"0xaf88a744f182217a"},
-{"pid":27443,"tid":27477,"ts":326460049920,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2014,"tdur":1068,"tts":584190},
-{"pid":27443,"tid":27477,"ts":326460049920,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2014,"tdur":1068,"tts":584190},
-{"pid":27443,"tid":27477,"ts":326460049950,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":428,"tdur":0,"tts":584220},
-{"pid":27443,"tid":27477,"ts":326460049950,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":584220},
-{"pid":27443,"tid":27477,"ts":326460050378,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":122,"tts":584251},
-{"pid":27443,"tid":27477,"ts":326460050408,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":584251},
-{"pid":27443,"tid":27477,"ts":326460050530,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1404,"tdur":855,"tts":584373},
-{"pid":27443,"tid":27477,"ts":326460050561,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1343,"tdur":824,"tts":584404},
-{"pid":27443,"tid":27477,"ts":326460050561,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1343,"tdur":824,"tts":584404},
-{"pid":27443,"tid":27477,"ts":326460050591,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":584434,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460050652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":584495},
-{"pid":27443,"tid":27477,"ts":326460050683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":584526},
-{"pid":27443,"tid":27477,"ts":326460050713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":584556},
-{"pid":27443,"tid":27477,"ts":326460050744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584587},
-{"pid":27443,"tid":27477,"ts":326460050774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584617},
-{"pid":27443,"tid":27477,"ts":326460050774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":519,"tdur":0,"tts":584617},
-{"pid":27443,"tid":27477,"ts":326460050774,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":519,"tdur":0,"tts":584617},
-{"pid":27443,"tid":27477,"ts":326460051324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584648},
-{"pid":27443,"tid":27477,"ts":326460051324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":584648},
-{"pid":27443,"tid":27477,"ts":326460051354,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":584678},
-{"pid":27443,"tid":27477,"ts":326460051385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584709},
-{"pid":27443,"tid":27477,"ts":326460051385,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":584709},
-{"pid":27443,"tid":27477,"ts":326460051415,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584739},
-{"pid":27443,"tid":27477,"ts":326460051415,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":584770},
-{"pid":27443,"tid":27477,"ts":326460051446,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584770},
-{"pid":27443,"tid":27477,"ts":326460051476,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584800},
-{"pid":27443,"tid":27477,"ts":326460051476,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":584800},
-{"pid":27443,"tid":27477,"ts":326460051507,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584831},
-{"pid":27443,"tid":27477,"ts":326460051537,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584861},
-{"pid":27443,"tid":27477,"ts":326460051537,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":584861},
-{"pid":27443,"tid":27477,"ts":326460051568,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584892},
-{"pid":27443,"tid":27459,"ts":326460051202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7032382,"id":"0xaf88a8fcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460051232,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7032412,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460051263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7032443,"id":"0xaf88a62ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460051293,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7032473},
-{"pid":27443,"tid":27459,"ts":326460054315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7032534,"id":"0xaf88a62ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460054315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1404,"tdur":1252,"tts":7032534},
-{"pid":27443,"tid":27459,"ts":326460054345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7032565,"id":"0xaf88a628f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460054376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7032595,"id":"0xaf88a8fdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460054376,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1312,"tdur":1160,"tts":7032595},
-{"pid":27443,"tid":27459,"ts":326460054467,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1221,"tdur":1068,"tts":7032687},
-{"pid":27443,"tid":27459,"ts":326460054467,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7032687,"id":"0x30000006d"},
-{"pid":27443,"tid":27459,"ts":326460054498,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1099,"tdur":946,"tts":7032717},
-{"pid":27443,"tid":27459,"ts":326460054528,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1038,"tdur":855,"tts":7032778},
-{"pid":27443,"tid":27459,"ts":326460054620,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7032839},
-{"pid":27443,"tid":27459,"ts":326460054650,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7032870},
-{"pid":27443,"tid":27459,"ts":326460054681,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7032900},
-{"pid":27443,"tid":27459,"ts":326460054864,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7032962},
-{"pid":27443,"tid":27459,"ts":326460054925,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7032992},
-{"pid":27443,"tid":27459,"ts":326460054956,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7033023},
-{"pid":27443,"tid":27459,"ts":326460054986,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7033053},
-{"pid":27443,"tid":27459,"ts":326460055017,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":549,"tts":7033084},
-{"pid":27443,"tid":27459,"ts":326460055169,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":367,"tdur":366,"tts":7033236},
-{"pid":27443,"tid":27459,"ts":326460055200,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7033267},
-{"pid":27443,"tid":27459,"ts":326460055475,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":82,"frame":"0x78c60000"}},"tts":7033541,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460055505,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7033572},
-{"pid":27443,"tid":27459,"ts":326460055597,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":62,"tts":7033663},
-{"pid":27443,"tid":27459,"ts":326460055627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7033694,"id":"0xaf88aa3ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460055749,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7033816,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460055749,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":7033816},
-{"pid":27443,"tid":27459,"ts":326460055993,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7033816,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460056054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7033877,"id":"0xaf88a628f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460056054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7033877},
-{"pid":27443,"tid":27459,"ts":326460056085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7033908,"id":"0xaf88a62af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460056085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7033908,"id":"0xaf88a8fcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460056085,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":0,"tts":7033938},
-{"pid":27443,"tid":27459,"ts":326460056115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7033938,"id":"0xaf88a8fff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460056177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7033999,"id":"0xaf88a629f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460056177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12360,"tdur":8302,"tts":7033999},
-{"pid":27443,"tid":27459,"ts":326460056177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7033999,"id":"0xaf88a8fef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460056207,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12300,"tdur":8240,"tts":7034030},
-{"pid":27443,"tid":27459,"ts":326460056207,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":123},"tts":7034030},
-{"pid":27443,"tid":27459,"ts":326460056207,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":7034060},
-{"pid":27443,"tid":27459,"ts":326460056268,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8668,"tdur":5127,"tts":7034091},
-{"pid":27443,"tid":27459,"ts":326460056299,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":7034121},
-{"pid":27443,"tid":27459,"ts":326460056329,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":81,"frame":"0x78c60000"}},"dur":8302,"tdur":4792,"tts":7034182},
-{"pid":27443,"tid":27459,"ts":326460056421,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":8210,"tdur":4731,"tts":7034243},
-{"pid":27443,"tid":27459,"ts":326460056421,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7034243},
-{"pid":27443,"tid":27459,"ts":326460060327,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7037448},
-{"pid":27443,"tid":27459,"ts":326460060632,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7037753},
-{"pid":27443,"tid":27459,"ts":326460060663,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7037814},
-{"pid":27443,"tid":27459,"ts":326460060694,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7037814},
-{"pid":27443,"tid":27459,"ts":326460060877,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7038028},
-{"pid":27443,"tid":27459,"ts":326460064112,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7038455},
-{"pid":27443,"tid":27459,"ts":326460064600,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7038944},
-{"pid":27443,"tid":27459,"ts":326460064661,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":82,"frame":"0x78c60000"}},"dur":244,"tdur":183,"tts":7039005},
-{"pid":27443,"tid":27459,"ts":326460064753,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":152,"tdur":61,"tts":7039127},
-{"pid":27443,"tid":27459,"ts":326460064783,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7039127},
-{"pid":27443,"tid":27459,"ts":326460064814,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7039157},
-{"pid":27443,"tid":27459,"ts":326460064814,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":31,"tts":7039157},
-{"pid":27443,"tid":27459,"ts":326460064936,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2716,"tdur":2442,"tts":7039218},
-{"pid":27443,"tid":27459,"ts":326460064966,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7039249},
-{"pid":27443,"tid":27459,"ts":326460064997,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7039279},
-{"pid":27443,"tid":27459,"ts":326460064997,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7039279},
-{"pid":27443,"tid":27459,"ts":326460065638,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7039737},
-{"pid":27443,"tid":27477,"ts":326460051629,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":584953},
-{"pid":27443,"tid":27477,"ts":326460051659,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":584984},
-{"pid":27443,"tid":27477,"ts":326460051690,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":585014},
-{"pid":27443,"tid":27477,"ts":326460051721,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":585045},
-{"pid":27443,"tid":27477,"ts":326460051721,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":585045},
-{"pid":27443,"tid":27477,"ts":326460051751,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":585075},
-{"pid":27443,"tid":27477,"ts":326460051782,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":585106},
-{"pid":27443,"tid":27477,"ts":326460051812,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":585136},
-{"pid":27443,"tid":27477,"ts":326460051843,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":585167},
-{"pid":27443,"tid":27477,"ts":326460051873,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":585197},
-{"pid":27443,"tid":27477,"ts":326460051873,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":585197},
-{"pid":27443,"tid":27477,"ts":326460051934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":585258,"id":"0xaf88a745f182217a"},
-{"pid":27443,"tid":27477,"ts":326460051934,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":585258},
-{"pid":27443,"tid":27477,"ts":326460051965,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":91,"tdur":91,"tts":585289},
-{"pid":27443,"tid":27477,"ts":326460051965,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":585289},
-{"pid":27443,"tid":27477,"ts":326460051965,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":585289},
-{"pid":27443,"tid":27477,"ts":326460051995,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":31,"tdur":31,"tts":585319},
-{"pid":27443,"tid":27477,"ts":326460051995,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":585319},
-{"pid":27443,"tid":27477,"ts":326460052056,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":585380},
-{"pid":27443,"tid":27477,"ts":326460052056,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":585380},
-{"pid":27443,"tid":27477,"ts":326460052087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":585411,"id":"0xaf88a746f182217a"},
-{"pid":27443,"tid":27477,"ts":326460052087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":585411},
-{"pid":27443,"tid":27477,"ts":326460052087,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":30,"tts":585411},
-{"pid":27443,"tid":27477,"ts":326460054071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":585472,"id":"0xaf88a747f182217a"},
-{"pid":27443,"tid":27477,"ts":326460054101,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":585502},
-{"pid":27443,"tid":27477,"ts":326460054101,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":585502},
-{"pid":27443,"tid":27477,"ts":326460054132,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":585533,"id":"0x30000006d"},
-{"pid":27443,"tid":27477,"ts":326460054132,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":585533},
-{"pid":27443,"tid":27477,"ts":326460054162,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":585563,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460054193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":585594,"id":"0xaf88a8fdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460054193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":585624,"id":"0xaf88a62ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460054956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":585716,"id":"0xaf88a740f182217a"},
-{"pid":27443,"tid":27477,"ts":326460054956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":274,"tts":585747},
-{"pid":27443,"tid":27477,"ts":326460055017,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460058049.0,"frame_time_us":326460052226.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":214,"tts":585777},
-{"pid":27443,"tid":27477,"ts":326460055017,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460058049.0,"frame_time_us":326460052226.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":213,"tdur":214,"tts":585777},
-{"pid":27443,"tid":27477,"ts":326460055078,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":585838},
-{"pid":27443,"tid":27477,"ts":326460055108,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":123},"tts":585869},
-{"pid":27443,"tid":27477,"ts":326460055169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":585930,"id":"0xaf88a8fef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460055200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":585960,"id":"0xaf88a629f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460055200,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":585960},
-{"pid":27443,"tid":27477,"ts":326460055200,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":585960},
-{"pid":27443,"tid":27477,"ts":326460055230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":585991,"id":"0xaf88a741f182217a"},
-{"pid":27443,"tid":27477,"ts":326460055261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":586021,"id":"0xaf88a741f182217a"},
-{"pid":27443,"tid":27477,"ts":326460055261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1770,"tdur":1465,"tts":586021},
-{"pid":27443,"tid":27477,"ts":326460055291,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1740,"tdur":1434,"tts":586052},
-{"pid":27443,"tid":27477,"ts":326460055291,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1740,"tdur":1434,"tts":586052},
-{"pid":27443,"tid":27477,"ts":326460055291,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":122},"dur":855,"tdur":854,"tts":586052},
-{"pid":27443,"tid":27477,"ts":326460055322,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":122},"dur":275,"tdur":275,"tts":586082},
-{"pid":27443,"tid":27477,"ts":326460055597,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":122},"dur":30,"tdur":30,"tts":586357},
-{"pid":27443,"tid":27477,"ts":326460055627,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":122},"tts":586387},
-{"pid":27443,"tid":27477,"ts":326460055749,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":586510},
-{"pid":27443,"tid":27477,"ts":326460055749,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":586510},
-{"pid":27443,"tid":27477,"ts":326460055780,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":586540},
-{"pid":27443,"tid":27477,"ts":326460055780,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":586540},
-{"pid":27443,"tid":27477,"ts":326460055780,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":586571,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460055841,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":586601},
-{"pid":27443,"tid":27477,"ts":326460056146,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":586906},
-{"pid":27443,"tid":27477,"ts":326460056177,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":549,"tdur":244,"tts":586937},
-{"pid":27443,"tid":27477,"ts":326460056177,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":586937},
-{"pid":27443,"tid":27477,"ts":326460056177,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":488,"tdur":153,"tts":586967},
-{"pid":27443,"tid":27477,"ts":326460056268,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":31,"tdur":0,"tts":587059},
-{"pid":27443,"tid":27477,"ts":326460056299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":587089,"id":"0xaf88aa3ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460056726,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":587181,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460056756,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":587211,"id":"0x30000006b"},
-{"pid":27443,"tid":27466,"ts":326460053949,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":302060},
-{"pid":27443,"tid":27466,"ts":326460053949,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302090,"id":"0xba453702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460054010,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":302121},
-{"pid":27443,"tid":27466,"ts":326460054010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":302121,"id":"0xaf88a747f182217a"},
-{"pid":27443,"tid":27466,"ts":326460054834,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":302243},
-{"pid":27443,"tid":27466,"ts":326460054864,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":302243},
-{"pid":27443,"tid":27466,"ts":326460054895,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302273,"id":"0xba453802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460054925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":302304,"id":"0xaf88a740f182217a"},
-{"pid":27443,"tid":27466,"ts":326460055688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":302365,"id":"0xaf88aa3ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460055719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":302395},
-{"pid":27443,"tid":27466,"ts":326460055719,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302395,"id":"0xccc4aa02"},
-{"pid":27443,"tid":27466,"ts":326460056390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":302517,"id":"0xaf88aa3ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460056390,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":302517},
-{"pid":27443,"tid":27466,"ts":326460056390,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302517,"id":"0xccc4ab06"},
-{"pid":27443,"tid":27466,"ts":326460056573,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":302609},
-{"pid":27443,"tid":27466,"ts":326460056604,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":62,"tts":302639},
-{"pid":27443,"tid":27466,"ts":326460056634,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302670,"id":"0xc4c18b0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460056970,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":302762,"id":"0xaf88aa38f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460056970,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":302762},
-{"pid":27443,"tid":27466,"ts":326460057001,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302792,"id":"0xccc4ac02"},
-{"pid":27443,"tid":27466,"ts":326460059900,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":302884},
-{"pid":27443,"tid":27466,"ts":326460059931,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":122,"tts":302914},
-{"pid":27443,"tid":27466,"ts":326460059931,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":302914,"id":"0xba453902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460059992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":302975,"id":"0xaf88a742f182217a"},
-{"pid":27443,"tid":27466,"ts":326460070613,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":303097},
-{"pid":27443,"tid":27466,"ts":326460070643,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":303128},
-{"pid":27443,"tid":27466,"ts":326460070674,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":303158,"id":"0xba453b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460070704,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":303189},
-{"pid":27443,"tid":27466,"ts":326460070735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":303219,"id":"0xaf88a75cf182217a"},
-{"pid":27443,"tid":27466,"ts":326460071131,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":303311},
-{"pid":27443,"tid":27466,"ts":326460071162,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":303341},
-{"pid":27443,"tid":27466,"ts":326460071162,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":303341,"id":"0xba453c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460071193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":303372,"id":"0xaf88a75df182217a"},
-{"pid":27443,"tid":27466,"ts":326460073848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":303494,"id":"0xaf88aa39f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460073848,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":303494},
-{"pid":27443,"tid":27466,"ts":326460073878,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":303525,"id":"0xccc4ae02"},
-{"pid":27443,"tid":27466,"ts":326460074733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":303647,"id":"0xaf88aa3af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460074733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":303647},
-{"pid":27443,"tid":27466,"ts":326460074763,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":303677,"id":"0xccc4af06"},
-{"pid":27443,"tid":27466,"ts":326460074947,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":303738},
-{"pid":27443,"tid":27466,"ts":326460074947,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":303769},
-{"pid":27443,"tid":27466,"ts":326460074977,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":303769,"id":"0xc4c18e0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460075282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":303860,"id":"0xaf88aa3bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460075282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":303860},
-{"pid":27443,"tid":27466,"ts":326460075313,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":303891,"id":"0xccc4b002"},
-{"pid":27443,"tid":27466,"ts":326460077632,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":303982},
-{"pid":27443,"tid":27466,"ts":326460077663,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":304013},
-{"pid":27443,"tid":27466,"ts":326460077693,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":304043,"id":"0xba453d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460077724,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":304074,"id":"0xaf88a756f182217a"},
-{"pid":27443,"tid":27466,"ts":326460078640,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":335,"tdur":122,"tts":304196},
-{"pid":27443,"tid":27466,"ts":326460078670,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":305,"tdur":91,"tts":304227},
-{"pid":27443,"tid":27466,"ts":326460078670,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":304227,"id":"0xba453f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460078670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":304227,"id":"0xaf88a8f5f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460078701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":304257,"id":"0xaf88a623f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460078945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":304288,"id":"0xaf88a8f6f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460079799,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":304379},
-{"pid":27443,"tid":27466,"ts":326460079830,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":91,"tdur":91,"tts":304410},
-{"pid":27443,"tid":27466,"ts":326460079830,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":304410,"id":"0xba454002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460079860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":304440,"id":"0xaf88a8f7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460079860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":304440,"id":"0xaf88a63ef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460079891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":304471,"id":"0xaf88a8f0f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460081997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":304593,"id":"0xaf88aa34f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460081997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":304593},
-{"pid":27443,"tid":27466,"ts":326460081997,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":304623,"id":"0xccc4b102"},
-{"pid":27443,"tid":27477,"ts":326460056756,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":587211},
-{"pid":27443,"tid":27477,"ts":326460056909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":587364,"id":"0xaf88aa38f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460056970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":587425,"id":"0xaf88a8f8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460057001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":587456,"id":"0xaf88a62bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460060053,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":587547,"id":"0xaf88a742f182217a"},
-{"pid":27443,"tid":27477,"ts":326460060083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":587578},
-{"pid":27443,"tid":27477,"ts":326460060114,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":587608},
-{"pid":27443,"tid":27477,"ts":326460060114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":587608,"id":"0xaf88a8f9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460068202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":587700,"id":"0xaf88a743f182217a"},
-{"pid":27443,"tid":27477,"ts":326460068202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":3754,"tdur":1190,"tts":587700},
-{"pid":27443,"tid":27477,"ts":326460068202,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":3754,"tdur":1190,"tts":587700},
-{"pid":27443,"tid":27477,"ts":326460068232,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":587730},
-{"pid":27443,"tid":27477,"ts":326460068232,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":3724,"tdur":1160,"tts":587730},
-{"pid":27443,"tid":27477,"ts":326460068232,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":3724,"tdur":1160,"tts":587730},
-{"pid":27443,"tid":27477,"ts":326460068263,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":587761},
-{"pid":27443,"tid":27477,"ts":326460068263,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":587761},
-{"pid":27443,"tid":27477,"ts":326460068293,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":587791,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460068293,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":587791},
-{"pid":27443,"tid":27477,"ts":326460068324,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":587822},
-{"pid":27443,"tid":27477,"ts":326460068446,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":3479,"tdur":916,"tts":587944},
-{"pid":27443,"tid":27477,"ts":326460068446,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":123},"dur":396,"tdur":305,"tts":587944},
-{"pid":27443,"tid":27477,"ts":326460068842,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":123},"dur":31,"tdur":31,"tts":588249},
-{"pid":27443,"tid":27477,"ts":326460068873,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":123},"tts":588310},
-{"pid":27443,"tid":27477,"ts":326460068873,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2503,"tdur":0,"tts":588310},
-{"pid":27443,"tid":27477,"ts":326460071528,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":588463},
-{"pid":27443,"tid":27477,"ts":326460071528,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":588463},
-{"pid":27443,"tid":27477,"ts":326460071559,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":153,"tts":588493},
-{"pid":27443,"tid":27477,"ts":326460071711,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":588646},
-{"pid":27443,"tid":27477,"ts":326460071711,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":588676},
-{"pid":27443,"tid":27477,"ts":326460071742,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":588676},
-{"pid":27443,"tid":27477,"ts":326460071742,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":153,"tts":588676},
-{"pid":27443,"tid":27477,"ts":326460071772,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":588707,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460071772,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":588707},
-{"pid":27443,"tid":27477,"ts":326460071803,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":588738},
-{"pid":27443,"tid":27477,"ts":326460071864,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":588799,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460071894,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":588829,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460071925,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":588860,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460071986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":588921,"id":"0xaf88a75cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460071986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":588921},
-{"pid":27443,"tid":27477,"ts":326460071986,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":122,"tts":588921},
-{"pid":27443,"tid":27477,"ts":326460072017,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":588951,"id":"0x30000006e"},
-{"pid":27443,"tid":27477,"ts":326460072017,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":588951},
-{"pid":27443,"tid":27477,"ts":326460072047,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":588982,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460072078,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":589012,"id":"0xaf88a8faf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460072078,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":589012,"id":"0xaf88a625f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460072139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":589073,"id":"0xaf88a75df182217a"},
-{"pid":27443,"tid":27477,"ts":326460072139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":589073},
-{"pid":27443,"tid":27477,"ts":326460072169,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460074731.0,"frame_time_us":326460068908.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":589104},
-{"pid":27443,"tid":27477,"ts":326460072200,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460074731.0,"frame_time_us":326460068908.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":589134},
-{"pid":27443,"tid":27477,"ts":326460072230,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460085574},"dur":31,"tdur":30,"tts":589165},
-{"pid":27443,"tid":27477,"ts":326460072230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":589165,"id":"0xaf88a759f182217a"},
-{"pid":27443,"tid":27477,"ts":326460072261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":589195,"id":"0xaf88a75ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460072291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":589226},
-{"pid":27443,"tid":27477,"ts":326460072291,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":589226},
-{"pid":27443,"tid":27477,"ts":326460072291,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":589226,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460072322,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":589256},
-{"pid":27443,"tid":27477,"ts":326460072322,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":589256,"id":"0xaf88a75af182217a"},
-{"pid":27443,"tid":27477,"ts":326460072352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":589287,"id":"0xaf88a75ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460072352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":589287},
-{"pid":27443,"tid":27477,"ts":326460072352,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":589287},
-{"pid":27443,"tid":27477,"ts":326460072383,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":589317,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460072383,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":589317},
-{"pid":27443,"tid":27477,"ts":326460072413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":589348,"id":"0xaf88a75bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460072413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":589348,"id":"0xaf88a758f182217a"},
-{"pid":27443,"tid":27459,"ts":326460065668,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7039768},
-{"pid":27443,"tid":27459,"ts":326460065668,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":7039768},
-{"pid":27443,"tid":27459,"ts":326460065821,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1831,"tdur":1800,"tts":7039829},
-{"pid":27443,"tid":27459,"ts":326460065821,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1618,"tdur":1617,"tts":7039829},
-{"pid":27443,"tid":27459,"ts":326460065851,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":367,"tdur":366,"tts":7039859},
-{"pid":27443,"tid":27459,"ts":326460066218,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7040225},
-{"pid":27443,"tid":27459,"ts":326460066401,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":7040408},
-{"pid":27443,"tid":27459,"ts":326460066492,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":7040500},
-{"pid":27443,"tid":27459,"ts":326460066523,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":916,"tdur":915,"tts":7040531},
-{"pid":27443,"tid":27459,"ts":326460067469,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7041477},
-{"pid":27443,"tid":27459,"ts":326460067500,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":92,"tts":7041507},
-{"pid":27443,"tid":27459,"ts":326460067652,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":123},"dur":427,"tdur":427,"tts":7041660},
-{"pid":27443,"tid":27459,"ts":326460067652,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":427,"tts":7041660},
-{"pid":27443,"tid":27459,"ts":326460067896,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":31,"tdur":31,"tts":7041904},
-{"pid":27443,"tid":27459,"ts":326460067957,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":0,"tdur":0,"tts":7041965},
-{"pid":27443,"tid":27459,"ts":326460067988,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":0,"tdur":0,"tts":7041996},
-{"pid":27443,"tid":27459,"ts":326460067988,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":30,"tdur":0,"tts":7041996},
-{"pid":27443,"tid":27459,"ts":326460068018,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":0,"tdur":0,"tts":7042026},
-{"pid":27443,"tid":27459,"ts":326460068018,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":31,"tdur":31,"tts":7042026},
-{"pid":27443,"tid":27459,"ts":326460068049,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":123},"dur":30,"tdur":0,"tts":7042057},
-{"pid":27443,"tid":27459,"ts":326460068079,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7042087,"id":"0x30000006c"},
-{"pid":27443,"tid":27459,"ts":326460068079,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7042087,"id":"0x30000006d"},
-{"pid":27443,"tid":27459,"ts":326460068110,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":91,"tts":7042118},
-{"pid":27443,"tid":27459,"ts":326460068110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7042118,"id":"0xaf88a743f182217a"},
-{"pid":27443,"tid":27459,"ts":326460068476,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7042270},
-{"pid":27443,"tid":27459,"ts":326460068568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7042331,"id":"0xaf88a62af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460068598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":122,"tts":7042362},
-{"pid":27443,"tid":27459,"ts":326460068598,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":7042362},
-{"pid":27443,"tid":27459,"ts":326460068751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7042423,"id":"0xaf88a624f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460068781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7042453,"id":"0xaf88a8f8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460068781,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":7042453},
-{"pid":27443,"tid":27459,"ts":326460068781,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7042453},
-{"pid":27443,"tid":27459,"ts":326460068842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7042514,"id":"0xaf88a62bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460068842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7042514},
-{"pid":27443,"tid":27459,"ts":326460068873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7042545,"id":"0xaf88a8f9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460068873,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":7042545},
-{"pid":27443,"tid":27459,"ts":326460068904,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7042575},
-{"pid":27443,"tid":27459,"ts":326460068995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7042667,"id":"0xaf88a624f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460068995,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7042667},
-{"pid":27443,"tid":27459,"ts":326460072139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7042759,"id":"0xaf88a625f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460072169,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1679,"tdur":1679,"tts":7042789},
-{"pid":27443,"tid":27459,"ts":326460072169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7042789,"id":"0xaf88a626f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460072200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7042820,"id":"0xaf88a8faf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460072200,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1648,"tdur":1648,"tts":7042820},
-{"pid":27443,"tid":27459,"ts":326460072261,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1556,"tdur":1556,"tts":7042881},
-{"pid":27443,"tid":27459,"ts":326460072261,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7042911,"id":"0x30000006e"},
-{"pid":27443,"tid":27459,"ts":326460072291,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1435,"tdur":1435,"tts":7042911},
-{"pid":27443,"tid":27459,"ts":326460072322,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1404,"tdur":1404,"tts":7042942},
-{"pid":27443,"tid":27459,"ts":326460072383,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7043003},
-{"pid":27443,"tid":27459,"ts":326460072413,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7043064},
-{"pid":27443,"tid":27459,"ts":326460072474,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7043094},
-{"pid":27443,"tid":27459,"ts":326460072505,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7043125},
-{"pid":27443,"tid":27459,"ts":326460072505,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7043155},
-{"pid":27443,"tid":27459,"ts":326460072535,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7043155},
-{"pid":27443,"tid":27459,"ts":326460072566,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7043186},
-{"pid":27443,"tid":27459,"ts":326460072596,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1099,"tdur":1068,"tts":7043247},
-{"pid":27443,"tid":27459,"ts":326460072749,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7043369},
-{"pid":27443,"tid":27459,"ts":326460073146,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7043796},
-{"pid":27443,"tid":27459,"ts":326460073268,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7043888},
-{"pid":27443,"tid":27459,"ts":326460073298,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7043918},
-{"pid":27443,"tid":27459,"ts":326460073573,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":83,"frame":"0x78c60000"}},"tts":7044193,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460073604,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7044224},
-{"pid":27443,"tid":27459,"ts":326460073604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7044224,"id":"0xaf88a755f182217a"},
-{"pid":27443,"tid":27459,"ts":326460073665,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7044285},
-{"pid":27443,"tid":27477,"ts":326460072444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":589378},
-{"pid":27443,"tid":27477,"ts":326460072474,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":589409},
-{"pid":27443,"tid":27477,"ts":326460072474,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":589409,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460072474,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":589409},
-{"pid":27443,"tid":27477,"ts":326460072505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":589439,"id":"0xaf88a75af182217a"},
-{"pid":27443,"tid":27477,"ts":326460072505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":977,"tdur":977,"tts":589439},
-{"pid":27443,"tid":27477,"ts":326460072535,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":916,"tdur":916,"tts":589470},
-{"pid":27443,"tid":27477,"ts":326460072535,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":589470},
-{"pid":27443,"tid":27477,"ts":326460072535,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":589470},
-{"pid":27443,"tid":27477,"ts":326460072566,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":589501},
-{"pid":27443,"tid":27477,"ts":326460072566,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":589501},
-{"pid":27443,"tid":27477,"ts":326460072658,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":793,"tdur":794,"tts":589592},
-{"pid":27443,"tid":27477,"ts":326460072658,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":793,"tdur":794,"tts":589592},
-{"pid":27443,"tid":27477,"ts":326460072658,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":763,"tdur":763,"tts":589592},
-{"pid":27443,"tid":27477,"ts":326460072658,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":589623,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460072749,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":589684},
-{"pid":27443,"tid":27477,"ts":326460072780,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589714},
-{"pid":27443,"tid":27477,"ts":326460072810,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589745},
-{"pid":27443,"tid":27477,"ts":326460072810,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":589775},
-{"pid":27443,"tid":27477,"ts":326460072841,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":589775},
-{"pid":27443,"tid":27477,"ts":326460072871,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589806},
-{"pid":27443,"tid":27477,"ts":326460072871,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":589806},
-{"pid":27443,"tid":27477,"ts":326460072902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589836},
-{"pid":27443,"tid":27477,"ts":326460072902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":589867},
-{"pid":27443,"tid":27477,"ts":326460072932,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589867},
-{"pid":27443,"tid":27477,"ts":326460072963,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589897},
-{"pid":27443,"tid":27477,"ts":326460072963,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":589897},
-{"pid":27443,"tid":27477,"ts":326460072993,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589928},
-{"pid":27443,"tid":27477,"ts":326460072993,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":589928},
-{"pid":27443,"tid":27477,"ts":326460073024,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":589958},
-{"pid":27443,"tid":27477,"ts":326460073024,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":589989},
-{"pid":27443,"tid":27477,"ts":326460073054,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":589989},
-{"pid":27443,"tid":27477,"ts":326460073085,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":590019},
-{"pid":27443,"tid":27477,"ts":326460073085,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":590019},
-{"pid":27443,"tid":27477,"ts":326460073115,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":590050},
-{"pid":27443,"tid":27477,"ts":326460073176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":590111},
-{"pid":27443,"tid":27477,"ts":326460073207,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":590141},
-{"pid":27443,"tid":27477,"ts":326460073237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":590172},
-{"pid":27443,"tid":27477,"ts":326460073237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":590172},
-{"pid":27443,"tid":27477,"ts":326460073268,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":590202},
-{"pid":27443,"tid":27477,"ts":326460073268,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":590233},
-{"pid":27443,"tid":27477,"ts":326460073298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":590233},
-{"pid":27443,"tid":27477,"ts":326460073329,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":590264},
-{"pid":27443,"tid":27477,"ts":326460073390,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":590325},
-{"pid":27443,"tid":27477,"ts":326460073390,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":590325},
-{"pid":27443,"tid":27477,"ts":326460073390,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":590325},
-{"pid":27443,"tid":27477,"ts":326460073421,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":590355},
-{"pid":27443,"tid":27477,"ts":326460073451,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":590386,"id":"0xaf88a754f182217a"},
-{"pid":27443,"tid":27477,"ts":326460073482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":590416,"id":"0xaf88a75bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460073482,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":590416},
-{"pid":27443,"tid":27477,"ts":326460073482,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":590416},
-{"pid":27443,"tid":27477,"ts":326460073512,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":590447},
-{"pid":27443,"tid":27477,"ts":326460073512,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":590447},
-{"pid":27443,"tid":27477,"ts":326460073512,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":590447},
-{"pid":27443,"tid":27477,"ts":326460073543,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":590477},
-{"pid":27443,"tid":27477,"ts":326460073573,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":590508},
-{"pid":27443,"tid":27477,"ts":326460073573,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":590508},
-{"pid":27443,"tid":27477,"ts":326460073634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":590569,"id":"0xaf88a754f182217a"},
-{"pid":27443,"tid":27477,"ts":326460073665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1709,"tdur":1404,"tts":590599},
-{"pid":27443,"tid":27477,"ts":326460073665,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1709,"tdur":1404,"tts":590599},
-{"pid":27443,"tid":27477,"ts":326460073665,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":590599},
-{"pid":27443,"tid":27477,"ts":326460073695,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1648,"tdur":1343,"tts":590630},
-{"pid":27443,"tid":27477,"ts":326460073695,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":123},"dur":824,"tdur":824,"tts":590630},
-{"pid":27443,"tid":27477,"ts":326460073726,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":123},"dur":244,"tdur":244,"tts":590660},
-{"pid":27443,"tid":27459,"ts":326460073756,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7044376},
-{"pid":27443,"tid":27459,"ts":326460073756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7044376,"id":"0xaf88aa39f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460073878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7044498,"id":"0xaf88a626f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460073909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":30,"tts":7044529},
-{"pid":27443,"tid":27459,"ts":326460073909,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":0,"tts":7044529},
-{"pid":27443,"tid":27459,"ts":326460075404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7044620,"id":"0xaf88a627f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460075435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7044651},
-{"pid":27443,"tid":27459,"ts":326460075435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7044651,"id":"0xaf88a620f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460075465,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7044681,"id":"0xaf88a8fbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460075465,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":7044681},
-{"pid":27443,"tid":27459,"ts":326460075465,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7044681},
-{"pid":27443,"tid":27459,"ts":326460075526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7044742,"id":"0xaf88a620f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460075526,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7044742},
-{"pid":27443,"tid":27459,"ts":326460078060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7044834,"id":"0xaf88a621f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460078060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":92,"tts":7044834},
-{"pid":27443,"tid":27459,"ts":326460078090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7044864,"id":"0xaf88a622f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460078090,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7044864,"id":"0xaf88a8f4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460078121,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":91,"tdur":31,"tts":7044895},
-{"pid":27443,"tid":27459,"ts":326460078121,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":7044895},
-{"pid":27443,"tid":27459,"ts":326460078273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7044987,"id":"0xaf88a622f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460078273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7044987},
-{"pid":27443,"tid":27459,"ts":326460079036,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7045048,"id":"0xaf88a623f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460079036,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":91,"tts":7045048},
-{"pid":27443,"tid":27459,"ts":326460079128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7045078,"id":"0xaf88a63cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460079128,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":7045078},
-{"pid":27443,"tid":27459,"ts":326460079219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7045109,"id":"0xaf88a8f5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460079219,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":7045109},
-{"pid":27443,"tid":27459,"ts":326460079280,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7045170,"id":"0xaf88a63cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460079280,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":947,"tdur":550,"tts":7045200},
-{"pid":27443,"tid":27459,"ts":326460079280,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":0,"tts":7045200},
-{"pid":27443,"tid":27459,"ts":326460079708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7045231,"id":"0xaf88a63df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460079738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7045261,"id":"0xaf88a8f6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460079738,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":458,"tts":7045261},
-{"pid":27443,"tid":27459,"ts":326460079830,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":366,"tdur":366,"tts":7045353},
-{"pid":27443,"tid":27459,"ts":326460080166,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.95","frame":"0x78c60000","statusCode":204,"mimeType":"image/gif"}},"tts":7045689,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460080257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7045780,"id":"0xaf88a63df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460080257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":92,"tts":7045780},
-{"pid":27443,"tid":27459,"ts":326460080257,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1038,"tdur":31,"tts":7045780},
-{"pid":27443,"tid":27459,"ts":326460081325,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7045841,"id":"0xaf88a63ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460081325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7045841,"id":"0xaf88a8f7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460081356,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7045872},
-{"pid":27443,"tid":27459,"ts":326460081386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7045902,"id":"0xaf88a63ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460081417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":610,"tdur":610,"tts":7045933},
-{"pid":27443,"tid":27459,"ts":326460081417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7045933,"id":"0xaf88a8f0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460081447,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":550,"tdur":550,"tts":7045963},
-{"pid":27443,"tid":27459,"ts":326460081447,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":550,"tdur":550,"tts":7045963},
-{"pid":27443,"tid":27459,"ts":326460081478,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7045994,"id":"0xaf88a638f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460081478,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7045994,"id":"0xaf88ae4cfda78de2"},
-{"pid":27443,"tid":27459,"ts":326460081569,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.95","didFail":false,"networkTime":326460.079555}},"tts":7046085,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460081600,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":244,"tdur":244,"tts":7046116},
-{"pid":27443,"tid":27459,"ts":326460081630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7046146,"id":"0xaf88a8f1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460081875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7046390,"id":"0xaf88a8f2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460081905,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":7046421},
-{"pid":27443,"tid":27459,"ts":326460081905,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7046421,"id":"0xaf88aa34f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460082058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7046574,"id":"0xaf88a63ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460082058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7046574},
-{"pid":27443,"tid":27459,"ts":326460088131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7046696,"id":"0xaf88a639f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460088131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1435,"tdur":1190,"tts":7046696},
-{"pid":27443,"tid":27459,"ts":326460088162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7046726,"id":"0xaf88a63af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460088192,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7046757,"id":"0xaf88a8f3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460088192,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1374,"tdur":1129,"tts":7046757},
-{"pid":27443,"tid":27459,"ts":326460088284,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1282,"tdur":1007,"tts":7046848},
-{"pid":27443,"tid":27459,"ts":326460088284,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7046848,"id":"0x30000006f"},
-{"pid":27443,"tid":27459,"ts":326460088314,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1008,"tdur":885,"tts":7046879},
-{"pid":27443,"tid":27477,"ts":326460073970,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":123},"dur":61,"tdur":62,"tts":590904},
-{"pid":27443,"tid":27477,"ts":326460074031,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":123},"tts":590966},
-{"pid":27443,"tid":27477,"ts":326460074122,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":591057},
-{"pid":27443,"tid":27477,"ts":326460074153,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":591088},
-{"pid":27443,"tid":27477,"ts":326460074153,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":591088},
-{"pid":27443,"tid":27477,"ts":326460074153,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":591088},
-{"pid":27443,"tid":27477,"ts":326460074184,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":591118,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460074245,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":591179},
-{"pid":27443,"tid":27477,"ts":326460074489,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":591423},
-{"pid":27443,"tid":27477,"ts":326460074519,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":550,"tdur":244,"tts":591454},
-{"pid":27443,"tid":27477,"ts":326460074519,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":591484},
-{"pid":27443,"tid":27477,"ts":326460074550,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":488,"tdur":183,"tts":591484},
-{"pid":27443,"tid":27477,"ts":326460074641,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12842},"dur":0,"tdur":0,"tts":591576},
-{"pid":27443,"tid":27477,"ts":326460074672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":591606,"id":"0xaf88aa3af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460075069,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":591698,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460075099,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":591729,"id":"0x30000006c"},
-{"pid":27443,"tid":27477,"ts":326460075099,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":591729,"id":"0x30000006d"},
-{"pid":27443,"tid":27477,"ts":326460075130,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":591759},
-{"pid":27443,"tid":27477,"ts":326460075221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":591851,"id":"0xaf88aa3bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460075282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":591942,"id":"0xaf88a8fbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460075313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":591942,"id":"0xaf88a627f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460075374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":592003,"id":"0xaf88a755f182217a"},
-{"pid":27443,"tid":27477,"ts":326460075404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":0,"tdur":0,"tts":592034},
-{"pid":27443,"tid":27477,"ts":326460075404,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":592034},
-{"pid":27443,"tid":27477,"ts":326460077754,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":592125,"id":"0xaf88a756f182217a"},
-{"pid":27443,"tid":27477,"ts":326460077785,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":592125},
-{"pid":27443,"tid":27477,"ts":326460077815,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":91,"tts":592156},
-{"pid":27443,"tid":27477,"ts":326460077907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":592217,"id":"0xaf88a8f4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460077907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":592217,"id":"0xaf88a621f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460085995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460085},"tts":592369,"id":"0xaf88a759f182217a"},
-{"pid":27443,"tid":27477,"ts":326460086025,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":592400},
-{"pid":27443,"tid":27477,"ts":326460087857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":592461,"id":"0xaf88a757f182217a"},
-{"pid":27443,"tid":27477,"ts":326460087857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":152,"tts":592492},
-{"pid":27443,"tid":27477,"ts":326460087887,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":152,"tts":592492},
-{"pid":27443,"tid":27477,"ts":326460087918,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":592522,"id":"0x30000006f"},
-{"pid":27443,"tid":27477,"ts":326460087918,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":592522},
-{"pid":27443,"tid":27477,"ts":326460087948,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":592553,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460088009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":592614,"id":"0xaf88a8f3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460088009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":592614,"id":"0xaf88a639f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460088131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":592675,"id":"0xaf88a750f182217a"},
-{"pid":27443,"tid":27477,"ts":326460088131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":274,"tts":592675},
-{"pid":27443,"tid":27477,"ts":326460088162,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460091412.0,"frame_time_us":326460085589.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":305,"tdur":244,"tts":592705},
-{"pid":27443,"tid":27477,"ts":326460088192,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460091412.0,"frame_time_us":326460085589.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":245,"tdur":183,"tts":592736},
-{"pid":27443,"tid":27477,"ts":326460088314,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":124},"tts":592797},
-{"pid":27443,"tid":27477,"ts":326460088375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":592858,"id":"0xaf88a88cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460088406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":592888,"id":"0xaf88a63bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460088406,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":592888},
-{"pid":27443,"tid":27477,"ts":326460088437,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460102255},"dur":0,"tdur":0,"tts":592919},
-{"pid":27443,"tid":27477,"ts":326460088437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":592919,"id":"0xaf88a751f182217a"},
-{"pid":27443,"tid":27477,"ts":326460101102,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":593041,"id":"0xaf88a752f182217a"},
-{"pid":27443,"tid":27477,"ts":326460101133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1343,"tdur":1343,"tts":593071},
-{"pid":27443,"tid":27477,"ts":326460101133,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1312,"tdur":1313,"tts":593071},
-{"pid":27443,"tid":27477,"ts":326460101164,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":593102},
-{"pid":27443,"tid":27477,"ts":326460101164,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1281,"tdur":1282,"tts":593102},
-{"pid":27443,"tid":27477,"ts":326460101194,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1251,"tdur":1252,"tts":593132},
-{"pid":27443,"tid":27477,"ts":326460101194,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":593132},
-{"pid":27443,"tid":27477,"ts":326460101194,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":593163},
-{"pid":27443,"tid":27477,"ts":326460101225,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":593163,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460101255,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":593193},
-{"pid":27443,"tid":27477,"ts":326460101286,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":593224},
-{"pid":27443,"tid":27477,"ts":326460101438,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":977,"tdur":976,"tts":593377},
-{"pid":27443,"tid":27477,"ts":326460101438,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":124},"dur":336,"tdur":335,"tts":593377},
-{"pid":27443,"tid":27477,"ts":326460101774,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":124},"dur":61,"tdur":61,"tts":593712},
-{"pid":27443,"tid":27477,"ts":326460101835,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":124},"tts":593773},
-{"pid":27443,"tid":27466,"ts":326460087155,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":304715},
-{"pid":27443,"tid":27466,"ts":326460087185,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":304745},
-{"pid":27443,"tid":27466,"ts":326460087216,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":304776,"id":"0xba454102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460087246,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":304806},
-{"pid":27443,"tid":27466,"ts":326460087246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":304837,"id":"0xaf88a757f182217a"},
-{"pid":27443,"tid":27466,"ts":326460087643,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":304929},
-{"pid":27443,"tid":27466,"ts":326460087674,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":304959},
-{"pid":27443,"tid":27466,"ts":326460087704,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":304990,"id":"0xba454202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460087704,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305020,"id":"0xaf88a750f182217a"},
-{"pid":27443,"tid":27466,"ts":326460089444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":305112,"id":"0xaf88aa35f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460089444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":305112},
-{"pid":27443,"tid":27466,"ts":326460089474,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":305142,"id":"0xccc4b302"},
-{"pid":27443,"tid":27466,"ts":326460104216,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":305264},{"pid":27443,"tid":27466,"ts":326460104246,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":305295},
-{"pid":27443,"tid":27466,"ts":326460104246,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":305295,"id":"0xba454302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460104307,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":305356},
-{"pid":27443,"tid":27466,"ts":326460104338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305386,"id":"0xaf88a768f182217a"},
-{"pid":27443,"tid":27466,"ts":326460104795,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":305478},
-{"pid":27443,"tid":27466,"ts":326460104826,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":305508},
-{"pid":27443,"tid":27466,"ts":326460104857,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":305539,"id":"0xba454402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460104887,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":305569,"id":"0xaf88a769f182217a"},
-{"pid":27443,"tid":27466,"ts":326460107268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":305722,"id":"0xaf88aa36f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460107298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":305722},
-{"pid":27443,"tid":27466,"ts":326460107298,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":305722,"id":"0xccc4b502"},
-{"pid":27443,"tid":27466,"ts":326460108336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":305936,"id":"0xaf88aa37f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460108366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":305936},
-{"pid":27443,"tid":27466,"ts":326460108366,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":305936,"id":"0xccc4b602"},
-{"pid":27443,"tid":27466,"ts":326460108427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":305997,"id":"0xaf88aa30f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460108427,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":305997},
-{"pid":27443,"tid":27466,"ts":326460108488,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":306058},
-{"pid":27443,"tid":27466,"ts":326460108488,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":306058,"id":"0xccc4b706"},
-{"pid":27443,"tid":27466,"ts":326460108916,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":306149},
-{"pid":27443,"tid":27466,"ts":326460108946,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":306180},
-{"pid":27443,"tid":27466,"ts":326460108977,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":306210,"id":"0xc4c1910a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460109770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":306332,"id":"0xaf88aa31f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460109770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":306332},
-{"pid":27443,"tid":27466,"ts":326460109770,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":306332,"id":"0xccc4b802"},
-{"pid":27443,"tid":27466,"ts":326460112212,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":306455},
-{"pid":27443,"tid":27466,"ts":326460112242,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":306485},
-{"pid":27443,"tid":27466,"ts":326460112242,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":306485,"id":"0xba454502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460112273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":306546,"id":"0xaf88a764f182217a"},
-{"pid":27443,"tid":27466,"ts":326460121704,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":306607},
-{"pid":27443,"tid":27466,"ts":326460121734,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":306668},
-{"pid":27443,"tid":27466,"ts":326460121765,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":306668,"id":"0xba454702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460121795,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":306699},
-{"pid":27443,"tid":27466,"ts":326460121826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":306729,"id":"0xaf88a762f182217a"},
-{"pid":27443,"tid":27466,"ts":326460122375,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":306851},
-{"pid":27443,"tid":27466,"ts":326460122375,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":306851},
-{"pid":27443,"tid":27466,"ts":326460122406,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":306882,"id":"0xba454802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460122436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":306912,"id":"0xaf88a763f182217a"},
-{"pid":27443,"tid":27466,"ts":326460123688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307034,"id":"0xaf88aa32f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460123688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":307034},
-{"pid":27443,"tid":27466,"ts":326460123688,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307034,"id":"0xccc4ba02"},
-{"pid":27443,"tid":27466,"ts":326460137300,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":307126},
-{"pid":27443,"tid":27466,"ts":326460137361,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":307187},
-{"pid":27443,"tid":27466,"ts":326460137361,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307187,"id":"0xba454902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460137391,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":307218},
-{"pid":27443,"tid":27466,"ts":326460137422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":307248,"id":"0xaf88a774f182217a"},
-{"pid":27443,"tid":27466,"ts":326460137605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307340,"id":"0xaf88aa33f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460137635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":307340},
-{"pid":27443,"tid":27466,"ts":326460137635,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307340,"id":"0xccc4bb06"},
-{"pid":27443,"tid":27466,"ts":326460137696,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":307401},
-{"pid":27443,"tid":27466,"ts":326460137727,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":307431},
-{"pid":27443,"tid":27466,"ts":326460137727,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307431,"id":"0xba454a02","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326460088345,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":977,"tdur":855,"tts":7046909},
-{"pid":27443,"tid":27459,"ts":326460088406,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7047001},
-{"pid":27443,"tid":27459,"ts":326460088467,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7047031},
-{"pid":27443,"tid":27459,"ts":326460088498,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7047062},
-{"pid":27443,"tid":27459,"ts":326460088528,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7047092},
-{"pid":27443,"tid":27459,"ts":326460088559,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7047123},
-{"pid":27443,"tid":27459,"ts":326460088589,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7047153},
-{"pid":27443,"tid":27459,"ts":326460088589,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7047153},
-{"pid":27443,"tid":27459,"ts":326460088650,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":672,"tdur":549,"tts":7047215},
-{"pid":27443,"tid":27459,"ts":326460088803,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":488,"tdur":366,"tts":7047367},
-{"pid":27443,"tid":27459,"ts":326460088803,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7047367},
-{"pid":27443,"tid":27459,"ts":326460089230,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":84,"frame":"0x78c60000"}},"tts":7047672,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460089261,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7047703},
-{"pid":27443,"tid":27459,"ts":326460089352,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7047794},
-{"pid":27443,"tid":27459,"ts":326460089383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7047825,"id":"0xaf88aa35f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460089596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7047916,"id":"0xaf88a63af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460089596,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":7047916},
-{"pid":27443,"tid":27459,"ts":326460089718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11812,"tdur":11232,"tts":7047947},
-{"pid":27443,"tid":27459,"ts":326460089718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7047947,"id":"0xaf88a634f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460089749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7047978,"id":"0xaf88a88cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460089749,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11750,"tdur":11170,"tts":7047978},
-{"pid":27443,"tid":27459,"ts":326460089749,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":124},"tts":7047978},
-{"pid":27443,"tid":27459,"ts":326460089779,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7048008},
-{"pid":27443,"tid":27459,"ts":326460089810,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8057,"tdur":8057,"tts":7048039},
-{"pid":27443,"tid":27459,"ts":326460089840,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7048069},
-{"pid":27443,"tid":27459,"ts":326460089871,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":83,"frame":"0x78c60000"}},"dur":7813,"tdur":7813,"tts":7048100},
-{"pid":27443,"tid":27459,"ts":326460089932,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7752,"tdur":7752,"tts":7048161},
-{"pid":27443,"tid":27459,"ts":326460089963,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7048191},
-{"pid":27443,"tid":27459,"ts":326460094785,"ph":"B","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7053013},
-{"pid":27443,"tid":27459,"ts":326460094907,"ph":"E","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7053135},
-{"pid":27443,"tid":27459,"ts":326460094937,"ph":"B","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7053166},
-{"pid":27443,"tid":27459,"ts":326460094968,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7053227},
-{"pid":27443,"tid":27459,"ts":326460095059,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7053319},
-{"pid":27443,"tid":27459,"ts":326460095090,"ph":"E","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7053349},
-{"pid":27443,"tid":27459,"ts":326460097654,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7055882},
-{"pid":27443,"tid":27459,"ts":326460097715,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":84,"frame":"0x78c60000"}},"dur":152,"tdur":153,"tts":7055943},
-{"pid":27443,"tid":27459,"ts":326460097776,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":30,"tts":7056035},
-{"pid":27443,"tid":27459,"ts":326460097806,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7056035},
-{"pid":27443,"tid":27459,"ts":326460097837,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7056065},
-{"pid":27443,"tid":27459,"ts":326460097867,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2686,"tdur":2442,"tts":7056096},
-{"pid":27443,"tid":27459,"ts":326460097898,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7056126},
-{"pid":27443,"tid":27459,"ts":326460097928,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7056157},
-{"pid":27443,"tid":27459,"ts":326460097928,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7056157},
-{"pid":27443,"tid":27459,"ts":326460098356,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7056584},
-{"pid":27443,"tid":27459,"ts":326460098386,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7056615},
-{"pid":27443,"tid":27459,"ts":326460098417,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2136,"tdur":1893,"tts":7056645},
-{"pid":27443,"tid":27459,"ts":326460098417,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1953,"tdur":1709,"tts":7056645},
-{"pid":27443,"tid":27459,"ts":326460098447,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":7056676},
-{"pid":27443,"tid":27459,"ts":326460098813,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":184,"tdur":183,"tts":7057042},
-{"pid":27443,"tid":27459,"ts":326460098997,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":7057225},
-{"pid":27443,"tid":27459,"ts":326460099088,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7057317},
-{"pid":27443,"tid":27459,"ts":326460099088,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1282,"tdur":977,"tts":7057347},
-{"pid":27443,"tid":27459,"ts":326460100370,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":7058385},
-{"pid":27443,"tid":27459,"ts":326460100431,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7058416},
-{"pid":27443,"tid":27459,"ts":326460100584,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":124},"dur":396,"tdur":397,"tts":7058568},
-{"pid":27443,"tid":27459,"ts":326460100584,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":396,"tdur":397,"tts":7058568},
-{"pid":27443,"tid":27459,"ts":326460100797,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":31,"tdur":0,"tts":7058812},
-{"pid":27443,"tid":27459,"ts":326460100858,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":0,"tdur":0,"tts":7058843},
-{"pid":27443,"tid":27459,"ts":326460100858,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":31,"tdur":30,"tts":7058843},
-{"pid":27443,"tid":27459,"ts":326460100889,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":0,"tdur":0,"tts":7058873},
-{"pid":27443,"tid":27459,"ts":326460100919,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":0,"tdur":0,"tts":7058904},
-{"pid":27443,"tid":27459,"ts":326460100919,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":31,"tdur":30,"tts":7058904},
-{"pid":27443,"tid":27459,"ts":326460100950,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":124},"dur":0,"tdur":0,"tts":7058934},
-{"pid":27443,"tid":27459,"ts":326460100980,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7058965,"id":"0x30000006e"},
-{"pid":27443,"tid":27459,"ts":326460100980,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7058965,"id":"0x30000006f"},
-{"pid":27443,"tid":27459,"ts":326460101011,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":427,"tdur":92,"tts":7058995},
-{"pid":27443,"tid":27459,"ts":326460101041,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7059026,"id":"0xaf88a752f182217a"},
-{"pid":27443,"tid":27459,"ts":326460101469,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7059148},
-{"pid":27443,"tid":27459,"ts":326460101560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7059209,"id":"0xaf88a63bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460101560,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7059209},
-{"pid":27443,"tid":27459,"ts":326460101621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7059270,"id":"0xaf88a634f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460101621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7059270},
-{"pid":27443,"tid":27459,"ts":326460106016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7059392,"id":"0xaf88a635f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460106016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1282,"tdur":1282,"tts":7059392},
-{"pid":27443,"tid":27459,"ts":326460106047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7059423,"id":"0xaf88a636f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460106077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7059453,"id":"0xaf88a88df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460106077,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1191,"tdur":1190,"tts":7059453},
-{"pid":27443,"tid":27459,"ts":326460106138,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1130,"tdur":1129,"tts":7059514},
-{"pid":27443,"tid":27459,"ts":326460106169,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7059545,"id":"0x300000070"},
-{"pid":27443,"tid":27459,"ts":326460106199,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":947,"tdur":946,"tts":7059575},
-{"pid":27443,"tid":27459,"ts":326460106230,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":915,"tts":7059606},
-{"pid":27443,"tid":27459,"ts":326460106291,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7059667},
-{"pid":27443,"tid":27459,"ts":326460106321,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7059697},
-{"pid":27443,"tid":27459,"ts":326460106352,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7059728},
-{"pid":27443,"tid":27459,"ts":326460106383,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7059758},
-{"pid":27443,"tid":27459,"ts":326460106413,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7059789},
-{"pid":27443,"tid":27459,"ts":326460106444,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7059819},
-{"pid":27443,"tid":27459,"ts":326460106474,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7059850},
-{"pid":27443,"tid":27459,"ts":326460106505,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":7059911},
-{"pid":27443,"tid":27459,"ts":326460106688,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":396,"tts":7060064},
-{"pid":27443,"tid":27459,"ts":326460106688,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7060064},
-{"pid":27443,"tid":27459,"ts":326460106993,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":85,"frame":"0x78c60000"}},"tts":7060399,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460107023,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":7060399},
-{"pid":27443,"tid":27459,"ts":326460107054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7060430,"id":"0xaf88a76bf182217a"},
-{"pid":27443,"tid":27459,"ts":326460107084,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7060460},
-{"pid":27443,"tid":27459,"ts":326460107176,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7060552},
-{"pid":27443,"tid":27459,"ts":326460107176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7060552,"id":"0xaf88aa36f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460107329,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7060705,"id":"0xaf88a636f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460107329,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7060705},
-{"pid":27443,"tid":27459,"ts":326460110533,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7060827,"id":"0xaf88a637f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460110533,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7060827},
-{"pid":27443,"tid":27459,"ts":326460110564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7060857,"id":"0xaf88a630f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460110564,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7060857,"id":"0xaf88a88ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460110594,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":7060888},
-{"pid":27443,"tid":27459,"ts":326460110594,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7060888},
-{"pid":27443,"tid":27459,"ts":326460110655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7060949,"id":"0xaf88a630f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460110655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7060949},
-{"pid":27443,"tid":27459,"ts":326460112578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7061040,"id":"0xaf88a631f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460112578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7061040},
-{"pid":27443,"tid":27459,"ts":326460112609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7061071,"id":"0xaf88a632f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460112609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7061071,"id":"0xaf88a88ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460112609,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":7061071},
-{"pid":27443,"tid":27459,"ts":326460112639,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7061101},
-{"pid":27443,"tid":27459,"ts":326460112700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7061162,"id":"0xaf88a632f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460112700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7061162},
-{"pid":27443,"tid":27459,"ts":326460122497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7061284,"id":"0xaf88a633f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460122497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1191,"tts":7061284},
-{"pid":27443,"tid":27459,"ts":326460122528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7061315,"id":"0xaf88a6ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460122528,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7061315,"id":"0xaf88a888f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460122558,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1130,"tdur":1130,"tts":7061345},
-{"pid":27443,"tid":27459,"ts":326460122619,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1037,"tts":7061407},
-{"pid":27443,"tid":27459,"ts":326460122619,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7061407,"id":"0x300000071"},
-{"pid":27443,"tid":27459,"ts":326460122650,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":916,"tts":7061437},
-{"pid":27443,"tid":27459,"ts":326460122680,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":7061468},
-{"pid":27443,"tid":27459,"ts":326460122741,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7061529},
-{"pid":27443,"tid":27459,"ts":326460122772,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7061590},
-{"pid":27443,"tid":27459,"ts":326460122802,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7061620},
-{"pid":27443,"tid":27459,"ts":326460122833,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7061620},
-{"pid":27443,"tid":27477,"ts":326460101988,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":593956},
-{"pid":27443,"tid":27477,"ts":326460102018,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":593956},
-{"pid":27443,"tid":27477,"ts":326460102049,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":593987},
-{"pid":27443,"tid":27477,"ts":326460102171,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":594109},
-{"pid":27443,"tid":27477,"ts":326460102201,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":594140},
-{"pid":27443,"tid":27477,"ts":326460102201,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":594140},
-{"pid":27443,"tid":27477,"ts":326460102232,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":594170},
-{"pid":27443,"tid":27477,"ts":326460102232,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":594170,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460102262,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":594201},
-{"pid":27443,"tid":27477,"ts":326460102293,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":594231},
-{"pid":27443,"tid":27477,"ts":326460102354,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":594292,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460102384,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":594323,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460102415,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":594353,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460102476,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460102},"tts":594414,"id":"0xaf88a751f182217a"},
-{"pid":27443,"tid":27477,"ts":326460102506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":153,"tdur":61,"tts":594445},
-{"pid":27443,"tid":27477,"ts":326460102506,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":123,"tdur":30,"tts":594445},
-{"pid":27443,"tid":27477,"ts":326460102629,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":594475},
-{"pid":27443,"tid":27477,"ts":326460102690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":594536,"id":"0xaf88a753f182217a"},
-{"pid":27443,"tid":27477,"ts":326460102690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":594536},
-{"pid":27443,"tid":27477,"ts":326460102690,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":122,"tdur":91,"tts":594567},
-{"pid":27443,"tid":27477,"ts":326460102720,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":594597,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460102751,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":594597},
-{"pid":27443,"tid":27477,"ts":326460102781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":594628,"id":"0xaf88a76ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460102842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":594689,"id":"0xaf88a76cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460102842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":594689},
-{"pid":27443,"tid":27477,"ts":326460102873,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":91,"tts":594720},
-{"pid":27443,"tid":27477,"ts":326460102903,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":594750,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460102903,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":594750},
-{"pid":27443,"tid":27477,"ts":326460102934,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":594781,"id":"0xaf88a76ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460102995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":594842,"id":"0xaf88a76df182217a"},
-{"pid":27443,"tid":27477,"ts":326460102995,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":61,"tts":594872},
-{"pid":27443,"tid":27477,"ts":326460103025,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":594872},
-{"pid":27443,"tid":27477,"ts":326460103056,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":594903,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460103056,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":594903},
-{"pid":27443,"tid":27477,"ts":326460103117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":594964,"id":"0xaf88a76ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460103117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2472,"tdur":1556,"tts":594964},
-{"pid":27443,"tid":27477,"ts":326460103147,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2411,"tdur":1496,"tts":594994},
-{"pid":27443,"tid":27477,"ts":326460103147,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":595025},
-{"pid":27443,"tid":27477,"ts":326460103178,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":595025},
-{"pid":27443,"tid":27477,"ts":326460103208,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":595055},
-{"pid":27443,"tid":27477,"ts":326460103208,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":595055},
-{"pid":27443,"tid":27477,"ts":326460103300,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2258,"tdur":1343,"tts":595147},
-{"pid":27443,"tid":27477,"ts":326460103330,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2228,"tdur":1313,"tts":595177},
-{"pid":27443,"tid":27477,"ts":326460103330,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2228,"tdur":1313,"tts":595177},
-{"pid":27443,"tid":27477,"ts":326460103330,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":595177,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460103483,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":595299},
-{"pid":27443,"tid":27477,"ts":326460103544,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":595330},
-{"pid":27443,"tid":27477,"ts":326460103575,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":595391},
-{"pid":27443,"tid":27477,"ts":326460103605,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":595391},
-{"pid":27443,"tid":27477,"ts":326460103636,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":595452},
-{"pid":27443,"tid":27477,"ts":326460103697,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":595483},
-{"pid":27443,"tid":27477,"ts":326460103727,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":595513},
-{"pid":27443,"tid":27477,"ts":326460103758,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":595544},
-{"pid":27443,"tid":27477,"ts":326460103788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":595574},
-{"pid":27443,"tid":27477,"ts":326460103819,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":595605},
-{"pid":27443,"tid":27477,"ts":326460103880,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":595666},
-{"pid":27443,"tid":27477,"ts":326460103910,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":595696},
-{"pid":27443,"tid":27477,"ts":326460103941,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":595727},
-{"pid":27443,"tid":27477,"ts":326460103971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":595757},
-{"pid":27443,"tid":27477,"ts":326460104002,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":549,"tdur":31,"tts":595818},
-{"pid":27443,"tid":27477,"ts":326460104002,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":519,"tdur":0,"tts":595818},
-{"pid":27443,"tid":27477,"ts":326460104551,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":595849},
-{"pid":27443,"tid":27477,"ts":326460104582,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":595879},
-{"pid":27443,"tid":27477,"ts":326460104612,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":595910},
-{"pid":27443,"tid":27477,"ts":326460104643,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":397,"tdur":31,"tts":595940},
-{"pid":27443,"tid":27477,"ts":326460104643,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":0,"tts":595940},
-{"pid":27443,"tid":27477,"ts":326460105040,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":596001},
-{"pid":27443,"tid":27477,"ts":326460105162,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":596093},
-{"pid":27443,"tid":27477,"ts":326460105192,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":596123},
-{"pid":27443,"tid":27477,"ts":326460105223,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":596154},
-{"pid":27443,"tid":27477,"ts":326460105253,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":596215},
-{"pid":27443,"tid":27477,"ts":326460105314,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":596246},
-{"pid":27443,"tid":27477,"ts":326460105345,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":596276},
-{"pid":27443,"tid":27477,"ts":326460105345,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":596307},
-{"pid":27443,"tid":27477,"ts":326460105436,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":596368},
-{"pid":27443,"tid":27477,"ts":326460105467,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":596398},
-{"pid":27443,"tid":27477,"ts":326460105497,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":596429},
-{"pid":27443,"tid":27477,"ts":326460105528,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":596459},
-{"pid":27443,"tid":27477,"ts":326460105589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":596520,"id":"0xaf88a76ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460105589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":596520},
-{"pid":27443,"tid":27477,"ts":326460105620,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":152,"tts":596551},
-{"pid":27443,"tid":27477,"ts":326460105620,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":596551},
-{"pid":27443,"tid":27477,"ts":326460105650,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":596581},
-{"pid":27443,"tid":27477,"ts":326460105650,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":596581},
-{"pid":27443,"tid":27477,"ts":326460105681,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":596612},
-{"pid":27443,"tid":27477,"ts":326460105742,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":596673},
-{"pid":27443,"tid":27477,"ts":326460105742,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":596673},
-{"pid":27443,"tid":27477,"ts":326460105772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":596703,"id":"0xaf88a768f182217a"},
-{"pid":27443,"tid":27477,"ts":326460105803,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":596734},
-{"pid":27443,"tid":27477,"ts":326460105803,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":183,"tts":596734},
-{"pid":27443,"tid":27477,"ts":326460105833,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":596764,"id":"0x300000070"},
-{"pid":27443,"tid":27477,"ts":326460105833,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":596795},
-{"pid":27443,"tid":27477,"ts":326460105864,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":596795,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460105925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":596856,"id":"0xaf88a88df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460105925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":596856,"id":"0xaf88a635f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460106016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":596947,"id":"0xaf88a769f182217a"},
-{"pid":27443,"tid":27477,"ts":326460106016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":184,"tts":596947},
-{"pid":27443,"tid":27477,"ts":326460106047,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460108094.0,"frame_time_us":326460102271.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":153,"tts":596978},
-{"pid":27443,"tid":27477,"ts":326460106077,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460108094.0,"frame_time_us":326460102271.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":597009},
-{"pid":27443,"tid":27477,"ts":326460106108,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":597039},
-{"pid":27443,"tid":27477,"ts":326460106138,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":597070},
-{"pid":27443,"tid":27477,"ts":326460106169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":597100,"id":"0xaf88a76af182217a"},
-{"pid":27443,"tid":27477,"ts":326460106199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":597131,"id":"0xaf88a76af182217a"},
-{"pid":27443,"tid":27477,"ts":326460106230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6165,"tdur":2686,"tts":597161},
-{"pid":27443,"tid":27477,"ts":326460106230,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6165,"tdur":2686,"tts":597161},
-{"pid":27443,"tid":27477,"ts":326460106230,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":4273,"tdur":2350,"tts":597192},
-{"pid":27443,"tid":27477,"ts":326460106260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":124},"dur":1404,"tdur":1098,"tts":597192},
-{"pid":27443,"tid":27477,"ts":326460106291,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":124},"dur":336,"tdur":336,"tts":597222},
-{"pid":27443,"tid":27477,"ts":326460106627,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":124},"dur":30,"tdur":30,"tts":597558},
-{"pid":27443,"tid":27477,"ts":326460106657,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":124},"tts":597619},
-{"pid":27443,"tid":27477,"ts":326460106810,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":597741},
-{"pid":27443,"tid":27477,"ts":326460106840,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":597772},
-{"pid":27443,"tid":27477,"ts":326460106840,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":597772},
-{"pid":27443,"tid":27477,"ts":326460106840,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":597772},
-{"pid":27443,"tid":27477,"ts":326460106871,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":597802,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460106962,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":597894},
-{"pid":27443,"tid":27477,"ts":326460107664,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":598290},
-{"pid":27443,"tid":27477,"ts":326460107695,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1434,"tdur":732,"tts":598321},
-{"pid":27443,"tid":27477,"ts":326460107695,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":598321},
-{"pid":27443,"tid":27477,"ts":326460107725,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1343,"tdur":641,"tts":598351},
-{"pid":27443,"tid":27477,"ts":326460107786,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":92,"tdur":61,"tts":598443},
-{"pid":27443,"tid":27477,"ts":326460107909,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":598535},
-{"pid":27443,"tid":27477,"ts":326460107970,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":598596},
-{"pid":27443,"tid":27477,"ts":326460108031,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":598657},
-{"pid":27443,"tid":27477,"ts":326460108122,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":598748},
-{"pid":27443,"tid":27477,"ts":326460108183,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":92,"tdur":61,"tts":598840},
-{"pid":27443,"tid":27477,"ts":326460108214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":598840,"id":"0xaf88aa37f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460108305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":598931,"id":"0xaf88aa30f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460109129,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":599053,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460109160,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":599084,"id":"0x30000006e"},
-{"pid":27443,"tid":27477,"ts":326460109190,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":599114,"id":"0x30000006f"},
-{"pid":27443,"tid":27477,"ts":326460109190,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":1252,"tdur":367,"tts":599114},
-{"pid":27443,"tid":27477,"ts":326460109679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":599389,"id":"0xaf88aa31f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460110442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":599481,"id":"0xaf88a88ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460110472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":599511,"id":"0xaf88a637f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460110533,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1862,"tdur":275,"tts":599572},
-{"pid":27443,"tid":27477,"ts":326460110533,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1862,"tdur":275,"tts":599572},
-{"pid":27443,"tid":27477,"ts":326460110533,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":599572},
-{"pid":27443,"tid":27477,"ts":326460110594,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":599633},
-{"pid":27443,"tid":27477,"ts":326460110625,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":599664},
-{"pid":27443,"tid":27477,"ts":326460110625,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":1740,"tdur":152,"tts":599664},
-{"pid":27443,"tid":27477,"ts":326460110625,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":1740,"tdur":122,"tts":599694},
-{"pid":27443,"tid":27477,"ts":326460110655,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":599694,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460110655,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1587,"tdur":0,"tts":599694},
-{"pid":27443,"tid":27477,"ts":326460112273,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":599725},
-{"pid":27443,"tid":27477,"ts":326460112273,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":599725},
-{"pid":27443,"tid":27477,"ts":326460112334,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":599786,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460112365,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":599816,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460112365,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":599816,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460112426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":599877,"id":"0xaf88a76bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460112426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":599877},
-{"pid":27443,"tid":27477,"ts":326460112426,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":599877},
-{"pid":27443,"tid":27477,"ts":326460112456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":599908,"id":"0xaf88a764f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":599908},
-{"pid":27443,"tid":27477,"ts":326460112487,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":62,"tts":599938},
-{"pid":27443,"tid":27477,"ts":326460112517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":599969,"id":"0xaf88a88ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460112517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":599969,"id":"0xaf88a631f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460112578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600030,"id":"0xaf88a765f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":600030},
-{"pid":27443,"tid":27477,"ts":326460112578,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":600030},
-{"pid":27443,"tid":27477,"ts":326460112609,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":600061,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460112609,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":600061},
-{"pid":27443,"tid":27477,"ts":326460112609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":600091,"id":"0xaf88a760f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600091,"id":"0xaf88a766f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":600122},
-{"pid":27443,"tid":27477,"ts":326460112670,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":600122},
-{"pid":27443,"tid":27477,"ts":326460112670,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":600122,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460112700,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":600152},
-{"pid":27443,"tid":27477,"ts":326460112700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":600152,"id":"0xaf88a761f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112731,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600183,"id":"0xaf88a767f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112731,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":600183},
-{"pid":27443,"tid":27477,"ts":326460112731,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":600183},
-{"pid":27443,"tid":27477,"ts":326460112731,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":600183,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460112761,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":600213},
-{"pid":27443,"tid":27477,"ts":326460112761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600213,"id":"0xaf88a760f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":600244},
-{"pid":27443,"tid":27477,"ts":326460112792,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":600244},
-{"pid":27443,"tid":27477,"ts":326460112792,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":600244},
-{"pid":27443,"tid":27477,"ts":326460112792,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":600244},
-{"pid":27443,"tid":27477,"ts":326460112822,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":600274},
-{"pid":27443,"tid":27477,"ts":326460112822,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":600274},
-{"pid":27443,"tid":27477,"ts":326460112883,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":600335},
-{"pid":27443,"tid":27477,"ts":326460112883,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":600335},
-{"pid":27443,"tid":27477,"ts":326460112914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600366,"id":"0xaf88a761f182217a"},
-{"pid":27443,"tid":27477,"ts":326460112944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":600396},
-{"pid":27443,"tid":27477,"ts":326460112944,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":600396},
-{"pid":27443,"tid":27477,"ts":326460112944,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":600396},
-{"pid":27443,"tid":27477,"ts":326460112944,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":600427},
-{"pid":27443,"tid":27477,"ts":326460112975,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":30,"tts":600427},
-{"pid":27443,"tid":27477,"ts":326460112975,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":600427},
-{"pid":27443,"tid":27477,"ts":326460113036,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":600488},
-{"pid":27443,"tid":27477,"ts":326460113036,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":600488},
-{"pid":27443,"tid":27477,"ts":326460121856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600549,"id":"0xaf88a762f182217a"},
-{"pid":27443,"tid":27477,"ts":326460121887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":184,"tts":600579},
-{"pid":27443,"tid":27477,"ts":326460121887,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":122,"tts":600610},
-{"pid":27443,"tid":27477,"ts":326460121917,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":600610,"id":"0x300000071"},
-{"pid":27443,"tid":27477,"ts":326460121948,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":600640},
-{"pid":27443,"tid":27477,"ts":326460121948,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":600640,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460121978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":600671,"id":"0xaf88a888f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460122009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":600701,"id":"0xaf88a633f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460122467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":600793,"id":"0xaf88a763f182217a"},
-{"pid":27443,"tid":27477,"ts":326460122497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":213,"tts":600824},
-{"pid":27443,"tid":27477,"ts":326460122497,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460124776.0,"frame_time_us":326460118953.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":153,"tts":600854},
-{"pid":27443,"tid":27477,"ts":326460122528,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460124776.0,"frame_time_us":326460118953.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":152,"tdur":153,"tts":600854},
-{"pid":27443,"tid":27477,"ts":326460122558,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":125},"tts":600885},
-{"pid":27443,"tid":27477,"ts":326460122619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":600946,"id":"0xaf88a889f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460122619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":600976,"id":"0xaf88a6cdf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460122650,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":600976},
-{"pid":27443,"tid":27477,"ts":326460122680,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460135619},"dur":0,"tdur":0,"tts":601007},
-{"pid":27443,"tid":27477,"ts":326460122680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":601007,"id":"0xaf88a77cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460133973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":601098,"id":"0xaf88a77df182217a"},
-{"pid":27443,"tid":27477,"ts":326460133973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1007,"tdur":1007,"tts":601098},
-{"pid":27443,"tid":27477,"ts":326460133973,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1007,"tts":601098},
-{"pid":27443,"tid":27477,"ts":326460134003,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":601129},
-{"pid":27443,"tid":27477,"ts":326460134003,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":947,"tdur":946,"tts":601129},
-{"pid":27443,"tid":27477,"ts":326460134003,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":947,"tdur":946,"tts":601129},
-{"pid":27443,"tid":27477,"ts":326460134034,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":601159},
-{"pid":27443,"tid":27477,"ts":326460134034,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":601159},
-{"pid":27443,"tid":27477,"ts":326460134034,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":601190,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460134064,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":601190},
-{"pid":27443,"tid":27477,"ts":326460134095,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":601220},
-{"pid":27443,"tid":27477,"ts":326460134217,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":733,"tdur":733,"tts":601342},
-{"pid":27443,"tid":27477,"ts":326460134217,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":125},"dur":244,"tdur":245,"tts":601342},
-{"pid":27443,"tid":27477,"ts":326460134461,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":125},"dur":31,"tdur":30,"tts":601587},
-{"pid":27443,"tid":27477,"ts":326460134492,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":125},"tts":601648},
-{"pid":27443,"tid":27477,"ts":326460134614,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":601739},
-{"pid":27443,"tid":27477,"ts":326460134614,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":601739},
-{"pid":27443,"tid":27477,"ts":326460134644,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":306,"tdur":305,"tts":601770},
-{"pid":27443,"tid":27477,"ts":326460134644,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":601770},
-{"pid":27443,"tid":27477,"ts":326460134766,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":601892},
-{"pid":27443,"tid":27477,"ts":326460134766,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":601892},
-{"pid":27443,"tid":27477,"ts":326460134797,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":601922},
-{"pid":27443,"tid":27477,"ts":326460134797,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":601922},
-{"pid":27443,"tid":27477,"ts":326460134797,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":601922,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460134828,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":601953},
-{"pid":27443,"tid":27477,"ts":326460134828,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":601953},
-{"pid":27443,"tid":27477,"ts":326460134889,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":602014,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460134919,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":602044,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460134919,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":602044,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460134980,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":602105,"id":"0xaf88a77ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460134980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":602105},
-{"pid":27443,"tid":27477,"ts":326460135011,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":602136},
-{"pid":27443,"tid":27477,"ts":326460135011,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":602136,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460135041,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":602166},
-{"pid":27443,"tid":27477,"ts":326460135041,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":602166,"id":"0xaf88a779f182217a"},
-{"pid":27443,"tid":27477,"ts":326460135072,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":602197,"id":"0xaf88a77ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460135072,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":602197},
-{"pid":27443,"tid":27477,"ts":326460135072,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":602228},
-{"pid":27443,"tid":27477,"ts":326460135102,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":602228,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460135102,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":602228},
-{"pid":27443,"tid":27477,"ts":326460135133,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":602258,"id":"0xaf88a77af182217a"},
-{"pid":27443,"tid":27477,"ts":326460135133,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":602258,"id":"0xaf88a778f182217a"},
-{"pid":27443,"tid":27477,"ts":326460135163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":602289},
-{"pid":27443,"tid":27477,"ts":326460135163,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":602289},
-{"pid":27443,"tid":27477,"ts":326460135163,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":602289,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460135194,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":602319},
-{"pid":27443,"tid":27459,"ts":326460122864,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7061651},
-{"pid":27443,"tid":27459,"ts":326460122894,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7061681},
-{"pid":27443,"tid":27459,"ts":326460122925,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7061712},
-{"pid":27443,"tid":27459,"ts":326460122955,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7061742},
-{"pid":27443,"tid":27459,"ts":326460123138,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":366,"tdur":367,"tts":7061925},
-{"pid":27443,"tid":27459,"ts":326460123169,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7061956},
-{"pid":27443,"tid":27459,"ts":326460123474,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":86,"frame":"0x78c60000"}},"tts":7062261,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460123504,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7062292},
-{"pid":27443,"tid":27459,"ts":326460123596,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7062383},
-{"pid":27443,"tid":27459,"ts":326460123596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7062383,"id":"0xaf88aa32f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460123718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7062505,"id":"0xaf88a6ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460123718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10621,"tdur":9797,"tts":7062505},
-{"pid":27443,"tid":27459,"ts":326460123749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7062536,"id":"0xaf88a6cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460123749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7062536,"id":"0xaf88a889f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460123749,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10590,"tdur":9766,"tts":7062536},
-{"pid":27443,"tid":27459,"ts":326460123779,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":125},"tts":7062566},
-{"pid":27443,"tid":27459,"ts":326460123779,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7062566},
-{"pid":27443,"tid":27459,"ts":326460123810,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7325,"tdur":6715,"tts":7062627},
-{"pid":27443,"tid":27459,"ts":326460123840,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":7062627},
-{"pid":27443,"tid":27459,"ts":326460123871,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":85,"frame":"0x78c60000"}},"dur":7080,"tdur":6440,"tts":7062688},
-{"pid":27443,"tid":27459,"ts":326460123932,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6989,"tdur":6379,"tts":7062749},
-{"pid":27443,"tid":27459,"ts":326460123962,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7062749},
-{"pid":27443,"tid":27459,"ts":326460128357,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7067144},
-{"pid":27443,"tid":27459,"ts":326460128479,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7067266},
-{"pid":27443,"tid":27459,"ts":326460128540,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7067327},
-{"pid":27443,"tid":27459,"ts":326460128540,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7067327},
-{"pid":27443,"tid":27459,"ts":326460128662,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7067450},
-{"pid":27443,"tid":27459,"ts":326460128907,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7067694},
-{"pid":27443,"tid":27459,"ts":326460129425,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7068213},
-{"pid":27443,"tid":27459,"ts":326460129578,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7068365},
-{"pid":27443,"tid":27459,"ts":326460130890,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7069098},
-{"pid":27443,"tid":27459,"ts":326460130951,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":86,"frame":"0x78c60000"}},"dur":184,"tdur":153,"tts":7069189},
-{"pid":27443,"tid":27459,"ts":326460131043,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":92,"tdur":61,"tts":7069281},
-{"pid":27443,"tid":27459,"ts":326460131074,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7069281},
-{"pid":27443,"tid":27459,"ts":326460131104,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7069311},
-{"pid":27443,"tid":27459,"ts":326460131135,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2350,"tdur":2320,"tts":7069372},
-{"pid":27443,"tid":27459,"ts":326460131165,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7069403},
-{"pid":27443,"tid":27459,"ts":326460131196,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7069403},
-{"pid":27443,"tid":27459,"ts":326460131196,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7069433},
-{"pid":27443,"tid":27459,"ts":326460131623,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7069861},
-{"pid":27443,"tid":27459,"ts":326460131653,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7069891},
-{"pid":27443,"tid":27459,"ts":326460131684,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1801,"tdur":1801,"tts":7069891},
-{"pid":27443,"tid":27459,"ts":326460131714,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1587,"tdur":1587,"tts":7069922},
-{"pid":27443,"tid":27459,"ts":326460131714,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":367,"tdur":366,"tts":7069922},
-{"pid":27443,"tid":27459,"ts":326460132081,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7070288},
-{"pid":27443,"tid":27459,"ts":326460132264,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":61,"tts":7070502},
-{"pid":27443,"tid":27459,"ts":326460132386,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7070593},
-{"pid":27443,"tid":27459,"ts":326460132386,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":915,"tdur":916,"tts":7070593},
-{"pid":27443,"tid":27459,"ts":326460133332,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7071539},
-{"pid":27443,"tid":27459,"ts":326460133363,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":7071570},
-{"pid":27443,"tid":27459,"ts":326460133485,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":125},"dur":366,"tdur":366,"tts":7071692},
-{"pid":27443,"tid":27459,"ts":326460133515,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":336,"tts":7071722},
-{"pid":27443,"tid":27459,"ts":326460133698,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":31,"tdur":30,"tts":7071906},
-{"pid":27443,"tid":27459,"ts":326460133729,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":30,"tdur":31,"tts":7071936},
-{"pid":27443,"tid":27459,"ts":326460133759,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":0,"tdur":0,"tts":7071967},
-{"pid":27443,"tid":27459,"ts":326460133759,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":31,"tdur":30,"tts":7071967},
-{"pid":27443,"tid":27459,"ts":326460133790,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":0,"tdur":0,"tts":7071997},
-{"pid":27443,"tid":27459,"ts":326460133790,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":30,"tdur":31,"tts":7071997},
-{"pid":27443,"tid":27459,"ts":326460133820,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":125},"dur":31,"tdur":0,"tts":7072028},
-{"pid":27443,"tid":27459,"ts":326460133851,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7072058,"id":"0x300000070"},
-{"pid":27443,"tid":27459,"ts":326460133851,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7072058,"id":"0x300000071"},
-{"pid":27443,"tid":27459,"ts":326460133881,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":91,"tts":7072089},
-{"pid":27443,"tid":27459,"ts":326460133881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7072089,"id":"0xaf88a77df182217a"},
-{"pid":27443,"tid":27459,"ts":326460134278,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1371},"tts":7072241,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27498,"ts":326460129395,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":49656},
-{"pid":27443,"tid":27469,"ts":326460134889,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":297390},
-{"pid":27443,"tid":27469,"ts":326460134919,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":297421},
-{"pid":27443,"tid":27469,"ts":326460134950,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297451,"id":"0xaf88a77ef182217a"},
-{"pid":27443,"tid":27469,"ts":326460134950,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":297451},
-{"pid":27443,"tid":27469,"ts":326460134950,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":297451},
-{"pid":27443,"tid":27469,"ts":326460134980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297482,"id":"0xaf88a77ff182217a"},
-{"pid":27443,"tid":27469,"ts":326460134980,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":297482},
-{"pid":27443,"tid":27469,"ts":326460134980,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":297482},
-{"pid":27443,"tid":27469,"ts":326460135011,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297512,"id":"0xaf88a778f182217a"},
-{"pid":27443,"tid":27469,"ts":326460152529,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":153,"tdur":61,"tts":297543},
-{"pid":27443,"tid":27471,"ts":326460152621,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":355226},
-{"pid":27443,"tid":27471,"ts":326460152621,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":355226},
-{"pid":27443,"tid":27471,"ts":326460152651,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355257,"id":"0xaf88a772f182217a"},
-{"pid":27443,"tid":27469,"ts":326460152560,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":122,"tdur":31,"tts":297573},
-{"pid":27443,"tid":27471,"ts":326460152651,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":355257},
-{"pid":27443,"tid":27471,"ts":326460152651,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":355287},
-{"pid":27443,"tid":27469,"ts":326460152651,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297604,"id":"0xaf88a773f182217a"},
-{"pid":27443,"tid":27471,"ts":326460152682,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355287,"id":"0xaf88a70cf182217a"},
-{"pid":27443,"tid":27469,"ts":326460156772,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":297634},
-{"pid":27443,"tid":27469,"ts":326460156802,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":297665},
-{"pid":27443,"tid":27469,"ts":326460156833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297695,"id":"0xaf88a70bf182217a"},
-{"pid":27443,"tid":27469,"ts":326460156833,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":297695},
-{"pid":27443,"tid":27469,"ts":326460156863,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":297726},
-{"pid":27443,"tid":27469,"ts":326460156863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297726,"id":"0xaf88a704f182217a"},
-{"pid":27443,"tid":27469,"ts":326460156894,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":297756},
-{"pid":27443,"tid":27469,"ts":326460156894,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":297756},
-{"pid":27443,"tid":27469,"ts":326460156894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297756,"id":"0xaf88a705f182217a"},
-{"pid":27443,"tid":27469,"ts":326460183782,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":297817},
-{"pid":27443,"tid":27469,"ts":326460183813,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":297848},
-{"pid":27443,"tid":27469,"ts":326460183813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297848,"id":"0xaf88a71df182217a"},
-{"pid":27443,"tid":27471,"ts":326460183813,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":355379},
-{"pid":27443,"tid":27471,"ts":326460183843,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":355409},
-{"pid":27443,"tid":27469,"ts":326460183843,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":297878},
-{"pid":27443,"tid":27471,"ts":326460183843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355440,"id":"0xaf88a71ef182217a"},
-{"pid":27443,"tid":27469,"ts":326460183874,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":297909},
-{"pid":27443,"tid":27469,"ts":326460183874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":297909,"id":"0xaf88a71ff182217a"},
-{"pid":27443,"tid":27471,"ts":326460202918,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":355470},
-{"pid":27443,"tid":27471,"ts":326460202918,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":30,"tts":355501},
-{"pid":27443,"tid":27471,"ts":326460202949,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355501,"id":"0xaf88a710f182217a"},
-{"pid":27443,"tid":27471,"ts":326460202979,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":355531},
-{"pid":27443,"tid":27471,"ts":326460202979,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":355562},
-{"pid":27443,"tid":27471,"ts":326460203010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355562,"id":"0xaf88a711f182217a"},
-{"pid":27443,"tid":27471,"ts":326460203010,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":355562},
-{"pid":27443,"tid":27471,"ts":326460203041,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":355592},
-{"pid":27443,"tid":27471,"ts":326460203041,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355592,"id":"0xaf88a712f182217a"},
-{"pid":27443,"tid":27471,"ts":326460205391,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":355653},
-{"pid":27443,"tid":27471,"ts":326460205452,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":355714},
-{"pid":27443,"tid":27471,"ts":326460205452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355714,"id":"0xaf88a72ef182217a"},
-{"pid":27443,"tid":27469,"ts":326460205452,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":274,"tdur":61,"tts":297970},
-{"pid":27443,"tid":27469,"ts":326460205482,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":298000},
-{"pid":27443,"tid":27469,"ts":326460205482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298000,"id":"0xaf88a72ff182217a"},
-{"pid":27443,"tid":27471,"ts":326460205482,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":305,"tdur":92,"tts":355714},
-{"pid":27443,"tid":27471,"ts":326460205513,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":355745},
-{"pid":27443,"tid":27471,"ts":326460205513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355745,"id":"0xaf88a728f182217a"},
-{"pid":27443,"tid":27469,"ts":326460233286,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":298092},
-{"pid":27443,"tid":27469,"ts":326460233317,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":298123},
-{"pid":27443,"tid":27469,"ts":326460233347,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298153,"id":"0xaf88a73cf182217a"},
-{"pid":27443,"tid":27471,"ts":326460233347,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":355837},
-{"pid":27443,"tid":27471,"ts":326460233378,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":355867},
-{"pid":27443,"tid":27471,"ts":326460233378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355867,"id":"0xaf88a73df182217a"},
-{"pid":27443,"tid":27469,"ts":326460233378,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":298184},
-{"pid":27443,"tid":27469,"ts":326460233408,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":298214},
-{"pid":27443,"tid":27469,"ts":326460233408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298214,"id":"0xaf88a73ef182217a"},
-{"pid":27443,"tid":27459,"ts":326460134278,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7072241,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460134309,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7072272},
-{"pid":27443,"tid":27459,"ts":326460134370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460130},"tts":7072333,"id":"0xaf88a614f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460134400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7072363},
-{"pid":27443,"tid":27459,"ts":326460134431,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7072394,"id":"0xaf88a6cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460134431,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7072394},
-{"pid":27443,"tid":27459,"ts":326460134461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7072424,"id":"0xaf88a8e6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460134461,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":7072424},
-{"pid":27443,"tid":27459,"ts":326460134492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7072455,"id":"0xaf88a88af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460134492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7072485,"id":"0xaf88a6cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460134553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7072516,"id":"0xaf88a6cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460134553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":641,"tdur":641,"tts":7072516},
-{"pid":27443,"tid":27459,"ts":326460134583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7072546,"id":"0xaf88a6c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460134583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7072546,"id":"0xaf88a8f1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460134614,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":580,"tdur":580,"tts":7072577},
-{"pid":27443,"tid":27459,"ts":326460134614,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":580,"tdur":580,"tts":7072577},
-{"pid":27443,"tid":27459,"ts":326460134644,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7072607},
-{"pid":27443,"tid":27459,"ts":326460134675,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"error"}},"dur":458,"tdur":427,"tts":7072669},
-{"pid":27443,"tid":27459,"ts":326460134797,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":42,"frame":"0x78c60000"}},"dur":305,"tdur":274,"tts":7072791},
-{"pid":27443,"tid":27459,"ts":326460134828,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7072791},{"pid":27443,"tid":27459,"ts":326460135102,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7073065},
-{"pid":27443,"tid":27459,"ts":326460135163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7073126,"id":"0xaf88a88bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460135224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7073187,"id":"0xaf88a6c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135255,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7073218},
-{"pid":27443,"tid":27459,"ts":326460135255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7073218,"id":"0xaf88a6c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7073248,"id":"0xaf88a8f2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460135285,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":153,"tdur":153,"tts":7073248},
-{"pid":27443,"tid":27459,"ts":326460135285,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":153,"tdur":153,"tts":7073248},
-{"pid":27443,"tid":27459,"ts":326460135468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7073432,"id":"0xaf88a6c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135499,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7073462},
-{"pid":27443,"tid":27459,"ts":326460135499,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7073462,"id":"0xaf88a6caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7073493,"id":"0xaf88a88bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460135529,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7073493},
-{"pid":27443,"tid":27459,"ts":326460135529,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":7073493},
-{"pid":27443,"tid":27459,"ts":326460135591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7073554,"id":"0xaf88a6caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7073554},
-{"pid":27443,"tid":27459,"ts":326460135621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7073584,"id":"0xaf88a6cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7073584,"id":"0xaf88a8fff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460135621,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":7073584},
-{"pid":27443,"tid":27459,"ts":326460135652,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7073615,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460135652,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":-0.033},"dur":61,"tdur":61,"tts":7073615},
-{"pid":27443,"tid":27459,"ts":326460135682,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7073645,"id":"0xaf88a884f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460135680,"ph":"b","cat":"renderer.scheduler","name":"DeadlineOverrun","args":{},"tts":7073676,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460135713,"ph":"e","cat":"renderer.scheduler","name":"DeadlineOverrun","args":{},"tts":7073676,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460135713,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7073676,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460135774,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7073737,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460135774,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7073737,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460135804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7073767,"id":"0xaf88a6cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460135804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7073767},
-{"pid":27443,"tid":27459,"ts":326460138307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7073859,"id":"0xaf88a6c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460138307,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7073859},
-{"pid":27443,"tid":27459,"ts":326460138337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7073889,"id":"0xaf88a6c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460138368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7073920,"id":"0xaf88a885f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460138368,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7073920},
-{"pid":27443,"tid":27459,"ts":326460138368,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":7073920},
-{"pid":27443,"tid":27459,"ts":326460138429,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7073981,"id":"0xaf88a6c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460138429,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3266,"tdur":1526,"tts":7073981},
-{"pid":27443,"tid":27459,"ts":326460138490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7074042,"id":"0xaf88a6c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460138490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7074042,"id":"0xaf88a886f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460138520,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":3175,"tdur":1435,"tts":7074072},
-{"pid":27443,"tid":27459,"ts":326460138520,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":672,"tdur":0,"tts":7074072},
-{"pid":27443,"tid":27459,"ts":326460139253,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2411,"tdur":1281,"tts":7074195},
-{"pid":27443,"tid":27459,"ts":326460139283,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7074195,"id":"0x300000072"},
-{"pid":27443,"tid":27459,"ts":326460139314,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2259,"tdur":1160,"tts":7074225},
-{"pid":27443,"tid":27477,"ts":326460135194,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":602319,"id":"0xaf88a779f182217a"},
-{"pid":27443,"tid":27477,"ts":326460135224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1007,"tdur":946,"tts":602350},
-{"pid":27443,"tid":27477,"ts":326460135224,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1007,"tdur":946,"tts":602350},
-{"pid":27443,"tid":27477,"ts":326460135224,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":602350},
-{"pid":27443,"tid":27477,"ts":326460135224,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":602380},
-{"pid":27443,"tid":27477,"ts":326460135255,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":602380},
-{"pid":27443,"tid":27477,"ts":326460135255,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":602380},
-{"pid":27443,"tid":27477,"ts":326460135316,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":915,"tdur":824,"tts":602472},
-{"pid":27443,"tid":27477,"ts":326460135346,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":885,"tdur":824,"tts":602472},
-{"pid":27443,"tid":27477,"ts":326460135346,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":855,"tdur":793,"tts":602472},
-{"pid":27443,"tid":27477,"ts":326460135346,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":602472,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460135438,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602563},
-{"pid":27443,"tid":27477,"ts":326460135438,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":602563},
-{"pid":27443,"tid":27477,"ts":326460135468,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":602594},
-{"pid":27443,"tid":27477,"ts":326460135499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602624},
-{"pid":27443,"tid":27477,"ts":326460135499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":602624},
-{"pid":27443,"tid":27477,"ts":326460135529,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602655},
-{"pid":27443,"tid":27477,"ts":326460135560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602685},
-{"pid":27443,"tid":27477,"ts":326460135560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602685},
-{"pid":27443,"tid":27477,"ts":326460135591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602716},
-{"pid":27443,"tid":27477,"ts":326460135591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":602716},
-{"pid":27443,"tid":27477,"ts":326460135621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602746},
-{"pid":27443,"tid":27477,"ts":326460135621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":602746},
-{"pid":27443,"tid":27477,"ts":326460135652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602777},
-{"pid":27443,"tid":27477,"ts":326460135682,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602807},
-{"pid":27443,"tid":27477,"ts":326460135713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":602838},
-{"pid":27443,"tid":27477,"ts":326460135743,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602868},
-{"pid":27443,"tid":27477,"ts":326460135743,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":602868},
-{"pid":27443,"tid":27477,"ts":326460135774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602899},
-{"pid":27443,"tid":27477,"ts":326460135804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602929},
-{"pid":27443,"tid":27477,"ts":326460135804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":602929},
-{"pid":27443,"tid":27477,"ts":326460135865,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":92,"tdur":30,"tts":602991},
-{"pid":27443,"tid":27477,"ts":326460135865,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":602991},
-{"pid":27443,"tid":27477,"ts":326460135957,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":603021},
-{"pid":27443,"tid":27477,"ts":326460135987,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":603052},
-{"pid":27443,"tid":27477,"ts":326460136018,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":603082},
-{"pid":27443,"tid":27477,"ts":326460136018,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":603082},
-{"pid":27443,"tid":27477,"ts":326460136048,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":603113},
-{"pid":27443,"tid":27477,"ts":326460136079,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":603143},
-{"pid":27443,"tid":27477,"ts":326460136109,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":603174},
-{"pid":27443,"tid":27477,"ts":326460136140,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":603204},
-{"pid":27443,"tid":27477,"ts":326460136170,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":603235},
-{"pid":27443,"tid":27477,"ts":326460136170,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":603235},
-{"pid":27443,"tid":27477,"ts":326460136201,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":603265},
-{"pid":27443,"tid":27477,"ts":326460136201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":603296,"id":"0xaf88a77bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460136262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460135},"tts":603326,"id":"0xaf88a77cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460136262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":603326},
-{"pid":27443,"tid":27477,"ts":326460136262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":603326,"id":"0xaf88a77af182217a"},
-{"pid":27443,"tid":27477,"ts":326460136292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":603357},
-{"pid":27443,"tid":27477,"ts":326460136292,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":122,"tts":603357},
-{"pid":27443,"tid":27477,"ts":326460136292,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":603357},
-{"pid":27443,"tid":27477,"ts":326460136292,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":603357},
-{"pid":27443,"tid":27477,"ts":326460136323,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":603387},
-{"pid":27443,"tid":27477,"ts":326460136323,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":603387},
-{"pid":27443,"tid":27477,"ts":326460136384,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":603448},
-{"pid":27443,"tid":27477,"ts":326460136384,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":603448},
-{"pid":27443,"tid":27477,"ts":326460136415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":603479,"id":"0xaf88a77bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460136445,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1862,"tdur":1526,"tts":603509},
-{"pid":27443,"tid":27477,"ts":326460136445,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1862,"tdur":1526,"tts":603509},
-{"pid":27443,"tid":27477,"ts":326460136445,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":603509},
-{"pid":27443,"tid":27477,"ts":326460136476,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1831,"tdur":1495,"tts":603540},
-{"pid":27443,"tid":27477,"ts":326460136476,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":125},"dur":854,"tdur":854,"tts":603540},
-{"pid":27443,"tid":27477,"ts":326460136506,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":125},"dur":214,"tdur":214,"tts":603570},
-{"pid":27443,"tid":27477,"ts":326460136720,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":125},"dur":30,"tdur":31,"tts":603784},
-{"pid":27443,"tid":27477,"ts":326460136750,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":125},"tts":603815},
-{"pid":27443,"tid":27477,"ts":326460136842,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":603906},
-{"pid":27443,"tid":27477,"ts":326460136872,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":603937},
-{"pid":27443,"tid":27477,"ts":326460136872,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":603937},
-{"pid":27443,"tid":27477,"ts":326460136872,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":603937},
-{"pid":27443,"tid":27477,"ts":326460136903,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":603967,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460136964,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":604028},
-{"pid":27443,"tid":27477,"ts":326460137300,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":604394},
-{"pid":27443,"tid":27477,"ts":326460137330,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":641,"tdur":306,"tts":604394},
-{"pid":27443,"tid":27477,"ts":326460137361,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":604425},
-{"pid":27443,"tid":27477,"ts":326460137361,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":549,"tdur":214,"tts":604425},
-{"pid":27443,"tid":27477,"ts":326460137452,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":604517},
-{"pid":27443,"tid":27477,"ts":326460137483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":604547,"id":"0xaf88aa33f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460137941,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":604669,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460137971,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":604700,"id":"0x300000070"},
-{"pid":27443,"tid":27477,"ts":326460138002,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":604730,"id":"0x300000071"},
-{"pid":27443,"tid":27477,"ts":326460138002,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":214,"tts":604730},
-{"pid":27443,"tid":27477,"ts":326460138154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":604883,"id":"0xaf88aaccf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460138246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":604974,"id":"0xaf88a885f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460138246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":604974,"id":"0xaf88a6c4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460138337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":605066,"id":"0xaf88a774f182217a"},
-{"pid":27443,"tid":27477,"ts":326460138337,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":605066},
-{"pid":27443,"tid":27477,"ts":326460138337,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":605066},
-{"pid":27443,"tid":27477,"ts":326460138368,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":605096,"id":"0x300000072"},
-{"pid":27443,"tid":27477,"ts":326460138368,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":605096},
-{"pid":27443,"tid":27477,"ts":326460138398,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":605127,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460138429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":605157,"id":"0xaf88a886f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460138429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":605157,"id":"0xaf88a6c6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460138490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":605219,"id":"0xaf88a775f182217a"},
-{"pid":27443,"tid":27477,"ts":326460138490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":605219},
-{"pid":27443,"tid":27477,"ts":326460138520,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460141457.0,"frame_time_us":326460135634.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":605249},
-{"pid":27443,"tid":27477,"ts":326460138551,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460141457.0,"frame_time_us":326460135634.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":605280},
-{"pid":27443,"tid":27477,"ts":326460138582,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460152300},"dur":30,"tdur":31,"tts":605310},
-{"pid":27443,"tid":27477,"ts":326460138582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":605310,"id":"0xaf88a776f182217a"},
-{"pid":27443,"tid":27477,"ts":326460140993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":605463,"id":"0xaf88a777f182217a"},
-{"pid":27443,"tid":27477,"ts":326460140993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":605463},
-{"pid":27443,"tid":27477,"ts":326460140993,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":0,"tts":605493},
-{"pid":27443,"tid":27477,"ts":326460141115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":605554,"id":"0xaf88a770f182217a"},
-{"pid":27443,"tid":27477,"ts":326460141115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":605554},
-{"pid":27443,"tid":27477,"ts":326460141145,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":152,"tts":605585},
-{"pid":27443,"tid":27477,"ts":326460141145,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":126},"tts":605585},
-{"pid":27443,"tid":27477,"ts":326460141237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":605676,"id":"0xaf88a887f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460141237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":605676,"id":"0xaf88a6c0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460141267,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":605707},
-{"pid":27443,"tid":27477,"ts":326460141267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":605707,"id":"0xaf88a880f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460151553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":605829,"id":"0xaf88a771f182217a"},
-{"pid":27443,"tid":27477,"ts":326460151553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1159,"tdur":1068,"tts":605829},
-{"pid":27443,"tid":27477,"ts":326460151583,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1129,"tdur":1008,"tts":605859},
-{"pid":27443,"tid":27477,"ts":326460151583,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":605859},
-{"pid":27443,"tid":27477,"ts":326460151583,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1007,"tdur":1008,"tts":605859},
-{"pid":27443,"tid":27477,"ts":326460151614,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":976,"tdur":977,"tts":605890},
-{"pid":27443,"tid":27477,"ts":326460151614,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":605890},
-{"pid":27443,"tid":27477,"ts":326460151614,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":605890},
-{"pid":27443,"tid":27477,"ts":326460151644,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":605920,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460151644,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":605920},
-{"pid":27443,"tid":27477,"ts":326460151675,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":605951},
-{"pid":27443,"tid":27477,"ts":326460151797,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":606073},
-{"pid":27443,"tid":27477,"ts":326460151797,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":126},"dur":244,"tdur":244,"tts":606073},
-{"pid":27443,"tid":27477,"ts":326460152041,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":126},"dur":31,"tdur":31,"tts":606317},
-{"pid":27443,"tid":27477,"ts":326460152102,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":126},"tts":606378},
-{"pid":27443,"tid":27477,"ts":326460152194,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":606470},
-{"pid":27443,"tid":27477,"ts":326460152224,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":336,"tts":606500},
-{"pid":27443,"tid":27477,"ts":326460152224,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":606500},
-{"pid":27443,"tid":27477,"ts":326460152346,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":606622},
-{"pid":27443,"tid":27466,"ts":326460137757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":307462,"id":"0xaf88a775f182217a"},
-{"pid":27443,"tid":27466,"ts":326460137819,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":307523},
-{"pid":27443,"tid":27466,"ts":326460137849,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":307553},
-{"pid":27443,"tid":27466,"ts":326460137849,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307553,"id":"0xc4c1940a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460138215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":307645,"id":"0xaf88aaccf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460138246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":307675},
-{"pid":27443,"tid":27466,"ts":326460138246,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307675,"id":"0xccc4bc02"},
-{"pid":27443,"tid":27466,"ts":326460140108,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":1007,"tdur":184,"tts":307736},
-{"pid":27443,"tid":27466,"ts":326460140230,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":885,"tdur":92,"tts":307797},
-{"pid":27443,"tid":27466,"ts":326460140230,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":671,"tdur":0,"tts":307797},
-{"pid":27443,"tid":27466,"ts":326460140901,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":307797,"id":"0xba454b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460141054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":307858,"id":"0xaf88a770f182217a"},
-{"pid":27443,"tid":27466,"ts":326460141695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":308011,"id":"0xaf88aacdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460141695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":308011},
-{"pid":27443,"tid":27466,"ts":326460141695,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308011,"id":"0xccc4be02"},
-{"pid":27443,"tid":27466,"ts":326460153842,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":308103},
-{"pid":27443,"tid":27466,"ts":326460153872,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":308133},
-{"pid":27443,"tid":27466,"ts":326460153903,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308164,"id":"0xba454d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460153933,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":308194},
-{"pid":27443,"tid":27466,"ts":326460153964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":308225,"id":"0xaf88a70ff182217a"},
-{"pid":27443,"tid":27466,"ts":326460154422,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":308286},
-{"pid":27443,"tid":27466,"ts":326460154452,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":308316},
-{"pid":27443,"tid":27466,"ts":326460154452,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308316,"id":"0xba454e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460154483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":308347,"id":"0xaf88a708f182217a"},
-{"pid":27443,"tid":27466,"ts":326460155490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":308469,"id":"0xaf88aacef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460155490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":308469},
-{"pid":27443,"tid":27466,"ts":326460155520,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308499,"id":"0xccc4c002"},
-{"pid":27443,"tid":27466,"ts":326460155826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":308591,"id":"0xaf88aacff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460155826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":308621},
-{"pid":27443,"tid":27466,"ts":326460155856,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308621,"id":"0xccc4c106"},
-{"pid":27443,"tid":27466,"ts":326460156039,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":308713},
-{"pid":27443,"tid":27466,"ts":326460156070,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":308744},
-{"pid":27443,"tid":27466,"ts":326460156070,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308744,"id":"0xc4c1970a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460156436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":308866,"id":"0xaf88aac8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460156436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":308866},
-{"pid":27443,"tid":27466,"ts":326460156466,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":308896,"id":"0xccc4c202"},
-{"pid":27443,"tid":27466,"ts":326460158237,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":309018},
-{"pid":27443,"tid":27466,"ts":326460158237,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":309049},
-{"pid":27443,"tid":27466,"ts":326460158267,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":309049,"id":"0xba454f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460158298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":309079,"id":"0xaf88a700f182217a"},
-{"pid":27443,"tid":27466,"ts":326460170597,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":153,"tts":309201},
-{"pid":27443,"tid":27466,"ts":326460170658,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":309232},
-{"pid":27443,"tid":27466,"ts":326460170658,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":309232,"id":"0xba455102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460170689,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":309262},
-{"pid":27443,"tid":27466,"ts":326460170719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":309293,"id":"0xaf88a701f182217a"},
-{"pid":27443,"tid":27466,"ts":326460172093,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":309384},
-{"pid":27443,"tid":27466,"ts":326460172123,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":309415},
-{"pid":27443,"tid":27466,"ts":326460172123,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":309415,"id":"0xba455202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460172154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":309446,"id":"0xaf88a702f182217a"},
-{"pid":27443,"tid":27466,"ts":326460173070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":309568,"id":"0xaf88aac9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460173070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":309568},
-{"pid":27443,"tid":27466,"ts":326460173070,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":309568,"id":"0xccc4c402"},
-{"pid":27443,"tid":27466,"ts":326460186834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":309659,"id":"0xaf88aacaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460186865,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":309690},
-{"pid":27443,"tid":27466,"ts":326460186865,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":309690,"id":"0xccc4c506"},
-{"pid":27443,"tid":27466,"ts":326460187109,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":275,"tdur":91,"tts":309812},
-{"pid":27443,"tid":27466,"ts":326460187323,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":309873},
-{"pid":27443,"tid":27466,"ts":326460187353,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":309873,"id":"0xc4c19a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460187872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":309995,"id":"0xaf88aacbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460187872,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":366,"tdur":91,"tts":309995},
-{"pid":27443,"tid":27466,"ts":326460187872,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":310025,"id":"0xccc4c602"},
-{"pid":27443,"tid":27466,"ts":326460189612,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":310117},
-{"pid":27443,"tid":27466,"ts":326460189642,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":123,"tts":310147},
-{"pid":27443,"tid":27466,"ts":326460189673,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":310178,"id":"0xba455302","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326460139345,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2228,"tdur":1129,"tts":7074256},
-{"pid":27443,"tid":27459,"ts":326460139406,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7074317},
-{"pid":27443,"tid":27459,"ts":326460139467,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7074378},
-{"pid":27443,"tid":27459,"ts":326460139497,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7074408},
-{"pid":27443,"tid":27459,"ts":326460139558,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7074469},
-{"pid":27443,"tid":27459,"ts":326460139589,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7074500},
-{"pid":27443,"tid":27459,"ts":326460139619,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7074530},
-{"pid":27443,"tid":27459,"ts":326460139619,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7074561},
-{"pid":27443,"tid":27459,"ts":326460139680,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1862,"tdur":732,"tts":7074622},
-{"pid":27443,"tid":27459,"ts":326460139833,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1526,"tdur":580,"tts":7074744},
-{"pid":27443,"tid":27459,"ts":326460139863,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7074774},
-{"pid":27443,"tid":27459,"ts":326460140718,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":87,"frame":"0x78c60000"}},"tts":7075141,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460140748,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":306,"tdur":92,"tts":7075171},
-{"pid":27443,"tid":27459,"ts":326460140809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7075202,"id":"0xaf88a777f182217a"},
-{"pid":27443,"tid":27459,"ts":326460141084,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7075293},
-{"pid":27443,"tid":27459,"ts":326460141084,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":7075293},
-{"pid":27443,"tid":27459,"ts":326460141603,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7075415},
-{"pid":27443,"tid":27459,"ts":326460141603,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7075446,"id":"0xaf88aacdf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460141725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7075537,"id":"0xaf88a6c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460141756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10132,"tdur":9309,"tts":7075568},
-{"pid":27443,"tid":27459,"ts":326460141756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7075568,"id":"0xaf88a887f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460141756,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10102,"tdur":9248,"tts":7075598},
-{"pid":27443,"tid":27459,"ts":326460141786,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":126},"tts":7075598},
-{"pid":27443,"tid":27459,"ts":326460141786,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7075598},
-{"pid":27443,"tid":27459,"ts":326460141817,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6165,"tdur":6043,"tts":7075660},
-{"pid":27443,"tid":27459,"ts":326460141847,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7075660},
-{"pid":27443,"tid":27459,"ts":326460141878,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":87,"frame":"0x78c60000"}},"dur":6073,"tdur":5951,"tts":7075721},
-{"pid":27443,"tid":27459,"ts":326460141969,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5982,"tdur":5890,"tts":7075782},
-{"pid":27443,"tid":27459,"ts":326460141969,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7075812},
-{"pid":27443,"tid":27459,"ts":326460147921,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7081672},
-{"pid":27443,"tid":27459,"ts":326460147982,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2930,"tdur":2563,"tts":7081703},
-{"pid":27443,"tid":27459,"ts":326460148043,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7081764},
-{"pid":27443,"tid":27459,"ts":326460148043,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7081764},
-{"pid":27443,"tid":27459,"ts":326460148073,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7081794},
-{"pid":27443,"tid":27459,"ts":326460148501,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7082221},
-{"pid":27443,"tid":27459,"ts":326460148531,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7082252},
-{"pid":27443,"tid":27459,"ts":326460148562,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2350,"tdur":1984,"tts":7082282},
-{"pid":27443,"tid":27459,"ts":326460148562,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2197,"tdur":1832,"tts":7082282},
-{"pid":27443,"tid":27459,"ts":326460148592,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":7082313},
-{"pid":27443,"tid":27459,"ts":326460148928,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7082649},
-{"pid":27443,"tid":27459,"ts":326460149111,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":61,"tts":7082862},
-{"pid":27443,"tid":27459,"ts":326460149233,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7082954},
-{"pid":27443,"tid":27459,"ts":326460149233,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1496,"tdur":1129,"tts":7082954},
-{"pid":27443,"tid":27459,"ts":326460150759,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":7084114},
-{"pid":27443,"tid":27459,"ts":326460150790,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7084144},
-{"pid":27443,"tid":27459,"ts":326460150912,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":126},"dur":427,"tdur":428,"tts":7084266},
-{"pid":27443,"tid":27459,"ts":326460150942,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":367,"tdur":366,"tts":7084297},
-{"pid":27443,"tid":27459,"ts":326460151156,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":30,"tdur":31,"tts":7084510},
-{"pid":27443,"tid":27459,"ts":326460151186,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":31,"tdur":30,"tts":7084541},
-{"pid":27443,"tid":27459,"ts":326460151217,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":0,"tdur":0,"tts":7084571},
-{"pid":27443,"tid":27459,"ts":326460151217,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":30,"tdur":31,"tts":7084571},
-{"pid":27443,"tid":27459,"ts":326460151247,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":31,"tdur":31,"tts":7084602},
-{"pid":27443,"tid":27459,"ts":326460151278,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":31,"tdur":30,"tts":7084633},
-{"pid":27443,"tid":27459,"ts":326460151309,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":126},"dur":0,"tdur":0,"tts":7084663},
-{"pid":27443,"tid":27459,"ts":326460151339,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7084694,"id":"0x300000072"},
-{"pid":27443,"tid":27459,"ts":326460151339,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":458,"tdur":91,"tts":7084694},
-{"pid":27443,"tid":27459,"ts":326460151400,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7084694,"id":"0xaf88a771f182217a"},
-{"pid":27443,"tid":27459,"ts":326460151827,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7084846},
-{"pid":27443,"tid":27459,"ts":326460151919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7084907,"id":"0xaf88a6c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460151919,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7084907},
-{"pid":27443,"tid":27459,"ts":326460151949,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7084938,"id":"0xaf88a6c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460151949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7084938,"id":"0xaf88a880f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460151949,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":7084938},
-{"pid":27443,"tid":27459,"ts":326460151980,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7084968},
-{"pid":27443,"tid":27459,"ts":326460152010,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7084999,"id":"0xaf88a6c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460152041,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7085029},
-{"pid":27443,"tid":27459,"ts":326460152072,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7085060,"id":"0xaf88a6c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460152072,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7085060},
-{"pid":27443,"tid":27459,"ts":326460154269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7085151,"id":"0xaf88a6c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460154269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1191,"tts":7085151},
-{"pid":27443,"tid":27459,"ts":326460154300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7085182,"id":"0xaf88a6c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460154300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7085212,"id":"0xaf88a881f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460154330,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1130,"tts":7085212},
-{"pid":27443,"tid":27459,"ts":326460154391,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1038,"tts":7085273},
-{"pid":27443,"tid":27459,"ts":326460154391,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7085273,"id":"0x300000073"},
-{"pid":27443,"tid":27459,"ts":326460154422,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":976,"tdur":916,"tts":7085304},
-{"pid":27443,"tid":27459,"ts":326460154452,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":886,"tts":7085334},
-{"pid":27443,"tid":27459,"ts":326460154513,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7085396},
-{"pid":27443,"tid":27459,"ts":326460154544,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7085426},
-{"pid":27443,"tid":27459,"ts":326460154574,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7085457},
-{"pid":27443,"tid":27459,"ts":326460154605,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7085487},
-{"pid":27443,"tid":27459,"ts":326460154635,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7085518},
-{"pid":27443,"tid":27459,"ts":326460154666,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7085548},
-{"pid":27443,"tid":27459,"ts":326460154696,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7085579},
-{"pid":27443,"tid":27459,"ts":326460154727,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":611,"tts":7085609},
-{"pid":27443,"tid":27459,"ts":326460154879,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":397,"tts":7085792},
-{"pid":27443,"tid":27459,"ts":326460154910,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7085792},
-{"pid":27443,"tid":27459,"ts":326460155185,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":88,"frame":"0x78c60000"}},"tts":7086097,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460155215,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":92,"tdur":62,"tts":7086097},
-{"pid":27443,"tid":27459,"ts":326460155276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7086159,"id":"0xaf88a70af182217a"},
-{"pid":27443,"tid":27459,"ts":326460155307,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7086189},
-{"pid":27443,"tid":27459,"ts":326460155398,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7086250},
-{"pid":27443,"tid":27459,"ts":326460155429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7086281,"id":"0xaf88aacef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460155520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7086372,"id":"0xaf88a6c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460155551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7086403},
-{"pid":27443,"tid":27459,"ts":326460156527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7086494,"id":"0xaf88a6dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460156527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7086494},
-{"pid":27443,"tid":27459,"ts":326460156558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7086525,"id":"0xaf88a6ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460156558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7086525,"id":"0xaf88a882f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460156558,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":0,"tts":7086555},
-{"pid":27443,"tid":27459,"ts":326460156589,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7086555},
-{"pid":27443,"tid":27459,"ts":326460156619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7086586,"id":"0xaf88a6ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460156650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7086616},
-{"pid":27443,"tid":27459,"ts":326460158450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7086677,"id":"0xaf88a6def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460158481,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7086708},
-{"pid":27443,"tid":27459,"ts":326460158481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7086708,"id":"0xaf88a6dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460158511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7086738,"id":"0xaf88a883f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460158511,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":7086738},
-{"pid":27443,"tid":27459,"ts":326460158511,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":7086738},
-{"pid":27443,"tid":27459,"ts":326460158572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7086799,"id":"0xaf88a6dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460158572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7086799},
-{"pid":27443,"tid":27459,"ts":326460171910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7086922,"id":"0xaf88a6d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460171910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1160,"tdur":1159,"tts":7086922},
-{"pid":27443,"tid":27459,"ts":326460171940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7086952,"id":"0xaf88a6d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460171940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7086952,"id":"0xaf88a89cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460171940,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1130,"tdur":1098,"tts":7086983},
-{"pid":27443,"tid":27459,"ts":326460172032,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":7087044},
-{"pid":27443,"tid":27459,"ts":326460172032,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7087044,"id":"0x300000074"},
-{"pid":27443,"tid":27459,"ts":326460172062,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":7087074},
-{"pid":27443,"tid":27459,"ts":326460172093,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":854,"tdur":854,"tts":7087105},
-{"pid":27443,"tid":27459,"ts":326460172154,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7087166},
-{"pid":27443,"tid":27459,"ts":326460172184,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7087227},
-{"pid":27443,"tid":27459,"ts":326460172215,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7087227},
-{"pid":27443,"tid":27459,"ts":326460172245,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7087257},
-{"pid":27443,"tid":27459,"ts":326460172276,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7087288},
-{"pid":27443,"tid":27459,"ts":326460172307,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7087318},
-{"pid":27443,"tid":27459,"ts":326460172337,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7087349},
-{"pid":27443,"tid":27459,"ts":326460172368,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":519,"tts":7087410},
-{"pid":27443,"tid":27477,"ts":326460152346,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":606622},
-{"pid":27443,"tid":27477,"ts":326460152377,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":606653},
-{"pid":27443,"tid":27477,"ts":326460152407,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":123,"tts":606683},
-{"pid":27443,"tid":27477,"ts":326460152438,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":606714,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460152438,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":606714},
-{"pid":27443,"tid":27477,"ts":326460152468,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":606745},
-{"pid":27443,"tid":27477,"ts":326460152529,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":606806,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460152529,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":606836,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460152560,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":606836,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460152712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460152},"tts":606897,"id":"0xaf88a776f182217a"},
-{"pid":27443,"tid":27477,"ts":326460152743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":606928},
-{"pid":27443,"tid":27477,"ts":326460152743,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":606928},
-{"pid":27443,"tid":27477,"ts":326460152773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":606958,"id":"0xaf88a772f182217a"},
-{"pid":27443,"tid":27477,"ts":326460152773,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":606958},
-{"pid":27443,"tid":27477,"ts":326460152773,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":62,"tdur":61,"tts":606958},
-{"pid":27443,"tid":27477,"ts":326460152804,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":606989,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460152804,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":0,"tts":607019},
-{"pid":27443,"tid":27477,"ts":326460152835,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":607019,"id":"0xaf88a70df182217a"},
-{"pid":27443,"tid":27477,"ts":326460152865,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":607050,"id":"0xaf88a773f182217a"},
-{"pid":27443,"tid":27477,"ts":326460152865,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":607050},
-{"pid":27443,"tid":27477,"ts":326460152865,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":607050},
-{"pid":27443,"tid":27477,"ts":326460152896,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":607080,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460152896,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":607080},
-{"pid":27443,"tid":27477,"ts":326460152896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":607080,"id":"0xaf88a70ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460152926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":607111,"id":"0xaf88a70cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460152926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":607111},
-{"pid":27443,"tid":27477,"ts":326460152957,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":607141},
-{"pid":27443,"tid":27477,"ts":326460152957,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":607141,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460152957,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":607141},
-{"pid":27443,"tid":27477,"ts":326460152987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":607172,"id":"0xaf88a70df182217a"},
-{"pid":27443,"tid":27477,"ts":326460152987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":607172},
-{"pid":27443,"tid":27477,"ts":326460152987,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":122,"tts":607172},
-{"pid":27443,"tid":27477,"ts":326460153018,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":607202},
-{"pid":27443,"tid":27477,"ts":326460153018,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":607202},
-{"pid":27443,"tid":27477,"ts":326460153018,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":607202},
-{"pid":27443,"tid":27477,"ts":326460153048,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":607233},
-{"pid":27443,"tid":27477,"ts":326460153079,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":607294},
-{"pid":27443,"tid":27477,"ts":326460153109,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":607294},
-{"pid":27443,"tid":27477,"ts":326460153140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":607324,"id":"0xaf88a70ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460153140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":885,"tdur":886,"tts":607324},
-{"pid":27443,"tid":27477,"ts":326460153140,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":885,"tdur":855,"tts":607355},
-{"pid":27443,"tid":27477,"ts":326460153170,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":607355},
-{"pid":27443,"tid":27477,"ts":326460153170,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":607355},
-{"pid":27443,"tid":27477,"ts":326460153170,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":607355},
-{"pid":27443,"tid":27477,"ts":326460153201,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":607385},
-{"pid":27443,"tid":27477,"ts":326460153262,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":763,"tdur":764,"tts":607446},
-{"pid":27443,"tid":27477,"ts":326460153262,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":764,"tts":607446},
-{"pid":27443,"tid":27477,"ts":326460153262,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":732,"tdur":733,"tts":607446},
-{"pid":27443,"tid":27477,"ts":326460153292,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":607477,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460153353,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":607538},
-{"pid":27443,"tid":27477,"ts":326460153384,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607569},
-{"pid":27443,"tid":27477,"ts":326460153414,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607599},
-{"pid":27443,"tid":27477,"ts":326460153414,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607599},
-{"pid":27443,"tid":27477,"ts":326460153445,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607630},
-{"pid":27443,"tid":27477,"ts":326460153445,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":607630},
-{"pid":27443,"tid":27477,"ts":326460153475,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607660},
-{"pid":27443,"tid":27477,"ts":326460153475,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":607660},
-{"pid":27443,"tid":27477,"ts":326460153506,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607691},
-{"pid":27443,"tid":27477,"ts":326460153536,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607721},
-{"pid":27443,"tid":27477,"ts":326460153536,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":607721},
-{"pid":27443,"tid":27477,"ts":326460153567,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607752},
-{"pid":27443,"tid":27477,"ts":326460153567,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":607752},
-{"pid":27443,"tid":27477,"ts":326460153598,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607782},
-{"pid":27443,"tid":27477,"ts":326460153598,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":607813},
-{"pid":27443,"tid":27477,"ts":326460153628,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":607813},
-{"pid":27443,"tid":27477,"ts":326460153659,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607843},
-{"pid":27443,"tid":27477,"ts":326460153659,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":607843},
-{"pid":27443,"tid":27477,"ts":326460153689,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":607874},
-{"pid":27443,"tid":27477,"ts":326460153720,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607904},
-{"pid":27443,"tid":27477,"ts":326460153781,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607965},
-{"pid":27443,"tid":27477,"ts":326460153811,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":607996},
-{"pid":27443,"tid":27477,"ts":326460153811,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":607996},
-{"pid":27443,"tid":27477,"ts":326460153842,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":608026},
-{"pid":27443,"tid":27477,"ts":326460153842,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":608026},
-{"pid":27443,"tid":27477,"ts":326460153872,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":608057},
-{"pid":27443,"tid":27477,"ts":326460153903,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":608087},
-{"pid":27443,"tid":27477,"ts":326460153933,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":608118},
-{"pid":27443,"tid":27477,"ts":326460153964,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":608148},
-{"pid":27443,"tid":27477,"ts":326460153964,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":608148},
-{"pid":27443,"tid":27477,"ts":326460153994,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":608179},
-{"pid":27443,"tid":27477,"ts":326460154025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":608210,"id":"0xaf88a70ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460154055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":608240},
-{"pid":27443,"tid":27477,"ts":326460154055,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":608240},
-{"pid":27443,"tid":27477,"ts":326460154055,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":608240,"id":"0x300000073"},
-{"pid":27443,"tid":27477,"ts":326460154086,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":608271},
-{"pid":27443,"tid":27477,"ts":326460154116,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":608301,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460154147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":608332,"id":"0xaf88a881f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460154147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":608332,"id":"0xaf88a6c2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460154513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":608454,"id":"0xaf88a708f182217a"},
-{"pid":27443,"tid":27477,"ts":326460154544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":608454},
-{"pid":27443,"tid":27477,"ts":326460154574,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460158139.0,"frame_time_us":326460152316.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":608484},
-{"pid":27443,"tid":27477,"ts":326460154574,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460158139.0,"frame_time_us":326460152316.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":92,"tts":608484},
-{"pid":27443,"tid":27477,"ts":326460154635,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":608545},
-{"pid":27443,"tid":27477,"ts":326460154635,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":608545},
-{"pid":27443,"tid":27477,"ts":326460154666,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":608576,"id":"0xaf88a709f182217a"},
-{"pid":27443,"tid":27477,"ts":326460154696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":608606,"id":"0xaf88a709f182217a"},
-{"pid":27443,"tid":27477,"ts":326460154696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2106,"tdur":1770,"tts":608606},
-{"pid":27443,"tid":27477,"ts":326460154727,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2075,"tdur":1739,"tts":608637},
-{"pid":27443,"tid":27477,"ts":326460154727,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1770,"tdur":1434,"tts":608637},
-{"pid":27443,"tid":27477,"ts":326460154727,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":126},"dur":854,"tdur":854,"tts":608637},
-{"pid":27443,"tid":27477,"ts":326460154757,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":126},"dur":214,"tdur":214,"tts":608667},
-{"pid":27443,"tid":27477,"ts":326460154971,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":126},"dur":30,"tdur":0,"tts":608911},
-{"pid":27443,"tid":27477,"ts":326460155032,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":126},"tts":608942},
-{"pid":27443,"tid":27477,"ts":326460155124,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":609034},
-{"pid":27443,"tid":27477,"ts":326460155124,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":609034},
-{"pid":27443,"tid":27477,"ts":326460155124,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":609034},
-{"pid":27443,"tid":27477,"ts":326460155154,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":609064},
-{"pid":27443,"tid":27477,"ts":326460155154,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":609064,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460155215,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":609125},
-{"pid":27443,"tid":27477,"ts":326460155551,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":609461},
-{"pid":27443,"tid":27477,"ts":326460155581,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":245,"tts":609491},
-{"pid":27443,"tid":27477,"ts":326460155581,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":609491},
-{"pid":27443,"tid":27477,"ts":326460155612,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":183,"tts":609522},
-{"pid":27443,"tid":27477,"ts":326460155703,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":609613},
-{"pid":27443,"tid":27477,"ts":326460155734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":609644,"id":"0xaf88aacff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460156161,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":609736,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460156192,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":609766,"id":"0x300000072"},
-{"pid":27443,"tid":27477,"ts":326460156192,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":609766},
-{"pid":27443,"tid":27477,"ts":326460156375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":609949,"id":"0xaf88aac8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460156436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":610010,"id":"0xaf88a882f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460156466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":610041,"id":"0xaf88a6dcf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460156497,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":275,"tdur":275,"tts":610071},
-{"pid":27443,"tid":27477,"ts":326460156527,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":245,"tdur":244,"tts":610102},
-{"pid":27443,"tid":27477,"ts":326460156527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":62,"tdur":61,"tts":610102},
-{"pid":27443,"tid":27477,"ts":326460156589,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":610163},
-{"pid":27443,"tid":27477,"ts":326460156619,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":610193},
-{"pid":27443,"tid":27477,"ts":326460156619,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":610193},
-{"pid":27443,"tid":27477,"ts":326460156619,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":610193},
-{"pid":27443,"tid":27477,"ts":326460156619,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":610224,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460156650,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":610224},
-{"pid":27443,"tid":27477,"ts":326460156680,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":610254},
-{"pid":27443,"tid":27477,"ts":326460156711,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":610285,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460156741,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":610346,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460156772,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":610346,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460156802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610376,"id":"0xaf88a70af182217a"},
-{"pid":27443,"tid":27477,"ts":326460156802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":610376},
-{"pid":27443,"tid":27477,"ts":326460156833,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":610407},
-{"pid":27443,"tid":27477,"ts":326460156833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610407,"id":"0xaf88a70bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460156863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":610437},
-{"pid":27443,"tid":27477,"ts":326460156863,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":610437},
-{"pid":27443,"tid":27477,"ts":326460156863,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":610468,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460156894,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":610468},
-{"pid":27443,"tid":27477,"ts":326460156924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":610499,"id":"0xaf88a706f182217a"},
-{"pid":27443,"tid":27477,"ts":326460156955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610529,"id":"0xaf88a704f182217a"},
-{"pid":27443,"tid":27477,"ts":326460156955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":610529},
-{"pid":27443,"tid":27477,"ts":326460156985,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":30,"tts":610560},
-{"pid":27443,"tid":27477,"ts":326460156985,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":610560,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460156985,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":610560},
-{"pid":27443,"tid":27477,"ts":326460157016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":610590,"id":"0xaf88a707f182217a"},
-{"pid":27443,"tid":27477,"ts":326460157046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610621,"id":"0xaf88a705f182217a"},
-{"pid":27443,"tid":27477,"ts":326460157046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":610621},
-{"pid":27443,"tid":27477,"ts":326460157046,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":610621},
-{"pid":27443,"tid":27477,"ts":326460157046,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":610621,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460157077,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":610651},
-{"pid":27443,"tid":27477,"ts":326460157077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610651,"id":"0xaf88a706f182217a"},
-{"pid":27443,"tid":27477,"ts":326460157077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":610651},
-{"pid":27443,"tid":27477,"ts":326460157107,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":92,"tdur":91,"tts":610682},
-{"pid":27443,"tid":27477,"ts":326460157107,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":610682},
-{"pid":27443,"tid":27477,"ts":326460157107,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":610682},
-{"pid":27443,"tid":27477,"ts":326460157138,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":31,"tts":610712},
-{"pid":27443,"tid":27477,"ts":326460157138,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":610712},
-{"pid":27443,"tid":27477,"ts":326460157199,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":610773},
-{"pid":27443,"tid":27477,"ts":326460157199,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":610773},
-{"pid":27443,"tid":27477,"ts":326460157229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610804,"id":"0xaf88a707f182217a"},
-{"pid":27443,"tid":27477,"ts":326460157229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":610804},
-{"pid":27443,"tid":27477,"ts":326460157229,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":122,"tts":610804},
-{"pid":27443,"tid":27477,"ts":326460157260,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":610834},
-{"pid":27443,"tid":27477,"ts":326460157260,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":610834},
-{"pid":27443,"tid":27477,"ts":326460157260,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":610834},
-{"pid":27443,"tid":27477,"ts":326460157291,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":610865},
-{"pid":27443,"tid":27477,"ts":326460157321,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":610895},
-{"pid":27443,"tid":27477,"ts":326460157321,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":610895},
-{"pid":27443,"tid":27477,"ts":326460158328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":610956,"id":"0xaf88a700f182217a"},
-{"pid":27443,"tid":27477,"ts":326460158359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":610987},
-{"pid":27443,"tid":27477,"ts":326460158389,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":611017},
-{"pid":27443,"tid":27477,"ts":326460158389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":611017,"id":"0xaf88a883f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460158420,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":611048,"id":"0xaf88a6def3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460171696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":611109,"id":"0xaf88a701f182217a"},
-{"pid":27443,"tid":27477,"ts":326460171727,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":611139},
-{"pid":27443,"tid":27477,"ts":326460171727,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":611139},
-{"pid":27443,"tid":27477,"ts":326460171757,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":611170,"id":"0x300000074"},
-{"pid":27443,"tid":27477,"ts":326460171757,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":611170},
-{"pid":27443,"tid":27477,"ts":326460171788,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":611201,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460171818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":611231,"id":"0xaf88a89cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460171818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":611231,"id":"0xaf88a6d8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460172184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":611353,"id":"0xaf88a702f182217a"},
-{"pid":27443,"tid":27477,"ts":326460172215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":611353},
-{"pid":27443,"tid":27477,"ts":326460172245,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460174820.0,"frame_time_us":326460168997.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":184,"tdur":183,"tts":611384},
-{"pid":27443,"tid":27477,"ts":326460172245,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460174820.0,"frame_time_us":326460168997.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":184,"tdur":153,"tts":611414},
-{"pid":27443,"tid":27477,"ts":326460172276,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":127},"tts":611414},
-{"pid":27443,"tid":27477,"ts":326460172368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":611506,"id":"0xaf88a89df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460172368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":611506,"id":"0xaf88a6daf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460172398,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":611536},
-{"pid":27443,"tid":27477,"ts":326460172398,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460185663},"dur":31,"tdur":31,"tts":611536},
-{"pid":27443,"tid":27477,"ts":326460172429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":611567,"id":"0xaf88a703f182217a"},
-{"pid":27443,"tid":27477,"ts":326460182806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":611628,"id":"0xaf88a71cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460182836,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1038,"tdur":1038,"tts":611658},
-{"pid":27443,"tid":27477,"ts":326460182836,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1038,"tdur":1038,"tts":611658},
-{"pid":27443,"tid":27477,"ts":326460182836,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":611658},
-{"pid":27443,"tid":27477,"ts":326460182867,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":976,"tdur":976,"tts":611689},
-{"pid":27443,"tid":27477,"ts":326460182867,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":976,"tdur":976,"tts":611689},
-{"pid":27443,"tid":27477,"ts":326460182867,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":611689},
-{"pid":27443,"tid":27477,"ts":326460182897,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":611719},
-{"pid":27443,"tid":27477,"ts":326460182897,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":611719,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460182897,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":611719},
-{"pid":27443,"tid":27477,"ts":326460182958,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":611780},
-{"pid":27443,"tid":27477,"ts":326460183080,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":611902},
-{"pid":27443,"tid":27477,"ts":326460183080,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":127},"dur":275,"tdur":245,"tts":611902},{"pid":27443,"tid":27477,"ts":326460183355,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":127},"dur":30,"tdur":31,"tts":612177},
-{"pid":27443,"tid":27477,"ts":326460183385,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":127},"tts":612208},
-{"pid":27443,"tid":27477,"ts":326460183508,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":612330},
-{"pid":27443,"tid":27477,"ts":326460183508,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":612330},
-{"pid":27443,"tid":27477,"ts":326460183538,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":612360},
-{"pid":27443,"tid":27477,"ts":326460183538,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":612360},
-{"pid":27443,"tid":27477,"ts":326460183660,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":612482},
-{"pid":27443,"tid":27477,"ts":326460183660,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":612482},
-{"pid":27443,"tid":27477,"ts":326460183660,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":91,"tts":612513},
-{"pid":27443,"tid":27477,"ts":326460183691,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":612513},
-{"pid":27443,"tid":27477,"ts":326460183691,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":612513,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460183721,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":612543},
-{"pid":27443,"tid":27477,"ts":326460183721,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":612543},
-{"pid":27443,"tid":27477,"ts":326460183782,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":612604,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460183813,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":612635,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460183813,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":612635,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460183904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":612727,"id":"0xaf88a71df182217a"},
-{"pid":27443,"tid":27477,"ts":326460183904,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":612727},
-{"pid":27443,"tid":27477,"ts":326460183935,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":612757},
-{"pid":27443,"tid":27477,"ts":326460183935,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":612757,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460183935,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":0,"tts":612788},
-{"pid":27443,"tid":27477,"ts":326460183965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":612788,"id":"0xaf88a718f182217a"},
-{"pid":27443,"tid":27477,"ts":326460183996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":612818,"id":"0xaf88a71ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460183996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":612818},
-{"pid":27443,"tid":27477,"ts":326460183996,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":612818},
-{"pid":27443,"tid":27477,"ts":326460184026,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":612849,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460184026,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":612849},
-{"pid":27443,"tid":27477,"ts":326460184026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":612879,"id":"0xaf88a719f182217a"},
-{"pid":27443,"tid":27477,"ts":326460184057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":612879,"id":"0xaf88a71ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460184087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":612910},
-{"pid":27443,"tid":27477,"ts":326460184087,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":612910},
-{"pid":27443,"tid":27477,"ts":326460184087,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":612910,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460184087,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":612910},
-{"pid":27443,"tid":27477,"ts":326460184118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":612940,"id":"0xaf88a718f182217a"},
-{"pid":27443,"tid":27477,"ts":326460184118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":977,"tdur":977,"tts":612940},
-{"pid":27443,"tid":27477,"ts":326460184148,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":947,"tdur":915,"tts":612971},
-{"pid":27443,"tid":27477,"ts":326460184148,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":612971},
-{"pid":27443,"tid":27477,"ts":326460184148,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":612971},
-{"pid":27443,"tid":27477,"ts":326460184179,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":613001},
-{"pid":27443,"tid":27477,"ts":326460184179,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":613001},
-{"pid":27443,"tid":27477,"ts":326460184271,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":793,"tdur":793,"tts":613093},
-{"pid":27443,"tid":27477,"ts":326460184271,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":793,"tdur":793,"tts":613093},
-{"pid":27443,"tid":27477,"ts":326460184301,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":733,"tdur":733,"tts":613123},
-{"pid":27443,"tid":27477,"ts":326460184301,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":613123,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460184362,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":613184},
-{"pid":27443,"tid":27477,"ts":326460184393,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613215},
-{"pid":27443,"tid":27477,"ts":326460184423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613245},
-{"pid":27443,"tid":27477,"ts":326460184423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":613245},
-{"pid":27443,"tid":27459,"ts":326460172520,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":366,"tdur":366,"tts":7087532},
-{"pid":27443,"tid":27459,"ts":326460172551,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7087562},
-{"pid":27443,"tid":27459,"ts":326460172825,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":89,"frame":"0x78c60000"}},"tts":7087868,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460172886,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7087898},
-{"pid":27443,"tid":27459,"ts":326460172978,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7087990},
-{"pid":27443,"tid":27459,"ts":326460172978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7087990,"id":"0xaf88aac9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460173100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7088112,"id":"0xaf88a6d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460173131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10071,"tdur":8973,"tts":7088142},
-{"pid":27443,"tid":27459,"ts":326460173131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7088142,"id":"0xaf88a6dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460173131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7088142,"id":"0xaf88a89df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460173161,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10041,"tdur":8942,"tts":7088173},
-{"pid":27443,"tid":27459,"ts":326460173161,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":127},"tts":7088173},
-{"pid":27443,"tid":27459,"ts":326460173161,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7088173},
-{"pid":27443,"tid":27459,"ts":326460173222,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":5830,"tdur":5829,"tts":7088234},
-{"pid":27443,"tid":27459,"ts":326460173222,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7088234},
-{"pid":27443,"tid":27459,"ts":326460173283,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":88,"frame":"0x78c60000"}},"dur":5616,"tdur":5616,"tts":7088295},
-{"pid":27443,"tid":27459,"ts":326460173344,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5555,"tdur":5555,"tts":7088356},
-{"pid":27443,"tid":27459,"ts":326460173344,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7088356},
-{"pid":27443,"tid":27459,"ts":326460178868,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7093880},
-{"pid":27443,"tid":27459,"ts":326460178929,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":89,"frame":"0x78c60000"}},"dur":123,"tdur":122,"tts":7093941},
-{"pid":27443,"tid":27459,"ts":326460178990,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":62,"tdur":61,"tts":7094002},
-{"pid":27443,"tid":27459,"ts":326460178990,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7094002},
-{"pid":27443,"tid":27459,"ts":326460179021,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7094033},
-{"pid":27443,"tid":27459,"ts":326460179052,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3296,"tdur":2441,"tts":7094094},
-{"pid":27443,"tid":27459,"ts":326460179082,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7094124},
-{"pid":27443,"tid":27459,"ts":326460179113,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7094124},
-{"pid":27443,"tid":27459,"ts":326460179113,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7094124},
-{"pid":27443,"tid":27459,"ts":326460179509,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7094552},
-{"pid":27443,"tid":27459,"ts":326460179540,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7094552},
-{"pid":27443,"tid":27459,"ts":326460179570,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2778,"tdur":1892,"tts":7094613},
-{"pid":27443,"tid":27459,"ts":326460179601,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2564,"tdur":1739,"tts":7094613},
-{"pid":27443,"tid":27459,"ts":326460179601,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1160,"tdur":427,"tts":7094613},
-{"pid":27443,"tid":27459,"ts":326460180761,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7095040},
-{"pid":27443,"tid":27459,"ts":326460180944,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":213,"tdur":122,"tts":7095223},
-{"pid":27443,"tid":27459,"ts":326460181157,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":7095345},
-{"pid":27443,"tid":27459,"ts":326460181188,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":946,"tdur":946,"tts":7095376},
-{"pid":27443,"tid":27459,"ts":326460182165,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7096352},
-{"pid":27443,"tid":27459,"ts":326460182195,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":7096413},
-{"pid":27443,"tid":27459,"ts":326460182348,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":127},"dur":366,"tdur":367,"tts":7096535},
-{"pid":27443,"tid":27459,"ts":326460182348,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":366,"tdur":367,"tts":7096535},
-{"pid":27443,"tid":27459,"ts":326460182561,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":31,"tdur":31,"tts":7096749},
-{"pid":27443,"tid":27459,"ts":326460182592,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":30,"tdur":30,"tts":7096780},
-{"pid":27443,"tid":27459,"ts":326460182622,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":0,"tdur":0,"tts":7096810},
-{"pid":27443,"tid":27459,"ts":326460182622,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":31,"tdur":31,"tts":7096810},
-{"pid":27443,"tid":27459,"ts":326460182653,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":0,"tdur":0,"tts":7096841},
-{"pid":27443,"tid":27459,"ts":326460182653,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":30,"tdur":30,"tts":7096841},
-{"pid":27443,"tid":27459,"ts":326460182683,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":127},"dur":0,"tdur":0,"tts":7096871},
-{"pid":27443,"tid":27459,"ts":326460182714,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7096902,"id":"0x300000073"},
-{"pid":27443,"tid":27459,"ts":326460182714,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7096902,"id":"0x300000074"},
-{"pid":27443,"tid":27459,"ts":326460182744,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":61,"tts":7096932},
-{"pid":27443,"tid":27459,"ts":326460182744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7096932,"id":"0xaf88a71cf182217a"},
-{"pid":27443,"tid":27459,"ts":326460183141,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2552},"tts":7097054,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460183141,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7097054,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460183172,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7097085},
-{"pid":27443,"tid":27459,"ts":326460183233,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7097146,"id":"0xaf88a6daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460183263,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":7097176},
-{"pid":27443,"tid":27459,"ts":326460183263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7097176,"id":"0xaf88a884f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460183294,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":7097207},
-{"pid":27443,"tid":27459,"ts":326460183294,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7097207,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460183294,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.369},"dur":122,"tdur":122,"tts":7097207},
-{"pid":27443,"tid":27459,"ts":326460183324,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7097237},
-{"pid":27443,"tid":27459,"ts":326460183355,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7097268},
-{"pid":27443,"tid":27459,"ts":326460183385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7097298,"id":"0xaf88a89ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460183416,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7097329,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460183446,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7097360,"id":"0xaf88a6dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460183477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7097390},
-{"pid":27443,"tid":27459,"ts":326460188482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7097451,"id":"0xaf88a6d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460188482,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7097451},
-{"pid":27443,"tid":27459,"ts":326460188513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7097482,"id":"0xaf88a6d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460188513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7097482,"id":"0xaf88a89ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460188513,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7097482},
-{"pid":27443,"tid":27459,"ts":326460188543,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7097512},
-{"pid":27443,"tid":27459,"ts":326460188696,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7097543,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460188726,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7097573,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460188757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7097604,"id":"0xaf88a6d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460188757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":7097634},
-{"pid":27443,"tid":27459,"ts":326460188788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7097634,"id":"0xaf88a6d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460188818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7097665,"id":"0xaf88a89ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460188818,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":7097665},
-{"pid":27443,"tid":27459,"ts":326460188849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7097695,"id":"0xaf88a898f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460188879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7097726,"id":"0xaf88a6d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460188910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7097756},
-{"pid":27443,"tid":27459,"ts":326460190527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7097817,"id":"0xaf88a6d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460190527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2533,"tdur":1374,"tts":7097817},
-{"pid":27443,"tid":27459,"ts":326460190558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7097848,"id":"0xaf88a6d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460190558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7097848,"id":"0xaf88a899f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460190588,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2442,"tdur":1282,"tts":7097878},
-{"pid":27443,"tid":27459,"ts":326460190649,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2381,"tdur":1221,"tts":7097939},
-{"pid":27443,"tid":27459,"ts":326460190649,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7097939,"id":"0x300000075"},
-{"pid":27443,"tid":27459,"ts":326460190680,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2197,"tdur":1068,"tts":7097970},
-{"pid":27443,"tid":27459,"ts":326460190710,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2167,"tdur":1008,"tts":7098000},
-{"pid":27443,"tid":27459,"ts":326460190771,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7098061},
-{"pid":27443,"tid":27459,"ts":326460190802,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7098092},
-{"pid":27443,"tid":27459,"ts":326460190832,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7098123},
-{"pid":27443,"tid":27459,"ts":326460190863,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7098153},
-{"pid":27443,"tid":27459,"ts":326460190893,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7098184},
-{"pid":27443,"tid":27459,"ts":326460190924,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7098214},
-{"pid":27443,"tid":27459,"ts":326460190924,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7098245},
-{"pid":27443,"tid":27459,"ts":326460190985,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1862,"tdur":733,"tts":7098275},
-{"pid":27443,"tid":27459,"ts":326460191107,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1679,"tdur":519,"tts":7098428},
-{"pid":27443,"tid":27459,"ts":326460191138,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7098428},
-{"pid":27443,"tid":27459,"ts":326460192328,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":90,"frame":"0x78c60000"}},"tts":7098824,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460192358,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":397,"tdur":61,"tts":7098855},
-{"pid":27443,"tid":27459,"ts":326460192358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7098855,"id":"0xaf88a716f182217a"},
-{"pid":27443,"tid":27459,"ts":326460192786,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7098947},
-{"pid":27443,"tid":27459,"ts":326460192877,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":122,"tdur":61,"tts":7099069},
-{"pid":27443,"tid":27459,"ts":326460192908,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7099069,"id":"0xaf88aac4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460193305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7099221,"id":"0xaf88a6d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460193305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7099221},
-{"pid":27443,"tid":27459,"ts":326460193793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7099282,"id":"0xaf88a6d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460193823,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10896,"tdur":9614,"tts":7099313},
-{"pid":27443,"tid":27459,"ts":326460193823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7099313,"id":"0xaf88a6d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460193854,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7099343,"id":"0xaf88a89af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460193854,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10835,"tdur":9553,"tts":7099343},
-{"pid":27443,"tid":27459,"ts":326460193854,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":128},"tts":7099343},
-{"pid":27443,"tid":27459,"ts":326460193884,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7099374},
-{"pid":27443,"tid":27459,"ts":326460193915,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6409,"tdur":6257,"tts":7099404},
-{"pid":27443,"tid":27459,"ts":326460193945,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7099435},
-{"pid":27443,"tid":27459,"ts":326460193976,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":90,"frame":"0x78c60000"}},"dur":6348,"tdur":6196,"tts":7099465},
-{"pid":27443,"tid":27459,"ts":326460194068,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6256,"tdur":6104,"tts":7099557},
-{"pid":27443,"tid":27459,"ts":326460194098,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7099587},
-{"pid":27443,"tid":27459,"ts":326460200294,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7105631},
-{"pid":27443,"tid":27459,"ts":326460200355,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3510,"tdur":2624,"tts":7105692},
-{"pid":27443,"tid":27459,"ts":326460200385,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7105722},
-{"pid":27443,"tid":27459,"ts":326460200385,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":31,"tts":7105722},
-{"pid":27443,"tid":27459,"ts":326460200538,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7105753},
-{"pid":27443,"tid":27459,"ts":326460200568,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7105783},
-{"pid":27443,"tid":27459,"ts":326460201057,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7106271},
-{"pid":27443,"tid":27477,"ts":326460184454,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":613276},
-{"pid":27443,"tid":27477,"ts":326460184484,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613306},
-{"pid":27443,"tid":27477,"ts":326460184484,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":613306},
-{"pid":27443,"tid":27477,"ts":326460184515,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613337},
-{"pid":27443,"tid":27477,"ts":326460184545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613367},
-{"pid":27443,"tid":27477,"ts":326460184545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613367},
-{"pid":27443,"tid":27477,"ts":326460184576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613398},
-{"pid":27443,"tid":27477,"ts":326460184576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":613398},
-{"pid":27443,"tid":27477,"ts":326460184606,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613428},
-{"pid":27443,"tid":27477,"ts":326460184606,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":613428},
-{"pid":27443,"tid":27477,"ts":326460184667,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613490},
-{"pid":27443,"tid":27477,"ts":326460184667,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":613490},
-{"pid":27443,"tid":27477,"ts":326460184698,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613520},
-{"pid":27443,"tid":27477,"ts":326460184698,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":613520},
-{"pid":27443,"tid":27477,"ts":326460184728,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613551},
-{"pid":27443,"tid":27477,"ts":326460184728,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":613581},
-{"pid":27443,"tid":27477,"ts":326460184789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":613642},
-{"pid":27443,"tid":27477,"ts":326460184820,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613642},
-{"pid":27443,"tid":27477,"ts":326460184850,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613673},
-{"pid":27443,"tid":27477,"ts":326460184850,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":613703},
-{"pid":27443,"tid":27477,"ts":326460184881,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613703},
-{"pid":27443,"tid":27477,"ts":326460184911,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":613734},
-{"pid":27443,"tid":27477,"ts":326460184911,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":613734},
-{"pid":27443,"tid":27477,"ts":326460184942,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":613764},
-{"pid":27443,"tid":27477,"ts":326460184972,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":613795},
-{"pid":27443,"tid":27477,"ts":326460185003,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":613825},
-{"pid":27443,"tid":27477,"ts":326460185003,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":613825},
-{"pid":27443,"tid":27477,"ts":326460185034,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":613856},
-{"pid":27443,"tid":27477,"ts":326460185064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":613886,"id":"0xaf88a71af182217a"},
-{"pid":27443,"tid":27477,"ts":326460185095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":613917,"id":"0xaf88a719f182217a"},
-{"pid":27443,"tid":27477,"ts":326460185095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":613917},
-{"pid":27443,"tid":27477,"ts":326460185095,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":122,"tts":613917},
-{"pid":27443,"tid":27477,"ts":326460185125,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":613947},
-{"pid":27443,"tid":27477,"ts":326460185125,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":613947},
-{"pid":27443,"tid":27477,"ts":326460185125,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":613947},
-{"pid":27443,"tid":27477,"ts":326460185156,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":613978},
-{"pid":27443,"tid":27477,"ts":326460185186,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":614008},
-{"pid":27443,"tid":27477,"ts":326460185186,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":614008},
-{"pid":27443,"tid":27477,"ts":326460185247,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":614069,"id":"0xaf88a71af182217a"},
-{"pid":27443,"tid":27477,"ts":326460185247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3144,"tdur":1893,"tts":614069},
-{"pid":27443,"tid":27477,"ts":326460185278,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3113,"tdur":1862,"tts":614100},
-{"pid":27443,"tid":27477,"ts":326460185278,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":614100},
-{"pid":27443,"tid":27477,"ts":326460185278,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3113,"tdur":1832,"tts":614130},
-{"pid":27443,"tid":27477,"ts":326460185308,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":127},"dur":1099,"tdur":1008,"tts":614130},
-{"pid":27443,"tid":27477,"ts":326460185339,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":127},"dur":183,"tdur":183,"tts":614161},
-{"pid":27443,"tid":27477,"ts":326460185522,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":127},"dur":30,"tdur":31,"tts":614344},
-{"pid":27443,"tid":27477,"ts":326460185552,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":127},"tts":614375},
-{"pid":27443,"tid":27477,"ts":326460185674,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":614497},
-{"pid":27443,"tid":27477,"ts":326460185705,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":614527},
-{"pid":27443,"tid":27477,"ts":326460185705,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":614527},
-{"pid":27443,"tid":27477,"ts":326460185705,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":614527},
-{"pid":27443,"tid":27477,"ts":326460185735,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":614588,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460185827,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":614649},
-{"pid":27443,"tid":27477,"ts":326460186407,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":615138},
-{"pid":27443,"tid":27477,"ts":326460186437,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1069,"tdur":336,"tts":615168},
-{"pid":27443,"tid":27477,"ts":326460186437,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":615168},
-{"pid":27443,"tid":27477,"ts":326460186437,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1008,"tdur":275,"tts":615168},
-{"pid":27443,"tid":27477,"ts":326460186712,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":615321},
-{"pid":27443,"tid":27477,"ts":326460186743,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":615351,"id":"0xaf88aacaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460187475,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":615504,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460187536,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":615534,"id":"0x300000073"},
-{"pid":27443,"tid":27477,"ts":326460187536,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":615534,"id":"0x300000074"},
-{"pid":27443,"tid":27477,"ts":326460187567,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":732,"tdur":305,"tts":615565},
-{"pid":27443,"tid":27477,"ts":326460187750,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":615748,"id":"0xaf88aacbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460188299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":615870,"id":"0xaf88a89ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460188330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":615901,"id":"0xaf88a6d4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460188421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460185},"tts":615992,"id":"0xaf88a703f182217a"},
-{"pid":27443,"tid":27477,"ts":326460188421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":615992},
-{"pid":27443,"tid":27477,"ts":326460189795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":616053,"id":"0xaf88a71bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460189825,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":489,"tdur":214,"tts":616053},
-{"pid":27443,"tid":27477,"ts":326460189825,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":489,"tdur":214,"tts":616053},
-{"pid":27443,"tid":27477,"ts":326460189856,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":616084,"id":"0x300000075"},
-{"pid":27443,"tid":27477,"ts":326460189856,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":616084},
-{"pid":27443,"tid":27477,"ts":326460189886,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":616114,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460189917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":616145,"id":"0xaf88a899f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460189917,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":616145},
-{"pid":27443,"tid":27477,"ts":326460189978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":616175,"id":"0xaf88a6d7f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460190314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":616267,"id":"0xaf88a714f182217a"},
-{"pid":27443,"tid":27477,"ts":326460190344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":616297},
-{"pid":27443,"tid":27477,"ts":326460190344,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460191502.0,"frame_time_us":326460185679.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":91,"tts":616328},
-{"pid":27443,"tid":27477,"ts":326460190375,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460191502.0,"frame_time_us":326460185679.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":91,"tdur":91,"tts":616328},
-{"pid":27443,"tid":27477,"ts":326460190436,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460202345},"dur":30,"tdur":30,"tts":616389},
-{"pid":27443,"tid":27477,"ts":326460190436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":616389,"id":"0xaf88a715f182217a"},
-{"pid":27443,"tid":27477,"ts":326460192664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":616572,"id":"0xaf88a716f182217a"},
-{"pid":27443,"tid":27477,"ts":326460192694,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":616572},
-{"pid":27443,"tid":27477,"ts":326460192694,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":31,"tts":616572},
-{"pid":27443,"tid":27477,"ts":326460193610,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":616633,"id":"0xaf88a717f182217a"},
-{"pid":27443,"tid":27477,"ts":326460193610,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":214,"tts":616633},
-{"pid":27443,"tid":27477,"ts":326460193640,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":152,"tts":616664},
-{"pid":27443,"tid":27477,"ts":326460193640,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":128},"tts":616664},
-{"pid":27443,"tid":27477,"ts":326460193732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":616755,"id":"0xaf88a89af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460193732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":616755,"id":"0xaf88a6d1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460193762,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":616816},
-{"pid":27443,"tid":27477,"ts":326460193793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":616816,"id":"0xaf88a89bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460202430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460202},"tts":616877,"id":"0xaf88a715f182217a"},
-{"pid":27443,"tid":27477,"ts":326460202461,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":396,"tdur":336,"tts":616908},
-{"pid":27443,"tid":27477,"ts":326460202461,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":396,"tdur":336,"tts":616908},
-{"pid":27443,"tid":27477,"ts":326460202461,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":396,"tdur":336,"tts":616908},
-{"pid":27443,"tid":27477,"ts":326460202491,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":306,"tts":616938},
-{"pid":27443,"tid":27477,"ts":326460202491,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":616938},
-{"pid":27443,"tid":27477,"ts":326460202583,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":617030},
-{"pid":27443,"tid":27477,"ts":326460202583,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":30,"tts":617030},
-{"pid":27443,"tid":27477,"ts":326460202674,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":617060},
-{"pid":27443,"tid":27477,"ts":326460202674,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":617060},
-{"pid":27443,"tid":27477,"ts":326460202705,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":91,"tts":617091},
-{"pid":27443,"tid":27477,"ts":326460202705,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":617091,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460202735,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":617121},
-{"pid":27443,"tid":27477,"ts":326460202735,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":31,"tts":617121},
-{"pid":27443,"tid":27477,"ts":326460202796,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":617182,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460202827,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":617213,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460202827,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":617213,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460203102,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":617305,"id":"0xaf88a710f182217a"},
-{"pid":27443,"tid":27477,"ts":326460203132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":617335},
-{"pid":27443,"tid":27477,"ts":326460203132,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":617335},
-{"pid":27443,"tid":27477,"ts":326460203163,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":617366,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460203163,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":617366},
-{"pid":27443,"tid":27477,"ts":326460203193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":617396,"id":"0xaf88a713f182217a"},
-{"pid":27443,"tid":27477,"ts":326460203224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":617427,"id":"0xaf88a711f182217a"},
-{"pid":27443,"tid":27477,"ts":326460203254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":617457},
-{"pid":27443,"tid":27477,"ts":326460203254,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":92,"tts":617457},
-{"pid":27443,"tid":27477,"ts":326460203285,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":617488,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460203285,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":617488},
-{"pid":27443,"tid":27477,"ts":326460203315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":617518,"id":"0xaf88a72cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460203346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":617549,"id":"0xaf88a712f182217a"},
-{"pid":27443,"tid":27477,"ts":326460203346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":617549},
-{"pid":27443,"tid":27477,"ts":326460203376,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":617579},
-{"pid":27443,"tid":27477,"ts":326460203376,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":617579,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460203376,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":617579},
-{"pid":27443,"tid":27466,"ts":326460189703,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":310209},
-{"pid":27443,"tid":27466,"ts":326460189734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":310239,"id":"0xaf88a71bf182217a"},
-{"pid":27443,"tid":27466,"ts":326460190191,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":62,"tdur":61,"tts":310331},
-{"pid":27443,"tid":27466,"ts":326460190191,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":31,"tts":310361},
-{"pid":27443,"tid":27466,"ts":326460190222,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":310361,"id":"0xba455402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460190253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":310392,"id":"0xaf88a714f182217a"},
-{"pid":27443,"tid":27466,"ts":326460193030,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":310483,"id":"0xaf88aac4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460193030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":310483},
-{"pid":27443,"tid":27466,"ts":326460193030,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":310483,"id":"0xccc4c802"},
-{"pid":27443,"tid":27466,"ts":326460193488,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":310636},
-{"pid":27443,"tid":27466,"ts":326460193488,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":310666},
-{"pid":27443,"tid":27466,"ts":326460193518,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":310666,"id":"0xba455502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460193549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":310697,"id":"0xaf88a717f182217a"},
-{"pid":27443,"tid":27466,"ts":326460208534,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":310819},
-{"pid":27443,"tid":27466,"ts":326460208565,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":310849},
-{"pid":27443,"tid":27466,"ts":326460208565,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":310849,"id":"0xba455702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460208595,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":310880},
-{"pid":27443,"tid":27466,"ts":326460208626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":310910,"id":"0xaf88a72bf182217a"},
-{"pid":27443,"tid":27466,"ts":326460208931,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":311002},
-{"pid":27443,"tid":27466,"ts":326460208961,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":61,"tts":311033},
-{"pid":27443,"tid":27466,"ts":326460208961,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311033,"id":"0xba455802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460208992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":311063,"id":"0xaf88a724f182217a"},
-{"pid":27443,"tid":27466,"ts":326460210274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":311185,"id":"0xaf88aac5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460210274,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":311185},
-{"pid":27443,"tid":27466,"ts":326460210304,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311216,"id":"0xccc4ca02"},
-{"pid":27443,"tid":27466,"ts":326460210365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":311277,"id":"0xaf88aac6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460210365,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":311277},
-{"pid":27443,"tid":27466,"ts":326460210365,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311277,"id":"0xccc4cb06"},
-{"pid":27443,"tid":27466,"ts":326460210549,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":311368},
-{"pid":27443,"tid":27466,"ts":326460210579,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":311399},
-{"pid":27443,"tid":27466,"ts":326460210610,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311429,"id":"0xc4c19d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460211006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":311521,"id":"0xaf88aac7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460211006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":311521},
-{"pid":27443,"tid":27466,"ts":326460211006,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311521,"id":"0xccc4cc02"},
-{"pid":27443,"tid":27466,"ts":326460213051,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":311674},
-{"pid":27443,"tid":27466,"ts":326460213082,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":311704},
-{"pid":27443,"tid":27466,"ts":326460213082,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311704,"id":"0xba455902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460213112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":311735,"id":"0xaf88a727f182217a"},
-{"pid":27443,"tid":27466,"ts":326460220681,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":311857},
-{"pid":27443,"tid":27466,"ts":326460220742,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":311887},
-{"pid":27443,"tid":27466,"ts":326460220742,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":311887,"id":"0xba455b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460220773,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":311918},
-{"pid":27443,"tid":27466,"ts":326460220803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":311948,"id":"0xaf88a720f182217a"},
-{"pid":27443,"tid":27466,"ts":326460221170,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":312040},
-{"pid":27443,"tid":27466,"ts":326460221200,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":312070},
-{"pid":27443,"tid":27466,"ts":326460221200,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312070,"id":"0xba455c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460221231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":312101,"id":"0xaf88a721f182217a"},
-{"pid":27443,"tid":27466,"ts":326460223092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":312223,"id":"0xaf88aac0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460223092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":312223},
-{"pid":27443,"tid":27466,"ts":326460223092,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312223,"id":"0xccc4ce02"},
-{"pid":27443,"tid":27466,"ts":326460235667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":312314,"id":"0xaf88aac1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460235697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":312345},
-{"pid":27443,"tid":27466,"ts":326460235697,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312345,"id":"0xccc4cf06"},
-{"pid":27443,"tid":27466,"ts":326460235972,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":312437},
-{"pid":27443,"tid":27466,"ts":326460236003,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":312467},
-{"pid":27443,"tid":27466,"ts":326460236003,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312498,"id":"0xc4c1a00a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460236766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":312620,"id":"0xaf88aac2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460236766,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":312620},
-{"pid":27443,"tid":27466,"ts":326460236766,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312620,"id":"0xccc4d002"},
-{"pid":27443,"tid":27466,"ts":326460237132,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":312742},
-{"pid":27443,"tid":27466,"ts":326460237162,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":312772},
-{"pid":27443,"tid":27466,"ts":326460237193,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312803,"id":"0xba455d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460237223,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":312833},
-{"pid":27443,"tid":27466,"ts":326460237223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":312833,"id":"0xaf88a73af182217a"},
-{"pid":27443,"tid":27459,"ts":326460201087,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7106302},
-{"pid":27443,"tid":27459,"ts":326460201118,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2747,"tdur":1953,"tts":7106363},
-{"pid":27443,"tid":27459,"ts":326460201148,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2533,"tdur":1770,"tts":7106363},
-{"pid":27443,"tid":27459,"ts":326460201148,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":916,"tdur":396,"tts":7106394},
-{"pid":27443,"tid":27459,"ts":326460202064,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7106790},
-{"pid":27443,"tid":27459,"ts":326460202247,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7106973},
-{"pid":27443,"tid":27459,"ts":326460202339,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":7107065},
-{"pid":27443,"tid":27459,"ts":326460202369,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1282,"tdur":1007,"tts":7107096},
-{"pid":27443,"tid":27459,"ts":326460203681,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7108133},
-{"pid":27443,"tid":27459,"ts":326460203712,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":153,"tdur":152,"tts":7108164},
-{"pid":27443,"tid":27459,"ts":326460203895,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":128},"dur":366,"tdur":366,"tts":7108347},
-{"pid":27443,"tid":27459,"ts":326460203895,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":366,"tdur":366,"tts":7108347},
-{"pid":27443,"tid":27459,"ts":326460204170,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":128},"dur":30,"tdur":30,"tts":7108622},
-{"pid":27443,"tid":27459,"ts":326460204200,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":128},"dur":31,"tdur":31,"tts":7108652},
-{"pid":27443,"tid":27459,"ts":326460204231,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":128},"dur":30,"tdur":30,"tts":7108683},
-{"pid":27443,"tid":27459,"ts":326460204292,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7108744,"id":"0x300000075"},
-{"pid":27443,"tid":27459,"ts":326460204292,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":91,"tts":7108744},
-{"pid":27443,"tid":27459,"ts":326460204292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7108774,"id":"0xaf88a72df182217a"},
-{"pid":27443,"tid":27459,"ts":326460204689,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7108896},
-{"pid":27443,"tid":27459,"ts":326460204750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7108957,"id":"0xaf88a6d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460204780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7108988},
-{"pid":27443,"tid":27459,"ts":326460204811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7109018,"id":"0xaf88a6d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460204811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7109018,"id":"0xaf88a89bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460204811,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":7109018},
-{"pid":27443,"tid":27459,"ts":326460204841,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7109049},
-{"pid":27443,"tid":27459,"ts":326460204902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7109110,"id":"0xaf88a6d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460204902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7109110},
-{"pid":27443,"tid":27459,"ts":326460208900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7109201,"id":"0xaf88a6ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460208900,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":7109201},
-{"pid":27443,"tid":27459,"ts":326460209084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":7109232},
-{"pid":27443,"tid":27459,"ts":326460209084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7109232,"id":"0xaf88a6edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460209114,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7109262,"id":"0xaf88a894f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460209114,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1160,"tts":7109262},
-{"pid":27443,"tid":27459,"ts":326460209175,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1069,"tts":7109323},
-{"pid":27443,"tid":27459,"ts":326460209206,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7109354,"id":"0x300000076"},
-{"pid":27443,"tid":27459,"ts":326460209206,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":915,"tts":7109385},
-{"pid":27443,"tid":27459,"ts":326460209236,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":885,"tts":7109415},
-{"pid":27443,"tid":27459,"ts":326460209297,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7109476},
-{"pid":27443,"tid":27459,"ts":326460209358,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7109507},
-{"pid":27443,"tid":27459,"ts":326460209389,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7109537},
-{"pid":27443,"tid":27459,"ts":326460209419,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7109568},
-{"pid":27443,"tid":27459,"ts":326460209450,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7109598},
-{"pid":27443,"tid":27459,"ts":326460209450,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7109629},
-{"pid":27443,"tid":27459,"ts":326460209480,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7109629},
-{"pid":27443,"tid":27459,"ts":326460209511,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":610,"tts":7109690},
-{"pid":27443,"tid":27459,"ts":326460209663,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":428,"tts":7109842},
-{"pid":27443,"tid":27459,"ts":326460209694,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7109842},
-{"pid":27443,"tid":27459,"ts":326460209999,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":91,"frame":"0x78c60000"}},"tts":7110148,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460210060,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":7110209},
-{"pid":27443,"tid":27459,"ts":326460210060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7110209,"id":"0xaf88a726f182217a"},
-{"pid":27443,"tid":27459,"ts":326460210091,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7110239},
-{"pid":27443,"tid":27459,"ts":326460210182,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7110331},
-{"pid":27443,"tid":27459,"ts":326460210182,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7110331,"id":"0xaf88aac5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460210304,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7110453,"id":"0xaf88a6edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460210304,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7110453},
-{"pid":27443,"tid":27459,"ts":326460211067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7110544,"id":"0xaf88a6eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460211098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7110575},
-{"pid":27443,"tid":27459,"ts":326460211098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7110575,"id":"0xaf88a6eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460211128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7110605,"id":"0xaf88a895f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460211128,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":7110605},
-{"pid":27443,"tid":27459,"ts":326460211128,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7110605},
-{"pid":27443,"tid":27459,"ts":326460211189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7110666,"id":"0xaf88a6eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460211189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7110666},
-{"pid":27443,"tid":27459,"ts":326460213295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7110758,"id":"0xaf88a6e8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460203407,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":617610,"id":"0xaf88a713f182217a"},
-{"pid":27443,"tid":27477,"ts":326460203437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":617640},
-{"pid":27443,"tid":27477,"ts":326460203437,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":122,"tts":617671},
-{"pid":27443,"tid":27477,"ts":326460203468,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":617671},
-{"pid":27443,"tid":27477,"ts":326460203468,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":617671},
-{"pid":27443,"tid":27477,"ts":326460203498,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":617701},
-{"pid":27443,"tid":27477,"ts":326460203498,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":617701},
-{"pid":27443,"tid":27477,"ts":326460203559,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":617762},
-{"pid":27443,"tid":27477,"ts":326460203559,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":617762},
-{"pid":27443,"tid":27477,"ts":326460203590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":617793,"id":"0xaf88a72cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460203590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":617793},
-{"pid":27443,"tid":27477,"ts":326460203590,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":92,"tts":617823},
-{"pid":27443,"tid":27477,"ts":326460203620,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":617823},
-{"pid":27443,"tid":27477,"ts":326460203620,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":617823},
-{"pid":27443,"tid":27477,"ts":326460203620,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":617854},
-{"pid":27443,"tid":27477,"ts":326460203651,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":617854},
-{"pid":27443,"tid":27477,"ts":326460203681,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":617884},
-{"pid":27443,"tid":27477,"ts":326460203681,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":617884},
-{"pid":27443,"tid":27477,"ts":326460204383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":618007,"id":"0xaf88a72df182217a"},
-{"pid":27443,"tid":27477,"ts":326460204383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1130,"tdur":1098,"tts":618007},
-{"pid":27443,"tid":27477,"ts":326460204383,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1130,"tdur":1098,"tts":618007},
-{"pid":27443,"tid":27477,"ts":326460204383,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":618037},
-{"pid":27443,"tid":27477,"ts":326460204414,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1099,"tdur":1068,"tts":618037},
-{"pid":27443,"tid":27477,"ts":326460204414,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1068,"tdur":1038,"tts":618037},
-{"pid":27443,"tid":27477,"ts":326460204414,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":0,"tts":618068},
-{"pid":27443,"tid":27477,"ts":326460204444,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":618068},
-{"pid":27443,"tid":27477,"ts":326460204444,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":618068,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460204475,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":618098},
-{"pid":27443,"tid":27477,"ts":326460204506,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":618129},
-{"pid":27443,"tid":27477,"ts":326460204628,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":854,"tdur":824,"tts":618251},
-{"pid":27443,"tid":27477,"ts":326460204628,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":128},"dur":274,"tdur":274,"tts":618251},
-{"pid":27443,"tid":27477,"ts":326460204902,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":128},"dur":61,"tdur":61,"tts":618525},
-{"pid":27443,"tid":27477,"ts":326460204963,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":128},"tts":618586},
-{"pid":27443,"tid":27477,"ts":326460205085,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":618709},
-{"pid":27443,"tid":27477,"ts":326460205116,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":618739},
-{"pid":27443,"tid":27477,"ts":326460205116,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":305,"tts":618770},
-{"pid":27443,"tid":27477,"ts":326460205146,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":91,"tts":618770},
-{"pid":27443,"tid":27477,"ts":326460205269,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":618892},
-{"pid":27443,"tid":27477,"ts":326460205269,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":618892},
-{"pid":27443,"tid":27477,"ts":326460205299,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":122,"tts":618922},
-{"pid":27443,"tid":27477,"ts":326460205299,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":618922},
-{"pid":27443,"tid":27477,"ts":326460205299,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":618922,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460205330,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":618953},
-{"pid":27443,"tid":27477,"ts":326460205360,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":618983},
-{"pid":27443,"tid":27477,"ts":326460205391,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":619014,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460205452,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":619044,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460205452,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":619044,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460205543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":619136,"id":"0xaf88a72ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460205543,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":619166},
-{"pid":27443,"tid":27477,"ts":326460205574,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":619166},
-{"pid":27443,"tid":27477,"ts":326460205574,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":619166,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460205604,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":619197},
-{"pid":27443,"tid":27477,"ts":326460205604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":619197,"id":"0xaf88a729f182217a"},
-{"pid":27443,"tid":27477,"ts":326460205635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":619227,"id":"0xaf88a72ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460205635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":619227},
-{"pid":27443,"tid":27477,"ts":326460205635,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":619227},
-{"pid":27443,"tid":27477,"ts":326460205665,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":619258,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460205665,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":619258},
-{"pid":27443,"tid":27477,"ts":326460205665,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":619258,"id":"0xaf88a72af182217a"},
-{"pid":27443,"tid":27477,"ts":326460205696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":619288,"id":"0xaf88a728f182217a"},
-{"pid":27443,"tid":27477,"ts":326460205696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":619288},
-{"pid":27443,"tid":27477,"ts":326460205726,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":619319},
-{"pid":27443,"tid":27477,"ts":326460205726,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":619319,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460205726,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":619319},
-{"pid":27443,"tid":27477,"ts":326460205757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":619349,"id":"0xaf88a729f182217a"},
-{"pid":27443,"tid":27477,"ts":326460205757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":885,"tdur":886,"tts":619349},
-{"pid":27443,"tid":27477,"ts":326460205757,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":885,"tdur":886,"tts":619349},
-{"pid":27443,"tid":27477,"ts":326460205787,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":619380},
-{"pid":27443,"tid":27477,"ts":326460205787,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":619380},
-{"pid":27443,"tid":27477,"ts":326460205787,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":62,"tts":619410},
-{"pid":27443,"tid":27477,"ts":326460205818,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":62,"tts":619410},
-{"pid":27443,"tid":27477,"ts":326460205879,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":619472},
-{"pid":27443,"tid":27477,"ts":326460205909,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":733,"tdur":733,"tts":619502},
-{"pid":27443,"tid":27477,"ts":326460205909,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":733,"tdur":733,"tts":619502},
-{"pid":27443,"tid":27477,"ts":326460205909,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":619502,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460206001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619594},
-{"pid":27443,"tid":27477,"ts":326460206001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":619624},
-{"pid":27443,"tid":27477,"ts":326460206032,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":619624},
-{"pid":27443,"tid":27477,"ts":326460206062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619655},
-{"pid":27443,"tid":27477,"ts":326460206062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":619655},
-{"pid":27443,"tid":27477,"ts":326460206093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619685},
-{"pid":27443,"tid":27477,"ts":326460206123,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619716},
-{"pid":27443,"tid":27477,"ts":326460206123,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619716},
-{"pid":27443,"tid":27477,"ts":326460206154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619746},
-{"pid":27443,"tid":27477,"ts":326460206154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":619746},
-{"pid":27443,"tid":27477,"ts":326460206184,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619777},
-{"pid":27443,"tid":27477,"ts":326460206184,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":619777},
-{"pid":27443,"tid":27477,"ts":326460206215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619807},
-{"pid":27443,"tid":27477,"ts":326460206215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":619838},
-{"pid":27443,"tid":27477,"ts":326460206245,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":619838},
-{"pid":27443,"tid":27477,"ts":326460206276,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619868},
-{"pid":27443,"tid":27477,"ts":326460206276,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":619868},
-{"pid":27443,"tid":27477,"ts":326460206306,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619899},
-{"pid":27443,"tid":27477,"ts":326460206306,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":619899},
-{"pid":27443,"tid":27477,"ts":326460206337,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619929},
-{"pid":27443,"tid":27477,"ts":326460206398,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":619990},
-{"pid":27443,"tid":27477,"ts":326460206428,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":620021},
-{"pid":27443,"tid":27477,"ts":326460206428,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":620021},
-{"pid":27443,"tid":27477,"ts":326460206459,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":620051},
-{"pid":27443,"tid":27477,"ts":326460206459,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":620051},
-{"pid":27443,"tid":27477,"ts":326460206489,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":620082},
-{"pid":27443,"tid":27477,"ts":326460206520,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":620112},
-{"pid":27443,"tid":27477,"ts":326460206550,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":620143},
-{"pid":27443,"tid":27477,"ts":326460206581,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":620173},
-{"pid":27443,"tid":27477,"ts":326460206581,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":620204},
-{"pid":27443,"tid":27477,"ts":326460206611,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":620204},
-{"pid":27443,"tid":27477,"ts":326460206672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":620265,"id":"0xaf88a72af182217a"},
-{"pid":27443,"tid":27477,"ts":326460206672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":620265},
-{"pid":27443,"tid":27477,"ts":326460206672,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":122,"tts":620265},
-{"pid":27443,"tid":27477,"ts":326460206672,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":620265},
-{"pid":27443,"tid":27477,"ts":326460206703,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":620296},
-{"pid":27443,"tid":27477,"ts":326460206703,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":620296},
-{"pid":27443,"tid":27477,"ts":326460206703,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":620296},
-{"pid":27443,"tid":27477,"ts":326460206764,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":620357},
-{"pid":27443,"tid":27477,"ts":326460206764,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":620357},
-{"pid":27443,"tid":27477,"ts":326460208717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":620418,"id":"0xaf88a72bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460208717,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":620418},
-{"pid":27443,"tid":27477,"ts":326460208748,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":620448},
-{"pid":27443,"tid":27477,"ts":326460208748,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":620448,"id":"0x300000076"},
-{"pid":27443,"tid":27477,"ts":326460208778,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":620479},
-{"pid":27443,"tid":27477,"ts":326460208778,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":620479,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460208809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":620509,"id":"0xaf88a894f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460208839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":620540,"id":"0xaf88a6ecf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460209023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":620662,"id":"0xaf88a724f182217a"},
-{"pid":27443,"tid":27477,"ts":326460209053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":620662},
-{"pid":27443,"tid":27477,"ts":326460209084,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460208183.0,"frame_time_us":326460202360.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":620692},
-{"pid":27443,"tid":27477,"ts":326460209084,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460208183.0,"frame_time_us":326460202360.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":620723},
-{"pid":27443,"tid":27477,"ts":326460209145,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":620753},
-{"pid":27443,"tid":27477,"ts":326460209175,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":620784},
-{"pid":27443,"tid":27477,"ts":326460209206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":620814,"id":"0xaf88a725f182217a"},
-{"pid":27443,"tid":27477,"ts":326460209236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":620845,"id":"0xaf88a725f182217a"},
-{"pid":27443,"tid":27477,"ts":326460209236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1831,"tdur":1465,"tts":620845},
-{"pid":27443,"tid":27477,"ts":326460209236,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1831,"tdur":1465,"tts":620845},
-{"pid":27443,"tid":27477,"ts":326460209236,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1831,"tdur":1435,"tts":620875},
-{"pid":27443,"tid":27477,"ts":326460209267,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":128},"dur":854,"tdur":855,"tts":620875},
-{"pid":27443,"tid":27477,"ts":326460209297,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":128},"dur":244,"tdur":244,"tts":620906},
-{"pid":27443,"tid":27477,"ts":326460209541,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":128},"dur":31,"tdur":31,"tts":621150},
-{"pid":27443,"tid":27477,"ts":326460209572,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":128},"tts":621181},
-{"pid":27443,"tid":27477,"ts":326460209663,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":621272},
-{"pid":27443,"tid":27477,"ts":326460209663,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":621303},
-{"pid":27443,"tid":27477,"ts":326460209694,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":621303},
-{"pid":27443,"tid":27477,"ts":326460209694,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":621303},
-{"pid":27443,"tid":27477,"ts":326460209724,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":621333,"s":"t"},{"pid":27443,"tid":27477,"ts":326460209755,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":621394},
-{"pid":27443,"tid":27477,"ts":326460210121,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":621730},
-{"pid":27443,"tid":27477,"ts":326460210152,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":213,"tts":621761},
-{"pid":27443,"tid":27477,"ts":326460210152,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":621761},
-{"pid":27443,"tid":27477,"ts":326460210152,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":549,"tdur":153,"tts":621791},
-{"pid":27443,"tid":27477,"ts":326460210243,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":31,"tdur":31,"tts":621852},
-{"pid":27443,"tid":27477,"ts":326460210274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":621913,"id":"0xaf88aac6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460210732,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":621974,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460210762,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":622005,"id":"0x300000075"},
-{"pid":27443,"tid":27477,"ts":326460210762,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":213,"tts":622005},
-{"pid":27443,"tid":27477,"ts":326460210945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":622188,"id":"0xaf88aac7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460211006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":622249,"id":"0xaf88a895f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460211006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":622249,"id":"0xaf88a6eef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460211098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":622340,"id":"0xaf88a726f182217a"},
-{"pid":27443,"tid":27477,"ts":326460211098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":622340},
-{"pid":27443,"tid":27477,"ts":326460211098,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":622340},
-{"pid":27443,"tid":27477,"ts":326460213173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":622401,"id":"0xaf88a727f182217a"},
-{"pid":27443,"tid":27477,"ts":326460213173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":622401},
-{"pid":27443,"tid":27477,"ts":326460213204,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":622432},
-{"pid":27443,"tid":27477,"ts":326460213234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":622463,"id":"0xaf88a896f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460213234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":622463,"id":"0xaf88a6e8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460220895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":622585,"id":"0xaf88a720f182217a"},
-{"pid":27443,"tid":27477,"ts":326460220895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":244,"tts":622585},
-{"pid":27443,"tid":27477,"ts":326460220925,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":458,"tdur":214,"tts":622615},
-{"pid":27443,"tid":27477,"ts":326460220925,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":31,"tts":622615},
-{"pid":27443,"tid":27477,"ts":326460221231,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":622676,"id":"0x300000077"},
-{"pid":27443,"tid":27477,"ts":326460221231,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":0,"tts":622707},
-{"pid":27443,"tid":27477,"ts":326460221292,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":622737,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460221322,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":622768,"id":"0xaf88a897f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460221322,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":622798,"id":"0xaf88a6eaf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460221383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":622829,"id":"0xaf88a721f182217a"},
-{"pid":27443,"tid":27477,"ts":326460221414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":622859},
-{"pid":27443,"tid":27477,"ts":326460221444,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460224865.0,"frame_time_us":326460219042.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":213,"tts":622890},
-{"pid":27443,"tid":27477,"ts":326460221475,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460224865.0,"frame_time_us":326460219042.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":622920},
-{"pid":27443,"tid":27477,"ts":326460221505,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":129},"tts":622951},
-{"pid":27443,"tid":27477,"ts":326460221597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":623042,"id":"0xaf88a890f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460221597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":623042,"id":"0xaf88a6e4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460221597,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":623073},
-{"pid":27443,"tid":27477,"ts":326460221627,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460235708},"dur":31,"tdur":30,"tts":623073},
-{"pid":27443,"tid":27477,"ts":326460221627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":623073,"id":"0xaf88a722f182217a"},
-{"pid":27443,"tid":27477,"ts":326460232340,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":623164,"id":"0xaf88a723f182217a"},
-{"pid":27443,"tid":27477,"ts":326460232371,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1007,"tdur":1007,"tts":623195},
-{"pid":27443,"tid":27477,"ts":326460232371,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1007,"tts":623195},
-{"pid":27443,"tid":27477,"ts":326460232371,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":623195},
-{"pid":27443,"tid":27477,"ts":326460232401,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":977,"tdur":976,"tts":623226},
-{"pid":27443,"tid":27477,"ts":326460232401,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":977,"tdur":976,"tts":623226},
-{"pid":27443,"tid":27477,"ts":326460232432,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":623256},
-{"pid":27443,"tid":27477,"ts":326460232432,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":623256},
-{"pid":27443,"tid":27477,"ts":326460232462,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":623287,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27459,"ts":326460213295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":123,"tts":7110788},
-{"pid":27443,"tid":27459,"ts":326460213326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7110788,"id":"0xaf88a6e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460213356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7110819,"id":"0xaf88a896f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460213356,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":7110819},
-{"pid":27443,"tid":27459,"ts":326460213356,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":61,"tdur":30,"tts":7110850},
-{"pid":27443,"tid":27459,"ts":326460213356,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7110850},
-{"pid":27443,"tid":27459,"ts":326460213479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7110941,"id":"0xaf88a6e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460213479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7110941},
-{"pid":27443,"tid":27459,"ts":326460221414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7111033,"id":"0xaf88a6eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460221414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1678,"tdur":1374,"tts":7111063},
-{"pid":27443,"tid":27459,"ts":326460221475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7111094,"id":"0xaf88a6ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460221475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7111094,"id":"0xaf88a897f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460221475,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1617,"tdur":1313,"tts":7111124},
-{"pid":27443,"tid":27459,"ts":326460221566,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1496,"tdur":1221,"tts":7111185},
-{"pid":27443,"tid":27459,"ts":326460221597,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7111216,"id":"0x300000077"},
-{"pid":27443,"tid":27459,"ts":326460221627,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1343,"tdur":1068,"tts":7111246},
-{"pid":27443,"tid":27459,"ts":326460221658,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1312,"tdur":1037,"tts":7111277},
-{"pid":27443,"tid":27459,"ts":326460221719,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7111338},
-{"pid":27443,"tid":27459,"ts":326460221780,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":0,"tts":7111429},
-{"pid":27443,"tid":27459,"ts":326460221963,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7111460},
-{"pid":27443,"tid":27459,"ts":326460221994,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7111490},
-{"pid":27443,"tid":27459,"ts":326460222024,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7111490},
-{"pid":27443,"tid":27459,"ts":326460222055,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7111521},
-{"pid":27443,"tid":27459,"ts":326460222085,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7111551},
-{"pid":27443,"tid":27459,"ts":326460222146,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":824,"tdur":641,"tts":7111643},
-{"pid":27443,"tid":27459,"ts":326460222360,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":549,"tdur":427,"tts":7111826},
-{"pid":27443,"tid":27459,"ts":326460222390,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7111857},
-{"pid":27443,"tid":27459,"ts":326460222848,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":92,"frame":"0x78c60000"}},"tts":7112223,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460222909,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7112253},
-{"pid":27443,"tid":27459,"ts":326460223001,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7112345},
-{"pid":27443,"tid":27459,"ts":326460223001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7112345,"id":"0xaf88aac0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460223123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7112467,"id":"0xaf88a6ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460223153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9614,"tdur":9156,"tts":7112498},
-{"pid":27443,"tid":27459,"ts":326460223153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7112498,"id":"0xaf88a6e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460223184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7112528,"id":"0xaf88a890f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460223184,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9583,"tdur":9126,"tts":7112528},
-{"pid":27443,"tid":27459,"ts":326460223184,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":129},"tts":7112528},
-{"pid":27443,"tid":27459,"ts":326460223215,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7112559},
-{"pid":27443,"tid":27459,"ts":326460223245,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6043,"tdur":6043,"tts":7112589},
-{"pid":27443,"tid":27459,"ts":326460223276,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7112620},
-{"pid":27443,"tid":27459,"ts":326460223337,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":91,"frame":"0x78c60000"}},"dur":5768,"tdur":5768,"tts":7112681},
-{"pid":27443,"tid":27459,"ts":326460223398,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5707,"tdur":5707,"tts":7112742},
-{"pid":27443,"tid":27459,"ts":326460223428,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7112772},
-{"pid":27443,"tid":27459,"ts":326460229074,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7118419},
-{"pid":27443,"tid":27459,"ts":326460229135,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":92,"frame":"0x78c60000"}},"dur":123,"tdur":122,"tts":7118480},
-{"pid":27443,"tid":27459,"ts":326460229196,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":62,"tdur":61,"tts":7118541},
-{"pid":27443,"tid":27459,"ts":326460229227,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7118571},
-{"pid":27443,"tid":27459,"ts":326460229227,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7118602},
-{"pid":27443,"tid":27459,"ts":326460229288,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2472,"tdur":2472,"tts":7118632},
-{"pid":27443,"tid":27459,"ts":326460229319,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7118663},
-{"pid":27443,"tid":27459,"ts":326460229319,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7118663},
-{"pid":27443,"tid":27459,"ts":326460229349,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7118693},
-{"pid":27443,"tid":27459,"ts":326460229746,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7119090},
-{"pid":27443,"tid":27459,"ts":326460229776,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7119121},
-{"pid":27443,"tid":27459,"ts":326460229807,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1953,"tdur":1923,"tts":7119151},
-{"pid":27443,"tid":27459,"ts":326460229807,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1740,"tdur":1740,"tts":7119151},
-{"pid":27443,"tid":27459,"ts":326460229837,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":397,"tdur":396,"tts":7119182},
-{"pid":27443,"tid":27459,"ts":326460230234,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7119578},
-{"pid":27443,"tid":27459,"ts":326460230417,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7119761},
-{"pid":27443,"tid":27459,"ts":326460230509,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":7119853},
-{"pid":27443,"tid":27459,"ts":326460230539,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1008,"tdur":1007,"tts":7119884},
-{"pid":27443,"tid":27459,"ts":326460231577,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7120921},
-{"pid":27443,"tid":27459,"ts":326460231608,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":7120982},
-{"pid":27443,"tid":27459,"ts":326460231760,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":129},"dur":489,"tdur":306,"tts":7121104},
-{"pid":27443,"tid":27459,"ts":326460231760,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":489,"tdur":306,"tts":7121104},
-{"pid":27443,"tid":27459,"ts":326460232004,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":129},"dur":92,"tdur":0,"tts":7121349},
-{"pid":27443,"tid":27459,"ts":326460232096,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":129},"dur":91,"tdur":30,"tts":7121349},
-{"pid":27443,"tid":27459,"ts":326460232096,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":7121349},
-{"pid":27443,"tid":27459,"ts":326460232187,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":129},"dur":62,"tdur":31,"tts":7121379},
-{"pid":27443,"tid":27459,"ts":326460232249,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7121410,"id":"0x300000076"},
-{"pid":27443,"tid":27459,"ts":326460232249,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7121440,"id":"0x300000077"},
-{"pid":27443,"tid":27459,"ts":326460232279,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":92,"tts":7121440},
-{"pid":27443,"tid":27459,"ts":326460232279,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7121440,"id":"0xaf88a723f182217a"},
-{"pid":27443,"tid":27459,"ts":326460232706,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3002},"tts":7121593,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460232706,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7121623,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460232737,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7121623},
-{"pid":27443,"tid":27459,"ts":326460232798,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460223},"tts":7121684,"id":"0xaf88a6cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460232828,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7121715},
-{"pid":27443,"tid":27459,"ts":326460232859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7121745,"id":"0xaf88a6e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460232859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7121745},
-{"pid":27443,"tid":27459,"ts":326460232889,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7121776,"id":"0xaf88a88af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460232920,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":31,"tdur":31,"tts":7121806},
-{"pid":27443,"tid":27459,"ts":326460232920,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7121806,"id":"0xaf88a891f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460232951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7121837,"id":"0xaf88a6e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460232981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7121867,"id":"0xaf88a6e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460233012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7121898},
-{"pid":27443,"tid":27459,"ts":326460233012,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7121898,"id":"0xaf88a6e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460233042,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7121928,"id":"0xaf88a898f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460233042,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":7121928},
-{"pid":27443,"tid":27459,"ts":326460233042,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7121928,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460233073,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.666},"dur":91,"tdur":91,"tts":7121959},
-{"pid":27443,"tid":27459,"ts":326460233073,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7121959},
-{"pid":27443,"tid":27459,"ts":326460233103,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7122020},
-{"pid":27443,"tid":27459,"ts":326460233164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7122050,"id":"0xaf88a892f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460233164,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7122050,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460233225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7122112,"id":"0xaf88a6e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460233225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7122112},
-{"pid":27443,"tid":27459,"ts":326460236827,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7122173,"id":"0xaf88a6e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460236857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7122203},
-{"pid":27443,"tid":27459,"ts":326460236857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7122203,"id":"0xaf88a6e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460236888,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7122234,"id":"0xaf88a893f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460236888,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7122234},
-{"pid":27443,"tid":27459,"ts":326460236888,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7122234},
-{"pid":27443,"tid":27459,"ts":326460236949,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7122295,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460236949,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7122295,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460236979,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7122356,"id":"0xaf88a6e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460237010,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7122356},
-{"pid":27443,"tid":27459,"ts":326460237010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7122356,"id":"0xaf88a6e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460237040,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7122386,"id":"0xaf88a892f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460237040,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":7122386},
-{"pid":27443,"tid":27459,"ts":326460237071,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7122417,"id":"0xaf88a8acf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460237101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7122447,"id":"0xaf88a6e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460237132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7122478},
-{"pid":27443,"tid":27459,"ts":326460237406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7122539,"id":"0xaf88a6e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460237437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1191,"tts":7122569},
-{"pid":27443,"tid":27459,"ts":326460237437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7122569,"id":"0xaf88a6fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460237468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7122600,"id":"0xaf88a8adf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460237468,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1159,"tdur":1129,"tts":7122600},
-{"pid":27443,"tid":27459,"ts":326460237529,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1068,"tts":7122661},
-{"pid":27443,"tid":27459,"ts":326460237529,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7122661,"id":"0x300000078"},
-{"pid":27443,"tid":27459,"ts":326460237559,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":947,"tts":7122691},
-{"pid":27443,"tid":27459,"ts":326460237590,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":915,"tdur":886,"tts":7122752},
-{"pid":27443,"tid":27459,"ts":326460237651,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7122783},
-{"pid":27443,"tid":27459,"ts":326460237681,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7122844},
-{"pid":27443,"tid":27459,"ts":326460237712,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7122875},
-{"pid":27443,"tid":27459,"ts":326460237742,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7122875},
-{"pid":27443,"tid":27459,"ts":326460237773,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7122936},
-{"pid":27443,"tid":27459,"ts":326460237803,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7122936},
-{"pid":27443,"tid":27477,"ts":326460232462,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":623287},
-{"pid":27443,"tid":27477,"ts":326460232523,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":623348},
-{"pid":27443,"tid":27477,"ts":326460232645,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":702,"tdur":702,"tts":623470},
-{"pid":27443,"tid":27477,"ts":326460232645,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":129},"dur":244,"tdur":244,"tts":623470},
-{"pid":27443,"tid":27477,"ts":326460232889,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":129},"dur":31,"tdur":30,"tts":623714},
-{"pid":27443,"tid":27477,"ts":326460232951,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":129},"tts":623775},
-{"pid":27443,"tid":27477,"ts":326460233042,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":623866},
-{"pid":27443,"tid":27477,"ts":326460233042,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":306,"tts":623866},
-{"pid":27443,"tid":27477,"ts":326460233042,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":623897},
-{"pid":27443,"tid":27477,"ts":326460233164,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":623989},
-{"pid":27443,"tid":27477,"ts":326460233195,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":624019},
-{"pid":27443,"tid":27477,"ts":326460233195,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":624019},
-{"pid":27443,"tid":27477,"ts":326460233195,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":624019},
-{"pid":27443,"tid":27477,"ts":326460233225,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":624050,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460233225,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":624050},
-{"pid":27443,"tid":27477,"ts":326460233256,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":624080},
-{"pid":27443,"tid":27477,"ts":326460233286,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":624111,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460233317,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":624141,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460233347,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":624172,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460233408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":624233,"id":"0xaf88a73cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460233408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":624233},
-{"pid":27443,"tid":27477,"ts":326460233408,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":624233},
-{"pid":27443,"tid":27477,"ts":326460233439,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":624263,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460233439,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":624263},
-{"pid":27443,"tid":27477,"ts":326460233439,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":624294,"id":"0xaf88a73ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460233469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":624294,"id":"0xaf88a73df182217a"},
-{"pid":27443,"tid":27477,"ts":326460233500,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":624324},
-{"pid":27443,"tid":27477,"ts":326460233500,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":624324},
-{"pid":27443,"tid":27477,"ts":326460233500,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":624324,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460233500,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":0,"tts":624355},
-{"pid":27443,"tid":27477,"ts":326460233530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":624355,"id":"0xaf88a738f182217a"},
-{"pid":27443,"tid":27477,"ts":326460233561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":624385,"id":"0xaf88a73ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460233561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":624385},
-{"pid":27443,"tid":27477,"ts":326460233561,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":624385},
-{"pid":27443,"tid":27477,"ts":326460233561,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":624385,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460233591,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":624416},
-{"pid":27443,"tid":27477,"ts":326460233591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":624416,"id":"0xaf88a73ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460233622,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":885,"tdur":885,"tts":624446},
-{"pid":27443,"tid":27477,"ts":326460233622,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":885,"tdur":885,"tts":624446},
-{"pid":27443,"tid":27477,"ts":326460233622,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":624446},
-{"pid":27443,"tid":27477,"ts":326460233622,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":624446},
-{"pid":27443,"tid":27477,"ts":326460233652,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":62,"tdur":61,"tts":624477},
-{"pid":27443,"tid":27477,"ts":326460233652,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":62,"tdur":61,"tts":624477},
-{"pid":27443,"tid":27477,"ts":326460233714,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":793,"tdur":763,"tts":624568},
-{"pid":27443,"tid":27477,"ts":326460233744,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":624568},
-{"pid":27443,"tid":27477,"ts":326460233744,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":733,"tdur":733,"tts":624568},
-{"pid":27443,"tid":27477,"ts":326460233744,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":624568,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460233836,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":624660},
-{"pid":27443,"tid":27477,"ts":326460233866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624691},
-{"pid":27443,"tid":27477,"ts":326460233866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":624691},
-{"pid":27443,"tid":27477,"ts":326460233897,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624721},
-{"pid":27443,"tid":27477,"ts":326460233927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624752},
-{"pid":27443,"tid":27477,"ts":326460233927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624752},
-{"pid":27443,"tid":27477,"ts":326460233958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624782},
-{"pid":27443,"tid":27477,"ts":326460233958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":624782},
-{"pid":27443,"tid":27477,"ts":326460233988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624813},
-{"pid":27443,"tid":27477,"ts":326460233988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":624813},
-{"pid":27443,"tid":27477,"ts":326460234019,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624843},
-{"pid":27443,"tid":27477,"ts":326460234019,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":624874},
-{"pid":27443,"tid":27477,"ts":326460234049,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":624874},
-{"pid":27443,"tid":27477,"ts":326460234080,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624904},
-{"pid":27443,"tid":27477,"ts":326460234080,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":624904},
-{"pid":27443,"tid":27477,"ts":326460234110,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624935},
-{"pid":27443,"tid":27477,"ts":326460234110,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":624935},
-{"pid":27443,"tid":27477,"ts":326460234141,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624965},
-{"pid":27443,"tid":27477,"ts":326460234171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":624996},
-{"pid":27443,"tid":27477,"ts":326460234171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":624996},
-{"pid":27443,"tid":27477,"ts":326460234232,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":625057},
-{"pid":27443,"tid":27477,"ts":326460234263,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":625087},
-{"pid":27443,"tid":27477,"ts":326460234293,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":625118},
-{"pid":27443,"tid":27477,"ts":326460234293,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":625118},
-{"pid":27443,"tid":27477,"ts":326460234324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":625148},
-{"pid":27443,"tid":27477,"ts":326460234324,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":625179},
-{"pid":27443,"tid":27477,"ts":326460234354,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":625179},
-{"pid":27443,"tid":27477,"ts":326460234385,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":625209},
-{"pid":27443,"tid":27477,"ts":326460234415,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":625240},
-{"pid":27443,"tid":27477,"ts":326460234446,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":625270},
-{"pid":27443,"tid":27477,"ts":326460234446,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":625270},
-{"pid":27443,"tid":27477,"ts":326460234477,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":625301},
-{"pid":27443,"tid":27477,"ts":326460234507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":625331,"id":"0xaf88a739f182217a"},
-{"pid":27443,"tid":27477,"ts":326460234538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":625362,"id":"0xaf88a738f182217a"},
-{"pid":27443,"tid":27477,"ts":326460234538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":625362},
-{"pid":27443,"tid":27477,"ts":326460234538,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":625362},
-{"pid":27443,"tid":27477,"ts":326460234568,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":625392},
-{"pid":27443,"tid":27477,"ts":326460234568,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":625392},
-{"pid":27443,"tid":27477,"ts":326460234568,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":62,"tts":625392},
-{"pid":27443,"tid":27477,"ts":326460234599,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":625423},
-{"pid":27443,"tid":27477,"ts":326460234629,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":625454},
-{"pid":27443,"tid":27477,"ts":326460234629,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":625454},
-{"pid":27443,"tid":27477,"ts":326460234660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":625484,"id":"0xaf88a739f182217a"},
-{"pid":27443,"tid":27477,"ts":326460234660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2563,"tdur":1465,"tts":625484},
-{"pid":27443,"tid":27477,"ts":326460234690,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2503,"tdur":1434,"tts":625515},
-{"pid":27443,"tid":27477,"ts":326460234690,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":625515},
-{"pid":27443,"tid":27477,"ts":326460234721,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2472,"tdur":1404,"tts":625545},
-{"pid":27443,"tid":27477,"ts":326460234721,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":129},"dur":732,"tdur":733,"tts":625545},
-{"pid":27443,"tid":27477,"ts":326460234751,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":129},"dur":183,"tdur":183,"tts":625576},
-{"pid":27443,"tid":27477,"ts":326460234934,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":129},"dur":31,"tdur":30,"tts":625759},
-{"pid":27443,"tid":27477,"ts":326460234965,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":129},"tts":625820},
-{"pid":27443,"tid":27477,"ts":326460235056,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":625881},
-{"pid":27443,"tid":27477,"ts":326460235056,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":625881},
-{"pid":27443,"tid":27477,"ts":326460235087,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":625911},
-{"pid":27443,"tid":27477,"ts":326460235087,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":625911},
-{"pid":27443,"tid":27477,"ts":326460235087,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":625942,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460235148,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":625972},
-{"pid":27443,"tid":27477,"ts":326460235423,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":626278},
-{"pid":27443,"tid":27477,"ts":326460235453,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":977,"tdur":274,"tts":626278},
-{"pid":27443,"tid":27477,"ts":326460235484,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":626308},
-{"pid":27443,"tid":27477,"ts":326460235484,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":885,"tdur":183,"tts":626308},
-{"pid":27443,"tid":27477,"ts":326460235575,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":626400},
-{"pid":27443,"tid":27477,"ts":326460235606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":626430,"id":"0xaf88aac1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460236399,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":626522,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460236460,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":626583,"id":"0x300000076"},
-{"pid":27443,"tid":27477,"ts":326460236460,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":626583,"id":"0x300000077"},
-{"pid":27443,"tid":27477,"ts":326460236491,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":626613},
-{"pid":27443,"tid":27477,"ts":326460236674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":626796,"id":"0xaf88aac2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460236766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":626888,"id":"0xaf88a893f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460236766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":626888,"id":"0xaf88a6e0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460237223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460235},"tts":626980,"id":"0xaf88a722f182217a"},
-{"pid":27443,"tid":27477,"ts":326460237223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":626980},
-{"pid":27443,"tid":27477,"ts":326460237254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":627010,"id":"0xaf88a73af182217a"},
-{"pid":27443,"tid":27477,"ts":326460237254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":627010},
-{"pid":27443,"tid":27477,"ts":326460237284,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":627041},
-{"pid":27443,"tid":27477,"ts":326460237284,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":627041,"id":"0x300000078"},
-{"pid":27443,"tid":27477,"ts":326460237315,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":627071},
-{"pid":27443,"tid":27477,"ts":326460237315,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":627071,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460237345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":627102,"id":"0xaf88a8adf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460237376,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":627132,"id":"0xaf88a6e3f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460237803,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":627193,"id":"0xaf88a73bf182217a"},
-{"pid":27443,"tid":27466,"ts":326460237681,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":312925},
-{"pid":27443,"tid":27466,"ts":326460237712,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":312955},
-{"pid":27443,"tid":27466,"ts":326460237712,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":312955,"id":"0xba455e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460237742,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":312986,"id":"0xaf88a73bf182217a"},
-{"pid":27443,"tid":27466,"ts":326460238597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":313077,"id":"0xaf88aac3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460238627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":313108},
-{"pid":27443,"tid":27466,"ts":326460238627,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313108,"id":"0xccc4d202"},
-{"pid":27443,"tid":27466,"ts":326460239268,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":313230},
-{"pid":27443,"tid":27466,"ts":326460239268,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":61,"tts":313261},
-{"pid":27443,"tid":27466,"ts":326460239299,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313261,"id":"0xba455f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460239329,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":313291,"id":"0xaf88a736f182217a"},
-{"pid":27443,"tid":27466,"ts":326460254559,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":313383},
-{"pid":27443,"tid":27466,"ts":326460254589,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":313413},
-{"pid":27443,"tid":27466,"ts":326460254589,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313413,"id":"0xba456102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460254620,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":313474},
-{"pid":27443,"tid":27466,"ts":326460254650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":313474,"id":"0xaf88a7cef182217a"},
-{"pid":27443,"tid":27466,"ts":326460254956,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":313566},
-{"pid":27443,"tid":27466,"ts":326460254956,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":313566},
-{"pid":27443,"tid":27466,"ts":326460254986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313596,"id":"0xba456202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460255017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":313627,"id":"0xaf88a7cff182217a"},
-{"pid":27443,"tid":27466,"ts":326460255047,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":313657,"id":"0xaf88aadcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460255047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":313688},
-{"pid":27443,"tid":27466,"ts":326460255078,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313688,"id":"0xccc4d306"},
-{"pid":27443,"tid":27466,"ts":326460255261,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":313779},
-{"pid":27443,"tid":27466,"ts":326460255291,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":313810},
-{"pid":27443,"tid":27466,"ts":326460255291,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313810,"id":"0xc4c1a30a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460255658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":313932,"id":"0xaf88aaddf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460255658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":313932},
-{"pid":27443,"tid":27466,"ts":326460255688,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":313963,"id":"0xccc4d402"},
-{"pid":27443,"tid":27466,"ts":326460257153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":314085,"id":"0xaf88aadef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460257184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":314085},
-{"pid":27443,"tid":27466,"ts":326460257184,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314085,"id":"0xccc4d602"},
-{"pid":27443,"tid":27466,"ts":326460257519,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":314176},
-{"pid":27443,"tid":27466,"ts":326460257550,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":314207},
-{"pid":27443,"tid":27466,"ts":326460257550,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314207,"id":"0xba456302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460257580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":314237,"id":"0xaf88a7caf182217a"},
-{"pid":27443,"tid":27466,"ts":326460270948,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":314329},
-{"pid":27443,"tid":27466,"ts":326460270979,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":314359},
-{"pid":27443,"tid":27466,"ts":326460270979,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314390,"id":"0xba456502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460271009,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":314420},
-{"pid":27443,"tid":27466,"ts":326460271040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":314420,"id":"0xaf88a7c1f182217a"},
-{"pid":27443,"tid":27466,"ts":326460271528,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":314512},
-{"pid":27443,"tid":27466,"ts":326460271559,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":314542},
-{"pid":27443,"tid":27466,"ts":326460271559,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314542,"id":"0xba456602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460271589,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":314573,"id":"0xaf88a7c2f182217a"},
-{"pid":27443,"tid":27466,"ts":326460273207,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":314695,"id":"0xaf88aadff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460273237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":314726},
-{"pid":27443,"tid":27466,"ts":326460273237,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314726,"id":"0xccc4d806"},
-{"pid":27443,"tid":27466,"ts":326460273298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":314787,"id":"0xaf88aad8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460273298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":314787},
-{"pid":27443,"tid":27466,"ts":326460273329,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314817,"id":"0xccc4d902"},
-{"pid":27443,"tid":27466,"ts":326460273421,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":314909},
-{"pid":27443,"tid":27466,"ts":326460273451,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":314939},
-{"pid":27443,"tid":27466,"ts":326460273451,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":314939,"id":"0xc4c1a60a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460273909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315061,"id":"0xaf88aad9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460273909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":315061},
-{"pid":27443,"tid":27466,"ts":326460273909,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":315061,"id":"0xccc4da02"},
-{"pid":27443,"tid":27466,"ts":326460275740,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":315183},
-{"pid":27443,"tid":27466,"ts":326460275771,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":315214},
-{"pid":27443,"tid":27466,"ts":326460275801,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":315244,"id":"0xba456702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460275832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315275,"id":"0xaf88a7daf182217a"},
-{"pid":27443,"tid":27466,"ts":326460287338,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":315397},
-{"pid":27443,"tid":27466,"ts":326460287368,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":315428},
-{"pid":27443,"tid":27466,"ts":326460287368,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":315428,"id":"0xba456902","bp":"e"},
-{"pid":27443,"tid":27477,"ts":326460237803,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":627193},
-{"pid":27443,"tid":27477,"ts":326460237834,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460241546.0,"frame_time_us":326460235723.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":627224},
-{"pid":27443,"tid":27477,"ts":326460237864,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460241546.0,"frame_time_us":326460235723.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":627254},
-{"pid":27443,"tid":27477,"ts":326460237895,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460252389},"dur":30,"tdur":30,"tts":627285},
-{"pid":27443,"tid":27477,"ts":326460237925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":627315,"id":"0xaf88a734f182217a"},
-{"pid":27443,"tid":27477,"ts":326460238444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":627376,"id":"0xaf88a735f182217a"},
-{"pid":27443,"tid":27477,"ts":326460238444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":627376},
-{"pid":27443,"tid":27477,"ts":326460238475,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":627407},
-{"pid":27443,"tid":27477,"ts":326460239360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":627468,"id":"0xaf88a736f182217a"},
-{"pid":27443,"tid":27477,"ts":326460239390,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":627498},
-{"pid":27443,"tid":27477,"ts":326460239390,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":153,"tts":627498},
-{"pid":27443,"tid":27477,"ts":326460239421,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":130},"tts":627529},
-{"pid":27443,"tid":27477,"ts":326460239482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":627590,"id":"0xaf88a8aef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460239482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":627590,"id":"0xaf88a6fdf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460239512,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":627620},
-{"pid":27443,"tid":27477,"ts":326460239543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":627651,"id":"0xaf88a8aff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460249706,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":627743,"id":"0xaf88a737f182217a"},
-{"pid":27443,"tid":27477,"ts":326460249706,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1557,"tdur":1220,"tts":627743},
-{"pid":27443,"tid":27477,"ts":326460249706,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1557,"tdur":1220,"tts":627743},
-{"pid":27443,"tid":27477,"ts":326460249737,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":627773},
-{"pid":27443,"tid":27477,"ts":326460249737,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1526,"tdur":1190,"tts":627773},
-{"pid":27443,"tid":27477,"ts":326460249737,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1495,"tdur":1129,"tts":627804},
-{"pid":27443,"tid":27477,"ts":326460249767,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":627804},
-{"pid":27443,"tid":27477,"ts":326460249767,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":627804},
-{"pid":27443,"tid":27477,"ts":326460249798,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":627834,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460249798,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":627834},
-{"pid":27443,"tid":27477,"ts":326460249828,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":627865},
-{"pid":27443,"tid":27477,"ts":326460249950,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1282,"tdur":946,"tts":627987},
-{"pid":27443,"tid":27477,"ts":326460249950,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":130},"dur":702,"tdur":366,"tts":627987},
-{"pid":27443,"tid":27477,"ts":326460250652,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":130},"dur":61,"tdur":61,"tts":628353},
-{"pid":27443,"tid":27477,"ts":326460250713,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":130},"tts":628414},
-{"pid":27443,"tid":27477,"ts":326460250835,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":628536},
-{"pid":27443,"tid":27477,"ts":326460250866,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":628567},
-{"pid":27443,"tid":27477,"ts":326460250866,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":628567},
-{"pid":27443,"tid":27477,"ts":326460251019,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":628719},
-{"pid":27443,"tid":27477,"ts":326460251019,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":628719},
-{"pid":27443,"tid":27477,"ts":326460251019,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":122,"tts":628750},
-{"pid":27443,"tid":27477,"ts":326460251049,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":628750},
-{"pid":27443,"tid":27477,"ts":326460251049,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":628750,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460251080,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":628780},
-{"pid":27443,"tid":27477,"ts":326460251110,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":628811},
-{"pid":27443,"tid":27477,"ts":326460251171,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":628872,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460251202,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":628902,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460251202,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":628902,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460251293,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":628994,"id":"0xaf88a730f182217a"},
-{"pid":27443,"tid":27477,"ts":326460251324,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":629024},
-{"pid":27443,"tid":27477,"ts":326460251324,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":629024},
-{"pid":27443,"tid":27477,"ts":326460251354,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":629055,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460251354,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":629055},
-{"pid":27443,"tid":27477,"ts":326460251385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":629085,"id":"0xaf88a733f182217a"},
-{"pid":27443,"tid":27477,"ts":326460251415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":629116,"id":"0xaf88a731f182217a"},
-{"pid":27443,"tid":27477,"ts":326460251415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":629116},
-{"pid":27443,"tid":27477,"ts":326460251415,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":62,"tts":629146},
-{"pid":27443,"tid":27477,"ts":326460251446,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":629146,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460251476,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":629177},
-{"pid":27443,"tid":27477,"ts":326460251476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":629177,"id":"0xaf88a7ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326460251507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":629208,"id":"0xaf88a732f182217a"},
-{"pid":27443,"tid":27477,"ts":326460251507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":629208},
-{"pid":27443,"tid":27477,"ts":326460251537,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":629238},
-{"pid":27443,"tid":27477,"ts":326460251537,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":629238,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460251537,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":629238},
-{"pid":27443,"tid":27477,"ts":326460251568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":629269,"id":"0xaf88a733f182217a"},
-{"pid":27443,"tid":27477,"ts":326460251598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2045,"tdur":1221,"tts":629299},
-{"pid":27443,"tid":27477,"ts":326460251598,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2015,"tdur":1190,"tts":629299},
-{"pid":27443,"tid":27459,"ts":326460237834,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7122966},
-{"pid":27443,"tid":27459,"ts":326460237895,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7123027},
-{"pid":27443,"tid":27459,"ts":326460238047,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7123180},
-{"pid":27443,"tid":27459,"ts":326460238047,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7123210},
-{"pid":27443,"tid":27459,"ts":326460238353,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":93,"frame":"0x78c60000"}},"tts":7123485,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460238383,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":7123515},
-{"pid":27443,"tid":27459,"ts":326460238383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7123515,"id":"0xaf88a735f182217a"},
-{"pid":27443,"tid":27459,"ts":326460238444,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7123577},
-{"pid":27443,"tid":27459,"ts":326460238536,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":31,"tts":7123668},
-{"pid":27443,"tid":27459,"ts":326460238536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7123668,"id":"0xaf88aac3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460238658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7123790,"id":"0xaf88a6fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460238658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7123790},
-{"pid":27443,"tid":27459,"ts":326460239543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7123882,"id":"0xaf88a6fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460239543,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10743,"tdur":9492,"tts":7123882},
-{"pid":27443,"tid":27459,"ts":326460239573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7123912,"id":"0xaf88a6fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460239573,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7123943,"id":"0xaf88a8aef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460239604,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10652,"tdur":9400,"tts":7123943},
-{"pid":27443,"tid":27459,"ts":326460239604,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":130},"tts":7123943},
-{"pid":27443,"tid":27459,"ts":326460239604,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7123943},
-{"pid":27443,"tid":27459,"ts":326460239665,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7325,"tdur":6470,"tts":7124004},
-{"pid":27443,"tid":27459,"ts":326460239665,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":0,"tts":7124034},
-{"pid":27443,"tid":27459,"ts":326460239726,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":93,"frame":"0x78c60000"}},"dur":7233,"tdur":6379,"tts":7124065},
-{"pid":27443,"tid":27459,"ts":326460239787,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7172,"tdur":6318,"tts":7124126},
-{"pid":27443,"tid":27459,"ts":326460239818,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7124156},
-{"pid":27443,"tid":27459,"ts":326460246929,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7130413},
-{"pid":27443,"tid":27459,"ts":326460246990,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2289,"tdur":2289,"tts":7130474},
-{"pid":27443,"tid":27459,"ts":326460247020,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7130535},
-{"pid":27443,"tid":27459,"ts":326460247051,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7130535},
-{"pid":27443,"tid":27459,"ts":326460247051,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7130566},
-{"pid":27443,"tid":27459,"ts":326460247478,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7130962},
-{"pid":27443,"tid":27459,"ts":326460247509,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7130993},
-{"pid":27443,"tid":27459,"ts":326460247539,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1740,"tdur":1740,"tts":7131023},
-{"pid":27443,"tid":27459,"ts":326460247539,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1587,"tdur":1588,"tts":7131023},
-{"pid":27443,"tid":27459,"ts":326460247570,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":7131054},
-{"pid":27443,"tid":27459,"ts":326460247905,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":184,"tdur":183,"tts":7131390},
-{"pid":27443,"tid":27459,"ts":326460248089,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":61,"tts":7131603},
-{"pid":27443,"tid":27459,"ts":326460248180,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":7131695},
-{"pid":27443,"tid":27459,"ts":326460248211,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":915,"tdur":916,"tts":7131695},
-{"pid":27443,"tid":27459,"ts":326460249126,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":7132611},
-{"pid":27443,"tid":27459,"ts":326460249157,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":7132672},
-{"pid":27443,"tid":27459,"ts":326460249309,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":130},"dur":275,"tdur":274,"tts":7132794},
-{"pid":27443,"tid":27459,"ts":326460249309,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":274,"tts":7132794},
-{"pid":27443,"tid":27459,"ts":326460249523,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":130},"dur":31,"tdur":31,"tts":7133007},
-{"pid":27443,"tid":27459,"ts":326460249554,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":130},"dur":0,"tdur":0,"tts":7133038},
-{"pid":27443,"tid":27459,"ts":326460249554,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":130},"dur":30,"tdur":30,"tts":7133038},
-{"pid":27443,"tid":27459,"ts":326460249584,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7133099,"id":"0x300000078"},
-{"pid":27443,"tid":27459,"ts":326460249615,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":335,"tdur":91,"tts":7133099},
-{"pid":27443,"tid":27459,"ts":326460249615,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7133099,"id":"0xaf88a737f182217a"},
-{"pid":27443,"tid":27459,"ts":326460250225,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2408},"tts":7133312,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460250225,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7133312,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460250256,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7133343},
-{"pid":27443,"tid":27459,"ts":326460250317,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7133404,"id":"0xaf88a6fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460250317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7133404},
-{"pid":27443,"tid":27459,"ts":326460250347,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7133435,"id":"0xaf88a6fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460250347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7133435,"id":"0xaf88a8aff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460250378,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7133465},
-{"pid":27443,"tid":27459,"ts":326460250378,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":7133465},
-{"pid":27443,"tid":27459,"ts":326460250439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7133526,"id":"0xaf88a6fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460250439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":7133526},
-{"pid":27443,"tid":27459,"ts":326460250469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7133557,"id":"0xaf88a6f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460250469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7133557,"id":"0xaf88a8acf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460250469,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":152,"tts":7133557},
-{"pid":27443,"tid":27459,"ts":326460250500,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7133587,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460250500,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.889},"dur":122,"tdur":122,"tts":7133587},
-{"pid":27443,"tid":27459,"ts":326460250530,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7133618},
-{"pid":27443,"tid":27459,"ts":326460250561,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7133679},
-{"pid":27443,"tid":27459,"ts":326460250591,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7133679,"id":"0xaf88a8a8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460250622,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7133709,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460250683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7133770,"id":"0xaf88a6f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460250683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7133770},
-{"pid":27443,"tid":27459,"ts":326460255749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7133892,"id":"0xaf88a6f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460255749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7133892},
-{"pid":27443,"tid":27459,"ts":326460255780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7133923,"id":"0xaf88a6faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460255780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7133923,"id":"0xaf88a8a9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460255810,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":7133953},
-{"pid":27443,"tid":27459,"ts":326460255810,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7133953},
-{"pid":27443,"tid":27459,"ts":326460255871,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7134014,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460255871,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7134014,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460255932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7134076,"id":"0xaf88a6faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460255932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7134076},
-{"pid":27443,"tid":27459,"ts":326460255963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7134106,"id":"0xaf88a6f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460255963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7134106,"id":"0xaf88a8a8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460255963,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":31,"tts":7134106},
-{"pid":27443,"tid":27459,"ts":326460255993,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7134137,"id":"0xaf88a8abf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460256024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7134167,"id":"0xaf88a6fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460256054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1130,"tdur":1129,"tts":7134198},
-{"pid":27443,"tid":27459,"ts":326460256054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7134198,"id":"0xaf88a8aaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460256054,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1130,"tdur":1129,"tts":7134198},
-{"pid":27443,"tid":27459,"ts":326460256115,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1037,"tts":7134259},
-{"pid":27443,"tid":27459,"ts":326460256146,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7134289,"id":"0x300000079"},
-{"pid":27443,"tid":27459,"ts":326460256177,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":7134320},
-{"pid":27443,"tid":27459,"ts":326460256207,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":855,"tts":7134350},
-{"pid":27443,"tid":27459,"ts":326460256238,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7134381},
-{"pid":27443,"tid":27459,"ts":326460256299,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7134442},
-{"pid":27443,"tid":27459,"ts":326460256329,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7134472},
-{"pid":27443,"tid":27459,"ts":326460256360,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7134503},
-{"pid":27443,"tid":27459,"ts":326460256360,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7134533},
-{"pid":27443,"tid":27459,"ts":326460256390,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7134533},
-{"pid":27443,"tid":27459,"ts":326460256421,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7134564},
-{"pid":27443,"tid":27459,"ts":326460256451,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":611,"tts":7134594},
-{"pid":27443,"tid":27459,"ts":326460256604,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":7134747},
-{"pid":27443,"tid":27459,"ts":326460256634,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7134777},
-{"pid":27443,"tid":27459,"ts":326460256909,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":94,"frame":"0x78c60000"}},"tts":7135052,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460256940,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":30,"tts":7135083},
-{"pid":27443,"tid":27459,"ts":326460256940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7135083,"id":"0xaf88a7c9f182217a"},
-{"pid":27443,"tid":27459,"ts":326460257001,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7135144},
-{"pid":27443,"tid":27459,"ts":326460257092,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7135235},
-{"pid":27443,"tid":27459,"ts":326460257092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7135235,"id":"0xaf88aadef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460257214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7135357,"id":"0xaf88a6f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460257214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7135357},
-{"pid":27443,"tid":27459,"ts":326460257794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7135449,"id":"0xaf88a6f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460257825,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10773,"tdur":10377,"tts":7135479},
-{"pid":27443,"tid":27459,"ts":326460257825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7135479,"id":"0xaf88a6f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460257855,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7135510,"id":"0xaf88a8a4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460257855,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10743,"tdur":10316,"tts":7135510},
-{"pid":27443,"tid":27459,"ts":326460257855,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":131},"tts":7135510},
-{"pid":27443,"tid":27459,"ts":326460257886,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7135540},
-{"pid":27443,"tid":27459,"ts":326460257916,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7569,"tdur":7416,"tts":7135571},
-{"pid":27443,"tid":27459,"ts":326460257947,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7135602},
-{"pid":27443,"tid":27459,"ts":326460257977,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":94,"frame":"0x78c60000"}},"dur":7508,"tdur":7355,"tts":7135632},
-{"pid":27443,"tid":27459,"ts":326460258038,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7417,"tdur":7233,"tts":7135724},
-{"pid":27443,"tid":27459,"ts":326460258069,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7135724},
-{"pid":27443,"tid":27459,"ts":326460263685,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7141187},
-{"pid":27443,"tid":27459,"ts":326460264051,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7141553},
-{"pid":27443,"tid":27459,"ts":326460264112,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7141614},
-{"pid":27443,"tid":27459,"ts":326460264142,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7141645},
-{"pid":27443,"tid":27459,"ts":326460264356,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7141889},
-{"pid":27443,"tid":27459,"ts":326460264844,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7142347},
-{"pid":27443,"tid":27471,"ts":326460251141,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":91,"tts":355959},
-{"pid":27443,"tid":27471,"ts":326460251171,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":356020},
-{"pid":27443,"tid":27471,"ts":326460251202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356020,"id":"0xaf88a730f182217a"},
-{"pid":27443,"tid":27469,"ts":326460251202,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":298275},
-{"pid":27443,"tid":27469,"ts":326460251263,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":298336},
-{"pid":27443,"tid":27471,"ts":326460251263,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":356050},
-{"pid":27443,"tid":27469,"ts":326460251263,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298336,"id":"0xaf88a731f182217a"},{"pid":27443,"tid":27471,"ts":326460251293,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":356081},
-{"pid":27443,"tid":27471,"ts":326460251293,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356081,"id":"0xaf88a732f182217a"},
-{"pid":27443,"tid":27546,"ts":326460264875,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":854,"tdur":855,"tts":56401},
-{"pid":27443,"tid":27546,"ts":326460264875,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":56401},
-{"pid":27443,"tid":27546,"ts":326460265729,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57256},
-{"pid":27443,"tid":27471,"ts":326460269148,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":356172},
-{"pid":27443,"tid":27471,"ts":326460269178,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":356203},
-{"pid":27443,"tid":27471,"ts":326460269209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356203,"id":"0xaf88a7c4f182217a"},
-{"pid":27443,"tid":27469,"ts":326460269209,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":298428},
-{"pid":27443,"tid":27469,"ts":326460269239,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":298458},
-{"pid":27443,"tid":27471,"ts":326460269239,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":356233},
-{"pid":27443,"tid":27469,"ts":326460269239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298458,"id":"0xaf88a7c5f182217a"},
-{"pid":27443,"tid":27471,"ts":326460269270,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":356264},
-{"pid":27443,"tid":27471,"ts":326460269270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356264,"id":"0xaf88a7c6f182217a"},
-{"pid":27443,"tid":27469,"ts":326460274336,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":298519},
-{"pid":27443,"tid":27469,"ts":326460274367,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":298550},
-{"pid":27443,"tid":27469,"ts":326460274367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298550,"id":"0xaf88a7ddf182217a"},
-{"pid":27443,"tid":27471,"ts":326460274367,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":356294},
-{"pid":27443,"tid":27471,"ts":326460274397,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":356325},
-{"pid":27443,"tid":27471,"ts":326460274428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356355,"id":"0xaf88a7def182217a"},
-{"pid":27443,"tid":27469,"ts":326460274428,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":298611},
-{"pid":27443,"tid":27469,"ts":326460274458,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":298641},
-{"pid":27443,"tid":27469,"ts":326460274458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298641,"id":"0xaf88a7dff182217a"},
-{"pid":27443,"tid":27471,"ts":326460299271,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":61,"tts":356447},
-{"pid":27443,"tid":27471,"ts":326460299332,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":356477},
-{"pid":27443,"tid":27471,"ts":326460299332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356477,"id":"0xaf88a7d7f182217a"},
-{"pid":27443,"tid":27469,"ts":326460299332,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":298702},
-{"pid":27443,"tid":27469,"ts":326460299363,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":298733},
-{"pid":27443,"tid":27471,"ts":326460299393,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":62,"tts":356538},
-{"pid":27443,"tid":27469,"ts":326460299393,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298763,"id":"0xaf88a7d0f182217a"},
-{"pid":27443,"tid":27471,"ts":326460299393,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":356538},
-{"pid":27443,"tid":27471,"ts":326460299393,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356538,"id":"0xaf88a7d1f182217a"},
-{"pid":27443,"tid":27469,"ts":326460321887,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":244,"tdur":62,"tts":298824},
-{"pid":27443,"tid":27471,"ts":326460321948,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":356630},
-{"pid":27443,"tid":27471,"ts":326460321948,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":356630},
-{"pid":27443,"tid":27471,"ts":326460321978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356661,"id":"0xaf88a7ebf182217a"},
-{"pid":27443,"tid":27471,"ts":326460322009,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":356691},
-{"pid":27443,"tid":27471,"ts":326460322009,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":356691},
-{"pid":27443,"tid":27471,"ts":326460322009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356691,"id":"0xaf88a7e4f182217a"},
-{"pid":27443,"tid":27469,"ts":326460321917,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":214,"tdur":31,"tts":298855},
-{"pid":27443,"tid":27469,"ts":326460322131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298886,"id":"0xaf88a7e5f182217a"},
-{"pid":27443,"tid":27471,"ts":326460323291,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":356722},
-{"pid":27443,"tid":27471,"ts":326460323321,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":356752},
-{"pid":27443,"tid":27471,"ts":326460323352,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356783,"id":"0xaf88a7e0f182217a"},
-{"pid":27443,"tid":27471,"ts":326460323352,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":30,"tts":356783},
-{"pid":27443,"tid":27471,"ts":326460323352,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":30,"tts":356783},
-{"pid":27443,"tid":27471,"ts":326460323413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356813,"id":"0xaf88a7e1f182217a"},
-{"pid":27443,"tid":27471,"ts":326460323443,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":356844},
-{"pid":27443,"tid":27471,"ts":326460323443,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":356844},
-{"pid":27443,"tid":27471,"ts":326460323443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356844,"id":"0xaf88a7e2f182217a"},
-{"pid":27443,"tid":27496,"ts":326460332447,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":2991,"tdur":2900,"tts":64214},
-{"pid":27443,"tid":27496,"ts":326460332447,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":64245},
-{"pid":27443,"tid":27496,"ts":326460335407,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":67114},
-{"pid":27443,"tid":27471,"ts":326460340565,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":356905},
-{"pid":27443,"tid":27471,"ts":326460340596,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":356935},
-{"pid":27443,"tid":27471,"ts":326460340596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356966,"id":"0xaf88a7faf182217a"},
-{"pid":27443,"tid":27471,"ts":326460340626,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":356966},
-{"pid":27443,"tid":27477,"ts":326460251598,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":629299},
-{"pid":27443,"tid":27477,"ts":326460251629,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":629330},
-{"pid":27443,"tid":27477,"ts":326460251659,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":629360},
-{"pid":27443,"tid":27477,"ts":326460251659,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":629360},
-{"pid":27443,"tid":27477,"ts":326460251751,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1862,"tdur":1037,"tts":629452},
-{"pid":27443,"tid":27477,"ts":326460251751,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1862,"tdur":1037,"tts":629452},
-{"pid":27443,"tid":27477,"ts":326460251782,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1373,"tdur":946,"tts":629482},
-{"pid":27443,"tid":27477,"ts":326460251782,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":629482,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460251873,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":629574},
-{"pid":27443,"tid":27477,"ts":326460251904,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629604},
-{"pid":27443,"tid":27477,"ts":326460251934,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629635},
-{"pid":27443,"tid":27477,"ts":326460251934,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":629635},
-{"pid":27443,"tid":27477,"ts":326460251965,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":629665},
-{"pid":27443,"tid":27477,"ts":326460251995,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629696},
-{"pid":27443,"tid":27477,"ts":326460252026,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629726},
-{"pid":27443,"tid":27477,"ts":326460252026,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":629726},
-{"pid":27443,"tid":27477,"ts":326460252056,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":629757},
-{"pid":27443,"tid":27477,"ts":326460252087,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629787},
-{"pid":27443,"tid":27477,"ts":326460252117,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629818},
-{"pid":27443,"tid":27477,"ts":326460252117,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":629818},
-{"pid":27443,"tid":27477,"ts":326460252148,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":629848},
-{"pid":27443,"tid":27477,"ts":326460252178,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629879},
-{"pid":27443,"tid":27477,"ts":326460252209,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629909},
-{"pid":27443,"tid":27477,"ts":326460252209,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":629909},
-{"pid":27443,"tid":27477,"ts":326460252239,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":629940},
-{"pid":27443,"tid":27477,"ts":326460252270,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":629971},
-{"pid":27443,"tid":27477,"ts":326460252300,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":630001},
-{"pid":27443,"tid":27477,"ts":326460252300,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":630001},
-{"pid":27443,"tid":27477,"ts":326460252392,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":630093},
-{"pid":27443,"tid":27477,"ts":326460252423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":630123},
-{"pid":27443,"tid":27477,"ts":326460252423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":630123},
-{"pid":27443,"tid":27477,"ts":326460252453,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":630154},
-{"pid":27443,"tid":27477,"ts":326460252484,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":630184},
-{"pid":27443,"tid":27477,"ts":326460252514,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":630215},
-{"pid":27443,"tid":27477,"ts":326460252545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":457,"tdur":31,"tts":630245},
-{"pid":27443,"tid":27477,"ts":326460252545,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":457,"tdur":31,"tts":630245},
-{"pid":27443,"tid":27477,"ts":326460253033,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":630306},
-{"pid":27443,"tid":27477,"ts":326460253063,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":630367},
-{"pid":27443,"tid":27477,"ts":326460253094,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":630367},
-{"pid":27443,"tid":27477,"ts":326460253124,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":630398},
-{"pid":27443,"tid":27477,"ts":326460253155,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":458,"tdur":61,"tts":630428},
-{"pid":27443,"tid":27477,"ts":326460253186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":630459,"id":"0xaf88a7cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460253186,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":30,"tts":630459},
-{"pid":27443,"tid":27477,"ts":326460253643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460252},"tts":630520,"id":"0xaf88a734f182217a"},
-{"pid":27443,"tid":27477,"ts":326460253643,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":630520},
-{"pid":27443,"tid":27477,"ts":326460253704,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":630550},
-{"pid":27443,"tid":27477,"ts":326460253704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":630550,"id":"0xaf88a7ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326460253735,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":630581},
-{"pid":27443,"tid":27477,"ts":326460253735,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":630581},
-{"pid":27443,"tid":27477,"ts":326460253735,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":630581},
-{"pid":27443,"tid":27477,"ts":326460253765,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":630611},
-{"pid":27443,"tid":27477,"ts":326460253765,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":62,"tts":630611},
-{"pid":27443,"tid":27477,"ts":326460253765,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":630611},
-{"pid":27443,"tid":27477,"ts":326460253826,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":630673},
-{"pid":27443,"tid":27477,"ts":326460253826,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":630673},
-{"pid":27443,"tid":27477,"ts":326460253857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":630734,"id":"0xaf88a7cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460253887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1862,"tdur":1556,"tts":630734},
-{"pid":27443,"tid":27477,"ts":326460253887,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1862,"tdur":1526,"tts":630764},
-{"pid":27443,"tid":27477,"ts":326460253918,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":630764},
-{"pid":27443,"tid":27477,"ts":326460253949,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1770,"tdur":1465,"tts":630795},
-{"pid":27443,"tid":27477,"ts":326460253949,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":130},"dur":885,"tdur":885,"tts":630795},
-{"pid":27443,"tid":27477,"ts":326460253979,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":130},"dur":244,"tdur":244,"tts":630825},
-{"pid":27443,"tid":27477,"ts":326460254223,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":130},"dur":31,"tdur":31,"tts":631069},
-{"pid":27443,"tid":27477,"ts":326460254254,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":130},"tts":631100},
-{"pid":27443,"tid":27477,"ts":326460254345,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":631191},
-{"pid":27443,"tid":27477,"ts":326460254345,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":631191},
-{"pid":27443,"tid":27477,"ts":326460254376,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":631222},
-{"pid":27443,"tid":27477,"ts":326460254376,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":631222},
-{"pid":27443,"tid":27477,"ts":326460254376,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":631252,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460254437,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":631313},
-{"pid":27443,"tid":27477,"ts":326460254803,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":631649},
-{"pid":27443,"tid":27477,"ts":326460254834,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":579,"tdur":274,"tts":631680},
-{"pid":27443,"tid":27477,"ts":326460254834,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":631710},
-{"pid":27443,"tid":27477,"ts":326460254864,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":488,"tdur":183,"tts":631710},
-{"pid":27443,"tid":27477,"ts":326460254956,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":631802},
-{"pid":27443,"tid":27477,"ts":326460254986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":631832,"id":"0xaf88aadcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460255383,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":631924,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460255413,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":631954,"id":"0x300000078"},
-{"pid":27443,"tid":27477,"ts":326460255444,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":631985},
-{"pid":27443,"tid":27477,"ts":326460255597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":632137,"id":"0xaf88aaddf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460255658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":632199,"id":"0xaf88a8a9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460255688,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":632229,"id":"0xaf88a6f9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460255749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":632290,"id":"0xaf88a7cef182217a"},
-{"pid":27443,"tid":27477,"ts":326460255780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":632321},
-{"pid":27443,"tid":27477,"ts":326460255780,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":632321},
-{"pid":27443,"tid":27477,"ts":326460255780,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":632351,"id":"0x300000079"},
-{"pid":27443,"tid":27477,"ts":326460255810,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":632351},
-{"pid":27443,"tid":27477,"ts":326460255841,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":632382,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460255871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":632412,"id":"0xaf88a8aaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460255871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":632412,"id":"0xaf88a6fbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460255902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":632443,"id":"0xaf88a7cff182217a"},
-{"pid":27443,"tid":27477,"ts":326460255932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":632473},
-{"pid":27443,"tid":27477,"ts":326460255932,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460258228.0,"frame_time_us":326460252405.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":61,"tts":632504},
-{"pid":27443,"tid":27477,"ts":326460255963,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460258228.0,"frame_time_us":326460252405.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":632504},
-{"pid":27443,"tid":27477,"ts":326460255993,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460269071},"dur":31,"tdur":31,"tts":632534},
-{"pid":27443,"tid":27477,"ts":326460256024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":632565,"id":"0xaf88a7c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460257001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":632626,"id":"0xaf88a7c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460257031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":0,"tdur":0,"tts":632656},
-{"pid":27443,"tid":27477,"ts":326460257031,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":632656},
-{"pid":27443,"tid":27477,"ts":326460257611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":632717,"id":"0xaf88a7caf182217a"},
-{"pid":27443,"tid":27477,"ts":326460257641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":184,"tdur":183,"tts":632748},
-{"pid":27443,"tid":27477,"ts":326460257641,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":122,"tts":632778},
-{"pid":27443,"tid":27477,"ts":326460257672,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":131},"tts":632778},
-{"pid":27443,"tid":27477,"ts":326460257733,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":632839,"id":"0xaf88a8a4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460257764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":632870,"id":"0xaf88a6f5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460257794,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":632900},
-{"pid":27443,"tid":27477,"ts":326460257794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":632900,"id":"0xaf88a8a5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460268263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":632992,"id":"0xaf88a7cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326460268263,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1037,"tdur":1007,"tts":632992},
-{"pid":27443,"tid":27477,"ts":326460268263,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1007,"tts":632992},
-{"pid":27443,"tid":27477,"ts":326460268293,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":633023},
-{"pid":27443,"tid":27477,"ts":326460268293,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":977,"tdur":976,"tts":633023},
-{"pid":27443,"tid":27477,"ts":326460268293,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":977,"tdur":976,"tts":633023},
-{"pid":27443,"tid":27477,"ts":326460268324,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":633053},
-{"pid":27443,"tid":27477,"ts":326460268324,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":633053},
-{"pid":27443,"tid":27477,"ts":326460268324,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":633084,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460268354,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":633084},
-{"pid":27443,"tid":27477,"ts":326460268385,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":633114},
-{"pid":27443,"tid":27477,"ts":326460268507,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":732,"tdur":733,"tts":633236},
-{"pid":27443,"tid":27477,"ts":326460268507,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":131},"dur":244,"tdur":244,"tts":633236},
-{"pid":27443,"tid":27477,"ts":326460268751,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":131},"dur":30,"tdur":31,"tts":633480},
-{"pid":27443,"tid":27477,"ts":326460268812,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":131},"tts":633541},
-{"pid":27443,"tid":27477,"ts":326460268904,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":633633},
-{"pid":27443,"tid":27477,"ts":326460268904,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":633633},
-{"pid":27443,"tid":27477,"ts":326460268904,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":633663},
-{"pid":27443,"tid":27477,"ts":326460269026,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":633755},
-{"pid":27443,"tid":27477,"ts":326460269056,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":633786},
-{"pid":27443,"tid":27477,"ts":326460269056,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":633786},
-{"pid":27443,"tid":27459,"ts":326460265424,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7142926},
-{"pid":27443,"tid":27459,"ts":326460265485,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2350,"tdur":2320,"tts":7143018},
-{"pid":27443,"tid":27459,"ts":326460265546,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7143048},
-{"pid":27443,"tid":27459,"ts":326460265546,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7143048},
-{"pid":27443,"tid":27459,"ts":326460265577,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7143079},
-{"pid":27443,"tid":27459,"ts":326460266035,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7143537},
-{"pid":27443,"tid":27459,"ts":326460266065,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7143567},
-{"pid":27443,"tid":27459,"ts":326460266096,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1739,"tdur":1740,"tts":7143598},
-{"pid":27443,"tid":27459,"ts":326460266096,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1587,"tdur":1587,"tts":7143598},
-{"pid":27443,"tid":27459,"ts":326460266126,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":7143628},
-{"pid":27443,"tid":27459,"ts":326460266462,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7143964},
-{"pid":27443,"tid":27459,"ts":326460266645,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7144147},
-{"pid":27443,"tid":27459,"ts":326460266737,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":7144239},
-{"pid":27443,"tid":27459,"ts":326460266767,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":885,"tdur":885,"tts":7144269},
-{"pid":27443,"tid":27459,"ts":326460267683,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":7145185},
-{"pid":27443,"tid":27459,"ts":326460267713,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":123,"tts":7145215},
-{"pid":27443,"tid":27459,"ts":326460267835,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":131},"dur":305,"tdur":275,"tts":7145368},
-{"pid":27443,"tid":27459,"ts":326460267866,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":274,"tdur":275,"tts":7145368},
-{"pid":27443,"tid":27459,"ts":326460268079,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":131},"dur":0,"tdur":0,"tts":7145582},
-{"pid":27443,"tid":27459,"ts":326460268110,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":131},"dur":0,"tdur":0,"tts":7145612},
-{"pid":27443,"tid":27459,"ts":326460268110,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":131},"dur":30,"tdur":31,"tts":7145612},
-{"pid":27443,"tid":27459,"ts":326460268140,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7145643,"id":"0x300000079"},
-{"pid":27443,"tid":27459,"ts":326460268140,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":397,"tdur":152,"tts":7145643},
-{"pid":27443,"tid":27459,"ts":326460268171,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7145673,"id":"0xaf88a7cbf182217a"},
-{"pid":27443,"tid":27459,"ts":326460268568,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7145826},
-{"pid":27443,"tid":27459,"ts":326460268629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7145887,"id":"0xaf88a6f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460268629,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7145887},
-{"pid":27443,"tid":27459,"ts":326460268659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7145917,"id":"0xaf88a6f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460268659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7145948,"id":"0xaf88a8a5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460268690,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":7145948},
-{"pid":27443,"tid":27459,"ts":326460268690,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":7145948},
-{"pid":27443,"tid":27459,"ts":326460268751,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7146009,"id":"0xaf88a6f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460268751,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7146009},
-{"pid":27443,"tid":27459,"ts":326460271315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7146131,"id":"0xaf88a6f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460271315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2014,"tdur":1648,"tts":7146131},
-{"pid":27443,"tid":27459,"ts":326460271345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7146162,"id":"0xaf88a6f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460271345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7146192,"id":"0xaf88a8a6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460271376,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1953,"tdur":1587,"tts":7146192},
-{"pid":27443,"tid":27459,"ts":326460271437,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1861,"tdur":1496,"tts":7146253},
-{"pid":27443,"tid":27459,"ts":326460271467,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7146284,"id":"0x30000007a"},
-{"pid":27443,"tid":27459,"ts":326460271498,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1739,"tdur":1374,"tts":7146314},
-{"pid":27443,"tid":27459,"ts":326460271498,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":7146314},
-{"pid":27443,"tid":27459,"ts":326460271711,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1526,"tdur":1313,"tts":7146375},
-{"pid":27443,"tid":27459,"ts":326460271772,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7146436},
-{"pid":27443,"tid":27459,"ts":326460271803,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7146467},
-{"pid":27443,"tid":27459,"ts":326460271864,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7146528},
-{"pid":27443,"tid":27459,"ts":326460271894,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7146558},
-{"pid":27443,"tid":27459,"ts":326460271894,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7146589},
-{"pid":27443,"tid":27459,"ts":326460271925,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7146589},
-{"pid":27443,"tid":27459,"ts":326460271956,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7146619},
-{"pid":27443,"tid":27459,"ts":326460271986,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1221,"tdur":1007,"tts":7146650},
-{"pid":27443,"tid":27459,"ts":326460272108,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7146803},
-{"pid":27443,"tid":27459,"ts":326460272535,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7147108},
-{"pid":27443,"tid":27459,"ts":326460272658,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":518,"tdur":397,"tts":7147230},
-{"pid":27443,"tid":27459,"ts":326460272688,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7147260},
-{"pid":27443,"tid":27459,"ts":326460273054,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":95,"frame":"0x78c60000"}},"tts":7147566,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460273085,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":30,"tts":7147566},
-{"pid":27443,"tid":27459,"ts":326460273146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7147596,"id":"0xaf88a7dcf182217a"},
-{"pid":27443,"tid":27459,"ts":326460273146,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7147627},
-{"pid":27443,"tid":27459,"ts":326460273268,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":31,"tts":7147718},
-{"pid":27443,"tid":27459,"ts":326460273298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7147749,"id":"0xaf88aad8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460273359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7147810,"id":"0xaf88a6f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460273359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7147810},
-{"pid":27443,"tid":27459,"ts":326460274122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7147932,"id":"0xaf88a6f2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460269056,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":633786},
-{"pid":27443,"tid":27477,"ts":326460269087,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":633816,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460269087,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":633816},
-{"pid":27443,"tid":27477,"ts":326460269117,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":633847},
-{"pid":27443,"tid":27477,"ts":326460269178,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":633908,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460269209,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":633938,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460269239,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":633969,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460269300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460269},"tts":634030,"id":"0xaf88a7c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":634030},
-{"pid":27443,"tid":27477,"ts":326460269300,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":0,"tts":634060},
-{"pid":27443,"tid":27477,"ts":326460269331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":634060,"id":"0xaf88a7c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":634091},
-{"pid":27443,"tid":27477,"ts":326460269361,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":634091},
-{"pid":27443,"tid":27477,"ts":326460269361,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":634091,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460269392,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":634121},
-{"pid":27443,"tid":27477,"ts":326460269392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":634121,"id":"0xaf88a7c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":634152,"id":"0xaf88a7c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":634152},
-{"pid":27443,"tid":27477,"ts":326460269453,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":634182},
-{"pid":27443,"tid":27477,"ts":326460269453,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":634182,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460269453,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":31,"tts":634182},
-{"pid":27443,"tid":27477,"ts":326460269483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":634213,"id":"0xaf88a7c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":634243,"id":"0xaf88a7c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269514,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":634274},
-{"pid":27443,"tid":27477,"ts":326460269544,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":634274},
-{"pid":27443,"tid":27477,"ts":326460269544,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":634274,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460269575,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":634304},
-{"pid":27443,"tid":27477,"ts":326460269605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":634335,"id":"0xaf88a7c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460269605,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1191,"tdur":1190,"tts":634335},
-{"pid":27443,"tid":27477,"ts":326460269636,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1160,"tdur":1160,"tts":634365},
-{"pid":27443,"tid":27477,"ts":326460269636,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":634365},
-{"pid":27443,"tid":27477,"ts":326460269667,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":634396},
-{"pid":27443,"tid":27477,"ts":326460269667,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":91,"tts":634427},
-{"pid":27443,"tid":27477,"ts":326460269697,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":634427},
-{"pid":27443,"tid":27477,"ts":326460269789,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1007,"tdur":1007,"tts":634518},
-{"pid":27443,"tid":27477,"ts":326460269789,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1007,"tdur":976,"tts":634549},
-{"pid":27443,"tid":27477,"ts":326460269819,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":977,"tdur":946,"tts":634549},
-{"pid":27443,"tid":27477,"ts":326460269819,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":634549,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460269911,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":634640},
-{"pid":27443,"tid":27477,"ts":326460269941,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634671},
-{"pid":27443,"tid":27477,"ts":326460269972,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634701},
-{"pid":27443,"tid":27477,"ts":326460270033,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":634762},
-{"pid":27443,"tid":27477,"ts":326460270063,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":634793},
-{"pid":27443,"tid":27477,"ts":326460270094,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634823},
-{"pid":27443,"tid":27477,"ts":326460270094,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":634823},
-{"pid":27443,"tid":27477,"ts":326460270124,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634854},
-{"pid":27443,"tid":27477,"ts":326460270124,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":634884},
-{"pid":27443,"tid":27477,"ts":326460270155,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634884},
-{"pid":27443,"tid":27477,"ts":326460270185,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634915},
-{"pid":27443,"tid":27477,"ts":326460270185,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":634915},
-{"pid":27443,"tid":27477,"ts":326460270216,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":634945},
-{"pid":27443,"tid":27477,"ts":326460270246,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":634976},
-{"pid":27443,"tid":27477,"ts":326460270246,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":635006},
-{"pid":27443,"tid":27477,"ts":326460270277,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":635006},
-{"pid":27443,"tid":27477,"ts":326460270307,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":635037},
-{"pid":27443,"tid":27477,"ts":326460270338,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":635067},
-{"pid":27443,"tid":27477,"ts":326460270368,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":635098},
-{"pid":27443,"tid":27477,"ts":326460270368,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":635098},
-{"pid":27443,"tid":27477,"ts":326460270460,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":635190},
-{"pid":27443,"tid":27477,"ts":326460270491,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":635220},
-{"pid":27443,"tid":27477,"ts":326460270521,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":635251},
-{"pid":27443,"tid":27477,"ts":326460270552,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":635281},
-{"pid":27443,"tid":27477,"ts":326460270582,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":635312},
-{"pid":27443,"tid":27477,"ts":326460270613,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":635342},
-{"pid":27443,"tid":27477,"ts":326460270643,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":635373},
-{"pid":27443,"tid":27477,"ts":326460270704,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":635434},
-{"pid":27443,"tid":27477,"ts":326460270735,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":635464},
-{"pid":27443,"tid":27477,"ts":326460270735,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":635464},
-{"pid":27443,"tid":27477,"ts":326460270765,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":635495},
-{"pid":27443,"tid":27477,"ts":326460270826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":635556,"id":"0xaf88a7c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460270826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":635556},
-{"pid":27443,"tid":27477,"ts":326460270826,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":635556},
-{"pid":27443,"tid":27477,"ts":326460270857,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":635586},
-{"pid":27443,"tid":27477,"ts":326460270857,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":635586},
-{"pid":27443,"tid":27477,"ts":326460270857,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":635586},
-{"pid":27443,"tid":27477,"ts":326460270887,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":635617},
-{"pid":27443,"tid":27477,"ts":326460270918,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":635647},
-{"pid":27443,"tid":27477,"ts":326460270948,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":635678},
-{"pid":27443,"tid":27477,"ts":326460271101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":635739,"id":"0xaf88a7c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460271101,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":635739},
-{"pid":27443,"tid":27477,"ts":326460271131,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":635769},
-{"pid":27443,"tid":27477,"ts":326460271131,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":635769,"id":"0x30000007a"},
-{"pid":27443,"tid":27477,"ts":326460271162,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":635800},
-{"pid":27443,"tid":27477,"ts":326460271193,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":635830,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460271223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":635861,"id":"0xaf88a8a6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460271223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":635861,"id":"0xaf88a6f0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460271650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":635983,"id":"0xaf88a7c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460271681,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":636014},
-{"pid":27443,"tid":27477,"ts":326460271711,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460274910.0,"frame_time_us":326460269087.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":636044},
-{"pid":27443,"tid":27477,"ts":326460271711,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460274910.0,"frame_time_us":326460269087.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":636044},
-{"pid":27443,"tid":27477,"ts":326460271772,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":636105},
-{"pid":27443,"tid":27477,"ts":326460271803,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":636136},
-{"pid":27443,"tid":27477,"ts":326460271803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":636136,"id":"0xaf88a7c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460271864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":636197,"id":"0xaf88a7c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460271864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2533,"tdur":1831,"tts":636197},
-{"pid":27443,"tid":27477,"ts":326460271864,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2533,"tdur":1831,"tts":636197},
-{"pid":27443,"tid":27477,"ts":326460271894,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2228,"tdur":1526,"tts":636227},
-{"pid":27443,"tid":27477,"ts":326460271894,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":131},"dur":947,"tdur":916,"tts":636227},
-{"pid":27443,"tid":27477,"ts":326460271925,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":131},"dur":214,"tdur":213,"tts":636258},
-{"pid":27443,"tid":27477,"ts":326460272139,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":131},"dur":61,"tdur":31,"tts":636471},
-{"pid":27443,"tid":27477,"ts":326460272200,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":131},"tts":636532},
-{"pid":27443,"tid":27477,"ts":326460272291,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":636624},
-{"pid":27443,"tid":27477,"ts":326460272291,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":636624},
-{"pid":27443,"tid":27477,"ts":326460272291,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":636624},
-{"pid":27443,"tid":27477,"ts":326460272322,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":636654},
-{"pid":27443,"tid":27477,"ts":326460272322,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":636654,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460272383,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":636716},
-{"pid":27443,"tid":27477,"ts":326460272841,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":637143},
-{"pid":27443,"tid":27477,"ts":326460272841,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":275,"tts":637143},
-{"pid":27443,"tid":27477,"ts":326460272871,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":637173},
-{"pid":27443,"tid":27477,"ts":326460272871,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":672,"tdur":183,"tts":637173},
-{"pid":27443,"tid":27477,"ts":326460273024,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":61,"tdur":31,"tts":637234},
-{"pid":27443,"tid":27477,"ts":326460273024,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":637234},
-{"pid":27443,"tid":27477,"ts":326460273146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":637295,"id":"0xaf88aadff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460273573,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":637418,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460273634,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":637448,"id":"0x300000079"},
-{"pid":27443,"tid":27477,"ts":326460273665,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":366,"tdur":183,"tts":637479},
-{"pid":27443,"tid":27477,"ts":326460273756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":637601,"id":"0xaf88aad9f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460274031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":637662,"id":"0xaf88a8a7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460274061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":637692,"id":"0xaf88a6f2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460274122,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":275,"tdur":275,"tts":637753},
-{"pid":27443,"tid":27477,"ts":326460274122,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":275,"tts":637753},
-{"pid":27443,"tid":27477,"ts":326460274153,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":637784},
-{"pid":27443,"tid":27477,"ts":326460274214,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":637845},
-{"pid":27443,"tid":27477,"ts":326460274214,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":637845},
-{"pid":27443,"tid":27477,"ts":326460274214,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":122,"tts":637875},
-{"pid":27443,"tid":27477,"ts":326460274245,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":92,"tts":637875},
-{"pid":27443,"tid":27477,"ts":326460274245,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":637875,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326460274122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":91,"tts":7147932},
-{"pid":27443,"tid":27459,"ts":326460274184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7147993,"id":"0xaf88a6f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460274184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7147993,"id":"0xaf88a8a7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460274184,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7147993},
-{"pid":27443,"tid":27459,"ts":326460274214,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7148023},
-{"pid":27443,"tid":27459,"ts":326460274245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7148054,"id":"0xaf88a6f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460274275,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7148084},
-{"pid":27443,"tid":27459,"ts":326460275984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7148145,"id":"0xaf88a68cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460276015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7148176},
-{"pid":27443,"tid":27459,"ts":326460276015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7148176,"id":"0xaf88a68df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460276045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7148206,"id":"0xaf88a8a0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460276045,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":7148206},
-{"pid":27443,"tid":27459,"ts":326460276045,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":7148206},
-{"pid":27443,"tid":27459,"ts":326460276106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7148267,"id":"0xaf88a68df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460276106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7148267},
-{"pid":27443,"tid":27459,"ts":326460287735,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7148390,"id":"0xaf88a68ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460287735,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1465,"tdur":1281,"tts":7148390},
-{"pid":27443,"tid":27459,"ts":326460287765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7148420,"id":"0xaf88a68ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460287796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7148451,"id":"0xaf88a8a1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460287796,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1404,"tdur":1190,"tts":7148451},
-{"pid":27443,"tid":27459,"ts":326460288040,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":1129,"tts":7148512},
-{"pid":27443,"tid":27459,"ts":326460288070,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7148542,"id":"0x30000007b"},
-{"pid":27443,"tid":27459,"ts":326460288101,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":976,"tdur":976,"tts":7148573},
-{"pid":27443,"tid":27459,"ts":326460288131,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":915,"tts":7148634},
-{"pid":27443,"tid":27459,"ts":326460288223,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7148695},
-{"pid":27443,"tid":27459,"ts":326460288284,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7148756},
-{"pid":27443,"tid":27459,"ts":326460288314,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7148786},
-{"pid":27443,"tid":27459,"ts":326460288345,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7148817},
-{"pid":27443,"tid":27459,"ts":326460288375,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7148847},
-{"pid":27443,"tid":27459,"ts":326460288375,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7148878},
-{"pid":27443,"tid":27459,"ts":326460288437,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7148908},
-{"pid":27443,"tid":27459,"ts":326460288498,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":579,"tdur":550,"tts":7148969},
-{"pid":27443,"tid":27459,"ts":326460288650,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7149122},
-{"pid":27443,"tid":27459,"ts":326460288681,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7149153},
-{"pid":27443,"tid":27459,"ts":326460288986,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":96,"frame":"0x78c60000"}},"tts":7149458,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460289016,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7149488},
-{"pid":27443,"tid":27459,"ts":326460289108,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":30,"tts":7149580},
-{"pid":27443,"tid":27459,"ts":326460289108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7149580,"id":"0xaf88aadaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460289230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7149702,"id":"0xaf88a68ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460289230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9522,"tdur":9217,"tts":7149702},
-{"pid":27443,"tid":27459,"ts":326460289261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7149732,"id":"0xaf88a689f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460289261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7149732,"id":"0xaf88a8a2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460289261,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9461,"tdur":9157,"tts":7149732},
-{"pid":27443,"tid":27459,"ts":326460289291,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":132},"tts":7149763},
-{"pid":27443,"tid":27459,"ts":326460289291,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7149763},
-{"pid":27443,"tid":27459,"ts":326460289322,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6287,"tdur":6227,"tts":7149793},
-{"pid":27443,"tid":27459,"ts":326460289352,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":7149824},
-{"pid":27443,"tid":27459,"ts":326460289383,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":95,"frame":"0x78c60000"}},"dur":6043,"tdur":5952,"tts":7149885},
-{"pid":27443,"tid":27459,"ts":326460289474,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5952,"tdur":5891,"tts":7149946},
-{"pid":27443,"tid":27459,"ts":326460289505,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7149977},
-{"pid":27443,"tid":27459,"ts":326460295395,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7155806},
-{"pid":27443,"tid":27459,"ts":326460295456,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":96,"frame":"0x78c60000"}},"dur":153,"tdur":153,"tts":7155867},
-{"pid":27443,"tid":27459,"ts":326460295517,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":30,"tts":7155959},
-{"pid":27443,"tid":27459,"ts":326460295548,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7155959},
-{"pid":27443,"tid":27459,"ts":326460295578,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7155989},
-{"pid":27443,"tid":27459,"ts":326460295609,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2350,"tdur":2350,"tts":7156020},
-{"pid":27443,"tid":27459,"ts":326460295639,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7156050},
-{"pid":27443,"tid":27459,"ts":326460295670,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7156081},
-{"pid":27443,"tid":27459,"ts":326460295670,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7156081},
-{"pid":27443,"tid":27459,"ts":326460296097,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7156508},
-{"pid":27443,"tid":27459,"ts":326460296128,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7156539},
-{"pid":27443,"tid":27459,"ts":326460296158,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1801,"tdur":1801,"tts":7156569},
-{"pid":27443,"tid":27459,"ts":326460296158,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1618,"tdur":1618,"tts":7156569},
-{"pid":27443,"tid":27459,"ts":326460296189,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":366,"tdur":366,"tts":7156600},
-{"pid":27443,"tid":27477,"ts":326460274275,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":637906},
-{"pid":27443,"tid":27477,"ts":326460274275,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":637906},
-{"pid":27443,"tid":27477,"ts":326460274336,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":637967,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460274367,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":637997,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460274367,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":637997,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460274428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638058,"id":"0xaf88a7dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326460274428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":638058},
-{"pid":27443,"tid":27477,"ts":326460274428,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":638058},
-{"pid":27443,"tid":27477,"ts":326460274458,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638089,"id":"0xaf88a7ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326460274458,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":638089},
-{"pid":27443,"tid":27477,"ts":326460274489,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":30,"tdur":31,"tts":638119},
-{"pid":27443,"tid":27477,"ts":326460274489,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":638119,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460274489,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":638119},
-{"pid":27443,"tid":27477,"ts":326460274519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":638150,"id":"0xaf88a7d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460274519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638181,"id":"0xaf88a7def182217a"},
-{"pid":27443,"tid":27477,"ts":326460274550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":638181},
-{"pid":27443,"tid":27477,"ts":326460274550,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":638181},
-{"pid":27443,"tid":27477,"ts":326460274550,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":638211,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460274580,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":638211},
-{"pid":27443,"tid":27477,"ts":326460274580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":638211,"id":"0xaf88a7d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460274611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638242,"id":"0xaf88a7dff182217a"},
-{"pid":27443,"tid":27477,"ts":326460274611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":638242},
-{"pid":27443,"tid":27477,"ts":326460274611,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":638242},
-{"pid":27443,"tid":27477,"ts":326460274641,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":638272,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460274641,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":638272},
-{"pid":27443,"tid":27477,"ts":326460274641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638272,"id":"0xaf88a7d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460274672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":638303},
-{"pid":27443,"tid":27477,"ts":326460274672,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":638303},
-{"pid":27443,"tid":27477,"ts":326460274672,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":638303},
-{"pid":27443,"tid":27477,"ts":326460274672,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":638303},
-{"pid":27443,"tid":27477,"ts":326460274702,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":638333},
-{"pid":27443,"tid":27477,"ts":326460274702,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":638333},
-{"pid":27443,"tid":27477,"ts":326460274763,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":638394},
-{"pid":27443,"tid":27477,"ts":326460274763,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":638394},
-{"pid":27443,"tid":27477,"ts":326460274794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638425,"id":"0xaf88a7d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460274794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":638425},
-{"pid":27443,"tid":27477,"ts":326460274824,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":638455},
-{"pid":27443,"tid":27477,"ts":326460274824,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":638455},
-{"pid":27443,"tid":27477,"ts":326460274824,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":638455},
-{"pid":27443,"tid":27477,"ts":326460274855,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":30,"tts":638486},
-{"pid":27443,"tid":27477,"ts":326460274855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":638486},
-{"pid":27443,"tid":27477,"ts":326460274885,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":638516},
-{"pid":27443,"tid":27477,"ts":326460274916,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":638547},
-{"pid":27443,"tid":27477,"ts":326460275862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638608,"id":"0xaf88a7daf182217a"},
-{"pid":27443,"tid":27477,"ts":326460275893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":638638},
-{"pid":27443,"tid":27477,"ts":326460275893,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":638669},
-{"pid":27443,"tid":27477,"ts":326460275923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":638669,"id":"0xaf88a8a0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460275923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":638669,"id":"0xaf88a68cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460287490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":638760,"id":"0xaf88a7dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326460287521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":638791},
-{"pid":27443,"tid":27477,"ts":326460287521,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":153,"tts":638791},
-{"pid":27443,"tid":27477,"ts":326460287582,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":638821,"id":"0x30000007b"},
-{"pid":27443,"tid":27477,"ts":326460287582,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":0,"tts":638852},
-{"pid":27443,"tid":27477,"ts":326460287612,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":638852,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460287643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":638882,"id":"0xaf88a8a1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460287674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":638913,"id":"0xaf88a68ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460287979,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":639005,"id":"0xaf88a7d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460288009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":639035},
-{"pid":27443,"tid":27477,"ts":326460288040,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460291591.0,"frame_time_us":326460285768.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":213,"tts":639066},
-{"pid":27443,"tid":27477,"ts":326460288040,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460291591.0,"frame_time_us":326460285768.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":213,"tdur":213,"tts":639066},
-{"pid":27443,"tid":27477,"ts":326460288070,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":132},"tts":639096},
-{"pid":27443,"tid":27477,"ts":326460288162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":639218,"id":"0xaf88a8a2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460288192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":639218,"id":"0xaf88a688f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460288192,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":639249},
-{"pid":27443,"tid":27466,"ts":326460287399,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":91,"tdur":92,"tts":315458},
-{"pid":27443,"tid":27466,"ts":326460287460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315519,"id":"0xaf88a7dbf182217a"},
-{"pid":27443,"tid":27466,"ts":326460287857,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":315611},
-{"pid":27443,"tid":27466,"ts":326460287887,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":315641},
-{"pid":27443,"tid":27466,"ts":326460287887,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":315641,"id":"0xba456a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460287918,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":315672,"id":"0xaf88a7d4f182217a"},
-{"pid":27443,"tid":27466,"ts":326460289169,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315824,"id":"0xaf88aadaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460289200,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":315824},
-{"pid":27443,"tid":27466,"ts":326460289200,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":315824,"id":"0xccc4dc02"},
-{"pid":27443,"tid":27466,"ts":326460303330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":315977,"id":"0xaf88aadbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460303330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":123,"tdur":92,"tts":316007},
-{"pid":27443,"tid":27466,"ts":326460303361,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":316007,"id":"0xccc4dd06"},
-{"pid":27443,"tid":27466,"ts":326460303697,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":183,"tdur":152,"tts":316191},
-{"pid":27443,"tid":27466,"ts":326460303788,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":316252},
-{"pid":27443,"tid":27466,"ts":326460303788,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":316282,"id":"0xc4c1a90a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460304948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":316465,"id":"0xaf88aad4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460304948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":153,"tdur":91,"tts":316496},
-{"pid":27443,"tid":27466,"ts":326460304979,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":316496,"id":"0xccc4de02"},
-{"pid":27443,"tid":27466,"ts":326460307146,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":316648},
-{"pid":27443,"tid":27466,"ts":326460307176,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":316679},
-{"pid":27443,"tid":27466,"ts":326460307176,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":316679,"id":"0xba456b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460307207,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":316709},
-{"pid":27443,"tid":27466,"ts":326460307237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":316740,"id":"0xaf88a7edf182217a"},
-{"pid":27443,"tid":27466,"ts":326460307268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":316770,"id":"0xaf88aad5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460307268,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":316770},
-{"pid":27443,"tid":27466,"ts":326460307298,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":316801,"id":"0xccc4df02"},
-{"pid":27443,"tid":27466,"ts":326460307573,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":316923,"id":"0xaf88aad6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460307573,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":316923},
-{"pid":27443,"tid":27466,"ts":326460307573,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":316923,"id":"0xccc4e002"},
-{"pid":27443,"tid":27466,"ts":326460307634,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":316984},
-{"pid":27443,"tid":27466,"ts":326460307664,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":31,"tdur":30,"tts":317015},
-{"pid":27443,"tid":27466,"ts":326460307664,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317015,"id":"0xba456c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460307695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":317045,"id":"0xaf88a7eef182217a"},
-{"pid":27443,"tid":27466,"ts":326460307909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317137,"id":"0xaf88aad7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460307909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":317137},
-{"pid":27443,"tid":27466,"ts":326460307909,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317167,"id":"0xccc4e102"},
-{"pid":27443,"tid":27466,"ts":326460308336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317259,"id":"0xaf88aad0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460308366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":317289},
-{"pid":27443,"tid":27466,"ts":326460308366,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317289,"id":"0xccc4e302"},
-{"pid":27443,"tid":27466,"ts":326460308488,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317350,"id":"0xaf88aad1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460308519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":317381},
-{"pid":27443,"tid":27466,"ts":326460308519,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317381,"id":"0xccc4e402"},
-{"pid":27443,"tid":27466,"ts":326460308549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317411,"id":"0xaf88aad2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460308549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":317411},
-{"pid":27443,"tid":27466,"ts":326460308580,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317442,"id":"0xccc4e502"},
-{"pid":27443,"tid":27466,"ts":326460308611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317472,"id":"0xaf88aad3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460308611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":317472},
-{"pid":27443,"tid":27466,"ts":326460308611,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317503,"id":"0xccc4e602"},
-{"pid":27443,"tid":27466,"ts":326460308672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317533,"id":"0xaf88aaecf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460308672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":317533},
-{"pid":27443,"tid":27466,"ts":326460308672,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317533,"id":"0xccc4e702"},
-{"pid":27443,"tid":27466,"ts":326460308702,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317594,"id":"0xaf88aaedf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460308733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":317594},
-{"pid":27443,"tid":27466,"ts":326460308733,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317594,"id":"0xccc4e802"},
-{"pid":27443,"tid":27466,"ts":326460309068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":317686,"id":"0xaf88aaeef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460309068,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":317686},
-{"pid":27443,"tid":27466,"ts":326460309068,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317686,"id":"0xccc4e902"},
-{"pid":27443,"tid":27466,"ts":326460309862,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":317808},
-{"pid":27443,"tid":27466,"ts":326460309892,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":317808},
-{"pid":27443,"tid":27466,"ts":326460309923,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":317839,"id":"0xba456d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460309953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":317869,"id":"0xaf88a7e8f182217a"},
-{"pid":27443,"tid":27466,"ts":326460310472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":318022,"id":"0xaf88aaeff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460310472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":318022},
-{"pid":27443,"tid":27466,"ts":326460310472,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318022,"id":"0xccc4ea02"},
-{"pid":27443,"tid":27477,"ts":326460288223,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460302434},"dur":30,"tdur":30,"tts":639249},
-{"pid":27443,"tid":27477,"ts":326460288253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":639279,"id":"0xaf88a7d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460298356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":639340,"id":"0xaf88a7d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460298386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1007,"tdur":1007,"tts":639371},
-{"pid":27443,"tid":27477,"ts":326460298386,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1007,"tts":639371},
-{"pid":27443,"tid":27477,"ts":326460298386,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":639371},
-{"pid":27443,"tid":27477,"ts":326460298417,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":946,"tdur":946,"tts":639401},
-{"pid":27443,"tid":27477,"ts":326460298417,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":946,"tdur":946,"tts":639401},
-{"pid":27443,"tid":27477,"ts":326460298417,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":639401},
-{"pid":27443,"tid":27477,"ts":326460298447,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":639432},
-{"pid":27443,"tid":27477,"ts":326460298447,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":639432,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460298447,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":639432},
-{"pid":27443,"tid":27477,"ts":326460298508,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":31,"tdur":30,"tts":639493},{"pid":27443,"tid":27477,"ts":326460298600,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":763,"tdur":763,"tts":639584},
-{"pid":27443,"tid":27477,"ts":326460298630,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":132},"dur":214,"tdur":214,"tts":639615},
-{"pid":27443,"tid":27477,"ts":326460298844,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":132},"dur":61,"tdur":0,"tts":639859},
-{"pid":27443,"tid":27477,"ts":326460298905,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":132},"tts":639890},
-{"pid":27443,"tid":27477,"ts":326460298997,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":639981},
-{"pid":27443,"tid":27477,"ts":326460299027,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":640012},
-{"pid":27443,"tid":27477,"ts":326460299027,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":640012},
-{"pid":27443,"tid":27477,"ts":326460299027,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":640012},
-{"pid":27443,"tid":27477,"ts":326460299149,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":640134},
-{"pid":27443,"tid":27477,"ts":326460299180,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":640164},
-{"pid":27443,"tid":27477,"ts":326460299180,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":640164},
-{"pid":27443,"tid":27477,"ts":326460299180,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":640164},
-{"pid":27443,"tid":27477,"ts":326460299210,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":640195,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460299210,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":640195},
-{"pid":27443,"tid":27477,"ts":326460299241,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":640225},
-{"pid":27443,"tid":27477,"ts":326460299302,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":640286,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460299332,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":640317,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460299332,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":640317,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460299424,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":640409,"id":"0xaf88a7d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460299424,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":640409},
-{"pid":27443,"tid":27477,"ts":326460299454,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":31,"tts":640439},
-{"pid":27443,"tid":27477,"ts":326460299454,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":640439,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460299485,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":640470},
-{"pid":27443,"tid":27477,"ts":326460299485,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":640470,"id":"0xaf88a7d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460299515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":640500,"id":"0xaf88a7d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460299515,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":640500},
-{"pid":27443,"tid":27477,"ts":326460299515,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":640500},
-{"pid":27443,"tid":27477,"ts":326460299546,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":640531,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460299546,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":640531},
-{"pid":27443,"tid":27477,"ts":326460299576,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":640561,"id":"0xaf88a7d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460299607,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":640592,"id":"0xaf88a7d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460299607,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":640592},
-{"pid":27443,"tid":27477,"ts":326460299607,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":640592},
-{"pid":27443,"tid":27477,"ts":326460299607,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":640622,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460299638,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":640622},
-{"pid":27443,"tid":27477,"ts":326460299638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":640622,"id":"0xaf88a7d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460299668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1679,"tdur":1312,"tts":640653},
-{"pid":27443,"tid":27477,"ts":326460299668,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1648,"tdur":1282,"tts":640653},
-{"pid":27443,"tid":27477,"ts":326460299668,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":640653},
-{"pid":27443,"tid":27477,"ts":326460299699,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":640683},
-{"pid":27443,"tid":27477,"ts":326460299699,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":640683},
-{"pid":27443,"tid":27477,"ts":326460299729,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":640714},
-{"pid":27443,"tid":27477,"ts":326460299790,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1526,"tdur":1160,"tts":640775},
-{"pid":27443,"tid":27477,"ts":326460299821,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1495,"tdur":1130,"tts":640805},
-{"pid":27443,"tid":27477,"ts":326460299821,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1434,"tdur":1068,"tts":640805},
-{"pid":27443,"tid":27477,"ts":326460299821,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":640805,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460299912,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":640897},
-{"pid":27443,"tid":27477,"ts":326460299943,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":640927},
-{"pid":27443,"tid":27477,"ts":326460299973,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":640958},
-{"pid":27443,"tid":27477,"ts":326460299973,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":428,"tdur":61,"tts":640958},
-{"pid":27443,"tid":27477,"ts":326460300401,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":641019},
-{"pid":27443,"tid":27459,"ts":326460296555,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7156966},
-{"pid":27443,"tid":27459,"ts":326460296738,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":7157149},
-{"pid":27443,"tid":27459,"ts":326460296860,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7157271},
-{"pid":27443,"tid":27459,"ts":326460296860,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":916,"tdur":916,"tts":7157271},
-{"pid":27443,"tid":27459,"ts":326460297806,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7158217},
-{"pid":27443,"tid":27459,"ts":326460297837,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":91,"tts":7158248},
-{"pid":27443,"tid":27459,"ts":326460297959,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":132},"dur":305,"tdur":305,"tts":7158370},
-{"pid":27443,"tid":27459,"ts":326460297989,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":244,"tts":7158400},
-{"pid":27443,"tid":27459,"ts":326460298173,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":132},"dur":30,"tdur":31,"tts":7158583},
-{"pid":27443,"tid":27459,"ts":326460298203,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":132},"dur":31,"tdur":30,"tts":7158614},
-{"pid":27443,"tid":27459,"ts":326460298234,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":132},"dur":0,"tdur":0,"tts":7158644},
-{"pid":27443,"tid":27459,"ts":326460298264,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7158675,"id":"0x30000007a"},
-{"pid":27443,"tid":27459,"ts":326460298264,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7158675,"id":"0x30000007b"},
-{"pid":27443,"tid":27459,"ts":326460298264,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":122,"tts":7158675},
-{"pid":27443,"tid":27459,"ts":326460298295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7158705,"id":"0xaf88a7d6f182217a"},
-{"pid":27443,"tid":27459,"ts":326460298691,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3773},"tts":7158858,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460298691,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7158858,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460298722,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7158889},
-{"pid":27443,"tid":27459,"ts":326460298783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460292},"tts":7158950,"id":"0xaf88a604f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460298783,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":7158950},
-{"pid":27443,"tid":27459,"ts":326460298844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7159011,"id":"0xaf88a688f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460298844,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10285,"tdur":6836,"tts":7159011},
-{"pid":27443,"tid":27459,"ts":326460298875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7159041,"id":"0xaf88a83bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460298875,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":10254,"tdur":6806,"tts":7159041},
-{"pid":27443,"tid":27459,"ts":326460298875,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":10254,"tdur":6745,"tts":7159072},
-{"pid":27443,"tid":27459,"ts":326460298905,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":148,"frame":"0x78c60000"}},"dur":10194,"tdur":6715,"tts":7159102},
-{"pid":27443,"tid":27459,"ts":326460298936,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":10163,"tdur":6715,"tts":7159102},
-{"pid":27443,"tid":27459,"ts":326460298997,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":10071,"tdur":6623,"tts":7159163},
-{"pid":27443,"tid":27459,"ts":326460299027,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7159194},
-{"pid":27443,"tid":27459,"ts":326460306627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7164169,"id":"0xaf88a68bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460306810,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStartLoading","args":{"id":1},"dur":366,"tdur":91,"tts":7164352},
-{"pid":27443,"tid":27459,"ts":326460306810,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":7164352},
-{"pid":27443,"tid":27459,"ts":326460307115,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":711},"dur":31,"tdur":31,"tts":7164382},
-{"pid":27443,"tid":27459,"ts":326460307146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7164413,"id":"0xaf88aad5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460307237,"ph":"X","cat":"blink","name":"PinchViewport::mainFrameDidChangeSize","args":{},"dur":31,"tdur":31,"tts":7164504},
-{"pid":27443,"tid":27459,"ts":326460307268,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didNavigateWithinPage","args":{"id":1},"dur":1251,"tdur":885,"tts":7164535},
-{"pid":27443,"tid":27459,"ts":326460307329,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didCommitProvisionalLoad","args":{"id":1,"url":"https://www.google.com/maps/@37.3605424,-122.1099705,13z?hl=en"},"dur":1190,"tdur":824,"tts":7164596},
-{"pid":27443,"tid":27459,"ts":326460307451,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":305,"tdur":92,"tts":7164718},
-{"pid":27443,"tid":27459,"ts":326460307451,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7164748,"id":"0xaf88aad6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460307786,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":749},"dur":214,"tdur":61,"tts":7164840},
-{"pid":27443,"tid":27459,"ts":326460307817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7164871,"id":"0xaf88aad7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308244,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1402},"dur":61,"tdur":61,"tts":7165145},
-{"pid":27443,"tid":27459,"ts":326460308275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165176,"id":"0xaf88aad0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308427,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":694},"dur":31,"tdur":31,"tts":7165328},
-{"pid":27443,"tid":27459,"ts":326460308427,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165328,"id":"0xaf88aad1f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308488,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":31,"tdur":31,"tts":7165389},
-{"pid":27443,"tid":27459,"ts":326460308519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165420,"id":"0xaf88aad2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308549,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":761},"dur":31,"tdur":0,"tts":7165450},
-{"pid":27443,"tid":27459,"ts":326460308549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165450,"id":"0xaf88aad3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308580,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":31,"tdur":30,"tts":7165481},
-{"pid":27443,"tid":27459,"ts":326460308580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165481,"id":"0xaf88aaecf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308611,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStopLoading","args":{"id":1},"dur":427,"tdur":245,"tts":7165511},
-{"pid":27443,"tid":27459,"ts":326460308672,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1517},"dur":30,"tdur":30,"tts":7165573},
-{"pid":27443,"tid":27459,"ts":326460308702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165603,"id":"0xaf88aaedf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460308946,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165664,"id":"0xaf88a684f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460308977,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":714},"dur":61,"tdur":61,"tts":7165695},
-{"pid":27443,"tid":27459,"ts":326460309007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165725,"id":"0xaf88aaeef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460309068,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7165786},
-{"pid":27443,"tid":27459,"ts":326460309160,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7165878,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460309160,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7165878,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460309221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7165939,"id":"0xaf88a689f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460309221,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7165939},
-{"pid":27443,"tid":27459,"ts":326460309251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7165969,"id":"0xaf88a685f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460309251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7165969,"id":"0xaf88a8a3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460300431,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":641049},
-{"pid":27443,"tid":27477,"ts":326460300492,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641110},
-{"pid":27443,"tid":27477,"ts":326460300523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641141},
-{"pid":27443,"tid":27477,"ts":326460300523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":641172},
-{"pid":27443,"tid":27477,"ts":326460300553,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":641172},
-{"pid":27443,"tid":27477,"ts":326460300584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":641202},
-{"pid":27443,"tid":27477,"ts":326460300614,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":641233},
-{"pid":27443,"tid":27477,"ts":326460300645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":641263},
-{"pid":27443,"tid":27477,"ts":326460300675,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641294},
-{"pid":27443,"tid":27477,"ts":326460300706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641324},
-{"pid":27443,"tid":27477,"ts":326460300706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":641324},
-{"pid":27443,"tid":27477,"ts":326460300736,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":641355},
-{"pid":27443,"tid":27477,"ts":326460300767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":641385},
-{"pid":27443,"tid":27477,"ts":326460300797,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":641416},
-{"pid":27443,"tid":27477,"ts":326460300828,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641446},
-{"pid":27443,"tid":27477,"ts":326460300919,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641538},
-{"pid":27443,"tid":27477,"ts":326460300950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641568},
-{"pid":27443,"tid":27477,"ts":326460300980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641599},
-{"pid":27443,"tid":27477,"ts":326460301011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":641629},
-{"pid":27443,"tid":27477,"ts":326460301011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":641660},
-{"pid":27443,"tid":27477,"ts":326460301041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":641690},
-{"pid":27443,"tid":27477,"ts":326460301072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":641690},
-{"pid":27443,"tid":27477,"ts":326460301133,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":641751},
-{"pid":27443,"tid":27477,"ts":326460301194,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":641812},
-{"pid":27443,"tid":27477,"ts":326460301194,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":641812},
-{"pid":27443,"tid":27477,"ts":326460301225,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":641843},
-{"pid":27443,"tid":27477,"ts":326460301286,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":641904},
-{"pid":27443,"tid":27477,"ts":326460301286,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":641935,"id":"0xaf88a7ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326460301347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":641965,"id":"0xaf88a7d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460301347,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":152,"tts":641996},
-{"pid":27443,"tid":27477,"ts":326460301377,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":641996},
-{"pid":27443,"tid":27477,"ts":326460301377,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":641996},
-{"pid":27443,"tid":27477,"ts":326460301408,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":642026},
-{"pid":27443,"tid":27477,"ts":326460301408,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":61,"tts":642026},
-{"pid":27443,"tid":27477,"ts":326460301438,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":642057},
-{"pid":27443,"tid":27477,"ts":326460301499,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":642118},
-{"pid":27443,"tid":27477,"ts":326460301499,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":642118},
-{"pid":27443,"tid":27477,"ts":326460301530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":642179,"id":"0xaf88a7ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326460301560,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6257,"tdur":2502,"tts":642179},
-{"pid":27443,"tid":27477,"ts":326460301560,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6257,"tdur":2502,"tts":642179},
-{"pid":27443,"tid":27477,"ts":326460301591,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":642209},
-{"pid":27443,"tid":27477,"ts":326460301621,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6165,"tdur":2411,"tts":642240},
-{"pid":27443,"tid":27477,"ts":326460301621,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":132},"dur":1282,"tdur":1159,"tts":642240},
-{"pid":27443,"tid":27477,"ts":326460301652,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":132},"dur":305,"tdur":274,"tts":642301},
-{"pid":27443,"tid":27477,"ts":326460301988,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":132},"dur":30,"tdur":30,"tts":642606},
-{"pid":27443,"tid":27477,"ts":326460302018,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":132},"tts":642636},
-{"pid":27443,"tid":27477,"ts":326460302171,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":642789},
-{"pid":27443,"tid":27477,"ts":326460302171,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":91,"tdur":92,"tts":642789},
-{"pid":27443,"tid":27477,"ts":326460302201,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":642820},
-{"pid":27443,"tid":27477,"ts":326460302201,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":642820},
-{"pid":27443,"tid":27477,"ts":326460302232,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":642850,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460302323,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":642942},
-{"pid":27443,"tid":27477,"ts":326460302873,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":643369},
-{"pid":27443,"tid":27477,"ts":326460302903,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1374,"tdur":519,"tts":643399},
-{"pid":27443,"tid":27477,"ts":326460302934,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":643430},
-{"pid":27443,"tid":27477,"ts":326460302964,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1221,"tdur":366,"tts":643461},
-{"pid":27443,"tid":27477,"ts":326460303147,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":31,"tdur":30,"tts":643644},
-{"pid":27443,"tid":27477,"ts":326460303208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":643705,"id":"0xaf88aadbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460304246,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":643888,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460304307,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":643949,"id":"0x30000007a"},
-{"pid":27443,"tid":27477,"ts":326460304338,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":643979,"id":"0x30000007b"},
-{"pid":27443,"tid":27477,"ts":326460304338,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":610,"tdur":550,"tts":643979},
-{"pid":27443,"tid":27477,"ts":326460304826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":644407,"id":"0xaf88aad4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460304979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":644559,"id":"0xaf88a8a3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460305009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":644590,"id":"0xaf88a68af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460307847,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460302},"tts":644712,"id":"0xaf88a7d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460307847,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":644742},
-{"pid":27443,"tid":27477,"ts":326460307878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":644742,"id":"0xaf88a7edf182217a"},
-{"pid":27443,"tid":27477,"ts":326460307909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":335,"tdur":122,"tts":644773},
-{"pid":27443,"tid":27477,"ts":326460307909,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":335,"tdur":122,"tts":644773},
-{"pid":27443,"tid":27477,"ts":326460307939,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":644803,"id":"0x30000007c"},
-{"pid":27443,"tid":27477,"ts":326460307939,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":244,"tdur":31,"tts":644803},
-{"pid":27443,"tid":27477,"ts":326460307939,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":644803},
-{"pid":27443,"tid":27477,"ts":326460308183,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":644834,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460308214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":644864,"id":"0xaf88a8bcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460308275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":644926,"id":"0xaf88a7eef182217a"},
-{"pid":27443,"tid":27477,"ts":326460308275,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":1099,"tdur":183,"tts":644926},
-{"pid":27443,"tid":27477,"ts":326460308305,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460308273.0,"frame_time_us":326460302450.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":1069,"tdur":153,"tts":644956},
-{"pid":27443,"tid":27477,"ts":326460308305,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":794,"tdur":31,"tts":644956},
-{"pid":27443,"tid":27477,"ts":326460309282,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460308273.0,"frame_time_us":326460302450.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":92,"tts":645017},
-{"pid":27443,"tid":27477,"ts":326460309343,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460319116},"dur":31,"tdur":31,"tts":645078},
-{"pid":27443,"tid":27477,"ts":326460309343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":645078,"id":"0xaf88a7eff182217a"},
-{"pid":27443,"tid":27477,"ts":326460309984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":645170,"id":"0xaf88a7e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460309984,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":645170},
-{"pid":27443,"tid":27477,"ts":326460310045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":645231},
-{"pid":27443,"tid":27477,"ts":326460310045,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":645261},
-{"pid":27443,"tid":27477,"ts":326460310075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":645261,"id":"0xaf88a8bdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460310106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":645292,"id":"0xaf88a686f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460310320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":645353,"id":"0xaf88a7e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460310320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":645353},
-{"pid":27443,"tid":27477,"ts":326460310320,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":645353},
-{"pid":27443,"tid":27477,"ts":326460310350,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":133},"tts":645383},
-{"pid":27443,"tid":27477,"ts":326460310411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":645444,"id":"0xaf88a8bef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460310411,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":645444},
-{"pid":27443,"tid":27477,"ts":326460319201,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460319},"tts":645536,"id":"0xaf88a7eff182217a"},
-{"pid":27443,"tid":27477,"ts":326460319232,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2746,"tdur":397,"tts":645566},
-{"pid":27443,"tid":27477,"ts":326460319262,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2716,"tdur":397,"tts":645566},
-{"pid":27443,"tid":27477,"ts":326460319293,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":2655,"tdur":336,"tts":645597},
-{"pid":27443,"tid":27477,"ts":326460319293,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":2655,"tdur":336,"tts":645597},
-{"pid":27443,"tid":27477,"ts":326460319293,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":645597},
-{"pid":27443,"tid":27477,"ts":326460319415,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":645719},
-{"pid":27443,"tid":27477,"ts":326460319445,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":645750},
-{"pid":27443,"tid":27477,"ts":326460319445,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":2472,"tdur":152,"tts":645750},
-{"pid":27443,"tid":27477,"ts":326460319445,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":2472,"tdur":152,"tts":645750},
-{"pid":27443,"tid":27477,"ts":326460319476,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":645780,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460319476,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":645780},
-{"pid":27443,"tid":27477,"ts":326460319506,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":2381,"tdur":61,"tts":645811},
-{"pid":27443,"tid":27477,"ts":326460319506,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2320,"tdur":0,"tts":645811},
-{"pid":27443,"tid":27477,"ts":326460321887,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":645872,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460321917,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":645933,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460321948,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":645933,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460321978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":645963,"id":"0xaf88a7eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326460322009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":946,"tts":645994},
-{"pid":27443,"tid":27477,"ts":326460322009,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":946,"tts":645994},
-{"pid":27443,"tid":27477,"ts":326460322009,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":645994},
-{"pid":27443,"tid":27477,"ts":326460322039,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":916,"tts":646024},
-{"pid":27443,"tid":27477,"ts":326460322039,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1343,"tdur":916,"tts":646024},
-{"pid":27443,"tid":27477,"ts":326460322039,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":184,"tdur":0,"tts":646024},
-{"pid":27443,"tid":27477,"ts":326460322223,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":31,"tts":646024},
-{"pid":27443,"tid":27477,"ts":326460322253,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":646055},
-{"pid":27443,"tid":27477,"ts":326460322253,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":646055,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460322284,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":646085},
-{"pid":27443,"tid":27477,"ts":326460322314,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":646116},
-{"pid":27443,"tid":27477,"ts":326460322528,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":824,"tdur":702,"tts":646207},
-{"pid":27443,"tid":27477,"ts":326460322528,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":133},"dur":336,"tdur":214,"tts":646207},
-{"pid":27443,"tid":27477,"ts":326460322528,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":646207},
-{"pid":27443,"tid":27477,"ts":326460322864,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":133},"dur":61,"tdur":31,"tts":646421},
-{"pid":27443,"tid":27477,"ts":326460322925,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":133},"tts":646482},
-{"pid":27443,"tid":27459,"ts":326460309251,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":61,"tdur":31,"tts":7165969},
-{"pid":27443,"tid":27459,"ts":326460309282,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7166000},
-{"pid":27443,"tid":27459,"ts":326460309312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7166061,"id":"0xaf88a68af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460309343,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":7166061},
-{"pid":27443,"tid":27459,"ts":326460309343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7166061,"id":"0xaf88a8bcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460309374,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1129,"tdur":1130,"tts":7166091},
-{"pid":27443,"tid":27459,"ts":326460309404,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1099,"tts":7166122},
-{"pid":27443,"tid":27459,"ts":326460309435,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7166152,"id":"0x30000007c"},
-{"pid":27443,"tid":27459,"ts":326460309435,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":916,"tts":7166183},
-{"pid":27443,"tid":27459,"ts":326460309465,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":886,"tts":7166213},
-{"pid":27443,"tid":27459,"ts":326460309526,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7166244},
-{"pid":27443,"tid":27459,"ts":326460309557,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7166305},
-{"pid":27443,"tid":27459,"ts":326460309587,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7166305},
-{"pid":27443,"tid":27459,"ts":326460309618,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7166336},
-{"pid":27443,"tid":27459,"ts":326460309648,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7166366},
-{"pid":27443,"tid":27459,"ts":326460309679,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7166397},
-{"pid":27443,"tid":27459,"ts":326460309709,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7166427},
-{"pid":27443,"tid":27459,"ts":326460309740,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":610,"tts":7166458},
-{"pid":27443,"tid":27459,"ts":326460309862,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":428,"tts":7166610},
-{"pid":27443,"tid":27459,"ts":326460309892,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7166610},
-{"pid":27443,"tid":27459,"ts":326460310228,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":97,"frame":"0x78c60000"}},"tts":7166946,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460310259,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7166976},
-{"pid":27443,"tid":27459,"ts":326460310259,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7166976,"id":"0xaf88a7e9f182217a"},
-{"pid":27443,"tid":27459,"ts":326460310320,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7167038},
-{"pid":27443,"tid":27459,"ts":326460310381,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":23,"line":232},"dur":61,"tdur":61,"tts":7167099},
-{"pid":27443,"tid":27459,"ts":326460310411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7167129,"id":"0xaf88aaeff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460310472,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":31,"tdur":31,"tts":7167190},
-{"pid":27443,"tid":27459,"ts":326460310472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7167190,"id":"0xaf88aae8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460310594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7167312,"id":"0xaf88a685f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460310594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7167312},
-{"pid":27443,"tid":27459,"ts":326460310625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7167343,"id":"0xaf88a687f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460310625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7167343,"id":"0xaf88a8bdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460310625,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":0,"tts":7167373},
-{"pid":27443,"tid":27459,"ts":326460310655,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7167373},
-{"pid":27443,"tid":27459,"ts":326460310686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7167434,"id":"0xaf88a686f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460310716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11903,"tdur":9614,"tts":7167434},
-{"pid":27443,"tid":27459,"ts":326460310716,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7167434,"id":"0xaf88a8bef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460310747,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11872,"tdur":9583,"tts":7167465},
-{"pid":27443,"tid":27459,"ts":326460310747,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":133},"tts":7167465},
-{"pid":27443,"tid":27459,"ts":326460310747,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7167465},
-{"pid":27443,"tid":27459,"ts":326460310808,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6562,"tdur":6531,"tts":7167526},
-{"pid":27443,"tid":27459,"ts":326460310808,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7167526},
-{"pid":27443,"tid":27459,"ts":326460310838,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":97,"frame":"0x78c60000"}},"dur":6532,"tdur":6470,"tts":7167587},
-{"pid":27443,"tid":27459,"ts":326460310930,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6409,"tdur":6379,"tts":7167648},
-{"pid":27443,"tid":27459,"ts":326460310930,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7167648},
-{"pid":27443,"tid":27459,"ts":326460317309,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7174027},
-{"pid":27443,"tid":27459,"ts":326460317400,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2442,"tdur":2441,"tts":7174088},
-{"pid":27443,"tid":27459,"ts":326460317431,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7174118},
-{"pid":27443,"tid":27459,"ts":326460317461,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7174149},
-{"pid":27443,"tid":27459,"ts":326460317461,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7174149},
-{"pid":27443,"tid":27459,"ts":326460317919,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7174607},
-{"pid":27443,"tid":27459,"ts":326460317950,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7174637},
-{"pid":27443,"tid":27459,"ts":326460317980,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1862,"tdur":1861,"tts":7174668},
-{"pid":27443,"tid":27459,"ts":326460317980,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1618,"tdur":1617,"tts":7174668},
-{"pid":27443,"tid":27459,"ts":326460318011,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":336,"tdur":336,"tts":7174698},
-{"pid":27443,"tid":27459,"ts":326460318347,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7175034},
-{"pid":27443,"tid":27459,"ts":326460318560,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":62,"tts":7175247},
-{"pid":27443,"tid":27459,"ts":326460318652,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7175339},
-{"pid":27443,"tid":27459,"ts":326460318652,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":946,"tdur":946,"tts":7175339},
-{"pid":27443,"tid":27459,"ts":326460319628,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7176316},
-{"pid":27443,"tid":27459,"ts":326460319659,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":152,"tdur":153,"tts":7176346},
-{"pid":27443,"tid":27459,"ts":326460319842,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":133},"dur":397,"tdur":367,"tts":7176529},
-{"pid":27443,"tid":27459,"ts":326460319873,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":335,"tdur":336,"tts":7176560},
-{"pid":27443,"tid":27459,"ts":326460320147,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":133},"dur":31,"tdur":0,"tts":7176835},
-{"pid":27443,"tid":27466,"ts":326460310533,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":318083,"id":"0xaf88aae8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460310594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":318144},
-{"pid":27443,"tid":27466,"ts":326460310594,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318144,"id":"0xccc4eb02"},
-{"pid":27443,"tid":27466,"ts":326460317828,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":318235},
-{"pid":27443,"tid":27466,"ts":326460317858,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":126},"dur":61,"tdur":61,"tts":318266},
-{"pid":27443,"tid":27466,"ts":326460317858,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318266,"id":"0xba456f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460317889,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":318296,"id":"0xaf88a8bff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460317919,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":318327,"id":"0xaf88a680f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460322070,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":318388},
-{"pid":27443,"tid":27466,"ts":326460322101,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":318419},
-{"pid":27443,"tid":27466,"ts":326460322101,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318419,"id":"0xba457002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460322131,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":318449},
-{"pid":27443,"tid":27466,"ts":326460322162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":318480,"id":"0xaf88a7e6f182217a"},
-{"pid":27443,"tid":27466,"ts":326460322406,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":318571},
-{"pid":27443,"tid":27466,"ts":326460322436,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":318602},
-{"pid":27443,"tid":27466,"ts":326460322467,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318632,"id":"0xba457102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460322467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":318632,"id":"0xaf88a7e7f182217a"},
-{"pid":27443,"tid":27466,"ts":326460325458,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":318754,"id":"0xaf88aae9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460325458,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":318754},
-{"pid":27443,"tid":27466,"ts":326460325488,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318785,"id":"0xccc4ed02"},
-{"pid":27443,"tid":27466,"ts":326460326831,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":318907,"id":"0xaf88aaeaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460326862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":318907},
-{"pid":27443,"tid":27466,"ts":326460326862,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":318907,"id":"0xccc4ee06"},
-{"pid":27443,"tid":27466,"ts":326460327167,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":319029},
-{"pid":27443,"tid":27466,"ts":326460327197,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":319059},
-{"pid":27443,"tid":27466,"ts":326460327197,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":319059,"id":"0xc4c1ac0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460327564,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":319151,"id":"0xaf88aaebf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460327594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":319182},
-{"pid":27443,"tid":27466,"ts":326460327594,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":319182,"id":"0xccc4ef02"},
-{"pid":27443,"tid":27466,"ts":326460329456,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":319273},
-{"pid":27443,"tid":27466,"ts":326460329486,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":61,"tts":319304},
-{"pid":27443,"tid":27466,"ts":326460329486,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":319304,"id":"0xba457202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460329517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":319334,"id":"0xaf88a7f8f182217a"},
-{"pid":27443,"tid":27466,"ts":326460341481,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":319487},
-{"pid":27443,"tid":27466,"ts":326460341511,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":319517},
-{"pid":27443,"tid":27466,"ts":326460341511,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":319548,"id":"0xba457402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460341573,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":319578},
-{"pid":27443,"tid":27466,"ts":326460341573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":319578,"id":"0xaf88a7f7f182217a"},
-{"pid":27443,"tid":27466,"ts":326460342152,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":319639},
-{"pid":27443,"tid":27466,"ts":326460342183,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":319670},
-{"pid":27443,"tid":27466,"ts":326460342183,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":319670,"id":"0xba457502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460342213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":319700,"id":"0xaf88a7f0f182217a"},
-{"pid":27443,"tid":27466,"ts":326460343373,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":319822,"id":"0xaf88aae4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460343373,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":319822},
-{"pid":27443,"tid":27466,"ts":326460343373,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":319822,"id":"0xccc4f102"},
-{"pid":27443,"tid":27466,"ts":326460343587,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":319975,"id":"0xaf88aae5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460343617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":320006},
-{"pid":27443,"tid":27466,"ts":326460343648,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320036,"id":"0xccc4f206"},
-{"pid":27443,"tid":27466,"ts":326460343831,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":320128},
-{"pid":27443,"tid":27466,"ts":326460343862,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":320158},
-{"pid":27443,"tid":27466,"ts":326460343892,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320189,"id":"0xc4c1af0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460344228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":320311,"id":"0xaf88aae6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460344228,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":320311},
-{"pid":27443,"tid":27466,"ts":326460344228,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320311,"id":"0xccc4f302"},
-{"pid":27443,"tid":27466,"ts":326460347707,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":92,"tts":320463},
-{"pid":27443,"tid":27466,"ts":326460347738,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":320494},
-{"pid":27443,"tid":27466,"ts":326460347768,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320494,"id":"0xba457602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460347799,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":320524,"id":"0xaf88a7f3f182217a"},
-{"pid":27443,"tid":27466,"ts":326460354269,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":549,"tdur":244,"tts":320616},
-{"pid":27443,"tid":27466,"ts":326460354300,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":427,"tdur":123,"tts":320646},
-{"pid":27443,"tid":27466,"ts":326460354300,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":335,"tdur":31,"tts":320646},
-{"pid":27443,"tid":27466,"ts":326460354635,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320677,"id":"0xba457802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460354666,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":320708},
-{"pid":27443,"tid":27466,"ts":326460354696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":320738,"id":"0xaf88a78cf182217a"},
-{"pid":27443,"tid":27459,"ts":326460320178,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":133},"dur":0,"tdur":0,"tts":7176865},
-{"pid":27443,"tid":27459,"ts":326460320208,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":133},"dur":0,"tdur":0,"tts":7176896},
-{"pid":27443,"tid":27459,"ts":326460320239,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7176926,"id":"0x30000007c"},
-{"pid":27443,"tid":27459,"ts":326460320239,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2319,"tdur":61,"tts":7176926},
-{"pid":27443,"tid":27459,"ts":326460320269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7176957,"id":"0xaf88a7eaf182217a"},
-{"pid":27443,"tid":27459,"ts":326460322589,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7177018},
-{"pid":27443,"tid":27459,"ts":326460322650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7177079,"id":"0xaf88a687f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460322680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7177109},
-{"pid":27443,"tid":27459,"ts":326460322680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7177109,"id":"0xaf88a681f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460322711,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7177140,"id":"0xaf88a8bff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460322711,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":7177140},
-{"pid":27443,"tid":27459,"ts":326460322711,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":126},"dur":61,"tdur":61,"tts":7177140},
-{"pid":27443,"tid":27459,"ts":326460322802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7177231,"id":"0xaf88a680f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460322802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7177231},
-{"pid":27443,"tid":27459,"ts":326460322864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7177292,"id":"0xaf88a681f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460322864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7177292},
-{"pid":27443,"tid":27459,"ts":326460323199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460323},"tts":7177353,"id":"0xaf88a6e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":7177384},
-{"pid":27443,"tid":27459,"ts":326460323230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7177384,"id":"0xaf88a682f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7177445,"id":"0xaf88a682f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7177445},
-{"pid":27443,"tid":27459,"ts":326460323321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7177475,"id":"0xaf88a683f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7177475,"id":"0xaf88a891f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460323321,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":31,"tts":7177506},
-{"pid":27443,"tid":27459,"ts":326460323352,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7177506,"id":"0xaf88a8b8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460323382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7177537,"id":"0xaf88a69cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7177567,"id":"0xaf88a683f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7177598},
-{"pid":27443,"tid":27459,"ts":326460323627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7177659,"id":"0xaf88a69df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1861,"tdur":1281,"tts":7177659},
-{"pid":27443,"tid":27459,"ts":326460323657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7177689,"id":"0xaf88a69ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460323657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7177689,"id":"0xaf88a8b9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460323657,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1801,"tdur":1221,"tts":7177689},
-{"pid":27443,"tid":27459,"ts":326460323718,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1740,"tdur":1160,"tts":7177750},
-{"pid":27443,"tid":27459,"ts":326460323718,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7177781,"id":"0x30000007d"},
-{"pid":27443,"tid":27459,"ts":326460323749,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1556,"tdur":1007,"tts":7177781},
-{"pid":27443,"tid":27459,"ts":326460323779,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1526,"tdur":977,"tts":7177811},
-{"pid":27443,"tid":27459,"ts":326460323840,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7177872},
-{"pid":27443,"tid":27459,"ts":326460323871,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7177933},
-{"pid":27443,"tid":27459,"ts":326460323901,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7177964},
-{"pid":27443,"tid":27459,"ts":326460323932,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7177964},
-{"pid":27443,"tid":27459,"ts":326460323962,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7177994},
-{"pid":27443,"tid":27459,"ts":326460323993,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7178025},
-{"pid":27443,"tid":27459,"ts":326460324023,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":92,"tdur":31,"tts":7178055},
-{"pid":27443,"tid":27459,"ts":326460324023,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7178055},
-{"pid":27443,"tid":27459,"ts":326460324176,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1099,"tdur":610,"tts":7178147},
-{"pid":27443,"tid":27459,"ts":326460324176,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7178147},
-{"pid":27443,"tid":27459,"ts":326460324756,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":488,"tdur":397,"tts":7178330},
-{"pid":27443,"tid":27459,"ts":326460324786,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7178361},
-{"pid":27443,"tid":27459,"ts":326460325153,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":98,"frame":"0x78c60000"}},"tts":7178666,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460325183,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":7178666},
-{"pid":27443,"tid":27459,"ts":326460325214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7178696,"id":"0xaf88a7fef182217a"},
-{"pid":27443,"tid":27459,"ts":326460325244,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7178727},
-{"pid":27443,"tid":27459,"ts":326460325336,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":61,"tts":7178818},
-{"pid":27443,"tid":27459,"ts":326460325336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7178818,"id":"0xaf88aae9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460325519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7178971,"id":"0xaf88a69ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460325519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7178971},
-{"pid":27443,"tid":27459,"ts":326460326801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7179063,"id":"0xaf88a69ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460326801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13093,"tdur":12635,"tts":7179093},
-{"pid":27443,"tid":27459,"ts":326460326831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7179093,"id":"0xaf88a698f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460326862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7179124,"id":"0xaf88a8baf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460326862,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":13001,"tdur":12574,"tts":7179124},
-{"pid":27443,"tid":27459,"ts":326460326862,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":134},"tts":7179124},
-{"pid":27443,"tid":27459,"ts":326460326892,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7179154},
-{"pid":27443,"tid":27477,"ts":326460323016,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":646574},
-{"pid":27443,"tid":27477,"ts":326460323047,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":646604},
-{"pid":27443,"tid":27477,"ts":326460323047,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":646604},
-{"pid":27443,"tid":27477,"ts":326460323047,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":646604},
-{"pid":27443,"tid":27477,"ts":326460323077,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":646635},
-{"pid":27443,"tid":27477,"ts":326460323077,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":646635},
-{"pid":27443,"tid":27477,"ts":326460323199,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":646757},
-{"pid":27443,"tid":27477,"ts":326460323199,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":646757},
-{"pid":27443,"tid":27477,"ts":326460323199,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":646757},
-{"pid":27443,"tid":27477,"ts":326460323199,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":92,"tts":646787},
-{"pid":27443,"tid":27477,"ts":326460323230,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":646787},
-{"pid":27443,"tid":27477,"ts":326460323260,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":646818},
-{"pid":27443,"tid":27477,"ts":326460323291,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":646879,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460323321,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":646879,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460323352,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":646909,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460323413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":646970,"id":"0xaf88a7ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326460323413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":646970},
-{"pid":27443,"tid":27477,"ts":326460323413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":646970,"id":"0xaf88a7e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":647001},
-{"pid":27443,"tid":27477,"ts":326460323443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647001,"id":"0xaf88a7e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":647001},
-{"pid":27443,"tid":27477,"ts":326460323474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647031,"id":"0xaf88a7e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":647031},
-{"pid":27443,"tid":27477,"ts":326460323474,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":123,"tts":647031},
-{"pid":27443,"tid":27477,"ts":326460323504,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":647062,"id":"0x30000007d"},
-{"pid":27443,"tid":27477,"ts":326460323504,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":647062},
-{"pid":27443,"tid":27477,"ts":326460323535,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":647092,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460323565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":647123,"id":"0xaf88a8b9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460323565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":647123,"id":"0xaf88a69df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460323627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647184,"id":"0xaf88a7e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":647184},
-{"pid":27443,"tid":27477,"ts":326460323657,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460324954.0,"frame_time_us":326460319131.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":647215},
-{"pid":27443,"tid":27477,"ts":326460323688,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460324954.0,"frame_time_us":326460319131.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":647245},
-{"pid":27443,"tid":27477,"ts":326460323718,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460335797},"dur":31,"tdur":30,"tts":647276},
-{"pid":27443,"tid":27477,"ts":326460323718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":647276,"id":"0xaf88a7e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647306,"id":"0xaf88a7e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":647337},
-{"pid":27443,"tid":27477,"ts":326460323779,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":30,"tts":647337},
-{"pid":27443,"tid":27477,"ts":326460323779,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":647337,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460323810,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":647367},
-{"pid":27443,"tid":27477,"ts":326460323810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":647367,"id":"0xaf88a7fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326460323840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647398,"id":"0xaf88a7e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":647398},
-{"pid":27443,"tid":27477,"ts":326460323840,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":647398},
-{"pid":27443,"tid":27477,"ts":326460323871,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":647428,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460323871,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":647428},
-{"pid":27443,"tid":27477,"ts":326460323871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":647428,"id":"0xaf88a7fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460323901,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647459,"id":"0xaf88a7e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460323901,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":647459},
-{"pid":27443,"tid":27477,"ts":326460323932,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":647489},
-{"pid":27443,"tid":27477,"ts":326460323932,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":647489,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460323932,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":647489},
-{"pid":27443,"tid":27477,"ts":326460323962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":647520,"id":"0xaf88a7fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326460323962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1435,"tdur":1098,"tts":647520},
-{"pid":27443,"tid":27477,"ts":326460323962,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1435,"tdur":1098,"tts":647520},
-{"pid":27443,"tid":27477,"ts":326460323993,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":647550},
-{"pid":27443,"tid":27477,"ts":326460323993,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":647550},
-{"pid":27443,"tid":27477,"ts":326460323993,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":244,"tdur":153,"tts":647550},
-{"pid":27443,"tid":27477,"ts":326460324023,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":91,"tts":647581},
-{"pid":27443,"tid":27477,"ts":326460324237,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1129,"tdur":885,"tts":647703},
-{"pid":27443,"tid":27477,"ts":326460324237,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1129,"tdur":885,"tts":647703},
-{"pid":27443,"tid":27477,"ts":326460324267,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1069,"tdur":824,"tts":647733},
-{"pid":27443,"tid":27477,"ts":326460324267,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":647733,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460324359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":647825},
-{"pid":27443,"tid":27477,"ts":326460324359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":647825},
-{"pid":27443,"tid":27477,"ts":326460324420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":647886},
-{"pid":27443,"tid":27477,"ts":326460324420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":647886},
-{"pid":27443,"tid":27477,"ts":326460324451,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":647917},
-{"pid":27443,"tid":27477,"ts":326460324481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":647947},
-{"pid":27443,"tid":27477,"ts":326460324512,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":647978},
-{"pid":27443,"tid":27477,"ts":326460324512,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":648008},
-{"pid":27443,"tid":27477,"ts":326460324542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":648008},
-{"pid":27443,"tid":27477,"ts":326460324573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648039},
-{"pid":27443,"tid":27477,"ts":326460324603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648069},
-{"pid":27443,"tid":27477,"ts":326460324634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648100},
-{"pid":27443,"tid":27477,"ts":326460324634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":648100},
-{"pid":27443,"tid":27477,"ts":326460324664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648130},
-{"pid":27443,"tid":27477,"ts":326460324664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":648161},
-{"pid":27443,"tid":27477,"ts":326460324695,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648161},
-{"pid":27443,"tid":27477,"ts":326460324725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648191},
-{"pid":27443,"tid":27477,"ts":326460324725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":648191},
-{"pid":27443,"tid":27477,"ts":326460324756,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648222},
-{"pid":27443,"tid":27477,"ts":326460324756,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":648222},
-{"pid":27443,"tid":27477,"ts":326460324817,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":648313},
-{"pid":27443,"tid":27477,"ts":326460324847,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":648313},
-{"pid":27443,"tid":27477,"ts":326460324878,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":244,"tdur":0,"tts":648344},
-{"pid":27443,"tid":27477,"ts":326460325153,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648374},
-{"pid":27443,"tid":27477,"ts":326460325153,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":648405},
-{"pid":27443,"tid":27477,"ts":326460325183,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":648405},
-{"pid":27443,"tid":27477,"ts":326460325214,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":648435},
-{"pid":27443,"tid":27477,"ts":326460325244,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":648466},
-{"pid":27443,"tid":27477,"ts":326460325275,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":648496},
-{"pid":27443,"tid":27477,"ts":326460325305,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":648527},
-{"pid":27443,"tid":27477,"ts":326460325305,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":648527},
-{"pid":27443,"tid":27477,"ts":326460325336,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":648557},
-{"pid":27443,"tid":27477,"ts":326460325366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":648588,"id":"0xaf88a7fff182217a"},
-{"pid":27443,"tid":27477,"ts":326460325397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":648618,"id":"0xaf88a7fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460325427,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":648649},
-{"pid":27443,"tid":27477,"ts":326460325427,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":648649},
-{"pid":27443,"tid":27477,"ts":326460325427,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":648649},
-{"pid":27443,"tid":27477,"ts":326460325427,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":648649},
-{"pid":27443,"tid":27477,"ts":326460325458,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":648680},
-{"pid":27443,"tid":27477,"ts":326460325458,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":648680},
-{"pid":27443,"tid":27477,"ts":326460325519,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":648741},
-{"pid":27443,"tid":27477,"ts":326460325519,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":648771},
-{"pid":27443,"tid":27477,"ts":326460325549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":648771,"id":"0xaf88a7fef182217a"},
-{"pid":27443,"tid":27477,"ts":326460325580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":648802},
-{"pid":27443,"tid":27477,"ts":326460325580,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":648802},
-{"pid":27443,"tid":27477,"ts":326460325580,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":134},"tts":648802},
-{"pid":27443,"tid":27477,"ts":326460325641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":648863,"id":"0xaf88a8baf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460325671,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":648893,"id":"0xaf88a69ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460325702,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":648924},
-{"pid":27443,"tid":27477,"ts":326460325732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":648954,"id":"0xaf88a7fff182217a"},
-{"pid":27443,"tid":27477,"ts":326460325732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1923,"tdur":1526,"tts":648954},
-{"pid":27443,"tid":27477,"ts":326460325732,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1923,"tdur":1496,"tts":648954},
-{"pid":27443,"tid":27477,"ts":326460325732,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":648985},
-{"pid":27443,"tid":27477,"ts":326460325763,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1862,"tdur":1465,"tts":648985},
-{"pid":27443,"tid":27477,"ts":326460325793,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":133},"dur":825,"tdur":824,"tts":649015},
-{"pid":27443,"tid":27477,"ts":326460325824,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":133},"dur":244,"tdur":244,"tts":649046},
-{"pid":27443,"tid":27477,"ts":326460326099,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":133},"dur":30,"tdur":31,"tts":649320},
-{"pid":27443,"tid":27477,"ts":326460326129,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":133},"tts":649351},
-{"pid":27443,"tid":27477,"ts":326460326221,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":649443},
-{"pid":27443,"tid":27477,"ts":326460326221,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":649443},
-{"pid":27443,"tid":27477,"ts":326460326221,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":649443},
-{"pid":27443,"tid":27477,"ts":326460326251,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":649473},
-{"pid":27443,"tid":27477,"ts":326460326251,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":649473,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460326312,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":649534},
-{"pid":27443,"tid":27477,"ts":326460326618,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":649839},
-{"pid":27443,"tid":27477,"ts":326460326618,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":701,"tdur":275,"tts":649839},
-{"pid":27443,"tid":27477,"ts":326460326648,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":649870},
-{"pid":27443,"tid":27477,"ts":326460326648,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":610,"tdur":213,"tts":649870},
-{"pid":27443,"tid":27477,"ts":326460326740,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":30,"tdur":31,"tts":649961},
-{"pid":27443,"tid":27477,"ts":326460326770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":649992,"id":"0xaf88aaeaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460327289,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":650114,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460327319,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":650145,"id":"0x30000007c"},
-{"pid":27443,"tid":27477,"ts":326460327350,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":650175},
-{"pid":27443,"tid":27477,"ts":326460327503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":650328,"id":"0xaf88aaebf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460327594,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":650419,"id":"0xaf88a8bbf3d0445e"},{"pid":27443,"tid":27477,"ts":326460327594,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":650419,"id":"0xaf88a699f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460329578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":650541,"id":"0xaf88a7f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460329609,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":650572},
-{"pid":27443,"tid":27477,"ts":326460329609,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":650572},
-{"pid":27443,"tid":27477,"ts":326460329639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":650602,"id":"0xaf88a8b4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460335896,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460335},"tts":650694,"id":"0xaf88a7e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460335926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":650694},
-{"pid":27443,"tid":27477,"ts":326460339528,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":650755,"id":"0xaf88a7f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460339528,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1159,"tdur":1160,"tts":650755},
-{"pid":27443,"tid":27477,"ts":326460339558,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1129,"tdur":1130,"tts":650785},
-{"pid":27443,"tid":27477,"ts":326460339558,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":650785},
-{"pid":27443,"tid":27477,"ts":326460339558,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1129,"tdur":1130,"tts":650785},
-{"pid":27443,"tid":27477,"ts":326460339589,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1068,"tdur":1068,"tts":650816},
-{"pid":27443,"tid":27477,"ts":326460339589,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":650816},
-{"pid":27443,"tid":27477,"ts":326460339589,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":650816},
-{"pid":27443,"tid":27477,"ts":326460339619,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":650846,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460339619,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":650846},
-{"pid":27443,"tid":27477,"ts":326460339650,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":650877},
-{"pid":27443,"tid":27477,"ts":326460339772,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":885,"tdur":885,"tts":650999},
-{"pid":27443,"tid":27477,"ts":326460339772,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":134},"dur":366,"tdur":336,"tts":650999},
-{"pid":27443,"tid":27477,"ts":326460340138,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":134},"dur":31,"tdur":31,"tts":651365},
-{"pid":27443,"tid":27477,"ts":326460340169,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":134},"tts":651396},
-{"pid":27443,"tid":27477,"ts":326460340291,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":651518},
-{"pid":27443,"tid":27477,"ts":326460340291,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":651518},
-{"pid":27443,"tid":27477,"ts":326460340321,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":123,"tts":651548},
-{"pid":27443,"tid":27477,"ts":326460340443,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":651671},
-{"pid":27443,"tid":27477,"ts":326460340443,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":651701},
-{"pid":27443,"tid":27477,"ts":326460340474,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":651701},
-{"pid":27443,"tid":27477,"ts":326460340474,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":651701},
-{"pid":27443,"tid":27477,"ts":326460340474,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":651701,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460340504,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":651732},
-{"pid":27443,"tid":27477,"ts":326460340504,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":651732},
-{"pid":27443,"tid":27477,"ts":326460340596,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":651823,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460340626,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":651854,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460340626,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":651854,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460340687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":651915,"id":"0xaf88a7faf182217a"},
-{"pid":27443,"tid":27477,"ts":326460340718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":651945},
-{"pid":27443,"tid":27477,"ts":326460340718,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":651945},
-{"pid":27443,"tid":27477,"ts":326460340748,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":651976,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460340748,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":651976},
-{"pid":27443,"tid":27477,"ts":326460340748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":651976,"id":"0xaf88a7f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460340779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":652006,"id":"0xaf88a7fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326460340779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":652006},
-{"pid":27443,"tid":27477,"ts":326460340809,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":30,"tts":652037},
-{"pid":27443,"tid":27477,"ts":326460340809,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":652037,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460340809,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":652037},
-{"pid":27443,"tid":27477,"ts":326460340840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":652067,"id":"0xaf88a7f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460340871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":652098,"id":"0xaf88a7f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460340871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":652098},
-{"pid":27443,"tid":27477,"ts":326460340871,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":652098},
-{"pid":27443,"tid":27477,"ts":326460340871,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":652098,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460340901,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":652128},
-{"pid":27443,"tid":27477,"ts":326460340901,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":652128,"id":"0xaf88a7f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460340901,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":916,"tdur":916,"tts":652128},
-{"pid":27443,"tid":27459,"ts":326460326923,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9431,"tdur":9247,"tts":7179185},
-{"pid":27443,"tid":27459,"ts":326460326923,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":213,"tts":7179185},
-{"pid":27443,"tid":27459,"ts":326460327167,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7179429},
-{"pid":27443,"tid":27459,"ts":326460327197,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":98,"frame":"0x78c60000"}},"dur":9157,"tdur":8942,"tts":7179490},
-{"pid":27443,"tid":27459,"ts":326460327289,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9034,"tdur":8851,"tts":7179551},
-{"pid":27443,"tid":27459,"ts":326460327319,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7179581},
-{"pid":27443,"tid":27459,"ts":326460330829,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7183091},
-{"pid":27443,"tid":27459,"ts":326460331135,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7183396},
-{"pid":27443,"tid":27459,"ts":326460331257,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7183519},
-{"pid":27443,"tid":27459,"ts":326460332020,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7184282},
-{"pid":27443,"tid":27459,"ts":326460332111,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7184373},
-{"pid":27443,"tid":27459,"ts":326460332416,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7184678},
-{"pid":27443,"tid":27459,"ts":326460335468,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7187578},
-{"pid":27443,"tid":27459,"ts":326460336109,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7188219},
-{"pid":27443,"tid":27459,"ts":326460336292,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7188402},
-{"pid":27443,"tid":27459,"ts":326460336384,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2686,"tdur":2686,"tts":7188463},
-{"pid":27443,"tid":27459,"ts":326460336415,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7188524},
-{"pid":27443,"tid":27459,"ts":326460336445,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7188524},
-{"pid":27443,"tid":27459,"ts":326460336476,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7188554},
-{"pid":27443,"tid":27459,"ts":326460336964,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7189043},
-{"pid":27443,"tid":27459,"ts":326460336994,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7189073},
-{"pid":27443,"tid":27459,"ts":326460337025,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2045,"tdur":2045,"tts":7189104},
-{"pid":27443,"tid":27459,"ts":326460337055,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1801,"tdur":1801,"tts":7189134},
-{"pid":27443,"tid":27459,"ts":326460337055,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":458,"tdur":458,"tts":7189134},
-{"pid":27443,"tid":27459,"ts":326460337513,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":213,"tts":7189623},
-{"pid":27443,"tid":27459,"ts":326460337757,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7189836},
-{"pid":27443,"tid":27459,"ts":326460337849,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":7189928},
-{"pid":27443,"tid":27459,"ts":326460337880,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":946,"tdur":946,"tts":7189958},
-{"pid":27443,"tid":27459,"ts":326460338856,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":7190935},
-{"pid":27443,"tid":27459,"ts":326460338887,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":152,"tdur":122,"tts":7190996},
-{"pid":27443,"tid":27459,"ts":326460339070,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":134},"dur":336,"tdur":335,"tts":7191149},
-{"pid":27443,"tid":27459,"ts":326460339100,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":306,"tdur":275,"tts":7191179},
-{"pid":27443,"tid":27459,"ts":326460339406,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7191484,"id":"0x30000007d"},
-{"pid":27443,"tid":27459,"ts":326460339406,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":396,"tdur":122,"tts":7191484},
-{"pid":27443,"tid":27459,"ts":326460339436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7191515,"id":"0xaf88a7f9f182217a"},
-{"pid":27443,"tid":27459,"ts":326460339833,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7191667},
-{"pid":27443,"tid":27459,"ts":326460339924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460334},"tts":7191759,"id":"0xaf88a9e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460339955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":7191790},
-{"pid":27443,"tid":27459,"ts":326460340046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7191881,"id":"0xaf88a698f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460340046,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":31,"tts":7191881},
-{"pid":27443,"tid":27459,"ts":326460340382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7191942},
-{"pid":27443,"tid":27459,"ts":326460340413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7191973,"id":"0xaf88a69af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460340413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7191973,"id":"0xaf88a8bbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460340443,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":7192003},
-{"pid":27443,"tid":27459,"ts":326460340443,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7192003},
-{"pid":27443,"tid":27459,"ts":326460340474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7192064,"id":"0xaf88a699f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460340504,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7192064},
-{"pid":27443,"tid":27459,"ts":326460340504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7192064,"id":"0xaf88a8b4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460340535,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":7192095},
-{"pid":27443,"tid":27459,"ts":326460340535,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7192095},
-{"pid":27443,"tid":27459,"ts":326460340596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7192156,"id":"0xaf88a69af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460340626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7192186},
-{"pid":27443,"tid":27459,"ts":326460342122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7192247,"id":"0xaf88a69bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460342152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1252,"tdur":1221,"tts":7192278},
-{"pid":27443,"tid":27459,"ts":326460342152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7192278,"id":"0xaf88a694f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460342183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7192308,"id":"0xaf88a8b5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460342183,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1190,"tdur":1160,"tts":7192308},
-{"pid":27443,"tid":27459,"ts":326460342244,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":1099,"tts":7192369},
-{"pid":27443,"tid":27459,"ts":326460342244,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7192400,"id":"0x30000007e"},
-{"pid":27443,"tid":27459,"ts":326460342274,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":947,"tdur":946,"tts":7192400},
-{"pid":27443,"tid":27459,"ts":326460342305,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":916,"tts":7192430},
-{"pid":27443,"tid":27459,"ts":326460342366,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7192491},
-{"pid":27443,"tid":27459,"ts":326460342427,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7192553},
-{"pid":27443,"tid":27459,"ts":326460342427,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7192583},
-{"pid":27443,"tid":27471,"ts":326460340626,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":356966},
-{"pid":27443,"tid":27471,"ts":326460340657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356996,"id":"0xaf88a7fbf182217a"},
-{"pid":27443,"tid":27471,"ts":326460340687,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":357027},
-{"pid":27443,"tid":27471,"ts":326460340687,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":357027},
-{"pid":27443,"tid":27471,"ts":326460340687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357027,"id":"0xaf88a7f4f182217a"},
-{"pid":27443,"tid":27498,"ts":326460360709,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1587,"tdur":1587,"tts":49717},
-{"pid":27443,"tid":27498,"ts":326460360709,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":49748},
-{"pid":27443,"tid":27498,"ts":326460362296,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":51304},
-{"pid":27443,"tid":27471,"ts":326460369193,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":123,"tdur":92,"tts":357118},
-{"pid":27443,"tid":27471,"ts":326460369254,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":357149},
-{"pid":27443,"tid":27471,"ts":326460369254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357149,"id":"0xaf88a789f182217a"},
-{"pid":27443,"tid":27469,"ts":326460369285,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":298947},
-{"pid":27443,"tid":27469,"ts":326460369316,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":298977},
-{"pid":27443,"tid":27471,"ts":326460369316,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":357210},
-{"pid":27443,"tid":27469,"ts":326460369316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":298977,"id":"0xaf88a78af182217a"},
-{"pid":27443,"tid":27471,"ts":326460369316,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":357210},
-{"pid":27443,"tid":27471,"ts":326460369316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357240,"id":"0xaf88a78bf182217a"},
-{"pid":27443,"tid":27469,"ts":326460374351,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":275,"tdur":92,"tts":299038},
-{"pid":27443,"tid":27469,"ts":326460374382,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":299069},
-{"pid":27443,"tid":27469,"ts":326460374382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299069,"id":"0xaf88a780f182217a"},
-{"pid":27443,"tid":27471,"ts":326460374382,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":357271},
-{"pid":27443,"tid":27471,"ts":326460374412,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":357301},
-{"pid":27443,"tid":27471,"ts":326460374443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357332,"id":"0xaf88a781f182217a"},
-{"pid":27443,"tid":27471,"ts":326460374473,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":357363},
-{"pid":27443,"tid":27471,"ts":326460374473,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":357363},
-{"pid":27443,"tid":27471,"ts":326460374473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357363,"id":"0xaf88a782f182217a"},
-{"pid":27443,"tid":27471,"ts":326460397028,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":357424},
-{"pid":27443,"tid":27471,"ts":326460397059,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":357454},
-{"pid":27443,"tid":27471,"ts":326460397089,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357485,"id":"0xaf88a795f182217a"},
-{"pid":27443,"tid":27469,"ts":326460397089,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":299221},
-{"pid":27443,"tid":27469,"ts":326460397120,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":299252},
-{"pid":27443,"tid":27471,"ts":326460397120,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":357515},
-{"pid":27443,"tid":27469,"ts":326460397120,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299252,"id":"0xaf88a796f182217a"},
-{"pid":27443,"tid":27471,"ts":326460397120,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":357515},
-{"pid":27443,"tid":27471,"ts":326460397150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357546,"id":"0xaf88a797f182217a"},
-{"pid":27443,"tid":27469,"ts":326460419949,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":299313},
-{"pid":27443,"tid":27469,"ts":326460419979,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":92,"tts":299343},
-{"pid":27443,"tid":27469,"ts":326460420040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299404,"id":"0xaf88a7aff182217a"},
-{"pid":27443,"tid":27469,"ts":326460420071,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":299435},
-{"pid":27443,"tid":27469,"ts":326460420101,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":299465},
-{"pid":27443,"tid":27469,"ts":326460420101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299465,"id":"0xaf88a7a8f182217a"},
-{"pid":27443,"tid":27469,"ts":326460420132,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":299496},
-{"pid":27443,"tid":27469,"ts":326460420132,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":299496},
-{"pid":27443,"tid":27469,"ts":326460420132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299496,"id":"0xaf88a7a9f182217a"},
-{"pid":27443,"tid":27546,"ts":326460453186,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":732,"tdur":702,"tts":57347},
-{"pid":27443,"tid":27546,"ts":326460453216,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57347},
-{"pid":27443,"tid":27546,"ts":326460453887,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":58019},
-{"pid":27443,"tid":27496,"ts":326460476595,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":11964,"tdur":11750,"tts":67175},
-{"pid":27443,"tid":27496,"ts":326460476625,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":67205},
-{"pid":27443,"tid":27498,"ts":326460487643,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":580,"tdur":580,"tts":51396},
-{"pid":27443,"tid":27498,"ts":326460487643,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":51426},
-{"pid":27443,"tid":27498,"ts":326460488192,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":51945},
-{"pid":27443,"tid":27496,"ts":326460488528,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":78895},
-{"pid":27443,"tid":27546,"ts":326460496219,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":2045,"tdur":1954,"tts":58110},
-{"pid":27443,"tid":27546,"ts":326460496219,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":58141},
-{"pid":27443,"tid":27498,"ts":326460497318,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1129,"tdur":1037,"tts":52037},
-{"pid":27443,"tid":27498,"ts":326460497318,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":52037},
-{"pid":27443,"tid":27546,"ts":326460498234,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60033},
-{"pid":27443,"tid":27498,"ts":326460498417,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":53044},
-{"pid":27443,"tid":27496,"ts":326460500675,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":611,"tdur":611,"tts":78986},
-{"pid":27443,"tid":27496,"ts":326460500706,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":79017},
-{"pid":27443,"tid":27496,"ts":326460501255,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":79566},
-{"pid":27443,"tid":27546,"ts":326460501499,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":550,"tdur":549,"tts":60094},
-{"pid":27443,"tid":27546,"ts":326460501530,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60125},
-{"pid":27443,"tid":27477,"ts":326460340932,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":885,"tdur":885,"tts":652159},
-{"pid":27443,"tid":27477,"ts":326460340932,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":652159},
-{"pid":27443,"tid":27477,"ts":326460340932,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":652159},
-{"pid":27443,"tid":27477,"ts":326460340962,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":652189},
-{"pid":27443,"tid":27477,"ts":326460340962,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":652189},
-{"pid":27443,"tid":27477,"ts":326460341054,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":652281},
-{"pid":27443,"tid":27477,"ts":326460341054,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":732,"tts":652281},
-{"pid":27443,"tid":27477,"ts":326460341054,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":732,"tdur":732,"tts":652281},
-{"pid":27443,"tid":27477,"ts":326460341054,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":652311,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460341145,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":652372},
-{"pid":27443,"tid":27477,"ts":326460341176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652403},
-{"pid":27443,"tid":27477,"ts":326460341176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":652403},
-{"pid":27443,"tid":27477,"ts":326460341206,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652434},
-{"pid":27443,"tid":27477,"ts":326460341237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652464},
-{"pid":27443,"tid":27477,"ts":326460341237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652464},
-{"pid":27443,"tid":27477,"ts":326460341267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652495},
-{"pid":27443,"tid":27477,"ts":326460341267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":652495},
-{"pid":27443,"tid":27477,"ts":326460341298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":652525},
-{"pid":27443,"tid":27477,"ts":326460341328,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652556},
-{"pid":27443,"tid":27477,"ts":326460341328,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":652556},
-{"pid":27443,"tid":27477,"ts":326460341359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652586},
-{"pid":27443,"tid":27477,"ts":326460341389,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652617},
-{"pid":27443,"tid":27477,"ts":326460341389,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652617},
-{"pid":27443,"tid":27477,"ts":326460341420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652647},
-{"pid":27443,"tid":27477,"ts":326460341420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":652647},
-{"pid":27443,"tid":27477,"ts":326460341450,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652678},
-{"pid":27443,"tid":27477,"ts":326460341450,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":652678},
-{"pid":27443,"tid":27477,"ts":326460341481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652708},
-{"pid":27443,"tid":27477,"ts":326460341481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":652708},
-{"pid":27443,"tid":27477,"ts":326460341573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652800},
-{"pid":27443,"tid":27477,"ts":326460341573,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":652800},
-{"pid":27443,"tid":27477,"ts":326460341603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652830},
-{"pid":27443,"tid":27477,"ts":326460341634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652861},
-{"pid":27443,"tid":27477,"ts":326460341634,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":652861},
-{"pid":27443,"tid":27477,"ts":326460341664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":652891},
-{"pid":27443,"tid":27477,"ts":326460341664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":652891},
-{"pid":27443,"tid":27477,"ts":326460341725,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":652952},
-{"pid":27443,"tid":27477,"ts":326460341756,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":652983},
-{"pid":27443,"tid":27477,"ts":326460341756,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":652983},
-{"pid":27443,"tid":27477,"ts":326460341756,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":0,"tts":653013},
-{"pid":27443,"tid":27477,"ts":326460341817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":653044,"id":"0xaf88a7f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460341817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":653044},
-{"pid":27443,"tid":27477,"ts":326460341847,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":653074},
-{"pid":27443,"tid":27477,"ts":326460341847,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":653074},
-{"pid":27443,"tid":27477,"ts":326460341847,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":653074},
-{"pid":27443,"tid":27477,"ts":326460341878,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":30,"tts":653105},
-{"pid":27443,"tid":27477,"ts":326460341878,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":653105},
-{"pid":27443,"tid":27477,"ts":326460341939,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":653166},
-{"pid":27443,"tid":27477,"ts":326460341939,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":653166},
-{"pid":27443,"tid":27477,"ts":326460341969,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":653197,"id":"0xaf88a7f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460341969,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":653197},
-{"pid":27443,"tid":27477,"ts":326460341969,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":152,"tts":653197},
-{"pid":27443,"tid":27477,"ts":326460342000,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":653227,"id":"0x30000007e"},
-{"pid":27443,"tid":27477,"ts":326460342000,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":653227},
-{"pid":27443,"tid":27477,"ts":326460342030,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":653258,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460342061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":653288,"id":"0xaf88a8b5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460342061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":653319,"id":"0xaf88a69bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460342274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":653380,"id":"0xaf88a7f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460342274,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":653380},
-{"pid":27443,"tid":27477,"ts":326460342305,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460341636.0,"frame_time_us":326460335813.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":653410},
-{"pid":27443,"tid":27477,"ts":326460342336,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460341636.0,"frame_time_us":326460335813.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":653441},
-{"pid":27443,"tid":27477,"ts":326460342366,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":653471},
-{"pid":27443,"tid":27477,"ts":326460342397,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":653502},
-{"pid":27443,"tid":27477,"ts":326460342397,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":653502,"id":"0xaf88a7f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460342427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":653532,"id":"0xaf88a7f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460342427,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1892,"tdur":1434,"tts":653563},
-{"pid":27443,"tid":27477,"ts":326460342458,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1861,"tdur":1404,"tts":653563},
-{"pid":27443,"tid":27477,"ts":326460342458,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1831,"tdur":1404,"tts":653563},
-{"pid":27443,"tid":27477,"ts":326460342488,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":134},"dur":763,"tdur":763,"tts":653593},
-{"pid":27443,"tid":27477,"ts":326460342519,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":134},"dur":213,"tdur":213,"tts":653624},
-{"pid":27443,"tid":27477,"ts":326460342732,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":134},"dur":31,"tdur":31,"tts":653837},
-{"pid":27443,"tid":27477,"ts":326460342763,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":134},"tts":653868},
-{"pid":27443,"tid":27477,"ts":326460342824,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":653960},
-{"pid":27443,"tid":27477,"ts":326460342854,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":653960},
-{"pid":27443,"tid":27477,"ts":326460342854,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":653960},
-{"pid":27443,"tid":27477,"ts":326460342854,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":653960},
-{"pid":27443,"tid":27477,"ts":326460342885,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":653990,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460342946,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":654051},
-{"pid":27443,"tid":27477,"ts":326460343221,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":654326},
-{"pid":27443,"tid":27477,"ts":326460343251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":336,"tts":654356},
-{"pid":27443,"tid":27477,"ts":326460343251,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":654356},
-{"pid":27443,"tid":27477,"ts":326460343343,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":654417},
-{"pid":27443,"tid":27477,"ts":326460343373,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":214,"tts":654417},
-{"pid":27443,"tid":27477,"ts":326460343465,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":654509},
-{"pid":27443,"tid":27477,"ts":326460343495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":654539,"id":"0xaf88aae5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460343984,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":654662,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460344014,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":654692,"id":"0x30000007d"},
-{"pid":27443,"tid":27477,"ts":326460344045,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":152,"tts":654723},
-{"pid":27443,"tid":27477,"ts":326460344167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":654845,"id":"0xaf88aae6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460344228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":654906,"id":"0xaf88a8b6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460344228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":654906,"id":"0xaf88a695f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460344319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":654997,"id":"0xaf88a7f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460344319,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":654997},
-{"pid":27443,"tid":27477,"ts":326460344350,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":655028},
-{"pid":27443,"tid":27477,"ts":326460347860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":655058,"id":"0xaf88a7f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460347860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":655058},
-{"pid":27443,"tid":27477,"ts":326460347890,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":655089},
-{"pid":27443,"tid":27477,"ts":326460347921,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":655119,"id":"0xaf88a8b7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460347921,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":655119,"id":"0xaf88a697f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460356161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":655211,"id":"0xaf88a78cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460356192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":214,"tts":655241},
-{"pid":27443,"tid":27477,"ts":326460356192,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":213,"tdur":214,"tts":655241},
-{"pid":27443,"tid":27477,"ts":326460356222,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":655272,"id":"0x30000007f"},
-{"pid":27443,"tid":27477,"ts":326460356253,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":655302},
-{"pid":27443,"tid":27477,"ts":326460356283,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":655333,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460356314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":655363,"id":"0xaf88a8b0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460356344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":655394,"id":"0xaf88a691f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460356436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":655486,"id":"0xaf88a78df182217a"},
-{"pid":27443,"tid":27477,"ts":326460356436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":655486},
-{"pid":27443,"tid":27477,"ts":326460356466,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460358317.0,"frame_time_us":326460352494.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":655516},
-{"pid":27443,"tid":27477,"ts":326460356497,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460358317.0,"frame_time_us":326460352494.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":655547},
-{"pid":27443,"tid":27477,"ts":326460356527,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":135},"tts":655577},
-{"pid":27443,"tid":27477,"ts":326460356619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":655669,"id":"0xaf88a8b1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460356619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":655669,"id":"0xaf88a693f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460356650,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":655699},
-{"pid":27443,"tid":27477,"ts":326460356650,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460369160},"dur":30,"tdur":31,"tts":655699},
-{"pid":27443,"tid":27477,"ts":326460356650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":655699,"id":"0xaf88a78ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460359396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":655791,"id":"0xaf88a78ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460359396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":655791},
-{"pid":27443,"tid":27477,"ts":326460359427,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":92,"tts":655821},
-{"pid":27443,"tid":27477,"ts":326460359427,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":655821,"id":"0x300000080"},
-{"pid":27443,"tid":27477,"ts":326460359457,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchEnd"},"dur":0,"tdur":0,"tts":655852},
-{"pid":27443,"tid":27477,"ts":326460359457,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":655882,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460359488,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":655882,"id":"0xaf88a8b2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460359518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":655913,"id":"0xaf88a6adf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460368308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":655974,"id":"0xaf88a788f182217a"},
-{"pid":27443,"tid":27477,"ts":326460368339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1038,"tdur":1038,"tts":656004},
-{"pid":27443,"tid":27477,"ts":326460368339,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1007,"tdur":1008,"tts":656004},
-{"pid":27443,"tid":27459,"ts":326460342488,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7192614},
-{"pid":27443,"tid":27459,"ts":326460342519,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7192644},
-{"pid":27443,"tid":27459,"ts":326460342549,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7192675},
-{"pid":27443,"tid":27459,"ts":326460342580,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7192705},
-{"pid":27443,"tid":27459,"ts":326460342610,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7192736},
-{"pid":27443,"tid":27459,"ts":326460342763,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7192888},
-{"pid":27443,"tid":27459,"ts":326460342793,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7192919},
-{"pid":27443,"tid":27459,"ts":326460343068,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":99,"frame":"0x78c60000"}},"tts":7193224,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460343099,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7193224},
-{"pid":27443,"tid":27459,"ts":326460343129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7193255,"id":"0xaf88a7f2f182217a"},
-{"pid":27443,"tid":27459,"ts":326460343160,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7193285},
-{"pid":27443,"tid":27459,"ts":326460343251,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":7193377},
-{"pid":27443,"tid":27459,"ts":326460343251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7193377,"id":"0xaf88aae4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460343434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7193529,"id":"0xaf88a694f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460343434,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":7193529},
-{"pid":27443,"tid":27459,"ts":326460343648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":31,"tts":7193529},
-{"pid":27443,"tid":27459,"ts":326460344380,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7193651,"id":"0xaf88a695f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460344411,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":61,"tts":7193682},
-{"pid":27443,"tid":27459,"ts":326460344411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7193682,"id":"0xaf88a696f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460344441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7193712,"id":"0xaf88a8b6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460344441,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":92,"tdur":0,"tts":7193712},
-{"pid":27443,"tid":27459,"ts":326460344441,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":92,"tdur":0,"tts":7193712},
-{"pid":27443,"tid":27459,"ts":326460344441,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7193712},
-{"pid":27443,"tid":27459,"ts":326460344625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7193773,"id":"0xaf88a696f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460344655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7193773},
-{"pid":27443,"tid":27459,"ts":326460347982,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7193865,"id":"0xaf88a697f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460347982,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7193865},
-{"pid":27443,"tid":27459,"ts":326460348012,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7193895,"id":"0xaf88a690f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460348012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7193895,"id":"0xaf88a8b7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460348043,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":7193926},
-{"pid":27443,"tid":27459,"ts":326460348043,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":7193926},
-{"pid":27443,"tid":27459,"ts":326460348104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7193987,"id":"0xaf88a690f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460348104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7194018},
-{"pid":27443,"tid":27459,"ts":326460356436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7194109,"id":"0xaf88a691f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460356436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1282,"tdur":1282,"tts":7194109},
-{"pid":27443,"tid":27459,"ts":326460356466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7194140,"id":"0xaf88a692f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460356497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7194170,"id":"0xaf88a8b0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460356497,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1221,"tdur":1221,"tts":7194170},
-{"pid":27443,"tid":27459,"ts":326460356589,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1098,"tdur":1098,"tts":7194262},
-{"pid":27443,"tid":27459,"ts":326460356589,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7194262,"id":"0x30000007f"},
-{"pid":27443,"tid":27459,"ts":326460356619,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":977,"tdur":946,"tts":7194323},
-{"pid":27443,"tid":27459,"ts":326460356680,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":885,"tts":7194353},
-{"pid":27443,"tid":27459,"ts":326460356711,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7194414},
-{"pid":27443,"tid":27459,"ts":326460356772,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7194445},
-{"pid":27443,"tid":27459,"ts":326460356802,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7194475},
-{"pid":27443,"tid":27459,"ts":326460356833,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7194506},
-{"pid":27443,"tid":27459,"ts":326460356863,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7194536},
-{"pid":27443,"tid":27459,"ts":326460356894,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7194567},
-{"pid":27443,"tid":27459,"ts":326460356924,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7194597},
-{"pid":27443,"tid":27459,"ts":326460356955,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":610,"tts":7194628},
-{"pid":27443,"tid":27459,"ts":326460357107,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":427,"tts":7194781},
-{"pid":27443,"tid":27459,"ts":326460357138,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7194811},
-{"pid":27443,"tid":27459,"ts":326460357474,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":100,"frame":"0x78c60000"}},"tts":7195177,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460357504,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7195208},
-{"pid":27443,"tid":27459,"ts":326460357596,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":7195269},
-{"pid":27443,"tid":27459,"ts":326460357626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7195299,"id":"0xaf88aae7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460357748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7195421,"id":"0xaf88a692f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460357748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10896,"tdur":10347,"tts":7195421},
-{"pid":27443,"tid":27459,"ts":326460357779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7195452,"id":"0xaf88a6acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460357779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7195452,"id":"0xaf88a8b1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460357809,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10835,"tdur":10286,"tts":7195482},
-{"pid":27443,"tid":27459,"ts":326460357809,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":135},"tts":7195482},
-{"pid":27443,"tid":27459,"ts":326460357809,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7195482},
-{"pid":27443,"tid":27459,"ts":326460357870,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7783,"tdur":7508,"tts":7195544},
-{"pid":27443,"tid":27466,"ts":326460354757,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":320799},
-{"pid":27443,"tid":27466,"ts":326460354757,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320799,"id":"0xba457902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460354788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":320830,"id":"0xaf88a78df182217a"},
-{"pid":27443,"tid":27466,"ts":326460357718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":320952,"id":"0xaf88aae7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460357718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":320952},
-{"pid":27443,"tid":27466,"ts":326460357718,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":320952,"id":"0xccc4f502"},
-{"pid":27443,"tid":27466,"ts":326460359244,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":321074},
-{"pid":27443,"tid":27466,"ts":326460359274,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":321104},
-{"pid":27443,"tid":27466,"ts":326460359305,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321135,"id":"0xba457a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460359305,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":321165},
-{"pid":27443,"tid":27466,"ts":326460359335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":321165,"id":"0xaf88a78ff182217a"},
-{"pid":27443,"tid":27466,"ts":326460371360,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":321257},
-{"pid":27443,"tid":27466,"ts":326460371391,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":321287},
-{"pid":27443,"tid":27466,"ts":326460371421,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321318,"id":"0xba457b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460371452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":321348,"id":"0xaf88a786f182217a"},
-{"pid":27443,"tid":27466,"ts":326460372856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":321471,"id":"0xaf88aae0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460372856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":321501},
-{"pid":27443,"tid":27466,"ts":326460372886,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321501,"id":"0xccc4f706"},
-{"pid":27443,"tid":27466,"ts":326460373497,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":61,"tts":321593},
-{"pid":27443,"tid":27466,"ts":326460373527,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":321623},
-{"pid":27443,"tid":27466,"ts":326460373527,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321623,"id":"0xc4c1b20a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460374046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":321745,"id":"0xaf88aae1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460374046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":92,"tts":321745},
-{"pid":27443,"tid":27466,"ts":326460374046,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321745,"id":"0xccc4f802"},
-{"pid":27443,"tid":27466,"ts":326460374199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":321867,"id":"0xaf88aae2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460374199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":321867},
-{"pid":27443,"tid":27466,"ts":326460374199,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321867,"id":"0xccc4f902"},
-{"pid":27443,"tid":27466,"ts":326460374260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":321928,"id":"0xaf88aae3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460374260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":321928},
-{"pid":27443,"tid":27466,"ts":326460374260,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":321928,"id":"0xccc4fa02"},
-{"pid":27443,"tid":27466,"ts":326460376213,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":123,"tts":322050},
-{"pid":27443,"tid":27466,"ts":326460376244,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":61,"tts":322081},
-{"pid":27443,"tid":27466,"ts":326460376274,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322081,"id":"0xba457c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460376305,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":322111},
-{"pid":27443,"tid":27466,"ts":326460376305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322111,"id":"0xaf88a79df182217a"},
-{"pid":27443,"tid":27466,"ts":326460376640,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":91,"tts":322234},
-{"pid":27443,"tid":27466,"ts":326460376671,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":942},"dur":91,"tdur":61,"tts":322234},
-{"pid":27443,"tid":27466,"ts":326460376701,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322264,"id":"0xba457d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460376732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":322295,"id":"0xaf88a94df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460376732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322295,"id":"0xaf88a6aaf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460377495,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":322356},
-{"pid":27443,"tid":27466,"ts":326460377526,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":92,"tts":322386},
-{"pid":27443,"tid":27466,"ts":326460377556,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322417,"id":"0xba457e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460377587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322447,"id":"0xaf88a79ff182217a"},
-{"pid":27443,"tid":27466,"ts":326460377617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322478,"id":"0xaf88aafcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460377648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":322508},
-{"pid":27443,"tid":27466,"ts":326460377648,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322508,"id":"0xccc4fc02"},
-{"pid":27443,"tid":27466,"ts":326460385278,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":322600},
-{"pid":27443,"tid":27466,"ts":326460385308,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":322630},
-{"pid":27443,"tid":27466,"ts":326460385339,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322661,"id":"0xba458002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460385369,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":322691},
-{"pid":27443,"tid":27466,"ts":326460385400,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322722,"id":"0xaf88a798f182217a"},
-{"pid":27443,"tid":27466,"ts":326460386682,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":322813},
-{"pid":27443,"tid":27466,"ts":326460386712,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":322844},
-{"pid":27443,"tid":27466,"ts":326460386712,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322844,"id":"0xba458102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460386743,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":322874,"id":"0xaf88a799f182217a"},
-{"pid":27443,"tid":27466,"ts":326460387048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":322966,"id":"0xaf88aafdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460387078,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":322997},
-{"pid":27443,"tid":27466,"ts":326460387078,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":322997,"id":"0xccc4fe02"},
-{"pid":27443,"tid":27466,"ts":326460390405,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":323088},
-{"pid":27443,"tid":27466,"ts":326460390436,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":323119},
-{"pid":27443,"tid":27466,"ts":326460390436,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":323149,"id":"0xba458202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460390466,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":323180},
-{"pid":27443,"tid":27466,"ts":326460390497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":323180,"id":"0xaf88a79bf182217a"},
-{"pid":27443,"tid":27459,"ts":326460357901,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":7195574},
-{"pid":27443,"tid":27459,"ts":326460357962,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":99,"frame":"0x78c60000"}},"dur":7508,"tdur":7233,"tts":7195635},
-{"pid":27443,"tid":27459,"ts":326460358023,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7416,"tdur":7142,"tts":7195696},
-{"pid":27443,"tid":27459,"ts":326460358023,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7195696},
-{"pid":27443,"tid":27459,"ts":326460359671,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7197344},
-{"pid":27443,"tid":27459,"ts":326460359854,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7197527},
-{"pid":27443,"tid":27459,"ts":326460359915,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7197619},
-{"pid":27443,"tid":27459,"ts":326460359946,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7197619},
-{"pid":27443,"tid":27459,"ts":326460360159,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7197833},
-{"pid":27443,"tid":27459,"ts":326460360678,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7198229},
-{"pid":27443,"tid":27459,"ts":326460362296,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7199816},
-{"pid":27443,"tid":27459,"ts":326460362723,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7200274},
-{"pid":27443,"tid":27459,"ts":326460365409,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7202838},
-{"pid":27443,"tid":27459,"ts":326460365470,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":100,"frame":"0x78c60000"}},"dur":153,"tdur":122,"tts":7202899},
-{"pid":27443,"tid":27459,"ts":326460365562,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":7202960},
-{"pid":27443,"tid":27459,"ts":326460365592,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7202991},
-{"pid":27443,"tid":27459,"ts":326460365592,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7203021},
-{"pid":27443,"tid":27459,"ts":326460365653,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2320,"tdur":2319,"tts":7203052},
-{"pid":27443,"tid":27459,"ts":326460365684,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7203082},
-{"pid":27443,"tid":27459,"ts":326460365684,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7203113},
-{"pid":27443,"tid":27459,"ts":326460365714,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7203113},
-{"pid":27443,"tid":27459,"ts":326460366111,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7203540},
-{"pid":27443,"tid":27459,"ts":326460366141,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7203540},
-{"pid":27443,"tid":27459,"ts":326460366172,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1801,"tdur":1801,"tts":7203570},
-{"pid":27443,"tid":27459,"ts":326460366202,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1588,"tdur":1587,"tts":7203601},
-{"pid":27443,"tid":27459,"ts":326460366202,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":367,"tdur":366,"tts":7203601},
-{"pid":27443,"tid":27459,"ts":326460366569,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7203967},
-{"pid":27443,"tid":27459,"ts":326460366752,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":92,"tts":7204150},
-{"pid":27443,"tid":27459,"ts":326460366843,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":7204272},
-{"pid":27443,"tid":27459,"ts":326460366874,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":916,"tdur":916,"tts":7204272},
-{"pid":27443,"tid":27459,"ts":326460367820,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7205218},
-{"pid":27443,"tid":27459,"ts":326460367851,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":92,"tts":7205249},
-{"pid":27443,"tid":27459,"ts":326460367973,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":135},"dur":213,"tdur":214,"tts":7205371},
-{"pid":27443,"tid":27459,"ts":326460367973,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":213,"tdur":214,"tts":7205371},
-{"pid":27443,"tid":27459,"ts":326460368217,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7205615,"id":"0x30000007e"},
-{"pid":27443,"tid":27459,"ts":326460368217,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7205615,"id":"0x30000007f"},
-{"pid":27443,"tid":27459,"ts":326460368217,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":92,"tts":7205615},
-{"pid":27443,"tid":27459,"ts":326460368247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7205646,"id":"0xaf88a788f182217a"},
-{"pid":27443,"tid":27459,"ts":326460368614,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7205737},
-{"pid":27443,"tid":27459,"ts":326460368675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7205829,"id":"0xaf88a693f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460368705,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5402,"tdur":4395,"tts":7205829},
-{"pid":27443,"tid":27459,"ts":326460368736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7205859,"id":"0xaf88a8b2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460368736,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":5371,"tdur":4365,"tts":7205859},
-{"pid":27443,"tid":27459,"ts":326460368797,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchEnd"},"dur":5280,"tdur":4273,"tts":7205920},
-{"pid":27443,"tid":27459,"ts":326460368797,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7205920,"id":"0x300000080"},
-{"pid":27443,"tid":27459,"ts":326460368827,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchend"},"dur":5067,"tdur":4090,"tts":7205951},
-{"pid":27443,"tid":27459,"ts":326460368858,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":5036,"tdur":4060,"tts":7205981},
-{"pid":27443,"tid":27459,"ts":326460368919,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7206043},
-{"pid":27443,"tid":27459,"ts":326460368949,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7206104},
-{"pid":27443,"tid":27459,"ts":326460368980,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7206134},
-{"pid":27443,"tid":27459,"ts":326460369041,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7206165},
-{"pid":27443,"tid":27459,"ts":326460369071,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchend"}},"dur":4792,"tdur":3815,"tts":7206195},
-{"pid":27443,"tid":27459,"ts":326460369193,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":4640,"tdur":3663,"tts":7206317},
-{"pid":27443,"tid":27459,"ts":326460369224,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7206348},
-{"pid":27443,"tid":27459,"ts":326460373802,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7209949},
-{"pid":27443,"tid":27459,"ts":326460373924,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":7210071},
-{"pid":27443,"tid":27459,"ts":326460373985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7210102,"id":"0xaf88aae2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460374046,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1382},"dur":31,"tdur":30,"tts":7210163},
-{"pid":27443,"tid":27459,"ts":326460374046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7210193,"id":"0xaf88aae3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460374199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7210254,"id":"0xaf88a6acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460374229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7210285},
-{"pid":27443,"tid":27459,"ts":326460374229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7210285,"id":"0xaf88a6aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460374260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7210315,"id":"0xaf88a8b3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460374260,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7210315},
-{"pid":27443,"tid":27477,"ts":326460368339,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":31,"tts":656004},
-{"pid":27443,"tid":27477,"ts":326460368369,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":977,"tdur":977,"tts":656035},
-{"pid":27443,"tid":27477,"ts":326460368369,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":977,"tdur":977,"tts":656035},
-{"pid":27443,"tid":27477,"ts":326460368400,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":656065},
-{"pid":27443,"tid":27477,"ts":326460368400,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":656065},
-{"pid":27443,"tid":27477,"ts":326460368400,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":656065,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460368430,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":656096},
-{"pid":27443,"tid":27477,"ts":326460368461,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":62,"tts":656126},
-{"pid":27443,"tid":27477,"ts":326460368583,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":733,"tdur":732,"tts":656249},
-{"pid":27443,"tid":27477,"ts":326460368583,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":135},"dur":214,"tdur":213,"tts":656249},
-{"pid":27443,"tid":27477,"ts":326460368797,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":135},"dur":61,"tdur":31,"tts":656462},
-{"pid":27443,"tid":27477,"ts":326460368858,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":135},"tts":656523},
-{"pid":27443,"tid":27477,"ts":326460368949,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":656615},
-{"pid":27443,"tid":27477,"ts":326460368949,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":367,"tdur":366,"tts":656615},
-{"pid":27443,"tid":27477,"ts":326460368949,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":656645},
-{"pid":27443,"tid":27477,"ts":326460369071,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":656737},
-{"pid":27443,"tid":27477,"ts":326460369102,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":656767},
-{"pid":27443,"tid":27477,"ts":326460369102,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":656767},
-{"pid":27443,"tid":27477,"ts":326460369102,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":153,"tts":656767},
-{"pid":27443,"tid":27477,"ts":326460369132,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":656798,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460369132,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":656798},
-{"pid":27443,"tid":27477,"ts":326460369163,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":656828},
-{"pid":27443,"tid":27477,"ts":326460369224,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":656890,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460369285,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":656951,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460369316,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":656981,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460369377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460369},"tts":657042,"id":"0xaf88a78ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460369377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":657042},
-{"pid":27443,"tid":27477,"ts":326460369407,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":657073},
-{"pid":27443,"tid":27477,"ts":326460369438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":657103,"id":"0xaf88a789f182217a"},
-{"pid":27443,"tid":27477,"ts":326460369438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":657103},
-{"pid":27443,"tid":27477,"ts":326460369438,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":657103},
-{"pid":27443,"tid":27477,"ts":326460369468,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":657134,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460369468,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":657134},
-{"pid":27443,"tid":27477,"ts":326460369499,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":657164,"id":"0xaf88a784f182217a"},
-{"pid":27443,"tid":27477,"ts":326460369529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":657195,"id":"0xaf88a78af182217a"},
-{"pid":27443,"tid":27477,"ts":326460369529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":657195},
-{"pid":27443,"tid":27477,"ts":326460369529,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":657195},
-{"pid":27443,"tid":27477,"ts":326460369560,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":657225,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460369560,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":657225},
-{"pid":27443,"tid":27477,"ts":326460369590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":657256,"id":"0xaf88a785f182217a"},
-{"pid":27443,"tid":27477,"ts":326460369621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":657286,"id":"0xaf88a78bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460369621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":657286},
-{"pid":27443,"tid":27477,"ts":326460369651,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":657317},
-{"pid":27443,"tid":27477,"ts":326460369651,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":657317,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460369682,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":657347},
-{"pid":27443,"tid":27477,"ts":326460369712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":657378,"id":"0xaf88a784f182217a"},
-{"pid":27443,"tid":27477,"ts":326460369712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1374,"tdur":1221,"tts":657378},
-{"pid":27443,"tid":27477,"ts":326460369712,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1374,"tdur":1221,"tts":657378},
-{"pid":27443,"tid":27477,"ts":326460369743,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":657408},
-{"pid":27443,"tid":27477,"ts":326460369743,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":657408},
-{"pid":27443,"tid":27477,"ts":326460369773,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":657439},
-{"pid":27443,"tid":27477,"ts":326460369804,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":657469},
-{"pid":27443,"tid":27477,"ts":326460369895,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1038,"tts":657561},
-{"pid":27443,"tid":27477,"ts":326460369895,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1038,"tts":657561},
-{"pid":27443,"tid":27477,"ts":326460369895,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1191,"tdur":1038,"tts":657561},
-{"pid":27443,"tid":27477,"ts":326460369926,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":657591,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460370048,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":657714},
-{"pid":27443,"tid":27477,"ts":326460370079,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":657744},
-{"pid":27443,"tid":27477,"ts":326460370109,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":657775},
-{"pid":27443,"tid":27477,"ts":326460370109,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":657775},
-{"pid":27443,"tid":27477,"ts":326460370292,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":657836},
-{"pid":27443,"tid":27477,"ts":326460370323,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":657836},
-{"pid":27443,"tid":27477,"ts":326460370353,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":657866},
-{"pid":27443,"tid":27477,"ts":326460370384,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":657897},
-{"pid":27443,"tid":27477,"ts":326460370414,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":657927},
-{"pid":27443,"tid":27477,"ts":326460370445,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":657958},
-{"pid":27443,"tid":27477,"ts":326460370475,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":657988},
-{"pid":27443,"tid":27477,"ts":326460370506,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658019},
-{"pid":27443,"tid":27477,"ts":326460370536,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":658049},
-{"pid":27443,"tid":27477,"ts":326460370567,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658080},
-{"pid":27443,"tid":27477,"ts":326460370597,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658110},
-{"pid":27443,"tid":27477,"ts":326460370628,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658141},
-{"pid":27443,"tid":27477,"ts":326460370658,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658171},
-{"pid":27443,"tid":27477,"ts":326460370658,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":658202},
-{"pid":27443,"tid":27477,"ts":326460370719,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658232},
-{"pid":27443,"tid":27477,"ts":326460370719,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":658232},
-{"pid":27443,"tid":27477,"ts":326460370811,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658324},
-{"pid":27443,"tid":27477,"ts":326460370842,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658354},
-{"pid":27443,"tid":27477,"ts":326460370842,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":658354},
-{"pid":27443,"tid":27477,"ts":326460370872,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":658385},
-{"pid":27443,"tid":27477,"ts":326460370903,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":658416},
-{"pid":27443,"tid":27477,"ts":326460370903,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":658416},
-{"pid":27443,"tid":27477,"ts":326460370933,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":658446},
-{"pid":27443,"tid":27477,"ts":326460370994,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":658507},
-{"pid":27443,"tid":27477,"ts":326460371025,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":658538},
-{"pid":27443,"tid":27477,"ts":326460371025,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":658568},{"pid":27443,"tid":27477,"ts":326460371055,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":658568},
-{"pid":27443,"tid":27477,"ts":326460371116,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":658629,"id":"0xaf88a785f182217a"},
-{"pid":27443,"tid":27477,"ts":326460371116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":658629},
-{"pid":27443,"tid":27477,"ts":326460371116,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":658629},
-{"pid":27443,"tid":27477,"ts":326460371147,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":658660},
-{"pid":27443,"tid":27477,"ts":326460371147,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":658660},
-{"pid":27443,"tid":27477,"ts":326460371147,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":658660},
-{"pid":27443,"tid":27477,"ts":326460371177,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":658690},
-{"pid":27443,"tid":27477,"ts":326460371208,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":658721},
-{"pid":27443,"tid":27477,"ts":326460371238,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":658751},
-{"pid":27443,"tid":27477,"ts":326460371544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":658812,"id":"0xaf88a786f182217a"},
-{"pid":27443,"tid":27477,"ts":326460371574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":152,"tts":658843},
-{"pid":27443,"tid":27477,"ts":326460371605,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460374999.0,"frame_time_us":326460369176.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":658873},
-{"pid":27443,"tid":27477,"ts":326460371605,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460374999.0,"frame_time_us":326460369176.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":658904},
-{"pid":27443,"tid":27477,"ts":326460371666,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":658934},
-{"pid":27443,"tid":27477,"ts":326460371696,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":658965},
-{"pid":27443,"tid":27477,"ts":326460371727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":658995,"id":"0xaf88a787f182217a"},
-{"pid":27443,"tid":27477,"ts":326460371757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":659026,"id":"0xaf88a787f182217a"},
-{"pid":27443,"tid":27477,"ts":326460371757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2686,"tdur":1953,"tts":659026},
-{"pid":27443,"tid":27477,"ts":326460371788,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2624,"tdur":1893,"tts":659056},
-{"pid":27443,"tid":27477,"ts":326460371788,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2289,"tdur":1557,"tts":659056},
-{"pid":27443,"tid":27477,"ts":326460371818,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":135},"dur":824,"tdur":824,"tts":659087},
-{"pid":27443,"tid":27477,"ts":326460371849,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":135},"dur":244,"tdur":214,"tts":659117},
-{"pid":27443,"tid":27477,"ts":326460372093,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":135},"dur":30,"tdur":30,"tts":659362},
-{"pid":27443,"tid":27477,"ts":326460372123,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":135},"tts":659392},
-{"pid":27443,"tid":27477,"ts":326460372184,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":659484},
-{"pid":27443,"tid":27477,"ts":326460372215,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":659484},
-{"pid":27443,"tid":27477,"ts":326460372215,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":659484},
-{"pid":27443,"tid":27477,"ts":326460372245,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":659514},
-{"pid":27443,"tid":27477,"ts":326460372245,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":659514,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460372307,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":659575},
-{"pid":27443,"tid":27477,"ts":326460372612,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":659881},
-{"pid":27443,"tid":27477,"ts":326460372642,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1038,"tdur":305,"tts":659911},
-{"pid":27443,"tid":27477,"ts":326460372642,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":659911},
-{"pid":27443,"tid":27477,"ts":326460372673,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":946,"tdur":213,"tts":659942},
-{"pid":27443,"tid":27477,"ts":326460372764,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":660033},
-{"pid":27443,"tid":27477,"ts":326460372795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":660064,"id":"0xaf88aae0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460373649,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":660186,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460373710,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":660247,"id":"0x30000007e"},
-{"pid":27443,"tid":27477,"ts":326460373710,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":660247,"id":"0x30000007f"},
-{"pid":27443,"tid":27477,"ts":326460373710,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":306,"tdur":305,"tts":660247},
-{"pid":27443,"tid":27477,"ts":326460373924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":660460,"id":"0xaf88aae1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460374016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":660552,"id":"0xaf88a8b3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460374046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":660582,"id":"0xaf88a6aef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460374077,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":335,"tdur":336,"tts":660613},
-{"pid":27443,"tid":27477,"ts":326460374077,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":335,"tdur":336,"tts":660613},
-{"pid":27443,"tid":27477,"ts":326460374107,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":660644},
-{"pid":27443,"tid":27477,"ts":326460374199,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":660735},
-{"pid":27443,"tid":27477,"ts":326460374229,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":660766},
-{"pid":27443,"tid":27477,"ts":326460374229,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":660766},
-{"pid":27443,"tid":27477,"ts":326460374229,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":660766},
-{"pid":27443,"tid":27477,"ts":326460374260,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":660796,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460374260,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":660796},
-{"pid":27443,"tid":27477,"ts":326460374290,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":660827},
-{"pid":27443,"tid":27477,"ts":326460374351,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":660888,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460374382,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":660918,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460374382,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":660918,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460374473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661010,"id":"0xaf88a780f182217a"},
-{"pid":27443,"tid":27477,"ts":326460374473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":184,"tdur":152,"tts":661010},
-{"pid":27443,"tid":27477,"ts":326460374473,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":184,"tdur":122,"tts":661040},
-{"pid":27443,"tid":27477,"ts":326460374535,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":661071,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460374535,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":122,"tdur":61,"tts":661071},
-{"pid":27443,"tid":27477,"ts":326460374596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":661101,"id":"0xaf88a783f182217a"},
-{"pid":27443,"tid":27477,"ts":326460374657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661162,"id":"0xaf88a781f182217a"},
-{"pid":27443,"tid":27477,"ts":326460374687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":661162},
-{"pid":27443,"tid":27477,"ts":326460374687,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":661162},
-{"pid":27443,"tid":27477,"ts":326460374718,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":661193,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460374718,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":661193},
-{"pid":27443,"tid":27477,"ts":326460374748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":661223,"id":"0xaf88a79cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460374748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661223,"id":"0xaf88a782f182217a"},
-{"pid":27443,"tid":27477,"ts":326460374779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":661254},
-{"pid":27443,"tid":27477,"ts":326460374779,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":661254},
-{"pid":27443,"tid":27477,"ts":326460374779,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":661254,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460374809,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":661284},
-{"pid":27443,"tid":27477,"ts":326460374809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661315,"id":"0xaf88a783f182217a"},
-{"pid":27443,"tid":27477,"ts":326460374840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":661315},
-{"pid":27443,"tid":27477,"ts":326460374840,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":153,"tts":661315},
-{"pid":27443,"tid":27477,"ts":326460374840,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":0,"tts":661345},
-{"pid":27443,"tid":27477,"ts":326460374870,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":661345},
-{"pid":27443,"tid":27477,"ts":326460374901,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":661376},
-{"pid":27443,"tid":27477,"ts":326460374901,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":661376},
-{"pid":27443,"tid":27477,"ts":326460374962,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":661437},
-{"pid":27443,"tid":27477,"ts":326460374962,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":661437},
-{"pid":27443,"tid":27477,"ts":326460375023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661498,"id":"0xaf88a79cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460375023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":661498},
-{"pid":27443,"tid":27477,"ts":326460375023,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":661498},
-{"pid":27443,"tid":27477,"ts":326460375023,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":661498},
-{"pid":27443,"tid":27477,"ts":326460375053,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":661529},
-{"pid":27443,"tid":27477,"ts":326460375084,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":31,"tts":661559},
-{"pid":27443,"tid":27477,"ts":326460375084,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":661559},
-{"pid":27443,"tid":27477,"ts":326460375114,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":661590},
-{"pid":27443,"tid":27477,"ts":326460375145,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":661620},
-{"pid":27443,"tid":27477,"ts":326460376366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661651,"id":"0xaf88a79df182217a"},
-{"pid":27443,"tid":27477,"ts":326460376366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":661651},
-{"pid":27443,"tid":27477,"ts":326460376396,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":661681},
-{"pid":27443,"tid":27477,"ts":326460376396,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":661681,"id":"0x300000081"},
-{"pid":27443,"tid":27477,"ts":326460376427,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":661712},
-{"pid":27443,"tid":27477,"ts":326460376427,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":661712,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460376457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":661742,"id":"0xaf88a94cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460376488,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":661773,"id":"0xaf88a6a8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460377403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661864,"id":"0xaf88a79ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460377434,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":661895},
-{"pid":27443,"tid":27477,"ts":326460377434,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":30,"tts":661895},
-{"pid":27443,"tid":27477,"ts":326460377617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":661956,"id":"0xaf88a79ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460377648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":335,"tdur":122,"tts":661986},
-{"pid":27443,"tid":27477,"ts":326460377678,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":305,"tdur":91,"tts":662017},
-{"pid":27443,"tid":27459,"ts":326460374260,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7210315},
-{"pid":27443,"tid":27459,"ts":326460374412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7210376,"id":"0xaf88a6adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460374443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7210407},
-{"pid":27443,"tid":27459,"ts":326460374473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7210437,"id":"0xaf88a6aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460374473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7210437},
-{"pid":27443,"tid":27459,"ts":326460374504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7210468,"id":"0xaf88a6aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460374535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7210499},
-{"pid":27443,"tid":27459,"ts":326460376549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7210621,"id":"0xaf88a6a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460376549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1038,"tdur":1037,"tts":7210621},
-{"pid":27443,"tid":27459,"ts":326460376579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7210651,"id":"0xaf88a6a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460376579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7210651,"id":"0xaf88a94cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460376579,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1008,"tdur":1007,"tts":7210651},
-{"pid":27443,"tid":27459,"ts":326460376671,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":885,"tdur":885,"tts":7210743},
-{"pid":27443,"tid":27459,"ts":326460376671,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7210743,"id":"0x300000081"},
-{"pid":27443,"tid":27459,"ts":326460376701,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":794,"tdur":794,"tts":7210773},
-{"pid":27443,"tid":27459,"ts":326460376732,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":763,"tdur":763,"tts":7210804},
-{"pid":27443,"tid":27459,"ts":326460376762,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7210865},
-{"pid":27443,"tid":27459,"ts":326460376824,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7210895},
-{"pid":27443,"tid":27459,"ts":326460376854,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7210926},
-{"pid":27443,"tid":27459,"ts":326460376885,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7210956},
-{"pid":27443,"tid":27459,"ts":326460376915,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":549,"tdur":549,"tts":7210987},
-{"pid":27443,"tid":27459,"ts":326460377037,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7211109},
-{"pid":27443,"tid":27459,"ts":326460377068,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7211139},
-{"pid":27443,"tid":27459,"ts":326460377312,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":101,"frame":"0x78c60000"}},"tts":7211414,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460377342,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7211414},
-{"pid":27443,"tid":27459,"ts":326460377373,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7211445,"id":"0xaf88a79ef182217a"},
-{"pid":27443,"tid":27459,"ts":326460377403,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7211475},
-{"pid":27443,"tid":27459,"ts":326460377495,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":31,"tts":7211597},
-{"pid":27443,"tid":27459,"ts":326460377526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7211597,"id":"0xaf88aafcf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460377617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7211689,"id":"0xaf88a6a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460377617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7211689},
-{"pid":27443,"tid":27459,"ts":326460377648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7211719,"id":"0xaf88a6abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460377648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7211719,"id":"0xaf88a94df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460377678,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":7211750},
-{"pid":27443,"tid":27459,"ts":326460377678,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":942},"dur":31,"tdur":30,"tts":7211750},
-{"pid":27443,"tid":27459,"ts":326460377739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7211811,"id":"0xaf88a6aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460377770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7211841},
-{"pid":27443,"tid":27459,"ts":326460377800,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7211872,"id":"0xaf88a6abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460377800,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7211872},
-{"pid":27443,"tid":27459,"ts":326460378014,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7211994,"id":"0xaf88a6a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460378014,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7211994},
-{"pid":27443,"tid":27459,"ts":326460378075,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7211994},
-{"pid":27443,"tid":27459,"ts":326460378105,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7212025,"id":"0xaf88a6a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460378105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7212025,"id":"0xaf88a94ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460378136,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7212055},
-{"pid":27443,"tid":27459,"ts":326460378136,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":7212055},
-{"pid":27443,"tid":27459,"ts":326460378197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7212116,"id":"0xaf88a6a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460378197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7212116},
-{"pid":27443,"tid":27459,"ts":326460385644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7212208,"id":"0xaf88a6a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460385644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1587,"tdur":1312,"tts":7212208},
-{"pid":27443,"tid":27459,"ts":326460385674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7212238,"id":"0xaf88a6a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460385674,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7212269,"id":"0xaf88a94ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460385705,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1495,"tdur":1221,"tts":7212269},
-{"pid":27443,"tid":27459,"ts":326460385766,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1434,"tdur":1160,"tts":7212330},
-{"pid":27443,"tid":27459,"ts":326460385766,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7212360,"id":"0x300000082"},
-{"pid":27443,"tid":27459,"ts":326460385797,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1098,"tdur":946,"tts":7212360},
-{"pid":27443,"tid":27459,"ts":326460385827,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1068,"tdur":915,"tts":7212391},
-{"pid":27443,"tid":27459,"ts":326460385919,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7212482},
-{"pid":27443,"tid":27459,"ts":326460385949,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7212513},
-{"pid":27443,"tid":27459,"ts":326460385980,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7212574},
-{"pid":27443,"tid":27459,"ts":326460386010,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7212574},
-{"pid":27443,"tid":27459,"ts":326460386071,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":794,"tdur":641,"tts":7212635},
-{"pid":27443,"tid":27459,"ts":326460386224,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":610,"tdur":427,"tts":7212818},
-{"pid":27443,"tid":27459,"ts":326460386254,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7212818},
-{"pid":27443,"tid":27477,"ts":326460377678,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":662017},
-{"pid":27443,"tid":27477,"ts":326460377922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":662047,"id":"0xaf88a94ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460377953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":662078,"id":"0xaf88a6a4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460385461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":662170,"id":"0xaf88a798f182217a"},
-{"pid":27443,"tid":27477,"ts":326460385461,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":662170},
-{"pid":27443,"tid":27477,"ts":326460385491,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":662200},
-{"pid":27443,"tid":27477,"ts":326460385491,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":662200,"id":"0x300000082"},
-{"pid":27443,"tid":27477,"ts":326460385522,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":662231},
-{"pid":27443,"tid":27477,"ts":326460385552,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":662261,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460385583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":662292,"id":"0xaf88a94ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460385583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":662292,"id":"0xaf88a6a6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460386804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":662353,"id":"0xaf88a799f182217a"},
-{"pid":27443,"tid":27477,"ts":326460386834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":550,"tdur":305,"tts":662383},
-{"pid":27443,"tid":27477,"ts":326460386865,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460391681.0,"frame_time_us":326460385858.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":488,"tdur":244,"tts":662414},
-{"pid":27443,"tid":27477,"ts":326460386895,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460391681.0,"frame_time_us":326460385858.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":458,"tdur":214,"tts":662444},
-{"pid":27443,"tid":27477,"ts":326460386895,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":136},"tts":662444},
-{"pid":27443,"tid":27477,"ts":326460387017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":662566,"id":"0xaf88a948f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460387048,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":662597,"id":"0xaf88a6a0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460387048,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":662597},
-{"pid":27443,"tid":27477,"ts":326460387078,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460402524},"dur":31,"tdur":31,"tts":662627},
-{"pid":27443,"tid":27477,"ts":326460387109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":662658,"id":"0xaf88a79af182217a"},
-{"pid":27443,"tid":27477,"ts":326460390558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":662749,"id":"0xaf88a79bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460390558,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":662749},
-{"pid":27443,"tid":27477,"ts":326460390588,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":662780},
-{"pid":27443,"tid":27477,"ts":326460390588,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":662780,"id":"0x300000083"},
-{"pid":27443,"tid":27477,"ts":326460390619,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchEnd"},"dur":0,"tdur":0,"tts":662810},
-{"pid":27443,"tid":27477,"ts":326460390649,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":662841,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460390649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":662872,"id":"0xaf88a949f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460390680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":662872,"id":"0xaf88a6a2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460396173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":662933,"id":"0xaf88a794f182217a"},
-{"pid":27443,"tid":27477,"ts":326460396173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":947,"tdur":946,"tts":662933},
-{"pid":27443,"tid":27477,"ts":326460396173,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":947,"tdur":946,"tts":662933},
-{"pid":27443,"tid":27477,"ts":326460396204,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":662963},
-{"pid":27443,"tid":27477,"ts":326460396204,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":916,"tdur":916,"tts":662963},
-{"pid":27443,"tid":27477,"ts":326460396204,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":916,"tdur":916,"tts":662963},
-{"pid":27443,"tid":27477,"ts":326460396234,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":662994},
-{"pid":27443,"tid":27477,"ts":326460396234,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":662994},
-{"pid":27443,"tid":27477,"ts":326460396234,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":663024,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460396265,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":663024},
-{"pid":27443,"tid":27477,"ts":326460396296,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":663055},
-{"pid":27443,"tid":27477,"ts":326460396387,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":702,"tdur":671,"tts":663177},
-{"pid":27443,"tid":27477,"ts":326460396418,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":136},"dur":213,"tdur":213,"tts":663177},
-{"pid":27443,"tid":27477,"ts":326460396631,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":136},"dur":31,"tdur":31,"tts":663390},
-{"pid":27443,"tid":27477,"ts":326460396692,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":136},"tts":663451},
-{"pid":27443,"tid":27477,"ts":326460396753,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":663543},
-{"pid":27443,"tid":27477,"ts":326460396784,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":663543},
-{"pid":27443,"tid":27477,"ts":326460396784,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":663543},
-{"pid":27443,"tid":27477,"ts":326460396814,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":663573},
-{"pid":27443,"tid":27477,"ts":326460396906,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":663665},
-{"pid":27443,"tid":27477,"ts":326460396936,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":663696},
-{"pid":27443,"tid":27477,"ts":326460396936,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":122,"tts":663696},
-{"pid":27443,"tid":27477,"ts":326460396936,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":663696},
-{"pid":27443,"tid":27477,"ts":326460396967,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":663726,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460396967,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":663726},
-{"pid":27443,"tid":27477,"ts":326460396998,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":663757},
-{"pid":27443,"tid":27477,"ts":326460397028,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":663787,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460397059,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":663818,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460397089,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":663848,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460397120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":663909,"id":"0xaf88a795f182217a"},
-{"pid":27443,"tid":27477,"ts":326460397150,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":663909},
-{"pid":27443,"tid":27477,"ts":326460397150,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":663909},
-{"pid":27443,"tid":27477,"ts":326460397181,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":663940,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460397181,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":663940},
-{"pid":27443,"tid":27477,"ts":326460397181,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":663940,"id":"0xaf88a790f182217a"},
-{"pid":27443,"tid":27459,"ts":326460386590,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":102,"frame":"0x78c60000"}},"tts":7213184,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460386651,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7213215},
-{"pid":27443,"tid":27459,"ts":326460386651,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":7213215},
-{"pid":27443,"tid":27459,"ts":326460386926,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":122,"tts":7213337},
-{"pid":27443,"tid":27459,"ts":326460386956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7213367,"id":"0xaf88aafdf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460387262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7213551,"id":"0xaf88a6a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460387262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9278,"tdur":8850,"tts":7213551},
-{"pid":27443,"tid":27459,"ts":326460387292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7213581,"id":"0xaf88a6a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460387292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7213581,"id":"0xaf88a948f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460387323,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9186,"tdur":8789,"tts":7213612},
-{"pid":27443,"tid":27459,"ts":326460387323,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":136},"tts":7213612},
-{"pid":27443,"tid":27459,"ts":326460387353,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7213642},
-{"pid":27443,"tid":27459,"ts":326460387414,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6135,"tdur":5982,"tts":7213703},
-{"pid":27443,"tid":27459,"ts":326460387445,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7213734},
-{"pid":27443,"tid":27459,"ts":326460387506,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":101,"frame":"0x78c60000"}},"dur":5860,"tdur":5707,"tts":7213795},
-{"pid":27443,"tid":27459,"ts":326460387567,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5799,"tdur":5646,"tts":7213856},
-{"pid":27443,"tid":27459,"ts":326460387597,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7213886},
-{"pid":27443,"tid":27459,"ts":326460393335,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7219472},
-{"pid":27443,"tid":27459,"ts":326460393396,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":102,"frame":"0x78c60000"}},"dur":153,"tdur":152,"tts":7219533},
-{"pid":27443,"tid":27459,"ts":326460393457,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":31,"tts":7219624},
-{"pid":27443,"tid":27459,"ts":326460393488,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7219624},
-{"pid":27443,"tid":27459,"ts":326460393518,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7219655},
-{"pid":27443,"tid":27459,"ts":326460393549,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2289,"tdur":2289,"tts":7219685},
-{"pid":27443,"tid":27459,"ts":326460393579,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7219716},
-{"pid":27443,"tid":27459,"ts":326460393610,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7219746},
-{"pid":27443,"tid":27459,"ts":326460393610,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7219746},
-{"pid":27443,"tid":27459,"ts":326460394037,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7220173},
-{"pid":27443,"tid":27459,"ts":326460394068,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7220204},
-{"pid":27443,"tid":27459,"ts":326460394098,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1740,"tdur":1739,"tts":7220235},
-{"pid":27443,"tid":27459,"ts":326460394098,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1587,"tdur":1557,"tts":7220265},
-{"pid":27443,"tid":27459,"ts":326460394129,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":335,"tdur":336,"tts":7220265},
-{"pid":27443,"tid":27459,"ts":326460394464,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":153,"tts":7220631},
-{"pid":27443,"tid":27459,"ts":326460394647,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":61,"tts":7220814},
-{"pid":27443,"tid":27459,"ts":326460394739,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":7220875},
-{"pid":27443,"tid":27459,"ts":326460394770,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":885,"tdur":885,"tts":7220906},
-{"pid":27443,"tid":27459,"ts":326460395685,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7221822},
-{"pid":27443,"tid":27459,"ts":326460395716,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":92,"tts":7221852},
-{"pid":27443,"tid":27459,"ts":326460395838,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":136},"dur":244,"tdur":214,"tts":7221974},
-{"pid":27443,"tid":27459,"ts":326460395868,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":183,"tdur":183,"tts":7222005},
-{"pid":27443,"tid":27459,"ts":326460396082,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7222218,"id":"0x300000081"},
-{"pid":27443,"tid":27459,"ts":326460396082,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7222218,"id":"0x300000082"},
-{"pid":27443,"tid":27459,"ts":326460396082,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":92,"tts":7222218},
-{"pid":27443,"tid":27459,"ts":326460396112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7222249,"id":"0xaf88a794f182217a"},
-{"pid":27443,"tid":27459,"ts":326460396448,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":6076},"tts":7222371,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460396479,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7222371,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460396509,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7222401},
-{"pid":27443,"tid":27459,"ts":326460396570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7222463,"id":"0xaf88a6a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460396570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122692,"tdur":118968,"tts":7222463},
-{"pid":27443,"tid":27459,"ts":326460396601,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7222493,"id":"0xaf88a949f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460396601,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":122661,"tdur":118938,"tts":7222493},
-{"pid":27443,"tid":27459,"ts":326460396662,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchEnd"},"dur":122570,"tdur":118846,"tts":7222554},
-{"pid":27443,"tid":27459,"ts":326460396662,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7222554,"id":"0x300000083"},
-{"pid":27443,"tid":27459,"ts":326460396692,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchend"},"dur":122387,"tdur":118663,"tts":7222585},
-{"pid":27443,"tid":27459,"ts":326460396723,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":122356,"tdur":118633,"tts":7222615},
-{"pid":27443,"tid":27459,"ts":326460396753,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7222646},
-{"pid":27443,"tid":27459,"ts":326460396814,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7222707},
-{"pid":27443,"tid":27459,"ts":326460396845,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchend"}},"dur":122203,"tdur":118480,"tts":7222737},
-{"pid":27443,"tid":27459,"ts":326460396967,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":122020,"tdur":118297,"tts":7222859},
-{"pid":27443,"tid":27459,"ts":326460396998,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7222890},
-{"pid":27443,"tid":27459,"ts":326460405818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7231252,"id":"0xaf88a944f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460405848,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7231283,"id":"0xaf88a6bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460405909,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":149,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7231344,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460408229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7233663,"id":"0xaf88a945f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460408290,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":150,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7233725,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460397211,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":663970,"id":"0xaf88a796f182217a"},
-{"pid":27443,"tid":27477,"ts":326460397242,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":664001},
-{"pid":27443,"tid":27477,"ts":326460397242,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":30,"tts":664001},
-{"pid":27443,"tid":27477,"ts":326460397242,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":664001,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460397242,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":0,"tts":664031},
-{"pid":27443,"tid":27477,"ts":326460397272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":664031,"id":"0xaf88a791f182217a"},
-{"pid":27443,"tid":27477,"ts":326460397303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":664062,"id":"0xaf88a797f182217a"},
-{"pid":27443,"tid":27477,"ts":326460397303,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":664062},
-{"pid":27443,"tid":27477,"ts":326460397303,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":664062},
-{"pid":27443,"tid":27477,"ts":326460397303,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":664062,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460397333,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":664092},
-{"pid":27443,"tid":27477,"ts":326460397333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":664092,"id":"0xaf88a790f182217a"},
-{"pid":27443,"tid":27477,"ts":326460397364,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":885,"tdur":885,"tts":664123},
-{"pid":27443,"tid":27477,"ts":326460397364,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":885,"tdur":885,"tts":664123},
-{"pid":27443,"tid":27477,"ts":326460397364,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":664123},
-{"pid":27443,"tid":27477,"ts":326460397364,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":664123},
-{"pid":27443,"tid":27477,"ts":326460397394,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":664153},
-{"pid":27443,"tid":27477,"ts":326460397394,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":664153},
-{"pid":27443,"tid":27477,"ts":326460397455,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":794,"tdur":794,"tts":664214},
-{"pid":27443,"tid":27477,"ts":326460397486,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":763,"tdur":763,"tts":664245},
-{"pid":27443,"tid":27477,"ts":326460397486,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":732,"tdur":732,"tts":664245},
-{"pid":27443,"tid":27477,"ts":326460397486,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":664245,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460397577,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664336},
-{"pid":27443,"tid":27477,"ts":326460397577,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":664336},
-{"pid":27443,"tid":27477,"ts":326460397608,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":664367},
-{"pid":27443,"tid":27477,"ts":326460397638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664398},
-{"pid":27443,"tid":27477,"ts":326460397638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":664398},
-{"pid":27443,"tid":27477,"ts":326460397669,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664428},
-{"pid":27443,"tid":27477,"ts":326460397669,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":664428},
-{"pid":27443,"tid":27477,"ts":326460397699,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664459},
-{"pid":27443,"tid":27477,"ts":326460397730,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664489},
-{"pid":27443,"tid":27477,"ts":326460397730,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664489},
-{"pid":27443,"tid":27477,"ts":326460397761,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664520},
-{"pid":27443,"tid":27477,"ts":326460397761,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":664520},
-{"pid":27443,"tid":27477,"ts":326460397791,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664550},
-{"pid":27443,"tid":27477,"ts":326460397791,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":664550},
-{"pid":27443,"tid":27477,"ts":326460397822,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664581},
-{"pid":27443,"tid":27477,"ts":326460397852,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664611},
-{"pid":27443,"tid":27477,"ts":326460397852,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":664611},
-{"pid":27443,"tid":27477,"ts":326460397883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664642},
-{"pid":27443,"tid":27477,"ts":326460397883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":664642},
-{"pid":27443,"tid":27477,"ts":326460397913,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664672},
-{"pid":27443,"tid":27477,"ts":326460397974,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664733},
-{"pid":27443,"tid":27477,"ts":326460397974,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":664733},
-{"pid":27443,"tid":27477,"ts":326460398005,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664764},
-{"pid":27443,"tid":27477,"ts":326460398035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664794},
-{"pid":27443,"tid":27477,"ts":326460398035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":664794},
-{"pid":27443,"tid":27477,"ts":326460398066,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664825},
-{"pid":27443,"tid":27477,"ts":326460398096,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":664855},
-{"pid":27443,"tid":27477,"ts":326460398127,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":664886},
-{"pid":27443,"tid":27477,"ts":326460398157,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":664916},
-{"pid":27443,"tid":27477,"ts":326460398157,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":664916},
-{"pid":27443,"tid":27477,"ts":326460398188,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":0,"tts":664947},
-{"pid":27443,"tid":27477,"ts":326460398218,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":664977},
-{"pid":27443,"tid":27477,"ts":326460398218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":664977,"id":"0xaf88a792f182217a"},
-{"pid":27443,"tid":27477,"ts":326460398249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":665008,"id":"0xaf88a791f182217a"},
-{"pid":27443,"tid":27477,"ts":326460398279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":92,"tdur":92,"tts":665038},
-{"pid":27443,"tid":27477,"ts":326460398279,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":665038},
-{"pid":27443,"tid":27477,"ts":326460398279,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":665038},
-{"pid":27443,"tid":27477,"ts":326460398279,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":665038},
-{"pid":27443,"tid":27477,"ts":326460398310,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":30,"tts":665069},
-{"pid":27443,"tid":27477,"ts":326460398310,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":665069},
-{"pid":27443,"tid":27477,"ts":326460398340,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":665099},
-{"pid":27443,"tid":27477,"ts":326460398371,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":665130},
-{"pid":27443,"tid":27477,"ts":326460398401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":665161,"id":"0xaf88a792f182217a"},
-{"pid":27443,"tid":27477,"ts":326460398401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2259,"tdur":1465,"tts":665161},
-{"pid":27443,"tid":27477,"ts":326460398401,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2259,"tdur":1435,"tts":665191},
-{"pid":27443,"tid":27477,"ts":326460398432,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":665191},
-{"pid":27443,"tid":27477,"ts":326460398432,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2197,"tdur":1404,"tts":665191},
-{"pid":27443,"tid":27477,"ts":326460398462,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":136},"dur":702,"tdur":702,"tts":665222},
-{"pid":27443,"tid":27477,"ts":326460398493,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":136},"dur":183,"tdur":183,"tts":665252},
-{"pid":27443,"tid":27477,"ts":326460398676,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":136},"dur":31,"tdur":31,"tts":665435},
-{"pid":27443,"tid":27477,"ts":326460398707,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":136},"tts":665466},
-{"pid":27443,"tid":27477,"ts":326460398798,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":665557},
-{"pid":27443,"tid":27477,"ts":326460398798,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":665557},
-{"pid":27443,"tid":27477,"ts":326460398798,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":665557},
-{"pid":27443,"tid":27477,"ts":326460398798,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":665588},
-{"pid":27443,"tid":27477,"ts":326460398829,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":665588,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460398890,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":665649},
-{"pid":27443,"tid":27477,"ts":326460399164,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":665924},
-{"pid":27443,"tid":27477,"ts":326460399195,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":732,"tdur":275,"tts":665954},
-{"pid":27443,"tid":27477,"ts":326460399195,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":665954},
-{"pid":27443,"tid":27477,"ts":326460399225,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":183,"tts":665985},
-{"pid":27443,"tid":27477,"ts":326460399287,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":30,"tdur":0,"tts":666076},
-{"pid":27443,"tid":27477,"ts":326460399348,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":666107,"id":"0xaf88aafef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460399897,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":666198,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460399927,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":666229,"id":"0x300000081"},
-{"pid":27443,"tid":27477,"ts":326460399958,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":666259,"id":"0x300000082"},
-{"pid":27443,"tid":27477,"ts":326460399958,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":610,"tdur":275,"tts":666259},
-{"pid":27443,"tid":27477,"ts":326460400507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":666473,"id":"0xaf88aafff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460400599,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":666564,"id":"0xaf88a94af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460400599,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":666564,"id":"0xaf88a6a3f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460402705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460402},"tts":666717,"id":"0xaf88a79af182217a"},
-{"pid":27443,"tid":27477,"ts":326460402705,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":666717},
-{"pid":27443,"tid":27477,"ts":326460403254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":666809,"id":"0xaf88a793f182217a"},
-{"pid":27443,"tid":27477,"ts":326460403254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":666809},
-{"pid":27443,"tid":27477,"ts":326460403285,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":666870},
-{"pid":27443,"tid":27477,"ts":326460403315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":666870,"id":"0xaf88a94bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460408595,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":666961,"id":"0xaf88a7acf182217a"},
-{"pid":27443,"tid":27477,"ts":326460408595,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":666961},
-{"pid":27443,"tid":27477,"ts":326460408626,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460408362.0,"frame_time_us":326460402539.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":152,"tts":666992},
-{"pid":27443,"tid":27477,"ts":326460408656,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460408362.0,"frame_time_us":326460402539.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":122,"tdur":122,"tts":667022},
-{"pid":27443,"tid":27477,"ts":326460408717,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460419205},"dur":31,"tdur":31,"tts":667083},
-{"pid":27443,"tid":27477,"ts":326460408748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":667114,"id":"0xaf88a7adf182217a"},
-{"pid":27443,"tid":27477,"ts":326460413845,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":667236,"id":"0xaf88a7aef182217a"},
-{"pid":27443,"tid":27477,"ts":326460413875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":153,"tts":667236},
-{"pid":27443,"tid":27477,"ts":326460413875,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":122,"tts":667236},
-{"pid":27443,"tid":27477,"ts":326460413906,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":137},"tts":667266},
-{"pid":27443,"tid":27477,"ts":326460413967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":667327,"id":"0xaf88a946f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460413997,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":667358},
-{"pid":27443,"tid":27477,"ts":326460419308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460419},"tts":667480,"id":"0xaf88a7adf182217a"},
-{"pid":27443,"tid":27477,"ts":326460419338,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":550,"tdur":458,"tts":667480},
-{"pid":27443,"tid":27477,"ts":326460419338,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":550,"tdur":458,"tts":667480},
-{"pid":27443,"tid":27477,"ts":326460419369,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":519,"tdur":427,"tts":667511},
-{"pid":27443,"tid":27477,"ts":326460419369,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":488,"tdur":396,"tts":667511},
-{"pid":27443,"tid":27477,"ts":326460419399,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":61,"tts":667541},
-{"pid":27443,"tid":27477,"ts":326460419552,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":667602},
-{"pid":27443,"tid":27477,"ts":326460419583,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":667633},
-{"pid":27443,"tid":27477,"ts":326460419613,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":667663},
-{"pid":27443,"tid":27477,"ts":326460419613,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":667663},
-{"pid":27443,"tid":27477,"ts":326460419613,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":667663,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460419644,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":667694},
-{"pid":27443,"tid":27477,"ts":326460419674,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":667724},
-{"pid":27443,"tid":27477,"ts":326460419766,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":667816,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460419827,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":667877,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460419827,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":667907,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460420193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":667968,"id":"0xaf88a7aff182217a"},
-{"pid":27443,"tid":27477,"ts":326460420224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":667999},
-{"pid":27443,"tid":27466,"ts":326460399409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":323302,"id":"0xaf88aafef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460399439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":323302},
-{"pid":27443,"tid":27466,"ts":326460399439,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":323302,"id":"0xccc50006"},
-{"pid":27443,"tid":27466,"ts":326460399653,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":323424},
-{"pid":27443,"tid":27466,"ts":326460399683,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":323454},
-{"pid":27443,"tid":27466,"ts":326460399683,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":323454,"id":"0xc4c1b50a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460400568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":323546,"id":"0xaf88aafff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460400599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":323576},
-{"pid":27443,"tid":27466,"ts":326460400599,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":323576,"id":"0xccc50102"},
-{"pid":27443,"tid":27466,"ts":326460403041,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":323699},
-{"pid":27443,"tid":27466,"ts":326460403071,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":92,"tts":323729},
-{"pid":27443,"tid":27466,"ts":326460403071,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":323729,"id":"0xba458302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460403132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":323790,"id":"0xaf88a793f182217a"},
-{"pid":27443,"tid":27466,"ts":326460408382,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":323912},
-{"pid":27443,"tid":27466,"ts":326460408412,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":92,"tts":323973},
-{"pid":27443,"tid":27466,"ts":326460408443,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":323973,"id":"0xba458502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460408473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324004,"id":"0xaf88a7acf182217a"},
-{"pid":27443,"tid":27466,"ts":326460414119,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":324126},
-{"pid":27443,"tid":27466,"ts":326460414150,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":63,"line":23},"dur":92,"tdur":92,"tts":324156},
-{"pid":27443,"tid":27466,"ts":326460414180,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":324187,"id":"0xba458602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460414211,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":324217,"id":"0xaf88a940f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460414242,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324248,"id":"0xaf88a6bdf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460420376,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":324309},
-{"pid":27443,"tid":27466,"ts":326460420407,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":62,"tts":324339},
-{"pid":27443,"tid":27466,"ts":326460420407,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":324370,"id":"0xba458702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460420468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324401,"id":"0xaf88a7abf182217a"},
-{"pid":27443,"tid":27466,"ts":326460437040,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":324492},
-{"pid":27443,"tid":27466,"ts":326460437071,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":324523},
-{"pid":27443,"tid":27466,"ts":326460437101,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":324553,"id":"0xba458802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460437132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324584,"id":"0xaf88a7a6f182217a"},
-{"pid":27443,"tid":27466,"ts":326460453674,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":324706},
-{"pid":27443,"tid":27466,"ts":326460453704,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":324736},
-{"pid":27443,"tid":27466,"ts":326460453704,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":324767,"id":"0xba458902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460453765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324797,"id":"0xaf88a7a0f182217a"},
-{"pid":27443,"tid":27466,"ts":326460470368,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":324889},
-{"pid":27443,"tid":27466,"ts":326460470399,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":324919},
-{"pid":27443,"tid":27466,"ts":326460470399,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":324919,"id":"0xba458a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460470460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":324980,"id":"0xaf88a7a2f182217a"},
-{"pid":27443,"tid":27466,"ts":326460487002,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":325102},
-{"pid":27443,"tid":27466,"ts":326460487033,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":325133},
-{"pid":27443,"tid":27466,"ts":326460487033,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":325133,"id":"0xba458b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460487094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":325194,"id":"0xaf88a7bcf182217a"},
-{"pid":27443,"tid":27466,"ts":326460504124,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":244,"tts":325316},
-{"pid":27443,"tid":27466,"ts":326460504216,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":152,"tdur":153,"tts":325377},
-{"pid":27443,"tid":27466,"ts":326460504216,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":325377,"id":"0xba458c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460504277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":325469,"id":"0xaf88a7bef182217a"},
-{"pid":27443,"tid":27466,"ts":326460519232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":325682,"id":"0xaf88aaf8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460519262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":325713},
-{"pid":27443,"tid":27466,"ts":326460519293,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":325743,"id":"0xccc50202"},
-{"pid":27443,"tid":27466,"ts":326460519384,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":325835,"id":"0xaf88aaf9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460519415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":62,"tts":325865},
-{"pid":27443,"tid":27466,"ts":326460519445,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":325896,"id":"0xccc50302"},
-{"pid":27443,"tid":27466,"ts":326460521490,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":214,"tts":326079},
-{"pid":27443,"tid":27466,"ts":326460521551,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":942},"dur":153,"tdur":153,"tts":326140},
-{"pid":27443,"tid":27466,"ts":326460521582,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":326171,"id":"0xba458d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460521643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":326232,"id":"0xaf88a968f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460521673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":326262,"id":"0xaf88a6baf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460522528,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":213,"tts":326415},
-{"pid":27443,"tid":27466,"ts":326460522589,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":122,"tts":326476},
-{"pid":27443,"tid":27466,"ts":326460522589,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":326476,"id":"0xba458e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460522650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":326537,"id":"0xaf88a7b8f182217a"},
-{"pid":27443,"tid":27466,"ts":326460534064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":326751,"id":"0xaf88aafaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460534095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":92,"tts":326781},
-{"pid":27443,"tid":27466,"ts":326460534095,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":326812,"id":"0xccc50406"},
-{"pid":27443,"tid":27459,"ts":326460413753,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":92,"tdur":30,"tts":7239127},
-{"pid":27443,"tid":27459,"ts":326460413784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7239127,"id":"0xaf88a7aef182217a"},
-{"pid":27443,"tid":27459,"ts":326460414089,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7239432,"id":"0xaf88a947f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460414150,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":151,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7239493,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460414974,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7240347},
-{"pid":27443,"tid":27459,"ts":326460415096,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7240439},
-{"pid":27443,"tid":27459,"ts":326460415157,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7240531},
-{"pid":27443,"tid":27459,"ts":326460415462,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7240836},
-{"pid":27443,"tid":27459,"ts":326460415554,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7240897},
-{"pid":27443,"tid":27459,"ts":326460415615,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7240958},
-{"pid":27443,"tid":27459,"ts":326460415645,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7240988},
-{"pid":27443,"tid":27459,"ts":326460415706,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7241049},
-{"pid":27443,"tid":27459,"ts":326460416866,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7242209,"id":"0xaf88a941f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460416927,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":152,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7242270,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460417019,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7242362,"id":"0xaf88a942f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460417049,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":153,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7242392,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460417110,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7242453},
-{"pid":27443,"tid":27459,"ts":326460417233,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7242575},
-{"pid":27443,"tid":27459,"ts":326460417294,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7242636},
-{"pid":27443,"tid":27459,"ts":326460417507,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7242850},
-{"pid":27443,"tid":27459,"ts":326460417568,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7242911},
-{"pid":27443,"tid":27459,"ts":326460417629,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7242972},
-{"pid":27443,"tid":27459,"ts":326460417660,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7243003},
-{"pid":27443,"tid":27459,"ts":326460417721,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7243064},
-{"pid":27443,"tid":27459,"ts":326460418606,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommit","args":{},"dur":30,"tdur":30,"tts":7243949},
-{"pid":27443,"tid":27459,"ts":326460424466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7249809,"id":"0xaf88a943f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460424496,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":154,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7249870,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460425656,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7250999},
-{"pid":27443,"tid":27459,"ts":326460425778,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7251121},
-{"pid":27443,"tid":27459,"ts":326460425839,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7251182},
-{"pid":27443,"tid":27459,"ts":326460425961,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7251304},
-{"pid":27443,"tid":27459,"ts":326460426236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7251609,"id":"0xaf88a95cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460426297,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":155,"frame":"0x78c60000","timeout":50,"singleShot":true}},"tts":7251670,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460427426,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7252769},
-{"pid":27443,"tid":27459,"ts":326460427518,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7252861},
-{"pid":27443,"tid":27459,"ts":326460427548,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7252922},
-{"pid":27443,"tid":27459,"ts":326460427640,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7253013},
-{"pid":27443,"tid":27459,"ts":326460428189,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7253563},
-{"pid":27443,"tid":27459,"ts":326460428220,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7253563},
-{"pid":27443,"tid":27459,"ts":326460428250,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7253593},
-{"pid":27443,"tid":27459,"ts":326460428495,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":1,"counters":true},"tts":7253837},
-{"pid":27443,"tid":27459,"ts":326460428525,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":1},"tts":7253868},
-{"pid":27443,"tid":27459,"ts":326460428525,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":946,"tdur":946,"tts":7253868},
-{"pid":27443,"tid":27459,"ts":326460428647,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":13,"totalObjects":293,"partialLayout":false,"frame":"0x78c60000"}},"tts":7253990},
-{"pid":27443,"tid":27459,"ts":326460428647,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":31,"tdur":31,"tts":7253990},
-{"pid":27443,"tid":27459,"ts":326460428678,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7254051},
-{"pid":27443,"tid":27459,"ts":326460429074,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":0,"tdur":0,"tts":7254417},
-{"pid":27443,"tid":27459,"ts":326460429105,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7254448},
-{"pid":27443,"tid":27459,"ts":326460429105,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":244,"tdur":244,"tts":7254448},
-{"pid":27443,"tid":27459,"ts":326460429349,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":61,"tdur":30,"tts":7254723},
-{"pid":27443,"tid":27459,"ts":326460429410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7254753,"id":"0xaf88a95df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460429441,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":7254784},
-{"pid":27443,"tid":27459,"ts":326460431730,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":149,"frame":"0x78c60000"}},"tts":7257073,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460433134,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7258477},
-{"pid":27443,"tid":27459,"ts":326460433225,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7258568},
-{"pid":27443,"tid":27459,"ts":326460433286,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7258629},
-{"pid":27443,"tid":27459,"ts":326460433378,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7258721},
-{"pid":27443,"tid":27459,"ts":326460433683,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7259026},
-{"pid":27443,"tid":27459,"ts":326460433775,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7259117},
-{"pid":27443,"tid":27459,"ts":326460433836,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7259179},
-{"pid":27443,"tid":27459,"ts":326460434141,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7259484},
-{"pid":27443,"tid":27459,"ts":326460434202,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7259575},
-{"pid":27443,"tid":27459,"ts":326460434263,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7259636},
-{"pid":27443,"tid":27459,"ts":326460434324,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7259667},
-{"pid":27443,"tid":27477,"ts":326460420224,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":667999},
-{"pid":27443,"tid":27477,"ts":326460420254,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":668029,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460420254,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":668029},
-{"pid":27443,"tid":27477,"ts":326460420285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":668060,"id":"0xaf88a7aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326460420315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":668090,"id":"0xaf88a7a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460420315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":275,"tdur":123,"tts":668090},
-{"pid":27443,"tid":27477,"ts":326460420315,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":244,"tdur":92,"tts":668090},
-{"pid":27443,"tid":27477,"ts":326460420346,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":668121,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460420346,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":668121},
-{"pid":27443,"tid":27477,"ts":326460420529,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":668152},
-{"pid":27443,"tid":27477,"ts":326460420559,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":668182,"id":"0xaf88a7a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460420590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":668213,"id":"0xaf88a7a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460420590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":668213},
-{"pid":27443,"tid":27477,"ts":326460420620,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":668243},
-{"pid":27443,"tid":27477,"ts":326460420620,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":668243,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460420620,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":668243},
-{"pid":27443,"tid":27477,"ts":326460420681,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":668304,"id":"0xaf88a7aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326460420681,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":214,"tts":668304},{"pid":27443,"tid":27477,"ts":326460420712,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":183,"tdur":183,"tts":668335},
-{"pid":27443,"tid":27477,"ts":326460420712,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":668335},
-{"pid":27443,"tid":27477,"ts":326460420742,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":668365},
-{"pid":27443,"tid":27477,"ts":326460420773,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":668396},
-{"pid":27443,"tid":27477,"ts":326460420773,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":668396},
-{"pid":27443,"tid":27477,"ts":326460420864,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":668487},
-{"pid":27443,"tid":27477,"ts":326460420864,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":668487},
-{"pid":27443,"tid":27477,"ts":326460420925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":668548,"id":"0xaf88a7abf182217a"},
-{"pid":27443,"tid":27477,"ts":326460420925,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":668548},
-{"pid":27443,"tid":27477,"ts":326460420956,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460428031.0,"frame_time_us":326460419221.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":668579},
-{"pid":27443,"tid":27477,"ts":326460420987,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460428031.0,"frame_time_us":326460419221.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":668609},
-{"pid":27443,"tid":27477,"ts":326460421017,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460435887},"dur":31,"tdur":30,"tts":668640},
-{"pid":27443,"tid":27477,"ts":326460421048,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":668670,"id":"0xaf88a7a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460421078,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":668731,"id":"0xaf88a7a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460421109,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":213,"tdur":214,"tts":668731},
-{"pid":27443,"tid":27477,"ts":326460421109,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":183,"tdur":184,"tts":668731},
-{"pid":27443,"tid":27477,"ts":326460421139,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":668762},
-{"pid":27443,"tid":27477,"ts":326460421139,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":668762},
-{"pid":27443,"tid":27477,"ts":326460421170,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":92,"tts":668792},
-{"pid":27443,"tid":27477,"ts":326460421200,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":668823},
-{"pid":27443,"tid":27477,"ts":326460421261,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":668884},
-{"pid":27443,"tid":27477,"ts":326460421261,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":668884},
-{"pid":27443,"tid":27477,"ts":326460436003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460435},"tts":669037,"id":"0xaf88a7a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460436003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":31,"tts":669067},
-{"pid":27443,"tid":27477,"ts":326460436033,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":669067},
-{"pid":27443,"tid":27477,"ts":326460437223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":669098,"id":"0xaf88a7a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460437254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":669128},
-{"pid":27443,"tid":27477,"ts":326460437284,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460444712.0,"frame_time_us":326460435902.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":669159},
-{"pid":27443,"tid":27477,"ts":326460437315,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460444712.0,"frame_time_us":326460435902.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":92,"tts":669189},
-{"pid":27443,"tid":27477,"ts":326460437376,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460452568},"dur":30,"tdur":31,"tts":669250},
-{"pid":27443,"tid":27477,"ts":326460437406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":669281,"id":"0xaf88a7a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460452697,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460452},"tts":669403,"id":"0xaf88a7a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460452697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":669403},
-{"pid":27443,"tid":27477,"ts":326460452697,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":669403},
-{"pid":27443,"tid":27477,"ts":326460453857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":669494,"id":"0xaf88a7a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460453857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":669494},
-{"pid":27443,"tid":27477,"ts":326460453887,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460461394.0,"frame_time_us":326460452584.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":123,"tdur":122,"tts":669525},
-{"pid":27443,"tid":27477,"ts":326460453918,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460461394.0,"frame_time_us":326460452584.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":669555},
-{"pid":27443,"tid":27477,"ts":326460453949,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460469250},"dur":30,"tdur":31,"tts":669586},
-{"pid":27443,"tid":27477,"ts":326460453979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":669617,"id":"0xaf88a7a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460469331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460469},"tts":669708,"id":"0xaf88a7a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460469361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":669739},
-{"pid":27443,"tid":27477,"ts":326460469361,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":669739},
-{"pid":27443,"tid":27477,"ts":326460470552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":669830,"id":"0xaf88a7a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460470552,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":183,"tts":669830},
-{"pid":27443,"tid":27477,"ts":326460470582,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460478075.0,"frame_time_us":326460469265.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":244,"tdur":122,"tts":669861},
-{"pid":27443,"tid":27459,"ts":326460434385,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7259728},
-{"pid":27443,"tid":27459,"ts":326460437437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7262780,"id":"0xaf88a95ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460437498,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":156,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7262841,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460439940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7265313,"id":"0xaf88a95ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460440031,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":157,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7265405,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460445250,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7269281},
-{"pid":27443,"tid":27459,"ts":326460445494,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7269525},
-{"pid":27443,"tid":27459,"ts":326460445647,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7269678},
-{"pid":27443,"tid":27459,"ts":326460445830,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7269861},
-{"pid":27443,"tid":27459,"ts":326460449218,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":157,"frame":"0x78c60000"}},"tts":7273279,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460452636,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7276514},
-{"pid":27443,"tid":27459,"ts":326460452758,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7276636},
-{"pid":27443,"tid":27459,"ts":326460452819,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7276667},
-{"pid":27443,"tid":27459,"ts":326460453949,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7277033},
-{"pid":27443,"tid":27459,"ts":326460453949,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7277063},
-{"pid":27443,"tid":27459,"ts":326460454132,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7277247},
-{"pid":27443,"tid":27459,"ts":326460456726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7279810,"id":"0xaf88a958f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460456787,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":158,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7279902,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460456940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7280024,"id":"0xaf88a959f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460456970,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":159,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7280054,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460460083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7283168,"id":"0xaf88a95af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460460114,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":160,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7283198,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460462006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7285090,"id":"0xaf88a95bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460462036,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":161,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7285121,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460462922,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":91,"tdur":61,"tts":7286036},
-{"pid":27443,"tid":27459,"ts":326460463044,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7286128,"id":"0xaf88a954f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460465363,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7288448,"id":"0xaf88a955f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460465394,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":162,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7288509,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460466187,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":7289272},
-{"pid":27443,"tid":27459,"ts":326460467988,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7291072,"id":"0xaf88a956f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460468018,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":163,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7291133,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460468751,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":91,"tdur":30,"tts":7291866},
-{"pid":27443,"tid":27459,"ts":326460470735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7293819,"id":"0xaf88a957f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460470765,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":164,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7293850,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460471650,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":7294735},
-{"pid":27443,"tid":27459,"ts":326460472871,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7295986},
-{"pid":27443,"tid":27459,"ts":326460473359,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7296444},
-{"pid":27443,"tid":27459,"ts":326460473543,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7296627},
-{"pid":27443,"tid":27459,"ts":326460473573,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7296658},
-{"pid":27443,"tid":27459,"ts":326460474184,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7297268},
-{"pid":27443,"tid":27459,"ts":326460474824,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7297909},
-{"pid":27443,"tid":27459,"ts":326460475008,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7298092},
-{"pid":27443,"tid":27459,"ts":326460475069,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7298153},
-{"pid":27443,"tid":27459,"ts":326460475221,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7298336},
-{"pid":27443,"tid":27459,"ts":326460476564,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7299649},
-{"pid":27443,"tid":27459,"ts":326460477510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7300625,"id":"0xaf88a950f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460477571,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":165,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7300656,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460478578,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":62,"tdur":61,"tts":7301663},
-{"pid":27443,"tid":27459,"ts":326460480745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7303830,"id":"0xaf88a951f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460480776,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":166,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7303860,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460481661,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":7304745},
-{"pid":27443,"tid":27459,"ts":326460483675,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7306760,"id":"0xaf88a952f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460483706,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":167,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7306821,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460484621,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":7307706},
-{"pid":27443,"tid":27459,"ts":326460486636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7309690,"id":"0xaf88a953f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460486666,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":168,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7309720,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460487246,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7310300},
-{"pid":27443,"tid":27459,"ts":326460487338,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7310422},
-{"pid":27443,"tid":27459,"ts":326460487399,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7310453},
-{"pid":27443,"tid":27459,"ts":326460488253,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7310666},
-{"pid":27443,"tid":27459,"ts":326460488284,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7310697},
-{"pid":27443,"tid":27459,"ts":326460488437,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7310850},
-{"pid":27443,"tid":27459,"ts":326460488559,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7310941},
-{"pid":27443,"tid":27459,"ts":326460491122,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7313535},
-{"pid":27443,"tid":27477,"ts":326460470613,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460478075.0,"frame_time_us":326460469265.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":213,"tdur":92,"tts":669891},
-{"pid":27443,"tid":27477,"ts":326460470613,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":669891},
-{"pid":27443,"tid":27477,"ts":326460470796,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460485931},"dur":30,"tdur":31,"tts":669952},
-{"pid":27443,"tid":27477,"ts":326460470826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":669983,"id":"0xaf88a7a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460486270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460485},"tts":670044,"id":"0xaf88a7a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460486300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":670074},
-{"pid":27443,"tid":27477,"ts":326460486300,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":670074},
-{"pid":27443,"tid":27477,"ts":326460487155,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":670135,"id":"0xaf88a7bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326460487185,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":670166},
-{"pid":27443,"tid":27477,"ts":326460487216,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460494757.0,"frame_time_us":326460485947.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":670196},
-{"pid":27443,"tid":27477,"ts":326460487216,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460494757.0,"frame_time_us":326460485947.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":61,"tts":670227},
-{"pid":27443,"tid":27477,"ts":326460487277,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460502613},"dur":30,"tdur":31,"tts":670257},
-{"pid":27443,"tid":27477,"ts":326460487277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":670257,"id":"0xaf88a7bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460502751,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460502},"tts":670380,"id":"0xaf88a7bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326460502751,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":670380},
-{"pid":27443,"tid":27477,"ts":326460502781,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":670410},
-{"pid":27443,"tid":27477,"ts":326460504368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":670441,"id":"0xaf88a7bef182217a"},
-{"pid":27443,"tid":27477,"ts":326460504399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":670471},
-{"pid":27443,"tid":27477,"ts":326460504429,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460511438.0,"frame_time_us":326460502628.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":670502},
-{"pid":27443,"tid":27477,"ts":326460504460,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460511438.0,"frame_time_us":326460502628.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":670532},
-{"pid":27443,"tid":27477,"ts":326460504490,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460519294},"dur":31,"tdur":30,"tts":670563},
-{"pid":27443,"tid":27477,"ts":326460504521,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":670593,"id":"0xaf88a7bff182217a"},
-{"pid":27443,"tid":27477,"ts":326460519628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460519},"tts":670715,"id":"0xaf88a7bff182217a"},
-{"pid":27443,"tid":27477,"ts":326460519628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":92,"tdur":30,"tts":670746},
-{"pid":27443,"tid":27477,"ts":326460519659,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":670746},
-{"pid":27443,"tid":27477,"ts":326460522711,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":670929,"id":"0xaf88a7b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326460522741,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":183,"tts":670929},
-{"pid":27443,"tid":27477,"ts":326460522772,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460528120.0,"frame_time_us":326460519310.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":122,"tts":670959},
-{"pid":27443,"tid":27477,"ts":326460522802,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460528120.0,"frame_time_us":326460519310.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":245,"tdur":91,"tts":670990},
-{"pid":27443,"tid":27477,"ts":326460522833,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460535976},"dur":214,"tdur":61,"tts":671020},
-{"pid":27443,"tid":27477,"ts":326460522833,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":671020},
-{"pid":27443,"tid":27477,"ts":326460523016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":671051,"id":"0xaf88a7b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460528540,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":671173,"id":"0xaf88a7baf182217a"},
-{"pid":27443,"tid":27477,"ts":326460528540,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2076,"tdur":2075,"tts":671173},
-{"pid":27443,"tid":27477,"ts":326460528571,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2014,"tdur":2014,"tts":671204},
-{"pid":27443,"tid":27477,"ts":326460528571,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":671204},
-{"pid":27443,"tid":27477,"ts":326460528601,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1984,"tdur":1984,"tts":671234},
-{"pid":27443,"tid":27477,"ts":326460528601,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1984,"tdur":1984,"tts":671234},
-{"pid":27443,"tid":27477,"ts":326460528632,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":671265},
-{"pid":27443,"tid":27477,"ts":326460528632,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":671265},
-{"pid":27443,"tid":27477,"ts":326460528662,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":671295,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460528662,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":671295},
-{"pid":27443,"tid":27477,"ts":326460528693,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":427,"tdur":396,"tts":671326},
-{"pid":27443,"tid":27477,"ts":326460529120,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":671753},
-{"pid":27443,"tid":27477,"ts":326460529151,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":458,"tdur":458,"tts":671783},
-{"pid":27443,"tid":27477,"ts":326460529670,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":915,"tdur":916,"tts":672302},
-{"pid":27443,"tid":27477,"ts":326460529670,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":137},"dur":305,"tdur":274,"tts":672333},
-{"pid":27443,"tid":27477,"ts":326460529975,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":137},"dur":91,"tdur":62,"tts":672607},
-{"pid":27443,"tid":27477,"ts":326460530066,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":137},"tts":672699},
-{"pid":27443,"tid":27477,"ts":326460530158,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":672821},
-{"pid":27443,"tid":27477,"ts":326460530188,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":672821},
-{"pid":27443,"tid":27477,"ts":326460530188,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":367,"tdur":335,"tts":672852},
-{"pid":27443,"tid":27477,"ts":326460530219,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":672852},
-{"pid":27443,"tid":27477,"ts":326460530341,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":672974},
-{"pid":27443,"tid":27477,"ts":326460530372,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":673004},
-{"pid":27443,"tid":27477,"ts":326460530372,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":673004},
-{"pid":27443,"tid":27477,"ts":326460530402,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":673035},
-{"pid":27443,"tid":27477,"ts":326460530402,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":673035,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460530433,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":673065},
-{"pid":27443,"tid":27477,"ts":326460530433,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":673065},
-{"pid":27443,"tid":27477,"ts":326460530494,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":673126,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460530524,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":169}},"tts":673187,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460530555,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":673187,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460530677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":673279,"id":"0xaf88a7bbf182217a"},
-{"pid":27443,"tid":27459,"ts":326460491824,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":7314237},
-{"pid":27443,"tid":27459,"ts":326460494510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7316893,"id":"0xaf88a96cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460494541,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":169,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7316954,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460494663,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7317045},
-{"pid":27443,"tid":27459,"ts":326460494754,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7317137},
-{"pid":27443,"tid":27459,"ts":326460494785,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7317167},
-{"pid":27443,"tid":27459,"ts":326460494815,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7317198},
-{"pid":27443,"tid":27459,"ts":326460494876,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7317259},
-{"pid":27443,"tid":27459,"ts":326460494968,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7317350},
-{"pid":27443,"tid":27459,"ts":326460495090,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7317503},
-{"pid":27443,"tid":27459,"ts":326460495151,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7317533},
-{"pid":27443,"tid":27459,"ts":326460495273,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7317656},
-{"pid":27443,"tid":27459,"ts":326460495456,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7317839},
-{"pid":27443,"tid":27459,"ts":326460495548,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7317930},
-{"pid":27443,"tid":27459,"ts":326460495578,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7317961},
-{"pid":27443,"tid":27459,"ts":326460495670,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7318052},
-{"pid":27443,"tid":27459,"ts":326460496189,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7318571},
-{"pid":27443,"tid":27459,"ts":326460496708,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7319121},
-{"pid":27443,"tid":27459,"ts":326460496799,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7319182},
-{"pid":27443,"tid":27459,"ts":326460496830,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7319243},
-{"pid":27443,"tid":27459,"ts":326460496891,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7319304},
-{"pid":27443,"tid":27459,"ts":326460496982,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7319365},
-{"pid":27443,"tid":27459,"ts":326460497104,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7319487},
-{"pid":27443,"tid":27459,"ts":326460497165,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7319548},
-{"pid":27443,"tid":27459,"ts":326460497287,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7319670},
-{"pid":27443,"tid":27459,"ts":326460497837,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":7320097},
-{"pid":27443,"tid":27459,"ts":326460498234,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7320433},
-{"pid":27443,"tid":27459,"ts":326460498905,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7321104},
-{"pid":27443,"tid":27459,"ts":326460498936,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7321104},
-{"pid":27443,"tid":27459,"ts":326460499149,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7321318},
-{"pid":27443,"tid":27459,"ts":326460500156,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7322356},
-{"pid":27443,"tid":27459,"ts":326460500339,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7322539},
-{"pid":27443,"tid":27459,"ts":326460500401,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7322569},
-{"pid":27443,"tid":27459,"ts":326460500401,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7322600},
-{"pid":27443,"tid":27459,"ts":326460500492,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7322661},
-{"pid":27443,"tid":27459,"ts":326460500645,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7322813},
-{"pid":27443,"tid":27459,"ts":326460501194,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7323363},
-{"pid":27443,"tid":27459,"ts":326460501255,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7323424},
-{"pid":27443,"tid":27459,"ts":326460501286,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7323485},
-{"pid":27443,"tid":27459,"ts":326460501316,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7323485},
-{"pid":27443,"tid":27459,"ts":326460501377,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7323546},
-{"pid":27443,"tid":27459,"ts":326460501469,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7323638},
-{"pid":27443,"tid":27459,"ts":326460501499,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7323668},
-{"pid":27443,"tid":27459,"ts":326460501621,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7323790},
-{"pid":27443,"tid":27459,"ts":326460502018,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7324187},
-{"pid":27443,"tid":27459,"ts":326460502079,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7324278},
-{"pid":27443,"tid":27459,"ts":326460502201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7324370,"id":"0xaf88a96df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460502262,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":170,"frame":"0x78c60000","timeout":120000,"singleShot":true}},"tts":7324431,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460502323,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7324492},
-{"pid":27443,"tid":27459,"ts":326460502384,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7324584},
-{"pid":27443,"tid":27459,"ts":326460502445,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7324614},
-{"pid":27443,"tid":27459,"ts":326460502476,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7324645},
-{"pid":27443,"tid":27459,"ts":326460502537,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7324706},
-{"pid":27443,"tid":27459,"ts":326460502598,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7324767},
-{"pid":27443,"tid":27459,"ts":326460505620,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":154,"frame":"0x78c60000"}},"tts":7327819,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460506901,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7329070},
-{"pid":27443,"tid":27459,"ts":326460506993,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7329162},
-{"pid":27443,"tid":27459,"ts":326460507023,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7329192},
-{"pid":27443,"tid":27459,"ts":326460507084,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7329284},
-{"pid":27443,"tid":27459,"ts":326460508275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7330444,"id":"0xaf88a96ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460508305,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":171,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7330505,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460518957,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7341156},
-{"pid":27443,"tid":27459,"ts":326460519110,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7341278},
-{"pid":27443,"tid":27459,"ts":326460519110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7341278,"id":"0xaf88aaf8f3d03dca"},
-{"pid":27443,"tid":27546,"ts":326460501988,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60582},
-{"pid":27443,"tid":27469,"ts":326460530524,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":123,"tts":299587},
-{"pid":27443,"tid":27469,"ts":326460530555,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":91,"tdur":61,"tts":299649},
-{"pid":27443,"tid":27471,"ts":326460530585,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":357607},
-{"pid":27443,"tid":27471,"ts":326460530585,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":357607},
-{"pid":27443,"tid":27469,"ts":326460530585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299649,"id":"0xaf88a7bbf182217a"},
-{"pid":27443,"tid":27471,"ts":326460530646,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357668,"id":"0xaf88a7b4f182217a"},
-{"pid":27443,"tid":27469,"ts":326460530646,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":92,"tts":299740},
-{"pid":27443,"tid":27469,"ts":326460530707,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":299771},
-{"pid":27443,"tid":27469,"ts":326460530738,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299801,"id":"0xaf88a7b5f182217a"},
-{"pid":27443,"tid":27471,"ts":326460559763,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":357790},
-{"pid":27443,"tid":27471,"ts":326460559793,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":357820},
-{"pid":27443,"tid":27471,"ts":326460559824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357851,"id":"0xaf88a44df182217a"},
-{"pid":27443,"tid":27471,"ts":326460559854,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":366,"tdur":31,"tts":357881},
-{"pid":27443,"tid":27471,"ts":326460559854,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":336,"tdur":31,"tts":357881},
-{"pid":27443,"tid":27469,"ts":326460560129,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":61,"tts":299832},
-{"pid":27443,"tid":27469,"ts":326460560159,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":31,"tts":299862},
-{"pid":27443,"tid":27471,"ts":326460559854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357881,"id":"0xaf88a44ef182217a"},
-{"pid":27443,"tid":27469,"ts":326460560220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":299862,"id":"0xaf88a44ff182217a"},
-{"pid":27443,"tid":27471,"ts":326460742305,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":357973},
-{"pid":27443,"tid":27471,"ts":326460742336,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":358003},
-{"pid":27443,"tid":27471,"ts":326460742336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":358003,"id":"0xaf88a459f182217a"},
-{"pid":27443,"tid":27471,"ts":326460742366,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":36624,"tdur":19564,"tts":358034},
-{"pid":27443,"tid":27471,"ts":326460742366,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":36624,"tdur":19533,"tts":358065},
-{"pid":27443,"tid":27471,"ts":326460742397,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":358065},
-{"pid":27443,"tid":27471,"ts":326460742397,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":358065},
-{"pid":27443,"tid":27471,"ts":326460742427,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":21536768,"free":3629056},"tts":358095},
-{"pid":27443,"tid":27471,"ts":326460742549,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":36411,"tdur":19350,"tts":358217},
-{"pid":27443,"tid":27471,"ts":326460742580,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd080","decodeCount":0},"dur":36380,"tdur":19350,"tts":358217},
-{"pid":27443,"tid":27471,"ts":326460742580,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":36380,"tdur":19350,"tts":358217},
-{"pid":27443,"tid":27471,"ts":326460742610,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":36319,"tdur":19288,"tts":358248},
-{"pid":27443,"tid":27469,"ts":326460742458,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":53410,"tdur":25057,"tts":299893},
-{"pid":27443,"tid":27469,"ts":326460744838,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":51030,"tdur":24966,"tts":299984},
-{"pid":27443,"tid":27469,"ts":326460744838,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":300015},
-{"pid":27443,"tid":27469,"ts":326460744869,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":300015},
-{"pid":27443,"tid":27469,"ts":326460744899,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":22585344,"free":2580480},"tts":300045},
-{"pid":27443,"tid":27469,"ts":326460744930,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":50908,"tdur":24843,"tts":300076},
-{"pid":27443,"tid":27469,"ts":326460744930,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd0e0","decodeCount":0},"dur":50908,"tdur":24843,"tts":300076},
-{"pid":27443,"tid":27469,"ts":326460744960,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":50847,"tdur":24783,"tts":300106},
-{"pid":27443,"tid":27469,"ts":326460744960,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":50847,"tdur":24783,"tts":300106},
-{"pid":27443,"tid":27471,"ts":326460778990,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1527,"tdur":1068,"tts":377598},
-{"pid":27443,"tid":27471,"ts":326460779021,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1496,"tdur":1038,"tts":377628},
-{"pid":27443,"tid":27471,"ts":326460779052,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x7e24f188"},"tileResolution":"HIGH_RESOLUTION"}},"tts":377689},
-{"pid":27443,"tid":27471,"ts":326460779082,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":377689},
-{"pid":27443,"tid":27471,"ts":326460779143,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":377750},
-{"pid":27443,"tid":27471,"ts":326460779143,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x7e24f188"},"tileResolution":"HIGH_RESOLUTION"}},"tts":377750},
-{"pid":27443,"tid":27471,"ts":326460779662,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":377811,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460780517,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":378666},
-{"pid":27443,"tid":27471,"ts":326460780547,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":794,"tdur":794,"tts":378696},
-{"pid":27443,"tid":27471,"ts":326460780547,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":378696},
-{"pid":27443,"tid":27471,"ts":326460780578,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x799f5d00"},"tileResolution":"HIGH_RESOLUTION"}},"tts":378727},
-{"pid":27443,"tid":27471,"ts":326460780578,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":378727},
-{"pid":27443,"tid":27471,"ts":326460780639,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":378788},
-{"pid":27443,"tid":27471,"ts":326460780639,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x799f5d00"},"tileResolution":"HIGH_RESOLUTION"}},"tts":378788},
-{"pid":27443,"tid":27471,"ts":326460780669,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":378818,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460781341,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":379490},
-{"pid":27443,"tid":27471,"ts":326460781341,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":824,"tts":379490},
-{"pid":27443,"tid":27471,"ts":326460781371,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":379520},
-{"pid":27443,"tid":27471,"ts":326460781371,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x796fe710"},"tileResolution":"HIGH_RESOLUTION"}},"tts":379520},
-{"pid":27443,"tid":27471,"ts":326460781402,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":379551},
-{"pid":27443,"tid":27471,"ts":326460781432,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":379581},
-{"pid":27443,"tid":27471,"ts":326460781463,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x796fe710"},"tileResolution":"HIGH_RESOLUTION"}},"tts":379612},
-{"pid":27443,"tid":27471,"ts":326460781493,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":379642,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460782134,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":380283},
-{"pid":27443,"tid":27459,"ts":326460519201,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1382},"dur":31,"tdur":30,"tts":7341370},
-{"pid":27443,"tid":27459,"ts":326460519201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7341400,"id":"0xaf88aaf9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460519293,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7341492,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460519323,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7341492,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460519354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460410},"tts":7341522,"id":"0xaf88a69cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519384,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7341553},
-{"pid":27443,"tid":27459,"ts":326460519415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7341584,"id":"0xaf88a6a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7341584},
-{"pid":27443,"tid":27459,"ts":326460519445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7341614,"id":"0xaf88a6bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7341614,"id":"0xaf88a8b8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460519476,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":30,"tts":7341645},
-{"pid":27443,"tid":27459,"ts":326460519476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7341645,"id":"0xaf88a96ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460519506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7341675,"id":"0xaf88a6bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519567,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460487},"tts":7341736,"id":"0xaf88ae42f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519567,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/render_thread_impl.cc","src_func":"ScheduleIdleHandler"},"dur":31,"tdur":31,"tts":7341736},
-{"pid":27443,"tid":27459,"ts":326460519567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7341736,"id":"0xaf88a6b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7341797,"id":"0xaf88a6a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7341797},
-{"pid":27443,"tid":27459,"ts":326460519659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7341828,"id":"0xaf88a94af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460519659,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7341828},
-{"pid":27443,"tid":27459,"ts":326460519659,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7341828},
-{"pid":27443,"tid":27459,"ts":326460519720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7341889,"id":"0xaf88a6a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519720,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7341889},
-{"pid":27443,"tid":27459,"ts":326460519750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7341919,"id":"0xaf88a940f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460519750,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":7341919},
-{"pid":27443,"tid":27459,"ts":326460519750,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":63,"line":23},"dur":61,"tdur":61,"tts":7341919},
-{"pid":27443,"tid":27459,"ts":326460519842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7342011,"id":"0xaf88a6bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7342041},
-{"pid":27443,"tid":27459,"ts":326460519873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7342041,"id":"0xaf88a94bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460519873,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7342041},
-{"pid":27443,"tid":27459,"ts":326460519903,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7342072},
-{"pid":27443,"tid":27459,"ts":326460519934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460406},"tts":7342102,"id":"0xaf88a6bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460519964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":30,"tts":7342133},
-{"pid":27443,"tid":27459,"ts":326460520056,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7342224,"id":"0xaf88a6bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460520086,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9675,"tdur":8546,"tts":7342255},
-{"pid":27443,"tid":27459,"ts":326460520086,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7342255,"id":"0xaf88a6b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460520117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7342285,"id":"0xaf88a946f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460520117,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9614,"tdur":8485,"tts":7342285},
-{"pid":27443,"tid":27459,"ts":326460520117,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":137},"tts":7342285},
-{"pid":27443,"tid":27459,"ts":326460520147,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7342316},
-{"pid":27443,"tid":27459,"ts":326460520178,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":30,"tdur":30,"tts":7342347},
-{"pid":27443,"tid":27459,"ts":326460520178,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7342347},
-{"pid":27443,"tid":27459,"ts":326460520208,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":7661,"tdur":7630,"tts":7342377},
-{"pid":27443,"tid":27459,"ts":326460520239,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7342408},
-{"pid":27443,"tid":27459,"ts":326460520269,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7342438},
-{"pid":27443,"tid":27459,"ts":326460520269,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7342438},
-{"pid":27443,"tid":27459,"ts":326460522070,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":21,"counters":true},"tts":7344239},
-{"pid":27443,"tid":27459,"ts":326460522101,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":21},"tts":7344269},
-{"pid":27443,"tid":27459,"ts":326460522101,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1068,"tdur":1038,"tts":7344300},
-{"pid":27443,"tid":27459,"ts":326460522223,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":26,"totalObjects":307,"partialLayout":false,"frame":"0x78c60000"}},"tts":7344391},
-{"pid":27443,"tid":27459,"ts":326460522223,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":30,"tdur":31,"tts":7344391},
-{"pid":27443,"tid":27459,"ts":326460522253,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7344422},
-{"pid":27443,"tid":27459,"ts":326460522802,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":31,"tdur":31,"tts":7344971},
-{"pid":27443,"tid":27459,"ts":326460522833,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7345002},
-{"pid":27443,"tid":27459,"ts":326460522864,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":213,"tdur":214,"tts":7345032},
-{"pid":27443,"tid":27459,"ts":326460523077,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":31,"tdur":30,"tts":7345246},
-{"pid":27443,"tid":27459,"ts":326460523138,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":7345307},
-{"pid":27443,"tid":27459,"ts":326460523169,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4669,"tdur":4639,"tts":7345368},
-{"pid":27443,"tid":27459,"ts":326460523199,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3327,"tdur":3327,"tts":7345368},
-{"pid":27443,"tid":27459,"ts":326460523230,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":824,"tdur":824,"tts":7345399},
-{"pid":27443,"tid":27459,"ts":326460524054,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7346223},
-{"pid":27443,"tid":27459,"ts":326460524237,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":580,"tdur":580,"tts":7346406},
-{"pid":27443,"tid":27459,"ts":326460524817,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":0,"tts":7347016},
-{"pid":27443,"tid":27459,"ts":326460524847,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1496,"tdur":1496,"tts":7347016},
-{"pid":27443,"tid":27459,"ts":326460526343,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":183,"tdur":183,"tts":7348512},
-{"pid":27443,"tid":27459,"ts":326460526556,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":947,"tdur":946,"tts":7348725},
-{"pid":27443,"tid":27459,"ts":326460526556,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":947,"tdur":946,"tts":7348725},
-{"pid":27443,"tid":27459,"ts":326460526587,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":183,"tdur":183,"tts":7348756},
-{"pid":27443,"tid":27459,"ts":326460526770,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":702,"tdur":702,"tts":7348939},
-{"pid":27443,"tid":27459,"ts":326460526831,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":488,"tdur":488,"tts":7349000},
-{"pid":27443,"tid":27459,"ts":326460527503,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7349671},
-{"pid":27443,"tid":27459,"ts":326460527533,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":305,"tdur":275,"tts":7349732},
-{"pid":27443,"tid":27459,"ts":326460527869,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":137},"dur":580,"tdur":580,"tts":7350038},
-{"pid":27443,"tid":27459,"ts":326460527869,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":580,"tdur":580,"tts":7350038},
-{"pid":27443,"tid":27459,"ts":326460528113,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":137},"dur":275,"tdur":244,"tts":7350282},
-{"pid":27443,"tid":27459,"ts":326460528205,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[0,0,384,0,384,520,0,520],"nodeId":14,"layerId":46}},"dur":61,"tdur":61,"tts":7350373},
-{"pid":27443,"tid":27459,"ts":326460528266,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":30,"tdur":0,"tts":7350465},
-{"pid":27443,"tid":27459,"ts":326460528388,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":137},"dur":0,"tdur":0,"tts":7350557},
-{"pid":27443,"tid":27459,"ts":326460528388,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":137},"dur":30,"tdur":30,"tts":7350557},
-{"pid":27443,"tid":27459,"ts":326460528418,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":137},"dur":0,"tdur":0,"tts":7350587},
-{"pid":27443,"tid":27459,"ts":326460528449,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7350618,"id":"0x300000083"},
-{"pid":27443,"tid":27459,"ts":326460528449,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1251,"tdur":91,"tts":7350618},
-{"pid":27443,"tid":27459,"ts":326460528479,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7350648,"id":"0xaf88a7baf182217a"},
-{"pid":27443,"tid":27459,"ts":326460529731,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7350770},
-{"pid":27443,"tid":27459,"ts":326460529792,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7350831,"id":"0xaf88a6b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460529792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7350831},
-{"pid":27443,"tid":27459,"ts":326460529822,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7350862,"id":"0xaf88a6bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460529822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7350862,"id":"0xaf88a968f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460529822,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":7350892},
-{"pid":27443,"tid":27459,"ts":326460529853,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":942},"dur":30,"tdur":31,"tts":7350892},
-{"pid":27443,"tid":27459,"ts":326460529944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7350984,"id":"0xaf88a6baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460529944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7350984},
-{"pid":27443,"tid":27459,"ts":326460529975,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7351014,"id":"0xaf88a6bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460530249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7351289},
-{"pid":27443,"tid":27459,"ts":326460534950,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7351381,"id":"0xaf88a6b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460534980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7351411},
-{"pid":27443,"tid":27459,"ts":326460534980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7351411,"id":"0xaf88a6b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460535011,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7351442,"id":"0xaf88a969f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460535011,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7351442},
-{"pid":27443,"tid":27459,"ts":326460535011,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":7351442},
-{"pid":27443,"tid":27459,"ts":326460535072,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7351503,"id":"0xaf88a6b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460535072,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7351503},
-{"pid":27443,"tid":27459,"ts":326460552255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7351625,"id":"0xaf88a6b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460552255,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7351625},
-{"pid":27443,"tid":27459,"ts":326460552285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7351655,"id":"0xaf88a6b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460552285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7351686,"id":"0xaf88a96af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460552316,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":7351686},
-{"pid":27443,"tid":27459,"ts":326460552316,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":7351686},
-{"pid":27443,"tid":27459,"ts":326460552377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7351747,"id":"0xaf88a6b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460552407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7351777},
-{"pid":27443,"tid":27459,"ts":326460556344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7351838,"id":"0xaf88a6b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460556344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":214,"tts":7351838},
-{"pid":27443,"tid":27459,"ts":326460556375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7351869,"id":"0xaf88a6b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460556405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7351899,"id":"0xaf88a96bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460556405,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":245,"tdur":122,"tts":7351899},
-{"pid":27443,"tid":27459,"ts":326460556405,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":31,"tts":7351899},
-{"pid":27443,"tid":27459,"ts":326460556558,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":92,"tdur":91,"tts":7351930},
-{"pid":27443,"tid":27459,"ts":326460556619,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7351991,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460556619,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7351991,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460556711,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7352083,"id":"0xaf88a6b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460556711,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":702,"tdur":701,"tts":7352083},
-{"pid":27443,"tid":27459,"ts":326460556741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7352113,"id":"0xaf88a6b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460556741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7352113,"id":"0xaf88a87bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460556772,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":641,"tdur":640,"tts":7352144},
-{"pid":27443,"tid":27459,"ts":326460556772,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":610,"tdur":580,"tts":7352174},
-{"pid":27443,"tid":27459,"ts":326460556802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7352174,"id":"0xaf88a964f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460556833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7352205,"id":"0xaf88a6b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460556894,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":16,"frame":"0x78c60000"}},"dur":488,"tdur":488,"tts":7352266},
-{"pid":27443,"tid":27477,"ts":326460530707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":673309},
-{"pid":27443,"tid":27477,"ts":326460530707,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":62,"tts":673309},
-{"pid":27443,"tid":27477,"ts":326460530738,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":673340,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460530738,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":673340},
-{"pid":27443,"tid":27477,"ts":326460530768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":673371,"id":"0xaf88a7b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460530799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":673401,"id":"0xaf88a7b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326460530799,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":673401},
-{"pid":27443,"tid":27477,"ts":326460530829,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":673432},
-{"pid":27443,"tid":27477,"ts":326460530829,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":673432,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460530860,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":673462},
-{"pid":27443,"tid":27477,"ts":326460530860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":673462,"id":"0xaf88a7b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460530890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":673493,"id":"0xaf88a7b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326460530890,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":673493},
-{"pid":27443,"tid":27477,"ts":326460530921,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":673523},
-{"pid":27443,"tid":27477,"ts":326460530921,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":673523,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460530921,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":673523},
-{"pid":27443,"tid":27477,"ts":326460530951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":673554,"id":"0xaf88a7b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326460530982,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1618,"tdur":1618,"tts":673584},
-{"pid":27443,"tid":27477,"ts":326460530982,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1618,"tdur":1618,"tts":673584},
-{"pid":27443,"tid":27477,"ts":326460530982,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":673584},
-{"pid":27443,"tid":27477,"ts":326460531012,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":673615},
-{"pid":27443,"tid":27477,"ts":326460531012,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":673645},
-{"pid":27443,"tid":27477,"ts":326460531043,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":673645},
-{"pid":27443,"tid":27477,"ts":326460531135,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1465,"tdur":1465,"tts":673737},
-{"pid":27443,"tid":27477,"ts":326460531135,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1465,"tdur":1465,"tts":673737},
-{"pid":27443,"tid":27477,"ts":326460531135,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1403,"tdur":1404,"tts":673737},
-{"pid":27443,"tid":27477,"ts":326460531165,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":673767,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460531165,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":427,"tdur":428,"tts":673767},
-{"pid":27443,"tid":27477,"ts":326460531623,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":674225},
-{"pid":27443,"tid":27477,"ts":326460531745,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":674378},
-{"pid":27443,"tid":27477,"ts":326460531775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":674378},
-{"pid":27443,"tid":27477,"ts":326460531806,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":674408},
-{"pid":27443,"tid":27477,"ts":326460531837,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674439},
-{"pid":27443,"tid":27477,"ts":326460531867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674469},
-{"pid":27443,"tid":27477,"ts":326460531867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":674469},
-{"pid":27443,"tid":27477,"ts":326460531898,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":674500},
-{"pid":27443,"tid":27477,"ts":326460531928,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674530},
-{"pid":27443,"tid":27477,"ts":326460531959,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674561},
-{"pid":27443,"tid":27477,"ts":326460531989,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674591},
-{"pid":27443,"tid":27477,"ts":326460531989,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":674591},
-{"pid":27443,"tid":27477,"ts":326460532020,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":674622},
-{"pid":27443,"tid":27477,"ts":326460532050,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":674652},
-{"pid":27443,"tid":27477,"ts":326460532081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674683},
-{"pid":27443,"tid":27477,"ts":326460532081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":674713},
-{"pid":27443,"tid":27477,"ts":326460532111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":674713},
-{"pid":27443,"tid":27477,"ts":326460532142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":674744},
-{"pid":27443,"tid":27477,"ts":326460532172,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674774},
-{"pid":27443,"tid":27477,"ts":326460532264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674866},
-{"pid":27443,"tid":27477,"ts":326460532264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":674866},
-{"pid":27443,"tid":27477,"ts":326460532294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":674897},
-{"pid":27443,"tid":27477,"ts":326460532325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":674927},
-{"pid":27443,"tid":27477,"ts":326460532355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674958},
-{"pid":27443,"tid":27477,"ts":326460532386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":674988},
-{"pid":27443,"tid":27477,"ts":326460532386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":674988},
-{"pid":27443,"tid":27477,"ts":326460532447,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":675049},
-{"pid":27443,"tid":27477,"ts":326460532477,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":675080},
-{"pid":27443,"tid":27477,"ts":326460532508,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":675110},
-{"pid":27443,"tid":27477,"ts":326460532508,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":675110},
-{"pid":27443,"tid":27477,"ts":326460532538,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":62,"tdur":0,"tts":675171},
-{"pid":27443,"tid":27477,"ts":326460532569,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":675171,"id":"0xaf88a7b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460532600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":675202,"id":"0xaf88a7b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326460532630,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":675232},
-{"pid":27443,"tid":27477,"ts":326460532630,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":153,"tts":675232},
-{"pid":27443,"tid":27477,"ts":326460532630,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":0,"tts":675263},
-{"pid":27443,"tid":27477,"ts":326460532661,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":675263},
-{"pid":27443,"tid":27477,"ts":326460532691,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":675293},
-{"pid":27443,"tid":27477,"ts":326460532691,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":675293},
-{"pid":27443,"tid":27477,"ts":326460532752,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":675354},
-{"pid":27443,"tid":27477,"ts":326460532752,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":675354},
-{"pid":27443,"tid":27477,"ts":326460532783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":675385,"id":"0xaf88a7b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326460532813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2167,"tdur":1648,"tts":675415},
-{"pid":27443,"tid":27477,"ts":326460532813,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2167,"tdur":1648,"tts":675415},
-{"pid":27443,"tid":27477,"ts":326460532844,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":675446},
-{"pid":27443,"tid":27477,"ts":326460532844,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2106,"tdur":1587,"tts":675446},
-{"pid":27443,"tid":27477,"ts":326460532874,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":137},"dur":885,"tdur":886,"tts":675476},
-{"pid":27443,"tid":27477,"ts":326460532905,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":137},"dur":244,"tdur":244,"tts":675507},
-{"pid":27443,"tid":27477,"ts":326460533149,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":137},"dur":61,"tdur":30,"tts":675782},
-{"pid":27443,"tid":27477,"ts":326460533210,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":137},"tts":675812},
-{"pid":27443,"tid":27477,"ts":326460533301,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":16},"tts":675904},
-{"pid":27443,"tid":27477,"ts":326460533301,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":62,"tdur":31,"tts":675934},
-{"pid":27443,"tid":27477,"ts":326460533332,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":675934},
-{"pid":27443,"tid":27477,"ts":326460533332,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":675934},
-{"pid":27443,"tid":27477,"ts":326460533363,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":675965,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460533424,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":676026},
-{"pid":27443,"tid":27477,"ts":326460533759,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":676362},
-{"pid":27443,"tid":27477,"ts":326460533759,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":855,"tdur":335,"tts":676362},
-{"pid":27443,"tid":27477,"ts":326460533790,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":676392},
-{"pid":27443,"tid":27477,"ts":326460533790,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":763,"tdur":213,"tts":676423},
-{"pid":27443,"tid":27477,"ts":326460533912,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12937},"dur":0,"tdur":0,"tts":676514},
-{"pid":27443,"tid":27477,"ts":326460533942,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":676545,"id":"0xaf88aafaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460534583,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":676667,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460534644,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":676728,"id":"0x300000083"},
-{"pid":27443,"tid":27477,"ts":326460534644,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":213,"tts":676728},
-{"pid":27443,"tid":27477,"ts":326460534797,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":676880,"id":"0xaf88aafbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460534858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":676972,"id":"0xaf88a969f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460534889,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":676972,"id":"0xaf88a6b4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460536079,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460535},"tts":677155,"id":"0xaf88a7b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326460536109,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":677155},
-{"pid":27443,"tid":27477,"ts":326460537574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":677216,"id":"0xaf88a7b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326460537574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":677216},
-{"pid":27443,"tid":27477,"ts":326460537605,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460544802.0,"frame_time_us":326460535992.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":677247},
-{"pid":27443,"tid":27477,"ts":326460537635,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460544802.0,"frame_time_us":326460535992.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":677277},
-{"pid":27443,"tid":27477,"ts":326460537666,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460552658},"dur":30,"tdur":30,"tts":677308},
-{"pid":27443,"tid":27477,"ts":326460537696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":677338,"id":"0xaf88a7b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460552072,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":677399,"id":"0xaf88a7b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326460552102,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":677430},
-{"pid":27443,"tid":27477,"ts":326460552133,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":91,"tdur":92,"tts":677460},
-{"pid":27443,"tid":27477,"ts":326460552163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":677491,"id":"0xaf88a96af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460552194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":677521,"id":"0xaf88a6b6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460552804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460552},"tts":677643,"id":"0xaf88a7b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326460552804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3449,"tdur":580,"tts":677643},
-{"pid":27443,"tid":27477,"ts":326460552835,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3418,"tdur":549,"tts":677674},
-{"pid":27443,"tid":27477,"ts":326460552835,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":3265,"tdur":397,"tts":677674},
-{"pid":27443,"tid":27477,"ts":326460552835,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":3265,"tdur":367,"tts":677704},
-{"pid":27443,"tid":27477,"ts":326460552896,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":2960,"tdur":91,"tts":677735},
-{"pid":27443,"tid":27477,"ts":326460555856,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":677826},
-{"pid":27443,"tid":27477,"ts":326460555887,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":677857},
-{"pid":27443,"tid":27477,"ts":326460555887,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":677857},
-{"pid":27443,"tid":27477,"ts":326460555917,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":677888},
-{"pid":27443,"tid":27477,"ts":326460555917,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":677888,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460555948,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":677918},
-{"pid":27443,"tid":27477,"ts":326460555978,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":677949},
-{"pid":27443,"tid":27477,"ts":326460556039,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":678010,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460556070,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":156}},"tts":678040,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460556070,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":9043968},"tts":678040,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460556131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":678101,"id":"0xaf88aaf4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460556161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":678132,"id":"0xaf88a96bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460556192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":678162,"id":"0xaf88a6b0f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460534400,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":153,"tdur":152,"tts":326995},
-{"pid":27443,"tid":27466,"ts":326460534461,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":92,"tdur":61,"tts":327056},
-{"pid":27443,"tid":27466,"ts":326460534492,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":327086,"id":"0xc4c1b80a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460534889,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327269,"id":"0xaf88aafbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460534919,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":327300},
-{"pid":27443,"tid":27466,"ts":326460534950,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":327330,"id":"0xccc50502"},
-{"pid":27443,"tid":27466,"ts":326460537361,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":327483},
-{"pid":27443,"tid":27466,"ts":326460537391,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":327514},
-{"pid":27443,"tid":27466,"ts":326460537422,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":327544,"id":"0xba458f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460537452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327575,"id":"0xaf88a7b1f182217a"},
-{"pid":27443,"tid":27466,"ts":326460551949,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":327697},
-{"pid":27443,"tid":27466,"ts":326460551980,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":327727},
-{"pid":27443,"tid":27466,"ts":326460551980,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":327727,"id":"0xba459202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460552010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327788,"id":"0xaf88a7b3f182217a"},
-{"pid":27443,"tid":27466,"ts":326460556558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":327849,"id":"0xaf88aaf4f3d03dca"},{"pid":27443,"tid":27466,"ts":326460556589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":327880},
-{"pid":27443,"tid":27466,"ts":326460556589,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":327880,"id":"0xccc50602"},
-{"pid":27443,"tid":27466,"ts":326460556924,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":327971},
-{"pid":27443,"tid":27466,"ts":326460556955,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":328002},
-{"pid":27443,"tid":27466,"ts":326460556955,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":328002,"id":"0xba459402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460556985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":328032,"id":"0xaf88a44cf182217a"},
-{"pid":27443,"tid":27466,"ts":326460567423,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":328155,"id":"0xaf88aaf5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460567423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":328155},
-{"pid":27443,"tid":27466,"ts":326460567454,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":328185,"id":"0xccc50702"},
-{"pid":27443,"tid":27466,"ts":326460574748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":328307,"id":"0xaf88aaf6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460574748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":328307},
-{"pid":27443,"tid":27466,"ts":326460574779,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":328338,"id":"0xccc50802"},
-{"pid":27443,"tid":27466,"ts":326460575664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":328490,"id":"0xaf88aaf7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460575694,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":328490},
-{"pid":27443,"tid":27466,"ts":326460575694,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":328490,"id":"0xccc50902"},
-{"pid":27443,"tid":27466,"ts":326460602522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":328643,"id":"0xaf88aaf0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460602522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":2777,"tdur":183,"tts":328643},
-{"pid":27443,"tid":27466,"ts":326460602522,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":61,"tts":328643},
-{"pid":27443,"tid":27466,"ts":326460602674,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":328704,"id":"0xccc51602"},
-{"pid":27443,"tid":27466,"ts":326460602674,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":328704},
-{"pid":27443,"tid":27466,"ts":326460605574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":328887,"id":"0xaf88aaf1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460605574,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":335,"tdur":31,"tts":328887},
-{"pid":27443,"tid":27466,"ts":326460605909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":328948},
-{"pid":27443,"tid":27466,"ts":326460605940,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":328948,"id":"0xccc50a02"},
-{"pid":27443,"tid":27466,"ts":326460606032,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":213,"tts":329040},
-{"pid":27443,"tid":27466,"ts":326460606062,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":183,"tdur":183,"tts":329070},
-{"pid":27443,"tid":27466,"ts":326460606062,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":329070,"id":"0xba459502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460606093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":329101,"id":"0xaf88a976f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460606123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":329131,"id":"0xaf88a752f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460606215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":329223,"id":"0xaf88a977f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460606276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":329284,"id":"0xaf88aaf2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460606276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":732,"tdur":61,"tts":329284},
-{"pid":27443,"tid":27466,"ts":326460606276,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":329314,"id":"0xccc50b02"},
-{"pid":27443,"tid":27466,"ts":326460607008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":329375,"id":"0xaf88aaf3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460607008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":329406},
-{"pid":27443,"tid":27466,"ts":326460607039,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":329406,"id":"0xccc50c02"},
-{"pid":27443,"tid":27466,"ts":326460624924,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":335,"tdur":306,"tts":329558},
-{"pid":27443,"tid":27466,"ts":326460625015,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":214,"tdur":183,"tts":329650},
-{"pid":27443,"tid":27466,"ts":326460625046,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":329681,"id":"0xba459602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460625137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":329742,"id":"0xaf88a973f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460625198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":329803,"id":"0xaf88a76af3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460625534,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":244,"tts":329955},
-{"pid":27443,"tid":27466,"ts":326460625595,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":153,"tdur":153,"tts":330016},
-{"pid":27443,"tid":27466,"ts":326460625626,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":330047,"id":"0xba459702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460625687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":330138,"id":"0xaf88a90cf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460631180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":330321,"id":"0xaf88aa8cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460631211,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":153,"tts":330352},
-{"pid":27443,"tid":27466,"ts":326460631241,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":330382,"id":"0xccc50d02"},
-{"pid":27443,"tid":27466,"ts":326460631394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":330535,"id":"0xaf88aa8df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460556924,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":458,"tdur":458,"tts":7352296},
-{"pid":27443,"tid":27459,"ts":326460557016,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"69","scriptName":"undefined","scriptLine":22,"frame":"0x78c60000"}},"dur":366,"tdur":366,"tts":7352388},
-{"pid":27443,"tid":27459,"ts":326460557046,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7352418},
-{"pid":27443,"tid":27459,"ts":326460557352,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7352723},
-{"pid":27443,"tid":27459,"ts":326460557443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7352846,"id":"0xaf88a6b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460557474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1220,"tdur":1220,"tts":7352846},
-{"pid":27443,"tid":27459,"ts":326460557504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7352876,"id":"0xaf88a74cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460557504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7352876,"id":"0xaf88a954f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460557535,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":1129,"tdur":1129,"tts":7352907},
-{"pid":27443,"tid":27459,"ts":326460557535,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1129,"tdur":1129,"tts":7352907},
-{"pid":27443,"tid":27459,"ts":326460557565,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7352937},
-{"pid":27443,"tid":27459,"ts":326460557596,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":61,"tdur":0,"tts":7352998},
-{"pid":27443,"tid":27459,"ts":326460557657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353029,"id":"0xaf88a965f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460557687,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7353059},
-{"pid":27443,"tid":27459,"ts":326460557748,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":0,"tdur":0,"tts":7353120},
-{"pid":27443,"tid":27459,"ts":326460557779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353151,"id":"0xaf88a966f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460557809,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7353181},
-{"pid":27443,"tid":27459,"ts":326460557840,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":7353242},
-{"pid":27443,"tid":27459,"ts":326460557901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353273,"id":"0xaf88a967f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460557931,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7353303},
-{"pid":27443,"tid":27459,"ts":326460557962,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":7353334},
-{"pid":27443,"tid":27459,"ts":326460558023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353395,"id":"0xaf88a960f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558054,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7353425},
-{"pid":27443,"tid":27459,"ts":326460558084,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":7353456},
-{"pid":27443,"tid":27459,"ts":326460558145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353517,"id":"0xaf88a961f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558145,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7353548},
-{"pid":27443,"tid":27459,"ts":326460558206,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":7353578},
-{"pid":27443,"tid":27459,"ts":326460558237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353639,"id":"0xaf88a962f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558267,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7353639},
-{"pid":27443,"tid":27459,"ts":326460558298,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":7353700},
-{"pid":27443,"tid":27459,"ts":326460558389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353761,"id":"0xaf88a963f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558450,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7353822},
-{"pid":27443,"tid":27459,"ts":326460558481,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":7353853},
-{"pid":27443,"tid":27459,"ts":326460558511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7353914,"id":"0xaf88a97cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558542,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7353914},
-{"pid":27443,"tid":27459,"ts":326460558572,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":61,"tdur":30,"tts":7353975},
-{"pid":27443,"tid":27459,"ts":326460558633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7354005,"id":"0xaf88a97df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7354097,"id":"0xaf88a74cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460558755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":62,"tdur":61,"tts":7354127},
-{"pid":27443,"tid":27459,"ts":326460558755,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7354127,"id":"0xaf88a74df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460558786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7354158,"id":"0xaf88a944f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558786,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":31,"tdur":30,"tts":7354158},
-{"pid":27443,"tid":27459,"ts":326460558847,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7354219,"id":"0xaf88a74df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460558878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2563,"tdur":2564,"tts":7354249},
-{"pid":27443,"tid":27459,"ts":326460558908,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7354280,"id":"0xaf88a74ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460558939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7354311,"id":"0xaf88a945f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460558939,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2502,"tdur":2502,"tts":7354311},
-{"pid":27443,"tid":27459,"ts":326460558969,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2442,"tdur":2442,"tts":7354341},
-{"pid":27443,"tid":27459,"ts":326460559000,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":150,"frame":"0x78c60000"}},"dur":2411,"tdur":2411,"tts":7354372},
-{"pid":27443,"tid":27459,"ts":326460559030,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":2381,"tdur":2381,"tts":7354402},
-{"pid":27443,"tid":27459,"ts":326460559122,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":64,"frame":"0x78c60000"}},"dur":2258,"tdur":2258,"tts":7354494},
-{"pid":27443,"tid":27459,"ts":326460559152,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7354524},
-{"pid":27443,"tid":27459,"ts":326460560220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7355592,"id":"0xaf88a97ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460560251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7355623,"id":"0xaf88a74ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460560312,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":172,"frame":"0x78c60000","timeout":300,"singleShot":true}},"tts":7355684,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460561350,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7356722},
-{"pid":27443,"tid":27459,"ts":326460561502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7356874,"id":"0xaf88a74ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460561502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6074,"tdur":6074,"tts":7356874},
-{"pid":27443,"tid":27459,"ts":326460561533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7356905,"id":"0xaf88a748f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460561563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7356935,"id":"0xaf88a947f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460561563,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":6013,"tdur":6013,"tts":7356935},
-{"pid":27443,"tid":27459,"ts":326460561594,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":5951,"tdur":5951,"tts":7356966},
-{"pid":27443,"tid":27459,"ts":326460561624,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":151,"frame":"0x78c60000"}},"dur":5921,"tdur":5921,"tts":7356996},
-{"pid":27443,"tid":27459,"ts":326460561655,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":5890,"tdur":5890,"tts":7357027},
-{"pid":27443,"tid":27477,"ts":326460559366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":678376,"id":"0xaf88a44cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460559427,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":678437},
-{"pid":27443,"tid":27477,"ts":326460559488,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460561483.0,"frame_time_us":326460552673.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":61,"tdur":61,"tts":678498},
-{"pid":27443,"tid":27477,"ts":326460559518,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":678528,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460560281,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":678651,"id":"0xaf88a44df182217a"},
-{"pid":27443,"tid":27477,"ts":326460560281,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":123,"tdur":91,"tts":678651},
-{"pid":27443,"tid":27477,"ts":326460560281,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":61,"tts":678651},
-{"pid":27443,"tid":27477,"ts":326460560312,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":678681,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460560312,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":31,"tts":678681},
-{"pid":27443,"tid":27477,"ts":326460560343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":678712,"id":"0xaf88a448f182217a"},
-{"pid":27443,"tid":27477,"ts":326460560404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":678742,"id":"0xaf88a44ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460560404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":678742},
-{"pid":27443,"tid":27477,"ts":326460560404,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":678773},
-{"pid":27443,"tid":27477,"ts":326460560434,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":678773,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460560434,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":678773},
-{"pid":27443,"tid":27477,"ts":326460560465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":678803,"id":"0xaf88a449f182217a"},
-{"pid":27443,"tid":27477,"ts":326460560465,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":678834,"id":"0xaf88a44ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460560495,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":678834},
-{"pid":27443,"tid":27477,"ts":326460560495,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":678834},
-{"pid":27443,"tid":27477,"ts":326460560495,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":678834,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460560526,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":678864},
-{"pid":27443,"tid":27477,"ts":326460560526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":678864,"id":"0xaf88a448f182217a"},
-{"pid":27443,"tid":27477,"ts":326460560526,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":678864},
-{"pid":27443,"tid":27477,"ts":326460560556,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":152,"tts":678895},
-{"pid":27443,"tid":27477,"ts":326460560556,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":678895},
-{"pid":27443,"tid":27477,"ts":326460560556,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":678895},
-{"pid":27443,"tid":27477,"ts":326460560587,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":678925},
-{"pid":27443,"tid":27477,"ts":326460560587,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":678925},
-{"pid":27443,"tid":27477,"ts":326460560678,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":679017},
-{"pid":27443,"tid":27477,"ts":326460560678,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":679017},
-{"pid":27443,"tid":27477,"ts":326460560709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":679047,"id":"0xaf88a449f182217a"},
-{"pid":27443,"tid":27477,"ts":326460560709,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":214,"tts":679047},
-{"pid":27443,"tid":27477,"ts":326460560739,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":214,"tdur":183,"tts":679078},
-{"pid":27443,"tid":27477,"ts":326460560739,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":679078},
-{"pid":27443,"tid":27477,"ts":326460560770,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":679108},
-{"pid":27443,"tid":27477,"ts":326460560770,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":152,"tdur":122,"tts":679108},
-{"pid":27443,"tid":27477,"ts":326460560770,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":122,"tts":679108},
-{"pid":27443,"tid":27477,"ts":326460560922,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":679230},
-{"pid":27443,"tid":27477,"ts":326460560953,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":679261},
-{"pid":27443,"tid":27477,"ts":326460601850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":679353,"id":"0xaf88a44af182217a"},
-{"pid":27443,"tid":27477,"ts":326460601881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":3845,"tdur":305,"tts":679383},
-{"pid":27443,"tid":27477,"ts":326460601881,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":3540,"tdur":244,"tts":679383},
-{"pid":27443,"tid":27477,"ts":326460601911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":679414,"id":"0xaf88aaf0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460603102,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":679536,"id":"0xaf88a44bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460603102,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2319,"tdur":30,"tts":679536},
-{"pid":27443,"tid":27477,"ts":326460606459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":679749,"id":"0xaf88a44bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460606581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":366,"tdur":153,"tts":679749},
-{"pid":27443,"tid":27477,"ts":326460606611,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":336,"tdur":122,"tts":679780},
-{"pid":27443,"tid":27477,"ts":326460606611,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":61,"tts":679780},
-{"pid":27443,"tid":27477,"ts":326460606917,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-45.403,"BeginFrameArgs":{"deadline_us":326460561483.0,"frame_time_us":326460552673.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":679871,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460606947,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":679902,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460676534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":679963,"id":"0xaf88a444f182217a"},
-{"pid":27443,"tid":27477,"ts":326460676534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":336,"tts":679963},
-{"pid":27443,"tid":27477,"ts":326460676595,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460641904.0,"frame_time_us":326460636081.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":305,"tdur":275,"tts":680024},
-{"pid":27443,"tid":27477,"ts":326460676595,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460641904.0,"frame_time_us":326460636081.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":305,"tdur":244,"tts":680024},
-{"pid":27443,"tid":27477,"ts":326460676625,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":138},"tts":680054},
-{"pid":27443,"tid":27477,"ts":326460676717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":680146,"id":"0xaf88a907f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460676808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":680207,"id":"0xaf88a779f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460676839,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":680238},
-{"pid":27443,"tid":27477,"ts":326460676839,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460652747},"dur":30,"tdur":0,"tts":680268},
-{"pid":27443,"tid":27477,"ts":326460676869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":680268,"id":"0xaf88a445f182217a"},
-{"pid":27443,"tid":27477,"ts":326460676900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":680299,"id":"0xaf88a445f182217a"},
-{"pid":27443,"tid":27477,"ts":326460676930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":680329},
-{"pid":27443,"tid":27477,"ts":326460676930,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":680329},
-{"pid":27443,"tid":27459,"ts":326460561716,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":5799,"tdur":5799,"tts":7357088},
-{"pid":27443,"tid":27459,"ts":326460561746,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7357118},
-{"pid":27443,"tid":27459,"ts":326460566477,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7361880},
-{"pid":27443,"tid":27459,"ts":326460566630,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581"}},"dur":793,"tdur":793,"tts":7362002},
-{"pid":27443,"tid":27459,"ts":326460567088,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581","requestMethod":"GET"}},"tts":7362490,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460567149,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581","priority":0},"tts":7362520,"id":"0xaf88ae4cfda536e2"},
-{"pid":27443,"tid":27459,"ts":326460567301,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":92,"tdur":92,"tts":7362673},
-{"pid":27443,"tid":27459,"ts":326460567332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7362704,"id":"0xaf88aaf5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460567454,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":30,"tdur":30,"tts":7362826},
-{"pid":27443,"tid":27459,"ts":326460567484,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7362887,"id":"0xaf88a97ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460567637,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7363009,"id":"0xaf88a748f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460567637,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":366,"tdur":366,"tts":7363009},
-{"pid":27443,"tid":27459,"ts":326460567667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7363039,"id":"0xaf88a749f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460567698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7363070,"id":"0xaf88a941f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460567698,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":305,"tdur":305,"tts":7363070},
-{"pid":27443,"tid":27459,"ts":326460567698,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":305,"tdur":305,"tts":7363070},
-{"pid":27443,"tid":27459,"ts":326460567759,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":152,"frame":"0x78c60000"}},"dur":244,"tdur":214,"tts":7363131},
-{"pid":27443,"tid":27459,"ts":326460567759,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":214,"tdur":184,"tts":7363161},
-{"pid":27443,"tid":27459,"ts":326460567851,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":122,"tdur":123,"tts":7363222},
-{"pid":27443,"tid":27459,"ts":326460567851,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7363253},
-{"pid":27443,"tid":27459,"ts":326460567942,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7363314},
-{"pid":27443,"tid":27459,"ts":326460568034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7363406,"id":"0xaf88a749f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460568064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":336,"tts":7363436},
-{"pid":27443,"tid":27459,"ts":326460568095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7363467,"id":"0xaf88a74af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460568095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7363467,"id":"0xaf88a942f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460568095,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":305,"tdur":305,"tts":7363467},
-{"pid":27443,"tid":27459,"ts":326460568125,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":244,"tdur":244,"tts":7363497},
-{"pid":27443,"tid":27459,"ts":326460568156,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":153,"frame":"0x78c60000"}},"dur":213,"tdur":213,"tts":7363528},
-{"pid":27443,"tid":27459,"ts":326460568186,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":183,"tdur":183,"tts":7363558},
-{"pid":27443,"tid":27459,"ts":326460568247,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":92,"tdur":92,"tts":7363619},
-{"pid":27443,"tid":27459,"ts":326460568247,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7363650},
-{"pid":27443,"tid":27459,"ts":326460568308,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7363711},
-{"pid":27443,"tid":27459,"ts":326460568430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7363802,"id":"0xaf88a74af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460568430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7363802},
-{"pid":27443,"tid":27459,"ts":326460568461,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7363833,"id":"0xaf88a74bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460568491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7363863,"id":"0xaf88a943f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460568491,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":0,"tdur":0,"tts":7363863},
-{"pid":27443,"tid":27459,"ts":326460568553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7363924,"id":"0xaf88a74bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460568553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":763,"tdur":763,"tts":7363924},
-{"pid":27443,"tid":27459,"ts":326460568583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7363955,"id":"0xaf88a744f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460568614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7363985,"id":"0xaf88a95ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460568614,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":671,"tdur":672,"tts":7363985},
-{"pid":27443,"tid":27459,"ts":326460568614,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":671,"tdur":641,"tts":7364016},
-{"pid":27443,"tid":27459,"ts":326460568675,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":156,"frame":"0x78c60000"}},"dur":610,"tdur":610,"tts":7364047},
-{"pid":27443,"tid":27459,"ts":326460568675,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":579,"tdur":549,"tts":7364077},
-{"pid":27443,"tid":27459,"ts":326460568766,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":488,"tdur":457,"tts":7364169},
-{"pid":27443,"tid":27459,"ts":326460568797,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7364169},
-{"pid":27443,"tid":27459,"ts":326460569224,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7364596},
-{"pid":27443,"tid":27459,"ts":326460569346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7364718,"id":"0xaf88a744f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460569346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7364718},
-{"pid":27443,"tid":27459,"ts":326460569377,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7364748,"id":"0xaf88a745f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460569377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7364748,"id":"0xaf88a95ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460569407,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":0,"tdur":0,"tts":7364779},
-{"pid":27443,"tid":27459,"ts":326460569438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7364810,"id":"0xaf88a745f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460569529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":7364840},
-{"pid":27443,"tid":27459,"ts":326460569560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7364871,"id":"0xaf88a746f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460569590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7364901,"id":"0xaf88a95df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460569590,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":61,"tts":7364901},
-{"pid":27443,"tid":27459,"ts":326460569621,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":7364932},
-{"pid":27443,"tid":27459,"ts":326460569621,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":30,"tdur":30,"tts":7364932},
-{"pid":27443,"tid":27459,"ts":326460569712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7364993,"id":"0xaf88a746f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460569712,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2869,"tdur":0,"tts":7364993},
-{"pid":27443,"tid":27459,"ts":326460572581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8576,"tdur":8241,"tts":7365023},
-{"pid":27443,"tid":27459,"ts":326460572612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7365084,"id":"0xaf88a747f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460572642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7365084,"id":"0xaf88a959f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460572673,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":8454,"tdur":8118,"tts":7365115},
-{"pid":27443,"tid":27459,"ts":326460572673,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":8454,"tdur":8088,"tts":7365145},
-{"pid":27443,"tid":27459,"ts":326460572734,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":159,"frame":"0x78c60000"}},"dur":8393,"tdur":8057,"tts":7365176},
-{"pid":27443,"tid":27459,"ts":326460572764,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":8332,"tdur":7997,"tts":7365206},
-{"pid":27443,"tid":27459,"ts":326460572825,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":8271,"tdur":7905,"tts":7365298},
-{"pid":27443,"tid":27459,"ts":326460572856,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7365298},
-{"pid":27443,"tid":27459,"ts":326460574016,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7366458},
-{"pid":27443,"tid":27459,"ts":326460574107,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":611,"tdur":580,"tts":7366580},
-{"pid":27443,"tid":27459,"ts":326460574473,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.97","frame":"0x78c60000","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7366915,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460574535,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7366976,"id":"0xaf88ae4cfda7ac62"},
-{"pid":27443,"tid":27459,"ts":326460574626,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":61,"tdur":61,"tts":7367068},
-{"pid":27443,"tid":27459,"ts":326460574657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7367099,"id":"0xaf88aaf6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460574809,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":855,"tdur":580,"tts":7367251},
-{"pid":27443,"tid":27459,"ts":326460575420,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.98","frame":"0x78c60000","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7367617,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460575450,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7367648,"id":"0xaf88ae4cfda7a8e2"},
-{"pid":27443,"tid":27459,"ts":326460575450,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7367648},
-{"pid":27443,"tid":27459,"ts":326460575603,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":61,"tdur":31,"tts":7367770},
-{"pid":27443,"tid":27459,"ts":326460575603,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7367770,"id":"0xaf88aaf7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460575755,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":519,"tdur":518,"tts":7367923},
-{"pid":27443,"tid":27459,"ts":326460576061,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.99","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7368228,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460576091,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7368289,"id":"0xaf88ae4cfda79ae2"},
-{"pid":27443,"tid":27459,"ts":326460576213,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleRequest","args":{},"tts":7368380,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460576213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7368380,"id":"0xaf88a978f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460576244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7368411,"id":"0xaf88a740f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460576335,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":458,"tdur":427,"tts":7368533},
-{"pid":27443,"tid":27459,"ts":326460576640,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.100","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7368808,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460576671,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7368869,"id":"0xaf88ae4cfda7ef62"},
-{"pid":27443,"tid":27459,"ts":326460576762,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7368960,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460576885,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":457,"tdur":458,"tts":7369052},
-{"pid":27443,"tid":27459,"ts":326460577190,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.101","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7369357,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460577220,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7369388,"id":"0xaf88ae4cfda78862"},
-{"pid":27443,"tid":27459,"ts":326460577312,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7369479,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460577403,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":428,"tdur":427,"tts":7369571},
-{"pid":27443,"tid":27459,"ts":326460577678,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.102","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7369845,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460577709,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7369906,"id":"0xaf88ae4cfda784e2"},
-{"pid":27443,"tid":27459,"ts":326460577800,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7369967,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460577922,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":458,"tdur":427,"tts":7370090},
-{"pid":27443,"tid":27459,"ts":326460578227,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.103","frame":"0x78c60000","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7370395,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460578258,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7370425,"id":"0xaf88ae4cfda78362"},
-{"pid":27443,"tid":27459,"ts":326460578350,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7370517,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460578441,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":427,"tdur":428,"tts":7370608},
-{"pid":27443,"tid":27459,"ts":326460578716,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.104","frame":"0x78c60000","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7370914,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460578777,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7370944,"id":"0xaf88ae4cfda87fe2"},
-{"pid":27443,"tid":27459,"ts":326460578838,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7371005,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460578929,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":458,"tdur":428,"tts":7371127},
-{"pid":27443,"tid":27459,"ts":326460579235,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.105","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7371402,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460579265,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7371432,"id":"0xaf88ae4cfda87a62"},
-{"pid":27443,"tid":27459,"ts":326460579357,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7371524,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460579448,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":428,"tdur":427,"tts":7371616},
-{"pid":27443,"tid":27459,"ts":326460579723,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.106","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7371921,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460579784,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7371951,"id":"0xaf88ae4cfda876e2"},
-{"pid":27443,"tid":27459,"ts":326460579845,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7372012,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460579937,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":641,"tdur":550,"tts":7372134},
-{"pid":27443,"tid":27459,"ts":326460580425,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.107","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7372531,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460580455,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7372562,"id":"0xaf88ae4cf8eabd62"},
-{"pid":27443,"tid":27459,"ts":326460580547,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7372653,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460580639,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":457,"tdur":427,"tts":7372745},
-{"pid":27443,"tid":27459,"ts":326460580944,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.108","frame":"0x78c60000","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","requestMethod":"GET"}},"tts":7373050,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460580974,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2","priority":0},"tts":7373081,"id":"0xaf88ae4cf8eab9e2"},
-{"pid":27443,"tid":27459,"ts":326460581066,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7373172,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460581188,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7373294,"id":"0xaf88a747f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460581188,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10591,"tdur":10377,"tts":7373294},
-{"pid":27443,"tid":27459,"ts":326460581218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7373325,"id":"0xaf88a741f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460581249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7373355,"id":"0xaf88a95cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460581249,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":10499,"tdur":10286,"tts":7373355},
-{"pid":27443,"tid":27459,"ts":326460581249,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":10499,"tdur":10255,"tts":7373386},
-{"pid":27443,"tid":27459,"ts":326460581280,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":155,"frame":"0x78c60000"}},"dur":10468,"tdur":10225,"tts":7373416},
-{"pid":27443,"tid":27459,"ts":326460581310,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":10407,"tdur":10194,"tts":7373416},
-{"pid":27443,"tid":27459,"ts":326460581371,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":10346,"tdur":10133,"tts":7373477},
-{"pid":27443,"tid":27459,"ts":326460581402,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7373508},
-{"pid":27443,"tid":27459,"ts":326460586010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7378116,"id":"0xaf88a979f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460586041,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":173,"frame":"0x78c60000","timeout":25000,"singleShot":true}},"tts":7378177,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460586621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7378605,"id":"0xaf88a97af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460586651,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7378635,"id":"0xaf88a742f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460586682,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":174,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7378696,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460591016,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7382939},
-{"pid":27443,"tid":27459,"ts":326460591138,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8"}},"dur":549,"tdur":550,"tts":7383030},
-{"pid":27443,"tid":27459,"ts":326460591504,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.109","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8","requestMethod":"GET"}},"tts":7383427,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460591565,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8","priority":0},"tts":7383457,"id":"0xaf88ae4cf8eab462"},
-{"pid":27443,"tid":27459,"ts":326460591656,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7383549,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460591809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7383702,"id":"0xaf88a741f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460591809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7600,"tdur":6989,"tts":7383702},
-{"pid":27443,"tid":27459,"ts":326460591840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7383732,"id":"0xaf88a743f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460591870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7383763,"id":"0xaf88a96ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460591870,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":7383763},
-{"pid":27443,"tid":27459,"ts":326460592114,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":7264,"tdur":6867,"tts":7383793},
-{"pid":27443,"tid":27459,"ts":326460592114,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":7264,"tdur":6867,"tts":7383793},
-{"pid":27443,"tid":27459,"ts":326460592145,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":171,"frame":"0x78c60000"}},"dur":7233,"tdur":6836,"tts":7383824},
-{"pid":27443,"tid":27459,"ts":326460592175,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":7173,"tdur":6776,"tts":7383854},
-{"pid":27443,"tid":27459,"ts":326460593152,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"103","scriptName":"undefined","scriptLine":15,"frame":"0x78c60000"}},"dur":6196,"tdur":6135,"tts":7384495},
-{"pid":27443,"tid":27459,"ts":326460593152,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7384526},
-{"pid":27443,"tid":27459,"ts":326460598279,"ph":"X","cat":"devtools.timeline","name":"XHRReadyStateChange","args":{"data":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","readyState":1,"frame":"0x78c60000"}},"dur":31,"tdur":30,"tts":7389562},
-{"pid":27443,"tid":27459,"ts":326460598676,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3"}},"dur":580,"tdur":580,"tts":7389958},
-{"pid":27443,"tid":27459,"ts":326460599073,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.110","frame":"0x78c60000","url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","requestMethod":"GET"}},"tts":7390386,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460599134,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","priority":2},"tts":7390416,"id":"0xaf88ae4cf8eab0e2"},
-{"pid":27443,"tid":27459,"ts":326460599225,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7390508,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460599317,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7390599},
-{"pid":27443,"tid":27459,"ts":326460599439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460592},"tts":7390721,"id":"0xaf88a740f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7390752},
-{"pid":27443,"tid":27459,"ts":326460599500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7390782,"id":"0xaf88a743f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599500,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7390782},
-{"pid":27443,"tid":27459,"ts":326460599531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7390813,"id":"0xaf88a75cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7390843,"id":"0xaf88a965f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460599561,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7390843},
-{"pid":27443,"tid":27459,"ts":326460599561,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":7390843},
-{"pid":27443,"tid":27459,"ts":326460599622,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460587},"tts":7390904,"id":"0xaf88a742f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599622,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7390904},
-{"pid":27443,"tid":27459,"ts":326460599653,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7390935,"id":"0xaf88a75cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":62,"tts":7390965},
-{"pid":27443,"tid":27459,"ts":326460599683,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7390965,"id":"0xaf88a75df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7390996,"id":"0xaf88a966f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460599714,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":31,"tts":7390996},
-{"pid":27443,"tid":27459,"ts":326460599714,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":31,"tts":7390996},
-{"pid":27443,"tid":27459,"ts":326460599775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391057,"id":"0xaf88a75df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7391057},
-{"pid":27443,"tid":27459,"ts":326460599805,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391088,"id":"0xaf88a75ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599805,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391088,"id":"0xaf88a967f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460599805,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7391088},
-{"pid":27443,"tid":27459,"ts":326460599836,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7391118},
-{"pid":27443,"tid":27459,"ts":326460599866,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391149,"id":"0xaf88a75ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599897,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7391179},
-{"pid":27443,"tid":27459,"ts":326460599897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391179,"id":"0xaf88a75ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391210,"id":"0xaf88a960f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460599927,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7391210},
-{"pid":27443,"tid":27459,"ts":326460599927,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":7391210},
-{"pid":27443,"tid":27459,"ts":326460599989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391271,"id":"0xaf88a75ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460599989,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":122,"tts":7391271},
-{"pid":27443,"tid":27459,"ts":326460600202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391301,"id":"0xaf88a758f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600233,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391332,"id":"0xaf88a961f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600233,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7391332},
-{"pid":27443,"tid":27459,"ts":326460600263,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7391362},
-{"pid":27443,"tid":27459,"ts":326460600294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391423,"id":"0xaf88a758f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600324,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7391423},
-{"pid":27443,"tid":27459,"ts":326460600324,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391423,"id":"0xaf88a759f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391454,"id":"0xaf88a962f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600355,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7391454},
-{"pid":27443,"tid":27459,"ts":326460600355,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":0,"tts":7391484},
-{"pid":27443,"tid":27459,"ts":326460600416,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391515,"id":"0xaf88a759f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600416,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7391515},
-{"pid":27443,"tid":27459,"ts":326460600446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391545,"id":"0xaf88a75af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600446,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391545,"id":"0xaf88a963f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600477,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7391576},
-{"pid":27443,"tid":27459,"ts":326460600477,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7391576},
-{"pid":27443,"tid":27459,"ts":326460600538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391637,"id":"0xaf88a75af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7391637},
-{"pid":27443,"tid":27459,"ts":326460600538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391667,"id":"0xaf88a75bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391667,"id":"0xaf88a97cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600568,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7391667},
-{"pid":27443,"tid":27459,"ts":326460600599,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7391698},
-{"pid":27443,"tid":27459,"ts":326460600629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391728,"id":"0xaf88a75bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600629,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7391759},
-{"pid":27443,"tid":27459,"ts":326460600660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391759,"id":"0xaf88a754f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391759,"id":"0xaf88a97df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600690,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7391790},
-{"pid":27443,"tid":27459,"ts":326460600690,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":7391790},
-{"pid":27443,"tid":27459,"ts":326460600752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391851,"id":"0xaf88a754f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7391851},
-{"pid":27443,"tid":27459,"ts":326460600782,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391881,"id":"0xaf88a755f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7391881,"id":"0xaf88a97ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600782,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/Document.cpp","src_func":"checkLoadEventSoon"},"dur":31,"tdur":31,"tts":7391881},
-{"pid":27443,"tid":27459,"ts":326460600813,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7391912},
-{"pid":27443,"tid":27459,"ts":326460600843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7391942,"id":"0xaf88a755f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1892,"tdur":1831,"tts":7391973},
-{"pid":27443,"tid":27459,"ts":326460600874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7391973,"id":"0xaf88a756f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460600904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7392003,"id":"0xaf88a97af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460600904,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1831,"tdur":1801,"tts":7392003},
-{"pid":27443,"tid":27459,"ts":326460600904,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1831,"tdur":1801,"tts":7392003},
-{"pid":27443,"tid":27459,"ts":326460600935,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":174,"frame":"0x78c60000"}},"dur":1800,"tdur":1770,"tts":7392034},
-{"pid":27443,"tid":27459,"ts":326460600965,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1740,"tdur":1709,"tts":7392064},
-{"pid":27443,"tid":27459,"ts":326460601026,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":42,"frame":"0x78c60000"}},"dur":1679,"tdur":1648,"tts":7392125},
-{"pid":27443,"tid":27459,"ts":326460601057,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7392156},
-{"pid":27443,"tid":27459,"ts":326460601667,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":153,"tdur":122,"tts":7392766},
-{"pid":27443,"tid":27459,"ts":326460601698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7392797,"id":"0xaf88a44af182217a"},
-{"pid":27443,"tid":27459,"ts":326460601911,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"}},"dur":519,"tdur":519,"tts":7392980},
-{"pid":27443,"tid":27459,"ts":326460602278,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.111","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999","requestMethod":"GET"}},"tts":7393346,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460602308,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999","priority":1},"tts":7393377,"id":"0xaf88ae4cf8eaaf62"},
-{"pid":27443,"tid":27459,"ts":326460602400,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7393468,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460602644,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7393712,"id":"0xaf88a97bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460602674,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":175,"frame":"0x78c60000","timeout":25000,"singleShot":true}},"tts":7393743,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460602674,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7393773},
-{"pid":27443,"tid":27459,"ts":326460602766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7393865,"id":"0xaf88a756f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460602796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":214,"tts":7393865},
-{"pid":27443,"tid":27459,"ts":326460602827,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7393895,"id":"0xaf88a757f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460602827,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7393895,"id":"0xaf88a8abf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460602827,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":427,"tdur":184,"tts":7393895},
-{"pid":27443,"tid":27459,"ts":326460602857,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7393926,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460602857,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":3.732},"dur":397,"tdur":153,"tts":7393926},
-{"pid":27443,"tid":27459,"ts":326460602857,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7393956},
-{"pid":27443,"tid":27459,"ts":326460602857,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":0,"tts":7393956},
-{"pid":27443,"tid":27459,"ts":326460603193,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7394018},
-{"pid":27443,"tid":27459,"ts":326460603193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7394018,"id":"0xaf88a974f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460603224,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7394048,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460603224,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7394079,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460603285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7394109,"id":"0xaf88a757f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460603315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":7394140},
-{"pid":27443,"tid":27459,"ts":326460603315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394140,"id":"0xaf88a750f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460603346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7394170,"id":"0xaf88a978f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460603346,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/scheduler/resource_dispatch_throttler.cc","src_func":"ResourceDispatchThrottler"},"dur":183,"tdur":183,"tts":7394170},
-{"pid":27443,"tid":27459,"ts":326460603376,"ph":"X","cat":"loader","name":"ResourceDispatchThrottler::Flush","args":{"total_throttled_messages":13},"dur":153,"tdur":152,"tts":7394201},
-{"pid":27443,"tid":27459,"ts":326460603376,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":31,"tdur":30,"tts":7394201},
-{"pid":27443,"tid":27459,"ts":326460603407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394231,"id":"0xaf88aaf1f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460603407,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":30,"tdur":31,"tts":7394231},
-{"pid":27443,"tid":27459,"ts":326460603407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394262,"id":"0xaf88aaf2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460603437,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":31,"tdur":30,"tts":7394262},
-{"pid":27443,"tid":27459,"ts":326460603468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394292,"id":"0xaf88aaf3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460603468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7394292,"id":"0xaf88a975f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460603498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394323,"id":"0xaf88a751f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460603590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7394414,"id":"0xaf88a750f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460603590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7394414},
-{"pid":27443,"tid":27459,"ts":326460606337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7394506,"id":"0xaf88a752f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460606367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7394536},
-{"pid":27443,"tid":27459,"ts":326460606367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394536,"id":"0xaf88a753f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460606398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7394567,"id":"0xaf88a976f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460606398,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7394567},
-{"pid":27443,"tid":27459,"ts":326460606459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7394628,"id":"0xaf88a753f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460606459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7394628},
-{"pid":27443,"tid":27459,"ts":326460606489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394658,"id":"0xaf88a76cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460606489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7394658,"id":"0xaf88a974f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460606489,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7394658},
-{"pid":27443,"tid":27459,"ts":326460606520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7394689,"id":"0xaf88a970f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460606520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7394689,"id":"0xaf88a971f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460606581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7394750,"id":"0xaf88a76cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460606581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1526,"tdur":183,"tts":7394750},
-{"pid":27443,"tid":27459,"ts":326460606611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394781,"id":"0xaf88a76df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460606611,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1374,"tdur":0,"tts":7394781},
-{"pid":27443,"tid":27459,"ts":326460607985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7394811,"id":"0xaf88a970f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460607985,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7394811},
-{"pid":27443,"tid":27459,"ts":326460608015,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7394842,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608015,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7394842,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608046,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7394872,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608076,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":11155},"tts":7394903,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608076,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7394903,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7394964,"id":"0xaf88a76df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460608137,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":457,"tts":7394964},
-{"pid":27443,"tid":27459,"ts":326460608168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7394994,"id":"0xaf88a76ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460608168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7394994,"id":"0xaf88a977f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460608198,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":396,"tts":7395025},
-{"pid":27443,"tid":27459,"ts":326460608260,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":335,"tdur":305,"tts":7395116},
-{"pid":27443,"tid":27459,"ts":326460608534,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.98","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7395391,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460608626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7395452,"id":"0xaf88a76ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460608656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":184,"tts":7395482},
-{"pid":27443,"tid":27459,"ts":326460608656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7395482,"id":"0xaf88a76ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460608687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7395513,"id":"0xaf88a971f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460608687,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":153,"tts":7395513},
-{"pid":27443,"tid":27459,"ts":326460608687,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7395513,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608717,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":10.514},"dur":122,"tdur":122,"tts":7395544},
-{"pid":27443,"tid":27459,"ts":326460608717,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7395544},
-{"pid":27443,"tid":27459,"ts":326460608748,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7395574},
-{"pid":27443,"tid":27459,"ts":326460608778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7395605,"id":"0xaf88a972f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460608809,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7395635,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608809,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7395635,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460608870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7395696,"id":"0xaf88a76ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460608870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7395696},
-{"pid":27443,"tid":27459,"ts":326460619338,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460619},"tts":7395818,"id":"0xaf88a6bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460619369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":30,"tts":7395849},
-{"pid":27443,"tid":27459,"ts":326460619369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7395879,"id":"0xaf88a768f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460619460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7395940,"id":"0xaf88a768f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460619460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9767,"tdur":92,"tts":7395940},{"pid":27443,"tid":27459,"ts":326460619491,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7395971,"id":"0xaf88a769f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460619491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7395971,"id":"0xaf88a96ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460619522,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":0,"tdur":0,"tts":7396001},
-{"pid":27443,"tid":27459,"ts":326460629532,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460620},"tts":7396093,"id":"0xaf88a751f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460629563,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7396093},
-{"pid":27443,"tid":27459,"ts":326460629593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7396123,"id":"0xaf88a769f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460629624,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7396154},
-{"pid":27443,"tid":27459,"ts":326460629624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7396154,"id":"0xaf88a76bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460629654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7396184,"id":"0xaf88a973f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460629654,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":62,"tts":7396184},
-{"pid":27443,"tid":27459,"ts":326460629685,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":30,"tdur":31,"tts":7396215},
-{"pid":27443,"tid":27459,"ts":326460629746,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7396307,"id":"0xaf88a76af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460629776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7396307},
-{"pid":27443,"tid":27459,"ts":326460629807,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7396337,"id":"0xaf88a972f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460629807,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7396337},
-{"pid":27443,"tid":27459,"ts":326460629837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7396368,"id":"0xaf88a90df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460629837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7396368,"id":"0xaf88a90ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460629898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7396429,"id":"0xaf88a76bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460629898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":396,"tts":7396429},
-{"pid":27443,"tid":27459,"ts":326460629929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7396459,"id":"0xaf88a764f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460629929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7396459,"id":"0xaf88a90df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460629929,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":366,"tdur":366,"tts":7396459},
-{"pid":27443,"tid":27459,"ts":326460629960,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7396490,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460629960,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7396490,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460629990,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7396520,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460630265,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7396795,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460630265,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7396825,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460630326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7396856,"id":"0xaf88a764f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460630326,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":610,"tdur":580,"tts":7396886},
-{"pid":27443,"tid":27459,"ts":326460630356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7396886,"id":"0xaf88a765f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460630356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7396917,"id":"0xaf88a90cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460630387,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":549,"tdur":519,"tts":7396917},
-{"pid":27443,"tid":27459,"ts":326460630387,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":519,"tdur":519,"tts":7396917},
-{"pid":27443,"tid":27459,"ts":326460630448,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.98","frame":"0x78c60000","encodedDataLength":63544}},"tts":7396978,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460630478,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7397009},
-{"pid":27443,"tid":27459,"ts":326460630600,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":275,"tdur":274,"tts":7397131},
-{"pid":27443,"tid":27459,"ts":326460630600,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":275,"tdur":244,"tts":7397161},
-{"pid":27443,"tid":27459,"ts":326460630906,"ph":"I","cat":"loader","name":"ResourceDispatchThrottler::ThrottleMessage","args":{},"tts":7397436,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460630967,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7397497,"id":"0xaf88a765f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460630967,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":335,"tdur":336,"tts":7397497},
-{"pid":27443,"tid":27459,"ts":326460630997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397527,"id":"0xaf88a766f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460630997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7397527,"id":"0xaf88a975f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460631028,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/scheduler/resource_dispatch_throttler.cc","src_func":"ResourceDispatchThrottler"},"dur":274,"tdur":275,"tts":7397558},
-{"pid":27443,"tid":27459,"ts":326460631028,"ph":"X","cat":"loader","name":"ResourceDispatchThrottler::Flush","args":{"total_throttled_messages":11},"dur":244,"tdur":244,"tts":7397558},
-{"pid":27443,"tid":27459,"ts":326460631028,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":91,"tdur":61,"tts":7397588},
-{"pid":27443,"tid":27459,"ts":326460631058,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397588,"id":"0xaf88aa8cf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460631119,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":31,"tdur":31,"tts":7397649},
-{"pid":27443,"tid":27459,"ts":326460631119,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397649,"id":"0xaf88aa8df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460631150,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":30,"tdur":30,"tts":7397680},
-{"pid":27443,"tid":27459,"ts":326460631150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397680,"id":"0xaf88aa8ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460631180,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":31,"tdur":0,"tts":7397710},
-{"pid":27443,"tid":27459,"ts":326460631180,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397710,"id":"0xaf88aa8ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460631211,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":0,"tdur":0,"tts":7397741},
-{"pid":27443,"tid":27459,"ts":326460631211,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397741,"id":"0xaf88aa88f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460631211,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":30,"tdur":0,"tts":7397772},
-{"pid":27443,"tid":27459,"ts":326460631241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397772,"id":"0xaf88aa89f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460631241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7397772,"id":"0xaf88a90ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460631272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397802,"id":"0xaf88a767f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460633561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7397894,"id":"0xaf88a766f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460633561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7397894},
-{"pid":27443,"tid":27459,"ts":326460633591,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7397924,"id":"0xaf88a761f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460631394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":122,"tts":330566},
-{"pid":27443,"tid":27466,"ts":326460631394,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":330566},
-{"pid":27443,"tid":27466,"ts":326460631486,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":330627,"id":"0xccc50e02"},
-{"pid":27443,"tid":27466,"ts":326460631608,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":330749,"id":"0xaf88aa8ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460631638,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":330779},
-{"pid":27443,"tid":27466,"ts":326460631669,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":330810,"id":"0xccc50f02"},
-{"pid":27443,"tid":27466,"ts":326460631760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":330932,"id":"0xaf88aa8ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460631791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":330932},
-{"pid":27443,"tid":27466,"ts":326460631821,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":330962,"id":"0xccc51002"},
-{"pid":27443,"tid":27466,"ts":326460631913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":331054,"id":"0xaf88aa88f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460631943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":331084},
-{"pid":27443,"tid":27466,"ts":326460631974,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":331115,"id":"0xccc51102"},
-{"pid":27443,"tid":27466,"ts":326460632065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":331207,"id":"0xaf88aa89f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460632065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":331237},
-{"pid":27443,"tid":27466,"ts":326460632096,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":331237,"id":"0xccc51202"},
-{"pid":27443,"tid":27466,"ts":326460632951,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":366,"tdur":366,"tts":331451},
-{"pid":27443,"tid":27466,"ts":326460633012,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":274,"tdur":274,"tts":331512},
-{"pid":27443,"tid":27466,"ts":326460633042,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":331542,"id":"0xba459802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460633103,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":331603,"id":"0xaf88a908f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460633134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":331664,"id":"0xaf88a760f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460633225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":331756,"id":"0xaf88a909f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460648363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":331939,"id":"0xaf88aa8af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460648363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":331939},
-{"pid":27443,"tid":27466,"ts":326460648394,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":331970,"id":"0xccc51302"},
-{"pid":27443,"tid":27466,"ts":326460648455,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":332031,"id":"0xaf88aa8bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460648455,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":332031},
-{"pid":27443,"tid":27466,"ts":326460648485,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332061,"id":"0xccc51402"},
-{"pid":27443,"tid":27466,"ts":326460648516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":332092,"id":"0xaf88aa84f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460648546,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":332122},
-{"pid":27443,"tid":27466,"ts":326460648546,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332122,"id":"0xccc51502"},
-{"pid":27443,"tid":27466,"ts":326460648577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":332183,"id":"0xaf88aa85f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460648607,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":332183},
-{"pid":27443,"tid":27466,"ts":326460648607,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332183,"id":"0xccc51702"},
-{"pid":27443,"tid":27466,"ts":326460648668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":332244,"id":"0xaf88aa86f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460648668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":332244},
-{"pid":27443,"tid":27466,"ts":326460648668,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332244,"id":"0xccc51802"},
-{"pid":27443,"tid":27466,"ts":326460675679,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":275,"tts":332366},
-{"pid":27443,"tid":27466,"ts":326460675740,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":122,"tdur":122,"tts":332427},
-{"pid":27443,"tid":27466,"ts":326460675740,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332427,"id":"0xba459c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460675801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":332488,"id":"0xaf88a90bf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460675832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":332519,"id":"0xaf88a77df3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460675893,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":332580},
-{"pid":27443,"tid":27466,"ts":326460675893,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332610,"id":"0xba459d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460675923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":332641,"id":"0xaf88a904f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460676381,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":332733},
-{"pid":27443,"tid":27466,"ts":326460676412,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":332794},
-{"pid":27443,"tid":27466,"ts":326460676442,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332794,"id":"0xba459902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460676473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":332824,"id":"0xaf88a444f182217a"},
-{"pid":27443,"tid":27466,"ts":326460677480,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":332916},
-{"pid":27443,"tid":27466,"ts":326460677510,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":332946},
-{"pid":27443,"tid":27466,"ts":326460677510,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":332946,"id":"0xba459a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460677541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":332977,"id":"0xaf88a446f182217a"},
-{"pid":27443,"tid":27466,"ts":326460678151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":333099,"id":"0xaf88aa87f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460678182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":333129},
-{"pid":27443,"tid":27466,"ts":326460678182,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":333129,"id":"0xccc51902"},
-{"pid":27443,"tid":27466,"ts":326460680776,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":333221},
-{"pid":27443,"tid":27466,"ts":326460680837,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":333282},
-{"pid":27443,"tid":27466,"ts":326460680837,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":333282,"id":"0xba459b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460680867,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":333312,"id":"0xaf88a441f182217a"},
-{"pid":27443,"tid":27466,"ts":326460686361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":333465,"id":"0xaf88aa80f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460686361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":214,"tdur":61,"tts":333465},
-{"pid":27443,"tid":27466,"ts":326460686361,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":333465},
-{"pid":27443,"tid":27466,"ts":326460686544,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":333496,"id":"0xccc51a02"},
-{"pid":27443,"tid":27466,"ts":326460691031,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":213,"tts":333557},
-{"pid":27443,"tid":27459,"ts":326460633591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7397924,"id":"0xaf88a908f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460633622,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7397955},
-{"pid":27443,"tid":27459,"ts":326460633683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7398016,"id":"0xaf88a760f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460633683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":457,"tts":7398016},
-{"pid":27443,"tid":27459,"ts":326460633714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7398046,"id":"0xaf88a909f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460633714,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":427,"tts":7398046},
-{"pid":27443,"tid":27459,"ts":326460633775,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":335,"tdur":305,"tts":7398138},
-{"pid":27443,"tid":27459,"ts":326460634080,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.97","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7398412,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460634171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7398504,"id":"0xaf88a761f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460634171,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":7398504},
-{"pid":27443,"tid":27459,"ts":326460634202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7398535,"id":"0xaf88a762f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460634232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7398565,"id":"0xaf88a90ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460634232,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":7398565},
-{"pid":27443,"tid":27459,"ts":326460634232,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7398565,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460634263,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":45.727},"dur":122,"tdur":122,"tts":7398596},
-{"pid":27443,"tid":27459,"ts":326460634263,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7398596},
-{"pid":27443,"tid":27459,"ts":326460634324,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7398657},
-{"pid":27443,"tid":27459,"ts":326460634354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7398687,"id":"0xaf88a90af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460634354,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7398687,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460634385,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7398718,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460634415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7398748,"id":"0xaf88a762f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460634446,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7398779},
-{"pid":27443,"tid":27459,"ts":326460648058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460647},"tts":7398870,"id":"0xaf88a767f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460648058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":30,"tts":7398901},
-{"pid":27443,"tid":27459,"ts":326460648089,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7398901,"id":"0xaf88a763f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460648150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7398962,"id":"0xaf88a763f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460648150,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":305,"tts":7398962},
-{"pid":27443,"tid":27459,"ts":326460648180,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7398992,"id":"0xaf88a77cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460648211,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7399023,"id":"0xaf88a90ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460648211,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/scheduler/resource_dispatch_throttler.cc","src_func":"ResourceDispatchThrottler"},"dur":244,"tdur":214,"tts":7399023},
-{"pid":27443,"tid":27459,"ts":326460648211,"ph":"X","cat":"loader","name":"ResourceDispatchThrottler::Flush","args":{"total_throttled_messages":5},"dur":213,"tdur":214,"tts":7399023},
-{"pid":27443,"tid":27459,"ts":326460648241,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":61,"tdur":61,"tts":7399053},
-{"pid":27443,"tid":27459,"ts":326460648241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399053,"id":"0xaf88aa8af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460648302,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":61,"tdur":61,"tts":7399114},
-{"pid":27443,"tid":27459,"ts":326460648302,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399114,"id":"0xaf88aa8bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460648363,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":31,"tdur":0,"tts":7399175},
-{"pid":27443,"tid":27459,"ts":326460648363,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399175,"id":"0xaf88aa84f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460648394,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":0,"tdur":0,"tts":7399206},
-{"pid":27443,"tid":27459,"ts":326460648394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399206,"id":"0xaf88aa85f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460648394,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":30,"tdur":0,"tts":7399237},
-{"pid":27443,"tid":27459,"ts":326460648424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399237,"id":"0xaf88aa86f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460648485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7399298,"id":"0xaf88a77cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460648485,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7399298},
-{"pid":27443,"tid":27459,"ts":326460676045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7399389,"id":"0xaf88a77df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676076,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7399420},
-{"pid":27443,"tid":27459,"ts":326460676106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399450,"id":"0xaf88a77ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7399481,"id":"0xaf88a90bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460676137,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":7399481},
-{"pid":27443,"tid":27459,"ts":326460676167,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":31,"tts":7399511},
-{"pid":27443,"tid":27459,"ts":326460676289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7399633,"id":"0xaf88a77ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":7399633},
-{"pid":27443,"tid":27459,"ts":326460676320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399664,"id":"0xaf88a77ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7399694,"id":"0xaf88a90af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460676350,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":62,"tdur":61,"tts":7399694},
-{"pid":27443,"tid":27459,"ts":326460676381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7399725,"id":"0xaf88a905f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460676412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7399755,"id":"0xaf88a906f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460676473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7399816,"id":"0xaf88a77ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":214,"tts":7399816},
-{"pid":27443,"tid":27459,"ts":326460676503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7399847,"id":"0xaf88a778f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676503,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":30,"tts":7399847},
-{"pid":27443,"tid":27459,"ts":326460676808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7399908,"id":"0xaf88a905f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460676808,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7399908},
-{"pid":27443,"tid":27459,"ts":326460676839,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7399938,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460676839,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7399938,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460676869,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7399969,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460676900,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7400000,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460676900,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7400030,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460676961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7400091,"id":"0xaf88a778f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460676991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1008,"tdur":824,"tts":7400091},
-{"pid":27443,"tid":27459,"ts":326460677022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7400122,"id":"0xaf88a77af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460677022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7400122,"id":"0xaf88a904f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460677022,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":946,"tdur":733,"tts":7400152},
-{"pid":27443,"tid":27459,"ts":326460677052,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":916,"tdur":733,"tts":7400152},
-{"pid":27443,"tid":27459,"ts":326460677113,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.97","frame":"0x78c60000","encodedDataLength":40151}},"tts":7400213,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460677144,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7400244},
-{"pid":27443,"tid":27459,"ts":326460677266,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":366,"tdur":366,"tts":7400366},
-{"pid":27443,"tid":27459,"ts":326460677297,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":335,"tdur":336,"tts":7400396},
-{"pid":27443,"tid":27459,"ts":326460677663,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":275,"tdur":91,"tts":7400763},
-{"pid":27443,"tid":27459,"ts":326460677907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7400824,"id":"0xaf88aa87f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460678029,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7400946,"id":"0xaf88a779f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460678029,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1007,"tdur":1007,"tts":7400946},
-{"pid":27443,"tid":27459,"ts":326460678060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7400976,"id":"0xaf88a907f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460678060,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":976,"tdur":977,"tts":7400976},
-{"pid":27443,"tid":27459,"ts":326460678060,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":138},"tts":7400976},
-{"pid":27443,"tid":27459,"ts":326460678090,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7401007},
-{"pid":27443,"tid":27459,"ts":326460678151,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7401068,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460678151,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7401068,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460678182,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":7401098},
-{"pid":27443,"tid":27459,"ts":326460678212,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7401129},
-{"pid":27443,"tid":27459,"ts":326460678243,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":427,"tdur":428,"tts":7401159},
-{"pid":27443,"tid":27459,"ts":326460678273,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7401190},
-{"pid":27443,"tid":27459,"ts":326460678304,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7401220},
-{"pid":27443,"tid":27459,"ts":326460678334,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7401251},
-{"pid":27443,"tid":27459,"ts":326460678456,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":0,"counters":true},"tts":7401373},
-{"pid":27443,"tid":27459,"ts":326460678487,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":0},"tts":7401403},
-{"pid":27443,"tid":27459,"ts":326460678517,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":123,"tdur":122,"tts":7401434},
-{"pid":27443,"tid":27459,"ts":326460678548,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":7401464},
-{"pid":27443,"tid":27459,"ts":326460678578,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7401495},
-{"pid":27443,"tid":27459,"ts":326460678609,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":30,"tts":7401526},
-{"pid":27443,"tid":27459,"ts":326460678670,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":138},"dur":244,"tdur":244,"tts":7401587},
-{"pid":27443,"tid":27459,"ts":326460678670,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":244,"tdur":244,"tts":7401587},
-{"pid":27443,"tid":27459,"ts":326460678914,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":7401831,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460678945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7401861,"id":"0xaf88a440f182217a"},
-{"pid":27443,"tid":27459,"ts":326460679006,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7401922},
-{"pid":27443,"tid":27459,"ts":326460679067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7401983,"id":"0xaf88a77af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460679097,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7402014},
-{"pid":27443,"tid":27459,"ts":326460686453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7402105,"id":"0xaf88a77bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460686453,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":7402105},
-{"pid":27443,"tid":27459,"ts":326460686483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7402136,"id":"0xaf88a774f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460686483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7402136,"id":"0xaf88a900f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460686514,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":61,"tdur":61,"tts":7402166},
-{"pid":27443,"tid":27459,"ts":326460686514,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":61,"tdur":61,"tts":7402166},
-{"pid":27443,"tid":27459,"ts":326460686544,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7402197,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460686575,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7402227,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460686636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7402289,"id":"0xaf88a774f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460686636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":213,"tts":7402289},
-{"pid":27443,"tid":27459,"ts":326460686636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7402319,"id":"0xaf88a775f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460686666,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7402319,"id":"0xaf88a906f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460686666,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":7402319},
-{"pid":27443,"tid":27459,"ts":326460686666,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7402350,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460686697,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.847},"dur":122,"tdur":122,"tts":7402350},
-{"pid":27443,"tid":27459,"ts":326460686697,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7402380},
-{"pid":27443,"tid":27459,"ts":326460686758,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7402411},
-{"pid":27443,"tid":27459,"ts":326460686788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7402441,"id":"0xaf88a901f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460686788,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7402441,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460686819,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7402472,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460686849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7402502,"id":"0xaf88a775f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460686880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7402533},
-{"pid":27443,"tid":27477,"ts":326460677632,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":680390,"id":"0xaf88a446f182217a"},
-{"pid":27443,"tid":27477,"ts":326460677632,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":214,"tts":680390},
-{"pid":27443,"tid":27477,"ts":326460677876,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":680604},
-{"pid":27443,"tid":27477,"ts":326460677907,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460658586.0,"frame_time_us":326460652763.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":680634},
-{"pid":27443,"tid":27477,"ts":326460677968,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460658586.0,"frame_time_us":326460652763.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":680695},
-{"pid":27443,"tid":27477,"ts":326460677999,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460669429},"dur":30,"tdur":30,"tts":680726},
-{"pid":27443,"tid":27477,"ts":326460677999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":680756,"id":"0xaf88a447f182217a"},
-{"pid":27443,"tid":27477,"ts":326460678060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":680787,"id":"0xaf88a447f182217a"},
-{"pid":27443,"tid":27477,"ts":326460678060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":680787},
-{"pid":27443,"tid":27477,"ts":326460678060,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":680787},
-{"pid":27443,"tid":27477,"ts":326460679006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":680879,"id":"0xaf88a440f182217a"},
-{"pid":27443,"tid":27477,"ts":326460679036,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":61,"tdur":61,"tts":680909},
-{"pid":27443,"tid":27477,"ts":326460679036,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":680909},
-{"pid":27443,"tid":27477,"ts":326460679067,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":30,"tts":680940},
-{"pid":27443,"tid":27477,"ts":326460680929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":681031,"id":"0xaf88a441f182217a"},
-{"pid":27443,"tid":27477,"ts":326460680959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":681062},
-{"pid":27443,"tid":27477,"ts":326460680990,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460675267.0,"frame_time_us":326460669444.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":681092},
-{"pid":27443,"tid":27477,"ts":326460680990,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460675267.0,"frame_time_us":326460669444.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":91,"tdur":92,"tts":681092},
-{"pid":27443,"tid":27477,"ts":326460681051,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460686110},"dur":30,"tdur":31,"tts":681153},
-{"pid":27443,"tid":27477,"ts":326460681081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":681184,"id":"0xaf88a442f182217a"},
-{"pid":27443,"tid":27477,"ts":326460686209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460686},"tts":681275,"id":"0xaf88a442f182217a"},
-{"pid":27443,"tid":27477,"ts":326460686239,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":153,"tdur":152,"tts":681306},
-{"pid":27443,"tid":27477,"ts":326460686239,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":153,"tdur":152,"tts":681306},
-{"pid":27443,"tid":27477,"ts":326460686270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":681336,"id":"0xaf88aa80f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460686331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":681397,"id":"0xaf88a900f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460686331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":681397,"id":"0xaf88a77bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460694052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":681519,"id":"0xaf88a443f182217a"},
-{"pid":27443,"tid":27477,"ts":326460694052,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":681519},
-{"pid":27443,"tid":27477,"ts":326460694083,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460691949.0,"frame_time_us":326460686126.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":30,"tdur":30,"tts":681550},
-{"pid":27443,"tid":27477,"ts":326460694113,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":681580,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460706108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":681672,"id":"0xaf88a45cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460706108,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":92,"tts":681672},
-{"pid":27443,"tid":27477,"ts":326460706138,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":61,"tdur":61,"tts":681703},
-{"pid":27443,"tid":27477,"ts":326460706169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":681733,"id":"0xaf88aa9df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460706199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":681764,"id":"0xaf88a45df182217a"},
-{"pid":27443,"tid":27477,"ts":326460706230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":681794,"id":"0xaf88a45df182217a"},
-{"pid":27443,"tid":27477,"ts":326460706230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":91,"tdur":92,"tts":681794},
-{"pid":27443,"tid":27477,"ts":326460706260,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":61,"tdur":61,"tts":681825},
-{"pid":27443,"tid":27477,"ts":326460706291,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-14.311,"BeginFrameArgs":{"deadline_us":326460691949.0,"frame_time_us":326460686126.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":681855,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460706321,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":681886,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460721307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":681947,"id":"0xaf88a45ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460721338,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":214,"tts":681977},
-{"pid":27443,"tid":27477,"ts":326460721368,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460725312.0,"frame_time_us":326460719489.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":682008},
-{"pid":27443,"tid":27477,"ts":326460721399,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460725312.0,"frame_time_us":326460719489.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":152,"tdur":153,"tts":682038},
-{"pid":27443,"tid":27477,"ts":326460721399,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":139},"tts":682038},
-{"pid":27443,"tid":27477,"ts":326460721490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":682130,"id":"0xaf88a9c9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460721490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":682130,"id":"0xaf88a721f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460721521,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":682160},
-{"pid":27443,"tid":27477,"ts":326460721521,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460736155},"dur":30,"tdur":31,"tts":682160},
-{"pid":27443,"tid":27477,"ts":326460721551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":682191,"id":"0xaf88a45ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460736262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460736},"tts":682252,"id":"0xaf88a45ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460736292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":682282},
-{"pid":27443,"tid":27477,"ts":326460736292,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":682282},
-{"pid":27443,"tid":27477,"ts":326460739863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":682374,"id":"0xaf88a458f182217a"},
-{"pid":27443,"tid":27477,"ts":326460739863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2534,"tdur":2136,"tts":682374},
-{"pid":27443,"tid":27477,"ts":326460739894,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2503,"tdur":2105,"tts":682405},
-{"pid":27443,"tid":27477,"ts":326460739894,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":682405},
-{"pid":27443,"tid":27477,"ts":326460739894,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2503,"tdur":2105,"tts":682405},
-{"pid":27443,"tid":27477,"ts":326460739924,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2473,"tdur":2075,"tts":682435},
-{"pid":27443,"tid":27477,"ts":326460739924,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":31,"tts":682435},
-{"pid":27443,"tid":27477,"ts":326460739955,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":682466},
-{"pid":27443,"tid":27477,"ts":326460739955,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":682466,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460739985,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":682496},
-{"pid":27443,"tid":27477,"ts":326460739985,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":641,"tdur":397,"tts":682496},
-{"pid":27443,"tid":27466,"ts":326460691061,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":183,"tdur":183,"tts":333587},
-{"pid":27443,"tid":27466,"ts":326460691061,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":333587},
-{"pid":27443,"tid":27466,"ts":326460691122,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":333648,"id":"0xba459f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460691153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":333679,"id":"0xaf88a902f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460691153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":333679,"id":"0xaf88a776f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460691214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":333740,"id":"0xaf88a903f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460693015,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":333862},
-{"pid":27443,"tid":27466,"ts":326460693015,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":61,"tts":333892},
-{"pid":27443,"tid":27466,"ts":326460693045,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":333892,"id":"0xba45a002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460693076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":333923,"id":"0xaf88a91ff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460693076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":333923,"id":"0xaf88a70cf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460693381,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":334014},
-{"pid":27443,"tid":27466,"ts":326460693411,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":61,"tdur":61,"tts":334045},
-{"pid":27443,"tid":27466,"ts":326460693411,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334045,"id":"0xba45a102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460693442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":334075,"id":"0xaf88a918f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460693442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":334075,"id":"0xaf88a70ef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460693472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":334106,"id":"0xaf88a919f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460693625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":334167,"id":"0xaf88aa81f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460693656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":334198},
-{"pid":27443,"tid":27466,"ts":326460693656,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334198,"id":"0xccc51b02"},
-{"pid":27443,"tid":27466,"ts":326460693900,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":334259},
-{"pid":27443,"tid":27466,"ts":326460693930,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":334289},
-{"pid":27443,"tid":27466,"ts":326460693930,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334320,"id":"0xba459e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460693961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":334320,"id":"0xaf88a443f182217a"},
-{"pid":27443,"tid":27466,"ts":326460694510,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":334411},
-{"pid":27443,"tid":27466,"ts":326460694541,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":91,"tts":334442},
-{"pid":27443,"tid":27466,"ts":326460694541,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334442,"id":"0xba45a202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460694571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":334472,"id":"0xaf88a914f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460694602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":334503,"id":"0xaf88a70af3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460694846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":334594,"id":"0xaf88aa82f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460694846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":334625},
-{"pid":27443,"tid":27466,"ts":326460694876,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334625,"id":"0xccc51c02"},
-{"pid":27443,"tid":27466,"ts":326460695456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":334777,"id":"0xaf88aa83f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460695456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":334777},
-{"pid":27443,"tid":27466,"ts":326460695487,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334808,"id":"0xccc51d02"},
-{"pid":27443,"tid":27466,"ts":326460698203,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":275,"tts":334869},
-{"pid":27443,"tid":27466,"ts":326460698264,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":122,"tdur":122,"tts":334930},
-{"pid":27443,"tid":27466,"ts":326460698295,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":334961,"id":"0xba45a302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460698356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335022,"id":"0xaf88a912f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460698356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":335052,"id":"0xaf88a706f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460698417,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":335083},
-{"pid":27443,"tid":27466,"ts":326460698417,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":335083,"id":"0xba45a402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460698447,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335144,"id":"0xaf88a913f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460700095,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":335205},
-{"pid":27443,"tid":27466,"ts":326460700126,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":91,"tdur":92,"tts":335235},
-{"pid":27443,"tid":27466,"ts":326460700126,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":335235,"id":"0xba45a502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460700156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335266,"id":"0xaf88a92cf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460700156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":335266,"id":"0xaf88a701f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460700187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335296,"id":"0xaf88a92df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460701560,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":335418},
-{"pid":27443,"tid":27466,"ts":326460701621,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":335449},
-{"pid":27443,"tid":27466,"ts":326460701621,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":335449,"id":"0xba45a602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460701652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335479,"id":"0xaf88a92ff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460702629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":335601,"id":"0xaf88aa9cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460702629,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":335601},
-{"pid":27443,"tid":27466,"ts":326460702751,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":61,"tts":335632},
-{"pid":27443,"tid":27466,"ts":326460702751,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":335632,"id":"0xccc51e02"},
-{"pid":27443,"tid":27466,"ts":326460702751,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":31,"tts":335632},
-{"pid":27443,"tid":27466,"ts":326460704002,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":335754},
-{"pid":27443,"tid":27466,"ts":326460704032,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":91,"tts":335785},
-{"pid":27443,"tid":27466,"ts":326460704032,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":335785,"id":"0xba45a702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460704063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":335846,"id":"0xaf88a928f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460704093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":335846,"id":"0xaf88a71ff3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460704338,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":214,"tts":335937},
-{"pid":27443,"tid":27459,"ts":326460691305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7402594,"id":"0xaf88a776f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691305,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":91,"tts":7402594},
-{"pid":27443,"tid":27459,"ts":326460691397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7402685},
-{"pid":27443,"tid":27459,"ts":326460691428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7402716,"id":"0xaf88a777f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7402716,"id":"0xaf88a902f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460691458,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7402746},
-{"pid":27443,"tid":27459,"ts":326460691489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7402777,"id":"0xaf88a777f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7402807},
-{"pid":27443,"tid":27459,"ts":326460691519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7402807,"id":"0xaf88a770f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7402838,"id":"0xaf88a901f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460691550,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":30,"tts":7402838},
-{"pid":27443,"tid":27459,"ts":326460691550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7402838,"id":"0xaf88a91cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460691580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7402868,"id":"0xaf88a91df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460691611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7402899,"id":"0xaf88a770f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":123,"tts":7402929},
-{"pid":27443,"tid":27459,"ts":326460691641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7402929,"id":"0xaf88a771f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7402960,"id":"0xaf88a91cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460691672,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":91,"tdur":92,"tts":7402960},
-{"pid":27443,"tid":27459,"ts":326460691672,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7402991,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460691702,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7402991,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460691702,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7402991,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460691733,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7403021,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460691733,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7403021,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460691794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7403082,"id":"0xaf88a771f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":458,"tts":7403082},
-{"pid":27443,"tid":27459,"ts":326460691824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7403113,"id":"0xaf88a772f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460691824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7403113,"id":"0xaf88a903f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460691824,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":428,"tdur":396,"tts":7403113},
-{"pid":27443,"tid":27459,"ts":326460691916,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":305,"tdur":305,"tts":7403204},
-{"pid":27443,"tid":27459,"ts":326460692191,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.100","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7403479,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460692282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7403570,"id":"0xaf88a772f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460692282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":184,"tts":7403570},
-{"pid":27443,"tid":27459,"ts":326460692313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7403601,"id":"0xaf88a773f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460692313,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7403601,"id":"0xaf88a91df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460692313,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":153,"tts":7403601},
-{"pid":27443,"tid":27459,"ts":326460692343,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7403631,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460692343,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.39},"dur":122,"tdur":123,"tts":7403631},
-{"pid":27443,"tid":27459,"ts":326460692343,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7403662},
-{"pid":27443,"tid":27459,"ts":326460692404,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7403692},
-{"pid":27443,"tid":27459,"ts":326460692404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7403723,"id":"0xaf88a91ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460692435,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7403723,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460692435,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7403723,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460692496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7403784,"id":"0xaf88a773f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460692496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7403784},
-{"pid":27443,"tid":27459,"ts":326460693137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7403876,"id":"0xaf88a70cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460693167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":489,"tdur":488,"tts":7403906},
-{"pid":27443,"tid":27459,"ts":326460693167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7403906,"id":"0xaf88a70df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460693198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7403937,"id":"0xaf88a91ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460693198,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":427,"tts":7403937},
-{"pid":27443,"tid":27459,"ts":326460693228,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":397,"tdur":397,"tts":7403967},
-{"pid":27443,"tid":27459,"ts":326460693289,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.98","frame":"0x78c60000","encodedDataLength":0}},"tts":7404028,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460693289,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":153,"tdur":153,"tts":7404028},
-{"pid":27443,"tid":27459,"ts":326460693442,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":91,"tts":7404181},
-{"pid":27443,"tid":27459,"ts":326460693472,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7404211},
-{"pid":27443,"tid":27459,"ts":326460693533,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7404272},
-{"pid":27443,"tid":27459,"ts":326460693564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7404303,"id":"0xaf88aa81f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460693686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7404425,"id":"0xaf88a70df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460693686,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7404425},
-{"pid":27443,"tid":27459,"ts":326460693717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7404455,"id":"0xaf88a70ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460693717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7404455,"id":"0xaf88a91ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460693747,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":7404486},
-{"pid":27443,"tid":27459,"ts":326460693747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7404486,"id":"0xaf88a91af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460693778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7404517,"id":"0xaf88a91bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460693839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7404578,"id":"0xaf88a70ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460693839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":213,"tts":7404578},
-{"pid":27443,"tid":27459,"ts":326460693839,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7404578},
-{"pid":27443,"tid":27459,"ts":326460693930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7404669,"id":"0xaf88a91af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460693930,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":92,"tts":7404669},
-{"pid":27443,"tid":27459,"ts":326460693961,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7404700,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460693961,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7404700,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460693961,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7404730,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460693991,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7404761,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460694022,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7404761,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460694083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7404822,"id":"0xaf88a70ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460694083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7404822},
-{"pid":27443,"tid":27459,"ts":326460694113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7404852,"id":"0xaf88a708f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460694113,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7404883,"id":"0xaf88a918f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460694144,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7404883},
-{"pid":27443,"tid":27459,"ts":326460694205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7404944,"id":"0xaf88a708f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460694205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":793,"tdur":641,"tts":7404944},
-{"pid":27443,"tid":27459,"ts":326460694235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7404974,"id":"0xaf88a709f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460694235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7404974,"id":"0xaf88a919f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460694235,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":763,"tdur":580,"tts":7405005},
-{"pid":27443,"tid":27459,"ts":326460694266,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":732,"tdur":549,"tts":7405005},
-{"pid":27443,"tid":27459,"ts":326460694419,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7405157,"id":"0xaf88ae4cfda7a8e2"},
-{"pid":27443,"tid":27459,"ts":326460694510,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.98","didFail":false,"networkTime":326460.69332}},"tts":7405280,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460694541,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7405280},
-{"pid":27443,"tid":27459,"ts":326460694571,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7405310},
-{"pid":27443,"tid":27459,"ts":326460694632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7405371,"id":"0xaf88a915f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460694663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7405432,"id":"0xaf88a916f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460694693,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":244,"tdur":61,"tts":7405463},
-{"pid":27443,"tid":27459,"ts":326460694724,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7405463,"id":"0xaf88aa82f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460695059,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7405646,"id":"0xaf88a709f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460695059,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":366,"tts":7405646},
-{"pid":27443,"tid":27459,"ts":326460695090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7405676,"id":"0xaf88a70bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460695090,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7405676,"id":"0xaf88a914f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460695121,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":275,"tts":7405707},
-{"pid":27443,"tid":27459,"ts":326460695121,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":274,"tdur":275,"tts":7405707},
-{"pid":27443,"tid":27459,"ts":326460695182,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.97","frame":"0x78c60000","encodedDataLength":42718}},"tts":7405768,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460695182,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":31,"tts":7405798},
-{"pid":27443,"tid":27459,"ts":326460695243,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":31,"tts":7405859},
-{"pid":27443,"tid":27459,"ts":326460695273,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7405859},
-{"pid":27443,"tid":27459,"ts":326460695334,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":62,"tts":7405920},
-{"pid":27443,"tid":27459,"ts":326460695334,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7405920,"id":"0xaf88aa83f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460695456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7406043,"id":"0xaf88a70af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460695456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1342,"tts":7406043},
-{"pid":27443,"tid":27459,"ts":326460695487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7406073,"id":"0xaf88a915f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460695487,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":1312,"tdur":1312,"tts":7406073},
-{"pid":27443,"tid":27459,"ts":326460695517,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1252,"tdur":1251,"tts":7406104},
-{"pid":27443,"tid":27459,"ts":326460695548,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7406134},
-{"pid":27443,"tid":27459,"ts":326460695578,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":1160,"tdur":1129,"tts":7406195},
-{"pid":27443,"tid":27459,"ts":326460695761,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":947,"tdur":946,"tts":7406348},
-{"pid":27443,"tid":27459,"ts":326460695792,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7406378},
-{"pid":27443,"tid":27459,"ts":326460695945,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":160,"frame":"0x78c60000"}},"tts":7406531,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460696433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7407019,"id":"0xaf88a917f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460696463,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7407050,"id":"0xaf88a704f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460696524,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":176,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7407111,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460696616,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7407202,"id":"0xaf88a910f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460696647,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":177,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7407233,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460696677,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7407263},
-{"pid":27443,"tid":27459,"ts":326460696769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7407355,"id":"0xaf88a911f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460696830,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7407416,"id":"0xaf88a70bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460696860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2198,"tdur":2167,"tts":7407446},
-{"pid":27443,"tid":27459,"ts":326460696860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7407477,"id":"0xaf88a705f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460696891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7407477,"id":"0xaf88a916f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460696891,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":2136,"tdur":2106,"tts":7407477},
-{"pid":27443,"tid":27459,"ts":326460696921,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2076,"tdur":2075,"tts":7407508},
-{"pid":27443,"tid":27459,"ts":326460697074,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20307968,"free":4857856},"tts":7407660},
-{"pid":27443,"tid":27459,"ts":326460697165,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20332544,"free":4833280},"tts":7407782},
-{"pid":27443,"tid":27459,"ts":326460697287,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20316160,"free":4849664},"tts":7407874},
-{"pid":27443,"tid":27459,"ts":326460697379,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20353024,"free":4812800},"tts":7407965},
-{"pid":27443,"tid":27459,"ts":326460697501,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20328448,"free":4837376},"tts":7408118},
-{"pid":27443,"tid":27459,"ts":326460697623,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20385792,"free":4780032},"tts":7408209},
-{"pid":27443,"tid":27459,"ts":326460697806,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20348928,"free":4816896},"tts":7408393},
-{"pid":27443,"tid":27459,"ts":326460697928,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20434944,"free":4730880},"tts":7408515},
-{"pid":27443,"tid":27459,"ts":326460698173,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20377600,"free":4788224},"tts":7408759},
-{"pid":27443,"tid":27459,"ts":326460698356,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20508672,"free":4657152},"tts":7408942},
-{"pid":27443,"tid":27459,"ts":326460698417,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20422656,"free":4743168},"tts":7409003},
-{"pid":27443,"tid":27459,"ts":326460698508,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20619264,"free":4546560},"tts":7409095},
-{"pid":27443,"tid":27459,"ts":326460698722,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":20488192,"free":4677632},"tts":7409308},
-{"pid":27443,"tid":27459,"ts":326460698966,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":7409552},
-{"pid":27443,"tid":27459,"ts":326460699088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7409674,"id":"0xaf88a705f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460699119,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7409705},
-{"pid":27443,"tid":27459,"ts":326460699119,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7409705,"id":"0xaf88a707f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460699149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7409736,"id":"0xaf88a911f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460699149,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7409736},
-{"pid":27443,"tid":27459,"ts":326460699180,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7409766},
-{"pid":27443,"tid":27459,"ts":326460699241,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460697},"tts":7409827,"id":"0xaf88a704f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460699241,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":7409827},
-{"pid":27443,"tid":27459,"ts":326460699302,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7409888,"id":"0xaf88a706f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460699302,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":397,"tts":7409888},
-{"pid":27443,"tid":27459,"ts":326460699332,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7409919,"id":"0xaf88a917f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460699332,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":367,"tdur":366,"tts":7409919},
-{"pid":27443,"tid":27459,"ts":326460699332,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":367,"tdur":336,"tts":7409949},
-{"pid":27443,"tid":27459,"ts":326460699393,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":176,"frame":"0x78c60000"}},"dur":306,"tdur":274,"tts":7409980},
-{"pid":27443,"tid":27459,"ts":326460699424,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":244,"tdur":244,"tts":7410010},
-{"pid":27443,"tid":27459,"ts":326460699485,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":70,"frame":"0x78c60000"}},"dur":183,"tdur":152,"tts":7410102},
-{"pid":27443,"tid":27459,"ts":326460699515,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7410102},
-{"pid":27443,"tid":27459,"ts":326460699638,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7410224},
-{"pid":27443,"tid":27459,"ts":326460699729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7410315,"id":"0xaf88a707f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460699760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1526,"tdur":1373,"tts":7410346},
-{"pid":27443,"tid":27459,"ts":326460699790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7410376,"id":"0xaf88a700f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460699790,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7410376,"id":"0xaf88a910f3d0445e"},{"pid":27443,"tid":27459,"ts":326460699790,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1496,"tdur":1343,"tts":7410376},
-{"pid":27443,"tid":27459,"ts":326460699821,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1465,"tdur":1282,"tts":7410407},
-{"pid":27443,"tid":27459,"ts":326460699851,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":177,"frame":"0x78c60000"}},"dur":1404,"tdur":1252,"tts":7410437},
-{"pid":27443,"tid":27459,"ts":326460699882,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1373,"tdur":1221,"tts":7410468},
-{"pid":27443,"tid":27459,"ts":326460699943,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":1282,"tdur":1129,"tts":7410529},
-{"pid":27443,"tid":27459,"ts":326460699943,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7410560},
-{"pid":27443,"tid":27459,"ts":326460701072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7411506,"id":"0xaf88a92ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460701102,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7411536,"id":"0xaf88a702f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460701164,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":178,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7411628,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460701194,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7411658},
-{"pid":27443,"tid":27459,"ts":326460701347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7411780,"id":"0xaf88a700f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460701347,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":7411780},
-{"pid":27443,"tid":27459,"ts":326460701377,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7411811,"id":"0xaf88a703f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460701408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7411841,"id":"0xaf88a912f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460701408,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":7411841},
-{"pid":27443,"tid":27459,"ts":326460701438,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":30,"tts":7411872},
-{"pid":27443,"tid":27459,"ts":326460701530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7411963,"id":"0xaf88a701f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460701560,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":977,"tdur":977,"tts":7411994},
-{"pid":27443,"tid":27459,"ts":326460701591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7412025,"id":"0xaf88a913f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460701591,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":946,"tdur":946,"tts":7412025},
-{"pid":27443,"tid":27459,"ts":326460701621,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":885,"tdur":885,"tts":7412055},
-{"pid":27443,"tid":27459,"ts":326460701652,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.100","frame":"0x78c60000","encodedDataLength":42887}},"tts":7412116,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460701682,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":91,"tts":7412147},
-{"pid":27443,"tid":27459,"ts":326460701804,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":580,"tdur":580,"tts":7412238},
-{"pid":27443,"tid":27459,"ts":326460701835,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":549,"tdur":549,"tts":7412269},
-{"pid":27443,"tid":27459,"ts":326460702415,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":91,"tdur":91,"tts":7412849},
-{"pid":27443,"tid":27459,"ts":326460702445,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7412879,"id":"0xaf88aa9cf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460702598,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7413032,"id":"0xaf88a703f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460702598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":152,"tts":7413032},
-{"pid":27443,"tid":27459,"ts":326460702629,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7413062,"id":"0xaf88a71cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460702629,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7413062},
-{"pid":27443,"tid":27459,"ts":326460702720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7413154,"id":"0xaf88a92cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460702720,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":7413154},
-{"pid":27443,"tid":27459,"ts":326460702781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460702},"tts":7413215,"id":"0xaf88a702f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460702812,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":7413245},
-{"pid":27443,"tid":27459,"ts":326460702873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7413306,"id":"0xaf88a71cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460702873,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":793,"tdur":672,"tts":7413306},
-{"pid":27443,"tid":27459,"ts":326460702903,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7413337,"id":"0xaf88a71df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460702934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7413367,"id":"0xaf88a92df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460702934,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":732,"tdur":611,"tts":7413367},
-{"pid":27443,"tid":27459,"ts":326460702934,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":61,"tts":7413367},
-{"pid":27443,"tid":27459,"ts":326460703239,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":397,"tdur":396,"tts":7413551},
-{"pid":27443,"tid":27459,"ts":326460703605,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.99","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7413917,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460703727,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7414039,"id":"0xaf88a71df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460703727,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2930,"tdur":2930,"tts":7414039},
-{"pid":27443,"tid":27459,"ts":326460703758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7414069,"id":"0xaf88a71ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460703788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7414100,"id":"0xaf88a92ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460703819,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2808,"tdur":2808,"tts":7414130},
-{"pid":27443,"tid":27459,"ts":326460703849,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2778,"tdur":2747,"tts":7414161},
-{"pid":27443,"tid":27459,"ts":326460703880,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":178,"frame":"0x78c60000"}},"dur":2716,"tdur":2717,"tts":7414191},
-{"pid":27443,"tid":27459,"ts":326460703910,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":2686,"tdur":2686,"tts":7414222},
-{"pid":27443,"tid":27459,"ts":326460704002,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":2564,"tdur":2563,"tts":7414314},
-{"pid":27443,"tid":27459,"ts":326460704032,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7414344},
-{"pid":27443,"tid":27459,"ts":326460704612,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":153,"tdur":153,"tts":7414924},
-{"pid":27443,"tid":27459,"ts":326460704795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7415107,"id":"0xaf88a92bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460705986,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":91,"tdur":61,"tts":7416328},
-{"pid":27443,"tid":27459,"ts":326460706016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7416328,"id":"0xaf88a45cf182217a"},
-{"pid":27443,"tid":27459,"ts":326460706535,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7416847},
-{"pid":27443,"tid":27459,"ts":326460706688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7416999,"id":"0xaf88a71ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460706688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":549,"tdur":550,"tts":7416999},
-{"pid":27443,"tid":27459,"ts":326460706718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7417030,"id":"0xaf88a718f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460706749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7417060,"id":"0xaf88a92ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460706749,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":489,"tts":7417060},
-{"pid":27443,"tid":27459,"ts":326460706779,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":428,"tdur":427,"tts":7417091},
-{"pid":27443,"tid":27459,"ts":326460706840,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.97","frame":"0x78c60000","encodedDataLength":0}},"tts":7417152,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460706871,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":91,"tdur":92,"tts":7417182},
-{"pid":27443,"tid":27459,"ts":326460706962,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":153,"tdur":153,"tts":7417274},
-{"pid":27443,"tid":27459,"ts":326460706993,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":122,"tdur":91,"tts":7417305},
-{"pid":27443,"tid":27459,"ts":326460707115,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":91,"tts":7417427},
-{"pid":27443,"tid":27459,"ts":326460707146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7417457,"id":"0xaf88aa9ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460707298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7417610,"id":"0xaf88a71ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460707298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":397,"tts":7417610},
-{"pid":27443,"tid":27459,"ts":326460707329,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7417640,"id":"0xaf88a928f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460707329,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":336,"tts":7417671},
-{"pid":27443,"tid":27459,"ts":326460707359,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":336,"tdur":336,"tts":7417671},
-{"pid":27443,"tid":27459,"ts":326460707420,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.97","frame":"0x78c60000","encodedDataLength":0}},"tts":7417732,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460707420,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":31,"tts":7417762},
-{"pid":27443,"tid":27459,"ts":326460707481,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":61,"tts":7417823},
-{"pid":27443,"tid":27459,"ts":326460707512,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7417823},
-{"pid":27443,"tid":27459,"ts":326460707603,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7417915},
-{"pid":27443,"tid":27459,"ts":326460707634,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7417945,"id":"0xaf88aa9ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460707756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7418068,"id":"0xaf88a718f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460707756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7418068},
-{"pid":27443,"tid":27459,"ts":326460707786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7418098,"id":"0xaf88a719f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460707817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7418129,"id":"0xaf88a929f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460707817,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7418129},
-{"pid":27443,"tid":27459,"ts":326460707878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7418220,"id":"0xaf88a719f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460707909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":763,"tdur":763,"tts":7418220},
-{"pid":27443,"tid":27459,"ts":326460707939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7418251,"id":"0xaf88a71af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460707939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7418251,"id":"0xaf88a92af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460707970,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":671,"tdur":672,"tts":7418281},
-{"pid":27443,"tid":27459,"ts":326460707970,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":671,"tdur":641,"tts":7418312},
-{"pid":27443,"tid":27459,"ts":326460708183,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7418495,"id":"0xaf88ae4cfda7ac62"},
-{"pid":27443,"tid":27466,"ts":326460704368,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":153,"tdur":152,"tts":335968},
-{"pid":27443,"tid":27466,"ts":326460704368,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":91,"tts":335968},
-{"pid":27443,"tid":27466,"ts":326460704460,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336059,"id":"0xba45a802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460704490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336090,"id":"0xaf88a929f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460704521,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336120,"id":"0xaf88a92af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460705589,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":306,"tts":336181},
-{"pid":27443,"tid":27466,"ts":326460705620,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":91,"tdur":91,"tts":336212},
-{"pid":27443,"tid":27466,"ts":326460705650,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336242,"id":"0xba45a902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460705681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336273,"id":"0xaf88a924f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460705711,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":61,"tts":336303},
-{"pid":27443,"tid":27466,"ts":326460705742,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336334,"id":"0xba45aa02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460705772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336364,"id":"0xaf88a925f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460705803,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":336395},
-{"pid":27443,"tid":27466,"ts":326460705833,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336426,"id":"0xba45ab02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460705864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336456,"id":"0xaf88a926f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460706169,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":336517},
-{"pid":27443,"tid":27466,"ts":326460706199,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":122,"tdur":122,"tts":336548},
-{"pid":27443,"tid":27466,"ts":326460706230,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336578,"id":"0xba45ac02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460706230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336578,"id":"0xaf88a927f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460706291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":336639,"id":"0xaf88a920f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460706321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336700,"id":"0xaf88aa9df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460706352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":336700},
-{"pid":27443,"tid":27466,"ts":326460706352,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336700,"id":"0xccc51f02"},
-{"pid":27443,"tid":27466,"ts":326460707237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336822,"id":"0xaf88aa9ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460707237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":336822},
-{"pid":27443,"tid":27466,"ts":326460707237,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336822,"id":"0xccc52002"},
-{"pid":27443,"tid":27466,"ts":326460707756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":336914,"id":"0xaf88aa9ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460707786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":336944},
-{"pid":27443,"tid":27466,"ts":326460707786,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":336944,"id":"0xccc52102"},
-{"pid":27443,"tid":27466,"ts":326460708458,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":337036},
-{"pid":27443,"tid":27466,"ts":326460708488,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":92,"tts":337036},
-{"pid":27443,"tid":27466,"ts":326460708519,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337066,"id":"0xba45ad02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460708549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":337097,"id":"0xaf88a922f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460708549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":337097,"id":"0xaf88a71bf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460708580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":337128,"id":"0xaf88aa98f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460708611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":337158},
-{"pid":27443,"tid":27466,"ts":326460708611,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337158,"id":"0xccc52202"},
-{"pid":27443,"tid":27466,"ts":326460709068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":337250},
-{"pid":27443,"tid":27466,"ts":326460709099,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":61,"tdur":61,"tts":337280},
-{"pid":27443,"tid":27466,"ts":326460709099,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337280,"id":"0xba45ae02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460709099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":337280,"id":"0xaf88a93cf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460709129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":337311,"id":"0xaf88a93df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460711144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":337402,"id":"0xaf88aa99f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460711144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":337402},
-{"pid":27443,"tid":27466,"ts":326460711174,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337433,"id":"0xccc52302"},
-{"pid":27443,"tid":27466,"ts":326460711663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":337555,"id":"0xaf88aa9af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460711693,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":337585},
-{"pid":27443,"tid":27466,"ts":326460711693,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337585,"id":"0xccc52402"},
-{"pid":27443,"tid":27466,"ts":326460711754,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":337646},
-{"pid":27443,"tid":27466,"ts":326460711785,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":92,"tts":337707},
-{"pid":27443,"tid":27466,"ts":326460711815,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337707,"id":"0xba45af02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460711846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":337738,"id":"0xaf88a939f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460711876,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":337768,"id":"0xaf88a93af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460713158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":337921,"id":"0xaf88aa9bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460713158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":337921},
-{"pid":27443,"tid":27466,"ts":326460713189,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":337952,"id":"0xccc52502"},
-{"pid":27443,"tid":27466,"ts":326460714074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":338074,"id":"0xaf88aa94f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460714104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":338104},
-{"pid":27443,"tid":27466,"ts":326460714104,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":338104,"id":"0xccc52602"},
-{"pid":27443,"tid":27466,"ts":326460714654,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":338226},
-{"pid":27443,"tid":27466,"ts":326460714684,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":122,"tts":338257},
-{"pid":27443,"tid":27466,"ts":326460714684,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":338257,"id":"0xba45b002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460714715,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":338287,"id":"0xaf88a934f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460714745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338318,"id":"0xaf88a72ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460708305,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.97","didFail":false,"networkTime":326460.704246}},"tts":7418647,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460708305,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":7418647},
-{"pid":27443,"tid":27459,"ts":326460708397,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":62,"tts":7418708},
-{"pid":27443,"tid":27459,"ts":326460708427,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7418739},
-{"pid":27443,"tid":27459,"ts":326460708488,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7418800,"id":"0xaf88a921f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460708519,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":31,"tts":7418861},
-{"pid":27443,"tid":27459,"ts":326460708549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7418861,"id":"0xaf88aa98f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460708702,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7419014,"id":"0xaf88a71af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460708733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1373,"tdur":1374,"tts":7419044},
-{"pid":27443,"tid":27459,"ts":326460708733,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7419075,"id":"0xaf88a714f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460708763,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7419075,"id":"0xaf88a92bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460708763,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":1343,"tdur":1313,"tts":7419105},
-{"pid":27443,"tid":27459,"ts":326460708794,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1281,"tdur":1282,"tts":7419105},
-{"pid":27443,"tid":27459,"ts":326460708824,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7419136},
-{"pid":27443,"tid":27459,"ts":326460708885,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":61,"tdur":30,"tts":7419197},
-{"pid":27443,"tid":27459,"ts":326460708977,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7419288,"id":"0xaf88a923f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460708977,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7419319},
-{"pid":27443,"tid":27459,"ts":326460709038,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":946,"tdur":947,"tts":7419349},
-{"pid":27443,"tid":27459,"ts":326460709190,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":763,"tdur":702,"tts":7419533},
-{"pid":27443,"tid":27459,"ts":326460709221,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7419533},
-{"pid":27443,"tid":27459,"ts":326460709374,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":158,"frame":"0x78c60000"}},"tts":7419716,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460709648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7419960,"id":"0xaf88a93ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460709679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7419990,"id":"0xaf88a715f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460709709,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":179,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7420051,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460709831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7420143,"id":"0xaf88a93ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460709862,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":180,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7420204,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460709923,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7420235},
-{"pid":27443,"tid":27459,"ts":326460710075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7420387,"id":"0xaf88a938f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460710167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7420479,"id":"0xaf88a71bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460710167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":122,"tts":7420479},
-{"pid":27443,"tid":27459,"ts":326460710198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7420509,"id":"0xaf88a924f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460710198,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":7420509},
-{"pid":27443,"tid":27459,"ts":326460710228,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":30,"tts":7420540},
-{"pid":27443,"tid":27459,"ts":326460710350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7420662,"id":"0xaf88a714f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460710350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":794,"tdur":793,"tts":7420662},
-{"pid":27443,"tid":27459,"ts":326460710381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7420692,"id":"0xaf88a716f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460710411,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7420723,"id":"0xaf88a925f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460710411,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":702,"tdur":702,"tts":7420723},
-{"pid":27443,"tid":27459,"ts":326460710442,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":671,"tdur":672,"tts":7420753},
-{"pid":27443,"tid":27459,"ts":326460710472,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.99","frame":"0x78c60000","encodedDataLength":13084}},"tts":7420814,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460710503,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7420814},
-{"pid":27443,"tid":27459,"ts":326460710564,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":427,"tdur":428,"tts":7420875},
-{"pid":27443,"tid":27459,"ts":326460710594,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":397,"tdur":397,"tts":7420906},
-{"pid":27443,"tid":27459,"ts":326460711022,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7421333},
-{"pid":27443,"tid":27459,"ts":326460711022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7421364,"id":"0xaf88aa99f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460711174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7421486,"id":"0xaf88a716f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460711205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":793,"tdur":428,"tts":7421516},
-{"pid":27443,"tid":27459,"ts":326460711235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7421547,"id":"0xaf88a717f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460711235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7421547,"id":"0xaf88a926f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460711266,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":732,"tdur":367,"tts":7421577},
-{"pid":27443,"tid":27459,"ts":326460711266,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":702,"tdur":336,"tts":7421577},
-{"pid":27443,"tid":27459,"ts":326460711327,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.100","frame":"0x78c60000","encodedDataLength":0}},"tts":7421638,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460711357,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7421669},
-{"pid":27443,"tid":27459,"ts":326460711418,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":92,"tts":7421730},
-{"pid":27443,"tid":27459,"ts":326460711418,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":30,"tts":7421761},
-{"pid":27443,"tid":27459,"ts":326460711510,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":458,"tdur":91,"tts":7421822},
-{"pid":27443,"tid":27459,"ts":326460711540,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7421852,"id":"0xaf88aa9af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460712059,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460710},"tts":7422005,"id":"0xaf88a715f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460712059,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":7422005},
-{"pid":27443,"tid":27459,"ts":326460712120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7422096,"id":"0xaf88a717f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460712151,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7422096},
-{"pid":27443,"tid":27459,"ts":326460712181,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7422127,"id":"0xaf88a710f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460712181,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7422127,"id":"0xaf88a927f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460712212,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7422157},
-{"pid":27443,"tid":27459,"ts":326460712273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7422218,"id":"0xaf88a710f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460712273,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":183,"tts":7422218},
-{"pid":27443,"tid":27459,"ts":326460712456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":885,"tdur":671,"tts":7422432},
-{"pid":27443,"tid":27459,"ts":326460712487,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7422463,"id":"0xaf88a711f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460712517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7422463,"id":"0xaf88a920f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460712517,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":824,"tdur":610,"tts":7422493},
-{"pid":27443,"tid":27459,"ts":326460712548,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":763,"tdur":580,"tts":7422493},
-{"pid":27443,"tid":27459,"ts":326460712700,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7422646,"id":"0xaf88ae4cfda7ef62"},
-{"pid":27443,"tid":27459,"ts":326460712822,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.100","didFail":false,"networkTime":326460.706108}},"tts":7422768,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460712853,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7422798},
-{"pid":27443,"tid":27459,"ts":326460712853,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":30,"tts":7422829},
-{"pid":27443,"tid":27459,"ts":326460712944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7422890,"id":"0xaf88a93bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460712975,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":305,"tdur":91,"tts":7422951},
-{"pid":27443,"tid":27459,"ts":326460713005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7422951,"id":"0xaf88aa9bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460713402,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7423164,"id":"0xaf88a711f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460713402,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":214,"tts":7423164},
-{"pid":27443,"tid":27459,"ts":326460713433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7423195,"id":"0xaf88a712f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460713463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7423226,"id":"0xaf88a921f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460713463,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":122,"tdur":122,"tts":7423226},
-{"pid":27443,"tid":27459,"ts":326460713494,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":91,"tdur":92,"tts":7423256},
-{"pid":27443,"tid":27459,"ts":326460713646,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7423409,"id":"0xaf88a712f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460713646,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":427,"tts":7423409},
-{"pid":27443,"tid":27459,"ts":326460713677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7423439,"id":"0xaf88a713f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460713707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7423470,"id":"0xaf88a922f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460713707,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":519,"tdur":366,"tts":7423470},
-{"pid":27443,"tid":27459,"ts":326460713738,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":488,"tdur":305,"tts":7423500},
-{"pid":27443,"tid":27459,"ts":326460713799,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.99","frame":"0x78c60000","encodedDataLength":1566}},"tts":7423561,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460713799,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":30,"tts":7423592},
-{"pid":27443,"tid":27459,"ts":326460713860,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7423622},
-{"pid":27443,"tid":27459,"ts":326460713860,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":0,"tts":7423653},
-{"pid":27443,"tid":27459,"ts":326460713921,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":275,"tdur":122,"tts":7423683},
-{"pid":27443,"tid":27459,"ts":326460713952,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7423714,"id":"0xaf88aa94f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460714257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7423897,"id":"0xaf88a713f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460714287,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7423897},
-{"pid":27443,"tid":27459,"ts":326460714318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7423927,"id":"0xaf88a72cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460714318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7423958,"id":"0xaf88a923f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460714348,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":31,"tts":7423958},
-{"pid":27443,"tid":27459,"ts":326460714348,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":7423989},
-{"pid":27443,"tid":27459,"ts":326460714440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7424050,"id":"0xaf88a72cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460714470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7424080},
-{"pid":27443,"tid":27459,"ts":326460714501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7424111,"id":"0xaf88a72df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460714501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7424111,"id":"0xaf88a93cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460714531,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7424141},
-{"pid":27443,"tid":27459,"ts":326460714593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7424202,"id":"0xaf88a72df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460714593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":824,"tdur":672,"tts":7424202},
-{"pid":27443,"tid":27459,"ts":326460714623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7424233,"id":"0xaf88a72ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460714654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7424263,"id":"0xaf88a93df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460714654,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":763,"tdur":611,"tts":7424263},
-{"pid":27443,"tid":27459,"ts":326460714684,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":702,"tdur":549,"tts":7424294},
-{"pid":27443,"tid":27459,"ts":326460714806,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7424416,"id":"0xaf88ae4cfda79ae2"},
-{"pid":27443,"tid":27459,"ts":326460714928,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.99","didFail":false,"networkTime":326460.709007}},"tts":7424538,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460714959,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7424568},
-{"pid":27443,"tid":27459,"ts":326460714959,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7424568},
-{"pid":27443,"tid":27459,"ts":326460715050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7424660,"id":"0xaf88a936f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460715081,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":275,"tdur":123,"tts":7424690},
-{"pid":27443,"tid":27459,"ts":326460715111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7424721,"id":"0xaf88aa95f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460715478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7424935,"id":"0xaf88a72ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460715478,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7424935},
-{"pid":27443,"tid":27459,"ts":326460715508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7424965,"id":"0xaf88a728f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460715539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7424996,"id":"0xaf88a938f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460715539,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":61,"tts":7424996},
-{"pid":27443,"tid":27459,"ts":326460715569,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7425026},
-{"pid":27443,"tid":27459,"ts":326460715630,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7425087,"id":"0xaf88a72ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460715661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":366,"tdur":366,"tts":7425118},
-{"pid":27443,"tid":27466,"ts":326460714776,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":338348,"id":"0xaf88a935f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460715233,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":338470,"id":"0xaf88aa95f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460715264,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":338501},
-{"pid":27443,"tid":27466,"ts":326460715264,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":338501,"id":"0xccc52702"},
-{"pid":27443,"tid":27466,"ts":326460719811,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":336,"tdur":305,"tts":338623},
-{"pid":27443,"tid":27466,"ts":326460719873,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":183,"tdur":92,"tts":338684},
-{"pid":27443,"tid":27466,"ts":326460719903,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":338684,"id":"0xba45b102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460719964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":338745,"id":"0xaf88a9ccf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460719995,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":338776,"id":"0xaf88a727f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460720056,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":91,"tts":338837},
-{"pid":27443,"tid":27466,"ts":326460720086,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":338867,"id":"0xba45b202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460720117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":338898,"id":"0xaf88a9cdf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460720971,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":336,"tdur":336,"tts":338989},
-{"pid":27443,"tid":27466,"ts":326460721032,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":61,"tdur":61,"tts":339050},
-{"pid":27443,"tid":27466,"ts":326460721032,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":339050,"id":"0xba45b402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460721063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":339111,"id":"0xaf88a9cff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460721124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":61,"tts":339142},
-{"pid":27443,"tid":27466,"ts":326460721154,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":339172,"id":"0xba45b502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460721185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":339203,"id":"0xaf88a9c8f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460721215,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":339233},
-{"pid":27443,"tid":27466,"ts":326460721215,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":339233,"id":"0xba45b302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460721246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339264,"id":"0xaf88a45ef182217a"},
-{"pid":27443,"tid":27466,"ts":326460725122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":339447,"id":"0xaf88aa96f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460725153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":339478},
-{"pid":27443,"tid":27466,"ts":326460725153,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":339478,"id":"0xccc52802"},
-{"pid":27443,"tid":27466,"ts":326460727289,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":339630},
-{"pid":27443,"tid":27466,"ts":326460727350,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":122,"tts":339661},
-{"pid":27443,"tid":27466,"ts":326460727350,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":339661,"id":"0xba45b602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460727381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":339691,"id":"0xaf88a9c4f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460727411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":339722,"id":"0xaf88a73bf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460727442,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":339752,"id":"0xaf88a9c5f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460729120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":339874,"id":"0xaf88aa97f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460729273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":580,"tdur":153,"tts":339935},
-{"pid":27443,"tid":27466,"ts":326460729273,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":339966,"id":"0xccc52902"},
-{"pid":27443,"tid":27466,"ts":326460729273,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":339966},
-{"pid":27443,"tid":27466,"ts":326460733118,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":340149},
-{"pid":27443,"tid":27466,"ts":326460733149,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":91,"tts":340180},
-{"pid":27443,"tid":27466,"ts":326460733179,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":340210,"id":"0xba45b702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460733179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340210,"id":"0xaf88a9c7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460733210,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":340241,"id":"0xaf88a737f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460733240,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340271,"id":"0xaf88a9c0f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460736109,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":340332},
-{"pid":27443,"tid":27466,"ts":326460736140,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":340363},
-{"pid":27443,"tid":27466,"ts":326460736140,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":340363,"id":"0xba45b802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460736170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340393,"id":"0xaf88a9c1f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460738124,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":340485},
-{"pid":27443,"tid":27466,"ts":326460738154,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":92,"tdur":61,"tts":340515},
-{"pid":27443,"tid":27466,"ts":326460738154,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":340515,"id":"0xba45ba02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460738185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340546,"id":"0xaf88a9c2f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460738215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340576,"id":"0xaf88a9c3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460740046,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":340668},
-{"pid":27443,"tid":27466,"ts":326460740077,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":340698},
-{"pid":27443,"tid":27466,"ts":326460740077,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":340698,"id":"0xba45bb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460740108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340729,"id":"0xaf88a9dcf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460743556,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":340820},
-{"pid":27443,"tid":27466,"ts":326460743587,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":122,"tts":340851},
-{"pid":27443,"tid":27466,"ts":326460743617,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":340882,"id":"0xba45bc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460743648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340912,"id":"0xaf88a9def3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460743678,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":340943,"id":"0xaf88a9dff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460744930,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":341034},
-{"pid":27443,"tid":27466,"ts":326460744991,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":61,"tdur":61,"tts":341095},
-{"pid":27443,"tid":27466,"ts":326460744991,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":341095,"id":"0xba45bd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460745021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":341126,"id":"0xaf88a9d9f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460745174,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":488,"tdur":305,"tts":341217},
-{"pid":27443,"tid":27459,"ts":326460715691,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7425148,"id":"0xaf88a93ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460715691,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":336,"tdur":336,"tts":7425148},
-{"pid":27443,"tid":27459,"ts":326460715722,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":274,"tdur":275,"tts":7425179},
-{"pid":27443,"tid":27459,"ts":326460715752,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":179,"frame":"0x78c60000"}},"dur":244,"tdur":245,"tts":7425209},
-{"pid":27443,"tid":27459,"ts":326460715783,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":213,"tdur":214,"tts":7425240},
-{"pid":27443,"tid":27459,"ts":326460715874,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":70,"frame":"0x78c60000"}},"dur":92,"tdur":61,"tts":7425362},
-{"pid":27443,"tid":27459,"ts":326460715905,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7425362},
-{"pid":27443,"tid":27459,"ts":326460715935,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7425423},
-{"pid":27443,"tid":27459,"ts":326460716057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7425545,"id":"0xaf88a728f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460716088,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":824,"tdur":824,"tts":7425545},
-{"pid":27443,"tid":27459,"ts":326460716119,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7425576,"id":"0xaf88a729f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460716119,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7425576,"id":"0xaf88a93ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460716149,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":763,"tdur":763,"tts":7425606},
-{"pid":27443,"tid":27459,"ts":326460716149,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":733,"tdur":702,"tts":7425637},
-{"pid":27443,"tid":27459,"ts":326460716210,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":180,"frame":"0x78c60000"}},"dur":672,"tdur":672,"tts":7425667},
-{"pid":27443,"tid":27459,"ts":326460716241,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":610,"tdur":610,"tts":7425698},
-{"pid":27443,"tid":27459,"ts":326460716302,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":549,"tdur":549,"tts":7425759},
-{"pid":27443,"tid":27459,"ts":326460716302,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7425789},
-{"pid":27443,"tid":27459,"ts":326460716698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7426155,"id":"0xaf88a937f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460716729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7426186,"id":"0xaf88a72af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460716790,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":181,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7426247,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460716820,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7426278},
-{"pid":27443,"tid":27459,"ts":326460716943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7426400,"id":"0xaf88a729f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460716973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7426430},
-{"pid":27443,"tid":27459,"ts":326460717004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7426461,"id":"0xaf88a72bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460717034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7426491,"id":"0xaf88a939f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460717034,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":7426491},
-{"pid":27443,"tid":27459,"ts":326460717095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7426552,"id":"0xaf88a72bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460717126,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":610,"tdur":610,"tts":7426583},
-{"pid":27443,"tid":27459,"ts":326460717126,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7426613,"id":"0xaf88a724f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460717156,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7426613,"id":"0xaf88a93af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460717156,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":550,"tdur":519,"tts":7426644},
-{"pid":27443,"tid":27459,"ts":326460717278,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":428,"tdur":397,"tts":7426735},
-{"pid":27443,"tid":27459,"ts":326460717645,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.103","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7427102,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460717767,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460717},"tts":7427224,"id":"0xaf88a72af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460717797,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7427254},
-{"pid":27443,"tid":27459,"ts":326460717858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7427315,"id":"0xaf88a724f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460717858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2472,"tdur":1923,"tts":7427315},
-{"pid":27443,"tid":27459,"ts":326460717889,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7427346,"id":"0xaf88a725f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460717919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7427376,"id":"0xaf88a93bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460717919,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":2381,"tdur":1862,"tts":7427376},
-{"pid":27443,"tid":27459,"ts":326460717950,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2350,"tdur":1831,"tts":7427407},
-{"pid":27443,"tid":27459,"ts":326460717980,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7427437},
-{"pid":27443,"tid":27459,"ts":326460718011,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":885,"tdur":855,"tts":7427498},
-{"pid":27443,"tid":27459,"ts":326460718163,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":672,"tdur":672,"tts":7427620},
-{"pid":27443,"tid":27459,"ts":326460718194,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7427651},
-{"pid":27443,"tid":27459,"ts":326460718316,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":162,"frame":"0x78c60000"}},"tts":7427773,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460718560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7428017,"id":"0xaf88a930f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460718591,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7428048,"id":"0xaf88a726f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460718652,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":182,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7428109,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460718743,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7428200,"id":"0xaf88a931f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460718774,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":183,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7428231,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460718804,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7428292},
-{"pid":27443,"tid":27459,"ts":326460718926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7428383,"id":"0xaf88a932f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460718957,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7428414},
-{"pid":27443,"tid":27459,"ts":326460718987,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":1252,"tdur":733,"tts":7428444},
-{"pid":27443,"tid":27459,"ts":326460719110,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":518,"tdur":518,"tts":7428567},
-{"pid":27443,"tid":27459,"ts":326460719140,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7428597},
-{"pid":27443,"tid":27459,"ts":326460719262,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":161,"frame":"0x78c60000"}},"tts":7428750,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460719506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7428963,"id":"0xaf88a933f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460719567,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":184,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7429024,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460719598,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7429055},
-{"pid":27443,"tid":27459,"ts":326460720269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7429208,"id":"0xaf88a9cef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460720361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7429299,"id":"0xaf88a725f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460720361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":91,"tts":7429330},
-{"pid":27443,"tid":27459,"ts":326460720422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7429360,"id":"0xaf88a720f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460720422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7429360,"id":"0xaf88a934f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460720452,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7429391},
-{"pid":27443,"tid":27459,"ts":326460720513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7429452,"id":"0xaf88a727f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460720544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1007,"tdur":611,"tts":7429482},
-{"pid":27443,"tid":27459,"ts":326460720544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7429482,"id":"0xaf88a935f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460720574,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":977,"tdur":580,"tts":7429513},
-{"pid":27443,"tid":27459,"ts":326460720697,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":824,"tdur":427,"tts":7429635},
-{"pid":27443,"tid":27459,"ts":326460721460,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.106","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7430032,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460721612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460719},"tts":7430154,"id":"0xaf88a726f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460721612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":7430154},
-{"pid":27443,"tid":27459,"ts":326460721673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7430245,"id":"0xaf88a720f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460721704,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":183,"tts":7430245},
-{"pid":27443,"tid":27459,"ts":326460721734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7430276,"id":"0xaf88a722f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460721734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7430306,"id":"0xaf88a936f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460721765,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":122,"tdur":122,"tts":7430306},
-{"pid":27443,"tid":27459,"ts":326460721765,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":122,"tdur":61,"tts":7430337},
-{"pid":27443,"tid":27459,"ts":326460721948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7430489,"id":"0xaf88a721f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460721948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1740,"tdur":1740,"tts":7430489},
-{"pid":27443,"tid":27459,"ts":326460721978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7430520,"id":"0xaf88a937f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460721978,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1710,"tdur":1709,"tts":7430520},
-{"pid":27443,"tid":27459,"ts":326460722009,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1648,"tdur":1649,"tts":7430550},
-{"pid":27443,"tid":27459,"ts":326460722039,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":181,"frame":"0x78c60000"}},"dur":1618,"tdur":1618,"tts":7430581},
-{"pid":27443,"tid":27459,"ts":326460722070,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1557,"tdur":1557,"tts":7430611},
-{"pid":27443,"tid":27459,"ts":326460722162,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":1465,"tdur":1465,"tts":7430703},
-{"pid":27443,"tid":27459,"ts":326460722192,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7430734},
-{"pid":27443,"tid":27459,"ts":326460722497,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":153,"tdur":122,"tts":7431069},
-{"pid":27443,"tid":27459,"ts":326460722680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7431222,"id":"0xaf88a9caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460723596,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7432137},
-{"pid":27443,"tid":27459,"ts":326460723718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7432290,"id":"0xaf88a722f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460723749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7432290},
-{"pid":27443,"tid":27459,"ts":326460723779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7432321,"id":"0xaf88a723f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460723810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7432351,"id":"0xaf88a932f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460723810,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":61,"tts":7432351},
-{"pid":27443,"tid":27459,"ts":326460723840,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7432382},
-{"pid":27443,"tid":27459,"ts":326460723901,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7432443,"id":"0xaf88a723f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460723932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":7432473},
-{"pid":27443,"tid":27459,"ts":326460723932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7432473,"id":"0xaf88a73cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460723962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7432504,"id":"0xaf88a9ccf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460723962,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":7432504},
-{"pid":27443,"tid":27459,"ts":326460723993,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":61,"tts":7432534},
-{"pid":27443,"tid":27459,"ts":326460724115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7432656,"id":"0xaf88a73cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460724115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":977,"tts":7432656},
-{"pid":27443,"tid":27459,"ts":326460724145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7432687,"id":"0xaf88a73df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460724176,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7432717,"id":"0xaf88a9cdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460724176,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1099,"tdur":885,"tts":7432717},
-{"pid":27443,"tid":27459,"ts":326460724206,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":1069,"tdur":854,"tts":7432748},
-{"pid":27443,"tid":27459,"ts":326460724267,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.103","frame":"0x78c60000","encodedDataLength":27378}},"tts":7432839,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460724298,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":92,"tdur":92,"tts":7432839},
-{"pid":27443,"tid":27459,"ts":326460724390,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":549,"tdur":518,"tts":7432962},
-{"pid":27443,"tid":27459,"ts":326460724420,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":488,"tdur":458,"tts":7432992},
-{"pid":27443,"tid":27459,"ts":326460724939,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":305,"tdur":61,"tts":7433511},
-{"pid":27443,"tid":27459,"ts":326460724969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7433511,"id":"0xaf88aa96f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460725336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7433663,"id":"0xaf88a73df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460725366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":7433694},
-{"pid":27443,"tid":27459,"ts":326460725366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7433725,"id":"0xaf88a73ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460725397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7433725,"id":"0xaf88a9cef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460725427,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7433755},
-{"pid":27443,"tid":27459,"ts":326460725427,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":7433755},
-{"pid":27443,"tid":27459,"ts":326460725519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7433847,"id":"0xaf88a73ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460725519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":396,"tts":7433847},
-{"pid":27443,"tid":27459,"ts":326460725549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7433877,"id":"0xaf88a73ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460725580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7433908,"id":"0xaf88a930f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460725580,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":336,"tdur":335,"tts":7433908},
-{"pid":27443,"tid":27459,"ts":326460725610,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":275,"tdur":275,"tts":7433938},
-{"pid":27443,"tid":27459,"ts":326460725641,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":182,"frame":"0x78c60000"}},"dur":244,"tdur":244,"tts":7433969},
-{"pid":27443,"tid":27459,"ts":326460725671,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":214,"tdur":214,"tts":7433999},
-{"pid":27443,"tid":27459,"ts":326460725763,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":70,"frame":"0x78c60000"}},"dur":92,"tdur":61,"tts":7434121},
-{"pid":27443,"tid":27459,"ts":326460725793,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7434121},
-{"pid":27443,"tid":27459,"ts":326460725824,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7434182},
-{"pid":27443,"tid":27459,"ts":326460725946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7434304,"id":"0xaf88a73ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460725977,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":885,"tdur":885,"tts":7434304},
-{"pid":27443,"tid":27459,"ts":326460726007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7434335,"id":"0xaf88a738f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460726007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7434335,"id":"0xaf88a931f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460726038,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":793,"tdur":794,"tts":7434365},
-{"pid":27443,"tid":27459,"ts":326460726038,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":793,"tdur":763,"tts":7434396},
-{"pid":27443,"tid":27459,"ts":326460726099,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":183,"frame":"0x78c60000"}},"dur":732,"tdur":733,"tts":7434426},
-{"pid":27443,"tid":27459,"ts":326460726099,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":702,"tdur":671,"tts":7434457},
-{"pid":27443,"tid":27459,"ts":326460726190,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":611,"tdur":610,"tts":7434518},
-{"pid":27443,"tid":27459,"ts":326460726190,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7434549},
-{"pid":27443,"tid":27459,"ts":326460726618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7434976,"id":"0xaf88a9cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460726679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7435006,"id":"0xaf88a739f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460726709,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":185,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7435067,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460726770,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7435098},
-{"pid":27443,"tid":27459,"ts":326460726892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7435220,"id":"0xaf88a738f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460726892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":549,"tts":7435220},
-{"pid":27443,"tid":27459,"ts":326460726923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7435251,"id":"0xaf88a73af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460726953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7435281,"id":"0xaf88a933f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460726953,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":489,"tdur":458,"tts":7435281},
-{"pid":27443,"tid":27459,"ts":326460726984,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":427,"tdur":427,"tts":7435312},
-{"pid":27443,"tid":27459,"ts":326460727014,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":184,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7435342},
-{"pid":27443,"tid":27459,"ts":326460727045,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":336,"tdur":335,"tts":7435373},
-{"pid":27443,"tid":27459,"ts":326460727106,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":275,"tdur":244,"tts":7435464},
-{"pid":27443,"tid":27459,"ts":326460727136,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7435464},
-{"pid":27443,"tid":27459,"ts":326460727350,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7435678},
-{"pid":27443,"tid":27459,"ts":326460727472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7435830,"id":"0xaf88a73af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460727503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":7435830},
-{"pid":27443,"tid":27459,"ts":326460727533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7435861,"id":"0xaf88a734f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460727533,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7435891,"id":"0xaf88a9cff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460727564,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":62,"tts":7435891},
-{"pid":27443,"tid":27459,"ts":326460727594,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":31,"tts":7435922},
-{"pid":27443,"tid":27459,"ts":326460727686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460727},"tts":7436014,"id":"0xaf88a739f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460727716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7436044},
-{"pid":27443,"tid":27459,"ts":326460727777,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7436105,"id":"0xaf88a73bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460727777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1007,"tdur":1007,"tts":7436105},
-{"pid":27443,"tid":27459,"ts":326460727808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7436136,"id":"0xaf88a9c8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460727838,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":946,"tdur":946,"tts":7436166},
-{"pid":27443,"tid":27459,"ts":326460727838,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":916,"tdur":916,"tts":7436166},
-{"pid":27443,"tid":27459,"ts":326460727899,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.106","frame":"0x78c60000","encodedDataLength":20206}},"tts":7436227,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460727930,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7436258},
-{"pid":27443,"tid":27459,"ts":326460727991,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":671,"tdur":641,"tts":7436349},
-{"pid":27443,"tid":27459,"ts":326460728021,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":611,"tdur":611,"tts":7436349},
-{"pid":27443,"tid":27459,"ts":326460728662,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":92,"tts":7436990},
-{"pid":27443,"tid":27459,"ts":326460728693,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7437021,"id":"0xaf88aa97f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460728815,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7437173,"id":"0xaf88a734f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460728846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12360,"tdur":11018,"tts":7437173},
-{"pid":27443,"tid":27459,"ts":326460728876,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7437204,"id":"0xaf88a735f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460728876,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7437234,"id":"0xaf88a9c9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460728907,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12269,"tdur":10957,"tts":7437234},
-{"pid":27443,"tid":27459,"ts":326460728907,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":139},"tts":7437234},
-{"pid":27443,"tid":27459,"ts":326460728937,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7437265},
-{"pid":27443,"tid":27459,"ts":326460728998,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7437326,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460729029,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7437356,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326460729029,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":91,"tdur":30,"tts":7437387},
-{"pid":27443,"tid":27459,"ts":326460729059,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":0,"tts":7437417},
-{"pid":27443,"tid":27459,"ts":326460729120,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":9095,"tdur":8942,"tts":7437448},
-{"pid":27443,"tid":27459,"ts":326460729151,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7437479},
-{"pid":27443,"tid":27459,"ts":326460729181,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":61,"tts":7437509},
-{"pid":27443,"tid":27459,"ts":326460729181,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7437509},
-{"pid":27443,"tid":27459,"ts":326460729242,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7437601},
-{"pid":27443,"tid":27459,"ts":326460729944,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":4,"counters":true},"tts":7438303},
-{"pid":27443,"tid":27459,"ts":326460730036,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":4},"tts":7438364},
-{"pid":27443,"tid":27459,"ts":326460730066,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1343,"tdur":1343,"tts":7438394},
-{"pid":27443,"tid":27459,"ts":326460730188,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":14,"totalObjects":311,"partialLayout":false,"frame":"0x78c60000"}},"tts":7438516},
-{"pid":27443,"tid":27459,"ts":326460730219,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":7438547},{"pid":27443,"tid":27459,"ts":326460730249,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7438577},
-{"pid":27443,"tid":27459,"ts":326460730829,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":31,"tdur":31,"tts":7439157},
-{"pid":27443,"tid":27459,"ts":326460730860,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7439218},
-{"pid":27443,"tid":27459,"ts":326460730890,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":336,"tdur":336,"tts":7439218},
-{"pid":27443,"tid":27459,"ts":326460731226,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":122,"tdur":122,"tts":7439554},
-{"pid":27443,"tid":27459,"ts":326460731287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7439615,"id":"0xaf88a9c6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460731318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7439645,"id":"0xaf88a736f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460731348,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":7439707},
-{"pid":27443,"tid":27459,"ts":326460731440,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":6745,"tdur":6622,"tts":7439768},
-{"pid":27443,"tid":27459,"ts":326460731470,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4334,"tdur":4334,"tts":7439798},
-{"pid":27443,"tid":27459,"ts":326460731501,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1282,"tdur":1281,"tts":7439829},
-{"pid":27443,"tid":27459,"ts":326460732813,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":7441141},
-{"pid":27443,"tid":27459,"ts":326460733057,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":275,"tdur":244,"tts":7441416},
-{"pid":27443,"tid":27459,"ts":326460733332,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":7441660},
-{"pid":27443,"tid":27459,"ts":326460733363,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2258,"tdur":2259,"tts":7441690},
-{"pid":27443,"tid":27459,"ts":326460735621,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":153,"tdur":152,"tts":7443949},
-{"pid":27443,"tid":27459,"ts":326460735804,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1862,"tdur":1740,"tts":7444132},
-{"pid":27443,"tid":27459,"ts":326460735835,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1800,"tdur":1679,"tts":7444162},
-{"pid":27443,"tid":27459,"ts":326460735835,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":335,"tdur":305,"tts":7444193},
-{"pid":27443,"tid":27459,"ts":326460736170,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":1435,"tdur":1282,"tts":7444529},
-{"pid":27443,"tid":27459,"ts":326460736262,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":1099,"tdur":976,"tts":7444590},
-{"pid":27443,"tid":27459,"ts":326460737666,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":7445872},
-{"pid":27443,"tid":27459,"ts":326460737727,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":458,"tdur":457,"tts":7445933},
-{"pid":27443,"tid":27459,"ts":326460738215,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":139},"dur":1526,"tdur":1526,"tts":7446421},
-{"pid":27443,"tid":27459,"ts":326460738215,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1526,"tdur":1526,"tts":7446421},
-{"pid":27443,"tid":27459,"ts":326460738612,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":139},"dur":641,"tdur":641,"tts":7446818},
-{"pid":27443,"tid":27459,"ts":326460738826,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[20,4,276,4,276,263,20,263],"nodeId":66,"layerId":111}},"dur":244,"tdur":245,"tts":7447031},
-{"pid":27443,"tid":27459,"ts":326460738948,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":91,"tdur":61,"tts":7447184},
-{"pid":27443,"tid":27459,"ts":326460739009,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7447215},
-{"pid":27443,"tid":27459,"ts":326460739070,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":30,"tdur":0,"tts":7447306},
-{"pid":27443,"tid":27459,"ts":326460739253,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":139},"dur":488,"tdur":488,"tts":7447459},
-{"pid":27443,"tid":27459,"ts":326460739375,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[20,260,276,260,276,519,20,519],"nodeId":67,"layerId":112}},"dur":214,"tdur":183,"tts":7447611},
-{"pid":27443,"tid":27459,"ts":326460739467,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":91,"tdur":30,"tts":7447703},
-{"pid":27443,"tid":27459,"ts":326460739528,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7447733},
-{"pid":27443,"tid":27459,"ts":326460739589,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":30,"tdur":31,"tts":7447794},
-{"pid":27443,"tid":27459,"ts":326460739772,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1190,"tdur":91,"tts":7447978},
-{"pid":27443,"tid":27459,"ts":326460739772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7447978,"id":"0xaf88a458f182217a"},
-{"pid":27443,"tid":27459,"ts":326460741145,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7448161},
-{"pid":27443,"tid":27459,"ts":326460741237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7448252,"id":"0xaf88a735f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460741267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":946,"tdur":397,"tts":7448252},
-{"pid":27443,"tid":27459,"ts":326460741267,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":7448252},
-{"pid":27443,"tid":27459,"ts":326460741389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7448313,"id":"0xaf88a730f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460741389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7448313,"id":"0xaf88a9caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460741389,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":7448313},
-{"pid":27443,"tid":27459,"ts":326460741481,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":732,"tdur":305,"tts":7448344},
-{"pid":27443,"tid":27459,"ts":326460741511,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":672,"tdur":244,"tts":7448374},
-{"pid":27443,"tid":27459,"ts":326460741542,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7448405},
-{"pid":27443,"tid":27459,"ts":326460741725,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":61,"tdur":31,"tts":7448496},
-{"pid":27443,"tid":27459,"ts":326460742030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7448588,"id":"0xaf88a9ddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460742030,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":7448588},
-{"pid":27443,"tid":27459,"ts":326460742244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7448710,"id":"0xaf88a737f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460742274,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3785,"tdur":3540,"tts":7448710},
-{"pid":27443,"tid":27459,"ts":326460742305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7448741,"id":"0xaf88a9cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460742305,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":3723,"tdur":3479,"tts":7448741},
-{"pid":27443,"tid":27459,"ts":326460742336,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":3692,"tdur":3418,"tts":7448771},
-{"pid":27443,"tid":27459,"ts":326460742366,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":185,"frame":"0x78c60000"}},"dur":3632,"tdur":3357,"tts":7448832},
-{"pid":27443,"tid":27477,"ts":326460740626,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":61,"tdur":61,"tts":682923},
-{"pid":27443,"tid":27477,"ts":326460740687,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":153,"tts":682984},
-{"pid":27443,"tid":27477,"ts":326460740932,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1434,"tdur":1251,"tts":683229},
-{"pid":27443,"tid":27477,"ts":326460740932,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":139},"dur":305,"tdur":305,"tts":683229},
-{"pid":27443,"tid":27477,"ts":326460741237,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":139},"dur":61,"tdur":61,"tts":683534},
-{"pid":27443,"tid":27477,"ts":326460741298,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":139},"tts":683595},
-{"pid":27443,"tid":27477,"ts":326460741511,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":683808},
-{"pid":27443,"tid":27477,"ts":326460741542,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":18},"tts":683839},
-{"pid":27443,"tid":27477,"ts":326460741542,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":824,"tdur":641,"tts":683839},
-{"pid":27443,"tid":27477,"ts":326460741542,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":427,"tdur":214,"tts":683839},
-{"pid":27443,"tid":27477,"ts":326460741969,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":684083},
-{"pid":27443,"tid":27477,"ts":326460742000,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":684114},
-{"pid":27443,"tid":27477,"ts":326460742030,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":8},"dur":306,"tdur":305,"tts":684144},
-{"pid":27443,"tid":27477,"ts":326460742152,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":684266},
-{"pid":27443,"tid":27477,"ts":326460742152,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":684266,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460742183,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":61,"tdur":31,"tts":684327},
-{"pid":27443,"tid":27477,"ts":326460742244,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":13,"num_edges":34},"dur":30,"tdur":30,"tts":684358},
-{"pid":27443,"tid":27477,"ts":326460742305,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":684419,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460742336,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":166}},"tts":684449,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460742336,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":684480,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460742427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":684541,"id":"0xaf88a459f182217a"},
-{"pid":27443,"tid":27477,"ts":326460742427,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":684541},
-{"pid":27443,"tid":27477,"ts":326460742458,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":92,"tts":684571},
-{"pid":27443,"tid":27477,"ts":326460742519,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":684633,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460742519,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":684633},
-{"pid":27443,"tid":27477,"ts":326460742549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":684663,"id":"0xaf88a45af182217a"},
-{"pid":27443,"tid":27477,"ts":326460742580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":684694,"id":"0xaf88a45af182217a"},
-{"pid":27443,"tid":27477,"ts":326460742580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2441,"tdur":274,"tts":684694},
-{"pid":27443,"tid":27477,"ts":326460742610,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":2411,"tdur":244,"tts":684724},
-{"pid":27443,"tid":27477,"ts":326460742610,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":2259,"tdur":92,"tts":684724},
-{"pid":27443,"tid":27477,"ts":326460742610,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":2259,"tdur":61,"tts":684724},
-{"pid":27443,"tid":27477,"ts":326460744869,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":91,"tts":684816},
-{"pid":27443,"tid":27477,"ts":326460744869,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":684846},
-{"pid":27443,"tid":27477,"ts":326460744991,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":684938},
-{"pid":27443,"tid":27477,"ts":326460744991,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":684938},
-{"pid":27443,"tid":27477,"ts":326460745021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":684968,"id":"0xaf88a45bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460745052,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":684999},
-{"pid":27443,"tid":27477,"ts":326460745052,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":684999},
-{"pid":27443,"tid":27477,"ts":326460761075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":685060,"id":"0xaf88a454f182217a"},
-{"pid":27443,"tid":27477,"ts":326460761106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":685090},
-{"pid":27443,"tid":27477,"ts":326460761136,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460741993.0,"frame_time_us":326460736170.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":685121},
-{"pid":27443,"tid":27477,"ts":326460761167,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460741993.0,"frame_time_us":326460736170.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":685151},
-{"pid":27443,"tid":27477,"ts":326460761197,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460752836},"dur":31,"tdur":30,"tts":685182},
-{"pid":27443,"tid":27477,"ts":326460761228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":685212,"id":"0xaf88a455f182217a"},
-{"pid":27443,"tid":27477,"ts":326460761258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":685243,"id":"0xaf88a455f182217a"},
-{"pid":27443,"tid":27477,"ts":326460761289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":685273},
-{"pid":27443,"tid":27477,"ts":326460761289,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":685273},
-{"pid":27443,"tid":27477,"ts":326460767728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":685334,"id":"0xaf88a456f182217a"},
-{"pid":27443,"tid":27477,"ts":326460767728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":306,"tdur":306,"tts":685334},
-{"pid":27443,"tid":27477,"ts":326460767820,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460758675.0,"frame_time_us":326460752852.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":685426},
-{"pid":27443,"tid":27477,"ts":326460767881,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460758675.0,"frame_time_us":326460752852.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":153,"tdur":153,"tts":685487},
-{"pid":27443,"tid":27477,"ts":326460767942,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460769518},"dur":61,"tdur":61,"tts":685548},
-{"pid":27443,"tid":27477,"ts":326460767973,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":685609,"id":"0xaf88a457f182217a"},
-{"pid":27443,"tid":27477,"ts":326460769651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460769},"tts":685731,"id":"0xaf88a457f182217a"},
-{"pid":27443,"tid":27477,"ts":326460769682,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":685762},
-{"pid":27443,"tid":27477,"ts":326460769682,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":685762},
-{"pid":27443,"tid":27477,"ts":326460774596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":685914,"id":"0xaf88a450f182217a"},
-{"pid":27443,"tid":27477,"ts":326460774596,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":183,"tts":685945},
-{"pid":27443,"tid":27477,"ts":326460774657,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460775356.0,"frame_time_us":326460769533.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":153,"tts":685975},
-{"pid":27443,"tid":27477,"ts":326460774657,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460775356.0,"frame_time_us":326460769533.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":152,"tdur":153,"tts":685975},
-{"pid":27443,"tid":27477,"ts":326460774779,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460786199},"dur":30,"tdur":30,"tts":686098},
-{"pid":27443,"tid":27477,"ts":326460774779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":686098,"id":"0xaf88a451f182217a"},
-{"pid":27443,"tid":27477,"ts":326460786315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460786},"tts":686189,"id":"0xaf88a451f182217a"},
-{"pid":27443,"tid":27477,"ts":326460786376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":686250},
-{"pid":27443,"tid":27459,"ts":326460742397,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":3601,"tdur":3326,"tts":7448863},
-{"pid":27443,"tid":27459,"ts":326460742397,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":91,"tts":7448863},
-{"pid":27443,"tid":27459,"ts":326460742610,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":3357,"tdur":3113,"tts":7449046},
-{"pid":27443,"tid":27459,"ts":326460742641,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7449076},
-{"pid":27443,"tid":27459,"ts":326460743526,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":183,"tdur":152,"tts":7449748},
-{"pid":27443,"tid":27459,"ts":326460743739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7449931,"id":"0xaf88a9d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460744533,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":31,"tts":7450724},
-{"pid":27443,"tid":27459,"ts":326460744564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7450755,"id":"0xaf88a45bf182217a"},
-{"pid":27443,"tid":27459,"ts":326460745021,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":122,"tdur":122,"tts":7451213},
-{"pid":27443,"tid":27459,"ts":326460745937,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7452128},
-{"pid":27443,"tid":27459,"ts":326460746090,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7452281,"id":"0xaf88a730f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460746120,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7452311},
-{"pid":27443,"tid":27459,"ts":326460746151,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7452342,"id":"0xaf88a731f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460746151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7452342,"id":"0xaf88a9c4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460746181,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7452372},
-{"pid":27443,"tid":27459,"ts":326460746242,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7452434,"id":"0xaf88a731f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460746242,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":4670,"tdur":640,"tts":7452434},
-{"pid":27443,"tid":27459,"ts":326460746273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7452464,"id":"0xaf88a732f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460746303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7452495,"id":"0xaf88a9c5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460746334,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":4547,"tdur":549,"tts":7452525},
-{"pid":27443,"tid":27459,"ts":326460750454,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":397,"tdur":397,"tts":7452647},
-{"pid":27443,"tid":27459,"ts":326460750820,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.105","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7453013,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460750942,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7453166,"id":"0xaf88a732f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460750973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7453166},
-{"pid":27443,"tid":27459,"ts":326460751034,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7453227,"id":"0xaf88a733f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460751034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7453227,"id":"0xaf88a9c7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460751064,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7453258},
-{"pid":27443,"tid":27459,"ts":326460751095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7453288,"id":"0xaf88a733f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460751125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":549,"tts":7453319},
-{"pid":27443,"tid":27459,"ts":326460751156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7453349,"id":"0xaf88a7ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460751156,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7453349,"id":"0xaf88a9c0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460751186,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":489,"tdur":488,"tts":7453380},
-{"pid":27443,"tid":27459,"ts":326460751309,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":335,"tdur":305,"tts":7453532},
-{"pid":27443,"tid":27459,"ts":326460751614,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.101","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7453807,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460751705,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7453898,"id":"0xaf88a7ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460751705,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":580,"tts":7453898},
-{"pid":27443,"tid":27459,"ts":326460751736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7453929,"id":"0xaf88a7cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460751766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7453960,"id":"0xaf88a9c1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460751766,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":519,"tdur":488,"tts":7453990},
-{"pid":27443,"tid":27459,"ts":326460751797,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":458,"tdur":458,"tts":7453990},
-{"pid":27443,"tid":27459,"ts":326460751858,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.103","frame":"0x78c60000","encodedDataLength":51490}},"tts":7454051,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460751858,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":214,"tdur":214,"tts":7454051},
-{"pid":27443,"tid":27459,"ts":326460752072,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":91,"tts":7454265},
-{"pid":27443,"tid":27459,"ts":326460752102,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7454295},
-{"pid":27443,"tid":27459,"ts":326460752163,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":61,"tts":7454387},
-{"pid":27443,"tid":27459,"ts":326460752194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7454387,"id":"0xaf88aa90f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460752316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7454509,"id":"0xaf88a7cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460752346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7454539},
-{"pid":27443,"tid":27459,"ts":326460752346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7454539,"id":"0xaf88a7cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460752377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7454570,"id":"0xaf88a9c2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460752377,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":0,"tts":7454570},
-{"pid":27443,"tid":27459,"ts":326460752438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460752},"tts":7454631,"id":"0xaf88a736f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460752438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":7454631},
-{"pid":27443,"tid":27459,"ts":326460752499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7454692,"id":"0xaf88a7cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460752499,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":549,"tdur":549,"tts":7454692},
-{"pid":27443,"tid":27459,"ts":326460752529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7454723,"id":"0xaf88a9c3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460752529,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":519,"tdur":488,"tts":7454753},
-{"pid":27443,"tid":27459,"ts":326460752651,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":397,"tdur":366,"tts":7454845},
-{"pid":27443,"tid":27459,"ts":326460752957,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.104","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7455150,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460753079,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7455272,"id":"0xaf88a7cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460753109,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8058,"tdur":763,"tts":7455302},
-{"pid":27443,"tid":27459,"ts":326460760068,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7455363,"id":"0xaf88a7c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460760098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7455394,"id":"0xaf88a9dcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460760129,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1038,"tdur":640,"tts":7455425},
-{"pid":27443,"tid":27466,"ts":326460745204,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":428,"tdur":244,"tts":341248},
-{"pid":27443,"tid":27466,"ts":326460745204,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":367,"tdur":152,"tts":341248},
-{"pid":27443,"tid":27466,"ts":326460745571,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":341431,"id":"0xba45be02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460745601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":341461,"id":"0xaf88a9daf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460745815,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":341583},
-{"pid":27443,"tid":27466,"ts":326460745845,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":122,"tdur":91,"tts":341645},
-{"pid":27443,"tid":27466,"ts":326460745876,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":341645,"id":"0xba45bf02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460745906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":341675,"id":"0xaf88a9dbf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460745937,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":341706,"id":"0xaf88a9d4f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460751888,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":183,"tts":341828},
-{"pid":27443,"tid":27466,"ts":326460751949,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":123,"tdur":122,"tts":341858},
-{"pid":27443,"tid":27466,"ts":326460751949,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":341858,"id":"0xba45c002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460751980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":341889,"id":"0xaf88a9d5f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460752010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":341919,"id":"0xaf88a7cef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460752072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":341980,"id":"0xaf88a9d6f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460752285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":342072,"id":"0xaf88aa90f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460752285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":342072},
-{"pid":27443,"tid":27466,"ts":326460752285,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":342072,"id":"0xccc52a02"},
-{"pid":27443,"tid":27466,"ts":326460752804,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":342194},
-{"pid":27443,"tid":27466,"ts":326460752804,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":92,"tdur":91,"tts":342194},
-{"pid":27443,"tid":27466,"ts":326460752835,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":342224,"id":"0xba45c102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460752835,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":342224,"id":"0xaf88a9d7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460752865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":342285,"id":"0xaf88a9d0f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460759793,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":366,"tdur":336,"tts":342377},
-{"pid":27443,"tid":27466,"ts":326460759854,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":92,"tdur":92,"tts":342438},
-{"pid":27443,"tid":27466,"ts":326460759854,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":342438,"id":"0xba45c302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460759915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":342530,"id":"0xaf88a9d1f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460759976,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":153,"tdur":153,"tts":342560},
-{"pid":27443,"tid":27466,"ts":326460759976,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":342560},
-{"pid":27443,"tid":27466,"ts":326460760068,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":342652,"id":"0xba45c402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460760098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":342682,"id":"0xaf88a9d2f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460760770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":342835,"id":"0xaf88aa91f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460760800,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":342865},
-{"pid":27443,"tid":27466,"ts":326460760861,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":342926,"id":"0xccc52b02"},
-{"pid":27443,"tid":27466,"ts":326460760922,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":342987},
-{"pid":27443,"tid":27466,"ts":326460760953,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":343018},
-{"pid":27443,"tid":27466,"ts":326460760953,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":343018,"id":"0xba45b902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460761014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":343079,"id":"0xaf88a454f182217a"},
-{"pid":27443,"tid":27466,"ts":326460762509,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":275,"tts":343201},
-{"pid":27443,"tid":27466,"ts":326460762540,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":122,"tdur":122,"tts":343232},
-{"pid":27443,"tid":27466,"ts":326460762571,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":343262,"id":"0xba45c502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460762632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":343323,"id":"0xaf88a9d3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460762693,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":92,"tts":343384},
-{"pid":27443,"tid":27466,"ts":326460762693,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":343384,"id":"0xba45c602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460762723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":343415,"id":"0xaf88a9ecf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460765378,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":336,"tdur":336,"tts":343567},
-{"pid":27443,"tid":27466,"ts":326460765439,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":123,"tdur":92,"tts":343628},
-{"pid":27443,"tid":27466,"ts":326460765439,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":343659,"id":"0xba45c702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460765500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":343720,"id":"0xaf88a9eff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460765562,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":92,"tts":343781},
-{"pid":27443,"tid":27466,"ts":326460765592,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":343781,"id":"0xba45c802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460765653,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":343842,"id":"0xaf88a9e8f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460767423,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":213,"tts":343995},
-{"pid":27443,"tid":27466,"ts":326460767515,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":344056},
-{"pid":27443,"tid":27466,"ts":326460767515,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":344056,"id":"0xba45c202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460767576,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":344117,"id":"0xaf88a456f182217a"},
-{"pid":27443,"tid":27466,"ts":326460768980,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":344330,"id":"0xaf88aa92f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460769010,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":344330},
-{"pid":27443,"tid":27466,"ts":326460769010,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":344330,"id":"0xccc52c02"},
-{"pid":27443,"tid":27466,"ts":326460772612,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":344422},
-{"pid":27443,"tid":27466,"ts":326460772673,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":122,"tts":344483},
-{"pid":27443,"tid":27466,"ts":326460772703,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":344513,"id":"0xba45ca02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460772734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":344544,"id":"0xaf88a9eaf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460772764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":344574,"id":"0xaf88a9ebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460760159,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":977,"tdur":549,"tts":7455455},
-{"pid":27443,"tid":27459,"ts":326460760159,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7455455},
-{"pid":27443,"tid":27459,"ts":326460760281,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.106","frame":"0x78c60000","encodedDataLength":12607}},"tts":7455608,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460760312,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":91,"tts":7455608},
-{"pid":27443,"tid":27459,"ts":326460760434,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":61,"tts":7455730},
-{"pid":27443,"tid":27459,"ts":326460760434,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":31,"tts":7455760},
-{"pid":27443,"tid":27459,"ts":326460760526,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":580,"tdur":183,"tts":7455821},
-{"pid":27443,"tid":27459,"ts":326460760526,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7455821},
-{"pid":27443,"tid":27459,"ts":326460760587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7455882,"id":"0xaf88aa91f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460761197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7456096,"id":"0xaf88a7c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460761228,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":184,"tts":7456126},
-{"pid":27443,"tid":27459,"ts":326460761258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7456157,"id":"0xaf88a7c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460761258,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7456157},
-{"pid":27443,"tid":27459,"ts":326460761350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7456188,"id":"0xaf88a9ddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460761350,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":91,"tdur":91,"tts":7456188},
-{"pid":27443,"tid":27459,"ts":326460761380,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":7456218},
-{"pid":27443,"tid":27459,"ts":326460761502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7456340,"id":"0xaf88a7c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460761502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7456340},
-{"pid":27443,"tid":27459,"ts":326460761533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7456371,"id":"0xaf88a7caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460761594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7456432,"id":"0xaf88a9def3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460761594,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7456432},
-{"pid":27443,"tid":27459,"ts":326460761655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7456493,"id":"0xaf88a7caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460761685,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":733,"tdur":733,"tts":7456523},
-{"pid":27443,"tid":27459,"ts":326460761685,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7456523,"id":"0xaf88a7cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460761685,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":7456523},
-{"pid":27443,"tid":27459,"ts":326460761746,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7456584,"id":"0xaf88a9dff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460761746,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":641,"tdur":641,"tts":7456584},
-{"pid":27443,"tid":27459,"ts":326460761899,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":488,"tdur":488,"tts":7456737},
-{"pid":27443,"tid":27459,"ts":326460762326,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.110","frame":"0x78c60000","statusCode":200,"mimeType":"application/json"}},"tts":7457195,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460762448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7457286,"id":"0xaf88a7cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460762448,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":31,"tts":7457286},
-{"pid":27443,"tid":27459,"ts":326460762845,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":519,"tts":7457317},
-{"pid":27443,"tid":27459,"ts":326460762845,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7457347,"id":"0xaf88a7c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460762876,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7457378,"id":"0xaf88a9d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460762906,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":458,"tdur":458,"tts":7457378},
-{"pid":27443,"tid":27459,"ts":326460762937,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":397,"tdur":397,"tts":7457408},
-{"pid":27443,"tid":27459,"ts":326460762967,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7457439},
-{"pid":27443,"tid":27459,"ts":326460763059,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":61,"tdur":61,"tts":7457530},
-{"pid":27443,"tid":27459,"ts":326460763150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7457622,"id":"0xaf88a9edf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460763211,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7457683},
-{"pid":27443,"tid":27459,"ts":326460763242,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":7457714},
-{"pid":27443,"tid":27459,"ts":326460763303,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7457775,"id":"0xaf88a9eef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460763395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7457866,"id":"0xaf88a7c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460763425,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":122,"tts":7457897},
-{"pid":27443,"tid":27459,"ts":326460763425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7457897,"id":"0xaf88a7c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460763456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7457927,"id":"0xaf88a9c6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460763486,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":61,"tts":7457958},
-{"pid":27443,"tid":27459,"ts":326460763517,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":31,"tts":7457988},
-{"pid":27443,"tid":27459,"ts":326460763517,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":30,"tdur":31,"tts":7457988},
-{"pid":27443,"tid":27459,"ts":326460763578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7458049,"id":"0xaf88a7c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460763608,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7458080},
-{"pid":27443,"tid":27459,"ts":326460763608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7458110,"id":"0xaf88a7c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460763639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7458110,"id":"0xaf88a9d9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460763639,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":61,"tts":7458110},
-{"pid":27443,"tid":27459,"ts":326460763669,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":30,"tts":7458141},
-{"pid":27443,"tid":27459,"ts":326460763761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7458232,"id":"0xaf88a7c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460763761,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5402,"tdur":4121,"tts":7458232},
-{"pid":27443,"tid":27459,"ts":326460763791,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7458263,"id":"0xaf88a7c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460763791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7458293,"id":"0xaf88a9daf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460763822,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":5341,"tdur":4029,"tts":7458293},
-{"pid":27443,"tid":27459,"ts":326460763822,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":5310,"tdur":4029,"tts":7458293},
-{"pid":27443,"tid":27459,"ts":326460763883,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.110","frame":"0x78c60000","encodedDataLength":546}},"tts":7458385,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460763883,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":7458385},
-{"pid":27443,"tid":27459,"ts":326460763944,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7458416},
-{"pid":27443,"tid":27459,"ts":326460764005,"ph":"X","cat":"devtools.timeline","name":"XHRReadyStateChange","args":{"data":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","readyState":2,"frame":"0x78c60000"}},"dur":4303,"tdur":3144,"tts":7458507},
-{"pid":27443,"tid":27459,"ts":326460764005,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":183,"tts":7458507},
-{"pid":27443,"tid":27459,"ts":326460768156,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"71","scriptName":"undefined","scriptLine":187,"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":7461498},
-{"pid":27443,"tid":27459,"ts":326460768186,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7461529},
-{"pid":27443,"tid":27459,"ts":326460768247,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7461590},
-{"pid":27443,"tid":27459,"ts":326460768430,"ph":"X","cat":"devtools.timeline","name":"XHRReadyStateChange","args":{"data":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","readyState":3,"frame":"0x78c60000"}},"dur":275,"tdur":274,"tts":7461773},
-{"pid":27443,"tid":27459,"ts":326460768583,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"71","scriptName":"undefined","scriptLine":187,"frame":"0x78c60000"}},"dur":61,"tdur":30,"tts":7461956},
-{"pid":27443,"tid":27459,"ts":326460768614,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7461956},
-{"pid":27443,"tid":27459,"ts":326460768644,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7461986},
-{"pid":27443,"tid":27459,"ts":326460768736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7462078,"id":"0xaf88a9e9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460768766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7462108,"id":"0xaf88a7c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460768827,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":305,"tdur":152,"tts":7462170},
-{"pid":27443,"tid":27459,"ts":326460768858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7462200,"id":"0xaf88aa92f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460769193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7462383,"id":"0xaf88a7c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460769224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7462414},
-{"pid":27443,"tid":27459,"ts":326460769254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7462444,"id":"0xaf88a7c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460769254,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":7462444},
-{"pid":27443,"tid":27459,"ts":326460769316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7462505,"id":"0xaf88a9dbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460769316,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":7462505},
-{"pid":27443,"tid":27459,"ts":326460769377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7462566,"id":"0xaf88a7c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460769407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":22646,"tdur":19930,"tts":7462597},
-{"pid":27443,"tid":27459,"ts":326460769407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7462597,"id":"0xaf88a7c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460769438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7462627,"id":"0xaf88a9d4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460769438,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":22585,"tdur":19869,"tts":7462627},
-{"pid":27443,"tid":27459,"ts":326460769468,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":22524,"tdur":19777,"tts":7462658},
-{"pid":27443,"tid":27459,"ts":326460769590,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7462780,"id":"0xaf88ae4cf8eab0e2"},
-{"pid":27443,"tid":27459,"ts":326460769865,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.110","didFail":false,"networkTime":326460.745723}},"tts":7462933,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460769956,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":7463024},
-{"pid":27443,"tid":27459,"ts":326460770079,"ph":"X","cat":"devtools.timeline","name":"XHRReadyStateChange","args":{"data":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","readyState":4,"frame":"0x78c60000"}},"dur":21577,"tdur":19014,"tts":7463116},
-{"pid":27443,"tid":27459,"ts":326460770231,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"71","scriptName":"undefined","scriptLine":187,"frame":"0x78c60000"}},"dur":21395,"tdur":18831,"tts":7463268},
-{"pid":27443,"tid":27459,"ts":326460770262,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7463299},
-{"pid":27443,"tid":27459,"ts":326460770689,"ph":"B","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7463726},
-{"pid":27443,"tid":27459,"ts":326460771360,"ph":"E","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7464428},
-{"pid":27443,"tid":27459,"ts":326460771482,"ph":"B","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7464550},
-{"pid":27443,"tid":27459,"ts":326460771940,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7465008},
-{"pid":27443,"tid":27459,"ts":326460772093,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7465130},
-{"pid":27443,"tid":27459,"ts":326460772123,"ph":"E","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7465191},
-{"pid":27443,"tid":27459,"ts":326460785888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7476850,"id":"0xaf88a9f9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460785919,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7476880,"id":"0xaf88a7c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460786010,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":186,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7476972,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460791565,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7482069},
-{"pid":27443,"tid":27459,"ts":326460791717,"ph":"X","cat":"devtools.timeline","name":"XHRLoad","args":{"data":{"url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3","frame":"0x78c60000"}},"dur":31,"tdur":30,"tts":7482191},
-{"pid":27443,"tid":27459,"ts":326460791779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7482282,"id":"0xaf88a9f0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460791870,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":62,"tts":7482343},
-{"pid":27443,"tid":27459,"ts":326460791901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7482374,"id":"0xaf88aa93f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460792084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7482557,"id":"0xaf88a7c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460792114,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7482588},
-{"pid":27443,"tid":27459,"ts":326460792145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7482649,"id":"0xaf88a7dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460792175,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7482649,"id":"0xaf88a9d5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460792175,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":7482649},
-{"pid":27443,"tid":27459,"ts":326460792236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7482710,"id":"0xaf88a7dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460792267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":671,"tdur":641,"tts":7482740},
-{"pid":27443,"tid":27459,"ts":326460792297,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7482771,"id":"0xaf88a7def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460792328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7482801,"id":"0xaf88a9d6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460792328,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":580,"tdur":580,"tts":7482801},
-{"pid":27443,"tid":27459,"ts":326460792450,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":458,"tdur":458,"tts":7482923},
-{"pid":27443,"tid":27459,"ts":326460792816,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.109","frame":"0x78c60000","statusCode":204,"mimeType":"image/gif"}},"tts":7483290,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460792938,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460786},"tts":7483442,"id":"0xaf88a7c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460792969,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":7483442},
-{"pid":27443,"tid":27459,"ts":326460793060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7483534,"id":"0xaf88a7ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460793060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7483534},
-{"pid":27443,"tid":27459,"ts":326460793091,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7483564,"id":"0xaf88a9d7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460793091,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":7483564},
-{"pid":27443,"tid":27459,"ts":326460793182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7483656,"id":"0xaf88a7def3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460774321,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":213,"tts":344697},
-{"pid":27443,"tid":27466,"ts":326460774382,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":122,"tts":344758},
-{"pid":27443,"tid":27466,"ts":326460774382,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":344758,"id":"0xba45c902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460774473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":344849,"id":"0xaf88a450f182217a"},
-{"pid":27443,"tid":27466,"ts":326460777587,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":344941},
-{"pid":27443,"tid":27466,"ts":326460777648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":91,"tdur":91,"tts":345002},
-{"pid":27443,"tid":27466,"ts":326460777648,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":345002,"id":"0xba45cb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460777678,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345032,"id":"0xaf88a9e4f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460777709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345063,"id":"0xaf88a9e5f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460779692,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":367,"tdur":275,"tts":345215},
-{"pid":27443,"tid":27466,"ts":326460779753,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":92,"tdur":61,"tts":345276},
-{"pid":27443,"tid":27466,"ts":326460779784,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":345276,"id":"0xba45cc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460779815,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345307,"id":"0xaf88a9e6f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460779876,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":345368},
-{"pid":27443,"tid":27466,"ts":326460779876,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":345368,"id":"0xba45cd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460779906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345429,"id":"0xaf88a9e7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460779937,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":345429},
-{"pid":27443,"tid":27466,"ts":326460779967,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":345460,"id":"0xba45ce02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460779967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345490,"id":"0xaf88a9e0f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460781035,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":345582},
-{"pid":27443,"tid":27466,"ts":326460781066,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":122,"tdur":122,"tts":345612},
-{"pid":27443,"tid":27466,"ts":326460781096,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":345643,"id":"0xba45cf02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460781127,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345673,"id":"0xaf88a9e1f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460781157,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345704,"id":"0xaf88a9e2f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460782287,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":345795},
-{"pid":27443,"tid":27466,"ts":326460782348,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":345856},
-{"pid":27443,"tid":27466,"ts":326460782348,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":345856,"id":"0xba45d002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460782409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":345917,"id":"0xaf88a9e3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460783416,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":345978},
-{"pid":27443,"tid":27466,"ts":326460783446,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":92,"tdur":91,"tts":346009},
-{"pid":27443,"tid":27466,"ts":326460783446,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346009,"id":"0xba45d102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460783477,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346039,"id":"0xaf88a9fcf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460783508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346070,"id":"0xaf88a9fdf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460784118,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":346162},
-{"pid":27443,"tid":27466,"ts":326460784148,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":31,"tdur":31,"tts":346192},
-{"pid":27443,"tid":27466,"ts":326460784148,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346192,"id":"0xba45d202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460784179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346223,"id":"0xaf88a9fef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460784759,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":346284},
-{"pid":27443,"tid":27466,"ts":326460784789,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":61,"tdur":61,"tts":346314},
-{"pid":27443,"tid":27466,"ts":326460784789,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346314,"id":"0xba45d302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460784789,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346314,"id":"0xaf88a9fff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460784820,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346345,"id":"0xaf88a9f8f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460787628,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":346436},
-{"pid":27443,"tid":27466,"ts":326460787658,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":92,"tdur":91,"tts":346467},
-{"pid":27443,"tid":27466,"ts":326460787658,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346467,"id":"0xba45d502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460787689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346497,"id":"0xaf88a9faf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460787719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346528,"id":"0xaf88a9fbf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460788238,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":346619},
-{"pid":27443,"tid":27466,"ts":326460788269,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":61,"tdur":61,"tts":346650},
-{"pid":27443,"tid":27466,"ts":326460788299,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346680,"id":"0xba45d602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460788299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346711,"id":"0xaf88a9f4f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460788330,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":31,"tts":346741},
-{"pid":27443,"tid":27466,"ts":326460788360,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346741,"id":"0xba45d702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460788391,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346772,"id":"0xaf88a9f5f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460788543,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":346833},
-{"pid":27443,"tid":27466,"ts":326460788574,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":91,"tdur":62,"tts":346863},
-{"pid":27443,"tid":27466,"ts":326460788604,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":346863,"id":"0xba45d802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460788604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346863,"id":"0xaf88a9f6f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460788635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":346894,"id":"0xaf88a9f7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460791656,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":763,"tdur":366,"tts":346986},
-{"pid":27443,"tid":27466,"ts":326460791809,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":153,"tdur":61,"tts":347047},
-{"pid":27443,"tid":27466,"ts":326460791809,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347047,"id":"0xba45d902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460791962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":347108,"id":"0xaf88a9f1f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460791992,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":275,"tdur":122,"tts":347138},
-{"pid":27443,"tid":27471,"ts":326460782165,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":671,"tdur":671,"tts":380314},
-{"pid":27443,"tid":27471,"ts":326460782165,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":671,"tdur":671,"tts":380314},
-{"pid":27443,"tid":27471,"ts":326460782195,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x79972588"},"tileResolution":"HIGH_RESOLUTION"}},"tts":380344},
-{"pid":27443,"tid":27471,"ts":326460782195,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":380344},
-{"pid":27443,"tid":27471,"ts":326460782256,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":380405},
-{"pid":27443,"tid":27471,"ts":326460782256,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":111,"sourceFrameNumber":139,"tileId":{"id_ref":"0x79972588"},"tileResolution":"HIGH_RESOLUTION"}},"tts":380405},
-{"pid":27443,"tid":27471,"ts":326460782287,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":380436,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460782836,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":380985},
-{"pid":27443,"tid":27469,"ts":326460795868,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1130,"tdur":1129,"tts":324950},
-{"pid":27443,"tid":27469,"ts":326460795929,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1038,"tdur":1038,"tts":325011},
-{"pid":27443,"tid":27471,"ts":326460795929,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1465,"tdur":824,"tts":381046},
-{"pid":27443,"tid":27469,"ts":326460795960,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x7e24e398"},"tileResolution":"HIGH_RESOLUTION"}},"tts":325041},
-{"pid":27443,"tid":27471,"ts":326460795960,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1404,"tdur":793,"tts":381077},
-{"pid":27443,"tid":27469,"ts":326460795960,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":122,"tdur":123,"tts":325041},
-{"pid":27443,"tid":27471,"ts":326460795960,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x7e0a0ee8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":381077},
-{"pid":27443,"tid":27471,"ts":326460795990,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":381107},
-{"pid":27443,"tid":27471,"ts":326460796021,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":381138},
-{"pid":27443,"tid":27471,"ts":326460796051,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x7e0a0ee8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":381168},
-{"pid":27443,"tid":27469,"ts":326460796082,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":325164},
-{"pid":27443,"tid":27471,"ts":326460796082,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":381199,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460796112,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x7e24e398"},"tileResolution":"HIGH_RESOLUTION"}},"tts":325194},
-{"pid":27443,"tid":27469,"ts":326460796143,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":325225,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460796967,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":326049},
-{"pid":27443,"tid":27469,"ts":326460796998,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":915,"tdur":916,"tts":326079},
-{"pid":27443,"tid":27469,"ts":326460796998,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":915,"tdur":916,"tts":326079},
-{"pid":27443,"tid":27469,"ts":326460797028,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x79915640"},"tileResolution":"HIGH_RESOLUTION"}},"tts":326110},
-{"pid":27443,"tid":27469,"ts":326460797059,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":326140},
-{"pid":27443,"tid":27469,"ts":326460797120,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":326201},
-{"pid":27443,"tid":27469,"ts":326460797150,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x79915640"},"tileResolution":"HIGH_RESOLUTION"}},"tts":326232},
-{"pid":27443,"tid":27469,"ts":326460797181,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":326262,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460797364,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":381870},
-{"pid":27443,"tid":27471,"ts":326460797394,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":381901},
-{"pid":27443,"tid":27471,"ts":326460797394,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":702,"tts":381901},
-{"pid":27443,"tid":27471,"ts":326460797425,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x799156f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":381931},
-{"pid":27443,"tid":27471,"ts":326460797425,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":381931},
-{"pid":27443,"tid":27471,"ts":326460797486,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":381992},
-{"pid":27443,"tid":27471,"ts":326460797516,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":112,"sourceFrameNumber":139,"tileId":{"id_ref":"0x799156f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":382023},
-{"pid":27443,"tid":27471,"ts":326460797547,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":382054,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460797883,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":326964},
-{"pid":27443,"tid":27471,"ts":326460798096,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":382603},
-{"pid":27443,"tid":27471,"ts":326460798096,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1129,"tdur":91,"tts":382603},
-{"pid":27443,"tid":27471,"ts":326460798127,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1098,"tdur":61,"tts":382633},
-{"pid":27443,"tid":27469,"ts":326460798157,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1130,"tdur":61,"tts":327025},
-{"pid":27443,"tid":27469,"ts":326460798157,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1130,"tdur":61,"tts":327025},
-{"pid":27443,"tid":27471,"ts":326460798401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382633,"id":"0xaf88a46cf182217a"},
-{"pid":27443,"tid":27469,"ts":326460799256,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327056,"id":"0xaf88a46df182217a"},
-{"pid":27443,"tid":27471,"ts":326460808931,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":62,"tts":382755},
-{"pid":27443,"tid":27471,"ts":326460808961,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":382786},
-{"pid":27443,"tid":27471,"ts":326460808961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382786,"id":"0xaf88a468f182217a"},
-{"pid":27443,"tid":27471,"ts":326460808992,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":382817},
-{"pid":27443,"tid":27471,"ts":326460808992,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":382817},
-{"pid":27443,"tid":27471,"ts":326460808992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382817,"id":"0xaf88a469f182217a"},
-{"pid":27443,"tid":27471,"ts":326460809023,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":382847},
-{"pid":27443,"tid":27471,"ts":326460809023,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":382847},
-{"pid":27443,"tid":27471,"ts":326460809053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382878,"id":"0xaf88a46af182217a"},
-{"pid":27443,"tid":27471,"ts":326460824527,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":122,"tts":382908},
-{"pid":27443,"tid":27471,"ts":326460824557,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":382939},
-{"pid":27443,"tid":27471,"ts":326460824588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382969,"id":"0xaf88a463f182217a"},
-{"pid":27443,"tid":27469,"ts":326460824588,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":21944,"tdur":18923,"tts":327147},
-{"pid":27443,"tid":27469,"ts":326460824618,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":21884,"tdur":18861,"tts":327178},
-{"pid":27443,"tid":27469,"ts":326460824618,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":327178},
-{"pid":27443,"tid":27469,"ts":326460824618,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":327178},
-{"pid":27443,"tid":27469,"ts":326460824649,"ph":"X","cat":"renderer","name":"ChildDiscardableSharedMemoryManager::AllocateLockedDiscardableSharedMemory","args":{"size":4194304,"id":6},"dur":1068,"tdur":153,"tts":327208},
-{"pid":27443,"tid":27469,"ts":326460824679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":327239,"id":"0xaf88aab6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460786376,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":686250},
-{"pid":27443,"tid":27477,"ts":326460794068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":686311,"id":"0xaf88a452f182217a"},
-{"pid":27443,"tid":27477,"ts":326460794068,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":122,"tts":686342},
-{"pid":27443,"tid":27477,"ts":326460794098,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460792038.0,"frame_time_us":326460786215.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":686342},
-{"pid":27443,"tid":27477,"ts":326460794129,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460792038.0,"frame_time_us":326460786215.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":686372},
-{"pid":27443,"tid":27477,"ts":326460794159,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460802881},"dur":31,"tdur":30,"tts":686403},
-{"pid":27443,"tid":27477,"ts":326460794190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":686433,"id":"0xaf88a453f182217a"},
-{"pid":27443,"tid":27477,"ts":326460799256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":686555,"id":"0xaf88a46cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460799256,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":686555},
-{"pid":27443,"tid":27477,"ts":326460799287,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":686586},
-{"pid":27443,"tid":27477,"ts":326460799287,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":686586,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460799317,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":686616},
-{"pid":27443,"tid":27477,"ts":326460799317,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":686616,"id":"0xaf88a46ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460799348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":686677,"id":"0xaf88a46df182217a"},
-{"pid":27443,"tid":27477,"ts":326460799378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":686677},
-{"pid":27443,"tid":27477,"ts":326460799378,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":686677},
-{"pid":27443,"tid":27477,"ts":326460799409,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":686708,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460799409,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":686708},
-{"pid":27443,"tid":27477,"ts":326460799439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":686738,"id":"0xaf88a46ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460799439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2625,"tdur":2381,"tts":686738},
-{"pid":27443,"tid":27477,"ts":326460799470,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2594,"tdur":2350,"tts":686769},
-{"pid":27443,"tid":27477,"ts":326460799470,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":976,"tdur":732,"tts":686769},
-{"pid":27443,"tid":27477,"ts":326460799470,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":686769},
-{"pid":27443,"tid":27477,"ts":326460799500,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":686799},
-{"pid":27443,"tid":27477,"ts":326460799531,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":686830},
-{"pid":27443,"tid":27477,"ts":326460799592,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":686891},
-{"pid":27443,"tid":27477,"ts":326460799592,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":686891},
-{"pid":27443,"tid":27477,"ts":326460799622,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":686922},
-{"pid":27443,"tid":27477,"ts":326460799653,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":686952},
-{"pid":27443,"tid":27477,"ts":326460799683,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":686983},
-{"pid":27443,"tid":27477,"ts":326460799683,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":686983},
-{"pid":27443,"tid":27477,"ts":326460799744,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":687044},
-{"pid":27443,"tid":27477,"ts":326460799744,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":687044},
-{"pid":27443,"tid":27477,"ts":326460799775,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":687074},
-{"pid":27443,"tid":27477,"ts":326460799805,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":687105},
-{"pid":27443,"tid":27477,"ts":326460799836,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":687135},
-{"pid":27443,"tid":27477,"ts":326460799866,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":687166},
-{"pid":27443,"tid":27477,"ts":326460799897,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":687196},
-{"pid":27443,"tid":27477,"ts":326460799927,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":62,"tdur":61,"tts":687227},
-{"pid":27443,"tid":27477,"ts":326460799958,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":687257},{"pid":27443,"tid":27477,"ts":326460799989,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":335,"tdur":91,"tts":687288},
-{"pid":27443,"tid":27477,"ts":326460799989,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":335,"tdur":30,"tts":687288},
-{"pid":27443,"tid":27477,"ts":326460800324,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":687379},
-{"pid":27443,"tid":27477,"ts":326460800355,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":687410},
-{"pid":27443,"tid":27477,"ts":326460800385,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":687440},
-{"pid":27443,"tid":27477,"ts":326460800385,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":31,"tts":687440},
-{"pid":27443,"tid":27477,"ts":326460800416,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":687471},
-{"pid":27443,"tid":27477,"ts":326460800446,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":687501},
-{"pid":27443,"tid":27477,"ts":326460800446,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":183,"tdur":184,"tts":687501},
-{"pid":27443,"tid":27477,"ts":326460800477,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":687532},
-{"pid":27443,"tid":27477,"ts":326460800629,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1435,"tdur":1434,"tts":687685},
-{"pid":27443,"tid":27477,"ts":326460800629,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1435,"tdur":1434,"tts":687685},
-{"pid":27443,"tid":27477,"ts":326460800629,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1313,"tdur":1282,"tts":687715},
-{"pid":27443,"tid":27477,"ts":326460800660,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":687715,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460800660,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":275,"tdur":244,"tts":687746},
-{"pid":27443,"tid":27477,"ts":326460800965,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":688020},
-{"pid":27443,"tid":27477,"ts":326460801057,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688112},
-{"pid":27443,"tid":27477,"ts":326460801057,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":688112},
-{"pid":27443,"tid":27477,"ts":326460801087,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":688142},
-{"pid":27443,"tid":27477,"ts":326460801118,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688173},
-{"pid":27443,"tid":27477,"ts":326460801118,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":688173},
-{"pid":27443,"tid":27477,"ts":326460801148,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688203},
-{"pid":27443,"tid":27477,"ts":326460801179,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688234},
-{"pid":27443,"tid":27477,"ts":326460801179,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688234},
-{"pid":27443,"tid":27466,"ts":326460791992,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":347138},
-{"pid":27443,"tid":27466,"ts":326460792114,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347169,"id":"0xba45da02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460792145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":347199,"id":"0xaf88a9f2f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460792145,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":31,"tts":347199},
-{"pid":27443,"tid":27466,"ts":326460792236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347230,"id":"0xaf88a7ddf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460792267,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":61,"tts":347260},
-{"pid":27443,"tid":27466,"ts":326460792267,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347260,"id":"0xba45db02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460792297,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":347321,"id":"0xaf88a9f3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460792297,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":347321},
-{"pid":27443,"tid":27466,"ts":326460792419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":347352,"id":"0xaf88aa93f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460792419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":580,"tdur":30,"tts":347352},
-{"pid":27443,"tid":27466,"ts":326460792419,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":550,"tdur":0,"tts":347352},
-{"pid":27443,"tid":27466,"ts":326460792969,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347352,"id":"0xccc52d02"},
-{"pid":27443,"tid":27466,"ts":326460793121,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":580,"tdur":152,"tts":347413},
-{"pid":27443,"tid":27466,"ts":326460793152,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":31,"tts":347443},
-{"pid":27443,"tid":27466,"ts":326460793152,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347443,"id":"0xba45dc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460793274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":347474,"id":"0xaf88a98cf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460793305,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":152,"tdur":61,"tts":347504},
-{"pid":27443,"tid":27466,"ts":326460793305,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347504,"id":"0xba45dd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460793305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":347504,"id":"0xaf88a98df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460793305,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":347504},
-{"pid":27443,"tid":27466,"ts":326460793427,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":347535,"id":"0xaf88a98ef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460793823,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":347627},
-{"pid":27443,"tid":27466,"ts":326460793854,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":347657},
-{"pid":27443,"tid":27466,"ts":326460793854,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347657,"id":"0xba45d402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460793884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347688,"id":"0xaf88a452f182217a"},
-{"pid":27443,"tid":27466,"ts":326460793945,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":347749,"id":"0xaf88aaacf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460793945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":347749},
-{"pid":27443,"tid":27466,"ts":326460793945,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347749,"id":"0xccc52e02"},
-{"pid":27443,"tid":27466,"ts":326460795014,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":347871,"id":"0xaf88aaadf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460795044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":347871},
-{"pid":27443,"tid":27466,"ts":326460795044,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347871,"id":"0xccc52f02"},
-{"pid":27443,"tid":27466,"ts":326460795990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":347962,"id":"0xaf88aaaef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460795990,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":347962},
-{"pid":27443,"tid":27466,"ts":326460796021,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":347993,"id":"0xccc53002"},
-{"pid":27443,"tid":27466,"ts":326460797761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":348145,"id":"0xaf88aaaff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460797791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":348176},
-{"pid":27443,"tid":27466,"ts":326460797791,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":348176,"id":"0xccc53102"},
-{"pid":27443,"tid":27466,"ts":326460797883,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":348267},
-{"pid":27443,"tid":27466,"ts":326460797913,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":92,"tts":348298},
-{"pid":27443,"tid":27466,"ts":326460797913,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":348298,"id":"0xba45de02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460797974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348359,"id":"0xaf88a988f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460798310,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":348451},
-{"pid":27443,"tid":27466,"ts":326460798340,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":92,"tdur":92,"tts":348481},
-{"pid":27443,"tid":27466,"ts":326460798340,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":348481,"id":"0xba45df02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460798371,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348512,"id":"0xaf88a989f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460798401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348542,"id":"0xaf88a98af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460799683,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":348634},
-{"pid":27443,"tid":27466,"ts":326460799714,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":30,"tdur":31,"tts":348664},
-{"pid":27443,"tid":27466,"ts":326460799714,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":348664,"id":"0xba45e002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460799744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348695,"id":"0xaf88a98bf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460800324,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":348725},
-{"pid":27443,"tid":27466,"ts":326460800355,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":91,"tdur":61,"tts":348756},
-{"pid":27443,"tid":27466,"ts":326460800385,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":348786,"id":"0xba45e102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460800385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348786,"id":"0xaf88a984f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460800416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":348817,"id":"0xaf88a985f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460800965,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":348939,"id":"0xaf88aaa8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460800965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":348939},
-{"pid":27443,"tid":27466,"ts":326460800965,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":348939,"id":"0xccc53202"},
-{"pid":27443,"tid":27466,"ts":326460801606,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349091,"id":"0xaf88aaa9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460801606,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":349091},
-{"pid":27443,"tid":27466,"ts":326460801606,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349122,"id":"0xccc53302"},
-{"pid":27443,"tid":27466,"ts":326460802369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349214,"id":"0xaf88aaaaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460802369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":349214},
-{"pid":27443,"tid":27459,"ts":326460793213,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":794,"tdur":794,"tts":7483686},
-{"pid":27443,"tid":27459,"ts":326460793243,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7483717,"id":"0xaf88a7dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460793243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7483717,"id":"0xaf88a9d0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460793243,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":733,"tdur":732,"tts":7483717},
-{"pid":27443,"tid":27459,"ts":326460793274,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":702,"tdur":702,"tts":7483747},
-{"pid":27443,"tid":27459,"ts":326460793305,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7483778,"id":"0xaf88ae4cf8eab462"},
-{"pid":27443,"tid":27459,"ts":326460793427,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.109","didFail":false,"networkTime":326460.752712}},"tts":7483900,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460793427,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":396,"tdur":366,"tts":7483931},
-{"pid":27443,"tid":27459,"ts":326460793427,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7483931},
-{"pid":27443,"tid":27459,"ts":326460793518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7483992,"id":"0xaf88a98ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460793854,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":91,"tdur":92,"tts":7484327},
-{"pid":27443,"tid":27459,"ts":326460793884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7484358,"id":"0xaf88aaacf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460794037,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7484510,"id":"0xaf88a7dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460794037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":123,"tts":7484510},
-{"pid":27443,"tid":27459,"ts":326460794068,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7484541,"id":"0xaf88a7d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460794068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7484541,"id":"0xaf88a9d1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460794098,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":62,"tts":7484571},
-{"pid":27443,"tid":27459,"ts":326460794098,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":31,"tts":7484571},
-{"pid":27443,"tid":27459,"ts":326460794190,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7484663,"id":"0xaf88a7d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460794220,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":824,"tdur":824,"tts":7484694},
-{"pid":27443,"tid":27459,"ts":326460794220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7484694,"id":"0xaf88a7d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460794251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7484724,"id":"0xaf88a9d2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460794251,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":793,"tdur":763,"tts":7484724},
-{"pid":27443,"tid":27459,"ts":326460794281,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":733,"tdur":732,"tts":7484755},
-{"pid":27443,"tid":27459,"ts":326460794312,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.105","frame":"0x78c60000","encodedDataLength":47807}},"tts":7484816,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460794342,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":183,"tdur":183,"tts":7484816},
-{"pid":27443,"tid":27459,"ts":326460794525,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":397,"tdur":367,"tts":7485029},
-{"pid":27443,"tid":27459,"ts":326460794556,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":366,"tdur":367,"tts":7485029},
-{"pid":27443,"tid":27459,"ts":326460794922,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":91,"tts":7485396},
-{"pid":27443,"tid":27459,"ts":326460794953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7485426,"id":"0xaf88aaadf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460795075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7485548,"id":"0xaf88a7d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460795075,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":122,"tts":7485579},
-{"pid":27443,"tid":27459,"ts":326460795105,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7485579,"id":"0xaf88a7daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460795136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7485609,"id":"0xaf88a9d3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460795136,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":7485609},
-{"pid":27443,"tid":27459,"ts":326460795166,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":30,"tts":7485640},
-{"pid":27443,"tid":27459,"ts":326460795227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7485731,"id":"0xaf88a7daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460795258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":763,"tdur":763,"tts":7485731},
-{"pid":27443,"tid":27459,"ts":326460795288,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7485762,"id":"0xaf88a7dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460795288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7485762,"id":"0xaf88a9ecf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460795288,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":702,"tdur":672,"tts":7485792},
-{"pid":27443,"tid":27459,"ts":326460795319,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":671,"tdur":672,"tts":7485792},
-{"pid":27443,"tid":27459,"ts":326460795349,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.101","frame":"0x78c60000","encodedDataLength":34000}},"tts":7485853,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460795380,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":183,"tdur":183,"tts":7485853},
-{"pid":27443,"tid":27459,"ts":326460795563,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":336,"tdur":336,"tts":7486036},
-{"pid":27443,"tid":27459,"ts":326460795594,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":274,"tdur":275,"tts":7486067},
-{"pid":27443,"tid":27459,"ts":326460795899,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7486372},
-{"pid":27443,"tid":27459,"ts":326460795929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7486403,"id":"0xaf88aaaef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460796082,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7486555,"id":"0xaf88a7dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7486586},
-{"pid":27443,"tid":27459,"ts":326460796143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7486616,"id":"0xaf88a7d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7486616,"id":"0xaf88a9edf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460796173,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7486647},
-{"pid":27443,"tid":27459,"ts":326460796173,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":7486647},
-{"pid":27443,"tid":27459,"ts":326460796265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7486738,"id":"0xaf88a7d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7486738},
-{"pid":27443,"tid":27459,"ts":326460796296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7486769,"id":"0xaf88a7d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7486799,"id":"0xaf88a9eef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460796326,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7486799},
-{"pid":27443,"tid":27459,"ts":326460796326,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":7486830},
-{"pid":27443,"tid":27459,"ts":326460796418,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7486891,"id":"0xaf88a7d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796418,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":7486891},
-{"pid":27443,"tid":27459,"ts":326460796448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7486922,"id":"0xaf88a7d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7486952,"id":"0xaf88a9eff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460796479,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":7486952},
-{"pid":27443,"tid":27459,"ts":326460796509,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":92,"tdur":91,"tts":7486983},
-{"pid":27443,"tid":27459,"ts":326460796692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7487166,"id":"0xaf88a7d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796692,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1404,"tdur":1007,"tts":7487196},
-{"pid":27443,"tid":27459,"ts":326460796753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7487227,"id":"0xaf88a7d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460796784,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7487257,"id":"0xaf88a9e8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460796784,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1282,"tdur":916,"tts":7487257},
-{"pid":27443,"tid":27459,"ts":326460796814,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":1252,"tdur":885,"tts":7487288},
-{"pid":27443,"tid":27459,"ts":326460796845,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.104","frame":"0x78c60000","encodedDataLength":46830}},"tts":7487349,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460796906,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":244,"tdur":244,"tts":7487379},
-{"pid":27443,"tid":27459,"ts":326460797150,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":427,"tdur":397,"tts":7487654},
-{"pid":27443,"tid":27459,"ts":326460797181,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":396,"tdur":397,"tts":7487654},
-{"pid":27443,"tid":27459,"ts":326460797608,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":458,"tdur":61,"tts":7488081},
-{"pid":27443,"tid":27459,"ts":326460797638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7488112,"id":"0xaf88aaaff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460798127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7488234,"id":"0xaf88a7d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798157,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7488264},
-{"pid":27443,"tid":27459,"ts":326460798188,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7488295,"id":"0xaf88a7d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798188,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7488295,"id":"0xaf88a9eaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460798218,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7488325},
-{"pid":27443,"tid":27459,"ts":326460798249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7488387,"id":"0xaf88a7d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":518,"tts":7488387},
-{"pid":27443,"tid":27459,"ts":326460798310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7488417,"id":"0xaf88a7d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7488417,"id":"0xaf88a9ebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460798310,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":488,"tts":7488417},
-{"pid":27443,"tid":27459,"ts":326460798432,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":336,"tdur":336,"tts":7488539},
-{"pid":27443,"tid":27459,"ts":326460798737,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.108","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7488844,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460798829,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7488936,"id":"0xaf88a7d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7488966},
-{"pid":27443,"tid":27459,"ts":326460798859,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7488997,"id":"0xaf88a7d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7488997,"id":"0xaf88a9e4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460798890,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7488997},
-{"pid":27443,"tid":27459,"ts":326460798951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7489058,"id":"0xaf88a7d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460798951,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":488,"tts":7489058},
-{"pid":27443,"tid":27459,"ts":326460798981,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7489088,"id":"0xaf88a7d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460799012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7489119,"id":"0xaf88a9e5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460799012,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":397,"tts":7489119},
-{"pid":27443,"tid":27459,"ts":326460799103,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":306,"tdur":305,"tts":7489211},
-{"pid":27443,"tid":27459,"ts":326460799348,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.102","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7489485,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460799470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7489577,"id":"0xaf88a7d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460799470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7489577},
-{"pid":27443,"tid":27459,"ts":326460799500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7489607,"id":"0xaf88a7ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460799500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7489607,"id":"0xaf88a9e6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460799531,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":7489638},
-{"pid":27443,"tid":27459,"ts":326460799531,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":61,"tts":7489638},
-{"pid":27443,"tid":27459,"ts":326460799622,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7489729,"id":"0xaf88a7ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460799653,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1434,"tdur":793,"tts":7489760},
-{"pid":27443,"tid":27459,"ts":326460799653,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7489790,"id":"0xaf88a7edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460799683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7489790,"id":"0xaf88a9e7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460799683,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1374,"tdur":763,"tts":7489790},
-{"pid":27443,"tid":27459,"ts":326460799714,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":1343,"tdur":732,"tts":7489821},
-{"pid":27443,"tid":27459,"ts":326460799744,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.108","frame":"0x78c60000","encodedDataLength":32864}},"tts":7489851,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460799775,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":183,"tdur":183,"tts":7489882},
-{"pid":27443,"tid":27459,"ts":326460799958,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":885,"tdur":427,"tts":7490065},
-{"pid":27443,"tid":27459,"ts":326460799989,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":824,"tdur":366,"tts":7490096},
-{"pid":27443,"tid":27459,"ts":326460800843,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":214,"tdur":31,"tts":7490492},
-{"pid":27443,"tid":27459,"ts":326460800874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7490523,"id":"0xaf88aaa8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460801087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7490584,"id":"0xaf88a7edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460801118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":428,"tts":7490614},
-{"pid":27443,"tid":27459,"ts":326460801118,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7490614,"id":"0xaf88a7eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460801148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7490645,"id":"0xaf88a9e0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460801148,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":550,"tdur":397,"tts":7490645},
-{"pid":27443,"tid":27459,"ts":326460801148,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":550,"tdur":366,"tts":7490676},
-{"pid":27443,"tid":27459,"ts":326460801209,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.103","frame":"0x78c60000","encodedDataLength":0}},"tts":7490706,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460801209,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":91,"tts":7490737},
-{"pid":27443,"tid":27477,"ts":326460801209,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":688264},
-{"pid":27443,"tid":27477,"ts":326460801240,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":688295},
-{"pid":27443,"tid":27477,"ts":326460801270,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":688325},
-{"pid":27443,"tid":27477,"ts":326460801301,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":688356},
-{"pid":27443,"tid":27477,"ts":326460801331,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":688387},
-{"pid":27443,"tid":27477,"ts":326460801362,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688417},
-{"pid":27443,"tid":27477,"ts":326460801362,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":688448},
-{"pid":27443,"tid":27477,"ts":326460801392,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":688448},
-{"pid":27443,"tid":27477,"ts":326460801423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":688478},
-{"pid":27443,"tid":27477,"ts":326460801453,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":688509},
-{"pid":27443,"tid":27477,"ts":326460801515,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688570},
-{"pid":27443,"tid":27477,"ts":326460801545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688600},
-{"pid":27443,"tid":27477,"ts":326460801576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":688631},
-{"pid":27443,"tid":27477,"ts":326460801606,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688661},
-{"pid":27443,"tid":27477,"ts":326460801698,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688753},
-{"pid":27443,"tid":27477,"ts":326460801698,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":688753},
-{"pid":27443,"tid":27477,"ts":326460801728,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688783},
-{"pid":27443,"tid":27477,"ts":326460801759,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688814},
-{"pid":27443,"tid":27477,"ts":326460801759,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":688814},
-{"pid":27443,"tid":27477,"ts":326460801789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":688844},
-{"pid":27443,"tid":27477,"ts":326460801789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":688844},
-{"pid":27443,"tid":27477,"ts":326460801850,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":688905},
-{"pid":27443,"tid":27477,"ts":326460801881,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":688936},
-{"pid":27443,"tid":27477,"ts":326460801881,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":688936},
-{"pid":27443,"tid":27477,"ts":326460801911,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":0,"tts":688966},
-{"pid":27443,"tid":27477,"ts":326460801942,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":140},"tts":688997},
-{"pid":27443,"tid":27477,"ts":326460802003,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":689058,"id":"0xaf88a986f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460802003,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":689058,"id":"0xaf88a7e9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460802033,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":689089},
-{"pid":27443,"tid":27477,"ts":326460802033,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":689089},
-{"pid":27443,"tid":27477,"ts":326460802064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":689119,"id":"0xaf88a46ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460802094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":689150,"id":"0xaf88a46ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460802094,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6867,"tdur":2777,"tts":689150},
-{"pid":27443,"tid":27477,"ts":326460802094,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6867,"tdur":2777,"tts":689150},
-{"pid":27443,"tid":27477,"ts":326460802125,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":689180},
-{"pid":27443,"tid":27477,"ts":326460802125,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6440,"tdur":2350,"tts":689180},
-{"pid":27443,"tid":27477,"ts":326460802155,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":139},"dur":947,"tdur":946,"tts":689211},
-{"pid":27443,"tid":27477,"ts":326460802186,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":139},"dur":244,"tdur":244,"tts":689241},
-{"pid":27443,"tid":27477,"ts":326460802430,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":139},"dur":31,"tdur":31,"tts":689485},
-{"pid":27443,"tid":27477,"ts":326460802461,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":139},"tts":689516},
-{"pid":27443,"tid":27477,"ts":326460802552,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":18},"tts":689638},
-{"pid":27443,"tid":27477,"ts":326460802583,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":689638},
-{"pid":27443,"tid":27477,"ts":326460802583,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":689668},
-{"pid":27443,"tid":27477,"ts":326460802613,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":689668},
-{"pid":27443,"tid":27477,"ts":326460802644,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":8}},"tts":689699,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460802705,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":689760},
-{"pid":27443,"tid":27477,"ts":326460803071,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":690126},
-{"pid":27443,"tid":27477,"ts":326460803102,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":4944,"tdur":854,"tts":690157},
-{"pid":27443,"tid":27477,"ts":326460803102,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":690157},
-{"pid":27443,"tid":27477,"ts":326460803132,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":4853,"tdur":733,"tts":690187},
-{"pid":27443,"tid":27477,"ts":326460803163,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":690218},
-{"pid":27443,"tid":27477,"ts":326460803224,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":690279},
-{"pid":27443,"tid":27477,"ts":326460803285,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":690340},
-{"pid":27443,"tid":27477,"ts":326460803346,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":690401},
-{"pid":27443,"tid":27477,"ts":326460803407,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":690462},
-{"pid":27443,"tid":27477,"ts":326460803468,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":690523},
-{"pid":27443,"tid":27477,"ts":326460803498,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":62,"tts":690553},
-{"pid":27443,"tid":27477,"ts":326460803651,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":690645},
-{"pid":27443,"tid":27477,"ts":326460803773,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13345},"dur":61,"tdur":61,"tts":690767},
-{"pid":27443,"tid":27477,"ts":326460803804,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":690798,"id":"0xaf88aaa4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460803865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":690859,"id":"0xaf88aaa5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460808015,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":690981,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460808046,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":458,"tdur":427,"tts":691042},
-{"pid":27443,"tid":27477,"ts":326460808443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":691408,"id":"0xaf88aaa3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460801362,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":122,"tts":7490859},
-{"pid":27443,"tid":27459,"ts":326460801362,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":91,"tdur":91,"tts":7490859},
-{"pid":27443,"tid":27459,"ts":326460801484,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":183,"tdur":30,"tts":7490981},
-{"pid":27443,"tid":27459,"ts":326460801515,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7491011,"id":"0xaf88aaa9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460801728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7491072,"id":"0xaf88a7eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460801789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7491133},
-{"pid":27443,"tid":27459,"ts":326460801789,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7491133,"id":"0xaf88a7eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460801820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7491164,"id":"0xaf88a9e1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460801820,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7491164},
-{"pid":27443,"tid":27459,"ts":326460801850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7491194,"id":"0xaf88a7eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460801881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":488,"tts":7491225},
-{"pid":27443,"tid":27459,"ts":326460801881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7491225,"id":"0xaf88a7e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460801911,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7491255,"id":"0xaf88a9e2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460801911,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":458,"tts":7491255},
-{"pid":27443,"tid":27459,"ts":326460801911,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":458,"tdur":427,"tts":7491286},
-{"pid":27443,"tid":27459,"ts":326460802064,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7491408,"id":"0xaf88ae4cfda78362"},
-{"pid":27443,"tid":27459,"ts":326460802155,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.103","didFail":false,"networkTime":326460.780944}},"tts":7491500,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460802186,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":30,"tdur":31,"tts":7491530},
-{"pid":27443,"tid":27459,"ts":326460802186,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":30,"tdur":31,"tts":7491530},
-{"pid":27443,"tid":27459,"ts":326460802247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7491591,"id":"0xaf88a987f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460802278,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":7491622},
-{"pid":27443,"tid":27459,"ts":326460802278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7491622,"id":"0xaf88aaaaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460802400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7491744,"id":"0xaf88a7e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460802430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":672,"tdur":550,"tts":7491774},
-{"pid":27443,"tid":27459,"ts":326460802430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7491774,"id":"0xaf88a7eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460802461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7491805,"id":"0xaf88a9e3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460802461,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":641,"tdur":519,"tts":7491805},
-{"pid":27443,"tid":27459,"ts":326460802461,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":610,"tdur":488,"tts":7491805},
-{"pid":27443,"tid":27459,"ts":326460802522,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.106","frame":"0x78c60000","encodedDataLength":30748}},"tts":7491866,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460802522,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":152,"tdur":152,"tts":7491866},
-{"pid":27443,"tid":27459,"ts":326460802674,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":183,"tdur":153,"tts":7492018},
-{"pid":27443,"tid":27459,"ts":326460802705,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":91,"tdur":92,"tts":7492049},
-{"pid":27443,"tid":27459,"ts":326460802857,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":214,"tdur":91,"tts":7492202},
-{"pid":27443,"tid":27459,"ts":326460802857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7492232,"id":"0xaf88aaabf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460803132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7492354,"id":"0xaf88a7e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460803163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7492385},
-{"pid":27443,"tid":27459,"ts":326460803163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7492415,"id":"0xaf88a9fcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460803193,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7492415},
-{"pid":27443,"tid":27459,"ts":326460803315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7492476,"id":"0xaf88a7eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460803315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":611,"tts":7492476},
-{"pid":27443,"tid":27459,"ts":326460803346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7492507,"id":"0xaf88a7ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460803346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7492507,"id":"0xaf88a9fdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460803376,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1252,"tdur":519,"tts":7492537},
-{"pid":27443,"tid":27459,"ts":326460803468,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":1160,"tdur":519,"tts":7492537},
-{"pid":27443,"tid":27459,"ts":326460804048,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7492751,"id":"0xaf88ae4cfda876e2"},
-{"pid":27443,"tid":27459,"ts":326460804139,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.106","didFail":false,"networkTime":326460.783324}},"tts":7492842,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460804139,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":7492842},
-{"pid":27443,"tid":27459,"ts":326460804292,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7492873},
-{"pid":27443,"tid":27459,"ts":326460804322,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":30,"tts":7492904},
-{"pid":27443,"tid":27459,"ts":326460804383,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":214,"tdur":61,"tts":7492965},
-{"pid":27443,"tid":27459,"ts":326460804414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7492995,"id":"0xaf88aaa6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460804689,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7493117,"id":"0xaf88a7ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460804689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":457,"tdur":458,"tts":7493117},
-{"pid":27443,"tid":27459,"ts":326460804719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7493148,"id":"0xaf88a7e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460804719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7493148,"id":"0xaf88a9fef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460804719,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":396,"tts":7493148},
-{"pid":27443,"tid":27459,"ts":326460804750,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":366,"tdur":366,"tts":7493178},
-{"pid":27443,"tid":27459,"ts":326460804780,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.105","frame":"0x78c60000","encodedDataLength":0}},"tts":7493239,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460804811,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7493239},
-{"pid":27443,"tid":27459,"ts":326460804963,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":91,"tts":7493392},
-{"pid":27443,"tid":27459,"ts":326460804963,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7493392},
-{"pid":27443,"tid":27459,"ts":326460805055,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7493483},
-{"pid":27443,"tid":27459,"ts":326460805085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7493514,"id":"0xaf88aaa7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460805177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7493605,"id":"0xaf88a7e4f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460802369,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349214,"id":"0xccc53402"},
-{"pid":27443,"tid":27466,"ts":326460802979,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349336,"id":"0xaf88aaabf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460803010,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":349366},
-{"pid":27443,"tid":27466,"ts":326460803010,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349366,"id":"0xccc53502"},
-{"pid":27443,"tid":27466,"ts":326460803895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349488,"id":"0xaf88aaa4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460803895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":349488},
-{"pid":27443,"tid":27466,"ts":326460803926,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349519,"id":"0xccc53602"},
-{"pid":27443,"tid":27466,"ts":326460803956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349549,"id":"0xaf88aaa5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460803987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":349580},
-{"pid":27443,"tid":27466,"ts":326460803987,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349580,"id":"0xccc53706"},
-{"pid":27443,"tid":27466,"ts":326460804170,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":349641},
-{"pid":27443,"tid":27466,"ts":326460804200,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":349671},
-{"pid":27443,"tid":27466,"ts":326460804200,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349671,"id":"0xc4c1bd0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460804506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":349824,"id":"0xaf88aaa6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460804536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":349854},
-{"pid":27443,"tid":27466,"ts":326460804536,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":349854,"id":"0xccc53802"},
-{"pid":27443,"tid":27466,"ts":326460804841,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":349946},
-{"pid":27443,"tid":27466,"ts":326460804872,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":122,"tts":349977},
-{"pid":27443,"tid":27466,"ts":326460804902,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350007,"id":"0xba45e302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460804963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":350068,"id":"0xaf88a980f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460805146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":350190,"id":"0xaf88aaa7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460805146,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":350190},
-{"pid":27443,"tid":27466,"ts":326460805177,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350221,"id":"0xccc53902"},
-{"pid":27443,"tid":27466,"ts":326460805818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":350343,"id":"0xaf88aaa0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460805818,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":350373},
-{"pid":27443,"tid":27466,"ts":326460805848,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350373,"id":"0xccc53a02"},
-{"pid":27443,"tid":27466,"ts":326460807466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":350495,"id":"0xaf88aaa1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460807466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":350495},
-{"pid":27443,"tid":27466,"ts":326460807497,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350526,"id":"0xccc53b02"},
-{"pid":27443,"tid":27466,"ts":326460807527,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":350556},
-{"pid":27443,"tid":27466,"ts":326460807558,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":91,"tdur":92,"tts":350587},
-{"pid":27443,"tid":27466,"ts":326460807588,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350618,"id":"0xba45e402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460807588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":350618,"id":"0xaf88a981f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460807649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":350679,"id":"0xaf88a982f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460807893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":350740,"id":"0xaf88aaa2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460807924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":350770},
-{"pid":27443,"tid":27466,"ts":326460807924,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350770,"id":"0xccc53c02"},
-{"pid":27443,"tid":27466,"ts":326460808504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":350862,"id":"0xaf88aaa3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460808534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":350892},
-{"pid":27443,"tid":27466,"ts":326460808534,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":350892,"id":"0xccc53d02"},
-{"pid":27443,"tid":27466,"ts":326460808687,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":350984},
-{"pid":27443,"tid":27466,"ts":326460808717,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":92,"tdur":92,"tts":351014},
-{"pid":27443,"tid":27466,"ts":326460808748,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":351045,"id":"0xba45e502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460808778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":351075,"id":"0xaf88a99df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460808809,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":351106},
-{"pid":27443,"tid":27466,"ts":326460808809,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":351106,"id":"0xba45e602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460808839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":351136,"id":"0xaf88a99ef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460810549,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":351228},
-{"pid":27443,"tid":27466,"ts":326460810579,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":351258},
-{"pid":27443,"tid":27466,"ts":326460810579,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":351258,"id":"0xba45e202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460810610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":351319,"id":"0xaf88a465f182217a"},
-{"pid":27443,"tid":27466,"ts":326460811220,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":351381},
-{"pid":27443,"tid":27466,"ts":326460811251,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":61,"tdur":61,"tts":351411},
-{"pid":27443,"tid":27466,"ts":326460811251,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":351411,"id":"0xba45e802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460811281,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":351442,"id":"0xaf88a998f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460811403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":351533,"id":"0xaf88aabcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460811434,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/child/child_histogram_message_filter.cc","src_func":"SendHistograms"},"dur":8088,"tdur":4150,"tts":351564},
-{"pid":27443,"tid":27466,"ts":326460819430,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":355623,"id":"0xccc54702"},
-{"pid":27443,"tid":27466,"ts":326460819522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":355714,"id":"0xaf88aabdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460819522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":355745},
-{"pid":27443,"tid":27466,"ts":326460819552,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":355745,"id":"0xccc53e02"},
-{"pid":27443,"tid":27466,"ts":326460819583,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":366,"tdur":367,"tts":355775},
-{"pid":27443,"tid":27466,"ts":326460819613,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":153,"tdur":153,"tts":355806},
-{"pid":27443,"tid":27466,"ts":326460819644,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":355836,"id":"0xba45e902","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326460805177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7493605},
-{"pid":27443,"tid":27459,"ts":326460805238,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7493667,"id":"0xaf88a7e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460805238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7493667,"id":"0xaf88a9fff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460805238,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":0,"tts":7493697},
-{"pid":27443,"tid":27459,"ts":326460805299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7493728,"id":"0xaf88a7e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460805330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":518,"tdur":519,"tts":7493758},
-{"pid":27443,"tid":27459,"ts":326460805330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7493758,"id":"0xaf88a7e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460805360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7493789,"id":"0xaf88a9f8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460805360,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":457,"tts":7493789},
-{"pid":27443,"tid":27459,"ts":326460805360,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":458,"tdur":427,"tts":7493819},
-{"pid":27443,"tid":27459,"ts":326460805513,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7493941,"id":"0xaf88ae4cfda87a62"},
-{"pid":27443,"tid":27459,"ts":326460805635,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.105","didFail":false,"networkTime":326460.784393}},"tts":7494063,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460805635,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":30,"tts":7494094},
-{"pid":27443,"tid":27459,"ts":326460805665,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":30,"tts":7494094},
-{"pid":27443,"tid":27459,"ts":326460805726,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":7494155},
-{"pid":27443,"tid":27459,"ts":326460805726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7494185,"id":"0xaf88aaa0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460805879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7494307,"id":"0xaf88a7e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460805879,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":7494307},
-{"pid":27443,"tid":27459,"ts":326460805909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7494338,"id":"0xaf88a7e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460805909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7494368,"id":"0xaf88a9faf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460805940,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7494368},
-{"pid":27443,"tid":27459,"ts":326460805970,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7494430,"id":"0xaf88a7e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460806001,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":457,"tts":7494430},
-{"pid":27443,"tid":27459,"ts":326460806001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7494430,"id":"0xaf88a7e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460806032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7494460,"id":"0xaf88a9fbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460806032,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":427,"tts":7494460},
-{"pid":27443,"tid":27459,"ts":326460806093,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":335,"tdur":305,"tts":7494552},
-{"pid":27443,"tid":27459,"ts":326460806398,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.107","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7494826,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460806489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7494918,"id":"0xaf88a7e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460806489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7494918},
-{"pid":27443,"tid":27459,"ts":326460806520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7494948,"id":"0xaf88a7e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460806550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7494979,"id":"0xaf88a9f4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460806550,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":7494979},
-{"pid":27443,"tid":27459,"ts":326460806550,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":30,"tts":7494979},
-{"pid":27443,"tid":27459,"ts":326460806642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7495070,"id":"0xaf88a7e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460806642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":549,"tdur":550,"tts":7495070},
-{"pid":27443,"tid":27459,"ts":326460806672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7495101,"id":"0xaf88a7e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460806672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7495132,"id":"0xaf88a9f5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460806703,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":488,"tts":7495132},
-{"pid":27443,"tid":27459,"ts":326460806703,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":488,"tdur":457,"tts":7495132},
-{"pid":27443,"tid":27459,"ts":326460806764,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.107","frame":"0x78c60000","encodedDataLength":2580}},"tts":7495193,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460806764,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7495193},
-{"pid":27443,"tid":27459,"ts":326460806825,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":275,"tdur":274,"tts":7495254},
-{"pid":27443,"tid":27459,"ts":326460806825,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":244,"tdur":244,"tts":7495254},
-{"pid":27443,"tid":27459,"ts":326460807100,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7495528},
-{"pid":27443,"tid":27459,"ts":326460807130,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7495559,"id":"0xaf88aaa1f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460807222,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7495650,"id":"0xaf88a7e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460807222,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":30,"tts":7495681},
-{"pid":27443,"tid":27459,"ts":326460807252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7495681,"id":"0xaf88a7e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460807252,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7495711,"id":"0xaf88a9f6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460807283,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7495711},
-{"pid":27443,"tid":27459,"ts":326460807313,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7495742,"id":"0xaf88a7e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460807344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":428,"tts":7495772},
-{"pid":27443,"tid":27459,"ts":326460807344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7495772,"id":"0xaf88a7fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460807374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7495803,"id":"0xaf88a9f7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460807374,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":397,"tts":7495803},
-{"pid":27443,"tid":27459,"ts":326460807405,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":366,"tdur":367,"tts":7495833},
-{"pid":27443,"tid":27459,"ts":326460807497,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7495925,"id":"0xaf88ae4cf8eabd62"},
-{"pid":27443,"tid":27459,"ts":326460807588,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.107","didFail":false,"networkTime":326460.788421}},"tts":7496017,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460807619,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":30,"tdur":31,"tts":7496047},
-{"pid":27443,"tid":27459,"ts":326460807619,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":30,"tdur":31,"tts":7496047},
-{"pid":27443,"tid":27459,"ts":326460807680,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":7496108},
-{"pid":27443,"tid":27459,"ts":326460807680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7496139,"id":"0xaf88aaa2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460807802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7496230,"id":"0xaf88a7fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460807832,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":152,"tts":7496261},
-{"pid":27443,"tid":27459,"ts":326460807832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7496291,"id":"0xaf88a7fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460807863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7496291,"id":"0xaf88a9f0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460807863,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":122,"tdur":122,"tts":7496291},
-{"pid":27443,"tid":27459,"ts":326460807893,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":92,"tdur":91,"tts":7496322},
-{"pid":27443,"tid":27459,"ts":326460808015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7496444,"id":"0xaf88a7fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460808015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1008,"tdur":824,"tts":7496444},
-{"pid":27443,"tid":27459,"ts":326460808046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7496474,"id":"0xaf88a7fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460808046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7496474,"id":"0xaf88a9f9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460808076,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":916,"tdur":732,"tts":7496505},
-{"pid":27443,"tid":27459,"ts":326460808076,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":916,"tdur":732,"tts":7496505},
-{"pid":27443,"tid":27459,"ts":326460808107,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":186,"frame":"0x78c60000"}},"dur":885,"tdur":671,"tts":7496566},
-{"pid":27443,"tid":27459,"ts":326460808107,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":7496566},
-{"pid":27443,"tid":27459,"ts":326460808351,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":610,"tdur":611,"tts":7496596},
-{"pid":27443,"tid":27459,"ts":326460808443,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":518,"tdur":519,"tts":7496688},
-{"pid":27443,"tid":27459,"ts":326460808473,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7496719},
-{"pid":27443,"tid":27459,"ts":326460808717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7496963,"id":"0xaf88a99cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460808748,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":187,"frame":"0x78c60000","timeout":500,"singleShot":true}},"tts":7496993,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460808931,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7497207},
-{"pid":27443,"tid":27459,"ts":326460809053,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460808},"tts":7497298,"id":"0xaf88a684f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460809053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/renderer/chrome_render_view_observer.cc","src_func":"CapturePageInfoLater"},"dur":2594,"tdur":2564,"tts":7497298},
-{"pid":27443,"tid":27459,"ts":326460809114,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7497359},
-{"pid":27443,"tid":27459,"ts":326460809114,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7497390},
-{"pid":27443,"tid":27459,"ts":326460809145,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7497390},
-{"pid":27443,"tid":27459,"ts":326460809786,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":4,"counters":true},"tts":7498031},
-{"pid":27443,"tid":27459,"ts":326460809816,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":4},"tts":7498061},
-{"pid":27443,"tid":27459,"ts":326460809847,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1129,"tdur":1099,"tts":7498092},
-{"pid":27443,"tid":27459,"ts":326460809938,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":14,"totalObjects":315,"partialLayout":false,"frame":"0x78c60000"}},"tts":7498184},
-{"pid":27443,"tid":27459,"ts":326460809938,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":31,"tdur":0,"tts":7498214},
-{"pid":27443,"tid":27459,"ts":326460809999,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7498245},
-{"pid":27443,"tid":27459,"ts":326460810549,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":30,"tdur":31,"tts":7498763},
-{"pid":27443,"tid":27459,"ts":326460810579,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7498794},
-{"pid":27443,"tid":27459,"ts":326460810610,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":213,"tdur":214,"tts":7498824},
-{"pid":27443,"tid":27459,"ts":326460810854,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":30,"tdur":30,"tts":7499069},
-{"pid":27443,"tid":27459,"ts":326460810884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7499099,"id":"0xaf88a99ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460810915,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":7499130},
-{"pid":27443,"tid":27459,"ts":326460811342,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7499557,"id":"0xaf88aabcf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460811586,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":85,"line":61},"dur":31,"tdur":0,"tts":7499832},
-{"pid":27443,"tid":27459,"ts":326460811617,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7499832,"id":"0xaf88aabdf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460811647,"ph":"X","cat":"renderer","name":"ChromeRenderViewObserver::CapturePageInfo","args":{},"dur":0,"tdur":0,"tts":7499862},
-{"pid":27443,"tid":27459,"ts":326460811678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7499893,"id":"0xaf88a7fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460811708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7499923},
-{"pid":27443,"tid":27459,"ts":326460811708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7499923,"id":"0xaf88a7f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460811739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7499954,"id":"0xaf88a9f1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460811739,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":7499954},
-{"pid":27443,"tid":27459,"ts":326460811769,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":31,"tdur":31,"tts":7499984},
-{"pid":27443,"tid":27459,"ts":326460811861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7500076,"id":"0xaf88a7fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460811861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":732,"tdur":732,"tts":7500076},
-{"pid":27443,"tid":27459,"ts":326460811861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7500106,"id":"0xaf88a9f2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460811891,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":702,"tdur":702,"tts":7500106},
-{"pid":27443,"tid":27459,"ts":326460811891,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":672,"tdur":672,"tts":7500106},
-{"pid":27443,"tid":27459,"ts":326460811952,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.102","frame":"0x78c60000","encodedDataLength":32863}},"tts":7500167,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460811952,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":184,"tdur":183,"tts":7500167},
-{"pid":27443,"tid":27459,"ts":326460812166,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":366,"tdur":366,"tts":7500381},
-{"pid":27443,"tid":27459,"ts":326460812166,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":336,"tdur":336,"tts":7500381},
-{"pid":27443,"tid":27459,"ts":326460812532,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":7500747},
-{"pid":27443,"tid":27459,"ts":326460812563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7500778,"id":"0xaf88aabef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460812624,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7500839,"id":"0xaf88a7f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460812624,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":305,"tts":7500839},
-{"pid":27443,"tid":27459,"ts":326460812654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7500869,"id":"0xaf88a7f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460812654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7500869,"id":"0xaf88a9f3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460812685,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":213,"tts":7500900},
-{"pid":27443,"tid":27459,"ts":326460812685,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":214,"tdur":213,"tts":7500900},
-{"pid":27443,"tid":27459,"ts":326460812746,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.101","frame":"0x78c60000","encodedDataLength":27407}},"tts":7500961,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460808534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":691500,"id":"0xaf88a983f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460808534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":691500,"id":"0xaf88a7fff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460808595,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":336,"tdur":335,"tts":691561},
-{"pid":27443,"tid":27477,"ts":326460808595,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":335,"tts":691561},
-{"pid":27443,"tid":27477,"ts":326460808595,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":691561},
-{"pid":27443,"tid":27477,"ts":326460808687,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":691652},
-{"pid":27443,"tid":27477,"ts":326460808717,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":691683},
-{"pid":27443,"tid":27477,"ts":326460808717,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":691683},
-{"pid":27443,"tid":27477,"ts":326460808717,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":691683},
-{"pid":27443,"tid":27477,"ts":326460808748,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":691713,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460808778,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":691774},
-{"pid":27443,"tid":27477,"ts":326460808809,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":691774},
-{"pid":27443,"tid":27477,"ts":326460808870,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":691835,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460808900,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":166}},"tts":691866,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460808931,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":691896,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460808961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460802},"tts":691927,"id":"0xaf88a453f182217a"},
-{"pid":27443,"tid":27477,"ts":326460808992,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":691957},
-{"pid":27443,"tid":27477,"ts":326460808992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":691957,"id":"0xaf88a468f182217a"},
-{"pid":27443,"tid":27477,"ts":326460809023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":691988},
-{"pid":27443,"tid":27477,"ts":326460809023,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":691988},
-{"pid":27443,"tid":27477,"ts":326460809023,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":691988,"id":"0xaf88ae4cff2ed3d2"},{"pid":27443,"tid":27477,"ts":326460809053,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":0,"tts":692018},
-{"pid":27443,"tid":27477,"ts":326460809053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":692018,"id":"0xaf88a46bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460809084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692049,"id":"0xaf88a469f182217a"},
-{"pid":27443,"tid":27477,"ts":326460809084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":692049},
-{"pid":27443,"tid":27477,"ts":326460809084,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":31,"tts":692079},
-{"pid":27443,"tid":27477,"ts":326460809114,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":692079,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460809114,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":692079},
-{"pid":27443,"tid":27477,"ts":326460809145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":692110,"id":"0xaf88a464f182217a"},
-{"pid":27443,"tid":27477,"ts":326460809145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692110,"id":"0xaf88a46af182217a"},
-{"pid":27443,"tid":27477,"ts":326460809175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":692141},
-{"pid":27443,"tid":27477,"ts":326460809175,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":692141},
-{"pid":27443,"tid":27477,"ts":326460809175,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":692141,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460809175,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":692141},
-{"pid":27443,"tid":27477,"ts":326460809206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692171,"id":"0xaf88a46bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460809236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":692202},
-{"pid":27443,"tid":27477,"ts":326460809236,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":692202},
-{"pid":27443,"tid":27477,"ts":326460809236,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":692202},
-{"pid":27443,"tid":27477,"ts":326460809236,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":692202},
-{"pid":27443,"tid":27477,"ts":326460809267,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":692232},
-{"pid":27443,"tid":27477,"ts":326460809267,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":692232},
-{"pid":27443,"tid":27477,"ts":326460809328,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":692293},
-{"pid":27443,"tid":27477,"ts":326460809358,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":692324},
-{"pid":27443,"tid":27477,"ts":326460809389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692354,"id":"0xaf88a464f182217a"},
-{"pid":27443,"tid":27477,"ts":326460809389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":692354},
-{"pid":27443,"tid":27477,"ts":326460809389,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":692354},
-{"pid":27443,"tid":27477,"ts":326460809419,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":692385},
-{"pid":27443,"tid":27477,"ts":326460809419,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":692385},
-{"pid":27443,"tid":27477,"ts":326460809419,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":692385},
-{"pid":27443,"tid":27477,"ts":326460809419,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":692415},
-{"pid":27443,"tid":27477,"ts":326460809480,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":692446},
-{"pid":27443,"tid":27477,"ts":326460809511,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":692476},
-{"pid":27443,"tid":27477,"ts":326460810701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692537,"id":"0xaf88a465f182217a"},
-{"pid":27443,"tid":27477,"ts":326460810701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":692537},
-{"pid":27443,"tid":27477,"ts":326460810732,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460808720.0,"frame_time_us":326460802897.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":692598},
-{"pid":27443,"tid":27477,"ts":326460810762,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460808720.0,"frame_time_us":326460802897.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":692598},
-{"pid":27443,"tid":27477,"ts":326460810823,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460819563},"dur":31,"tdur":31,"tts":692659},
-{"pid":27443,"tid":27477,"ts":326460810854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":692690,"id":"0xaf88a466f182217a"},
-{"pid":27443,"tid":27477,"ts":326460819979,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692751,"id":"0xaf88a467f182217a"},
-{"pid":27443,"tid":27477,"ts":326460819979,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":692751},
-{"pid":27443,"tid":27477,"ts":326460820040,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":692781},
-{"pid":27443,"tid":27477,"ts":326460820071,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":692812},
-{"pid":27443,"tid":27477,"ts":326460820101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":692843,"id":"0xaf88a990f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460820132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460819},"tts":692873,"id":"0xaf88a466f182217a"},
-{"pid":27443,"tid":27459,"ts":326460812746,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7500961},
-{"pid":27443,"tid":27459,"ts":326460812807,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7501022},
-{"pid":27443,"tid":27459,"ts":326460812838,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":0,"tdur":0,"tts":7501052},
-{"pid":27443,"tid":27459,"ts":326460812868,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":31,"tdur":30,"tts":7501083},
-{"pid":27443,"tid":27459,"ts":326460812899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7501113,"id":"0xaf88aabff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460812960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7501175,"id":"0xaf88a7f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460812960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":335,"tdur":335,"tts":7501175},
-{"pid":27443,"tid":27459,"ts":326460812990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7501205,"id":"0xaf88a7faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460812990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7501205,"id":"0xaf88a98cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460812990,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":7501205},
-{"pid":27443,"tid":27459,"ts":326460813021,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":244,"tdur":244,"tts":7501236},
-{"pid":27443,"tid":27459,"ts":326460813051,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.104","frame":"0x78c60000","encodedDataLength":0}},"tts":7501266,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460813051,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":92,"tdur":92,"tts":7501266},
-{"pid":27443,"tid":27459,"ts":326460813143,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":91,"tts":7501358},
-{"pid":27443,"tid":27459,"ts":326460813143,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":31,"tts":7501388},
-{"pid":27443,"tid":27459,"ts":326460813234,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":7501449},
-{"pid":27443,"tid":27459,"ts":326460813265,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7501480,"id":"0xaf88aab8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460813326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7501541,"id":"0xaf88a7faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460813326,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7501541},
-{"pid":27443,"tid":27459,"ts":326460813356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7501571,"id":"0xaf88a7fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460813356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7501571,"id":"0xaf88a98df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460813356,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":7501571},
-{"pid":27443,"tid":27459,"ts":326460813417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7501632,"id":"0xaf88a7fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460813417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":519,"tts":7501632},
-{"pid":27443,"tid":27459,"ts":326460813417,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7501663,"id":"0xaf88a7f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460813448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7501663,"id":"0xaf88a98ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460813448,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":458,"tts":7501663},
-{"pid":27443,"tid":27459,"ts":326460813479,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":457,"tdur":428,"tts":7501693},
-{"pid":27443,"tid":27459,"ts":326460813601,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7501815,"id":"0xaf88ae4cfda87fe2"},
-{"pid":27443,"tid":27459,"ts":326460813723,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.104","didFail":false,"networkTime":326460.792938}},"tts":7501907,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460813753,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7501938},
-{"pid":27443,"tid":27459,"ts":326460813753,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7501938},
-{"pid":27443,"tid":27459,"ts":326460813845,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7502029,"id":"0xaf88a999f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460813875,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":31,"tdur":30,"tts":7502060},
-{"pid":27443,"tid":27459,"ts":326460813875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7502060,"id":"0xaf88aab9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460813997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7502182,"id":"0xaf88a7f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460813997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":549,"tts":7502182},
-{"pid":27443,"tid":27459,"ts":326460814028,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7502212,"id":"0xaf88a7f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460814028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7502212,"id":"0xaf88a98ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460814028,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":519,"tdur":519,"tts":7502212},
-{"pid":27443,"tid":27459,"ts":326460814058,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":458,"tdur":458,"tts":7502243},
-{"pid":27443,"tid":27459,"ts":326460814058,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7502273},
-{"pid":27443,"tid":27459,"ts":326460814119,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"error"}},"dur":367,"tdur":336,"tts":7502334},
-{"pid":27443,"tid":27459,"ts":326460814272,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":42,"frame":"0x78c60000"}},"dur":183,"tdur":153,"tts":7502487},
-{"pid":27443,"tid":27459,"ts":326460814303,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7502487},
-{"pid":27443,"tid":27459,"ts":326460814425,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7502609},
-{"pid":27443,"tid":27459,"ts":326460814486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7502701,"id":"0xaf88a99af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460814577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7502762,"id":"0xaf88a7f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460814608,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":397,"tts":7502792},
-{"pid":27443,"tid":27459,"ts":326460814608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7502792,"id":"0xaf88a7f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460814638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7502823,"id":"0xaf88a988f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460814638,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":367,"tdur":366,"tts":7502823},
-{"pid":27443,"tid":27459,"ts":326460814638,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":367,"tdur":366,"tts":7502823},
-{"pid":27443,"tid":27459,"ts":326460814669,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.108","frame":"0x78c60000","encodedDataLength":27902}},"tts":7502884,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460814699,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7502884},
-{"pid":27443,"tid":27459,"ts":326460814821,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":92,"tts":7503036},
-{"pid":27443,"tid":27459,"ts":326460814852,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":91,"tdur":92,"tts":7503036},
-{"pid":27443,"tid":27459,"ts":326460814974,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":7503158},
-{"pid":27443,"tid":27459,"ts":326460814974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7503158,"id":"0xaf88aabaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460815035,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7503219,"id":"0xaf88a7f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460815035,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7503219},
-{"pid":27443,"tid":27459,"ts":326460815066,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7503250,"id":"0xaf88a7f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460815066,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7503250,"id":"0xaf88a989f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460815096,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7503280},
-{"pid":27443,"tid":27459,"ts":326460815127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7503311,"id":"0xaf88a7f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460815127,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":396,"tdur":397,"tts":7503311},
-{"pid":27443,"tid":27459,"ts":326460815157,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7503341,"id":"0xaf88a7f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460815157,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7503341,"id":"0xaf88a98af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460815188,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":335,"tdur":336,"tts":7503372},
-{"pid":27443,"tid":27459,"ts":326460815188,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":335,"tdur":336,"tts":7503372},
-{"pid":27443,"tid":27459,"ts":326460815310,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7503494,"id":"0xaf88ae4cf8eab9e2"},
-{"pid":27443,"tid":27459,"ts":326460815371,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.108","didFail":false,"networkTime":326460.798249}},"tts":7503555,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460815401,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":31,"tdur":30,"tts":7503586},
-{"pid":27443,"tid":27459,"ts":326460815401,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":30,"tts":7503586},
-{"pid":27443,"tid":27459,"ts":326460815462,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":31,"tdur":30,"tts":7503647},
-{"pid":27443,"tid":27459,"ts":326460815462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7503647,"id":"0xaf88aabbf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460815554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7503738,"id":"0xaf88a7f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460815554,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":428,"tts":7503738},
-{"pid":27443,"tid":27459,"ts":326460815584,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7503769,"id":"0xaf88a7f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460815584,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7503769,"id":"0xaf88a98bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460815615,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":7503799},
-{"pid":27443,"tid":27459,"ts":326460815615,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":336,"tdur":336,"tts":7503799},
-{"pid":27443,"tid":27459,"ts":326460815645,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.101","frame":"0x78c60000","encodedDataLength":0}},"tts":7503830,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460815676,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7503860},
-{"pid":27443,"tid":27459,"ts":326460815798,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":122,"tts":7503982},
-{"pid":27443,"tid":27459,"ts":326460815798,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":92,"tts":7503982},
-{"pid":27443,"tid":27459,"ts":326460815920,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":7504104},
-{"pid":27443,"tid":27459,"ts":326460815920,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7504135,"id":"0xaf88aab4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460815981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7504166,"id":"0xaf88a7f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460816012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":31,"tts":7504196},
-{"pid":27443,"tid":27459,"ts":326460816012,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7504196,"id":"0xaf88a7f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460816042,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7504227,"id":"0xaf88a984f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460816042,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7504227},
-{"pid":27443,"tid":27459,"ts":326460816073,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7504257,"id":"0xaf88a7f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460816103,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":366,"tts":7504288},
-{"pid":27443,"tid":27459,"ts":326460816103,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7504288,"id":"0xaf88a7f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460816103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7504318,"id":"0xaf88a985f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460816134,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":7504318},
-{"pid":27443,"tid":27459,"ts":326460816134,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":305,"tdur":305,"tts":7504318},
-{"pid":27443,"tid":27459,"ts":326460816256,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7504440,"id":"0xaf88ae4cfda78862"},
-{"pid":27443,"tid":27459,"ts":326460816317,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.101","didFail":false,"networkTime":326460.799989}},"tts":7504501,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460816317,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":30,"tts":7504532},
-{"pid":27443,"tid":27459,"ts":326460816347,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":30,"tts":7504532},
-{"pid":27443,"tid":27459,"ts":326460816408,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":0,"tdur":0,"tts":7504593},
-{"pid":27443,"tid":27459,"ts":326460816408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7504593,"id":"0xaf88aab5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460816500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7504684,"id":"0xaf88a7f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460816500,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7142,"tdur":6379,"tts":7504684},
-{"pid":27443,"tid":27459,"ts":326460816500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7504684,"id":"0xaf88a78cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460816531,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7504715,"id":"0xaf88a986f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460816531,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":7080,"tdur":6318,"tts":7504715},
-{"pid":27443,"tid":27459,"ts":326460816531,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":140},"tts":7504715},
-{"pid":27443,"tid":27459,"ts":326460816561,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":7504745},
-{"pid":27443,"tid":27459,"ts":326460816592,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":7504776},
-{"pid":27443,"tid":27459,"ts":326460816622,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7504806},
-{"pid":27443,"tid":27459,"ts":326460816653,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4913,"tdur":4914,"tts":7504837},
-{"pid":27443,"tid":27459,"ts":326460816683,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4883,"tdur":4883,"tts":7504868},
-{"pid":27443,"tid":27459,"ts":326460816683,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3449,"tdur":3448,"tts":7504868},
-{"pid":27443,"tid":27459,"ts":326460816714,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1007,"tdur":1007,"tts":7504898},
-{"pid":27443,"tid":27459,"ts":326460817721,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":152,"tts":7505936},
-{"pid":27443,"tid":27459,"ts":326460817934,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":214,"tdur":213,"tts":7506119},
-{"pid":27443,"tid":27459,"ts":326460818148,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":7506363},
-{"pid":27443,"tid":27459,"ts":326460818179,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1770,"tdur":1770,"tts":7506363},
-{"pid":27443,"tid":27459,"ts":326460819949,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":152,"tdur":153,"tts":7508133},
-{"pid":27443,"tid":27459,"ts":326460820132,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1099,"tdur":1069,"tts":7508316},
-{"pid":27443,"tid":27459,"ts":326460820132,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1068,"tdur":1038,"tts":7508347},
-{"pid":27443,"tid":27459,"ts":326460820162,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":245,"tdur":244,"tts":7508347},
-{"pid":27443,"tid":27459,"ts":326460820407,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":763,"tdur":763,"tts":7508591},
-{"pid":27443,"tid":27459,"ts":326460820468,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":549,"tdur":549,"tts":7508652},
-{"pid":27443,"tid":27466,"ts":326460819674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":355867,"id":"0xaf88a99bf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460819705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355898,"id":"0xaf88a78df3d027d2"},
-{"pid":27443,"tid":27466,"ts":326460819735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":355928,"id":"0xaf88a994f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460819766,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":355959},
-{"pid":27443,"tid":27466,"ts":326460819766,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":355959,"id":"0xba45e702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460819796,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":355989,"id":"0xaf88a467f182217a"},
-{"pid":27443,"tid":27466,"ts":326460819827,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":30,"tdur":30,"tts":356020},
-{"pid":27443,"tid":27466,"ts":326460819827,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356020,"id":"0xba45eb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460819857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":356050,"id":"0xaf88a995f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460819857,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":61,"tdur":30,"tts":356081},
-{"pid":27443,"tid":27466,"ts":326460819888,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356081,"id":"0xba45ec02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460819888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":356081,"id":"0xaf88a996f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460819918,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":356111,"id":"0xaf88a997f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326460819949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356142,"id":"0xaf88aabef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460819949,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":92,"tts":356172},
-{"pid":27443,"tid":27466,"ts":326460819979,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356172,"id":"0xccc53f02"},
-{"pid":27443,"tid":27466,"ts":326460820071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356264,"id":"0xaf88aabff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820101,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":356294},
-{"pid":27443,"tid":27466,"ts":326460820101,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356294,"id":"0xccc54002"},
-{"pid":27443,"tid":27466,"ts":326460820132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356325,"id":"0xaf88aab8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":356355},
-{"pid":27443,"tid":27466,"ts":326460820162,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356355,"id":"0xccc54102"},
-{"pid":27443,"tid":27466,"ts":326460820193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356386,"id":"0xaf88aab9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":356386},
-{"pid":27443,"tid":27466,"ts":326460820224,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356416,"id":"0xccc54202"},
-{"pid":27443,"tid":27466,"ts":326460820254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356447,"id":"0xaf88aabaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":356447},
-{"pid":27443,"tid":27466,"ts":326460820285,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356477,"id":"0xccc54302"},
-{"pid":27443,"tid":27466,"ts":326460820315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356508,"id":"0xaf88aabbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":356508},
-{"pid":27443,"tid":27466,"ts":326460820315,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356508,"id":"0xccc54402"},
-{"pid":27443,"tid":27466,"ts":326460820376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356569,"id":"0xaf88aab4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":356569},
-{"pid":27443,"tid":27466,"ts":326460820376,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356569,"id":"0xccc54502"},
-{"pid":27443,"tid":27466,"ts":326460820437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356630,"id":"0xaf88aab5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460820437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":356630},
-{"pid":27443,"tid":27466,"ts":326460820437,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356630,"id":"0xccc54602"},
-{"pid":27443,"tid":27466,"ts":326460822543,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":356661},
-{"pid":27443,"tid":27466,"ts":326460822574,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":356722},
-{"pid":27443,"tid":27466,"ts":326460822604,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356722,"id":"0xba45ed02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460822635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":356752,"id":"0xaf88a460f182217a"},
-{"pid":27443,"tid":27466,"ts":326460824771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":356844,"id":"0xaf88aab6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460824802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":356874},
-{"pid":27443,"tid":27466,"ts":326460824802,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":356874,"id":"0xccc54826"},
-{"pid":27443,"tid":27466,"ts":326460825565,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":356996},
-{"pid":27443,"tid":27466,"ts":326460825595,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":357027},
-{"pid":27443,"tid":27466,"ts":326460825595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":357057,"id":"0xba45ee0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460830631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357179,"id":"0xaf88aab7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460830661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":123,"tdur":122,"tts":357210},
-{"pid":27443,"tid":27466,"ts":326460830692,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":357240,"id":"0xccc54902"},
-{"pid":27443,"tid":27466,"ts":326460843053,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":183,"tts":357424},
-{"pid":27443,"tid":27466,"ts":326460843114,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":152,"tdur":153,"tts":357454},
-{"pid":27443,"tid":27466,"ts":326460843144,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":357485,"id":"0xba45ef02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460843205,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":357546,"id":"0xaf88a47df182217a"},
-{"pid":27443,"tid":27466,"ts":326460845708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357698,"id":"0xaf88aab0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460845708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":357698},
-{"pid":27443,"tid":27466,"ts":326460845708,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":357698,"id":"0xccc54a02"},
-{"pid":27443,"tid":27466,"ts":326460846074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":357851,"id":"0xaf88aab1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460846074,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":357851},
-{"pid":27443,"tid":27466,"ts":326460846074,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":357881,"id":"0xccc54b02"},
-{"pid":27443,"tid":27466,"ts":326460847295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358003,"id":"0xaf88aab2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460847295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":275,"tdur":123,"tts":358003},
-{"pid":27443,"tid":27466,"ts":326460847295,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358003,"id":"0xccc54c02"},
-{"pid":27443,"tid":27466,"ts":326460850256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358217,"id":"0xaf88aab3f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460820132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":692873},
-{"pid":27443,"tid":27477,"ts":326460820162,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":692904},
-{"pid":27443,"tid":27477,"ts":326460822757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":692965,"id":"0xaf88a460f182217a"},
-{"pid":27443,"tid":27477,"ts":326460822757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":152,"tts":692965},
-{"pid":27443,"tid":27477,"ts":326460822787,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460825401.0,"frame_time_us":326460819578.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":692995},
-{"pid":27443,"tid":27477,"ts":326460822818,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460825401.0,"frame_time_us":326460819578.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":61,"tts":693026},
-{"pid":27443,"tid":27477,"ts":326460822848,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460836244},"dur":61,"tdur":31,"tts":693056},
-{"pid":27443,"tid":27477,"ts":326460822909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":693087,"id":"0xaf88a462f182217a"},
-{"pid":27443,"tid":27477,"ts":326460822940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":693117,"id":"0xaf88a461f182217a"},
-{"pid":27443,"tid":27477,"ts":326460822940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1678,"tdur":1679,"tts":693117},
-{"pid":27443,"tid":27477,"ts":326460822970,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1648,"tdur":1648,"tts":693148},
-{"pid":27443,"tid":27477,"ts":326460822970,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":693148},
-{"pid":27443,"tid":27477,"ts":326460822970,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1648,"tdur":1648,"tts":693148},
-{"pid":27443,"tid":27477,"ts":326460822970,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1618,"tdur":1587,"tts":693178},
-{"pid":27443,"tid":27477,"ts":326460823001,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":693178},
-{"pid":27443,"tid":27477,"ts":326460823001,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":693178},
-{"pid":27443,"tid":27477,"ts":326460823001,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":693209,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460823031,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":693209},
-{"pid":27443,"tid":27477,"ts":326460823031,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":275,"tdur":274,"tts":693209},
-{"pid":27443,"tid":27477,"ts":326460823306,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":693483},
-{"pid":27443,"tid":27477,"ts":326460823337,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":152,"tdur":153,"tts":693514},
-{"pid":27443,"tid":27477,"ts":326460823550,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1038,"tdur":1037,"tts":693728},
-{"pid":27443,"tid":27477,"ts":326460823581,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":140},"dur":213,"tdur":214,"tts":693758},
-{"pid":27443,"tid":27477,"ts":326460823794,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":140},"dur":61,"tdur":31,"tts":694002},
-{"pid":27443,"tid":27477,"ts":326460823855,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":140},"tts":694033},
-{"pid":27443,"tid":27477,"ts":326460824039,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":694216},
-{"pid":27443,"tid":27477,"ts":326460824069,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":20},"tts":694246},
-{"pid":27443,"tid":27477,"ts":326460824069,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":519,"tdur":519,"tts":694246},
-{"pid":27443,"tid":27477,"ts":326460824069,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":694246},
-{"pid":27443,"tid":27477,"ts":326460824222,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":694399},
-{"pid":27443,"tid":27477,"ts":326460824283,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":694460},
-{"pid":27443,"tid":27477,"ts":326460824283,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":8},"dur":244,"tdur":244,"tts":694460},
-{"pid":27443,"tid":27477,"ts":326460824374,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":694552},
-{"pid":27443,"tid":27477,"ts":326460824374,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":694552,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460824435,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":694613},
-{"pid":27443,"tid":27477,"ts":326460824466,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":13,"num_edges":30},"dur":30,"tdur":31,"tts":694643},
-{"pid":27443,"tid":27477,"ts":326460824527,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5308416,"bytes_used_for_staging_resources":10616832,"pending_copy_count":16,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":694704,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460824557,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":176}},"tts":694735,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460824557,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3735552},"tts":694735,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460824649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":694826,"id":"0xaf88a463f182217a"},
-{"pid":27443,"tid":27477,"ts":326460824649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":694826},
-{"pid":27443,"tid":27477,"ts":326460824649,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":61,"tts":694826},
-{"pid":27443,"tid":27477,"ts":326460824679,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5308416,"bytes_used_for_staging_resources":10616832,"pending_copy_count":16,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":694857,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460824679,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":694857},
-{"pid":27443,"tid":27477,"ts":326460824710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":694887,"id":"0xaf88a47cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460824741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":694918,"id":"0xaf88a47cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460824741,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":122,"tts":694918},
-{"pid":27443,"tid":27477,"ts":326460824771,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":92,"tdur":92,"tts":694948},
-{"pid":27443,"tid":27477,"ts":326460824771,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":694948},
-{"pid":27443,"tid":27477,"ts":326460824771,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":694948},
-{"pid":27443,"tid":27477,"ts":326460824802,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":30,"tdur":30,"tts":694979},
-{"pid":27443,"tid":27477,"ts":326460824802,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":694979},
-{"pid":27443,"tid":27477,"ts":326460824832,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":695040},
-{"pid":27443,"tid":27477,"ts":326460824863,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":695040},
-{"pid":27443,"tid":27477,"ts":326460836430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460836},"tts":695132,"id":"0xaf88a462f182217a"},
-{"pid":27443,"tid":27477,"ts":326460836460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":695162},
-{"pid":27443,"tid":27477,"ts":326460836491,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":695193},
-{"pid":27443,"tid":27477,"ts":326460843327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":695284,"id":"0xaf88a47df182217a"},
-{"pid":27443,"tid":27477,"ts":326460843327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":695284},
-{"pid":27443,"tid":27477,"ts":326460843358,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460842083.0,"frame_time_us":326460836260.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":695315},
-{"pid":27443,"tid":27477,"ts":326460843388,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460842083.0,"frame_time_us":326460836260.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":123,"tdur":122,"tts":695345},
-{"pid":27443,"tid":27477,"ts":326460843450,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460852926},"dur":61,"tdur":61,"tts":695406},
-{"pid":27443,"tid":27477,"ts":326460843480,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":695437,"id":"0xaf88a47ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460848394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":695589,"id":"0xaf88a47ff182217a"},
-{"pid":27443,"tid":27459,"ts":326460821231,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":7509415},
-{"pid":27443,"tid":27459,"ts":326460821261,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":305,"tdur":305,"tts":7509446},
-{"pid":27443,"tid":27459,"ts":326460821597,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":140},"dur":1251,"tdur":1160,"tts":7509781},
-{"pid":27443,"tid":27459,"ts":326460821597,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1251,"tdur":1160,"tts":7509781},
-{"pid":27443,"tid":27459,"ts":326460821841,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":140},"dur":427,"tdur":428,"tts":7510025},
-{"pid":27443,"tid":27459,"ts":326460821963,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-236,4,20,4,20,263,-236,263],"nodeId":68,"layerId":113}},"dur":183,"tdur":183,"tts":7510148},
-{"pid":27443,"tid":27459,"ts":326460822055,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":61,"tts":7510239},
-{"pid":27443,"tid":27459,"ts":326460822085,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":7510270},
-{"pid":27443,"tid":27459,"ts":326460822146,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":7510331},
-{"pid":27443,"tid":27459,"ts":326460822268,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":140},"dur":550,"tdur":458,"tts":7510453},
-{"pid":27443,"tid":27459,"ts":326460822360,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-236,260,20,260,20,519,-236,519],"nodeId":69,"layerId":114}},"dur":244,"tdur":244,"tts":7510544},
-{"pid":27443,"tid":27459,"ts":326460822513,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":31,"tts":7510727},
-{"pid":27443,"tid":27459,"ts":326460822543,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":7510727},
-{"pid":27443,"tid":27459,"ts":326460822635,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":91,"tdur":0,"tts":7510819},
-{"pid":27443,"tid":27459,"ts":326460822848,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":733,"tdur":61,"tts":7510941},
-{"pid":27443,"tid":27459,"ts":326460822848,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7510972,"id":"0xaf88a461f182217a"},
-{"pid":27443,"tid":27459,"ts":326460823611,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7511033},
-{"pid":27443,"tid":27459,"ts":326460823672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460818},"tts":7511094,"id":"0xaf88a7c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460823672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":7511094},
-{"pid":27443,"tid":27459,"ts":326460823703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7511124,"id":"0xaf88a78ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460823764,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7511185,"id":"0xaf88a78cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460823764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6043,"tdur":5860,"tts":7511185},
-{"pid":27443,"tid":27459,"ts":326460823794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7511216,"id":"0xaf88a78ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460823794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7511216,"id":"0xaf88a987f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460823794,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":6013,"tdur":5829,"tts":7511216},
-{"pid":27443,"tid":27459,"ts":326460823825,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":5951,"tdur":5769,"tts":7511246},
-{"pid":27443,"tid":27459,"ts":326460823855,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7511277},
-{"pid":27443,"tid":27459,"ts":326460823886,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":855,"tdur":855,"tts":7511307},
-{"pid":27443,"tid":27459,"ts":326460824069,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":641,"tdur":641,"tts":7511490},
-{"pid":27443,"tid":27459,"ts":326460824100,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7511521},
-{"pid":27443,"tid":27459,"ts":326460824252,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":165,"frame":"0x78c60000"}},"tts":7511674,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460824466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7511887,"id":"0xaf88a991f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460824496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7511918,"id":"0xaf88a788f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460824496,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":188,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7511948,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460824588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7512009,"id":"0xaf88a992f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460824618,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":189,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7512040,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460824649,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7512070},
-{"pid":27443,"tid":27459,"ts":326460824741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7512192,"id":"0xaf88a993f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460824771,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7512192},
-{"pid":27443,"tid":27459,"ts":326460824802,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":488,"tdur":488,"tts":7512223},
-{"pid":27443,"tid":27459,"ts":326460824893,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":366,"tdur":367,"tts":7512314},
-{"pid":27443,"tid":27459,"ts":326460824924,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7512345},
-{"pid":27443,"tid":27459,"ts":326460825015,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":168,"frame":"0x78c60000"}},"tts":7512437,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460825168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7512589,"id":"0xaf88a9acf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460825198,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":190,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7512650,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460825229,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7512681},
-{"pid":27443,"tid":27459,"ts":326460825320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7512742,"id":"0xaf88a9adf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460825351,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7512772},
-{"pid":27443,"tid":27459,"ts":326460825381,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":489,"tdur":488,"tts":7512803},
-{"pid":27443,"tid":27459,"ts":326460825473,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":366,"tdur":336,"tts":7512894},
-{"pid":27443,"tid":27459,"ts":326460825473,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7512894},
-{"pid":27443,"tid":27459,"ts":326460825565,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":167,"frame":"0x78c60000"}},"tts":7512986,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460825748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7513169,"id":"0xaf88a9aef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460825778,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":191,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7513200,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460825809,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7513230},
-{"pid":27443,"tid":27459,"ts":326460825900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7513322,"id":"0xaf88a9aff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460825931,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7513352},
-{"pid":27443,"tid":27459,"ts":326460825961,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":946,"tdur":763,"tts":7513383},
-{"pid":27443,"tid":27459,"ts":326460826083,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":763,"tdur":550,"tts":7513535},
-{"pid":27443,"tid":27459,"ts":326460826083,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":245,"tdur":0,"tts":7513535},
-{"pid":27443,"tid":27459,"ts":326460826328,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7513566},
-{"pid":27443,"tid":27459,"ts":326460826419,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":169,"frame":"0x78c60000"}},"tts":7513657,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460826633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7513871,"id":"0xaf88a9a8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460826694,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":192,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7513963,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460825748,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":23633920,"free":5726208},"tts":327392},
-{"pid":27443,"tid":27469,"ts":326460825778,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":19747,"tdur":18526,"tts":327422},
-{"pid":27443,"tid":27469,"ts":326460825809,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd140","decodeCount":0},"dur":19685,"tdur":18495,"tts":327453},
-{"pid":27443,"tid":27471,"ts":326460825229,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":16756,"tdur":15688,"tts":383030},
-{"pid":27443,"tid":27469,"ts":326460825809,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":19685,"tdur":18495,"tts":327453},
-{"pid":27443,"tid":27471,"ts":326460825809,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":16176,"tdur":15626,"tts":383061},
-{"pid":27443,"tid":27469,"ts":326460825809,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":19685,"tdur":18464,"tts":327453},
-{"pid":27443,"tid":27471,"ts":326460825809,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":383091},
-{"pid":27443,"tid":27471,"ts":326460825839,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":383091},
-{"pid":27443,"tid":27471,"ts":326460825839,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24682496,"free":4677632},"tts":383122},
-{"pid":27443,"tid":27471,"ts":326460825870,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":16084,"tdur":15535,"tts":383152},
-{"pid":27443,"tid":27471,"ts":326460825900,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd1a0","decodeCount":0},"dur":16023,"tdur":15505,"tts":383152},
-{"pid":27443,"tid":27471,"ts":326460825931,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":15809,"tdur":15413,"tts":383183},
-{"pid":27443,"tid":27471,"ts":326460825931,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":15809,"tdur":15413,"tts":383183},
-{"pid":27443,"tid":27471,"ts":326460841985,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":4456,"tdur":1007,"tts":398718},
-{"pid":27443,"tid":27471,"ts":326460842015,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":4426,"tdur":977,"tts":398748},
-{"pid":27443,"tid":27471,"ts":326460845220,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e401a20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":398809},
-{"pid":27443,"tid":27471,"ts":326460845220,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":61,"tts":398840},
-{"pid":27443,"tid":27471,"ts":326460845311,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":398901},
-{"pid":27443,"tid":27471,"ts":326460845342,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e401a20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":398931},
-{"pid":27443,"tid":27471,"ts":326460845372,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":398962,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460846410,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":399694},
-{"pid":27443,"tid":27471,"ts":326460846441,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":885,"tdur":885,"tts":399725},
-{"pid":27443,"tid":27471,"ts":326460846441,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":399725},
-{"pid":27443,"tid":27469,"ts":326460846532,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1099,"tdur":885,"tts":346070},
-{"pid":27443,"tid":27469,"ts":326460846532,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1099,"tdur":885,"tts":346070},
-{"pid":27443,"tid":27471,"ts":326460846532,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e422438"},"tileResolution":"HIGH_RESOLUTION"}},"tts":399816},
-{"pid":27443,"tid":27471,"ts":326460846532,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":399847},
-{"pid":27443,"tid":27469,"ts":326460846563,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e24eca0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":346101},
-{"pid":27443,"tid":27469,"ts":326460846563,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":346101},
-{"pid":27443,"tid":27471,"ts":326460846593,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":399877},
-{"pid":27443,"tid":27471,"ts":326460846624,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e422438"},"tileResolution":"HIGH_RESOLUTION"}},"tts":399908},
-{"pid":27443,"tid":27469,"ts":326460846624,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":346162},
-{"pid":27443,"tid":27469,"ts":326460846654,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e24eca0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":346192},
-{"pid":27443,"tid":27471,"ts":326460846654,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":399938,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460846654,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":346223,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460847295,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":400579},
-{"pid":27443,"tid":27471,"ts":326460847326,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":976,"tdur":824,"tts":400610},
-{"pid":27443,"tid":27471,"ts":326460847326,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":976,"tdur":793,"tts":400610},
-{"pid":27443,"tid":27471,"ts":326460847539,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7991a758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":400671},
-{"pid":27443,"tid":27471,"ts":326460847539,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":92,"tdur":92,"tts":400671},
-{"pid":27443,"tid":27469,"ts":326460847631,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":346955},
-{"pid":27443,"tid":27471,"ts":326460847631,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":400763},
-{"pid":27443,"tid":27469,"ts":326460847631,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1037,"tdur":1038,"tts":346955},
-{"pid":27443,"tid":27471,"ts":326460847631,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7991a758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":400793},
-{"pid":27443,"tid":27469,"ts":326460847661,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1007,"tdur":1007,"tts":346986},
-{"pid":27443,"tid":27469,"ts":326460847661,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e422ca0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":346986},
-{"pid":27443,"tid":27471,"ts":326460847661,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":400824,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460847692,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":347016},
-{"pid":27443,"tid":27469,"ts":326460847722,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":347047},
-{"pid":27443,"tid":27469,"ts":326460847753,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e422ca0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":347077},
-{"pid":27443,"tid":27469,"ts":326460847783,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":347108,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460848272,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":401403},
-{"pid":27443,"tid":27471,"ts":326460848302,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":401434},
-{"pid":27443,"tid":27471,"ts":326460848302,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":401434},
-{"pid":27443,"tid":27471,"ts":326460848333,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":401464,"id":"0xaf88a47ff182217a"},
-{"pid":27443,"tid":27471,"ts":326460848363,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1191,"tdur":1007,"tts":401495},
-{"pid":27443,"tid":27471,"ts":326460848394,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1160,"tdur":976,"tts":401526},
-{"pid":27443,"tid":27471,"ts":326460848394,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e24b230"},"tileResolution":"HIGH_RESOLUTION"}},"tts":401526},
-{"pid":27443,"tid":27471,"ts":326460848424,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":401556},
-{"pid":27443,"tid":27471,"ts":326460848455,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":401587},
-{"pid":27443,"tid":27471,"ts":326460848485,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e24b230"},"tileResolution":"HIGH_RESOLUTION"}},"tts":401617},
-{"pid":27443,"tid":27471,"ts":326460848516,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":401648,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460848638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":347962,"id":"0xaf88a479f182217a"},
-{"pid":27443,"tid":27459,"ts":326460826694,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7513963},
-{"pid":27443,"tid":27459,"ts":326460826785,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7514054},
-{"pid":27443,"tid":27459,"ts":326460826999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7514237,"id":"0xaf88a9a9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460827060,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7514298},
-{"pid":27443,"tid":27459,"ts":326460827152,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":946,"tdur":946,"tts":7514390},
-{"pid":27443,"tid":27459,"ts":326460827365,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":672,"tdur":641,"tts":7514634},
-{"pid":27443,"tid":27459,"ts":326460827426,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7514665},
-{"pid":27443,"tid":27459,"ts":326460827548,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":166,"frame":"0x78c60000"}},"tts":7514817,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460827884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7515122,"id":"0xaf88a9aaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460827945,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":193,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7515214,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460828006,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7515244},
-{"pid":27443,"tid":27459,"ts":326460828098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7515336,"id":"0xaf88a9abf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460828128,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7515397},
-{"pid":27443,"tid":27459,"ts":326460828189,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":702,"tdur":702,"tts":7515428},
-{"pid":27443,"tid":27459,"ts":326460828311,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":519,"tdur":518,"tts":7515550},
-{"pid":27443,"tid":27459,"ts":326460828342,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7515580},
-{"pid":27443,"tid":27459,"ts":326460828464,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":170,"frame":"0x78c60000"}},"tts":7515733,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460828708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7515946,"id":"0xaf88a9a4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460828769,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":194,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7516007,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460828800,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7516038},
-{"pid":27443,"tid":27459,"ts":326460828891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7516160,"id":"0xaf88a9a5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460828952,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7516191},
-{"pid":27443,"tid":27459,"ts":326460828983,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":763,"tdur":763,"tts":7516221},
-{"pid":27443,"tid":27459,"ts":326460829135,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":550,"tdur":549,"tts":7516374},
-{"pid":27443,"tid":27459,"ts":326460829166,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7516404},
-{"pid":27443,"tid":27459,"ts":326460829288,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":163,"frame":"0x78c60000"}},"tts":7516526,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460829563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7516801,"id":"0xaf88a9a6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460829624,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":195,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7516862,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460829654,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7516893},
-{"pid":27443,"tid":27459,"ts":326460829746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7517015,"id":"0xaf88a9a7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460829868,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7517106,"id":"0xaf88a78df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460829898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":763,"tdur":763,"tts":7517137},
-{"pid":27443,"tid":27459,"ts":326460829929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7517167,"id":"0xaf88a980f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460829929,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":702,"tdur":702,"tts":7517167},
-{"pid":27443,"tid":27459,"ts":326460829960,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":671,"tdur":671,"tts":7517198},
-{"pid":27443,"tid":27459,"ts":326460830082,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.102","frame":"0x78c60000","encodedDataLength":42413}},"tts":7517320,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460830112,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":214,"tdur":214,"tts":7517350},
-{"pid":27443,"tid":27459,"ts":326460830326,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":91,"tts":7517595},
-{"pid":27443,"tid":27459,"ts":326460830356,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":91,"tts":7517595},
-{"pid":27443,"tid":27459,"ts":326460830478,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":122,"tdur":122,"tts":7517717},
-{"pid":27443,"tid":27459,"ts":326460830509,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7517778,"id":"0xaf88aab7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460830753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7517991,"id":"0xaf88a78ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460830784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7518022},
-{"pid":27443,"tid":27459,"ts":326460830814,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7518052,"id":"0xaf88a789f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460830845,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7518083,"id":"0xaf88a981f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460830845,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7518083},
-{"pid":27443,"tid":27459,"ts":326460830936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7518205,"id":"0xaf88a789f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460830967,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":763,"tdur":763,"tts":7518205},
-{"pid":27443,"tid":27459,"ts":326460830997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7518266,"id":"0xaf88a78af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460831058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7518296,"id":"0xaf88a982f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460831058,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":672,"tdur":641,"tts":7518296},
-{"pid":27443,"tid":27459,"ts":326460831180,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":519,"tdur":518,"tts":7518419},
-{"pid":27443,"tid":27459,"ts":326460831669,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.111","frame":"0x78c60000","statusCode":200,"mimeType":"text/javascript"}},"tts":7518907,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460831760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460825},"tts":7518998,"id":"0xaf88a788f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460831791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":7519029},
-{"pid":27443,"tid":27459,"ts":326460831882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7519121,"id":"0xaf88a78af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460831882,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7519121},
-{"pid":27443,"tid":27459,"ts":326460831913,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7519151,"id":"0xaf88a78bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460831913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7519151,"id":"0xaf88a983f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460831943,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":7519182},
-{"pid":27443,"tid":27459,"ts":326460831943,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7519182},
-{"pid":27443,"tid":27459,"ts":326460832035,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460831},"tts":7519273,"id":"0xaf88a78ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460832035,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":7519273},
-{"pid":27443,"tid":27459,"ts":326460832096,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7519334,"id":"0xaf88a78bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460832096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":305,"tts":7519334},
-{"pid":27443,"tid":27459,"ts":326460832096,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7519334},
-{"pid":27443,"tid":27459,"ts":326460832187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7519426,"id":"0xaf88a784f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460832218,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7519456,"id":"0xaf88a99df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460832218,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":92,"tts":7519456},
-{"pid":27443,"tid":27459,"ts":326460832249,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":61,"tts":7519487},
-{"pid":27443,"tid":27459,"ts":326460832676,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7519700,"id":"0xaf88a784f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460832676,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13032,"tdur":947,"tts":7519700},
-{"pid":27443,"tid":27459,"ts":326460832737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7519761,"id":"0xaf88a785f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460832767,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7519792,"id":"0xaf88a99ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460832767,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":12910,"tdur":794,"tts":7519822},
-{"pid":27443,"tid":27459,"ts":326460832798,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":12879,"tdur":763,"tts":7519853},
-{"pid":27443,"tid":27459,"ts":326460832889,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.111","frame":"0x78c60000","encodedDataLength":5538}},"tts":7519945,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460832920,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":214,"tdur":183,"tts":7519975},
-{"pid":27443,"tid":27459,"ts":326460833195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7520250,"id":"0xaf88ae47ff1ecb9e"},
-{"pid":27443,"tid":27459,"ts":326460833225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7520250,"id":"0xaf88ae5aff1ad452"},
-{"pid":27443,"tid":27459,"ts":326460845586,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7520524},
-{"pid":27443,"tid":27459,"ts":326460845616,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7520555,"id":"0xaf88aab0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460845739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7520677,"id":"0xaf88a785f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460845739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":335,"tdur":336,"tts":7520677},
-{"pid":27443,"tid":27459,"ts":326460845769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7520708,"id":"0xaf88a786f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460845800,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7520738,"id":"0xaf88a998f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460845800,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":7520738},
-{"pid":27443,"tid":27459,"ts":326460845830,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":214,"tdur":213,"tts":7520769},
-{"pid":27443,"tid":27459,"ts":326460845861,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.111","frame":"0x78c60000","encodedDataLength":0}},"tts":7520830,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460845891,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7520830},
-{"pid":27443,"tid":27459,"ts":326460845983,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7520921},
-{"pid":27443,"tid":27459,"ts":326460846013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7520952,"id":"0xaf88aab1f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460846105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7521043,"id":"0xaf88a786f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846105,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":7521043},
-{"pid":27443,"tid":27459,"ts":326460846135,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7521074,"id":"0xaf88a787f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846135,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7521074,"id":"0xaf88a999f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460846135,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":122,"tdur":122,"tts":7521074},
-{"pid":27443,"tid":27459,"ts":326460846166,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":61,"tdur":61,"tts":7521104},
-{"pid":27443,"tid":27459,"ts":326460846288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7521226,"id":"0xaf88a787f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7521226},
-{"pid":27443,"tid":27459,"ts":326460846318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7521257,"id":"0xaf88a780f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7521257,"id":"0xaf88a99af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460846318,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":30,"tts":7521257},
-{"pid":27443,"tid":27459,"ts":326460846349,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7521287},
-{"pid":27443,"tid":27459,"ts":326460846410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7521349,"id":"0xaf88a780f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":122,"tts":7521349},
-{"pid":27443,"tid":27459,"ts":326460846441,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7521379,"id":"0xaf88a781f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7521379,"id":"0xaf88a9e9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460846441,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp","src_func":"dispatchProgressEvent"},"dur":91,"tdur":61,"tts":7521379},
-{"pid":27443,"tid":27459,"ts":326460846593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7521501,"id":"0xaf88a781f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7521501},
-{"pid":27443,"tid":27459,"ts":326460846624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7521532,"id":"0xaf88a782f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846624,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7521532,"id":"0xaf88a99bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460846654,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7521562},
-{"pid":27443,"tid":27459,"ts":326460846715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7521623,"id":"0xaf88a782f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2991,"tdur":702,"tts":7521623},
-{"pid":27443,"tid":27459,"ts":326460846746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7521654,"id":"0xaf88a783f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460846776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7521684,"id":"0xaf88a994f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460846776,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":2930,"tdur":611,"tts":7521684},
-{"pid":27443,"tid":27459,"ts":326460846807,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":2869,"tdur":580,"tts":7521715},
-{"pid":27443,"tid":27459,"ts":326460846959,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7521867,"id":"0xaf88ae4cf8eaaf62"},
-{"pid":27443,"tid":27459,"ts":326460847081,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.111","didFail":false,"networkTime":326460.811556}},"tts":7521989,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460847112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7522020,"id":"0xaf88a9a0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460847142,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":245,"tdur":123,"tts":7522050},
-{"pid":27443,"tid":27459,"ts":326460847173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7522081,"id":"0xaf88aab2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460849767,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7522386,"id":"0xaf88a783f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460849767,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":427,"tts":7522417},{"pid":27443,"tid":27459,"ts":326460849798,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7522417,"id":"0xaf88a79cf3d027d2"},
-{"pid":27443,"tid":27491,"ts":326460833378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":250511,"id":"0xaf88ae5aff1ad452"},
-{"pid":27443,"tid":27491,"ts":326460833378,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":244,"tts":250511},
-{"pid":27443,"tid":27491,"ts":326460833622,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16664,"tdur":14283,"tts":250755},
-{"pid":27443,"tid":27491,"ts":326460833744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":250846,"id":"0xaf88ae5bff1ad452"},
-{"pid":27443,"tid":27491,"ts":326460833775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":250877,"id":"0xaf88ae47ff1ecb9e"},
-{"pid":27443,"tid":27491,"ts":326460833775,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp","src_func":"postTask"},"dur":16511,"tdur":14131,"tts":250907},
-{"pid":27443,"tid":27491,"ts":326460833805,"ph":"X","cat":"v8","name":"v8.parseOnBackground","args":{},"dur":16451,"tdur":14070,"tts":250938},
-{"pid":27443,"tid":27491,"ts":326460850225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":264977,"id":"0xaf88a9a1f3d0445e"},
-{"pid":27443,"tid":27491,"ts":326460850225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":264977,"id":"0xaf88a79df3d027d2"},
-{"pid":27443,"tid":27491,"ts":326460850286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265069,"id":"0xaf88ae5bff1ad452"},
-{"pid":27443,"tid":27491,"ts":326460850317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":265069},
-{"pid":27443,"tid":27491,"ts":326462453247,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":265130,"id":"0xaf88ae54ff1ad452"},
-{"pid":27443,"tid":27491,"ts":326462453277,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12056,"tdur":9523,"tts":265160},
-{"pid":27443,"tid":27491,"ts":326462453277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":265160,"id":"0xaf88ae55ff1ad452"},
-{"pid":27443,"tid":27491,"ts":326462453308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":265191,"id":"0xaf88ae40ff1ecb9e"},
-{"pid":27443,"tid":27491,"ts":326462453308,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp","src_func":"postTask"},"dur":11994,"tdur":9461,"tts":265191},
-{"pid":27443,"tid":27491,"ts":326462453338,"ph":"X","cat":"v8","name":"v8.parseOnBackground","args":{},"dur":11964,"tdur":9430,"tts":265222},
-{"pid":27443,"tid":27491,"ts":326462465241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":274591,"id":"0xaf88a736f3d0445e"},
-{"pid":27443,"tid":27491,"ts":326462465272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":274622,"id":"0xaf88a5b5f3d027d2"},
-{"pid":27443,"tid":27491,"ts":326462465333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":274683,"id":"0xaf88ae55ff1ad452"},
-{"pid":27443,"tid":27491,"ts":326462465363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":274713},
-{"pid":27443,"tid":27491,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.022850000000000002}},
-{"pid":27443,"tid":27477,"ts":326460848394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":695589},
-{"pid":27443,"tid":27477,"ts":326460848424,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":695620},
-{"pid":27443,"tid":27477,"ts":326460848455,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5308416,"bytes_used_for_staging_resources":10616832,"pending_copy_count":16,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":695650,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460848455,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":695650},
-{"pid":27443,"tid":27477,"ts":326460848485,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":695681,"id":"0xaf88a478f182217a"},
-{"pid":27443,"tid":27477,"ts":326460848516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":695711,"id":"0xaf88a478f182217a"},
-{"pid":27443,"tid":27477,"ts":326460848516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2075,"tdur":2076,"tts":695711},
-{"pid":27443,"tid":27477,"ts":326460848546,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2045,"tdur":2045,"tts":695742},
-{"pid":27443,"tid":27477,"ts":326460848546,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":367,"tdur":366,"tts":695742},
-{"pid":27443,"tid":27477,"ts":326460848546,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":695742},
-{"pid":27443,"tid":27477,"ts":326460848577,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":91,"tdur":62,"tts":695772},
-{"pid":27443,"tid":27477,"ts":326460848607,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":695803},
-{"pid":27443,"tid":27477,"ts":326460848668,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":695864},
-{"pid":27443,"tid":27477,"ts":326460848699,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":695895},
-{"pid":27443,"tid":27477,"ts":326460848699,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":695895},
-{"pid":27443,"tid":27477,"ts":326460848730,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":695925},
-{"pid":27443,"tid":27477,"ts":326460848760,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":695956},
-{"pid":27443,"tid":27477,"ts":326460848760,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":695986},
-{"pid":27443,"tid":27477,"ts":326460848821,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":696017},
-{"pid":27443,"tid":27477,"ts":326460848821,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":696017},
-{"pid":27443,"tid":27477,"ts":326460848852,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":696047},
-{"pid":27443,"tid":27477,"ts":326460848882,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":696108},
-{"pid":27443,"tid":27477,"ts":326460848913,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":153,"tts":696108},
-{"pid":27443,"tid":27477,"ts":326460848913,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":153,"tts":696108},
-{"pid":27443,"tid":27477,"ts":326460849065,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1496,"tdur":1495,"tts":696261},
-{"pid":27443,"tid":27477,"ts":326460849096,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1465,"tdur":1465,"tts":696291},
-{"pid":27443,"tid":27477,"ts":326460849096,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1434,"tdur":1435,"tts":696291},
-{"pid":27443,"tid":27477,"ts":326460849096,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":696322,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460849126,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":275,"tdur":275,"tts":696322},
-{"pid":27443,"tid":27477,"ts":326460849401,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":696597},
-{"pid":27443,"tid":27477,"ts":326460849493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":696688},
-{"pid":27443,"tid":27477,"ts":326460849523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":696719},
-{"pid":27443,"tid":27477,"ts":326460849554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696749},
-{"pid":27443,"tid":27477,"ts":326460849554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":696749},
-{"pid":27443,"tid":27477,"ts":326460849584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":696780},
-{"pid":27443,"tid":27477,"ts":326460849615,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696810},
-{"pid":27443,"tid":27477,"ts":326460849645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696841},
-{"pid":27443,"tid":27477,"ts":326460849645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":696841},
-{"pid":27443,"tid":27477,"ts":326460849676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696871},
-{"pid":27443,"tid":27477,"ts":326460849706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696902},
-{"pid":27443,"tid":27477,"ts":326460849706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":696932},
-{"pid":27443,"tid":27477,"ts":326460849767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696963},
-{"pid":27443,"tid":27477,"ts":326460849798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":696993},
-{"pid":27443,"tid":27477,"ts":326460849798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":696993},
-{"pid":27443,"tid":27477,"ts":326460849828,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":697024},
-{"pid":27443,"tid":27477,"ts":326460849859,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697054},
-{"pid":27443,"tid":27477,"ts":326460849889,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697085},
-{"pid":27443,"tid":27477,"ts":326460849889,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":697085},
-{"pid":27443,"tid":27477,"ts":326460849920,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":697115},
-{"pid":27443,"tid":27477,"ts":326460849950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697146},
-{"pid":27443,"tid":27477,"ts":326460849981,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697176},
-{"pid":27443,"tid":27477,"ts":326460850042,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697237},
-{"pid":27443,"tid":27477,"ts":326460850072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":697268},
-{"pid":27443,"tid":27477,"ts":326460850103,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697298},
-{"pid":27443,"tid":27477,"ts":326460850133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697329},
-{"pid":27443,"tid":27477,"ts":326460850164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":697360},
-{"pid":27443,"tid":27477,"ts":326460850256,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":697451},
-{"pid":27443,"tid":27477,"ts":326460850286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697482},
-{"pid":27443,"tid":27477,"ts":326460850317,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697512},
-{"pid":27443,"tid":27477,"ts":326460850317,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":697512},
-{"pid":27443,"tid":27477,"ts":326460850347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697543},
-{"pid":27443,"tid":27477,"ts":326460850378,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":697573},
-{"pid":27443,"tid":27477,"ts":326460850378,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":697573},
-{"pid":27443,"tid":27477,"ts":326460850439,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":697634},
-{"pid":27443,"tid":27469,"ts":326460848638,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":347962},
-{"pid":27443,"tid":27469,"ts":326460848668,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":855,"tdur":854,"tts":347993},
-{"pid":27443,"tid":27469,"ts":326460848668,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":825,"tdur":824,"tts":347993},
-{"pid":27443,"tid":27469,"ts":326460848699,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e4c5a80"},"tileResolution":"HIGH_RESOLUTION"}},"tts":348023},
-{"pid":27443,"tid":27469,"ts":326460848730,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":348054},
-{"pid":27443,"tid":27469,"ts":326460848760,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":348084},
-{"pid":27443,"tid":27469,"ts":326460848791,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":113,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e4c5a80"},"tileResolution":"HIGH_RESOLUTION"}},"tts":348115},
-{"pid":27443,"tid":27469,"ts":326460848791,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":348115,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460849493,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":348817},
-{"pid":27443,"tid":27469,"ts":326460849523,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":885,"tdur":885,"tts":348847},
-{"pid":27443,"tid":27469,"ts":326460849523,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":348847},
-{"pid":27443,"tid":27471,"ts":326460849523,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":402502},
-{"pid":27443,"tid":27469,"ts":326460849554,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e401ad0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":348878},
-{"pid":27443,"tid":27469,"ts":326460849554,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":348878},
-{"pid":27443,"tid":27469,"ts":326460849615,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":348939},
-{"pid":27443,"tid":27469,"ts":326460849615,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":114,"sourceFrameNumber":140,"tileId":{"id_ref":"0x7e401ad0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":348939},
-{"pid":27443,"tid":27469,"ts":326460849676,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":349000,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460850408,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":349732},
-{"pid":27443,"tid":27469,"ts":326460850408,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":349763},
-{"pid":27443,"tid":27469,"ts":326460850439,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":349763},
-{"pid":27443,"tid":27469,"ts":326460850469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349793,"id":"0xaf88a47af182217a"},
-{"pid":27443,"tid":27469,"ts":326460853949,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":349824},
-{"pid":27443,"tid":27469,"ts":326460853979,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":349855},
-{"pid":27443,"tid":27469,"ts":326460854010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349885,"id":"0xaf88a474f182217a"},
-{"pid":27443,"tid":27469,"ts":326460854010,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":349885},
-{"pid":27443,"tid":27469,"ts":326460854010,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":349916},
-{"pid":27443,"tid":27469,"ts":326460854040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349916,"id":"0xaf88a475f182217a"},
-{"pid":27443,"tid":27469,"ts":326460854040,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":349916},
-{"pid":27443,"tid":27469,"ts":326460854071,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":349946},
-{"pid":27443,"tid":27469,"ts":326460854071,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":349946,"id":"0xaf88a476f182217a"},
-{"pid":27443,"tid":27498,"ts":326460882363,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":397,"tdur":397,"tts":53105},
-{"pid":27443,"tid":27498,"ts":326460882394,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":53135},
-{"pid":27443,"tid":27498,"ts":326460882729,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":53471},
-{"pid":27443,"tid":27496,"ts":326460887674,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":274,"tdur":274,"tts":79658},
-{"pid":27443,"tid":27496,"ts":326460887674,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":79658},
-{"pid":27443,"tid":27496,"ts":326460887948,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":79932},
-{"pid":27443,"tid":27546,"ts":326460900217,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1649,"tdur":1648,"tts":60705},
-{"pid":27443,"tid":27546,"ts":326460900248,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":60735},
-{"pid":27443,"tid":27546,"ts":326460901835,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":62322},
-{"pid":27443,"tid":27498,"ts":326460906169,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":519,"tdur":519,"tts":53532},
-{"pid":27443,"tid":27498,"ts":326460906169,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":53563},
-{"pid":27443,"tid":27498,"ts":326460906688,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":54051},
-{"pid":27443,"tid":27496,"ts":326460908061,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":275,"tts":79993},
-{"pid":27443,"tid":27496,"ts":326460908061,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80024},
-{"pid":27443,"tid":27496,"ts":326460908305,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80238},
-{"pid":27443,"tid":27546,"ts":326460910198,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":976,"tdur":977,"tts":62383},
-{"pid":27443,"tid":27546,"ts":326460910198,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":62414},
-{"pid":27443,"tid":27498,"ts":326460910716,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":641,"tdur":580,"tts":54112},
-{"pid":27443,"tid":27498,"ts":326460910716,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":54112},
-{"pid":27443,"tid":27546,"ts":326460911144,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":63329},
-{"pid":27443,"tid":27498,"ts":326460911357,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":54692},
-{"pid":27443,"tid":27496,"ts":326460913128,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1098,"tdur":976,"tts":80299},
-{"pid":27443,"tid":27496,"ts":326460913128,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80329},
-{"pid":27443,"tid":27496,"ts":326460914196,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":81245},
-{"pid":27443,"tid":27469,"ts":326460930646,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":349977},
-{"pid":27443,"tid":27469,"ts":326460930677,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":350007},
-{"pid":27443,"tid":27469,"ts":326460930677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":350038,"id":"0xaf88a406f182217a"},
-{"pid":27443,"tid":27471,"ts":326460930707,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":12910,"tdur":12575,"tts":402624},
-{"pid":27443,"tid":27471,"ts":326460930738,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":12879,"tdur":12544,"tts":402655},
-{"pid":27443,"tid":27471,"ts":326460930738,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":402655},
-{"pid":27443,"tid":27469,"ts":326460930738,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":12422,"tdur":11415,"tts":350068},
-{"pid":27443,"tid":27471,"ts":326460930738,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":402655},
-{"pid":27443,"tid":27469,"ts":326460930738,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":12422,"tdur":11415,"tts":350068},
-{"pid":27443,"tid":27469,"ts":326460930768,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":350099},
-{"pid":27443,"tid":27459,"ts":326460849828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7522447,"id":"0xaf88a995f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460849828,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":367,"tdur":366,"tts":7522447},
-{"pid":27443,"tid":27459,"ts":326460849859,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":336,"tdur":335,"tts":7522478},
-{"pid":27443,"tid":27459,"ts":326460849920,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.102","frame":"0x78c60000","encodedDataLength":0}},"tts":7522539,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460849920,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7522539},
-{"pid":27443,"tid":27459,"ts":326460850042,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7522661},
-{"pid":27443,"tid":27459,"ts":326460850072,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7522691},
-{"pid":27443,"tid":27459,"ts":326460850133,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":62,"tdur":61,"tts":7522752},
-{"pid":27443,"tid":27459,"ts":326460850133,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7522752,"id":"0xaf88aab3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460850378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7522875,"id":"0xaf88a79cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460850408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7522905},
-{"pid":27443,"tid":27459,"ts":326460850408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7522905,"id":"0xaf88a79ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460850439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7522936,"id":"0xaf88a996f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460850439,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7522936},
-{"pid":27443,"tid":27459,"ts":326460850469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7522966,"id":"0xaf88a79df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460850500,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":518,"tts":7522997},
-{"pid":27443,"tid":27459,"ts":326460850500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7522997,"id":"0xaf88a997f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460850500,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":488,"tts":7522997},
-{"pid":27443,"tid":27459,"ts":326460850530,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":458,"tdur":458,"tts":7523027},
-{"pid":27443,"tid":27459,"ts":326460850683,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7523180,"id":"0xaf88ae4cfda784e2"},
-{"pid":27443,"tid":27459,"ts":326460850774,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.102","didFail":false,"networkTime":326460.813143}},"tts":7523302,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460850805,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7523302},
-{"pid":27443,"tid":27459,"ts":326460850805,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":30,"tdur":0,"tts":7523332},
-{"pid":27443,"tid":27459,"ts":326460850866,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7523363,"id":"0xaf88a9a2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460850896,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":62,"tdur":61,"tts":7523393},
-{"pid":27443,"tid":27459,"ts":326460850927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7523424,"id":"0xaf88ab4df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460851049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7523546,"id":"0xaf88a79ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851049,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7523546},
-{"pid":27443,"tid":27459,"ts":326460851080,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7523576,"id":"0xaf88a79ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851080,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7523576,"id":"0xaf88a990f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851080,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":62,"tts":7523576},
-{"pid":27443,"tid":27459,"ts":326460851110,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7523607},
-{"pid":27443,"tid":27459,"ts":326460851171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7523668,"id":"0xaf88a79ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851171,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7523668},
-{"pid":27443,"tid":27459,"ts":326460851171,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7523699,"id":"0xaf88a798f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7523699,"id":"0xaf88a993f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851202,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7523699},
-{"pid":27443,"tid":27459,"ts":326460851232,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7523729},
-{"pid":27443,"tid":27459,"ts":326460851263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7523760,"id":"0xaf88a798f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851293,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7523790},
-{"pid":27443,"tid":27459,"ts":326460851293,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7523790,"id":"0xaf88a799f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851293,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7523821,"id":"0xaf88a9adf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851324,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7523821},
-{"pid":27443,"tid":27459,"ts":326460851324,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":7523821},
-{"pid":27443,"tid":27459,"ts":326460851385,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7523882,"id":"0xaf88a799f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7523882},
-{"pid":27443,"tid":27459,"ts":326460851415,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7523912,"id":"0xaf88a79af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7523912,"id":"0xaf88a9aff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851446,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7523943},
-{"pid":27443,"tid":27459,"ts":326460851446,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":7523943},
-{"pid":27443,"tid":27459,"ts":326460851507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7524034,"id":"0xaf88a79af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851537,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":7524034},
-{"pid":27443,"tid":27459,"ts":326460851568,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7524065,"id":"0xaf88a79bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7524065,"id":"0xaf88a9a9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851568,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7524065},
-{"pid":27443,"tid":27459,"ts":326460851598,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7524095},
-{"pid":27443,"tid":27459,"ts":326460851629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7524126,"id":"0xaf88a79bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7524156},
-{"pid":27443,"tid":27459,"ts":326460851659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7524156,"id":"0xaf88a794f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7524187,"id":"0xaf88a9abf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851690,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7524187},
-{"pid":27443,"tid":27459,"ts":326460851690,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":7524187},
-{"pid":27443,"tid":27459,"ts":326460851812,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7524309,"id":"0xaf88a794f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851812,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7524309},
-{"pid":27443,"tid":27466,"ts":326460850286,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":358217},
-{"pid":27443,"tid":27466,"ts":326460850286,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358217,"id":"0xccc54d02"},
-{"pid":27443,"tid":27466,"ts":326460850744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358370,"id":"0xaf88ab4cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460850774,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":358370},
-{"pid":27443,"tid":27466,"ts":326460850774,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358370,"id":"0xccc54e02"},
-{"pid":27443,"tid":27466,"ts":326460850988,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358461,"id":"0xaf88ab4df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460850988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":358461},
-{"pid":27443,"tid":27466,"ts":326460850988,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358461,"id":"0xccc54f02"},
-{"pid":27443,"tid":27466,"ts":326460852575,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358614,"id":"0xaf88ab4ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460852575,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":358614},
-{"pid":27443,"tid":27466,"ts":326460852606,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358644,"id":"0xccc55002"},
-{"pid":27443,"tid":27466,"ts":326460852667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358705,"id":"0xaf88ab4ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460852667,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":31,"tts":358705},
-{"pid":27443,"tid":27466,"ts":326460852667,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358705,"id":"0xccc55106"},
-{"pid":27443,"tid":27466,"ts":326460852667,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":358705},
-{"pid":27443,"tid":27466,"ts":326460852911,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":358766},
-{"pid":27443,"tid":27466,"ts":326460852941,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":358797},
-{"pid":27443,"tid":27466,"ts":326460852941,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358797,"id":"0xc4c1c00a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460853613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":358919,"id":"0xaf88ab48f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460853613,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":183,"tdur":122,"tts":358919},
-{"pid":27443,"tid":27466,"ts":326460853613,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":358950,"id":"0xccc55202"},
-{"pid":27443,"tid":27466,"ts":326460853613,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":358950},
-{"pid":27443,"tid":27466,"ts":326460855719,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":359072},
-{"pid":27443,"tid":27466,"ts":326460855749,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":359102},
-{"pid":27443,"tid":27466,"ts":326460855780,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":359133,"id":"0xba45f002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460855810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":359163,"id":"0xaf88a471f182217a"},
-{"pid":27443,"tid":27466,"ts":326460856115,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":92,"tts":359285},
-{"pid":27443,"tid":27466,"ts":326460856146,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":359285},
-{"pid":27443,"tid":27466,"ts":326460856177,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":359316,"id":"0xba45f102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460856177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":359316,"id":"0xaf88a473f182217a"},
-{"pid":27443,"tid":27466,"ts":326460870521,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":359407},
-{"pid":27443,"tid":27466,"ts":326460870582,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":359438},
-{"pid":27443,"tid":27466,"ts":326460870582,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":359438,"id":"0xba45f302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460870643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":359499,"id":"0xaf88a40df182217a"},
-{"pid":27443,"tid":27466,"ts":326460875404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":359621,"id":"0xaf88ab49f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460875404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":30,"tts":359652},
-{"pid":27443,"tid":27466,"ts":326460875435,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":359652,"id":"0xccc55302"},
-{"pid":27443,"tid":27466,"ts":326460887277,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":359713},
-{"pid":27443,"tid":27466,"ts":326460887307,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":359743},
-{"pid":27443,"tid":27466,"ts":326460887338,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":359774,"id":"0xba45f402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460887368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":359804,"id":"0xaf88a40ff182217a"},
-{"pid":27443,"tid":27466,"ts":326460903788,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":359896},
-{"pid":27443,"tid":27466,"ts":326460903819,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":359926},
-{"pid":27443,"tid":27466,"ts":326460903819,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":359926,"id":"0xba45f502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460903849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":359957,"id":"0xaf88a409f182217a"},
-{"pid":27443,"tid":27466,"ts":326460920666,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":360048},
-{"pid":27443,"tid":27466,"ts":326460920697,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":360079},
-{"pid":27443,"tid":27466,"ts":326460920697,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":360079,"id":"0xba45f602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460920727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":360109,"id":"0xaf88a40bf182217a"},
-{"pid":27443,"tid":27466,"ts":326460937239,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":360201},
-{"pid":27443,"tid":27466,"ts":326460937269,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":360231},
-{"pid":27443,"tid":27466,"ts":326460937300,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":360262,"id":"0xba45f702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460937330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":360292,"id":"0xaf88a401f182217a"},
-{"pid":27443,"tid":27466,"ts":326460953994,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":360415},
-{"pid":27443,"tid":27466,"ts":326460954025,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":360445},
-{"pid":27443,"tid":27466,"ts":326460954025,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":360445,"id":"0xba45f802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460954055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":360476,"id":"0xaf88a403f182217a"},
-{"pid":27443,"tid":27466,"ts":326460960983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":360628,"id":"0xaf88ab4af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460961014,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":360659},
-{"pid":27443,"tid":27466,"ts":326460961014,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":360659,"id":"0xccc55426"},
-{"pid":27443,"tid":27466,"ts":326460961746,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":360811},
-{"pid":27443,"tid":27466,"ts":326460961777,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":360842},
-{"pid":27443,"tid":27466,"ts":326460961808,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":360872,"id":"0xba45f90a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460973131,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":184,"tts":360994},
-{"pid":27443,"tid":27477,"ts":326460850469,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":697665},
-{"pid":27443,"tid":27477,"ts":326460850500,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":697695},
-{"pid":27443,"tid":27477,"ts":326460850500,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":697695},
-{"pid":27443,"tid":27477,"ts":326460850530,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":697726},
-{"pid":27443,"tid":27477,"ts":326460850561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":697756,"id":"0xaf88a47bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460850591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":697787,"id":"0xaf88a479f182217a"},
-{"pid":27443,"tid":27477,"ts":326460850591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":153,"tdur":122,"tts":697817},
-{"pid":27443,"tid":27477,"ts":326460850622,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":697817},
-{"pid":27443,"tid":27477,"ts":326460850622,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":697817},
-{"pid":27443,"tid":27477,"ts":326460850652,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13506},"dur":61,"tdur":61,"tts":697848},
-{"pid":27443,"tid":27477,"ts":326460850683,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":697878,"id":"0xaf88ab4cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460850744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":697939,"id":"0xaf88a47af182217a"},
-{"pid":27443,"tid":27477,"ts":326460850744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":697939},
-{"pid":27443,"tid":27477,"ts":326460850774,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":697970},
-{"pid":27443,"tid":27477,"ts":326460850774,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":697970,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460850774,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":697970},
-{"pid":27443,"tid":27477,"ts":326460850805,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":698000,"id":"0xaf88a47bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460850805,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3235,"tdur":2778,"tts":698000},
-{"pid":27443,"tid":27477,"ts":326460850835,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3205,"tdur":2747,"tts":698031},
-{"pid":27443,"tid":27477,"ts":326460850835,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":698031},
-{"pid":27443,"tid":27477,"ts":326460850835,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2808,"tdur":2350,"tts":698031},
-{"pid":27443,"tid":27477,"ts":326460850866,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":140},"dur":1221,"tdur":1160,"tts":698061},
-{"pid":27443,"tid":27477,"ts":326460850896,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":140},"dur":275,"tdur":275,"tts":698092},
-{"pid":27443,"tid":27477,"ts":326460851171,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":140},"dur":31,"tdur":30,"tts":698367},
-{"pid":27443,"tid":27477,"ts":326460851202,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":140},"tts":698397},
-{"pid":27443,"tid":27477,"ts":326460851293,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":20},"tts":698489},
-{"pid":27443,"tid":27477,"ts":326460851324,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":274,"tdur":275,"tts":698519},
-{"pid":27443,"tid":27477,"ts":326460851324,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":274,"tdur":275,"tts":698519},
-{"pid":27443,"tid":27477,"ts":326460851324,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":698519},
-{"pid":27443,"tid":27477,"ts":326460851354,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":698550},
-{"pid":27443,"tid":27477,"ts":326460851354,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":31,"tts":698580},
-{"pid":27443,"tid":27477,"ts":326460851385,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":698580},
-{"pid":27443,"tid":27477,"ts":326460851415,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":698611},
-{"pid":27443,"tid":27477,"ts":326460851446,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":698641},
-{"pid":27443,"tid":27477,"ts":326460851446,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":698672},
-{"pid":27443,"tid":27477,"ts":326460851507,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":698702},
-{"pid":27443,"tid":27477,"ts":326460851537,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":698733},
-{"pid":27443,"tid":27477,"ts":326460851537,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":698733},
-{"pid":27443,"tid":27477,"ts":326460851568,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":698763},
-{"pid":27443,"tid":27477,"ts":326460851598,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":8}},"tts":698794,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460851659,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":698855},
-{"pid":27443,"tid":27477,"ts":326460852056,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":699191},
-{"pid":27443,"tid":27477,"ts":326460852087,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":976,"tdur":580,"tts":699221},
-{"pid":27443,"tid":27477,"ts":326460852087,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":699221},
-{"pid":27443,"tid":27477,"ts":326460852117,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":885,"tdur":488,"tts":699252},
-{"pid":27443,"tid":27477,"ts":326460852148,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":30,"tts":699313},
-{"pid":27443,"tid":27477,"ts":326460852239,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":30,"tts":699374},
-{"pid":27443,"tid":27477,"ts":326460852270,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":31,"tts":699404},
-{"pid":27443,"tid":27477,"ts":326460852331,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":31,"tts":699465},
-{"pid":27443,"tid":27477,"ts":326460852423,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13669},"dur":91,"tdur":61,"tts":699557},
-{"pid":27443,"tid":27477,"ts":326460852453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":699588,"id":"0xaf88ab4ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460852514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":699649,"id":"0xaf88ab4ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460853063,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":699801,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460853094,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":488,"tdur":488,"tts":699832},
-{"pid":27443,"tid":27477,"ts":326460853521,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":700259,"id":"0xaf88ab48f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460853613,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":700351,"id":"0xaf88a9bcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460853613,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":700351,"id":"0xaf88a792f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460853674,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":366,"tdur":366,"tts":700412},
-{"pid":27443,"tid":27477,"ts":326460853674,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":700412},
-{"pid":27443,"tid":27477,"ts":326460853674,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":700412},
-{"pid":27443,"tid":27477,"ts":326460853796,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":700534},
-{"pid":27443,"tid":27477,"ts":326460853796,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":700534},
-{"pid":27443,"tid":27477,"ts":326460853796,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":214,"tdur":213,"tts":700534},
-{"pid":27443,"tid":27477,"ts":326460853826,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":700564},
-{"pid":27443,"tid":27459,"ts":326460851843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7524340,"id":"0xaf88a795f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7524370,"id":"0xaf88a9a5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851873,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7524370},
-{"pid":27443,"tid":27459,"ts":326460851873,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":7524370},
-{"pid":27443,"tid":27459,"ts":326460851934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7524431,"id":"0xaf88a795f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851934,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7524431},
-{"pid":27443,"tid":27459,"ts":326460851965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7524462,"id":"0xaf88a796f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460851995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7524492,"id":"0xaf88a9a7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460851995,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7524492},
-{"pid":27443,"tid":27459,"ts":326460851995,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":7524523},
-{"pid":27443,"tid":27459,"ts":326460852087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7524584,"id":"0xaf88a796f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460852087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":335,"tts":7524584},
-{"pid":27443,"tid":27459,"ts":326460852117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7524614,"id":"0xaf88a797f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460852117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7524614,"id":"0xaf88a991f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460852117,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":306,"tdur":305,"tts":7524614},
-{"pid":27443,"tid":27459,"ts":326460852148,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":244,"tdur":244,"tts":7524645},
-{"pid":27443,"tid":27459,"ts":326460852178,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":188,"frame":"0x78c60000"}},"dur":214,"tdur":214,"tts":7524675},
-{"pid":27443,"tid":27459,"ts":326460852209,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":152,"tdur":152,"tts":7524706},
-{"pid":27443,"tid":27459,"ts":326460852300,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":70,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":7524797},
-{"pid":27443,"tid":27459,"ts":326460852331,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7524828},
-{"pid":27443,"tid":27459,"ts":326460852331,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7524858},
-{"pid":27443,"tid":27459,"ts":326460852453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7524950,"id":"0xaf88a797f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460852484,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2380,"tdur":763,"tts":7524980},
-{"pid":27443,"tid":27459,"ts":326460852484,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7525011,"id":"0xaf88a790f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460852514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7525011,"id":"0xaf88a992f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460852514,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2320,"tdur":732,"tts":7525011},
-{"pid":27443,"tid":27459,"ts":326460852545,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2289,"tdur":702,"tts":7525041},
-{"pid":27443,"tid":27459,"ts":326460852575,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":189,"frame":"0x78c60000"}},"dur":2228,"tdur":641,"tts":7525072},
-{"pid":27443,"tid":27459,"ts":326460852575,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":580,"tdur":549,"tts":7525103},
-{"pid":27443,"tid":27459,"ts":326460852636,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":519,"tdur":519,"tts":7525133},
-{"pid":27443,"tid":27459,"ts":326460852667,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7525164},
-{"pid":27443,"tid":27459,"ts":326460853002,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7525530,"id":"0xaf88a9a3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460853033,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7525530,"id":"0xaf88a791f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460853063,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":196,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7525621,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460853063,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7525621},
-{"pid":27443,"tid":27459,"ts":326460853124,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7525652},
-{"pid":27443,"tid":27459,"ts":326460854895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7525804,"id":"0xaf88a790f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460854895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":518,"tdur":519,"tts":7525804},
-{"pid":27443,"tid":27459,"ts":326460854925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7525835,"id":"0xaf88a793f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460854925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7525835,"id":"0xaf88a9acf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460854925,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":458,"tdur":458,"tts":7525835},
-{"pid":27443,"tid":27459,"ts":326460854956,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":427,"tdur":427,"tts":7525866},
-{"pid":27443,"tid":27459,"ts":326460854986,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":190,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7525896},
-{"pid":27443,"tid":27459,"ts":326460855017,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":366,"tdur":366,"tts":7525927},
-{"pid":27443,"tid":27459,"ts":326460855078,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":274,"tdur":244,"tts":7526018},
-{"pid":27443,"tid":27459,"ts":326460855108,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7526018},
-{"pid":27443,"tid":27459,"ts":326460855352,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7526262},
-{"pid":27443,"tid":27459,"ts":326460855444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7526354,"id":"0xaf88a792f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460855444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":336,"tts":7526354},
-{"pid":27443,"tid":27459,"ts":326460855475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7526384,"id":"0xaf88a9aef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460855475,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":305,"tdur":306,"tts":7526384},
-{"pid":27443,"tid":27459,"ts":326460855475,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":305,"tdur":306,"tts":7526384},
-{"pid":27443,"tid":27459,"ts":326460855505,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":191,"frame":"0x78c60000"}},"dur":244,"tdur":244,"tts":7526415},
-{"pid":27443,"tid":27459,"ts":326460855536,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":213,"tdur":214,"tts":7526445},
-{"pid":27443,"tid":27459,"ts":326460855597,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":152,"tdur":153,"tts":7526506},
-{"pid":27443,"tid":27459,"ts":326460855597,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7526537},
-{"pid":27443,"tid":27459,"ts":326460855719,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7526629},
-{"pid":27443,"tid":27459,"ts":326460855810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460854},"tts":7526720,"id":"0xaf88a791f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460855810,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7526720},
-{"pid":27443,"tid":27459,"ts":326460855871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7526781,"id":"0xaf88a793f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460855871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":366,"tts":7526781},
-{"pid":27443,"tid":27459,"ts":326460855902,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7526812,"id":"0xaf88a7acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460855902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7526812,"id":"0xaf88a9a8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460855902,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":336,"tdur":335,"tts":7526812},
-{"pid":27443,"tid":27477,"ts":326460853826,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":700564,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460853887,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":700625},
-{"pid":27443,"tid":27477,"ts":326460853918,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":700656},
-{"pid":27443,"tid":27477,"ts":326460853949,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9621504,"bytes_used_for_staging_resources":10616832,"pending_copy_count":29,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":700686,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460854010,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":176}},"tts":700747,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460854010,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3735552},"tts":700747,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460854071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460852},"tts":700808,"id":"0xaf88a47ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460854071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":700808},
-{"pid":27443,"tid":27477,"ts":326460854101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":700839,"id":"0xaf88a474f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854101,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":700839},
-{"pid":27443,"tid":27477,"ts":326460854101,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":700839},
-{"pid":27443,"tid":27477,"ts":326460854132,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9621504,"bytes_used_for_staging_resources":10616832,"pending_copy_count":29,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":700869,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460854132,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":700869},
-{"pid":27443,"tid":27477,"ts":326460854162,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":700900,"id":"0xaf88a477f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":700930,"id":"0xaf88a475f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":700930},
-{"pid":27443,"tid":27477,"ts":326460854193,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":700930},
-{"pid":27443,"tid":27477,"ts":326460854223,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9621504,"bytes_used_for_staging_resources":10616832,"pending_copy_count":29,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":700961,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460854223,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":700961},
-{"pid":27443,"tid":27477,"ts":326460854254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":700991,"id":"0xaf88a470f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":700991,"id":"0xaf88a476f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":701022},
-{"pid":27443,"tid":27477,"ts":326460854284,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":701022},
-{"pid":27443,"tid":27477,"ts":326460854284,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":701022,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460854284,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":701022},
-{"pid":27443,"tid":27477,"ts":326460854315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":701052,"id":"0xaf88a477f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":184,"tts":701052},
-{"pid":27443,"tid":27477,"ts":326460854315,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":183,"tdur":184,"tts":701052},
-{"pid":27443,"tid":27477,"ts":326460854345,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":701083},
-{"pid":27443,"tid":27477,"ts":326460854345,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":701083},
-{"pid":27443,"tid":27477,"ts":326460854376,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":701114},
-{"pid":27443,"tid":27477,"ts":326460854406,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":701144},
-{"pid":27443,"tid":27477,"ts":326460854467,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":701205},
-{"pid":27443,"tid":27477,"ts":326460854467,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":701205},
-{"pid":27443,"tid":27477,"ts":326460854498,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":701236,"id":"0xaf88a470f182217a"},
-{"pid":27443,"tid":27477,"ts":326460854528,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":701266},
-{"pid":27443,"tid":27477,"ts":326460854528,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":701266},
-{"pid":27443,"tid":27477,"ts":326460854528,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":701266},
-{"pid":27443,"tid":27477,"ts":326460854528,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":701266},
-{"pid":27443,"tid":27477,"ts":326460854559,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":701297},
-{"pid":27443,"tid":27477,"ts":326460854559,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":701297},
-{"pid":27443,"tid":27477,"ts":326460854620,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":701358},
-{"pid":27443,"tid":27477,"ts":326460854650,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":701388},
-{"pid":27443,"tid":27477,"ts":326460855871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":701449,"id":"0xaf88a471f182217a"},
-{"pid":27443,"tid":27477,"ts":326460855871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":701449},
-{"pid":27443,"tid":27477,"ts":326460855902,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460858764.0,"frame_time_us":326460852941.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":701480},
-{"pid":27443,"tid":27477,"ts":326460855932,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460858764.0,"frame_time_us":326460852941.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":92,"tts":701510},
-{"pid":27443,"tid":27477,"ts":326460855963,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460869607},"dur":61,"tdur":0,"tts":701571},
-{"pid":27443,"tid":27477,"ts":326460855993,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":701571,"id":"0xaf88a472f182217a"},
-{"pid":27443,"tid":27477,"ts":326460856238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":701663,"id":"0xaf88a473f182217a"},
-{"pid":27443,"tid":27477,"ts":326460856238,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":701663},
-{"pid":27443,"tid":27477,"ts":326460856268,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":701693},
-{"pid":27443,"tid":27477,"ts":326460856299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":701724,"id":"0xaf88a9bdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460856299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":701724,"id":"0xaf88a7aef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460859717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":701785,"id":"0xaf88a40cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460859747,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":123,"tts":701815},
-{"pid":27443,"tid":27477,"ts":326460859747,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":123,"tts":701815},
-{"pid":27443,"tid":27477,"ts":326460859747,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":141},"tts":701815},
-{"pid":27443,"tid":27477,"ts":326460859839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":701907,"id":"0xaf88a9bbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460859839,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":701907},
-{"pid":27443,"tid":27477,"ts":326460869728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460869},"tts":702029,"id":"0xaf88a472f182217a"},
-{"pid":27443,"tid":27477,"ts":326460869728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":702029},
-{"pid":27443,"tid":27477,"ts":326460869728,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":702029},
-{"pid":27443,"tid":27477,"ts":326460870735,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":702121,"id":"0xaf88a40df182217a"},
-{"pid":27443,"tid":27459,"ts":326460855932,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":275,"tdur":275,"tts":7526842},
-{"pid":27443,"tid":27459,"ts":326460855963,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":192,"frame":"0x78c60000"}},"dur":244,"tdur":244,"tts":7526873},
-{"pid":27443,"tid":27459,"ts":326460855963,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":244,"tdur":244,"tts":7526873},
-{"pid":27443,"tid":27459,"ts":326460856024,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":183,"tdur":153,"tts":7526964},
-{"pid":27443,"tid":27459,"ts":326460856054,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7526964},
-{"pid":27443,"tid":27459,"ts":326460856177,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7527086},
-{"pid":27443,"tid":27459,"ts":326460856268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7527178,"id":"0xaf88a7acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460856268,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":336,"tts":7527178},
-{"pid":27443,"tid":27459,"ts":326460856299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7527208,"id":"0xaf88a7adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460856299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7527208,"id":"0xaf88a9aaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460856299,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":305,"tdur":306,"tts":7527208},
-{"pid":27443,"tid":27459,"ts":326460856329,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":275,"tdur":275,"tts":7527239},
-{"pid":27443,"tid":27459,"ts":326460856329,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":193,"frame":"0x78c60000"}},"dur":275,"tdur":214,"tts":7527269},
-{"pid":27443,"tid":27459,"ts":326460856360,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":213,"tdur":214,"tts":7527269},
-{"pid":27443,"tid":27459,"ts":326460856421,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":152,"tdur":152,"tts":7527331},
-{"pid":27443,"tid":27459,"ts":326460856451,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7527361},
-{"pid":27443,"tid":27459,"ts":326460856543,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7527453},
-{"pid":27443,"tid":27459,"ts":326460856634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7527544,"id":"0xaf88a7adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460856634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":366,"tts":7527544},
-{"pid":27443,"tid":27459,"ts":326460856665,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7527575,"id":"0xaf88a7aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460856665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7527575,"id":"0xaf88a9a4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460856695,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":275,"tdur":275,"tts":7527605},
-{"pid":27443,"tid":27459,"ts":326460856695,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":275,"tdur":275,"tts":7527605},
-{"pid":27443,"tid":27459,"ts":326460856726,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":194,"frame":"0x78c60000"}},"dur":244,"tdur":244,"tts":7527636},
-{"pid":27443,"tid":27459,"ts":326460856726,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":214,"tdur":213,"tts":7527636},
-{"pid":27443,"tid":27459,"ts":326460856787,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":153,"tdur":152,"tts":7527697},
-{"pid":27443,"tid":27459,"ts":326460856817,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7527727},
-{"pid":27443,"tid":27459,"ts":326460856909,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7527849},
-{"pid":27443,"tid":27459,"ts":326460857001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7527910,"id":"0xaf88a7aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":305,"tts":7527941},
-{"pid":27443,"tid":27459,"ts":326460857031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7527941,"id":"0xaf88a9a6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460857062,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":274,"tdur":275,"tts":7527971},
-{"pid":27443,"tid":27459,"ts":326460857062,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":274,"tdur":275,"tts":7527971},
-{"pid":27443,"tid":27459,"ts":326460857092,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":195,"frame":"0x78c60000"}},"dur":214,"tdur":214,"tts":7528002},
-{"pid":27443,"tid":27459,"ts":326460857123,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":183,"tdur":184,"tts":7528032},
-{"pid":27443,"tid":27459,"ts":326460857153,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":153,"tdur":153,"tts":7528063},
-{"pid":27443,"tid":27459,"ts":326460857184,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7528094},
-{"pid":27443,"tid":27459,"ts":326460857275,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7528185},
-{"pid":27443,"tid":27459,"ts":326460857367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7528277,"id":"0xaf88a7aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7528277},
-{"pid":27443,"tid":27459,"ts":326460857397,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7528307,"id":"0xaf88a7a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7528307,"id":"0xaf88a99ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460857397,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":30,"tts":7528338},
-{"pid":27443,"tid":27459,"ts":326460857428,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":7528338},
-{"pid":27443,"tid":27459,"ts":326460857428,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":30,"tdur":30,"tts":7528338},
-{"pid":27443,"tid":27459,"ts":326460857489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7528399,"id":"0xaf88a7a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7528399},
-{"pid":27443,"tid":27459,"ts":326460857519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7528429,"id":"0xaf88a7a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857519,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7528429,"id":"0xaf88a9a0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460857550,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":91,"tdur":91,"tts":7528460},
-{"pid":27443,"tid":27459,"ts":326460857550,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":61,"tdur":61,"tts":7528460},
-{"pid":27443,"tid":27459,"ts":326460857672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7528582,"id":"0xaf88a7a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7528582},
-{"pid":27443,"tid":27459,"ts":326460857672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7528612,"id":"0xaf88a7aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7528612,"id":"0xaf88a9a1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460857703,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp","src_func":"streamingCompleteOnBackgroundThread"},"dur":61,"tdur":61,"tts":7528612},
-{"pid":27443,"tid":27459,"ts":326460857733,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7528643,"id":"0xaf88a9bef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460857794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7528704,"id":"0xaf88a7aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":824,"tdur":824,"tts":7528704},
-{"pid":27443,"tid":27459,"ts":326460857825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7528734,"id":"0xaf88a7abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460857825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7528734,"id":"0xaf88a9a2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460857825,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":793,"tdur":763,"tts":7528734},
-{"pid":27443,"tid":27459,"ts":326460857855,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":733,"tdur":732,"tts":7528765},
-{"pid":27443,"tid":27459,"ts":326460857886,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7528795},
-{"pid":27443,"tid":27459,"ts":326460857916,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":641,"tdur":641,"tts":7528826},
-{"pid":27443,"tid":27459,"ts":326460858038,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":69,"frame":"0x78c60000"}},"dur":489,"tdur":488,"tts":7528948},
-{"pid":27443,"tid":27459,"ts":326460858038,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7528948},
-{"pid":27443,"tid":27459,"ts":326460858160,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":164,"frame":"0x78c60000"}},"tts":7529070,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460858343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7529253,"id":"0xaf88a9bff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460858343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7529284,"id":"0xaf88a7a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460858374,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":197,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7529314,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460858466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7529375,"id":"0xaf88a9b8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460858496,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":198,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7529406,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460858496,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7529436},
-{"pid":27443,"tid":27459,"ts":326460858588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7529497,"id":"0xaf88a9b9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460858649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7529558,"id":"0xaf88a7abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460858649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5280,"tdur":5281,"tts":7529558},
-{"pid":27443,"tid":27459,"ts":326460858649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7529589,"id":"0xaf88a7a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460858679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7529589,"id":"0xaf88a9a3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460858679,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":5189,"tdur":5188,"tts":7529589},
-{"pid":27443,"tid":27459,"ts":326460858679,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":5189,"tdur":5127,"tts":7529620},
-{"pid":27443,"tid":27459,"ts":326460858710,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":196,"frame":"0x78c60000"}},"dur":5127,"tdur":5097,"tts":7529650},
-{"pid":27443,"tid":27459,"ts":326460858740,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":5097,"tdur":5097,"tts":7529650},
-{"pid":27443,"tid":27459,"ts":326460858771,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":5066,"tdur":5036,"tts":7529711},
-{"pid":27443,"tid":27459,"ts":326460858801,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7529711},
-{"pid":27443,"tid":27459,"ts":326460859045,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":92,"tdur":92,"tts":7529955},
-{"pid":27443,"tid":27459,"ts":326460859168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7530077,"id":"0xaf88a9baf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460859656,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7530566},
-{"pid":27443,"tid":27459,"ts":326460859656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7530566,"id":"0xaf88a40cf182217a"},
-{"pid":27443,"tid":27459,"ts":326460859931,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":122,"tdur":91,"tts":7530871},
-{"pid":27443,"tid":27459,"ts":326460860632,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":92,"tdur":61,"tts":7531573},
-{"pid":27443,"tid":27459,"ts":326460861334,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":92,"tdur":61,"tts":7532275},
-{"pid":27443,"tid":27459,"ts":326460862036,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":92,"tdur":92,"tts":7532946},{"pid":27443,"tid":27459,"ts":326460862677,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":61,"tdur":61,"tts":7533587},
-{"pid":27443,"tid":27459,"ts":326460863288,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":91,"tdur":61,"tts":7534228},
-{"pid":27443,"tid":27459,"ts":326460863807,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7534716},
-{"pid":27443,"tid":27459,"ts":326460863898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7534808,"id":"0xaf88a7a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460863959,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460860},"tts":7534869,"id":"0xaf88a74ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460863959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7534869},
-{"pid":27443,"tid":27459,"ts":326460863990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7534930,"id":"0xaf88a7a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864020,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7534930},
-{"pid":27443,"tid":27459,"ts":326460864020,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7534961,"id":"0xaf88a7a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864051,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7534961,"id":"0xaf88a9bcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460864051,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7534961},
-{"pid":27443,"tid":27459,"ts":326460864051,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":7534991},
-{"pid":27443,"tid":27459,"ts":326460864112,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460859},"tts":7535022,"id":"0xaf88a7a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":7535022},
-{"pid":27443,"tid":27459,"ts":326460864142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7535052,"id":"0xaf88a7a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7535083},
-{"pid":27443,"tid":27459,"ts":326460864173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7535083,"id":"0xaf88a7a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7535113,"id":"0xaf88a9bdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460864203,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":7535113},
-{"pid":27443,"tid":27459,"ts":326460864203,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":7535113},
-{"pid":27443,"tid":27459,"ts":326460864264,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7535174,"id":"0xaf88a7a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864264,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":49627,"tdur":49443,"tts":7535174},
-{"pid":27443,"tid":27459,"ts":326460864295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7535205,"id":"0xaf88a7a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460864295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7535205,"id":"0xaf88a9bef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460864325,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/ScriptRunner.cpp","src_func":"postTaskIfOneIsNotAlreadyInFlight"},"dur":49504,"tdur":49352,"tts":7535235},
-{"pid":27443,"tid":27459,"ts":326460864386,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24698880,"free":4661248},"tts":7535296},
-{"pid":27443,"tid":27459,"ts":326460864417,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24723456,"free":4636672},"tts":7535357},
-{"pid":27443,"tid":27459,"ts":326460864478,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24707072,"free":4653056},"tts":7535388},
-{"pid":27443,"tid":27459,"ts":326460864539,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24743936,"free":4616192},"tts":7535449},
-{"pid":27443,"tid":27459,"ts":326460864570,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24719360,"free":4640768},"tts":7535510},
-{"pid":27443,"tid":27459,"ts":326460864631,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24776704,"free":4583424},"tts":7535540},
-{"pid":27443,"tid":27459,"ts":326460864844,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24739840,"free":4620288},"tts":7535754},
-{"pid":27443,"tid":27459,"ts":326460865180,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":30,"tts":7536090},
-{"pid":27443,"tid":27459,"ts":326460865302,"ph":"X","cat":"devtools.timeline","name":"EvaluateScript","args":{"data":{"frame":"0x78c60000","url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999","lineNumber":1}},"dur":48131,"tdur":47948,"tts":7536242},
-{"pid":27443,"tid":27459,"ts":326460865363,"ph":"X","cat":"v8","name":"v8.compile","args":{"fileName":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"},"dur":10041,"tdur":9919,"tts":7536273},
-{"pid":27443,"tid":27459,"ts":326460866340,"ph":"B","cat":"v8","name":"V8.CompileMicroSeconds","args":{},"tts":7537250},
-{"pid":27443,"tid":27459,"ts":326460866859,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7537768},
-{"pid":27443,"tid":27459,"ts":326460874916,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7545734},
-{"pid":27443,"tid":27459,"ts":326460874977,"ph":"E","cat":"v8","name":"V8.CompileMicroSeconds","args":{},"tts":7545765},
-{"pid":27443,"tid":27459,"ts":326460875313,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1434},"dur":61,"tdur":61,"tts":7546101},
-{"pid":27443,"tid":27459,"ts":326460875343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7546131,"id":"0xaf88ab49f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326460875435,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"},"dur":37967,"tdur":37936,"tts":7546223},
-{"pid":27443,"tid":27459,"ts":326460875465,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7546253},
-{"pid":27443,"tid":27459,"ts":326460882027,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7552846},
-{"pid":27443,"tid":27459,"ts":326460882149,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7552937},
-{"pid":27443,"tid":27459,"ts":326460882180,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7552968},
-{"pid":27443,"tid":27459,"ts":326460882332,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7553151},
-{"pid":27443,"tid":27459,"ts":326460882729,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7553517},
-{"pid":27443,"tid":27459,"ts":326460882882,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7553700},
-{"pid":27443,"tid":27459,"ts":326460887307,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7558095},
-{"pid":27443,"tid":27459,"ts":326460887399,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7558187},
-{"pid":27443,"tid":27459,"ts":326460887429,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7558217},
-{"pid":27443,"tid":27459,"ts":326460887460,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7558248},
-{"pid":27443,"tid":27459,"ts":326460887521,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7558309},
-{"pid":27443,"tid":27459,"ts":326460887643,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7558431},
-{"pid":27443,"tid":27459,"ts":326460887979,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7558766},
-{"pid":27443,"tid":27459,"ts":326460888101,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7558889},
-{"pid":27443,"tid":27459,"ts":326460888376,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7559163,"id":"0xaf88a9b4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460888406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7559194,"id":"0xaf88a7a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460888437,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":199,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7559255,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460893381,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7564169},
-{"pid":27443,"tid":27459,"ts":326460893564,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7564352},
-{"pid":27443,"tid":27459,"ts":326460893625,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7564443},
-{"pid":27443,"tid":27459,"ts":326460893778,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7564596},
-{"pid":27443,"tid":27459,"ts":326460899393,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7570212},
-{"pid":27443,"tid":27459,"ts":326460899515,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7570303},
-{"pid":27443,"tid":27459,"ts":326460899546,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7570364},
-{"pid":27443,"tid":27459,"ts":326460899576,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7570364},
-{"pid":27443,"tid":27459,"ts":326460899668,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7570456},
-{"pid":27443,"tid":27459,"ts":326460899821,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7570608},
-{"pid":27443,"tid":27459,"ts":326460899882,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7570669},
-{"pid":27443,"tid":27459,"ts":326460900065,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7570853},
-{"pid":27443,"tid":27459,"ts":326460900095,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7570883},
-{"pid":27443,"tid":27459,"ts":326460900217,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7571005},
-{"pid":27443,"tid":27459,"ts":326460901866,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7572623},
-{"pid":27443,"tid":27459,"ts":326460902323,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7573111},
-{"pid":27443,"tid":27459,"ts":326460905528,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7576285},
-{"pid":27443,"tid":27459,"ts":326460905650,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7576407},
-{"pid":27443,"tid":27459,"ts":326460905711,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7576468},
-{"pid":27443,"tid":27459,"ts":326460905711,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7576468},
-{"pid":27443,"tid":27459,"ts":326460905803,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7576560},
-{"pid":27443,"tid":27459,"ts":326460905925,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7576682},
-{"pid":27443,"tid":27459,"ts":326460905986,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7576743},
-{"pid":27443,"tid":27459,"ts":326460906138,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7576896},
-{"pid":27443,"tid":27459,"ts":326460906749,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7577506},
-{"pid":27443,"tid":27459,"ts":326460906932,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7577689},
-{"pid":27443,"tid":27459,"ts":326460907725,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7578513},
-{"pid":27443,"tid":27459,"ts":326460907817,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7578574},
-{"pid":27443,"tid":27459,"ts":326460907847,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7578605},
-{"pid":27443,"tid":27459,"ts":326460907847,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7578635},
-{"pid":27443,"tid":27459,"ts":326460907939,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7578696},
-{"pid":27443,"tid":27459,"ts":326460908031,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7578818},
-{"pid":27443,"tid":27459,"ts":326460908336,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7579093},
-{"pid":27443,"tid":27459,"ts":326460908427,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7579185},
-{"pid":27443,"tid":27459,"ts":326460909312,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580070},
-{"pid":27443,"tid":27459,"ts":326460909404,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580161},
-{"pid":27443,"tid":27459,"ts":326460909435,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7580192},
-{"pid":27443,"tid":27459,"ts":326460909465,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7580222},
-{"pid":27443,"tid":27459,"ts":326460909526,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7580283},
-{"pid":27443,"tid":27477,"ts":326460870765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":702151},
-{"pid":27443,"tid":27477,"ts":326460870765,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":702151},
-{"pid":27443,"tid":27477,"ts":326460870857,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460875446.0,"frame_time_us":326460869623.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":702273},
-{"pid":27443,"tid":27477,"ts":326460870887,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460875446.0,"frame_time_us":326460869623.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":702273},
-{"pid":27443,"tid":27477,"ts":326460870918,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460886289},"dur":30,"tdur":0,"tts":702334},
-{"pid":27443,"tid":27477,"ts":326460870948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":702334,"id":"0xaf88a40ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460886422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460886},"tts":702456,"id":"0xaf88a40ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460886422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":702456},
-{"pid":27443,"tid":27477,"ts":326460886422,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":702456},
-{"pid":27443,"tid":27477,"ts":326460887429,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":702579,"id":"0xaf88a40ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460887429,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":702579},
-{"pid":27443,"tid":27477,"ts":326460887460,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460892127.0,"frame_time_us":326460886304.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":702609},
-{"pid":27443,"tid":27477,"ts":326460887490,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460892127.0,"frame_time_us":326460886304.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":702640},
-{"pid":27443,"tid":27477,"ts":326460887521,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460902970},"dur":30,"tdur":31,"tts":702670},
-{"pid":27443,"tid":27477,"ts":326460887551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":702701,"id":"0xaf88a408f182217a"},
-{"pid":27443,"tid":27477,"ts":326460903056,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460902},"tts":702762,"id":"0xaf88a408f182217a"},
-{"pid":27443,"tid":27477,"ts":326460903086,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":702792},
-{"pid":27443,"tid":27477,"ts":326460903086,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":702792},
-{"pid":27443,"tid":27477,"ts":326460903910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":702853,"id":"0xaf88a409f182217a"},
-{"pid":27443,"tid":27477,"ts":326460903910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":702853},
-{"pid":27443,"tid":27477,"ts":326460903941,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460908809.0,"frame_time_us":326460902986.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":702884},
-{"pid":27443,"tid":27477,"ts":326460903971,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460908809.0,"frame_time_us":326460902986.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":702914},
-{"pid":27443,"tid":27477,"ts":326460904002,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460919652},"dur":30,"tdur":30,"tts":702945},
-{"pid":27443,"tid":27477,"ts":326460904032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":702975,"id":"0xaf88a40af182217a"},
-{"pid":27443,"tid":27477,"ts":326460919781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460919},"tts":703067,"id":"0xaf88a40af182217a"},
-{"pid":27443,"tid":27477,"ts":326460919781,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":703067},
-{"pid":27443,"tid":27477,"ts":326460919781,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":703067},
-{"pid":27443,"tid":27477,"ts":326460920788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":703128,"id":"0xaf88a40bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460920788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":703128},
-{"pid":27443,"tid":27477,"ts":326460920819,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460925491.0,"frame_time_us":326460919668.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":703158},
-{"pid":27443,"tid":27477,"ts":326460920849,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460925491.0,"frame_time_us":326460919668.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":703189},
-{"pid":27443,"tid":27477,"ts":326460920880,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460936334},"dur":30,"tdur":31,"tts":703219},
-{"pid":27443,"tid":27477,"ts":326460920910,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":703250,"id":"0xaf88a404f182217a"},
-{"pid":27443,"tid":27477,"ts":326460928449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":703311,"id":"0xaf88a405f182217a"},
-{"pid":27443,"tid":27477,"ts":326460928479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2289,"tdur":2258,"tts":703342},
-{"pid":27443,"tid":27477,"ts":326460928479,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2259,"tdur":2258,"tts":703342},
-{"pid":27443,"tid":27477,"ts":326460928479,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":703342},
-{"pid":27443,"tid":27477,"ts":326460928510,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2228,"tdur":2228,"tts":703372},
-{"pid":27443,"tid":27477,"ts":326460928510,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2228,"tdur":2228,"tts":703372},
-{"pid":27443,"tid":27477,"ts":326460928510,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":703372},
-{"pid":27443,"tid":27477,"ts":326460928540,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":703403},
-{"pid":27443,"tid":27477,"ts":326460928540,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":703403,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460928540,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":703403},
-{"pid":27443,"tid":27477,"ts":326460928571,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":275,"tdur":275,"tts":703433},
-{"pid":27443,"tid":27477,"ts":326460928846,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":703708},
-{"pid":27443,"tid":27477,"ts":326460928876,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":703738},
-{"pid":27443,"tid":27477,"ts":326460929151,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1556,"tdur":1557,"tts":704013},
-{"pid":27443,"tid":27477,"ts":326460929151,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":141},"dur":274,"tdur":245,"tts":704043},
-{"pid":27443,"tid":27477,"ts":326460929425,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":141},"dur":61,"tdur":31,"tts":704318},
-{"pid":27443,"tid":27477,"ts":326460929486,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":141},"tts":704349},
-{"pid":27443,"tid":27477,"ts":326460929792,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":704654},
-{"pid":27443,"tid":27477,"ts":326460929822,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":27},"tts":704684},
-{"pid":27443,"tid":27477,"ts":326460929822,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":885,"tdur":886,"tts":704684},
-{"pid":27443,"tid":27477,"ts":326460929822,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":704684},
-{"pid":27443,"tid":27477,"ts":326460929975,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":704837},
-{"pid":27443,"tid":27477,"ts":326460929975,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":275,"tts":704837},
-{"pid":27443,"tid":27477,"ts":326460930310,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":705173},
-{"pid":27443,"tid":27477,"ts":326460930341,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":13},"dur":336,"tdur":305,"tts":705203},
-{"pid":27443,"tid":27477,"ts":326460930494,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":152,"tts":705356},
-{"pid":27443,"tid":27477,"ts":326460930494,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":705386,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460930555,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":705417},
-{"pid":27443,"tid":27477,"ts":326460930585,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":23,"num_edges":54},"dur":31,"tdur":31,"tts":705447},
-{"pid":27443,"tid":27477,"ts":326460930646,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6303744,"bytes_used_for_staging_resources":10616832,"pending_copy_count":19,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":705508,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460930677,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":196}},"tts":705539,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460909618,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580375},
-{"pid":27443,"tid":27459,"ts":326460909679,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580436},
-{"pid":27443,"tid":27459,"ts":326460909831,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580619},
-{"pid":27443,"tid":27459,"ts":326460909892,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580650},
-{"pid":27443,"tid":27459,"ts":326460909923,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7580680},
-{"pid":27443,"tid":27459,"ts":326460909984,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7580741},
-{"pid":27443,"tid":27459,"ts":326460910167,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7580955},
-{"pid":27443,"tid":27459,"ts":326460910228,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7580985},
-{"pid":27443,"tid":27459,"ts":326460910289,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7581046},
-{"pid":27443,"tid":27459,"ts":326460910350,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7581107},
-{"pid":27443,"tid":27459,"ts":326460910350,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7581107},
-{"pid":27443,"tid":27459,"ts":326460910411,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7581168},
-{"pid":27443,"tid":27459,"ts":326460910503,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7581260},
-{"pid":27443,"tid":27459,"ts":326460910564,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7581321},
-{"pid":27443,"tid":27459,"ts":326460910686,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7581443},
-{"pid":27443,"tid":27459,"ts":326460911144,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7581931},
-{"pid":27443,"tid":27459,"ts":326460911540,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7582298},
-{"pid":27443,"tid":27459,"ts":326460911602,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7582359},
-{"pid":27443,"tid":27459,"ts":326460911785,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7582542},
-{"pid":27443,"tid":27459,"ts":326460912456,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7583244},
-{"pid":27443,"tid":27459,"ts":326460912578,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7583335},
-{"pid":27443,"tid":27459,"ts":326460912609,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7583366},
-{"pid":27443,"tid":27459,"ts":326460912883,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7583641},
-{"pid":27443,"tid":27459,"ts":326460912944,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7583702},
-{"pid":27443,"tid":27459,"ts":326460913097,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7583854},
-{"pid":27443,"tid":27459,"ts":326460913372,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":173,"frame":"0x78c60000"}},"tts":7584129,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460913402,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7584159},
-{"pid":27443,"tid":27459,"ts":326460913463,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7584220},
-{"pid":27443,"tid":27459,"ts":326460913494,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":31,"tts":7584251},
-{"pid":27443,"tid":27459,"ts":326460913738,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24682496,"free":4677632},"tts":7584495},
-{"pid":27443,"tid":27459,"ts":326460913799,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7584556,"id":"0xaf88a9b5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460913952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7584678,"id":"0xaf88a7a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460913952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7584678},
-{"pid":27443,"tid":27459,"ts":326460913982,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7584709,"id":"0xaf88a7a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460913982,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7584709,"id":"0xaf88a9b9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460913982,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":31,"tts":7584739},
-{"pid":27443,"tid":27459,"ts":326460914013,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7584739},
-{"pid":27443,"tid":27459,"ts":326460914074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7584800,"id":"0xaf88a7a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460914074,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":793,"tdur":763,"tts":7584800},
-{"pid":27443,"tid":27459,"ts":326460914104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7584831,"id":"0xaf88a7bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460914104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7584831,"id":"0xaf88a9baf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914135,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":702,"tdur":702,"tts":7584861},
-{"pid":27443,"tid":27459,"ts":326460914135,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":702,"tdur":702,"tts":7584861},
-{"pid":27443,"tid":27459,"ts":326460914165,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7584892},
-{"pid":27443,"tid":27459,"ts":326460914196,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":31,"tts":7584922},
-{"pid":27443,"tid":27459,"ts":326460914226,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7584983,"id":"0xaf88a9b6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914257,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7584983},
-{"pid":27443,"tid":27459,"ts":326460914287,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":7585014},
-{"pid":27443,"tid":27459,"ts":326460914348,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7585075,"id":"0xaf88a9b7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914348,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7585106},
-{"pid":27443,"tid":27459,"ts":326460914379,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":7585136},
-{"pid":27443,"tid":27459,"ts":326460914440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7585167,"id":"0xaf88a9b0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914440,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7585197},
-{"pid":27443,"tid":27459,"ts":326460914501,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":0,"tdur":0,"tts":7585228},
-{"pid":27443,"tid":27459,"ts":326460914531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7585258,"id":"0xaf88a9b1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914562,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7585289},
-{"pid":27443,"tid":27459,"ts":326460914592,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":0,"tts":7585319},
-{"pid":27443,"tid":27459,"ts":326460914623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7585350,"id":"0xaf88a9b2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914654,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7585380},
-{"pid":27443,"tid":27459,"ts":326460914684,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":7585411},
-{"pid":27443,"tid":27459,"ts":326460914715,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7585441,"id":"0xaf88a9b3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914745,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7585472},
-{"pid":27443,"tid":27459,"ts":326460914776,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":31,"tts":7585502},
-{"pid":27443,"tid":27459,"ts":326460914806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7585563,"id":"0xaf88a64cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460889},"tts":7585594,"id":"0xaf88a7a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460914898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":7585624},
-{"pid":27443,"tid":27459,"ts":326460914928,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7585655,"id":"0xaf88a7bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460914959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":549,"tdur":550,"tts":7585685},
-{"pid":27443,"tid":27459,"ts":326460914959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7585685,"id":"0xaf88a7bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460914989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7585716,"id":"0xaf88a9bff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460914989,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":519,"tdur":519,"tts":7585716},
-{"pid":27443,"tid":27459,"ts":326460914989,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":519,"tdur":519,"tts":7585716},
-{"pid":27443,"tid":27459,"ts":326460915020,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":197,"frame":"0x78c60000"}},"dur":488,"tdur":489,"tts":7585746},
-{"pid":27443,"tid":27459,"ts":326460915050,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":428,"tdur":427,"tts":7585777},
-{"pid":27443,"tid":27459,"ts":326460915081,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7585808},
-{"pid":27443,"tid":27459,"ts":326460915325,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7586052},
-{"pid":27443,"tid":27459,"ts":326460915417,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":70,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":7586143},
-{"pid":27443,"tid":27459,"ts":326460915447,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7586174},
-{"pid":27443,"tid":27459,"ts":326460915478,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7586204},
-{"pid":27443,"tid":27459,"ts":326460915539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7586265,"id":"0xaf88a7bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460915539,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":396,"tdur":366,"tts":7586296},
-{"pid":27443,"tid":27459,"ts":326460915569,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7586296,"id":"0xaf88a7bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460915569,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7586296,"id":"0xaf88a9b8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460915600,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":335,"tdur":336,"tts":7586326},
-{"pid":27443,"tid":27459,"ts":326460915600,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":305,"tdur":306,"tts":7586326},
-{"pid":27443,"tid":27459,"ts":326460915630,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":198,"frame":"0x78c60000"}},"dur":275,"tdur":275,"tts":7586357},
-{"pid":27443,"tid":27459,"ts":326460915630,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":275,"tdur":245,"tts":7586387},
-{"pid":27443,"tid":27459,"ts":326460915691,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":214,"tdur":183,"tts":7586418},
-{"pid":27443,"tid":27459,"ts":326460915722,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7586448},
-{"pid":27443,"tid":27459,"ts":326460915874,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7586601},
-{"pid":27443,"tid":27459,"ts":326460915966,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7586693,"id":"0xaf88a7bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460915966,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":4547,"tdur":4517,"tts":7586693},
-{"pid":27443,"tid":27459,"ts":326460915966,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7586723,"id":"0xaf88a7bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460915996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7586723,"id":"0xaf88a97ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460915996,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":4487,"tdur":4487,"tts":7586723},
-{"pid":27443,"tid":27459,"ts":326460915996,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":4487,"tdur":4456,"tts":7586754},
-{"pid":27443,"tid":27459,"ts":326460916027,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":172,"frame":"0x78c60000"}},"dur":4456,"tdur":4425,"tts":7586754},
-{"pid":27443,"tid":27459,"ts":326460916057,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":4395,"tdur":4395,"tts":7586784},
-{"pid":27443,"tid":27459,"ts":326460916088,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":144,"frame":"0x78c60000"}},"dur":4364,"tdur":4334,"tts":7586845},
-{"pid":27443,"tid":27459,"ts":326460916119,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7586845},
-{"pid":27443,"tid":27459,"ts":326460916454,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7587181},
-{"pid":27443,"tid":27459,"ts":326460916485,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7587211},
-{"pid":27443,"tid":27459,"ts":326460916485,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7587211},
-{"pid":27443,"tid":27459,"ts":326460918285,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":14,"counters":true},"tts":7589012},
-{"pid":27443,"tid":27459,"ts":326460918316,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":14},"tts":7589043},
-{"pid":27443,"tid":27459,"ts":326460918316,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1434,"tdur":1434,"tts":7589043},
-{"pid":27443,"tid":27459,"ts":326460918408,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":24,"totalObjects":329,"partialLayout":false,"frame":"0x78c60000"}},"tts":7589165},
-{"pid":27443,"tid":27459,"ts":326460918438,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":7589165},
-{"pid":27443,"tid":27459,"ts":326460918469,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7589195},
-{"pid":27443,"tid":27459,"ts":326460919293,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":30,"tdur":31,"tts":7590019},
-{"pid":27443,"tid":27459,"ts":326460919323,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7590050},
-{"pid":27443,"tid":27459,"ts":326460919354,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":244,"tdur":245,"tts":7590080},
-{"pid":27443,"tid":27459,"ts":326460919598,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":91,"tdur":91,"tts":7590325},
-{"pid":27443,"tid":27459,"ts":326460919628,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7590355,"id":"0xaf88a64df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460919659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7590386,"id":"0xaf88a7b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460919689,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":7590447},
-{"pid":27443,"tid":27459,"ts":326460920361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7591088,"id":"0xaf88a64ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460920391,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":200,"frame":"0x78c60000","timeout":500,"singleShot":true}},"tts":7591118,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460920422,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7591149},
-{"pid":27443,"tid":27459,"ts":326460920513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7591240,"id":"0xaf88a7bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460920544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8698,"tdur":7996,"tts":7591271},
-{"pid":27443,"tid":27459,"ts":326460920544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7591271,"id":"0xaf88a7b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460920574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7591301,"id":"0xaf88a9bbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460920574,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8638,"tdur":7935,"tts":7591301},
-{"pid":27443,"tid":27459,"ts":326460920574,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":141},"tts":7591301},
-{"pid":27443,"tid":27459,"ts":326460920605,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7591332},
-{"pid":27443,"tid":27459,"ts":326460920636,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":30,"tdur":31,"tts":7591362},
-{"pid":27443,"tid":27459,"ts":326460920666,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7591393},
-{"pid":27443,"tid":27459,"ts":326460920697,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":5005,"tdur":5006,"tts":7591423},
-{"pid":27443,"tid":27459,"ts":326460920727,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4975,"tdur":4975,"tts":7591454},
-{"pid":27443,"tid":27459,"ts":326460920727,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3479,"tdur":3479,"tts":7591454},
-{"pid":27443,"tid":27459,"ts":326460920758,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":946,"tdur":946,"tts":7591484},
-{"pid":27443,"tid":27459,"ts":326460921704,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":184,"tts":7592430},
-{"pid":27443,"tid":27459,"ts":326460921887,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":366,"tdur":366,"tts":7592614},
-{"pid":27443,"tid":27459,"ts":326460922253,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7592980},
-{"pid":27443,"tid":27459,"ts":326460922284,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1770,"tdur":1771,"tts":7593010},
-{"pid":27443,"tid":27459,"ts":326460924054,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":122,"tdur":122,"tts":7594781},
-{"pid":27443,"tid":27459,"ts":326460924206,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1069,"tdur":1068,"tts":7594933},
-{"pid":27443,"tid":27459,"ts":326460924237,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1038,"tdur":1037,"tts":7594964},
-{"pid":27443,"tid":27459,"ts":326460924237,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":244,"tdur":213,"tts":7594964},
-{"pid":27443,"tid":27459,"ts":326460924481,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":763,"tdur":763,"tts":7595208},
-{"pid":27443,"tid":27459,"ts":326460924542,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":550,"tdur":549,"tts":7595269},
-{"pid":27443,"tid":27459,"ts":326460925275,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7596001},
-{"pid":27443,"tid":27459,"ts":326460925305,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":397,"tdur":397,"tts":7596032},
-{"pid":27443,"tid":27459,"ts":326460925702,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":141},"dur":2655,"tdur":2655,"tts":7596429},
-{"pid":27443,"tid":27459,"ts":326460925732,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":2625,"tdur":2625,"tts":7596459},
-{"pid":27443,"tid":27459,"ts":326460926007,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":427,"tdur":427,"tts":7596734},
-{"pid":27443,"tid":27459,"ts":326460926129,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[20,-252,276,-252,276,7,20,7],"nodeId":70,"layerId":115}},"dur":183,"tdur":153,"tts":7596856},
-{"pid":27443,"tid":27459,"ts":326460926221,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":30,"tdur":31,"tts":7596947},
-{"pid":27443,"tid":27459,"ts":326460926251,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7596978},
-{"pid":27443,"tid":27459,"ts":326460926312,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":7597039},
-{"pid":27443,"tid":27459,"ts":326460926434,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":306,"tdur":305,"tts":7597161},
-{"pid":27443,"tid":27459,"ts":326460926526,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-236,-252,20,-252,20,7,-236,7],"nodeId":71,"layerId":116}},"dur":122,"tdur":122,"tts":7597253},
-{"pid":27443,"tid":27459,"ts":326460926587,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":31,"tdur":30,"tts":7597314},
-{"pid":27443,"tid":27459,"ts":326460926618,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7597344},
-{"pid":27443,"tid":27459,"ts":326460926648,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":30,"tts":7597375},
-{"pid":27443,"tid":27459,"ts":326460926740,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":305,"tdur":275,"tts":7597497},
-{"pid":27443,"tid":27459,"ts":326460926831,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[276,-252,532,-252,532,7,276,7],"nodeId":72,"layerId":117}},"dur":122,"tdur":122,"tts":7597558},
-{"pid":27443,"tid":27459,"ts":326460926892,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":31,"tdur":30,"tts":7597619},
-{"pid":27443,"tid":27459,"ts":326460926923,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7597649},
-{"pid":27443,"tid":27459,"ts":326460926953,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":30,"tts":7597680},
-{"pid":27443,"tid":27459,"ts":326460927045,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":305,"tdur":305,"tts":7597772},
-{"pid":27443,"tid":27459,"ts":326460927136,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-236,516,20,516,20,775,-236,775],"nodeId":73,"layerId":118}},"dur":122,"tdur":122,"tts":7597863},
-{"pid":27443,"tid":27459,"ts":326460927197,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":31,"tdur":31,"tts":7597924},
-{"pid":27443,"tid":27459,"ts":326460927197,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":7597955},
-{"pid":27443,"tid":27459,"ts":326460927258,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":7597985},
-{"pid":27443,"tid":27459,"ts":326460927350,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":275,"tdur":274,"tts":7598077},
-{"pid":27443,"tid":27459,"ts":326460927411,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[20,516,276,516,276,775,20,775],"nodeId":74,"layerId":119}},"dur":122,"tdur":92,"tts":7598168},
-{"pid":27443,"tid":27459,"ts":326460927472,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":30,"tts":7598199},
-{"pid":27443,"tid":27459,"ts":326460927503,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7598229},
-{"pid":27443,"tid":27459,"ts":326460927533,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":0,"tts":7598290},
-{"pid":27443,"tid":27459,"ts":326460927625,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":427,"tdur":397,"tts":7598382},
-{"pid":27443,"tid":27459,"ts":326460927716,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[276,516,532,516,532,775,276,775],"nodeId":75,"layerId":120}},"dur":244,"tdur":244,"tts":7598443},
-{"pid":27443,"tid":27459,"ts":326460927777,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":153,"tdur":153,"tts":7598504},
-{"pid":27443,"tid":27459,"ts":326460927808,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":122,"tdur":122,"tts":7598535},
-{"pid":27443,"tid":27459,"ts":326460927838,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":21487616,"free":7872512},"tts":7598596},
-{"pid":27443,"tid":27459,"ts":326460927960,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":0,"tts":7598718},
-{"pid":27443,"tid":27459,"ts":326460928052,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":141},"dur":305,"tdur":305,"tts":7598779},
-{"pid":27443,"tid":27459,"ts":326460928144,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[276,4,532,4,532,263,276,263],"nodeId":76,"layerId":121}},"dur":122,"tdur":122,"tts":7598870},
-{"pid":27443,"tid":27459,"ts":326460928205,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":30,"tdur":31,"tts":7598931},
-{"pid":27443,"tid":27459,"ts":326460928235,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7598962},
-{"pid":27443,"tid":27459,"ts":326460928266,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":30,"tdur":31,"tts":7598992},
-{"pid":27443,"tid":27459,"ts":326460928388,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":793,"tdur":92,"tts":7599114},
-{"pid":27443,"tid":27459,"ts":326460928388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599114,"id":"0xaf88a405f182217a"},
-{"pid":27443,"tid":27459,"ts":326460929212,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7599236},
-{"pid":27443,"tid":27459,"ts":326460929273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599298,"id":"0xaf88a7b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7599298},
-{"pid":27443,"tid":27459,"ts":326460929303,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599328,"id":"0xaf88a7baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7599328,"id":"0xaf88a9b5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460929334,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/Document.cpp","src_func":"checkLoadEventSoon"},"dur":30,"tdur":30,"tts":7599359},
-{"pid":27443,"tid":27459,"ts":326460929334,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":7599359},
-{"pid":27443,"tid":27459,"ts":326460929395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599420,"id":"0xaf88a7baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929395,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7599420},
-{"pid":27443,"tid":27459,"ts":326460929425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599450,"id":"0xaf88a7bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929425,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7599450,"id":"0xaf88a9b6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460929456,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":0,"tts":7599481},
-{"pid":27443,"tid":27459,"ts":326460929456,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7599481},
-{"pid":27443,"tid":27459,"ts":326460929517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599542,"id":"0xaf88a7bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929517,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7599542},
-{"pid":27443,"tid":27459,"ts":326460929547,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599572,"id":"0xaf88a7b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7599572,"id":"0xaf88a9b7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460929547,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7599572},
-{"pid":27443,"tid":27459,"ts":326460929578,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7599603},
-{"pid":27443,"tid":27459,"ts":326460929609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599633,"id":"0xaf88a7b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7599664},
-{"pid":27443,"tid":27459,"ts":326460929639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599664,"id":"0xaf88a7b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7599694,"id":"0xaf88a9b0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460929670,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":31,"tts":7599694},
-{"pid":27443,"tid":27459,"ts":326460929670,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":31,"tts":7599694},
-{"pid":27443,"tid":27459,"ts":326460929731,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599755,"id":"0xaf88a7b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929731,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7599755},
-{"pid":27443,"tid":27459,"ts":326460929761,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599786,"id":"0xaf88a7b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7599786,"id":"0xaf88a9b1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460929792,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":0,"tts":7599816},
-{"pid":27443,"tid":27459,"ts":326460929792,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7599816},
-{"pid":27443,"tid":27459,"ts":326460929822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599847,"id":"0xaf88a7b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929853,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7599877},
-{"pid":27443,"tid":27459,"ts":326460929853,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599877,"id":"0xaf88a7b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929883,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7599908,"id":"0xaf88a9b2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460929883,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7599908},
-{"pid":27443,"tid":27459,"ts":326460929883,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":7599908},
-{"pid":27443,"tid":27459,"ts":326460929944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7599969,"id":"0xaf88a7b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":91,"tts":7600000},
-{"pid":27443,"tid":27459,"ts":326460929975,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7600000,"id":"0xaf88a7b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460929975,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7600000,"id":"0xaf88a9b3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460930036,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":7600061},
-{"pid":27443,"tid":27459,"ts":326460930036,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7600061},
-{"pid":27443,"tid":27459,"ts":326460930097,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7600122,"id":"0xaf88a7b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460930097,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7600122},
-{"pid":27443,"tid":27459,"ts":326460930097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7600152,"id":"0xaf88a7b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460930127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7600152,"id":"0xaf88a64cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460930127,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":7600152},
-{"pid":27443,"tid":27459,"ts":326460930127,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":7600183},
-{"pid":27443,"tid":27459,"ts":326460930188,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7600213,"id":"0xaf88a7b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460930188,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":4334,"tdur":4334,"tts":7600213},
-{"pid":27443,"tid":27459,"ts":326460930219,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7600244,"id":"0xaf88a7b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460930219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7600244,"id":"0xaf88a9b4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460930249,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":4243,"tdur":4243,"tts":7600274},
-{"pid":27443,"tid":27459,"ts":326460930249,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":4243,"tdur":4243,"tts":7600274},
-{"pid":27443,"tid":27459,"ts":326460930280,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":199,"frame":"0x78c60000"}},"dur":4212,"tdur":4181,"tts":7600305},
-{"pid":27443,"tid":27459,"ts":326460930310,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":4151,"tdur":4151,"tts":7600335},
-{"pid":27443,"tid":27459,"ts":326460930372,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":4089,"tdur":4059,"tts":7600427},
-{"pid":27443,"tid":27459,"ts":326460930402,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7600427},
-{"pid":27443,"tid":27459,"ts":326460933363,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":122,"tdur":91,"tts":7603418},
-{"pid":27443,"tid":27459,"ts":326460933515,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7603540,"id":"0xaf88a64ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460934003,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7604028},
-{"pid":27443,"tid":27459,"ts":326460934034,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7604059,"id":"0xaf88a400f182217a"},
-{"pid":27443,"tid":27459,"ts":326460934217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7604242,"id":"0xaf88a648f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460934217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7604272,"id":"0xaf88a7b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460934278,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":201,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7604303,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460934339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7604394,"id":"0xaf88a649f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460934400,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":202,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7604425,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460934431,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7604455},
-{"pid":27443,"tid":27459,"ts":326460934553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7604578,"id":"0xaf88a7b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460934553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":213,"tts":7604578},
-{"pid":27443,"tid":27459,"ts":326460934583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7604608,"id":"0xaf88a44cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460930677,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":705539,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460930768,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":705631,"id":"0xaf88a406f182217a"},
-{"pid":27443,"tid":27477,"ts":326460930768,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":705631},
-{"pid":27443,"tid":27477,"ts":326460930768,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":705631},
-{"pid":27443,"tid":27477,"ts":326460930799,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6303744,"bytes_used_for_staging_resources":10616832,"pending_copy_count":19,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":705661,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460930799,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":705661},
-{"pid":27443,"tid":27477,"ts":326460930829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":705692,"id":"0xaf88a407f182217a"},
-{"pid":27443,"tid":27477,"ts":326460930860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":705722,"id":"0xaf88a407f182217a"},
-{"pid":27443,"tid":27477,"ts":326460930860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":705722},
-{"pid":27443,"tid":27477,"ts":326460930860,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":153,"tts":705722},
-{"pid":27443,"tid":27477,"ts":326460930860,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":705753},
-{"pid":27443,"tid":27477,"ts":326460930890,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":705753},
-{"pid":27443,"tid":27477,"ts":326460930890,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":91,"tts":705753},
-{"pid":27443,"tid":27477,"ts":326460930921,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":705783},
-{"pid":27443,"tid":27477,"ts":326460930982,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":705844},
-{"pid":27443,"tid":27477,"ts":326460930982,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":705844},
-{"pid":27443,"tid":27477,"ts":326460934126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":705966,"id":"0xaf88a400f182217a"},
-{"pid":27443,"tid":27477,"ts":326460934126,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":705966},
-{"pid":27443,"tid":27477,"ts":326460934126,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":705966},
-{"pid":27443,"tid":27477,"ts":326460936628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460936},"tts":706027,"id":"0xaf88a404f182217a"},
-{"pid":27443,"tid":27477,"ts":326460936659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":706058},
-{"pid":27443,"tid":27477,"ts":326460936659,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":706058},
-{"pid":27443,"tid":27477,"ts":326460937391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":706119,"id":"0xaf88a401f182217a"},
-{"pid":27443,"tid":27477,"ts":326460937391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":706119},
-{"pid":27443,"tid":27477,"ts":326460937422,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460942172.0,"frame_time_us":326460936349.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":706149},
-{"pid":27443,"tid":27477,"ts":326460937452,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460942172.0,"frame_time_us":326460936349.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":706180},
-{"pid":27443,"tid":27477,"ts":326460937483,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460953015},"dur":30,"tdur":31,"tts":706210},
-{"pid":27443,"tid":27477,"ts":326460937483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":706210,"id":"0xaf88a402f182217a"},
-{"pid":27443,"tid":27477,"ts":326460953140,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460953},"tts":706333,"id":"0xaf88a402f182217a"},
-{"pid":27443,"tid":27477,"ts":326460953170,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":706363},
-{"pid":27443,"tid":27477,"ts":326460953170,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":706363},
-{"pid":27443,"tid":27477,"ts":326460954147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":706485,"id":"0xaf88a403f182217a"},
-{"pid":27443,"tid":27477,"ts":326460954147,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":706485},
-{"pid":27443,"tid":27477,"ts":326460954177,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460958854.0,"frame_time_us":326460953031.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":706516},
-{"pid":27443,"tid":27477,"ts":326460954208,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460958854.0,"frame_time_us":326460953031.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":706546},
-{"pid":27443,"tid":27477,"ts":326460954238,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460969697},"dur":31,"tdur":30,"tts":706577},
-{"pid":27443,"tid":27477,"ts":326460954269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":706607,"id":"0xaf88a41cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460969865,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460969},"tts":706729,"id":"0xaf88a41cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460969895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":706760},
-{"pid":27443,"tid":27477,"ts":326460969895,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":0,"tts":706760},
-{"pid":27443,"tid":27477,"ts":326460973466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":706851,"id":"0xaf88a41df182217a"},
-{"pid":27443,"tid":27477,"ts":326460973466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":706851},
-{"pid":27443,"tid":27477,"ts":326460973497,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460975535.0,"frame_time_us":326460969712.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":706882},
-{"pid":27443,"tid":27477,"ts":326460973527,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460975535.0,"frame_time_us":326460969712.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":706912},
-{"pid":27443,"tid":27477,"ts":326460973558,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326460986378},"dur":30,"tdur":30,"tts":706943},
-{"pid":27443,"tid":27477,"ts":326460973588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":706973,"id":"0xaf88a41ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460982470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":707065,"id":"0xaf88a41ff182217a"},
-{"pid":27443,"tid":27477,"ts":326460982500,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":733,"tdur":549,"tts":707096},
-{"pid":27443,"tid":27477,"ts":326460982531,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":10},"dur":427,"tdur":427,"tts":707126},
-{"pid":27443,"tid":27477,"ts":326460982561,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":707157},
-{"pid":27443,"tid":27477,"ts":326460982622,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":707218},
-{"pid":27443,"tid":27477,"ts":326460982683,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":707279},
-{"pid":27443,"tid":27477,"ts":326460982744,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":707340},
-{"pid":27443,"tid":27477,"ts":326460982775,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":707370},
-{"pid":27443,"tid":27477,"ts":326460982836,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":707431},
-{"pid":27443,"tid":27477,"ts":326460982867,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":707462},
-{"pid":27443,"tid":27477,"ts":326460982867,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":707492},
-{"pid":27443,"tid":27477,"ts":326460982897,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":707492},
-{"pid":27443,"tid":27477,"ts":326460982928,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":707523},
-{"pid":27443,"tid":27477,"ts":326460982958,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14034},"dur":275,"tdur":92,"tts":707553},
-{"pid":27443,"tid":27477,"ts":326460982989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":707584,"id":"0xaf88ab4bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460986529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460986},"tts":707767,"id":"0xaf88a41ef182217a"},
-{"pid":27443,"tid":27477,"ts":326460986529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":707767},
-{"pid":27443,"tid":27477,"ts":326460986529,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":707767},
-{"pid":27443,"tid":27469,"ts":326460930768,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":350099},
-{"pid":27443,"tid":27471,"ts":326460930768,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":22536192,"free":6823936},"tts":402685},
-{"pid":27443,"tid":27471,"ts":326460930829,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":12788,"tdur":12422,"tts":402746},
-{"pid":27443,"tid":27471,"ts":326460930829,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd200","decodeCount":0},"dur":12758,"tdur":12422,"tts":402746},
-{"pid":27443,"tid":27471,"ts":326460930829,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":12758,"tdur":12422,"tts":402746},
-{"pid":27443,"tid":27469,"ts":326460930829,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":23584768,"free":5775360},"tts":350160},
-{"pid":27443,"tid":27471,"ts":326460930860,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":12727,"tdur":12391,"tts":402777},
-{"pid":27443,"tid":27469,"ts":326460930860,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":12269,"tdur":11292,"tts":350160},
-{"pid":27443,"tid":27469,"ts":326460930890,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd320","decodeCount":0},"dur":12239,"tdur":11262,"tts":350190},
-{"pid":27443,"tid":27469,"ts":326460930890,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":12209,"tdur":11232,"tts":350190},
-{"pid":27443,"tid":27469,"ts":326460930890,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":12209,"tdur":11232,"tts":350190},
-{"pid":27443,"tid":27469,"ts":326460943160,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1007,"tdur":1007,"tts":361483},
-{"pid":27443,"tid":27469,"ts":326460943190,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":977,"tdur":977,"tts":361513},
-{"pid":27443,"tid":27469,"ts":326460943221,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28ddf8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":361544},
-{"pid":27443,"tid":27469,"ts":326460943221,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":361544},
-{"pid":27443,"tid":27469,"ts":326460943282,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":361605},
-{"pid":27443,"tid":27469,"ts":326460943282,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28ddf8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":361605},
-{"pid":27443,"tid":27469,"ts":326460943312,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":361635,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460943617,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":415199},
-{"pid":27443,"tid":27471,"ts":326460943648,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":671,"tdur":672,"tts":415229},
-{"pid":27443,"tid":27471,"ts":326460943648,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e2a24b0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":415229},
-{"pid":27443,"tid":27471,"ts":326460943678,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":415260},
-{"pid":27443,"tid":27471,"ts":326460943709,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":415290},
-{"pid":27443,"tid":27471,"ts":326460943709,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e2a24b0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":415290},
-{"pid":27443,"tid":27471,"ts":326460943739,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":415321,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460944136,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":362459},
-{"pid":27443,"tid":27469,"ts":326460944167,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":610,"tdur":610,"tts":362490},
-{"pid":27443,"tid":27469,"ts":326460944167,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":610,"tdur":610,"tts":362490},
-{"pid":27443,"tid":27469,"ts":326460944197,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e2a2528"},"tileResolution":"HIGH_RESOLUTION"}},"tts":362520},
-{"pid":27443,"tid":27469,"ts":326460944197,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":362520},
-{"pid":27443,"tid":27469,"ts":326460944258,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":362582},
-{"pid":27443,"tid":27469,"ts":326460944258,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e2a2528"},"tileResolution":"HIGH_RESOLUTION"}},"tts":362582},
-{"pid":27443,"tid":27469,"ts":326460944289,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":362612,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460944319,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":415901},
-{"pid":27443,"tid":27471,"ts":326460944350,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":415931},
-{"pid":27443,"tid":27471,"ts":326460944350,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":415931},
-{"pid":27443,"tid":27471,"ts":326460944380,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28df70"},"tileResolution":"HIGH_RESOLUTION"}},"tts":415962},
-{"pid":27443,"tid":27471,"ts":326460944380,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":415962},
-{"pid":27443,"tid":27471,"ts":326460944411,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":415992},
-{"pid":27443,"tid":27471,"ts":326460944441,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28df70"},"tileResolution":"HIGH_RESOLUTION"}},"tts":416023},
-{"pid":27443,"tid":27471,"ts":326460944441,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":416053,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460944747,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":363070},
-{"pid":27443,"tid":27469,"ts":326460944777,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":12330,"tdur":12331,"tts":363100},
-{"pid":27443,"tid":27469,"ts":326460944777,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":12300,"tdur":12300,"tts":363100},
-{"pid":27443,"tid":27469,"ts":326460944808,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":363131},
-{"pid":27443,"tid":27469,"ts":326460944808,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":363131},
-{"pid":27443,"tid":27469,"ts":326460944808,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":24633344,"free":4726784},"tts":363161},
-{"pid":27443,"tid":27469,"ts":326460944838,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":12208,"tdur":12178,"tts":363192},
-{"pid":27443,"tid":27469,"ts":326460944869,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd3e0","decodeCount":0},"dur":12177,"tdur":12178,"tts":363192},
-{"pid":27443,"tid":27469,"ts":326460944869,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":12177,"tdur":12178,"tts":363192},
-{"pid":27443,"tid":27469,"ts":326460944869,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":12177,"tdur":12147,"tts":363192},
-{"pid":27443,"tid":27471,"ts":326460945082,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":416694},
-{"pid":27443,"tid":27471,"ts":326460945113,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":14650,"tdur":14467,"tts":416694},
-{"pid":27443,"tid":27471,"ts":326460945143,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":14589,"tdur":14405,"tts":416725},
-{"pid":27443,"tid":27471,"ts":326460945143,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":416725},
-{"pid":27443,"tid":27471,"ts":326460945143,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":416725},
-{"pid":27443,"tid":27471,"ts":326460945174,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":25681920,"free":3678208},"tts":416755},
-{"pid":27443,"tid":27471,"ts":326460945174,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":14528,"tdur":14314,"tts":416786},
-{"pid":27443,"tid":27471,"ts":326460945204,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd2c0","decodeCount":0},"dur":14498,"tdur":14314,"tts":416786},
-{"pid":27443,"tid":27471,"ts":326460945204,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":14467,"tdur":14283,"tts":416786},
-{"pid":27443,"tid":27471,"ts":326460945204,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":14467,"tdur":14283,"tts":416786},
-{"pid":27443,"tid":27469,"ts":326460957107,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":977,"tdur":976,"tts":375431},
-{"pid":27443,"tid":27469,"ts":326460957107,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":977,"tdur":976,"tts":375431},
-{"pid":27443,"tid":27469,"ts":326460957138,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28d330"},"tileResolution":"HIGH_RESOLUTION"}},"tts":375461},
-{"pid":27443,"tid":27459,"ts":326460934583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7604608,"id":"0xaf88a64ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460934614,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":152,"tdur":152,"tts":7604639},
-{"pid":27443,"tid":27459,"ts":326460934614,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":152,"tdur":152,"tts":7604639},
-{"pid":27443,"tid":27459,"ts":326460934644,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7604669},
-{"pid":27443,"tid":27459,"ts":326460934675,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":7604700},
-{"pid":27443,"tid":27459,"ts":326460934736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7604761,"id":"0xaf88a64af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460934797,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7604822,"id":"0xaf88a44cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460934797,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7604822},
-{"pid":27443,"tid":27459,"ts":326460934828,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7604852,"id":"0xaf88a44df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460934828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7604852,"id":"0xaf88a64af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460934858,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":7604883},
-{"pid":27443,"tid":27459,"ts":326460934858,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7604883},
-{"pid":27443,"tid":27459,"ts":326460934919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7604944,"id":"0xaf88a44df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460934919,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7604944},
-{"pid":27443,"tid":27459,"ts":326460935316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460935},"tts":7605035,"id":"0xaf88a7b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460935346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":7605066},
-{"pid":27443,"tid":27459,"ts":326460935346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7605066,"id":"0xaf88a44ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460935377,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7605096,"id":"0xaf88a44ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460935407,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7605127,"id":"0xaf88a44ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460935407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1190,"tts":7605127},
-{"pid":27443,"tid":27459,"ts":326460935438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7605157,"id":"0xaf88a448f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460935468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7605188,"id":"0xaf88a648f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460935468,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1099,"tdur":1099,"tts":7605188},{"pid":27443,"tid":27459,"ts":326460935468,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1099,"tdur":1099,"tts":7605188},
-{"pid":27443,"tid":27459,"ts":326460935499,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":201,"frame":"0x78c60000"}},"dur":1068,"tdur":1069,"tts":7605218},
-{"pid":27443,"tid":27459,"ts":326460935529,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1038,"tdur":1007,"tts":7605249},
-{"pid":27443,"tid":27459,"ts":326460935591,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":946,"tdur":946,"tts":7605310},
-{"pid":27443,"tid":27459,"ts":326460935621,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7605341},
-{"pid":27443,"tid":27459,"ts":326460936109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7605829,"id":"0xaf88a64bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460936140,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":203,"frame":"0x78c60000","timeout":1000,"singleShot":true}},"tts":7605890,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326460936537,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7606256},
-{"pid":27443,"tid":27459,"ts":326460936628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7606348,"id":"0xaf88a448f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460936628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":397,"tts":7606348},
-{"pid":27443,"tid":27459,"ts":326460936628,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7606378,"id":"0xaf88a449f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460936659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7606378,"id":"0xaf88a649f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460936659,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":366,"tdur":367,"tts":7606378},
-{"pid":27443,"tid":27459,"ts":326460936659,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":366,"tdur":336,"tts":7606409},
-{"pid":27443,"tid":27459,"ts":326460936689,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":202,"frame":"0x78c60000"}},"dur":305,"tdur":275,"tts":7606439},
-{"pid":27443,"tid":27459,"ts":326460936720,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":274,"tdur":275,"tts":7606439},
-{"pid":27443,"tid":27459,"ts":326460936781,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":213,"tdur":214,"tts":7606500},
-{"pid":27443,"tid":27459,"ts":326460936811,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7606531},
-{"pid":27443,"tid":27459,"ts":326460936964,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7606683},
-{"pid":27443,"tid":27459,"ts":326460937055,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460935},"tts":7606775,"id":"0xaf88a44ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460937086,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7606806},
-{"pid":27443,"tid":27459,"ts":326460937117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7606836,"id":"0xaf88a449f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460937117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7606836},
-{"pid":27443,"tid":27459,"ts":326460940779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460940},"tts":7606958,"id":"0xaf88a7b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460940779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":7606958},
-{"pid":27443,"tid":27459,"ts":326460940809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7606989,"id":"0xaf88a44af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460940840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7607019,"id":"0xaf88a44af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460940871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7607050},
-{"pid":27443,"tid":27459,"ts":326460940871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7607080,"id":"0xaf88a44bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460940901,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7607080,"id":"0xaf88a64df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460940901,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":61,"tts":7607080},
-{"pid":27443,"tid":27459,"ts":326460940932,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":7607111},
-{"pid":27443,"tid":27459,"ts":326460940932,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":30,"tdur":30,"tts":7607111},
-{"pid":27443,"tid":27459,"ts":326460940993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7607172,"id":"0xaf88a44bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460940993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7607172},
-{"pid":27443,"tid":27459,"ts":326460994556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7607294,"id":"0xaf88a444f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460994556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10255,"tdur":8668,"tts":7607294},
-{"pid":27443,"tid":27459,"ts":326460994586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7607324,"id":"0xaf88a445f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460994586,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7607324,"id":"0xaf88a644f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460994617,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10163,"tdur":8607,"tts":7607355},
-{"pid":27443,"tid":27459,"ts":326460994617,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":142},"tts":7607355},
-{"pid":27443,"tid":27469,"ts":326460957138,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":375461},
-{"pid":27443,"tid":27469,"ts":326460957199,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":375522},
-{"pid":27443,"tid":27469,"ts":326460957229,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28d330"},"tileResolution":"HIGH_RESOLUTION"}},"tts":375553},
-{"pid":27443,"tid":27469,"ts":326460957260,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":375583,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460958084,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":376407},
-{"pid":27443,"tid":27469,"ts":326460958115,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":17823,"tdur":17824,"tts":376438},
-{"pid":27443,"tid":27469,"ts":326460958115,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":17793,"tdur":17793,"tts":376438},
-{"pid":27443,"tid":27469,"ts":326460958115,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":376438},
-{"pid":27443,"tid":27469,"ts":326460958115,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":376438},
-{"pid":27443,"tid":27469,"ts":326460958145,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":26730496,"free":2629632},"tts":376468},
-{"pid":27443,"tid":27469,"ts":326460958176,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":17701,"tdur":17702,"tts":376499},
-{"pid":27443,"tid":27469,"ts":326460958176,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd380","decodeCount":0},"dur":17671,"tdur":17671,"tts":376499},
-{"pid":27443,"tid":27469,"ts":326460958206,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":17641,"tdur":17641,"tts":376529},
-{"pid":27443,"tid":27469,"ts":326460958206,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":17610,"tdur":17611,"tts":376529},
-{"pid":27443,"tid":27471,"ts":326460959763,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":976,"tdur":976,"tts":431161},
-{"pid":27443,"tid":27471,"ts":326460959793,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":946,"tts":431191},
-{"pid":27443,"tid":27471,"ts":326460959824,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28b228"},"tileResolution":"HIGH_RESOLUTION"}},"tts":431222},
-{"pid":27443,"tid":27471,"ts":326460959824,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":431222},
-{"pid":27443,"tid":27471,"ts":326460959915,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":431313},
-{"pid":27443,"tid":27471,"ts":326460959946,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28b228"},"tileResolution":"HIGH_RESOLUTION"}},"tts":431344},
-{"pid":27443,"tid":27471,"ts":326460959976,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":431374,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460960709,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":432107},
-{"pid":27443,"tid":27471,"ts":326460960739,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":19778,"tdur":18739,"tts":432168},
-{"pid":27443,"tid":27471,"ts":326460960770,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":19747,"tdur":18739,"tts":432168},
-{"pid":27443,"tid":27471,"ts":326460960800,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":432198},
-{"pid":27443,"tid":27471,"ts":326460960800,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":432198},
-{"pid":27443,"tid":27471,"ts":326460960831,"ph":"X","cat":"renderer","name":"ChildDiscardableSharedMemoryManager::AllocateLockedDiscardableSharedMemory","args":{"size":4194304,"id":7},"dur":1068,"tdur":214,"tts":432229},
-{"pid":27443,"tid":27471,"ts":326460960861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":432260,"id":"0xaf88ab4af3d03dca"},
-{"pid":27443,"tid":27471,"ts":326460961930,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":27779072,"free":5775360},"tts":432473},
-{"pid":27443,"tid":27471,"ts":326460961960,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":18526,"tdur":18373,"tts":432504},
-{"pid":27443,"tid":27471,"ts":326460961991,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd260","decodeCount":0},"dur":18464,"tdur":18312,"tts":432534},
-{"pid":27443,"tid":27471,"ts":326460961991,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":18434,"tdur":18282,"tts":432534},
-{"pid":27443,"tid":27471,"ts":326460961991,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":18434,"tdur":18251,"tts":432565},
-{"pid":27443,"tid":27469,"ts":326460975938,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1160,"tdur":1159,"tts":394262},
-{"pid":27443,"tid":27469,"ts":326460975969,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1129,"tdur":1129,"tts":394292},
-{"pid":27443,"tid":27469,"ts":326460975999,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28c7b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":394323},
-{"pid":27443,"tid":27469,"ts":326460976030,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":92,"tdur":92,"tts":394353},
-{"pid":27443,"tid":27469,"ts":326460976122,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":394445},
-{"pid":27443,"tid":27469,"ts":326460976152,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28c7b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":394475},
-{"pid":27443,"tid":27469,"ts":326460976183,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":394536,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460977068,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":395421},
-{"pid":27443,"tid":27469,"ts":326460977098,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":885,"tdur":886,"tts":395421},
-{"pid":27443,"tid":27469,"ts":326460977129,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":824,"tts":395452},
-{"pid":27443,"tid":27469,"ts":326460977129,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28c880"},"tileResolution":"HIGH_RESOLUTION"}},"tts":395452},
-{"pid":27443,"tid":27469,"ts":326460977129,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":395452},
-{"pid":27443,"tid":27469,"ts":326460977190,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":395513},
-{"pid":27443,"tid":27469,"ts":326460977190,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28c880"},"tileResolution":"HIGH_RESOLUTION"}},"tts":395513},
-{"pid":27443,"tid":27469,"ts":326460977220,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":395544,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460977953,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":396276},
-{"pid":27443,"tid":27469,"ts":326460977983,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":12941,"tdur":12665,"tts":396307},
-{"pid":27443,"tid":27469,"ts":326460977983,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":12941,"tdur":12665,"tts":396307},
-{"pid":27443,"tid":27469,"ts":326460977983,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":396307},
-{"pid":27443,"tid":27469,"ts":326460977983,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":396307},
-{"pid":27443,"tid":27469,"ts":326460978014,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":28827648,"free":4726784},"tts":396337},
-{"pid":27443,"tid":27469,"ts":326460978044,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":12819,"tdur":12543,"tts":396368},
-{"pid":27443,"tid":27469,"ts":326460978044,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd440","decodeCount":0},"dur":12819,"tdur":12513,"tts":396398},
-{"pid":27443,"tid":27469,"ts":326460978075,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":12788,"tdur":12513,"tts":396398},
-{"pid":27443,"tid":27469,"ts":326460978075,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":12757,"tdur":12483,"tts":396398},
-{"pid":27443,"tid":27471,"ts":326460980547,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":916,"tts":450938},
-{"pid":27443,"tid":27471,"ts":326460980578,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":450969},
-{"pid":27443,"tid":27471,"ts":326460980608,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e2fe678"},"tileResolution":"HIGH_RESOLUTION"}},"tts":450999},
-{"pid":27443,"tid":27471,"ts":326460980639,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":91,"tts":451030},
-{"pid":27443,"tid":27471,"ts":326460980730,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":451121},
-{"pid":27443,"tid":27471,"ts":326460980761,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e2fe678"},"tileResolution":"HIGH_RESOLUTION"}},"tts":451152},
-{"pid":27443,"tid":27466,"ts":326460973192,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":122,"tts":361025},
-{"pid":27443,"tid":27466,"ts":326460973222,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":361055,"id":"0xba45fa02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460973283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":361117,"id":"0xaf88a41df182217a"},
-{"pid":27443,"tid":27466,"ts":326460983111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":361300,"id":"0xaf88ab4bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460983141,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":361330},
-{"pid":27443,"tid":27466,"ts":326460983141,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":361330,"id":"0xccc55502"},
-{"pid":27443,"tid":27466,"ts":326460988635,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":361422},
-{"pid":27443,"tid":27466,"ts":326460988665,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":361452},
-{"pid":27443,"tid":27466,"ts":326460988665,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":361452,"id":"0xba45fb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460988726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":361513,"id":"0xaf88a418f182217a"},
-{"pid":27443,"tid":27466,"ts":326460995960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":361635,"id":"0xaf88ab44f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460995990,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":361666},
-{"pid":27443,"tid":27466,"ts":326460996021,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":361696,"id":"0xccc55602"},
-{"pid":27443,"tid":27466,"ts":326460996082,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":361757,"id":"0xaf88ab45f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460996082,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":361757},
-{"pid":27443,"tid":27466,"ts":326460996082,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":361757,"id":"0xccc55706"},
-{"pid":27443,"tid":27466,"ts":326460996357,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":361849},
-{"pid":27443,"tid":27466,"ts":326460996387,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":361880},
-{"pid":27443,"tid":27466,"ts":326460996387,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":361880,"id":"0xc4c1c40a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460996753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":362002,"id":"0xaf88ab46f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326460996753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":362002},
-{"pid":27443,"tid":27466,"ts":326460996753,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":362002,"id":"0xccc55802"},
-{"pid":27443,"tid":27466,"ts":326460999164,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":362124},
-{"pid":27443,"tid":27466,"ts":326460999195,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":91,"tts":362185},
-{"pid":27443,"tid":27466,"ts":326460999225,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":362185,"id":"0xba45fc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326460999256,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":362215,"id":"0xaf88a42cf182217a"},
-{"pid":27443,"tid":27466,"ts":326461003956,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":362337},
-{"pid":27443,"tid":27466,"ts":326461003987,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":362368},
-{"pid":27443,"tid":27466,"ts":326461004017,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":362398,"id":"0xba45fe02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461004048,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":362429,"id":"0xaf88a42ef182217a"},
-{"pid":27443,"tid":27466,"ts":326461020742,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":362490},
-{"pid":27443,"tid":27466,"ts":326461020803,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":92,"tts":362551},
-{"pid":27443,"tid":27466,"ts":326461020803,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":362551,"id":"0xba45ff02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461020864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":362612,"id":"0xaf88a42af182217a"},
-{"pid":27443,"tid":27466,"ts":326461034049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":362826,"id":"0xaf88ab47f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461034080,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":362826},
-{"pid":27443,"tid":27466,"ts":326461034080,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":362826,"id":"0xccc55902"},
-{"pid":27443,"tid":27466,"ts":326461034171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":362917,"id":"0xaf88ab40f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461034171,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":362917},
-{"pid":27443,"tid":27466,"ts":326461034171,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":362917,"id":"0xccc55a06"},
-{"pid":27443,"tid":27466,"ts":326461034415,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":363009},
-{"pid":27443,"tid":27466,"ts":326461034446,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":363039},
-{"pid":27443,"tid":27466,"ts":326461034477,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":363070,"id":"0xc4c1c70a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461034934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":363192,"id":"0xaf88ab41f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461034965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":363222},
-{"pid":27443,"tid":27466,"ts":326461034965,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":363222,"id":"0xccc55b02"},
-{"pid":27443,"tid":27466,"ts":326461037712,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":363344},
-{"pid":27443,"tid":27466,"ts":326461037742,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":122,"tts":363375},
-{"pid":27443,"tid":27466,"ts":326461037773,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":363406,"id":"0xba460002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461037803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":363436,"id":"0xaf88a43df182217a"},
-{"pid":27443,"tid":27466,"ts":326461039512,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":363558},
-{"pid":27443,"tid":27466,"ts":326461039543,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":363589},
-{"pid":27443,"tid":27466,"ts":326461039573,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":363619,"id":"0xba460202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461039604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":363650,"id":"0xaf88a43ef182217a"},
-{"pid":27443,"tid":27466,"ts":326461053369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":363741,"id":"0xaf88ab42f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461053399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":363772},
-{"pid":27443,"tid":27466,"ts":326461053399,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":363772,"id":"0xccc55c02"},
-{"pid":27443,"tid":27466,"ts":326461054437,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":363894},
-{"pid":27443,"tid":27466,"ts":326461054498,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":363955},
-{"pid":27443,"tid":27466,"ts":326461054498,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":363955,"id":"0xba460302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461054559,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":364016,"id":"0xaf88a438f182217a"},
-{"pid":27443,"tid":27466,"ts":326461114013,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":457,"tdur":458,"tts":364199},
-{"pid":27443,"tid":27466,"ts":326461114104,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":336,"tdur":335,"tts":364291},
-{"pid":27443,"tid":27466,"ts":326461114135,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":364321,"id":"0xba460402","bp":"e"},
-{"pid":27443,"tid":27471,"ts":326460980791,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":451182,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460981432,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":451823},
-{"pid":27443,"tid":27471,"ts":326460981493,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":977,"tdur":977,"tts":451884},
-{"pid":27443,"tid":27471,"ts":326460981493,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":946,"tts":451884},
-{"pid":27443,"tid":27471,"ts":326460981524,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28e020"},"tileResolution":"HIGH_RESOLUTION"}},"tts":451915},
-{"pid":27443,"tid":27471,"ts":326460981554,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":451945},
-{"pid":27443,"tid":27471,"ts":326460981615,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":452006},
-{"pid":27443,"tid":27471,"ts":326460981646,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28e020"},"tileResolution":"HIGH_RESOLUTION"}},"tts":452037},
-{"pid":27443,"tid":27471,"ts":326460981676,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":452067,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460982378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":452769,"id":"0xaf88a41ff182217a"},
-{"pid":27443,"tid":27471,"ts":326460982439,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":452830},
-{"pid":27443,"tid":27471,"ts":326460982470,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1190,"tdur":1007,"tts":452861},
-{"pid":27443,"tid":27471,"ts":326460982470,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1160,"tdur":946,"tts":452891},
-{"pid":27443,"tid":27471,"ts":326460982531,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28dec0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":452922},
-{"pid":27443,"tid":27471,"ts":326460982531,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":61,"tts":452952},
-{"pid":27443,"tid":27471,"ts":326460982622,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":453013},
-{"pid":27443,"tid":27471,"ts":326460982683,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28dec0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":453074},
-{"pid":27443,"tid":27471,"ts":326460982714,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":453105,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460983630,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":453837},
-{"pid":27443,"tid":27471,"ts":326460983660,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":855,"tdur":824,"tts":453868},
-{"pid":27443,"tid":27471,"ts":326460983660,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":824,"tts":453868},
-{"pid":27443,"tid":27471,"ts":326460983691,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28b2b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":453898},
-{"pid":27443,"tid":27471,"ts":326460983691,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":453898},
-{"pid":27443,"tid":27471,"ts":326460983752,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":453960},
-{"pid":27443,"tid":27471,"ts":326460983752,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28b2b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":453960},
-{"pid":27443,"tid":27471,"ts":326460983782,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":453990,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326460984484,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":454692},
-{"pid":27443,"tid":27469,"ts":326460990924,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":977,"tdur":947,"tts":408972},
-{"pid":27443,"tid":27469,"ts":326460990954,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":947,"tdur":916,"tts":409003},
-{"pid":27443,"tid":27469,"ts":326460990985,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28bd38"},"tileResolution":"HIGH_RESOLUTION"}},"tts":409034},
-{"pid":27443,"tid":27469,"ts":326460990985,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":409034},
-{"pid":27443,"tid":27469,"ts":326460991046,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":409095},
-{"pid":27443,"tid":27469,"ts":326460991077,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":141,"tileId":{"id_ref":"0x7e28bd38"},"tileResolution":"HIGH_RESOLUTION"}},"tts":409125},
-{"pid":27443,"tid":27469,"ts":326460991107,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":409156,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326460991748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":409797,"id":"0xaf88a41af182217a"},
-{"pid":27443,"tid":27469,"ts":326460991779,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":91,"tdur":61,"tts":409827},
-{"pid":27443,"tid":27469,"ts":326460991901,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":409919},
-{"pid":27443,"tid":27469,"ts":326460991901,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":409919},
-{"pid":27443,"tid":27469,"ts":326460991931,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":409949},
-{"pid":27443,"tid":27469,"ts":326460991931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":409949,"id":"0xaf88a41bf182217a"},
-{"pid":27443,"tid":27471,"ts":326460991931,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":454784},
-{"pid":27443,"tid":27471,"ts":326460991962,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":454784},
-{"pid":27443,"tid":27471,"ts":326460991962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454784,"id":"0xaf88a414f182217a"},
-{"pid":27443,"tid":27469,"ts":326460997730,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":458,"tdur":153,"tts":410010},
-{"pid":27443,"tid":27469,"ts":326460997761,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":427,"tdur":122,"tts":410041},
-{"pid":27443,"tid":27469,"ts":326460997761,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410041,"id":"0xaf88a417f182217a"},
-{"pid":27443,"tid":27469,"ts":326460998188,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":488,"tdur":152,"tts":410163},
-{"pid":27443,"tid":27469,"ts":326460998218,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":458,"tdur":122,"tts":410193},
-{"pid":27443,"tid":27469,"ts":326460998218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410193,"id":"0xaf88a411f182217a"},
-{"pid":27443,"tid":27469,"ts":326460998676,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":427,"tdur":122,"tts":410315},
-{"pid":27443,"tid":27469,"ts":326460998707,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":396,"tdur":91,"tts":410346},
-{"pid":27443,"tid":27469,"ts":326460998707,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410346,"id":"0xaf88a413f182217a"},
-{"pid":27443,"tid":27471,"ts":326461005940,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":61,"tts":454875},
-{"pid":27443,"tid":27471,"ts":326461005970,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":454906},
-{"pid":27443,"tid":27471,"ts":326461006001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454906,"id":"0xaf88a42ff182217a"},
-{"pid":27443,"tid":27469,"ts":326461006001,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":21761,"tdur":20784,"tts":410499},
-{"pid":27443,"tid":27469,"ts":326461006032,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":21700,"tdur":20723,"tts":410529},
-{"pid":27443,"tid":27469,"ts":326461006062,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":410560},
-{"pid":27443,"tid":27469,"ts":326461006062,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":410560},
-{"pid":27443,"tid":27469,"ts":326461006093,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29876224,"free":3678208},"tts":410590},
-{"pid":27443,"tid":27469,"ts":326461006123,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":21578,"tdur":20601,"tts":410621},
-{"pid":27443,"tid":27469,"ts":326461006154,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccd4a0","decodeCount":0},"dur":21547,"tdur":20571,"tts":410651},
-{"pid":27443,"tid":27469,"ts":326461006154,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":21547,"tdur":20571,"tts":410651},
-{"pid":27443,"tid":27469,"ts":326461006154,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":512,"height":512},"dur":21516,"tdur":20540,"tts":410651},
-{"pid":27443,"tid":27477,"ts":326460988757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":707859,"id":"0xaf88a418f182217a"},
-{"pid":27443,"tid":27477,"ts":326460988788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":707889},
-{"pid":27443,"tid":27477,"ts":326460988818,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326460992217.0,"frame_time_us":326460986394.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":122,"tts":707920},
-{"pid":27443,"tid":27477,"ts":326460988818,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326460992217.0,"frame_time_us":326460986394.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":153,"tdur":92,"tts":707950},
-{"pid":27443,"tid":27477,"ts":326460988818,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":707950},
-{"pid":27443,"tid":27477,"ts":326460988940,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461003060},"dur":31,"tdur":31,"tts":708011},
-{"pid":27443,"tid":27477,"ts":326460988940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":708011,"id":"0xaf88a419f182217a"},
-{"pid":27443,"tid":27477,"ts":326460991809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":708103,"id":"0xaf88a41af182217a"},
-{"pid":27443,"tid":27477,"ts":326460991840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"ScheduleCheckForCompletedCopyOperationsWithLockAcquired"},"dur":30,"tdur":31,"tts":708133},
-{"pid":27443,"tid":27477,"ts":326460991840,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedCopyOperations","args":{"wait_if_needed":false},"dur":30,"tdur":31,"tts":708133},
-{"pid":27443,"tid":27477,"ts":326460991992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":708225,"id":"0xaf88a41bf182217a"},
-{"pid":27443,"tid":27477,"ts":326460991992,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":708225},
-{"pid":27443,"tid":27477,"ts":326460992023,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":708255},
-{"pid":27443,"tid":27477,"ts":326460992023,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6303744,"bytes_used_for_staging_resources":10616832,"pending_copy_count":19,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":708255,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460992053,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":708286},
-{"pid":27443,"tid":27477,"ts":326460992053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":708286,"id":"0xaf88a415f182217a"},
-{"pid":27443,"tid":27477,"ts":326460992084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":708316,"id":"0xaf88a414f182217a"},
-{"pid":27443,"tid":27477,"ts":326460992084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":708316},
-{"pid":27443,"tid":27477,"ts":326460992084,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":708316},
-{"pid":27443,"tid":27477,"ts":326460992114,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":708347,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460992114,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":708347},
-{"pid":27443,"tid":27477,"ts":326460992145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":708377,"id":"0xaf88a415f182217a"},
-{"pid":27443,"tid":27477,"ts":326460992145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2411,"tdur":2411,"tts":708377},
-{"pid":27443,"tid":27477,"ts":326460992145,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2411,"tdur":2411,"tts":708377},
-{"pid":27443,"tid":27477,"ts":326460992145,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":427,"tdur":397,"tts":708408},
-{"pid":27443,"tid":27477,"ts":326460992175,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":708408},
-{"pid":27443,"tid":27477,"ts":326460992206,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708438},
-{"pid":27443,"tid":27477,"ts":326460992206,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":708438},
-{"pid":27443,"tid":27477,"ts":326460992236,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708469},
-{"pid":27443,"tid":27477,"ts":326460992236,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":708469},
-{"pid":27443,"tid":27477,"ts":326460992267,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708499},
-{"pid":27443,"tid":27477,"ts":326460992267,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":708530},
-{"pid":27443,"tid":27477,"ts":326460992297,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708530},
-{"pid":27443,"tid":27477,"ts":326460992328,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708561},
-{"pid":27443,"tid":27477,"ts":326460992328,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708561},
-{"pid":27443,"tid":27477,"ts":326460992358,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":708591},
-{"pid":27443,"tid":27477,"ts":326460992358,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":708591},
-{"pid":27443,"tid":27477,"ts":326460992389,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":708622},
-{"pid":27443,"tid":27477,"ts":326460992419,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":708652},
-{"pid":27443,"tid":27477,"ts":326460992450,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":708683},
-{"pid":27443,"tid":27477,"ts":326460992450,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":708683},
-{"pid":27443,"tid":27477,"ts":326460992480,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":708713},
-{"pid":27443,"tid":27477,"ts":326460992511,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":708744},
-{"pid":27443,"tid":27477,"ts":326460992511,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":708744},
-{"pid":27443,"tid":27477,"ts":326460992542,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":708805},
-{"pid":27443,"tid":27477,"ts":326460992572,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":183,"tdur":183,"tts":708805},
-{"pid":27443,"tid":27477,"ts":326460992572,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":122,"tts":708835},
-{"pid":27443,"tid":27477,"ts":326460992755,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1801,"tdur":1800,"tts":708988},
-{"pid":27443,"tid":27477,"ts":326460992755,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1801,"tdur":1800,"tts":708988},
-{"pid":27443,"tid":27477,"ts":326460992755,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1648,"tdur":1618,"tts":709018},
-{"pid":27443,"tid":27477,"ts":326460992786,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":709018,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326460992786,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":274,"tdur":244,"tts":709049},
-{"pid":27443,"tid":27477,"ts":326460993091,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":709324},
-{"pid":27443,"tid":27477,"ts":326460993182,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709415},
-{"pid":27443,"tid":27477,"ts":326460993182,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":709415},
-{"pid":27443,"tid":27477,"ts":326460993213,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":709446},
-{"pid":27443,"tid":27477,"ts":326460993243,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709476},
-{"pid":27443,"tid":27477,"ts":326460993243,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":709476},
-{"pid":27443,"tid":27477,"ts":326460993274,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709507},
-{"pid":27443,"tid":27477,"ts":326460993305,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709537},
-{"pid":27443,"tid":27477,"ts":326460993305,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":709537},
-{"pid":27443,"tid":27477,"ts":326460993335,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709568},
-{"pid":27443,"tid":27477,"ts":326460993335,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":709568},
-{"pid":27443,"tid":27477,"ts":326460993366,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709598},
-{"pid":27443,"tid":27477,"ts":326460993396,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709629},
-{"pid":27443,"tid":27477,"ts":326460993396,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":709659},
-{"pid":27443,"tid":27477,"ts":326460993427,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709659},
-{"pid":27443,"tid":27477,"ts":326460993457,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709690},
-{"pid":27443,"tid":27477,"ts":326460993457,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":709690},
-{"pid":27443,"tid":27477,"ts":326460993488,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709720},
-{"pid":27443,"tid":27477,"ts":326460993488,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":709720},
-{"pid":27443,"tid":27477,"ts":326460993518,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":709751},
-{"pid":27443,"tid":27477,"ts":326460993549,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709781},
-{"pid":27443,"tid":27477,"ts":326460993579,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709812},
-{"pid":27443,"tid":27477,"ts":326460993579,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709812},
-{"pid":27443,"tid":27477,"ts":326460993610,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709842},
-{"pid":27443,"tid":27477,"ts":326460993640,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709873},
-{"pid":27443,"tid":27477,"ts":326460993640,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":709873},
-{"pid":27443,"tid":27477,"ts":326460993671,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709903},
-{"pid":27443,"tid":27477,"ts":326460993701,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709934},
-{"pid":27443,"tid":27477,"ts":326460993732,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":709964},
-{"pid":27443,"tid":27477,"ts":326460993732,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":709995},
-{"pid":27443,"tid":27477,"ts":326460993762,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":709995},
-{"pid":27443,"tid":27477,"ts":326460993793,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":710025},
-{"pid":27443,"tid":27477,"ts":326460993823,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710056},
-{"pid":27443,"tid":27477,"ts":326460993854,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":710087},
-{"pid":27443,"tid":27477,"ts":326460993884,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":710117},
-{"pid":27443,"tid":27477,"ts":326460993915,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":710148},
-{"pid":27443,"tid":27477,"ts":326460993945,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710178},
-{"pid":27443,"tid":27477,"ts":326460993976,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710209},
-{"pid":27443,"tid":27477,"ts":326460994007,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710239},
-{"pid":27443,"tid":27477,"ts":326460994037,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710270},
-{"pid":27443,"tid":27477,"ts":326460994068,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710300},
-{"pid":27443,"tid":27477,"ts":326460994159,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710392},
-{"pid":27443,"tid":27477,"ts":326460994159,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":710392},
-{"pid":27443,"tid":27477,"ts":326460994190,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710422},
-{"pid":27443,"tid":27477,"ts":326460994220,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710453},
-{"pid":27443,"tid":27477,"ts":326460994220,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":710453},
-{"pid":27443,"tid":27477,"ts":326460994251,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710483},
-{"pid":27443,"tid":27477,"ts":326460994281,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":710514},
-{"pid":27443,"tid":27477,"ts":326460994312,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":710544},
-{"pid":27443,"tid":27477,"ts":326460994342,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":710575},
-{"pid":27443,"tid":27477,"ts":326460994342,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":710605},
-{"pid":27443,"tid":27477,"ts":326460994373,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":710605},
-{"pid":27443,"tid":27477,"ts":326460994403,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":142},"tts":710636},
-{"pid":27443,"tid":27477,"ts":326460994464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":710697,"id":"0xaf88a644f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460994495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":710727,"id":"0xaf88a444f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460994525,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":710758},
-{"pid":27443,"tid":27477,"ts":326460994525,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":710758},
-{"pid":27443,"tid":27477,"ts":326460994556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":710788,"id":"0xaf88a416f182217a"},
-{"pid":27443,"tid":27477,"ts":326460994586,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":710819,"id":"0xaf88a416f182217a"},
-{"pid":27443,"tid":27477,"ts":326460994586,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3052,"tdur":2228,"tts":710819},
-{"pid":27443,"tid":27477,"ts":326460994586,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3052,"tdur":2228,"tts":710819},
-{"pid":27443,"tid":27477,"ts":326460994617,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":710850},
-{"pid":27443,"tid":27477,"ts":326460994617,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2167,"tdur":1709,"tts":710850},
-{"pid":27443,"tid":27477,"ts":326460994647,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":141},"dur":947,"tdur":946,"tts":710880},
-{"pid":27443,"tid":27477,"ts":326460994647,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":141},"dur":306,"tdur":305,"tts":710880},
-{"pid":27443,"tid":27477,"ts":326460994953,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":141},"dur":30,"tdur":31,"tts":711185},
-{"pid":27443,"tid":27477,"ts":326460994983,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":141},"tts":711216},
-{"pid":27443,"tid":27477,"ts":326460995105,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":27},"tts":711338},
-{"pid":27443,"tid":27477,"ts":326460995136,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":711368},
-{"pid":27443,"tid":27477,"ts":326460995136,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":711368},
-{"pid":27443,"tid":27477,"ts":326460995136,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":711368},
-{"pid":27443,"tid":27477,"ts":326460995166,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":13}},"tts":711399,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460995227,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":711460},
-{"pid":27443,"tid":27477,"ts":326460995594,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":711826},
-{"pid":27443,"tid":27477,"ts":326460995594,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":915,"tdur":427,"tts":711857},
-{"pid":27443,"tid":27477,"ts":326460995624,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":711857},
-{"pid":27443,"tid":27459,"ts":326460994617,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7607355},
-{"pid":27443,"tid":27459,"ts":326460994678,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":7607416},
-{"pid":27443,"tid":27459,"ts":326460994708,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7607446},
-{"pid":27443,"tid":27459,"ts":326460994739,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":8027,"tdur":7447,"tts":7607477},
-{"pid":27443,"tid":27459,"ts":326460994770,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7607508},
-{"pid":27443,"tid":27459,"ts":326460994800,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7607538},
-{"pid":27443,"tid":27459,"ts":326460994800,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7607538},
-{"pid":27443,"tid":27459,"ts":326460995258,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7608026},
-{"pid":27443,"tid":27459,"ts":326460995288,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7608026},
-{"pid":27443,"tid":27459,"ts":326460995319,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":946,"tdur":946,"tts":7608057},
-{"pid":27443,"tid":27459,"ts":326460995410,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":12,"totalObjects":331,"partialLayout":false,"frame":"0x78c60000"}},"tts":7608148},
-{"pid":27443,"tid":27459,"ts":326460995441,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":7608179},
-{"pid":27443,"tid":27459,"ts":326460995441,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7608209},
-{"pid":27443,"tid":27459,"ts":326460995838,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":30,"tdur":30,"tts":7608576},
-{"pid":27443,"tid":27459,"ts":326460995868,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7608606},
-{"pid":27443,"tid":27459,"ts":326460995868,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":244,"tdur":213,"tts":7608637},
-{"pid":27443,"tid":27459,"ts":326460996143,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":61,"tdur":61,"tts":7608881},
-{"pid":27443,"tid":27459,"ts":326460996173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7608911,"id":"0xaf88a645f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326460996204,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7608942,"id":"0xaf88a446f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326460996234,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":7608972},
-{"pid":27443,"tid":27459,"ts":326460996296,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":6470,"tdur":5890,"tts":7609034},
-{"pid":27443,"tid":27459,"ts":326460996326,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4517,"tdur":3937,"tts":7609064},
-{"pid":27443,"tid":27459,"ts":326460996326,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1038,"tdur":1038,"tts":7609064},
-{"pid":27443,"tid":27459,"ts":326460997364,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":214,"tts":7610132},
-{"pid":27443,"tid":27459,"ts":326460997608,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":214,"tdur":184,"tts":7610376},
-{"pid":27443,"tid":27459,"ts":326460997822,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":7610560},
-{"pid":27443,"tid":27459,"ts":326460997852,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2106,"tdur":2075,"tts":7610590},
-{"pid":27443,"tid":27459,"ts":326460999989,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":824,"tdur":275,"tts":7612696},
-{"pid":27443,"tid":27459,"ts":326461000843,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1496,"tdur":1496,"tts":7613001},
-{"pid":27443,"tid":27459,"ts":326461000874,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1465,"tdur":1465,"tts":7613032},
-{"pid":27443,"tid":27459,"ts":326461000904,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":336,"tdur":336,"tts":7613062},
-{"pid":27443,"tid":27459,"ts":326461001240,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":1068,"tdur":1068,"tts":7613398},
-{"pid":27443,"tid":27459,"ts":326461001331,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":763,"tdur":763,"tts":7613490},
-{"pid":27443,"tid":27459,"ts":326461002339,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":7614497},
-{"pid":27443,"tid":27459,"ts":326461002400,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":366,"tdur":366,"tts":7614558},
-{"pid":27443,"tid":27459,"ts":326461002766,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":142},"dur":885,"tdur":885,"tts":7614924},
-{"pid":27443,"tid":27459,"ts":326461002796,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":855,"tdur":855,"tts":7614954},
-{"pid":27443,"tid":27459,"ts":326461003163,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":142},"dur":488,"tdur":488,"tts":7615321},
-{"pid":27443,"tid":27459,"ts":326461003315,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[276,260,532,260,532,519,276,519],"nodeId":77,"layerId":122}},"dur":183,"tdur":183,"tts":7615473},
-{"pid":27443,"tid":27459,"ts":326461003407,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":61,"tts":7615565},
-{"pid":27443,"tid":27459,"ts":326461003437,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":7615595},
-{"pid":27443,"tid":27459,"ts":326461003498,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":31,"tts":7615656},
-{"pid":27443,"tid":27459,"ts":326461003651,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1068,"tdur":92,"tts":7615809},
-{"pid":27443,"tid":27459,"ts":326461003681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7615840,"id":"0xaf88a42df182217a"},
-{"pid":27443,"tid":27459,"ts":326461004750,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7615931},
-{"pid":27443,"tid":27459,"ts":326461004841,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7616023,"id":"0xaf88a445f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461004841,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7616023},
-{"pid":27443,"tid":27459,"ts":326461004872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7616053,"id":"0xaf88a440f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461004872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7616084,"id":"0xaf88a646f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461004902,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":7616084},
-{"pid":27443,"tid":27459,"ts":326461004902,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7616084},
-{"pid":27443,"tid":27459,"ts":326461004963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7616145,"id":"0xaf88a447f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461004963,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7616145},
-{"pid":27443,"tid":27459,"ts":326461004994,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7616175,"id":"0xaf88a647f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461005024,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":7616206},
-{"pid":27443,"tid":27459,"ts":326461005024,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":7616206},
-{"pid":27443,"tid":27459,"ts":326461005085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7616267,"id":"0xaf88a440f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461005116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7616297},
-{"pid":27443,"tid":27459,"ts":326461017355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461017},"tts":7616419,"id":"0xaf88a446f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461017385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":62,"tts":7616419},
-{"pid":27443,"tid":27459,"ts":326461017416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7616450,"id":"0xaf88a441f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461017477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7616511,"id":"0xaf88a441f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461017507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7616542},
-{"pid":27443,"tid":27459,"ts":326461017538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7616572,"id":"0xaf88a442f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460995624,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":824,"tdur":366,"tts":711857},
-{"pid":27443,"tid":27477,"ts":326460995685,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":711918},
-{"pid":27443,"tid":27477,"ts":326460995746,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":711979},
-{"pid":27443,"tid":27477,"ts":326460995838,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14267},"dur":91,"tdur":61,"tts":712101},
-{"pid":27443,"tid":27477,"ts":326460995868,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":712101,"id":"0xaf88ab44f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460995960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":712192,"id":"0xaf88ab45f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460996479,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":712253,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460996509,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":183,"tts":712315},
-{"pid":27443,"tid":27477,"ts":326460996662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":712437,"id":"0xaf88ab46f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326460996753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":712528,"id":"0xaf88a646f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326460996753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":712528,"id":"0xaf88a447f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326460996784,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":824,"tdur":457,"tts":712559},
-{"pid":27443,"tid":27477,"ts":326460996784,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":0,"tts":712559},
-{"pid":27443,"tid":27477,"ts":326460997181,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":712589},
-{"pid":27443,"tid":27477,"ts":326460997181,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":712589},
-{"pid":27443,"tid":27477,"ts":326460997364,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":712772},
-{"pid":27443,"tid":27477,"ts":326460997364,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":712772},
-{"pid":27443,"tid":27477,"ts":326460997394,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":712803},
-{"pid":27443,"tid":27477,"ts":326460997394,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":712803},
-{"pid":27443,"tid":27477,"ts":326460997394,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":712803,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460997455,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":712864},
-{"pid":27443,"tid":27477,"ts":326460997455,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":712864},
-{"pid":27443,"tid":27477,"ts":326460997516,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6303744,"bytes_used_for_staging_resources":10616832,"pending_copy_count":19,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":712955,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460997577,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":196}},"tts":712986,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326460997608,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":713016,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326460997883,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":713108,"id":"0xaf88a417f182217a"},
-{"pid":27443,"tid":27477,"ts":326460997913,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":713139},
-{"pid":27443,"tid":27477,"ts":326460997913,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":713139},
-{"pid":27443,"tid":27477,"ts":326460997944,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6303744,"bytes_used_for_staging_resources":10616832,"pending_copy_count":19,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":713169,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460997944,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":713169},
-{"pid":27443,"tid":27477,"ts":326460997944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":713169,"id":"0xaf88a410f182217a"},
-{"pid":27443,"tid":27477,"ts":326460997974,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":713200,"id":"0xaf88a410f182217a"},
-{"pid":27443,"tid":27477,"ts":326460998005,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":713230},
-{"pid":27443,"tid":27477,"ts":326460998005,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":153,"tts":713230},
-{"pid":27443,"tid":27477,"ts":326460998005,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":713230},
-{"pid":27443,"tid":27477,"ts":326460998005,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":713230},
-{"pid":27443,"tid":27477,"ts":326460998035,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":713261},
-{"pid":27443,"tid":27477,"ts":326460998035,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":713261},
-{"pid":27443,"tid":27477,"ts":326460998127,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":713352},
-{"pid":27443,"tid":27477,"ts":326460998127,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":713352},
-{"pid":27443,"tid":27477,"ts":326460998340,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":713444,"id":"0xaf88a411f182217a"},
-{"pid":27443,"tid":27477,"ts":326460998371,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":713474},
-{"pid":27443,"tid":27477,"ts":326460998371,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":713474},
-{"pid":27443,"tid":27477,"ts":326460998401,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6303744,"bytes_used_for_staging_resources":10616832,"pending_copy_count":19,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":713505,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460998401,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":713505},
-{"pid":27443,"tid":27477,"ts":326460998401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":713505,"id":"0xaf88a412f182217a"},
-{"pid":27443,"tid":27477,"ts":326460998432,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":713535,"id":"0xaf88a412f182217a"},
-{"pid":27443,"tid":27477,"ts":326460998462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":713566},
-{"pid":27443,"tid":27477,"ts":326460998462,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":713566},
-{"pid":27443,"tid":27477,"ts":326460998462,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":713566},
-{"pid":27443,"tid":27477,"ts":326460998462,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":713566},
-{"pid":27443,"tid":27477,"ts":326460998493,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":713596},
-{"pid":27443,"tid":27477,"ts":326460998493,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":713596},
-{"pid":27443,"tid":27477,"ts":326460998585,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":713688},
-{"pid":27443,"tid":27477,"ts":326460998615,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":713718},
-{"pid":27443,"tid":27477,"ts":326460999012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":713810,"id":"0xaf88a413f182217a"},
-{"pid":27443,"tid":27477,"ts":326460999012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":713810},
-{"pid":27443,"tid":27477,"ts":326460999042,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":713841},
-{"pid":27443,"tid":27477,"ts":326460999042,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":713841,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326460999042,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":713841},
-{"pid":27443,"tid":27477,"ts":326460999348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":713871,"id":"0xaf88a42cf182217a"},
-{"pid":27443,"tid":27477,"ts":326460999378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":713902},
-{"pid":27443,"tid":27477,"ts":326460999409,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":713932},
-{"pid":27443,"tid":27477,"ts":326460999409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":713932,"id":"0xaf88a647f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461003193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461003},"tts":714054,"id":"0xaf88a419f182217a"},
-{"pid":27443,"tid":27477,"ts":326461003224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":714085},
-{"pid":27443,"tid":27477,"ts":326461003743,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":714146,"id":"0xaf88a42df182217a"},
-{"pid":27443,"tid":27477,"ts":326461003743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2319,"tdur":2319,"tts":714146},
-{"pid":27443,"tid":27477,"ts":326461003773,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2289,"tdur":2289,"tts":714176},
-{"pid":27443,"tid":27477,"ts":326461003773,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":714176},
-{"pid":27443,"tid":27477,"ts":326461003804,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2258,"tdur":2258,"tts":714207},
-{"pid":27443,"tid":27477,"ts":326461003804,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2228,"tdur":2228,"tts":714207},
-{"pid":27443,"tid":27477,"ts":326461003834,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":714237},
-{"pid":27443,"tid":27477,"ts":326461003834,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":714237},
-{"pid":27443,"tid":27477,"ts":326461003865,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":714268,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461003865,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":714268},
-{"pid":27443,"tid":27477,"ts":326461003895,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":336,"tdur":336,"tts":714298},
-{"pid":27443,"tid":27477,"ts":326461004231,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":714634},
-{"pid":27443,"tid":27477,"ts":326461004261,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":367,"tdur":366,"tts":714665},
-{"pid":27443,"tid":27477,"ts":326461004689,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1343,"tdur":1343,"tts":715092},
-{"pid":27443,"tid":27477,"ts":326461004719,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":142},"dur":366,"tdur":367,"tts":715122},
-{"pid":27443,"tid":27477,"ts":326461005085,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":142},"dur":61,"tdur":61,"tts":715489},
-{"pid":27443,"tid":27477,"ts":326461005146,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":142},"tts":715550},
-{"pid":27443,"tid":27477,"ts":326461005360,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":715794},
-{"pid":27443,"tid":27477,"ts":326461005391,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":715794},
-{"pid":27443,"tid":27477,"ts":326461005421,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":611,"tdur":611,"tts":715824},
-{"pid":27443,"tid":27477,"ts":326461005452,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":715855},
-{"pid":27443,"tid":27477,"ts":326461005635,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":716038},
-{"pid":27443,"tid":27477,"ts":326461005696,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":716099},
-{"pid":27443,"tid":27477,"ts":326461005696,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":4},"dur":274,"tdur":275,"tts":716099},
-{"pid":27443,"tid":27477,"ts":326461005787,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":716191},
-{"pid":27443,"tid":27477,"ts":326461005787,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":716191,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461005879,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":716282},
-{"pid":27443,"tid":27477,"ts":326461005909,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":8,"num_edges":15},"dur":31,"tdur":30,"tts":716313},
-{"pid":27443,"tid":27477,"ts":326461005940,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":4976640,"bytes_used_for_staging_resources":10616832,"pending_copy_count":15,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":716374,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461006001,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":201}},"tts":716404,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461006001,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":716404,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461006062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":716465,"id":"0xaf88a42ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461006093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":716496},
-{"pid":27443,"tid":27477,"ts":326461006123,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461008898.0,"frame_time_us":326461003075.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":716526},
-{"pid":27443,"tid":27477,"ts":326461006154,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461008898.0,"frame_time_us":326461003075.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":716557},
-{"pid":27443,"tid":27477,"ts":326461006215,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461019741},"dur":30,"tdur":30,"tts":716618},
-{"pid":27443,"tid":27477,"ts":326461006245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":716648,"id":"0xaf88a428f182217a"},
-{"pid":27443,"tid":27477,"ts":326461006276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":716679,"id":"0xaf88a42ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461006306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":123,"tts":716709},
-{"pid":27443,"tid":27477,"ts":326461006306,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":122,"tdur":123,"tts":716709},
-{"pid":27443,"tid":27477,"ts":326461006337,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":4976640,"bytes_used_for_staging_resources":10616832,"pending_copy_count":15,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":716740,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461006367,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":716770},
-{"pid":27443,"tid":27477,"ts":326461006398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":716801,"id":"0xaf88a429f182217a"},
-{"pid":27443,"tid":27477,"ts":326461006428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":716832,"id":"0xaf88a429f182217a"},
-{"pid":27443,"tid":27477,"ts":326461006459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":716862},
-{"pid":27443,"tid":27477,"ts":326461006459,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":183,"tdur":183,"tts":716862},
-{"pid":27443,"tid":27477,"ts":326461006489,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":716893},
-{"pid":27443,"tid":27477,"ts":326461006489,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":716893},
-{"pid":27443,"tid":27477,"ts":326461006520,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":92,"tts":716923},
-{"pid":27443,"tid":27477,"ts":326461006550,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":716954},
-{"pid":27443,"tid":27477,"ts":326461006611,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":717015},
-{"pid":27443,"tid":27477,"ts":326461006611,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":717045},
-{"pid":27443,"tid":27477,"ts":326461019857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461019},"tts":717137,"id":"0xaf88a428f182217a"},
-{"pid":27443,"tid":27477,"ts":326461019888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":717167},
-{"pid":27443,"tid":27477,"ts":326461019888,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":717167},
-{"pid":27443,"tid":27477,"ts":326461020956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":717228,"id":"0xaf88a42af182217a"},
-{"pid":27443,"tid":27477,"ts":326461020956,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":717228},
-{"pid":27443,"tid":27477,"ts":326461021017,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":717228},
-{"pid":27443,"tid":27477,"ts":326461021048,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461025580.0,"frame_time_us":326461019757.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":717259},
-{"pid":27443,"tid":27477,"ts":326461021078,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461025580.0,"frame_time_us":326461019757.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":717289},
-{"pid":27443,"tid":27477,"ts":326461021109,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461036423},"dur":61,"tdur":31,"tts":717350},
-{"pid":27443,"tid":27477,"ts":326461021139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":717350,"id":"0xaf88a42bf182217a"},
-{"pid":27443,"tid":27459,"ts":326461017568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7616603,"id":"0xaf88a645f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461017599,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":61,"tts":7616633},
-{"pid":27443,"tid":27459,"ts":326461017629,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":7616664},
-{"pid":27443,"tid":27459,"ts":326461017629,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":31,"tdur":30,"tts":7616664},
-{"pid":27443,"tid":27459,"ts":326461017721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7616755,"id":"0xaf88a442f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461017721,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7616755},
-{"pid":27443,"tid":27459,"ts":326461035056,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7616877,"id":"0xaf88a443f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461035056,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7616877},
-{"pid":27443,"tid":27459,"ts":326461035087,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7616908,"id":"0xaf88a45cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461035117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7616938,"id":"0xaf88a640f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461035117,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":61,"tdur":31,"tts":7616938},
-{"pid":27443,"tid":27459,"ts":326461035148,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7616969},
-{"pid":27443,"tid":27459,"ts":326461035240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7617060,"id":"0xaf88a45cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461035240,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7617091},
-{"pid":27443,"tid":27459,"ts":326461038047,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7617213,"id":"0xaf88a45df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461038047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7617213},
-{"pid":27443,"tid":27459,"ts":326461038078,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7617244,"id":"0xaf88a45ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461038108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7617274,"id":"0xaf88a641f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461038108,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":7617274},
-{"pid":27443,"tid":27459,"ts":326461038139,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7617305},
-{"pid":27443,"tid":27459,"ts":326461038200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7617366,"id":"0xaf88a45ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461038231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7617396},{"pid":27443,"tid":27459,"ts":326461053521,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7617488,"id":"0xaf88a45ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461053552,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":7617518},
-{"pid":27443,"tid":27459,"ts":326461053582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7617549,"id":"0xaf88a458f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461053613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7617579,"id":"0xaf88a642f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461053643,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":122,"tdur":122,"tts":7617610},
-{"pid":27443,"tid":27459,"ts":326461053643,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":92,"tdur":91,"tts":7617610},
-{"pid":27443,"tid":27459,"ts":326461053704,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7617671,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461053735,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7617701,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461053826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7617793,"id":"0xaf88a458f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461053857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":245,"tts":7617823},
-{"pid":27443,"tid":27459,"ts":326461053857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7617823,"id":"0xaf88a459f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461053887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7617854,"id":"0xaf88a91bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461053887,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":184,"tdur":183,"tts":7617854},
-{"pid":27443,"tid":27459,"ts":326461053918,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7617884,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461053918,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.756},"dur":153,"tdur":153,"tts":7617884},
-{"pid":27443,"tid":27459,"ts":326461053949,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7617915},
-{"pid":27443,"tid":27459,"ts":326461053979,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7617976},
-{"pid":27443,"tid":27459,"ts":326461054010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7618007,"id":"0xaf88a643f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461054040,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7618007,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461054071,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7618037,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461054162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7618098,"id":"0xaf88a459f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461054162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7618098},
-{"pid":27443,"tid":27459,"ts":326461114409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7618190,"id":"0xaf88a45af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461114440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7618220},
-{"pid":27443,"tid":27459,"ts":326461114470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7618251,"id":"0xaf88a45bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461114501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7618281,"id":"0xaf88a65cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461114501,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":7618281},
-{"pid":27443,"tid":27459,"ts":326461114592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7618373,"id":"0xaf88a45bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461114592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":152,"tts":7618373},
-{"pid":27443,"tid":27459,"ts":326461114623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7618403,"id":"0xaf88a454f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461114654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7618434,"id":"0xaf88a643f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461114654,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":91,"tdur":91,"tts":7618434},
-{"pid":27443,"tid":27459,"ts":326461114684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7618464,"id":"0xaf88a65ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461114715,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7618495,"id":"0xaf88a65ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461114806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7618586,"id":"0xaf88a454f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461114806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":245,"tts":7618586},
-{"pid":27443,"tid":27459,"ts":326461114837,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7618617,"id":"0xaf88a455f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461114837,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7618647,"id":"0xaf88a65ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461114867,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":153,"tdur":153,"tts":7618647},
-{"pid":27443,"tid":27459,"ts":326461114898,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7618678,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461114928,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7618708,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461114928,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7618708,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27469,"ts":326461027762,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1099,"tdur":1099,"tts":431283},
-{"pid":27443,"tid":27469,"ts":326461027793,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1068,"tdur":1069,"tts":431313},
-{"pid":27443,"tid":27471,"ts":326461027823,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":641,"tdur":641,"tts":454967},
-{"pid":27443,"tid":27469,"ts":326461027823,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2ebbf0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":431344},
-{"pid":27443,"tid":27471,"ts":326461027823,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":641,"tdur":641,"tts":454967},
-{"pid":27443,"tid":27469,"ts":326461027854,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":431374},
-{"pid":27443,"tid":27471,"ts":326461027854,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2eaee0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":454997},
-{"pid":27443,"tid":27471,"ts":326461027854,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":454997},
-{"pid":27443,"tid":27469,"ts":326461027915,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":431435},
-{"pid":27443,"tid":27471,"ts":326461027915,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":455058},
-{"pid":27443,"tid":27469,"ts":326461027915,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2ebbf0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":431435},
-{"pid":27443,"tid":27471,"ts":326461027915,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2eaee0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":455058},
-{"pid":27443,"tid":27471,"ts":326461027945,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":455119,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461027945,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":431497,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461028433,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":455577},
-{"pid":27443,"tid":27471,"ts":326461028464,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":549,"tdur":549,"tts":455608},
-{"pid":27443,"tid":27471,"ts":326461028464,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":549,"tdur":518,"tts":455608},
-{"pid":27443,"tid":27471,"ts":326461028495,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2ec8f8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":455638},
-{"pid":27443,"tid":27471,"ts":326461028495,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":455638},
-{"pid":27443,"tid":27471,"ts":326461028525,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":455699},
-{"pid":27443,"tid":27471,"ts":326461028556,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2ec8f8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":455699},
-{"pid":27443,"tid":27471,"ts":326461028586,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":455730,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461028830,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":432351},
-{"pid":27443,"tid":27469,"ts":326461028861,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":432382},
-{"pid":27443,"tid":27469,"ts":326461028861,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":432382},
-{"pid":27443,"tid":27469,"ts":326461028891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":432412,"id":"0xaf88a424f182217a"},
-{"pid":27443,"tid":27469,"ts":326461028922,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":915,"tdur":885,"tts":432473},
-{"pid":27443,"tid":27469,"ts":326461028952,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":432473},
-{"pid":27443,"tid":27469,"ts":326461028952,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2eb8d0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":432504},
-{"pid":27443,"tid":27469,"ts":326461028983,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":432504},
-{"pid":27443,"tid":27471,"ts":326461028983,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":456126},
-{"pid":27443,"tid":27469,"ts":326461029044,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":432565},
-{"pid":27443,"tid":27469,"ts":326461029044,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":142,"tileId":{"id_ref":"0x7e2eb8d0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":432595},
-{"pid":27443,"tid":27469,"ts":326461029074,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":432595,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461029807,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":433328},
-{"pid":27443,"tid":27469,"ts":326461029837,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":433358},
-{"pid":27443,"tid":27469,"ts":326461029868,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":433389},
-{"pid":27443,"tid":27469,"ts":326461029868,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":433389,"id":"0xaf88a426f182217a"},
-{"pid":27443,"tid":27471,"ts":326461035484,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":456249},
-{"pid":27443,"tid":27471,"ts":326461035514,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":456279},
-{"pid":27443,"tid":27471,"ts":326461035545,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456310,"id":"0xaf88a420f182217a"},
-{"pid":27443,"tid":27471,"ts":326461035545,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":456310},
-{"pid":27443,"tid":27471,"ts":326461035575,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":456340},
-{"pid":27443,"tid":27471,"ts":326461035575,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456340,"id":"0xaf88a421f182217a"},
-{"pid":27443,"tid":27471,"ts":326461035606,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":456371},
-{"pid":27443,"tid":27471,"ts":326461035636,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":456401},
-{"pid":27443,"tid":27471,"ts":326461035636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456401,"id":"0xaf88a422f182217a"},
-{"pid":27443,"tid":27471,"ts":326461299576,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":184,"tdur":183,"tts":456554},
-{"pid":27443,"tid":27471,"ts":326461299668,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":92,"tts":456645},
-{"pid":27443,"tid":27471,"ts":326461299699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456676,"id":"0xaf88a436f182217a"},
-{"pid":27443,"tid":27469,"ts":326461299729,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":64917,"tdur":48771,"tts":433450},
-{"pid":27443,"tid":27469,"ts":326461299760,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":64855,"tdur":48711,"tts":433480},
-{"pid":27443,"tid":27469,"ts":326461299760,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":433480},
-{"pid":27443,"tid":27469,"ts":326461299760,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":433480},
-{"pid":27443,"tid":27469,"ts":326461299790,"ph":"X","cat":"renderer","name":"ChildDiscardableSharedMemoryManager::AllocateLockedDiscardableSharedMemory","args":{"size":4194304,"id":8},"dur":1526,"tdur":152,"tts":433511},
-{"pid":27443,"tid":27469,"ts":326461299821,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":433541,"id":"0xaf88ab68f3d03dca"},
-{"pid":27443,"tid":27469,"ts":326461301347,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":32874496,"free":4874240},"tts":433694},
-{"pid":27443,"tid":27469,"ts":326461301377,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":63208,"tdur":48435,"tts":433725},
-{"pid":27443,"tid":27469,"ts":326461301377,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccca20","decodeCount":0},"dur":63177,"tdur":48405,"tts":433725},
-{"pid":27443,"tid":27469,"ts":326461301408,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":63146,"tdur":48375,"tts":433755},
-{"pid":27443,"tid":27469,"ts":326461301408,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":768,"height":1040},"dur":63146,"tdur":48375,"tts":433755},
-{"pid":27443,"tid":27546,"ts":326461359305,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":976,"tdur":976,"tts":63421},
-{"pid":27443,"tid":27546,"ts":326461359305,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":63421},
-{"pid":27443,"tid":27546,"ts":326461360251,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":64367},
-{"pid":27443,"tid":27477,"ts":326461028952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":717472,"id":"0xaf88a424f182217a"},
-{"pid":27443,"tid":27477,"ts":326461028983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":717503},
-{"pid":27443,"tid":27477,"ts":326461029013,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":62,"tts":717533},
-{"pid":27443,"tid":27477,"ts":326461029044,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":4976640,"bytes_used_for_staging_resources":10616832,"pending_copy_count":15,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":717564,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461029044,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":717564},
-{"pid":27443,"tid":27477,"ts":326461029074,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":717595,"id":"0xaf88a425f182217a"},
-{"pid":27443,"tid":27477,"ts":326461029105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":717625,"id":"0xaf88a425f182217a"},
-{"pid":27443,"tid":27477,"ts":326461029105,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2899,"tdur":2899,"tts":717625},
-{"pid":27443,"tid":27477,"ts":326461029135,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2869,"tdur":2868,"tts":717656},
-{"pid":27443,"tid":27477,"ts":326461029135,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":336,"tdur":335,"tts":717656},
-{"pid":27443,"tid":27477,"ts":326461029166,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":717686},
-{"pid":27443,"tid":27477,"ts":326461029166,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":122,"tdur":122,"tts":717686},
-{"pid":27443,"tid":27477,"ts":326461029196,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":92,"tdur":91,"tts":717717},
-{"pid":27443,"tid":27477,"ts":326461029288,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":717808},
-{"pid":27443,"tid":27477,"ts":326461029319,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":717839},
-{"pid":27443,"tid":27477,"ts":326461029349,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":717869},
-{"pid":27443,"tid":27477,"ts":326461029380,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":717900},
-{"pid":27443,"tid":27477,"ts":326461029410,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":717930},
-{"pid":27443,"tid":27477,"ts":326461029410,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":717930},
-{"pid":27443,"tid":27477,"ts":326461029471,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":717991},
-{"pid":27443,"tid":27477,"ts":326461029471,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":214,"tdur":214,"tts":717991},
-{"pid":27443,"tid":27477,"ts":326461029502,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":718022},
-{"pid":27443,"tid":27477,"ts":326461029685,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2319,"tdur":2289,"tts":718205},
-{"pid":27443,"tid":27477,"ts":326461029685,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2289,"tdur":2259,"tts":718235},
-{"pid":27443,"tid":27477,"ts":326461029715,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2228,"tdur":2228,"tts":718235},
-{"pid":27443,"tid":27477,"ts":326461029715,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":718235,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461029746,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":610,"tdur":610,"tts":718266},
-{"pid":27443,"tid":27477,"ts":326461030356,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":718876},
-{"pid":27443,"tid":27477,"ts":326461030478,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":718998},
-{"pid":27443,"tid":27477,"ts":326461030509,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":719029},
-{"pid":27443,"tid":27477,"ts":326461030539,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":719060},
-{"pid":27443,"tid":27477,"ts":326461030570,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719090},
-{"pid":27443,"tid":27477,"ts":326461030600,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719121},
-{"pid":27443,"tid":27477,"ts":326461030600,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":719121},
-{"pid":27443,"tid":27477,"ts":326461030631,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":719151},
-{"pid":27443,"tid":27477,"ts":326461030661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719182},
-{"pid":27443,"tid":27477,"ts":326461030692,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719212},
-{"pid":27443,"tid":27477,"ts":326461030692,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":719212},
-{"pid":27443,"tid":27477,"ts":326461030723,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":719243},
-{"pid":27443,"tid":27477,"ts":326461030753,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719273},
-{"pid":27443,"tid":27477,"ts":326461030784,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719304},
-{"pid":27443,"tid":27477,"ts":326461030784,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":719334},
-{"pid":27443,"tid":27477,"ts":326461030814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":719334},
-{"pid":27443,"tid":27477,"ts":326461030845,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":719365},
-{"pid":27443,"tid":27477,"ts":326461030875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719395},
-{"pid":27443,"tid":27477,"ts":326461030906,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719426},
-{"pid":27443,"tid":27477,"ts":326461030936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719456},
-{"pid":27443,"tid":27477,"ts":326461030936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":719456},
-{"pid":27443,"tid":27477,"ts":326461030967,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":719487},
-{"pid":27443,"tid":27477,"ts":326461030997,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":719517},
-{"pid":27443,"tid":27477,"ts":326461031028,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":719548},
-{"pid":27443,"tid":27477,"ts":326461031058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719578},
-{"pid":27443,"tid":27477,"ts":326461031089,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719609},
-{"pid":27443,"tid":27477,"ts":326461031089,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":719609},
-{"pid":27443,"tid":27477,"ts":326461031119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":719639},
-{"pid":27443,"tid":27477,"ts":326461031150,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719670},
-{"pid":27443,"tid":27477,"ts":326461031180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":719700},
-{"pid":27443,"tid":27477,"ts":326461031211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719731},
-{"pid":27443,"tid":27477,"ts":326461031241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719761},
-{"pid":27443,"tid":27477,"ts":326461031241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":719761},
-{"pid":27443,"tid":27477,"ts":326461031272,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":719792},
-{"pid":27443,"tid":27477,"ts":326461031302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719823},
-{"pid":27443,"tid":27477,"ts":326461031333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719853},
-{"pid":27443,"tid":27477,"ts":326461031363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":719884},
-{"pid":27443,"tid":27477,"ts":326461031363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":719914},
-{"pid":27443,"tid":27477,"ts":326461031394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":719945},
-{"pid":27443,"tid":27477,"ts":326461031424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":719975},
-{"pid":27443,"tid":27477,"ts":326461031455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":719975},
-{"pid":27443,"tid":27477,"ts":326461031486,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":720006},
-{"pid":27443,"tid":27477,"ts":326461031516,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":720036},
-{"pid":27443,"tid":27477,"ts":326461031638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":720158},
-{"pid":27443,"tid":27477,"ts":326461031638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":720158},
-{"pid":27443,"tid":27477,"ts":326461031669,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":720189},
-{"pid":27443,"tid":27477,"ts":326461031699,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":720219},
-{"pid":27443,"tid":27477,"ts":326461031730,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":720250},
-{"pid":27443,"tid":27477,"ts":326461031760,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":720280},
-{"pid":27443,"tid":27477,"ts":326461031791,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":720311},
-{"pid":27443,"tid":27477,"ts":326461031821,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":720341},
-{"pid":27443,"tid":27477,"ts":326461031882,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":720402},
-{"pid":27443,"tid":27477,"ts":326461031882,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":720402},
-{"pid":27443,"tid":27477,"ts":326461031913,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":720433},
-{"pid":27443,"tid":27477,"ts":326461031943,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":720463},
-{"pid":27443,"tid":27477,"ts":326461031974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":720494,"id":"0xaf88a427f182217a"},
-{"pid":27443,"tid":27477,"ts":326461032004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":720524,"id":"0xaf88a426f182217a"},
-{"pid":27443,"tid":27477,"ts":326461032035,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":720555},
-{"pid":27443,"tid":27477,"ts":326461032035,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":720555},
-{"pid":27443,"tid":27477,"ts":326461032035,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":720555,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461032065,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":720586},
-{"pid":27443,"tid":27477,"ts":326461032096,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":720616,"id":"0xaf88a427f182217a"},
-{"pid":27443,"tid":27477,"ts":326461032096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3449,"tdur":3022,"tts":720616},
-{"pid":27443,"tid":27477,"ts":326461032096,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3449,"tdur":2991,"tts":720616},
-{"pid":27443,"tid":27477,"ts":326461032126,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":720647},
-{"pid":27443,"tid":27477,"ts":326461032126,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2930,"tdur":2472,"tts":720647},
-{"pid":27443,"tid":27477,"ts":326461032157,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":142},"dur":1373,"tdur":1374,"tts":720677},
-{"pid":27443,"tid":27477,"ts":326461032187,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":142},"dur":367,"tdur":366,"tts":720708},
-{"pid":27443,"tid":27477,"ts":326461032554,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":142},"dur":61,"tdur":61,"tts":721074},
-{"pid":27443,"tid":27477,"ts":326461032615,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":142},"tts":721135},
-{"pid":27443,"tid":27477,"ts":326461032767,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":721287},
-{"pid":27443,"tid":27477,"ts":326461032798,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":721318},
-{"pid":27443,"tid":27477,"ts":326461032798,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":122,"tdur":122,"tts":721318},
-{"pid":27443,"tid":27477,"ts":326461032798,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":721318},
-{"pid":27443,"tid":27477,"ts":326461032828,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":721349},
-{"pid":27443,"tid":27477,"ts":326461032859,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":721379},
-{"pid":27443,"tid":27477,"ts":326461032889,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":721410},
-{"pid":27443,"tid":27477,"ts":326461032920,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":4}},"tts":721440,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461033012,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":721532},
-{"pid":27443,"tid":27477,"ts":326461033500,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":722020},
-{"pid":27443,"tid":27477,"ts":326461033530,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1069,"tdur":640,"tts":722051},
-{"pid":27443,"tid":27477,"ts":326461033561,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":722081},
-{"pid":27443,"tid":27477,"ts":326461033561,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":977,"tdur":549,"tts":722081},
-{"pid":27443,"tid":27477,"ts":326461033622,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":92,"tdur":92,"tts":722142},
-{"pid":27443,"tid":27477,"ts":326461033714,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":722234},
-{"pid":27443,"tid":27477,"ts":326461033897,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14657},"dur":91,"tdur":61,"tts":722447},
-{"pid":27443,"tid":27477,"ts":326461033927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":722478,"id":"0xaf88ab47f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461034019,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":722539,"id":"0xaf88ab40f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461034568,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":722661,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461034599,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":335,"tdur":336,"tts":722691},
-{"pid":27443,"tid":27477,"ts":326461034873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":722966,"id":"0xaf88ab41f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461034965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":723058,"id":"0xaf88a640f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461034965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":723088,"id":"0xaf88a443f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461035056,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":458,"tdur":458,"tts":723149},
-{"pid":27443,"tid":27477,"ts":326461035056,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":458,"tdur":458,"tts":723149},
-{"pid":27443,"tid":27477,"ts":326461035087,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":91,"tts":723180},
-{"pid":27443,"tid":27477,"ts":326461035209,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":723302},
-{"pid":27443,"tid":27477,"ts":326461035240,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":723332},
-{"pid":27443,"tid":27477,"ts":326461035240,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":244,"tdur":214,"tts":723332},
-{"pid":27443,"tid":27477,"ts":326461035240,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":213,"tdur":214,"tts":723332},
-{"pid":27443,"tid":27477,"ts":326461035270,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":723363,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461035331,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":723424},
-{"pid":27443,"tid":27477,"ts":326461035362,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":723454},
-{"pid":27443,"tid":27477,"ts":326461035423,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":723546,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461035484,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":201}},"tts":723577,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461035484,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":723577,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461035545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":723638,"id":"0xaf88a420f182217a"},
-{"pid":27443,"tid":27477,"ts":326461035575,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":723668},
-{"pid":27443,"tid":27477,"ts":326461035575,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":153,"tdur":153,"tts":723668},
-{"pid":27443,"tid":27477,"ts":326461035606,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":723699,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461035636,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":92,"tdur":92,"tts":723729},
-{"pid":27443,"tid":27477,"ts":326461035697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":723790,"id":"0xaf88a423f182217a"},
-{"pid":27443,"tid":27477,"ts":326461035758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":723851,"id":"0xaf88a421f182217a"},
-{"pid":27443,"tid":27477,"ts":326461035758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":723851},
-{"pid":27443,"tid":27477,"ts":326461035758,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":92,"tts":723851},
-{"pid":27443,"tid":27477,"ts":326461035789,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":9289728,"bytes_used_for_staging_resources":10616832,"pending_copy_count":28,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":723882,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461035789,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":31,"tts":723912},
-{"pid":27443,"tid":27477,"ts":326461035819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":723912,"id":"0xaf88a43cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461035880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":723973,"id":"0xaf88a422f182217a"},
-{"pid":27443,"tid":27477,"ts":326461035880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":723973},
-{"pid":27443,"tid":27477,"ts":326461035880,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":723973},
-{"pid":27443,"tid":27477,"ts":326461035911,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":724004,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461035911,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":724004},
-{"pid":27443,"tid":27477,"ts":326461035941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":724034,"id":"0xaf88a423f182217a"},
-{"pid":27443,"tid":27477,"ts":326461035972,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":724065},
-{"pid":27443,"tid":27477,"ts":326461035972,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":183,"tdur":183,"tts":724065},
-{"pid":27443,"tid":27477,"ts":326461035972,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":724065},
-{"pid":27443,"tid":27477,"ts":326461036003,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":724095},
-{"pid":27443,"tid":27477,"ts":326461036033,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":724126},
-{"pid":27443,"tid":27477,"ts":326461036033,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":724126},
-{"pid":27443,"tid":27477,"ts":326461036125,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":724217},
-{"pid":27443,"tid":27477,"ts":326461036125,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":724217},
-{"pid":27443,"tid":27477,"ts":326461036186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":724278,"id":"0xaf88a43cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461036186,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":214,"tts":724278},
-{"pid":27443,"tid":27477,"ts":326461036247,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":153,"tts":724309},
-{"pid":27443,"tid":27477,"ts":326461036247,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":724309},
-{"pid":27443,"tid":27477,"ts":326461036247,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":724309},
-{"pid":27443,"tid":27477,"ts":326461036277,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":91,"tts":724340},
-{"pid":27443,"tid":27477,"ts":326461036277,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":724340},
-{"pid":27443,"tid":27477,"ts":326461036369,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":724431},
-{"pid":27443,"tid":27477,"ts":326461036369,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":724431},
-{"pid":27443,"tid":27477,"ts":326461036430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461036},"tts":724492,"id":"0xaf88a42bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461036460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":724523},
-{"pid":27443,"tid":27477,"ts":326461037895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":724614,"id":"0xaf88a43df182217a"},
-{"pid":27443,"tid":27477,"ts":326461037895,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":724614},
-{"pid":27443,"tid":27477,"ts":326461037925,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":92,"tdur":91,"tts":724645},
-{"pid":27443,"tid":27477,"ts":326461037956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":724675,"id":"0xaf88a641f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461037956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":724675,"id":"0xaf88a45df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461039665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":724828,"id":"0xaf88a43ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461039665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":724828},
-{"pid":27443,"tid":27477,"ts":326461039696,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461042261.0,"frame_time_us":326461036438.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":724858},
-{"pid":27443,"tid":27477,"ts":326461039726,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461042261.0,"frame_time_us":326461036438.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":91,"tts":724889},
-{"pid":27443,"tid":27477,"ts":326461039787,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461053104},"dur":31,"tdur":30,"tts":724950},
-{"pid":27443,"tid":27477,"ts":326461039818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":724980,"id":"0xaf88a43ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461053216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461053},"tts":725072,"id":"0xaf88a43ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461053247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":183,"tdur":183,"tts":725072},
-{"pid":27443,"tid":27477,"ts":326461053277,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":153,"tdur":152,"tts":725103},
-{"pid":27443,"tid":27477,"ts":326461053308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":725133,"id":"0xaf88ab42f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461053338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":725164,"id":"0xaf88a642f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461053369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":725194,"id":"0xaf88a45ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461054650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":725286,"id":"0xaf88a438f182217a"},
-{"pid":27443,"tid":27477,"ts":326461054650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":62,"tdur":61,"tts":725286},
-{"pid":27443,"tid":27477,"ts":326461054681,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461058943.0,"frame_time_us":326461053120.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":31,"tdur":31,"tts":725316},
-{"pid":27443,"tid":27477,"ts":326461054712,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":725347,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461280410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":725438,"id":"0xaf88a439f182217a"},
-{"pid":27443,"tid":27466,"ts":326461114196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":364382,"id":"0xaf88a65cf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461114257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":364443,"id":"0xaf88a45af3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461114409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":364596,"id":"0xaf88a65df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461116546,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":306,"tts":364748},
-{"pid":27443,"tid":27466,"ts":326461116607,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":122,"tdur":123,"tts":364809},
-{"pid":27443,"tid":27466,"ts":326461116607,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":364809,"id":"0xba460502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461116668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":364871,"id":"0xaf88a659f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461116668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":364871,"id":"0xaf88a450f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461116759,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":92,"tts":364962},
-{"pid":27443,"tid":27466,"ts":326461116759,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":364962,"id":"0xba460602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461116790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":365023,"id":"0xaf88a65af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461116820,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":365023,"id":"0xaf88a452f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461118102,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":365145,"id":"0xaf88ab43f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461118102,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":365145},
-{"pid":27443,"tid":27466,"ts":326461118163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":365206},
-{"pid":27443,"tid":27466,"ts":326461118194,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":365237,"id":"0xccc55d02"},
-{"pid":27443,"tid":27466,"ts":326461128449,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":213,"tts":365359},
-{"pid":27443,"tid":27466,"ts":326461128479,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":183,"tdur":183,"tts":365389},
-{"pid":27443,"tid":27466,"ts":326461128510,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":365420,"id":"0xba460702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461128571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":365481,"id":"0xaf88a656f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461128601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":365511,"id":"0xaf88a46ef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461129822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":365664,"id":"0xaf88ab5cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461129853,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":365695},
-{"pid":27443,"tid":27466,"ts":326461129853,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":365695,"id":"0xccc55e02"},
-{"pid":27443,"tid":27466,"ts":326461138551,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":365817},
-{"pid":27443,"tid":27466,"ts":326461138582,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":152,"tdur":153,"tts":365847},
-{"pid":27443,"tid":27466,"ts":326461138612,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":365878,"id":"0xba460802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461138643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":365939,"id":"0xaf88a652f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461138673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":365939,"id":"0xaf88a46bf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461139222,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":366152,"id":"0xaf88ab5df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461139253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":122,"tts":366183},
-{"pid":27443,"tid":27466,"ts":326461139283,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":366213,"id":"0xccc55f02"},
-{"pid":27443,"tid":27466,"ts":326461148531,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":366,"tdur":336,"tts":366427},
-{"pid":27443,"tid":27466,"ts":326461148623,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":244,"tdur":244,"tts":366488},
-{"pid":27443,"tid":27466,"ts":326461148653,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":366519,"id":"0xba460902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461148745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":366610,"id":"0xaf88a66ef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461148775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":366641,"id":"0xaf88a460f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461149294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":366854,"id":"0xaf88ab5ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461149294,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":366854},
-{"pid":27443,"tid":27466,"ts":326461149325,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":366885,"id":"0xccc56002"},
-{"pid":27443,"tid":27466,"ts":326461160983,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":428,"tdur":214,"tts":366976},
-{"pid":27443,"tid":27466,"ts":326461161045,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":152,"tdur":153,"tts":367037},
-{"pid":27443,"tid":27466,"ts":326461161075,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":367068,"id":"0xba460a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461161106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":367099,"id":"0xaf88a66af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461161136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":367129,"id":"0xaf88a47df3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461162693,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":367434,"id":"0xaf88ab5ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461162723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":367465},
-{"pid":27443,"tid":27466,"ts":326461162754,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":367495,"id":"0xccc56102"},
-{"pid":27443,"tid":27466,"ts":326461165012,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":184,"tts":367678},
-{"pid":27443,"tid":27466,"ts":326461165073,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":153,"tdur":122,"tts":367709},
-{"pid":27443,"tid":27466,"ts":326461165104,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":367739,"id":"0xba460b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461165134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":367770,"id":"0xaf88a666f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461165165,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":367800,"id":"0xaf88a47af3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461165714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":368014,"id":"0xaf88ab58f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461165745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":368045},
-{"pid":27443,"tid":27466,"ts":326461165775,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":368075,"id":"0xccc56202"},
-{"pid":27443,"tid":27466,"ts":326461168522,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":366,"tdur":367,"tts":368258},
-{"pid":27443,"tid":27466,"ts":326461168614,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":244,"tdur":244,"tts":368350},
-{"pid":27443,"tid":27466,"ts":326461168644,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":368380,"id":"0xba460c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461168705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":368472,"id":"0xaf88a662f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461168766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":368502,"id":"0xaf88a477f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461169377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":368777,"id":"0xaf88ab59f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461169407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":368808},
-{"pid":27443,"tid":27466,"ts":326461169438,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":368838,"id":"0xccc56302"},
-{"pid":27443,"tid":27459,"ts":326461114959,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7618770,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461114989,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7618770,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461115081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7618861,"id":"0xaf88a455f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461115081,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":671,"tdur":672,"tts":7618861},
-{"pid":27443,"tid":27459,"ts":326461115111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7618892,"id":"0xaf88a456f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461115142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7618922,"id":"0xaf88a65df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461115142,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":610,"tdur":611,"tts":7618922},
-{"pid":27443,"tid":27459,"ts":326461115233,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":489,"tdur":458,"tts":7619044},
-{"pid":27443,"tid":27459,"ts":326461115661,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":7619472,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461115813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7619594,"id":"0xaf88a456f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461115813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":306,"tdur":305,"tts":7619594},
-{"pid":27443,"tid":27459,"ts":326461115844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7619624,"id":"0xaf88a457f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461115874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7619655,"id":"0xaf88a65ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461115874,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":245,"tdur":213,"tts":7619655},
-{"pid":27443,"tid":27459,"ts":326461115905,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7619685,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461115905,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.054},"dur":183,"tdur":183,"tts":7619685},
-{"pid":27443,"tid":27459,"ts":326461115935,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7619716},
-{"pid":27443,"tid":27459,"ts":326461115996,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7619777},
-{"pid":27443,"tid":27459,"ts":326461116027,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7619807,"id":"0xaf88a658f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461116057,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7619838,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461116088,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7619868,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461116149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7619929,"id":"0xaf88a457f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461116180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7619960},
-{"pid":27443,"tid":27459,"ts":326461116759,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7620082,"id":"0xaf88a450f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461116759,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":184,"tdur":183,"tts":7620082},
-{"pid":27443,"tid":27459,"ts":326461116790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7620112,"id":"0xaf88a451f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461116820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7620143,"id":"0xaf88a659f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461116820,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":7620143},
-{"pid":27443,"tid":27459,"ts":326461116851,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":31,"tts":7620173},
-{"pid":27443,"tid":27459,"ts":326461116973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7620296,"id":"0xaf88a451f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461116973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":152,"tts":7620296},
-{"pid":27443,"tid":27459,"ts":326461117004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7620357,"id":"0xaf88a453f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461117034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7620357,"id":"0xaf88a658f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461117034,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":31,"tts":7620387},
-{"pid":27443,"tid":27459,"ts":326461117065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7620387,"id":"0xaf88a65bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461117095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7620418,"id":"0xaf88a654f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461117156,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7620479,"id":"0xaf88a452f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461117156,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7620479},
-{"pid":27443,"tid":27459,"ts":326461117187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7620509,"id":"0xaf88a65bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461117217,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7620540},
-{"pid":27443,"tid":27459,"ts":326461117248,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7620570,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461117248,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7620570,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461117248,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7620601,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461117309,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7620631,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461117309,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7620631,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461117370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7620692,"id":"0xaf88a453f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461117400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":733,"tdur":702,"tts":7620723},
-{"pid":27443,"tid":27459,"ts":326461117431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7620753,"id":"0xaf88a46cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461117431,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7620753,"id":"0xaf88a65af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461117461,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":641,"tdur":641,"tts":7620784},
-{"pid":27443,"tid":27459,"ts":326461117461,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":611,"tdur":610,"tts":7620784},
-{"pid":27443,"tid":27459,"ts":326461117522,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":1257}},"tts":7620845,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461117553,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":31,"tts":7620875},
-{"pid":27443,"tid":27459,"ts":326461117614,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":366,"tdur":367,"tts":7620936},
-{"pid":27443,"tid":27459,"ts":326461117614,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":336,"tdur":305,"tts":7620967},
-{"pid":27443,"tid":27459,"ts":326461117980,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":91,"tts":7621303},
-{"pid":27443,"tid":27459,"ts":326461118011,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7621333,"id":"0xaf88ab43f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461118163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7621486,"id":"0xaf88a46cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461118163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":306,"tdur":305,"tts":7621486},
-{"pid":27443,"tid":27459,"ts":326461118194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7621516,"id":"0xaf88a46df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461118224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7621547,"id":"0xaf88a654f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461118224,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":214,"tdur":214,"tts":7621547},
-{"pid":27443,"tid":27459,"ts":326461118224,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7621547,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461118255,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.023},"dur":183,"tdur":184,"tts":7621577},
-{"pid":27443,"tid":27459,"ts":326461118255,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7621608},
-{"pid":27443,"tid":27459,"ts":326461118255,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7621608},
-{"pid":27443,"tid":27459,"ts":326461118347,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7621669},
-{"pid":27443,"tid":27459,"ts":326461118377,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7621699,"id":"0xaf88a655f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461118408,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7621730,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461118408,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7621730,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461118499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7621822,"id":"0xaf88a46df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461118499,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7621822},
-{"pid":27443,"tid":27459,"ts":326461128754,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7622005,"id":"0xaf88a46ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461128784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":1099,"tts":7622035},
-{"pid":27443,"tid":27459,"ts":326461128846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7622096,"id":"0xaf88a46ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461128876,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7622127,"id":"0xaf88a656f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461128907,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":946,"tdur":946,"tts":7622157},
-{"pid":27443,"tid":27459,"ts":326461128968,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":854,"tdur":855,"tts":7622218},
-{"pid":27443,"tid":27459,"ts":326461129059,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":28488}},"tts":7622340,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461129120,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":336,"tdur":336,"tts":7622371},
-{"pid":27443,"tid":27459,"ts":326461129456,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":183,"tdur":153,"tts":7622737},
-{"pid":27443,"tid":27459,"ts":326461129517,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":91,"tts":7622768},
-{"pid":27443,"tid":27459,"ts":326461129670,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":122,"tdur":122,"tts":7622920},
-{"pid":27443,"tid":27459,"ts":326461129700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7622951,"id":"0xaf88ab5cf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461129944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7623226,"id":"0xaf88a46ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461129975,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":335,"tdur":335,"tts":7623226},
-{"pid":27443,"tid":27459,"ts":326461129975,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":91,"tts":7623226},
-{"pid":27443,"tid":27459,"ts":326461130097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7623348,"id":"0xaf88a468f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461130127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7623378,"id":"0xaf88a655f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461130158,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":122,"tdur":122,"tts":7623409},
-{"pid":27443,"tid":27459,"ts":326461130188,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7623439,"id":"0xaf88a657f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461130249,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7623500,"id":"0xaf88a650f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461130372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7623622,"id":"0xaf88a468f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461130402,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":366,"tts":7623653},
-{"pid":27443,"tid":27459,"ts":326461130433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7623683,"id":"0xaf88a469f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461130463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7623744,"id":"0xaf88a657f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461130494,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":274,"tdur":245,"tts":7623744},
-{"pid":27443,"tid":27459,"ts":326461130555,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7623805,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461130585,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7623836,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461130616,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7623866,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461130677,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7623927,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461130707,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7623958,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461130829,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7624111,"id":"0xaf88a469f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461130860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":488,"tts":7624141},
-{"pid":27443,"tid":27459,"ts":326461130921,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7624172,"id":"0xaf88a46af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461130951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7624202,"id":"0xaf88a650f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461130982,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":366,"tdur":366,"tts":7624233},
-{"pid":27443,"tid":27459,"ts":326461131012,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7624263,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461131043,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.603},"dur":305,"tdur":305,"tts":7624294},
-{"pid":27443,"tid":27459,"ts":326461131074,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7624355},
-{"pid":27443,"tid":27459,"ts":326461131165,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7624446},
-{"pid":27443,"tid":27459,"ts":326461131226,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7624477,"id":"0xaf88a651f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461131287,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7624538,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461131318,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7624568,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461131440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7624690,"id":"0xaf88a46af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461131470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7624721},
-{"pid":27443,"tid":27459,"ts":326461138765,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7624904,"id":"0xaf88a46bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461138765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":427,"tts":7624904},
-{"pid":27443,"tid":27459,"ts":326461138795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7624935,"id":"0xaf88a464f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461138826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7624965,"id":"0xaf88a652f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461138826,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":366,"tts":7624965},
-{"pid":27443,"tid":27459,"ts":326461138856,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":305,"tdur":305,"tts":7624996},
-{"pid":27443,"tid":27459,"ts":326461138917,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":1187}},"tts":7625057,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461138948,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":31,"tts":7625087},
-{"pid":27443,"tid":27459,"ts":326461139009,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7625148},
-{"pid":27443,"tid":27459,"ts":326461139009,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":0,"tts":7625179},
-{"pid":27443,"tid":27459,"ts":326461139070,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":91,"tdur":61,"tts":7625240},
-{"pid":27443,"tid":27459,"ts":326461139100,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7625240,"id":"0xaf88ab5df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461139253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7625392,"id":"0xaf88a464f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461139253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":7625392},
-{"pid":27443,"tid":27459,"ts":326461139283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7625423,"id":"0xaf88a465f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461139314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7625453,"id":"0xaf88a651f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461139314,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":62,"tts":7625453},
-{"pid":27443,"tid":27459,"ts":326461139345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7625484,"id":"0xaf88a653f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461139345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7625515,"id":"0xaf88a66cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461139436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7625576,"id":"0xaf88a465f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461139436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":213,"tts":7625576},
-{"pid":27443,"tid":27459,"ts":326461139467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7625606,"id":"0xaf88a466f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461139497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7625637,"id":"0xaf88a653f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461139497,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7625637},
-{"pid":27443,"tid":27459,"ts":326461139528,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7625667,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139528,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7625667,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139558,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7625698,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139589,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7625728,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139589,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7625759,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7625820,"id":"0xaf88a466f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461139680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":274,"tts":7625820},
-{"pid":27443,"tid":27459,"ts":326461139711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7625850,"id":"0xaf88a467f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461139741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7625881,"id":"0xaf88a66cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461139741,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":183,"tts":7625881},
-{"pid":27443,"tid":27459,"ts":326461139772,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7625911,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139772,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.786},"dur":152,"tdur":153,"tts":7625911},
-{"pid":27443,"tid":27459,"ts":326461139802,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7625942},
-{"pid":27443,"tid":27459,"ts":326461139833,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7625972},
-{"pid":27443,"tid":27459,"ts":326461139863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7626003,"id":"0xaf88a66df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461139894,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7626033,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139924,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7626064,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461139985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7626125,"id":"0xaf88a467f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461140046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7626186},
-{"pid":27443,"tid":27459,"ts":326461148867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7626339,"id":"0xaf88a460f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461148897,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":396,"tts":7626339},
-{"pid":27443,"tid":27459,"ts":326461148928,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7626369,"id":"0xaf88a461f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461148958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7626400,"id":"0xaf88a66ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461148958,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":335,"tts":7626400},
-{"pid":27443,"tid":27459,"ts":326461148989,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":275,"tdur":275,"tts":7626430},
-{"pid":27443,"tid":27459,"ts":326461149019,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":900}},"tts":7626491,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461149050,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":31,"tdur":31,"tts":7626491},
-{"pid":27443,"tid":27459,"ts":326461149111,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7626552},
-{"pid":27443,"tid":27459,"ts":326461149111,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7626552},
-{"pid":27443,"tid":27459,"ts":326461149172,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":61,"tts":7626613},
-{"pid":27443,"tid":27459,"ts":326461149203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7626644,"id":"0xaf88ab5ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461149355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7626796,"id":"0xaf88a461f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461149355,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7626796},
-{"pid":27443,"tid":27459,"ts":326461149386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7626827,"id":"0xaf88a462f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461149386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7626827,"id":"0xaf88a66df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461149416,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7626857},
-{"pid":27443,"tid":27459,"ts":326461149416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7626857,"id":"0xaf88a66ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461149447,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7626888,"id":"0xaf88a668f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461149508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7626949,"id":"0xaf88a462f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461149538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7626980},
-{"pid":27443,"tid":27459,"ts":326461149538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7627010,"id":"0xaf88a463f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461149569,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7627010,"id":"0xaf88a66ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461149569,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":152,"tdur":122,"tts":7627010},
-{"pid":27443,"tid":27459,"ts":326461149599,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7627041,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149630,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7627071,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149630,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7627071,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149660,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7627102,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149691,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7627132,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7627193,"id":"0xaf88a463f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461149782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":335,"tts":7627224},
-{"pid":27443,"tid":27459,"ts":326461149782,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7627224,"id":"0xaf88a47cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461149813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7627254,"id":"0xaf88a668f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461149813,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":305,"tdur":275,"tts":7627254},
-{"pid":27443,"tid":27459,"ts":326461149844,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7627285,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149874,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.816},"dur":244,"tdur":214,"tts":7627315},
-{"pid":27443,"tid":27459,"ts":326461149874,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7627315},
-{"pid":27443,"tid":27459,"ts":326461149935,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7627376},
-{"pid":27443,"tid":27459,"ts":326461149966,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7627407,"id":"0xaf88a669f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461149996,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7627437,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461149996,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7627437,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461150179,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7627590,"id":"0xaf88a47cf3d027d2"},{"pid":27443,"tid":27459,"ts":326461150179,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7627590},
-{"pid":27443,"tid":27459,"ts":326461161228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7627712,"id":"0xaf88a47df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461161258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":579,"tts":7627743},
-{"pid":27443,"tid":27459,"ts":326461161289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7627773,"id":"0xaf88a47ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461161289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7627773,"id":"0xaf88a66af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461161319,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1129,"tdur":488,"tts":7627804},
-{"pid":27443,"tid":27459,"ts":326461161350,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":1098,"tdur":458,"tts":7627834},
-{"pid":27443,"tid":27459,"ts":326461162052,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":18767}},"tts":7627895,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461162082,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":153,"tdur":152,"tts":7627926},
-{"pid":27443,"tid":27459,"ts":326461162235,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":92,"tts":7628078},
-{"pid":27443,"tid":27459,"ts":326461162265,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":30,"tts":7628109},
-{"pid":27443,"tid":27459,"ts":326461162326,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":61,"tts":7628200},
-{"pid":27443,"tid":27459,"ts":326461162357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7628200,"id":"0xaf88ab5ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461163242,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7628353,"id":"0xaf88a47ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461163272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":123,"tts":7628383},
-{"pid":27443,"tid":27459,"ts":326461163272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7628414,"id":"0xaf88a47ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461163303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7628414,"id":"0xaf88a669f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461163334,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":62,"tts":7628444},
-{"pid":27443,"tid":27459,"ts":326461163334,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7628444,"id":"0xaf88a66bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461163364,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7628475,"id":"0xaf88a664f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461163425,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7628536,"id":"0xaf88a47ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461163456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7628567},
-{"pid":27443,"tid":27459,"ts":326461163456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7628597,"id":"0xaf88a478f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461163486,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7628597,"id":"0xaf88a66bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461163486,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":153,"tdur":122,"tts":7628628},
-{"pid":27443,"tid":27459,"ts":326461163547,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7628658,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163547,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7628658,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163547,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7628658,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163608,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7628719,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163608,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7628719,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7628811,"id":"0xaf88a478f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461163700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":274,"tdur":274,"tts":7628811},
-{"pid":27443,"tid":27459,"ts":326461163730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7628841,"id":"0xaf88a479f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461163761,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7628872,"id":"0xaf88a664f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461163761,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":213,"tdur":213,"tts":7628872},
-{"pid":27443,"tid":27459,"ts":326461163761,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7628872,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163791,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.787},"dur":153,"tdur":153,"tts":7628902},
-{"pid":27443,"tid":27459,"ts":326461163822,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7628933},
-{"pid":27443,"tid":27459,"ts":326461163852,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7628994},
-{"pid":27443,"tid":27459,"ts":326461163913,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7629024,"id":"0xaf88a665f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461163913,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7629024,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461163944,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7629055,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461164005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7629116,"id":"0xaf88a479f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461164036,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7629146},
-{"pid":27443,"tid":27459,"ts":326461165256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7629269,"id":"0xaf88a47af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461165256,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":428,"tdur":427,"tts":7629269},
-{"pid":27443,"tid":27459,"ts":326461165287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7629299,"id":"0xaf88a47bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461165317,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7629330,"id":"0xaf88a666f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461165317,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":335,"tts":7629330},
-{"pid":27443,"tid":27459,"ts":326461165348,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":305,"tdur":305,"tts":7629360},
-{"pid":27443,"tid":27459,"ts":326461165378,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":2374}},"tts":7629421,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461165409,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7629421},
-{"pid":27443,"tid":27459,"ts":326461165470,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7629482},
-{"pid":27443,"tid":27459,"ts":326461165470,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":30,"tts":7629513},
-{"pid":27443,"tid":27459,"ts":326461165531,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":92,"tts":7629543},
-{"pid":27443,"tid":27459,"ts":326461165562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7629574,"id":"0xaf88ab58f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461165714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7629726,"id":"0xaf88a47bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461165745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7629757},
-{"pid":27443,"tid":27459,"ts":326461165745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7629757,"id":"0xaf88a474f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461165775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7629787,"id":"0xaf88a665f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461165775,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7629787},
-{"pid":27443,"tid":27459,"ts":326461165806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7629818,"id":"0xaf88a667f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461165836,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7629848,"id":"0xaf88a660f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461165897,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7629909,"id":"0xaf88a474f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461165897,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":214,"tts":7629909},
-{"pid":27443,"tid":27459,"ts":326461165928,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7629940,"id":"0xaf88a475f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461165958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7629971,"id":"0xaf88a667f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461165958,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7629971},
-{"pid":27443,"tid":27459,"ts":326461165989,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7630001,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461165989,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7630001,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166019,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7630032,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166050,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7630062,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166050,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7630093,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166141,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7630154,"id":"0xaf88a475f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461166141,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":274,"tts":7630154},
-{"pid":27443,"tid":27459,"ts":326461166172,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7630184,"id":"0xaf88a476f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461166202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7630215,"id":"0xaf88a660f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461166202,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":184,"tdur":183,"tts":7630215},
-{"pid":27443,"tid":27459,"ts":326461166202,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7630245,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166233,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.786},"dur":153,"tdur":153,"tts":7630245},
-{"pid":27443,"tid":27459,"ts":326461166263,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7630276},
-{"pid":27443,"tid":27459,"ts":326461166294,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7630306},
-{"pid":27443,"tid":27459,"ts":326461166325,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7630337,"id":"0xaf88a661f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461166355,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7630367,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166386,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7630398,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461166447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7630459,"id":"0xaf88a476f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461166447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7630459},
-{"pid":27443,"tid":27459,"ts":326461168858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7630611,"id":"0xaf88a477f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461168888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":428,"tdur":428,"tts":7630611},
-{"pid":27443,"tid":27459,"ts":326461168919,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7630642,"id":"0xaf88a470f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461168919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7630672,"id":"0xaf88a662f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461168949,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":367,"tdur":367,"tts":7630672},
-{"pid":27443,"tid":27459,"ts":326461168949,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":336,"tdur":305,"tts":7630703},
-{"pid":27443,"tid":27459,"ts":326461169010,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":2374}},"tts":7630764,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461169041,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":7630764},
-{"pid":27443,"tid":27459,"ts":326461169102,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":92,"tts":7630825},
-{"pid":27443,"tid":27459,"ts":326461169132,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7630856},
-{"pid":27443,"tid":27459,"ts":326461169193,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":61,"tts":7630947},
-{"pid":27443,"tid":27459,"ts":326461169224,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7630947,"id":"0xaf88ab59f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461169377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7631100,"id":"0xaf88a470f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461169377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7631100},
-{"pid":27443,"tid":27459,"ts":326461169407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7631130,"id":"0xaf88a471f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461169438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7631161,"id":"0xaf88a661f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461169438,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7631161},
-{"pid":27443,"tid":27459,"ts":326461169468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7631191,"id":"0xaf88a663f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461169499,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7631222,"id":"0xaf88a67cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461169560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7631283,"id":"0xaf88a471f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461169590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":184,"tts":7631313},
-{"pid":27443,"tid":27459,"ts":326461169590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7631313,"id":"0xaf88a472f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461169621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7631344,"id":"0xaf88a663f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461169621,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":152,"tdur":122,"tts":7631344},
-{"pid":27443,"tid":27459,"ts":326461169651,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7631374,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461169682,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7631405,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461169682,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7631405,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461169712,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7631435,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461169743,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7631466,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461169804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7631527,"id":"0xaf88a472f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461169834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":335,"tts":7631558},
-{"pid":27443,"tid":27459,"ts":326461169834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7631588,"id":"0xaf88a473f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461169865,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7631588,"id":"0xaf88a67cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461169895,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":245,"tdur":214,"tts":7631649},
-{"pid":27443,"tid":27459,"ts":326461169926,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7631649,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461169926,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.786},"dur":214,"tdur":183,"tts":7631680},
-{"pid":27443,"tid":27459,"ts":326461169956,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7631680},
-{"pid":27443,"tid":27459,"ts":326461170048,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7631771},
-{"pid":27443,"tid":27459,"ts":326461170079,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7631802,"id":"0xaf88a67df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461170109,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7631832,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461170109,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7631832,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461170201,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7631924,"id":"0xaf88a473f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461170201,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7631924},
-{"pid":27443,"tid":27459,"ts":326461171849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7632046,"id":"0xaf88a40cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461171849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":396,"tdur":397,"tts":7632046},
-{"pid":27443,"tid":27459,"ts":326461171879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7632076,"id":"0xaf88a40df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461171910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7632107,"id":"0xaf88a67ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461171910,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":335,"tdur":305,"tts":7632107},
-{"pid":27443,"tid":27459,"ts":326461171940,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":275,"tdur":275,"tts":7632137},
-{"pid":27443,"tid":27459,"ts":326461172001,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":1187}},"tts":7632199,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461172032,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":31,"tts":7632229},
-{"pid":27443,"tid":27459,"ts":326461172062,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7632260},
-{"pid":27443,"tid":27459,"ts":326461172062,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":0,"tts":7632290},
-{"pid":27443,"tid":27459,"ts":326461172123,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":91,"tts":7632321},
-{"pid":27443,"tid":27459,"ts":326461172154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7632351,"id":"0xaf88ab5af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461172276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7632504,"id":"0xaf88a40df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461172307,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7632504},
-{"pid":27443,"tid":27459,"ts":326461172337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7632534,"id":"0xaf88a40ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461172337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7632534,"id":"0xaf88a67df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461172368,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7632565},
-{"pid":27443,"tid":27459,"ts":326461172368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7632565,"id":"0xaf88a67ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461172398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7632595,"id":"0xaf88a678f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461172459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7632687,"id":"0xaf88a40ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461172490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7632687},
-{"pid":27443,"tid":27459,"ts":326461172520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7632717,"id":"0xaf88a40ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461172520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7632717,"id":"0xaf88a67ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461172551,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7632748},
-{"pid":27443,"tid":27459,"ts":326461172581,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7632778,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172581,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7632778,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172581,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7632778,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172642,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7632839,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172642,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7632839,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7632900,"id":"0xaf88a40ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461172734,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":7632931},
-{"pid":27443,"tid":27459,"ts":326461172764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7632962,"id":"0xaf88a408f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461172764,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7632962,"id":"0xaf88a678f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461172795,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":183,"tts":7632992},
-{"pid":27443,"tid":27459,"ts":326461172795,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7632992,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172825,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.787},"dur":153,"tdur":152,"tts":7633023},
-{"pid":27443,"tid":27459,"ts":326461172825,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7633053},
-{"pid":27443,"tid":27459,"ts":326461172886,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7633084},
-{"pid":27443,"tid":27459,"ts":326461172917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7633114,"id":"0xaf88a679f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461172947,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7633145,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461172947,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7633145,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461173008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7633236,"id":"0xaf88a408f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461173039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7633236},
-{"pid":27443,"tid":27459,"ts":326461174657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7633328,"id":"0xaf88a409f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461174687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":458,"tts":7633358},
-{"pid":27443,"tid":27459,"ts":326461174718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7633389,"id":"0xaf88a40af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461174718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7633389,"id":"0xaf88a67af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461174748,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":367,"tts":7633419},
-{"pid":27443,"tid":27459,"ts":326461174748,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":427,"tdur":367,"tts":7633419},
-{"pid":27443,"tid":27459,"ts":326461174809,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":1187}},"tts":7633480,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461174840,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":30,"tts":7633511},
-{"pid":27443,"tid":27459,"ts":326461174870,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":92,"tts":7633541},
-{"pid":27443,"tid":27459,"ts":326461174870,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":30,"tts":7633572},
-{"pid":27443,"tid":27466,"ts":326461171513,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":336,"tdur":336,"tts":369052},
-{"pid":27443,"tid":27466,"ts":326461171605,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":213,"tdur":214,"tts":369143},
-{"pid":27443,"tid":27466,"ts":326461171635,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":369174,"id":"0xba460d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461171696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":369235,"id":"0xaf88a67ef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461171757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":369296,"id":"0xaf88a40cf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461172307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":369571,"id":"0xaf88ab5af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461172337,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":369601},
-{"pid":27443,"tid":27466,"ts":326461172337,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":369632,"id":"0xccc56402"},
-{"pid":27443,"tid":27466,"ts":326461174412,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":183,"tts":369784},
-{"pid":27443,"tid":27466,"ts":326461174443,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":153,"tdur":122,"tts":369815},
-{"pid":27443,"tid":27466,"ts":326461174473,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":369845,"id":"0xba460e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461174504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":369876,"id":"0xaf88a67af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461174535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":369906,"id":"0xaf88a409f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461175175,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":370120,"id":"0xaf88ab5bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461175206,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":370120},
-{"pid":27443,"tid":27466,"ts":326461175267,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":370181,"id":"0xccc56502"},
-{"pid":27443,"tid":27466,"ts":326461183324,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":672,"tdur":366,"tts":370334},
-{"pid":27443,"tid":27466,"ts":326461183324,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":370334},
-{"pid":27443,"tid":27466,"ts":326461183416,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":549,"tdur":244,"tts":370425},
-{"pid":27443,"tid":27466,"ts":326461183446,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":370425,"id":"0xba460f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461183813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":370517,"id":"0xaf88a676f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461183874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":370578,"id":"0xaf88a406f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461184545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":370853,"id":"0xaf88ab54f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461184576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":122,"tts":370883},
-{"pid":27443,"tid":27466,"ts":326461184606,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":370914,"id":"0xccc56602"},
-{"pid":27443,"tid":27466,"ts":326461192664,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":702,"tdur":397,"tts":371127},
-{"pid":27443,"tid":27466,"ts":326461192755,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":550,"tdur":244,"tts":371219},
-{"pid":27443,"tid":27466,"ts":326461192786,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":371249,"id":"0xba461002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461192877,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":371341,"id":"0xaf88a672f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461192938,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":371402,"id":"0xaf88a403f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461196173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":371646,"id":"0xaf88ab55f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461196204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":152,"tts":371677},
-{"pid":27443,"tid":27466,"ts":326461196234,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":371707,"id":"0xccc56702"},
-{"pid":27443,"tid":27466,"ts":326461202216,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":397,"tdur":396,"tts":371921},
-{"pid":27443,"tid":27466,"ts":326461202308,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":275,"tdur":275,"tts":372012},
-{"pid":27443,"tid":27466,"ts":326461202339,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":372043,"id":"0xba461102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461202430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":372134,"id":"0xaf88a60ef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461202491,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":372195,"id":"0xaf88a418f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461204231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":372409,"id":"0xaf88ab56f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461204261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":372440},
-{"pid":27443,"tid":27466,"ts":326461204292,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":372470,"id":"0xccc56802"},
-{"pid":27443,"tid":27466,"ts":326461208717,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":306,"tdur":305,"tts":372653},
-{"pid":27443,"tid":27466,"ts":326461208809,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":183,"tdur":183,"tts":372745},
-{"pid":27443,"tid":27466,"ts":326461208839,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":372775,"id":"0xba461202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461208900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":372867,"id":"0xaf88a60af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461208961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":372897,"id":"0xaf88a415f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461210396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":373142,"id":"0xaf88ab57f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461210426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":153,"tts":373172},
-{"pid":27443,"tid":27466,"ts":326461210457,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":373203,"id":"0xccc56902"},
-{"pid":27443,"tid":27466,"ts":326461212166,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":641,"tdur":336,"tts":373416},
-{"pid":27443,"tid":27466,"ts":326461212502,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":244,"tdur":213,"tts":373508},
-{"pid":27443,"tid":27466,"ts":326461212563,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":373538,"id":"0xba461302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461212624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":373599,"id":"0xaf88a606f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461212685,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":373660,"id":"0xaf88a412f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461214089,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":373966,"id":"0xaf88ab50f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461214119,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":123,"tdur":92,"tts":373996},
-{"pid":27443,"tid":27466,"ts":326461214150,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":374027,"id":"0xccc56a02"},
-{"pid":27443,"tid":27466,"ts":326461237406,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":428,"tdur":397,"tts":374240},
-{"pid":27443,"tid":27466,"ts":326461237498,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":305,"tdur":275,"tts":374332},
-{"pid":27443,"tid":27466,"ts":326461237529,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":374362,"id":"0xba461402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461237620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":374454,"id":"0xaf88a602f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461237681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":374515,"id":"0xaf88a42ff3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461239299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":374851,"id":"0xaf88ab51f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461239329,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":374881},
-{"pid":27443,"tid":27459,"ts":326461174962,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":183,"tdur":92,"tts":7633663},
-{"pid":27443,"tid":27459,"ts":326461174962,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":7633663},
-{"pid":27443,"tid":27459,"ts":326461175023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7633694,"id":"0xaf88ab5bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461175236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7633847,"id":"0xaf88a40af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461175236,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":30,"tts":7633847},
-{"pid":27443,"tid":27459,"ts":326461175389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":122,"tts":7633908},
-{"pid":27443,"tid":27459,"ts":326461175420,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7633908,"id":"0xaf88a40bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461175450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7633938,"id":"0xaf88a679f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461175450,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7633938},
-{"pid":27443,"tid":27459,"ts":326461175481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7633969,"id":"0xaf88a67bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461175511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7633999,"id":"0xaf88a674f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461175572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7634060,"id":"0xaf88a40bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461175572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":214,"tts":7634060},
-{"pid":27443,"tid":27459,"ts":326461175603,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7634091,"id":"0xaf88a404f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461175633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7634121,"id":"0xaf88a67bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461175633,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7634121},
-{"pid":27443,"tid":27459,"ts":326461175664,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7634152,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461175694,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7634182,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461175694,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7634182,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461175725,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7634213,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461175755,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7634243,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461175816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7634304,"id":"0xaf88a404f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461175816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":244,"tts":7634335},
-{"pid":27443,"tid":27459,"ts":326461175847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7634335,"id":"0xaf88a405f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461175877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7634365,"id":"0xaf88a674f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461175877,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":214,"tdur":214,"tts":7634365},
-{"pid":27443,"tid":27459,"ts":326461175908,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7634396,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461175908,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.817},"dur":153,"tdur":153,"tts":7634396},
-{"pid":27443,"tid":27459,"ts":326461175938,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7634426},
-{"pid":27443,"tid":27459,"ts":326461175969,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7634488},
-{"pid":27443,"tid":27459,"ts":326461176030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7634518,"id":"0xaf88a675f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461176030,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7634518,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461176061,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7634549,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461176122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7634610,"id":"0xaf88a405f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461176152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7634640},
-{"pid":27443,"tid":27459,"ts":326461183996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7634793,"id":"0xaf88a406f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461183996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":519,"tdur":519,"tts":7634793},
-{"pid":27443,"tid":27459,"ts":326461184026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7634823,"id":"0xaf88a407f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461184057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7634854,"id":"0xaf88a676f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461184057,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":427,"tts":7634854},
-{"pid":27443,"tid":27459,"ts":326461184087,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":397,"tdur":397,"tts":7634884},
-{"pid":27443,"tid":27459,"ts":326461184148,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":8695}},"tts":7634945,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461184179,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":92,"tdur":61,"tts":7634976},
-{"pid":27443,"tid":27459,"ts":326461184271,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":92,"tts":7635067},
-{"pid":27443,"tid":27459,"ts":326461184301,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":31,"tts":7635128},
-{"pid":27443,"tid":27459,"ts":326461184393,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":62,"tts":7635189},
-{"pid":27443,"tid":27459,"ts":326461184423,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7635220,"id":"0xaf88ab54f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461184545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7635342,"id":"0xaf88a407f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461184576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7635373},
-{"pid":27443,"tid":27459,"ts":326461184606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7635403,"id":"0xaf88a400f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461184606,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7635403,"id":"0xaf88a675f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461184637,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":30,"tts":7635434},
-{"pid":27443,"tid":27459,"ts":326461184637,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7635434,"id":"0xaf88a677f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461184667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7635464,"id":"0xaf88a670f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461184728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7635525,"id":"0xaf88a400f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461184759,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7635556},
-{"pid":27443,"tid":27459,"ts":326461184759,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7635586,"id":"0xaf88a401f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461184789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7635586,"id":"0xaf88a677f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461184789,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":153,"tdur":153,"tts":7635586},
-{"pid":27443,"tid":27459,"ts":326461184820,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7635617,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461184850,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7635647,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461184850,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7635647,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461184881,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7635678,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461184911,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7635708,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461185003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7635800,"id":"0xaf88a401f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461185003,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":214,"tts":7635800},
-{"pid":27443,"tid":27459,"ts":326461185247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":336,"tts":7636044},
-{"pid":27443,"tid":27459,"ts":326461185278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7636075,"id":"0xaf88a402f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461185278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7636075,"id":"0xaf88a670f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461185308,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":244,"tdur":244,"tts":7636105},
-{"pid":27443,"tid":27459,"ts":326461185308,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7636105,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461185339,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.542},"dur":183,"tdur":183,"tts":7636136},
-{"pid":27443,"tid":27459,"ts":326461185369,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7636166},
-{"pid":27443,"tid":27459,"ts":326461185400,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7636227},
-{"pid":27443,"tid":27459,"ts":326461185461,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7636258,"id":"0xaf88a671f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461185491,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7636288,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461185522,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7636319,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461185613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7636410,"id":"0xaf88a402f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461185644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7636441},
-{"pid":27443,"tid":27459,"ts":326461195502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7636563,"id":"0xaf88a403f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461195502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":641,"tdur":641,"tts":7636563},
-{"pid":27443,"tid":27459,"ts":326461195563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7636624,"id":"0xaf88a41cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461195563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7636624,"id":"0xaf88a672f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461195594,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":549,"tdur":519,"tts":7636654},
-{"pid":27443,"tid":27459,"ts":326461195624,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":488,"tdur":488,"tts":7636685},
-{"pid":27443,"tid":27459,"ts":326461195685,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":13057}},"tts":7636777,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461195716,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":152,"tdur":122,"tts":7636807},
-{"pid":27443,"tid":27459,"ts":326461195868,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":91,"tts":7636960},
-{"pid":27443,"tid":27459,"ts":326461195899,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":91,"tdur":61,"tts":7636960},
-{"pid":27443,"tid":27459,"ts":326461196021,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":91,"tdur":61,"tts":7637082},
-{"pid":27443,"tid":27459,"ts":326461196021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7637112,"id":"0xaf88ab55f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461196204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7637265,"id":"0xaf88a41cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461196204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7637265},
-{"pid":27443,"tid":27459,"ts":326461196234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7637295,"id":"0xaf88a41df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461196265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7637326,"id":"0xaf88a671f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461196265,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":92,"tdur":91,"tts":7637326},
-{"pid":27443,"tid":27459,"ts":326461196296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7637356,"id":"0xaf88a673f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461196357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7637417,"id":"0xaf88a60cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461196418,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7637479,"id":"0xaf88a41df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461196418,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":214,"tts":7637509},
-{"pid":27443,"tid":27459,"ts":326461196448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7637509,"id":"0xaf88a41ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461196479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7637540,"id":"0xaf88a673f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461196509,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7637570},
-{"pid":27443,"tid":27459,"ts":326461196540,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7637601,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196540,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7637601,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196570,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7637631,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196601,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7637662,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196601,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7637692,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7637753,"id":"0xaf88a41ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461196692,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":306,"tdur":305,"tts":7637753},
-{"pid":27443,"tid":27459,"ts":326461196723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7637784,"id":"0xaf88a41ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461196753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7637814,"id":"0xaf88a60cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461196753,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":214,"tdur":214,"tts":7637814},
-{"pid":27443,"tid":27459,"ts":326461196753,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7637845,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196784,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.786},"dur":183,"tdur":183,"tts":7637845},
-{"pid":27443,"tid":27459,"ts":326461196814,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7637875},
-{"pid":27443,"tid":27459,"ts":326461196875,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7637936},
-{"pid":27443,"tid":27459,"ts":326461196906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7637967,"id":"0xaf88a60df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461196936,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7637997,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461196936,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7637997,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461197059,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7638119,"id":"0xaf88a41ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461197089,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7638150},
-{"pid":27443,"tid":27459,"ts":326461203376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7638242,"id":"0xaf88a418f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461203407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2563,"tdur":794,"tts":7638272},
-{"pid":27443,"tid":27459,"ts":326461203437,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7638303,"id":"0xaf88a419f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461203468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7638333,"id":"0xaf88a60ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461203468,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":2472,"tdur":702,"tts":7638333},
-{"pid":27443,"tid":27459,"ts":326461203498,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":2442,"tdur":671,"tts":7638364},
-{"pid":27443,"tid":27459,"ts":326461203559,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":13417}},"tts":7638455,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461203559,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":7638455},
-{"pid":27443,"tid":27459,"ts":326461203681,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":184,"tdur":183,"tts":7638547},
-{"pid":27443,"tid":27459,"ts":326461203681,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":7638547},
-{"pid":27443,"tid":27459,"ts":326461203865,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":91,"tts":7638730},
-{"pid":27443,"tid":27459,"ts":326461203895,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":7638760},
-{"pid":27443,"tid":27459,"ts":326461203956,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":1953,"tdur":153,"tts":7638852},
-{"pid":27443,"tid":27459,"ts":326461203956,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7638852},
-{"pid":27443,"tid":27459,"ts":326461204017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7638913,"id":"0xaf88ab56f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461206032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7639127,"id":"0xaf88a419f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7639127},
-{"pid":27443,"tid":27459,"ts":326461206062,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7639157,"id":"0xaf88a41af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7639188,"id":"0xaf88a60df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461206093,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7639188},
-{"pid":27443,"tid":27459,"ts":326461206123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7639218,"id":"0xaf88a60ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461206154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7639249,"id":"0xaf88a608f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461206215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7639310,"id":"0xaf88a41af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":213,"tts":7639310},
-{"pid":27443,"tid":27459,"ts":326461206245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7639340,"id":"0xaf88a41bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7639371,"id":"0xaf88a60ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461206276,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":7639371},
-{"pid":27443,"tid":27459,"ts":326461206306,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7639401,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206337,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7639432,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206337,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7639432,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206367,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7639462,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206398,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7639493,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7639554,"id":"0xaf88a41bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":336,"tts":7639584},
-{"pid":27443,"tid":27459,"ts":326461206520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7639615,"id":"0xaf88a414f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7639615,"id":"0xaf88a608f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461206550,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":275,"tdur":275,"tts":7639645},
-{"pid":27443,"tid":27459,"ts":326461206550,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7639645,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206581,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.786},"dur":244,"tdur":244,"tts":7639676},
-{"pid":27443,"tid":27459,"ts":326461206611,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7639707},
-{"pid":27443,"tid":27459,"ts":326461206672,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7639768},
-{"pid":27443,"tid":27459,"ts":326461206703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7639798,"id":"0xaf88a609f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461206703,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7639798},
-{"pid":27443,"tid":27459,"ts":326461206764,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7639890,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206795,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7639890,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461206856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7639981,"id":"0xaf88a414f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461206886,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2808,"tdur":61,"tts":7639981},
-{"pid":27443,"tid":27459,"ts":326461209725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7640073,"id":"0xaf88a415f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461209755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":610,"tdur":611,"tts":7640103},
-{"pid":27443,"tid":27459,"ts":326461209786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7640134,"id":"0xaf88a416f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461209816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7640164,"id":"0xaf88a60af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461209816,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":519,"tdur":519,"tts":7640164},
-{"pid":27443,"tid":27459,"ts":326461209847,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":488,"tdur":488,"tts":7640195},
-{"pid":27443,"tid":27459,"ts":326461209908,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":9271}},"tts":7640286,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461209938,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":153,"tdur":153,"tts":7640286},
-{"pid":27443,"tid":27459,"ts":326461210091,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":91,"tts":7640470},
-{"pid":27443,"tid":27459,"ts":326461210121,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":91,"tts":7640470},
-{"pid":27443,"tid":27459,"ts":326461210243,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7640592},
-{"pid":27443,"tid":27459,"ts":326461210243,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7640622,"id":"0xaf88ab57f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461210396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7640744,"id":"0xaf88a416f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461210426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1099,"tdur":152,"tts":7640775},
-{"pid":27443,"tid":27459,"ts":326461210457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7640805,"id":"0xaf88a417f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461210488,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7640836,"id":"0xaf88a609f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461210488,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":1037,"tdur":91,"tts":7640836},
-{"pid":27443,"tid":27459,"ts":326461210518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7640866,"id":"0xaf88a60bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461210518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7640866,"id":"0xaf88a604f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461210518,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":977,"tdur":31,"tts":7640866},
-{"pid":27443,"tid":27459,"ts":326461211586,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7640988,"id":"0xaf88a417f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461211586,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":305,"tts":7641019},
-{"pid":27443,"tid":27459,"ts":326461211617,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7641019,"id":"0xaf88a410f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461211647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7641049,"id":"0xaf88a60bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461211647,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":7641049},
-{"pid":27443,"tid":27459,"ts":326461211739,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":152,"tdur":153,"tts":7641141},
-{"pid":27443,"tid":27459,"ts":326461211769,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7641171,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461211800,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7641202,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461211830,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7641233,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461211861,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7641263,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461211861,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7641263,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461211952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7641355,"id":"0xaf88a410f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461211952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":366,"tts":7641355},
-{"pid":27443,"tid":27459,"ts":326461211952,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":245,"tdur":30,"tts":7641355},
-{"pid":27443,"tid":27459,"ts":326461212258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7641477,"id":"0xaf88a411f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461212288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7641507,"id":"0xaf88a604f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461212288,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":214,"tdur":214,"tts":7641507},
-{"pid":27443,"tid":27459,"ts":326461212288,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7641507,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461212319,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.511},"dur":152,"tdur":152,"tts":7641538},
-{"pid":27443,"tid":27459,"ts":326461212349,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7641568},
-{"pid":27443,"tid":27459,"ts":326461212380,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7641599},
-{"pid":27443,"tid":27459,"ts":326461212410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7641660,"id":"0xaf88a605f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461212441,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7641660,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461212471,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7641690,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461212532,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7641751,"id":"0xaf88a411f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461212563,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7641782},
-{"pid":27443,"tid":27459,"ts":326461212899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7641904,"id":"0xaf88a412f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461212929,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1465,"tdur":854,"tts":7641935},
-{"pid":27443,"tid":27459,"ts":326461212990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7641996,"id":"0xaf88a413f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461213021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7642026,"id":"0xaf88a606f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461213051,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1313,"tdur":702,"tts":7642057},
-{"pid":27443,"tid":27459,"ts":326461213082,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":1251,"tdur":641,"tts":7642087},
-{"pid":27443,"tid":27459,"ts":326461213173,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":4748}},"tts":7642209,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461213173,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7642209},
-{"pid":27443,"tid":27459,"ts":326461213234,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":122,"tdur":122,"tts":7642240},
-{"pid":27443,"tid":27459,"ts":326461213356,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":184,"tdur":153,"tts":7642392},
-{"pid":27443,"tid":27459,"ts":326461213387,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":122,"tdur":91,"tts":7642423},
-{"pid":27443,"tid":27459,"ts":326461213540,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":763,"tdur":123,"tts":7642575},
-{"pid":27443,"tid":27459,"ts":326461213601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7642606,"id":"0xaf88ab50f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461214455,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7642850,"id":"0xaf88a413f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461214486,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":7642881},
-{"pid":27443,"tid":27459,"ts":326461214516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7642942,"id":"0xaf88a42cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461214577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7642972,"id":"0xaf88a605f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461214577,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":122,"tdur":91,"tts":7643003},
-{"pid":27443,"tid":27459,"ts":326461214638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7643033,"id":"0xaf88a607f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461214669,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7643064,"id":"0xaf88a600f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461214791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7643186,"id":"0xaf88a42cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461214821,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":672,"tdur":397,"tts":7643216},
-{"pid":27443,"tid":27459,"ts":326461214882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7643277,"id":"0xaf88a42df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461214913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7643308,"id":"0xaf88a607f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461214943,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":519,"tdur":245,"tts":7643338},
-{"pid":27443,"tid":27459,"ts":326461214974,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7643369,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461215005,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7643399,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461215035,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7643430,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461215096,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7643491,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461215096,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":31,"tts":7643491},
-{"pid":27443,"tid":27459,"ts":326461215401,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7643552,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461215554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7643674,"id":"0xaf88a42df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461215584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":641,"tdur":641,"tts":7643705},
-{"pid":27443,"tid":27459,"ts":326461215645,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7643766,"id":"0xaf88a42ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461215676,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7643796,"id":"0xaf88a600f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461215706,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":489,"tdur":488,"tts":7643827},
-{"pid":27443,"tid":27459,"ts":326461215706,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7643857,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461215737,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.329},"dur":427,"tdur":397,"tts":7643888},
-{"pid":27443,"tid":27459,"ts":326461215798,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7643918},
-{"pid":27443,"tid":27459,"ts":326461215859,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7644010},
-{"pid":27443,"tid":27459,"ts":326461215859,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7644010},
-{"pid":27443,"tid":27459,"ts":326461215951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7644071,"id":"0xaf88a601f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461215951,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":7644071},
-{"pid":27443,"tid":27459,"ts":326461216103,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7644224,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461216134,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7644254,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461216286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7644407,"id":"0xaf88a42ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461216317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7644437},
-{"pid":27443,"tid":27459,"ts":326461237956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7644620,"id":"0xaf88a42ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461237986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1710,"tdur":1282,"tts":7644651},
-{"pid":27443,"tid":27459,"ts":326461238047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7644742,"id":"0xaf88a428f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461238108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7644773,"id":"0xaf88a602f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461238139,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1526,"tdur":1099,"tts":7644803},
-{"pid":27443,"tid":27459,"ts":326461238169,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":1465,"tdur":1008,"tts":7644864},
-{"pid":27443,"tid":27459,"ts":326461238292,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":38946}},"tts":7644987,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461238292,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7644987},
-{"pid":27443,"tid":27459,"ts":326461238353,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":396,"tdur":366,"tts":7645017},
-{"pid":27443,"tid":27459,"ts":326461238749,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":214,"tdur":213,"tts":7645414},
-{"pid":27443,"tid":27459,"ts":326461238780,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":152,"tdur":122,"tts":7645475},
-{"pid":27443,"tid":27459,"ts":326461238994,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":640,"tdur":183,"tts":7645658},
-{"pid":27443,"tid":27459,"ts":326461239024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7645719,"id":"0xaf88ab51f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461239787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7646024,"id":"0xaf88a428f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461239818,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":335,"tdur":335,"tts":7646055},
-{"pid":27443,"tid":27459,"ts":326461239879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7646116,"id":"0xaf88a429f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461239909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7646146,"id":"0xaf88a601f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461239940,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":183,"tdur":183,"tts":7646177},
-{"pid":27443,"tid":27459,"ts":326461239970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7646207,"id":"0xaf88a603f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461239970,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":7646207},
-{"pid":27443,"tid":27459,"ts":326461240092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7646329,"id":"0xaf88a61cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461240214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7646482,"id":"0xaf88a429f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461240245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":427,"tts":7646482},
-{"pid":27443,"tid":27459,"ts":326461240306,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7646543,"id":"0xaf88a42af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461240336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7646574,"id":"0xaf88a603f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461240367,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":275,"tdur":275,"tts":7646604},
-{"pid":27443,"tid":27459,"ts":326461240428,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7646665,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461240459,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7646696,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461240459,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7646726,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461240550,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7646787,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461240581,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7646818,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461240733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7646970,"id":"0xaf88a42af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461240764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":671,"tdur":641,"tts":7647031},
-{"pid":27443,"tid":27459,"ts":326461240855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7647092,"id":"0xaf88a42bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461240886,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7647123,"id":"0xaf88a61cf3d0445e"},{"pid":27443,"tid":27459,"ts":326461240916,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":489,"tdur":489,"tts":7647153},
-{"pid":27443,"tid":27459,"ts":326461240977,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7647215,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461241008,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.512},"dur":366,"tdur":366,"tts":7647245},
-{"pid":27443,"tid":27459,"ts":326461241069,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7647337},
-{"pid":27443,"tid":27459,"ts":326461241069,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7647337},
-{"pid":27443,"tid":27459,"ts":326461241191,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7647428},
-{"pid":27443,"tid":27459,"ts":326461241252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7647520,"id":"0xaf88a61df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461241313,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7647550,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461241344,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7647581,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461241496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7647733,"id":"0xaf88a42bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461241527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7647764},
-{"pid":27443,"tid":27459,"ts":326461250164,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7647916,"id":"0xaf88a424f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461250164,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5646,"tdur":794,"tts":7647916},
-{"pid":27443,"tid":27459,"ts":326461250195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7647947,"id":"0xaf88a425f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461250225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7647978,"id":"0xaf88a61ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461250225,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7647978},
-{"pid":27443,"tid":27459,"ts":326461250286,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":5494,"tdur":641,"tts":7648039},
-{"pid":27443,"tid":27459,"ts":326461250317,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":5432,"tdur":580,"tts":7648069},
-{"pid":27443,"tid":27459,"ts":326461250378,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":43019}},"tts":7648130,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461250408,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":92,"tdur":91,"tts":7648161},
-{"pid":27443,"tid":27459,"ts":326461250500,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":61,"tts":7648252},
-{"pid":27443,"tid":27459,"ts":326461250530,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":30,"tts":7648283},
-{"pid":27443,"tid":27459,"ts":326461250591,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":5128,"tdur":274,"tts":7648344},
-{"pid":27443,"tid":27466,"ts":326461239360,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":374912,"id":"0xccc56b02"},
-{"pid":27443,"tid":27466,"ts":326461249493,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":274,"tdur":275,"tts":375064},
-{"pid":27443,"tid":27466,"ts":326461249554,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":213,"tdur":183,"tts":375125},
-{"pid":27443,"tid":27466,"ts":326461249554,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":375125,"id":"0xba461502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461249554,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":375125},
-{"pid":27443,"tid":27466,"ts":326461249676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":375247,"id":"0xaf88a61ef3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461249706,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":375278,"id":"0xaf88a424f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461255505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":375461,"id":"0xaf88ab52f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461255536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":375492},
-{"pid":27443,"tid":27466,"ts":326461255566,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":375522,"id":"0xccc56c02"},
-{"pid":27443,"tid":27466,"ts":326461266126,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":375705},
-{"pid":27443,"tid":27466,"ts":326461266157,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":152,"tdur":152,"tts":375736},
-{"pid":27443,"tid":27466,"ts":326461266157,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":375766,"id":"0xba461602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461266218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":375797,"id":"0xaf88a61af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461266248,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":375827,"id":"0xaf88a421f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461267042,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":375980,"id":"0xaf88ab53f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461267042,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":375980},
-{"pid":27443,"tid":27466,"ts":326461267072,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":376010,"id":"0xccc56d02"},
-{"pid":27443,"tid":27466,"ts":326461269850,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":244,"tts":376102},
-{"pid":27443,"tid":27466,"ts":326461269880,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":183,"tdur":183,"tts":376133},
-{"pid":27443,"tid":27466,"ts":326461269911,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":376163,"id":"0xba461702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461269941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":376194,"id":"0xaf88a616f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461269972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":376224,"id":"0xaf88a43ef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461273421,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":376407},
-{"pid":27443,"tid":27466,"ts":326461273451,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":91,"tts":376438},
-{"pid":27443,"tid":27466,"ts":326461273482,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":376468,"id":"0xba461802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461273512,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":376499,"id":"0xaf88a617f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461273543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":376529,"id":"0xaf88a438f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461274428,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":274,"tdur":275,"tts":376621},
-{"pid":27443,"tid":27466,"ts":326461274489,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":183,"tdur":183,"tts":376682},
-{"pid":27443,"tid":27466,"ts":326461274519,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":376712,"id":"0xba461902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461274580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":376773,"id":"0xaf88a610f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461274641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":376834,"id":"0xaf88a611f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461277480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":377048,"id":"0xaf88ab6cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461277510,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":122,"tts":377079},
-{"pid":27443,"tid":27466,"ts":326461277571,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":377109,"id":"0xccc56e02"},
-{"pid":27443,"tid":27466,"ts":326461278365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":377353,"id":"0xaf88ab6df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461278395,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":122,"tts":377384},
-{"pid":27443,"tid":27466,"ts":326461278426,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":377414,"id":"0xccc56f02"},
-{"pid":27443,"tid":27466,"ts":326461279494,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":377659,"id":"0xaf88ab6ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461279525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":377689},
-{"pid":27443,"tid":27466,"ts":326461279555,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":377720,"id":"0xccc57002"},
-{"pid":27443,"tid":27466,"ts":326461281081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":377933,"id":"0xaf88ab6ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461281112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":152,"tdur":152,"tts":377964},
-{"pid":27443,"tid":27466,"ts":326461281142,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":377994,"id":"0xccc57102"},
-{"pid":27443,"tid":27466,"ts":326461288253,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":153,"tts":378208},
-{"pid":27443,"tid":27466,"ts":326461288314,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":123,"tdur":92,"tts":378238},
-{"pid":27443,"tid":27466,"ts":326461288314,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":378238,"id":"0xba461a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461288375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":378299,"id":"0xaf88a43bf182217a"},
-{"pid":27443,"tid":27466,"ts":326461299943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":378483,"id":"0xaf88ab68f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461299973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":305,"tdur":214,"tts":378513},
-{"pid":27443,"tid":27466,"ts":326461299973,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":92,"tts":378513},
-{"pid":27443,"tid":27466,"ts":326461300156,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":378635,"id":"0xccc57226"},
-{"pid":27443,"tid":27466,"ts":326461301102,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":245,"tdur":213,"tts":378849},
-{"pid":27443,"tid":27466,"ts":326461301194,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":92,"tdur":92,"tts":378940},
-{"pid":27443,"tid":27466,"ts":326461301225,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":378971,"id":"0xba461b0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461305253,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":397,"tdur":396,"tts":379185},
-{"pid":27443,"tid":27466,"ts":326461305345,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":275,"tdur":275,"tts":379276},
-{"pid":27443,"tid":27466,"ts":326461305375,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":379337,"id":"0xba461c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461305375,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":379337},
-{"pid":27443,"tid":27466,"ts":326461305497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":379429,"id":"0xaf88a430f182217a"},
-{"pid":27443,"tid":27466,"ts":326461307237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":379764,"id":"0xaf88ab69f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461307237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":123,"tts":379764},
-{"pid":27443,"tid":27466,"ts":326461307268,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":379795,"id":"0xccc57302"},
-{"pid":27443,"tid":27459,"ts":326461250622,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7648374,"id":"0xaf88ab52f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461250622,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":7648374},
-{"pid":27443,"tid":27459,"ts":326461255871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7648802,"id":"0xaf88a425f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461255902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":274,"tts":7648802},
-{"pid":27443,"tid":27459,"ts":326461255963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7648863,"id":"0xaf88a426f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461255993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7648893,"id":"0xaf88a61df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461256024,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":153,"tdur":122,"tts":7648924},
-{"pid":27443,"tid":27459,"ts":326461256085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7648985,"id":"0xaf88a61ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461256115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7649015,"id":"0xaf88a618f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461256238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7649168,"id":"0xaf88a426f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461256268,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1984,"tdur":458,"tts":7649198},
-{"pid":27443,"tid":27459,"ts":326461256329,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7649229,"id":"0xaf88a427f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461256360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7649290,"id":"0xaf88a61ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461256390,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":1862,"tdur":336,"tts":7649290},
-{"pid":27443,"tid":27459,"ts":326461256451,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7649351,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461256451,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":30,"tts":7649351},
-{"pid":27443,"tid":27459,"ts":326461256756,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7649412,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461256756,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7649443,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461256756,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1343,"tdur":61,"tts":7649443},
-{"pid":27443,"tid":27459,"ts":326461258160,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":7649565,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461258191,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7649595,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461258313,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7649748,"id":"0xaf88a427f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461258343,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1160,"tdur":549,"tts":7649748},
-{"pid":27443,"tid":27459,"ts":326461258404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7649809,"id":"0xaf88a420f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461258435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7649839,"id":"0xaf88a618f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461258466,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":1007,"tdur":397,"tts":7649870},
-{"pid":27443,"tid":27459,"ts":326461258496,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7649900,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461258527,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.634},"dur":946,"tdur":305,"tts":7649931},
-{"pid":27443,"tid":27459,"ts":326461258557,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7649961},
-{"pid":27443,"tid":27459,"ts":326461259076,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7650083},
-{"pid":27443,"tid":27459,"ts":326461259137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7650114,"id":"0xaf88a619f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461259198,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7650175,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461259198,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":7650175},
-{"pid":27443,"tid":27459,"ts":326461259412,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7650236,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461259564,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7650358,"id":"0xaf88a420f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461259595,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7650389},
-{"pid":27443,"tid":27459,"ts":326461266401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7650541,"id":"0xaf88a421f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461266401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":793,"tdur":641,"tts":7650541},
-{"pid":27443,"tid":27459,"ts":326461266431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7650572,"id":"0xaf88a422f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461266462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7650602,"id":"0xaf88a61af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461266462,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":702,"tdur":550,"tts":7650602},
-{"pid":27443,"tid":27459,"ts":326461266492,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":672,"tdur":519,"tts":7650633},
-{"pid":27443,"tid":27459,"ts":326461266553,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":30371}},"tts":7650694,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461266584,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":183,"tdur":183,"tts":7650724},
-{"pid":27443,"tid":27459,"ts":326461266767,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":61,"tts":7650938},
-{"pid":27443,"tid":27459,"ts":326461266798,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7650938},
-{"pid":27443,"tid":27459,"ts":326461266889,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":275,"tdur":91,"tts":7651030},
-{"pid":27443,"tid":27459,"ts":326461266920,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7651060,"id":"0xaf88ab53f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461267225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7651213,"id":"0xaf88a422f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7651213},
-{"pid":27443,"tid":27459,"ts":326461267255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7651243,"id":"0xaf88a423f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7651274,"id":"0xaf88a619f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461267286,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7651274},
-{"pid":27443,"tid":27459,"ts":326461267316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7651304,"id":"0xaf88a61bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461267316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7651304,"id":"0xaf88a614f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461267377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7651396,"id":"0xaf88a423f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":244,"tts":7651396},
-{"pid":27443,"tid":27459,"ts":326461267439,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7651426,"id":"0xaf88a43cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7651426,"id":"0xaf88a61bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461267469,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":183,"tdur":183,"tts":7651457},
-{"pid":27443,"tid":27459,"ts":326461267500,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7651487,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267500,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7651487,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267530,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7651518,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267561,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":41187},"tts":7651548,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267561,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7651548,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267561,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":61,"tts":7651548},
-{"pid":27443,"tid":27459,"ts":326461267683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7651701,"id":"0xaf88a43cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":7651701},
-{"pid":27443,"tid":27459,"ts":326461267744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7651732,"id":"0xaf88a43df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7651732,"id":"0xaf88a614f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461267744,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":153,"tts":7651762},
-{"pid":27443,"tid":27459,"ts":326461267774,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7651762,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267774,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":40.943},"dur":153,"tdur":153,"tts":7651762},
-{"pid":27443,"tid":27459,"ts":326461267805,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7651793},
-{"pid":27443,"tid":27459,"ts":326461267835,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7651854},
-{"pid":27443,"tid":27459,"ts":326461267866,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7651884,"id":"0xaf88a615f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461267896,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7651884,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267927,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7651915,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461267988,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7651976,"id":"0xaf88a43df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461267988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7651976},
-{"pid":27443,"tid":27459,"ts":326461270155,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7652098,"id":"0xaf88a43ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461270155,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":7325,"tdur":610,"tts":7652098},
-{"pid":27443,"tid":27459,"ts":326461270277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7652159,"id":"0xaf88a43ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461270277,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7652159,"id":"0xaf88a616f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461270277,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":7172,"tdur":519,"tts":7652189},
-{"pid":27443,"tid":27459,"ts":326461270307,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":7112,"tdur":489,"tts":7652189},
-{"pid":27443,"tid":27459,"ts":326461270368,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":0}},"tts":7652250,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461270399,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":6806,"tdur":153,"tts":7652281},
-{"pid":27443,"tid":27459,"ts":326461277205,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":122,"tdur":122,"tts":7652464},
-{"pid":27443,"tid":27459,"ts":326461277205,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":61,"tts":7652495},
-{"pid":27443,"tid":27459,"ts":326461277327,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":92,"tts":7652586},
-{"pid":27443,"tid":27459,"ts":326461277358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7652617,"id":"0xaf88ab6cf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461277510,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7652769,"id":"0xaf88a43ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461277541,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7652800},
-{"pid":27443,"tid":27459,"ts":326461277571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7652830,"id":"0xaf88a439f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461277571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7652830,"id":"0xaf88a615f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461277571,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7652830},
-{"pid":27443,"tid":27459,"ts":326461277602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7652861,"id":"0xaf88a612f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461277632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7652891,"id":"0xaf88a613f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461277693,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7652952,"id":"0xaf88a438f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461277693,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7652952},
-{"pid":27443,"tid":27459,"ts":326461277724,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7652983,"id":"0xaf88a612f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461277724,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":152,"tdur":92,"tts":7653013},
-{"pid":27443,"tid":27459,"ts":326461277754,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7653044,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461277785,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7653044,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461277785,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7653044,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461277815,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":30902},"tts":7653074,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461277846,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7653105,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461277907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7653166,"id":"0xaf88a439f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461277907,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":396,"tts":7653197},
-{"pid":27443,"tid":27459,"ts":326461277938,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7653197,"id":"0xaf88a43af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461277968,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7653227,"id":"0xaf88a617f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461277968,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":7653227},
-{"pid":27443,"tid":27459,"ts":326461277999,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":305,"tdur":305,"tts":7653258},
-{"pid":27443,"tid":27459,"ts":326461278060,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.96","frame":"0x78c60000","encodedDataLength":0}},"tts":7653319,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461278060,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":91,"tdur":31,"tts":7653349},
-{"pid":27443,"tid":27459,"ts":326461278151,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":7653410},
-{"pid":27443,"tid":27459,"ts":326461278151,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":7653410},
-{"pid":27443,"tid":27459,"ts":326461278243,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":7653502},
-{"pid":27443,"tid":27459,"ts":326461278243,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7653502,"id":"0xaf88ab6df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461278365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7653624,"id":"0xaf88a43af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461278365,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7653624},
-{"pid":27443,"tid":27459,"ts":326461278395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7653654,"id":"0xaf88a43bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461278395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7653685,"id":"0xaf88a610f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461278426,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":7653685},
-{"pid":27443,"tid":27459,"ts":326461278487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7653746,"id":"0xaf88a43bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461278517,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":977,"tdur":977,"tts":7653776},
-{"pid":27443,"tid":27459,"ts":326461278517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7653807,"id":"0xaf88a434f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461278548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7653807,"id":"0xaf88a611f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461278548,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":7653807},
-{"pid":27443,"tid":27459,"ts":326461278640,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":824,"tdur":825,"tts":7653898},
-{"pid":27443,"tid":27459,"ts":326461278640,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":824,"tdur":794,"tts":7653929},
-{"pid":27443,"tid":27459,"ts":326461279036,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7654295,"id":"0xaf88ae4cfda536e2"},
-{"pid":27443,"tid":27459,"ts":326461279158,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.96","didFail":false,"networkTime":326461.274275}},"tts":7654417,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461279158,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":61,"tts":7654448},
-{"pid":27443,"tid":27459,"ts":326461279189,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":30,"tts":7654448},
-{"pid":27443,"tid":27459,"ts":326461279280,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7654539,"id":"0xaf88a62cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461279311,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7654570,"id":"0xaf88a62df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461279341,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":62,"tdur":61,"tts":7654600},
-{"pid":27443,"tid":27459,"ts":326461279372,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7654631,"id":"0xaf88ab6ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461279525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7654784,"id":"0xaf88a434f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461279525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2807,"tdur":2167,"tts":7654784},
-{"pid":27443,"tid":27459,"ts":326461279555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7654814,"id":"0xaf88a435f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461279586,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7654845,"id":"0xaf88a62cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461279586,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":2106,"tdur":2075,"tts":7654845},
-{"pid":27443,"tid":27459,"ts":326461279616,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2045,"tdur":2045,"tts":7654875},
-{"pid":27443,"tid":27459,"ts":326461279647,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7654906},
-{"pid":27443,"tid":27459,"ts":326461279677,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":1923,"tdur":1892,"tts":7654967},
-{"pid":27443,"tid":27459,"ts":326461279830,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":1739,"tdur":1709,"tts":7655119},
-{"pid":27443,"tid":27459,"ts":326461279860,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7655119},
-{"pid":27443,"tid":27459,"ts":326461280288,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":91,"tdur":61,"tts":7655547},
-{"pid":27443,"tid":27459,"ts":326461280318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7655577,"id":"0xaf88a439f182217a"},
-{"pid":27443,"tid":27459,"ts":326461281539,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7656798},
-{"pid":27443,"tid":27459,"ts":326461281630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7656889,"id":"0xaf88a62ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461282363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7657012,"id":"0xaf88a435f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461282363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":7657012},
-{"pid":27443,"tid":27459,"ts":326461282394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7657042,"id":"0xaf88a436f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461282424,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7657073,"id":"0xaf88a62df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461282424,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":153,"tdur":152,"tts":7657073},
-{"pid":27443,"tid":27459,"ts":326461282455,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":122,"tdur":122,"tts":7657103},
-{"pid":27443,"tid":27459,"ts":326461282546,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":30,"tts":7657195},
-{"pid":27443,"tid":27459,"ts":326461282729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7657378,"id":"0xaf88a436f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461282729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":92,"tts":7657408},
-{"pid":27443,"tid":27459,"ts":326461282760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7657439,"id":"0xaf88a437f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461282790,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7657439,"id":"0xaf88a62ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461282790,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":61,"tts":7657439},
-{"pid":27443,"tid":27459,"ts":326461282821,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7657469},
-{"pid":27443,"tid":27459,"ts":326461282882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7657530,"id":"0xaf88a437f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461282882,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":244,"tts":7657561},
-{"pid":27443,"tid":27459,"ts":326461282912,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7657561,"id":"0xaf88a430f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461282943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7657591,"id":"0xaf88a613f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461282943,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":214,"tdur":214,"tts":7657591},
-{"pid":27443,"tid":27459,"ts":326461282943,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7657622,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461282973,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":25.744},"dur":153,"tdur":153,"tts":7657622},
-{"pid":27443,"tid":27459,"ts":326461283004,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7657652},
-{"pid":27443,"tid":27459,"ts":326461283034,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7657714},
-{"pid":27443,"tid":27459,"ts":326461283065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7657744,"id":"0xaf88a62ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461283095,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7657744,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461283126,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7657775,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461283187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7657836,"id":"0xaf88a430f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461283218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7657866},
-{"pid":27443,"tid":27459,"ts":326461289047,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7657958,"id":"0xaf88a431f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461289077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9340,"tdur":8729,"tts":7657988},
-{"pid":27443,"tid":27459,"ts":326461289108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7658019,"id":"0xaf88a432f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461289108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7658019,"id":"0xaf88a628f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461289139,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9247,"tdur":8638,"tts":7658049},
-{"pid":27443,"tid":27459,"ts":326461289139,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":143},"tts":7658049},
-{"pid":27443,"tid":27459,"ts":326461289169,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7658080},
-{"pid":27443,"tid":27459,"ts":326461289200,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":7658141,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461289230,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":7658141,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461289230,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7658141,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461289261,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":7658171},
-{"pid":27443,"tid":27477,"ts":326461280440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":275,"tdur":244,"tts":725499},
-{"pid":27443,"tid":27477,"ts":326461280440,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":725499},
-{"pid":27443,"tid":27477,"ts":326461280501,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":214,"tdur":183,"tts":725530},
-{"pid":27443,"tid":27477,"ts":326461280562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":725591,"id":"0xaf88ab6ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461280654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":725682,"id":"0xaf88a43af182217a"},
-{"pid":27443,"tid":27477,"ts":326461280745,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":725774,"id":"0xaf88a43af182217a"},
-{"pid":27443,"tid":27477,"ts":326461280776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":183,"tdur":183,"tts":725805},
-{"pid":27443,"tid":27477,"ts":326461280806,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":153,"tdur":122,"tts":725835},
-{"pid":27443,"tid":27477,"ts":326461280867,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-221.894,"BeginFrameArgs":{"deadline_us":326461058943.0,"frame_time_us":326461053120.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":725927,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461280929,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":725957,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461288589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":726049,"id":"0xaf88a43bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461288620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":366,"tts":726079},
-{"pid":27443,"tid":27477,"ts":326461288650,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461292485.0,"frame_time_us":326461286662.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":336,"tdur":335,"tts":726110},
-{"pid":27443,"tid":27477,"ts":326461288681,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461292485.0,"frame_time_us":326461286662.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":305,"tdur":305,"tts":726140},
-{"pid":27443,"tid":27477,"ts":326461288711,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":143},"tts":726171},
-{"pid":27443,"tid":27477,"ts":326461288833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":726293,"id":"0xaf88a628f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461288864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":726323,"id":"0xaf88a431f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461288925,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":726384},
-{"pid":27443,"tid":27477,"ts":326461288925,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461303328},"dur":61,"tdur":61,"tts":726384},
-{"pid":27443,"tid":27477,"ts":326461288955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":726415,"id":"0xaf88a434f182217a"},
-{"pid":27443,"tid":27477,"ts":326461298020,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":726537,"id":"0xaf88a435f182217a"},
-{"pid":27443,"tid":27477,"ts":326461298020,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1648,"tdur":1617,"tts":726568},
-{"pid":27443,"tid":27477,"ts":326461298050,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1618,"tdur":1617,"tts":726568},
-{"pid":27443,"tid":27477,"ts":326461298050,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":726568},
-{"pid":27443,"tid":27477,"ts":326461298081,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1587,"tdur":1587,"tts":726598},
-{"pid":27443,"tid":27477,"ts":326461298081,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1587,"tdur":1587,"tts":726598},
-{"pid":27443,"tid":27477,"ts":326461298081,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":726598},
-{"pid":27443,"tid":27477,"ts":326461298111,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":726629},
-{"pid":27443,"tid":27477,"ts":326461298111,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":726629,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461298142,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":726659},
-{"pid":27443,"tid":27477,"ts":326461298173,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":30,"tdur":30,"tts":726690},
-{"pid":27443,"tid":27477,"ts":326461298264,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1374,"tdur":1374,"tts":726781},
-{"pid":27443,"tid":27477,"ts":326461298295,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":143},"dur":274,"tdur":274,"tts":726812},
-{"pid":27443,"tid":27477,"ts":326461298569,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":143},"dur":61,"tdur":61,"tts":727086},
-{"pid":27443,"tid":27477,"ts":326461298630,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":143},"tts":727147},
-{"pid":27443,"tid":27477,"ts":326461298875,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":727392},
-{"pid":27443,"tid":27477,"ts":326461298875,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":727392},
-{"pid":27443,"tid":27477,"ts":326461298905,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":733,"tdur":733,"tts":727422},
-{"pid":27443,"tid":27477,"ts":326461298905,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":214,"tts":727422},
-{"pid":27443,"tid":27477,"ts":326461299119,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":727636},
-{"pid":27443,"tid":27477,"ts":326461299180,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":727697},
-{"pid":27443,"tid":27477,"ts":326461299180,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":12},"dur":396,"tdur":397,"tts":727697},
-{"pid":27443,"tid":27477,"ts":326461299393,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":184,"tts":727910},
-{"pid":27443,"tid":27477,"ts":326461299393,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":727910,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461299454,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":727971},
-{"pid":27443,"tid":27477,"ts":326461299485,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":16,"num_edges":48},"dur":61,"tdur":31,"tts":728032},
-{"pid":27443,"tid":27477,"ts":326461299546,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":728063,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461299607,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":214}},"tts":728124,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461299638,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":728155,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461299882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":728216,"id":"0xaf88a436f182217a"},
-{"pid":27443,"tid":27477,"ts":326461299882,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":728246},
-{"pid":27443,"tid":27477,"ts":326461299912,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":728246},
-{"pid":27443,"tid":27477,"ts":326461299912,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":728246,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461299943,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":728277},
-{"pid":27443,"tid":27477,"ts":326461299943,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":728277,"id":"0xaf88a437f182217a"},
-{"pid":27443,"tid":27477,"ts":326461299973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":728307,"id":"0xaf88a437f182217a"},
-{"pid":27443,"tid":27477,"ts":326461299973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":728307},
-{"pid":27443,"tid":27477,"ts":326461299973,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":728307},
-{"pid":27443,"tid":27477,"ts":326461300034,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":728368},
-{"pid":27443,"tid":27477,"ts":326461300034,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":728368},
-{"pid":27443,"tid":27477,"ts":326461300034,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":728368},
-{"pid":27443,"tid":27477,"ts":326461300065,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":728399},
-{"pid":27443,"tid":27477,"ts":326461300065,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":728399},
-{"pid":27443,"tid":27477,"ts":326461300126,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":728460},
-{"pid":27443,"tid":27459,"ts":326461289291,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7658202},
-{"pid":27443,"tid":27459,"ts":326461289322,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":7630,"tdur":7264,"tts":7658263},
-{"pid":27443,"tid":27459,"ts":326461289383,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7658293},
-{"pid":27443,"tid":27459,"ts":326461289413,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7658324},
-{"pid":27443,"tid":27459,"ts":326461289413,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7658354},
-{"pid":27443,"tid":27459,"ts":326461289749,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":1,"counters":true},"tts":7658660},
-{"pid":27443,"tid":27459,"ts":326461289779,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":1},"tts":7658690},
-{"pid":27443,"tid":27459,"ts":326461289779,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1313,"tdur":946,"tts":7658721},
-{"pid":27443,"tid":27459,"ts":326461289840,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":2,"totalObjects":2,"partialLayout":true,"frame":"0x78c60000"}},"tts":7658751},
-{"pid":27443,"tid":27459,"ts":326461289840,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":31,"tdur":31,"tts":7658751},
-{"pid":27443,"tid":27459,"ts":326461289871,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":7658782},
-{"pid":27443,"tid":27459,"ts":326461290481,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":31,"tdur":0,"tts":7659087},
-{"pid":27443,"tid":27459,"ts":326461290542,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":7659117},
-{"pid":27443,"tid":27459,"ts":326461290542,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":367,"tdur":367,"tts":7659117},
-{"pid":27443,"tid":27459,"ts":326461290909,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":61,"tdur":61,"tts":7659484},
-{"pid":27443,"tid":27459,"ts":326461290970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7659545,"id":"0xaf88a629f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461291031,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":78}},"tts":7659606},
-{"pid":27443,"tid":27459,"ts":326461291122,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":5830,"tdur":5830,"tts":7659697},
-{"pid":27443,"tid":27459,"ts":326461291122,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4060,"tdur":4060,"tts":7659697},
-{"pid":27443,"tid":27459,"ts":326461291153,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1190,"tdur":1160,"tts":7659728},
-{"pid":27443,"tid":27459,"ts":326461292343,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":7660918},
-{"pid":27443,"tid":27459,"ts":326461292587,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7661162},
-{"pid":27443,"tid":27459,"ts":326461292709,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7661284},
-{"pid":27443,"tid":27459,"ts":326461292709,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2442,"tdur":2411,"tts":7661315},
-{"pid":27443,"tid":27459,"ts":326461295182,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1556,"tdur":1556,"tts":7663757},
-{"pid":27443,"tid":27459,"ts":326461295212,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1496,"tdur":1496,"tts":7663787},
-{"pid":27443,"tid":27459,"ts":326461295243,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":244,"tdur":244,"tts":7663818},
-{"pid":27443,"tid":27459,"ts":326461295487,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":1190,"tdur":1160,"tts":7664092},
-{"pid":27443,"tid":27459,"ts":326461295578,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":885,"tdur":885,"tts":7664153},
-{"pid":27443,"tid":27459,"ts":326461296738,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7665313},
-{"pid":27443,"tid":27459,"ts":326461296769,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":183,"tdur":183,"tts":7665344},
-{"pid":27443,"tid":27459,"ts":326461296952,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":143},"dur":976,"tdur":946,"tts":7665557},
-{"pid":27443,"tid":27459,"ts":326461296982,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":916,"tdur":916,"tts":7665557},
-{"pid":27443,"tid":27459,"ts":326461297257,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":143},"dur":641,"tdur":641,"tts":7665832},
-{"pid":27443,"tid":27459,"ts":326461297440,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[0,0,384,0,384,520,0,520],"nodeId":14,"layerId":46}},"dur":275,"tdur":244,"tts":7666015},
-{"pid":27443,"tid":27459,"ts":326461297593,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":61,"tts":7666168},
-{"pid":27443,"tid":27459,"ts":326461297623,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":7666198},
-{"pid":27443,"tid":27459,"ts":326461297715,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":7666290},
-{"pid":27443,"tid":27459,"ts":326461297928,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":367,"tdur":92,"tts":7666503},
-{"pid":27443,"tid":27459,"ts":326461297959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7666534,"id":"0xaf88a435f182217a"},
-{"pid":27443,"tid":27459,"ts":326461298325,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":5003},"tts":7666656,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461298356,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7666656,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461298386,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7666687},
-{"pid":27443,"tid":27459,"ts":326461298630,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29679616,"free":3874816},"tts":7666931},
-{"pid":27443,"tid":27459,"ts":326461299668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7667968,"id":"0xaf88a432f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461299699,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7667999},
-{"pid":27443,"tid":27459,"ts":326461299729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7668029,"id":"0xaf88a433f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461299729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7668029,"id":"0xaf88a62ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461299729,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":7668029},
-{"pid":27443,"tid":27459,"ts":326461299760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7668060,"id":"0xaf88a62af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461299821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7668121,"id":"0xaf88a433f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461299851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7668152},
-{"pid":27443,"tid":27459,"ts":326461306779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461306},"tts":7668304,"id":"0xaf88a68bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461306810,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/render_view_impl.cc","src_func":"StartNavStateSyncTimerIfNecessary"},"dur":1678,"tdur":366,"tts":7668335},
-{"pid":27443,"tid":27459,"ts":326461307023,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":1465,"tdur":122,"tts":7668548},
-{"pid":27443,"tid":27459,"ts":326461307054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7668579,"id":"0xaf88ab69f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461308549,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7668762,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461308580,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7668792,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461309160,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461308},"tts":7668976,"id":"0xaf88a7a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461309160,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":152,"tdur":122,"tts":7668976},
-{"pid":27443,"tid":27459,"ts":326461309221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7669037,"id":"0xaf88a4ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461309251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7669098,"id":"0xaf88a4cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461309343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7669159,"id":"0xaf88a4ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461309374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8332,"tdur":5158,"tts":7669189},
-{"pid":27443,"tid":27477,"ts":326461300126,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":728490},
-{"pid":27443,"tid":27477,"ts":326461303483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461303},"tts":728643,"id":"0xaf88a434f182217a"},
-{"pid":27443,"tid":27477,"ts":326461303483,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":728643},
-{"pid":27443,"tid":27477,"ts":326461303544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":275,"tdur":122,"tts":728704},
-{"pid":27443,"tid":27477,"ts":326461303544,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":728704},
-{"pid":27443,"tid":27477,"ts":326461303758,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":61,"tdur":61,"tts":728765},
-{"pid":27443,"tid":27477,"ts":326461305620,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":728918,"id":"0xaf88a430f182217a"},
-{"pid":27443,"tid":27477,"ts":326461305650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":728948},
-{"pid":27443,"tid":27477,"ts":326461305711,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461309166.0,"frame_time_us":326461303343.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":729009},
-{"pid":27443,"tid":27477,"ts":326461305742,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461309166.0,"frame_time_us":326461303343.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":152,"tdur":152,"tts":729040},
-{"pid":27443,"tid":27477,"ts":326461305803,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461320009},"dur":91,"tdur":31,"tts":729131},
-{"pid":27443,"tid":27477,"ts":326461305864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":729162,"id":"0xaf88a431f182217a"},
-{"pid":27443,"tid":27477,"ts":326461320086,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461320},"tts":729314,"id":"0xaf88a431f182217a"},
-{"pid":27443,"tid":27477,"ts":326461320117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":729314},
-{"pid":27443,"tid":27477,"ts":326461320117,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":0,"tts":729345},
-{"pid":27443,"tid":27477,"ts":326461326618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":729436,"id":"0xaf88a432f182217a"},
-{"pid":27443,"tid":27477,"ts":326461326648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":729467},
-{"pid":27443,"tid":27477,"ts":326461326709,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461325848.0,"frame_time_us":326461320025.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":153,"tts":729528},
-{"pid":27443,"tid":27477,"ts":326461326740,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461325848.0,"frame_time_us":326461320025.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":729559},
-{"pid":27443,"tid":27477,"ts":326461326831,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461336691},"dur":31,"tdur":31,"tts":729650},
-{"pid":27443,"tid":27477,"ts":326461326862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":729681,"id":"0xaf88a433f182217a"},
-{"pid":27443,"tid":27477,"ts":326461336842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461336},"tts":729803,"id":"0xaf88a433f182217a"},
-{"pid":27443,"tid":27477,"ts":326461336872,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":31,"tts":729833},
-{"pid":27443,"tid":27477,"ts":326461336872,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":729833},
-{"pid":27443,"tid":27477,"ts":326461340443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":729955,"id":"0xaf88a4ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326461340474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":729986},
-{"pid":27443,"tid":27477,"ts":326461340504,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461342530.0,"frame_time_us":326461336707.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":730016},
-{"pid":27443,"tid":27477,"ts":326461340535,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461342530.0,"frame_time_us":326461336707.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":730047},
-{"pid":27443,"tid":27477,"ts":326461340596,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461353373},"dur":30,"tdur":30,"tts":730108},
-{"pid":27443,"tid":27477,"ts":326461340596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":730108,"id":"0xaf88a4cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461347829,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":730199,"id":"0xaf88a4cef182217a"},
-{"pid":27443,"tid":27477,"ts":326461347829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":397,"tts":730199},
-{"pid":27443,"tid":27477,"ts":326461347860,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":366,"tdur":366,"tts":730230},
-{"pid":27443,"tid":27477,"ts":326461347860,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":730260,"id":"0x300000084"},
-{"pid":27443,"tid":27477,"ts":326461347890,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchStart"},"dur":183,"tdur":184,"tts":730260},
-{"pid":27443,"tid":27477,"ts":326461348104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":730474,"id":"0xaf88a624f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461348134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":730505,"id":"0xaf88a4caf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461348165,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":730535,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461348195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":730566,"id":"0xaf88a625f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461348195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":730566,"id":"0xaf88a4cbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461353536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461353},"tts":730718,"id":"0xaf88a4cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461353567,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":730718},
-{"pid":27443,"tid":27477,"ts":326461353567,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":730718},
-{"pid":27443,"tid":27477,"ts":326461356375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":730840,"id":"0xaf88a4cff182217a"},
-{"pid":27443,"tid":27477,"ts":326461356375,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":122,"tts":730840},
-{"pid":27443,"tid":27477,"ts":326461356405,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461359211.0,"frame_time_us":326461353388.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":730871},
-{"pid":27443,"tid":27477,"ts":326461356436,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461359211.0,"frame_time_us":326461353388.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":730901},
-{"pid":27443,"tid":27477,"ts":326461356466,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461370054},"dur":31,"tdur":30,"tts":730932},
-{"pid":27443,"tid":27477,"ts":326461356497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":730962,"id":"0xaf88a4c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461367454,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":731023,"id":"0xaf88a4c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461367454,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":731023},
-{"pid":27443,"tid":27477,"ts":326461367484,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":731054},
-{"pid":27443,"tid":27477,"ts":326461367484,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":731054,"id":"0x300000085"},
-{"pid":27443,"tid":27477,"ts":326461367515,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":731085},
-{"pid":27443,"tid":27477,"ts":326461367515,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":731115,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461367545,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":731115,"id":"0xaf88a63cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461367576,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":731146,"id":"0xaf88a4c1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461369132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":731329,"id":"0xaf88a4caf182217a"},
-{"pid":27443,"tid":27477,"ts":326461369132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":731329},
-{"pid":27443,"tid":27477,"ts":326461369163,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":731359},
-{"pid":27443,"tid":27477,"ts":326461369316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":731420,"id":"0xaf88a4cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461369346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":336,"tdur":336,"tts":731451},
-{"pid":27443,"tid":27477,"ts":326461369346,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":6},"dur":244,"tdur":244,"tts":731451},
-{"pid":27443,"tid":27477,"ts":326461369377,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":731481},
-{"pid":27443,"tid":27459,"ts":326461309404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7669220,"id":"0xaf88a4cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461309404,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":335,"tts":7669220},
-{"pid":27443,"tid":27459,"ts":326461309770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7669586,"id":"0xaf88a99cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461309801,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":7782,"tdur":4670,"tts":7669586},
-{"pid":27443,"tid":27459,"ts":326461309831,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":7722,"tdur":4578,"tts":7669647},
-{"pid":27443,"tid":27459,"ts":326461309892,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":187,"frame":"0x78c60000"}},"dur":7661,"tdur":4517,"tts":7669708},
-{"pid":27443,"tid":27459,"ts":326461309953,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":7539,"tdur":4425,"tts":7669739},
-{"pid":27443,"tid":27459,"ts":326461310991,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"91","scriptName":"undefined","scriptLine":3,"frame":"0x78c60000"}},"dur":6470,"tdur":4181,"tts":7669952},
-{"pid":27443,"tid":27459,"ts":326461311052,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7669983},
-{"pid":27443,"tid":27459,"ts":326461313402,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7672333},
-{"pid":27443,"tid":27459,"ts":326461313616,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac"}},"dur":3662,"tdur":1374,"tts":7672546},
-{"pid":27443,"tid":27459,"ts":326461314226,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.112","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac","requestMethod":"GET"}},"tts":7673218,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461314226,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7673218},
-{"pid":27443,"tid":27459,"ts":326461314348,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac","priority":0},"tts":7673279,"id":"0xaf88ae4cfda79162"},
-{"pid":27443,"tid":27459,"ts":326461315325,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":244,"tdur":122,"tts":7673645},
-{"pid":27443,"tid":27459,"ts":326461315386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7673706,"id":"0xaf88ab6af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461317370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7674042,"id":"0xaf88a62bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461317645,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7674317,"id":"0xaf88a4cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461317797,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7674469,"id":"0xaf88a4cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461317858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":366,"tdur":367,"tts":7674530},
-{"pid":27443,"tid":27459,"ts":326461317950,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7674622,"id":"0xaf88a4c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461318011,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7674683,"id":"0xaf88a62bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461318041,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/Document.cpp","src_func":"checkLoadEventSoon"},"dur":153,"tdur":122,"tts":7674744},
-{"pid":27443,"tid":27459,"ts":326461318102,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":61,"tdur":30,"tts":7674805},
-{"pid":27443,"tid":27459,"ts":326461318102,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7674805},
-{"pid":27443,"tid":27459,"ts":326461318285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461312},"tts":7674958,"id":"0xaf88a4cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461318316,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7674988},
-{"pid":27443,"tid":27459,"ts":326461318438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7675110,"id":"0xaf88a4c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461318469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":396,"tdur":396,"tts":7675141},
-{"pid":27443,"tid":27459,"ts":326461318560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7675232,"id":"0xaf88a4c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461318621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7675293,"id":"0xaf88a629f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461318682,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":183,"tdur":183,"tts":7675354},
-{"pid":27443,"tid":27459,"ts":326461318713,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":122,"tdur":92,"tts":7675415},
-{"pid":27443,"tid":27459,"ts":326461318713,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":7675415},
-{"pid":27443,"tid":27459,"ts":326461318774,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":61,"tdur":31,"tts":7675476},
-{"pid":27443,"tid":27459,"ts":326461318926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7675598,"id":"0xaf88a4c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461318957,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":7675660},
-{"pid":27443,"tid":27459,"ts":326461318957,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7675660},
-{"pid":27443,"tid":27459,"ts":326461348379,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7675965,"id":"0xaf88a4caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461348379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":7675965},
-{"pid":27443,"tid":27459,"ts":326461348409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7675995,"id":"0xaf88a4c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461348409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7675995,"id":"0xaf88a624f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461348440,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":61,"tdur":61,"tts":7676026},
-{"pid":27443,"tid":27459,"ts":326461348440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7676056,"id":"0xaf88a626f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461348501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7676087,"id":"0xaf88a4c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461348562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7676148,"id":"0xaf88a4cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461348592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16115,"tdur":9218,"tts":7676178},
-{"pid":27443,"tid":27459,"ts":326461348623,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7676209,"id":"0xaf88a625f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461348623,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":16084,"tdur":9187,"tts":7676209},
-{"pid":27443,"tid":27459,"ts":326461348714,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchStart"},"dur":15962,"tdur":9065,"tts":7676300},
-{"pid":27443,"tid":27459,"ts":326461348745,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7676331,"id":"0x300000084"},
-{"pid":27443,"tid":27459,"ts":326461348775,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchstart"},"dur":15810,"tdur":8912,"tts":7676361},
-{"pid":27443,"tid":27459,"ts":326461348806,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":15779,"tdur":8851,"tts":7676392},
-{"pid":27443,"tid":27459,"ts":326461348836,"ph":"X","cat":"blink","name":"EventHandler::hitTestResultAtPoint","args":{},"dur":916,"tdur":885,"tts":7676453},
-{"pid":27443,"tid":27459,"ts":326461348897,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":7676484},
-{"pid":27443,"tid":27459,"ts":326461348928,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":7676514},
-{"pid":27443,"tid":27459,"ts":326461348958,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7676545},
-{"pid":27443,"tid":27459,"ts":326461348989,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":31,"tts":7676575},
-{"pid":27443,"tid":27459,"ts":326461349019,"ph":"B","cat":"blink,devtools.timeline","name":"HitTest","args":{},"tts":7676606},
-{"pid":27443,"tid":27459,"ts":326461349752,"ph":"E","cat":"blink,devtools.timeline","name":"HitTest","args":{"endData":{"x":133,"y":361,"rectilinear":true,"touch":true,"nodeId":19,"nodeName":"DIV"}},"tts":7677338},
-{"pid":27443,"tid":27459,"ts":326461349782,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7677399},
-{"pid":27443,"tid":27459,"ts":326461349844,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7677430},
-{"pid":27443,"tid":27459,"ts":326461349874,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7677460},
-{"pid":27443,"tid":27459,"ts":326461349905,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7677491},
-{"pid":27443,"tid":27466,"ts":326461315508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":380009,"id":"0xaf88ab6af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461315508,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":122,"tts":380009},
-{"pid":27443,"tid":27466,"ts":326461315722,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":380131},
-{"pid":27443,"tid":27466,"ts":326461315752,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":380161,"id":"0xccc57402"},
-{"pid":27443,"tid":27466,"ts":326461325641,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":915,"tdur":275,"tts":380344},
-{"pid":27443,"tid":27466,"ts":326461326373,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":153,"tdur":153,"tts":380436},
-{"pid":27443,"tid":27466,"ts":326461326404,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":380466,"id":"0xba461d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461326465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":380527,"id":"0xaf88a432f182217a"},{"pid":27443,"tid":27466,"ts":326461339863,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":824,"tdur":214,"tts":380680},
-{"pid":27443,"tid":27466,"ts":326461339924,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":153,"tdur":153,"tts":380741},
-{"pid":27443,"tid":27466,"ts":326461339924,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":380741,"id":"0xba461e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461339985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":380802,"id":"0xaf88a4ccf182217a"},
-{"pid":27443,"tid":27466,"ts":326461347677,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":380985},
-{"pid":27443,"tid":27466,"ts":326461347707,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":381016},
-{"pid":27443,"tid":27466,"ts":326461347707,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":381016,"id":"0xba462002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461347738,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":381046},
-{"pid":27443,"tid":27466,"ts":326461347768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":381077,"id":"0xaf88a4cef182217a"},
-{"pid":27443,"tid":27466,"ts":326461356192,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":381168},
-{"pid":27443,"tid":27466,"ts":326461356222,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":381199},
-{"pid":27443,"tid":27466,"ts":326461356222,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":381199,"id":"0xba462102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461356283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":381260,"id":"0xaf88a4cff182217a"},
-{"pid":27443,"tid":27466,"ts":326461362571,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":381352},
-{"pid":27443,"tid":27466,"ts":326461362601,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":122,"tdur":91,"tts":381413},
-{"pid":27443,"tid":27466,"ts":326461362632,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":381413,"id":"0xba462202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461362662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":381443,"id":"0xaf88a627f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461362662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":381443,"id":"0xaf88a4c6f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461362723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":381504,"id":"0xaf88a620f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461362998,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":381596},
-{"pid":27443,"tid":27466,"ts":326461363028,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":92,"tdur":92,"tts":381626},
-{"pid":27443,"tid":27466,"ts":326461363059,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":381657,"id":"0xba462302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461363059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":381657,"id":"0xaf88a621f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461363089,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":381687,"id":"0xaf88a622f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461364707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":381779,"id":"0xaf88ab6bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461364707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":381779},
-{"pid":27443,"tid":27466,"ts":326461364707,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":381779,"id":"0xccc57602"},
-{"pid":27443,"tid":27466,"ts":326461367240,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":381870},
-{"pid":27443,"tid":27466,"ts":326461367271,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":381901},
-{"pid":27443,"tid":27466,"ts":326461367301,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":381931,"id":"0xba462402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461367332,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":381962},
-{"pid":27443,"tid":27466,"ts":326461367362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":381992,"id":"0xaf88a4c9f182217a"},
-{"pid":27443,"tid":27466,"ts":326461369743,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382084,"id":"0xaf88ab64f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461369743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":382084},
-{"pid":27443,"tid":27466,"ts":326461369773,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":382115,"id":"0xccc57802"},
-{"pid":27443,"tid":27466,"ts":326461373466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382267,"id":"0xaf88ab65f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461373497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":382267},
-{"pid":27443,"tid":27466,"ts":326461373527,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":382298,"id":"0xccc57902"},
-{"pid":27443,"tid":27466,"ts":326461373588,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":382359},
-{"pid":27443,"tid":27466,"ts":326461373619,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":382389},
-{"pid":27443,"tid":27466,"ts":326461373619,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":382389,"id":"0xba462502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461373680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382450,"id":"0xaf88a4c4f182217a"},
-{"pid":27443,"tid":27466,"ts":326461375389,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":382542},
-{"pid":27443,"tid":27466,"ts":326461375420,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":382572},
-{"pid":27443,"tid":27466,"ts":326461375450,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":382603,"id":"0xba462702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461375481,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":382633},
-{"pid":27443,"tid":27466,"ts":326461375481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":382633,"id":"0xaf88a4c6f182217a"},
-{"pid":27443,"tid":27466,"ts":326461381127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382786,"id":"0xaf88ab66f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461381127,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":382786},
-{"pid":27443,"tid":27466,"ts":326461381157,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":382816,"id":"0xccc57b02"},
-{"pid":27443,"tid":27466,"ts":326461381218,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":382878,"id":"0xaf88ab67f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461381218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":382878},
-{"pid":27443,"tid":27466,"ts":326461381218,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":382878,"id":"0xccc57c06"},
-{"pid":27443,"tid":27466,"ts":326461381402,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":61,"tts":383000},
-{"pid":27443,"tid":27466,"ts":326461381432,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":383000},
-{"pid":27443,"tid":27466,"ts":326461381463,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":383030,"id":"0xc4c1ca0a","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461349935,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchstart"}},"dur":14619,"tdur":7722,"tts":7677521},
-{"pid":27443,"tid":27459,"ts":326461349935,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7677521},
-{"pid":27443,"tid":27459,"ts":326461350210,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":14283,"tdur":7417,"tts":7677765},
-{"pid":27443,"tid":27459,"ts":326461350240,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7677765},
-{"pid":27443,"tid":27459,"ts":326461350607,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7678162},
-{"pid":27443,"tid":27459,"ts":326461350668,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousedown"}},"dur":30,"tdur":30,"tts":7678193},
-{"pid":27443,"tid":27459,"ts":326461358572,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7682435},
-{"pid":27443,"tid":27459,"ts":326461358847,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7682710},
-{"pid":27443,"tid":27459,"ts":326461358878,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7682771},
-{"pid":27443,"tid":27459,"ts":326461359274,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7683137},
-{"pid":27443,"tid":27459,"ts":326461360281,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7684114},
-{"pid":27443,"tid":27459,"ts":326461360526,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7684388},
-{"pid":27443,"tid":27459,"ts":326461364219,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7684907,"id":"0xaf88a623f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461364249,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7684938,"id":"0xaf88a4c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461364310,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":204,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":7684999,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461364493,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7685182},
-{"pid":27443,"tid":27459,"ts":326461364585,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":30,"tts":7685304},
-{"pid":27443,"tid":27459,"ts":326461364615,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7685304,"id":"0xaf88ab6bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461364737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7685426,"id":"0xaf88a4c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461364768,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7685457},
-{"pid":27443,"tid":27459,"ts":326461364799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7685487,"id":"0xaf88a4c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461364829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7685518},
-{"pid":27443,"tid":27459,"ts":326461365378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461365},"tts":7685609,"id":"0xaf88a4c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461365409,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":7685640},
-{"pid":27443,"tid":27459,"ts":326461365409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7685640,"id":"0xaf88a4c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461365531,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7685701,"id":"0xaf88a4c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461365531,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":7685701},
-{"pid":27443,"tid":27459,"ts":326461365684,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7685701},
-{"pid":27443,"tid":27459,"ts":326461367820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7685823,"id":"0xaf88a4c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461367851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5493,"tdur":1221,"tts":7685853},
-{"pid":27443,"tid":27459,"ts":326461367881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7685884,"id":"0xaf88a4c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461367881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7685884,"id":"0xaf88a63cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461367881,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":30,"tts":7685884},
-{"pid":27443,"tid":27459,"ts":326461368003,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":5311,"tdur":1130,"tts":7685914},
-{"pid":27443,"tid":27459,"ts":326461368095,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":5219,"tdur":1038,"tts":7686006},
-{"pid":27443,"tid":27459,"ts":326461368095,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7686006,"id":"0x300000085"},
-{"pid":27443,"tid":27459,"ts":326461368125,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1740,"tdur":886,"tts":7686036},
-{"pid":27443,"tid":27459,"ts":326461368125,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":31,"tts":7686036},
-{"pid":27443,"tid":27459,"ts":326461368247,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1618,"tdur":855,"tts":7686067},
-{"pid":27443,"tid":27459,"ts":326461368308,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7686128},
-{"pid":27443,"tid":27459,"ts":326461368339,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7686189},
-{"pid":27443,"tid":27459,"ts":326461368369,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7686220},
-{"pid":27443,"tid":27459,"ts":326461368400,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7686250},
-{"pid":27443,"tid":27459,"ts":326461368461,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":824,"tdur":641,"tts":7686281},
-{"pid":27443,"tid":27459,"ts":326461368583,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":671,"tdur":458,"tts":7686433},
-{"pid":27443,"tid":27459,"ts":326461368614,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7686433},
-{"pid":27443,"tid":27459,"ts":326461368949,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":103,"frame":"0x78c60000"}},"tts":7686769,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461368949,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":275,"tdur":61,"tts":7686799},
-{"pid":27443,"tid":27459,"ts":326461368980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7686799,"id":"0xaf88a4caf182217a"},
-{"pid":27443,"tid":27459,"ts":326461369224,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7686860},
-{"pid":27443,"tid":27459,"ts":326461369895,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":3388,"tdur":61,"tts":7686952},
-{"pid":27443,"tid":27459,"ts":326461369926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7686983,"id":"0xaf88ab65f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461373375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7687105,"id":"0xaf88a4c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461373375,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7687105},
-{"pid":27443,"tid":27459,"ts":326461376030,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7687227,"id":"0xaf88a4c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461376061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":21394,"tdur":13368,"tts":7687257},
-{"pid":27443,"tid":27459,"ts":326461376061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7687257,"id":"0xaf88a4dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461376091,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7687288,"id":"0xaf88a63df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461376091,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":21334,"tdur":13307,"tts":7687288},
-{"pid":27443,"tid":27459,"ts":326461376152,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchStart"},"dur":21242,"tdur":13215,"tts":7687349},
-{"pid":27443,"tid":27459,"ts":326461376183,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7687379,"id":"0x300000086"},
-{"pid":27443,"tid":27459,"ts":326461377312,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchstart"},"dur":19960,"tdur":13032,"tts":7687410},
-{"pid":27443,"tid":27459,"ts":326461377342,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":19930,"tdur":13002,"tts":7687440},
-{"pid":27443,"tid":27459,"ts":326461377434,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":7687532},
-{"pid":27443,"tid":27469,"ts":326461364646,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1038,"tdur":1008,"tts":482221},
-{"pid":27443,"tid":27469,"ts":326461364676,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1008,"tdur":977,"tts":482252},
-{"pid":27443,"tid":27469,"ts":326461364707,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e419a60"},"tileResolution":"HIGH_RESOLUTION"}},"tts":482282},
-{"pid":27443,"tid":27469,"ts":326461364707,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":482282},
-{"pid":27443,"tid":27469,"ts":326461364768,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":482343},
-{"pid":27443,"tid":27469,"ts":326461364799,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e419a60"},"tileResolution":"HIGH_RESOLUTION"}},"tts":482374},
-{"pid":27443,"tid":27469,"ts":326461364799,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":482405,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461364921,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3601,"tdur":1068,"tts":456798},
-{"pid":27443,"tid":27471,"ts":326461364921,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":3601,"tdur":1068,"tts":456798},
-{"pid":27443,"tid":27471,"ts":326461364951,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x79915010"},"tileResolution":"HIGH_RESOLUTION"}},"tts":456828},
-{"pid":27443,"tid":27471,"ts":326461364951,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":733,"tdur":61,"tts":456828},
-{"pid":27443,"tid":27469,"ts":326461365684,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":483229},
-{"pid":27443,"tid":27471,"ts":326461365684,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":456889},
-{"pid":27443,"tid":27469,"ts":326461365684,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1098,"tdur":854,"tts":483229},
-{"pid":27443,"tid":27469,"ts":326461365714,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1068,"tdur":824,"tts":483259},
-{"pid":27443,"tid":27471,"ts":326461365714,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x79915010"},"tileResolution":"HIGH_RESOLUTION"}},"tts":456920},
-{"pid":27443,"tid":27469,"ts":326461365745,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e2b1ac0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":483290},
-{"pid":27443,"tid":27469,"ts":326461365775,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":483320},
-{"pid":27443,"tid":27471,"ts":326461365775,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":456981,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461365806,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":483351},
-{"pid":27443,"tid":27469,"ts":326461365836,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e2b1ac0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":483381},
-{"pid":27443,"tid":27469,"ts":326461365867,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":483412,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461366782,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":484083},
-{"pid":27443,"tid":27469,"ts":326461366813,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":915,"tdur":915,"tts":484114},
-{"pid":27443,"tid":27469,"ts":326461366813,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":915,"tdur":915,"tts":484114},
-{"pid":27443,"tid":27469,"ts":326461366843,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e2ab5f8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":484144},
-{"pid":27443,"tid":27469,"ts":326461366843,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":484144},
-{"pid":27443,"tid":27469,"ts":326461366874,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":484175},
-{"pid":27443,"tid":27469,"ts":326461366904,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e2ab5f8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":484205},
-{"pid":27443,"tid":27469,"ts":326461366935,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":484236,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461367698,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":484999},
-{"pid":27443,"tid":27469,"ts":326461367728,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":947,"tdur":946,"tts":485029},
-{"pid":27443,"tid":27469,"ts":326461367728,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":947,"tdur":946,"tts":485029},
-{"pid":27443,"tid":27469,"ts":326461367759,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e429880"},"tileResolution":"HIGH_RESOLUTION"}},"tts":485060},
-{"pid":27443,"tid":27469,"ts":326461367759,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":485060},
-{"pid":27443,"tid":27469,"ts":326461367820,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":485121},
-{"pid":27443,"tid":27469,"ts":326461367820,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e429880"},"tileResolution":"HIGH_RESOLUTION"}},"tts":485121},
-{"pid":27443,"tid":27469,"ts":326461367851,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":485151,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461368491,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":457836},
-{"pid":27443,"tid":27471,"ts":326461368522,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":824,"tts":457866},
-{"pid":27443,"tid":27471,"ts":326461368553,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":457897},
-{"pid":27443,"tid":27471,"ts":326461368553,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e4296b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":457897},
-{"pid":27443,"tid":27471,"ts":326461368553,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":457927},
-{"pid":27443,"tid":27471,"ts":326461368614,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":457958},
-{"pid":27443,"tid":27471,"ts":326461368644,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e4296b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":457988},
-{"pid":27443,"tid":27469,"ts":326461368644,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":485945},
-{"pid":27443,"tid":27471,"ts":326461368644,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":457988,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461368675,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":947,"tts":485975},
-{"pid":27443,"tid":27469,"ts":326461368675,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":947,"tts":485975},
-{"pid":27443,"tid":27469,"ts":326461368705,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e42b758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":486006},
-{"pid":27443,"tid":27469,"ts":326461368705,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":486036},
-{"pid":27443,"tid":27469,"ts":326461368766,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":486067},
-{"pid":27443,"tid":27469,"ts":326461368797,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e42b758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":486097},
-{"pid":27443,"tid":27469,"ts":326461368797,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":486097,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461369285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":458629,"id":"0xaf88a4cbf182217a"},
-{"pid":27443,"tid":27471,"ts":326461369316,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":458660},
-{"pid":27443,"tid":27471,"ts":326461369346,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1068,"tdur":1007,"tts":458690},
-{"pid":27443,"tid":27471,"ts":326461369346,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1068,"tdur":1007,"tts":458690},
-{"pid":27443,"tid":27471,"ts":326461369407,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e42bf20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":458751},
-{"pid":27443,"tid":27471,"ts":326461369407,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":458751},
-{"pid":27443,"tid":27471,"ts":326461369468,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":458812},
-{"pid":27443,"tid":27471,"ts":326461369468,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e42bf20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":458843},
-{"pid":27443,"tid":27471,"ts":326461369499,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":458843,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461369590,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":486891},
-{"pid":27443,"tid":27477,"ts":326461369438,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":731542},
-{"pid":27443,"tid":27477,"ts":326461369468,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":731573},
-{"pid":27443,"tid":27477,"ts":326461369499,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":731603},
-{"pid":27443,"tid":27477,"ts":326461369529,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":731634},
-{"pid":27443,"tid":27477,"ts":326461369560,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":731664},
-{"pid":27443,"tid":27477,"ts":326461369590,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15051},"dur":92,"tdur":92,"tts":731695},
-{"pid":27443,"tid":27477,"ts":326461369621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":731725,"id":"0xaf88ab64f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461371635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461370},"tts":731848,"id":"0xaf88a4c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461371635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":731848},
-{"pid":27443,"tid":27477,"ts":326461371666,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":731878},
-{"pid":27443,"tid":27477,"ts":326461373772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":731970,"id":"0xaf88a4c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461373772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":731970},
-{"pid":27443,"tid":27477,"ts":326461373802,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461375893.0,"frame_time_us":326461370070.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":732000},
-{"pid":27443,"tid":27477,"ts":326461373833,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461375893.0,"frame_time_us":326461370070.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":61,"tts":732031},
-{"pid":27443,"tid":27477,"ts":326461373863,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461386736},"dur":31,"tdur":31,"tts":732061},
-{"pid":27443,"tid":27477,"ts":326461373894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":732092,"id":"0xaf88a4c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461375572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":732214,"id":"0xaf88a4c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461375603,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":367,"tts":732244},
-{"pid":27443,"tid":27477,"ts":326461375603,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":366,"tdur":367,"tts":732244},
-{"pid":27443,"tid":27477,"ts":326461375633,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":732275,"id":"0x300000086"},
-{"pid":27443,"tid":27477,"ts":326461375633,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchStart"},"dur":244,"tdur":244,"tts":732275},
-{"pid":27443,"tid":27477,"ts":326461375877,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":732519,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461375908,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":732550,"id":"0xaf88a63df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461375938,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":732580,"id":"0xaf88a4c3f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461376274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":732672,"id":"0xaf88a4c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461376274,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":732672},
-{"pid":27443,"tid":27477,"ts":326461376457,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":732672},
-{"pid":27443,"tid":27477,"ts":326461376488,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":732702},
-{"pid":27443,"tid":27477,"ts":326461376518,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":732733,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461376518,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":732733},
-{"pid":27443,"tid":27477,"ts":326461376518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":732733,"id":"0xaf88a4c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461376549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":732794,"id":"0xaf88a4c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461376579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":732794},
-{"pid":27443,"tid":27477,"ts":326461376579,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":30,"tts":732794},
-{"pid":27443,"tid":27477,"ts":326461376610,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":732824,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461376610,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":732824},
-{"pid":27443,"tid":27477,"ts":326461376640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":732855,"id":"0xaf88a4c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461376640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2412,"tdur":2411,"tts":732855},
-{"pid":27443,"tid":27477,"ts":326461376671,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2381,"tdur":2381,"tts":732885},
-{"pid":27443,"tid":27477,"ts":326461376671,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":641,"tdur":641,"tts":732885},
-{"pid":27443,"tid":27477,"ts":326461376671,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":732885},
-{"pid":27443,"tid":27477,"ts":326461376701,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":732946},
-{"pid":27443,"tid":27477,"ts":326461376732,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":732946},
-{"pid":27443,"tid":27477,"ts":326461376762,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":732977},
-{"pid":27443,"tid":27477,"ts":326461376762,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":732977},
-{"pid":27443,"tid":27477,"ts":326461376793,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":733007},
-{"pid":27443,"tid":27477,"ts":326461376793,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":733038},
-{"pid":27443,"tid":27477,"ts":326461376824,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":733038},
-{"pid":27443,"tid":27477,"ts":326461376824,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":733038},
-{"pid":27443,"tid":27477,"ts":326461376885,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":733099},
-{"pid":27443,"tid":27477,"ts":326461376885,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":733099},
-{"pid":27443,"tid":27477,"ts":326461376915,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":733129},
-{"pid":27443,"tid":27477,"ts":326461376946,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":733160},
-{"pid":27443,"tid":27477,"ts":326461376976,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":733190},
-{"pid":27443,"tid":27477,"ts":326461376976,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":733190},
-{"pid":27443,"tid":27477,"ts":326461377007,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":733221},
-{"pid":27443,"tid":27477,"ts":326461377037,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":733251},
-{"pid":27443,"tid":27477,"ts":326461377068,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":733282},
-{"pid":27443,"tid":27477,"ts":326461377098,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":733343},
-{"pid":27443,"tid":27477,"ts":326461377129,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":91,"tdur":92,"tts":733343},
-{"pid":27443,"tid":27477,"ts":326461377159,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":733374},
-{"pid":27443,"tid":27477,"ts":326461377220,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":733435},
-{"pid":27443,"tid":27477,"ts":326461377220,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":733435},
-{"pid":27443,"tid":27477,"ts":326461377251,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":733465},
-{"pid":27443,"tid":27469,"ts":326461369621,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1007,"tdur":793,"tts":486922},
-{"pid":27443,"tid":27469,"ts":326461369651,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":763,"tts":486952},
-{"pid":27443,"tid":27469,"ts":326461369651,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e0aff10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":486952},
-{"pid":27443,"tid":27469,"ts":326461369651,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":486983},
-{"pid":27443,"tid":27469,"ts":326461369712,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":487013},
-{"pid":27443,"tid":27469,"ts":326461369712,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e0aff10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":487013},
-{"pid":27443,"tid":27469,"ts":326461369743,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":487044,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461370384,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":459667},
-{"pid":27443,"tid":27471,"ts":326461370414,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":794,"tdur":794,"tts":459697},
-{"pid":27443,"tid":27471,"ts":326461370445,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":459728},
-{"pid":27443,"tid":27471,"ts":326461370445,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x799b6008"},"tileResolution":"HIGH_RESOLUTION"}},"tts":459758},
-{"pid":27443,"tid":27471,"ts":326461370475,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":459758},
-{"pid":27443,"tid":27471,"ts":326461370506,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":459819},
-{"pid":27443,"tid":27471,"ts":326461370536,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x799b6008"},"tileResolution":"HIGH_RESOLUTION"}},"tts":459819},
-{"pid":27443,"tid":27471,"ts":326461370567,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":459850,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461370597,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":487715},
-{"pid":27443,"tid":27469,"ts":326461370628,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":487746},
-{"pid":27443,"tid":27469,"ts":326461370628,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":487746},
-{"pid":27443,"tid":27469,"ts":326461370658,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x795a3d90"},"tileResolution":"HIGH_RESOLUTION"}},"tts":487776},
-{"pid":27443,"tid":27469,"ts":326461370689,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":487807},
-{"pid":27443,"tid":27469,"ts":326461370719,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":487837},
-{"pid":27443,"tid":27469,"ts":326461370750,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x795a3d90"},"tileResolution":"HIGH_RESOLUTION"}},"tts":487868},
-{"pid":27443,"tid":27469,"ts":326461370781,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":487898,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461371208,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":460491},
-{"pid":27443,"tid":27471,"ts":326461371208,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":4914,"tdur":732,"tts":460491},
-{"pid":27443,"tid":27471,"ts":326461371238,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":4884,"tdur":702,"tts":460521},
-{"pid":27443,"tid":27471,"ts":326461371238,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e429e50"},"tileResolution":"HIGH_RESOLUTION"}},"tts":460521},
-{"pid":27443,"tid":27471,"ts":326461371269,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":460552},
-{"pid":27443,"tid":27471,"ts":326461371299,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":460582},
-{"pid":27443,"tid":27471,"ts":326461371330,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e429e50"},"tileResolution":"HIGH_RESOLUTION"}},"tts":460613},
-{"pid":27443,"tid":27471,"ts":326461371360,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":460643,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461371391,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":488509},
-{"pid":27443,"tid":27471,"ts":326461376122,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":461223},
-{"pid":27443,"tid":27471,"ts":326461376122,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":152,"tdur":92,"tts":461223},
-{"pid":27443,"tid":27471,"ts":326461376152,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":30,"tts":461254},
-{"pid":27443,"tid":27471,"ts":326461376183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":461284,"id":"0xaf88a4c7f182217a"},
-{"pid":27443,"tid":27471,"ts":326461376274,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":461315},
-{"pid":27443,"tid":27471,"ts":326461376305,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":461345},
-{"pid":27443,"tid":27471,"ts":326461376335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":461345,"id":"0xaf88a4c0f182217a"},
-{"pid":27443,"tid":27471,"ts":326461382744,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":184,"tdur":122,"tts":461376},
-{"pid":27443,"tid":27471,"ts":326461382775,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":153,"tdur":92,"tts":461406},
-{"pid":27443,"tid":27471,"ts":326461382775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":461406,"id":"0xaf88a4c3f182217a"},
-{"pid":27443,"tid":27469,"ts":326461382836,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":31,"tts":488661},
-{"pid":27443,"tid":27469,"ts":326461382836,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":183,"tdur":31,"tts":488661},
-{"pid":27443,"tid":27471,"ts":326461382928,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":461498},
-{"pid":27443,"tid":27471,"ts":326461382958,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":461529},
-{"pid":27443,"tid":27471,"ts":326461382958,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":461529,"id":"0xaf88a4dcf182217a"},
-{"pid":27443,"tid":27469,"ts":326461382989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":488661,"id":"0xaf88a4ddf182217a"},
-{"pid":27443,"tid":27498,"ts":326461411983,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1618,"tdur":1587,"tts":54753},
-{"pid":27443,"tid":27498,"ts":326461412014,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":54784},
-{"pid":27443,"tid":27498,"ts":326461413570,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":56340},
-{"pid":27443,"tid":27496,"ts":326461463990,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":305,"tdur":305,"tts":81306},
-{"pid":27443,"tid":27496,"ts":326461463990,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":81336},
-{"pid":27443,"tid":27496,"ts":326461464295,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":81611},
-{"pid":27443,"tid":27546,"ts":326461466401,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":2716,"tdur":2594,"tts":64428},
-{"pid":27443,"tid":27546,"ts":326461466401,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":64428},
-{"pid":27443,"tid":27546,"ts":326461469087,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":67022},
-{"pid":27443,"tid":27471,"ts":326461475679,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":461590},
-{"pid":27443,"tid":27471,"ts":326461475710,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":461620},
-{"pid":27443,"tid":27471,"ts":326461475710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":461620,"id":"0xaf88a4fef182217a"},
-{"pid":27443,"tid":27469,"ts":326461475710,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":488722},
-{"pid":27443,"tid":27469,"ts":326461475740,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":488753},
-{"pid":27443,"tid":27471,"ts":326461475740,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":461651},
-{"pid":27443,"tid":27469,"ts":326461475740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":488783,"id":"0xaf88a4fff182217a"},
-{"pid":27443,"tid":27477,"ts":326461377281,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":733496},
-{"pid":27443,"tid":27477,"ts":326461377312,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":214,"tdur":214,"tts":733526},
-{"pid":27443,"tid":27477,"ts":326461377342,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":152,"tts":733557},
-{"pid":27443,"tid":27477,"ts":326461377526,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1526,"tdur":1526,"tts":733740},
-{"pid":27443,"tid":27477,"ts":326461377526,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1526,"tdur":1526,"tts":733740},
-{"pid":27443,"tid":27477,"ts":326461377526,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1373,"tdur":1373,"tts":733740},
-{"pid":27443,"tid":27477,"ts":326461377556,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":733770,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461377648,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":733862},
-{"pid":27443,"tid":27477,"ts":326461377678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":733892},
-{"pid":27443,"tid":27477,"ts":326461377709,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":733953},
-{"pid":27443,"tid":27477,"ts":326461377739,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":733953},
-{"pid":27443,"tid":27477,"ts":326461377770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":733984},
-{"pid":27443,"tid":27477,"ts":326461377770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":733984},
-{"pid":27443,"tid":27477,"ts":326461377800,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734014},
-{"pid":27443,"tid":27477,"ts":326461377831,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734045},
-{"pid":27443,"tid":27477,"ts":326461377831,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":734045},
-{"pid":27443,"tid":27477,"ts":326461377861,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734076},
-{"pid":27443,"tid":27477,"ts":326461377861,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":734076},
-{"pid":27443,"tid":27477,"ts":326461377892,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734106},
-{"pid":27443,"tid":27477,"ts":326461377922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734137},
-{"pid":27443,"tid":27477,"ts":326461377922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734137},
-{"pid":27443,"tid":27477,"ts":326461377953,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734167},
-{"pid":27443,"tid":27477,"ts":326461377953,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":734167},
-{"pid":27443,"tid":27477,"ts":326461377983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734198},
-{"pid":27443,"tid":27477,"ts":326461377983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":734228},
-{"pid":27443,"tid":27477,"ts":326461378014,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":734228},
-{"pid":27443,"tid":27477,"ts":326461378044,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734259},
-{"pid":27443,"tid":27477,"ts":326461378044,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":734259},
-{"pid":27443,"tid":27477,"ts":326461378075,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734289},
-{"pid":27443,"tid":27477,"ts":326461378105,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734320},
-{"pid":27443,"tid":27477,"ts":326461378105,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":734320},
-{"pid":27443,"tid":27477,"ts":326461378136,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734350},
-{"pid":27443,"tid":27477,"ts":326461378166,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734381},
-{"pid":27443,"tid":27477,"ts":326461378166,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":734381},
-{"pid":27443,"tid":27477,"ts":326461378197,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734411},
-{"pid":27443,"tid":27477,"ts":326461378197,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":734411},
-{"pid":27443,"tid":27477,"ts":326461378227,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734442},
-{"pid":27443,"tid":27477,"ts":326461378258,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734472},
-{"pid":27443,"tid":27477,"ts":326461378289,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734503},
-{"pid":27443,"tid":27477,"ts":326461378319,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734533},
-{"pid":27443,"tid":27477,"ts":326461378319,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":734564},
-{"pid":27443,"tid":27477,"ts":326461378350,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":734564},
-{"pid":27443,"tid":27477,"ts":326461378380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734594},
-{"pid":27443,"tid":27477,"ts":326461378380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":734594},
-{"pid":27443,"tid":27477,"ts":326461378411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734625},
-{"pid":27443,"tid":27477,"ts":326461378411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":734655},
-{"pid":27443,"tid":27477,"ts":326461378441,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":734655},
-{"pid":27443,"tid":27477,"ts":326461378472,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":734686},
-{"pid":27443,"tid":27477,"ts":326461378502,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734716},
-{"pid":27443,"tid":27477,"ts":326461378502,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":734716},
-{"pid":27443,"tid":27477,"ts":326461378533,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734747},
-{"pid":27443,"tid":27477,"ts":326461378624,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734839},
-{"pid":27443,"tid":27477,"ts":326461378624,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":734839},
-{"pid":27443,"tid":27477,"ts":326461378655,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734869},
-{"pid":27443,"tid":27477,"ts":326461378685,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734900},
-{"pid":27443,"tid":27477,"ts":326461378716,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734930},
-{"pid":27443,"tid":27477,"ts":326461378716,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":734930},
-{"pid":27443,"tid":27477,"ts":326461378746,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":734961},
-{"pid":27443,"tid":27477,"ts":326461378777,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":734991},
-{"pid":27443,"tid":27477,"ts":326461378838,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":735052},
-{"pid":27443,"tid":27477,"ts":326461378838,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":735052},
-{"pid":27443,"tid":27477,"ts":326461378868,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":735083},
-{"pid":27443,"tid":27477,"ts":326461378899,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":144},"tts":735113},
-{"pid":27443,"tid":27477,"ts":326461378960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":735174,"id":"0xaf88a63ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461377464,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":7687562},
-{"pid":27443,"tid":27459,"ts":326461377495,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7687593},
-{"pid":27443,"tid":27459,"ts":326461377526,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":31,"tts":7687623},
-{"pid":27443,"tid":27459,"ts":326461377556,"ph":"B","cat":"blink,devtools.timeline","name":"HitTest","args":{},"tts":7687654},
-{"pid":27443,"tid":27459,"ts":326461378136,"ph":"E","cat":"blink,devtools.timeline","name":"HitTest","args":{"endData":{"x":229,"y":293,"rectilinear":true,"touch":true,"nodeId":19,"nodeName":"DIV"}},"tts":7688234},
-{"pid":27443,"tid":27459,"ts":326461378166,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7688295},
-{"pid":27443,"tid":27459,"ts":326461378227,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7688325},
-{"pid":27443,"tid":27459,"ts":326461378258,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7688356},
-{"pid":27443,"tid":27459,"ts":326461378289,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7688387},
-{"pid":27443,"tid":27459,"ts":326461378319,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7688417},
-{"pid":27443,"tid":27459,"ts":326461378350,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7688448},
-{"pid":27443,"tid":27459,"ts":326461378380,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchstart"}},"dur":18862,"tdur":11903,"tts":7688509},
-{"pid":27443,"tid":27459,"ts":326461378533,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":18678,"tdur":11750,"tts":7688631},
-{"pid":27443,"tid":27459,"ts":326461378563,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7688661},
-{"pid":27443,"tid":27459,"ts":326461378746,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7688844},
-{"pid":27443,"tid":27459,"ts":326461378807,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"mousemove"}},"dur":31,"tdur":31,"tts":7688905},
-{"pid":27443,"tid":27459,"ts":326461397150,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7700350},
-{"pid":27443,"tid":27459,"ts":326461397303,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7700473},
-{"pid":27443,"tid":27459,"ts":326461397333,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7700503,"id":"0xaf88ab61f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461397486,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7700656,"id":"0xaf88a4dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461397486,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1862,"tdur":1221,"tts":7700656},
-{"pid":27443,"tid":27459,"ts":326461397486,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":30,"tts":7700656},
-{"pid":27443,"tid":27459,"ts":326461397883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7700717,"id":"0xaf88a4def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461397883,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7700747,"id":"0xaf88a63ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461397913,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":1404,"tdur":1099,"tts":7700747},
-{"pid":27443,"tid":27459,"ts":326461397913,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":144},"tts":7700778},
-{"pid":27443,"tid":27459,"ts":326461397944,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7700778},
-{"pid":27443,"tid":27459,"ts":326461397974,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":336,"tdur":305,"tts":7700839},
-{"pid":27443,"tid":27459,"ts":326461398005,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":7700869},
-{"pid":27443,"tid":27459,"ts":326461398066,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":103,"frame":"0x78c60000"}},"dur":213,"tdur":184,"tts":7700930},
-{"pid":27443,"tid":27459,"ts":326461398188,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":91,"tdur":92,"tts":7701022},
-{"pid":27443,"tid":27459,"ts":326461398218,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7701052},
-{"pid":27443,"tid":27459,"ts":326461398249,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7701083},
-{"pid":27443,"tid":27459,"ts":326461398310,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":488,"tdur":183,"tts":7701144},
-{"pid":27443,"tid":27459,"ts":326461398340,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":458,"tdur":122,"tts":7701205},
-{"pid":27443,"tid":27459,"ts":326461398340,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":7701205},
-{"pid":27443,"tid":27459,"ts":326461398707,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":7701236},
-{"pid":27443,"tid":27459,"ts":326461398707,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":7701266},
-{"pid":27443,"tid":27459,"ts":326461398768,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":0,"tts":7701297},
-{"pid":27443,"tid":27459,"ts":326461398798,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":144},"dur":305,"tdur":305,"tts":7701327},
-{"pid":27443,"tid":27459,"ts":326461398829,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":274,"tdur":244,"tts":7701358},
-{"pid":27443,"tid":27459,"ts":326461399103,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7701632,"id":"0x300000085"},
-{"pid":27443,"tid":27459,"ts":326461399103,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":7701632,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461399134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7701663,"id":"0xaf88a4d4f182217a"},
-{"pid":27443,"tid":27459,"ts":326461399287,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902021.0,"time":326461366935.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461355000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461369224.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461399195.0},"coordinates":[{"x":266.0,"y":722.5}],"trace_id":12884902021.0}},"tts":7701815,"id":"0x300000085"},
-{"pid":27443,"tid":27459,"ts":326461399287,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":7701815,"id":"0x300000085","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461399317,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7701846},
-{"pid":27443,"tid":27459,"ts":326461399378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7701907,"id":"0xaf88a4ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461399378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7701907},
-{"pid":27443,"tid":27459,"ts":326461399409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7701938,"id":"0xaf88a63ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461399409,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7701938},
-{"pid":27443,"tid":27459,"ts":326461399409,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7701938},
-{"pid":27443,"tid":27459,"ts":326461399470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7701999,"id":"0xaf88a4def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461399470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7701999},
-{"pid":27443,"tid":27459,"ts":326461399500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7702029,"id":"0xaf88a4d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461399500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7702029,"id":"0xaf88a638f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461399500,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":7702029},
-{"pid":27443,"tid":27459,"ts":326461399531,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7702060},
-{"pid":27443,"tid":27459,"ts":326461399561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7702090,"id":"0xaf88a4dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461399592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1160,"tdur":1098,"tts":7702121},
-{"pid":27443,"tid":27459,"ts":326461399592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7702121,"id":"0xaf88a639f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461399592,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1129,"tdur":1068,"tts":7702121},
-{"pid":27443,"tid":27459,"ts":326461399653,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1007,"tts":7702182},
-{"pid":27443,"tid":27459,"ts":326461399683,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7702212,"id":"0x300000087"},
-{"pid":27443,"tid":27477,"ts":326461378990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":735205,"id":"0xaf88a4ddf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461378990,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":735205},
-{"pid":27443,"tid":27477,"ts":326461379021,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":735235},
-{"pid":27443,"tid":27477,"ts":326461379021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":735235,"id":"0xaf88a4c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461379052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":735266,"id":"0xaf88a4c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461379082,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3601,"tdur":2900,"tts":735296},
-{"pid":27443,"tid":27477,"ts":326461379082,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3601,"tdur":2900,"tts":735296},
-{"pid":27443,"tid":27477,"ts":326461379082,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":31,"tts":735296},
-{"pid":27443,"tid":27477,"ts":326461379113,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3143,"tdur":2441,"tts":735327},
-{"pid":27443,"tid":27477,"ts":326461379113,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":143},"dur":1129,"tdur":1129,"tts":735327},
-{"pid":27443,"tid":27477,"ts":326461379143,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":143},"dur":305,"tdur":306,"tts":735357},
-{"pid":27443,"tid":27477,"ts":326461379448,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":143},"dur":31,"tdur":30,"tts":735663},
-{"pid":27443,"tid":27477,"ts":326461379479,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":143},"tts":735724},
-{"pid":27443,"tid":27477,"ts":326461379662,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":735876},
-{"pid":27443,"tid":27477,"ts":326461379662,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":735876},
-{"pid":27443,"tid":27477,"ts":326461379662,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":735876},
-{"pid":27443,"tid":27477,"ts":326461379692,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":735907},
-{"pid":27443,"tid":27477,"ts":326461379692,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":12}},"tts":735907,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461379784,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":735998},
-{"pid":27443,"tid":27477,"ts":326461380242,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":736456},
-{"pid":27443,"tid":27477,"ts":326461380242,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1312,"tdur":977,"tts":736456},
-{"pid":27443,"tid":27477,"ts":326461380272,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":736487},
-{"pid":27443,"tid":27477,"ts":326461380272,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1252,"tdur":885,"tts":736487},
-{"pid":27443,"tid":27477,"ts":326461380425,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":736639},
-{"pid":27443,"tid":27477,"ts":326461380486,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":31,"tts":736700},
-{"pid":27443,"tid":27477,"ts":326461380517,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":31,"tts":736761},
-{"pid":27443,"tid":27477,"ts":326461380578,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":736792},
-{"pid":27443,"tid":27477,"ts":326461380639,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":736853},
-{"pid":27443,"tid":27477,"ts":326461380669,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":31,"tts":736883},
-{"pid":27443,"tid":27477,"ts":326461380730,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":31,"tts":736944},
-{"pid":27443,"tid":27477,"ts":326461380761,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":30,"tts":736975},
-{"pid":27443,"tid":27477,"ts":326461380791,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":31,"tts":737036},
-{"pid":27443,"tid":27477,"ts":326461380852,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":31,"tdur":30,"tts":737067},
-{"pid":27443,"tid":27477,"ts":326461380883,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":61,"tdur":61,"tts":737097},
-{"pid":27443,"tid":27477,"ts":326461380944,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":30,"tdur":31,"tts":737158},
-{"pid":27443,"tid":27477,"ts":326461380974,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15669},"dur":92,"tdur":61,"tts":737219},
-{"pid":27443,"tid":27477,"ts":326461381005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":737219,"id":"0xaf88ab66f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461381066,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":737280,"id":"0xaf88ab67f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461381554,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":737433,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461381585,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":737463},
-{"pid":27443,"tid":27477,"ts":326461381737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":737616,"id":"0xaf88ab60f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461381859,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":737738,"id":"0xaf88a63ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461382256,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":397,"tdur":397,"tts":737768},
-{"pid":27443,"tid":27477,"ts":326461382256,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":737768},
-{"pid":27443,"tid":27477,"ts":326461382287,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":737799},
-{"pid":27443,"tid":27477,"ts":326461382378,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":737891},
-{"pid":27443,"tid":27477,"ts":326461382409,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":737921},
-{"pid":27443,"tid":27477,"ts":326461382409,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":213,"tdur":214,"tts":737921},
-{"pid":27443,"tid":27477,"ts":326461382409,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":153,"tts":737921},
-{"pid":27443,"tid":27477,"ts":326461382439,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":737952,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461382470,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":738013},
-{"pid":27443,"tid":27477,"ts":326461382500,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":738013},
-{"pid":27443,"tid":27477,"ts":326461382561,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8626176,"bytes_used_for_staging_resources":10616832,"pending_copy_count":26,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":738074,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461382622,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":214}},"tts":738135,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461382653,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":738165,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461383050,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":738287,"id":"0xaf88a4c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461383050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":738287},
-{"pid":27443,"tid":27477,"ts":326461383050,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":738287},
-{"pid":27443,"tid":27477,"ts":326461383080,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8626176,"bytes_used_for_staging_resources":10616832,"pending_copy_count":26,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":738318,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461383080,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":738318},
-{"pid":27443,"tid":27477,"ts":326461383111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":738348,"id":"0xaf88a4def182217a"},
-{"pid":27443,"tid":27477,"ts":326461383111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":738379,"id":"0xaf88a4dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461383141,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":738379},
-{"pid":27443,"tid":27477,"ts":326461383141,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":738379},
-{"pid":27443,"tid":27466,"ts":326461381798,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383122,"id":"0xaf88ab60f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461381829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":383152},
-{"pid":27443,"tid":27466,"ts":326461381829,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":383152,"id":"0xccc57d02"},
-{"pid":27443,"tid":27466,"ts":326461384148,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":383244},
-{"pid":27443,"tid":27466,"ts":326461384209,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":61,"tts":383305},
-{"pid":27443,"tid":27466,"ts":326461384209,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":383305,"id":"0xba462802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461384240,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383335,"id":"0xaf88a4d8f182217a"},
-{"pid":27443,"tid":27466,"ts":326461395471,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":183,"tts":383488},
-{"pid":27443,"tid":27466,"ts":326461395502,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":123,"tts":383518},
-{"pid":27443,"tid":27466,"ts":326461395533,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":383549,"id":"0xba462a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461395594,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383610,"id":"0xaf88a4d9f182217a"},
-{"pid":27443,"tid":27466,"ts":326461397394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":383702,"id":"0xaf88ab61f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461397425,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":383732},
-{"pid":27443,"tid":27466,"ts":326461397425,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":383732,"id":"0xccc57e02"},
-{"pid":27443,"tid":27466,"ts":326461398524,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":383854},
-{"pid":27443,"tid":27466,"ts":326461398524,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":91,"tts":383885},
-{"pid":27443,"tid":27466,"ts":326461398554,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":383885,"id":"0xba462b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461398585,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":383915},
-{"pid":27443,"tid":27466,"ts":326461398585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":383915,"id":"0xaf88a4dbf182217a"},
-{"pid":27443,"tid":27466,"ts":326461400721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384007,"id":"0xaf88ab62f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461400752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":384037},
-{"pid":27443,"tid":27466,"ts":326461400752,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":384037,"id":"0xccc58002"},
-{"pid":27443,"tid":27466,"ts":326461405360,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":184,"tts":384159},
-{"pid":27443,"tid":27466,"ts":326461405391,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":152,"tdur":153,"tts":384190},
-{"pid":27443,"tid":27466,"ts":326461405421,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":384220,"id":"0xba462c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461405452,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":91,"tdur":92,"tts":384251},
-{"pid":27443,"tid":27466,"ts":326461405482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384281,"id":"0xaf88a4d6f182217a"},
-{"pid":27443,"tid":27466,"ts":326461405787,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":384404},
-{"pid":27443,"tid":27466,"ts":326461405818,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":384434},
-{"pid":27443,"tid":27466,"ts":326461405848,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":384465,"id":"0xba462d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461405879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384495,"id":"0xaf88a4d7f182217a"},
-{"pid":27443,"tid":27466,"ts":326461408351,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384617,"id":"0xaf88ab63f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461408382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":384648},
-{"pid":27443,"tid":27466,"ts":326461408382,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":384648,"id":"0xccc58202"},
-{"pid":27443,"tid":27466,"ts":326461418972,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":384770,"id":"0xaf88ab7cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461418972,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":384770},
-{"pid":27443,"tid":27466,"ts":326461419003,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":384800,"id":"0xccc58302"},
-{"pid":27443,"tid":27466,"ts":326461421627,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":384892},
-{"pid":27443,"tid":27466,"ts":326461421658,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":384922},
-{"pid":27443,"tid":27466,"ts":326461421658,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":384922,"id":"0xba462e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461421688,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":62,"tdur":61,"tts":384953},
-{"pid":27443,"tid":27466,"ts":326461421719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":384983,"id":"0xaf88a4ecf182217a"},
-{"pid":27443,"tid":27466,"ts":326461422177,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":385075},
-{"pid":27443,"tid":27466,"ts":326461422177,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":61,"tts":385106},
-{"pid":27443,"tid":27466,"ts":326461422207,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385106,"id":"0xba462f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461422238,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":385136,"id":"0xaf88a4edf182217a"},
-{"pid":27443,"tid":27466,"ts":326461423153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385258,"id":"0xaf88ab7df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461423184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":385258},
-{"pid":27443,"tid":27466,"ts":326461423184,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385258,"id":"0xccc58502"},
-{"pid":27443,"tid":27466,"ts":326461430417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385380,"id":"0xaf88ab7ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461430417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":385380},
-{"pid":27443,"tid":27466,"ts":326461430448,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385411,"id":"0xccc58602"},
-{"pid":27443,"tid":27466,"ts":326461430753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385533,"id":"0xaf88ab7ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461430753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":385533},
-{"pid":27443,"tid":27466,"ts":326461430753,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385533,"id":"0xccc58702"},
-{"pid":27443,"tid":27466,"ts":326461430814,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385594,"id":"0xaf88ab78f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461430845,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":385624},
-{"pid":27443,"tid":27466,"ts":326461430845,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385624,"id":"0xccc58802"},
-{"pid":27443,"tid":27466,"ts":326461431058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385746,"id":"0xaf88ab79f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":385746},
-{"pid":27443,"tid":27466,"ts":326461431058,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385746,"id":"0xccc58902"},
-{"pid":27443,"tid":27466,"ts":326461431180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385869,"id":"0xaf88ab7af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431211,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":385869},
-{"pid":27443,"tid":27466,"ts":326461431211,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385869,"id":"0xccc58a02"},
-{"pid":27443,"tid":27477,"ts":326461383141,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8626176,"bytes_used_for_staging_resources":10616832,"pending_copy_count":26,"staging_resource_count":32},"tasks_pending":[false,true,false]}},"tts":738379,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461383172,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":738409},
-{"pid":27443,"tid":27477,"ts":326461383202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":738440,"id":"0xaf88a4ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326461383202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":738440},
-{"pid":27443,"tid":27477,"ts":326461383202,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":738440},
-{"pid":27443,"tid":27477,"ts":326461383202,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":738470,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461383233,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":738470},
-{"pid":27443,"tid":27477,"ts":326461383233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":738470,"id":"0xaf88a4dff182217a"},
-{"pid":27443,"tid":27477,"ts":326461383263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":738501,"id":"0xaf88a4def182217a"},
-{"pid":27443,"tid":27477,"ts":326461383263,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":738501},
-{"pid":27443,"tid":27477,"ts":326461383294,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":152,"tts":738532},
-{"pid":27443,"tid":27477,"ts":326461383294,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":738532},
-{"pid":27443,"tid":27477,"ts":326461383324,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":738562},
-{"pid":27443,"tid":27477,"ts":326461383355,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":738593},
-{"pid":27443,"tid":27477,"ts":326461383355,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":738593},
-{"pid":27443,"tid":27477,"ts":326461383416,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":738654},
-{"pid":27443,"tid":27477,"ts":326461383446,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":738684},
-{"pid":27443,"tid":27477,"ts":326461383477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":738715,"id":"0xaf88a4dff182217a"},
-{"pid":27443,"tid":27477,"ts":326461383477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":738715},{"pid":27443,"tid":27477,"ts":326461383477,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":738715},
-{"pid":27443,"tid":27477,"ts":326461383477,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":738715},
-{"pid":27443,"tid":27477,"ts":326461383508,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":738745},
-{"pid":27443,"tid":27477,"ts":326461383508,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":738745},
-{"pid":27443,"tid":27477,"ts":326461383508,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":738745},
-{"pid":27443,"tid":27477,"ts":326461383569,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":738806},
-{"pid":27443,"tid":27477,"ts":326461383599,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":738837},
-{"pid":27443,"tid":27477,"ts":326461384301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":738898,"id":"0xaf88a4d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461384332,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":738928},
-{"pid":27443,"tid":27477,"ts":326461384332,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":738959},
-{"pid":27443,"tid":27477,"ts":326461384362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":738959,"id":"0xaf88a638f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461393182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461386},"tts":739050,"id":"0xaf88a4c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461393182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":739081},
-{"pid":27443,"tid":27477,"ts":326461395746,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":739172,"id":"0xaf88a4d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461395777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":396,"tdur":336,"tts":739203},
-{"pid":27443,"tid":27477,"ts":326461395899,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461392574.0,"frame_time_us":326461386751.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":274,"tdur":244,"tts":739295},
-{"pid":27443,"tid":27477,"ts":326461395929,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461392574.0,"frame_time_us":326461386751.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":244,"tdur":214,"tts":739325},
-{"pid":27443,"tid":27477,"ts":326461396082,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461403417},"dur":91,"tdur":30,"tts":739478},
-{"pid":27443,"tid":27477,"ts":326461396143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":739508,"id":"0xaf88a4daf182217a"},
-{"pid":27443,"tid":27477,"ts":326461398646,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":739600,"id":"0xaf88a4dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461398646,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":739600},
-{"pid":27443,"tid":27477,"ts":326461398676,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":92,"tdur":92,"tts":739630},
-{"pid":27443,"tid":27477,"ts":326461398676,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":739630,"id":"0x300000087"},
-{"pid":27443,"tid":27477,"ts":326461398707,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":739661},
-{"pid":27443,"tid":27477,"ts":326461398707,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":739691,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461398737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":739691,"id":"0xaf88a639f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461398768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":739722,"id":"0xaf88a4dff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461399195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":739783,"id":"0xaf88a4d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461399195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":91,"tts":739783},
-{"pid":27443,"tid":27477,"ts":326461399225,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":62,"tdur":61,"tts":739813},
-{"pid":27443,"tid":27477,"ts":326461399287,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":0,"tdur":0,"tts":739874},
-{"pid":27443,"tid":27477,"ts":326461400568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":739966,"id":"0xaf88a4d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461400568,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":739966},
-{"pid":27443,"tid":27477,"ts":326461400568,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":739966},
-{"pid":27443,"tid":27477,"ts":326461400599,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":145},"tts":739996},
-{"pid":27443,"tid":27477,"ts":326461400660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":740058,"id":"0xaf88a63af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461400660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":740058,"id":"0xaf88a4d9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461400690,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":740088},
-{"pid":27443,"tid":27477,"ts":326461403529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461403},"tts":740149,"id":"0xaf88a4daf182217a"},
-{"pid":27443,"tid":27477,"ts":326461403529,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":740149},
-{"pid":27443,"tid":27477,"ts":326461403590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":366,"tdur":30,"tts":740180},
-{"pid":27443,"tid":27477,"ts":326461403590,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":740180},
-{"pid":27443,"tid":27477,"ts":326461406398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":740271,"id":"0xaf88a4d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461406398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":740271},
-{"pid":27443,"tid":27477,"ts":326461406428,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":214,"tdur":213,"tts":740302},
-{"pid":27443,"tid":27459,"ts":326461399683,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":854,"tts":7702243},
-{"pid":27443,"tid":27459,"ts":326461399714,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":915,"tdur":824,"tts":7702273},
-{"pid":27443,"tid":27459,"ts":326461399775,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7702304},
-{"pid":27443,"tid":27459,"ts":326461399805,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7702334},
-{"pid":27443,"tid":27459,"ts":326461399836,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7702365},
-{"pid":27443,"tid":27459,"ts":326461399866,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7702395},
-{"pid":27443,"tid":27459,"ts":326461399897,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7702426},
-{"pid":27443,"tid":27459,"ts":326461399927,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7702456},
-{"pid":27443,"tid":27459,"ts":326461399958,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7702487},
-{"pid":27443,"tid":27459,"ts":326461399989,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":550,"tts":7702517},
-{"pid":27443,"tid":27459,"ts":326461400172,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":366,"tts":7702670},
-{"pid":27443,"tid":27459,"ts":326461400202,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7702670},
-{"pid":27443,"tid":27459,"ts":326461400477,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":104,"frame":"0x78c60000"}},"tts":7702945,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461400477,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":31,"tts":7702975},
-{"pid":27443,"tid":27459,"ts":326461400507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7702975,"id":"0xaf88a4d5f182217a"},
-{"pid":27443,"tid":27459,"ts":326461400538,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7703036},
-{"pid":27443,"tid":27459,"ts":326461400629,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7703097},
-{"pid":27443,"tid":27459,"ts":326461400660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7703128,"id":"0xaf88ab62f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461400782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7703250,"id":"0xaf88a4d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461400782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5829,"tdur":5738,"tts":7703250},
-{"pid":27443,"tid":27459,"ts":326461400813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7703280,"id":"0xaf88a4daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461400813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7703280,"id":"0xaf88a63af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461400813,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5737,"tdur":5647,"tts":7703280},
-{"pid":27443,"tid":27459,"ts":326461400813,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":145},"tts":7703280},
-{"pid":27443,"tid":27459,"ts":326461400843,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7703311},
-{"pid":27443,"tid":27459,"ts":326461400874,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4852,"tdur":4853,"tts":7703341},
-{"pid":27443,"tid":27459,"ts":326461400904,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7703372},
-{"pid":27443,"tid":27459,"ts":326461400935,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":104,"frame":"0x78c60000"}},"dur":4761,"tdur":4761,"tts":7703403},
-{"pid":27443,"tid":27459,"ts":326461400996,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4700,"tdur":4700,"tts":7703464},
-{"pid":27443,"tid":27459,"ts":326461401026,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7703494},
-{"pid":27443,"tid":27459,"ts":326461405665,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7708133},
-{"pid":27443,"tid":27459,"ts":326461405726,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":306,"tdur":214,"tts":7708194},
-{"pid":27443,"tid":27459,"ts":326461405726,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":7708194},
-{"pid":27443,"tid":27459,"ts":326461405879,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":7708255},
-{"pid":27443,"tid":27459,"ts":326461405909,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":7708286},
-{"pid":27443,"tid":27459,"ts":326461405940,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7708316},
-{"pid":27443,"tid":27459,"ts":326461405970,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":30,"tts":7708347},
-{"pid":27443,"tid":27459,"ts":326461406032,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":145},"dur":274,"tdur":275,"tts":7708408},
-{"pid":27443,"tid":27459,"ts":326461406032,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":274,"tdur":275,"tts":7708408},
-{"pid":27443,"tid":27459,"ts":326461406306,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7708683,"id":"0x300000087"},
-{"pid":27443,"tid":27459,"ts":326461406337,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":7708713,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461406337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7708713,"id":"0xaf88a4d0f182217a"},
-{"pid":27443,"tid":27459,"ts":326461406520,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902023.0,"time":326461394525.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461381000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461400538.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461406398.0},"coordinates":[{"x":266.0,"y":722.68603515625},{"x":456.5,"y":583.5}],"trace_id":12884902023.0}},"tts":7708896,"id":"0x300000087"},
-{"pid":27443,"tid":27459,"ts":326461406520,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":7708896,"id":"0x300000087","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461406550,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7708927},
-{"pid":27443,"tid":27459,"ts":326461406642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7709018,"id":"0xaf88a4d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461406642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7709018},
-{"pid":27443,"tid":27459,"ts":326461406672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7709049,"id":"0xaf88a63bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461406672,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdateForInputEventOnCompositorThread"},"dur":31,"tdur":30,"tts":7709049},
-{"pid":27443,"tid":27459,"ts":326461406764,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7709140,"id":"0xaf88a4daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461406764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1740,"tdur":1435,"tts":7709140},
-{"pid":27443,"tid":27459,"ts":326461406795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7709171,"id":"0xaf88a4d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461406795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7709171,"id":"0xaf88a634f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461406795,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1709,"tdur":1404,"tts":7709171},
-{"pid":27443,"tid":27459,"ts":326461406978,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1495,"tdur":1312,"tts":7709232},
-{"pid":27443,"tid":27459,"ts":326461407008,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7709232,"id":"0x300000088"},
-{"pid":27443,"tid":27459,"ts":326461407039,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1159,"tdur":1160,"tts":7709262},
-{"pid":27443,"tid":27459,"ts":326461407069,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1129,"tdur":1099,"tts":7709293},
-{"pid":27443,"tid":27459,"ts":326461407130,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7709354},
-{"pid":27443,"tid":27459,"ts":326461407191,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7709415},
-{"pid":27443,"tid":27459,"ts":326461407222,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7709446},
-{"pid":27443,"tid":27459,"ts":326461407252,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7709476},
-{"pid":27443,"tid":27459,"ts":326461407283,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7709507},
-{"pid":27443,"tid":27459,"ts":326461407313,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7709537},
-{"pid":27443,"tid":27477,"ts":326461406459,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":740332,"id":"0x300000088"},
-{"pid":27443,"tid":27477,"ts":326461406520,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":740393},
-{"pid":27443,"tid":27477,"ts":326461406550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":740424,"id":"0xaf88a63bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461406550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":740424,"id":"0xaf88a4dbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461406581,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":740454,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461406611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":740485,"id":"0xaf88a634f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461406642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":740515,"id":"0xaf88a4d4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461406672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":740546,"id":"0xaf88a4d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461406672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":244,"tts":740546},
-{"pid":27443,"tid":27477,"ts":326461406703,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461409256.0,"frame_time_us":326461403433.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":336,"tdur":183,"tts":740576},
-{"pid":27443,"tid":27477,"ts":326461406734,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461409256.0,"frame_time_us":326461403433.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":305,"tdur":152,"tts":740607},
-{"pid":27443,"tid":27477,"ts":326461406856,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461420099},"dur":183,"tdur":30,"tts":740729},
-{"pid":27443,"tid":27477,"ts":326461407039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":740759,"id":"0xaf88a4d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461407069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":740790,"id":"0xaf88a4d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461407069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":855,"tdur":92,"tts":740790},
-{"pid":27443,"tid":27477,"ts":326461407069,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":824,"tdur":61,"tts":740821},
-{"pid":27443,"tid":27477,"ts":326461407130,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":763,"tdur":31,"tts":740851},
-{"pid":27443,"tid":27477,"ts":326461407130,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":763,"tdur":31,"tts":740851},
-{"pid":27443,"tid":27477,"ts":326461408107,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":740973,"id":"0xaf88a4d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461408107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":183,"tdur":152,"tts":741004},
-{"pid":27443,"tid":27477,"ts":326461408137,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":152,"tts":741004},
-{"pid":27443,"tid":27477,"ts":326461408168,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":146},"tts":741034},
-{"pid":27443,"tid":27477,"ts":326461408229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":741095,"id":"0xaf88a635f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461408260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":741126,"id":"0xaf88a4d6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461408290,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":741156},
-{"pid":27443,"tid":27477,"ts":326461416744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":741248,"id":"0xaf88a4d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461416744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":91,"tts":741248},
-{"pid":27443,"tid":27477,"ts":326461416744,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":92,"tdur":91,"tts":741248},
-{"pid":27443,"tid":27477,"ts":326461416805,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":30,"tts":741309},
-{"pid":27443,"tid":27477,"ts":326461420193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461420},"tts":741400,"id":"0xaf88a4d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461420193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":741400},
-{"pid":27443,"tid":27477,"ts":326461420224,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":741431},
-{"pid":27443,"tid":27477,"ts":326461421780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":741492,"id":"0xaf88a4ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326461421780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":741492},
-{"pid":27443,"tid":27477,"ts":326461421780,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":741492},
-{"pid":27443,"tid":27477,"ts":326461421811,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":741523,"id":"0x300000089"},
-{"pid":27443,"tid":27477,"ts":326461421841,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":741553},
-{"pid":27443,"tid":27477,"ts":326461421841,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":741553,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461421872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":741584,"id":"0xaf88a633f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461421902,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":741614,"id":"0xaf88a4e8f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461422268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":741675,"id":"0xaf88a4edf182217a"},
-{"pid":27443,"tid":27477,"ts":326461422299,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":741706},
-{"pid":27443,"tid":27477,"ts":326461422329,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461425937.0,"frame_time_us":326461420114.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":741736},
-{"pid":27443,"tid":27477,"ts":326461422329,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461425937.0,"frame_time_us":326461420114.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":122,"tdur":122,"tts":741736},
-{"pid":27443,"tid":27477,"ts":326461422421,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461436780},"dur":0,"tdur":0,"tts":741828},
-{"pid":27443,"tid":27477,"ts":326461422421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":741828,"id":"0xaf88a4eef182217a"},
-{"pid":27443,"tid":27477,"ts":326461423001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":741919,"id":"0xaf88a4eff182217a"},
-{"pid":27443,"tid":27477,"ts":326461423031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":152,"tts":741950},
-{"pid":27443,"tid":27477,"ts":326461423031,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":741950},
-{"pid":27443,"tid":27477,"ts":326461423031,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":147},"tts":741950},
-{"pid":27443,"tid":27477,"ts":326461423123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":742041,"id":"0xaf88a6ccf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461423123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":742072,"id":"0xaf88a4eaf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461423153,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":742072},
-{"pid":27443,"tid":27477,"ts":326461428617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":742133,"id":"0xaf88a4e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461428617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":91,"tdur":91,"tts":742133},
-{"pid":27443,"tid":27477,"ts":326461428617,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":91,"tdur":91,"tts":742133},
-{"pid":27443,"tid":27477,"ts":326461428678,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":30,"tts":742194},
-{"pid":27443,"tid":27477,"ts":326461436918,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461436},"tts":742286,"id":"0xaf88a4eef182217a"},
-{"pid":27443,"tid":27477,"ts":326461436949,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":213,"tdur":61,"tts":742316},
-{"pid":27443,"tid":27477,"ts":326461436949,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":742316},
-{"pid":27443,"tid":27477,"ts":326461437132,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":742347},
-{"pid":27443,"tid":27477,"ts":326461440550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":742438,"id":"0xaf88a4e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461440550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":183,"tts":742438},
-{"pid":27443,"tid":27477,"ts":326461440581,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":152,"tts":742469},
-{"pid":27443,"tid":27459,"ts":326461407344,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7709598},
-{"pid":27443,"tid":27459,"ts":326461407405,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":763,"tdur":733,"tts":7709659},
-{"pid":27443,"tid":27459,"ts":326461407588,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":549,"tdur":519,"tts":7709842},
-{"pid":27443,"tid":27459,"ts":326461407619,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7709842},
-{"pid":27443,"tid":27459,"ts":326461407985,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":105,"frame":"0x78c60000"}},"tts":7710209,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461408015,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7710239},
-{"pid":27443,"tid":27459,"ts":326461408046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7710270,"id":"0xaf88a4d2f182217a"},
-{"pid":27443,"tid":27459,"ts":326461408107,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7710331},
-{"pid":27443,"tid":27459,"ts":326461408229,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":91,"tts":7710453},
-{"pid":27443,"tid":27459,"ts":326461408229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7710483,"id":"0xaf88ab63f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461408534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7710605,"id":"0xaf88a4dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461408565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8332,"tdur":8240,"tts":7710636},
-{"pid":27443,"tid":27459,"ts":326461408565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7710636,"id":"0xaf88a635f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461408595,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8302,"tdur":8210,"tts":7710666},
-{"pid":27443,"tid":27459,"ts":326461408595,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":146},"tts":7710666},
-{"pid":27443,"tid":27459,"ts":326461408626,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7710697},
-{"pid":27443,"tid":27459,"ts":326461408656,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7539,"tdur":7416,"tts":7710758},
-{"pid":27443,"tid":27459,"ts":326461408687,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7710758},
-{"pid":27443,"tid":27459,"ts":326461408748,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":105,"frame":"0x78c60000"}},"dur":7447,"tdur":7355,"tts":7710819},
-{"pid":27443,"tid":27459,"ts":326461408809,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7355,"tdur":7233,"tts":7710911},
-{"pid":27443,"tid":27459,"ts":326461408839,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7710911},
-{"pid":27443,"tid":27459,"ts":326461409938,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7712009},
-{"pid":27443,"tid":27459,"ts":326461410304,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7712376},
-{"pid":27443,"tid":27459,"ts":326461410457,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7712528},
-{"pid":27443,"tid":27459,"ts":326461410671,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7712742},
-{"pid":27443,"tid":27459,"ts":326461410701,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7712803},
-{"pid":27443,"tid":27459,"ts":326461410793,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7712894},
-{"pid":27443,"tid":27459,"ts":326461410854,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7712955},
-{"pid":27443,"tid":27459,"ts":326461411037,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7713139},
-{"pid":27443,"tid":27459,"ts":326461411159,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7713230},
-{"pid":27443,"tid":27459,"ts":326461411373,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7713444},
-{"pid":27443,"tid":27459,"ts":326461411769,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7713840},
-{"pid":27443,"tid":27459,"ts":326461411952,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7714024},
-{"pid":27443,"tid":27459,"ts":326461413601,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7715580},
-{"pid":27443,"tid":27459,"ts":326461414089,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7716068},
-{"pid":27443,"tid":27459,"ts":326461416164,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7718144},
-{"pid":27443,"tid":27459,"ts":326461416195,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":183,"tdur":153,"tts":7718205},
-{"pid":27443,"tid":27459,"ts":326461416256,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":92,"tts":7718235},
-{"pid":27443,"tid":27459,"ts":326461416256,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":30,"tdur":31,"tts":7718235},
-{"pid":27443,"tid":27459,"ts":326461416286,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":7718266},
-{"pid":27443,"tid":27459,"ts":326461416317,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":0,"tts":7718327},
-{"pid":27443,"tid":27459,"ts":326461416378,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":146},"dur":275,"tdur":274,"tts":7718358},
-{"pid":27443,"tid":27459,"ts":326461416378,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":214,"tts":7718388},
-{"pid":27443,"tid":27459,"ts":326461416653,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7718632,"id":"0x300000088"},
-{"pid":27443,"tid":27459,"ts":326461416653,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":7718632,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461416683,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7718663,"id":"0xaf88a4d3f182217a"},
-{"pid":27443,"tid":27459,"ts":326461416744,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3355},"tts":7718724,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461416775,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7718754,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461416866,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902024.0,"time":326461404750.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461398000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461408076.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461416775.0},"coordinates":[{"x":265.36968994140625,"y":723.6303100585938},{"x":456.5,"y":582.8696899414062}],"trace_id":12884902024.0}},"tts":7718846,"id":"0x300000088"},
-{"pid":27443,"tid":27459,"ts":326461416866,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":7718846,"id":"0x300000088","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461416897,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7718876},
-{"pid":27443,"tid":27459,"ts":326461416927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7718937,"id":"0xaf88a4d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461416958,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":549,"tdur":367,"tts":7718937},
-{"pid":27443,"tid":27459,"ts":326461416958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7718937,"id":"0xaf88a623f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461416988,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":519,"tdur":336,"tts":7718968},
-{"pid":27443,"tid":27459,"ts":326461416988,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":489,"tdur":305,"tts":7718968},
-{"pid":27443,"tid":27459,"ts":326461417019,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":204,"frame":"0x78c60000"}},"dur":458,"tdur":275,"tts":7718998},
-{"pid":27443,"tid":27459,"ts":326461417049,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":428,"tdur":214,"tts":7719029},
-{"pid":27443,"tid":27459,"ts":326461417263,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":183,"tdur":153,"tts":7719090},
-{"pid":27443,"tid":27459,"ts":326461417294,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7719090},
-{"pid":27443,"tid":27459,"ts":326461417446,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7719243},
-{"pid":27443,"tid":27459,"ts":326461417538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7719334,"id":"0xaf88a4d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461417538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":7719334},
-{"pid":27443,"tid":27459,"ts":326461417568,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7719365,"id":"0xaf88a4d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461417568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7719395,"id":"0xaf88a62af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461417599,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":153,"tts":7719395},
-{"pid":27443,"tid":27459,"ts":326461417599,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7719426,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461417629,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.47},"dur":122,"tdur":122,"tts":7719426},
-{"pid":27443,"tid":27459,"ts":326461417660,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7719456},
-{"pid":27443,"tid":27459,"ts":326461417690,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7719487},
-{"pid":27443,"tid":27459,"ts":326461417721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7719517,"id":"0xaf88a636f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461417721,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7719517,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461417782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7719578,"id":"0xaf88a4d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461417782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7719578},
-{"pid":27443,"tid":27459,"ts":326461417812,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7719609,"id":"0xaf88a627f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461417812,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":0,"tts":7719609},
-{"pid":27443,"tid":27459,"ts":326461417873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7719670,"id":"0xaf88a4d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461417873,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":428,"tdur":427,"tts":7719670},
-{"pid":27443,"tid":27459,"ts":326461417873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7719670,"id":"0xaf88a4d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461417904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7719700,"id":"0xaf88a620f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461417904,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":397,"tts":7719700},
-{"pid":27443,"tid":27459,"ts":326461417996,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":305,"tdur":275,"tts":7719792},
-{"pid":27443,"tid":27459,"ts":326461418240,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.112","frame":"0x78c60000","statusCode":204,"mimeType":"image/gif"}},"tts":7720067,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461418331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7720128,"id":"0xaf88a4d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461418331,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":31,"tts":7720158},
-{"pid":27443,"tid":27459,"ts":326461418362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7720158,"id":"0xaf88a4d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461418362,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7720189,"id":"0xaf88a621f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461418392,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":7720189},
-{"pid":27443,"tid":27459,"ts":326461418423,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7720219,"id":"0xaf88a4d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461418423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":580,"tts":7720219},
-{"pid":27443,"tid":27459,"ts":326461418453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7720250,"id":"0xaf88a4d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461418453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7720250,"id":"0xaf88a622f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461418484,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":489,"tts":7720280},
-{"pid":27443,"tid":27459,"ts":326461418484,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":488,"tdur":489,"tts":7720280},
-{"pid":27443,"tid":27459,"ts":326461418514,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":7720311,"id":"0xaf88ae4cfda79162"},
-{"pid":27443,"tid":27459,"ts":326461418575,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.112","didFail":false,"networkTime":326461.362937}},"tts":7720372,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461418606,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":214,"tdur":214,"tts":7720402},
-{"pid":27443,"tid":27459,"ts":326461418636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7720433,"id":"0xaf88a637f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461418850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7720647,"id":"0xaf88a630f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461418881,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":7720677},
-{"pid":27443,"tid":27459,"ts":326461418881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7720677,"id":"0xaf88ab7cf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461419003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7720799,"id":"0xaf88a4d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":457,"tts":7720830},
-{"pid":27443,"tid":27459,"ts":326461419033,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7720830,"id":"0xaf88a4d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7720860,"id":"0xaf88a637f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461419064,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":427,"tdur":427,"tts":7720860},
-{"pid":27443,"tid":27459,"ts":326461419064,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":427,"tdur":397,"tts":7720860},
-{"pid":27443,"tid":27459,"ts":326461419094,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7720891},
-{"pid":27443,"tid":27459,"ts":326461419125,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"error"}},"dur":305,"tdur":274,"tts":7720952},
-{"pid":27443,"tid":27459,"ts":326461419247,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":42,"frame":"0x78c60000"}},"dur":152,"tdur":153,"tts":7721043},
-{"pid":27443,"tid":27459,"ts":326461419277,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7721074},
-{"pid":27443,"tid":27459,"ts":326461419399,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7721196},
-{"pid":27443,"tid":27459,"ts":326461419460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7721257,"id":"0xaf88a631f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461419522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7721318,"id":"0xaf88a4d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7721318},
-{"pid":27443,"tid":27459,"ts":326461419552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7721349,"id":"0xaf88a4ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7721349,"id":"0xaf88a636f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461419552,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":7721349},
-{"pid":27443,"tid":27459,"ts":326461419583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7721379,"id":"0xaf88a632f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461419613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7721410,"id":"0xaf88a4ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7721440},
-{"pid":27443,"tid":27459,"ts":326461419644,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7721440,"id":"0xaf88a4edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419674,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7721471,"id":"0xaf88a630f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461419674,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":92,"tdur":91,"tts":7721471},
-{"pid":27443,"tid":27459,"ts":326461419674,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":61,"tdur":61,"tts":7721471},
-{"pid":27443,"tid":27459,"ts":326461419796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7721593,"id":"0xaf88a4edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7721593},
-{"pid":27443,"tid":27459,"ts":326461419827,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7721623,"id":"0xaf88a4eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419827,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7721623,"id":"0xaf88a631f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461419827,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":0,"tts":7721654},
-{"pid":27443,"tid":27459,"ts":326461419857,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":7721654},
-{"pid":27443,"tid":27459,"ts":326461419888,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7721715,"id":"0xaf88a4eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461419918,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7721715},
-{"pid":27443,"tid":27459,"ts":326461420498,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461420},"tts":7721806,"id":"0xaf88a4cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461420529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":7721806},
-{"pid":27443,"tid":27459,"ts":326461420559,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7721837,"id":"0xaf88a4eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461420590,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7721898,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461420620,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7721898,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461420651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7721928,"id":"0xaf88a4eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461420681,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7721959},
-{"pid":27443,"tid":27459,"ts":326461421963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7722050,"id":"0xaf88a4e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461421994,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":7722081},
-{"pid":27443,"tid":27459,"ts":326461422024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7722112,"id":"0xaf88a4e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461422024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7722112,"id":"0xaf88a633f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461422024,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1159,"tts":7722112},
-{"pid":27443,"tid":27459,"ts":326461422085,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1038,"tts":7722203},
-{"pid":27443,"tid":27459,"ts":326461422116,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7722203,"id":"0x300000089"},
-{"pid":27443,"tid":27459,"ts":326461422146,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":915,"tts":7722234},
-{"pid":27443,"tid":27459,"ts":326461422177,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":7722264},
-{"pid":27443,"tid":27459,"ts":326461422207,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7722295},
-{"pid":27443,"tid":27459,"ts":326461422268,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7722356},
-{"pid":27443,"tid":27459,"ts":326461422268,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7722386},
-{"pid":27443,"tid":27459,"ts":326461422299,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7722386},
-{"pid":27443,"tid":27459,"ts":326461422329,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7722447},
-{"pid":27443,"tid":27459,"ts":326461422390,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7722478},
-{"pid":27443,"tid":27459,"ts":326461422421,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7722508},
-{"pid":27443,"tid":27459,"ts":326461422451,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":610,"tts":7722539},
-{"pid":27443,"tid":27459,"ts":326461422574,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":457,"tdur":458,"tts":7722661},
-{"pid":27443,"tid":27459,"ts":326461422604,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7722691},
-{"pid":27443,"tid":27459,"ts":326461422909,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":106,"frame":"0x78c60000"}},"tts":7723027,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461422940,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7723027},
-{"pid":27443,"tid":27459,"ts":326461422970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7723058,"id":"0xaf88a4eff182217a"},
-{"pid":27443,"tid":27459,"ts":326461423001,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7723088},
-{"pid":27443,"tid":27459,"ts":326461423092,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7723180},
-{"pid":27443,"tid":27459,"ts":326461423092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7723180,"id":"0xaf88ab7df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461423215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7723302,"id":"0xaf88a4e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461423215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5585,"tdur":5524,"tts":7723302},
-{"pid":27443,"tid":27459,"ts":326461423245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7723332,"id":"0xaf88a4ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461423245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7723332,"id":"0xaf88a6ccf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461423276,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5493,"tdur":5432,"tts":7723363},
-{"pid":27443,"tid":27459,"ts":326461423276,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":147},"tts":7723363},
-{"pid":27443,"tid":27459,"ts":326461423306,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7723393},
-{"pid":27443,"tid":27459,"ts":326461423337,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4730,"tdur":4670,"tts":7723424},
-{"pid":27443,"tid":27459,"ts":326461423367,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":7723454},
-{"pid":27443,"tid":27459,"ts":326461423428,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":106,"frame":"0x78c60000"}},"dur":4609,"tdur":4548,"tts":7723515},
-{"pid":27443,"tid":27459,"ts":326461423520,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4517,"tdur":4456,"tts":7723607},
-{"pid":27443,"tid":27459,"ts":326461423520,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7723638},
-{"pid":27443,"tid":27459,"ts":326461428006,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7728032},
-{"pid":27443,"tid":27459,"ts":326461428067,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":153,"tdur":152,"tts":7728094},
-{"pid":27443,"tid":27459,"ts":326461428098,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":91,"tts":7728155},
-{"pid":27443,"tid":27459,"ts":326461428128,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":31,"tdur":30,"tts":7728155},
-{"pid":27443,"tid":27459,"ts":326461428159,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7728185},
-{"pid":27443,"tid":27459,"ts":326461428189,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":30,"tts":7728216},
-{"pid":27443,"tid":27459,"ts":326461428250,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":147},"dur":275,"tdur":274,"tts":7728277},
-{"pid":27443,"tid":27459,"ts":326461428250,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":274,"tts":7728277},
-{"pid":27443,"tid":27459,"ts":326461428525,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7728551,"id":"0x300000089"},
-{"pid":27443,"tid":27459,"ts":326461428525,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":7728551,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461428556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7728582,"id":"0xaf88a4e8f182217a"},
-{"pid":27443,"tid":27459,"ts":326461428617,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":8163},"tts":7728643,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461428647,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7728673,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461428739,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902025.0,"time":326461421322.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461415000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461423001.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461428647.0},"coordinates":[{"x":264.2059326171875,"y":725.6911010742188},{"x":457.2940673828125,"y":580.411865234375}],"trace_id":12884902025.0}},"tts":7728765,"id":"0x300000089"},
-{"pid":27443,"tid":27459,"ts":326461428739,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":7728765,"id":"0x300000089","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461428769,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7728795},
-{"pid":27443,"tid":27459,"ts":326461428830,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7728857,"id":"0xaf88a4eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461428830,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2839,"tdur":2807,"tts":7728857},
-{"pid":27443,"tid":27459,"ts":326461428861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7728887,"id":"0xaf88a64ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461428861,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2777,"tdur":2777,"tts":7728887},
-{"pid":27443,"tid":27459,"ts":326461428891,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2747,"tdur":2746,"tts":7728918},
-{"pid":27443,"tid":27459,"ts":326461428922,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":200,"frame":"0x78c60000"}},"dur":2686,"tdur":2686,"tts":7728948},
-{"pid":27443,"tid":27459,"ts":326461428952,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":2656,"tdur":2655,"tts":7728979},
-{"pid":27443,"tid":27459,"ts":326461429013,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":2595,"tdur":2594,"tts":7729040},
-{"pid":27443,"tid":27459,"ts":326461429044,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7729070},
-{"pid":27443,"tid":27459,"ts":326461430173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7730199,"id":"0xaf88a4e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461430295,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStartLoading","args":{"id":1},"dur":92,"tdur":92,"tts":7730321},
-{"pid":27443,"tid":27459,"ts":326461430326,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":711},"dur":61,"tdur":61,"tts":7730352},
-{"pid":27443,"tid":27459,"ts":326461430326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7730352,"id":"0xaf88ab7ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461430478,"ph":"X","cat":"blink","name":"PinchViewport::mainFrameDidChangeSize","args":{},"dur":0,"tdur":0,"tts":7730505},
-{"pid":27443,"tid":27459,"ts":326461430478,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didNavigateWithinPage","args":{"id":1},"dur":763,"tdur":763,"tts":7730505},
-{"pid":27443,"tid":27459,"ts":326461430539,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didCommitProvisionalLoad","args":{"id":1,"url":"https://www.google.com/maps/@37.4140995,-122.1072661,12z?hl=en"},"dur":702,"tdur":702,"tts":7730566},
-{"pid":27443,"tid":27459,"ts":326461430661,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":62,"tdur":61,"tts":7730688},
-{"pid":27443,"tid":27459,"ts":326461430692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7730718,"id":"0xaf88ab7ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461430753,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":749},"dur":0,"tdur":0,"tts":7730779},
-{"pid":27443,"tid":27459,"ts":326461430753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7730779,"id":"0xaf88ab78f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461430967,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1402},"dur":61,"tdur":61,"tts":7730993},
-{"pid":27443,"tid":27459,"ts":326461430997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731023,"id":"0xaf88ab79f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431119,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":694},"dur":61,"tdur":61,"tts":7731146},
-{"pid":27443,"tid":27459,"ts":326461431150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731176,"id":"0xaf88ab7af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431180,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":31,"tdur":0,"tts":7731237},
-{"pid":27443,"tid":27459,"ts":326461431211,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731237,"id":"0xaf88ab7bf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431241,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":761},"dur":31,"tdur":30,"tts":7731268},
-{"pid":27443,"tid":27459,"ts":326461431272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731298,"id":"0xaf88ab74f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431302,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":31,"tdur":30,"tts":7731329},
-{"pid":27443,"tid":27459,"ts":326461431302,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731329,"id":"0xaf88ab75f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431333,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStopLoading","args":{"id":1},"dur":214,"tdur":214,"tts":7731359},
-{"pid":27443,"tid":27459,"ts":326461431394,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1517},"dur":30,"tdur":31,"tts":7731420},
-{"pid":27443,"tid":27459,"ts":326461431394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731420,"id":"0xaf88ab76f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731512,"id":"0xaf88a4e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461431516,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":714},"dur":31,"tdur":31,"tts":7731542},
-{"pid":27443,"tid":27459,"ts":326461431516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731542,"id":"0xaf88ab77f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461431577,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7731603},
-{"pid":27443,"tid":27459,"ts":326461431699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7731725,"id":"0xaf88a4ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461431699,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":184,"tts":7731725},
-{"pid":27443,"tid":27459,"ts":326461431730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7731756,"id":"0xaf88a4e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461431730,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7731756,"id":"0xaf88a632f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461431760,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":123,"tts":7731786},
-{"pid":27443,"tid":27459,"ts":326461431760,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7731786,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461431760,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":5.02},"dur":122,"tdur":123,"tts":7731786},
-{"pid":27443,"tid":27459,"ts":326461431791,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7731817},
-{"pid":27443,"tid":27459,"ts":326461431821,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7731848},
-{"pid":27443,"tid":27459,"ts":326461431852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7731878,"id":"0xaf88a6cdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461431852,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7731878,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461431913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7731939,"id":"0xaf88a4e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461431913,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7731970},
-{"pid":27443,"tid":27459,"ts":326461440825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7732031,"id":"0xaf88a4e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461440825,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":30,"tts":7732031},
-{"pid":27443,"tid":27459,"ts":326461441130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1526,"tdur":1496,"tts":7732061},
-{"pid":27443,"tid":27459,"ts":326461441160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7732122,"id":"0xaf88a4e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461441191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7732122,"id":"0xaf88a6cef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461441191,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1434,"tdur":1404,"tts":7732122},
-{"pid":27443,"tid":27459,"ts":326461441313,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1312,"tdur":1282,"tts":7732214},
-{"pid":27443,"tid":27459,"ts":326461441313,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7732214,"id":"0x30000008a"},
-{"pid":27443,"tid":27459,"ts":326461441344,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1098,"tdur":1068,"tts":7732244},
-{"pid":27443,"tid":27459,"ts":326461441374,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1038,"tdur":1037,"tts":7732275},
-{"pid":27443,"tid":27459,"ts":326461441466,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7732366},
-{"pid":27443,"tid":27459,"ts":326461441527,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7732427},
-{"pid":27443,"tid":27459,"ts":326461441557,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7732488},
-{"pid":27443,"tid":27466,"ts":326461431272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385930,"id":"0xaf88ab7bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":385930},
-{"pid":27443,"tid":27466,"ts":326461431302,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":385960,"id":"0xccc58b02"},
-{"pid":27443,"tid":27466,"ts":326461431333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":385991,"id":"0xaf88ab74f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431333,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":385991},
-{"pid":27443,"tid":27466,"ts":326461431333,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386021,"id":"0xccc58c02"},
-{"pid":27443,"tid":27466,"ts":326461431394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386052,"id":"0xaf88ab75f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":386052},
-{"pid":27443,"tid":27466,"ts":326461431394,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386052,"id":"0xccc58d02"},
-{"pid":27443,"tid":27466,"ts":326461431424,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386082,"id":"0xaf88ab76f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431455,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":386113},
-{"pid":27443,"tid":27466,"ts":326461431455,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386113,"id":"0xccc58e02"},
-{"pid":27443,"tid":27466,"ts":326461431577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386174,"id":"0xaf88ab77f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461431577,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":386174},
-{"pid":27443,"tid":27466,"ts":326461431608,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386204,"id":"0xccc58f02"},
-{"pid":27443,"tid":27466,"ts":326461440275,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":183,"tts":386265},
-{"pid":27443,"tid":27466,"ts":326461440336,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":386326},
-{"pid":27443,"tid":27466,"ts":326461440336,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386326,"id":"0xba463002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461440367,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":386357},
-{"pid":27443,"tid":27466,"ts":326461440397,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":386387,"id":"0xaf88a4e9f182217a"},
-{"pid":27443,"tid":27466,"ts":326461440733,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":386509},
-{"pid":27443,"tid":27466,"ts":326461440764,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":386540},
-{"pid":27443,"tid":27466,"ts":326461440764,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386540,"id":"0xba463102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461440794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":386570,"id":"0xaf88a4eaf182217a"},
-{"pid":27443,"tid":27466,"ts":326461442534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386723,"id":"0xaf88ab70f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461442564,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":386754},
-{"pid":27443,"tid":27466,"ts":326461442595,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386784,"id":"0xccc59102"},
-{"pid":27443,"tid":27466,"ts":326461442656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":386845,"id":"0xaf88ab71f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461442687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":386876},
-{"pid":27443,"tid":27466,"ts":326461442717,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":386906,"id":"0xccc59202"},
-{"pid":27443,"tid":27466,"ts":326461445433,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":386967},
-{"pid":27443,"tid":27466,"ts":326461445464,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":126},"dur":91,"tdur":91,"tts":386998},
-{"pid":27443,"tid":27466,"ts":326461445494,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":387028,"id":"0xba463202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461445525,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":387059,"id":"0xaf88a6c9f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461445525,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":387059,"id":"0xaf88a4e3f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461455108,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":387150},
-{"pid":27443,"tid":27466,"ts":326461455139,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":387181},
-{"pid":27443,"tid":27466,"ts":326461455169,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":387211,"id":"0xba463302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461455200,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":387242},
-{"pid":27443,"tid":27466,"ts":326461455230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":387272,"id":"0xaf88a4e6f182217a"},
-{"pid":27443,"tid":27466,"ts":326461455475,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":387364},
-{"pid":27443,"tid":27466,"ts":326461455505,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":31,"tdur":30,"tts":387395},
-{"pid":27443,"tid":27466,"ts":326461455505,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":387395,"id":"0xba463402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461455536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":387425,"id":"0xaf88a4e7f182217a"},
-{"pid":27443,"tid":27466,"ts":326461457825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":387578,"id":"0xaf88ab72f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461457825,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":793,"tdur":122,"tts":387578},
-{"pid":27443,"tid":27466,"ts":326461457855,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":387608,"id":"0xccc59402"},
-{"pid":27443,"tid":27466,"ts":326461471925,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":387730},
-{"pid":27443,"tid":27466,"ts":326461471956,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":387761},
-{"pid":27443,"tid":27466,"ts":326461471986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":387791,"id":"0xba463502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461472017,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":30,"tts":387822},
-{"pid":27443,"tid":27466,"ts":326461472017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":387822,"id":"0xaf88a4e2f182217a"},
-{"pid":27443,"tid":27466,"ts":326461472230,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":387944},
-{"pid":27443,"tid":27466,"ts":326461472261,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":387974},
-{"pid":27443,"tid":27466,"ts":326461472261,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":387974,"id":"0xba463602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461472291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":388005,"id":"0xaf88a4e3f182217a"},
-{"pid":27443,"tid":27466,"ts":326461477052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388127,"id":"0xaf88ab73f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461477052,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":388127},
-{"pid":27443,"tid":27466,"ts":326461477052,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388127,"id":"0xccc59602"},
-{"pid":27443,"tid":27466,"ts":326461479952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388280,"id":"0xaf88ab0cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461479952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":388280},
-{"pid":27443,"tid":27466,"ts":326461479982,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388310,"id":"0xccc59702"},
-{"pid":27443,"tid":27466,"ts":326461480043,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388402,"id":"0xaf88ab0df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461480074,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":388402},
-{"pid":27443,"tid":27477,"ts":326461440581,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":742469,"id":"0x30000008a"},
-{"pid":27443,"tid":27477,"ts":326461440611,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":742499},
-{"pid":27443,"tid":27477,"ts":326461440642,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":742530,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461440672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":742560,"id":"0xaf88a6cef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461440672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":742560,"id":"0xaf88a4e7f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461440855,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":742682,"id":"0xaf88a4eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326461440855,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":742682},
-{"pid":27443,"tid":27477,"ts":326461440916,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461442619.0,"frame_time_us":326461436796.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":153,"tts":742743},
-{"pid":27443,"tid":27477,"ts":326461440916,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461442619.0,"frame_time_us":326461436796.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":153,"tdur":122,"tts":742774},
-{"pid":27443,"tid":27477,"ts":326461441008,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461453462},"dur":61,"tdur":30,"tts":742835},
-{"pid":27443,"tid":27477,"ts":326461441038,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":742865,"id":"0xaf88a4ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326461442381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":742987,"id":"0xaf88a4e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461442381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":183,"tdur":184,"tts":742987},
-{"pid":27443,"tid":27477,"ts":326461442381,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":183,"tdur":153,"tts":743018},
-{"pid":27443,"tid":27477,"ts":326461442412,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":148},"tts":743018},
-{"pid":27443,"tid":27477,"ts":326461442503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":743110,"id":"0xaf88a6cff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461442503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":743110,"id":"0xaf88a4e1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461442534,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":743140},
-{"pid":27443,"tid":27477,"ts":326461448180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":743232,"id":"0xaf88a4e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461448180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":91,"tts":743232},
-{"pid":27443,"tid":27477,"ts":326461448211,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":743262},
-{"pid":27443,"tid":27477,"ts":326461448241,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":30,"tts":743293},
-{"pid":27443,"tid":27477,"ts":326461453552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461453},"tts":743384,"id":"0xaf88a4ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326461453582,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":743415},
-{"pid":27443,"tid":27477,"ts":326461453582,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":743415},
-{"pid":27443,"tid":27477,"ts":326461455291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":743537,"id":"0xaf88a4e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461455291,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":30,"tts":743537},
-{"pid":27443,"tid":27477,"ts":326461455688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":245,"tts":743567},
-{"pid":27443,"tid":27477,"ts":326461455719,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":183,"tdur":183,"tts":743598},
-{"pid":27443,"tid":27477,"ts":326461455749,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":743628,"id":"0x30000008b"},
-{"pid":27443,"tid":27477,"ts":326461455749,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":743628},
-{"pid":27443,"tid":27477,"ts":326461455780,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":743689,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461455841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":743720,"id":"0xaf88a6c4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461455841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":743750,"id":"0xaf88a4fff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461455932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":743812,"id":"0xaf88a4e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461455963,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":743842},
-{"pid":27443,"tid":27477,"ts":326461455993,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461459301.0,"frame_time_us":326461453478.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":743873},
-{"pid":27443,"tid":27477,"ts":326461456024,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461459301.0,"frame_time_us":326461453478.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":122,"tdur":122,"tts":743903},
-{"pid":27443,"tid":27477,"ts":326461456085,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461470144},"dur":30,"tdur":31,"tts":743964},
-{"pid":27443,"tid":27477,"ts":326461456115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":743995,"id":"0xaf88a4e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461457367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":744086,"id":"0xaf88a4e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461457367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":274,"tdur":214,"tts":744086},
-{"pid":27443,"tid":27477,"ts":326461457367,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":274,"tdur":183,"tts":744117},
-{"pid":27443,"tid":27477,"ts":326461457397,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":149},"tts":744117},
-{"pid":27443,"tid":27477,"ts":326461457580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":744239,"id":"0xaf88a6c5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461457580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":744269,"id":"0xaf88a4f9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461457611,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":744269},
-{"pid":27443,"tid":27477,"ts":326461470246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461470},"tts":744391,"id":"0xaf88a4e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461470277,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":744422},
-{"pid":27443,"tid":27477,"ts":326461470277,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":744422},
-{"pid":27443,"tid":27477,"ts":326461472505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":744483,"id":"0xaf88a4e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461472505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":744483},
-{"pid":27443,"tid":27477,"ts":326461472505,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":123,"tts":744513},
-{"pid":27443,"tid":27477,"ts":326461472535,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":744513,"id":"0x30000008c"},{"pid":27443,"tid":27477,"ts":326461472566,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":744544},
-{"pid":27443,"tid":27477,"ts":326461472566,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":744544,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461472596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":744575,"id":"0xaf88a6c7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461472627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":744605,"id":"0xaf88a4fbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461472658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":744636,"id":"0xaf88a4e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461472658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":744636},
-{"pid":27443,"tid":27477,"ts":326461472688,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461475982.0,"frame_time_us":326461470159.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":744666},
-{"pid":27443,"tid":27477,"ts":326461472719,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461475982.0,"frame_time_us":326461470159.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":744697},
-{"pid":27443,"tid":27477,"ts":326461472749,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461486825},"dur":31,"tdur":31,"tts":744727},
-{"pid":27443,"tid":27477,"ts":326461472780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":744758,"id":"0xaf88a4fcf182217a"},
-{"pid":27443,"tid":27459,"ts":326461441618,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7732519},
-{"pid":27443,"tid":27459,"ts":326461441649,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7732549},
-{"pid":27443,"tid":27459,"ts":326461441710,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7732611},
-{"pid":27443,"tid":27459,"ts":326461441740,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7732641},
-{"pid":27443,"tid":27459,"ts":326461441801,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":611,"tdur":610,"tts":7732702},
-{"pid":27443,"tid":27459,"ts":326461441954,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":397,"tts":7732885},
-{"pid":27443,"tid":27459,"ts":326461441985,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7732885},
-{"pid":27443,"tid":27459,"ts":326461442290,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":107,"frame":"0x78c60000"}},"tts":7733190,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461442290,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7733190},
-{"pid":27443,"tid":27459,"ts":326461442320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7733221,"id":"0xaf88a4e4f182217a"},
-{"pid":27443,"tid":27459,"ts":326461442351,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7733282},
-{"pid":27443,"tid":27459,"ts":326461442442,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":23,"line":232},"dur":61,"tdur":61,"tts":7733343},
-{"pid":27443,"tid":27459,"ts":326461442473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7733374,"id":"0xaf88ab70f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461442534,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":30,"tts":7733435},
-{"pid":27443,"tid":27459,"ts":326461442564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7733465,"id":"0xaf88ab71f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461442687,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7733618,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461442717,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7733618,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461442778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7733679,"id":"0xaf88a4e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461442778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":152,"tts":7733679},
-{"pid":27443,"tid":27459,"ts":326461442809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7733709,"id":"0xaf88a4e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461442839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7733740,"id":"0xaf88a6cdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461442870,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":31,"tts":7733770},
-{"pid":27443,"tid":27459,"ts":326461442900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7733801,"id":"0xaf88a6c8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461442961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7733862,"id":"0xaf88a4e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461442961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5402,"tdur":5310,"tts":7733862},
-{"pid":27443,"tid":27459,"ts":326461442992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7733892,"id":"0xaf88a6cff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461442992,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5371,"tdur":5280,"tts":7733892},
-{"pid":27443,"tid":27459,"ts":326461442992,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":148},"tts":7733892},
-{"pid":27443,"tid":27459,"ts":326461443022,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":7733923},
-{"pid":27443,"tid":27459,"ts":326461443053,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4395,"tdur":4395,"tts":7733953},
-{"pid":27443,"tid":27459,"ts":326461443083,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7733984},
-{"pid":27443,"tid":27459,"ts":326461443114,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":107,"frame":"0x78c60000"}},"dur":4334,"tdur":4334,"tts":7734014},
-{"pid":27443,"tid":27459,"ts":326461443175,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4273,"tdur":4272,"tts":7734076},
-{"pid":27443,"tid":27459,"ts":326461443205,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7734106},
-{"pid":27443,"tid":27459,"ts":326461447417,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7738318},
-{"pid":27443,"tid":27459,"ts":326461447478,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":153,"tdur":152,"tts":7738379},
-{"pid":27443,"tid":27459,"ts":326461447509,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":7738409},
-{"pid":27443,"tid":27459,"ts":326461447539,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":7738440},
-{"pid":27443,"tid":27459,"ts":326461447570,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7738470},
-{"pid":27443,"tid":27459,"ts":326461447600,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":30,"tts":7738501},
-{"pid":27443,"tid":27459,"ts":326461447631,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":148},"dur":458,"tdur":367,"tts":7738531},
-{"pid":27443,"tid":27459,"ts":326461447661,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":428,"tdur":336,"tts":7738562},
-{"pid":27443,"tid":27459,"ts":326461448089,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7738898,"id":"0x30000008a"},
-{"pid":27443,"tid":27459,"ts":326461448089,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":7738898,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461448119,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7738928,"id":"0xaf88a4e5f182217a"},
-{"pid":27443,"tid":27459,"ts":326461448180,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":5282},"tts":7739020,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461448211,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7739020,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461448302,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902026.0,"time":326461439940.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461431000.0},"INPUT_EVENT_LATENCY_RENDERING_SCHEDULED_MAIN_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461442351.0},"INPUT_EVENT_LATENCY_TERMINATED_COMMIT_NO_UPDATE_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461448241.0},"coordinates":[{"x":262.36712646484375,"y":729.7657470703125},{"x":460.0548095703125,"y":575.101318359375}],"trace_id":12884902026.0}},"tts":7739111,"id":"0x30000008a"},
-{"pid":27443,"tid":27459,"ts":326461448333,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":7739142,"id":"0x30000008a","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461448333,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7739142},
-{"pid":27443,"tid":27459,"ts":326461448394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7739203,"id":"0xaf88a4e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448424,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7739233},
-{"pid":27443,"tid":27459,"ts":326461448424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7739233,"id":"0xaf88a4fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448455,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7739264,"id":"0xaf88a6c9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461448455,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":7739264},
-{"pid":27443,"tid":27459,"ts":326461448455,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":126},"dur":61,"tdur":61,"tts":7739264},
-{"pid":27443,"tid":27459,"ts":326461448546,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461448},"tts":7739386,"id":"0xaf88a4c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448577,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7739386},
-{"pid":27443,"tid":27459,"ts":326461448607,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7739417,"id":"0xaf88a4e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448607,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7739417},
-{"pid":27443,"tid":27459,"ts":326461448638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7739447,"id":"0xaf88a626f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461448638,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":7739447},
-{"pid":27443,"tid":27459,"ts":326461448668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7739478,"id":"0xaf88a6caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461448699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7739508,"id":"0xaf88a4fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448730,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7739539,"id":"0xaf88a4fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7739569},
-{"pid":27443,"tid":27459,"ts":326461448760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7739569,"id":"0xaf88a4fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7739600,"id":"0xaf88a6c8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461448791,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":7739600},
-{"pid":27443,"tid":27459,"ts":326461448791,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7739600,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461448791,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":4.671},"dur":122,"tdur":92,"tts":7739630},
-{"pid":27443,"tid":27459,"ts":326461448821,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7739630},
-{"pid":27443,"tid":27459,"ts":326461448852,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7739661},
-{"pid":27443,"tid":27459,"ts":326461448882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7739691,"id":"0xaf88a6cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461448913,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7739722,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461448943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7739752,"id":"0xaf88a4fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461448974,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7739783},
-{"pid":27443,"tid":27459,"ts":326461455932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7739874,"id":"0xaf88a4fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461455963,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1953,"tdur":1709,"tts":7739905},
-{"pid":27443,"tid":27459,"ts":326461455993,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7739935,"id":"0xaf88a4f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461455993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7739935,"id":"0xaf88a6c4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461455993,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1893,"tdur":1618,"tts":7739935},
-{"pid":27443,"tid":27459,"ts":326461456085,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1770,"tdur":1526,"tts":7740027},
-{"pid":27443,"tid":27459,"ts":326461456115,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7740057,"id":"0x30000008b"},
-{"pid":27443,"tid":27459,"ts":326461456115,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1313,"tdur":1251,"tts":7740088},
-{"pid":27443,"tid":27459,"ts":326461456177,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1220,"tdur":1220,"tts":7740119},
-{"pid":27443,"tid":27459,"ts":326461456238,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7740180},
-{"pid":27443,"tid":27459,"ts":326461456268,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7740241},
-{"pid":27443,"tid":27459,"ts":326461456329,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7740271},
-{"pid":27443,"tid":27459,"ts":326461456360,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7740302},
-{"pid":27443,"tid":27459,"ts":326461456421,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7740363},
-{"pid":27443,"tid":27459,"ts":326461456451,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7740393},
-{"pid":27443,"tid":27459,"ts":326461456482,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7740424},
-{"pid":27443,"tid":27459,"ts":326461456512,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":885,"tdur":854,"tts":7740485},
-{"pid":27443,"tid":27459,"ts":326461456695,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":641,"tdur":641,"tts":7740637},
-{"pid":27443,"tid":27459,"ts":326461456726,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7740668},
-{"pid":27443,"tid":27459,"ts":326461457153,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":108,"frame":"0x78c60000"}},"tts":7741126,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461457184,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":122,"tdur":122,"tts":7741126},
-{"pid":27443,"tid":27459,"ts":326461457245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7741187,"id":"0xaf88a4e1f182217a"},
-{"pid":27443,"tid":27459,"ts":326461457336,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7741278},
-{"pid":27443,"tid":27459,"ts":326461457428,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":397,"tdur":122,"tts":7741370},
-{"pid":27443,"tid":27459,"ts":326461457458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7741400,"id":"0xaf88ab72f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461457458,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":7741400},
-{"pid":27443,"tid":27459,"ts":326461457977,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7741645,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461457977,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":7741645},
-{"pid":27443,"tid":27459,"ts":326461458252,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7741675,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461458282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7741706,"id":"0xaf88a4f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461458282,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":519,"tdur":0,"tts":7741706},
-{"pid":27443,"tid":27459,"ts":326461458801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7741736},
-{"pid":27443,"tid":27459,"ts":326461458801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7741736,"id":"0xaf88a4faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461458832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7741767,"id":"0xaf88a6cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461458832,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":30,"tts":7741767},
-{"pid":27443,"tid":27459,"ts":326461458832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7741797,"id":"0xaf88a6c6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461458984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7741828,"id":"0xaf88a4f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461459015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":15993,"tdur":13917,"tts":7741858},
-{"pid":27443,"tid":27459,"ts":326461459045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7741889,"id":"0xaf88a6c5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461459045,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":15932,"tdur":13856,"tts":7741889},
-{"pid":27443,"tid":27459,"ts":326461459045,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":149},"tts":7741919},
-{"pid":27443,"tid":27459,"ts":326461459076,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7741919},
-{"pid":27443,"tid":27459,"ts":326461459106,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9279,"tdur":9095,"tts":7741950},
-{"pid":27443,"tid":27459,"ts":326461459137,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":7741980},
-{"pid":27443,"tid":27459,"ts":326461459198,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":108,"frame":"0x78c60000"}},"dur":9156,"tdur":8973,"tts":7742041},
-{"pid":27443,"tid":27459,"ts":326461459290,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9064,"tdur":8881,"tts":7742133},
-{"pid":27443,"tid":27459,"ts":326461459290,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7742133},
-{"pid":27443,"tid":27459,"ts":326461463501,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7746345},
-{"pid":27443,"tid":27459,"ts":326461463593,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7746436},
-{"pid":27443,"tid":27459,"ts":326461463654,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7746497},
-{"pid":27443,"tid":27459,"ts":326461463654,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7746528},
-{"pid":27443,"tid":27459,"ts":326461463776,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7746619},
-{"pid":27443,"tid":27459,"ts":326461463959,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7746802},
-{"pid":27443,"tid":27459,"ts":326461464325,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7747169},
-{"pid":27443,"tid":27459,"ts":326461464448,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7747291},
-{"pid":27443,"tid":27459,"ts":326461464875,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7747749},
-{"pid":27443,"tid":27459,"ts":326461465241,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7748084},
-{"pid":27443,"tid":27459,"ts":326461465333,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7748176},
-{"pid":27443,"tid":27459,"ts":326461465333,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7748176},
-{"pid":27443,"tid":27459,"ts":326461465607,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7748451},
-{"pid":27443,"tid":27459,"ts":326461466370,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7749214},
-{"pid":27443,"tid":27459,"ts":326461468263,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7750984},
-{"pid":27443,"tid":27459,"ts":326461468263,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7750984},
-{"pid":27443,"tid":27459,"ts":326461468385,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4028,"tdur":3784,"tts":7751045},
-{"pid":27443,"tid":27459,"ts":326461468415,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7751075},
-{"pid":27443,"tid":27459,"ts":326461468446,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7751106},
-{"pid":27443,"tid":27459,"ts":326461468446,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7751136},
-{"pid":27443,"tid":27459,"ts":326461469117,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":4,"counters":true},"tts":7751747},
-{"pid":27443,"tid":27459,"ts":326461469148,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":4},"tts":7751777},
-{"pid":27443,"tid":27459,"ts":326461469148,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3265,"tdur":3021,"tts":7751808},
-{"pid":27443,"tid":27459,"ts":326461469178,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3022,"tdur":2808,"tts":7751808},
-{"pid":27443,"tid":27459,"ts":326461469209,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":488,"tdur":489,"tts":7751838},
-{"pid":27443,"tid":27459,"ts":326461469697,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":275,"tdur":274,"tts":7752327},
-{"pid":27443,"tid":27459,"ts":326461469972,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":183,"tdur":183,"tts":7752601},
-{"pid":27443,"tid":27459,"ts":326461470155,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":0,"tts":7752815},
-{"pid":27443,"tid":27459,"ts":326461470185,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1893,"tdur":1679,"tts":7752815},
-{"pid":27443,"tid":27459,"ts":326461472078,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":122,"tdur":122,"tts":7754494},
-{"pid":27443,"tid":27459,"ts":326461472200,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":30,"tdur":0,"tts":7754646},
-{"pid":27443,"tid":27459,"ts":326461472261,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7754677},
-{"pid":27443,"tid":27459,"ts":326461472291,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7754707},
-{"pid":27443,"tid":27459,"ts":326461472413,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":149},"dur":763,"tdur":733,"tts":7754829},
-{"pid":27443,"tid":27459,"ts":326461472444,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":702,"tdur":702,"tts":7754860},
-{"pid":27443,"tid":27459,"ts":326461472780,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":30,"tdur":0,"tts":7755196},
-{"pid":27443,"tid":27459,"ts":326461472810,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755226},
-{"pid":27443,"tid":27459,"ts":326461472810,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":31,"tdur":31,"tts":7755226},
-{"pid":27443,"tid":27459,"ts":326461472841,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755257},
-{"pid":27443,"tid":27459,"ts":326461472841,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":30,"tdur":30,"tts":7755257},
-{"pid":27443,"tid":27459,"ts":326461472871,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755287},
-{"pid":27443,"tid":27459,"ts":326461472871,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":31,"tdur":0,"tts":7755318},
-{"pid":27443,"tid":27459,"ts":326461472902,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":30,"tdur":0,"tts":7755318},
-{"pid":27443,"tid":27459,"ts":326461472932,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755348},
-{"pid":27443,"tid":27459,"ts":326461472932,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":31,"tdur":31,"tts":7755348},
-{"pid":27443,"tid":27459,"ts":326461472963,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755379},
-{"pid":27443,"tid":27459,"ts":326461472993,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755409},
-{"pid":27443,"tid":27459,"ts":326461472993,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":31,"tdur":0,"tts":7755440},
-{"pid":27443,"tid":27459,"ts":326461473024,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":30,"tdur":30,"tts":7755440},
-{"pid":27443,"tid":27459,"ts":326461473054,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755470},
-{"pid":27443,"tid":27459,"ts":326461473054,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":31,"tdur":31,"tts":7755470},
-{"pid":27443,"tid":27459,"ts":326461473085,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755501},
-{"pid":27443,"tid":27459,"ts":326461473115,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755531},
-{"pid":27443,"tid":27459,"ts":326461473115,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":31,"tdur":0,"tts":7755531},
-{"pid":27443,"tid":27459,"ts":326461473146,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":149},"dur":0,"tdur":0,"tts":7755562},
-{"pid":27443,"tid":27459,"ts":326461473176,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7755592,"id":"0x30000008b"},
-{"pid":27443,"tid":27459,"ts":326461473176,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1740,"tdur":92,"tts":7755592},
-{"pid":27443,"tid":27459,"ts":326461473207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7755623,"id":"0xaf88a4fdf182217a"},
-{"pid":27443,"tid":27459,"ts":326461474947,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7755714},
-{"pid":27443,"tid":27459,"ts":326461475038,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7755806,"id":"0xaf88a4faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461475038,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2014,"tdur":2014,"tts":7755806},
-{"pid":27443,"tid":27459,"ts":326461475069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7755837,"id":"0xaf88a4f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461475069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7755867,"id":"0xaf88a6c7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461475099,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1953,"tdur":1953,"tts":7755867},
-{"pid":27443,"tid":27459,"ts":326461475160,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1862,"tdur":1862,"tts":7755928},
-{"pid":27443,"tid":27459,"ts":326461475160,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7755928,"id":"0x30000008c"},
-{"pid":27443,"tid":27459,"ts":326461475191,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1739,"tdur":1739,"tts":7755959},
-{"pid":27443,"tid":27459,"ts":326461475221,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1709,"tdur":1679,"tts":7755989},
-{"pid":27443,"tid":27477,"ts":326461473268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":744880,"id":"0xaf88a4fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461473268,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2472,"tdur":2381,"tts":744910},
-{"pid":27443,"tid":27477,"ts":326461473298,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2442,"tdur":2381,"tts":744910},
-{"pid":27443,"tid":27477,"ts":326461473298,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":744910},
-{"pid":27443,"tid":27477,"ts":326461473298,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2442,"tdur":2381,"tts":744910},
-{"pid":27443,"tid":27477,"ts":326461473329,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2411,"tdur":2350,"tts":744941},
-{"pid":27443,"tid":27477,"ts":326461473329,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":744941},
-{"pid":27443,"tid":27477,"ts":326461473329,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":744941},
-{"pid":27443,"tid":27477,"ts":326461473359,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":744971,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461473390,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":745002},
-{"pid":27443,"tid":27477,"ts":326461473390,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":305,"tdur":305,"tts":745002},
-{"pid":27443,"tid":27477,"ts":326461473695,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":745307},
-{"pid":27443,"tid":27477,"ts":326461473726,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":824,"tdur":763,"tts":745338},
-{"pid":27443,"tid":27477,"ts":326461474611,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1099,"tdur":1098,"tts":746162},
-{"pid":27443,"tid":27477,"ts":326461474611,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":149},"dur":366,"tdur":366,"tts":746162},
-{"pid":27443,"tid":27477,"ts":326461474977,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":149},"dur":31,"tdur":30,"tts":746528},
-{"pid":27443,"tid":27477,"ts":326461475038,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":149},"tts":746619},
-{"pid":27443,"tid":27477,"ts":326461475313,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":746864},
-{"pid":27443,"tid":27477,"ts":326461475343,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":746894},
-{"pid":27443,"tid":27477,"ts":326461475343,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":367,"tdur":366,"tts":746894},
-{"pid":27443,"tid":27477,"ts":326461475374,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":746925},
-{"pid":27443,"tid":27477,"ts":326461475526,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":747077},
-{"pid":27443,"tid":27477,"ts":326461475526,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":747077},
-{"pid":27443,"tid":27477,"ts":326461475557,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":747108},
-{"pid":27443,"tid":27477,"ts":326461475557,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":747108},
-{"pid":27443,"tid":27477,"ts":326461475557,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":747108,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461475618,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":747169},
-{"pid":27443,"tid":27477,"ts":326461475618,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":747169},
-{"pid":27443,"tid":27477,"ts":326461475679,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":747230,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461475679,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":214}},"tts":747260,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461475710,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":747260,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461475832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":747382,"id":"0xaf88a4fef182217a"},
-{"pid":27443,"tid":27477,"ts":326461475832,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":747382},
-{"pid":27443,"tid":27477,"ts":326461475832,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":747382},
-{"pid":27443,"tid":27477,"ts":326461475862,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":747413,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461475862,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":747413},
-{"pid":27443,"tid":27477,"ts":326461475893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":747443,"id":"0xaf88a4f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461475923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":747474,"id":"0xaf88a4fff182217a"},
-{"pid":27443,"tid":27477,"ts":326461475923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":747474},
-{"pid":27443,"tid":27477,"ts":326461475923,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":747474},
-{"pid":27443,"tid":27477,"ts":326461475954,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":747504,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461475954,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":747504},
-{"pid":27443,"tid":27477,"ts":326461475954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":747504,"id":"0xaf88a4faf182217a"},
-{"pid":27443,"tid":27477,"ts":326461475984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":747535,"id":"0xaf88a4f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461475984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":747535},
-{"pid":27443,"tid":27477,"ts":326461476015,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":747566},
-{"pid":27443,"tid":27477,"ts":326461476015,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":747566,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461476015,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":747566},
-{"pid":27443,"tid":27477,"ts":326461476045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":747596,"id":"0xaf88a4f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461476045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1984,"tdur":1923,"tts":747596},
-{"pid":27443,"tid":27477,"ts":326461476045,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1984,"tdur":1923,"tts":747596},
-{"pid":27443,"tid":27477,"ts":326461476076,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":747627},
-{"pid":27443,"tid":27477,"ts":326461476076,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":747627},
-{"pid":27443,"tid":27477,"ts":326461476076,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":747627},
-{"pid":27443,"tid":27477,"ts":326461476106,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":747657},
-{"pid":27443,"tid":27477,"ts":326461476198,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1831,"tdur":1770,"tts":747749},
-{"pid":27443,"tid":27477,"ts":326461476198,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1831,"tdur":1770,"tts":747749},
-{"pid":27443,"tid":27477,"ts":326461476228,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1740,"tdur":1679,"tts":747779},
-{"pid":27443,"tid":27477,"ts":326461476228,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":747779,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461476259,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":366,"tdur":305,"tts":747810},
-{"pid":27443,"tid":27477,"ts":326461476625,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":748115},
-{"pid":27443,"tid":27477,"ts":326461476686,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":748206},
-{"pid":27443,"tid":27477,"ts":326461476717,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":748206},
-{"pid":27443,"tid":27477,"ts":326461476747,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":748237},
-{"pid":27443,"tid":27459,"ts":326461475282,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7756050},
-{"pid":27443,"tid":27459,"ts":326461475343,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7756111},
-{"pid":27443,"tid":27459,"ts":326461475374,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7756142},
-{"pid":27443,"tid":27459,"ts":326461475404,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7756172},
-{"pid":27443,"tid":27459,"ts":326461475404,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7756203},
-{"pid":27443,"tid":27459,"ts":326461475435,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7756203},
-{"pid":27443,"tid":27459,"ts":326461475465,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7756233},
-{"pid":27443,"tid":27459,"ts":326461475526,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1374,"tdur":1374,"tts":7756294},
-{"pid":27443,"tid":27459,"ts":326461475649,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7756416},
-{"pid":27443,"tid":27459,"ts":326461476289,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7757057},
-{"pid":27443,"tid":27459,"ts":326461476473,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":396,"tdur":366,"tts":7757271},
-{"pid":27443,"tid":27459,"ts":326461476503,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7757271},
-{"pid":27443,"tid":27459,"ts":326461476778,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":109,"frame":"0x78c60000"}},"tts":7757576,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461476808,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":7757576},
-{"pid":27443,"tid":27459,"ts":326461476839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7757607,"id":"0xaf88a4fbf182217a"},
-{"pid":27443,"tid":27459,"ts":326461476869,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7757637},
-{"pid":27443,"tid":27459,"ts":326461476930,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":7757729},
-{"pid":27443,"tid":27459,"ts":326461476961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7757729,"id":"0xaf88ab73f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461477083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7757851,"id":"0xaf88a4fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461477083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7757851},
-{"pid":27443,"tid":27459,"ts":326461477144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7757912,"id":"0xaf88a4f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461477144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7757912},
-{"pid":27443,"tid":27459,"ts":326461478395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7758034,"id":"0xaf88a4f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461478426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":16817,"tdur":9980,"tts":7758034},
-{"pid":27443,"tid":27459,"ts":326461478426,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7758034},
-{"pid":27443,"tid":27459,"ts":326461478517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7758034,"id":"0xaf88a4f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461478548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7758034,"id":"0xaf88a6c0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461478578,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":16634,"tdur":9919,"tts":7758065},
-{"pid":27443,"tid":27459,"ts":326461478578,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":150},"tts":7758065},
-{"pid":27443,"tid":27459,"ts":326461478578,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7758065},
-{"pid":27443,"tid":27459,"ts":326461478640,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6073,"tdur":5829,"tts":7758126},
-{"pid":27443,"tid":27459,"ts":326461478670,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7758156},
-{"pid":27443,"tid":27459,"ts":326461478701,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":109,"frame":"0x78c60000"}},"dur":6012,"tdur":5737,"tts":7758187},
-{"pid":27443,"tid":27459,"ts":326461478792,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5891,"tdur":5646,"tts":7758278},
-{"pid":27443,"tid":27459,"ts":326461478792,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7758278},
-{"pid":27443,"tid":27459,"ts":326461484652,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7763924},
-{"pid":27443,"tid":27459,"ts":326461484713,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3083,"tdur":3083,"tts":7763955},
-{"pid":27443,"tid":27459,"ts":326461484744,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7764016},
-{"pid":27443,"tid":27459,"ts":326461484774,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7764016},
-{"pid":27443,"tid":27459,"ts":326461484805,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7764047},
-{"pid":27443,"tid":27459,"ts":326461485201,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7764443},
-{"pid":27443,"tid":27459,"ts":326461485232,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7764474},
-{"pid":27443,"tid":27459,"ts":326461485262,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2503,"tdur":2503,"tts":7764504},
-{"pid":27443,"tid":27459,"ts":326461485293,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2319,"tdur":2319,"tts":7764535},
-{"pid":27443,"tid":27459,"ts":326461485293,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":488,"tdur":488,"tts":7764535},
-{"pid":27443,"tid":27459,"ts":326461485781,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":213,"tts":7765054},
-{"pid":27443,"tid":27459,"ts":326461486025,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":123,"tdur":92,"tts":7765267},
-{"pid":27443,"tid":27459,"ts":326461486148,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7765389},
-{"pid":27443,"tid":27459,"ts":326461486148,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1434,"tdur":1435,"tts":7765389},
-{"pid":27443,"tid":27459,"ts":326461487612,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7766854},
-{"pid":27443,"tid":27459,"ts":326461487643,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7766885},
-{"pid":27443,"tid":27459,"ts":326461487796,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":150},"dur":1190,"tdur":640,"tts":7767038},
-{"pid":27443,"tid":27459,"ts":326461487796,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1190,"tdur":640,"tts":7767038},
-{"pid":27443,"tid":27459,"ts":326461488498,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":30,"tdur":0,"tts":7767373},
-{"pid":27443,"tid":27459,"ts":326461488559,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":61,"tdur":0,"tts":7767404},
-{"pid":27443,"tid":27459,"ts":326461488650,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":92,"tdur":31,"tts":7767434},
-{"pid":27443,"tid":27459,"ts":326461488742,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":30,"tdur":0,"tts":7767465},
-{"pid":27443,"tid":27459,"ts":326461488772,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":31,"tdur":30,"tts":7767465},
-{"pid":27443,"tid":27459,"ts":326461488803,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":30,"tdur":31,"tts":7767495},
-{"pid":27443,"tid":27459,"ts":326461488833,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":31,"tdur":30,"tts":7767526},
-{"pid":27443,"tid":27459,"ts":326461488864,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":30,"tdur":31,"tts":7767556},
-{"pid":27443,"tid":27459,"ts":326461488894,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":0,"tdur":0,"tts":7767587},
-{"pid":27443,"tid":27459,"ts":326461488894,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":31,"tdur":30,"tts":7767587},
-{"pid":27443,"tid":27459,"ts":326461488925,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":30,"tdur":31,"tts":7767617},
-{"pid":27443,"tid":27471,"ts":326461475771,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":461681},
-{"pid":27443,"tid":27471,"ts":326461475771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":461681,"id":"0xaf88a4f8f182217a"},
-{"pid":27443,"tid":27469,"ts":326461492252,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":488814},
-{"pid":27443,"tid":27469,"ts":326461492282,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":488844},
-{"pid":27443,"tid":27469,"ts":326461492313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":488875,"id":"0xaf88a4f0f182217a"},
-{"pid":27443,"tid":27469,"ts":326461492343,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":488905},
-{"pid":27443,"tid":27469,"ts":326461492343,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":488905},
-{"pid":27443,"tid":27469,"ts":326461492343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":488936,"id":"0xaf88a4f1f182217a"},
-{"pid":27443,"tid":27469,"ts":326461492374,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1373,"tdur":1373,"tts":488936},
-{"pid":27443,"tid":27469,"ts":326461492374,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1343,"tdur":1313,"tts":488966},
-{"pid":27443,"tid":27469,"ts":326461492435,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe99f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":488997},
-{"pid":27443,"tid":27469,"ts":326461492465,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":92,"tdur":92,"tts":489027},
-{"pid":27443,"tid":27469,"ts":326461492557,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":489150},
-{"pid":27443,"tid":27469,"ts":326461492618,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe99f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":489180},
-{"pid":27443,"tid":27469,"ts":326461492679,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":489241,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461493503,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1404,"tdur":1404,"tts":461742},
-{"pid":27443,"tid":27471,"ts":326461493503,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1404,"tdur":1373,"tts":461773},
-{"pid":27443,"tid":27471,"ts":326461493533,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe9478"},"tileResolution":"HIGH_RESOLUTION"}},"tts":461773},
-{"pid":27443,"tid":27471,"ts":326461493564,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":461803},
-{"pid":27443,"tid":27471,"ts":326461493625,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":461864},
-{"pid":27443,"tid":27471,"ts":326461493656,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe9478"},"tileResolution":"HIGH_RESOLUTION"}},"tts":461895},
-{"pid":27443,"tid":27471,"ts":326461493686,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":461925,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461493686,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":490279},
-{"pid":27443,"tid":27469,"ts":326461493747,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1190,"tdur":1191,"tts":490309},
-{"pid":27443,"tid":27469,"ts":326461493778,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1159,"tdur":1160,"tts":490340},
-{"pid":27443,"tid":27469,"ts":326461493808,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":143,"tileId":{"id_ref":"0x799b70b0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":490370},
-{"pid":27443,"tid":27469,"ts":326461493808,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":490370},
-{"pid":27443,"tid":27469,"ts":326461493839,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":490431},
-{"pid":27443,"tid":27469,"ts":326461493869,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":143,"tileId":{"id_ref":"0x799b70b0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":490431},
-{"pid":27443,"tid":27469,"ts":326461493900,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":490462,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461494876,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":463146},
-{"pid":27443,"tid":27471,"ts":326461494907,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3601,"tdur":1129,"tts":463146},
-{"pid":27443,"tid":27469,"ts":326461494907,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":491469},
-{"pid":27443,"tid":27471,"ts":326461494937,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":3541,"tdur":1068,"tts":463177},
-{"pid":27443,"tid":27469,"ts":326461494937,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1252,"tdur":1007,"tts":491500},
-{"pid":27443,"tid":27469,"ts":326461494968,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1221,"tdur":977,"tts":491530},
-{"pid":27443,"tid":27471,"ts":326461494968,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e0b1f08"},"tileResolution":"HIGH_RESOLUTION"}},"tts":463207},
-{"pid":27443,"tid":27471,"ts":326461494968,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":463238},
-{"pid":27443,"tid":27469,"ts":326461494998,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":143,"tileId":{"id_ref":"0x79770880"},"tileResolution":"HIGH_RESOLUTION"}},"tts":491561},
-{"pid":27443,"tid":27469,"ts":326461494998,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":491561},
-{"pid":27443,"tid":27469,"ts":326461495059,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":491622},
-{"pid":27443,"tid":27471,"ts":326461495059,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":463299},
-{"pid":27443,"tid":27469,"ts":326461495059,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":143,"tileId":{"id_ref":"0x79770880"},"tileResolution":"HIGH_RESOLUTION"}},"tts":491622},
-{"pid":27443,"tid":27471,"ts":326461495059,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e0b1f08"},"tileResolution":"HIGH_RESOLUTION"}},"tts":463299},
-{"pid":27443,"tid":27469,"ts":326461495090,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":491652,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461496158,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":492476},
-{"pid":27443,"tid":27469,"ts":326461496189,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":885,"tdur":885,"tts":492507},
-{"pid":27443,"tid":27469,"ts":326461496219,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":855,"tdur":855,"tts":492537},
-{"pid":27443,"tid":27469,"ts":326461496219,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e441aa0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":492537},
-{"pid":27443,"tid":27469,"ts":326461496250,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":492568},
-{"pid":27443,"tid":27469,"ts":326461496311,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":492629},
-{"pid":27443,"tid":27469,"ts":326461496311,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e441aa0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":492629},
-{"pid":27443,"tid":27469,"ts":326461496341,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":492659,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461497074,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":493392},
-{"pid":27443,"tid":27469,"ts":326461497074,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":824,"tts":493392},
-{"pid":27443,"tid":27469,"ts":326461497104,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":493422},
-{"pid":27443,"tid":27469,"ts":326461497104,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e428668"},"tileResolution":"HIGH_RESOLUTION"}},"tts":493422},
-{"pid":27443,"tid":27469,"ts":326461497135,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":493453},
-{"pid":27443,"tid":27469,"ts":326461497165,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":493483},
-{"pid":27443,"tid":27469,"ts":326461497165,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e428668"},"tileResolution":"HIGH_RESOLUTION"}},"tts":493514},
-{"pid":27443,"tid":27469,"ts":326461497196,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":493514,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461497623,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":463421,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461497867,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":494216},
-{"pid":27443,"tid":27469,"ts":326461497898,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":494216},
-{"pid":27443,"tid":27477,"ts":326461476778,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748268},
-{"pid":27443,"tid":27477,"ts":326461476808,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748298},
-{"pid":27443,"tid":27477,"ts":326461476808,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":748298},
-{"pid":27443,"tid":27477,"ts":326461476839,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748329},
-{"pid":27443,"tid":27477,"ts":326461476869,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748359},
-{"pid":27443,"tid":27477,"ts":326461476869,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":748359},
-{"pid":27443,"tid":27477,"ts":326461476900,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748390},
-{"pid":27443,"tid":27477,"ts":326461476900,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":748420},
-{"pid":27443,"tid":27477,"ts":326461476930,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748420},
-{"pid":27443,"tid":27477,"ts":326461476961,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748451},
-{"pid":27443,"tid":27477,"ts":326461476961,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":748451},
-{"pid":27443,"tid":27477,"ts":326461476991,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":748481},
-{"pid":27443,"tid":27477,"ts":326461477022,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748512},
-{"pid":27443,"tid":27477,"ts":326461477022,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":748542},
-{"pid":27443,"tid":27477,"ts":326461477052,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748542},
-{"pid":27443,"tid":27477,"ts":326461477083,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748573},
-{"pid":27443,"tid":27477,"ts":326461477083,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":748573},
-{"pid":27443,"tid":27477,"ts":326461477113,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":748603},
-{"pid":27443,"tid":27477,"ts":326461477144,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748634},
-{"pid":27443,"tid":27477,"ts":326461477144,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":748634},
-{"pid":27443,"tid":27477,"ts":326461477175,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748664},
-{"pid":27443,"tid":27477,"ts":326461477205,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748695},
-{"pid":27443,"tid":27477,"ts":326461477205,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":748695},
-{"pid":27443,"tid":27477,"ts":326461477236,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748725},
-{"pid":27443,"tid":27477,"ts":326461477236,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":748756},
-{"pid":27443,"tid":27477,"ts":326461477266,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":748756},
-{"pid":27443,"tid":27477,"ts":326461477297,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":748786},
-{"pid":27443,"tid":27477,"ts":326461477327,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":748817},
-{"pid":27443,"tid":27477,"ts":326461477358,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":748847},
-{"pid":27443,"tid":27477,"ts":326461477388,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":748878},
-{"pid":27443,"tid":27477,"ts":326461477419,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748908},
-{"pid":27443,"tid":27477,"ts":326461477449,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748939},
-{"pid":27443,"tid":27477,"ts":326461477480,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":748969},
-{"pid":27443,"tid":27477,"ts":326461477480,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":748969},
-{"pid":27443,"tid":27477,"ts":326461477510,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":749000},
-{"pid":27443,"tid":27477,"ts":326461477541,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":749031},
-{"pid":27443,"tid":27477,"ts":326461477571,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749061},
-{"pid":27443,"tid":27477,"ts":326461477602,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749092},
-{"pid":27443,"tid":27477,"ts":326461477602,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":749092},
-{"pid":27443,"tid":27477,"ts":326461477632,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749122},
-{"pid":27443,"tid":27477,"ts":326461477663,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749153},
-{"pid":27443,"tid":27477,"ts":326461477724,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":749214},
-{"pid":27443,"tid":27477,"ts":326461477754,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749244},
-{"pid":27443,"tid":27477,"ts":326461477754,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":749244},
-{"pid":27443,"tid":27477,"ts":326461477785,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":749275},
-{"pid":27443,"tid":27477,"ts":326461477815,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749305},
-{"pid":27443,"tid":27477,"ts":326461477815,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":749305},
-{"pid":27443,"tid":27477,"ts":326461477846,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":749336},
-{"pid":27443,"tid":27477,"ts":326461477876,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":749366},
-{"pid":27443,"tid":27477,"ts":326461477938,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":749427},
-{"pid":27443,"tid":27477,"ts":326461477938,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":749427},
-{"pid":27443,"tid":27477,"ts":326461477938,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":749427},
-{"pid":27443,"tid":27477,"ts":326461477999,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":749488},
-{"pid":27443,"tid":27477,"ts":326461477999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":749488,"id":"0xaf88a4f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461478029,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":749519,"id":"0xaf88a4faf182217a"},
-{"pid":27443,"tid":27477,"ts":326461478060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":749549},
-{"pid":27443,"tid":27477,"ts":326461478060,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":749549},
-{"pid":27443,"tid":27477,"ts":326461478060,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":749549},
-{"pid":27443,"tid":27477,"ts":326461478060,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":749549},
-{"pid":27443,"tid":27477,"ts":326461478090,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":749580},
-{"pid":27443,"tid":27477,"ts":326461478090,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":749580},
-{"pid":27443,"tid":27477,"ts":326461478151,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":749641},
-{"pid":27443,"tid":27477,"ts":326461478151,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":749671},
-{"pid":27443,"tid":27477,"ts":326461478182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":749671,"id":"0xaf88a4fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461478212,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":214,"tdur":153,"tts":749702},
-{"pid":27443,"tid":27477,"ts":326461478212,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":183,"tdur":153,"tts":749702},
-{"pid":27443,"tid":27477,"ts":326461478243,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":150},"tts":749732},
-{"pid":27443,"tid":27477,"ts":326461478273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":749763,"id":"0xaf88a6c0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461478304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":749794,"id":"0xaf88a4f5f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461478334,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":749824},
-{"pid":27443,"tid":27477,"ts":326461478426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":749885,"id":"0xaf88a4f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461478487,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2350,"tdur":1861,"tts":749916},
-{"pid":27443,"tid":27477,"ts":326461478517,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2289,"tdur":1831,"tts":749916},
-{"pid":27443,"tid":27477,"ts":326461478517,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":61,"tdur":31,"tts":749946},
-{"pid":27443,"tid":27477,"ts":326461478578,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2228,"tdur":1770,"tts":749977},
-{"pid":27443,"tid":27477,"ts":326461478578,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":149},"dur":1130,"tdur":1129,"tts":749977},
-{"pid":27443,"tid":27477,"ts":326461478609,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":149},"dur":336,"tdur":336,"tts":750007},
-{"pid":27443,"tid":27477,"ts":326461478945,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":149},"dur":61,"tdur":61,"tts":750343},
-{"pid":27443,"tid":27477,"ts":326461479006,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":149},"tts":750404},
-{"pid":27443,"tid":27477,"ts":326461479219,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":750618},
-{"pid":27443,"tid":27477,"ts":326461479250,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":750648},
-{"pid":27443,"tid":27477,"ts":326461479250,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":750648},
-{"pid":27443,"tid":27477,"ts":326461479250,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":750648},
-{"pid":27443,"tid":27477,"ts":326461479280,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":750679,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461479341,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":750740},
-{"pid":27443,"tid":27477,"ts":326461479708,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":751106},
-{"pid":27443,"tid":27477,"ts":326461479708,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":793,"tdur":336,"tts":751106},
-{"pid":27443,"tid":27477,"ts":326461479738,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":751136},
-{"pid":27443,"tid":27477,"ts":326461479738,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":245,"tts":751136},
-{"pid":27443,"tid":27477,"ts":326461479830,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15675},"dur":91,"tdur":92,"tts":751228},
-{"pid":27443,"tid":27477,"ts":326461479860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":751258,"id":"0xaf88ab0cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461479921,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":751320,"id":"0xaf88ab0df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461480501,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":751442,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461480532,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":751472,"id":"0x30000008b"},
-{"pid":27443,"tid":27477,"ts":326461480532,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":214,"tts":751472},
-{"pid":27443,"tid":27477,"ts":326461480684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":751625,"id":"0xaf88ab0ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461480776,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":751716,"id":"0xaf88a6c1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461480776,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":751716,"id":"0xaf88a4f7f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461483706,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":751808,"id":"0xaf88a4f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461483706,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":751808},
-{"pid":27443,"tid":27477,"ts":326461483736,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":751869},
-{"pid":27443,"tid":27477,"ts":326461483767,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":751869,"id":"0xaf88a6c2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461486941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461486},"tts":751991,"id":"0xaf88a4fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461486941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":751991},
-{"pid":27443,"tid":27477,"ts":326461489596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":752113,"id":"0xaf88a4f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461489627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2289,"tdur":2289,"tts":752144},
-{"pid":27443,"tid":27477,"ts":326461489627,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2258,"tdur":2258,"tts":752144},
-{"pid":27443,"tid":27477,"ts":326461489657,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":752174},
-{"pid":27443,"tid":27477,"ts":326461489657,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2228,"tdur":2228,"tts":752174},
-{"pid":27443,"tid":27477,"ts":326461489657,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2198,"tdur":2198,"tts":752174},
-{"pid":27443,"tid":27477,"ts":326461489688,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":752205},
-{"pid":27443,"tid":27477,"ts":326461489688,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":752205},
-{"pid":27443,"tid":27477,"ts":326461489688,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":752235,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461489718,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":752235},
-{"pid":27443,"tid":27477,"ts":326461489749,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":91,"tdur":91,"tts":752266},
-{"pid":27443,"tid":27477,"ts":326461489871,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1953,"tdur":1923,"tts":752418},
-{"pid":27443,"tid":27477,"ts":326461489902,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":150},"dur":396,"tdur":397,"tts":752418},
-{"pid":27443,"tid":27477,"ts":326461490298,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":150},"dur":61,"tdur":61,"tts":752815},
-{"pid":27443,"tid":27477,"ts":326461490390,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":150},"tts":752907},
-{"pid":27443,"tid":27477,"ts":326461490726,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":753242},
-{"pid":27443,"tid":27477,"ts":326461490756,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1068,"tdur":1068,"tts":753273},
-{"pid":27443,"tid":27477,"ts":326461490756,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":366,"tdur":366,"tts":753273},
-{"pid":27443,"tid":27477,"ts":326461491122,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":753639},
-{"pid":27443,"tid":27477,"ts":326461491214,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":753731},
-{"pid":27443,"tid":27477,"ts":326461491214,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":15},"dur":519,"tdur":518,"tts":753731},
-{"pid":27443,"tid":27477,"ts":326461491519,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":153,"tts":754066},
-{"pid":27443,"tid":27477,"ts":326461491550,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":754066,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461491580,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":754097},
-{"pid":27443,"tid":27466,"ts":326461480074,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388402,"id":"0xccc59806"},
-{"pid":27443,"tid":27466,"ts":326461480288,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":388524},
-{"pid":27443,"tid":27466,"ts":326461480318,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":388554},
-{"pid":27443,"tid":27466,"ts":326461480318,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388554,"id":"0xc4c1cd0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461480745,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":388646,"id":"0xaf88ab0ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461480776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":388676},
-{"pid":27443,"tid":27466,"ts":326461480776,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388676,"id":"0xccc59902"},
-{"pid":27443,"tid":27466,"ts":326461483584,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":388798},
-{"pid":27443,"tid":27466,"ts":326461483614,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":388829},
-{"pid":27443,"tid":27466,"ts":326461483614,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388829,"id":"0xba463902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461483645,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":388860,"id":"0xaf88a4f5f182217a"},
-{"pid":27443,"tid":27466,"ts":326461489657,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":388951},
-{"pid":27443,"tid":27466,"ts":326461489688,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":388982},
-{"pid":27443,"tid":27466,"ts":326461489688,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":388982,"id":"0xba463b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461489718,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":389043},
-{"pid":27443,"tid":27466,"ts":326461489749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":389073,"id":"0xaf88a4f7f182217a"},
-{"pid":27443,"tid":27466,"ts":326461492618,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":214,"tts":389134},
-{"pid":27443,"tid":27466,"ts":326461492679,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":152,"tdur":153,"tts":389195},
-{"pid":27443,"tid":27466,"ts":326461492709,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":389226,"id":"0xba463c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461492770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":389317,"id":"0xaf88a4f2f182217a"},
-{"pid":27443,"tid":27466,"ts":326461497104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":389500,"id":"0xaf88ab0ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461497135,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":389531},
-{"pid":27443,"tid":27466,"ts":326461497135,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":389531,"id":"0xccc59b02"},
-{"pid":27443,"tid":27466,"ts":326461500614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":389714,"id":"0xaf88ab08f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461500614,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":389714},
-{"pid":27443,"tid":27466,"ts":326461500614,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":389745,"id":"0xccc59c02"},
-{"pid":27443,"tid":27466,"ts":326461500706,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":389806,"id":"0xaf88ab09f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461500706,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":389806},
-{"pid":27443,"tid":27466,"ts":326461500706,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":389806,"id":"0xccc59d06"},
-{"pid":27443,"tid":27466,"ts":326461500919,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":389897},
-{"pid":27443,"tid":27466,"ts":326461500950,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":389928},
-{"pid":27443,"tid":27466,"ts":326461500950,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":389928,"id":"0xc4c1d20a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461501621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":390050,"id":"0xaf88ab0af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461501652,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":390080},
-{"pid":27443,"tid":27466,"ts":326461501652,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":390080,"id":"0xccc59e02"},
-{"pid":27443,"tid":27466,"ts":326461512639,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":244,"tts":390233},
-{"pid":27443,"tid":27466,"ts":326461512700,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":153,"tdur":153,"tts":390294},
-{"pid":27443,"tid":27466,"ts":326461512731,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":390325,"id":"0xba463f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461512792,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":390386,"id":"0xaf88a48bf182217a"},
-{"pid":27443,"tid":27466,"ts":326461516882,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":244,"tts":390569},
-{"pid":27443,"tid":27466,"ts":326461516912,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":214,"tdur":183,"tts":390630},
-{"pid":27443,"tid":27466,"ts":326461516943,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":390630,"id":"0xba464102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461517004,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":91,"tdur":91,"tts":390691},
-{"pid":27443,"tid":27466,"ts":326461517034,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":390752,"id":"0xaf88a484f182217a"},
-{"pid":27443,"tid":27466,"ts":326461517980,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":390935},
-{"pid":27443,"tid":27466,"ts":326461518011,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":152,"tdur":153,"tts":390965},
-{"pid":27443,"tid":27466,"ts":326461518041,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":390996,"id":"0xba464202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461518102,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":391057,"id":"0xaf88a485f182217a"},
-{"pid":27443,"tid":27466,"ts":326461526831,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":391149},
-{"pid":27443,"tid":27466,"ts":326461526862,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":391179},
-{"pid":27443,"tid":27466,"ts":326461526862,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":391179,"id":"0xba464302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461526923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":391240,"id":"0xaf88a49df182217a"},
-{"pid":27443,"tid":27466,"ts":326461527625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":391332,"id":"0xaf88ab0bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461527655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":391362},
-{"pid":27443,"tid":27466,"ts":326461527655,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":391362,"id":"0xccc5a002"},
-{"pid":27443,"tid":27466,"ts":326461530677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":391484,"id":"0xaf88ab04f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461530677,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":391484},
-{"pid":27443,"tid":27466,"ts":326461530677,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":391484,"id":"0xccc5a102"},
-{"pid":27443,"tid":27466,"ts":326461532813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":391698,"id":"0xaf88ab05f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461532813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":391698},
-{"pid":27443,"tid":27466,"ts":326461532813,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":391698,"id":"0xccc5a202"},
-{"pid":27443,"tid":27466,"ts":326461532874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":391759,"id":"0xaf88ab06f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461532905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":391789},
-{"pid":27443,"tid":27466,"ts":326461532905,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":391789,"id":"0xccc5a306"},
-{"pid":27443,"tid":27459,"ts":326461488955,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":150},"dur":31,"tdur":30,"tts":7767648},
-{"pid":27443,"tid":27459,"ts":326461488986,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7767709,"id":"0x30000008c"},
-{"pid":27443,"tid":27459,"ts":326461489016,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":5799,"tdur":122,"tts":7767709},
-{"pid":27443,"tid":27459,"ts":326461489047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7767739,"id":"0xaf88a4f6f182217a"},
-{"pid":27443,"tid":27459,"ts":326461495182,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7767953},{"pid":27443,"tid":27459,"ts":326461495273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7768045,"id":"0xaf88a4f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461495304,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":61,"tts":7768075},
-{"pid":27443,"tid":27459,"ts":326461495304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7768075,"id":"0xaf88a4f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461495304,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":7768075},
-{"pid":27443,"tid":27459,"ts":326461495395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7768106,"id":"0xaf88a6c1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461495395,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":7768106},
-{"pid":27443,"tid":27459,"ts":326461495426,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7768136},
-{"pid":27443,"tid":27459,"ts":326461495456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7768167,"id":"0xaf88a4f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461495487,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7768197},
-{"pid":27443,"tid":27459,"ts":326461495487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7768197,"id":"0xaf88a6c2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461495487,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":7768197},
-{"pid":27443,"tid":27459,"ts":326461495517,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7768228},
-{"pid":27443,"tid":27459,"ts":326461495578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7768289,"id":"0xaf88a4f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461495578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1923,"tdur":1343,"tts":7768289},
-{"pid":27443,"tid":27459,"ts":326461495578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7768289,"id":"0xaf88a4f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461495609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7768319,"id":"0xaf88a6c3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461495609,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1862,"tdur":1282,"tts":7768319},
-{"pid":27443,"tid":27459,"ts":326461495670,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1801,"tdur":1221,"tts":7768380},
-{"pid":27443,"tid":27459,"ts":326461495700,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7768411,"id":"0x30000008d"},
-{"pid":27443,"tid":27459,"ts":326461495731,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1221,"tdur":1069,"tts":7768441},
-{"pid":27443,"tid":27459,"ts":326461495761,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1191,"tdur":1038,"tts":7768472},
-{"pid":27443,"tid":27459,"ts":326461495822,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7768533},
-{"pid":27443,"tid":27459,"ts":326461495884,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7768625},
-{"pid":27443,"tid":27459,"ts":326461495945,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7768655},
-{"pid":27443,"tid":27459,"ts":326461495975,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7768686},
-{"pid":27443,"tid":27459,"ts":326461496006,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7768716},
-{"pid":27443,"tid":27459,"ts":326461496036,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7768777},
-{"pid":27443,"tid":27459,"ts":326461496097,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7768808},
-{"pid":27443,"tid":27459,"ts":326461496128,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":824,"tdur":641,"tts":7768838},
-{"pid":27443,"tid":27459,"ts":326461496280,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":611,"tdur":428,"tts":7769021},
-{"pid":27443,"tid":27459,"ts":326461496311,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7769021},
-{"pid":27443,"tid":27459,"ts":326461496799,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":110,"frame":"0x78c60000"}},"tts":7769357,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461496830,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7769388},
-{"pid":27443,"tid":27459,"ts":326461496830,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7769388,"id":"0xaf88a48ef182217a"},
-{"pid":27443,"tid":27459,"ts":326461496860,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7769449},
-{"pid":27443,"tid":27459,"ts":326461496982,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":458,"tdur":31,"tts":7769540},
-{"pid":27443,"tid":27459,"ts":326461497013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7769571,"id":"0xaf88ab0ff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461497532,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7769662,"id":"0xaf88a4f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461497532,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7769662},
-{"pid":27443,"tid":27459,"ts":326461498173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7769754,"id":"0xaf88a4f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461498203,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":28476,"tdur":12300,"tts":7769784},
-{"pid":27443,"tid":27459,"ts":326461498234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7769815,"id":"0xaf88a4f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461498234,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7769815,"id":"0xaf88a6dcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461498234,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":28414,"tdur":12239,"tts":7769815},
-{"pid":27443,"tid":27459,"ts":326461498264,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":151},"tts":7769845},
-{"pid":27443,"tid":27459,"ts":326461498264,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7769845},
-{"pid":27443,"tid":27459,"ts":326461498386,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":9217,"tdur":6989,"tts":7769937},
-{"pid":27443,"tid":27459,"ts":326461498417,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":7769967},
-{"pid":27443,"tid":27459,"ts":326461498478,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":110,"frame":"0x78c60000"}},"dur":9125,"tdur":6898,"tts":7770028},
-{"pid":27443,"tid":27459,"ts":326461498569,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9004,"tdur":6776,"tts":7770120},
-{"pid":27443,"tid":27459,"ts":326461498600,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7770151},
-{"pid":27443,"tid":27459,"ts":326461507542,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7776896},
-{"pid":27443,"tid":27459,"ts":326461507603,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":15993,"tdur":3845,"tts":7776957},
-{"pid":27443,"tid":27459,"ts":326461507664,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7776987},
-{"pid":27443,"tid":27459,"ts":326461507695,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7777018},
-{"pid":27443,"tid":27459,"ts":326461507695,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7777018},
-{"pid":27443,"tid":27459,"ts":326461508153,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7777475},
-{"pid":27443,"tid":27459,"ts":326461508183,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7777506},
-{"pid":27443,"tid":27459,"ts":326461508214,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":15351,"tdur":3235,"tts":7777537},
-{"pid":27443,"tid":27477,"ts":326461491611,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":18,"num_edges":15},"dur":61,"tdur":61,"tts":754127},
-{"pid":27443,"tid":27477,"ts":326461491702,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5640192,"bytes_used_for_staging_resources":10616832,"pending_copy_count":17,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":754219,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461491763,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":754280,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461491794,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":754311,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461491916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":754463,"id":"0xaf88a4f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461491946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":754463},
-{"pid":27443,"tid":27477,"ts":326461491977,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":244,"tdur":213,"tts":754494},
-{"pid":27443,"tid":27477,"ts":326461492007,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":754524,"id":"0x30000008d"},
-{"pid":27443,"tid":27477,"ts":326461492038,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":754555},
-{"pid":27443,"tid":27477,"ts":326461492099,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":754616,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461492160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":754677,"id":"0xaf88a6c3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461495151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":754799,"id":"0xaf88a4f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461495182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":754829},
-{"pid":27443,"tid":27477,"ts":326461495182,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":754829},
-{"pid":27443,"tid":27477,"ts":326461495212,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5640192,"bytes_used_for_staging_resources":10616832,"pending_copy_count":17,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":754890,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461495243,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":754890},
-{"pid":27443,"tid":27477,"ts":326461495273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":754921,"id":"0xaf88a4f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461495273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":754921,"id":"0xaf88a4f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461495304,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":754951},
-{"pid":27443,"tid":27477,"ts":326461495304,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":754951},
-{"pid":27443,"tid":27477,"ts":326461495304,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5640192,"bytes_used_for_staging_resources":10616832,"pending_copy_count":17,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":754951,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461495334,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":754982},
-{"pid":27443,"tid":27477,"ts":326461495334,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":754982,"id":"0xaf88a48cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461495365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":755013,"id":"0xaf88a4f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461495365,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":755013},
-{"pid":27443,"tid":27477,"ts":326461495395,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461492664.0,"frame_time_us":326461486841.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":755043},
-{"pid":27443,"tid":27477,"ts":326461495395,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461492664.0,"frame_time_us":326461486841.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":755074},
-{"pid":27443,"tid":27477,"ts":326461495487,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461503507},"dur":30,"tdur":30,"tts":755135},
-{"pid":27443,"tid":27477,"ts":326461495517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":755165,"id":"0xaf88a48df182217a"},
-{"pid":27443,"tid":27477,"ts":326461495548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":755196,"id":"0xaf88a4f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461495548,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2045,"tdur":2044,"tts":755196},
-{"pid":27443,"tid":27477,"ts":326461495578,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2015,"tdur":2014,"tts":755226},
-{"pid":27443,"tid":27477,"ts":326461495578,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":275,"tdur":275,"tts":755226},
-{"pid":27443,"tid":27477,"ts":326461495578,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":755226},
-{"pid":27443,"tid":27477,"ts":326461495609,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":30,"tts":755257},
-{"pid":27443,"tid":27477,"ts":326461495609,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":755257},
-{"pid":27443,"tid":27477,"ts":326461495670,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":755318},
-{"pid":27443,"tid":27477,"ts":326461495700,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":755348},
-{"pid":27443,"tid":27477,"ts":326461495700,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":755348},
-{"pid":27443,"tid":27477,"ts":326461495731,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":755409},
-{"pid":27443,"tid":27477,"ts":326461495761,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":755409},
-{"pid":27443,"tid":27477,"ts":326461495792,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":755440},
-{"pid":27443,"tid":27477,"ts":326461495822,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":755470},
-{"pid":27443,"tid":27477,"ts":326461495853,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":214,"tdur":213,"tts":755501},
-{"pid":27443,"tid":27477,"ts":326461495853,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":755501},
-{"pid":27443,"tid":27477,"ts":326461496067,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1526,"tdur":1496,"tts":755714},
-{"pid":27443,"tid":27477,"ts":326461496067,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1495,"tdur":1496,"tts":755714},
-{"pid":27443,"tid":27477,"ts":326461496097,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1435,"tdur":1434,"tts":755745},
-{"pid":27443,"tid":27477,"ts":326461496097,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":755745,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461496189,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":755837},
-{"pid":27443,"tid":27477,"ts":326461496219,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":755867},
-{"pid":27443,"tid":27477,"ts":326461496250,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":755928},
-{"pid":27443,"tid":27477,"ts":326461496280,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":755928},
-{"pid":27443,"tid":27477,"ts":326461496311,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":755959},
-{"pid":27443,"tid":27477,"ts":326461496341,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":755989},
-{"pid":27443,"tid":27477,"ts":326461496372,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":756020},
-{"pid":27443,"tid":27477,"ts":326461496402,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":756050},
-{"pid":27443,"tid":27477,"ts":326461496433,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":756081},
-{"pid":27443,"tid":27477,"ts":326461496463,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756111},
-{"pid":27443,"tid":27477,"ts":326461496463,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":756142},
-{"pid":27443,"tid":27477,"ts":326461496494,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756142},
-{"pid":27443,"tid":27477,"ts":326461496524,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756172},
-{"pid":27443,"tid":27477,"ts":326461496524,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756172},
-{"pid":27443,"tid":27477,"ts":326461496555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756203},
-{"pid":27443,"tid":27477,"ts":326461496585,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756233},
-{"pid":27443,"tid":27477,"ts":326461496585,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756233},
-{"pid":27443,"tid":27477,"ts":326461496616,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756264},
-{"pid":27443,"tid":27477,"ts":326461496647,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756294},
-{"pid":27443,"tid":27477,"ts":326461496647,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":756294},
-{"pid":27443,"tid":27477,"ts":326461496677,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756325},
-{"pid":27443,"tid":27477,"ts":326461496708,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756355},
-{"pid":27443,"tid":27477,"ts":326461496708,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":756355},
-{"pid":27443,"tid":27477,"ts":326461496738,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756386},
-{"pid":27443,"tid":27477,"ts":326461496738,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":756386},
-{"pid":27443,"tid":27477,"ts":326461496769,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756416},
-{"pid":27443,"tid":27477,"ts":326461496799,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756447},
-{"pid":27443,"tid":27477,"ts":326461496799,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":756447},
-{"pid":27443,"tid":27477,"ts":326461496830,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756477},
-{"pid":27443,"tid":27477,"ts":326461496830,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":756477},
-{"pid":27443,"tid":27477,"ts":326461496860,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756508},
-{"pid":27443,"tid":27477,"ts":326461496891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756539},
-{"pid":27443,"tid":27477,"ts":326461496921,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756569},
-{"pid":27443,"tid":27477,"ts":326461496952,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756600},
-{"pid":27443,"tid":27477,"ts":326461496982,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756630},
-{"pid":27443,"tid":27477,"ts":326461496982,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756630},
-{"pid":27443,"tid":27477,"ts":326461497013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756661},
-{"pid":27443,"tid":27477,"ts":326461497013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":756691},
-{"pid":27443,"tid":27477,"ts":326461497043,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756691},
-{"pid":27443,"tid":27477,"ts":326461497074,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756722},
-{"pid":27443,"tid":27477,"ts":326461497104,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756752},
-{"pid":27443,"tid":27477,"ts":326461497104,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756752},
-{"pid":27443,"tid":27477,"ts":326461497135,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756783},
-{"pid":27443,"tid":27477,"ts":326461497165,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756813},
-{"pid":27443,"tid":27477,"ts":326461497226,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756874},
-{"pid":27443,"tid":27477,"ts":326461497257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":756905},
-{"pid":27443,"tid":27477,"ts":326461497287,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756935},
-{"pid":27443,"tid":27477,"ts":326461497318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756966},
-{"pid":27443,"tid":27477,"ts":326461497348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":756996},
-{"pid":27443,"tid":27477,"ts":326461497348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":756996},
-{"pid":27443,"tid":27477,"ts":326461497379,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":757027},
-{"pid":27443,"tid":27477,"ts":326461497440,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":757088},
-{"pid":27443,"tid":27477,"ts":326461497471,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":757118},
-{"pid":27443,"tid":27477,"ts":326461497501,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":757149},
-{"pid":27443,"tid":27477,"ts":326461497501,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":757149},
-{"pid":27443,"tid":27477,"ts":326461497532,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":757179},
-{"pid":27443,"tid":27477,"ts":326461497562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":757210,"id":"0xaf88a48ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461497593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":757240,"id":"0xaf88a48cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461497623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":336,"tdur":336,"tts":757271},
-{"pid":27443,"tid":27477,"ts":326461497623,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":305,"tdur":305,"tts":757271},
-{"pid":27443,"tid":27477,"ts":326461497623,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":183,"tdur":183,"tts":757271},
-{"pid":27443,"tid":27477,"ts":326461497623,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":757302},
-{"pid":27443,"tid":27477,"ts":326461497654,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":757302},
-{"pid":27443,"tid":27477,"ts":326461497654,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":757302},
-{"pid":27443,"tid":27477,"ts":326461497715,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":757363},
-{"pid":27443,"tid":27477,"ts":326461497745,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":757393},
-{"pid":27443,"tid":27477,"ts":326461497745,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":757393},
-{"pid":27443,"tid":27477,"ts":326461497776,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":757454},
-{"pid":27443,"tid":27477,"ts":326461497806,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":757454},
-{"pid":27443,"tid":27477,"ts":326461497806,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":757454},
-{"pid":27443,"tid":27477,"ts":326461497898,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":757546},
-{"pid":27443,"tid":27477,"ts":326461497928,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":757576},
-{"pid":27443,"tid":27477,"ts":326461497959,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":757607,"id":"0xaf88a48ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461497959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":183,"tdur":183,"tts":757607},
-{"pid":27443,"tid":27477,"ts":326461497959,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":183,"tdur":183,"tts":757607},
-{"pid":27443,"tid":27477,"ts":326461497989,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":151},"tts":757637},
-{"pid":27443,"tid":27477,"ts":326461498050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":757698,"id":"0xaf88a6dcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461498081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":757729,"id":"0xaf88a4f2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461498111,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":757759},
-{"pid":27443,"tid":27469,"ts":326461497898,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":702,"tts":494216},
-{"pid":27443,"tid":27469,"ts":326461497928,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe9960"},"tileResolution":"HIGH_RESOLUTION"}},"tts":494246},
-{"pid":27443,"tid":27469,"ts":326461497928,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":494277},
-{"pid":27443,"tid":27469,"ts":326461497989,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":494307},
-{"pid":27443,"tid":27469,"ts":326461497989,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":119,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe9960"},"tileResolution":"HIGH_RESOLUTION"}},"tts":494338},
-{"pid":27443,"tid":27469,"ts":326461498020,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":494338,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461498478,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":464245,"id":"0xaf88a488f182217a"},
-{"pid":27443,"tid":27471,"ts":326461498478,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":464245},
-{"pid":27443,"tid":27471,"ts":326461498508,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1038,"tdur":947,"tts":464275},
-{"pid":27443,"tid":27471,"ts":326461498508,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1038,"tdur":947,"tts":464275},
-{"pid":27443,"tid":27471,"ts":326461498539,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe8f28"},"tileResolution":"HIGH_RESOLUTION"}},"tts":464306},
-{"pid":27443,"tid":27471,"ts":326461498539,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":464306},
-{"pid":27443,"tid":27471,"ts":326461498600,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":464367},
-{"pid":27443,"tid":27469,"ts":326461498600,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":494918},
-{"pid":27443,"tid":27471,"ts":326461498600,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe8f28"},"tileResolution":"HIGH_RESOLUTION"}},"tts":464367},
-{"pid":27443,"tid":27469,"ts":326461498600,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1709,"tdur":1099,"tts":494918},
-{"pid":27443,"tid":27469,"ts":326461498630,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1679,"tdur":1069,"tts":494948},
-{"pid":27443,"tid":27471,"ts":326461498630,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":464397,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461498630,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e28ef48"},"tileResolution":"HIGH_RESOLUTION"}},"tts":494948},
-{"pid":27443,"tid":27469,"ts":326461498661,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":494979},
-{"pid":27443,"tid":27469,"ts":326461498691,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":495009},
-{"pid":27443,"tid":27469,"ts":326461498722,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e28ef48"},"tileResolution":"HIGH_RESOLUTION"}},"tts":495040},
-{"pid":27443,"tid":27469,"ts":326461498752,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":495070,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461499546,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":465222},
-{"pid":27443,"tid":27471,"ts":326461499546,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1312,"tdur":885,"tts":465222},
-{"pid":27443,"tid":27471,"ts":326461499576,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1282,"tdur":855,"tts":465252},
-{"pid":27443,"tid":27471,"ts":326461499576,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e2aead0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":465252},
-{"pid":27443,"tid":27471,"ts":326461499607,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":465283},
-{"pid":27443,"tid":27471,"ts":326461499638,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":465313},
-{"pid":27443,"tid":27471,"ts":326461499699,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":120,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e2aead0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":465374},
-{"pid":27443,"tid":27471,"ts":326461499729,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":465405,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461500278,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":496017},
-{"pid":27443,"tid":27469,"ts":326461500309,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1190,"tdur":1068,"tts":496017},
-{"pid":27443,"tid":27469,"ts":326461500309,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1190,"tdur":1038,"tts":496047},
-{"pid":27443,"tid":27469,"ts":326461500339,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e421d00"},"tileResolution":"HIGH_RESOLUTION"}},"tts":496078},
-{"pid":27443,"tid":27469,"ts":326461500370,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":496078},
-{"pid":27443,"tid":27469,"ts":326461500401,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":496108},
-{"pid":27443,"tid":27469,"ts":326461500431,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7e421d00"},"tileResolution":"HIGH_RESOLUTION"}},"tts":496139},
-{"pid":27443,"tid":27469,"ts":326461500462,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":496169,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461500858,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":466107},
-{"pid":27443,"tid":27471,"ts":326461500858,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":4548,"tdur":1190,"tts":466107},
-{"pid":27443,"tid":27471,"ts":326461500889,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":4486,"tdur":1129,"tts":466137},
-{"pid":27443,"tid":27471,"ts":326461501041,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":143,"tileId":{"id_ref":"0x79770770"},"tileResolution":"HIGH_RESOLUTION"}},"tts":466168},
-{"pid":27443,"tid":27471,"ts":326461501072,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":466198},
-{"pid":27443,"tid":27471,"ts":326461501102,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":466229},
-{"pid":27443,"tid":27471,"ts":326461501133,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":143,"tileId":{"id_ref":"0x79770770"},"tileResolution":"HIGH_RESOLUTION"}},"tts":466259},
-{"pid":27443,"tid":27471,"ts":326461501438,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":466381,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461501469,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":497054},
-{"pid":27443,"tid":27469,"ts":326461501499,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":915,"tts":497085},
-{"pid":27443,"tid":27469,"ts":326461501530,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":497115},
-{"pid":27443,"tid":27469,"ts":326461501560,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe93c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":497146},
-{"pid":27443,"tid":27469,"ts":326461501560,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":497146},
-{"pid":27443,"tid":27469,"ts":326461501591,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":497176},
-{"pid":27443,"tid":27469,"ts":326461501621,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe93c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":497207},
-{"pid":27443,"tid":27469,"ts":326461501652,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":497237,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461502415,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":498000},
-{"pid":27443,"tid":27469,"ts":326461502415,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":793,"tdur":763,"tts":498031},
-{"pid":27443,"tid":27469,"ts":326461502445,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":498031},
-{"pid":27443,"tid":27469,"ts":326461502476,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe98a0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":498061},
-{"pid":27443,"tid":27469,"ts":326461502476,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":498061},
-{"pid":27443,"tid":27469,"ts":326461502506,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":498092},
-{"pid":27443,"tid":27469,"ts":326461502537,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":118,"sourceFrameNumber":143,"tileId":{"id_ref":"0x7dfe98a0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":498123},
-{"pid":27443,"tid":27469,"ts":326461502567,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":498153,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461502812,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467144,"id":"0xaf88a489f182217a"},
-{"pid":27443,"tid":27477,"ts":326461498142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":757790,"id":"0xaf88a48ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461498173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3540,"tdur":2686,"tts":757820},
-{"pid":27443,"tid":27477,"ts":326461498173,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3540,"tdur":2686,"tts":757820},
-{"pid":27443,"tid":27477,"ts":326461498173,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":757820},
-{"pid":27443,"tid":27477,"ts":326461498203,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3479,"tdur":2625,"tts":757851},
-{"pid":27443,"tid":27477,"ts":326461498203,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":150},"dur":2075,"tdur":1617,"tts":757851},
-{"pid":27443,"tid":27477,"ts":326461498264,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":150},"dur":305,"tdur":305,"tts":757912},
-{"pid":27443,"tid":27477,"ts":326461498569,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":150},"dur":61,"tdur":61,"tts":758217},
-{"pid":27443,"tid":27477,"ts":326461498630,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":150},"tts":758278},
-{"pid":27443,"tid":27477,"ts":326461499302,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":758553},
-{"pid":27443,"tid":27477,"ts":326461499332,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":428,"tdur":367,"tts":758583},
-{"pid":27443,"tid":27477,"ts":326461499332,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":397,"tdur":336,"tts":758583},
-{"pid":27443,"tid":27477,"ts":326461499363,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":758614},
-{"pid":27443,"tid":27477,"ts":326461499363,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":758614},
-{"pid":27443,"tid":27477,"ts":326461499393,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":758644},
-{"pid":27443,"tid":27477,"ts":326461499454,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":758705},
-{"pid":27443,"tid":27477,"ts":326461499454,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":758705},
-{"pid":27443,"tid":27477,"ts":326461499485,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":758736},
-{"pid":27443,"tid":27477,"ts":326461499546,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":92,"tdur":0,"tts":758797},
-{"pid":27443,"tid":27477,"ts":326461499638,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":758828},
-{"pid":27443,"tid":27477,"ts":326461499668,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":758858},
-{"pid":27443,"tid":27477,"ts":326461499699,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":758889},
-{"pid":27443,"tid":27477,"ts":326461499729,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":8}},"tts":758919,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461499851,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":759041},
-{"pid":27443,"tid":27477,"ts":326461500248,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":759438},
-{"pid":27443,"tid":27477,"ts":326461500278,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":794,"tdur":397,"tts":759468},
-{"pid":27443,"tid":27477,"ts":326461500278,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":759468},
-{"pid":27443,"tid":27477,"ts":326461500309,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":305,"tts":759499},
-{"pid":27443,"tid":27477,"ts":326461500431,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16219},"dur":92,"tdur":92,"tts":759621},
-{"pid":27443,"tid":27477,"ts":326461500462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":759652,"id":"0xaf88ab08f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461500553,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":759743,"id":"0xaf88ab09f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461501072,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":759865,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461501102,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":759896,"id":"0x30000008c"},
-{"pid":27443,"tid":27477,"ts":326461501102,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":519,"tdur":519,"tts":759896},
-{"pid":27443,"tid":27477,"ts":326461501530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":760354,"id":"0xaf88ab0af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461501652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":760445,"id":"0xaf88a6ddf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461501652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":760445,"id":"0xaf88a48cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461501743,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":760537,"id":"0xaf88a488f182217a"},
-{"pid":27443,"tid":27477,"ts":326461501743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":31,"tdur":30,"tts":760537},
-{"pid":27443,"tid":27477,"ts":326461501774,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16219},"dur":0,"tdur":0,"tts":760567},
-{"pid":27443,"tid":27477,"ts":326461502873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":760689,"id":"0xaf88a489f182217a"},
-{"pid":27443,"tid":27477,"ts":326461502903,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"ScheduleCheckForCompletedCopyOperationsWithLockAcquired"},"dur":61,"tdur":61,"tts":760720},
-{"pid":27443,"tid":27477,"ts":326461502903,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedCopyOperations","args":{"wait_if_needed":false},"dur":61,"tdur":61,"tts":760720},
-{"pid":27443,"tid":27477,"ts":326461503636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461503},"tts":760872,"id":"0xaf88a48df182217a"},
-{"pid":27443,"tid":27477,"ts":326461503636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":760872},
-{"pid":27443,"tid":27477,"ts":326461505589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":760964,"id":"0xaf88a48af182217a"},
-{"pid":27443,"tid":27477,"ts":326461505589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":760964},
-{"pid":27443,"tid":27477,"ts":326461505589,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":31,"tts":760994},
-{"pid":27443,"tid":27477,"ts":326461505620,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":760994,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461505620,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":760994},
-{"pid":27443,"tid":27477,"ts":326461512883,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":761117,"id":"0xaf88a48bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461512914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":761147},
-{"pid":27443,"tid":27477,"ts":326461512975,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":761208},
-{"pid":27443,"tid":27477,"ts":326461513005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":761239,"id":"0xaf88a6def3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461517126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":761361,"id":"0xaf88a484f182217a"},
-{"pid":27443,"tid":27477,"ts":326461517156,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":761391},
-{"pid":27443,"tid":27477,"ts":326461517187,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":761422},
-{"pid":27443,"tid":27477,"ts":326461517217,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":761452,"id":"0x30000008e"},
-{"pid":27443,"tid":27477,"ts":326461517217,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":761452},
-{"pid":27443,"tid":27477,"ts":326461517248,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":761483,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461517278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":761513,"id":"0xaf88a6dff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461518194,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":761635,"id":"0xaf88a485f182217a"},
-{"pid":27443,"tid":27477,"ts":326461518194,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":761635},
-{"pid":27443,"tid":27477,"ts":326461518224,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461509345.0,"frame_time_us":326461503522.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":245,"tdur":244,"tts":761666},
-{"pid":27443,"tid":27471,"ts":326461502842,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":2503,"tdur":61,"tts":467175},
-{"pid":27443,"tid":27469,"ts":326461503178,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":498763},
-{"pid":27443,"tid":27471,"ts":326461505375,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":467266},
-{"pid":27443,"tid":27471,"ts":326461505406,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":305,"tdur":153,"tts":467297},
-{"pid":27443,"tid":27471,"ts":326461505406,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":275,"tdur":92,"tts":467327},
-{"pid":27443,"tid":27471,"ts":326461505436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467327,"id":"0xaf88a48af182217a"},
-{"pid":27443,"tid":27469,"ts":326461521460,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1770,"tdur":123,"tts":498824},
-{"pid":27443,"tid":27469,"ts":326461521490,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1740,"tdur":92,"tts":498855},
-{"pid":27443,"tid":27469,"ts":326461521490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":498855,"id":"0xaf88a487f182217a"},
-{"pid":27443,"tid":27469,"ts":326461523230,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":122,"tts":498947},
-{"pid":27443,"tid":27469,"ts":326461523260,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":61,"tts":498977},
-{"pid":27443,"tid":27469,"ts":326461523260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":498977,"id":"0xaf88a481f182217a"},
-{"pid":27443,"tid":27471,"ts":326461523932,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2380,"tdur":122,"tts":467480},
-{"pid":27443,"tid":27471,"ts":326461523932,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":2380,"tdur":122,"tts":467480},
-{"pid":27443,"tid":27471,"ts":326461524878,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467541,"id":"0xaf88a482f182217a"},
-{"pid":27443,"tid":27469,"ts":326461527991,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":499099},
-{"pid":27443,"tid":27469,"ts":326461528021,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499130},
-{"pid":27443,"tid":27469,"ts":326461528021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499130,"id":"0xaf88a49ff182217a"},
-{"pid":27443,"tid":27469,"ts":326461528052,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":499160},
-{"pid":27443,"tid":27469,"ts":326461528083,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":499191},
-{"pid":27443,"tid":27469,"ts":326461528083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499191,"id":"0xaf88a498f182217a"},
-{"pid":27443,"tid":27469,"ts":326461528113,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":499221},
-{"pid":27443,"tid":27469,"ts":326461528113,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":499221},
-{"pid":27443,"tid":27469,"ts":326461528144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499252,"id":"0xaf88a499f182217a"},
-{"pid":27443,"tid":27469,"ts":326461548379,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":499282},
-{"pid":27443,"tid":27469,"ts":326461548409,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499313},
-{"pid":27443,"tid":27469,"ts":326461548409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499313,"id":"0xaf88a493f182217a"},
-{"pid":27443,"tid":27469,"ts":326461548470,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":499374},
-{"pid":27443,"tid":27469,"ts":326461548470,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499374},
-{"pid":27443,"tid":27469,"ts":326461548501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499404,"id":"0xaf88a4acf182217a"},
-{"pid":27443,"tid":27469,"ts":326461548501,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":499404},
-{"pid":27443,"tid":27469,"ts":326461548531,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":499435},
-{"pid":27443,"tid":27469,"ts":326461548531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499435,"id":"0xaf88a4adf182217a"},
-{"pid":27443,"tid":27498,"ts":326461556741,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1099,"tdur":1099,"tts":56401},
-{"pid":27443,"tid":27498,"ts":326461556741,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":56401},
-{"pid":27443,"tid":27498,"ts":326461557809,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57500},
-{"pid":27443,"tid":27469,"ts":326461564615,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":499496},
-{"pid":27443,"tid":27469,"ts":326461564646,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":499526},
-{"pid":27443,"tid":27469,"ts":326461564646,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499526,"id":"0xaf88a4a7f182217a"},
-{"pid":27443,"tid":27469,"ts":326461564676,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":499557},
-{"pid":27443,"tid":27469,"ts":326461564676,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499557},
-{"pid":27443,"tid":27469,"ts":326461564676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499557,"id":"0xaf88a4a0f182217a"},
-{"pid":27443,"tid":27469,"ts":326461564707,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":499587},
-{"pid":27443,"tid":27469,"ts":326461564707,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":499587},
-{"pid":27443,"tid":27469,"ts":326461564737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499618,"id":"0xaf88a4a1f182217a"},
-{"pid":27443,"tid":27469,"ts":326461579296,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":499618},
-{"pid":27443,"tid":27469,"ts":326461579326,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499649},
-{"pid":27443,"tid":27469,"ts":326461579357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499679,"id":"0xaf88a4b4f182217a"},
-{"pid":27443,"tid":27469,"ts":326461579387,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":499710},
-{"pid":27443,"tid":27469,"ts":326461579387,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499710},
-{"pid":27443,"tid":27469,"ts":326461579387,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499710,"id":"0xaf88a4b5f182217a"},
-{"pid":27443,"tid":27469,"ts":326461579418,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":499740},
-{"pid":27443,"tid":27469,"ts":326461579418,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":499740},
-{"pid":27443,"tid":27469,"ts":326461579448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499771,"id":"0xaf88a4b6f182217a"},
-{"pid":27443,"tid":27469,"ts":326461594434,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":499801},
-{"pid":27443,"tid":27469,"ts":326461594464,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":499832},
-{"pid":27443,"tid":27469,"ts":326461594495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499862,"id":"0xaf88a54ef182217a"},
-{"pid":27443,"tid":27469,"ts":326461594495,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":499862},
-{"pid":27443,"tid":27469,"ts":326461594525,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":499893},
-{"pid":27443,"tid":27469,"ts":326461594525,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499893,"id":"0xaf88a54ff182217a"},
-{"pid":27443,"tid":27469,"ts":326461594525,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":499893},
-{"pid":27443,"tid":27469,"ts":326461594556,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":499923},
-{"pid":27443,"tid":27469,"ts":326461594556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":499923,"id":"0xaf88a548f182217a"},
-{"pid":27443,"tid":27469,"ts":326461610610,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":274,"tdur":122,"tts":499984},
-{"pid":27443,"tid":27459,"ts":326461508214,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":11567,"tdur":2960,"tts":7777537},
-{"pid":27443,"tid":27459,"ts":326461508244,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":702,"tdur":702,"tts":7777567},
-{"pid":27443,"tid":27459,"ts":326461508946,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":702,"tdur":336,"tts":7778269},
-{"pid":27443,"tid":27459,"ts":326461509648,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":153,"tdur":152,"tts":7778605},
-{"pid":27443,"tid":27459,"ts":326461509801,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7778757},
-{"pid":27443,"tid":27459,"ts":326461509831,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":9919,"tdur":1678,"tts":7778788},
-{"pid":27443,"tid":27459,"ts":326461519781,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7780497},
-{"pid":27443,"tid":27459,"ts":326461519842,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":549,"tdur":153,"tts":7780558},
-{"pid":27443,"tid":27459,"ts":326461523627,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":151},"dur":1770,"tdur":946,"tts":7780833},
-{"pid":27443,"tid":27459,"ts":326461523657,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1740,"tdur":916,"tts":7780863},
-{"pid":27443,"tid":27459,"ts":326461524573,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":30,"tdur":30,"tts":7781352},
-{"pid":27443,"tid":27459,"ts":326461524603,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":31,"tdur":31,"tts":7781382},
-{"pid":27443,"tid":27459,"ts":326461524634,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":30,"tdur":0,"tts":7781443},
-{"pid":27443,"tid":27459,"ts":326461524695,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":244,"tdur":0,"tts":7781474},
-{"pid":27443,"tid":27459,"ts":326461524939,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":30,"tdur":30,"tts":7781474},
-{"pid":27443,"tid":27459,"ts":326461524969,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":123,"tdur":30,"tts":7781535},
-{"pid":27443,"tid":27459,"ts":326461524969,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":7781535},
-{"pid":27443,"tid":27459,"ts":326461525092,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":91,"tdur":61,"tts":7781565},
-{"pid":27443,"tid":27459,"ts":326461525092,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":7781565},
-{"pid":27443,"tid":27459,"ts":326461525183,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":0,"tdur":0,"tts":7781626},
-{"pid":27443,"tid":27459,"ts":326461525214,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":0,"tdur":0,"tts":7781657},
-{"pid":27443,"tid":27459,"ts":326461525214,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":30,"tdur":0,"tts":7781687},
-{"pid":27443,"tid":27459,"ts":326461525244,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":122,"tdur":61,"tts":7781687},
-{"pid":27443,"tid":27459,"ts":326461525366,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":151},"dur":31,"tdur":31,"tts":7781748},
-{"pid":27443,"tid":27459,"ts":326461525397,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7781779,"id":"0x30000008d"},
-{"pid":27443,"tid":27459,"ts":326461525427,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1099,"tdur":183,"tts":7781809},
-{"pid":27443,"tid":27459,"ts":326461525427,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7781809,"id":"0xaf88a49cf182217a"},
-{"pid":27443,"tid":27459,"ts":326461525427,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":7781809},
-{"pid":27443,"tid":27459,"ts":326461526618,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7782023},
-{"pid":27443,"tid":27459,"ts":326461526709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7782115,"id":"0xaf88a4f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461526709,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":61,"tts":7782145},
-{"pid":27443,"tid":27459,"ts":326461526740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7782145,"id":"0xaf88a48df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461526770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7782176,"id":"0xaf88a6ddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461526770,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":7782176},
-{"pid":27443,"tid":27459,"ts":326461526801,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7782206},
-{"pid":27443,"tid":27459,"ts":326461526831,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7782237,"id":"0xaf88a48cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461526862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7782267},
-{"pid":27443,"tid":27459,"ts":326461526862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7782267,"id":"0xaf88a6def3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461526862,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":30,"tts":7782298},
-{"pid":27443,"tid":27459,"ts":326461526892,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7782298},
-{"pid":27443,"tid":27459,"ts":326461526953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7782359,"id":"0xaf88a48df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461526953,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3754,"tdur":1465,"tts":7782359},
-{"pid":27443,"tid":27459,"ts":326461526984,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7782389,"id":"0xaf88a48ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461526984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7782389,"id":"0xaf88a6dff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461526984,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":3693,"tdur":1435,"tts":7782389},
-{"pid":27443,"tid":27459,"ts":326461527045,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":3601,"tdur":1343,"tts":7782450},
-{"pid":27443,"tid":27459,"ts":326461527075,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7782481,"id":"0x30000008e"},
-{"pid":27443,"tid":27459,"ts":326461527106,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":3418,"tdur":1160,"tts":7782511},
-{"pid":27443,"tid":27459,"ts":326461527136,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":3388,"tdur":1129,"tts":7782542},
-{"pid":27443,"tid":27459,"ts":326461527197,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7782603},
-{"pid":27443,"tid":27459,"ts":326461527228,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7782633},
-{"pid":27443,"tid":27459,"ts":326461527258,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7782664},
-{"pid":27443,"tid":27459,"ts":326461527289,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7782694},
-{"pid":27443,"tid":27459,"ts":326461527319,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7782725},
-{"pid":27443,"tid":27459,"ts":326461527350,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7782755},
-{"pid":27443,"tid":27459,"ts":326461527381,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7782817},
-{"pid":27443,"tid":27459,"ts":326461527472,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":3022,"tdur":763,"tts":7782878},
-{"pid":27443,"tid":27459,"ts":326461527655,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":2808,"tdur":519,"tts":7783091},
-{"pid":27443,"tid":27459,"ts":326461527686,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7783091},
-{"pid":27443,"tid":27459,"ts":326461530341,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":111,"frame":"0x78c60000"}},"tts":7783488,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461530372,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7783519},
-{"pid":27443,"tid":27459,"ts":326461530402,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7783549,"id":"0xaf88a494f182217a"},
-{"pid":27443,"tid":27459,"ts":326461530433,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7783580},
-{"pid":27443,"tid":27459,"ts":326461530555,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7783702},
-{"pid":27443,"tid":27477,"ts":326461518255,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461509345.0,"frame_time_us":326461503522.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":214,"tdur":214,"tts":761696},
-{"pid":27443,"tid":27477,"ts":326461518377,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461520188},"dur":92,"tdur":91,"tts":761819},
-{"pid":27443,"tid":27477,"ts":326461518438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":761880,"id":"0xaf88a486f182217a"},
-{"pid":27443,"tid":27477,"ts":326461520483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461520},"tts":762093,"id":"0xaf88a486f182217a"},
-{"pid":27443,"tid":27477,"ts":326461520513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":916,"tdur":824,"tts":762124},
-{"pid":27443,"tid":27477,"ts":326461520513,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":916,"tdur":824,"tts":762124},
-{"pid":27443,"tid":27477,"ts":326461520513,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":886,"tdur":793,"tts":762124},
-{"pid":27443,"tid":27477,"ts":326461520544,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":855,"tdur":763,"tts":762154},
-{"pid":27443,"tid":27477,"ts":326461520544,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":458,"tdur":336,"tts":762154},
-{"pid":27443,"tid":27477,"ts":326461521002,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":762521},
-{"pid":27443,"tid":27477,"ts":326461521063,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":762582},
-{"pid":27443,"tid":27477,"ts":326461521063,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":7},"dur":305,"tdur":305,"tts":762582},
-{"pid":27443,"tid":27477,"ts":326461521093,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":214,"tdur":214,"tts":762612},
-{"pid":27443,"tid":27477,"ts":326461521093,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":762612,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461521185,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":762704},
-{"pid":27443,"tid":27477,"ts":326461521215,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":10,"num_edges":7},"dur":61,"tdur":61,"tts":762734},
-{"pid":27443,"tid":27477,"ts":326461521276,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":762826,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461521368,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":762887,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461521399,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":762917,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461521795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":763070,"id":"0xaf88a487f182217a"},
-{"pid":27443,"tid":27477,"ts":326461521826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":763100},
-{"pid":27443,"tid":27477,"ts":326461521826,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":763100},
-{"pid":27443,"tid":27477,"ts":326461521856,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":763131,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461521856,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":763131},
-{"pid":27443,"tid":27477,"ts":326461521856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":763131,"id":"0xaf88a480f182217a"},
-{"pid":27443,"tid":27477,"ts":326461521887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":763161,"id":"0xaf88a480f182217a"},
-{"pid":27443,"tid":27477,"ts":326461521887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1312,"tdur":1191,"tts":763161},
-{"pid":27443,"tid":27477,"ts":326461521917,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1282,"tdur":1160,"tts":763192},
-{"pid":27443,"tid":27477,"ts":326461521917,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":1069,"tdur":946,"tts":763192},
-{"pid":27443,"tid":27477,"ts":326461521917,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":763192},
-{"pid":27443,"tid":27477,"ts":326461521948,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":763222},
-{"pid":27443,"tid":27477,"ts":326461521948,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":62,"tts":763222},
-{"pid":27443,"tid":27477,"ts":326461522192,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":763345},
-{"pid":27443,"tid":27477,"ts":326461522253,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":92,"tdur":91,"tts":763406},
-{"pid":27443,"tid":27477,"ts":326461522284,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":763436},
-{"pid":27443,"tid":27477,"ts":326461522345,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":763528},
-{"pid":27443,"tid":27477,"ts":326461522406,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":91,"tdur":92,"tts":763558},
-{"pid":27443,"tid":27477,"ts":326461522436,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":763589},
-{"pid":27443,"tid":27477,"ts":326461522528,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":763680},
-{"pid":27443,"tid":27477,"ts":326461522528,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":763680},
-{"pid":27443,"tid":27477,"ts":326461522558,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":763711},
-{"pid":27443,"tid":27477,"ts":326461522589,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":763741},
-{"pid":27443,"tid":27477,"ts":326461522619,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":763772},
-{"pid":27443,"tid":27477,"ts":326461522619,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":763772},
-{"pid":27443,"tid":27477,"ts":326461522650,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":763802},
-{"pid":27443,"tid":27477,"ts":326461522680,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":92,"tdur":91,"tts":763833},
-{"pid":27443,"tid":27477,"ts":326461522711,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":763863},
-{"pid":27443,"tid":27477,"ts":326461522802,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":763955},
-{"pid":27443,"tid":27477,"ts":326461522833,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":92,"tdur":92,"tts":763985},
-{"pid":27443,"tid":27477,"ts":326461522864,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":764016},
-{"pid":27443,"tid":27477,"ts":326461522955,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":764108},
-{"pid":27443,"tid":27477,"ts":326461523016,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":152,"tts":764169},
-{"pid":27443,"tid":27477,"ts":326461523016,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":764199},
-{"pid":27443,"tid":27477,"ts":326461523169,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":764321},
-{"pid":27443,"tid":27477,"ts":326461523169,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":764321},
-{"pid":27443,"tid":27477,"ts":326461524939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":764474,"id":"0xaf88a481f182217a"},
-{"pid":27443,"tid":27477,"ts":326461524939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":764474},
-{"pid":27443,"tid":27477,"ts":326461524969,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":764504},
-{"pid":27443,"tid":27477,"ts":326461525000,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":764535,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461525000,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":764535},
-{"pid":27443,"tid":27477,"ts":326461525030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":764565,"id":"0xaf88a483f182217a"},
-{"pid":27443,"tid":27477,"ts":326461525061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":764596,"id":"0xaf88a482f182217a"},
-{"pid":27443,"tid":27477,"ts":326461525061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":764596},
-{"pid":27443,"tid":27477,"ts":326461525061,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":764596},
-{"pid":27443,"tid":27477,"ts":326461525092,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":764626,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461525092,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":764626},
-{"pid":27443,"tid":27477,"ts":326461525122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":764657,"id":"0xaf88a483f182217a"},
-{"pid":27443,"tid":27477,"ts":326461525153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":184,"tts":764687},
-{"pid":27443,"tid":27477,"ts":326461525153,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":183,"tdur":184,"tts":764687},
-{"pid":27443,"tid":27477,"ts":326461525153,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":764687},
-{"pid":27443,"tid":27477,"ts":326461525183,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":764718},
-{"pid":27443,"tid":27477,"ts":326461525183,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":764718},
-{"pid":27443,"tid":27477,"ts":326461525214,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":764749},
-{"pid":27443,"tid":27477,"ts":326461525305,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":764840},
-{"pid":27443,"tid":27477,"ts":326461525305,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":764840},
-{"pid":27443,"tid":27477,"ts":326461525763,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":764932,"id":"0xaf88a49cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461525763,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2045,"tdur":1617,"tts":764932},
-{"pid":27443,"tid":27477,"ts":326461525793,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2015,"tdur":1587,"tts":764962},
-{"pid":27443,"tid":27477,"ts":326461525793,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":764962},
-{"pid":27443,"tid":27477,"ts":326461525824,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1953,"tdur":1526,"tts":764993},
-{"pid":27443,"tid":27477,"ts":326461525824,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1953,"tdur":1526,"tts":764993},
-{"pid":27443,"tid":27477,"ts":326461525855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":765023},
-{"pid":27443,"tid":27477,"ts":326461525855,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":765023},
-{"pid":27443,"tid":27477,"ts":326461525885,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":765054,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461525916,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":765084},
-{"pid":27443,"tid":27477,"ts":326461525946,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":765115},
-{"pid":27443,"tid":27477,"ts":326461526068,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1709,"tdur":1282,"tts":765237},
-{"pid":27443,"tid":27477,"ts":326461526099,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":151},"dur":732,"tdur":306,"tts":765267},
-{"pid":27443,"tid":27477,"ts":326461526831,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":151},"dur":122,"tdur":92,"tts":765603},
-{"pid":27443,"tid":27477,"ts":326461526984,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":151},"tts":765725},
-{"pid":27443,"tid":27477,"ts":326461527197,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":765939},
-{"pid":27443,"tid":27477,"ts":326461527228,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":765969},
-{"pid":27443,"tid":27477,"ts":326461527228,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":549,"tdur":519,"tts":765969},
-{"pid":27443,"tid":27477,"ts":326461527228,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":214,"tts":765969},
-{"pid":27443,"tid":27477,"ts":326461527442,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":766183},
-{"pid":27443,"tid":27477,"ts":326461527472,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":766213},
-{"pid":27443,"tid":27477,"ts":326461527472,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":244,"tdur":245,"tts":766213},
-{"pid":27443,"tid":27477,"ts":326461527472,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":244,"tdur":214,"tts":766244},
-{"pid":27443,"tid":27477,"ts":326461527503,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":766244,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461527533,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16694},"dur":61,"tdur":61,"tts":766275},
-{"pid":27443,"tid":27477,"ts":326461527533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":766305,"id":"0xaf88ab0bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461527625,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":766366},
-{"pid":27443,"tid":27477,"ts":326461527655,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":766397},
-{"pid":27443,"tid":27477,"ts":326461527686,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":766427,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461527747,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":766488,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461527747,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":766488,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461527808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":766549,"id":"0xaf88a49df182217a"},
-{"pid":27443,"tid":27477,"ts":326461527808,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":766549},
-{"pid":27443,"tid":27477,"ts":326461527838,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461526027.0,"frame_time_us":326461520204.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":766580},
-{"pid":27443,"tid":27477,"ts":326461527869,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461526027.0,"frame_time_us":326461520204.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":766610},
-{"pid":27443,"tid":27477,"ts":326461527899,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461536870},"dur":31,"tdur":30,"tts":766641},
-{"pid":27443,"tid":27477,"ts":326461527930,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":766671,"id":"0xaf88a49ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461528083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":766732,"id":"0xaf88a49ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461528083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":766732},
-{"pid":27443,"tid":27477,"ts":326461528113,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":766763},
-{"pid":27443,"tid":27477,"ts":326461528144,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":766793,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461528144,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":766793},
-{"pid":27443,"tid":27477,"ts":326461528144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":766793,"id":"0xaf88a49af182217a"},
-{"pid":27443,"tid":27477,"ts":326461528174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":766824,"id":"0xaf88a498f182217a"},
-{"pid":27443,"tid":27477,"ts":326461528205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":766854},
-{"pid":27443,"tid":27477,"ts":326461528205,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":766854},
-{"pid":27443,"tid":27477,"ts":326461528205,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":766854,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461528235,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":766885},
-{"pid":27443,"tid":27477,"ts":326461528235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":766885,"id":"0xaf88a49bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461528266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":766915,"id":"0xaf88a499f182217a"},
-{"pid":27443,"tid":27477,"ts":326461528266,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":766915},
-{"pid":27443,"tid":27477,"ts":326461528266,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":766915},
-{"pid":27443,"tid":27477,"ts":326461528266,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":766915,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461528296,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":766946},
-{"pid":27443,"tid":27477,"ts":326461528327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":766976,"id":"0xaf88a49af182217a"},
-{"pid":27443,"tid":27477,"ts":326461528327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2472,"tdur":2320,"tts":766976},
-{"pid":27443,"tid":27477,"ts":326461528327,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2472,"tdur":2320,"tts":766976},
-{"pid":27443,"tid":27477,"ts":326461528327,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":767007},
-{"pid":27443,"tid":27477,"ts":326461528357,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":767007},
-{"pid":27443,"tid":27477,"ts":326461528388,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":213,"tdur":213,"tts":767038},
-{"pid":27443,"tid":27477,"ts":326461528388,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":213,"tdur":213,"tts":767038},{"pid":27443,"tid":27477,"ts":326461528601,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2198,"tdur":2045,"tts":767251},
-{"pid":27443,"tid":27477,"ts":326461528601,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2198,"tdur":2045,"tts":767251},
-{"pid":27443,"tid":27477,"ts":326461528632,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2106,"tdur":1953,"tts":767282},
-{"pid":27443,"tid":27477,"ts":326461528632,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":767282,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461528723,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767373},
-{"pid":27443,"tid":27477,"ts":326461528754,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767404},
-{"pid":27443,"tid":27477,"ts":326461528754,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":767434},
-{"pid":27443,"tid":27477,"ts":326461528784,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":767434},
-{"pid":27443,"tid":27477,"ts":326461528815,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":767465},
-{"pid":27443,"tid":27477,"ts":326461528846,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767495},
-{"pid":27443,"tid":27477,"ts":326461528876,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767526},
-{"pid":27443,"tid":27477,"ts":326461528876,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":767556},
-{"pid":27443,"tid":27477,"ts":326461528907,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":767556},
-{"pid":27443,"tid":27477,"ts":326461528937,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":767587},
-{"pid":27443,"tid":27477,"ts":326461528968,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":767617},
-{"pid":27443,"tid":27477,"ts":326461528998,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767648},
-{"pid":27443,"tid":27477,"ts":326461529029,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767678},
-{"pid":27443,"tid":27477,"ts":326461529029,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":767678},
-{"pid":27443,"tid":27477,"ts":326461529059,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":767709},
-{"pid":27443,"tid":27477,"ts":326461529090,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":767739},
-{"pid":27443,"tid":27477,"ts":326461529120,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767770},
-{"pid":27443,"tid":27477,"ts":326461529151,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767801},
-{"pid":27443,"tid":27477,"ts":326461529151,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":767801},
-{"pid":27443,"tid":27477,"ts":326461529181,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767831},
-{"pid":27443,"tid":27477,"ts":326461529212,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":767862},
-{"pid":27443,"tid":27477,"ts":326461529242,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767892},
-{"pid":27443,"tid":27477,"ts":326461529273,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767923},
-{"pid":27443,"tid":27477,"ts":326461529273,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":767923},
-{"pid":27443,"tid":27477,"ts":326461529303,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":767953},
-{"pid":27443,"tid":27477,"ts":326461529334,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":767984},
-{"pid":27443,"tid":27477,"ts":326461529334,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":767984},
-{"pid":27443,"tid":27477,"ts":326461529364,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768014},
-{"pid":27443,"tid":27477,"ts":326461529395,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768045},
-{"pid":27443,"tid":27477,"ts":326461529395,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768045},
-{"pid":27443,"tid":27477,"ts":326461529425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768075},
-{"pid":27443,"tid":27477,"ts":326461529425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":768075},
-{"pid":27443,"tid":27477,"ts":326461529456,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768106},
-{"pid":27443,"tid":27477,"ts":326461529456,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":768136},
-{"pid":27443,"tid":27477,"ts":326461529486,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":768136},
-{"pid":27443,"tid":27477,"ts":326461529517,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":768167},
-{"pid":27443,"tid":27477,"ts":326461529609,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":768167},
-{"pid":27443,"tid":27477,"ts":326461529609,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":768167},
-{"pid":27443,"tid":27477,"ts":326461529700,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":768197},
-{"pid":27443,"tid":27477,"ts":326461529731,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":768228},
-{"pid":27443,"tid":27477,"ts":326461529761,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":768258},
-{"pid":27443,"tid":27477,"ts":326461529822,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":768319},
-{"pid":27443,"tid":27477,"ts":326461529883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":768411},
-{"pid":27443,"tid":27477,"ts":326461529944,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":768441},
-{"pid":27443,"tid":27477,"ts":326461529975,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768472},
-{"pid":27443,"tid":27477,"ts":326461530433,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":768930},
-{"pid":27443,"tid":27477,"ts":326461530433,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":768930},
-{"pid":27443,"tid":27477,"ts":326461530463,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":768960},
-{"pid":27443,"tid":27477,"ts":326461530494,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":768991},
-{"pid":27443,"tid":27477,"ts":326461530524,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":769021},
-{"pid":27443,"tid":27477,"ts":326461530524,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":769021},
-{"pid":27443,"tid":27477,"ts":326461530555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":769052},
-{"pid":27443,"tid":27459,"ts":326461530585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7783732,"id":"0xaf88ab04f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461530738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7783854,"id":"0xaf88a48ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461530738,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":7783854},
-{"pid":27443,"tid":27459,"ts":326461531074,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7783885},
-{"pid":27443,"tid":27459,"ts":326461532142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7783976,"id":"0xaf88a48ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461532142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":15260,"tdur":10133,"tts":7784007},
-{"pid":27443,"tid":27459,"ts":326461532172,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7784007,"id":"0xaf88a488f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461532203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7784037,"id":"0xaf88a6d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461532233,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":15138,"tdur":10041,"tts":7784068},
-{"pid":27443,"tid":27459,"ts":326461532233,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":152},"tts":7784068},
-{"pid":27443,"tid":27459,"ts":326461532264,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7784098},
-{"pid":27443,"tid":27459,"ts":326461532294,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":10164,"tdur":5555,"tts":7784159},
-{"pid":27443,"tid":27459,"ts":326461532325,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":7784190},
-{"pid":27443,"tid":27459,"ts":326461532386,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":111,"frame":"0x78c60000"}},"dur":10072,"tdur":5464,"tts":7784220},
-{"pid":27443,"tid":27459,"ts":326461532477,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":9950,"tdur":5372,"tts":7784312},
-{"pid":27443,"tid":27459,"ts":326461532508,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7784343},
-{"pid":27443,"tid":27459,"ts":326461542366,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7789653},
-{"pid":27443,"tid":27459,"ts":326461542488,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3998,"tdur":3723,"tts":7789745},
-{"pid":27443,"tid":27459,"ts":326461542549,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7789806},
-{"pid":27443,"tid":27459,"ts":326461542580,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7789836},
-{"pid":27443,"tid":27459,"ts":326461542641,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7789897},
-{"pid":27443,"tid":27459,"ts":326461543526,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7790508},
-{"pid":27443,"tid":27459,"ts":326461543587,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7790569},
-{"pid":27443,"tid":27459,"ts":326461543648,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2838,"tdur":2838,"tts":7790630},
-{"pid":27443,"tid":27459,"ts":326461543678,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2625,"tdur":2625,"tts":7790660},
-{"pid":27443,"tid":27459,"ts":326461543709,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":763,"tdur":763,"tts":7790691},
-{"pid":27443,"tid":27459,"ts":326461544502,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":7791484},
-{"pid":27443,"tid":27459,"ts":326461544716,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7791698},
-{"pid":27443,"tid":27459,"ts":326461544838,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7791820},
-{"pid":27443,"tid":27459,"ts":326461544838,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1435,"tdur":1435,"tts":7791820},
-{"pid":27443,"tid":27459,"ts":326461546303,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7793285},
-{"pid":27443,"tid":27459,"ts":326461546334,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":7793346},
-{"pid":27443,"tid":27459,"ts":326461546486,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":152},"dur":489,"tdur":488,"tts":7793468},
-{"pid":27443,"tid":27459,"ts":326461546517,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":457,"tts":7793499},
-{"pid":27443,"tid":27459,"ts":326461546730,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":31,"tdur":31,"tts":7793712},
-{"pid":27443,"tid":27459,"ts":326461546761,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":30,"tdur":30,"tts":7793743},
-{"pid":27443,"tid":27459,"ts":326461546791,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":0,"tdur":0,"tts":7793773},
-{"pid":27443,"tid":27459,"ts":326461546791,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":31,"tdur":31,"tts":7793773},
-{"pid":27443,"tid":27459,"ts":326461546822,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":0,"tdur":0,"tts":7793804},
-{"pid":27443,"tid":27459,"ts":326461546853,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":0,"tdur":0,"tts":7793834},
-{"pid":27443,"tid":27459,"ts":326461546853,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":30,"tdur":31,"tts":7793834},
-{"pid":27443,"tid":27459,"ts":326461546883,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":0,"tdur":0,"tts":7793865},
-{"pid":27443,"tid":27459,"ts":326461546883,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":31,"tdur":30,"tts":7793865},
-{"pid":27443,"tid":27459,"ts":326461546914,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":0,"tdur":0,"tts":7793895},
-{"pid":27443,"tid":27459,"ts":326461546944,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":0,"tdur":0,"tts":7793926},
-{"pid":27443,"tid":27459,"ts":326461546944,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":152},"dur":31,"tdur":30,"tts":7793926},
-{"pid":27443,"tid":27459,"ts":326461546975,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7793956,"id":"0x30000008e"},
-{"pid":27443,"tid":27459,"ts":326461546975,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":335,"tdur":61,"tts":7793987},
-{"pid":27443,"tid":27459,"ts":326461547005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7793987,"id":"0xaf88a492f182217a"},
-{"pid":27443,"tid":27459,"ts":326461547371,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7794109},
-{"pid":27443,"tid":27459,"ts":326461547432,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461542},"tts":7794170,"id":"0xaf88a4fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461547432,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7794170},
-{"pid":27443,"tid":27459,"ts":326461547493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7794231,"id":"0xaf88a488f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461547493,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":153,"tts":7794231},
-{"pid":27443,"tid":27459,"ts":326461547524,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7794262,"id":"0xaf88a48bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461547524,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7794262,"id":"0xaf88a6caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461547524,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":305,"tdur":91,"tts":7794262},
-{"pid":27443,"tid":27459,"ts":326461547555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7794292,"id":"0xaf88a6d5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461547585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7794323,"id":"0xaf88a484f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461547585,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":7794323},
-{"pid":27443,"tid":27459,"ts":326461547890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7794414,"id":"0xaf88a489f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461547890,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":7794414},
-{"pid":27443,"tid":27459,"ts":326461547890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7794414,"id":"0xaf88a6dbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461547921,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":7794445},
-{"pid":27443,"tid":27477,"ts":326461530616,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":769113},
-{"pid":27443,"tid":27477,"ts":326461530677,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":769174},
-{"pid":27443,"tid":27477,"ts":326461530707,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":769204},
-{"pid":27443,"tid":27477,"ts":326461530707,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":769204},
-{"pid":27443,"tid":27477,"ts":326461530738,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":31,"tts":769235},
-{"pid":27443,"tid":27477,"ts":326461530768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":769266,"id":"0xaf88a495f182217a"},
-{"pid":27443,"tid":27477,"ts":326461530799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":769296,"id":"0xaf88a49bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461530829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":152,"tts":769327},
-{"pid":27443,"tid":27477,"ts":326461530829,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":769327},
-{"pid":27443,"tid":27477,"ts":326461530860,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":769357},
-{"pid":27443,"tid":27477,"ts":326461530860,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":769357},
-{"pid":27443,"tid":27477,"ts":326461530890,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":769388},
-{"pid":27443,"tid":27477,"ts":326461530890,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":769388},
-{"pid":27443,"tid":27477,"ts":326461530951,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":769479},
-{"pid":27443,"tid":27477,"ts":326461530982,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":769479},
-{"pid":27443,"tid":27477,"ts":326461531012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":769510,"id":"0xaf88a494f182217a"},
-{"pid":27443,"tid":27477,"ts":326461531012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":152,"tts":769510},
-{"pid":27443,"tid":27477,"ts":326461531012,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":152,"tts":769510},
-{"pid":27443,"tid":27477,"ts":326461531043,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":152},"tts":769540},
-{"pid":27443,"tid":27477,"ts":326461531104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":769601,"id":"0xaf88a6d8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461531135,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":769632,"id":"0xaf88a48ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461531135,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":769662},
-{"pid":27443,"tid":27477,"ts":326461531165,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":769662,"id":"0xaf88a495f182217a"},
-{"pid":27443,"tid":27477,"ts":326461531196,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2472,"tdur":2167,"tts":769693},
-{"pid":27443,"tid":27477,"ts":326461531196,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2472,"tdur":2167,"tts":769693},
-{"pid":27443,"tid":27477,"ts":326461531196,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":769693},
-{"pid":27443,"tid":27477,"ts":326461531226,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2411,"tdur":2106,"tts":769723},
-{"pid":27443,"tid":27477,"ts":326461531226,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":151},"dur":1190,"tdur":1191,"tts":769723},
-{"pid":27443,"tid":27477,"ts":326461531257,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":151},"dur":335,"tdur":336,"tts":769754},
-{"pid":27443,"tid":27477,"ts":326461531592,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":151},"dur":61,"tdur":61,"tts":770090},
-{"pid":27443,"tid":27477,"ts":326461531653,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":151},"tts":770151},
-{"pid":27443,"tid":27477,"ts":326461531867,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":770364},
-{"pid":27443,"tid":27477,"ts":326461531867,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":770364},
-{"pid":27443,"tid":27477,"ts":326461531867,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":770395},
-{"pid":27443,"tid":27477,"ts":326461531898,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":770395},
-{"pid":27443,"tid":27477,"ts":326461531898,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":7}},"tts":770395,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461531989,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":770517},
-{"pid":27443,"tid":27477,"ts":326461532416,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":770914},
-{"pid":27443,"tid":27477,"ts":326461532416,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":824,"tdur":518,"tts":770914},
-{"pid":27443,"tid":27477,"ts":326461532447,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":770944},
-{"pid":27443,"tid":27477,"ts":326461532447,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":397,"tts":770944},
-{"pid":27443,"tid":27477,"ts":326461532630,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16700},"dur":92,"tdur":92,"tts":771127},
-{"pid":27443,"tid":27477,"ts":326461532661,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":771158,"id":"0xaf88ab05f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461532752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":771249,"id":"0xaf88ab06f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461533210,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":771402,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461533271,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":771463,"id":"0x30000008d"},
-{"pid":27443,"tid":27477,"ts":326461533271,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":305,"tts":771463},
-{"pid":27443,"tid":27477,"ts":326461533515,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":771707,"id":"0xaf88ab07f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461533607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":771799,"id":"0xaf88a6d9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461533607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":771799,"id":"0xaf88a489f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461537025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461536},"tts":771951,"id":"0xaf88a49ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461537055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":771982},
-{"pid":27443,"tid":27477,"ts":326461541359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":772134,"id":"0xaf88a496f182217a"},
-{"pid":27443,"tid":27477,"ts":326461541389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":184,"tdur":183,"tts":772165},
-{"pid":27443,"tid":27477,"ts":326461541389,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":772165},
-{"pid":27443,"tid":27477,"ts":326461541450,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":772226,"id":"0x30000008f"},
-{"pid":27443,"tid":27477,"ts":326461541481,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":772257},
-{"pid":27443,"tid":27477,"ts":326461541511,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":772287,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461541542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":772318,"id":"0xaf88a6daf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461544472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":772379,"id":"0xaf88a497f182217a"},
-{"pid":27443,"tid":27477,"ts":326461544502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":62,"tdur":61,"tts":772409},
-{"pid":27443,"tid":27477,"ts":326461544502,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":62,"tdur":0,"tts":772440},
-{"pid":27443,"tid":27477,"ts":326461544533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":772440,"id":"0xaf88a6d4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461546669,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":772501,"id":"0xaf88a490f182217a"},
-{"pid":27443,"tid":27466,"ts":326461533057,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":391851},
-{"pid":27443,"tid":27466,"ts":326461533088,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":391881},
-{"pid":27443,"tid":27466,"ts":326461533088,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":391912,"id":"0xc4c1d70a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461533668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392003,"id":"0xaf88ab07f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461533668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":392003},
-{"pid":27443,"tid":27466,"ts":326461533698,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":392034,"id":"0xccc5a402"},
-{"pid":27443,"tid":27466,"ts":326461541023,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":392156},
-{"pid":27443,"tid":27466,"ts":326461541054,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":392186},
-{"pid":27443,"tid":27466,"ts":326461541054,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":392186,"id":"0xba464402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461541115,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":392247},
-{"pid":27443,"tid":27466,"ts":326461541115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":392278,"id":"0xaf88a496f182217a"},
-{"pid":27443,"tid":27466,"ts":326461541634,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":392369},
-{"pid":27443,"tid":27466,"ts":326461541664,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":63,"line":23},"dur":92,"tdur":91,"tts":392400},
-{"pid":27443,"tid":27466,"ts":326461541664,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":392400,"id":"0xba464502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461541695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":392430,"id":"0xaf88a6dbf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461541725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":392461,"id":"0xaf88a48af3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461544350,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":392522},
-{"pid":27443,"tid":27466,"ts":326461544380,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":62,"tts":392552},
-{"pid":27443,"tid":27466,"ts":326461544380,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":392552,"id":"0xba464602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461544411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":392583,"id":"0xaf88a497f182217a"},
-{"pid":27443,"tid":27466,"ts":326461546547,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":392675},
-{"pid":27443,"tid":27466,"ts":326461546578,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":392705},
-{"pid":27443,"tid":27466,"ts":326461546578,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":392705,"id":"0xba464802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461546639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":392766,"id":"0xaf88a490f182217a"},
-{"pid":27443,"tid":27466,"ts":326461550454,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":392858,"id":"0xaf88ab00f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461550484,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":392888},
-{"pid":27443,"tid":27466,"ts":326461550484,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":392888,"id":"0xccc5a602"},
-{"pid":27443,"tid":27466,"ts":326461551400,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":393010},
-{"pid":27443,"tid":27466,"ts":326461551431,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":393041},
-{"pid":27443,"tid":27466,"ts":326461551431,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":393041,"id":"0xba464902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461551461,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":393071},
-{"pid":27443,"tid":27466,"ts":326461551492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":393102,"id":"0xaf88a4aaf182217a"},
-{"pid":27443,"tid":27466,"ts":326461553201,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":393193,"id":"0xaf88ab01f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461553231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":393224},
-{"pid":27443,"tid":27466,"ts":326461553231,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":393224,"id":"0xccc5a706"},
-{"pid":27443,"tid":27466,"ts":326461553414,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":393315},
-{"pid":27443,"tid":27466,"ts":326461553445,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":393346},
-{"pid":27443,"tid":27466,"ts":326461553445,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":393346,"id":"0xc4c1da0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461553872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":393468,"id":"0xaf88ab02f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461553872,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":393468},
-{"pid":27443,"tid":27466,"ts":326461553872,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":393499,"id":"0xccc5a802"},
-{"pid":27443,"tid":27466,"ts":326461555917,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":393621},
-{"pid":27443,"tid":27466,"ts":326461555978,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":393682},
-{"pid":27443,"tid":27466,"ts":326461555978,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":393682,"id":"0xba464a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461556009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":393712,"id":"0xaf88a4abf182217a"},
-{"pid":27443,"tid":27466,"ts":326461560617,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":393804},
-{"pid":27443,"tid":27466,"ts":326461560678,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":393865},
-{"pid":27443,"tid":27466,"ts":326461560678,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":393865,"id":"0xba464b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461560709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":393895,"id":"0xaf88a4a5f182217a"},
-{"pid":27443,"tid":27466,"ts":326461565195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":394048,"id":"0xaf88ab03f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461565195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":394048},
-{"pid":27443,"tid":27466,"ts":326461565195,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":394048,"id":"0xccc5aa02"},
-{"pid":27443,"tid":27466,"ts":326461565958,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":394170},
-{"pid":27443,"tid":27466,"ts":326461565989,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":394201},
-{"pid":27443,"tid":27466,"ts":326461565989,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":394201,"id":"0xba464d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461566019,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":394231},
-{"pid":27443,"tid":27466,"ts":326461566050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":394262,"id":"0xaf88a4bdf182217a"},
-{"pid":27443,"tid":27466,"ts":326461568400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":394384,"id":"0xaf88ab1cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461568430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":394414},
-{"pid":27443,"tid":27466,"ts":326461568430,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":394414,"id":"0xccc5ac06"},
-{"pid":27443,"tid":27466,"ts":326461568614,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":394506},
-{"pid":27443,"tid":27466,"ts":326461568644,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":394536},
-{"pid":27443,"tid":27466,"ts":326461568644,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":394536,"id":"0xc4c1dd0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461568980,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":394658,"id":"0xaf88ab1df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461546700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":772531},
-{"pid":27443,"tid":27477,"ts":326461546730,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461542608.0,"frame_time_us":326461536885.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":123,"tdur":122,"tts":772562},
-{"pid":27443,"tid":27477,"ts":326461546730,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461542608.0,"frame_time_us":326461536885.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":123,"tdur":122,"tts":772562},
-{"pid":27443,"tid":27477,"ts":326461546822,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461553551},"dur":31,"tdur":31,"tts":772653},
-{"pid":27443,"tid":27477,"ts":326461546822,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":772653,"id":"0xaf88a491f182217a"},
-{"pid":27443,"tid":27477,"ts":326461547066,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":772745,"id":"0xaf88a492f182217a"},
-{"pid":27443,"tid":27477,"ts":326461547066,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1313,"tdur":1312,"tts":772745},
-{"pid":27443,"tid":27477,"ts":326461547066,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1282,"tdur":1282,"tts":772745},
-{"pid":27443,"tid":27477,"ts":326461547097,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":772775},
-{"pid":27443,"tid":27477,"ts":326461547097,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1251,"tdur":1252,"tts":772775},
-{"pid":27443,"tid":27477,"ts":326461547097,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1251,"tdur":1252,"tts":772775},
-{"pid":27443,"tid":27477,"ts":326461547127,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":772806},
-{"pid":27443,"tid":27477,"ts":326461547127,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":772806},
-{"pid":27443,"tid":27477,"ts":326461547127,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":772806,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461547158,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":772836},
-{"pid":27443,"tid":27477,"ts":326461547188,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":30,"tts":772867},
-{"pid":27443,"tid":27477,"ts":326461547310,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1038,"tdur":1038,"tts":772989},
-{"pid":27443,"tid":27477,"ts":326461547310,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":152},"dur":306,"tdur":305,"tts":772989},
-{"pid":27443,"tid":27477,"ts":326461547616,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":152},"dur":30,"tdur":31,"tts":773294},
-{"pid":27443,"tid":27477,"ts":326461547677,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":152},"tts":773355},
-{"pid":27443,"tid":27477,"ts":326461547921,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":773599},
-{"pid":27443,"tid":27477,"ts":326461547921,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":428,"tts":773599},
-{"pid":27443,"tid":27477,"ts":326461547951,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":773630},
-{"pid":27443,"tid":27477,"ts":326461548134,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":773813},
-{"pid":27443,"tid":27477,"ts":326461548134,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":773813},
-{"pid":27443,"tid":27477,"ts":326461548134,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":122,"tts":773844},
-{"pid":27443,"tid":27477,"ts":326461548165,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":773844},
-{"pid":27443,"tid":27477,"ts":326461548165,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":773844,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461548195,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":773874},
-{"pid":27443,"tid":27477,"ts":326461548226,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":773905},
-{"pid":27443,"tid":27477,"ts":326461548287,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":773966,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461548318,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":773996,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461548318,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":773996,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461548470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":774088,"id":"0xaf88a493f182217a"},
-{"pid":27443,"tid":27477,"ts":326461548470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":774118},
-{"pid":27443,"tid":27477,"ts":326461548501,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":774118},
-{"pid":27443,"tid":27477,"ts":326461548501,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":774149,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461548531,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":774149},
-{"pid":27443,"tid":27477,"ts":326461548531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":774149,"id":"0xaf88a4aef182217a"},
-{"pid":27443,"tid":27477,"ts":326461548562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":774179,"id":"0xaf88a4acf182217a"},
-{"pid":27443,"tid":27477,"ts":326461548562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":774179},
-{"pid":27443,"tid":27477,"ts":326461548592,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":30,"tts":774210},
-{"pid":27443,"tid":27477,"ts":326461548592,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":774210,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461548592,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":774210},
-{"pid":27443,"tid":27477,"ts":326461548623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":774240,"id":"0xaf88a4aff182217a"},
-{"pid":27443,"tid":27477,"ts":326461548653,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":774271,"id":"0xaf88a4adf182217a"},
-{"pid":27443,"tid":27477,"ts":326461548653,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":774271},
-{"pid":27443,"tid":27477,"ts":326461548653,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":31,"tts":774301},
-{"pid":27443,"tid":27477,"ts":326461548684,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":774301,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461548684,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":774301},
-{"pid":27443,"tid":27477,"ts":326461548714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":774332,"id":"0xaf88a4aef182217a"},
-{"pid":27443,"tid":27477,"ts":326461548714,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2503,"tdur":1740,"tts":774362},
-{"pid":27443,"tid":27477,"ts":326461548745,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2472,"tdur":1710,"tts":774362},
-{"pid":27443,"tid":27477,"ts":326461548745,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":774362},
-{"pid":27443,"tid":27477,"ts":326461548745,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":774393},
-{"pid":27443,"tid":27477,"ts":326461548775,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":774393},
-{"pid":27443,"tid":27477,"ts":326461548775,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":774393},
-{"pid":27443,"tid":27477,"ts":326461548897,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2289,"tdur":1557,"tts":774515},
-{"pid":27443,"tid":27477,"ts":326461548897,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2289,"tdur":1526,"tts":774546},
-{"pid":27443,"tid":27477,"ts":326461548928,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2228,"tdur":1495,"tts":774546},
-{"pid":27443,"tid":27477,"ts":326461548928,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":774546,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461549019,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774637},
-{"pid":27443,"tid":27477,"ts":326461549050,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774668},
-{"pid":27443,"tid":27477,"ts":326461549081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774698},
-{"pid":27443,"tid":27459,"ts":326461547921,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":63,"line":23},"dur":91,"tdur":91,"tts":7794445},
-{"pid":27443,"tid":27459,"ts":326461547921,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7794445},
-{"pid":27443,"tid":27459,"ts":326461548073,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7794597,"id":"0xaf88a48af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461548073,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7794597},
-{"pid":27443,"tid":27459,"ts":326461548104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7794628,"id":"0xaf88a6d9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461548104,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7794628},
-{"pid":27443,"tid":27459,"ts":326461548104,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7794628},
-{"pid":27443,"tid":27459,"ts":326461548165,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7794689,"id":"0xaf88a48bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461548165,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2777,"tdur":1618,"tts":7794689},
-{"pid":27443,"tid":27459,"ts":326461548195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7794719,"id":"0xaf88a485f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461548195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7794719,"id":"0xaf88a6daf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461548195,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2717,"tdur":1557,"tts":7794719},
-{"pid":27443,"tid":27459,"ts":326461548256,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2656,"tdur":1465,"tts":7794811},
-{"pid":27443,"tid":27459,"ts":326461548287,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7794811,"id":"0x30000008f"},
-{"pid":27443,"tid":27459,"ts":326461548318,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1983,"tdur":1251,"tts":7794842},
-{"pid":27443,"tid":27459,"ts":326461548318,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":7794842},
-{"pid":27443,"tid":27459,"ts":326461548592,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1709,"tdur":1221,"tts":7794872},
-{"pid":27443,"tid":27459,"ts":326461548653,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7794933},
-{"pid":27443,"tid":27459,"ts":326461548684,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7794994},
-{"pid":27443,"tid":27459,"ts":326461548745,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7795025},
-{"pid":27443,"tid":27459,"ts":326461548836,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7795055},
-{"pid":27443,"tid":27459,"ts":326461548897,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7795116},
-{"pid":27443,"tid":27459,"ts":326461549172,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7795208},
-{"pid":27443,"tid":27459,"ts":326461549233,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7795238},
-{"pid":27443,"tid":27459,"ts":326461549264,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1007,"tdur":793,"tts":7795269},
-{"pid":27443,"tid":27459,"ts":326461549508,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":732,"tdur":519,"tts":7795513},
-{"pid":27443,"tid":27459,"ts":326461549538,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7795544},
-{"pid":27443,"tid":27459,"ts":326461550088,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":112,"frame":"0x78c60000"}},"tts":7795910,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461550088,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7795910},
-{"pid":27443,"tid":27459,"ts":326461550149,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7795940},
-{"pid":27443,"tid":27459,"ts":326461550179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7795971,"id":"0xaf88a4a8f182217a"},
-{"pid":27443,"tid":27459,"ts":326461550210,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7796001},
-{"pid":27443,"tid":27459,"ts":326461550332,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":549,"tdur":122,"tts":7796123},
-{"pid":27443,"tid":27459,"ts":326461550362,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7796154,"id":"0xaf88ab00f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461550973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7796337,"id":"0xaf88a485f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461550973,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":7796337},
-{"pid":27443,"tid":27459,"ts":326461551186,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7796368},
-{"pid":27443,"tid":27459,"ts":326461551186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7796368,"id":"0xaf88a486f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461551217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7796398,"id":"0xaf88a6d4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461551217,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7796398},
-{"pid":27443,"tid":27459,"ts":326461551247,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7796429},
-{"pid":27443,"tid":27459,"ts":326461551309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7796490,"id":"0xaf88a486f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461551309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7796490},
-{"pid":27443,"tid":27459,"ts":326461551583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7796581,"id":"0xaf88a487f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461551583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12208,"tdur":10347,"tts":7796581},
-{"pid":27443,"tid":27459,"ts":326461551614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7796612,"id":"0xaf88a480f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461551614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7796612,"id":"0xaf88a6d6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461551644,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12147,"tdur":10286,"tts":7796642},
-{"pid":27443,"tid":27459,"ts":326461551644,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":153},"tts":7796642},
-{"pid":27443,"tid":27459,"ts":326461551644,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7796642},
-{"pid":27443,"tid":27459,"ts":326461551705,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":7752,"tdur":6379,"tts":7796703},
-{"pid":27443,"tid":27459,"ts":326461551736,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7796734},
-{"pid":27443,"tid":27459,"ts":326461551766,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":112,"frame":"0x78c60000"}},"dur":7661,"tdur":6288,"tts":7796764},
-{"pid":27443,"tid":27459,"ts":326461551858,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":7569,"tdur":6196,"tts":7796856},
-{"pid":27443,"tid":27459,"ts":326461551888,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7796886},
-{"pid":27443,"tid":27459,"ts":326461555887,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7799816},
-{"pid":27443,"tid":27459,"ts":326461555887,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":7799816},
-{"pid":27443,"tid":27459,"ts":326461556070,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7799969},
-{"pid":27443,"tid":27459,"ts":326461556131,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7800030},
-{"pid":27443,"tid":27459,"ts":326461556436,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7800335},
-{"pid":27443,"tid":27459,"ts":326461556527,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7800427},
-{"pid":27443,"tid":27459,"ts":326461556711,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7800610},
-{"pid":27443,"tid":27459,"ts":326461557840,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7801526},
-{"pid":27443,"tid":27459,"ts":326461558206,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7801892},
-{"pid":27443,"tid":27477,"ts":326461549081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":774698},
-{"pid":27443,"tid":27477,"ts":326461549111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":774729},
-{"pid":27443,"tid":27477,"ts":326461549142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774759},
-{"pid":27443,"tid":27477,"ts":326461549172,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774790},
-{"pid":27443,"tid":27477,"ts":326461549172,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":774790},
-{"pid":27443,"tid":27477,"ts":326461549203,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774820},
-{"pid":27443,"tid":27477,"ts":326461549203,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":774851},
-{"pid":27443,"tid":27477,"ts":326461549233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":774851},
-{"pid":27443,"tid":27477,"ts":326461549264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774881},
-{"pid":27443,"tid":27477,"ts":326461549264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":774881},
-{"pid":27443,"tid":27477,"ts":326461549294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774912},
-{"pid":27443,"tid":27477,"ts":326461549294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":774912},
-{"pid":27443,"tid":27477,"ts":326461549325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774942},
-{"pid":27443,"tid":27477,"ts":326461549325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":774973},
-{"pid":27443,"tid":27477,"ts":326461549355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":774973},
-{"pid":27443,"tid":27477,"ts":326461549386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775003},
-{"pid":27443,"tid":27477,"ts":326461549386,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":775003},
-{"pid":27443,"tid":27477,"ts":326461549416,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775034},
-{"pid":27443,"tid":27477,"ts":326461549416,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":775064},
-{"pid":27443,"tid":27477,"ts":326461549447,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":775064},
-{"pid":27443,"tid":27477,"ts":326461549477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775095},
-{"pid":27443,"tid":27477,"ts":326461549477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":775095},
-{"pid":27443,"tid":27477,"ts":326461549508,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":775125},
-{"pid":27443,"tid":27477,"ts":326461549538,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775156},
-{"pid":27443,"tid":27477,"ts":326461549569,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775186},
-{"pid":27443,"tid":27477,"ts":326461549569,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":775186},
-{"pid":27443,"tid":27477,"ts":326461549599,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775217},
-{"pid":27443,"tid":27477,"ts":326461549630,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775248},
-{"pid":27443,"tid":27477,"ts":326461549630,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":775248},
-{"pid":27443,"tid":27477,"ts":326461549660,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775278},
-{"pid":27443,"tid":27477,"ts":326461549660,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":775278},
-{"pid":27443,"tid":27477,"ts":326461549691,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":775309},
-{"pid":27443,"tid":27477,"ts":326461549721,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":775339},
-{"pid":27443,"tid":27477,"ts":326461549752,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":775370},
-{"pid":27443,"tid":27477,"ts":326461549782,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775400},
-{"pid":27443,"tid":27477,"ts":326461549813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775431},
-{"pid":27443,"tid":27477,"ts":326461549813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775431},
-{"pid":27443,"tid":27477,"ts":326461549844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":91,"tdur":61,"tts":775461},
-{"pid":27443,"tid":27477,"ts":326461549844,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":775461},
-{"pid":27443,"tid":27477,"ts":326461549935,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":153,"tdur":0,"tts":775522},
-{"pid":27443,"tid":27477,"ts":326461549935,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":775522},
-{"pid":27443,"tid":27477,"ts":326461550088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":775553},
-{"pid":27443,"tid":27477,"ts":326461550149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775583},
-{"pid":27443,"tid":27477,"ts":326461550271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775705},
-{"pid":27443,"tid":27477,"ts":326461550271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":775705},
-{"pid":27443,"tid":27477,"ts":326461550729,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":775766},
-{"pid":27443,"tid":27477,"ts":326461550790,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775797},
-{"pid":27443,"tid":27477,"ts":326461550790,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":775797},
-{"pid":27443,"tid":27477,"ts":326461550820,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":775827},
-{"pid":27443,"tid":27477,"ts":326461550851,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":775858},
-{"pid":27443,"tid":27477,"ts":326461551034,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":775919},
-{"pid":27443,"tid":27477,"ts":326461551095,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":775980},
-{"pid":27443,"tid":27477,"ts":326461551095,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":776011},
-{"pid":27443,"tid":27477,"ts":326461551125,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":776011},
-{"pid":27443,"tid":27477,"ts":326461551156,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":776041},
-{"pid":27443,"tid":27477,"ts":326461551186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":776072,"id":"0xaf88a4a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461551217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":776102,"id":"0xaf88a4aff182217a"},
-{"pid":27443,"tid":27477,"ts":326461551217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":152,"tts":776133},
-{"pid":27443,"tid":27477,"ts":326461551247,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":776133},
-{"pid":27443,"tid":27477,"ts":326461551247,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":776133},
-{"pid":27443,"tid":27477,"ts":326461551247,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":776163},
-{"pid":27443,"tid":27477,"ts":326461551278,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":776163},
-{"pid":27443,"tid":27477,"ts":326461551278,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":776163},
-{"pid":27443,"tid":27477,"ts":326461551370,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":776255},
-{"pid":27443,"tid":27477,"ts":326461551370,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":776255},
-{"pid":27443,"tid":27477,"ts":326461551431,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":776316,"id":"0xaf88a4a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461551431,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":152,"tts":776316},
-{"pid":27443,"tid":27477,"ts":326461551431,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":152,"tdur":152,"tts":776316},
-{"pid":27443,"tid":27477,"ts":326461551461,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":153},"tts":776346},
-{"pid":27443,"tid":27477,"ts":326461551522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":776407,"id":"0xaf88a6d6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461551522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":776407,"id":"0xaf88a487f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461551553,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":776438},
-{"pid":27443,"tid":27477,"ts":326461551583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":776468,"id":"0xaf88a4a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461551583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2350,"tdur":2045,"tts":776468},
-{"pid":27443,"tid":27477,"ts":326461551614,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2319,"tdur":2014,"tts":776499},
-{"pid":27443,"tid":27477,"ts":326461551614,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":776499},
-{"pid":27443,"tid":27477,"ts":326461551614,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2319,"tdur":2014,"tts":776499},
-{"pid":27443,"tid":27477,"ts":326461551644,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":152},"dur":1099,"tdur":1099,"tts":776529},
-{"pid":27443,"tid":27477,"ts":326461551675,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":152},"dur":305,"tdur":305,"tts":776560},
-{"pid":27443,"tid":27477,"ts":326461551980,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":152},"dur":61,"tdur":31,"tts":776865},
-{"pid":27443,"tid":27477,"ts":326461552041,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":152},"tts":776926},
-{"pid":27443,"tid":27477,"ts":326461552224,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":777109},
-{"pid":27443,"tid":27477,"ts":326461552255,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":777140},
-{"pid":27443,"tid":27477,"ts":326461552255,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":777140},
-{"pid":27443,"tid":27477,"ts":326461552255,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":777140},
-{"pid":27443,"tid":27477,"ts":326461552285,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":777170,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461552346,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":777262},
-{"pid":27443,"tid":27477,"ts":326461552712,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":777628},
-{"pid":27443,"tid":27477,"ts":326461552743,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":824,"tdur":519,"tts":777628},
-{"pid":27443,"tid":27477,"ts":326461552773,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":777659},
-{"pid":27443,"tid":27477,"ts":326461552773,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":733,"tdur":427,"tts":777659},
-{"pid":27443,"tid":27477,"ts":326461553079,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16700},"dur":0,"tdur":0,"tts":777964},
-{"pid":27443,"tid":27477,"ts":326461553109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":777994,"id":"0xaf88ab01f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461553567,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":778147,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461553598,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":778177,"id":"0x30000008e"},
-{"pid":27443,"tid":27477,"ts":326461553598,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":274,"tdur":275,"tts":778177},
-{"pid":27443,"tid":27477,"ts":326461553811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":778391,"id":"0xaf88ab02f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461553872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":778452,"id":"0xaf88a6d7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461553903,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":778483,"id":"0xaf88a481f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461553964,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461553},"tts":778544,"id":"0xaf88a491f182217a"},
-{"pid":27443,"tid":27477,"ts":326461553964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":778544},
-{"pid":27443,"tid":27477,"ts":326461553994,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":778574,"id":"0xaf88a4aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326461553994,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":122,"tts":778574},
-{"pid":27443,"tid":27477,"ts":326461553994,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":244,"tdur":122,"tts":778574},
-{"pid":27443,"tid":27477,"ts":326461554025,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":778605,"id":"0x300000090"},
-{"pid":27443,"tid":27477,"ts":326461554025,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":778605},
-{"pid":27443,"tid":27477,"ts":326461554055,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":778635,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461554086,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":778666,"id":"0xaf88a6d0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461554086,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":778666},
-{"pid":27443,"tid":27477,"ts":326461556070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":778757,"id":"0xaf88a4abf182217a"},
-{"pid":27443,"tid":27477,"ts":326461556070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":778757},
-{"pid":27443,"tid":27477,"ts":326461556131,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461559390.0,"frame_time_us":326461553567.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":778818},
-{"pid":27443,"tid":27477,"ts":326461556131,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461559390.0,"frame_time_us":326461553567.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":778818},
-{"pid":27443,"tid":27477,"ts":326461556192,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461570233},"dur":30,"tdur":0,"tts":778910},
-{"pid":27443,"tid":27477,"ts":326461556222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":778910,"id":"0xaf88a4a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461561045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":779002,"id":"0xaf88a4a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461561045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":779002},
-{"pid":27443,"tid":27477,"ts":326461561075,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":779032},
-{"pid":27443,"tid":27477,"ts":326461561106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":779063,"id":"0xaf88a6d1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461563456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":779124,"id":"0xaf88a4a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461563456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1251,"tdur":1251,"tts":779124},
-{"pid":27443,"tid":27477,"ts":326461563486,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1190,"tdur":1190,"tts":779154},
-{"pid":27443,"tid":27477,"ts":326461563486,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":779154},
-{"pid":27443,"tid":27477,"ts":326461563486,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1190,"tdur":1190,"tts":779154},
-{"pid":27443,"tid":27477,"ts":326461563517,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1159,"tdur":1159,"tts":779185},
-{"pid":27443,"tid":27477,"ts":326461563517,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":779185},
-{"pid":27443,"tid":27477,"ts":326461563517,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":779185},
-{"pid":27443,"tid":27477,"ts":326461563547,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":779215,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27459,"ts":326461559396,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7803021},
-{"pid":27443,"tid":27459,"ts":326461559457,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3419,"tdur":3205,"tts":7803082},
-{"pid":27443,"tid":27459,"ts":326461559518,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7803143},
-{"pid":27443,"tid":27459,"ts":326461559518,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7803143},
-{"pid":27443,"tid":27459,"ts":326461559549,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7803174},
-{"pid":27443,"tid":27459,"ts":326461560037,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7803662},
-{"pid":27443,"tid":27459,"ts":326461560037,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7803662},
-{"pid":27443,"tid":27459,"ts":326461560159,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7803662},
-{"pid":27443,"tid":27459,"ts":326461560159,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":7803662},
-{"pid":27443,"tid":27459,"ts":326461560251,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2625,"tdur":2564,"tts":7803723},
-{"pid":27443,"tid":27459,"ts":326461560281,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2412,"tdur":2381,"tts":7803723},
-{"pid":27443,"tid":27459,"ts":326461560312,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":580,"tdur":549,"tts":7803754},
-{"pid":27443,"tid":27459,"ts":326461560922,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":7804333},
-{"pid":27443,"tid":27459,"ts":326461561136,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7804547},
-{"pid":27443,"tid":27459,"ts":326461561258,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7804669},
-{"pid":27443,"tid":27459,"ts":326461561258,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1435,"tdur":1435,"tts":7804669},
-{"pid":27443,"tid":27459,"ts":326461562693,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":7806134},
-{"pid":27443,"tid":27459,"ts":326461562754,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":91,"tts":7806165},
-{"pid":27443,"tid":27459,"ts":326461562876,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":153},"dur":488,"tdur":488,"tts":7806287},
-{"pid":27443,"tid":27459,"ts":326461562906,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":458,"tts":7806317},
-{"pid":27443,"tid":27459,"ts":326461563120,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":30,"tdur":30,"tts":7806531},
-{"pid":27443,"tid":27459,"ts":326461563150,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":31,"tdur":31,"tts":7806561},
-{"pid":27443,"tid":27459,"ts":326461563181,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":0,"tdur":0,"tts":7806592},
-{"pid":27443,"tid":27459,"ts":326461563181,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":30,"tdur":30,"tts":7806592},
-{"pid":27443,"tid":27459,"ts":326461563211,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":0,"tdur":0,"tts":7806622},
-{"pid":27443,"tid":27459,"ts":326461563242,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":0,"tdur":0,"tts":7806653},
-{"pid":27443,"tid":27459,"ts":326461563242,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":30,"tdur":30,"tts":7806653},
-{"pid":27443,"tid":27459,"ts":326461563272,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":0,"tdur":0,"tts":7806683},
-{"pid":27443,"tid":27459,"ts":326461563272,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":31,"tdur":31,"tts":7806683},
-{"pid":27443,"tid":27459,"ts":326461563303,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":0,"tdur":0,"tts":7806714},
-{"pid":27443,"tid":27459,"ts":326461563334,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":0,"tdur":0,"tts":7806745},
-{"pid":27443,"tid":27459,"ts":326461563334,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":153},"dur":30,"tdur":30,"tts":7806745},
-{"pid":27443,"tid":27459,"ts":326461563364,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7806775,"id":"0x30000008f"},
-{"pid":27443,"tid":27459,"ts":326461563395,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":335,"tdur":61,"tts":7806806},
-{"pid":27443,"tid":27459,"ts":326461563395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7806806,"id":"0xaf88a4a6f182217a"},
-{"pid":27443,"tid":27459,"ts":326461563761,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7806897},
-{"pid":27443,"tid":27459,"ts":326461563822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461556},"tts":7806958,"id":"0xaf88a6b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461563852,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":7806989},
-{"pid":27443,"tid":27459,"ts":326461563883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7807019,"id":"0xaf88a482f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461563913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7807050,"id":"0xaf88a480f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461563913,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7807050},
-{"pid":27443,"tid":27459,"ts":326461563944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7807080,"id":"0xaf88a483f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461563944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7807080,"id":"0xaf88a6d7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461563974,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":7807111},
-{"pid":27443,"tid":27459,"ts":326461563974,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7807111},
-{"pid":27443,"tid":27459,"ts":326461564005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7807172,"id":"0xaf88a481f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461564036,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1159,"tdur":1160,"tts":7807172},
-{"pid":27443,"tid":27459,"ts":326461564036,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7807172,"id":"0xaf88a6d0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461564066,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1129,"tdur":1130,"tts":7807202},
-{"pid":27443,"tid":27459,"ts":326461564127,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1038,"tts":7807263},
-{"pid":27443,"tid":27459,"ts":326461564127,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7807263,"id":"0x300000090"},
-{"pid":27443,"tid":27459,"ts":326461564158,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":7807294},
-{"pid":27443,"tid":27459,"ts":326461564188,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":855,"tts":7807324},
-{"pid":27443,"tid":27459,"ts":326461564219,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7807355},
-{"pid":27443,"tid":27459,"ts":326461564280,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7807416},
-{"pid":27443,"tid":27459,"ts":326461564280,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7807446},
-{"pid":27443,"tid":27459,"ts":326461564341,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7807477},
-{"pid":27443,"tid":27459,"ts":326461564371,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7807508},
-{"pid":27443,"tid":27459,"ts":326461564402,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7807538},
-{"pid":27443,"tid":27459,"ts":326461564432,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7807569},
-{"pid":27443,"tid":27459,"ts":326461564463,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7807599},
-{"pid":27443,"tid":27459,"ts":326461564615,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":396,"tts":7807752},
-{"pid":27443,"tid":27459,"ts":326461564615,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7807782},
-{"pid":27443,"tid":27459,"ts":326461564921,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":113,"frame":"0x78c60000"}},"tts":7808057,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461563547,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":779215},
-{"pid":27443,"tid":27477,"ts":326461563578,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":31,"tts":779276},
-{"pid":27443,"tid":27477,"ts":326461563700,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":946,"tdur":916,"tts":779398},
-{"pid":27443,"tid":27477,"ts":326461563730,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":153},"dur":275,"tdur":275,"tts":779398},
-{"pid":27443,"tid":27477,"ts":326461564005,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":153},"dur":61,"tdur":30,"tts":779673},
-{"pid":27443,"tid":27477,"ts":326461564066,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":153},"tts":779734},
-{"pid":27443,"tid":27477,"ts":326461564280,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":779948},
-{"pid":27443,"tid":27477,"ts":326461564310,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":336,"tts":779978},
-{"pid":27443,"tid":27477,"ts":326461564310,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":779978},
-{"pid":27443,"tid":27477,"ts":326461564493,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":780161},
-{"pid":27443,"tid":27477,"ts":326461564493,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":780161},
-{"pid":27443,"tid":27477,"ts":326461564493,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":780161},
-{"pid":27443,"tid":27477,"ts":326461564524,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":780192},
-{"pid":27443,"tid":27477,"ts":326461564524,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":780192,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461564554,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":780222},
-{"pid":27443,"tid":27477,"ts":326461564554,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":780222},
-{"pid":27443,"tid":27477,"ts":326461564615,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":780283,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461564646,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":780314,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461564646,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":780314,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461564707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":780375,"id":"0xaf88a4a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461564707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":780375},
-{"pid":27443,"tid":27477,"ts":326461564737,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":31,"tts":780405},
-{"pid":27443,"tid":27477,"ts":326461564737,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":780405,"id":"0xaf88ae4cff2ed3d2"},{"pid":27443,"tid":27477,"ts":326461564737,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":0,"tts":780436},
-{"pid":27443,"tid":27477,"ts":326461564768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":780436,"id":"0xaf88a4a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461564799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":780466,"id":"0xaf88a4a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461564799,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":780466},
-{"pid":27443,"tid":27477,"ts":326461564799,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":62,"tts":780466},
-{"pid":27443,"tid":27477,"ts":326461564829,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":780497,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461564829,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":780497},
-{"pid":27443,"tid":27477,"ts":326461564860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":780528,"id":"0xaf88a4a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461564860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":780528,"id":"0xaf88a4a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461564890,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":780558},
-{"pid":27443,"tid":27477,"ts":326461564890,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":780558},
-{"pid":27443,"tid":27477,"ts":326461564890,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":780558,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461564890,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":780558},
-{"pid":27443,"tid":27477,"ts":326461564921,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":780589,"id":"0xaf88a4a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461564921,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1648,"tdur":1617,"tts":780589},
-{"pid":27443,"tid":27477,"ts":326461564951,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1618,"tdur":1587,"tts":780619},
-{"pid":27443,"tid":27477,"ts":326461564951,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":780619},
-{"pid":27443,"tid":27477,"ts":326461564951,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":780619},
-{"pid":27443,"tid":27477,"ts":326461564982,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":780650},
-{"pid":27443,"tid":27477,"ts":326461564982,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":780650},
-{"pid":27443,"tid":27477,"ts":326461565104,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1465,"tdur":1434,"tts":780772},
-{"pid":27443,"tid":27477,"ts":326461565134,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1435,"tdur":1404,"tts":780802},
-{"pid":27443,"tid":27477,"ts":326461565134,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1374,"tdur":1343,"tts":780802},
-{"pid":27443,"tid":27477,"ts":326461565165,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":780833,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461565256,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":780924},
-{"pid":27443,"tid":27477,"ts":326461565256,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":780924},
-{"pid":27443,"tid":27477,"ts":326461565287,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":780955},
-{"pid":27443,"tid":27477,"ts":326461565317,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":780985},
-{"pid":27443,"tid":27477,"ts":326461565317,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":780985},
-{"pid":27443,"tid":27477,"ts":326461565348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781016},
-{"pid":27443,"tid":27477,"ts":326461565348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":781016},
-{"pid":27443,"tid":27477,"ts":326461565378,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781046},
-{"pid":27443,"tid":27477,"ts":326461565409,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781077},
-{"pid":27443,"tid":27477,"ts":326461565409,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781077},
-{"pid":27443,"tid":27477,"ts":326461565439,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781107},
-{"pid":27443,"tid":27477,"ts":326461565439,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":781107},
-{"pid":27443,"tid":27477,"ts":326461565470,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":781138},
-{"pid":27443,"tid":27477,"ts":326461565500,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781168},
-{"pid":27443,"tid":27477,"ts":326461565531,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781199},
-{"pid":27443,"tid":27477,"ts":326461565531,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781199},
-{"pid":27443,"tid":27477,"ts":326461565562,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781230},
-{"pid":27443,"tid":27459,"ts":326461564921,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":30,"tts":7808057},
-{"pid":27443,"tid":27459,"ts":326461564951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7808087,"id":"0xaf88a4bcf182217a"},
-{"pid":27443,"tid":27459,"ts":326461564982,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7808118},
-{"pid":27443,"tid":27459,"ts":326461565073,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":7808240},
-{"pid":27443,"tid":27459,"ts":326461565104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7808240,"id":"0xaf88ab03f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461565226,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7808362,"id":"0xaf88a483f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461565226,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7808362},
-{"pid":27443,"tid":27459,"ts":326461565256,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7808393,"id":"0xaf88a49cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461565256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7808393,"id":"0xaf88a6d1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461565287,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7808423},
-{"pid":27443,"tid":27459,"ts":326461565287,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7808423},
-{"pid":27443,"tid":27459,"ts":326461565348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7808484,"id":"0xaf88a49cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461565348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7808484},
-{"pid":27443,"tid":27459,"ts":326461566904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7808545,"id":"0xaf88a49df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461566935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11018,"tdur":9156,"tts":7808576},
-{"pid":27443,"tid":27459,"ts":326461566935,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7808576,"id":"0xaf88a49ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461566965,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7808606,"id":"0xaf88a6d2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461566965,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10957,"tdur":9095,"tts":7808606},
-{"pid":27443,"tid":27459,"ts":326461566965,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":154},"tts":7808606},
-{"pid":27443,"tid":27459,"ts":326461566996,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":7808637},
-{"pid":27443,"tid":27459,"ts":326461567026,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6471,"tdur":4853,"tts":7808667},
-{"pid":27443,"tid":27459,"ts":326461567057,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7808698},
-{"pid":27443,"tid":27459,"ts":326461567118,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":113,"frame":"0x78c60000"}},"dur":6379,"tdur":4761,"tts":7808759},
-{"pid":27443,"tid":27459,"ts":326461567179,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6318,"tdur":4700,"tts":7808820},
-{"pid":27443,"tid":27459,"ts":326461567210,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7808850},
-{"pid":27443,"tid":27459,"ts":326461573466,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7813490},
-{"pid":27443,"tid":27459,"ts":326461573527,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3510,"tdur":3509,"tts":7813551},
-{"pid":27443,"tid":27459,"ts":326461573558,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7813581},
-{"pid":27443,"tid":27459,"ts":326461573588,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7813612},
-{"pid":27443,"tid":27459,"ts":326461573588,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7813612},
-{"pid":27443,"tid":27459,"ts":326461574016,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7814039},
-{"pid":27443,"tid":27459,"ts":326461574046,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7814069},
-{"pid":27443,"tid":27459,"ts":326461574077,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2960,"tdur":2960,"tts":7814100},
-{"pid":27443,"tid":27459,"ts":326461574107,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2747,"tdur":2747,"tts":7814130},
-{"pid":27443,"tid":27459,"ts":326461574107,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":672,"tdur":672,"tts":7814130},
-{"pid":27443,"tid":27459,"ts":326461574779,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":7814802},
-{"pid":27443,"tid":27459,"ts":326461575023,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":152,"tdur":153,"tts":7815046},
-{"pid":27443,"tid":27459,"ts":326461575175,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":7815199},
-{"pid":27443,"tid":27459,"ts":326461575206,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1648,"tdur":1618,"tts":7815229},
-{"pid":27443,"tid":27459,"ts":326461576854,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":7816908},
-{"pid":27443,"tid":27459,"ts":326461576915,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":7816938},
-{"pid":27443,"tid":27459,"ts":326461577037,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":154},"dur":489,"tdur":489,"tts":7817060},
-{"pid":27443,"tid":27459,"ts":326461577068,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":458,"tdur":458,"tts":7817091},
-{"pid":27443,"tid":27459,"ts":326461577281,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":31,"tdur":30,"tts":7817305},
-{"pid":27443,"tid":27459,"ts":326461577312,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":30,"tdur":31,"tts":7817335},
-{"pid":27443,"tid":27459,"ts":326461577342,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":0,"tdur":0,"tts":7817366},
-{"pid":27443,"tid":27459,"ts":326461577342,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":31,"tdur":30,"tts":7817366},
-{"pid":27443,"tid":27459,"ts":326461577373,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":30,"tdur":31,"tts":7817396},
-{"pid":27443,"tid":27459,"ts":326461577403,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":0,"tdur":0,"tts":7817427},
-{"pid":27443,"tid":27459,"ts":326461577403,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":31,"tdur":30,"tts":7817427},
-{"pid":27443,"tid":27459,"ts":326461577434,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":30,"tdur":31,"tts":7817457},
-{"pid":27443,"tid":27459,"ts":326461577464,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":0,"tdur":0,"tts":7817488},
-{"pid":27443,"tid":27459,"ts":326461577464,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":31,"tdur":30,"tts":7817488},
-{"pid":27443,"tid":27459,"ts":326461577495,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":0,"tdur":0,"tts":7817518},
-{"pid":27443,"tid":27459,"ts":326461577526,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":154},"dur":0,"tdur":0,"tts":7817549},
-{"pid":27443,"tid":27459,"ts":326461577556,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7817579,"id":"0x300000090"},
-{"pid":27443,"tid":27459,"ts":326461577556,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":92,"tts":7817579},
-{"pid":27443,"tid":27459,"ts":326461577587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7817610,"id":"0xaf88a4baf182217a"},
-{"pid":27443,"tid":27459,"ts":326461577922,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7817701},
-{"pid":27443,"tid":27459,"ts":326461577983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7817762,"id":"0xaf88a49ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461577983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1191,"tts":7817762},
-{"pid":27443,"tid":27459,"ts":326461578014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7817793,"id":"0xaf88a498f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461578044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7817823,"id":"0xaf88a6d3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461578044,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1130,"tdur":1130,"tts":7817823},
-{"pid":27443,"tid":27477,"ts":326461565562,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":781230},
-{"pid":27443,"tid":27477,"ts":326461565592,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":781260},
-{"pid":27443,"tid":27477,"ts":326461565623,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781291},
-{"pid":27443,"tid":27477,"ts":326461565653,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781321},
-{"pid":27443,"tid":27477,"ts":326461565653,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":781321},
-{"pid":27443,"tid":27477,"ts":326461565684,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781352},
-{"pid":27443,"tid":27477,"ts":326461565684,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":781352},
-{"pid":27443,"tid":27477,"ts":326461565714,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781382},
-{"pid":27443,"tid":27477,"ts":326461565745,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781413},
-{"pid":27443,"tid":27477,"ts":326461565745,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":781413},
-{"pid":27443,"tid":27477,"ts":326461565775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781443},
-{"pid":27443,"tid":27477,"ts":326461565775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":781443},
-{"pid":27443,"tid":27477,"ts":326461565775,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":781443},
-{"pid":27443,"tid":27477,"ts":326461565836,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781474},
-{"pid":27443,"tid":27477,"ts":326461565867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781504},
-{"pid":27443,"tid":27477,"ts":326461565867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":781504},
-{"pid":27443,"tid":27477,"ts":326461565897,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":781535},
-{"pid":27443,"tid":27477,"ts":326461565928,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781565},
-{"pid":27443,"tid":27477,"ts":326461565928,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":781565},
-{"pid":27443,"tid":27477,"ts":326461565958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781596},
-{"pid":27443,"tid":27477,"ts":326461565958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":781596},
-{"pid":27443,"tid":27477,"ts":326461565989,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781626},
-{"pid":27443,"tid":27477,"ts":326461566019,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781657},
-{"pid":27443,"tid":27477,"ts":326461566050,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781687},
-{"pid":27443,"tid":27477,"ts":326461566050,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":781687},
-{"pid":27443,"tid":27477,"ts":326461566080,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781718},
-{"pid":27443,"tid":27477,"ts":326461566111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781748},
-{"pid":27443,"tid":27477,"ts":326461566111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":781748},
-{"pid":27443,"tid":27477,"ts":326461566202,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781840},
-{"pid":27443,"tid":27477,"ts":326461566233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781870},
-{"pid":27443,"tid":27477,"ts":326461566263,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781901},
-{"pid":27443,"tid":27477,"ts":326461566294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781931},
-{"pid":27443,"tid":27477,"ts":326461566294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":781962},
-{"pid":27443,"tid":27477,"ts":326461566325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":781962},
-{"pid":27443,"tid":27477,"ts":326461566355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":781993},
-{"pid":27443,"tid":27477,"ts":326461566386,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":782023},
-{"pid":27443,"tid":27477,"ts":326461566447,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":782084},
-{"pid":27443,"tid":27477,"ts":326461566477,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":782115},
-{"pid":27443,"tid":27477,"ts":326461566477,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":782115},
-{"pid":27443,"tid":27477,"ts":326461566538,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":782176},
-{"pid":27443,"tid":27477,"ts":326461566538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":782176,"id":"0xaf88a4bef182217a"},
-{"pid":27443,"tid":27477,"ts":326461566599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":782237,"id":"0xaf88a4a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461566599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":782237},
-{"pid":27443,"tid":27477,"ts":326461566599,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":782237},
-{"pid":27443,"tid":27477,"ts":326461566630,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":782267},
-{"pid":27443,"tid":27477,"ts":326461566630,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":782267},
-{"pid":27443,"tid":27477,"ts":326461566630,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":61,"tts":782267},
-{"pid":27443,"tid":27477,"ts":326461566660,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":782298},
-{"pid":27443,"tid":27477,"ts":326461566721,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":782359},
-{"pid":27443,"tid":27477,"ts":326461566721,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":782359},
-{"pid":27443,"tid":27477,"ts":326461566752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":782389,"id":"0xaf88a4bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461566752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":152,"tdur":153,"tts":782389},
-{"pid":27443,"tid":27477,"ts":326461566752,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":152,"tdur":153,"tts":782389},
-{"pid":27443,"tid":27477,"ts":326461566782,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":154},"tts":782420},
-{"pid":27443,"tid":27477,"ts":326461566843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":782481,"id":"0xaf88a6d2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461566874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":782511,"id":"0xaf88a49df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461566904,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":782542},
-{"pid":27443,"tid":27477,"ts":326461566904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":782542,"id":"0xaf88a4bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461566935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":782572},
-{"pid":27443,"tid":27477,"ts":326461566935,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":782572},
-{"pid":27443,"tid":27477,"ts":326461566965,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":782603,"id":"0x300000091"},
-{"pid":27443,"tid":27477,"ts":326461566965,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":782603},
-{"pid":27443,"tid":27477,"ts":326461566996,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":782633,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461566996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":782664,"id":"0xaf88a6d3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461567026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":782664,"id":"0xaf88a49ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461567057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":782694,"id":"0xaf88a4bef182217a"},
-{"pid":27443,"tid":27477,"ts":326461567088,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1953,"tdur":1648,"tts":782725},
-{"pid":27443,"tid":27477,"ts":326461567088,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1953,"tdur":1648,"tts":782725},
-{"pid":27443,"tid":27477,"ts":326461567088,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":31,"tts":782725},
-{"pid":27443,"tid":27477,"ts":326461567118,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1923,"tdur":1617,"tts":782756},
-{"pid":27443,"tid":27477,"ts":326461567118,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":153},"dur":1038,"tdur":1037,"tts":782756},
-{"pid":27443,"tid":27477,"ts":326461567149,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":153},"dur":305,"tdur":275,"tts":782786},
-{"pid":27443,"tid":27477,"ts":326461567454,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":153},"dur":30,"tdur":31,"tts":783091},
-{"pid":27443,"tid":27477,"ts":326461567484,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":153},"tts":783122},
-{"pid":27443,"tid":27477,"ts":326461567698,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":783335},
-{"pid":27443,"tid":27477,"ts":326461567698,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":783335},
-{"pid":27443,"tid":27477,"ts":326461567698,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":783335},
-{"pid":27443,"tid":27477,"ts":326461567728,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":783366},
-{"pid":27443,"tid":27477,"ts":326461567728,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":783366,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461567820,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":783457},
-{"pid":27443,"tid":27477,"ts":326461568125,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":783763},
-{"pid":27443,"tid":27477,"ts":326461568156,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":610,"tdur":305,"tts":783793},
-{"pid":27443,"tid":27477,"ts":326461568156,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":783793},
-{"pid":27443,"tid":27477,"ts":326461568186,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":213,"tts":783824},
-{"pid":27443,"tid":27477,"ts":326461568278,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16700},"dur":30,"tdur":31,"tts":783915},
-{"pid":27443,"tid":27477,"ts":326461568308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":783946,"id":"0xaf88ab1cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461568736,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":784068,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461568766,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":784129,"id":"0x30000008f"},
-{"pid":27443,"tid":27477,"ts":326461568797,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":784129},
-{"pid":27443,"tid":27477,"ts":326461568919,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":784251,"id":"0xaf88ab1df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461569010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":784343,"id":"0xaf88a6ecf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461570384,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461570},"tts":784465,"id":"0xaf88a4a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461570414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":30,"tts":784465},
-{"pid":27443,"tid":27477,"ts":326461572825,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":784526,"id":"0xaf88a4bff182217a"},
-{"pid":27443,"tid":27477,"ts":326461572856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":784556},
-{"pid":27443,"tid":27477,"ts":326461572886,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461579059.0,"frame_time_us":326461570249.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":184,"tdur":183,"tts":784587},
-{"pid":27443,"tid":27477,"ts":326461572917,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461579059.0,"frame_time_us":326461570249.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":153,"tdur":153,"tts":784617},
-{"pid":27443,"tid":27477,"ts":326461573008,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461586915},"dur":62,"tdur":31,"tts":784739},
-{"pid":27443,"tid":27477,"ts":326461573039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":784739,"id":"0xaf88a4b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461576915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":784861,"id":"0xaf88a4b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461576915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":784892},
-{"pid":27443,"tid":27477,"ts":326461576976,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":784922},
-{"pid":27443,"tid":27477,"ts":326461576976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":784922,"id":"0xaf88a6edf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461577617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":785014,"id":"0xaf88a4baf182217a"},
-{"pid":27443,"tid":27477,"ts":326461577617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1251,"tdur":1251,"tts":785014},
-{"pid":27443,"tid":27477,"ts":326461577648,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1220,"tdur":1220,"tts":785045},
-{"pid":27443,"tid":27477,"ts":326461577648,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":785045},
-{"pid":27443,"tid":27477,"ts":326461577648,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1220,"tdur":1220,"tts":785045},
-{"pid":27443,"tid":27477,"ts":326461577678,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1160,"tdur":1160,"tts":785075},
-{"pid":27443,"tid":27477,"ts":326461577678,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":785075},
-{"pid":27443,"tid":27477,"ts":326461577678,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":785075},
-{"pid":27443,"tid":27477,"ts":326461577709,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":785106,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461577709,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":785106},
-{"pid":27443,"tid":27477,"ts":326461577739,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":785136},
-{"pid":27443,"tid":27477,"ts":326461577861,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":977,"tdur":977,"tts":785258},
-{"pid":27443,"tid":27477,"ts":326461577892,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":154},"dur":274,"tdur":274,"tts":785289},
-{"pid":27443,"tid":27477,"ts":326461578166,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":154},"dur":31,"tdur":31,"tts":785563},
-{"pid":27443,"tid":27477,"ts":326461578227,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":154},"tts":785624},
-{"pid":27443,"tid":27477,"ts":326461578441,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":785838},
-{"pid":27443,"tid":27477,"ts":326461578472,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":785869},
-{"pid":27443,"tid":27477,"ts":326461578472,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":785869},
-{"pid":27443,"tid":27477,"ts":326461578624,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":786021},
-{"pid":27443,"tid":27477,"ts":326461578655,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":786052},
-{"pid":27443,"tid":27477,"ts":326461578655,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":122,"tts":786052},
-{"pid":27443,"tid":27477,"ts":326461578655,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":786052},
-{"pid":27443,"tid":27477,"ts":326461578685,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":786082,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461578685,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":786082},
-{"pid":27443,"tid":27477,"ts":326461578716,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":786113},
-{"pid":27443,"tid":27466,"ts":326461569010,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":394658},
-{"pid":27443,"tid":27466,"ts":326461569010,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":394658,"id":"0xccc5ad02"},
-{"pid":27443,"tid":27466,"ts":326461572673,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":394780},
-{"pid":27443,"tid":27466,"ts":326461572734,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":394842},
-{"pid":27443,"tid":27466,"ts":326461572734,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":394842,"id":"0xba464e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461572764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":394872,"id":"0xaf88a4bff182217a"},
-{"pid":27443,"tid":27466,"ts":326461576793,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":394994},
-{"pid":27443,"tid":27466,"ts":326461576824,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":395025},
-{"pid":27443,"tid":27466,"ts":326461576824,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395025,"id":"0xba465102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461576854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":395055,"id":"0xaf88a4b9f182217a"},
-{"pid":27443,"tid":27466,"ts":326461579143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395208,"id":"0xaf88ab1ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461579174,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":395208},
-{"pid":27443,"tid":27466,"ts":326461579174,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395208,"id":"0xccc5ae02"},
-{"pid":27443,"tid":27466,"ts":326461583569,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395330,"id":"0xaf88ab1ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461583599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":395360},
-{"pid":27443,"tid":27466,"ts":326461583599,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395360,"id":"0xccc5af02"},
-{"pid":27443,"tid":27466,"ts":326461583660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395421,"id":"0xaf88ab18f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461583660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":395421},
-{"pid":27443,"tid":27466,"ts":326461583691,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395452,"id":"0xccc5b006"},
-{"pid":27443,"tid":27466,"ts":326461583965,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":395513},
-{"pid":27443,"tid":27466,"ts":326461583996,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":395543},
-{"pid":27443,"tid":27466,"ts":326461583996,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395543,"id":"0xc4c1e20a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461584698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":395666,"id":"0xaf88ab19f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461584698,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":395666},
-{"pid":27443,"tid":27466,"ts":326461584728,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395696,"id":"0xccc5b102"},
-{"pid":27443,"tid":27466,"ts":326461585186,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":395788},
-{"pid":27443,"tid":27466,"ts":326461585217,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":395818},
-{"pid":27443,"tid":27466,"ts":326461585217,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":395818,"id":"0xba465302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461585247,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":395849},
-{"pid":27443,"tid":27466,"ts":326461585278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":395879,"id":"0xaf88a4b2f182217a"},
-{"pid":27443,"tid":27466,"ts":326461593152,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":395971},
-{"pid":27443,"tid":27466,"ts":326461593213,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":396032},
-{"pid":27443,"tid":27466,"ts":326461593213,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396032,"id":"0xba465402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461593274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":396093,"id":"0xaf88a54cf182217a"},
-{"pid":27443,"tid":27466,"ts":326461594190,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":396123},
-{"pid":27443,"tid":27466,"ts":326461594220,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":396154},
-{"pid":27443,"tid":27466,"ts":326461594251,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396184,"id":"0xba465502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461594251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":396215,"id":"0xaf88a54df182217a"},
-{"pid":27443,"tid":27466,"ts":326461595014,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":396276,"id":"0xaf88ab1af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461595014,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":396276},
-{"pid":27443,"tid":27466,"ts":326461595044,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396306,"id":"0xccc5b302"},
-{"pid":27443,"tid":27466,"ts":326461595685,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":396398},
-{"pid":27443,"tid":27466,"ts":326461595716,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":396429},
-{"pid":27443,"tid":27466,"ts":326461595716,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396429,"id":"0xba465702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461595746,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":31,"tts":396459},
-{"pid":27443,"tid":27466,"ts":326461595777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":396490,"id":"0xaf88a545f182217a"},
-{"pid":27443,"tid":27466,"ts":326461598310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":396581,"id":"0xaf88ab1bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461598310,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":396581},
-{"pid":27443,"tid":27466,"ts":326461598310,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396581,"id":"0xccc5b506"},
-{"pid":27443,"tid":27466,"ts":326461598524,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":61,"tts":396703},
-{"pid":27443,"tid":27466,"ts":326461598554,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":396703},
-{"pid":27443,"tid":27466,"ts":326461598585,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396734,"id":"0xc4c1e40a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461599012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":396795,"id":"0xaf88ab14f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461599042,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":428,"tdur":92,"tts":396825},
-{"pid":27443,"tid":27466,"ts":326461599042,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":396825,"id":"0xccc5b602"},
-{"pid":27443,"tid":27466,"ts":326461606886,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":396978},
-{"pid":27443,"tid":27466,"ts":326461606947,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":397008},
-{"pid":27443,"tid":27466,"ts":326461606947,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397008,"id":"0xba465802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461607008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":397070,"id":"0xaf88a547f182217a"},
-{"pid":27443,"tid":27466,"ts":326461608534,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":397161},
-{"pid":27443,"tid":27466,"ts":326461608595,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":397192},
-{"pid":27443,"tid":27466,"ts":326461608595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397192,"id":"0xba465902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461608626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":397222,"id":"0xaf88a541f182217a"},
-{"pid":27443,"tid":27466,"ts":326461610976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":397344,"id":"0xaf88ab15f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461578105,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1038,"tts":7817884},
-{"pid":27443,"tid":27459,"ts":326461578136,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7817915,"id":"0x300000091"},
-{"pid":27443,"tid":27459,"ts":326461578136,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":916,"tts":7817915},
-{"pid":27443,"tid":27459,"ts":326461578166,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":886,"tdur":886,"tts":7817945},
-{"pid":27443,"tid":27459,"ts":326461578227,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7818007},
-{"pid":27443,"tid":27459,"ts":326461578258,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7818037},
-{"pid":27443,"tid":27459,"ts":326461578289,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7818068},
-{"pid":27443,"tid":27459,"ts":326461578319,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7818098},
-{"pid":27443,"tid":27459,"ts":326461578350,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7818129},
-{"pid":27443,"tid":27459,"ts":326461578380,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7818159},
-{"pid":27443,"tid":27459,"ts":326461578411,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7818190},
-{"pid":27443,"tid":27459,"ts":326461578441,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7818220},
-{"pid":27443,"tid":27459,"ts":326461578563,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":397,"tts":7818373},
-{"pid":27443,"tid":27459,"ts":326461578594,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7818373},
-{"pid":27443,"tid":27459,"ts":326461578899,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":114,"frame":"0x78c60000"}},"tts":7818678,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461578929,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":7818708},
-{"pid":27443,"tid":27459,"ts":326461578929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7818708,"id":"0xaf88a4bbf182217a"},
-{"pid":27443,"tid":27459,"ts":326461578990,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7818770},
-{"pid":27443,"tid":27459,"ts":326461579082,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7818861},
-{"pid":27443,"tid":27459,"ts":326461579082,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7818861,"id":"0xaf88ab1ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461579204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7818983,"id":"0xaf88a49ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461579204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7818983},
-{"pid":27443,"tid":27459,"ts":326461579235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7819014,"id":"0xaf88a6ecf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461579235,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7819014},
-{"pid":27443,"tid":27459,"ts":326461579265,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7819044},
-{"pid":27443,"tid":27459,"ts":326461579296,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7819075,"id":"0xaf88a498f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461579296,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7819075},
-{"pid":27443,"tid":27459,"ts":326461579326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7819105,"id":"0xaf88a499f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461579326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7819105,"id":"0xaf88a6edf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461579357,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":0,"tts":7819136},
-{"pid":27443,"tid":27459,"ts":326461579357,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7819136},
-{"pid":27443,"tid":27459,"ts":326461579418,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7819197,"id":"0xaf88a499f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461579418,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7819197},
-{"pid":27443,"tid":27459,"ts":326461581829,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7819349,"id":"0xaf88a49af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461581829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11781,"tdur":9859,"tts":7819349},
-{"pid":27443,"tid":27459,"ts":326461581859,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7819380,"id":"0xaf88a49bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461581859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7819380,"id":"0xaf88a6eef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461581890,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11720,"tdur":9798,"tts":7819410},
-{"pid":27443,"tid":27459,"ts":326461581890,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":155},"tts":7819410},
-{"pid":27443,"tid":27459,"ts":326461581890,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7819410},
-{"pid":27443,"tid":27459,"ts":326461581951,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":5799,"tdur":5035,"tts":7819472},
-{"pid":27443,"tid":27459,"ts":326461581981,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":123,"tdur":31,"tts":7819502},
-{"pid":27443,"tid":27459,"ts":326461582165,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":114,"frame":"0x78c60000"}},"dur":5554,"tdur":4883,"tts":7819594},
-{"pid":27443,"tid":27459,"ts":326461582317,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5402,"tdur":4761,"tts":7819716},
-{"pid":27443,"tid":27459,"ts":326461582348,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7819746},
-{"pid":27443,"tid":27459,"ts":326461587689,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7824446},
-{"pid":27443,"tid":27459,"ts":326461587750,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4914,"tdur":3968,"tts":7824507},
-{"pid":27443,"tid":27459,"ts":326461587811,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7824568},
-{"pid":27443,"tid":27459,"ts":326461587811,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7824599},
-{"pid":27443,"tid":27459,"ts":326461587841,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7824599},
-{"pid":27443,"tid":27459,"ts":326461588421,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7825179},
-{"pid":27443,"tid":27459,"ts":326461588452,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7825209},
-{"pid":27443,"tid":27459,"ts":326461588482,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4151,"tdur":3205,"tts":7825270},
-{"pid":27443,"tid":27459,"ts":326461588513,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3906,"tdur":2991,"tts":7825270},
-{"pid":27443,"tid":27459,"ts":326461588543,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":641,"tdur":641,"tts":7825301},
-{"pid":27443,"tid":27459,"ts":326461589184,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":7825942},
-{"pid":27443,"tid":27459,"ts":326461589428,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7826186},
-{"pid":27443,"tid":27459,"ts":326461589520,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":0,"tts":7826308},
-{"pid":27443,"tid":27459,"ts":326461589551,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2868,"tdur":1953,"tts":7826308},
-{"pid":27443,"tid":27459,"ts":326461592450,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":7828292},
-{"pid":27443,"tid":27459,"ts":326461592480,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":153,"tdur":122,"tts":7828353},
-{"pid":27443,"tid":27459,"ts":326461592664,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":155},"dur":549,"tdur":518,"tts":7828506},
-{"pid":27443,"tid":27459,"ts":326461592664,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":518,"tdur":518,"tts":7828506},
-{"pid":27443,"tid":27459,"ts":326461592938,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":31,"tdur":0,"tts":7828780},
-{"pid":27443,"tid":27477,"ts":326461578777,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":786174,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461578807,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":786204,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461578807,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":786204,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461578990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":786326,"id":"0xaf88a4bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461578990,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":786326},
-{"pid":27443,"tid":27477,"ts":326461578990,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":31,"tts":786326},
-{"pid":27443,"tid":27477,"ts":326461579479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":786357,"id":"0xaf88a4b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461579509,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":786387},
-{"pid":27443,"tid":27477,"ts":326461579509,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":786387},
-{"pid":27443,"tid":27477,"ts":326461579540,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":786418,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461579540,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":786418},
-{"pid":27443,"tid":27477,"ts":326461579540,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":786418,"id":"0xaf88a4b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461579570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":786448,"id":"0xaf88a4b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461579570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":786448},
-{"pid":27443,"tid":27477,"ts":326461579601,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":786479},
-{"pid":27443,"tid":27477,"ts":326461579601,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":786479,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461579601,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":786479},
-{"pid":27443,"tid":27477,"ts":326461579631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":786510,"id":"0xaf88a4b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461579631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":786540,"id":"0xaf88a4b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461579662,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":786540},
-{"pid":27443,"tid":27477,"ts":326461579662,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":786540},
-{"pid":27443,"tid":27477,"ts":326461579662,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":786540,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461579662,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":786571},
-{"pid":27443,"tid":27477,"ts":326461579692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":786571,"id":"0xaf88a4b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461579692,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2167,"tdur":1861,"tts":786571},
-{"pid":27443,"tid":27477,"ts":326461579723,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2106,"tdur":1801,"tts":786601},
-{"pid":27443,"tid":27477,"ts":326461579723,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":786601},
-{"pid":27443,"tid":27477,"ts":326461579723,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":786601},
-{"pid":27443,"tid":27477,"ts":326461579753,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":123,"tdur":122,"tts":786632},
-{"pid":27443,"tid":27477,"ts":326461579753,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":786632},
-{"pid":27443,"tid":27477,"ts":326461579876,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1953,"tdur":1648,"tts":786754},
-{"pid":27443,"tid":27477,"ts":326461579876,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1953,"tdur":1618,"tts":786784},
-{"pid":27443,"tid":27477,"ts":326461579906,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1740,"tdur":1435,"tts":786784},
-{"pid":27443,"tid":27477,"ts":326461579906,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":786784,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461579998,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":786876},
-{"pid":27443,"tid":27477,"ts":326461580059,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":786937},
-{"pid":27443,"tid":27477,"ts":326461580089,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":786967},
-{"pid":27443,"tid":27477,"ts":326461580089,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":786967},
-{"pid":27443,"tid":27477,"ts":326461580120,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":786998},
-{"pid":27443,"tid":27477,"ts":326461580150,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787028},
-{"pid":27443,"tid":27477,"ts":326461580150,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787028},
-{"pid":27443,"tid":27477,"ts":326461580181,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787059},
-{"pid":27443,"tid":27477,"ts":326461580181,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787059},
-{"pid":27443,"tid":27477,"ts":326461580211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787089},
-{"pid":27443,"tid":27477,"ts":326461580211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":787120},
-{"pid":27443,"tid":27477,"ts":326461580242,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787120},
-{"pid":27443,"tid":27477,"ts":326461580272,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787150},
-{"pid":27443,"tid":27477,"ts":326461580272,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787150},
-{"pid":27443,"tid":27477,"ts":326461580303,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787181},
-{"pid":27443,"tid":27477,"ts":326461580303,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787181},
-{"pid":27443,"tid":27477,"ts":326461580333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787211},
-{"pid":27443,"tid":27477,"ts":326461580364,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787242},
-{"pid":27443,"tid":27477,"ts":326461580364,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":787242},
-{"pid":27443,"tid":27477,"ts":326461580394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787273},
-{"pid":27443,"tid":27477,"ts":326461580425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787303},
-{"pid":27443,"tid":27477,"ts":326461580425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787303},
-{"pid":27443,"tid":27477,"ts":326461580455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787334},
-{"pid":27443,"tid":27477,"ts":326461580455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":123,"tdur":30,"tts":787334},
-{"pid":27443,"tid":27477,"ts":326461580455,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":787334},
-{"pid":27443,"tid":27477,"ts":326461580608,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":244,"tdur":30,"tts":787395},
-{"pid":27443,"tid":27477,"ts":326461580608,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":787395},
-{"pid":27443,"tid":27477,"ts":326461580852,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":787456},
-{"pid":27443,"tid":27477,"ts":326461580883,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787456},
-{"pid":27443,"tid":27477,"ts":326461580913,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787486},
-{"pid":27443,"tid":27477,"ts":326461580944,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787517},
-{"pid":27443,"tid":27477,"ts":326461580974,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787547},
-{"pid":27443,"tid":27477,"ts":326461581005,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787578},
-{"pid":27443,"tid":27477,"ts":326461581035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787608},
-{"pid":27443,"tid":27477,"ts":326461581035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787608},
-{"pid":27443,"tid":27477,"ts":326461581066,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787639},
-{"pid":27443,"tid":27477,"ts":326461581096,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787669},
-{"pid":27443,"tid":27477,"ts":326461581127,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787700},
-{"pid":27443,"tid":27477,"ts":326461581127,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":787700},
-{"pid":27443,"tid":27477,"ts":326461581157,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787730},
-{"pid":27443,"tid":27477,"ts":326461581157,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":787730},
-{"pid":27443,"tid":27477,"ts":326461581188,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787761},
-{"pid":27443,"tid":27477,"ts":326461581218,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787791},
-{"pid":27443,"tid":27477,"ts":326461581218,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787791},
-{"pid":27443,"tid":27477,"ts":326461581249,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787822},
-{"pid":27443,"tid":27477,"ts":326461581249,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":787822},
-{"pid":27443,"tid":27477,"ts":326461581341,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":787913},
-{"pid":27443,"tid":27477,"ts":326461581371,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":787944},
-{"pid":27443,"tid":27477,"ts":326461581371,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":787975},
-{"pid":27443,"tid":27477,"ts":326461581402,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":788005},
-{"pid":27443,"tid":27477,"ts":326461581432,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":788005},
-{"pid":27443,"tid":27477,"ts":326461581463,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":788036},
-{"pid":27443,"tid":27477,"ts":326461581493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":788066},
-{"pid":27443,"tid":27477,"ts":326461581524,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":788097},
-{"pid":27443,"tid":27477,"ts":326461581585,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":788158},
-{"pid":27443,"tid":27477,"ts":326461581615,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":788188},
-{"pid":27443,"tid":27477,"ts":326461581615,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":788188},
-{"pid":27443,"tid":27477,"ts":326461581676,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":155},"tts":788249},
-{"pid":27443,"tid":27477,"ts":326461581737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":788310,"id":"0xaf88a6eef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461581737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":788341,"id":"0xaf88a49af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461581798,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":788371},
-{"pid":27443,"tid":27477,"ts":326461581798,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":788371},
-{"pid":27443,"tid":27477,"ts":326461581829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":788402,"id":"0xaf88a4b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461581859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":788432,"id":"0xaf88a4b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461581859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":788432},
-{"pid":27443,"tid":27477,"ts":326461581890,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":788463},
-{"pid":27443,"tid":27477,"ts":326461581890,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":788463},
-{"pid":27443,"tid":27477,"ts":326461581890,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":788463},
-{"pid":27443,"tid":27477,"ts":326461581920,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":788493},
-{"pid":27443,"tid":27477,"ts":326461581920,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":788493},
-{"pid":27443,"tid":27477,"ts":326461581981,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":788554},
-{"pid":27443,"tid":27477,"ts":326461582012,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":788585},
-{"pid":27443,"tid":27477,"ts":326461582043,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":788615,"id":"0xaf88a4b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461582043,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2716,"tdur":2289,"tts":788615},
-{"pid":27443,"tid":27477,"ts":326461582043,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2716,"tdur":2289,"tts":788615},
-{"pid":27443,"tid":27477,"ts":326461582043,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":0,"tts":788646},
-{"pid":27443,"tid":27477,"ts":326461582073,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2686,"tdur":2228,"tts":788646},
-{"pid":27443,"tid":27477,"ts":326461582104,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":154},"dur":1220,"tdur":1221,"tts":788676},
-{"pid":27443,"tid":27477,"ts":326461582134,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":154},"dur":366,"tdur":366,"tts":788707},
-{"pid":27443,"tid":27477,"ts":326461582500,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":154},"dur":31,"tdur":31,"tts":789073},
-{"pid":27443,"tid":27477,"ts":326461582561,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":154},"tts":789134},
-{"pid":27443,"tid":27477,"ts":326461582836,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":789409},
-{"pid":27443,"tid":27477,"ts":326461582836,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":789409},
-{"pid":27443,"tid":27477,"ts":326461582836,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":789409},
-{"pid":27443,"tid":27477,"ts":326461582867,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":789439},
-{"pid":27443,"tid":27477,"ts":326461582867,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":789439,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461582958,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":789531},
-{"pid":27443,"tid":27477,"ts":326461583294,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":789867},
-{"pid":27443,"tid":27477,"ts":326461583324,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":824,"tdur":397,"tts":789897},
-{"pid":27443,"tid":27477,"ts":326461583355,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":789928},
-{"pid":27443,"tid":27477,"ts":326461583355,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":274,"tts":789928},
-{"pid":27443,"tid":27477,"ts":326461583446,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16710},"dur":61,"tdur":61,"tts":790019},
-{"pid":27443,"tid":27477,"ts":326461583477,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":790050,"id":"0xaf88ab1ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461583538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":790111,"id":"0xaf88ab18f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461584087,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":790233,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461584087,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":790233},
-{"pid":27443,"tid":27477,"ts":326461584179,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":790325,"id":"0x300000090"},
-{"pid":27443,"tid":27477,"ts":326461584179,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":519,"tdur":488,"tts":790325},
-{"pid":27443,"tid":27477,"ts":326461584606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":790752,"id":"0xaf88ab19f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461584698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":790843,"id":"0xaf88a6eff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461584728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":790874,"id":"0xaf88a494f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461585308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":790965,"id":"0xaf88a4b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461585339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":790996},
-{"pid":27443,"tid":27477,"ts":326461585339,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":92,"tts":790996},
-{"pid":27443,"tid":27477,"ts":326461585369,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":791027,"id":"0x300000092"},
-{"pid":27443,"tid":27477,"ts":326461585369,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":791027},
-{"pid":27443,"tid":27477,"ts":326461585400,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":791057,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461585430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":791088,"id":"0xaf88a6e8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461587017,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461586},"tts":791149,"id":"0xaf88a4b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461587048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":791179},
-{"pid":27443,"tid":27477,"ts":326461593274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":791240,"id":"0xaf88a4b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461593305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1220,"tdur":1221,"tts":791271},
-{"pid":27443,"tid":27477,"ts":326461593305,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1220,"tdur":1221,"tts":791271},
-{"pid":27443,"tid":27477,"ts":326461593305,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":791271},
-{"pid":27443,"tid":27477,"ts":326461593335,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1190,"tdur":1191,"tts":791301},
-{"pid":27443,"tid":27477,"ts":326461593335,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1190,"tdur":1191,"tts":791301},
-{"pid":27443,"tid":27477,"ts":326461593335,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":791301},
-{"pid":27443,"tid":27477,"ts":326461593366,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":791332},
-{"pid":27443,"tid":27477,"ts":326461593366,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":791332,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461593396,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":791362},
-{"pid":27443,"tid":27477,"ts":326461593427,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":30,"tts":791393},
-{"pid":27443,"tid":27477,"ts":326461593549,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":946,"tdur":946,"tts":791515},
-{"pid":27443,"tid":27477,"ts":326461593549,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":155},"dur":274,"tdur":275,"tts":791515},
-{"pid":27443,"tid":27477,"ts":326461593854,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":155},"dur":30,"tdur":31,"tts":791820},
-{"pid":27443,"tid":27477,"ts":326461593915,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":155},"tts":791881},
-{"pid":27443,"tid":27477,"ts":326461594129,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":792095},
-{"pid":27443,"tid":27477,"ts":326461594129,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":792095},
-{"pid":27443,"tid":27477,"ts":326461594159,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":792125},
-{"pid":27443,"tid":27477,"ts":326461594342,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":792308},
-{"pid":27443,"tid":27477,"ts":326461594342,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":792308},
-{"pid":27443,"tid":27477,"ts":326461594342,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":792308},
-{"pid":27443,"tid":27477,"ts":326461594373,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":792339},
-{"pid":27443,"tid":27477,"ts":326461594373,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":792339,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461594373,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":792369},
-{"pid":27443,"tid":27477,"ts":326461594403,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":792369},
-{"pid":27443,"tid":27477,"ts":326461594434,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":792430,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461594464,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":792430,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461594495,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":792461,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461594525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":792522,"id":"0xaf88a54cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461594556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":792522},
-{"pid":27443,"tid":27477,"ts":326461594586,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461592753.0,"frame_time_us":326461586930.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":91,"tts":792553},
-{"pid":27443,"tid":27477,"ts":326461594586,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461592753.0,"frame_time_us":326461586930.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":91,"tts":792553},
-{"pid":27443,"tid":27477,"ts":326461594647,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461603596},"dur":31,"tdur":30,"tts":792614},
-{"pid":27443,"tid":27477,"ts":326461594647,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":792614,"id":"0xaf88a549f182217a"},
-{"pid":27443,"tid":27477,"ts":326461594678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":792644,"id":"0xaf88a54df182217a"},
-{"pid":27443,"tid":27477,"ts":326461594708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":62,"tdur":61,"tts":792675},
-{"pid":27443,"tid":27477,"ts":326461594708,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":62,"tdur":61,"tts":792675},
-{"pid":27443,"tid":27477,"ts":326461594739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":792705,"id":"0xaf88a6e9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461594739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":792705,"id":"0xaf88a496f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461594770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":792736,"id":"0xaf88a54ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461594770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":792736},
-{"pid":27443,"tid":27477,"ts":326461594800,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":792766},
-{"pid":27443,"tid":27477,"ts":326461594831,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":792797,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461594861,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":792827},
-{"pid":27443,"tid":27477,"ts":326461594861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":792827,"id":"0xaf88a54bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461594892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":792858,"id":"0xaf88a54ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461594892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":792858},
-{"pid":27443,"tid":27477,"ts":326461594922,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":792888},
-{"pid":27443,"tid":27459,"ts":326461592969,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":0,"tdur":0,"tts":7828811},
-{"pid":27443,"tid":27459,"ts":326461592969,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":30,"tdur":30,"tts":7828811},
-{"pid":27443,"tid":27459,"ts":326461592999,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":31,"tdur":31,"tts":7828841},
-{"pid":27443,"tid":27459,"ts":326461593030,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":0,"tdur":0,"tts":7828872},
-{"pid":27443,"tid":27459,"ts":326461593030,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":30,"tdur":30,"tts":7828872},
-{"pid":27443,"tid":27459,"ts":326461593060,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":31,"tdur":31,"tts":7828902},
-{"pid":27443,"tid":27459,"ts":326461593091,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":0,"tdur":0,"tts":7828933},
-{"pid":27443,"tid":27459,"ts":326461593091,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":30,"tdur":30,"tts":7828933},
-{"pid":27443,"tid":27459,"ts":326461593121,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":0,"tdur":0,"tts":7828963},
-{"pid":27443,"tid":27459,"ts":326461593121,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":31,"tdur":31,"tts":7828963},
-{"pid":27443,"tid":27459,"ts":326461593152,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":30,"tdur":30,"tts":7828994},
-{"pid":27443,"tid":27459,"ts":326461593182,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":155},"dur":0,"tdur":0,"tts":7829024},
-{"pid":27443,"tid":27459,"ts":326461593213,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7829055,"id":"0x300000091"},
-{"pid":27443,"tid":27459,"ts":326461593213,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":91,"tts":7829055},
-{"pid":27443,"tid":27459,"ts":326461593243,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7829085,"id":"0xaf88a4b3f182217a"},
-{"pid":27443,"tid":27459,"ts":326461593579,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7829177},
-{"pid":27443,"tid":27459,"ts":326461593671,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7829269,"id":"0xaf88a49bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461593671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7829269},
-{"pid":27443,"tid":27459,"ts":326461593701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7829299,"id":"0xaf88a495f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461593701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7829299,"id":"0xaf88a6eff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461593701,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":7829299},
-{"pid":27443,"tid":27459,"ts":326461593732,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7829330},
-{"pid":27443,"tid":27459,"ts":326461593762,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7829360,"id":"0xaf88a494f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461593762,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1374,"tdur":1190,"tts":7829360},
-{"pid":27443,"tid":27459,"ts":326461593793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7829391,"id":"0xaf88a6e8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461593793,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1343,"tdur":1159,"tts":7829391},
-{"pid":27443,"tid":27459,"ts":326461593854,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1251,"tdur":1068,"tts":7829452},
-{"pid":27443,"tid":27459,"ts":326461593884,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7829482,"id":"0x300000092"},
-{"pid":27443,"tid":27459,"ts":326461593884,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":916,"tts":7829482},
-{"pid":27443,"tid":27459,"ts":326461593915,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":7829513},
-{"pid":27443,"tid":27459,"ts":326461593976,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7829574},
-{"pid":27443,"tid":27459,"ts":326461594007,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7829604},
-{"pid":27443,"tid":27459,"ts":326461594037,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7829665},
-{"pid":27443,"tid":27459,"ts":326461594068,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7829696},
-{"pid":27443,"tid":27459,"ts":326461594098,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7829726},{"pid":27443,"tid":27459,"ts":326461594129,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7829726},
-{"pid":27443,"tid":27459,"ts":326461594159,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7829757},
-{"pid":27443,"tid":27459,"ts":326461594190,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":549,"tts":7829818},
-{"pid":27443,"tid":27459,"ts":326461594342,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":366,"tts":7829971},
-{"pid":27443,"tid":27459,"ts":326461594373,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7829971},
-{"pid":27443,"tid":27459,"ts":326461594678,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":115,"frame":"0x78c60000"}},"tts":7830276,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461594708,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":7830306},
-{"pid":27443,"tid":27459,"ts":326461594708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7830306,"id":"0xaf88a54af182217a"},
-{"pid":27443,"tid":27459,"ts":326461594739,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7830337},
-{"pid":27443,"tid":27459,"ts":326461594861,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7830459},
-{"pid":27443,"tid":27459,"ts":326461594861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7830489,"id":"0xaf88ab1af3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461595166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7830581,"id":"0xaf88a495f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461595197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7830611},
-{"pid":27443,"tid":27459,"ts":326461595197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7830611,"id":"0xaf88a497f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461595227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7830642,"id":"0xaf88a6e9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461595227,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":7830642},
-{"pid":27443,"tid":27459,"ts":326461595227,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":7830642},
-{"pid":27443,"tid":27459,"ts":326461595288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7830703,"id":"0xaf88a496f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461595319,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7830734},
-{"pid":27443,"tid":27459,"ts":326461595349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7830764,"id":"0xaf88a497f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461595349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7830764},
-{"pid":27443,"tid":27459,"ts":326461596662,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7830856,"id":"0xaf88a490f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461596662,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12971,"tdur":12116,"tts":7830856},
-{"pid":27443,"tid":27459,"ts":326461596692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7830886,"id":"0xaf88a491f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461596723,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7830917,"id":"0xaf88a6eaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461596753,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12849,"tdur":11995,"tts":7830947},
-{"pid":27443,"tid":27459,"ts":326461596753,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":156},"tts":7830947},
-{"pid":27443,"tid":27459,"ts":326461596753,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7830947},
-{"pid":27443,"tid":27459,"ts":326461596814,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":8241,"tdur":7630,"tts":7831008},
-{"pid":27443,"tid":27477,"ts":326461594922,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":792888,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461594953,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":792919},
-{"pid":27443,"tid":27477,"ts":326461594953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":792919,"id":"0xaf88a544f182217a"},
-{"pid":27443,"tid":27477,"ts":326461594983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":792949,"id":"0xaf88a548f182217a"},
-{"pid":27443,"tid":27477,"ts":326461594983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":792949},
-{"pid":27443,"tid":27477,"ts":326461595014,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":792980},
-{"pid":27443,"tid":27477,"ts":326461595014,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":792980,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461595014,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":792980},
-{"pid":27443,"tid":27477,"ts":326461595044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":793010,"id":"0xaf88a54af182217a"},
-{"pid":27443,"tid":27477,"ts":326461595044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":0,"tts":793041},
-{"pid":27443,"tid":27477,"ts":326461595075,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":793041},
-{"pid":27443,"tid":27477,"ts":326461595105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":793071,"id":"0xaf88a54bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461595105,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1587,"tdur":1587,"tts":793071},
-{"pid":27443,"tid":27477,"ts":326461595105,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1587,"tdur":1587,"tts":793071},
-{"pid":27443,"tid":27477,"ts":326461595136,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":793102},
-{"pid":27443,"tid":27477,"ts":326461595136,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":793102},
-{"pid":27443,"tid":27477,"ts":326461595166,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":793132},
-{"pid":27443,"tid":27477,"ts":326461595166,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":793132},
-{"pid":27443,"tid":27477,"ts":326461595258,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1434,"tdur":1403,"tts":793255},
-{"pid":27443,"tid":27477,"ts":326461595288,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1404,"tdur":1403,"tts":793255},
-{"pid":27443,"tid":27477,"ts":326461595288,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1252,"tdur":1251,"tts":793255},
-{"pid":27443,"tid":27477,"ts":326461595288,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":793255,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461595380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":793346},
-{"pid":27443,"tid":27477,"ts":326461595410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793377},
-{"pid":27443,"tid":27477,"ts":326461595410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":793377},
-{"pid":27443,"tid":27477,"ts":326461595441,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793407},
-{"pid":27443,"tid":27477,"ts":326461595471,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793438},
-{"pid":27443,"tid":27477,"ts":326461595471,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793438},
-{"pid":27443,"tid":27477,"ts":326461595502,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793468},
-{"pid":27443,"tid":27477,"ts":326461595502,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":793468},
-{"pid":27443,"tid":27477,"ts":326461595533,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793499},
-{"pid":27443,"tid":27477,"ts":326461595533,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":793529},
-{"pid":27443,"tid":27477,"ts":326461595563,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":793529},
-{"pid":27443,"tid":27477,"ts":326461595594,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":793560},
-{"pid":27443,"tid":27477,"ts":326461595624,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793590},
-{"pid":27443,"tid":27477,"ts":326461595624,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":793590},
-{"pid":27443,"tid":27477,"ts":326461595655,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793621},
-{"pid":27443,"tid":27477,"ts":326461595685,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793651},
-{"pid":27443,"tid":27477,"ts":326461595685,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":793651},
-{"pid":27443,"tid":27477,"ts":326461595716,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793682},
-{"pid":27443,"tid":27477,"ts":326461595716,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":793682},
-{"pid":27443,"tid":27477,"ts":326461595746,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793712},
-{"pid":27443,"tid":27477,"ts":326461595777,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793743},
-{"pid":27443,"tid":27477,"ts":326461595777,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793743},
-{"pid":27443,"tid":27477,"ts":326461595807,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793773},
-{"pid":27443,"tid":27477,"ts":326461595807,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":793773},
-{"pid":27443,"tid":27477,"ts":326461595838,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793804},
-{"pid":27443,"tid":27477,"ts":326461595838,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":793804},
-{"pid":27443,"tid":27477,"ts":326461595868,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":793834},
-{"pid":27443,"tid":27477,"ts":326461595899,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793865},
-{"pid":27443,"tid":27477,"ts":326461595899,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":793865},
-{"pid":27443,"tid":27477,"ts":326461595929,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793895},
-{"pid":27443,"tid":27477,"ts":326461595960,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793926},
-{"pid":27443,"tid":27477,"ts":326461595960,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793926},
-{"pid":27443,"tid":27477,"ts":326461595990,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793956},
-{"pid":27443,"tid":27477,"ts":326461595990,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":793956},
-{"pid":27443,"tid":27477,"ts":326461596021,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":793987},
-{"pid":27443,"tid":27477,"ts":326461596021,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":793987},
-{"pid":27443,"tid":27477,"ts":326461596051,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794018},
-{"pid":27443,"tid":27477,"ts":326461596082,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794048},
-{"pid":27443,"tid":27477,"ts":326461596082,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":794048},
-{"pid":27443,"tid":27477,"ts":326461596112,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794079},
-{"pid":27443,"tid":27477,"ts":326461596112,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":794079},
-{"pid":27443,"tid":27477,"ts":326461596143,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":794109},
-{"pid":27443,"tid":27477,"ts":326461596173,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":794140},
-{"pid":27443,"tid":27477,"ts":326461596204,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794170},
-{"pid":27443,"tid":27477,"ts":326461596265,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":794231},
-{"pid":27443,"tid":27477,"ts":326461596296,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794262},
-{"pid":27443,"tid":27477,"ts":326461596326,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794292},
-{"pid":27443,"tid":27477,"ts":326461596326,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":794323},
-{"pid":27443,"tid":27477,"ts":326461596357,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794323},
-{"pid":27443,"tid":27477,"ts":326461596387,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":794353},
-{"pid":27443,"tid":27477,"ts":326461596387,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":794384},
-{"pid":27443,"tid":27477,"ts":326461596448,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":794414},
-{"pid":27443,"tid":27477,"ts":326461596479,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":794445},
-{"pid":27443,"tid":27477,"ts":326461596509,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":794475},
-{"pid":27443,"tid":27477,"ts":326461596509,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":794475},
-{"pid":27443,"tid":27477,"ts":326461596540,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":156},"tts":794506},
-{"pid":27443,"tid":27477,"ts":326461596601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":794567,"id":"0xaf88a6eaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461596601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":794567,"id":"0xaf88a490f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461596631,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":794597},
-{"pid":27443,"tid":27477,"ts":326461596662,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":794628},
-{"pid":27443,"tid":27477,"ts":326461596662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":794628,"id":"0xaf88a546f182217a"},
-{"pid":27443,"tid":27477,"ts":326461596692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":794658,"id":"0xaf88a544f182217a"},
-{"pid":27443,"tid":27477,"ts":326461596723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":794689},
-{"pid":27443,"tid":27477,"ts":326461596723,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":794689},
-{"pid":27443,"tid":27477,"ts":326461596723,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":794689},
-{"pid":27443,"tid":27477,"ts":326461596723,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":794689},
-{"pid":27443,"tid":27477,"ts":326461596753,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":794720},
-{"pid":27443,"tid":27477,"ts":326461596753,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":794720},
-{"pid":27443,"tid":27477,"ts":326461596814,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":794781},
-{"pid":27443,"tid":27477,"ts":326461596845,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":794811},
-{"pid":27443,"tid":27477,"ts":326461596875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":794842,"id":"0xaf88a545f182217a"},
-{"pid":27443,"tid":27477,"ts":326461596875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":123,"tdur":122,"tts":794842},
-{"pid":27443,"tid":27477,"ts":326461596875,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":123,"tdur":122,"tts":794842},
-{"pid":27443,"tid":27477,"ts":326461596906,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":794872,"id":"0x300000093"},
-{"pid":27443,"tid":27477,"ts":326461596906,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":794872},
-{"pid":27443,"tid":27477,"ts":326461596936,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":794903,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461596967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":794933,"id":"0xaf88a6ebf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461596967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":794933,"id":"0xaf88a492f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461596998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":794964,"id":"0xaf88a546f182217a"},
-{"pid":27443,"tid":27477,"ts":326461596998,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2075,"tdur":1770,"tts":794964},
-{"pid":27443,"tid":27477,"ts":326461597028,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2045,"tdur":1740,"tts":794994},
-{"pid":27443,"tid":27477,"ts":326461597028,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":794994},
-{"pid":27443,"tid":27477,"ts":326461597059,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2014,"tdur":1709,"tts":795025},
-{"pid":27443,"tid":27477,"ts":326461597059,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":155},"dur":1007,"tdur":1007,"tts":795025},
-{"pid":27443,"tid":27477,"ts":326461597089,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":155},"dur":275,"tdur":275,"tts":795055},
-{"pid":27443,"tid":27477,"ts":326461597364,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":155},"dur":30,"tdur":30,"tts":795330},
-{"pid":27443,"tid":27477,"ts":326461597394,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":155},"tts":795360},
-{"pid":27443,"tid":27477,"ts":326461597608,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":795574},
-{"pid":27443,"tid":27477,"ts":326461597608,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":795574},
-{"pid":27443,"tid":27477,"ts":326461597608,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":795574},
-{"pid":27443,"tid":27477,"ts":326461597638,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":795605},
-{"pid":27443,"tid":27477,"ts":326461597638,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":795605,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461597730,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":795696},
-{"pid":27443,"tid":27477,"ts":326461598066,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":796032},
-{"pid":27443,"tid":27477,"ts":326461598066,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":610,"tdur":305,"tts":796032},
-{"pid":27443,"tid":27477,"ts":326461598096,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":796062},
-{"pid":27443,"tid":27477,"ts":326461598096,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":214,"tts":796062},
-{"pid":27443,"tid":27477,"ts":326461598188,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16710},"dur":0,"tdur":0,"tts":796154},
-{"pid":27443,"tid":27477,"ts":326461598218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":796184,"id":"0xaf88ab1bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461598676,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":796337,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461598707,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":796368,"id":"0x300000091"},
-{"pid":27443,"tid":27477,"ts":326461598707,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":305,"tts":796368},
-{"pid":27443,"tid":27477,"ts":326461598951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":796612,"id":"0xaf88ab14f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461599042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":796703,"id":"0xaf88a6e4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461603681,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461603},"tts":796825,"id":"0xaf88a549f182217a"},
-{"pid":27443,"tid":27477,"ts":326461603712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":796856},
-{"pid":27443,"tid":27459,"ts":326461596845,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7831039},
-{"pid":27443,"tid":27459,"ts":326461596875,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":115,"frame":"0x78c60000"}},"dur":8180,"tdur":7538,"tts":7831100},
-{"pid":27443,"tid":27459,"ts":326461596967,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":8057,"tdur":7447,"tts":7831161},
-{"pid":27443,"tid":27459,"ts":326461596967,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7831161},
-{"pid":27443,"tid":27459,"ts":326461603224,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7836838},
-{"pid":27443,"tid":27459,"ts":326461603498,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7837112},
-{"pid":27443,"tid":27459,"ts":326461603559,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7837204},
-{"pid":27443,"tid":27459,"ts":326461603590,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7837204},
-{"pid":27443,"tid":27459,"ts":326461603773,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7837387},
-{"pid":27443,"tid":27459,"ts":326461604261,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7837845},
-{"pid":27443,"tid":27459,"ts":326461604994,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7838577},
-{"pid":27443,"tid":27459,"ts":326461605085,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3602,"tdur":3601,"tts":7838669},
-{"pid":27443,"tid":27459,"ts":326461605146,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7838730},
-{"pid":27443,"tid":27459,"ts":326461605146,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7838760},
-{"pid":27443,"tid":27459,"ts":326461605177,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7838760},
-{"pid":27443,"tid":27459,"ts":326461605696,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7839279},
-{"pid":27443,"tid":27459,"ts":326461605726,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7839310},
-{"pid":27443,"tid":27459,"ts":326461605726,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2961,"tdur":2930,"tts":7839340},
-{"pid":27443,"tid":27459,"ts":326461605757,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2716,"tdur":2717,"tts":7839340},
-{"pid":27443,"tid":27459,"ts":326461605787,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":550,"tdur":549,"tts":7839371},
-{"pid":27443,"tid":27459,"ts":326461606337,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":7839920},
-{"pid":27443,"tid":27459,"ts":326461606581,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7840164},
-{"pid":27443,"tid":27459,"ts":326461606703,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":7840286},
-{"pid":27443,"tid":27459,"ts":326461606734,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1739,"tdur":1740,"tts":7840317},
-{"pid":27443,"tid":27459,"ts":326461608473,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":7842087},
-{"pid":27443,"tid":27459,"ts":326461608534,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7842118},
-{"pid":27443,"tid":27459,"ts":326461608687,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":156},"dur":519,"tdur":519,"tts":7842270},
-{"pid":27443,"tid":27459,"ts":326461608717,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":489,"tdur":488,"tts":7842301},
-{"pid":27443,"tid":27459,"ts":326461608961,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842545},
-{"pid":27443,"tid":27459,"ts":326461608961,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":31,"tdur":0,"tts":7842575},
-{"pid":27443,"tid":27459,"ts":326461608992,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842575},
-{"pid":27443,"tid":27459,"ts":326461609023,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842606},
-{"pid":27443,"tid":27459,"ts":326461609023,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":30,"tdur":30,"tts":7842606},
-{"pid":27443,"tid":27459,"ts":326461609053,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842636},
-{"pid":27443,"tid":27459,"ts":326461609053,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":31,"tdur":31,"tts":7842636},
-{"pid":27443,"tid":27459,"ts":326461609084,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842667},
-{"pid":27443,"tid":27459,"ts":326461609084,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":30,"tdur":31,"tts":7842667},
-{"pid":27443,"tid":27459,"ts":326461609114,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":31,"tdur":30,"tts":7842698},
-{"pid":27443,"tid":27459,"ts":326461609145,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842728},
-{"pid":27443,"tid":27459,"ts":326461609175,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":0,"tdur":0,"tts":7842759},
-{"pid":27443,"tid":27459,"ts":326461609175,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":156},"dur":31,"tdur":30,"tts":7842759},
-{"pid":27443,"tid":27459,"ts":326461609206,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7842789,"id":"0x300000092"},
-{"pid":27443,"tid":27459,"ts":326461609236,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":61,"tts":7842820},
-{"pid":27443,"tid":27459,"ts":326461609236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7842820,"id":"0xaf88a542f182217a"},
-{"pid":27443,"tid":27459,"ts":326461609602,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7842942},
-{"pid":27443,"tid":27459,"ts":326461609663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7843003,"id":"0xaf88a491f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461609663,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1312,"tts":7843003},
-{"pid":27443,"tid":27459,"ts":326461609694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7843033,"id":"0xaf88a493f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461609694,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7843033,"id":"0xaf88a6ebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461609724,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1282,"tdur":1251,"tts":7843064},
-{"pid":27443,"tid":27459,"ts":326461609786,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1190,"tdur":1160,"tts":7843125},
-{"pid":27443,"tid":27459,"ts":326461609786,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7843125,"id":"0x300000093"},
-{"pid":27443,"tid":27459,"ts":326461609816,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1068,"tdur":1038,"tts":7843155},
-{"pid":27443,"tid":27459,"ts":326461609847,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1007,"tdur":976,"tts":7843186},
-{"pid":27443,"tid":27459,"ts":326461609908,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7843247},
-{"pid":27443,"tid":27459,"ts":326461609938,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7843277},
-{"pid":27443,"tid":27459,"ts":326461609969,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7843308},
-{"pid":27443,"tid":27459,"ts":326461609999,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7843338},
-{"pid":27443,"tid":27459,"ts":326461610030,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7843399},
-{"pid":27443,"tid":27459,"ts":326461610060,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7843430},
-{"pid":27443,"tid":27459,"ts":326461610091,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7843430},
-{"pid":27443,"tid":27459,"ts":326461610152,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":702,"tdur":671,"tts":7843491},
-{"pid":27443,"tid":27459,"ts":326461610304,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":519,"tdur":427,"tts":7843705},
-{"pid":27443,"tid":27459,"ts":326461610304,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":7843705},
-{"pid":27443,"tid":27477,"ts":326461607100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":796917,"id":"0xaf88a547f182217a"},
-{"pid":27443,"tid":27477,"ts":326461607130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":214,"tts":796947},
-{"pid":27443,"tid":27477,"ts":326461607161,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461609435.0,"frame_time_us":326461603612.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":305,"tdur":153,"tts":796978},
-{"pid":27443,"tid":27477,"ts":326461607191,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461609435.0,"frame_time_us":326461603612.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":275,"tdur":122,"tts":797009},
-{"pid":27443,"tid":27477,"ts":326461607283,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461620278},"dur":183,"tdur":31,"tts":797100},
-{"pid":27443,"tid":27477,"ts":326461607283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":797100,"id":"0xaf88a540f182217a"},
-{"pid":27443,"tid":27477,"ts":326461607283,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":797100},
-{"pid":27443,"tid":27477,"ts":326461608748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":797253,"id":"0xaf88a541f182217a"},
-{"pid":27443,"tid":27477,"ts":326461608778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":797253},
-{"pid":27443,"tid":27477,"ts":326461608809,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":797283},
-{"pid":27443,"tid":27477,"ts":326461608839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":797314,"id":"0xaf88a6e5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461609297,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":797375,"id":"0xaf88a542f182217a"},
-{"pid":27443,"tid":27477,"ts":326461609297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1404,"tdur":1404,"tts":797375},
-{"pid":27443,"tid":27477,"ts":326461609297,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1404,"tdur":1404,"tts":797375},
-{"pid":27443,"tid":27477,"ts":326461609297,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":797405},
-{"pid":27443,"tid":27477,"ts":326461609328,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1373,"tdur":1374,"tts":797405},
-{"pid":27443,"tid":27477,"ts":326461609328,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1373,"tdur":1374,"tts":797405},
-{"pid":27443,"tid":27477,"ts":326461609358,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":797436},
-{"pid":27443,"tid":27477,"ts":326461609358,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":797436},
-{"pid":27443,"tid":27477,"ts":326461609358,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":797436,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461609389,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":797466},
-{"pid":27443,"tid":27477,"ts":326461609419,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":797497},
-{"pid":27443,"tid":27477,"ts":326461609541,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1130,"tdur":1129,"tts":797619},
-{"pid":27443,"tid":27477,"ts":326461609541,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":156},"dur":275,"tdur":275,"tts":797619},
-{"pid":27443,"tid":27477,"ts":326461609847,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":156},"dur":30,"tdur":31,"tts":797924},
-{"pid":27443,"tid":27477,"ts":326461609877,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":156},"tts":797985},
-{"pid":27443,"tid":27477,"ts":326461610152,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":798229},
-{"pid":27443,"tid":27477,"ts":326461610182,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":489,"tdur":488,"tts":798260},
-{"pid":27443,"tid":27477,"ts":326461610182,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":306,"tdur":305,"tts":798260},
-{"pid":27443,"tid":27477,"ts":326461610488,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":798565},
-{"pid":27443,"tid":27477,"ts":326461610488,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":798596},
-{"pid":27443,"tid":27477,"ts":326461610518,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":798596},
-{"pid":27443,"tid":27477,"ts":326461610518,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":798596},
-{"pid":27443,"tid":27477,"ts":326461610518,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":798596,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461610549,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":798626},
-{"pid":27443,"tid":27477,"ts":326461610549,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":798626},
-{"pid":27443,"tid":27477,"ts":326461610610,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":798687,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461610640,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":225}},"tts":798718,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461610671,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":2408448},"tts":798748,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461610762,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":798840,"id":"0xaf88a543f182217a"},
-{"pid":27443,"tid":27477,"ts":326461610762,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":798840},
-{"pid":27443,"tid":27477,"ts":326461610762,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":91,"tts":798840},
-{"pid":27443,"tid":27477,"ts":326461610793,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":798870,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461610793,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":798870},
-{"pid":27443,"tid":27477,"ts":326461610823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":798901,"id":"0xaf88a55ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461610884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":798962,"id":"0xaf88a55cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461610915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":0,"tdur":0,"tts":798992},
-{"pid":27443,"tid":27477,"ts":326461610915,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":798992},
-{"pid":27443,"tid":27477,"ts":326461610945,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":799023,"id":"0xaf88a55df182217a"},
-{"pid":27443,"tid":27477,"ts":326461610945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":799023},
-{"pid":27443,"tid":27477,"ts":326461610945,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":799023},
-{"pid":27443,"tid":27477,"ts":326461610976,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,false,false]}},"tts":799053,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461610976,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":799053},
-{"pid":27443,"tid":27477,"ts":326461611006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":799084,"id":"0xaf88a55ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461611006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1160,"tdur":183,"tts":799084},
-{"pid":27443,"tid":27477,"ts":326461611037,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":1129,"tdur":153,"tts":799114},
-{"pid":27443,"tid":27477,"ts":326461611037,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":799114},
-{"pid":27443,"tid":27477,"ts":326461611037,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":799114},
-{"pid":27443,"tid":27477,"ts":326461611067,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":1069,"tdur":92,"tts":799145},
-{"pid":27443,"tid":27477,"ts":326461611067,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":977,"tdur":0,"tts":799145},
-{"pid":27443,"tid":27477,"ts":326461612075,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":62,"tts":799175},
-{"pid":27443,"tid":27477,"ts":326461612136,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":799237},
-{"pid":27443,"tid":27477,"ts":326461612136,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":799237},
-{"pid":27443,"tid":27477,"ts":326461612166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":799267,"id":"0xaf88a55ff182217a"},
-{"pid":27443,"tid":27459,"ts":326461610396,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7843705},
-{"pid":27443,"tid":27459,"ts":326461610701,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":116,"frame":"0x78c60000"}},"tts":7844010,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461610732,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7844040},
-{"pid":27443,"tid":27459,"ts":326461610762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7844071,"id":"0xaf88a55cf182217a"},
-{"pid":27443,"tid":27459,"ts":326461610793,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7844101},
-{"pid":27443,"tid":27459,"ts":326461610884,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":30,"tts":7844224},
-{"pid":27443,"tid":27459,"ts":326461610915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7844224,"id":"0xaf88ab15f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461611312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7844376,"id":"0xaf88a492f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461611342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":794,"tdur":61,"tts":7844376},
-{"pid":27443,"tid":27459,"ts":326461611342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7844376,"id":"0xaf88a6e4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461611373,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":763,"tdur":30,"tts":7844407},
-{"pid":27443,"tid":27459,"ts":326461611373,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":732,"tdur":0,"tts":7844407},
-{"pid":27443,"tid":27459,"ts":326461611373,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":732,"tdur":0,"tts":7844407},
-{"pid":27443,"tid":27459,"ts":326461612166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7844468,"id":"0xaf88a493f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461612166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7844468},
-{"pid":27443,"tid":27459,"ts":326461612197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7844498,"id":"0xaf88a4acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461612197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7844498,"id":"0xaf88a6e5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461612227,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":7844529},
-{"pid":27443,"tid":27459,"ts":326461612227,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7844529},
-{"pid":27443,"tid":27459,"ts":326461612288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7844590,"id":"0xaf88a4acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461612288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":7844590},
-{"pid":27443,"tid":27459,"ts":326461612441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7844651,"id":"0xaf88a4adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461612441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1038,"tdur":1038,"tts":7844651},
-{"pid":27443,"tid":27459,"ts":326461612471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7844681,"id":"0xaf88a4aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461612471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7844681,"id":"0xaf88a6e6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461612502,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":977,"tdur":977,"tts":7844712},
-{"pid":27443,"tid":27459,"ts":326461612532,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":916,"tdur":885,"tts":7844773},
-{"pid":27443,"tid":27459,"ts":326461612563,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7844773,"id":"0x300000094"},
-{"pid":27443,"tid":27459,"ts":326461612593,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":763,"tdur":763,"tts":7844803},
-{"pid":27443,"tid":27459,"ts":326461612593,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":763,"tdur":732,"tts":7844834},
-{"pid":27443,"tid":27459,"ts":326461612654,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7844864},
-{"pid":27443,"tid":27459,"ts":326461612685,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7844895},
-{"pid":27443,"tid":27459,"ts":326461612746,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7844956},
-{"pid":27443,"tid":27459,"ts":326461612777,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7844987},
-{"pid":27443,"tid":27459,"ts":326461612807,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7845017},
-{"pid":27443,"tid":27459,"ts":326461612838,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7845048},
-{"pid":27443,"tid":27459,"ts":326461612838,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7845048},
-{"pid":27443,"tid":27459,"ts":326461612899,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":427,"tdur":427,"tts":7845109},
-{"pid":27443,"tid":27459,"ts":326461613021,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":274,"tdur":274,"tts":7845231},
-{"pid":27443,"tid":27459,"ts":326461613021,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7845261},
-{"pid":27443,"tid":27459,"ts":326461613265,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":117,"frame":"0x78c60000"}},"tts":7845475,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461613295,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7845505},
-{"pid":27443,"tid":27459,"ts":326461613387,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":30,"tdur":30,"tts":7845597},
-{"pid":27443,"tid":27459,"ts":326461613387,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7845597,"id":"0xaf88ab16f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461613509,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7845719,"id":"0xaf88a4aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461613509,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7845719},
-{"pid":27443,"tid":27459,"ts":326461614760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7845841,"id":"0xaf88a4aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461614760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11415,"tdur":10408,"tts":7845841},
-{"pid":27443,"tid":27459,"ts":326461614791,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7845872,"id":"0xaf88a4a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461614791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7845872,"id":"0xaf88a6e7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461614791,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11384,"tdur":10377,"tts":7845872},
-{"pid":27443,"tid":27459,"ts":326461614821,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":157},"tts":7845902},
-{"pid":27443,"tid":27459,"ts":326461614821,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7845902},
-{"pid":27443,"tid":27459,"ts":326461614852,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6073,"tdur":6043,"tts":7845963},
-{"pid":27443,"tid":27459,"ts":326461614882,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":7845963},
-{"pid":27443,"tid":27459,"ts":326461614943,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":116,"frame":"0x78c60000"}},"dur":5830,"tdur":5799,"tts":7846024},
-{"pid":27443,"tid":27459,"ts":326461615035,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5707,"tdur":5707,"tts":7846116},
-{"pid":27443,"tid":27459,"ts":326461615035,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7846146},
-{"pid":27443,"tid":27459,"ts":326461620712,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7851823},
-{"pid":27443,"tid":27459,"ts":326461620773,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":117,"frame":"0x78c60000"}},"dur":152,"tdur":152,"tts":7851854},
-{"pid":27443,"tid":27459,"ts":326461620834,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":91,"tdur":31,"tts":7851945},
-{"pid":27443,"tid":27459,"ts":326461620864,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7851945},
-{"pid":27443,"tid":27459,"ts":326461620895,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7851976},
-{"pid":27443,"tid":27459,"ts":326461620925,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4060,"tdur":3419,"tts":7852006},
-{"pid":27443,"tid":27471,"ts":326461610701,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":467755},
-{"pid":27443,"tid":27471,"ts":326461610701,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":467755},
-{"pid":27443,"tid":27471,"ts":326461610732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467785,"id":"0xaf88a543f182217a"},
-{"pid":27443,"tid":27471,"ts":326461610762,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":467816},
-{"pid":27443,"tid":27471,"ts":326461610762,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":467846},
-{"pid":27443,"tid":27471,"ts":326461610793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467846,"id":"0xaf88a55df182217a"},
-{"pid":27443,"tid":27469,"ts":326461610640,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":244,"tdur":91,"tts":500015},
-{"pid":27443,"tid":27469,"ts":326461610854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":500076,"id":"0xaf88a55ff182217a"},
-{"pid":27443,"tid":27471,"ts":326461627518,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":467877},
-{"pid":27443,"tid":27471,"ts":326461627609,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":467968},
-{"pid":27443,"tid":27471,"ts":326461627609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":467968,"id":"0xaf88a551f182217a"},
-{"pid":27443,"tid":27471,"ts":326461627640,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":467999},
-{"pid":27443,"tid":27471,"ts":326461627640,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":467999},
-{"pid":27443,"tid":27471,"ts":326461627640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468029,"id":"0xaf88a552f182217a"},
-{"pid":27443,"tid":27471,"ts":326461627670,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":468029},
-{"pid":27443,"tid":27471,"ts":326461627670,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":468029},
-{"pid":27443,"tid":27471,"ts":326461627701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468060,"id":"0xaf88a553f182217a"},
-{"pid":27443,"tid":27471,"ts":326461642137,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":468060},
-{"pid":27443,"tid":27471,"ts":326461642168,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":468090},
-{"pid":27443,"tid":27471,"ts":326461642198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468121,"id":"0xaf88a56bf182217a"},
-{"pid":27443,"tid":27471,"ts":326461642229,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":468151},
-{"pid":27443,"tid":27471,"ts":326461642229,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":468151},
-{"pid":27443,"tid":27471,"ts":326461642229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468151,"id":"0xaf88a564f182217a"},
-{"pid":27443,"tid":27471,"ts":326461642259,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":305,"tdur":31,"tts":468182},
-{"pid":27443,"tid":27471,"ts":326461642259,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":305,"tdur":31,"tts":468182},
-{"pid":27443,"tid":27471,"ts":326461642564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468213,"id":"0xaf88a565f182217a"},
-{"pid":27443,"tid":27496,"ts":326461647967,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":732,"tdur":671,"tts":81672},
-{"pid":27443,"tid":27496,"ts":326461647967,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":81672},
-{"pid":27443,"tid":27496,"ts":326461648668,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":82343},
-{"pid":27443,"tid":27546,"ts":326461651446,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":3998,"tdur":3815,"tts":67083},
-{"pid":27443,"tid":27546,"ts":326461651476,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":67114},
-{"pid":27443,"tid":27546,"ts":326461655413,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":70898},
-{"pid":27443,"tid":27471,"ts":326461664051,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":468243},
-{"pid":27443,"tid":27471,"ts":326461664081,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":468274},
-{"pid":27443,"tid":27471,"ts":326461664112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468304,"id":"0xaf88a578f182217a"},
-{"pid":27443,"tid":27471,"ts":326461664112,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":468304},
-{"pid":27443,"tid":27471,"ts":326461664173,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":468335},
-{"pid":27443,"tid":27471,"ts":326461664173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":468335,"id":"0xaf88a579f182217a"},
-{"pid":27443,"tid":27471,"ts":326461664203,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1099,"tdur":1099,"tts":468365},
-{"pid":27443,"tid":27471,"ts":326461664203,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1099,"tdur":1068,"tts":468396},
-{"pid":27443,"tid":27471,"ts":326461664234,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e4d8e68"},"tileResolution":"HIGH_RESOLUTION"}},"tts":468396},
-{"pid":27443,"tid":27471,"ts":326461664234,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":61,"tts":468426},
-{"pid":27443,"tid":27471,"ts":326461664325,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":468487},
-{"pid":27443,"tid":27471,"ts":326461664356,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e4d8e68"},"tileResolution":"HIGH_RESOLUTION"}},"tts":468518},
-{"pid":27443,"tid":27471,"ts":326461664386,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":468548,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461665302,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":469464},
-{"pid":27443,"tid":27471,"ts":326461665302,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":469464},
-{"pid":27443,"tid":27471,"ts":326461665333,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":469494},
-{"pid":27443,"tid":27471,"ts":326461665333,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7bdf4f20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":469494},
-{"pid":27443,"tid":27471,"ts":326461665363,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":469525},
-{"pid":27443,"tid":27471,"ts":326461665394,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":469555},
-{"pid":27443,"tid":27471,"ts":326461665424,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7bdf4f20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":469586},
-{"pid":27443,"tid":27471,"ts":326461665455,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":469616,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461665913,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":976,"tdur":946,"tts":500198},
-{"pid":27443,"tid":27469,"ts":326461665943,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":946,"tts":500198},
-{"pid":27443,"tid":27469,"ts":326461665974,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e00a758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":500228},
-{"pid":27443,"tid":27469,"ts":326461665974,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":500259},
-{"pid":27443,"tid":27469,"ts":326461666035,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":500289},
-{"pid":27443,"tid":27469,"ts":326461666065,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e00a758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":500320},
-{"pid":27443,"tid":27469,"ts":326461666065,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":500350,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461666218,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":470379},
-{"pid":27443,"tid":27471,"ts":326461666248,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":470410},
-{"pid":27443,"tid":27471,"ts":326461666248,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":916,"tts":470410},
-{"pid":27443,"tid":27471,"ts":326461666279,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7991cad8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":470441},
-{"pid":27443,"tid":27466,"ts":326461611006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":397344},
-{"pid":27443,"tid":27466,"ts":326461611037,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397375,"id":"0xccc5b702"},
-{"pid":27443,"tid":27466,"ts":326461612044,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":397497},
-{"pid":27443,"tid":27466,"ts":326461612075,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":61,"tdur":61,"tts":397527},
-{"pid":27443,"tid":27466,"ts":326461612075,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397527,"id":"0xba465b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461612105,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":31,"tdur":30,"tts":397558},
-{"pid":27443,"tid":27466,"ts":326461612136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":397588,"id":"0xaf88a558f182217a"},
-{"pid":27443,"tid":27466,"ts":326461613479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":397680,"id":"0xaf88ab16f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461613479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":397680},
-{"pid":27443,"tid":27466,"ts":326461613479,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397680,"id":"0xccc5b902"},
-{"pid":27443,"tid":27466,"ts":326461616408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":397833,"id":"0xaf88ab17f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461616408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":397833},
-{"pid":27443,"tid":27466,"ts":326461616439,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397863,"id":"0xccc5ba06"},
-{"pid":27443,"tid":27466,"ts":326461616622,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":397955},
-{"pid":27443,"tid":27466,"ts":326461616653,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":397985},
-{"pid":27443,"tid":27466,"ts":326461616653,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":397985,"id":"0xc4c1e80a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461617049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398077,"id":"0xaf88ab10f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461617080,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":398107},
-{"pid":27443,"tid":27466,"ts":326461617080,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":398107,"id":"0xccc5bb02"},
-{"pid":27443,"tid":27466,"ts":326461622238,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":398199},
-{"pid":27443,"tid":27466,"ts":326461622299,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":91,"tts":398260},
-{"pid":27443,"tid":27466,"ts":326461622299,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":398260,"id":"0xba465c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461622329,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":398290},
-{"pid":27443,"tid":27466,"ts":326461622360,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":398321,"id":"0xaf88a55bf182217a"},
-{"pid":27443,"tid":27466,"ts":326461622848,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":398443},
-{"pid":27443,"tid":27466,"ts":326461622879,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":30,"tdur":31,"tts":398473},
-{"pid":27443,"tid":27466,"ts":326461622879,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":398473,"id":"0xba465d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461622909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":398504,"id":"0xaf88a554f182217a"},
-{"pid":27443,"tid":27466,"ts":326461625046,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":398565},
-{"pid":27443,"tid":27466,"ts":326461625076,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":398596},
-{"pid":27443,"tid":27466,"ts":326461625107,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":398626,"id":"0xba466002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461625137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":398657,"id":"0xaf88a556f182217a"},
-{"pid":27443,"tid":27466,"ts":326461627640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398779,"id":"0xaf88ab11f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461627640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":398779},
-{"pid":27443,"tid":27466,"ts":326461627670,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":398809,"id":"0xccc5bd02"},
-{"pid":27443,"tid":27466,"ts":326461631974,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398901,"id":"0xaf88ab12f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461632004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":398931},
-{"pid":27443,"tid":27466,"ts":326461632004,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":398931,"id":"0xccc5be02"},
-{"pid":27443,"tid":27466,"ts":326461632065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":398992,"id":"0xaf88ab13f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461632096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":399023},
-{"pid":27443,"tid":27466,"ts":326461632096,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399023,"id":"0xccc5bf06"},
-{"pid":27443,"tid":27466,"ts":326461632432,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":399114},
-{"pid":27443,"tid":27466,"ts":326461632462,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":399145},
-{"pid":27443,"tid":27466,"ts":326461632462,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399145,"id":"0xc4c1ed0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461633134,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399236,"id":"0xaf88ab2cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461633164,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":399267},
-{"pid":27443,"tid":27466,"ts":326461633164,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399267,"id":"0xccc5c002"},
-{"pid":27443,"tid":27466,"ts":326461638810,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":152,"tts":399359},
-{"pid":27443,"tid":27466,"ts":326461638871,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":399420},
-{"pid":27443,"tid":27466,"ts":326461638871,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399420,"id":"0xba466202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461638902,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":399450},
-{"pid":27443,"tid":27466,"ts":326461638932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":399481,"id":"0xaf88a56ff182217a"},
-{"pid":27443,"tid":27466,"ts":326461639146,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":61,"tdur":61,"tts":399572},
-{"pid":27443,"tid":27466,"ts":326461639177,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":30,"tdur":30,"tts":399603},
-{"pid":27443,"tid":27466,"ts":326461639177,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399603,"id":"0xba466302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461639207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":399633,"id":"0xaf88a568f182217a"},
-{"pid":27443,"tid":27466,"ts":326461642748,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":399694},
-{"pid":27443,"tid":27466,"ts":326461642778,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":399725},
-{"pid":27443,"tid":27466,"ts":326461642778,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399755,"id":"0xba466602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461642839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":399816,"id":"0xaf88a566f182217a"},
-{"pid":27443,"tid":27466,"ts":326461644426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":399908,"id":"0xaf88ab2df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461644426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":399908},
-{"pid":27443,"tid":27466,"ts":326461644426,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":399908,"id":"0xccc5c202"},
-{"pid":27443,"tid":27466,"ts":326461646776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":400030,"id":"0xaf88ab2ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461612197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":799298},
-{"pid":27443,"tid":27477,"ts":326461612227,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":31,"tts":799328},
-{"pid":27443,"tid":27477,"ts":326461612227,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":799328,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461612227,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":799328},
-{"pid":27443,"tid":27477,"ts":326461612258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":799359,"id":"0xaf88a559f182217a"},
-{"pid":27443,"tid":27477,"ts":326461612288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":799389,"id":"0xaf88a558f182217a"},
-{"pid":27443,"tid":27477,"ts":326461612288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":799389},
-{"pid":27443,"tid":27477,"ts":326461612288,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":799389},
-{"pid":27443,"tid":27477,"ts":326461612319,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":799420,"id":"0x300000094"},
-{"pid":27443,"tid":27477,"ts":326461612319,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":30,"tts":799420},
-{"pid":27443,"tid":27477,"ts":326461612349,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":799450,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461612380,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":799481,"id":"0xaf88a6e6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461612380,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":799481,"id":"0xaf88a4adf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461612441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":799542,"id":"0xaf88a559f182217a"},
-{"pid":27443,"tid":27477,"ts":326461612441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2350,"tdur":2075,"tts":799542},
-{"pid":27443,"tid":27477,"ts":326461612441,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2350,"tdur":2045,"tts":799542},
-{"pid":27443,"tid":27477,"ts":326461612471,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":799572},
-{"pid":27443,"tid":27477,"ts":326461612471,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":799572},
-{"pid":27443,"tid":27477,"ts":326461612471,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":153,"tts":799572},
-{"pid":27443,"tid":27477,"ts":326461612502,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":799603},
-{"pid":27443,"tid":27477,"ts":326461612624,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2136,"tdur":1862,"tts":799725},
-{"pid":27443,"tid":27477,"ts":326461612624,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2136,"tdur":1862,"tts":799725},
-{"pid":27443,"tid":27477,"ts":326461612624,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1953,"tdur":1678,"tts":799725},
-{"pid":27443,"tid":27477,"ts":326461612654,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":799755,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461612715,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":799847},
-{"pid":27443,"tid":27477,"ts":326461612746,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":799847},
-{"pid":27443,"tid":27477,"ts":326461612777,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":799877},
-{"pid":27443,"tid":27477,"ts":326461612807,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":799908},
-{"pid":27443,"tid":27477,"ts":326461612807,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":799938},
-{"pid":27443,"tid":27477,"ts":326461612838,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":799938},
-{"pid":27443,"tid":27477,"ts":326461612868,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":799969},
-{"pid":27443,"tid":27477,"ts":326461612868,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":799969},
-{"pid":27443,"tid":27477,"ts":326461612929,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800030},
-{"pid":27443,"tid":27477,"ts":326461612929,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800030},
-{"pid":27443,"tid":27477,"ts":326461612960,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":800061},
-{"pid":27443,"tid":27477,"ts":326461612990,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800091},
-{"pid":27443,"tid":27477,"ts":326461613021,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800122},
-{"pid":27443,"tid":27477,"ts":326461613021,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":800122},
-{"pid":27443,"tid":27477,"ts":326461613051,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800152},
-{"pid":27443,"tid":27477,"ts":326461613082,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800183},
-{"pid":27443,"tid":27477,"ts":326461613082,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":800183},
-{"pid":27443,"tid":27477,"ts":326461613112,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800213},
-{"pid":27443,"tid":27477,"ts":326461613112,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800213},
-{"pid":27443,"tid":27477,"ts":326461613143,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800244},
-{"pid":27443,"tid":27477,"ts":326461613173,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800274},
-{"pid":27443,"tid":27477,"ts":326461613173,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800274},
-{"pid":27443,"tid":27477,"ts":326461613204,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800305},
-{"pid":27443,"tid":27477,"ts":326461613204,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":800335},
-{"pid":27443,"tid":27477,"ts":326461613234,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800335},
-{"pid":27443,"tid":27477,"ts":326461613265,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800366},
-{"pid":27443,"tid":27477,"ts":326461613265,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":800366},
-{"pid":27443,"tid":27477,"ts":326461613295,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800396},
-{"pid":27443,"tid":27477,"ts":326461613295,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800396},
-{"pid":27443,"tid":27477,"ts":326461613326,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":800427},
-{"pid":27443,"tid":27477,"ts":326461613387,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800457},
-{"pid":27443,"tid":27477,"ts":326461613387,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":800457},
-{"pid":27443,"tid":27477,"ts":326461613417,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":800488},
-{"pid":27443,"tid":27477,"ts":326461613448,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800518},
-{"pid":27443,"tid":27477,"ts":326461613479,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800549},
-{"pid":27443,"tid":27477,"ts":326461613509,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800579},
-{"pid":27443,"tid":27477,"ts":326461613509,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800579},
-{"pid":27443,"tid":27477,"ts":326461613540,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":274,"tdur":30,"tts":800610},
-{"pid":27443,"tid":27477,"ts":326461613540,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":800610},
-{"pid":27443,"tid":27477,"ts":326461613814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":800640},
-{"pid":27443,"tid":27477,"ts":326461613845,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":305,"tdur":305,"tts":800671},
-{"pid":27443,"tid":27477,"ts":326461613845,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":275,"tts":800671},
-{"pid":27443,"tid":27477,"ts":326461614150,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":800976},
-{"pid":27443,"tid":27477,"ts":326461614180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":801007},
-{"pid":27443,"tid":27477,"ts":326461614180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":801007},
-{"pid":27443,"tid":27477,"ts":326461614211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":801037},
-{"pid":27443,"tid":27477,"ts":326461614303,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":801129},
-{"pid":27443,"tid":27477,"ts":326461614333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":801159},
-{"pid":27443,"tid":27477,"ts":326461614333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":801159},
-{"pid":27443,"tid":27477,"ts":326461614364,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":801190},
-{"pid":27443,"tid":27477,"ts":326461614394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":801220},
-{"pid":27443,"tid":27477,"ts":326461614394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":801220},
-{"pid":27443,"tid":27477,"ts":326461614425,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":801251},
-{"pid":27443,"tid":27477,"ts":326461614455,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":801312},
-{"pid":27443,"tid":27477,"ts":326461614516,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":801342},
-{"pid":27443,"tid":27477,"ts":326461614516,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":801342},
-{"pid":27443,"tid":27477,"ts":326461614547,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":801373},
-{"pid":27443,"tid":27477,"ts":326461614577,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":157},"tts":801403},
-{"pid":27443,"tid":27477,"ts":326461614638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":801495,"id":"0xaf88a6e7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461614669,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":801495,"id":"0xaf88a4aff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461614730,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":801556},
-{"pid":27443,"tid":27477,"ts":326461614730,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":801556},
-{"pid":27443,"tid":27477,"ts":326461614760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":801587,"id":"0xaf88a55af182217a"},
-{"pid":27443,"tid":27477,"ts":326461614791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":801617,"id":"0xaf88a55af182217a"},
-{"pid":27443,"tid":27477,"ts":326461614791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2350,"tdur":2045,"tts":801617},
-{"pid":27443,"tid":27477,"ts":326461614791,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2319,"tdur":1983,"tts":801648},
-{"pid":27443,"tid":27477,"ts":326461614821,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":801648},
-{"pid":27443,"tid":27477,"ts":326461614821,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2289,"tdur":1983,"tts":801648},
-{"pid":27443,"tid":27477,"ts":326461614852,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":156},"dur":1129,"tdur":1129,"tts":801678},
-{"pid":27443,"tid":27477,"ts":326461614882,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":156},"dur":306,"tdur":305,"tts":801709},
-{"pid":27443,"tid":27477,"ts":326461615188,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":156},"dur":30,"tdur":30,"tts":802014},
-{"pid":27443,"tid":27477,"ts":326461615218,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":156},"tts":802044},
-{"pid":27443,"tid":27477,"ts":326461615432,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":802258},
-{"pid":27443,"tid":27477,"ts":326461615432,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":802258},
-{"pid":27443,"tid":27477,"ts":326461615462,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":802289},
-{"pid":27443,"tid":27477,"ts":326461615462,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":802289},
-{"pid":27443,"tid":27477,"ts":326461615493,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":802319,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461615554,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":802380},
-{"pid":27443,"tid":27477,"ts":326461615951,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":802807},
-{"pid":27443,"tid":27477,"ts":326461615981,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":794,"tdur":489,"tts":802807},
-{"pid":27443,"tid":27477,"ts":326461616012,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":802838},
-{"pid":27443,"tid":27477,"ts":326461616012,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":397,"tts":802838},
-{"pid":27443,"tid":27477,"ts":326461616286,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16710},"dur":0,"tdur":0,"tts":803113},
-{"pid":27443,"tid":27477,"ts":326461616317,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":803143,"id":"0xaf88ab17f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461616744,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":803265,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461616775,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":803296,"id":"0x300000092"},
-{"pid":27443,"tid":27477,"ts":326461616805,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":803326},
-{"pid":27443,"tid":27477,"ts":326461616988,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":803509,"id":"0xaf88ab10f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461617080,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":803601,"id":"0xaf88a6e0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461617080,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":803601,"id":"0xaf88a4a9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461620376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461620},"tts":803692,"id":"0xaf88a540f182217a"},
-{"pid":27443,"tid":27477,"ts":326461620376,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":803692},
-{"pid":27443,"tid":27477,"ts":326461624039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":803754,"id":"0xaf88a55bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461624039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":803754},
-{"pid":27443,"tid":27477,"ts":326461624039,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":92,"tts":803784},
-{"pid":27443,"tid":27477,"ts":326461624069,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":803784,"id":"0x300000095"},{"pid":27443,"tid":27477,"ts":326461624100,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":803815},
-{"pid":27443,"tid":27477,"ts":326461624100,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":803845,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461624161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":803876,"id":"0xaf88a6e1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461624191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":803906,"id":"0xaf88a554f182217a"},
-{"pid":27443,"tid":27477,"ts":326461624191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":803906},
-{"pid":27443,"tid":27477,"ts":326461624222,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461624067.0,"frame_time_us":326461620293.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":122,"tts":803937},
-{"pid":27443,"tid":27477,"ts":326461624252,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461624067.0,"frame_time_us":326461620293.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":803967},
-{"pid":27443,"tid":27477,"ts":326461624313,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461636959},"dur":31,"tdur":31,"tts":804028},
-{"pid":27443,"tid":27459,"ts":326461620956,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7852037},
-{"pid":27443,"tid":27459,"ts":326461620987,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7852067},
-{"pid":27443,"tid":27459,"ts":326461621017,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7852098},
-{"pid":27443,"tid":27459,"ts":326461621902,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7852556},
-{"pid":27443,"tid":27459,"ts":326461621933,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7852586},
-{"pid":27443,"tid":27459,"ts":326461621963,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3022,"tdur":2808,"tts":7852617},
-{"pid":27443,"tid":27459,"ts":326461621963,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2839,"tdur":2594,"tts":7852617},
-{"pid":27443,"tid":27459,"ts":326461621994,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":824,"tdur":611,"tts":7852647},
-{"pid":27443,"tid":27459,"ts":326461621994,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":7852647},
-{"pid":27443,"tid":27459,"ts":326461622848,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":7853288},
-{"pid":27443,"tid":27459,"ts":326461623092,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":123,"tdur":122,"tts":7853532},
-{"pid":27443,"tid":27459,"ts":326461623215,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":7853654},
-{"pid":27443,"tid":27459,"ts":326461623245,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1526,"tdur":1526,"tts":7853685},
-{"pid":27443,"tid":27459,"ts":326461624802,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7855241},
-{"pid":27443,"tid":27459,"ts":326461624832,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":153,"tdur":153,"tts":7855272},
-{"pid":27443,"tid":27459,"ts":326461625015,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":157},"dur":580,"tdur":580,"tts":7855455},
-{"pid":27443,"tid":27459,"ts":326461625015,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":580,"tdur":580,"tts":7855455},
-{"pid":27443,"tid":27459,"ts":326461625259,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":31,"tdur":0,"tts":7855730},
-{"pid":27443,"tid":27459,"ts":326461625290,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":30,"tdur":30,"tts":7855730},
-{"pid":27443,"tid":27459,"ts":326461625320,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":31,"tdur":31,"tts":7855760},
-{"pid":27443,"tid":27459,"ts":326461625351,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":0,"tdur":0,"tts":7855791},
-{"pid":27443,"tid":27459,"ts":326461625351,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":30,"tdur":0,"tts":7855821},
-{"pid":27443,"tid":27459,"ts":326461625381,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":31,"tdur":31,"tts":7855821},
-{"pid":27443,"tid":27459,"ts":326461625412,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":30,"tdur":30,"tts":7855852},
-{"pid":27443,"tid":27459,"ts":326461625442,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":31,"tdur":31,"tts":7855882},
-{"pid":27443,"tid":27459,"ts":326461625473,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":0,"tdur":0,"tts":7855913},
-{"pid":27443,"tid":27459,"ts":326461625473,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":31,"tdur":30,"tts":7855913},
-{"pid":27443,"tid":27459,"ts":326461625504,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":30,"tdur":31,"tts":7855943},
-{"pid":27443,"tid":27459,"ts":326461625534,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":31,"tdur":30,"tts":7855974},
-{"pid":27443,"tid":27459,"ts":326461625565,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":157},"dur":30,"tdur":31,"tts":7856004},
-{"pid":27443,"tid":27459,"ts":326461625626,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7856065,"id":"0x300000093"},
-{"pid":27443,"tid":27459,"ts":326461625626,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7856065,"id":"0x300000094"},
-{"pid":27443,"tid":27459,"ts":326461625656,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":458,"tdur":92,"tts":7856096},
-{"pid":27443,"tid":27459,"ts":326461625656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7856096,"id":"0xaf88a557f182217a"},
-{"pid":27443,"tid":27459,"ts":326461626144,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7856218},
-{"pid":27443,"tid":27459,"ts":326461626236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7856310,"id":"0xaf88a4a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461626236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7856310},
-{"pid":27443,"tid":27459,"ts":326461626267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7856340,"id":"0xaf88a4aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461626267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7856340,"id":"0xaf88a6e0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461626297,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":7856371},
-{"pid":27443,"tid":27459,"ts":326461626297,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":30,"tts":7856371},
-{"pid":27443,"tid":27459,"ts":326461626358,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7856432,"id":"0xaf88a4a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461626358,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1312,"tdur":1160,"tts":7856462},
-{"pid":27443,"tid":27459,"ts":326461626389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7856462,"id":"0xaf88a6e1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461626419,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1221,"tdur":1129,"tts":7856493},
-{"pid":27443,"tid":27459,"ts":326461626541,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1099,"tts":7856523},
-{"pid":27443,"tid":27459,"ts":326461626572,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7856554,"id":"0x300000095"},
-{"pid":27443,"tid":27459,"ts":326461626602,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":885,"tts":7856584},
-{"pid":27443,"tid":27459,"ts":326461626633,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":854,"tdur":854,"tts":7856615},
-{"pid":27443,"tid":27459,"ts":326461626694,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7856676},
-{"pid":27443,"tid":27459,"ts":326461626724,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7856706},
-{"pid":27443,"tid":27459,"ts":326461626755,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7856737},
-{"pid":27443,"tid":27459,"ts":326461626785,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7856767},
-{"pid":27443,"tid":27459,"ts":326461626816,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7856798},
-{"pid":27443,"tid":27459,"ts":326461626846,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7856828},
-{"pid":27443,"tid":27459,"ts":326461626877,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7856859},
-{"pid":27443,"tid":27459,"ts":326461626907,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":550,"tdur":550,"tts":7856889},
-{"pid":27443,"tid":27459,"ts":326461627060,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":366,"tdur":366,"tts":7857042},
-{"pid":27443,"tid":27459,"ts":326461627060,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7857042},
-{"pid":27443,"tid":27459,"ts":326461627365,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":118,"frame":"0x78c60000"}},"tts":7857347,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461627365,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":31,"tts":7857347},
-{"pid":27443,"tid":27459,"ts":326461627396,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7857378,"id":"0xaf88a550f182217a"},
-{"pid":27443,"tid":27459,"ts":326461627426,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7857408},
-{"pid":27443,"tid":27459,"ts":326461627518,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":7857500},
-{"pid":27443,"tid":27477,"ts":326461624344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":804059,"id":"0xaf88a555f182217a"},
-{"pid":27443,"tid":27477,"ts":326461625168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":804150,"id":"0xaf88a556f182217a"},
-{"pid":27443,"tid":27477,"ts":326461625198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":804181},
-{"pid":27443,"tid":27477,"ts":326461625229,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":804211},
-{"pid":27443,"tid":27477,"ts":326461625229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":804211,"id":"0xaf88a6e2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461625717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":804303,"id":"0xaf88a557f182217a"},
-{"pid":27443,"tid":27477,"ts":326461625748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1892,"tdur":1343,"tts":804333},
-{"pid":27443,"tid":27477,"ts":326461625748,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1861,"tdur":1343,"tts":804333},
-{"pid":27443,"tid":27477,"ts":326461625778,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":804364},
-{"pid":27443,"tid":27477,"ts":326461625778,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1831,"tdur":1312,"tts":804364},
-{"pid":27443,"tid":27477,"ts":326461625809,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1800,"tdur":1282,"tts":804394},
-{"pid":27443,"tid":27477,"ts":326461625809,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":62,"tts":804394},
-{"pid":27443,"tid":27477,"ts":326461625839,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":804425},
-{"pid":27443,"tid":27477,"ts":326461625870,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":804456,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461625870,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":804456},
-{"pid":27443,"tid":27477,"ts":326461625931,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":91,"tdur":61,"tts":804517},
-{"pid":27443,"tid":27477,"ts":326461626083,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1526,"tdur":1007,"tts":804639},
-{"pid":27443,"tid":27477,"ts":326461626083,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":157},"dur":824,"tdur":305,"tts":804669},
-{"pid":27443,"tid":27477,"ts":326461626907,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":157},"dur":62,"tdur":61,"tts":804974},
-{"pid":27443,"tid":27477,"ts":326461626969,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":157},"tts":805035},
-{"pid":27443,"tid":27477,"ts":326461627213,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":805280},
-{"pid":27443,"tid":27477,"ts":326461627213,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":805280},
-{"pid":27443,"tid":27477,"ts":326461627243,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":805310},
-{"pid":27443,"tid":27477,"ts":326461627396,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":805463},
-{"pid":27443,"tid":27477,"ts":326461627396,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":805493},
-{"pid":27443,"tid":27477,"ts":326461627426,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":805493},
-{"pid":27443,"tid":27477,"ts":326461627426,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":805493},
-{"pid":27443,"tid":27477,"ts":326461627426,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":805493,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461627457,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":805524},
-{"pid":27443,"tid":27477,"ts":326461627457,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":805524},
-{"pid":27443,"tid":27477,"ts":326461627518,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":805585,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461627579,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":223}},"tts":805646,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461627579,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3072000},"tts":805646,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461627640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":805707,"id":"0xaf88a550f182217a"},
-{"pid":27443,"tid":27477,"ts":326461627640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":805707},
-{"pid":27443,"tid":27477,"ts":326461627670,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":805737},
-{"pid":27443,"tid":27477,"ts":326461627670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":805737,"id":"0xaf88a551f182217a"},
-{"pid":27443,"tid":27477,"ts":326461627701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":305,"tdur":61,"tts":805768},
-{"pid":27443,"tid":27477,"ts":326461627701,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":805768},
-{"pid":27443,"tid":27477,"ts":326461627945,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":805768},
-{"pid":27443,"tid":27477,"ts":326461627976,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":805798,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461627976,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":805798},
-{"pid":27443,"tid":27477,"ts":326461628006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":805829,"id":"0xaf88a56cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461628037,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":805859,"id":"0xaf88a552f182217a"},
-{"pid":27443,"tid":27477,"ts":326461628037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":805859},
-{"pid":27443,"tid":27477,"ts":326461628037,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":805859},
-{"pid":27443,"tid":27477,"ts":326461628067,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":805890,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461628067,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":805890},
-{"pid":27443,"tid":27477,"ts":326461628067,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":805890,"id":"0xaf88a56df182217a"},
-{"pid":27443,"tid":27477,"ts":326461628098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":805920,"id":"0xaf88a553f182217a"},
-{"pid":27443,"tid":27477,"ts":326461628098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":805920},
-{"pid":27443,"tid":27477,"ts":326461628128,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":805951},
-{"pid":27443,"tid":27477,"ts":326461628128,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":805951,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461628128,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":805951},
-{"pid":27443,"tid":27477,"ts":326461628159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":805982,"id":"0xaf88a56cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461628159,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1587,"tdur":1587,"tts":805982},
-{"pid":27443,"tid":27477,"ts":326461628159,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1587,"tdur":1587,"tts":805982},
-{"pid":27443,"tid":27477,"ts":326461628189,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":806012},
-{"pid":27443,"tid":27477,"ts":326461628189,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":806012},
-{"pid":27443,"tid":27477,"ts":326461628189,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":806012},
-{"pid":27443,"tid":27477,"ts":326461628220,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":806043},
-{"pid":27443,"tid":27477,"ts":326461628311,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1435,"tdur":1435,"tts":806134},
-{"pid":27443,"tid":27477,"ts":326461628311,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1435,"tdur":1404,"tts":806165},
-{"pid":27443,"tid":27477,"ts":326461628342,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":1220,"tts":806165},
-{"pid":27443,"tid":27459,"ts":326461627518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7857500,"id":"0xaf88ab11f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461627518,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7857500},
-{"pid":27443,"tid":27459,"ts":326461627670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7857652,"id":"0xaf88a4aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461627701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7857683},
-{"pid":27443,"tid":27459,"ts":326461627701,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7857683,"id":"0xaf88a4abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461627732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7857714,"id":"0xaf88a6e2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461627732,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":7857714},
-{"pid":27443,"tid":27459,"ts":326461627732,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":7857714},
-{"pid":27443,"tid":27459,"ts":326461627793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7857775,"id":"0xaf88a4abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461627793,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7857775},
-{"pid":27443,"tid":27459,"ts":326461629715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7857866,"id":"0xaf88a4a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461629715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11842,"tdur":9004,"tts":7857866},
-{"pid":27443,"tid":27459,"ts":326461629746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7857897,"id":"0xaf88a4a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461629776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7857927,"id":"0xaf88a6e3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461629776,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11751,"tdur":8912,"tts":7857927},
-{"pid":27443,"tid":27459,"ts":326461629776,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":158},"tts":7857927},
-{"pid":27443,"tid":27459,"ts":326461629807,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7857958},
-{"pid":27443,"tid":27459,"ts":326461629837,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":5128,"tdur":4945,"tts":7857988},
-{"pid":27443,"tid":27459,"ts":326461629868,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7858019},
-{"pid":27443,"tid":27459,"ts":326461629898,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":118,"frame":"0x78c60000"}},"dur":5067,"tdur":4853,"tts":7858080},
-{"pid":27443,"tid":27459,"ts":326461629990,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4944,"tdur":4761,"tts":7858141},
-{"pid":27443,"tid":27459,"ts":326461629990,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7858446},
-{"pid":27443,"tid":27459,"ts":326461629990,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":7858446},
-{"pid":27443,"tid":27459,"ts":326461632676,"ph":"B","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7860674},
-{"pid":27443,"tid":27459,"ts":326461632828,"ph":"E","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7860857},
-{"pid":27443,"tid":27459,"ts":326461632859,"ph":"B","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7860857},
-{"pid":27443,"tid":27459,"ts":326461632981,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7860949},
-{"pid":27443,"tid":27459,"ts":326461633103,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7861071},
-{"pid":27443,"tid":27459,"ts":326461633134,"ph":"E","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7861101},
-{"pid":27443,"tid":27459,"ts":326461634904,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7862902},
-{"pid":27443,"tid":27459,"ts":326461634965,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4181,"tdur":3174,"tts":7862933},
-{"pid":27443,"tid":27459,"ts":326461635026,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7862994},
-{"pid":27443,"tid":27459,"ts":326461635026,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7862994},
-{"pid":27443,"tid":27459,"ts":326461635056,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7863024},
-{"pid":27443,"tid":27459,"ts":326461635484,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7863482},
-{"pid":27443,"tid":27459,"ts":326461635514,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7863482},
-{"pid":27443,"tid":27459,"ts":326461635545,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3601,"tdur":2595,"tts":7863512},
-{"pid":27443,"tid":27459,"ts":326461635575,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3388,"tdur":2381,"tts":7863543},
-{"pid":27443,"tid":27459,"ts":326461635575,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":488,"tts":7863543},
-{"pid":27443,"tid":27459,"ts":326461636094,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":213,"tts":7864062},
-{"pid":27443,"tid":27459,"ts":326461636308,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7864275},
-{"pid":27443,"tid":27459,"ts":326461636430,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7864397},
-{"pid":27443,"tid":27459,"ts":326461636430,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2502,"tdur":1496,"tts":7864397},
-{"pid":27443,"tid":27459,"ts":326461638963,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":7865924},
-{"pid":27443,"tid":27459,"ts":326461638994,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":152,"tdur":91,"tts":7865985},
-{"pid":27443,"tid":27459,"ts":326461639146,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":158},"dur":550,"tdur":549,"tts":7866107},
-{"pid":27443,"tid":27459,"ts":326461639177,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":519,"tdur":519,"tts":7866137},
-{"pid":27443,"tid":27459,"ts":326461639390,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":31,"tdur":30,"tts":7866351},
-{"pid":27443,"tid":27459,"ts":326461639421,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":30,"tdur":31,"tts":7866381},
-{"pid":27443,"tid":27459,"ts":326461639451,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":31,"tdur":0,"tts":7866412},
-{"pid":27443,"tid":27459,"ts":326461639482,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":0,"tdur":0,"tts":7866442},
-{"pid":27443,"tid":27459,"ts":326461639482,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":30,"tdur":31,"tts":7866442},
-{"pid":27443,"tid":27459,"ts":326461639512,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":31,"tdur":0,"tts":7866473},
-{"pid":27443,"tid":27459,"ts":326461639543,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":0,"tdur":0,"tts":7866503},
-{"pid":27443,"tid":27459,"ts":326461639543,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":30,"tdur":31,"tts":7866503},
-{"pid":27443,"tid":27459,"ts":326461639573,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":0,"tdur":0,"tts":7866534},
-{"pid":27443,"tid":27459,"ts":326461639573,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":31,"tdur":30,"tts":7866534},
-{"pid":27443,"tid":27459,"ts":326461639604,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":30,"tdur":31,"tts":7866564},
-{"pid":27443,"tid":27459,"ts":326461639634,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":0,"tdur":0,"tts":7866595},
-{"pid":27443,"tid":27459,"ts":326461639634,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":31,"tdur":30,"tts":7866595},
-{"pid":27443,"tid":27459,"ts":326461639665,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":158},"dur":0,"tdur":0,"tts":7866625},
-{"pid":27443,"tid":27459,"ts":326461639696,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7866656,"id":"0x300000095"},
-{"pid":27443,"tid":27459,"ts":326461639696,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":1709,"tdur":30,"tts":7866687},
-{"pid":27443,"tid":27459,"ts":326461639726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7866687,"id":"0xaf88a56af182217a"},
-{"pid":27443,"tid":27477,"ts":326461628342,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":806165,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461628433,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":806256},
-{"pid":27443,"tid":27477,"ts":326461628464,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806287},
-{"pid":27443,"tid":27477,"ts":326461628464,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":806287},
-{"pid":27443,"tid":27477,"ts":326461628495,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806317},
-{"pid":27443,"tid":27477,"ts":326461628525,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806348},
-{"pid":27443,"tid":27477,"ts":326461628525,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":806348},
-{"pid":27443,"tid":27477,"ts":326461628556,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806378},
-{"pid":27443,"tid":27477,"ts":326461628586,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806409},
-{"pid":27443,"tid":27477,"ts":326461628586,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":806409},
-{"pid":27443,"tid":27477,"ts":326461628617,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":806439},
-{"pid":27443,"tid":27477,"ts":326461628647,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":806470},
-{"pid":27443,"tid":27477,"ts":326461628678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806500},
-{"pid":27443,"tid":27477,"ts":326461628678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":806500},
-{"pid":27443,"tid":27477,"ts":326461628708,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806531},
-{"pid":27443,"tid":27477,"ts":326461628708,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":806561},
-{"pid":27443,"tid":27477,"ts":326461628739,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806561},
-{"pid":27443,"tid":27477,"ts":326461628769,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806592},
-{"pid":27443,"tid":27477,"ts":326461628769,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":806592},
-{"pid":27443,"tid":27477,"ts":326461628800,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806622},
-{"pid":27443,"tid":27477,"ts":326461628800,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":806622},
-{"pid":27443,"tid":27477,"ts":326461628830,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":806653},
-{"pid":27443,"tid":27477,"ts":326461628861,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806683},
-{"pid":27443,"tid":27477,"ts":326461628861,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":806683},
-{"pid":27443,"tid":27477,"ts":326461628891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806714},
-{"pid":27443,"tid":27477,"ts":326461628891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":806745},
-{"pid":27443,"tid":27477,"ts":326461628922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806745},
-{"pid":27443,"tid":27477,"ts":326461628952,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806775},
-{"pid":27443,"tid":27477,"ts":326461628952,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":806775},
-{"pid":27443,"tid":27477,"ts":326461628983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806806},
-{"pid":27443,"tid":27477,"ts":326461628983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":806806},
-{"pid":27443,"tid":27477,"ts":326461629013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806836},
-{"pid":27443,"tid":27477,"ts":326461629013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":806836},
-{"pid":27443,"tid":27477,"ts":326461629044,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":806867},
-{"pid":27443,"tid":27477,"ts":326461629074,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806897},
-{"pid":27443,"tid":27477,"ts":326461629074,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":806897},
-{"pid":27443,"tid":27477,"ts":326461629105,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806928},
-{"pid":27443,"tid":27477,"ts":326461629105,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":806928},
-{"pid":27443,"tid":27477,"ts":326461629135,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806958},
-{"pid":27443,"tid":27477,"ts":326461629166,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806989},
-{"pid":27443,"tid":27477,"ts":326461629166,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":806989},
-{"pid":27443,"tid":27477,"ts":326461629196,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":807019},
-{"pid":27443,"tid":27477,"ts":326461629196,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":807019},
-{"pid":27443,"tid":27477,"ts":326461629227,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":807050},
-{"pid":27443,"tid":27477,"ts":326461629258,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":807080},
-{"pid":27443,"tid":27477,"ts":326461629319,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":807141},
-{"pid":27443,"tid":27477,"ts":326461629349,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":807172},
-{"pid":27443,"tid":27477,"ts":326461629349,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":807172},
-{"pid":27443,"tid":27477,"ts":326461629380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":807202},
-{"pid":27443,"tid":27477,"ts":326461629410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":807233},
-{"pid":27443,"tid":27477,"ts":326461629410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":807233},
-{"pid":27443,"tid":27477,"ts":326461629441,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":807263},
-{"pid":27443,"tid":27477,"ts":326461629471,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":807294},
-{"pid":27443,"tid":27477,"ts":326461629532,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":807355},
-{"pid":27443,"tid":27477,"ts":326461629532,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":807355},
-{"pid":27443,"tid":27477,"ts":326461629532,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":807355},
-{"pid":27443,"tid":27477,"ts":326461629563,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":158},"tts":807385},
-{"pid":27443,"tid":27477,"ts":326461629624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":807477,"id":"0xaf88a6e3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461629654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":807477,"id":"0xaf88a4a4f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461629685,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":807508},
-{"pid":27443,"tid":27477,"ts":326461629715,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":807538},
-{"pid":27443,"tid":27477,"ts":326461629715,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":807538,"id":"0xaf88a56ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461629776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":807599,"id":"0xaf88a56df182217a"},
-{"pid":27443,"tid":27477,"ts":326461629776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":807599},
-{"pid":27443,"tid":27477,"ts":326461629776,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":153,"tts":807599},
-{"pid":27443,"tid":27477,"ts":326461629807,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":807630},
-{"pid":27443,"tid":27477,"ts":326461629807,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":807630},
-{"pid":27443,"tid":27477,"ts":326461629807,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":61,"tts":807630},
-{"pid":27443,"tid":27477,"ts":326461629837,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":31,"tts":807660},
-{"pid":27443,"tid":27477,"ts":326461629898,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":807721},
-{"pid":27443,"tid":27477,"ts":326461629898,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":807721},
-{"pid":27443,"tid":27477,"ts":326461629960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":807782,"id":"0xaf88a56ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461629960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3265,"tdur":2228,"tts":807782},
-{"pid":27443,"tid":27477,"ts":326461629960,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3265,"tdur":2228,"tts":807782},
-{"pid":27443,"tid":27477,"ts":326461629960,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":0,"tts":807813},
-{"pid":27443,"tid":27477,"ts":326461629990,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3205,"tdur":2167,"tts":807813},
-{"pid":27443,"tid":27477,"ts":326461630021,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":157},"dur":1434,"tdur":1343,"tts":807874},
-{"pid":27443,"tid":27477,"ts":326461630082,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":157},"dur":366,"tdur":306,"tts":807904},
-{"pid":27443,"tid":27477,"ts":326461630448,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":157},"dur":30,"tdur":31,"tts":808240},
-{"pid":27443,"tid":27477,"ts":326461630478,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":157},"tts":808271},
-{"pid":27443,"tid":27477,"ts":326461630784,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":808576},
-{"pid":27443,"tid":27477,"ts":326461630784,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":91,"tdur":91,"tts":808576},
-{"pid":27443,"tid":27477,"ts":326461630814,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":808606},
-{"pid":27443,"tid":27477,"ts":326461630814,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":808606},
-{"pid":27443,"tid":27477,"ts":326461630875,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":808667,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461630997,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":808789},
-{"pid":27443,"tid":27477,"ts":326461631424,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":809186},
-{"pid":27443,"tid":27477,"ts":326461631486,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1312,"tdur":336,"tts":809247},
-{"pid":27443,"tid":27477,"ts":326461631486,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":809247},
-{"pid":27443,"tid":27477,"ts":326461631486,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1251,"tdur":275,"tts":809247},
-{"pid":27443,"tid":27477,"ts":326461631486,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":809247},
-{"pid":27443,"tid":27477,"ts":326461631760,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16716},"dur":92,"tdur":61,"tts":809400},
-{"pid":27443,"tid":27477,"ts":326461631791,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":809400,"id":"0xaf88ab12f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461631852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":809461,"id":"0xaf88ab13f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461632798,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":809583,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461632828,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":809613,"id":"0x300000093"},
-{"pid":27443,"tid":27477,"ts":326461632859,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":809644,"id":"0x300000094"},
-{"pid":27443,"tid":27477,"ts":326461632859,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":275,"tdur":275,"tts":809644},
-{"pid":27443,"tid":27477,"ts":326461633073,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":809858,"id":"0xaf88ab2cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461633164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":809949,"id":"0xaf88a6fcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461633164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":809949,"id":"0xaf88a4a6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461637071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461636},"tts":810102,"id":"0xaf88a555f182217a"},
-{"pid":27443,"tid":27477,"ts":326461637071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":810102},
-{"pid":27443,"tid":27477,"ts":326461639146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":810163,"id":"0xaf88a56ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461639146,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":810163},
-{"pid":27443,"tid":27477,"ts":326461639177,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":92,"tts":810193},
-{"pid":27443,"tid":27477,"ts":326461639177,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":810193,"id":"0x300000096"},
-{"pid":27443,"tid":27477,"ts":326461639207,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":810224},
-{"pid":27443,"tid":27477,"ts":326461639238,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":810254,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461639238,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":810254,"id":"0xaf88a6fdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461639268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":810285,"id":"0xaf88a568f182217a"},
-{"pid":27443,"tid":27477,"ts":326461639299,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":810315},
-{"pid":27443,"tid":27477,"ts":326461639329,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461640548.0,"frame_time_us":326461636975.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":810346},
-{"pid":27443,"tid":27477,"ts":326461639329,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461640548.0,"frame_time_us":326461636975.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":810346},
-{"pid":27443,"tid":27477,"ts":326461639421,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461653641},"dur":30,"tdur":31,"tts":810437},
-{"pid":27443,"tid":27477,"ts":326461639421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":810437,"id":"0xaf88a569f182217a"},
-{"pid":27443,"tid":27477,"ts":326461639787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":810529,"id":"0xaf88a56af182217a"},
-{"pid":27443,"tid":27477,"ts":326461639787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2289,"tdur":1953,"tts":810529},
-{"pid":27443,"tid":27477,"ts":326461639818,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2258,"tdur":1922,"tts":810560},
-{"pid":27443,"tid":27477,"ts":326461639818,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":810560},
-{"pid":27443,"tid":27477,"ts":326461639818,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2258,"tdur":1922,"tts":810560},
-{"pid":27443,"tid":27477,"ts":326461639848,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2198,"tdur":1862,"tts":810590},
-{"pid":27443,"tid":27477,"ts":326461639848,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":810590},
-{"pid":27443,"tid":27477,"ts":326461639848,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":810590},
-{"pid":27443,"tid":27477,"ts":326461639879,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":810621,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461639879,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":810621},
-{"pid":27443,"tid":27477,"ts":326461639909,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":810651},
-{"pid":27443,"tid":27477,"ts":326461640062,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1984,"tdur":1648,"tts":810804},
-{"pid":27443,"tid":27477,"ts":326461640092,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":158},"dur":702,"tdur":702,"tts":810834},
-{"pid":27443,"tid":27477,"ts":326461640794,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":158},"dur":122,"tdur":92,"tts":811536},
-{"pid":27443,"tid":27477,"ts":326461640947,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":158},"tts":811689},
-{"pid":27443,"tid":27477,"ts":326461641222,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":811964},
-{"pid":27443,"tid":27477,"ts":326461641252,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":794,"tdur":458,"tts":811994},
-{"pid":27443,"tid":27477,"ts":326461641283,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":518,"tdur":214,"tts":811994},
-{"pid":27443,"tid":27477,"ts":326461641283,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":335,"tdur":31,"tts":811994},
-{"pid":27443,"tid":27477,"ts":326461641832,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":812238},
-{"pid":27443,"tid":27477,"ts":326461641862,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":812269},
-{"pid":27443,"tid":27477,"ts":326461641862,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":122,"tts":812269},
-{"pid":27443,"tid":27477,"ts":326461641893,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":812299},
-{"pid":27443,"tid":27477,"ts":326461641893,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":812299,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461641923,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":812330},
-{"pid":27443,"tid":27477,"ts":326461641923,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":812330},
-{"pid":27443,"tid":27477,"ts":326461641985,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":812391,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461642015,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":217}},"tts":812421,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461642015,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":4730880},"tts":812421,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461642625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":812543,"id":"0xaf88a56bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461642625,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":812543},
-{"pid":27443,"tid":27477,"ts":326461642778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":122,"tts":812543},
-{"pid":27443,"tid":27477,"ts":326461642809,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":91,"tts":812574},
-{"pid":27443,"tid":27477,"ts":326461642870,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":812635,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461642870,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":812635},
-{"pid":27443,"tid":27477,"ts":326461642900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":812665,"id":"0xaf88a567f182217a"},
-{"pid":27443,"tid":27477,"ts":326461642931,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":812696,"id":"0xaf88a564f182217a"},
-{"pid":27443,"tid":27477,"ts":326461642931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":812696},
-{"pid":27443,"tid":27477,"ts":326461642931,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":61,"tts":812727},
-{"pid":27443,"tid":27477,"ts":326461642961,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":812727,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461642992,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":812757},
-{"pid":27443,"tid":27477,"ts":326461642992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":812757,"id":"0xaf88a560f182217a"},
-{"pid":27443,"tid":27477,"ts":326461643022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":812788,"id":"0xaf88a565f182217a"},
-{"pid":27443,"tid":27477,"ts":326461643022,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":812788},
-{"pid":27443,"tid":27477,"ts":326461643053,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":812818},
-{"pid":27443,"tid":27477,"ts":326461643053,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":812818,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461643053,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":0,"tts":812849},
-{"pid":27443,"tid":27477,"ts":326461643083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":812849,"id":"0xaf88a566f182217a"},
-{"pid":27443,"tid":27477,"ts":326461643083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":92,"tts":812879},
-{"pid":27443,"tid":27477,"ts":326461643144,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":812910},
-{"pid":27443,"tid":27477,"ts":326461643144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":812910,"id":"0xaf88a6fef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461643175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":812940,"id":"0xaf88a4a0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461643205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":812971,"id":"0xaf88a567f182217a"},
-{"pid":27443,"tid":27477,"ts":326461643205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1984,"tdur":1709,"tts":812971},
-{"pid":27443,"tid":27477,"ts":326461643236,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1953,"tdur":1679,"tts":813001},
-{"pid":27443,"tid":27477,"ts":326461643236,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":813001},
-{"pid":27443,"tid":27477,"ts":326461643236,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":813001},
-{"pid":27443,"tid":27477,"ts":326461643266,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":152,"tts":813032},
-{"pid":27443,"tid":27477,"ts":326461643266,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":813062},
-{"pid":27443,"tid":27477,"ts":326461643419,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1740,"tdur":1465,"tts":813184},
-{"pid":27443,"tid":27477,"ts":326461643419,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1740,"tdur":1465,"tts":813184},
-{"pid":27443,"tid":27477,"ts":326461643419,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1709,"tdur":1435,"tts":813184},
-{"pid":27443,"tid":27477,"ts":326461643450,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":813215,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461643511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":813276},
-{"pid":27443,"tid":27477,"ts":326461643541,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":813306},
-{"pid":27443,"tid":27477,"ts":326461643572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813337},
-{"pid":27443,"tid":27477,"ts":326461643602,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813367},
-{"pid":27443,"tid":27477,"ts":326461643602,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":813367},
-{"pid":27443,"tid":27477,"ts":326461643633,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813398},
-{"pid":27443,"tid":27477,"ts":326461643633,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":813398},
-{"pid":27443,"tid":27477,"ts":326461643694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813459},
-{"pid":27443,"tid":27477,"ts":326461643694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":813459},
-{"pid":27443,"tid":27477,"ts":326461643724,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":813490},
-{"pid":27443,"tid":27477,"ts":326461643755,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":813520},
-{"pid":27443,"tid":27477,"ts":326461643785,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813551},
-{"pid":27443,"tid":27477,"ts":326461643816,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813581},
-{"pid":27443,"tid":27459,"ts":326461641466,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7866778},
-{"pid":27443,"tid":27459,"ts":326461641466,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7866778},
-{"pid":27443,"tid":27459,"ts":326461641618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7866931,"id":"0xaf88a4a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461641618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7866931},
-{"pid":27443,"tid":27459,"ts":326461641649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7866992,"id":"0xaf88a4a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461641710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7867022,"id":"0xaf88a6fcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461641710,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7867022},
-{"pid":27443,"tid":27459,"ts":326461641710,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7867022},
-{"pid":27443,"tid":27459,"ts":326461641771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7867083,"id":"0xaf88a4a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461641801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2625,"tdur":1190,"tts":7867114},
-{"pid":27443,"tid":27459,"ts":326461641801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7867114,"id":"0xaf88a6fdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461641801,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2625,"tdur":1190,"tts":7867114},
-{"pid":27443,"tid":27459,"ts":326461641923,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2473,"tdur":1038,"tts":7867236},
-{"pid":27443,"tid":27459,"ts":326461641923,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7867236,"id":"0x300000096"},
-{"pid":27443,"tid":27459,"ts":326461641954,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2350,"tdur":916,"tts":7867266},
-{"pid":27443,"tid":27459,"ts":326461641954,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1434,"tdur":0,"tts":7867266},
-{"pid":27443,"tid":27459,"ts":326461643388,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":855,"tts":7867327},
-{"pid":27443,"tid":27459,"ts":326461643450,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7867388},
-{"pid":27443,"tid":27459,"ts":326461643511,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7867419},
-{"pid":27443,"tid":27459,"ts":326461643541,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7867450},
-{"pid":27443,"tid":27459,"ts":326461643572,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7867480},
-{"pid":27443,"tid":27459,"ts":326461643602,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7867511},
-{"pid":27443,"tid":27459,"ts":326461643602,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7867541},
-{"pid":27443,"tid":27459,"ts":326461643633,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7867541},
-{"pid":27443,"tid":27459,"ts":326461643663,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":580,"tts":7867602},
-{"pid":27443,"tid":27459,"ts":326461643816,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":396,"tts":7867755},
-{"pid":27443,"tid":27459,"ts":326461643816,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7867755},
-{"pid":27443,"tid":27459,"ts":326461643907,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7867785},
-{"pid":27443,"tid":27459,"ts":326461644182,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":119,"frame":"0x78c60000"}},"tts":7868060,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461644213,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7868090},
-{"pid":27443,"tid":27459,"ts":326461644213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7868090,"id":"0xaf88a561f182217a"},
-{"pid":27443,"tid":27459,"ts":326461644243,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7868121},
-{"pid":27443,"tid":27459,"ts":326461644335,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7868213},
-{"pid":27443,"tid":27459,"ts":326461644335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7868213,"id":"0xaf88ab2df3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461644457,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7868335,"id":"0xaf88a4a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461644487,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7868365},
-{"pid":27443,"tid":27459,"ts":326461644487,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7868365,"id":"0xaf88a4a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461644518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7868396,"id":"0xaf88a6fef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461644518,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":7868396},
-{"pid":27443,"tid":27459,"ts":326461644518,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":7868396},
-{"pid":27443,"tid":27459,"ts":326461644579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7868457,"id":"0xaf88a4a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461644579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7868457},
-{"pid":27443,"tid":27459,"ts":326461644640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7868518,"id":"0xaf88a4a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461644640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":7868518},
-{"pid":27443,"tid":27459,"ts":326461645525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7868609,"id":"0xaf88a4a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461645525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":17305,"tdur":16115,"tts":7868609},
-{"pid":27443,"tid":27459,"ts":326461645555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7868640,"id":"0xaf88a4a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461645555,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7868640,"id":"0xaf88a6fff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461645586,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":17213,"tdur":16024,"tts":7868670},
-{"pid":27443,"tid":27459,"ts":326461645586,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":159},"tts":7868670},
-{"pid":27443,"tid":27459,"ts":326461645586,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7868670},
-{"pid":27443,"tid":27459,"ts":326461645647,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":12788,"tdur":11995,"tts":7868731},
-{"pid":27443,"tid":27459,"ts":326461645647,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":7868731},
-{"pid":27443,"tid":27459,"ts":326461645708,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":119,"frame":"0x78c60000"}},"dur":12727,"tdur":11934,"tts":7868792},
-{"pid":27443,"tid":27459,"ts":326461645769,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":12635,"tdur":11842,"tts":7868853},
-{"pid":27443,"tid":27459,"ts":326461645800,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7868884},
-{"pid":27443,"tid":27459,"ts":326461646807,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7869922},
-{"pid":27443,"tid":27459,"ts":326461647417,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7870288},
-{"pid":27443,"tid":27459,"ts":326461647478,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7870349},
-{"pid":27443,"tid":27459,"ts":326461647509,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7870379},
-{"pid":27443,"tid":27459,"ts":326461647661,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7870532},
-{"pid":27443,"tid":27459,"ts":326461647936,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7870807},
-{"pid":27443,"tid":27459,"ts":326461648730,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7871570},
-{"pid":27443,"tid":27459,"ts":326461648882,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7871753},
-{"pid":27443,"tid":27477,"ts":326461643816,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":813581},
-{"pid":27443,"tid":27477,"ts":326461643816,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":813581},
-{"pid":27443,"tid":27477,"ts":326461643877,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":813642},
-{"pid":27443,"tid":27477,"ts":326461643907,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813673},
-{"pid":27443,"tid":27477,"ts":326461643938,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813703},
-{"pid":27443,"tid":27477,"ts":326461643938,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":813703},
-{"pid":27443,"tid":27477,"ts":326461643968,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":306,"tdur":30,"tts":813734},
-{"pid":27443,"tid":27477,"ts":326461643968,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":0,"tts":813734},
-{"pid":27443,"tid":27477,"ts":326461644274,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813764},
-{"pid":27443,"tid":27477,"ts":326461644304,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813795},
-{"pid":27443,"tid":27477,"ts":326461644304,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":813795},
-{"pid":27443,"tid":27477,"ts":326461644335,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813825},
-{"pid":27443,"tid":27477,"ts":326461644365,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813856},
-{"pid":27443,"tid":27477,"ts":326461644365,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":813856},
-{"pid":27443,"tid":27477,"ts":326461644396,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":813886},
-{"pid":27443,"tid":27477,"ts":326461644426,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813917},
-{"pid":27443,"tid":27477,"ts":326461644426,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":813917},
-{"pid":27443,"tid":27477,"ts":326461644457,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":813947},
-{"pid":27443,"tid":27477,"ts":326461644487,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":813978},
-{"pid":27443,"tid":27477,"ts":326461644487,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":813978},
-{"pid":27443,"tid":27477,"ts":326461644518,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814008},
-{"pid":27443,"tid":27477,"ts":326461644518,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":814008},
-{"pid":27443,"tid":27477,"ts":326461644548,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814039},
-{"pid":27443,"tid":27477,"ts":326461644579,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814069},
-{"pid":27443,"tid":27477,"ts":326461644579,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":814069},
-{"pid":27443,"tid":27477,"ts":326461644609,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814100},
-{"pid":27443,"tid":27477,"ts":326461644640,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814130},
-{"pid":27443,"tid":27477,"ts":326461644640,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":814130},
-{"pid":27443,"tid":27477,"ts":326461644670,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814161},
-{"pid":27443,"tid":27477,"ts":326461644701,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":814192},
-{"pid":27443,"tid":27477,"ts":326461644731,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814222},
-{"pid":27443,"tid":27477,"ts":326461644731,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":814222},
-{"pid":27443,"tid":27477,"ts":326461644762,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":814253},
-{"pid":27443,"tid":27477,"ts":326461644853,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":814344},
-{"pid":27443,"tid":27477,"ts":326461644884,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814375},
-{"pid":27443,"tid":27477,"ts":326461644884,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":814405},
-{"pid":27443,"tid":27477,"ts":326461644914,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":814405},
-{"pid":27443,"tid":27477,"ts":326461644945,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814436},
-{"pid":27443,"tid":27477,"ts":326461644976,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":814466},
-{"pid":27443,"tid":27477,"ts":326461644976,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":814466},
-{"pid":27443,"tid":27477,"ts":326461645037,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":814527},
-{"pid":27443,"tid":27477,"ts":326461645067,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":814558},
-{"pid":27443,"tid":27477,"ts":326461645098,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":814588},
-{"pid":27443,"tid":27477,"ts":326461645098,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":814588},
-{"pid":27443,"tid":27477,"ts":326461645128,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":814619},
-{"pid":27443,"tid":27477,"ts":326461645159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":814649,"id":"0xaf88a562f182217a"},
-{"pid":27443,"tid":27477,"ts":326461645189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":814680,"id":"0xaf88a560f182217a"},
-{"pid":27443,"tid":27477,"ts":326461645189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":814680},
-{"pid":27443,"tid":27477,"ts":326461645220,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":814710},
-{"pid":27443,"tid":27477,"ts":326461645220,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":814710},
-{"pid":27443,"tid":27477,"ts":326461645220,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":814710},
-{"pid":27443,"tid":27477,"ts":326461645250,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":814741},
-{"pid":27443,"tid":27477,"ts":326461645250,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":814741},
-{"pid":27443,"tid":27477,"ts":326461645311,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":814802},
-{"pid":27443,"tid":27477,"ts":326461645342,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":814832},
-{"pid":27443,"tid":27477,"ts":326461645372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":814863,"id":"0xaf88a561f182217a"},
-{"pid":27443,"tid":27477,"ts":326461645372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":153,"tts":814863},
-{"pid":27443,"tid":27477,"ts":326461645372,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":153,"tdur":122,"tts":814863},
-{"pid":27443,"tid":27477,"ts":326461645372,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":159},"tts":814863},
-{"pid":27443,"tid":27477,"ts":326461645433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":814955,"id":"0xaf88a6fff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461645464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":814955,"id":"0xaf88a4a2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461645494,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":814985},
-{"pid":27443,"tid":27477,"ts":326461645525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":815016,"id":"0xaf88a562f182217a"},
-{"pid":27443,"tid":27477,"ts":326461645525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2167,"tdur":1709,"tts":815016},
-{"pid":27443,"tid":27477,"ts":326461645555,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2137,"tdur":1679,"tts":815046},
-{"pid":27443,"tid":27477,"ts":326461645555,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":815046},
-{"pid":27443,"tid":27477,"ts":326461645586,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2075,"tdur":1617,"tts":815077},
-{"pid":27443,"tid":27477,"ts":326461645586,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":158},"dur":946,"tdur":946,"tts":815077},
-{"pid":27443,"tid":27477,"ts":326461645616,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":158},"dur":275,"tdur":275,"tts":815107},
-{"pid":27443,"tid":27477,"ts":326461645891,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":158},"dur":61,"tdur":30,"tts":815382},
-{"pid":27443,"tid":27477,"ts":326461645952,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":158},"tts":815443},
-{"pid":27443,"tid":27477,"ts":326461646166,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":815656},
-{"pid":27443,"tid":27477,"ts":326461646166,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":62,"tts":815656},
-{"pid":27443,"tid":27477,"ts":326461646196,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":815687},
-{"pid":27443,"tid":27477,"ts":326461646196,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":815687},
-{"pid":27443,"tid":27477,"ts":326461646196,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":815687,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461646288,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":815779},
-{"pid":27443,"tid":27477,"ts":326461646532,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":816023},
-{"pid":27443,"tid":27477,"ts":326461646563,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":305,"tts":816053},
-{"pid":27443,"tid":27477,"ts":326461646563,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":816053},
-{"pid":27443,"tid":27477,"ts":326461646593,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":611,"tdur":213,"tts":816084},
-{"pid":27443,"tid":27477,"ts":326461646654,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16732},"dur":92,"tdur":91,"tts":816145},
-{"pid":27443,"tid":27477,"ts":326461646685,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":816175,"id":"0xaf88ab2ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461646746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":816236,"id":"0xaf88ab2ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461647234,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":816358,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461647295,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":816389,"id":"0x300000095"},
-{"pid":27443,"tid":27477,"ts":326461647295,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":214,"tts":816389},
-{"pid":27443,"tid":27477,"ts":326461647448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":816542,"id":"0xaf88ab28f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461647600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":816633,"id":"0xaf88a6f8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461647631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":816664,"id":"0xaf88a4bcf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461653735,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461653},"tts":816816,"id":"0xaf88a569f182217a"},
-{"pid":27443,"tid":27477,"ts":326461653765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":816816},
-{"pid":27443,"tid":27477,"ts":326461656268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":816877,"id":"0xaf88a563f182217a"},
-{"pid":27443,"tid":27477,"ts":326461656268,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":816908},
-{"pid":27443,"tid":27477,"ts":326461656299,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":816908},
-{"pid":27443,"tid":27477,"ts":326461656329,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":816938,"id":"0x300000097"},
-{"pid":27443,"tid":27477,"ts":326461656329,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":816938},
-{"pid":27443,"tid":27477,"ts":326461656360,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":816969,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461656390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":816999,"id":"0xaf88a6f9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461657153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":817121,"id":"0xaf88a57cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461657153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":817152},
-{"pid":27443,"tid":27477,"ts":326461657184,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461656054.0,"frame_time_us":326461653656.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":123,"tts":817182},
-{"pid":27443,"tid":27477,"ts":326461657214,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461656054.0,"frame_time_us":326461653656.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":123,"tts":817182},
-{"pid":27443,"tid":27477,"ts":326461657306,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461670322},"dur":30,"tdur":31,"tts":817274},
-{"pid":27443,"tid":27477,"ts":326461657306,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":817274,"id":"0xaf88a57df182217a"},
-{"pid":27443,"tid":27477,"ts":326461659229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":817366,"id":"0xaf88a57ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461659229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":817366},
-{"pid":27443,"tid":27477,"ts":326461659290,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":817427},
-{"pid":27443,"tid":27477,"ts":326461659320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":817457,"id":"0xaf88a6faf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461662433,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":817549,"id":"0xaf88a57ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461662464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1709,"tdur":1709,"tts":817549},
-{"pid":27443,"tid":27477,"ts":326461662464,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1709,"tdur":1709,"tts":817549},
-{"pid":27443,"tid":27477,"ts":326461662464,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":0,"tts":817579},
-{"pid":27443,"tid":27477,"ts":326461662494,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1648,"tdur":1648,"tts":817579},
-{"pid":27443,"tid":27477,"ts":326461662494,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1648,"tdur":1648,"tts":817579},
-{"pid":27443,"tid":27477,"ts":326461662494,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":0,"tts":817610},
-{"pid":27443,"tid":27477,"ts":326461662525,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":817610},
-{"pid":27443,"tid":27477,"ts":326461662525,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":817610,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461662555,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":817640},
-{"pid":27443,"tid":27477,"ts":326461662586,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":817671},
-{"pid":27443,"tid":27477,"ts":326461662708,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1404,"tdur":1404,"tts":817793},
-{"pid":27443,"tid":27477,"ts":326461662738,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":159},"dur":306,"tdur":306,"tts":817823},
-{"pid":27443,"tid":27477,"ts":326461663044,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":159},"dur":61,"tdur":31,"tts":818159},
-{"pid":27443,"tid":27477,"ts":326461663135,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":159},"tts":818220},
-{"pid":27443,"tid":27477,"ts":326461663349,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":818464},
-{"pid":27443,"tid":27477,"ts":326461663379,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":733,"tdur":733,"tts":818464},
-{"pid":27443,"tid":27477,"ts":326461663379,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":245,"tts":818464},
-{"pid":27443,"tid":27477,"ts":326461663623,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":818709},
-{"pid":27443,"tid":27466,"ts":326461646776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":153,"tdur":92,"tts":400030},
-{"pid":27443,"tid":27466,"ts":326461646807,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":400060,"id":"0xccc5c302"},
-{"pid":27443,"tid":27466,"ts":326461646929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":400122,"id":"0xaf88ab2ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461646959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":400152},
-{"pid":27443,"tid":27466,"ts":326461646959,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":400152,"id":"0xccc5c406"},
-{"pid":27443,"tid":27466,"ts":326461647112,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":400244},
-{"pid":27443,"tid":27466,"ts":326461647142,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":400274},{"pid":27443,"tid":27466,"ts":326461647142,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":400274,"id":"0xc4c1f10a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461647600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":400457,"id":"0xaf88ab28f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461647600,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":400457},
-{"pid":27443,"tid":27466,"ts":326461647600,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":400457,"id":"0xccc5c502"},
-{"pid":27443,"tid":27466,"ts":326461656024,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":400579},
-{"pid":27443,"tid":27466,"ts":326461656054,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":123,"tdur":122,"tts":400610},
-{"pid":27443,"tid":27466,"ts":326461656085,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":400640,"id":"0xba466802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461656115,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":62,"tdur":61,"tts":400671},
-{"pid":27443,"tid":27466,"ts":326461656115,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":400701,"id":"0xaf88a563f182217a"},
-{"pid":27443,"tid":27466,"ts":326461656970,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":400793},
-{"pid":27443,"tid":27466,"ts":326461657001,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":400824},
-{"pid":27443,"tid":27466,"ts":326461657001,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":400824,"id":"0xba466902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461657031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":400854,"id":"0xaf88a57cf182217a"},
-{"pid":27443,"tid":27466,"ts":326461658954,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":400946},
-{"pid":27443,"tid":27466,"ts":326461658984,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":122,"tdur":122,"tts":400976},
-{"pid":27443,"tid":27466,"ts":326461659015,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401007,"id":"0xba466c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461659045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":401037,"id":"0xaf88a57ef182217a"},
-{"pid":27443,"tid":27466,"ts":326461665211,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401190,"id":"0xaf88ab29f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461665211,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":401190},
-{"pid":27443,"tid":27466,"ts":326461665241,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401220,"id":"0xccc5c702"},
-{"pid":27443,"tid":27466,"ts":326461668354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401403,"id":"0xaf88ab2af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461668385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":401403},
-{"pid":27443,"tid":27466,"ts":326461668385,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401403,"id":"0xccc5c802"},
-{"pid":27443,"tid":27466,"ts":326461668446,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401464,"id":"0xaf88ab2bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461668476,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":401495},
-{"pid":27443,"tid":27466,"ts":326461668476,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401495,"id":"0xccc5c906"},
-{"pid":27443,"tid":27466,"ts":326461668690,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":401556},
-{"pid":27443,"tid":27466,"ts":326461668720,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":401587},
-{"pid":27443,"tid":27466,"ts":326461668720,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401587,"id":"0xc4c1f70a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461669209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401709,"id":"0xaf88ab24f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461669209,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":401709},
-{"pid":27443,"tid":27466,"ts":326461669239,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401739,"id":"0xccc5ca02"},
-{"pid":27443,"tid":27466,"ts":326461669667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":401861,"id":"0xaf88ab25f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461669697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":401892},
-{"pid":27443,"tid":27466,"ts":326461669697,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":401892,"id":"0xccc5cb02"},
-{"pid":27443,"tid":27466,"ts":326461672810,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":401983},
-{"pid":27443,"tid":27466,"ts":326461672841,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":92,"tts":402044},
-{"pid":27443,"tid":27466,"ts":326461672871,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":402044,"id":"0xba466e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461672902,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":402075},
-{"pid":27443,"tid":27466,"ts":326461672932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":402105,"id":"0xaf88a570f182217a"},
-{"pid":27443,"tid":27466,"ts":326461673848,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":213,"tdur":122,"tts":402197},
-{"pid":27443,"tid":27466,"ts":326461673878,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":153,"tdur":61,"tts":402227},
-{"pid":27443,"tid":27466,"ts":326461673878,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":402227,"id":"0xba466f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461673909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":402258,"id":"0xaf88a571f182217a"},
-{"pid":27443,"tid":27466,"ts":326461673909,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":402258},
-{"pid":27443,"tid":27466,"ts":326461677724,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":402350},
-{"pid":27443,"tid":27466,"ts":326461677785,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":91,"tts":402411},
-{"pid":27443,"tid":27466,"ts":326461677785,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":402411,"id":"0xba467002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461677846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":402472,"id":"0xaf88a573f182217a"},
-{"pid":27443,"tid":27466,"ts":326461683309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":402655,"id":"0xaf88ab26f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461683309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":402655},
-{"pid":27443,"tid":27466,"ts":326461683340,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":402685,"id":"0xccc5cd02"},
-{"pid":27443,"tid":27466,"ts":326461686758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":402807,"id":"0xaf88ab27f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461686788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":402838},
-{"pid":27443,"tid":27466,"ts":326461686788,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":402838,"id":"0xccc5ce02"},
-{"pid":27443,"tid":27466,"ts":326461686849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":402899,"id":"0xaf88ab20f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461686849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":402899},
-{"pid":27443,"tid":27459,"ts":326461649187,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7872028},
-{"pid":27443,"tid":27459,"ts":326461649340,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7872180},
-{"pid":27443,"tid":27459,"ts":326461649401,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7872241},
-{"pid":27443,"tid":27459,"ts":326461649615,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7872455},
-{"pid":27443,"tid":27459,"ts":326461649920,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7872791},
-{"pid":27443,"tid":27459,"ts":326461650958,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7873645},
-{"pid":27443,"tid":27459,"ts":326461651019,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7873737},
-{"pid":27443,"tid":27459,"ts":326461651415,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7874133},
-{"pid":27443,"tid":27459,"ts":326461654956,"ph":"B","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7877247},
-{"pid":27443,"tid":27459,"ts":326461655108,"ph":"E","cat":"v8","name":"V8.ParseMicroSeconds","args":{},"tts":7877430},
-{"pid":27443,"tid":27459,"ts":326461655139,"ph":"B","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7877430},
-{"pid":27443,"tid":27459,"ts":326461655200,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7877491},
-{"pid":27443,"tid":27459,"ts":326461655291,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7877582},
-{"pid":27443,"tid":27459,"ts":326461655322,"ph":"E","cat":"v8","name":"V8.CompileEvalMicroSeconds","args":{},"tts":7877613},
-{"pid":27443,"tid":27459,"ts":326461655444,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7877735},
-{"pid":27443,"tid":27459,"ts":326461656390,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7878681},
-{"pid":27443,"tid":27459,"ts":326461658374,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7880665},
-{"pid":27443,"tid":27459,"ts":326461658466,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3296,"tdur":3297,"tts":7880756},
-{"pid":27443,"tid":27459,"ts":326461658496,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7880817},
-{"pid":27443,"tid":27459,"ts":326461658527,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7880817},
-{"pid":27443,"tid":27459,"ts":326461658557,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7880848},
-{"pid":27443,"tid":27459,"ts":326461658984,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7881306},
-{"pid":27443,"tid":27459,"ts":326461659015,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7881336},
-{"pid":27443,"tid":27459,"ts":326461659076,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2686,"tdur":2686,"tts":7881367},
-{"pid":27443,"tid":27459,"ts":326461659076,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2503,"tdur":2472,"tts":7881397},
-{"pid":27443,"tid":27459,"ts":326461659106,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":611,"tdur":611,"tts":7881397},
-{"pid":27443,"tid":27459,"ts":326461659717,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":214,"tts":7882038},
-{"pid":27443,"tid":27459,"ts":326461659961,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":153,"tdur":153,"tts":7882252},
-{"pid":27443,"tid":27459,"ts":326461660144,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7882435},
-{"pid":27443,"tid":27459,"ts":326461660144,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1435,"tdur":1434,"tts":7882435},
-{"pid":27443,"tid":27459,"ts":326461661609,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7883900},
-{"pid":27443,"tid":27459,"ts":326461661640,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7883931},
-{"pid":27443,"tid":27459,"ts":326461661762,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":159},"dur":458,"tdur":427,"tts":7884053},
-{"pid":27443,"tid":27459,"ts":326461661792,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":7884083},
-{"pid":27443,"tid":27459,"ts":326461662006,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":30,"tdur":0,"tts":7884327},
-{"pid":27443,"tid":27459,"ts":326461662036,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":31,"tdur":0,"tts":7884358},
-{"pid":27443,"tid":27459,"ts":326461662067,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":30,"tdur":0,"tts":7884358},
-{"pid":27443,"tid":27459,"ts":326461662097,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":0,"tdur":0,"tts":7884388},
-{"pid":27443,"tid":27459,"ts":326461662097,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":31,"tdur":31,"tts":7884388},
-{"pid":27443,"tid":27459,"ts":326461662128,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":0,"tdur":0,"tts":7884419},
-{"pid":27443,"tid":27459,"ts":326461662128,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":30,"tdur":30,"tts":7884419},
-{"pid":27443,"tid":27459,"ts":326461662158,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":0,"tdur":0,"tts":7884449},
-{"pid":27443,"tid":27459,"ts":326461662189,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":159},"dur":0,"tdur":0,"tts":7884480},
-{"pid":27443,"tid":27459,"ts":326461662220,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7884510,"id":"0x300000096"},
-{"pid":27443,"tid":27459,"ts":326461662220,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":518,"tdur":122,"tts":7884510},
-{"pid":27443,"tid":27459,"ts":326461662220,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":31,"tts":7884510},
-{"pid":27443,"tid":27459,"ts":326461662342,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7884602,"id":"0xaf88a57ff182217a"},
-{"pid":27443,"tid":27459,"ts":326461662769,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7884663},
-{"pid":27443,"tid":27459,"ts":326461662860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461647},"tts":7884755,"id":"0xaf88a484f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461662891,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":7884785},
-{"pid":27443,"tid":27459,"ts":326461662922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7884816,"id":"0xaf88a4a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461662952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7884846},
-{"pid":27443,"tid":27459,"ts":326461662952,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7884846,"id":"0xaf88a4bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461662983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7884877,"id":"0xaf88a6d5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461662983,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":7884877},
-{"pid":27443,"tid":27459,"ts":326461663013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7884907,"id":"0xaf88a6fbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461663013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7884907,"id":"0xaf88a4bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461663074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7884968,"id":"0xaf88a4bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461663074,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7884968},
-{"pid":27443,"tid":27459,"ts":326461663105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7884999,"id":"0xaf88a6f8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461663105,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":7884999},
-{"pid":27443,"tid":27459,"ts":326461663105,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7884999},
-{"pid":27443,"tid":27459,"ts":326461663166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7885060,"id":"0xaf88a4bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461663166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2045,"tdur":1373,"tts":7885060},
-{"pid":27443,"tid":27459,"ts":326461663196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7885090,"id":"0xaf88a4bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461663196,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7885090,"id":"0xaf88a6f9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461663227,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1984,"tdur":1312,"tts":7885121},
-{"pid":27443,"tid":27459,"ts":326461663288,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1892,"tdur":1221,"tts":7885182},
-{"pid":27443,"tid":27459,"ts":326461663288,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7885182,"id":"0x300000097"},
-{"pid":27443,"tid":27459,"ts":326461663318,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1770,"tdur":1099,"tts":7885212},
-{"pid":27443,"tid":27459,"ts":326461663349,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1739,"tdur":1068,"tts":7885243},
-{"pid":27443,"tid":27459,"ts":326461663410,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7885304},
-{"pid":27443,"tid":27459,"ts":326461663440,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7885334},
-{"pid":27443,"tid":27459,"ts":326461663471,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7885365},
-{"pid":27443,"tid":27459,"ts":326461663501,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7885396},
-{"pid":27443,"tid":27459,"ts":326461663532,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7885426},
-{"pid":27443,"tid":27459,"ts":326461663562,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7885457},
-{"pid":27443,"tid":27459,"ts":326461663593,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7885487},
-{"pid":27443,"tid":27459,"ts":326461663654,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1404,"tdur":733,"tts":7885548},
-{"pid":27443,"tid":27459,"ts":326461663837,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":794,"tdur":489,"tts":7885731},
-{"pid":27443,"tid":27459,"ts":326461663868,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7885762},
-{"pid":27443,"tid":27459,"ts":326461664570,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":120,"frame":"0x78c60000"}},"tts":7886159,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461664570,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7886159},
-{"pid":27443,"tid":27459,"ts":326461664600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7886189,"id":"0xaf88a574f182217a"},
-{"pid":27443,"tid":27459,"ts":326461664631,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7886220},
-{"pid":27443,"tid":27459,"ts":326461665119,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7886342},
-{"pid":27443,"tid":27459,"ts":326461665119,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7886342,"id":"0xaf88ab29f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461665272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7886494,"id":"0xaf88a4bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461665272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7886494},
-{"pid":27443,"tid":27459,"ts":326461665302,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7886525,"id":"0xaf88a4b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461665302,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7886525,"id":"0xaf88a6faf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461665302,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":7886525},
-{"pid":27443,"tid":27459,"ts":326461665333,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7886555},
-{"pid":27443,"tid":27459,"ts":326461665394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7886616,"id":"0xaf88a4b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461665394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7886616},
-{"pid":27443,"tid":27459,"ts":326461666584,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7886708,"id":"0xaf88a4b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461666584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":14863,"tdur":11262,"tts":7886708},
-{"pid":27443,"tid":27459,"ts":326461666614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7886738,"id":"0xaf88a4baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461666614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7886738,"id":"0xaf88a6f4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461666645,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":14802,"tdur":11201,"tts":7886769},
-{"pid":27443,"tid":27459,"ts":326461666645,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":160},"tts":7886769},
-{"pid":27443,"tid":27459,"ts":326461666676,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7886799},
-{"pid":27443,"tid":27459,"ts":326461666737,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":10529,"tdur":7173,"tts":7886860},
-{"pid":27443,"tid":27459,"ts":326461666767,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7886891},
-{"pid":27443,"tid":27459,"ts":326461666859,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":120,"frame":"0x78c60000"}},"dur":10377,"tdur":7019,"tts":7886983},
-{"pid":27443,"tid":27459,"ts":326461666981,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":10255,"tdur":6897,"tts":7887105},
-{"pid":27443,"tid":27459,"ts":326461666981,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7887105},
-{"pid":27443,"tid":27459,"ts":326461677175,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7893972},
-{"pid":27443,"tid":27459,"ts":326461677266,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3296,"tdur":3296,"tts":7894033},
-{"pid":27443,"tid":27459,"ts":326461677297,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7894063},
-{"pid":27443,"tid":27459,"ts":326461677327,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7894094},
-{"pid":27443,"tid":27459,"ts":326461677327,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7894094},
-{"pid":27443,"tid":27459,"ts":326461677785,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7894552},
-{"pid":27443,"tid":27459,"ts":326461677815,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7894582},
-{"pid":27443,"tid":27459,"ts":326461677846,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2716,"tdur":2716,"tts":7894613},
-{"pid":27443,"tid":27459,"ts":326461677876,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2503,"tdur":2503,"tts":7894643},
-{"pid":27443,"tid":27459,"ts":326461677907,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":641,"tdur":610,"tts":7894674},
-{"pid":27443,"tid":27459,"ts":326461678548,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":213,"tts":7895315},
-{"pid":27443,"tid":27459,"ts":326461678762,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":91,"tts":7895559},
-{"pid":27443,"tid":27459,"ts":326461678884,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":7895650},
-{"pid":27443,"tid":27459,"ts":326461678914,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1465,"tdur":1465,"tts":7895681},
-{"pid":27443,"tid":27459,"ts":326461680410,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7897176},
-{"pid":27443,"tid":27459,"ts":326461680440,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7897207},
-{"pid":27443,"tid":27459,"ts":326461680562,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":160},"dur":458,"tdur":458,"tts":7897329},
-{"pid":27443,"tid":27459,"ts":326461680593,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":7897359},
-{"pid":27443,"tid":27459,"ts":326461680806,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":31,"tdur":31,"tts":7897573},
-{"pid":27443,"tid":27459,"ts":326461680837,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":30,"tdur":30,"tts":7897604},
-{"pid":27443,"tid":27459,"ts":326461680867,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":0,"tdur":0,"tts":7897634},
-{"pid":27443,"tid":27477,"ts":326461663685,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":818770},
-{"pid":27443,"tid":27477,"ts":326461663715,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":12},"dur":366,"tdur":366,"tts":818800},
-{"pid":27443,"tid":27477,"ts":326461663868,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":213,"tdur":213,"tts":818953},
-{"pid":27443,"tid":27477,"ts":326461663898,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":818983,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461663929,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":61,"tdur":61,"tts":819014},
-{"pid":27443,"tid":27477,"ts":326461663990,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":15,"num_edges":12},"dur":61,"tdur":30,"tts":819075},
-{"pid":27443,"tid":27477,"ts":326461664051,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":819136,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461664081,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":819197,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461664112,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":819197,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461664203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":819288,"id":"0xaf88a578f182217a"},
-{"pid":27443,"tid":27477,"ts":326461664234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":819319},
-{"pid":27443,"tid":27477,"ts":326461664234,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":819319},
-{"pid":27443,"tid":27477,"ts":326461664234,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":819349,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461664264,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":819349},
-{"pid":27443,"tid":27477,"ts":326461664264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":819349,"id":"0xaf88a57af182217a"},
-{"pid":27443,"tid":27477,"ts":326461664295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":819380,"id":"0xaf88a579f182217a"},
-{"pid":27443,"tid":27477,"ts":326461664325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":819410},
-{"pid":27443,"tid":27477,"ts":326461664325,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":62,"tts":819410},
-{"pid":27443,"tid":27477,"ts":326461664356,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":819441,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461664356,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":819441},
-{"pid":27443,"tid":27477,"ts":326461664386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":819472,"id":"0xaf88a57bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461664417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":819502,"id":"0xaf88a57af182217a"},
-{"pid":27443,"tid":27477,"ts":326461664417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1618,"tdur":1618,"tts":819502},
-{"pid":27443,"tid":27477,"ts":326461664417,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1618,"tdur":1556,"tts":819533},
-{"pid":27443,"tid":27477,"ts":326461664448,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":819533},
-{"pid":27443,"tid":27477,"ts":326461664448,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":819533},
-{"pid":27443,"tid":27477,"ts":326461664478,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":819563},
-{"pid":27443,"tid":27477,"ts":326461664478,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":819563},
-{"pid":27443,"tid":27477,"ts":326461664631,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1373,"tdur":1373,"tts":819716},
-{"pid":27443,"tid":27477,"ts":326461664631,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1373,"tdur":1373,"tts":819716},
-{"pid":27443,"tid":27477,"ts":326461664631,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1343,"tdur":1343,"tts":819716},
-{"pid":27443,"tid":27477,"ts":326461664631,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":819746,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461664753,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":819838},
-{"pid":27443,"tid":27477,"ts":326461664753,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":819838},
-{"pid":27443,"tid":27477,"ts":326461664783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":819868},
-{"pid":27443,"tid":27477,"ts":326461664814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":819899},
-{"pid":27443,"tid":27477,"ts":326461664814,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":819899},
-{"pid":27443,"tid":27477,"ts":326461664844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":819929},
-{"pid":27443,"tid":27477,"ts":326461664875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":819960},
-{"pid":27443,"tid":27477,"ts":326461664875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":819960},
-{"pid":27443,"tid":27477,"ts":326461664905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":819990},
-{"pid":27443,"tid":27477,"ts":326461664905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":819990},
-{"pid":27443,"tid":27477,"ts":326461664936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820021},
-{"pid":27443,"tid":27477,"ts":326461664936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":820051},
-{"pid":27443,"tid":27477,"ts":326461664966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820051},
-{"pid":27443,"tid":27477,"ts":326461664997,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820082},
-{"pid":27443,"tid":27477,"ts":326461664997,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":820082},
-{"pid":27443,"tid":27477,"ts":326461665027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820112},
-{"pid":27443,"tid":27477,"ts":326461665027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":820143},
-{"pid":27443,"tid":27477,"ts":326461665058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820143},
-{"pid":27443,"tid":27477,"ts":326461665088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820173},
-{"pid":27443,"tid":27477,"ts":326461665088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820173},
-{"pid":27443,"tid":27477,"ts":326461665119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820204},
-{"pid":27443,"tid":27477,"ts":326461665149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820235},
-{"pid":27443,"tid":27477,"ts":326461665149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":820235},
-{"pid":27443,"tid":27477,"ts":326461665180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820265},
-{"pid":27443,"tid":27477,"ts":326461665211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820296},
-{"pid":27443,"tid":27477,"ts":326461665211,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":820296},
-{"pid":27443,"tid":27477,"ts":326461665241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820326},
-{"pid":27443,"tid":27477,"ts":326461665272,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820357},
-{"pid":27443,"tid":27477,"ts":326461665272,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":820357},
-{"pid":27443,"tid":27477,"ts":326461665302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820387},
-{"pid":27443,"tid":27477,"ts":326461665302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820387},
-{"pid":27443,"tid":27477,"ts":326461665333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820418},
-{"pid":27443,"tid":27477,"ts":326461665333,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":820448},
-{"pid":27443,"tid":27477,"ts":326461665363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820448},
-{"pid":27443,"tid":27477,"ts":326461665394,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":820479},
-{"pid":27443,"tid":27477,"ts":326461665424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820509},
-{"pid":27443,"tid":27477,"ts":326461665424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820509},
-{"pid":27443,"tid":27477,"ts":326461665455,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":820540},
-{"pid":27443,"tid":27477,"ts":326461665485,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820570},
-{"pid":27443,"tid":27477,"ts":326461665516,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820601},
-{"pid":27443,"tid":27477,"ts":326461665546,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820631},
-{"pid":27443,"tid":27477,"ts":326461665546,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820631},
-{"pid":27443,"tid":27477,"ts":326461665577,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820662},
-{"pid":27443,"tid":27477,"ts":326461665577,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":820662},
-{"pid":27443,"tid":27477,"ts":326461665668,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820753},
-{"pid":27443,"tid":27477,"ts":326461665699,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820784},
-{"pid":27443,"tid":27477,"ts":326461665729,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820814},
-{"pid":27443,"tid":27477,"ts":326461665729,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":820845},
-{"pid":27443,"tid":27477,"ts":326461665760,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820845},
-{"pid":27443,"tid":27477,"ts":326461665790,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":820875},
-{"pid":27443,"tid":27477,"ts":326461665790,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":820875},
-{"pid":27443,"tid":27477,"ts":326461665851,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":820937},
-{"pid":27443,"tid":27477,"ts":326461665882,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":820998},
-{"pid":27443,"tid":27477,"ts":326461665913,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":820998},
-{"pid":27443,"tid":27477,"ts":326461665913,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":61,"tdur":31,"tts":821028},
-{"pid":27443,"tid":27477,"ts":326461665974,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":821059},
-{"pid":27443,"tid":27477,"ts":326461666004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":821089,"id":"0xaf88a575f182217a"},
-{"pid":27443,"tid":27477,"ts":326461666035,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":821120,"id":"0xaf88a57bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461666035,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":274,"tdur":274,"tts":821120},
-{"pid":27443,"tid":27477,"ts":326461666065,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":244,"tdur":244,"tts":821150},
-{"pid":27443,"tid":27477,"ts":326461666065,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":122,"tdur":122,"tts":821150},
-{"pid":27443,"tid":27477,"ts":326461666065,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":821150},
-{"pid":27443,"tid":27477,"ts":326461666096,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":821181},
-{"pid":27443,"tid":27477,"ts":326461666096,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":30,"tts":821181},
-{"pid":27443,"tid":27477,"ts":326461666157,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":821242},
-{"pid":27443,"tid":27477,"ts":326461666187,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":821272},
-{"pid":27443,"tid":27477,"ts":326461666187,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":821303},
-{"pid":27443,"tid":27477,"ts":326461666279,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":821364},
-{"pid":27443,"tid":27477,"ts":326461666279,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":821364},
-{"pid":27443,"tid":27477,"ts":326461666309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":821425,"id":"0xaf88a574f182217a"},
-{"pid":27443,"tid":27477,"ts":326461666340,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":213,"tdur":213,"tts":821425},
-{"pid":27443,"tid":27477,"ts":326461666340,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":213,"tdur":213,"tts":821425},
-{"pid":27443,"tid":27477,"ts":326461666340,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":160},"tts":821425},
-{"pid":27443,"tid":27477,"ts":326461666431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":821547,"id":"0xaf88a6f4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461666492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":821577,"id":"0xaf88a4b9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461666553,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":821638},
-{"pid":27443,"tid":27477,"ts":326461666584,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":821669,"id":"0xaf88a575f182217a"},
-{"pid":27443,"tid":27477,"ts":326461666584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2716,"tdur":2228,"tts":821669},
-{"pid":27443,"tid":27477,"ts":326461666584,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2686,"tdur":2228,"tts":821669},
-{"pid":27443,"tid":27477,"ts":326461666614,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":821700},
-{"pid":27443,"tid":27477,"ts":326461666614,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2656,"tdur":2197,"tts":821700},
-{"pid":27443,"tid":27477,"ts":326461666645,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":159},"dur":1434,"tdur":1434,"tts":821730},
-{"pid":27443,"tid":27477,"ts":326461666706,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":159},"dur":305,"tdur":305,"tts":821791},
-{"pid":27443,"tid":27477,"ts":326461667042,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":159},"dur":61,"tdur":61,"tts":822127},
-{"pid":27443,"tid":27477,"ts":326461667133,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":159},"tts":822218},
-{"pid":27443,"tid":27477,"ts":326461667408,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":822493},
-{"pid":27443,"tid":27477,"ts":326461667439,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":274,"tdur":274,"tts":822524},
-{"pid":27443,"tid":27477,"ts":326461667439,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":244,"tdur":244,"tts":822524},
-{"pid":27443,"tid":27477,"ts":326461667439,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":822524},
-{"pid":27443,"tid":27477,"ts":326461667469,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":822554},
-{"pid":27443,"tid":27477,"ts":326461667469,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":30,"tts":822585},
-{"pid":27443,"tid":27477,"ts":326461667530,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":822615},
-{"pid":27443,"tid":27477,"ts":326461667561,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":822646},
-{"pid":27443,"tid":27477,"ts":326461667561,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":822646},
-{"pid":27443,"tid":27477,"ts":326461667591,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":822676},
-{"pid":27443,"tid":27477,"ts":326461667622,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":822707},
-{"pid":27443,"tid":27471,"ts":326461666279,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":470441},
-{"pid":27443,"tid":27471,"ts":326461666309,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":470471},
-{"pid":27443,"tid":27471,"ts":326461666340,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7991cad8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":470502},
-{"pid":27443,"tid":27471,"ts":326461666370,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":470532,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461666859,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":501144},
-{"pid":27443,"tid":27469,"ts":326461666889,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":855,"tts":501144},
-{"pid":27443,"tid":27469,"ts":326461666889,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":824,"tts":501175},
-{"pid":27443,"tid":27469,"ts":326461666920,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7c311a10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":501175},
-{"pid":27443,"tid":27469,"ts":326461666920,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":501175},
-{"pid":27443,"tid":27469,"ts":326461666981,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":501236},
-{"pid":27443,"tid":27469,"ts":326461666981,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7c311a10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":501236},
-{"pid":27443,"tid":27469,"ts":326461667011,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":501266,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461667133,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":471295},
-{"pid":27443,"tid":27471,"ts":326461667194,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":824,"tts":471356},
-{"pid":27443,"tid":27471,"ts":326461667194,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":824,"tts":471356},
-{"pid":27443,"tid":27471,"ts":326461667225,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":157,"tileId":{"id_ref":"0x799b9250"},"tileResolution":"HIGH_RESOLUTION"}},"tts":471387},
-{"pid":27443,"tid":27471,"ts":326461667225,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":471387},
-{"pid":27443,"tid":27471,"ts":326461667255,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":471417},
-{"pid":27443,"tid":27471,"ts":326461667286,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":88,"sourceFrameNumber":157,"tileId":{"id_ref":"0x799b9250"},"tileResolution":"HIGH_RESOLUTION"}},"tts":471448},
-{"pid":27443,"tid":27471,"ts":326461667316,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":471478,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461667805,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":501968,"id":"0xaf88a576f182217a"},
-{"pid":27443,"tid":27469,"ts":326461667835,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":501999},
-{"pid":27443,"tid":27469,"ts":326461667835,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":855,"tdur":854,"tts":501999},
-{"pid":27443,"tid":27469,"ts":326461667866,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":824,"tts":502029},
-{"pid":27443,"tid":27469,"ts":326461667866,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7c4fdf58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":502029},
-{"pid":27443,"tid":27469,"ts":326461667866,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":502060},
-{"pid":27443,"tid":27469,"ts":326461667927,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":502090},
-{"pid":27443,"tid":27469,"ts":326461667957,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":87,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7c4fdf58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":502121},
-{"pid":27443,"tid":27469,"ts":326461667957,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":502121,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461668140,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":472180},
-{"pid":27443,"tid":27471,"ts":326461668171,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":472211},
-{"pid":27443,"tid":27471,"ts":326461668171,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":702,"tts":472211},
-{"pid":27443,"tid":27471,"ts":326461668202,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e28ddf8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":472241},
-{"pid":27443,"tid":27471,"ts":326461668202,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":472241},
-{"pid":27443,"tid":27471,"ts":326461668232,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":472272},
-{"pid":27443,"tid":27471,"ts":326461668263,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":89,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e28ddf8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":472302},
-{"pid":27443,"tid":27471,"ts":326461668293,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":472333,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461668690,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":502853},
-{"pid":27443,"tid":27469,"ts":326461668690,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":502853},
-{"pid":27443,"tid":27469,"ts":326461668720,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":733,"tdur":732,"tts":502884},
-{"pid":27443,"tid":27469,"ts":326461668720,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e28dea8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":502884},
-{"pid":27443,"tid":27469,"ts":326461668751,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":502914},
-{"pid":27443,"tid":27469,"ts":326461668781,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":502945},
-{"pid":27443,"tid":27469,"ts":326461668812,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e28dea8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":502975},
-{"pid":27443,"tid":27469,"ts":326461668812,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":503006,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461668842,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":472882},
-{"pid":27443,"tid":27471,"ts":326461668873,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":472913},
-{"pid":27443,"tid":27471,"ts":326461668904,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":701,"tdur":702,"tts":472943},
-{"pid":27443,"tid":27471,"ts":326461668904,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e4d8f58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":472943},
-{"pid":27443,"tid":27471,"ts":326461668934,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":472974},
-{"pid":27443,"tid":27471,"ts":326461668965,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":473004},
-{"pid":27443,"tid":27471,"ts":326461668995,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e4d8f58"},"tileResolution":"HIGH_RESOLUTION"}},"tts":473035},
-{"pid":27443,"tid":27471,"ts":326461668995,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":473035,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461669453,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":503616},
-{"pid":27443,"tid":27469,"ts":326461669483,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":977,"tdur":976,"tts":503647},
-{"pid":27443,"tid":27469,"ts":326461669483,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":977,"tdur":976,"tts":503647},
-{"pid":27443,"tid":27469,"ts":326461669514,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e467f40"},"tileResolution":"HIGH_RESOLUTION"}},"tts":503677},
-{"pid":27443,"tid":27469,"ts":326461669514,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":503677},
-{"pid":27443,"tid":27469,"ts":326461669544,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":503708},
-{"pid":27443,"tid":27469,"ts":326461669575,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":122,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e467f40"},"tileResolution":"HIGH_RESOLUTION"}},"tts":503738},
-{"pid":27443,"tid":27469,"ts":326461669605,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":503769,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326461669605,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":473645},
-{"pid":27443,"tid":27471,"ts":326461669636,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1068,"tdur":946,"tts":473676},
-{"pid":27443,"tid":27471,"ts":326461669636,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1038,"tdur":946,"tts":473676},
-{"pid":27443,"tid":27477,"ts":326461667622,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":822707},
-{"pid":27443,"tid":27477,"ts":326461667683,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":822768},
-{"pid":27443,"tid":27477,"ts":326461667683,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":4}},"tts":822768,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461667805,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":822890},
-{"pid":27443,"tid":27477,"ts":326461668079,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":823164},
-{"pid":27443,"tid":27477,"ts":326461668079,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":886,"tdur":428,"tts":823164},
-{"pid":27443,"tid":27477,"ts":326461668110,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":823195},
-{"pid":27443,"tid":27477,"ts":326461668110,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":671,"tdur":305,"tts":823195},
-{"pid":27443,"tid":27477,"ts":326461668202,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16864},"dur":91,"tdur":91,"tts":823287},
-{"pid":27443,"tid":27477,"ts":326461668232,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":823317,"id":"0xaf88ab2af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461668324,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":823409,"id":"0xaf88ab2bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461668934,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":823561,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461668995,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":823622,"id":"0x300000096"},
-{"pid":27443,"tid":27477,"ts":326461668995,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":823622},
-{"pid":27443,"tid":27477,"ts":326461669117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":823744,"id":"0xaf88ab24f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461669209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":823836,"id":"0xaf88a6f5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461669239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":823866,"id":"0xaf88a4bbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461669300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":823927,"id":"0xaf88a576f182217a"},
-{"pid":27443,"tid":27477,"ts":326461669300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":122,"tdur":123,"tts":823927},
-{"pid":27443,"tid":27477,"ts":326461669300,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":823927},
-{"pid":27443,"tid":27477,"ts":326461669331,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":823958},
-{"pid":27443,"tid":27477,"ts":326461669361,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16893},"dur":61,"tdur":61,"tts":823989},
-{"pid":27443,"tid":27477,"ts":326461669392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":824019,"id":"0xaf88ab25f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461670521,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461670},"tts":824111,"id":"0xaf88a57df182217a"},
-{"pid":27443,"tid":27477,"ts":326461670521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":824111},
-{"pid":27443,"tid":27477,"ts":326461671437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":824202,"id":"0xaf88a577f182217a"},
-{"pid":27443,"tid":27477,"ts":326461671437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":824202},
-{"pid":27443,"tid":27477,"ts":326461671467,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":824233},
-{"pid":27443,"tid":27477,"ts":326461671467,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":824233,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461671467,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":824233},
-{"pid":27443,"tid":27477,"ts":326461672963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":824294,"id":"0xaf88a570f182217a"},
-{"pid":27443,"tid":27477,"ts":326461672993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":824324},
-{"pid":27443,"tid":27477,"ts":326461672993,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":824324},
-{"pid":27443,"tid":27477,"ts":326461673024,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":824355,"id":"0x300000098"},
-{"pid":27443,"tid":27477,"ts":326461673024,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":824355},
-{"pid":27443,"tid":27477,"ts":326461673054,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":824385,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461673085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":824416,"id":"0xaf88a6f6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461674061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":824477,"id":"0xaf88a571f182217a"},
-{"pid":27443,"tid":27477,"ts":326461674061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":184,"tdur":183,"tts":824477},
-{"pid":27443,"tid":27477,"ts":326461674092,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461672602.0,"frame_time_us":326461670338.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":153,"tts":824507},
-{"pid":27443,"tid":27477,"ts":326461674122,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461672602.0,"frame_time_us":326461670338.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":123,"tdur":122,"tts":824538},
-{"pid":27443,"tid":27477,"ts":326461674184,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461687004},"dur":61,"tdur":61,"tts":824599},
-{"pid":27443,"tid":27477,"ts":326461674214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":824629,"id":"0xaf88a572f182217a"},
-{"pid":27443,"tid":27477,"ts":326461677907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":824721,"id":"0xaf88a573f182217a"},
-{"pid":27443,"tid":27477,"ts":326461677938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":824752},
-{"pid":27443,"tid":27477,"ts":326461677968,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":824782},
-{"pid":27443,"tid":27477,"ts":326461677999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":824813,"id":"0xaf88a6f7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461681112,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":824935,"id":"0xaf88a50cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461681112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1739,"tdur":1465,"tts":824935},
-{"pid":27443,"tid":27477,"ts":326461681112,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1739,"tdur":1434,"tts":824935},
-{"pid":27443,"tid":27477,"ts":326461681142,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":824965},
-{"pid":27443,"tid":27477,"ts":326461681142,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1679,"tdur":1404,"tts":824965},
-{"pid":27443,"tid":27477,"ts":326461681142,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1648,"tdur":1404,"tts":824965},
-{"pid":27443,"tid":27477,"ts":326461681173,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":824996},
-{"pid":27443,"tid":27477,"ts":326461681173,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":824996},
-{"pid":27443,"tid":27477,"ts":326461681173,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":824996,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461681203,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":825026},
-{"pid":27443,"tid":27477,"ts":326461681234,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":825057},
-{"pid":27443,"tid":27477,"ts":326461681356,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1343,"tdur":1190,"tts":825179},
-{"pid":27443,"tid":27477,"ts":326461681356,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":160},"dur":336,"tdur":336,"tts":825179},
-{"pid":27443,"tid":27477,"ts":326461681692,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":160},"dur":30,"tdur":30,"tts":825515},
-{"pid":27443,"tid":27477,"ts":326461681753,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":160},"tts":825576},
-{"pid":27443,"tid":27477,"ts":326461681997,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":825789},
-{"pid":27443,"tid":27477,"ts":326461681997,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":31,"tts":825789},
-{"pid":27443,"tid":27471,"ts":326461669667,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e4d8ee0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":473706},
-{"pid":27443,"tid":27471,"ts":326461669697,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":473737},
-{"pid":27443,"tid":27471,"ts":326461669728,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":473767},
-{"pid":27443,"tid":27471,"ts":326461669758,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":121,"sourceFrameNumber":157,"tileId":{"id_ref":"0x7e4d8ee0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":473798},
-{"pid":27443,"tid":27471,"ts":326461669758,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":473798,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326461670430,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":504623},
-{"pid":27443,"tid":27471,"ts":326461670674,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":474622},
-{"pid":27443,"tid":27471,"ts":326461670704,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":474652},
-{"pid":27443,"tid":27471,"ts":326461670704,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":474652},
-{"pid":27443,"tid":27471,"ts":326461670735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":474683,"id":"0xaf88a577f182217a"},
-{"pid":27443,"tid":27471,"ts":326461682546,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":458,"tdur":122,"tts":474744},
-{"pid":27443,"tid":27471,"ts":326461682943,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":474805},
-{"pid":27443,"tid":27471,"ts":326461682943,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":474835,"id":"0xaf88a50ef182217a"},
-{"pid":27443,"tid":27471,"ts":326461683004,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":474866},
-{"pid":27443,"tid":27471,"ts":326461683004,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":474866},
-{"pid":27443,"tid":27471,"ts":326461683034,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":474896,"id":"0xaf88a50ff182217a"},
-{"pid":27443,"tid":27471,"ts":326461683034,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":474896},
-{"pid":27443,"tid":27471,"ts":326461683034,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":474927},
-{"pid":27443,"tid":27471,"ts":326461683065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":474927,"id":"0xaf88a508f182217a"},
-{"pid":27443,"tid":27471,"ts":326461697898,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":474988},
-{"pid":27443,"tid":27471,"ts":326461697928,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":475019},
-{"pid":27443,"tid":27471,"ts":326461697959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475049,"id":"0xaf88a501f182217a"},
-{"pid":27443,"tid":27471,"ts":326461697959,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":475049},
-{"pid":27443,"tid":27471,"ts":326461697959,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":475080},
-{"pid":27443,"tid":27471,"ts":326461697989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475080,"id":"0xaf88a502f182217a"},
-{"pid":27443,"tid":27471,"ts":326461698020,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":475110},
-{"pid":27443,"tid":27471,"ts":326461698020,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":475110},
-{"pid":27443,"tid":27471,"ts":326461698020,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475110,"id":"0xaf88a503f182217a"},
-{"pid":27443,"tid":27471,"ts":326461716515,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":61,"tts":475202},
-{"pid":27443,"tid":27471,"ts":326461716668,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":475232},
-{"pid":27443,"tid":27471,"ts":326461716668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475232,"id":"0xaf88a515f182217a"},
-{"pid":27443,"tid":27469,"ts":326461716668,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":31,"tts":504745},
-{"pid":27443,"tid":27469,"ts":326461716698,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":504776},
-{"pid":27443,"tid":27469,"ts":326461716698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":504776,"id":"0xaf88a516f182217a"},
-{"pid":27443,"tid":27471,"ts":326461716698,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":475263},
-{"pid":27443,"tid":27471,"ts":326461716729,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":475293},
-{"pid":27443,"tid":27471,"ts":326461716729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475293,"id":"0xaf88a517f182217a"},
-{"pid":27443,"tid":27469,"ts":326461730585,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":504837},
-{"pid":27443,"tid":27469,"ts":326461730616,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":504868},
-{"pid":27443,"tid":27469,"ts":326461730616,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":504868,"id":"0xaf88a529f182217a"},
-{"pid":27443,"tid":27469,"ts":326461730646,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":504898},
-{"pid":27443,"tid":27469,"ts":326461730646,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":504898},
-{"pid":27443,"tid":27469,"ts":326461730646,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":504898,"id":"0xaf88a52af182217a"},
-{"pid":27443,"tid":27469,"ts":326461730677,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":504929},
-{"pid":27443,"tid":27469,"ts":326461730677,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":504929},
-{"pid":27443,"tid":27469,"ts":326461730707,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":504959,"id":"0xaf88a52bf182217a"},
-{"pid":27443,"tid":27498,"ts":326461730951,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":428,"tdur":427,"tts":57561},
-{"pid":27443,"tid":27498,"ts":326461730951,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57561},
-{"pid":27443,"tid":27498,"ts":326461731348,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":57958},
-{"pid":27443,"tid":27469,"ts":326461745632,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":504990},
-{"pid":27443,"tid":27469,"ts":326461745662,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":505020},
-{"pid":27443,"tid":27469,"ts":326461745662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505020,"id":"0xaf88a53cf182217a"},
-{"pid":27443,"tid":27471,"ts":326461745662,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":475385},
-{"pid":27443,"tid":27471,"ts":326461745693,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":475415},
-{"pid":27443,"tid":27471,"ts":326461745723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475446,"id":"0xaf88a53df182217a"},
-{"pid":27443,"tid":27469,"ts":326461745723,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":505081},
-{"pid":27443,"tid":27469,"ts":326461745723,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":505081},
-{"pid":27443,"tid":27469,"ts":326461745723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505081,"id":"0xaf88a53ef182217a"},
-{"pid":27443,"tid":27471,"ts":326461759885,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":475476},
-{"pid":27443,"tid":27471,"ts":326461759915,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":475507},
-{"pid":27443,"tid":27471,"ts":326461759946,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475537,"id":"0xaf88a531f182217a"},
-{"pid":27443,"tid":27469,"ts":326461759946,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":61,"tts":505173},
-{"pid":27443,"tid":27469,"ts":326461759946,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":505173},
-{"pid":27443,"tid":27469,"ts":326461759976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505203,"id":"0xaf88a532f182217a"},
-{"pid":27443,"tid":27459,"ts":326461680867,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":31,"tdur":0,"tts":7897665},
-{"pid":27443,"tid":27459,"ts":326461680898,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":31,"tdur":30,"tts":7897665},
-{"pid":27443,"tid":27459,"ts":326461680929,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":0,"tdur":0,"tts":7897695},
-{"pid":27443,"tid":27459,"ts":326461680929,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":30,"tdur":31,"tts":7897695},
-{"pid":27443,"tid":27459,"ts":326461680959,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":0,"tdur":0,"tts":7897726},
-{"pid":27443,"tid":27459,"ts":326461680990,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":160},"dur":0,"tdur":0,"tts":7897756},
-{"pid":27443,"tid":27459,"ts":326461681020,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7897787,"id":"0x300000097"},
-{"pid":27443,"tid":27459,"ts":326461681020,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":91,"tts":7897787},
-{"pid":27443,"tid":27459,"ts":326461681051,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7897817,"id":"0xaf88a50cf182217a"},
-{"pid":27443,"tid":27459,"ts":326461681417,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7897939},
-{"pid":27443,"tid":27459,"ts":326461681478,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7898000,"id":"0xaf88a4baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461681478,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":61,"tts":7898031},
-{"pid":27443,"tid":27459,"ts":326461681508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7898031,"id":"0xaf88a4b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461681539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7898061,"id":"0xaf88a6f5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461681539,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7898061},
-{"pid":27443,"tid":27459,"ts":326461681539,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7898061},
-{"pid":27443,"tid":27459,"ts":326461681600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7898153,"id":"0xaf88a4bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461681630,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1832,"tdur":1312,"tts":7898153},
-{"pid":27443,"tid":27459,"ts":326461681630,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7898153,"id":"0xaf88a6f6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461681661,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1770,"tdur":1251,"tts":7898184},
-{"pid":27443,"tid":27459,"ts":326461681722,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1709,"tdur":1190,"tts":7898245},
-{"pid":27443,"tid":27459,"ts":326461681722,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7898245,"id":"0x300000098"},
-{"pid":27443,"tid":27459,"ts":326461681753,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1404,"tdur":1068,"tts":7898275},
-{"pid":27443,"tid":27459,"ts":326461681783,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1374,"tdur":1037,"tts":7898306},
-{"pid":27443,"tid":27459,"ts":326461681844,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7898367},
-{"pid":27443,"tid":27459,"ts":326461681875,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7898397},
-{"pid":27443,"tid":27459,"ts":326461681905,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7898428},
-{"pid":27443,"tid":27459,"ts":326461681936,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7898458},
-{"pid":27443,"tid":27459,"ts":326461681936,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7898489},
-{"pid":27443,"tid":27459,"ts":326461681966,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7898489},
-{"pid":27443,"tid":27459,"ts":326461681997,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7898519},
-{"pid":27443,"tid":27459,"ts":326461682088,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1038,"tdur":702,"tts":7898611},
-{"pid":27443,"tid":27459,"ts":326461682241,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":854,"tdur":519,"tts":7898763},
-{"pid":27443,"tid":27459,"ts":326461682241,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7898763},
-{"pid":27443,"tid":27459,"ts":326461682607,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":121,"frame":"0x78c60000"}},"tts":7899160,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461682668,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":153,"tdur":61,"tts":7899160},
-{"pid":27443,"tid":27459,"ts":326461682668,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7899160},
-{"pid":27443,"tid":27459,"ts":326461682760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7899191,"id":"0xaf88a50df182217a"},
-{"pid":27443,"tid":27459,"ts":326461682760,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":7899191},
-{"pid":27443,"tid":27459,"ts":326461682851,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7899252},
-{"pid":27443,"tid":27459,"ts":326461682851,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":7899252},
-{"pid":27443,"tid":27459,"ts":326461683187,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":244,"tdur":30,"tts":7899374},
-{"pid":27443,"tid":27459,"ts":326461683187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7899374,"id":"0xaf88ab26f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461683492,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7899496,"id":"0xaf88a4b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461683492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7899496},
-{"pid":27443,"tid":27459,"ts":326461683523,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7899526,"id":"0xaf88a4b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461683523,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7899526,"id":"0xaf88a6f7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461683553,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":7899557},
-{"pid":27443,"tid":27459,"ts":326461683553,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":7899557},
-{"pid":27443,"tid":27459,"ts":326461683614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7899618,"id":"0xaf88a4b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461683645,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7899649},
-{"pid":27443,"tid":27459,"ts":326461685354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7899740,"id":"0xaf88a4b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461685354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12025,"tdur":10926,"tts":7899740},
-{"pid":27443,"tid":27459,"ts":326461685385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7899771,"id":"0xaf88a4b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461685385,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7899771,"id":"0xaf88a6f0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461685415,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11933,"tdur":10835,"tts":7899801},
-{"pid":27443,"tid":27459,"ts":326461685415,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":161},"tts":7899801},
-{"pid":27443,"tid":27459,"ts":326461685415,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":7899801},
-{"pid":27443,"tid":27459,"ts":326461685476,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6898,"tdur":6745,"tts":7899862},
-{"pid":27443,"tid":27459,"ts":326461685507,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7899893},
-{"pid":27443,"tid":27459,"ts":326461685537,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":121,"frame":"0x78c60000"}},"dur":6837,"tdur":6653,"tts":7899954},
-{"pid":27443,"tid":27459,"ts":326461685629,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6714,"tdur":6562,"tts":7900015},
-{"pid":27443,"tid":27459,"ts":326461685629,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7900045},
-{"pid":27443,"tid":27459,"ts":326461692313,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7906577},
-{"pid":27443,"tid":27477,"ts":326461682088,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":550,"tdur":549,"tts":825820},
-{"pid":27443,"tid":27477,"ts":326461682088,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":213,"tts":825820},
-{"pid":27443,"tid":27477,"ts":326461682332,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":826064},
-{"pid":27443,"tid":27477,"ts":326461682363,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":826125},
-{"pid":27443,"tid":27477,"ts":326461682394,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":8},"dur":213,"tdur":183,"tts":826125},
-{"pid":27443,"tid":27477,"ts":326461682394,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":826125},
-{"pid":27443,"tid":27477,"ts":326461682424,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":826155,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461682485,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":826217},
-{"pid":27443,"tid":27477,"ts":326461682485,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":11,"num_edges":8},"dur":61,"tdur":30,"tts":826217},
-{"pid":27443,"tid":27477,"ts":326461682546,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":826278,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461682607,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":826339,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461682638,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":826369,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461682851,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":826400,"id":"0xaf88a50df182217a"},
-{"pid":27443,"tid":27477,"ts":326461682882,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":30,"tts":826400},
-{"pid":27443,"tid":27477,"ts":326461682912,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":826430},
-{"pid":27443,"tid":27477,"ts":326461683004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":826491,"id":"0xaf88a50ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461683004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":826491},
-{"pid":27443,"tid":27477,"ts":326461683034,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":826522},
-{"pid":27443,"tid":27477,"ts":326461683034,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":826522,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461683065,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":826552},
-{"pid":27443,"tid":27477,"ts":326461683065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":826552,"id":"0xaf88a509f182217a"},
-{"pid":27443,"tid":27477,"ts":326461683095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":826583,"id":"0xaf88a50ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461683126,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":826613},{"pid":27443,"tid":27477,"ts":326461683126,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":826613},
-{"pid":27443,"tid":27477,"ts":326461683126,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":7962624,"bytes_used_for_staging_resources":10616832,"pending_copy_count":24,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":826644,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461683157,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":826644},
-{"pid":27443,"tid":27477,"ts":326461683187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":826674,"id":"0xaf88a50af182217a"},
-{"pid":27443,"tid":27477,"ts":326461683187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":826705,"id":"0xaf88a508f182217a"},
-{"pid":27443,"tid":27477,"ts":326461683218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":826705},
-{"pid":27443,"tid":27477,"ts":326461683218,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":826705},
-{"pid":27443,"tid":27477,"ts":326461683248,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":826735,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461683248,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":826735},
-{"pid":27443,"tid":27477,"ts":326461683279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":826766,"id":"0xaf88a509f182217a"},
-{"pid":27443,"tid":27477,"ts":326461683279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2106,"tdur":2076,"tts":826796},
-{"pid":27443,"tid":27477,"ts":326461683309,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2076,"tdur":2076,"tts":826796},
-{"pid":27443,"tid":27477,"ts":326461683309,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":519,"tdur":519,"tts":826796},
-{"pid":27443,"tid":27477,"ts":326461683340,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":826827},
-{"pid":27443,"tid":27477,"ts":326461683340,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":826827},
-{"pid":27443,"tid":27477,"ts":326461683370,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":826857},
-{"pid":27443,"tid":27477,"ts":326461683401,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":826888},
-{"pid":27443,"tid":27477,"ts":326461683431,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":826918},
-{"pid":27443,"tid":27477,"ts":326461683431,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":826918},
-{"pid":27443,"tid":27477,"ts":326461683462,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":826949},
-{"pid":27443,"tid":27477,"ts":326461683492,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":826980},
-{"pid":27443,"tid":27477,"ts":326461683523,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":827010},
-{"pid":27443,"tid":27477,"ts":326461683523,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":827010},
-{"pid":27443,"tid":27477,"ts":326461683553,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":827041},
-{"pid":27443,"tid":27477,"ts":326461683584,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":827071},
-{"pid":27443,"tid":27477,"ts":326461683584,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":827071},
-{"pid":27443,"tid":27477,"ts":326461683614,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":827102},
-{"pid":27443,"tid":27477,"ts":326461683645,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":827132},
-{"pid":27443,"tid":27477,"ts":326461683645,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":827132},
-{"pid":27443,"tid":27477,"ts":326461683675,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":827193},
-{"pid":27443,"tid":27477,"ts":326461683706,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":827193},
-{"pid":27443,"tid":27477,"ts":326461683736,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":827224},
-{"pid":27443,"tid":27477,"ts":326461683767,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":827254},
-{"pid":27443,"tid":27477,"ts":326461683767,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":827254},
-{"pid":27443,"tid":27477,"ts":326461683797,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":827285},
-{"pid":27443,"tid":27477,"ts":326461683828,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":827315},
-{"pid":27443,"tid":27477,"ts":326461683858,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":123,"tdur":122,"tts":827346},
-{"pid":27443,"tid":27477,"ts":326461683858,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":123,"tdur":122,"tts":827346},
-{"pid":27443,"tid":27477,"ts":326461683981,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1404,"tdur":1404,"tts":827468},
-{"pid":27443,"tid":27477,"ts":326461684011,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1374,"tdur":1374,"tts":827498},
-{"pid":27443,"tid":27477,"ts":326461684011,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":1191,"tts":827498},
-{"pid":27443,"tid":27477,"ts":326461684011,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":827498,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461684103,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":827590},
-{"pid":27443,"tid":27477,"ts":326461684133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827620},
-{"pid":27443,"tid":27477,"ts":326461684164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827651},
-{"pid":27443,"tid":27477,"ts":326461684164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":827651},
-{"pid":27443,"tid":27477,"ts":326461684194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827682},
-{"pid":27443,"tid":27477,"ts":326461684194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":827682},
-{"pid":27443,"tid":27477,"ts":326461684225,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":827712},
-{"pid":27443,"tid":27477,"ts":326461684255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827743},
-{"pid":27443,"tid":27477,"ts":326461684255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":827743},
-{"pid":27443,"tid":27477,"ts":326461684286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827773},
-{"pid":27443,"tid":27477,"ts":326461684286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":827773},
-{"pid":27443,"tid":27477,"ts":326461684316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827804},
-{"pid":27443,"tid":27477,"ts":326461684347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827834},
-{"pid":27443,"tid":27477,"ts":326461684347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":827834},
-{"pid":27443,"tid":27477,"ts":326461684377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827865},
-{"pid":27443,"tid":27477,"ts":326461684377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":827865},
-{"pid":27443,"tid":27477,"ts":326461684408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827895},
-{"pid":27443,"tid":27477,"ts":326461684408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":827895},
-{"pid":27443,"tid":27477,"ts":326461684438,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827926},
-{"pid":27443,"tid":27477,"ts":326461684469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827956},
-{"pid":27443,"tid":27477,"ts":326461684469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":827956},
-{"pid":27443,"tid":27477,"ts":326461684499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":827987},
-{"pid":27443,"tid":27477,"ts":326461684499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":828017},
-{"pid":27443,"tid":27477,"ts":326461684530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828017},
-{"pid":27443,"tid":27477,"ts":326461684560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828048},
-{"pid":27443,"tid":27477,"ts":326461684560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":828048},
-{"pid":27443,"tid":27477,"ts":326461684591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828078},
-{"pid":27443,"tid":27477,"ts":326461684591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":828078},
-{"pid":27443,"tid":27477,"ts":326461684621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828109},
-{"pid":27443,"tid":27477,"ts":326461684652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828139},
-{"pid":27443,"tid":27477,"ts":326461684652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":828139},
-{"pid":27443,"tid":27477,"ts":326461684683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828170},
-{"pid":27443,"tid":27477,"ts":326461684683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":828170},
-{"pid":27443,"tid":27477,"ts":326461684713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828200},
-{"pid":27443,"tid":27477,"ts":326461684744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828231},
-{"pid":27443,"tid":27477,"ts":326461684744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":828231},
-{"pid":27443,"tid":27477,"ts":326461684774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828261},
-{"pid":27443,"tid":27477,"ts":326461684774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":828261},
-{"pid":27443,"tid":27477,"ts":326461684805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828292},
-{"pid":27443,"tid":27477,"ts":326461684805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":828322},
-{"pid":27443,"tid":27477,"ts":326461684835,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":828322},
-{"pid":27443,"tid":27477,"ts":326461684866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828353},
-{"pid":27443,"tid":27477,"ts":326461684866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":828353},
-{"pid":27443,"tid":27477,"ts":326461684896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828383},
-{"pid":27443,"tid":27477,"ts":326461684957,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":828445},
-{"pid":27443,"tid":27477,"ts":326461684988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828475},
-{"pid":27443,"tid":27477,"ts":326461684988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":828475},
-{"pid":27443,"tid":27477,"ts":326461685018,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":828506},
-{"pid":27443,"tid":27477,"ts":326461685049,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828536},
-{"pid":27443,"tid":27477,"ts":326461685049,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":828536},
-{"pid":27443,"tid":27477,"ts":326461685079,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":828567},
-{"pid":27443,"tid":27477,"ts":326461685110,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":828628},
-{"pid":27443,"tid":27477,"ts":326461685171,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":828658},
-{"pid":27443,"tid":27477,"ts":326461685171,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":828658},
-{"pid":27443,"tid":27477,"ts":326461685201,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":828689},
-{"pid":27443,"tid":27477,"ts":326461685232,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":161},"tts":828719},
-{"pid":27443,"tid":27477,"ts":326461685293,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":828780,"id":"0xaf88a6f0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461685293,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":828780,"id":"0xaf88a4b6f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461685323,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":828811},
-{"pid":27443,"tid":27477,"ts":326461685354,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":828841},
-{"pid":27443,"tid":27477,"ts":326461685354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":828841,"id":"0xaf88a50bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461685385,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":828872,"id":"0xaf88a50af182217a"},
-{"pid":27443,"tid":27477,"ts":326461685415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":828902},
-{"pid":27443,"tid":27477,"ts":326461685415,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":828902},
-{"pid":27443,"tid":27477,"ts":326461685415,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":828902},
-{"pid":27443,"tid":27477,"ts":326461685415,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":828933},
-{"pid":27443,"tid":27477,"ts":326461685446,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":828933},
-{"pid":27443,"tid":27477,"ts":326461685446,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":828933},
-{"pid":27443,"tid":27477,"ts":326461685507,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":828994},
-{"pid":27443,"tid":27477,"ts":326461685537,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":829024},
-{"pid":27443,"tid":27477,"ts":326461685537,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":829055,"id":"0xaf88a50bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461685568,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":5402,"tdur":1648,"tts":829055},
-{"pid":27443,"tid":27477,"ts":326461685568,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":5402,"tdur":1648,"tts":829055},
-{"pid":27443,"tid":27477,"ts":326461685568,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":829055},
-{"pid":27443,"tid":27477,"ts":326461685598,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":5372,"tdur":1618,"tts":829085},
-{"pid":27443,"tid":27477,"ts":326461685598,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":160},"dur":946,"tdur":947,"tts":829085},
-{"pid":27443,"tid":27477,"ts":326461685629,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":160},"dur":274,"tdur":275,"tts":829116},
-{"pid":27443,"tid":27477,"ts":326461685903,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":160},"dur":61,"tdur":61,"tts":829391},
-{"pid":27443,"tid":27477,"ts":326461685964,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":160},"tts":829452},
-{"pid":27443,"tid":27477,"ts":326461686178,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":829665},
-{"pid":27443,"tid":27477,"ts":326461686178,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":829665},
-{"pid":27443,"tid":27477,"ts":326461686178,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":829665},
-{"pid":27443,"tid":27477,"ts":326461686209,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":829696},
-{"pid":27443,"tid":27477,"ts":326461686209,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":8}},"tts":829696,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461686300,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":829787},
-{"pid":27443,"tid":27477,"ts":326461686544,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":830032},
-{"pid":27443,"tid":27477,"ts":326461686544,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":672,"tdur":305,"tts":830062},
-{"pid":27443,"tid":27477,"ts":326461686575,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":830062},
-{"pid":27443,"tid":27477,"ts":326461686575,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":214,"tts":830062},
-{"pid":27443,"tid":27477,"ts":326461686666,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17096},"dur":61,"tdur":61,"tts":830154},
-{"pid":27443,"tid":27477,"ts":326461686666,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":830154,"id":"0xaf88ab27f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461686727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":830245,"id":"0xaf88ab20f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461687216,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":830367,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461687246,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":830398,"id":"0x300000097"},
-{"pid":27443,"tid":27477,"ts":326461687246,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":3663,"tdur":214,"tts":830428},
-{"pid":27443,"tid":27477,"ts":326461690390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":830550,"id":"0xaf88ab21f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461690909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":830642,"id":"0xaf88a6f1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461690939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":830673,"id":"0xaf88a4b0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461691000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461687},"tts":830734,"id":"0xaf88a572f182217a"},
-{"pid":27443,"tid":27477,"ts":326461691000,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":830734},
-{"pid":27443,"tid":27477,"ts":326461691031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":830764,"id":"0xaf88a504f182217a"},
-{"pid":27443,"tid":27477,"ts":326461691031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":830764},
-{"pid":27443,"tid":27477,"ts":326461691031,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":91,"tdur":92,"tts":830764},
-{"pid":27443,"tid":27477,"ts":326461691061,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":830795,"id":"0x300000099"},
-{"pid":27443,"tid":27477,"ts":326461691061,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":830795},
-{"pid":27443,"tid":27477,"ts":326461691092,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":830825,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461691122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":830856,"id":"0xaf88a6f2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461691153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":830886,"id":"0xaf88a505f182217a"},
-{"pid":27443,"tid":27477,"ts":326461691153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":830886},
-{"pid":27443,"tid":27477,"ts":326461691183,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461689283.0,"frame_time_us":326461687019.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":152,"tts":830917},
-{"pid":27443,"tid":27477,"ts":326461691214,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461689283.0,"frame_time_us":326461687019.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":830947},
-{"pid":27443,"tid":27477,"ts":326461691275,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461703685},"dur":30,"tdur":31,"tts":831008},
-{"pid":27443,"tid":27477,"ts":326461691305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":831039,"id":"0xaf88a506f182217a"},
-{"pid":27443,"tid":27477,"ts":326461696647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":831130,"id":"0xaf88a507f182217a"},
-{"pid":27443,"tid":27477,"ts":326461696647,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1374,"tts":831130},
-{"pid":27443,"tid":27477,"ts":326461696677,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1343,"tdur":1343,"tts":831161},
-{"pid":27443,"tid":27477,"ts":326461696677,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":831161},
-{"pid":27443,"tid":27477,"ts":326461696677,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1343,"tdur":1343,"tts":831161},
-{"pid":27443,"tid":27477,"ts":326461696708,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1312,"tdur":1282,"tts":831191},
-{"pid":27443,"tid":27477,"ts":326461696708,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":831191},
-{"pid":27443,"tid":27477,"ts":326461696708,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":831191},
-{"pid":27443,"tid":27477,"ts":326461696738,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":831222,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461696738,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":831222},
-{"pid":27443,"tid":27477,"ts":326461696769,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":831252},
-{"pid":27443,"tid":27477,"ts":326461696891,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1098,"tdur":1099,"tts":831374},
-{"pid":27443,"tid":27477,"ts":326461696891,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":161},"dur":305,"tdur":306,"tts":831374},
-{"pid":27443,"tid":27477,"ts":326461697196,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":161},"dur":30,"tdur":30,"tts":831680},
-{"pid":27443,"tid":27466,"ts":326461686849,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":402899,"id":"0xccc5cf06"},
-{"pid":27443,"tid":27466,"ts":326461687063,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":402990},
-{"pid":27443,"tid":27466,"ts":326461687094,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":403021},
-{"pid":27443,"tid":27466,"ts":326461687094,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403021,"id":"0xc4c1fa0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461688833,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":403113},
-{"pid":27443,"tid":27466,"ts":326461688864,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":403143},
-{"pid":27443,"tid":27466,"ts":326461688864,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403143,"id":"0xba467202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461688894,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":403174},
-{"pid":27443,"tid":27466,"ts":326461688925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":403204,"id":"0xaf88a504f182217a"},
-{"pid":27443,"tid":27466,"ts":326461690085,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":403296},
-{"pid":27443,"tid":27466,"ts":326461690146,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":403357},
-{"pid":27443,"tid":27466,"ts":326461690146,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403357,"id":"0xba467302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461690176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":403387,"id":"0xaf88a505f182217a"},
-{"pid":27443,"tid":27466,"ts":326461690481,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403509,"id":"0xaf88ab21f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461690512,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":403540},
-{"pid":27443,"tid":27466,"ts":326461690512,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403540,"id":"0xccc5d002"},
-{"pid":27443,"tid":27466,"ts":326461697410,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":403662},
-{"pid":27443,"tid":27466,"ts":326461697440,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":403692},
-{"pid":27443,"tid":27466,"ts":326461697440,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403692,"id":"0xba467602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461697471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":403753,"id":"0xaf88a500f182217a"},
-{"pid":27443,"tid":27466,"ts":326461698691,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403845,"id":"0xaf88ab22f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461698691,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":403845},
-{"pid":27443,"tid":27466,"ts":326461698722,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403876,"id":"0xccc5d202"},
-{"pid":27443,"tid":27466,"ts":326461701499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":403967,"id":"0xaf88ab23f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461701530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":403998},
-{"pid":27443,"tid":27466,"ts":326461701530,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":403998,"id":"0xccc5d302"},
-{"pid":27443,"tid":27466,"ts":326461701591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":404059,"id":"0xaf88ab3cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461701591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":404059},
-{"pid":27443,"tid":27466,"ts":326461701621,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404089,"id":"0xccc5d406"},
-{"pid":27443,"tid":27466,"ts":326461701774,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":404150},
-{"pid":27443,"tid":27466,"ts":326461701804,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":62,"tdur":61,"tts":404181},
-{"pid":27443,"tid":27466,"ts":326461701804,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404181,"id":"0xc4c1fe0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461702293,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":404272,"id":"0xaf88ab3df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461702323,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":404303},
-{"pid":27443,"tid":27466,"ts":326461702323,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404303,"id":"0xccc5d502"},
-{"pid":27443,"tid":27466,"ts":326461705955,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":404425},
-{"pid":27443,"tid":27466,"ts":326461705986,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":404455},
-{"pid":27443,"tid":27466,"ts":326461705986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404455,"id":"0xba467802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461706016,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":404486},
-{"pid":27443,"tid":27466,"ts":326461706047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":404516,"id":"0xaf88a518f182217a"},
-{"pid":27443,"tid":27466,"ts":326461706352,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":404608},
-{"pid":27443,"tid":27466,"ts":326461706383,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":30,"tdur":30,"tts":404639},
-{"pid":27443,"tid":27466,"ts":326461706383,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404639,"id":"0xba467902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461706413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":404669,"id":"0xaf88a519f182217a"},
-{"pid":27443,"tid":27466,"ts":326461709740,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":404761},
-{"pid":27443,"tid":27466,"ts":326461709770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":404791},
-{"pid":27443,"tid":27466,"ts":326461709770,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404791,"id":"0xba467a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461709801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":404852,"id":"0xaf88a51bf182217a"},
-{"pid":27443,"tid":27466,"ts":326461717034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":404944,"id":"0xaf88ab3ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461717065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":404974},
-{"pid":27443,"tid":27466,"ts":326461717065,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":404974,"id":"0xccc5d702"},
-{"pid":27443,"tid":27466,"ts":326461719964,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405127,"id":"0xaf88ab3ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461719964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":275,"tdur":91,"tts":405127},
-{"pid":27443,"tid":27466,"ts":326461719995,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":405157,"id":"0xccc5d806"},
-{"pid":27443,"tid":27466,"ts":326461720269,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":405249},
-{"pid":27443,"tid":27466,"ts":326461720300,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":405279},
-{"pid":27443,"tid":27466,"ts":326461720300,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":405279,"id":"0xc4c2020a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461721612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":405402,"id":"0xaf88ab38f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461721643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":405402},
-{"pid":27443,"tid":27466,"ts":326461721643,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":405432,"id":"0xccc5d902"},
-{"pid":27443,"tid":27466,"ts":326461722314,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":183,"tts":405524},
-{"pid":27443,"tid":27466,"ts":326461722345,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":244,"tdur":122,"tts":405554},
-{"pid":27443,"tid":27466,"ts":326461722345,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":405554,"id":"0xba467c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461722375,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":214,"tdur":91,"tts":405585},
-{"pid":27443,"tid":27459,"ts":326461692374,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3693,"tdur":3357,"tts":7906638},
-{"pid":27443,"tid":27459,"ts":326461692435,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7906668},
-{"pid":27443,"tid":27459,"ts":326461692465,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7906699},
-{"pid":27443,"tid":27459,"ts":326461692465,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7906699},
-{"pid":27443,"tid":27459,"ts":326461693259,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7907187},
-{"pid":27443,"tid":27459,"ts":326461693289,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7907218},
-{"pid":27443,"tid":27459,"ts":326461693320,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2747,"tdur":2747,"tts":7907248},
-{"pid":27443,"tid":27459,"ts":326461693350,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2534,"tdur":2533,"tts":7907279},
-{"pid":27443,"tid":27459,"ts":326461693350,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":519,"tdur":518,"tts":7907279},
-{"pid":27443,"tid":27459,"ts":326461693869,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":7907797},
-{"pid":27443,"tid":27459,"ts":326461694083,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7908011},
-{"pid":27443,"tid":27459,"ts":326461694205,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":0,"tts":7908164},
-{"pid":27443,"tid":27459,"ts":326461694235,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1649,"tdur":1617,"tts":7908164},
-{"pid":27443,"tid":27459,"ts":326461695884,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":7909842},
-{"pid":27443,"tid":27459,"ts":326461695945,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7909873},
-{"pid":27443,"tid":27459,"ts":326461696067,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":161},"dur":457,"tdur":458,"tts":7909995},
-{"pid":27443,"tid":27459,"ts":326461696097,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":428,"tts":7910025},
-{"pid":27443,"tid":27459,"ts":326461696311,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":30,"tdur":31,"tts":7910239},
-{"pid":27443,"tid":27459,"ts":326461696341,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":31,"tdur":30,"tts":7910270},
-{"pid":27443,"tid":27459,"ts":326461696372,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":30,"tdur":31,"tts":7910300},
-{"pid":27443,"tid":27459,"ts":326461696402,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":31,"tdur":0,"tts":7910331},
-{"pid":27443,"tid":27459,"ts":326461696433,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":0,"tdur":0,"tts":7910361},
-{"pid":27443,"tid":27459,"ts":326461696433,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":30,"tdur":31,"tts":7910361},
-{"pid":27443,"tid":27459,"ts":326461696463,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":0,"tdur":0,"tts":7910392},
-{"pid":27443,"tid":27459,"ts":326461696494,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":0,"tdur":0,"tts":7910422},
-{"pid":27443,"tid":27459,"ts":326461696494,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":161},"dur":30,"tdur":31,"tts":7910422},
-{"pid":27443,"tid":27459,"ts":326461696524,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7910453,"id":"0x300000098"},
-{"pid":27443,"tid":27459,"ts":326461696555,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":732,"tdur":92,"tts":7910483},
-{"pid":27443,"tid":27459,"ts":326461696555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7910483,"id":"0xaf88a507f182217a"},
-{"pid":27443,"tid":27459,"ts":326461697318,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7910636},
-{"pid":27443,"tid":27459,"ts":326461697410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7910697,"id":"0xaf88a4b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461697410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7910697},
-{"pid":27443,"tid":27459,"ts":326461697440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7910727,"id":"0xaf88a4b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461697440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7910727,"id":"0xaf88a6f1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461697471,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":7910758},
-{"pid":27443,"tid":27459,"ts":326461697471,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7910758},
-{"pid":27443,"tid":27459,"ts":326461697501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7910788,"id":"0xaf88a4b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461697532,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1159,"tdur":1160,"tts":7910819},
-{"pid":27443,"tid":27459,"ts":326461697532,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7910819,"id":"0xaf88a6f2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461697532,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1159,"tdur":1160,"tts":7910819},
-{"pid":27443,"tid":27459,"ts":326461697623,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1037,"tts":7910911},
-{"pid":27443,"tid":27459,"ts":326461697623,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7910911,"id":"0x300000099"},
-{"pid":27443,"tid":27459,"ts":326461697654,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":946,"tts":7910941},
-{"pid":27443,"tid":27459,"ts":326461697684,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":7910972},
-{"pid":27443,"tid":27459,"ts":326461697745,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7911033},
-{"pid":27443,"tid":27459,"ts":326461697806,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7911094},
-{"pid":27443,"tid":27459,"ts":326461697837,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7911124},
-{"pid":27443,"tid":27459,"ts":326461697837,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7911155},
-{"pid":27443,"tid":27459,"ts":326461697867,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7911155},
-{"pid":27443,"tid":27459,"ts":326461697898,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7911185},
-{"pid":27443,"tid":27459,"ts":326461697928,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7911216},
-{"pid":27443,"tid":27459,"ts":326461697989,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7911277},
-{"pid":27443,"tid":27459,"ts":326461698142,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7911429},
-{"pid":27443,"tid":27459,"ts":326461698142,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7911460},
-{"pid":27443,"tid":27459,"ts":326461698447,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":122,"frame":"0x78c60000"}},"tts":7911765,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461698478,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7911765},
-{"pid":27443,"tid":27459,"ts":326461698508,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7911796,"id":"0xaf88a51ef182217a"},
-{"pid":27443,"tid":27459,"ts":326461698508,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7911826},
-{"pid":27443,"tid":27459,"ts":326461698600,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7911887},
-{"pid":27443,"tid":27459,"ts":326461698630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7911918,"id":"0xaf88ab22f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461698722,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7912009,"id":"0xaf88a4b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461698752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7912040},
-{"pid":27443,"tid":27459,"ts":326461698752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7912040,"id":"0xaf88a4b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461698783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7912070,"id":"0xaf88a6f3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461697257,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":161},"tts":831741},
-{"pid":27443,"tid":27477,"ts":326461697501,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":831985},
-{"pid":27443,"tid":27477,"ts":326461697501,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":488,"tdur":428,"tts":832015},
-{"pid":27443,"tid":27477,"ts":326461697532,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":213,"tdur":214,"tts":832015},
-{"pid":27443,"tid":27477,"ts":326461697745,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":832229},
-{"pid":27443,"tid":27477,"ts":326461697776,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":832260},
-{"pid":27443,"tid":27477,"ts":326461697776,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":152,"tts":832260},
-{"pid":27443,"tid":27477,"ts":326461697776,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":152,"tts":832260},
-{"pid":27443,"tid":27477,"ts":326461697806,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":832290,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461697837,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":832321},
-{"pid":27443,"tid":27477,"ts":326461697837,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":832321},
-{"pid":27443,"tid":27477,"ts":326461697898,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":832382,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461697959,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":832443,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461697959,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":832443,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461698020,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":832534,"id":"0xaf88a500f182217a"},
-{"pid":27443,"tid":27477,"ts":326461698050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":832534},
-{"pid":27443,"tid":27477,"ts":326461698081,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":832565},
-{"pid":27443,"tid":27477,"ts":326461698081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":832565,"id":"0xaf88a6f3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461698111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":832595,"id":"0xaf88a4b2f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461698142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":832626,"id":"0xaf88a501f182217a"},
-{"pid":27443,"tid":27477,"ts":326461698142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":832626},
-{"pid":27443,"tid":27477,"ts":326461698142,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":832626},
-{"pid":27443,"tid":27477,"ts":326461698173,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":832656,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461698173,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":832656},
-{"pid":27443,"tid":27477,"ts":326461698173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":832656,"id":"0xaf88a51cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461698203,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":832687,"id":"0xaf88a502f182217a"},
-{"pid":27443,"tid":27477,"ts":326461698234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":832717},
-{"pid":27443,"tid":27477,"ts":326461698234,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":832717},
-{"pid":27443,"tid":27477,"ts":326461698234,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":832717,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461698264,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":832748},
-{"pid":27443,"tid":27477,"ts":326461698264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":832748,"id":"0xaf88a51df182217a"},
-{"pid":27443,"tid":27477,"ts":326461698295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":832778,"id":"0xaf88a503f182217a"},
-{"pid":27443,"tid":27477,"ts":326461698295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":31,"tts":832778},
-{"pid":27443,"tid":27477,"ts":326461698325,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":832809},
-{"pid":27443,"tid":27477,"ts":326461698325,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":832809,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461698325,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":832809},
-{"pid":27443,"tid":27477,"ts":326461698356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":832839,"id":"0xaf88a51cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461698356,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1465,"tts":832839},
-{"pid":27443,"tid":27477,"ts":326461698356,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1465,"tts":832839},
-{"pid":27443,"tid":27477,"ts":326461698356,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":832870},
-{"pid":27443,"tid":27477,"ts":326461698386,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":832870},
-{"pid":27443,"tid":27477,"ts":326461698386,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":832870},
-{"pid":27443,"tid":27477,"ts":326461698417,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":832900},
-{"pid":27443,"tid":27477,"ts":326461698508,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1313,"tdur":1312,"tts":832992},
-{"pid":27443,"tid":27477,"ts":326461698539,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1281,"tts":833023},
-{"pid":27443,"tid":27477,"ts":326461698539,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":1220,"tts":833023},
-{"pid":27443,"tid":27477,"ts":326461698539,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":833023,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461698630,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":833114},
-{"pid":27443,"tid":27477,"ts":326461698661,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833145},
-{"pid":27443,"tid":27477,"ts":326461698691,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833175},
-{"pid":27443,"tid":27477,"ts":326461698691,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":833175},
-{"pid":27443,"tid":27477,"ts":326461698722,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833206},
-{"pid":27443,"tid":27477,"ts":326461698752,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833236},
-{"pid":27443,"tid":27477,"ts":326461698752,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":833236},
-{"pid":27443,"tid":27477,"ts":326461698783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833267},
-{"pid":27443,"tid":27477,"ts":326461698783,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":833267},
-{"pid":27443,"tid":27477,"ts":326461698813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833297},
-{"pid":27443,"tid":27477,"ts":326461698813,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":833328},
-{"pid":27443,"tid":27477,"ts":326461698844,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833328},
-{"pid":27443,"tid":27477,"ts":326461698875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833358},
-{"pid":27443,"tid":27477,"ts":326461698875,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":833358},
-{"pid":27443,"tid":27477,"ts":326461698905,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":833389},
-{"pid":27443,"tid":27477,"ts":326461698936,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833419},
-{"pid":27443,"tid":27477,"ts":326461698966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833450},
-{"pid":27443,"tid":27459,"ts":326461698783,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7912070},
-{"pid":27443,"tid":27459,"ts":326461698783,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":7912070},
-{"pid":27443,"tid":27459,"ts":326461698844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7912131,"id":"0xaf88a4b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461698844,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":7912162},
-{"pid":27443,"tid":27459,"ts":326461698905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7912192,"id":"0xaf88a4b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461698905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7912192},
-{"pid":27443,"tid":27459,"ts":326461700248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7912314,"id":"0xaf88a54cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461700248,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":15413,"tdur":9798,"tts":7912314},
-{"pid":27443,"tid":27459,"ts":326461700278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7912345,"id":"0xaf88a54df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461700278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7912345,"id":"0xaf88a68cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461700278,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":15352,"tdur":9736,"tts":7912345},
-{"pid":27443,"tid":27459,"ts":326461700309,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":162},"tts":7912376},
-{"pid":27443,"tid":27459,"ts":326461700309,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7912376},
-{"pid":27443,"tid":27459,"ts":326461700339,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":10652,"tdur":5859,"tts":7912437},
-{"pid":27443,"tid":27459,"ts":326461700370,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7912437},
-{"pid":27443,"tid":27459,"ts":326461700401,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":122,"frame":"0x78c60000"}},"dur":10590,"tdur":5798,"tts":7912498},
-{"pid":27443,"tid":27459,"ts":326461700492,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":10469,"tdur":5707,"tts":7912559},
-{"pid":27443,"tid":27459,"ts":326461700492,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7912559},
-{"pid":27443,"tid":27459,"ts":326461710930,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7918266},
-{"pid":27443,"tid":27459,"ts":326461710991,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3785,"tdur":3175,"tts":7918296},
-{"pid":27443,"tid":27459,"ts":326461711052,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7918358},
-{"pid":27443,"tid":27459,"ts":326461711052,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7918358},
-{"pid":27443,"tid":27459,"ts":326461711083,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7918388},
-{"pid":27443,"tid":27459,"ts":326461711510,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7918815},
-{"pid":27443,"tid":27459,"ts":326461711510,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7918846},
-{"pid":27443,"tid":27459,"ts":326461711540,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":3236,"tdur":2595,"tts":7918876},
-{"pid":27443,"tid":27459,"ts":326461711571,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3021,"tdur":2411,"tts":7918876},
-{"pid":27443,"tid":27459,"ts":326461711571,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":519,"tdur":519,"tts":7918876},
-{"pid":27443,"tid":27459,"ts":326461712090,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":7919395},
-{"pid":27443,"tid":27459,"ts":326461712303,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":7919609},
-{"pid":27443,"tid":27459,"ts":326461712426,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7919731},
-{"pid":27443,"tid":27459,"ts":326461712426,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2136,"tdur":1526,"tts":7919731},
-{"pid":27443,"tid":27459,"ts":326461714592,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":7921318},
-{"pid":27443,"tid":27459,"ts":326461714654,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":91,"tdur":91,"tts":7921349},
-{"pid":27443,"tid":27459,"ts":326461714776,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":162},"dur":427,"tdur":427,"tts":7921471},
-{"pid":27443,"tid":27459,"ts":326461714806,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":7921501},
-{"pid":27443,"tid":27459,"ts":326461715020,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":30,"tdur":30,"tts":7921715},
-{"pid":27443,"tid":27459,"ts":326461715050,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":31,"tdur":31,"tts":7921745},
-{"pid":27443,"tid":27459,"ts":326461715081,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":0,"tdur":0,"tts":7921776},
-{"pid":27443,"tid":27459,"ts":326461715111,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":0,"tdur":0,"tts":7921806},
-{"pid":27443,"tid":27459,"ts":326461715111,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":31,"tdur":0,"tts":7921806},
-{"pid":27443,"tid":27459,"ts":326461715142,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":0,"tdur":0,"tts":7921837},
-{"pid":27443,"tid":27459,"ts":326461715142,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":30,"tdur":30,"tts":7921837},
-{"pid":27443,"tid":27459,"ts":326461715172,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":0,"tdur":0,"tts":7921867},
-{"pid":27443,"tid":27459,"ts":326461715172,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":162},"dur":31,"tdur":31,"tts":7921867},
-{"pid":27443,"tid":27459,"ts":326461715233,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7921928,"id":"0x300000099"},
-{"pid":27443,"tid":27459,"ts":326461715233,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":367,"tdur":122,"tts":7921928},
-{"pid":27443,"tid":27459,"ts":326461715233,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7921928,"id":"0xaf88a514f182217a"},
-{"pid":27443,"tid":27459,"ts":326461715630,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7922081},
-{"pid":27443,"tid":27459,"ts":326461715691,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7922142,"id":"0xaf88a54df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461715691,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7922142},
-{"pid":27443,"tid":27459,"ts":326461715722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7922173,"id":"0xaf88a54ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461715752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7922203,"id":"0xaf88a68df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461715752,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":7922203},
-{"pid":27443,"tid":27459,"ts":326461715752,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7922203},
-{"pid":27443,"tid":27459,"ts":326461715813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7922264,"id":"0xaf88a54ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461715813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1252,"tdur":1251,"tts":7922264},
-{"pid":27443,"tid":27459,"ts":326461715844,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7922295,"id":"0xaf88a68ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461715844,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1190,"tdur":1190,"tts":7922295},
-{"pid":27443,"tid":27459,"ts":326461715905,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1129,"tdur":1129,"tts":7922356},
-{"pid":27443,"tid":27459,"ts":326461715935,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7922386,"id":"0x30000009a"},
-{"pid":27443,"tid":27459,"ts":326461715935,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":977,"tdur":946,"tts":7922417},
-{"pid":27443,"tid":27459,"ts":326461715966,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":916,"tts":7922447},
-{"pid":27443,"tid":27459,"ts":326461716057,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7922508},
-{"pid":27443,"tid":27477,"ts":326461698966,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":833450},
-{"pid":27443,"tid":27477,"ts":326461698997,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833480},
-{"pid":27443,"tid":27477,"ts":326461699027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833511},
-{"pid":27443,"tid":27477,"ts":326461699027,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":833511},
-{"pid":27443,"tid":27477,"ts":326461699058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833541},
-{"pid":27443,"tid":27477,"ts":326461699058,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":833572},
-{"pid":27443,"tid":27477,"ts":326461699088,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833572},
-{"pid":27443,"tid":27477,"ts":326461699119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833602},
-{"pid":27443,"tid":27477,"ts":326461699119,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":833602},
-{"pid":27443,"tid":27477,"ts":326461699149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833633},
-{"pid":27443,"tid":27477,"ts":326461699149,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":833633},
-{"pid":27443,"tid":27477,"ts":326461699180,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833663},
-{"pid":27443,"tid":27477,"ts":326461699210,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833694},
-{"pid":27443,"tid":27477,"ts":326461699210,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":833694},
-{"pid":27443,"tid":27477,"ts":326461699241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833725},
-{"pid":27443,"tid":27477,"ts":326461699241,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":833725},
-{"pid":27443,"tid":27477,"ts":326461699271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833755},
-{"pid":27443,"tid":27477,"ts":326461699271,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":833786},
-{"pid":27443,"tid":27477,"ts":326461699302,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833786},
-{"pid":27443,"tid":27477,"ts":326461699332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833816},
-{"pid":27443,"tid":27477,"ts":326461699332,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":833816},
-{"pid":27443,"tid":27477,"ts":326461699363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833847},
-{"pid":27443,"tid":27477,"ts":326461699363,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":833847},
-{"pid":27443,"tid":27477,"ts":326461699393,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":833877},
-{"pid":27443,"tid":27477,"ts":326461699424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833908},
-{"pid":27443,"tid":27477,"ts":326461699424,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":833908},
-{"pid":27443,"tid":27477,"ts":326461699454,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":833938},
-{"pid":27443,"tid":27477,"ts":326461699515,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":833999},
-{"pid":27443,"tid":27477,"ts":326461699546,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":834030},
-{"pid":27443,"tid":27477,"ts":326461699576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":834060},
-{"pid":27443,"tid":27477,"ts":326461699576,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":834060},
-{"pid":27443,"tid":27477,"ts":326461699607,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":834091},
-{"pid":27443,"tid":27477,"ts":326461699638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":834121},
-{"pid":27443,"tid":27477,"ts":326461699638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":834121},
-{"pid":27443,"tid":27477,"ts":326461699668,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":834182},
-{"pid":27443,"tid":27477,"ts":326461699729,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":834213},
-{"pid":27443,"tid":27477,"ts":326461699729,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":834213},
-{"pid":27443,"tid":27477,"ts":326461699760,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":834243},
-{"pid":27443,"tid":27477,"ts":326461699790,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":834274},
-{"pid":27443,"tid":27477,"ts":326461699790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":834274,"id":"0xaf88a51ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461699821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":834304,"id":"0xaf88a51df182217a"},
-{"pid":27443,"tid":27477,"ts":326461699851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":834335},
-{"pid":27443,"tid":27477,"ts":326461699851,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":834335},
-{"pid":27443,"tid":27477,"ts":326461699851,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":834335},
-{"pid":27443,"tid":27477,"ts":326461699882,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":834365},
-{"pid":27443,"tid":27477,"ts":326461699882,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":62,"tts":834365},
-{"pid":27443,"tid":27477,"ts":326461699882,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":62,"tts":834365},
-{"pid":27443,"tid":27477,"ts":326461699943,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":834427},
-{"pid":27443,"tid":27477,"ts":326461699973,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":834457},
-{"pid":27443,"tid":27477,"ts":326461700065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":834488,"id":"0xaf88a51ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461700095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":834518},
-{"pid":27443,"tid":27477,"ts":326461700095,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":834518},
-{"pid":27443,"tid":27477,"ts":326461700095,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":162},"tts":834518},
-{"pid":27443,"tid":27477,"ts":326461700156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":834579,"id":"0xaf88a68cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461700187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":834610,"id":"0xaf88a54cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461700217,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":834640},
-{"pid":27443,"tid":27477,"ts":326461700248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":834671,"id":"0xaf88a51ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461700248,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2197,"tdur":1861,"tts":834671},
-{"pid":27443,"tid":27477,"ts":326461700248,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2167,"tdur":1831,"tts":834671},
-{"pid":27443,"tid":27477,"ts":326461700278,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":834701},
-{"pid":27443,"tid":27477,"ts":326461700278,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2137,"tdur":1801,"tts":834701},
-{"pid":27443,"tid":27477,"ts":326461700309,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":161},"dur":977,"tdur":976,"tts":834732},
-{"pid":27443,"tid":27477,"ts":326461700339,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":161},"dur":245,"tdur":244,"tts":834762},
-{"pid":27443,"tid":27477,"ts":326461700614,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":161},"dur":31,"tdur":30,"tts":835037},
-{"pid":27443,"tid":27477,"ts":326461700645,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":161},"tts":835067},
-{"pid":27443,"tid":27477,"ts":326461700858,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":835281},
-{"pid":27443,"tid":27477,"ts":326461700858,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":835281},
-{"pid":27443,"tid":27477,"ts":326461700858,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":835312},
-{"pid":27443,"tid":27477,"ts":326461700889,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":835312},
-{"pid":27443,"tid":27477,"ts":326461700889,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":835312,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461700980,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":835434},
-{"pid":27443,"tid":27477,"ts":326461701255,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":835678},
-{"pid":27443,"tid":27477,"ts":326461701286,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":671,"tdur":336,"tts":835708},
-{"pid":27443,"tid":27477,"ts":326461701286,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":835708},
-{"pid":27443,"tid":27477,"ts":326461701316,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":550,"tdur":214,"tts":835739},
-{"pid":27443,"tid":27477,"ts":326461701377,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17106},"dur":61,"tdur":61,"tts":835800},
-{"pid":27443,"tid":27477,"ts":326461701408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":835830,"id":"0xaf88ab23f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461701469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":835891,"id":"0xaf88ab3cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461701927,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":836044,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461701988,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":836075,"id":"0x300000098"},
-{"pid":27443,"tid":27477,"ts":326461702018,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":275,"tdur":275,"tts":836105},
-{"pid":27443,"tid":27477,"ts":326461702201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":836319,"id":"0xaf88ab3df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461702323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":836410,"id":"0xaf88a68df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461702323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":836410,"id":"0xaf88a54ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461703788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461703},"tts":836593,"id":"0xaf88a506f182217a"},
-{"pid":27443,"tid":27477,"ts":326461703788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":836624},
-{"pid":27443,"tid":27477,"ts":326461706199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":836624,"id":"0xaf88a518f182217a"},
-{"pid":27443,"tid":27477,"ts":326461706230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":153,"tts":836654},
-{"pid":27443,"tid":27477,"ts":326461706230,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":244,"tdur":123,"tts":836654},
-{"pid":27443,"tid":27477,"ts":326461706260,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":836685,"id":"0x30000009a"},
-{"pid":27443,"tid":27477,"ts":326461706260,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":836716},
-{"pid":27443,"tid":27477,"ts":326461706291,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":836716,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461706474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":836777,"id":"0xaf88a68ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461706505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":836807,"id":"0xaf88a519f182217a"},
-{"pid":27443,"tid":27477,"ts":326461706505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":836807},
-{"pid":27443,"tid":27477,"ts":326461706535,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461705965.0,"frame_time_us":326461703701.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":836838},
-{"pid":27443,"tid":27477,"ts":326461706566,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461705965.0,"frame_time_us":326461703701.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":836868},
-{"pid":27443,"tid":27477,"ts":326461706627,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461720367},"dur":30,"tdur":31,"tts":836929},
-{"pid":27443,"tid":27477,"ts":326461706657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":836960,"id":"0xaf88a51af182217a"},
-{"pid":27443,"tid":27477,"ts":326461709862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":837021,"id":"0xaf88a51bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461709892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":837051},
-{"pid":27443,"tid":27477,"ts":326461709923,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":837082},
-{"pid":27443,"tid":27477,"ts":326461709923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":837082,"id":"0xaf88a68ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461715294,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":837173,"id":"0xaf88a514f182217a"},
-{"pid":27443,"tid":27477,"ts":326461715325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1282,"tdur":1282,"tts":837204},
-{"pid":27443,"tid":27477,"ts":326461715325,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1282,"tdur":1282,"tts":837204},
-{"pid":27443,"tid":27477,"ts":326461715325,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":837204},
-{"pid":27443,"tid":27477,"ts":326461715356,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1251,"tdur":1252,"tts":837234},
-{"pid":27443,"tid":27477,"ts":326461715356,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1220,"tdur":1221,"tts":837234},
-{"pid":27443,"tid":27477,"ts":326461715356,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":837234},
-{"pid":27443,"tid":27477,"ts":326461715386,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":837265},
-{"pid":27443,"tid":27477,"ts":326461715386,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":837265,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461715386,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":837295},
-{"pid":27443,"tid":27477,"ts":326461715447,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":837326},
-{"pid":27443,"tid":27477,"ts":326461715569,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1007,"tdur":1007,"tts":837448},
-{"pid":27443,"tid":27477,"ts":326461715569,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":162},"dur":305,"tdur":305,"tts":837448},
-{"pid":27443,"tid":27477,"ts":326461715874,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":162},"dur":31,"tdur":31,"tts":837753},
-{"pid":27443,"tid":27477,"ts":326461715935,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":162},"tts":837814},
-{"pid":27443,"tid":27477,"ts":326461716180,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":838058},
-{"pid":27443,"tid":27477,"ts":326461716180,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":396,"tdur":366,"tts":838089},
-{"pid":27443,"tid":27477,"ts":326461716210,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":153,"tts":838089},
-{"pid":27443,"tid":27477,"ts":326461716393,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":838272},
-{"pid":27443,"tid":27477,"ts":326461716393,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":838272},
-{"pid":27443,"tid":27477,"ts":326461716393,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":838272},
-{"pid":27443,"tid":27477,"ts":326461716424,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":838303},
-{"pid":27443,"tid":27477,"ts":326461716424,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":838303,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461716454,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":838333},
-{"pid":27443,"tid":27477,"ts":326461716454,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":838333},
-{"pid":27443,"tid":27459,"ts":326461716088,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7922539},
-{"pid":27443,"tid":27459,"ts":326461716149,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7922600},
-{"pid":27443,"tid":27459,"ts":326461716149,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7922630},
-{"pid":27443,"tid":27459,"ts":326461716180,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7922630},
-{"pid":27443,"tid":27459,"ts":326461716210,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7922661},
-{"pid":27443,"tid":27459,"ts":326461716241,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7922691},
-{"pid":27443,"tid":27459,"ts":326461716302,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":611,"tts":7922752},
-{"pid":27443,"tid":27459,"ts":326461716454,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":427,"tts":7922905},
-{"pid":27443,"tid":27459,"ts":326461716485,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7922936},
-{"pid":27443,"tid":27459,"ts":326461716759,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":123,"frame":"0x78c60000"}},"tts":7923210,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461716759,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":30,"tts":7923241},
-{"pid":27443,"tid":27459,"ts":326461716820,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7923271,"id":"0xaf88a511f182217a"},
-{"pid":27443,"tid":27459,"ts":326461716851,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7923302},
-{"pid":27443,"tid":27459,"ts":326461716943,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7923393},
-{"pid":27443,"tid":27459,"ts":326461716973,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7923424,"id":"0xaf88ab3ef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461717095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7923546,"id":"0xaf88a54ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461717095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7923546},
-{"pid":27443,"tid":27459,"ts":326461717126,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7923576,"id":"0xaf88a548f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461717126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7923576,"id":"0xaf88a68ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461717126,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7923576},
-{"pid":27443,"tid":27459,"ts":326461717126,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":7923607},
-{"pid":27443,"tid":27459,"ts":326461717187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7923638,"id":"0xaf88a548f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461717217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7923668},
-{"pid":27443,"tid":27459,"ts":326461718591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7923729,"id":"0xaf88a549f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461718621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10865,"tdur":7965,"tts":7923760},
-{"pid":27443,"tid":27459,"ts":326461718621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7923760,"id":"0xaf88a54af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461718652,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7923790,"id":"0xaf88a688f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461718652,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10804,"tdur":7905,"tts":7923790},
-{"pid":27443,"tid":27459,"ts":326461718652,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":163},"tts":7923790},
-{"pid":27443,"tid":27459,"ts":326461718682,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7923821},
-{"pid":27443,"tid":27459,"ts":326461718713,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6623,"tdur":4059,"tts":7923851},
-{"pid":27443,"tid":27459,"ts":326461718743,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7923882},
-{"pid":27443,"tid":27459,"ts":326461718774,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":123,"frame":"0x78c60000"}},"dur":6531,"tdur":3968,"tts":7923912},
-{"pid":27443,"tid":27459,"ts":326461718835,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6470,"tdur":3907,"tts":7923973},
-{"pid":27443,"tid":27459,"ts":326461718865,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7924004},
-{"pid":27443,"tid":27459,"ts":326461725275,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7927849},
-{"pid":27443,"tid":27459,"ts":326461725336,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3265,"tdur":3144,"tts":7927941},
-{"pid":27443,"tid":27459,"ts":326461725397,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7928002},
-{"pid":27443,"tid":27459,"ts":326461725427,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7928002},
-{"pid":27443,"tid":27459,"ts":326461725458,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7928032},
-{"pid":27443,"tid":27459,"ts":326461726038,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7928521},{"pid":27443,"tid":27459,"ts":326461726068,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7928551},
-{"pid":27443,"tid":27459,"ts":326461726099,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2502,"tdur":2503,"tts":7928582},
-{"pid":27443,"tid":27459,"ts":326461726129,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2320,"tdur":2320,"tts":7928612},
-{"pid":27443,"tid":27459,"ts":326461726129,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":519,"tdur":488,"tts":7928643},
-{"pid":27443,"tid":27459,"ts":326461726679,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":213,"tts":7929162},
-{"pid":27443,"tid":27459,"ts":326461726892,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7929375},
-{"pid":27443,"tid":27459,"ts":326461726984,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":30,"tts":7929467},
-{"pid":27443,"tid":27459,"ts":326461727014,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1404,"tdur":1404,"tts":7929497},
-{"pid":27443,"tid":27459,"ts":326461728449,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7930932},
-{"pid":27443,"tid":27459,"ts":326461728479,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":123,"tts":7930962},
-{"pid":27443,"tid":27459,"ts":326461728632,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":163},"dur":427,"tdur":427,"tts":7931115},
-{"pid":27443,"tid":27459,"ts":326461728632,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":7931115},
-{"pid":27443,"tid":27459,"ts":326461728846,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":30,"tdur":0,"tts":7931359},
-{"pid":27443,"tid":27459,"ts":326461728876,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":31,"tdur":31,"tts":7931359},
-{"pid":27443,"tid":27459,"ts":326461728907,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":0,"tdur":0,"tts":7931390},
-{"pid":27443,"tid":27459,"ts":326461728937,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":0,"tdur":0,"tts":7931420},
-{"pid":27443,"tid":27459,"ts":326461728937,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":31,"tdur":31,"tts":7931420},
-{"pid":27443,"tid":27459,"ts":326461728968,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":0,"tdur":0,"tts":7931451},
-{"pid":27443,"tid":27459,"ts":326461728968,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":30,"tdur":30,"tts":7931451},
-{"pid":27443,"tid":27459,"ts":326461728998,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":0,"tdur":0,"tts":7931481},
-{"pid":27443,"tid":27459,"ts":326461729029,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":163},"dur":0,"tdur":0,"tts":7931512},
-{"pid":27443,"tid":27459,"ts":326461729059,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7931542,"id":"0x30000009a"},
-{"pid":27443,"tid":27459,"ts":326461729059,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":92,"tts":7931542},
-{"pid":27443,"tid":27477,"ts":326461716515,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":838394,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461716546,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":838425,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461716546,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":838425,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461716729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":838547,"id":"0xaf88a515f182217a"},
-{"pid":27443,"tid":27477,"ts":326461716729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":838547},
-{"pid":27443,"tid":27477,"ts":326461716729,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":91,"tts":838547},
-{"pid":27443,"tid":27477,"ts":326461716759,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":838577,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461716759,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":838577},
-{"pid":27443,"tid":27477,"ts":326461716790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":838608,"id":"0xaf88a510f182217a"},
-{"pid":27443,"tid":27477,"ts":326461716820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":838638,"id":"0xaf88a516f182217a"},
-{"pid":27443,"tid":27477,"ts":326461716820,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":62,"tdur":61,"tts":838638},
-{"pid":27443,"tid":27477,"ts":326461716820,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":62,"tdur":30,"tts":838669},
-{"pid":27443,"tid":27477,"ts":326461716851,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":838669,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461716851,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":838669},
-{"pid":27443,"tid":27477,"ts":326461716882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":838699,"id":"0xaf88a512f182217a"},
-{"pid":27443,"tid":27477,"ts":326461716912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":838730,"id":"0xaf88a517f182217a"},
-{"pid":27443,"tid":27477,"ts":326461716912,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":838730},
-{"pid":27443,"tid":27477,"ts":326461716912,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":838730},
-{"pid":27443,"tid":27477,"ts":326461716912,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":838730,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461716943,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":838760},
-{"pid":27443,"tid":27477,"ts":326461716943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":838760,"id":"0xaf88a510f182217a"},
-{"pid":27443,"tid":27477,"ts":326461716973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1465,"tts":838791},
-{"pid":27443,"tid":27477,"ts":326461716973,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1465,"tdur":1465,"tts":838791},
-{"pid":27443,"tid":27477,"ts":326461716973,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":838791},
-{"pid":27443,"tid":27477,"ts":326461716973,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":838821},
-{"pid":27443,"tid":27477,"ts":326461717004,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":152,"tdur":153,"tts":838821},
-{"pid":27443,"tid":27477,"ts":326461717004,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":123,"tts":838821},
-{"pid":27443,"tid":27477,"ts":326461717156,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1252,"tdur":1251,"tts":838974},
-{"pid":27443,"tid":27477,"ts":326461717156,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1252,"tdur":1251,"tts":838974},
-{"pid":27443,"tid":27477,"ts":326461717156,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":1221,"tts":838974},
-{"pid":27443,"tid":27477,"ts":326461717187,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":839005,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461717248,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":839066},
-{"pid":27443,"tid":27477,"ts":326461717278,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839096},
-{"pid":27443,"tid":27477,"ts":326461717309,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839127},
-{"pid":27443,"tid":27477,"ts":326461717309,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":839127},
-{"pid":27443,"tid":27477,"ts":326461717339,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":839157},
-{"pid":27443,"tid":27477,"ts":326461717370,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839188},
-{"pid":27443,"tid":27477,"ts":326461717370,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":839188},
-{"pid":27443,"tid":27477,"ts":326461717400,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839218},
-{"pid":27443,"tid":27477,"ts":326461717400,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839218},
-{"pid":27443,"tid":27477,"ts":326461717431,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839249},
-{"pid":27443,"tid":27477,"ts":326461717461,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839279},
-{"pid":27443,"tid":27477,"ts":326461717461,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839279},
-{"pid":27443,"tid":27477,"ts":326461717492,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839310},
-{"pid":27443,"tid":27477,"ts":326461717492,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":839310},
-{"pid":27443,"tid":27477,"ts":326461717522,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839340},
-{"pid":27443,"tid":27477,"ts":326461717522,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839340},
-{"pid":27443,"tid":27477,"ts":326461717553,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":839371},
-{"pid":27443,"tid":27477,"ts":326461717583,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839401},
-{"pid":27443,"tid":27477,"ts":326461717583,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839401},
-{"pid":27443,"tid":27477,"ts":326461717614,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839432},
-{"pid":27443,"tid":27477,"ts":326461717614,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":839462},
-{"pid":27443,"tid":27477,"ts":326461717645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839462},
-{"pid":27443,"tid":27477,"ts":326461717675,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839493},
-{"pid":27443,"tid":27477,"ts":326461717675,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":839493},
-{"pid":27443,"tid":27477,"ts":326461717706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839523},
-{"pid":27443,"tid":27477,"ts":326461717706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":839523},
-{"pid":27443,"tid":27477,"ts":326461717736,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839554},
-{"pid":27443,"tid":27477,"ts":326461717767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839584},
-{"pid":27443,"tid":27477,"ts":326461717767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":839584},
-{"pid":27443,"tid":27477,"ts":326461717797,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839615},
-{"pid":27443,"tid":27477,"ts":326461717797,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":839615},
-{"pid":27443,"tid":27477,"ts":326461717828,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839645},
-{"pid":27443,"tid":27477,"ts":326461717858,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839676},
-{"pid":27443,"tid":27477,"ts":326461717858,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839676},
-{"pid":27443,"tid":27477,"ts":326461717919,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839737},
-{"pid":27443,"tid":27477,"ts":326461717919,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839737},
-{"pid":27443,"tid":27477,"ts":326461717950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839768},
-{"pid":27443,"tid":27477,"ts":326461717950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":839768},
-{"pid":27443,"tid":27477,"ts":326461717980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839798},
-{"pid":27443,"tid":27477,"ts":326461717980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":839829},
-{"pid":27443,"tid":27477,"ts":326461718011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":839829},
-{"pid":27443,"tid":27477,"ts":326461718041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839859},
-{"pid":27443,"tid":27477,"ts":326461718041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839859},
-{"pid":27443,"tid":27477,"ts":326461718072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839890},
-{"pid":27443,"tid":27477,"ts":326461718133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":839951},
-{"pid":27443,"tid":27477,"ts":326461718163,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":839981},
-{"pid":27443,"tid":27477,"ts":326461718163,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":839981},
-{"pid":27443,"tid":27477,"ts":326461718194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":840012},
-{"pid":27443,"tid":27477,"ts":326461718224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":840042},
-{"pid":27443,"tid":27477,"ts":326461718224,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":840042},
-{"pid":27443,"tid":27477,"ts":326461718255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":840073},
-{"pid":27443,"tid":27477,"ts":326461718285,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":840103},
-{"pid":27443,"tid":27477,"ts":326461718316,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":840134},
-{"pid":27443,"tid":27477,"ts":326461718347,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":840164},
-{"pid":27443,"tid":27477,"ts":326461718347,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":840164},
-{"pid":27443,"tid":27477,"ts":326461718377,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":840195},
-{"pid":27443,"tid":27477,"ts":326461718408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":840225,"id":"0xaf88a513f182217a"},
-{"pid":27443,"tid":27477,"ts":326461718438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":840256,"id":"0xaf88a511f182217a"},
-{"pid":27443,"tid":27477,"ts":326461718438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":153,"tdur":153,"tts":840256},
-{"pid":27443,"tid":27477,"ts":326461718469,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":123,"tts":840286},
-{"pid":27443,"tid":27477,"ts":326461718469,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":163},"tts":840286},
-{"pid":27443,"tid":27477,"ts":326461718530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":840347,"id":"0xaf88a688f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461718530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":840347,"id":"0xaf88a549f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461718560,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":840378},
-{"pid":27443,"tid":27477,"ts":326461718591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":840409,"id":"0xaf88a512f182217a"},
-{"pid":27443,"tid":27477,"ts":326461718591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":840409},
-{"pid":27443,"tid":27477,"ts":326461718621,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":840439},
-{"pid":27443,"tid":27477,"ts":326461718621,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":840439},
-{"pid":27443,"tid":27477,"ts":326461718621,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":840439},
-{"pid":27443,"tid":27477,"ts":326461718652,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":840470},
-{"pid":27443,"tid":27477,"ts":326461718652,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":840470},
-{"pid":27443,"tid":27477,"ts":326461718713,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":840531},
-{"pid":27443,"tid":27477,"ts":326461718713,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":840531},
-{"pid":27443,"tid":27477,"ts":326461718743,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":840561,"id":"0xaf88a513f182217a"},
-{"pid":27443,"tid":27477,"ts":326461718743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2106,"tdur":1709,"tts":840561},
-{"pid":27443,"tid":27477,"ts":326461718743,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2106,"tdur":1678,"tts":840592},
-{"pid":27443,"tid":27477,"ts":326461718774,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":840592},
-{"pid":27443,"tid":27477,"ts":326461718774,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2045,"tdur":1648,"tts":840592},
-{"pid":27443,"tid":27477,"ts":326461718804,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":162},"dur":946,"tdur":946,"tts":840622},
-{"pid":27443,"tid":27477,"ts":326461718835,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":162},"dur":244,"tdur":244,"tts":840653},
-{"pid":27443,"tid":27477,"ts":326461719079,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":162},"dur":31,"tdur":30,"tts":840897},
-{"pid":27443,"tid":27477,"ts":326461719140,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":162},"tts":840958},
-{"pid":27443,"tid":27477,"ts":326461719323,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":841172},
-{"pid":27443,"tid":27477,"ts":326461719354,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":841172},
-{"pid":27443,"tid":27477,"ts":326461719354,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":841172},
-{"pid":27443,"tid":27477,"ts":326461719354,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":841172},
-{"pid":27443,"tid":27477,"ts":326461719384,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":841202,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461719476,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":841294},
-{"pid":27443,"tid":27477,"ts":326461719720,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":841538},
-{"pid":27443,"tid":27477,"ts":326461719750,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":672,"tdur":275,"tts":841568},
-{"pid":27443,"tid":27477,"ts":326461719750,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":841568},
-{"pid":27443,"tid":27477,"ts":326461719781,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":183,"tts":841599},
-{"pid":27443,"tid":27477,"ts":326461719842,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17106},"dur":31,"tdur":30,"tts":841660},
-{"pid":27443,"tid":27477,"ts":326461719873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":841690,"id":"0xaf88ab3ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461720391,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":841812,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461720422,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":841843,"id":"0x300000099"},
-{"pid":27443,"tid":27477,"ts":326461720452,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":306,"tdur":306,"tts":841873},
-{"pid":27443,"tid":27477,"ts":326461720666,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":842087,"id":"0xaf88ab38f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461720758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":842209,"id":"0xaf88a689f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461720788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":842209,"id":"0xaf88a54bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461720880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461720},"tts":842301,"id":"0xaf88a51af182217a"},
-{"pid":27443,"tid":27477,"ts":326461720880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":842301},
-{"pid":27443,"tid":27477,"ts":326461722772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":842362,"id":"0xaf88a52cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461722802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":842392},
-{"pid":27443,"tid":27477,"ts":326461722802,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":122,"tts":842392},
-{"pid":27443,"tid":27477,"ts":326461722802,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":31,"tts":842392},
-{"pid":27443,"tid":27477,"ts":326461722864,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":842423,"id":"0x30000009b"},
-{"pid":27443,"tid":27477,"ts":326461722894,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":842453},
-{"pid":27443,"tid":27477,"ts":326461722894,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":842453,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461722925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":842484,"id":"0xaf88a68af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461722986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":842545,"id":"0xaf88a52df182217a"},
-{"pid":27443,"tid":27477,"ts":326461722986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":842545},
-{"pid":27443,"tid":27477,"ts":326461723016,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461722647.0,"frame_time_us":326461720383.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":123,"tts":842575},
-{"pid":27443,"tid":27477,"ts":326461723016,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461722647.0,"frame_time_us":326461720383.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":123,"tts":842575},
-{"pid":27443,"tid":27477,"ts":326461723108,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461737049},"dur":0,"tdur":0,"tts":842667},
-{"pid":27443,"tid":27477,"ts":326461723108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":842667,"id":"0xaf88a52ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461727503,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":842789,"id":"0xaf88a52ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461727533,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":842789},
-{"pid":27443,"tid":27477,"ts":326461727564,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":842820},
-{"pid":27443,"tid":27477,"ts":326461727564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":842820,"id":"0xaf88a68bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461729151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":842942,"id":"0xaf88a528f182217a"},
-{"pid":27443,"tid":27477,"ts":326461729151,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1526,"tdur":1526,"tts":842942},
-{"pid":27443,"tid":27477,"ts":326461729151,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1526,"tdur":1526,"tts":842942},
-{"pid":27443,"tid":27477,"ts":326461729181,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":842972},
-{"pid":27443,"tid":27477,"ts":326461729181,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1496,"tdur":1465,"tts":842972},
-{"pid":27443,"tid":27477,"ts":326461729181,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1465,"tdur":1465,"tts":842972},
-{"pid":27443,"tid":27477,"ts":326461729212,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":843003},
-{"pid":27443,"tid":27477,"ts":326461729212,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":843003},
-{"pid":27443,"tid":27477,"ts":326461729212,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":843003,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461729242,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":843033},
-{"pid":27443,"tid":27477,"ts":326461729273,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":30,"tts":843064},
-{"pid":27443,"tid":27477,"ts":326461729395,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1251,"tdur":1251,"tts":843186},
-{"pid":27443,"tid":27477,"ts":326461729395,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":163},"dur":275,"tdur":275,"tts":843186},
-{"pid":27443,"tid":27477,"ts":326461729670,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":163},"dur":61,"tdur":61,"tts":843461},
-{"pid":27443,"tid":27477,"ts":326461729731,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":163},"tts":843522},
-{"pid":27443,"tid":27477,"ts":326461729975,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":843766},
-{"pid":27443,"tid":27477,"ts":326461729975,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":671,"tdur":671,"tts":843766},
-{"pid":27443,"tid":27477,"ts":326461729975,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":274,"tts":843766},
-{"pid":27443,"tid":27477,"ts":326461730280,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":844071},
-{"pid":27443,"tid":27477,"ts":326461730463,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":844254},
-{"pid":27443,"tid":27477,"ts":326461730463,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":844254},
-{"pid":27443,"tid":27477,"ts":326461730463,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":844254},
-{"pid":27443,"tid":27477,"ts":326461730494,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":91,"tdur":91,"tts":844285},
-{"pid":27443,"tid":27477,"ts":326461730494,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":844285,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461730524,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":844315},
-{"pid":27443,"tid":27477,"ts":326461730524,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":844315},
-{"pid":27443,"tid":27477,"ts":326461730585,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":844376,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461730616,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":844407,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461730616,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":844407,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461730677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":844468,"id":"0xaf88a529f182217a"},
-{"pid":27443,"tid":27477,"ts":326461730677,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":844468},
-{"pid":27443,"tid":27477,"ts":326461730707,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":844498},
-{"pid":27443,"tid":27477,"ts":326461730707,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":844498,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461730738,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":844529},
-{"pid":27443,"tid":27477,"ts":326461730738,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":844529,"id":"0xaf88a524f182217a"},
-{"pid":27443,"tid":27477,"ts":326461730768,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":844559,"id":"0xaf88a52af182217a"},
-{"pid":27443,"tid":27477,"ts":326461730768,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":844559},
-{"pid":27443,"tid":27477,"ts":326461730768,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":844559},
-{"pid":27443,"tid":27477,"ts":326461730799,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":844590,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461730829,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":844620},
-{"pid":27443,"tid":27477,"ts":326461730829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":844620,"id":"0xaf88a525f182217a"},
-{"pid":27443,"tid":27466,"ts":326461722528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":405615,"id":"0xaf88a52cf182217a"},
-{"pid":27443,"tid":27466,"ts":326461722833,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":405737},
-{"pid":27443,"tid":27466,"ts":326461722864,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":405768},
-{"pid":27443,"tid":27466,"ts":326461722864,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":405768,"id":"0xba467d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461722894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":405798,"id":"0xaf88a52df182217a"},
-{"pid":27443,"tid":27466,"ts":326461727381,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":405920},
-{"pid":27443,"tid":27466,"ts":326461727411,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":405951},
-{"pid":27443,"tid":27466,"ts":326461727411,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":405951,"id":"0xba467e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461727472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":406012,"id":"0xaf88a52ff182217a"},
-{"pid":27443,"tid":27466,"ts":326461731959,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406104,"id":"0xaf88ab39f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461731959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":406134},
-{"pid":27443,"tid":27466,"ts":326461731989,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406134,"id":"0xccc5db02"},
-{"pid":27443,"tid":27466,"ts":326461734522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406195,"id":"0xaf88ab3af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461734553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":406226},
-{"pid":27443,"tid":27466,"ts":326461734553,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406226,"id":"0xccc5dc06"},
-{"pid":27443,"tid":27466,"ts":326461734766,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":62,"tdur":61,"tts":406317},
-{"pid":27443,"tid":27466,"ts":326461734797,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":406348},
-{"pid":27443,"tid":27466,"ts":326461734797,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406348,"id":"0xc4c2050a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461735163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":406439,"id":"0xaf88ab3bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461735163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":406439},
-{"pid":27443,"tid":27466,"ts":326461735194,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406470,"id":"0xccc5dd02"},
-{"pid":27443,"tid":27466,"ts":326461738673,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":336,"tdur":183,"tts":406561},
-{"pid":27443,"tid":27466,"ts":326461738704,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":274,"tdur":92,"tts":406622},
-{"pid":27443,"tid":27466,"ts":326461738734,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406622,"id":"0xba468002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461738765,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":406683},
-{"pid":27443,"tid":27466,"ts":326461738795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":406683,"id":"0xaf88a520f182217a"},
-{"pid":27443,"tid":27466,"ts":326461739100,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":406775},
-{"pid":27443,"tid":27466,"ts":326461739131,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":62,"tts":406805},
-{"pid":27443,"tid":27466,"ts":326461739131,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406805,"id":"0xba468102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461739161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":406836,"id":"0xaf88a521f182217a"},
-{"pid":27443,"tid":27466,"ts":326461746303,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":406928},
-{"pid":27443,"tid":27466,"ts":326461746334,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":406989},
-{"pid":27443,"tid":27466,"ts":326461746364,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":406989,"id":"0xba468202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461746395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":407019,"id":"0xaf88a538f182217a"},
-{"pid":27443,"tid":27466,"ts":326461746578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":407141,"id":"0xaf88ab34f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461746578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":407141},
-{"pid":27443,"tid":27466,"ts":326461746578,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":407141,"id":"0xccc5df02"},
-{"pid":27443,"tid":27466,"ts":326461750515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":407263,"id":"0xaf88ab35f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461750545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":407294},
-{"pid":27443,"tid":27466,"ts":326461750545,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":407294,"id":"0xccc5e006"},
-{"pid":27443,"tid":27466,"ts":326461750790,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":407416},
-{"pid":27443,"tid":27466,"ts":326461750820,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":407446},
-{"pid":27443,"tid":27466,"ts":326461750820,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":407477,"id":"0xc4c2070a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461751553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":407569,"id":"0xaf88ab36f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461751553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":407569},
-{"pid":27443,"tid":27466,"ts":326461751583,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":407599,"id":"0xccc5e102"},
-{"pid":27443,"tid":27466,"ts":326461756985,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":244,"tts":407691},
-{"pid":27443,"tid":27466,"ts":326461757046,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":407752},
-{"pid":27443,"tid":27466,"ts":326461757046,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":407752,"id":"0xba468402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461757077,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":407782},
-{"pid":27443,"tid":27466,"ts":326461757107,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":407813,"id":"0xaf88a534f182217a"},
-{"pid":27443,"tid":27466,"ts":326461757138,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":407843},
-{"pid":27443,"tid":27466,"ts":326461757168,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":407874,"id":"0xba468502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461757168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":407874,"id":"0xaf88a535f182217a"},
-{"pid":27443,"tid":27466,"ts":326461759671,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408026,"id":"0xaf88ab37f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461759671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":408057},
-{"pid":27443,"tid":27466,"ts":326461759702,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":408057,"id":"0xccc5e302"},
-{"pid":27443,"tid":27466,"ts":326461761197,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":408148},
-{"pid":27443,"tid":27466,"ts":326461761228,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":408179},
-{"pid":27443,"tid":27466,"ts":326461761228,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":408179,"id":"0xba468602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461761289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":408240,"id":"0xaf88a5cef182217a"},
-{"pid":27443,"tid":27466,"ts":326461763517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408332,"id":"0xaf88ab30f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461763547,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":408362},
-{"pid":27443,"tid":27466,"ts":326461763547,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":408362,"id":"0xccc5e406"},
-{"pid":27443,"tid":27459,"ts":326461729090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7931573,"id":"0xaf88a528f182217a"},
-{"pid":27443,"tid":27459,"ts":326461729425,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7931695},
-{"pid":27443,"tid":27459,"ts":326461729517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7931756,"id":"0xaf88a54af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461729517,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7931756},
-{"pid":27443,"tid":27459,"ts":326461729547,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7931786,"id":"0xaf88a544f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461729547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7931786,"id":"0xaf88a689f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461729547,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":0,"tts":7931817},
-{"pid":27443,"tid":27459,"ts":326461729578,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7931817},
-{"pid":27443,"tid":27459,"ts":326461729609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7931848,"id":"0xaf88a54bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461729639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2350,"tdur":1892,"tts":7931878},
-{"pid":27443,"tid":27459,"ts":326461729639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7931878,"id":"0xaf88a68af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461729639,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":2320,"tdur":1862,"tts":7931878},
-{"pid":27443,"tid":27459,"ts":326461729700,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":2259,"tdur":1770,"tts":7931970},
-{"pid":27443,"tid":27459,"ts":326461729731,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7931970,"id":"0x30000009b"},
-{"pid":27443,"tid":27459,"ts":326461729761,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":2076,"tdur":1618,"tts":7932000},
-{"pid":27443,"tid":27459,"ts":326461729761,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":2076,"tdur":1587,"tts":7932031},
-{"pid":27443,"tid":27459,"ts":326461729822,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7932061},
-{"pid":27443,"tid":27459,"ts":326461729853,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7932122},
-{"pid":27443,"tid":27459,"ts":326461729883,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7932153},
-{"pid":27443,"tid":27459,"ts":326461729914,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7932153},
-{"pid":27443,"tid":27459,"ts":326461729944,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7932183},
-{"pid":27443,"tid":27459,"ts":326461729975,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7932214},
-{"pid":27443,"tid":27459,"ts":326461730036,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":244,"tdur":30,"tts":7932275},
-{"pid":27443,"tid":27459,"ts":326461730036,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":7932275},
-{"pid":27443,"tid":27459,"ts":326461730310,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1527,"tdur":1282,"tts":7932336},
-{"pid":27443,"tid":27459,"ts":326461730463,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":1343,"tdur":1099,"tts":7932488},
-{"pid":27443,"tid":27459,"ts":326461730494,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7932519},
-{"pid":27443,"tid":27459,"ts":326461730524,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7932549},
-{"pid":27443,"tid":27459,"ts":326461730616,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7932641},
-{"pid":27443,"tid":27459,"ts":326461730677,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7932702},
-{"pid":27443,"tid":27459,"ts":326461730707,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7932733},
-{"pid":27443,"tid":27459,"ts":326461730799,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7932824},
-{"pid":27443,"tid":27459,"ts":326461730921,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7932946},
-{"pid":27443,"tid":27459,"ts":326461731348,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7933160},
-{"pid":27443,"tid":27459,"ts":326461731501,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7933282},
-{"pid":27443,"tid":27459,"ts":326461731714,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":124,"frame":"0x78c60000"}},"tts":7933496,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461731714,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":7933496},
-{"pid":27443,"tid":27459,"ts":326461731745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7933526,"id":"0xaf88a526f182217a"},
-{"pid":27443,"tid":27459,"ts":326461731775,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7933557},
-{"pid":27443,"tid":27459,"ts":326461731867,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7933648},
-{"pid":27443,"tid":27459,"ts":326461731898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7933679,"id":"0xaf88ab39f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461732020,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7933801,"id":"0xaf88a544f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461732020,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7933801},
-{"pid":27443,"tid":27459,"ts":326461732050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7933831,"id":"0xaf88a545f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461732050,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7933831,"id":"0xaf88a68bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461732050,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":30,"tts":7933862},
-{"pid":27443,"tid":27459,"ts":326461732081,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7933862},
-{"pid":27443,"tid":27459,"ts":326461732142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7933923,"id":"0xaf88a545f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461732142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7933923},
-{"pid":27443,"tid":27459,"ts":326461733057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7934045,"id":"0xaf88a546f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461733088,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12177,"tdur":8698,"tts":7934045},
-{"pid":27443,"tid":27459,"ts":326461733118,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7934075,"id":"0xaf88a547f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461733118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7934075,"id":"0xaf88a684f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461733118,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12147,"tdur":8668,"tts":7934075},
-{"pid":27443,"tid":27459,"ts":326461733149,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":164},"tts":7934106},
-{"pid":27443,"tid":27459,"ts":326461733149,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7934106},
-{"pid":27443,"tid":27459,"ts":326461733179,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3876,"tdur":3754,"tts":7934137},
-{"pid":27443,"tid":27459,"ts":326461733210,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":7934167},
-{"pid":27443,"tid":27459,"ts":326461733271,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":124,"frame":"0x78c60000"}},"dur":3784,"tdur":3663,"tts":7934228},
-{"pid":27443,"tid":27459,"ts":326461733363,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3662,"tdur":3540,"tts":7934320},
-{"pid":27443,"tid":27459,"ts":326461733363,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7934320},
-{"pid":27443,"tid":27459,"ts":326461736994,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7937860},
-{"pid":27443,"tid":27459,"ts":326461737055,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":6501,"tdur":4150,"tts":7937891},
-{"pid":27443,"tid":27459,"ts":326461737086,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7937952},
-{"pid":27443,"tid":27477,"ts":326461730860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":844651,"id":"0xaf88a52bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461730860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":844651},
-{"pid":27443,"tid":27477,"ts":326461730860,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":844651},
-{"pid":27443,"tid":27477,"ts":326461730890,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":844681,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461730890,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":844681},
-{"pid":27443,"tid":27477,"ts":326461730921,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":844712,"id":"0xaf88a524f182217a"},
-{"pid":27443,"tid":27477,"ts":326461730921,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1831,"tdur":1740,"tts":844712},
-{"pid":27443,"tid":27477,"ts":326461730921,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1831,"tdur":1740,"tts":844712},
-{"pid":27443,"tid":27477,"ts":326461730921,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":844712},
-{"pid":27443,"tid":27477,"ts":326461730951,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":844742},
-{"pid":27443,"tid":27477,"ts":326461730982,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":844773},
-{"pid":27443,"tid":27477,"ts":326461730982,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":844773},
-{"pid":27443,"tid":27477,"ts":326461731104,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1648,"tdur":1526,"tts":844895},
-{"pid":27443,"tid":27477,"ts":326461731135,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1587,"tdur":1495,"tts":844926},
-{"pid":27443,"tid":27477,"ts":326461731135,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1556,"tdur":1464,"tts":844926},
-{"pid":27443,"tid":27477,"ts":326461731135,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":844926,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461731257,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":845048},
-{"pid":27443,"tid":27477,"ts":326461731287,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845078},
-{"pid":27443,"tid":27477,"ts":326461731318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845109},
-{"pid":27443,"tid":27477,"ts":326461731318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":845109},
-{"pid":27443,"tid":27477,"ts":326461731348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845139},
-{"pid":27443,"tid":27477,"ts":326461731379,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":845170},
-{"pid":27443,"tid":27477,"ts":326461731409,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845200},
-{"pid":27443,"tid":27477,"ts":326461731440,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":845231},
-{"pid":27443,"tid":27477,"ts":326461731470,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845261},
-{"pid":27443,"tid":27477,"ts":326461731501,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":845292},
-{"pid":27443,"tid":27477,"ts":326461731531,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845322},
-{"pid":27443,"tid":27477,"ts":326461731531,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845322},
-{"pid":27443,"tid":27477,"ts":326461731562,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":845353},
-{"pid":27443,"tid":27477,"ts":326461731592,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845383},
-{"pid":27443,"tid":27477,"ts":326461731623,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845414},
-{"pid":27443,"tid":27477,"ts":326461731623,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845414},
-{"pid":27443,"tid":27477,"ts":326461731653,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845444},
-{"pid":27443,"tid":27477,"ts":326461731653,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845444},
-{"pid":27443,"tid":27477,"ts":326461731684,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845475},
-{"pid":27443,"tid":27477,"ts":326461731684,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":845475},
-{"pid":27443,"tid":27477,"ts":326461731714,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845505},
-{"pid":27443,"tid":27477,"ts":326461731745,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845536},
-{"pid":27443,"tid":27477,"ts":326461731775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845566},
-{"pid":27443,"tid":27477,"ts":326461731775,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":845566},
-{"pid":27443,"tid":27477,"ts":326461731806,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845597},
-{"pid":27443,"tid":27477,"ts":326461731806,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":845597},
-{"pid":27443,"tid":27477,"ts":326461731837,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845627},
-{"pid":27443,"tid":27477,"ts":326461731867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845658},
-{"pid":27443,"tid":27477,"ts":326461731867,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":845658},
-{"pid":27443,"tid":27477,"ts":326461731898,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":152,"tdur":31,"tts":845719},
-{"pid":27443,"tid":27477,"ts":326461731898,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":845719},
-{"pid":27443,"tid":27477,"ts":326461732081,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":845780},
-{"pid":27443,"tid":27477,"ts":326461732111,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845811},
-{"pid":27443,"tid":27477,"ts":326461732142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845841},
-{"pid":27443,"tid":27477,"ts":326461732142,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":845841},
-{"pid":27443,"tid":27477,"ts":326461732172,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":845872},
-{"pid":27443,"tid":27477,"ts":326461732203,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845902},
-{"pid":27443,"tid":27477,"ts":326461732233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845933},
-{"pid":27443,"tid":27477,"ts":326461732233,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":845933},
-{"pid":27443,"tid":27477,"ts":326461732264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845963},
-{"pid":27443,"tid":27477,"ts":326461732264,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":845963},
-{"pid":27443,"tid":27477,"ts":326461732294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":845994},
-{"pid":27443,"tid":27477,"ts":326461732294,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":846024},
-{"pid":27443,"tid":27477,"ts":326461732325,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":846024},
-{"pid":27443,"tid":27477,"ts":326461732355,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":846055},
-{"pid":27443,"tid":27477,"ts":326461732416,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":846116},
-{"pid":27443,"tid":27477,"ts":326461732447,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":846146},
-{"pid":27443,"tid":27477,"ts":326461732477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":846177},
-{"pid":27443,"tid":27477,"ts":326461732477,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":846207},
-{"pid":27443,"tid":27477,"ts":326461732508,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":846207},
-{"pid":27443,"tid":27477,"ts":326461732538,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":846238},
-{"pid":27443,"tid":27477,"ts":326461732569,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":846268},
-{"pid":27443,"tid":27477,"ts":326461732600,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":846299},
-{"pid":27443,"tid":27477,"ts":326461732630,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":846360},
-{"pid":27443,"tid":27477,"ts":326461732661,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":846360},
-{"pid":27443,"tid":27477,"ts":326461732661,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":846360},
-{"pid":27443,"tid":27477,"ts":326461732691,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":846390},
-{"pid":27443,"tid":27477,"ts":326461732722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":846421,"id":"0xaf88a527f182217a"},
-{"pid":27443,"tid":27477,"ts":326461732752,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":846452,"id":"0xaf88a525f182217a"},
-{"pid":27443,"tid":27477,"ts":326461732752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":846452},
-{"pid":27443,"tid":27477,"ts":326461732783,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":846482},
-{"pid":27443,"tid":27477,"ts":326461732783,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":846482},
-{"pid":27443,"tid":27477,"ts":326461732783,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":846482},
-{"pid":27443,"tid":27477,"ts":326461732813,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":846513},
-{"pid":27443,"tid":27477,"ts":326461732813,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":846513},
-{"pid":27443,"tid":27477,"ts":326461732874,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":846574},
-{"pid":27443,"tid":27477,"ts":326461732874,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":846574},
-{"pid":27443,"tid":27477,"ts":326461732905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":846604,"id":"0xaf88a526f182217a"},
-{"pid":27443,"tid":27477,"ts":326461732935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":846635},
-{"pid":27443,"tid":27477,"ts":326461732935,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":122,"tdur":122,"tts":846635},
-{"pid":27443,"tid":27477,"ts":326461732935,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":164},"tts":846635},
-{"pid":27443,"tid":27477,"ts":326461732996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":846696,"id":"0xaf88a684f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461733027,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":846726,"id":"0xaf88a546f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461733057,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":846757},
-{"pid":27443,"tid":27477,"ts":326461733088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":846787,"id":"0xaf88a527f182217a"},
-{"pid":27443,"tid":27477,"ts":326461733088,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2136,"tdur":1709,"tts":846787},
-{"pid":27443,"tid":27477,"ts":326461733088,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2136,"tdur":1709,"tts":846787},
-{"pid":27443,"tid":27477,"ts":326461733118,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":846818},
-{"pid":27443,"tid":27477,"ts":326461733118,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2106,"tdur":1678,"tts":846818},
-{"pid":27443,"tid":27477,"ts":326461733149,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":163},"dur":1160,"tdur":1069,"tts":846848},
-{"pid":27443,"tid":27477,"ts":326461733179,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":163},"dur":275,"tdur":275,"tts":846879},
-{"pid":27443,"tid":27477,"ts":326461733454,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":163},"dur":31,"tdur":30,"tts":847154},
-{"pid":27443,"tid":27477,"ts":326461733485,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":163},"tts":847184},
-{"pid":27443,"tid":27477,"ts":326461733851,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":847459},
-{"pid":27443,"tid":27477,"ts":326461733881,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":847489},
-{"pid":27443,"tid":27477,"ts":326461733881,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":847489},
-{"pid":27443,"tid":27477,"ts":326461733881,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":847489},
-{"pid":27443,"tid":27477,"ts":326461733912,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":847520,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461734003,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":847611},
-{"pid":27443,"tid":27477,"ts":326461734309,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":847917},
-{"pid":27443,"tid":27477,"ts":326461734309,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":610,"tdur":274,"tts":847917},
-{"pid":27443,"tid":27477,"ts":326461734339,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":847947},
-{"pid":27443,"tid":27477,"ts":326461734339,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":183,"tts":847947},
-{"pid":27443,"tid":27477,"ts":326461734431,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17106},"dur":0,"tdur":0,"tts":848039},
-{"pid":27443,"tid":27477,"ts":326461734461,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":848069,"id":"0xaf88ab3af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461734889,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":848161,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461734919,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":848191,"id":"0x30000009a"},
-{"pid":27443,"tid":27477,"ts":326461734950,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":213,"tts":848222},
-{"pid":27443,"tid":27477,"ts":326461735102,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":848374,"id":"0xaf88ab3bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461735163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":848435,"id":"0xaf88a685f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461735194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":848466,"id":"0xaf88a540f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461737147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461737},"tts":848557,"id":"0xaf88a52ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461737178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":848588},
-{"pid":27443,"tid":27477,"ts":326461741725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":848649,"id":"0xaf88a520f182217a"},
-{"pid":27443,"tid":27477,"ts":326461741756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":848680},
-{"pid":27443,"tid":27477,"ts":326461741756,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":152,"tts":848680},
-{"pid":27443,"tid":27477,"ts":326461741786,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":848710,"id":"0x30000009c"},
-{"pid":27443,"tid":27477,"ts":326461741817,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":848741},
-{"pid":27443,"tid":27477,"ts":326461741847,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":848771,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461741878,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":848802,"id":"0xaf88a686f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461741908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":848832,"id":"0xaf88a521f182217a"},
-{"pid":27443,"tid":27477,"ts":326461741908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":848832},
-{"pid":27443,"tid":27459,"ts":326461737117,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7937952},
-{"pid":27443,"tid":27459,"ts":326461737147,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7937982},
-{"pid":27443,"tid":27459,"ts":326461738520,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7938470},
-{"pid":27443,"tid":27459,"ts":326461738551,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7938501},
-{"pid":27443,"tid":27459,"ts":326461738582,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4974,"tdur":3510,"tts":7938531},
-{"pid":27443,"tid":27459,"ts":326461738612,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4670,"tdur":3205,"tts":7938562},
-{"pid":27443,"tid":27459,"ts":326461738612,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1190,"tdur":641,"tts":7938562},
-{"pid":27443,"tid":27459,"ts":326461739833,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":702,"tdur":336,"tts":7939233},
-{"pid":27443,"tid":27459,"ts":326461740535,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":274,"tdur":244,"tts":7939600},
-{"pid":27443,"tid":27459,"ts":326461740840,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":7939874},
-{"pid":27443,"tid":27459,"ts":326461740871,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2411,"tdur":1862,"tts":7939905},
-{"pid":27443,"tid":27459,"ts":326461743312,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7941797},
-{"pid":27443,"tid":27459,"ts":326461743373,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":183,"tdur":153,"tts":7941858},
-{"pid":27443,"tid":27459,"ts":326461743556,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":164},"dur":672,"tdur":488,"tts":7942072},
-{"pid":27443,"tid":27459,"ts":326461743587,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":641,"tdur":488,"tts":7942072},
-{"pid":27443,"tid":27459,"ts":326461743831,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":61,"tdur":30,"tts":7942347},
-{"pid":27443,"tid":27459,"ts":326461743892,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":92,"tdur":31,"tts":7942377},
-{"pid":27443,"tid":27459,"ts":326461744014,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":61,"tdur":0,"tts":7942408},
-{"pid":27443,"tid":27459,"ts":326461744075,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":61,"tdur":30,"tts":7942408},
-{"pid":27443,"tid":27459,"ts":326461744136,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":0,"tdur":0,"tts":7942469},
-{"pid":27443,"tid":27459,"ts":326461744136,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":31,"tdur":30,"tts":7942469},
-{"pid":27443,"tid":27459,"ts":326461744167,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":0,"tdur":0,"tts":7942499},
-{"pid":27443,"tid":27459,"ts":326461744197,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":0,"tdur":0,"tts":7942530},
-{"pid":27443,"tid":27459,"ts":326461744197,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":164},"dur":31,"tdur":0,"tts":7942530},
-{"pid":27443,"tid":27459,"ts":326461744228,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7942591,"id":"0x30000009b"},
-{"pid":27443,"tid":27459,"ts":326461744258,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":946,"tdur":91,"tts":7942591},
-{"pid":27443,"tid":27459,"ts":326461744258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7942621,"id":"0xaf88a523f182217a"},
-{"pid":27443,"tid":27459,"ts":326461745235,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7942713},
-{"pid":27443,"tid":27459,"ts":326461745327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7942804,"id":"0xaf88a547f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461745327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7942804},
-{"pid":27443,"tid":27459,"ts":326461745357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7942835,"id":"0xaf88a541f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461745357,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7942835,"id":"0xaf88a685f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461745388,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":7942865},
-{"pid":27443,"tid":27459,"ts":326461745388,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7942865},
-{"pid":27443,"tid":27459,"ts":326461745449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7942926,"id":"0xaf88a540f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461745449,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1129,"tdur":1130,"tts":7942926},
-{"pid":27443,"tid":27459,"ts":326461745479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7942957,"id":"0xaf88a686f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461745479,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1099,"tdur":1099,"tts":7942957},
-{"pid":27443,"tid":27459,"ts":326461745540,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1007,"tdur":1007,"tts":7943018},
-{"pid":27443,"tid":27459,"ts":326461745540,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7943018,"id":"0x30000009c"},
-{"pid":27443,"tid":27459,"ts":326461745571,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":885,"tdur":886,"tts":7943048},
-{"pid":27443,"tid":27459,"ts":326461745601,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":855,"tts":7943079},
-{"pid":27443,"tid":27459,"ts":326461745662,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7943140},
-{"pid":27443,"tid":27459,"ts":326461745693,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7943201},
-{"pid":27443,"tid":27459,"ts":326461745723,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7943201},
-{"pid":27443,"tid":27459,"ts":326461745754,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7943232},
-{"pid":27443,"tid":27459,"ts":326461745784,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7943262},
-{"pid":27443,"tid":27459,"ts":326461745815,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7943293},
-{"pid":27443,"tid":27459,"ts":326461745845,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7943323},
-{"pid":27443,"tid":27459,"ts":326461745876,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":580,"tts":7943354},
-{"pid":27443,"tid":27459,"ts":326461746028,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7943506},
-{"pid":27443,"tid":27459,"ts":326461746028,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7943537},
-{"pid":27443,"tid":27459,"ts":326461746334,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":125,"frame":"0x78c60000"}},"tts":7943811,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461746334,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7943811},
-{"pid":27443,"tid":27459,"ts":326461746364,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7943842,"id":"0xaf88a53ff182217a"},
-{"pid":27443,"tid":27459,"ts":326461746395,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7943873},
-{"pid":27443,"tid":27459,"ts":326461746486,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7943964},
-{"pid":27443,"tid":27459,"ts":326461746486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7943964,"id":"0xaf88ab34f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461746608,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7944086,"id":"0xaf88a541f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461746608,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7944086},
-{"pid":27443,"tid":27459,"ts":326461747555,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7944178,"id":"0xaf88a542f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461747585,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7944208},
-{"pid":27443,"tid":27459,"ts":326461747585,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7944208,"id":"0xaf88a543f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461747616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7944239,"id":"0xaf88a687f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461741939,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461739328.0,"frame_time_us":326461737064.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":152,"tts":848863},
-{"pid":27443,"tid":27477,"ts":326461741969,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461739328.0,"frame_time_us":326461737064.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":848893},
-{"pid":27443,"tid":27477,"ts":326461742030,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461753730},"dur":31,"tdur":0,"tts":848985},
-{"pid":27443,"tid":27477,"ts":326461742061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":848985,"id":"0xaf88a522f182217a"},
-{"pid":27443,"tid":27477,"ts":326461744319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":849076,"id":"0xaf88a523f182217a"},
-{"pid":27443,"tid":27477,"ts":326461744350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1373,"tts":849107},
-{"pid":27443,"tid":27477,"ts":326461744350,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1343,"tdur":1343,"tts":849107},
-{"pid":27443,"tid":27477,"ts":326461744350,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":849107},
-{"pid":27443,"tid":27477,"ts":326461744380,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1313,"tdur":1313,"tts":849137},
-{"pid":27443,"tid":27477,"ts":326461744380,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1313,"tdur":1313,"tts":849137},
-{"pid":27443,"tid":27477,"ts":326461744411,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":849168},
-{"pid":27443,"tid":27477,"ts":326461744411,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":849168},
-{"pid":27443,"tid":27477,"ts":326461744441,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":849198,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461744441,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":849198},
-{"pid":27443,"tid":27477,"ts":326461744502,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":62,"tdur":61,"tts":849259},
-{"pid":27443,"tid":27477,"ts":326461744625,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1068,"tdur":1069,"tts":849381},
-{"pid":27443,"tid":27477,"ts":326461744625,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":164},"dur":305,"tdur":275,"tts":849412},
-{"pid":27443,"tid":27477,"ts":326461744960,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":164},"dur":31,"tdur":31,"tts":849717},
-{"pid":27443,"tid":27477,"ts":326461745021,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":164},"tts":849778},
-{"pid":27443,"tid":27477,"ts":326461745235,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":850022},
-{"pid":27443,"tid":27477,"ts":326461745265,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":850022},
-{"pid":27443,"tid":27477,"ts":326461745327,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":153,"tts":850083},
-{"pid":27443,"tid":27477,"ts":326461745479,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":850236},
-{"pid":27443,"tid":27477,"ts":326461745510,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":850267},
-{"pid":27443,"tid":27477,"ts":326461745510,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":92,"tts":850297},
-{"pid":27443,"tid":27477,"ts":326461745540,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":850297},
-{"pid":27443,"tid":27477,"ts":326461745540,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":850297,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461745571,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":850328},
-{"pid":27443,"tid":27477,"ts":326461745571,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":850328},
-{"pid":27443,"tid":27477,"ts":326461745632,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":850389,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461745662,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":214}},"tts":850419,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461745662,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":850419,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461746700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":850511,"id":"0xaf88a53cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461746700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":850511},
-{"pid":27443,"tid":27477,"ts":326461746730,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":850541},
-{"pid":27443,"tid":27477,"ts":326461746730,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":850541,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461746761,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":850572},
-{"pid":27443,"tid":27477,"ts":326461746761,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":850572,"id":"0xaf88a539f182217a"},
-{"pid":27443,"tid":27477,"ts":326461746791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":850602,"id":"0xaf88a53df182217a"},
-{"pid":27443,"tid":27477,"ts":326461746791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":62,"tdur":61,"tts":850602},
-{"pid":27443,"tid":27477,"ts":326461746791,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":62,"tdur":61,"tts":850602},
-{"pid":27443,"tid":27477,"ts":326461746822,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":850633,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461746822,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":850633},
-{"pid":27443,"tid":27477,"ts":326461746822,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":850663,"id":"0xaf88a53af182217a"},
-{"pid":27443,"tid":27477,"ts":326461746853,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":850663,"id":"0xaf88a53ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461746883,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":850694},
-{"pid":27443,"tid":27477,"ts":326461746883,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":850694},
-{"pid":27443,"tid":27477,"ts":326461746883,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":850694,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461746883,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":850694},
-{"pid":27443,"tid":27477,"ts":326461746914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":850724,"id":"0xaf88a53ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461746914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":850724},{"pid":27443,"tid":27477,"ts":326461746944,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":850755},
-{"pid":27443,"tid":27477,"ts":326461746975,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":850785,"id":"0xaf88a538f182217a"},
-{"pid":27443,"tid":27477,"ts":326461746975,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":850785},
-{"pid":27443,"tid":27477,"ts":326461747005,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":850816},
-{"pid":27443,"tid":27477,"ts":326461747005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":850816,"id":"0xaf88a687f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461747036,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":850846,"id":"0xaf88a542f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461747066,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":850877,"id":"0xaf88a539f182217a"},
-{"pid":27443,"tid":27477,"ts":326461747097,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1617,"tdur":1617,"tts":850908},
-{"pid":27443,"tid":27477,"ts":326461747097,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1617,"tdur":1587,"tts":850908},
-{"pid":27443,"tid":27477,"ts":326461747097,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":850908},
-{"pid":27443,"tid":27477,"ts":326461747097,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":850908},
-{"pid":27443,"tid":27477,"ts":326461747127,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":850938},
-{"pid":27443,"tid":27477,"ts":326461747127,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":850938},
-{"pid":27443,"tid":27477,"ts":326461747249,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1435,"tdur":1404,"tts":851091},
-{"pid":27443,"tid":27477,"ts":326461747280,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1404,"tdur":1404,"tts":851091},
-{"pid":27443,"tid":27477,"ts":326461747310,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1221,"tdur":1221,"tts":851121},
-{"pid":27443,"tid":27477,"ts":326461747310,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":851121,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461747402,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851213},
-{"pid":27443,"tid":27477,"ts":326461747402,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":851213},
-{"pid":27443,"tid":27477,"ts":326461747432,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":851243},
-{"pid":27443,"tid":27477,"ts":326461747463,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851274},
-{"pid":27443,"tid":27477,"ts":326461747463,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":851274},
-{"pid":27443,"tid":27477,"ts":326461747493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851304},
-{"pid":27443,"tid":27477,"ts":326461747493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":851335},
-{"pid":27443,"tid":27477,"ts":326461747524,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":851335},
-{"pid":27443,"tid":27477,"ts":326461747555,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851365},
-{"pid":27443,"tid":27477,"ts":326461747585,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851396},
-{"pid":27443,"tid":27477,"ts":326461747585,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":851396},
-{"pid":27443,"tid":27477,"ts":326461747616,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851426},
-{"pid":27443,"tid":27477,"ts":326461747646,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851457},
-{"pid":27443,"tid":27477,"ts":326461747646,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851457},
-{"pid":27443,"tid":27477,"ts":326461747677,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851487},
-{"pid":27443,"tid":27477,"ts":326461747677,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":851487},
-{"pid":27443,"tid":27477,"ts":326461747707,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851518},
-{"pid":27443,"tid":27477,"ts":326461747707,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":851518},
-{"pid":27443,"tid":27477,"ts":326461747738,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":851548},
-{"pid":27443,"tid":27477,"ts":326461747768,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851579},
-{"pid":27443,"tid":27477,"ts":326461747768,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":851579},
-{"pid":27443,"tid":27477,"ts":326461747799,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851609},
-{"pid":27443,"tid":27477,"ts":326461747829,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851640},
-{"pid":27443,"tid":27477,"ts":326461747829,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":851640},
-{"pid":27443,"tid":27477,"ts":326461747860,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851671},
-{"pid":27443,"tid":27477,"ts":326461747860,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":851671},
-{"pid":27443,"tid":27477,"ts":326461747890,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851701},
-{"pid":27443,"tid":27477,"ts":326461747921,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851732},
-{"pid":27443,"tid":27477,"ts":326461747921,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":851732},
-{"pid":27443,"tid":27477,"ts":326461747951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851762},
-{"pid":27443,"tid":27477,"ts":326461747951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":851762},
-{"pid":27443,"tid":27477,"ts":326461747982,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851793},
-{"pid":27443,"tid":27477,"ts":326461748012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851823},
-{"pid":27443,"tid":27477,"ts":326461748012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851823},
-{"pid":27443,"tid":27477,"ts":326461748043,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851854},
-{"pid":27443,"tid":27477,"ts":326461748043,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":851854},
-{"pid":27443,"tid":27477,"ts":326461748073,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851884},
-{"pid":27443,"tid":27477,"ts":326461748104,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851915},
-{"pid":27443,"tid":27477,"ts":326461748104,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":851915},
-{"pid":27443,"tid":27477,"ts":326461748134,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851945},
-{"pid":27443,"tid":27477,"ts":326461748134,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":851945},
-{"pid":27443,"tid":27477,"ts":326461748165,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":851976},
-{"pid":27443,"tid":27477,"ts":326461748195,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":852006},
-{"pid":27443,"tid":27477,"ts":326461748195,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":852006},
-{"pid":27443,"tid":27477,"ts":326461748287,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":852098},
-{"pid":27443,"tid":27477,"ts":326461748287,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":852098},
-{"pid":27443,"tid":27477,"ts":326461748318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":852128},
-{"pid":27443,"tid":27477,"ts":326461748348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":852159},
-{"pid":27443,"tid":27477,"ts":326461748348,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":852159},
-{"pid":27443,"tid":27477,"ts":326461748379,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":852189},
-{"pid":27443,"tid":27477,"ts":326461748409,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":852220},
-{"pid":27443,"tid":27477,"ts":326461748440,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":852250},
-{"pid":27443,"tid":27477,"ts":326461748470,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":852281},
-{"pid":27443,"tid":27477,"ts":326461748501,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":852311},
-{"pid":27443,"tid":27477,"ts":326461748501,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":852311},
-{"pid":27443,"tid":27477,"ts":326461748531,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":165},"tts":852342},
-{"pid":27443,"tid":27477,"ts":326461748592,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":852403,"id":"0xaf88a680f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461748623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":852434,"id":"0xaf88a55cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461748653,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":852464},
-{"pid":27443,"tid":27477,"ts":326461748653,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":852464},
-{"pid":27443,"tid":27459,"ts":326461747616,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":30,"tts":7944239},
-{"pid":27443,"tid":27459,"ts":326461747646,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7944269},
-{"pid":27443,"tid":27459,"ts":326461747707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7944330,"id":"0xaf88a543f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461747707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":7944330},
-{"pid":27443,"tid":27459,"ts":326461748653,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7944452,"id":"0xaf88a55cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461748684,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9308,"tdur":8058,"tts":7944452},
-{"pid":27443,"tid":27459,"ts":326461748684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7944483,"id":"0xaf88a55df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461748714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7944483,"id":"0xaf88a680f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461748714,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9248,"tdur":7996,"tts":7944483},
-{"pid":27443,"tid":27459,"ts":326461748714,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":165},"tts":7944483},
-{"pid":27443,"tid":27459,"ts":326461748745,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7944513},
-{"pid":27443,"tid":27459,"ts":326461748775,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4456,"tdur":3906,"tts":7944575},
-{"pid":27443,"tid":27459,"ts":326461748806,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":7944575},
-{"pid":27443,"tid":27459,"ts":326461748867,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":125,"frame":"0x78c60000"}},"dur":4334,"tdur":3845,"tts":7944636},
-{"pid":27443,"tid":27459,"ts":326461748928,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4273,"tdur":3784,"tts":7944697},
-{"pid":27443,"tid":27459,"ts":326461748958,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7944727},
-{"pid":27443,"tid":27459,"ts":326461753170,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7948451},
-{"pid":27443,"tid":27459,"ts":326461753231,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3480,"tdur":3296,"tts":7948512},
-{"pid":27443,"tid":27459,"ts":326461753262,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7948542},
-{"pid":27443,"tid":27459,"ts":326461753292,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7948573},
-{"pid":27443,"tid":27459,"ts":326461753292,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7948573},
-{"pid":27443,"tid":27459,"ts":326461753720,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7949000},
-{"pid":27443,"tid":27459,"ts":326461753750,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7949030},
-{"pid":27443,"tid":27459,"ts":326461753781,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2899,"tdur":2747,"tts":7949061},
-{"pid":27443,"tid":27459,"ts":326461753811,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2655,"tdur":2502,"tts":7949092},
-{"pid":27443,"tid":27459,"ts":326461753811,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":672,"tdur":518,"tts":7949092},
-{"pid":27443,"tid":27459,"ts":326461754483,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":214,"tts":7949641},
-{"pid":27443,"tid":27459,"ts":326461754727,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":7949855},
-{"pid":27443,"tid":27459,"ts":326461754849,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7949977},
-{"pid":27443,"tid":27459,"ts":326461754849,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1587,"tdur":1557,"tts":7950007},
-{"pid":27443,"tid":27459,"ts":326461756466,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":7951594},
-{"pid":27443,"tid":27459,"ts":326461756527,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":153,"tdur":153,"tts":7951655},
-{"pid":27443,"tid":27459,"ts":326461756711,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":165},"dur":457,"tdur":458,"tts":7951838},
-{"pid":27443,"tid":27459,"ts":326461756711,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":457,"tdur":428,"tts":7951838},
-{"pid":27443,"tid":27459,"ts":326461756985,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":31,"tdur":0,"tts":7952113},
-{"pid":27443,"tid":27459,"ts":326461757016,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":0,"tdur":0,"tts":7952144},
-{"pid":27443,"tid":27459,"ts":326461757016,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":30,"tdur":30,"tts":7952144},
-{"pid":27443,"tid":27459,"ts":326461757046,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":0,"tdur":0,"tts":7952174},
-{"pid":27443,"tid":27459,"ts":326461757046,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":31,"tdur":31,"tts":7952174},
-{"pid":27443,"tid":27459,"ts":326461757077,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":0,"tdur":0,"tts":7952205},
-{"pid":27443,"tid":27459,"ts":326461757107,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":0,"tdur":0,"tts":7952235},
-{"pid":27443,"tid":27459,"ts":326461757107,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":31,"tdur":31,"tts":7952235},
-{"pid":27443,"tid":27459,"ts":326461757138,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":165},"dur":0,"tdur":0,"tts":7952266},
-{"pid":27443,"tid":27459,"ts":326461757168,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7952296,"id":"0x30000009c"},
-{"pid":27443,"tid":27459,"ts":326461757168,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":763,"tdur":153,"tts":7952296},
-{"pid":27443,"tid":27459,"ts":326461757229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7952357,"id":"0xaf88a536f182217a"},
-{"pid":27443,"tid":27459,"ts":326461757962,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7952479},
-{"pid":27443,"tid":27459,"ts":326461758054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7952571,"id":"0xaf88a55df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461758054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":91,"tts":7952571},
-{"pid":27443,"tid":27459,"ts":326461758084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7952601,"id":"0xaf88a55ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461758084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7952601,"id":"0xaf88a681f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461758084,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":214,"tdur":61,"tts":7952601},
-{"pid":27443,"tid":27459,"ts":326461758084,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":7952601},
-{"pid":27443,"tid":27459,"ts":326461758267,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":0,"tts":7952632},
-{"pid":27443,"tid":27459,"ts":326461758328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7952693,"id":"0xaf88a55ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461758328,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1526,"tdur":1343,"tts":7952693},
-{"pid":27443,"tid":27459,"ts":326461758359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7952723,"id":"0xaf88a682f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461758359,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1465,"tdur":1282,"tts":7952723},
-{"pid":27443,"tid":27459,"ts":326461758420,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1404,"tdur":1191,"tts":7952784},
-{"pid":27443,"tid":27459,"ts":326461758420,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7952784,"id":"0x30000009d"},
-{"pid":27443,"tid":27459,"ts":326461758450,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1068,"tdur":1068,"tts":7952815},
-{"pid":27443,"tid":27459,"ts":326461758481,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1007,"tdur":1007,"tts":7952846},
-{"pid":27443,"tid":27459,"ts":326461758542,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7952907},
-{"pid":27443,"tid":27459,"ts":326461758603,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7952968},
-{"pid":27443,"tid":27477,"ts":326461748684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":852495,"id":"0xaf88a53bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461748714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":852525,"id":"0xaf88a53af182217a"},
-{"pid":27443,"tid":27477,"ts":326461748714,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":852525},
-{"pid":27443,"tid":27477,"ts":326461748745,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":852556},
-{"pid":27443,"tid":27477,"ts":326461748745,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":852556},
-{"pid":27443,"tid":27477,"ts":326461748745,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":852556},
-{"pid":27443,"tid":27477,"ts":326461748775,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":852586},
-{"pid":27443,"tid":27477,"ts":326461748775,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":852586},
-{"pid":27443,"tid":27477,"ts":326461748836,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":852647},
-{"pid":27443,"tid":27477,"ts":326461748836,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":852647},
-{"pid":27443,"tid":27477,"ts":326461748867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":852678,"id":"0xaf88a53bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461748867,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2503,"tdur":1922,"tts":852678},
-{"pid":27443,"tid":27477,"ts":326461748897,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2442,"tdur":1862,"tts":852708},
-{"pid":27443,"tid":27477,"ts":326461748897,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":852708},
-{"pid":27443,"tid":27477,"ts":326461748928,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2411,"tdur":1831,"tts":852739},
-{"pid":27443,"tid":27477,"ts":326461748928,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":164},"dur":1312,"tdur":1129,"tts":852739},
-{"pid":27443,"tid":27477,"ts":326461748958,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":164},"dur":275,"tdur":275,"tts":852769},
-{"pid":27443,"tid":27477,"ts":326461749233,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":164},"dur":61,"tdur":61,"tts":853044},
-{"pid":27443,"tid":27477,"ts":326461749294,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":164},"tts":853105},
-{"pid":27443,"tid":27477,"ts":326461749538,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":853349},
-{"pid":27443,"tid":27477,"ts":326461749538,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":853349},
-{"pid":27443,"tid":27477,"ts":326461749569,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":853380},
-{"pid":27443,"tid":27477,"ts":326461749569,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":853380},
-{"pid":27443,"tid":27477,"ts":326461749599,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":853410,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461749660,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":853471},
-{"pid":27443,"tid":27477,"ts":326461750210,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":853837},
-{"pid":27443,"tid":27477,"ts":326461750240,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":366,"tts":853868},
-{"pid":27443,"tid":27477,"ts":326461750271,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":853899},
-{"pid":27443,"tid":27477,"ts":326461750271,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":274,"tts":853899},
-{"pid":27443,"tid":27477,"ts":326461750362,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17106},"dur":0,"tdur":0,"tts":853990},
-{"pid":27443,"tid":27477,"ts":326461750393,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":854021,"id":"0xaf88ab35f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461750942,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":854204,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461751003,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":854234,"id":"0x30000009b"},
-{"pid":27443,"tid":27477,"ts":326461751034,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":244,"tdur":244,"tts":854265},
-{"pid":27443,"tid":27477,"ts":326461751217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":854448,"id":"0xaf88ab36f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461751278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":854509,"id":"0xaf88a681f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461751309,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":854539,"id":"0xaf88a55ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461753811,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461753},"tts":854631,"id":"0xaf88a522f182217a"},
-{"pid":27443,"tid":27477,"ts":326461753842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":854662},
-{"pid":27443,"tid":27477,"ts":326461757168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":854753,"id":"0xaf88a534f182217a"},
-{"pid":27443,"tid":27477,"ts":326461757168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":854753},
-{"pid":27443,"tid":27477,"ts":326461757199,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":854784},
-{"pid":27443,"tid":27477,"ts":326461757199,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":854784,"id":"0x30000009d"},
-{"pid":27443,"tid":27477,"ts":326461757229,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":854814},
-{"pid":27443,"tid":27477,"ts":326461757260,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":854845,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461757291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":854875,"id":"0xaf88a682f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461757321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":854936,"id":"0xaf88a535f182217a"},
-{"pid":27443,"tid":27477,"ts":326461757352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":213,"tdur":214,"tts":854936},
-{"pid":27443,"tid":27477,"ts":326461757382,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461756010.0,"frame_time_us":326461753746.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":854967},
-{"pid":27443,"tid":27477,"ts":326461757413,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461756010.0,"frame_time_us":326461753746.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":152,"tdur":153,"tts":854997},
-{"pid":27443,"tid":27477,"ts":326461757504,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461770412},"dur":61,"tdur":61,"tts":855089},
-{"pid":27443,"tid":27477,"ts":326461757535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":855119,"id":"0xaf88a537f182217a"},
-{"pid":27443,"tid":27477,"ts":326461757596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":855180,"id":"0xaf88a536f182217a"},
-{"pid":27443,"tid":27477,"ts":326461757596,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2197,"tdur":1435,"tts":855180},
-{"pid":27443,"tid":27477,"ts":326461757626,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2167,"tdur":1404,"tts":855211},
-{"pid":27443,"tid":27477,"ts":326461757626,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":855211},
-{"pid":27443,"tid":27477,"ts":326461757657,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2136,"tdur":1374,"tts":855241},
-{"pid":27443,"tid":27477,"ts":326461757657,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2136,"tdur":1374,"tts":855241},
-{"pid":27443,"tid":27477,"ts":326461757657,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":30,"tts":855272},
-{"pid":27443,"tid":27477,"ts":326461757687,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":855272},
-{"pid":27443,"tid":27477,"ts":326461757718,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":855302,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461757718,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":855302},
-{"pid":27443,"tid":27477,"ts":326461757748,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":855333},
-{"pid":27443,"tid":27477,"ts":326461757901,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1862,"tdur":1098,"tts":855486},
-{"pid":27443,"tid":27477,"ts":326461757901,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":30,"tts":855486},
-{"pid":27443,"tid":27477,"ts":326461758176,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":165},"dur":518,"tdur":336,"tts":855516},
-{"pid":27443,"tid":27477,"ts":326461758694,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":165},"dur":31,"tdur":30,"tts":855852},
-{"pid":27443,"tid":27477,"ts":326461758755,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":165},"tts":855913},
-{"pid":27443,"tid":27477,"ts":326461759030,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":856157},
-{"pid":27443,"tid":27477,"ts":326461759030,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":733,"tdur":427,"tts":856157},
-{"pid":27443,"tid":27477,"ts":326461759030,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":856157},
-{"pid":27443,"tid":27477,"ts":326461759152,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":336,"tdur":152,"tts":856188},
-{"pid":27443,"tid":27477,"ts":326461759488,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":856340},
-{"pid":27443,"tid":27477,"ts":326461759518,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":856371},
-{"pid":27443,"tid":27477,"ts":326461759518,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":214,"tdur":183,"tts":856371},
-{"pid":27443,"tid":27477,"ts":326461759518,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":214,"tdur":183,"tts":856371},
-{"pid":27443,"tid":27477,"ts":326461759518,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":30,"tts":856371},
-{"pid":27443,"tid":27477,"ts":326461759580,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":856401,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461759610,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":856432},
-{"pid":27443,"tid":27477,"ts":326461759641,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":856462},
-{"pid":27443,"tid":27477,"ts":326461759702,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":856523,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461759732,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":214}},"tts":856554,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461759763,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":856584,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461759824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":856645,"id":"0xaf88a530f182217a"},
-{"pid":27443,"tid":27477,"ts":326461759824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":856645},
-{"pid":27443,"tid":27477,"ts":326461759854,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":856676},
-{"pid":27443,"tid":27477,"ts":326461760098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":856706,"id":"0xaf88a531f182217a"},
-{"pid":27443,"tid":27477,"ts":326461760129,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":856737},
-{"pid":27443,"tid":27477,"ts":326461760129,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":856737},
-{"pid":27443,"tid":27477,"ts":326461760159,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":856767,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461760159,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":856767},
-{"pid":27443,"tid":27477,"ts":326461760159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":856767,"id":"0xaf88a5ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326461760190,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":856798,"id":"0xaf88a532f182217a"},
-{"pid":27443,"tid":27477,"ts":326461760190,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":856798},
-{"pid":27443,"tid":27477,"ts":326461760220,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":856828},
-{"pid":27443,"tid":27477,"ts":326461760220,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":856828,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461760220,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":856828},
-{"pid":27443,"tid":27477,"ts":326461760251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":856859,"id":"0xaf88a5cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461760251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":856890,"id":"0xaf88a533f182217a"},
-{"pid":27443,"tid":27477,"ts":326461760281,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":856890},
-{"pid":27443,"tid":27477,"ts":326461760281,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":856890},
-{"pid":27443,"tid":27477,"ts":326461760281,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":856890,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461760281,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":856920},
-{"pid":27443,"tid":27477,"ts":326461760312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":856920,"id":"0xaf88a5ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326461760312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1465,"tdur":1465,"tts":856920},
-{"pid":27443,"tid":27477,"ts":326461760343,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1434,"tdur":1434,"tts":856951},
-{"pid":27443,"tid":27477,"ts":326461760343,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":856951},
-{"pid":27443,"tid":27477,"ts":326461760343,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":856951},
-{"pid":27443,"tid":27477,"ts":326461760373,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":856981},
-{"pid":27443,"tid":27477,"ts":326461760373,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":856981},
-{"pid":27443,"tid":27477,"ts":326461760495,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1282,"tdur":1282,"tts":857103},
-{"pid":27443,"tid":27477,"ts":326461760526,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1251,"tdur":1251,"tts":857134},
-{"pid":27443,"tid":27477,"ts":326461760526,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1251,"tdur":1251,"tts":857134},
-{"pid":27443,"tid":27477,"ts":326461760526,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":857134,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461760617,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857225},
-{"pid":27443,"tid":27477,"ts":326461760617,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":857256},
-{"pid":27443,"tid":27477,"ts":326461760648,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857256},
-{"pid":27443,"tid":27477,"ts":326461760678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857286},
-{"pid":27443,"tid":27477,"ts":326461760678,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":857286},
-{"pid":27443,"tid":27477,"ts":326461760709,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857317},
-{"pid":27443,"tid":27477,"ts":326461760739,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857347},
-{"pid":27443,"tid":27477,"ts":326461760739,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857347},
-{"pid":27443,"tid":27477,"ts":326461760770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857378},
-{"pid":27443,"tid":27477,"ts":326461760770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857378},
-{"pid":27443,"tid":27477,"ts":326461760800,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857408},
-{"pid":27443,"tid":27477,"ts":326461760800,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":857408},
-{"pid":27443,"tid":27477,"ts":326461760831,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857439},
-{"pid":27443,"tid":27477,"ts":326461760861,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857469},
-{"pid":27443,"tid":27459,"ts":326461758633,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7952998},
-{"pid":27443,"tid":27459,"ts":326461758694,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7953059},
-{"pid":27443,"tid":27459,"ts":326461758725,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7953090},
-{"pid":27443,"tid":27459,"ts":326461758755,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7953120},
-{"pid":27443,"tid":27459,"ts":326461758786,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7953151},
-{"pid":27443,"tid":27459,"ts":326461758847,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":641,"tts":7953212},
-{"pid":27443,"tid":27459,"ts":326461759000,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":457,"tdur":458,"tts":7953364},
-{"pid":27443,"tid":27459,"ts":326461759000,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7953364},
-{"pid":27443,"tid":27459,"ts":326461759335,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":126,"frame":"0x78c60000"}},"tts":7953700,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461759366,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7953731},
-{"pid":27443,"tid":27459,"ts":326461759366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7953731,"id":"0xaf88a530f182217a"},
-{"pid":27443,"tid":27459,"ts":326461759427,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7953792},
-{"pid":27443,"tid":27459,"ts":326461759518,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":275,"tdur":92,"tts":7953883},
-{"pid":27443,"tid":27459,"ts":326461759549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7953914,"id":"0xaf88ab37f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461759885,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7954066,"id":"0xaf88a55ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461759885,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":7954066},
-{"pid":27443,"tid":27459,"ts":326461762143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7954188,"id":"0xaf88a558f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461762143,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9675,"tdur":8912,"tts":7954188},
-{"pid":27443,"tid":27459,"ts":326461762204,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7954249,"id":"0xaf88a559f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461762204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7954249,"id":"0xaf88a683f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461762204,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9614,"tdur":8851,"tts":7954249},
-{"pid":27443,"tid":27459,"ts":326461762235,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":166},"tts":7954280},
-{"pid":27443,"tid":27459,"ts":326461762235,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7954280},
-{"pid":27443,"tid":27459,"ts":326461762265,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":5219,"tdur":4822,"tts":7954341},
-{"pid":27443,"tid":27459,"ts":326461762296,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":7954341},
-{"pid":27443,"tid":27459,"ts":326461762357,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":126,"frame":"0x78c60000"}},"dur":5097,"tdur":4731,"tts":7954402},
-{"pid":27443,"tid":27459,"ts":326461762418,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5036,"tdur":4639,"tts":7954494},
-{"pid":27443,"tid":27459,"ts":326461762448,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7954494},
-{"pid":27443,"tid":27459,"ts":326461763456,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7955501},
-{"pid":27443,"tid":27459,"ts":326461763578,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7955623},
-{"pid":27443,"tid":27459,"ts":326461763608,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7955653},
-{"pid":27443,"tid":27459,"ts":326461763608,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7955684},
-{"pid":27443,"tid":27459,"ts":326461764005,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7956050},
-{"pid":27443,"tid":27459,"ts":326461764127,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7956172},
-{"pid":27443,"tid":27459,"ts":326461764768,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7956691},
-{"pid":27443,"tid":27459,"ts":326461764890,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7956813},
-{"pid":27443,"tid":27459,"ts":326461767423,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7959102},
-{"pid":27443,"tid":27459,"ts":326461767484,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3174,"tdur":3174,"tts":7959163},
-{"pid":27443,"tid":27459,"ts":326461767515,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7959224},
-{"pid":27443,"tid":27459,"ts":326461767545,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7959224},
-{"pid":27443,"tid":27459,"ts":326461767576,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7959255},
-{"pid":27443,"tid":27459,"ts":326461768003,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7959682},
-{"pid":27443,"tid":27459,"ts":326461768034,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7959713},
-{"pid":27443,"tid":27459,"ts":326461768034,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2624,"tdur":2594,"tts":7959743},
-{"pid":27443,"tid":27459,"ts":326461768064,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2411,"tdur":2411,"tts":7959743},
-{"pid":27443,"tid":27459,"ts":326461768095,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":580,"tdur":580,"tts":7959774},
-{"pid":27443,"tid":27459,"ts":326461768675,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":213,"tts":7960354},
-{"pid":27443,"tid":27459,"ts":326461768888,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7960567},
-{"pid":27443,"tid":27459,"ts":326461768980,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":0,"tts":7960689},
-{"pid":27443,"tid":27459,"ts":326461769010,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1435,"tdur":1435,"tts":7960689},
-{"pid":27443,"tid":27459,"ts":326461770475,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":7962154},
-{"pid":27443,"tid":27459,"ts":326461770506,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":152,"tdur":122,"tts":7962185},
-{"pid":27443,"tid":27459,"ts":326461770658,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":166},"dur":611,"tdur":580,"tts":7962337},
-{"pid":27443,"tid":27459,"ts":326461770689,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":580,"tdur":549,"tts":7962368},
-{"pid":27443,"tid":27459,"ts":326461770994,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":31,"tdur":30,"tts":7962643},
-{"pid":27443,"tid":27459,"ts":326461771025,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":30,"tdur":31,"tts":7962673},
-{"pid":27443,"tid":27459,"ts":326461771055,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":31,"tdur":30,"tts":7962704},
-{"pid":27443,"tid":27459,"ts":326461771086,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":30,"tdur":31,"tts":7962734},
-{"pid":27443,"tid":27459,"ts":326461771116,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":31,"tdur":30,"tts":7962765},
-{"pid":27443,"tid":27459,"ts":326461771147,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":30,"tdur":31,"tts":7962795},
-{"pid":27443,"tid":27459,"ts":326461771177,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":31,"tdur":30,"tts":7962826},
-{"pid":27443,"tid":27459,"ts":326461771208,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":30,"tdur":31,"tts":7962856},
-{"pid":27443,"tid":27459,"ts":326461771238,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":166},"dur":0,"tdur":0,"tts":7962887},
-{"pid":27443,"tid":27459,"ts":326461771269,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7962917,"id":"0x30000009d"},
-{"pid":27443,"tid":27471,"ts":326461759976,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":92,"tts":475568},
-{"pid":27443,"tid":27471,"ts":326461760037,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":475629},
-{"pid":27443,"tid":27471,"ts":326461760068,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475660,"id":"0xaf88a533f182217a"},
-{"pid":27443,"tid":27496,"ts":326461764127,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":672,"tdur":488,"tts":82405},
-{"pid":27443,"tid":27496,"ts":326461764158,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":82435},
-{"pid":27443,"tid":27496,"ts":326461764768,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":82862},
-{"pid":27443,"tid":27469,"ts":326461773222,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":505264},
-{"pid":27443,"tid":27469,"ts":326461773253,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":505295},
-{"pid":27443,"tid":27469,"ts":326461773283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505325,"id":"0xaf88a5cbf182217a"},
-{"pid":27443,"tid":27469,"ts":326461773283,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":505325},
-{"pid":27443,"tid":27469,"ts":326461773314,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":505356},
-{"pid":27443,"tid":27469,"ts":326461773314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505356,"id":"0xaf88a5c4f182217a"},
-{"pid":27443,"tid":27469,"ts":326461773344,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":505386},
-{"pid":27443,"tid":27469,"ts":326461773344,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":505386},
-{"pid":27443,"tid":27469,"ts":326461773344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505417,"id":"0xaf88a5c5f182217a"},
-{"pid":27443,"tid":27469,"ts":326461786895,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":30,"tts":505478},
-{"pid":27443,"tid":27469,"ts":326461786926,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":505508},
-{"pid":27443,"tid":27469,"ts":326461786956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505508,"id":"0xaf88a5ddf182217a"},
-{"pid":27443,"tid":27471,"ts":326461786956,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":475751},
-{"pid":27443,"tid":27471,"ts":326461786987,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":475782},
-{"pid":27443,"tid":27471,"ts":326461786987,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475812,"id":"0xaf88a5def182217a"},
-{"pid":27443,"tid":27469,"ts":326461787017,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":505539},
-{"pid":27443,"tid":27469,"ts":326461787017,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":505539},
-{"pid":27443,"tid":27469,"ts":326461787017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505539,"id":"0xaf88a5dff182217a"},
-{"pid":27443,"tid":27546,"ts":326461793671,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":610,"tdur":610,"tts":70990},
-{"pid":27443,"tid":27546,"ts":326461793671,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":70990},
-{"pid":27443,"tid":27546,"ts":326461794281,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":71600},
-{"pid":27443,"tid":27471,"ts":326461803315,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":475843},
-{"pid":27443,"tid":27471,"ts":326461803346,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":475873},
-{"pid":27443,"tid":27471,"ts":326461803346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475873,"id":"0xaf88a5d1f182217a"},
-{"pid":27443,"tid":27469,"ts":326461803376,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":505600},
-{"pid":27443,"tid":27469,"ts":326461803407,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":505631},
-{"pid":27443,"tid":27469,"ts":326461803407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505631,"id":"0xaf88a5d2f182217a"},
-{"pid":27443,"tid":27471,"ts":326461803437,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":475965},
-{"pid":27443,"tid":27471,"ts":326461803437,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":475965},
-{"pid":27443,"tid":27471,"ts":326461803468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":475995,"id":"0xaf88a5d3f182217a"},
-{"pid":27443,"tid":27469,"ts":326461817294,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":505722},
-{"pid":27443,"tid":27469,"ts":326461817324,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":505753},
-{"pid":27443,"tid":27469,"ts":326461817324,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505753,"id":"0xaf88a5e5f182217a"},
-{"pid":27443,"tid":27471,"ts":326461817324,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":31,"tts":476056},
-{"pid":27443,"tid":27471,"ts":326461817355,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":476087},
-{"pid":27443,"tid":27469,"ts":326461817385,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":505814},
-{"pid":27443,"tid":27471,"ts":326461817385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476087,"id":"0xaf88a5e6f182217a"},
-{"pid":27443,"tid":27469,"ts":326461817385,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":505814},
-{"pid":27443,"tid":27469,"ts":326461817385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505814,"id":"0xaf88a5e7f182217a"},
-{"pid":27443,"tid":27471,"ts":326461835087,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":92,"tts":476178},
-{"pid":27443,"tid":27471,"ts":326461835117,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":476178},
-{"pid":27443,"tid":27471,"ts":326461835148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476209,"id":"0xaf88a5f9f182217a"},
-{"pid":27443,"tid":27469,"ts":326461835148,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":505875},
-{"pid":27443,"tid":27469,"ts":326461835178,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":505905},
-{"pid":27443,"tid":27469,"ts":326461835178,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505905,"id":"0xaf88a5faf182217a"},
-{"pid":27443,"tid":27471,"ts":326461835209,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":476270},
-{"pid":27443,"tid":27471,"ts":326461835209,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":476270},
-{"pid":27443,"tid":27471,"ts":326461835240,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476300,"id":"0xaf88a5fbf182217a"},
-{"pid":27443,"tid":27469,"ts":326461853002,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":506027},
-{"pid":27443,"tid":27469,"ts":326461853033,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":506058},
-{"pid":27443,"tid":27469,"ts":326461853063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506088,"id":"0xaf88a58df182217a"},
-{"pid":27443,"tid":27471,"ts":326461853063,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":62,"tts":476361},
-{"pid":27443,"tid":27471,"ts":326461853094,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":476392},
-{"pid":27443,"tid":27469,"ts":326461853094,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":506119},
-{"pid":27443,"tid":27471,"ts":326461853094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476423,"id":"0xaf88a58ef182217a"},
-{"pid":27443,"tid":27469,"ts":326461853124,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":506149},
-{"pid":27443,"tid":27469,"ts":326461853124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506149,"id":"0xaf88a58ff182217a"},
-{"pid":27443,"tid":27471,"ts":326461883370,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":476453},
-{"pid":27443,"tid":27477,"ts":326461760892,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857500},
-{"pid":27443,"tid":27477,"ts":326461760892,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857500},
-{"pid":27443,"tid":27477,"ts":326461760922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857530},
-{"pid":27443,"tid":27477,"ts":326461760922,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":857530},
-{"pid":27443,"tid":27477,"ts":326461760953,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857561},
-{"pid":27443,"tid":27477,"ts":326461760983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857591},
-{"pid":27443,"tid":27477,"ts":326461760983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":857622},
-{"pid":27443,"tid":27477,"ts":326461761014,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857622},
-{"pid":27443,"tid":27477,"ts":326461761045,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857653},
-{"pid":27443,"tid":27477,"ts":326461761045,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857653},
-{"pid":27443,"tid":27477,"ts":326461761075,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":857683},
-{"pid":27443,"tid":27477,"ts":326461761106,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857714},
-{"pid":27443,"tid":27477,"ts":326461761136,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857744},
-{"pid":27443,"tid":27477,"ts":326461761136,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857744},
-{"pid":27443,"tid":27477,"ts":326461761167,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857775},
-{"pid":27443,"tid":27477,"ts":326461761167,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857775},
-{"pid":27443,"tid":27477,"ts":326461761197,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857805},
-{"pid":27443,"tid":27477,"ts":326461761197,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":857805},
-{"pid":27443,"tid":27477,"ts":326461761228,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857836},
-{"pid":27443,"tid":27477,"ts":326461761258,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857866},
-{"pid":27443,"tid":27477,"ts":326461761289,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857897},
-{"pid":27443,"tid":27477,"ts":326461761289,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857897},
-{"pid":27443,"tid":27477,"ts":326461761319,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857927},
-{"pid":27443,"tid":27477,"ts":326461761319,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":857958},
-{"pid":27443,"tid":27477,"ts":326461761350,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":857958},
-{"pid":27443,"tid":27477,"ts":326461761380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":857988},
-{"pid":27443,"tid":27477,"ts":326461761380,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":857988},
-{"pid":27443,"tid":27477,"ts":326461761411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858019},
-{"pid":27443,"tid":27477,"ts":326461761411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":858019},
-{"pid":27443,"tid":27477,"ts":326461761441,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858049},
-{"pid":27443,"tid":27477,"ts":326461761502,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":858110},
-{"pid":27443,"tid":27477,"ts":326461761533,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858141},
-{"pid":27443,"tid":27477,"ts":326461761563,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858171},
-{"pid":27443,"tid":27477,"ts":326461761594,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858202},
-{"pid":27443,"tid":27477,"ts":326461761594,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858202},
-{"pid":27443,"tid":27477,"ts":326461761624,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":858232},
-{"pid":27443,"tid":27477,"ts":326461761624,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":858232},
-{"pid":27443,"tid":27477,"ts":326461761685,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":858293},
-{"pid":27443,"tid":27477,"ts":326461761716,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":858324},
-{"pid":27443,"tid":27477,"ts":326461761716,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":858324},
-{"pid":27443,"tid":27477,"ts":326461761746,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":858354},
-{"pid":27443,"tid":27477,"ts":326461761808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":858416,"id":"0xaf88a5cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461761808,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":858416},
-{"pid":27443,"tid":27477,"ts":326461761808,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":858416},
-{"pid":27443,"tid":27477,"ts":326461761838,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":858446},
-{"pid":27443,"tid":27477,"ts":326461761838,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":858446},
-{"pid":27443,"tid":27477,"ts":326461761838,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":858446},
-{"pid":27443,"tid":27477,"ts":326461761869,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":858477},
-{"pid":27443,"tid":27477,"ts":326461761930,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":858538},
-{"pid":27443,"tid":27477,"ts":326461761930,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":858538},
-{"pid":27443,"tid":27477,"ts":326461761960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":858568,"id":"0xaf88a5cef182217a"},
-{"pid":27443,"tid":27477,"ts":326461761960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":858568},
-{"pid":27443,"tid":27477,"ts":326461761991,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":183,"tdur":183,"tts":858599},
-{"pid":27443,"tid":27477,"ts":326461761991,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":166},"tts":858599},
-{"pid":27443,"tid":27477,"ts":326461762052,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":858690,"id":"0xaf88a683f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461762082,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":858690,"id":"0xaf88a558f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461762113,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":858721},
-{"pid":27443,"tid":27477,"ts":326461762113,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":0,"tts":858751},
-{"pid":27443,"tid":27477,"ts":326461762143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":858751,"id":"0xaf88a5cff182217a"},
-{"pid":27443,"tid":27477,"ts":326461762143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":858782,"id":"0xaf88a69cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461762204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":858812,"id":"0xaf88a5cff182217a"},
-{"pid":27443,"tid":27477,"ts":326461762204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3419,"tdur":1770,"tts":858812},
-{"pid":27443,"tid":27477,"ts":326461762204,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3419,"tdur":1770,"tts":858812},
-{"pid":27443,"tid":27477,"ts":326461762235,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":858843},
-{"pid":27443,"tid":27477,"ts":326461762235,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3388,"tdur":1709,"tts":858843},
-{"pid":27443,"tid":27477,"ts":326461762265,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":165},"dur":1007,"tdur":1008,"tts":858873},
-{"pid":27443,"tid":27477,"ts":326461762296,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":165},"dur":275,"tdur":275,"tts":858904},
-{"pid":27443,"tid":27477,"ts":326461762571,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":165},"dur":30,"tdur":30,"tts":859179},
-{"pid":27443,"tid":27477,"ts":326461762601,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":165},"tts":859209},
-{"pid":27443,"tid":27477,"ts":326461762815,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":859423},
-{"pid":27443,"tid":27477,"ts":326461762845,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":859453},
-{"pid":27443,"tid":27477,"ts":326461762845,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":859453},
-{"pid":27443,"tid":27477,"ts":326461762845,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":859453},
-{"pid":27443,"tid":27477,"ts":326461762876,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":859484,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461762937,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":859575},
-{"pid":27443,"tid":27477,"ts":326461763272,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":859881},
-{"pid":27443,"tid":27477,"ts":326461763272,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":886,"tdur":305,"tts":859881},
-{"pid":27443,"tid":27477,"ts":326461763303,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":859911},
-{"pid":27443,"tid":27477,"ts":326461763303,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":794,"tdur":214,"tts":859911},
-{"pid":27443,"tid":27477,"ts":326461763395,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17106},"dur":0,"tdur":0,"tts":860003},
-{"pid":27443,"tid":27477,"ts":326461763425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":860033,"id":"0xaf88ab30f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461764127,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":860186,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461764188,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":860216,"id":"0x30000009c"},
-{"pid":27443,"tid":27477,"ts":326461764188,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":1343,"tdur":275,"tts":860216},
-{"pid":27443,"tid":27477,"ts":326461765470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":860430,"id":"0xaf88ab31f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461765562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":860521,"id":"0xaf88a69df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461765562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":860521,"id":"0xaf88a55af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461770506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461770},"tts":860644,"id":"0xaf88a537f182217a"},
-{"pid":27443,"tid":27477,"ts":326461770536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":860674},
-{"pid":27443,"tid":27477,"ts":326461771360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":860705,"id":"0xaf88a5c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461771360,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1984,"tdur":1556,"tts":860705},
-{"pid":27443,"tid":27477,"ts":326461771391,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1923,"tdur":1496,"tts":860735},
-{"pid":27443,"tid":27477,"ts":326461771421,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":860766},
-{"pid":27443,"tid":27477,"ts":326461771452,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1862,"tdur":1465,"tts":860766},
-{"pid":27443,"tid":27477,"ts":326461771482,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1832,"tdur":1435,"tts":860796},
-{"pid":27443,"tid":27477,"ts":326461771513,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":860827},
-{"pid":27443,"tid":27477,"ts":326461771513,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":860827},
-{"pid":27443,"tid":27477,"ts":326461771513,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":860857,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461771544,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":860857},
-{"pid":27443,"tid":27477,"ts":326461771574,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":92,"tdur":91,"tts":860888},
-{"pid":27443,"tid":27477,"ts":326461771727,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1556,"tdur":1160,"tts":861040},
-{"pid":27443,"tid":27477,"ts":326461771757,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":166},"dur":580,"tdur":366,"tts":861071},
-{"pid":27443,"tid":27477,"ts":326461772368,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":166},"dur":30,"tdur":30,"tts":861468},
-{"pid":27443,"tid":27477,"ts":326461772429,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":166},"tts":861529},
-{"pid":27443,"tid":27477,"ts":326461772856,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":861773},
-{"pid":27443,"tid":27477,"ts":326461772856,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":861773},
-{"pid":27443,"tid":27477,"ts":326461772886,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":184,"tdur":183,"tts":861803},
-{"pid":27443,"tid":27477,"ts":326461773070,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":861986},
-{"pid":27443,"tid":27477,"ts":326461773100,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":862017},
-{"pid":27443,"tid":27477,"ts":326461773100,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":862017},
-{"pid":27443,"tid":27477,"ts":326461773100,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":862017},
-{"pid":27443,"tid":27477,"ts":326461773131,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":862047,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461773161,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":862078},
-{"pid":27443,"tid":27477,"ts":326461773161,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":862078},
-{"pid":27443,"tid":27477,"ts":326461773222,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":862139,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461773253,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":212}},"tts":862170,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461773283,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5726208},"tts":862200,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461773344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":862261,"id":"0xaf88a5c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":862261},
-{"pid":27443,"tid":27477,"ts":326461773375,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":122,"tts":862292},
-{"pid":27443,"tid":27477,"ts":326461773375,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":862322,"id":"0x30000009e"},
-{"pid":27443,"tid":27477,"ts":326461773405,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":0,"tts":862322},
-{"pid":27443,"tid":27477,"ts":326461773436,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":862353,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461773466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":862383,"id":"0xaf88a69ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461773466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":862383,"id":"0xaf88a556f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461773527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":862444,"id":"0xaf88a5caf182217a"},
-{"pid":27443,"tid":27477,"ts":326461773527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":862444},
-{"pid":27443,"tid":27477,"ts":326461773588,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461772691.0,"frame_time_us":326461770427.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":153,"tdur":153,"tts":862505},
-{"pid":27443,"tid":27466,"ts":326461763944,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":153,"tdur":122,"tts":408484},
-{"pid":27443,"tid":27466,"ts":326461763944,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":408484},
-{"pid":27443,"tid":27466,"ts":326461764036,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":408576},
-{"pid":27443,"tid":27466,"ts":326461764036,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":408576,"id":"0xc4c20a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461765531,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":408698,"id":"0xaf88ab31f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461765562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":408698},
-{"pid":27443,"tid":27466,"ts":326461765562,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":408698,"id":"0xccc5e502"},
-{"pid":27443,"tid":27466,"ts":326461772001,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":408820},
-{"pid":27443,"tid":27466,"ts":326461772032,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":408850},
-{"pid":27443,"tid":27466,"ts":326461772062,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":408881,"id":"0xba468802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461772093,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":408911},
-{"pid":27443,"tid":27466,"ts":326461772123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":408942,"id":"0xaf88a5c9f182217a"},
-{"pid":27443,"tid":27466,"ts":326461772581,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":409033},
-{"pid":27443,"tid":27466,"ts":326461772612,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":409064},
-{"pid":27443,"tid":27466,"ts":326461772642,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409095,"id":"0xba468902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461772642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":409125,"id":"0xaf88a5caf182217a"},
-{"pid":27443,"tid":27466,"ts":326461774809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":409186,"id":"0xaf88ab32f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461774840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":409217},
-{"pid":27443,"tid":27466,"ts":326461774840,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409217,"id":"0xccc5e702"},
-{"pid":27443,"tid":27466,"ts":326461777770,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":409369},
-{"pid":27443,"tid":27466,"ts":326461777770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":61,"tts":409400},
-{"pid":27443,"tid":27466,"ts":326461777800,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409400,"id":"0xba468a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461777831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":409430,"id":"0xaf88a5c2f182217a"},
-{"pid":27443,"tid":27466,"ts":326461781005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":409522,"id":"0xaf88ab33f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461781035,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":409552},
-{"pid":27443,"tid":27466,"ts":326461781035,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409552,"id":"0xccc5e806"},
-{"pid":27443,"tid":27466,"ts":326461781218,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":184,"tdur":61,"tts":409644},
-{"pid":27443,"tid":27466,"ts":326461781218,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":153,"tdur":30,"tts":409644},
-{"pid":27443,"tid":27466,"ts":326461781218,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":123,"tdur":0,"tts":409644},
-{"pid":27443,"tid":27466,"ts":326461781341,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409644,"id":"0xc4c20d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461781707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":409796,"id":"0xaf88abccf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461781707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":31,"tts":409827},
-{"pid":27443,"tid":27466,"ts":326461781737,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409827,"id":"0xccc5e902"},
-{"pid":27443,"tid":27466,"ts":326461788726,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":409919},
-{"pid":27443,"tid":27466,"ts":326461788757,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":409949},
-{"pid":27443,"tid":27466,"ts":326461788757,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":409949,"id":"0xba468c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461788788,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":31,"tts":410010},
-{"pid":27443,"tid":27466,"ts":326461788818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410010,"id":"0xaf88a5daf182217a"},
-{"pid":27443,"tid":27466,"ts":326461789276,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":91,"tts":410102},
-{"pid":27443,"tid":27466,"ts":326461789306,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":410132},
-{"pid":27443,"tid":27466,"ts":326461789306,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410132,"id":"0xba468d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461789337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410163,"id":"0xaf88a5dbf182217a"},
-{"pid":27443,"tid":27466,"ts":326461791046,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":410254},
-{"pid":27443,"tid":27466,"ts":326461791077,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":410285},
-{"pid":27443,"tid":27466,"ts":326461791077,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410285,"id":"0xba469002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461791107,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":410315,"id":"0xaf88a5d6f182217a"},
-{"pid":27443,"tid":27466,"ts":326461791168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":410376,"id":"0xaf88abcdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461791168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":410376},
-{"pid":27443,"tid":27466,"ts":326461791168,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410376,"id":"0xccc5eb02"},
-{"pid":27443,"tid":27466,"ts":326461792908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":410498,"id":"0xaf88abcef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461792938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":410529},
-{"pid":27443,"tid":27466,"ts":326461792938,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410529,"id":"0xccc5ec02"},
-{"pid":27443,"tid":27466,"ts":326461792999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":410590,"id":"0xaf88abcff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461793030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":410621},
-{"pid":27443,"tid":27466,"ts":326461793030,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410621,"id":"0xccc5ed06"},
-{"pid":27443,"tid":27466,"ts":326461793182,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":410682},
-{"pid":27443,"tid":27466,"ts":326461793213,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":410712},
-{"pid":27443,"tid":27466,"ts":326461793213,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410712,"id":"0xc4c2120a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461793579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":410834,"id":"0xaf88abc8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461793579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":410834},
-{"pid":27443,"tid":27466,"ts":326461793579,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410834,"id":"0xccc5ee02"},
-{"pid":27443,"tid":27466,"ts":326461806367,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":410956},
-{"pid":27443,"tid":27466,"ts":326461806398,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":91,"tts":410987},
-{"pid":27443,"tid":27466,"ts":326461806398,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":410987,"id":"0xba469202","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326461771269,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":488,"tdur":122,"tts":7962917},
-{"pid":27443,"tid":27459,"ts":326461771299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7962948,"id":"0xaf88a5c8f182217a"},
-{"pid":27443,"tid":27459,"ts":326461771788,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7963070},
-{"pid":27443,"tid":27459,"ts":326461771879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461763},"tts":7963161,"id":"0xaf88a4bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461771879,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":31,"tts":7963161},
-{"pid":27443,"tid":27459,"ts":326461771971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7963222,"id":"0xaf88a559f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461771971,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":123,"tts":7963222},
-{"pid":27443,"tid":27459,"ts":326461772001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7963253,"id":"0xaf88a55bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461772001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7963253,"id":"0xaf88a6fbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461772032,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":62,"tts":7963283},
-{"pid":27443,"tid":27459,"ts":326461772032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7963314,"id":"0xaf88a69ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461772062,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7963314,"id":"0xaf88a554f3d027d2"},{"pid":27443,"tid":27459,"ts":326461772123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7963375,"id":"0xaf88a55af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461772154,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":7963406},
-{"pid":27443,"tid":27459,"ts":326461772184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7963436,"id":"0xaf88a69cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461772184,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":7963436},
-{"pid":27443,"tid":27459,"ts":326461772215,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7963467},
-{"pid":27443,"tid":27459,"ts":326461772276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7963528,"id":"0xaf88a55bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461772307,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":7963558},
-{"pid":27443,"tid":27459,"ts":326461772307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7963558,"id":"0xaf88a555f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461772337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7963589,"id":"0xaf88a69df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461772337,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":7963589},
-{"pid":27443,"tid":27459,"ts":326461772368,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7963619},
-{"pid":27443,"tid":27459,"ts":326461772398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7963650,"id":"0xaf88a555f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461772429,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7963680},
-{"pid":27443,"tid":27459,"ts":326461773527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7963772,"id":"0xaf88a556f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461773558,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1282,"tdur":1099,"tts":7963802},
-{"pid":27443,"tid":27459,"ts":326461773558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7963802,"id":"0xaf88a557f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461773588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7963833,"id":"0xaf88a69ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461773588,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1221,"tdur":1038,"tts":7963833},
-{"pid":27443,"tid":27459,"ts":326461773649,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1160,"tdur":977,"tts":7963894},
-{"pid":27443,"tid":27459,"ts":326461773649,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7963894,"id":"0x30000009e"},
-{"pid":27443,"tid":27459,"ts":326461773680,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":855,"tts":7963924},
-{"pid":27443,"tid":27459,"ts":326461773710,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":824,"tts":7963955},
-{"pid":27443,"tid":27459,"ts":326461773772,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964016},
-{"pid":27443,"tid":27459,"ts":326461773802,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964047},
-{"pid":27443,"tid":27459,"ts":326461773833,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964077},
-{"pid":27443,"tid":27459,"ts":326461773863,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964108},
-{"pid":27443,"tid":27459,"ts":326461773894,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964138},
-{"pid":27443,"tid":27459,"ts":326461773924,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964169},
-{"pid":27443,"tid":27459,"ts":326461773955,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7964199},
-{"pid":27443,"tid":27459,"ts":326461773985,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":550,"tdur":549,"tts":7964230},
-{"pid":27443,"tid":27459,"ts":326461774107,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":366,"tts":7964382},
-{"pid":27443,"tid":27459,"ts":326461774138,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7964382},
-{"pid":27443,"tid":27459,"ts":326461774412,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":127,"frame":"0x78c60000"}},"tts":7964687,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461774443,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":7964687},
-{"pid":27443,"tid":27459,"ts":326461774473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7964718,"id":"0xaf88a5c1f182217a"},
-{"pid":27443,"tid":27459,"ts":326461774473,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7964748},
-{"pid":27443,"tid":27459,"ts":326461774687,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":7964779},
-{"pid":27443,"tid":27459,"ts":326461774718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7964810,"id":"0xaf88ab32f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461775236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7964901,"id":"0xaf88a557f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461775267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":30,"tts":7964932},
-{"pid":27443,"tid":27459,"ts":326461775267,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":7964932},
-{"pid":27443,"tid":27459,"ts":326461778075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7965023,"id":"0xaf88a550f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461778105,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8027,"tdur":7691,"tts":7965054},
-{"pid":27443,"tid":27459,"ts":326461778136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7965084,"id":"0xaf88a551f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461778166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7965115,"id":"0xaf88a698f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461778166,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":7966,"tdur":7630,"tts":7965115},
-{"pid":27443,"tid":27459,"ts":326461778166,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":167},"tts":7965115},
-{"pid":27443,"tid":27459,"ts":326461778197,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7965145},
-{"pid":27443,"tid":27459,"ts":326461778227,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3754,"tdur":3754,"tts":7965176},
-{"pid":27443,"tid":27459,"ts":326461778258,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7965206},
-{"pid":27443,"tid":27459,"ts":326461778289,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":127,"frame":"0x78c60000"}},"dur":3662,"tdur":3632,"tts":7965267},
-{"pid":27443,"tid":27459,"ts":326461778380,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3571,"tdur":3540,"tts":7965359},
-{"pid":27443,"tid":27477,"ts":326461773619,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461772691.0,"frame_time_us":326461770427.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":862536},
-{"pid":27443,"tid":27477,"ts":326461773680,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461787093},"dur":30,"tdur":30,"tts":862597},
-{"pid":27443,"tid":27477,"ts":326461773680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":862597,"id":"0xaf88a5c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":862658,"id":"0xaf88a5cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461773741,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":862658},
-{"pid":27443,"tid":27477,"ts":326461773772,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":862688},
-{"pid":27443,"tid":27477,"ts":326461773772,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":862688,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461773802,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":862719},
-{"pid":27443,"tid":27477,"ts":326461773802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":862719,"id":"0xaf88a5c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":862749,"id":"0xaf88a5c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":862749},
-{"pid":27443,"tid":27477,"ts":326461773833,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":61,"tts":862780},
-{"pid":27443,"tid":27477,"ts":326461773863,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":862810,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461773894,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":862810},
-{"pid":27443,"tid":27477,"ts":326461773924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":862841,"id":"0xaf88a5c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":862841,"id":"0xaf88a5c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":862871},
-{"pid":27443,"tid":27477,"ts":326461773955,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":862871},
-{"pid":27443,"tid":27477,"ts":326461773955,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":862871,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461773955,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":862871},
-{"pid":27443,"tid":27477,"ts":326461773985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":862902,"id":"0xaf88a5c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461773985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2045,"tdur":1740,"tts":862902},
-{"pid":27443,"tid":27477,"ts":326461774016,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1983,"tdur":1678,"tts":862933},
-{"pid":27443,"tid":27477,"ts":326461774016,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":862933},
-{"pid":27443,"tid":27477,"ts":326461774016,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":862933},
-{"pid":27443,"tid":27477,"ts":326461774046,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":122,"tts":862963},
-{"pid":27443,"tid":27477,"ts":326461774046,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":862963},
-{"pid":27443,"tid":27477,"ts":326461774199,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1800,"tdur":1495,"tts":863116},
-{"pid":27443,"tid":27477,"ts":326461774199,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1800,"tdur":1495,"tts":863116},
-{"pid":27443,"tid":27477,"ts":326461774199,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1770,"tdur":1465,"tts":863116},
-{"pid":27443,"tid":27477,"ts":326461774229,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":863146,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461774290,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":863207},
-{"pid":27443,"tid":27477,"ts":326461774321,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863238},
-{"pid":27443,"tid":27477,"ts":326461774351,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863268},
-{"pid":27443,"tid":27477,"ts":326461774351,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":863268},
-{"pid":27443,"tid":27477,"ts":326461774382,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":863299},
-{"pid":27443,"tid":27477,"ts":326461774412,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863329},
-{"pid":27443,"tid":27477,"ts":326461774412,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":863329},
-{"pid":27443,"tid":27477,"ts":326461774443,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863360},
-{"pid":27443,"tid":27477,"ts":326461774443,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":863390},
-{"pid":27443,"tid":27477,"ts":326461774504,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863421},
-{"pid":27443,"tid":27477,"ts":326461774504,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":122,"tdur":30,"tts":863421},
-{"pid":27443,"tid":27477,"ts":326461774504,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":863421},
-{"pid":27443,"tid":27477,"ts":326461774626,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":863482},
-{"pid":27443,"tid":27477,"ts":326461774718,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":213,"tdur":31,"tts":863512},
-{"pid":27443,"tid":27477,"ts":326461774718,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":863512},
-{"pid":27443,"tid":27477,"ts":326461774931,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863543},
-{"pid":27443,"tid":27477,"ts":326461774962,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863573},
-{"pid":27443,"tid":27477,"ts":326461774992,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863604},
-{"pid":27443,"tid":27477,"ts":326461774992,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":863604},
-{"pid":27443,"tid":27477,"ts":326461775023,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":863635},
-{"pid":27443,"tid":27477,"ts":326461775053,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":863665},
-{"pid":27443,"tid":27477,"ts":326461775084,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863696},
-{"pid":27443,"tid":27477,"ts":326461775114,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863726},
-{"pid":27443,"tid":27477,"ts":326461775145,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863757},
-{"pid":27443,"tid":27477,"ts":326461775145,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":863757},
-{"pid":27443,"tid":27477,"ts":326461775175,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863787},
-{"pid":27443,"tid":27477,"ts":326461775175,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":863787},
-{"pid":27443,"tid":27477,"ts":326461775206,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863818},
-{"pid":27443,"tid":27477,"ts":326461775236,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863848},
-{"pid":27443,"tid":27477,"ts":326461775236,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863848},
-{"pid":27443,"tid":27477,"ts":326461775267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863879},
-{"pid":27443,"tid":27477,"ts":326461775267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":863879},
-{"pid":27443,"tid":27477,"ts":326461775298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863909},
-{"pid":27443,"tid":27477,"ts":326461775298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":863909},
-{"pid":27443,"tid":27477,"ts":326461775359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":863970},
-{"pid":27443,"tid":27477,"ts":326461775359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":863970},
-{"pid":27443,"tid":27477,"ts":326461775389,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":864001},
-{"pid":27443,"tid":27477,"ts":326461775420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864031},
-{"pid":27443,"tid":27477,"ts":326461775420,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":864031},
-{"pid":27443,"tid":27477,"ts":326461775450,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864062},
-{"pid":27443,"tid":27477,"ts":326461775450,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":864062},
-{"pid":27443,"tid":27477,"ts":326461775481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":864092},
-{"pid":27443,"tid":27477,"ts":326461775511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":864123},
-{"pid":27443,"tid":27477,"ts":326461775542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864153},
-{"pid":27443,"tid":27477,"ts":326461775572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864184},
-{"pid":27443,"tid":27477,"ts":326461775572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":864184},
-{"pid":27443,"tid":27477,"ts":326461775664,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":864275},
-{"pid":27443,"tid":27477,"ts":326461775694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864306},
-{"pid":27443,"tid":27477,"ts":326461775694,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":864336},
-{"pid":27443,"tid":27477,"ts":326461775725,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":864336},
-{"pid":27443,"tid":27477,"ts":326461775755,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864367},
-{"pid":27443,"tid":27477,"ts":326461775786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":864398},
-{"pid":27443,"tid":27477,"ts":326461775786,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":864398},
-{"pid":27443,"tid":27477,"ts":326461775847,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":864489},
-{"pid":27443,"tid":27477,"ts":326461775908,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":864550},
-{"pid":27443,"tid":27477,"ts":326461775938,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":864550},
-{"pid":27443,"tid":27477,"ts":326461775938,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":864550},
-{"pid":27443,"tid":27477,"ts":326461776061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":864672,"id":"0xaf88a5c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461776061,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":864672},
-{"pid":27443,"tid":27477,"ts":326461776061,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":122,"tts":864703},
-{"pid":27443,"tid":27477,"ts":326461776091,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":864703},
-{"pid":27443,"tid":27477,"ts":326461776091,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":864703},
-{"pid":27443,"tid":27477,"ts":326461776122,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":864733},
-{"pid":27443,"tid":27477,"ts":326461776122,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":864733},
-{"pid":27443,"tid":27477,"ts":326461776183,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":864794},
-{"pid":27443,"tid":27477,"ts":326461776183,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":864825},
-{"pid":27443,"tid":27477,"ts":326461776213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":864855,"id":"0xaf88a5c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461776244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":864855},
-{"pid":27443,"tid":27477,"ts":326461776244,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":864855},
-{"pid":27443,"tid":27477,"ts":326461777892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":864947,"id":"0xaf88a5c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461777892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":864947},
-{"pid":27443,"tid":27477,"ts":326461777922,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":214,"tdur":214,"tts":864977},
-{"pid":27443,"tid":27477,"ts":326461777922,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":167},"tts":864977},
-{"pid":27443,"tid":27477,"ts":326461778014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":865069,"id":"0xaf88a698f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461778014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":865069,"id":"0xaf88a550f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461778044,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":865099},
-{"pid":27443,"tid":27477,"ts":326461778075,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":865130},
-{"pid":27443,"tid":27477,"ts":326461778075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":865130,"id":"0xaf88a5c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461778105,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":865161,"id":"0xaf88a699f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461778136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":865191,"id":"0xaf88a5c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461778136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3632,"tdur":1709,"tts":865222},
-{"pid":27443,"tid":27477,"ts":326461778166,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3602,"tdur":1709,"tts":865222},
-{"pid":27443,"tid":27477,"ts":326461778166,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":865222},
-{"pid":27443,"tid":27477,"ts":326461778197,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3571,"tdur":1679,"tts":865252},
-{"pid":27443,"tid":27477,"ts":326461778197,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":166},"dur":2564,"tdur":1068,"tts":865252},
-{"pid":27443,"tid":27477,"ts":326461778227,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":166},"dur":306,"tdur":274,"tts":865283},
-{"pid":27443,"tid":27477,"ts":326461778533,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":166},"dur":30,"tdur":30,"tts":865588},
-{"pid":27443,"tid":27477,"ts":326461778563,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":166},"tts":865618},
-{"pid":27443,"tid":27477,"ts":326461778563,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1526,"tdur":31,"tts":865618},
-{"pid":27443,"tid":27477,"ts":326461780333,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":865893},
-{"pid":27443,"tid":27477,"ts":326461780364,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":865924},
-{"pid":27443,"tid":27477,"ts":326461780364,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":865924},
-{"pid":27443,"tid":27477,"ts":326461780364,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":865924},
-{"pid":27443,"tid":27477,"ts":326461780394,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":865954,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461780486,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":866046},
-{"pid":27443,"tid":27477,"ts":326461780761,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":866320},
-{"pid":27443,"tid":27477,"ts":326461780791,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":672,"tdur":275,"tts":866351},
-{"pid":27443,"tid":27459,"ts":326461778411,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7965359},
-{"pid":27443,"tid":27459,"ts":326461781920,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7968869},
-{"pid":27443,"tid":27459,"ts":326461781981,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3205,"tdur":3083,"tts":7968960},
-{"pid":27443,"tid":27459,"ts":326461782043,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7968991},
-{"pid":27443,"tid":27459,"ts":326461782073,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7969021},
-{"pid":27443,"tid":27459,"ts":326461782073,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7969052},
-{"pid":27443,"tid":27459,"ts":326461782531,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7969510},
-{"pid":27443,"tid":27459,"ts":326461782561,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7969510},
-{"pid":27443,"tid":27459,"ts":326461782592,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2594,"tdur":2503,"tts":7969540},
-{"pid":27443,"tid":27459,"ts":326461782622,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2320,"tdur":2228,"tts":7969571},
-{"pid":27443,"tid":27459,"ts":326461782622,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":488,"tts":7969571},
-{"pid":27443,"tid":27459,"ts":326461783111,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":7970059},
-{"pid":27443,"tid":27459,"ts":326461783324,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":7970273},
-{"pid":27443,"tid":27459,"ts":326461783416,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":0,"tts":7970395},
-{"pid":27443,"tid":27459,"ts":326461783446,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1465,"tdur":1343,"tts":7970395},
-{"pid":27443,"tid":27459,"ts":326461784972,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":62,"tdur":30,"tts":7971860},
-{"pid":27443,"tid":27459,"ts":326461784972,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":0,"tts":7971860},
-{"pid":27443,"tid":27459,"ts":326461785064,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":91,"tts":7971921},
-{"pid":27443,"tid":27459,"ts":326461785186,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":167},"dur":458,"tdur":458,"tts":7972043},
-{"pid":27443,"tid":27459,"ts":326461785217,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":428,"tts":7972073},
-{"pid":27443,"tid":27459,"ts":326461785461,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":30,"tdur":30,"tts":7972318},
-{"pid":27443,"tid":27459,"ts":326461785491,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":31,"tdur":31,"tts":7972348},
-{"pid":27443,"tid":27459,"ts":326461785522,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":0,"tdur":0,"tts":7972379},
-{"pid":27443,"tid":27459,"ts":326461785522,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":30,"tdur":30,"tts":7972379},
-{"pid":27443,"tid":27459,"ts":326461785552,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":0,"tdur":0,"tts":7972409},
-{"pid":27443,"tid":27459,"ts":326461785552,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":31,"tdur":31,"tts":7972409},
-{"pid":27443,"tid":27459,"ts":326461785583,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":0,"tdur":0,"tts":7972440},
-{"pid":27443,"tid":27459,"ts":326461785613,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":0,"tdur":0,"tts":7972470},
-{"pid":27443,"tid":27459,"ts":326461785613,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":167},"dur":31,"tdur":31,"tts":7972470},
-{"pid":27443,"tid":27459,"ts":326461785644,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7972501,"id":"0x30000009e"},
-{"pid":27443,"tid":27459,"ts":326461785674,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":92,"tts":7972531},
-{"pid":27443,"tid":27459,"ts":326461785674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7972562,"id":"0xaf88a5dcf182217a"},
-{"pid":27443,"tid":27459,"ts":326461786071,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1052},"tts":7972684,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461786071,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7972684,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461786102,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7972714},
-{"pid":27443,"tid":27459,"ts":326461786163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7972775,"id":"0xaf88a551f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":397,"tdur":366,"tts":7972806},
-{"pid":27443,"tid":27459,"ts":326461786193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7972806,"id":"0xaf88a553f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7972836,"id":"0xaf88a964f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461786224,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":336,"tdur":336,"tts":7972836},
-{"pid":27443,"tid":27459,"ts":326461786224,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":336,"tdur":336,"tts":7972836},
-{"pid":27443,"tid":27459,"ts":326461786254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7972867,"id":"0xaf88a69bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461786285,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":16,"frame":"0x78c60000"}},"dur":244,"tdur":214,"tts":7972928},
-{"pid":27443,"tid":27459,"ts":326461786315,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":214,"tdur":214,"tts":7972928},
-{"pid":27443,"tid":27459,"ts":326461786407,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"69","scriptName":"undefined","scriptLine":22,"frame":"0x78c60000"}},"dur":122,"tdur":123,"tts":7973019},
-{"pid":27443,"tid":27459,"ts":326461786407,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7973019},
-{"pid":27443,"tid":27459,"ts":326461786498,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7973142},
-{"pid":27443,"tid":27459,"ts":326461786590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7973203,"id":"0xaf88a552f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7973203},
-{"pid":27443,"tid":27459,"ts":326461786621,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7973233,"id":"0xaf88a699f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461786621,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7973233},
-{"pid":27443,"tid":27459,"ts":326461786651,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7973264},
-{"pid":27443,"tid":27459,"ts":326461786712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7973325,"id":"0xaf88a553f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7973325},
-{"pid":27443,"tid":27459,"ts":326461786712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7973355,"id":"0xaf88a56cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786743,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7973355,"id":"0xaf88a69af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461786743,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7973355},
-{"pid":27443,"tid":27459,"ts":326461786743,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":30,"tdur":0,"tts":7973386},
-{"pid":27443,"tid":27459,"ts":326461786804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7973416,"id":"0xaf88a56cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":7973416},
-{"pid":27443,"tid":27459,"ts":326461786834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7973447,"id":"0xaf88a56df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461786834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7973447,"id":"0xaf88a6c6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461786865,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":7973477},
-{"pid":27443,"tid":27459,"ts":326461786865,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7973477,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27477,"ts":326461780791,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":866351},
-{"pid":27443,"tid":27477,"ts":326461780822,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":183,"tts":866381},
-{"pid":27443,"tid":27477,"ts":326461780913,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17106},"dur":0,"tdur":0,"tts":866473},
-{"pid":27443,"tid":27477,"ts":326461780944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":866503,"id":"0xaf88ab33f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461781463,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":866626,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461781493,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":866656,"id":"0x30000009d"},
-{"pid":27443,"tid":27477,"ts":326461781524,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":866687},
-{"pid":27443,"tid":27477,"ts":326461781615,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":866809,"id":"0xaf88abccf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461781707,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":866870,"id":"0xaf88a69af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461781737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":866900,"id":"0xaf88a552f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461785735,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":866992,"id":"0xaf88a5dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461785766,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1221,"tdur":1221,"tts":867022},
-{"pid":27443,"tid":27477,"ts":326461785766,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1221,"tdur":1221,"tts":867022},
-{"pid":27443,"tid":27477,"ts":326461785766,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":31,"tts":867022},
-{"pid":27443,"tid":27477,"ts":326461785797,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1190,"tdur":1190,"tts":867053},
-{"pid":27443,"tid":27477,"ts":326461785797,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1190,"tdur":1190,"tts":867053},
-{"pid":27443,"tid":27477,"ts":326461785797,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":867053},
-{"pid":27443,"tid":27477,"ts":326461785827,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":867083},
-{"pid":27443,"tid":27477,"ts":326461785827,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":867083,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461785858,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":867114},
-{"pid":27443,"tid":27477,"ts":326461785888,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":31,"tdur":31,"tts":867144},
-{"pid":27443,"tid":27477,"ts":326461786010,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":946,"tdur":947,"tts":867266},
-{"pid":27443,"tid":27477,"ts":326461786010,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":167},"dur":275,"tdur":275,"tts":867266},
-{"pid":27443,"tid":27477,"ts":326461786315,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":167},"dur":31,"tdur":30,"tts":867572},
-{"pid":27443,"tid":27477,"ts":326461786376,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":167},"tts":867633},
-{"pid":27443,"tid":27477,"ts":326461786590,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":867846},
-{"pid":27443,"tid":27477,"ts":326461786590,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":367,"tts":867846},
-{"pid":27443,"tid":27477,"ts":326461786621,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":867877},
-{"pid":27443,"tid":27477,"ts":326461786773,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":868029},
-{"pid":27443,"tid":27477,"ts":326461786804,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":868060},
-{"pid":27443,"tid":27477,"ts":326461786804,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":868060},
-{"pid":27443,"tid":27477,"ts":326461786804,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":868060},
-{"pid":27443,"tid":27477,"ts":326461786834,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":868090,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461786834,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":868090},
-{"pid":27443,"tid":27477,"ts":326461786865,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":868121},
-{"pid":27443,"tid":27477,"ts":326461786926,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":868182,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461786926,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":212}},"tts":868182,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461786956,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5726208},"tts":868213,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461787048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":868304,"id":"0xaf88a5ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326461787048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":868335},
-{"pid":27443,"tid":27477,"ts":326461787078,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":868335},
-{"pid":27443,"tid":27477,"ts":326461787078,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":868335,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461787109,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":0,"tts":868365},
-{"pid":27443,"tid":27477,"ts":326461787109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":868365,"id":"0xaf88a5d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461787139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461787},"tts":868396,"id":"0xaf88a5c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461787139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":868396},
-{"pid":27443,"tid":27477,"ts":326461787170,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":868426,"id":"0xaf88a5def182217a"},
-{"pid":27443,"tid":27477,"ts":326461787170,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":868426},
-{"pid":27443,"tid":27477,"ts":326461787170,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":868426},
-{"pid":27443,"tid":27477,"ts":326461787200,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":868457,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461787200,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":868457},
-{"pid":27443,"tid":27477,"ts":326461787200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":868487,"id":"0xaf88a5d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461787231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":868487,"id":"0xaf88a5dff182217a"},
-{"pid":27443,"tid":27477,"ts":326461787231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":30,"tts":868518},
-{"pid":27443,"tid":27477,"ts":326461787262,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":868518},
-{"pid":27443,"tid":27477,"ts":326461787262,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":868518,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461787262,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":868518},
-{"pid":27443,"tid":27477,"ts":326461787292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":868548,"id":"0xaf88a5d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461787292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1801,"tdur":1740,"tts":868548},
-{"pid":27443,"tid":27477,"ts":326461787323,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1770,"tdur":1709,"tts":868579},
-{"pid":27443,"tid":27477,"ts":326461787323,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":868579},
-{"pid":27443,"tid":27477,"ts":326461787323,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":868579},
-{"pid":27443,"tid":27477,"ts":326461787353,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":868609},
-{"pid":27443,"tid":27477,"ts":326461787353,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":868609},
-{"pid":27443,"tid":27459,"ts":326461786865,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":0.228},"dur":122,"tdur":122,"tts":7973477},
-{"pid":27443,"tid":27459,"ts":326461786895,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7973508},
-{"pid":27443,"tid":27459,"ts":326461786926,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7973538},
-{"pid":27443,"tid":27459,"ts":326461786956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7973569,"id":"0xaf88a694f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461786987,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7973599,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461787017,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7973630,"id":"0xaf88a56df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461787048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7973660},
-{"pid":27443,"tid":27459,"ts":326461789489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7973752,"id":"0xaf88a56ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461789489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1618,"tdur":1251,"tts":7973752},
-{"pid":27443,"tid":27459,"ts":326461789520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7973783,"id":"0xaf88a56ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461789520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7973783,"id":"0xaf88a695f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461789551,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1556,"tdur":1190,"tts":7973813},
-{"pid":27443,"tid":27459,"ts":326461789612,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1465,"tdur":1099,"tts":7973874},
-{"pid":27443,"tid":27459,"ts":326461789612,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7973874,"id":"0x30000009f"},
-{"pid":27443,"tid":27459,"ts":326461789642,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1374,"tdur":1007,"tts":7973905},
-{"pid":27443,"tid":27459,"ts":326461789673,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1312,"tdur":946,"tts":7973935},
-{"pid":27443,"tid":27459,"ts":326461789734,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7973996},
-{"pid":27443,"tid":27459,"ts":326461789764,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7974027},
-{"pid":27443,"tid":27459,"ts":326461789795,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7974057},
-{"pid":27443,"tid":27459,"ts":326461789825,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7974118},
-{"pid":27443,"tid":27459,"ts":326461789886,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7974149},
-{"pid":27443,"tid":27459,"ts":326461789917,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7974179},
-{"pid":27443,"tid":27459,"ts":326461789947,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7974210},
-{"pid":27443,"tid":27459,"ts":326461789978,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":1007,"tdur":580,"tts":7974301},
-{"pid":27443,"tid":27459,"ts":326461789978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":0,"tts":7974301},
-{"pid":27443,"tid":27459,"ts":326461790527,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":428,"tts":7974423},
-{"pid":27443,"tid":27459,"ts":326461790558,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7974454},
-{"pid":27443,"tid":27459,"ts":326461790832,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":128,"frame":"0x78c60000"}},"tts":7974729,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461790863,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":31,"tts":7974759},
-{"pid":27443,"tid":27459,"ts":326461790863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7974759,"id":"0xaf88a5d5f182217a"},
-{"pid":27443,"tid":27459,"ts":326461790924,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7974820},
-{"pid":27443,"tid":27459,"ts":326461791016,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7974912},
-{"pid":27443,"tid":27459,"ts":326461791046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7974942,"id":"0xaf88abcdf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461791138,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7975034,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461791138,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7975064,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461791199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7975095,"id":"0xaf88a56ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461791199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":7975095},
-{"pid":27443,"tid":27459,"ts":326461791565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7975186,"id":"0xaf88a568f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461791595,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10713,"tdur":9248,"tts":7975217},
-{"pid":27443,"tid":27459,"ts":326461791626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7975247,"id":"0xaf88a569f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461791656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7975278,"id":"0xaf88a696f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461791656,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10622,"tdur":9156,"tts":7975278},
-{"pid":27443,"tid":27459,"ts":326461791656,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":168},"tts":7975278},
-{"pid":27443,"tid":27459,"ts":326461791687,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":7975309},
-{"pid":27443,"tid":27459,"ts":326461791717,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":6166,"tdur":5189,"tts":7975339},
-{"pid":27443,"tid":27459,"ts":326461791748,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":7975370},
-{"pid":27443,"tid":27459,"ts":326461791779,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":128,"frame":"0x78c60000"}},"dur":6073,"tdur":5097,"tts":7975400},
-{"pid":27443,"tid":27459,"ts":326461791840,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":6012,"tdur":5005,"tts":7975492},
-{"pid":27443,"tid":27459,"ts":326461791870,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7975492},
-{"pid":27443,"tid":27459,"ts":326461792908,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7976529},
-{"pid":27443,"tid":27459,"ts":326461793060,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":7976682},
-{"pid":27443,"tid":27459,"ts":326461793152,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7976774},
-{"pid":27443,"tid":27459,"ts":326461793152,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7976804},
-{"pid":27443,"tid":27459,"ts":326461793305,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":7976957},
-{"pid":27443,"tid":27459,"ts":326461794342,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7977262},
-{"pid":27443,"tid":27459,"ts":326461794373,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7977292},
-{"pid":27443,"tid":27459,"ts":326461794586,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":7977537},
-{"pid":27443,"tid":27459,"ts":326461797791,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7980436},
-{"pid":27443,"tid":27459,"ts":326461797791,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":7980436},
-{"pid":27443,"tid":27459,"ts":326461797883,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3357,"tdur":3204,"tts":7980528},
-{"pid":27443,"tid":27459,"ts":326461797913,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7980589},
-{"pid":27443,"tid":27459,"ts":326461797944,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7980589},
-{"pid":27443,"tid":27459,"ts":326461797944,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7980619},
-{"pid":27443,"tid":27459,"ts":326461798371,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7981046},
-{"pid":27443,"tid":27477,"ts":326461787445,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1648,"tdur":1587,"tts":868701},
-{"pid":27443,"tid":27477,"ts":326461787475,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1618,"tdur":1526,"tts":868731},
-{"pid":27443,"tid":27477,"ts":326461787475,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1587,"tdur":1526,"tts":868731},
-{"pid":27443,"tid":27477,"ts":326461787506,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":868762,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461787597,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":868853},
-{"pid":27443,"tid":27477,"ts":326461787628,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":868884},
-{"pid":27443,"tid":27477,"ts":326461787658,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":868915},
-{"pid":27443,"tid":27477,"ts":326461787689,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":868945},
-{"pid":27443,"tid":27477,"ts":326461787719,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":868976},
-{"pid":27443,"tid":27477,"ts":326461787750,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869006},
-{"pid":27443,"tid":27477,"ts":326461787780,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869037},
-{"pid":27443,"tid":27477,"ts":326461787780,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":869037},
-{"pid":27443,"tid":27477,"ts":326461787841,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869098},
-{"pid":27443,"tid":27477,"ts":326461787872,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869128},
-{"pid":27443,"tid":27477,"ts":326461787902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869159},
-{"pid":27443,"tid":27477,"ts":326461787902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":869159},
-{"pid":27443,"tid":27477,"ts":326461787933,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869189},
-{"pid":27443,"tid":27477,"ts":326461787933,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":869189},
-{"pid":27443,"tid":27477,"ts":326461787963,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":869220},
-{"pid":27443,"tid":27477,"ts":326461787994,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869250},
-{"pid":27443,"tid":27477,"ts":326461787994,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":869250},
-{"pid":27443,"tid":27477,"ts":326461788025,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869281},
-{"pid":27443,"tid":27477,"ts":326461788025,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":869281},
-{"pid":27443,"tid":27477,"ts":326461788055,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869311},
-{"pid":27443,"tid":27477,"ts":326461788086,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869342},
-{"pid":27443,"tid":27477,"ts":326461788086,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":869342},
-{"pid":27443,"tid":27477,"ts":326461788116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":869372},
-{"pid":27443,"tid":27477,"ts":326461788177,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":869372},
-{"pid":27443,"tid":27477,"ts":326461788208,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":869403},
-{"pid":27443,"tid":27477,"ts":326461788238,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869433},
-{"pid":27443,"tid":27477,"ts":326461788269,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869464},
-{"pid":27443,"tid":27477,"ts":326461788269,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":869464},
-{"pid":27443,"tid":27477,"ts":326461788299,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":869494},
-{"pid":27443,"tid":27477,"ts":326461788330,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869525},
-{"pid":27443,"tid":27477,"ts":326461788360,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869555},
-{"pid":27443,"tid":27477,"ts":326461788391,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869586},
-{"pid":27443,"tid":27477,"ts":326461788391,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":869617},
-{"pid":27443,"tid":27477,"ts":326461788421,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":869617},
-{"pid":27443,"tid":27477,"ts":326461788452,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":869647},
-{"pid":27443,"tid":27477,"ts":326461788482,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":869678},
-{"pid":27443,"tid":27477,"ts":326461788513,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":869708},
-{"pid":27443,"tid":27477,"ts":326461788543,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":869739},
-{"pid":27443,"tid":27477,"ts":326461788574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869769},
-{"pid":27443,"tid":27477,"ts":326461788574,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":869800},
-{"pid":27443,"tid":27477,"ts":326461788604,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":869800},
-{"pid":27443,"tid":27477,"ts":326461788635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869830},
-{"pid":27443,"tid":27477,"ts":326461788635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":869830},
-{"pid":27443,"tid":27477,"ts":326461788665,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869861},
-{"pid":27443,"tid":27477,"ts":326461788726,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":869952},
-{"pid":27443,"tid":27477,"ts":326461788757,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":869952},
-{"pid":27443,"tid":27477,"ts":326461788788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":869983},
-{"pid":27443,"tid":27477,"ts":326461788818,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":870013},
-{"pid":27443,"tid":27477,"ts":326461788849,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":870044},
-{"pid":27443,"tid":27477,"ts":326461788879,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":870074},
-{"pid":27443,"tid":27477,"ts":326461788910,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":870105},
-{"pid":27443,"tid":27477,"ts":326461788940,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":870135},
-{"pid":27443,"tid":27477,"ts":326461789001,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":870196},
-{"pid":27443,"tid":27477,"ts":326461789032,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":870227},
-{"pid":27443,"tid":27477,"ts":326461789032,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":870227},
-{"pid":27443,"tid":27477,"ts":326461789093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":870288,"id":"0xaf88a5d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461789123,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":870318},
-{"pid":27443,"tid":27477,"ts":326461789123,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":122,"tts":870349},
-{"pid":27443,"tid":27477,"ts":326461789154,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":870349},
-{"pid":27443,"tid":27477,"ts":326461789154,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":870349},
-{"pid":27443,"tid":27477,"ts":326461789184,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":870380},
-{"pid":27443,"tid":27477,"ts":326461789184,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":870380},
-{"pid":27443,"tid":27477,"ts":326461789245,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":870441},
-{"pid":27443,"tid":27477,"ts":326461789276,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":870471},
-{"pid":27443,"tid":27477,"ts":326461789306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":870502,"id":"0xaf88a5daf182217a"},
-{"pid":27443,"tid":27477,"ts":326461789306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":870502},
-{"pid":27443,"tid":27477,"ts":326461789306,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":152,"tts":870502},
-{"pid":27443,"tid":27477,"ts":326461789337,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":870532,"id":"0x30000009f"},
-{"pid":27443,"tid":27477,"ts":326461789337,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":0,"tts":870563},
-{"pid":27443,"tid":27477,"ts":326461789367,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":870563,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461789398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":870593,"id":"0xaf88a695f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461789428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":870624,"id":"0xaf88a56ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461789489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":870685,"id":"0xaf88a5dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461789489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":870685},
-{"pid":27443,"tid":27477,"ts":326461789520,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461789004.0,"frame_time_us":326461787109.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":870715},
-{"pid":27443,"tid":27477,"ts":326461789520,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461789004.0,"frame_time_us":326461787109.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":61,"tts":870746},
-{"pid":27443,"tid":27477,"ts":326461789581,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":870776},
-{"pid":27443,"tid":27477,"ts":326461789612,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461803775},"dur":0,"tdur":0,"tts":870807},
-{"pid":27443,"tid":27477,"ts":326461789612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":870807,"id":"0xaf88a5d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461790924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":870898,"id":"0xaf88a5d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461790954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":870929},
-{"pid":27443,"tid":27477,"ts":326461790954,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":870929},
-{"pid":27443,"tid":27477,"ts":326461791168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":871020,"id":"0xaf88a5d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461791168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":245,"tts":871020},
-{"pid":27443,"tid":27477,"ts":326461791199,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":427,"tdur":214,"tts":871051},
-{"pid":27443,"tid":27477,"ts":326461791199,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":0,"tts":871051},
-{"pid":27443,"tid":27477,"ts":326461791412,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":168},"tts":871051},
-{"pid":27443,"tid":27477,"ts":326461791504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":871143,"id":"0xaf88a696f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461791504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":871173,"id":"0xaf88a568f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461791565,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":871204},
-{"pid":27443,"tid":27477,"ts":326461791565,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":871204},
-{"pid":27443,"tid":27477,"ts":326461791565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":871204,"id":"0xaf88a5d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461791595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":871234,"id":"0xaf88a697f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461791626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":871265,"id":"0xaf88a5d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461791656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1984,"tdur":1648,"tts":871295},
-{"pid":27443,"tid":27477,"ts":326461791656,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1984,"tdur":1648,"tts":871295},
-{"pid":27443,"tid":27477,"ts":326461791656,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1954,"tdur":1618,"tts":871295},
-{"pid":27443,"tid":27477,"ts":326461791687,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":167},"dur":1007,"tdur":976,"tts":871326},
-{"pid":27443,"tid":27477,"ts":326461791717,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":167},"dur":306,"tdur":305,"tts":871356},
-{"pid":27443,"tid":27477,"ts":326461792023,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":167},"dur":30,"tdur":31,"tts":871661},
-{"pid":27443,"tid":27477,"ts":326461792053,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":167},"tts":871722},
-{"pid":27443,"tid":27477,"ts":326461792297,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":871936},
-{"pid":27443,"tid":27477,"ts":326461792297,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":871936},
-{"pid":27443,"tid":27477,"ts":326461792328,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":871967},
-{"pid":27443,"tid":27477,"ts":326461792328,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":871967},
-{"pid":27443,"tid":27477,"ts":326461792358,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":871997,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461792419,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":872058},
-{"pid":27443,"tid":27477,"ts":326461792664,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":872302},
-{"pid":27443,"tid":27477,"ts":326461792694,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":641,"tdur":305,"tts":872333},
-{"pid":27443,"tid":27477,"ts":326461792694,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":872333},
-{"pid":27443,"tid":27477,"ts":326461792725,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":549,"tdur":214,"tts":872363},
-{"pid":27443,"tid":27477,"ts":326461792786,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17110},"dur":61,"tdur":61,"tts":872424},
-{"pid":27443,"tid":27477,"ts":326461792816,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":872455,"id":"0xaf88abcef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461792877,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":872516,"id":"0xaf88abcff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461793305,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":872607,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461793335,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":872638,"id":"0x30000009e"},
-{"pid":27443,"tid":27477,"ts":326461793366,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":872669},
-{"pid":27443,"tid":27477,"ts":326461793518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":872821,"id":"0xaf88abc8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461793579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":872882,"id":"0xaf88a690f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461793579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":872882,"id":"0xaf88a56af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461801850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":873035,"id":"0xaf88a5d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461801850,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1587,"tdur":1587,"tts":873035},
-{"pid":27443,"tid":27477,"ts":326461801881,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1526,"tdur":1526,"tts":873065},
-{"pid":27443,"tid":27477,"ts":326461801881,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":873065},
-{"pid":27443,"tid":27459,"ts":326461798401,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7981077},
-{"pid":27443,"tid":27459,"ts":326461798462,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2778,"tdur":2595,"tts":7981107},
-{"pid":27443,"tid":27459,"ts":326461798493,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2564,"tdur":2411,"tts":7981138},
-{"pid":27443,"tid":27459,"ts":326461798493,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":519,"tdur":519,"tts":7981138},
-{"pid":27443,"tid":27459,"ts":326461799012,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":213,"tts":7981657},
-{"pid":27443,"tid":27459,"ts":326461799225,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7981870},
-{"pid":27443,"tid":27459,"ts":326461799317,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":7981962},
-{"pid":27443,"tid":27459,"ts":326461799348,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1678,"tdur":1527,"tts":7981992},
-{"pid":27443,"tid":27459,"ts":326461801057,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7983549},
-{"pid":27443,"tid":27459,"ts":326461801087,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":7983580},
-{"pid":27443,"tid":27459,"ts":326461801240,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":168},"dur":488,"tdur":488,"tts":7983732},
-{"pid":27443,"tid":27459,"ts":326461801240,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":488,"tdur":457,"tts":7983763},
-{"pid":27443,"tid":27459,"ts":326461801515,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":30,"tdur":30,"tts":7984007},
-{"pid":27443,"tid":27459,"ts":326461801545,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":31,"tdur":0,"tts":7984068},
-{"pid":27443,"tid":27459,"ts":326461801576,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":30,"tdur":30,"tts":7984068},
-{"pid":27443,"tid":27459,"ts":326461801606,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":0,"tdur":0,"tts":7984098},
-{"pid":27443,"tid":27459,"ts":326461801606,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":31,"tdur":0,"tts":7984129},
-{"pid":27443,"tid":27459,"ts":326461801637,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":30,"tdur":30,"tts":7984129},
-{"pid":27443,"tid":27459,"ts":326461801667,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":0,"tdur":0,"tts":7984159},
-{"pid":27443,"tid":27459,"ts":326461801667,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":31,"tdur":31,"tts":7984159},
-{"pid":27443,"tid":27459,"ts":326461801698,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":168},"dur":30,"tdur":0,"tts":7984190},
-{"pid":27443,"tid":27459,"ts":326461801728,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7984220,"id":"0x30000009f"},
-{"pid":27443,"tid":27459,"ts":326461801759,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":427,"tdur":92,"tts":7984251},
-{"pid":27443,"tid":27459,"ts":326461801759,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7984282,"id":"0xaf88a5d0f182217a"},
-{"pid":27443,"tid":27459,"ts":326461802247,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1559},"tts":7984404,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461802247,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7984404,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461802278,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7984434},
-{"pid":27443,"tid":27459,"ts":326461802339,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7984495,"id":"0xaf88a569f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461802369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7984526},
-{"pid":27443,"tid":27459,"ts":326461802369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7984526,"id":"0xaf88a56bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461802400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7984556,"id":"0xaf88a697f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461802400,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":7984556},
-{"pid":27443,"tid":27459,"ts":326461802400,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":7984556},
-{"pid":27443,"tid":27459,"ts":326461802461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7984617,"id":"0xaf88a56af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461802491,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7984648},
-{"pid":27443,"tid":27459,"ts":326461802491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7984648,"id":"0xaf88a690f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461802522,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":31,"tts":7984678},
-{"pid":27443,"tid":27459,"ts":326461802522,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7984678},
-{"pid":27443,"tid":27459,"ts":326461802583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7984739,"id":"0xaf88a56bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461802583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":7984739},
-{"pid":27443,"tid":27459,"ts":326461802613,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7984770,"id":"0xaf88a564f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461802613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7984770,"id":"0xaf88a694f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461802613,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":152,"tts":7984770},
-{"pid":27443,"tid":27459,"ts":326461802644,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7984800,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461802644,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.131},"dur":122,"tdur":122,"tts":7984800},
-{"pid":27443,"tid":27459,"ts":326461802674,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7984831},
-{"pid":27443,"tid":27459,"ts":326461802705,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7984861},
-{"pid":27443,"tid":27459,"ts":326461802735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7984892,"id":"0xaf88a691f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461802766,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7984922,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461802796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7984953,"id":"0xaf88a564f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461802827,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7984983},
-{"pid":27443,"tid":27459,"ts":326461806886,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7985045,"id":"0xaf88a565f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461806886,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":7985045},
-{"pid":27443,"tid":27459,"ts":326461806917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7985075,"id":"0xaf88a566f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461806947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7985106,"id":"0xaf88a692f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461806947,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1129,"tdur":1098,"tts":7985106},
-{"pid":27443,"tid":27459,"ts":326461807008,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1038,"tdur":1037,"tts":7985167},
-{"pid":27443,"tid":27459,"ts":326461807008,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7985167,"id":"0x3000000a0"},
-{"pid":27443,"tid":27459,"ts":326461807039,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":946,"tts":7985197},
-{"pid":27443,"tid":27459,"ts":326461807069,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":7985228},
-{"pid":27443,"tid":27459,"ts":326461807130,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7985289},
-{"pid":27443,"tid":27459,"ts":326461807161,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7985350},
-{"pid":27443,"tid":27459,"ts":326461807191,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":7985380},
-{"pid":27443,"tid":27459,"ts":326461807222,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7985380},
-{"pid":27443,"tid":27477,"ts":326461801911,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1496,"tdur":1495,"tts":873096},
-{"pid":27443,"tid":27477,"ts":326461801911,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1496,"tdur":1495,"tts":873096},
-{"pid":27443,"tid":27477,"ts":326461801942,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":873126},
-{"pid":27443,"tid":27477,"ts":326461801942,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":873126},
-{"pid":27443,"tid":27477,"ts":326461801972,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":873157,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461801972,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":873157},
-{"pid":27443,"tid":27477,"ts":326461802003,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":91,"tdur":92,"tts":873187},
-{"pid":27443,"tid":27477,"ts":326461802155,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1221,"tdur":1221,"tts":873340},
-{"pid":27443,"tid":27477,"ts":326461802186,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":168},"dur":366,"tdur":366,"tts":873371},
-{"pid":27443,"tid":27477,"ts":326461802552,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":168},"dur":61,"tdur":61,"tts":873737},
-{"pid":27443,"tid":27477,"ts":326461802644,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":168},"tts":873828},
-{"pid":27443,"tid":27477,"ts":326461802949,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":874134},
-{"pid":27443,"tid":27477,"ts":326461802949,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":874134},
-{"pid":27443,"tid":27477,"ts":326461802979,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":184,"tdur":183,"tts":874164},
-{"pid":27443,"tid":27477,"ts":326461803163,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":874347},
-{"pid":27443,"tid":27477,"ts":326461803193,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":874378},
-{"pid":27443,"tid":27477,"ts":326461803193,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":874378},
-{"pid":27443,"tid":27477,"ts":326461803193,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":152,"tts":874378},
-{"pid":27443,"tid":27477,"ts":326461803224,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":874408,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461803224,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":874439},
-{"pid":27443,"tid":27477,"ts":326461803254,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":874439},
-{"pid":27443,"tid":27477,"ts":326461803315,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":874500,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461803346,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":212}},"tts":874530,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461803376,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5726208},"tts":874561,"id":"0xaf88ae4cff39fc5a"},{"pid":27443,"tid":27477,"ts":326461803437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":874622,"id":"0xaf88a5d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461803437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":874622},
-{"pid":27443,"tid":27477,"ts":326461803468,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":874652},
-{"pid":27443,"tid":27477,"ts":326461803498,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":874683,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461803498,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":874683},
-{"pid":27443,"tid":27477,"ts":326461803529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":874713,"id":"0xaf88a5ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326461803559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":874744,"id":"0xaf88a5d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461803559,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":874744},
-{"pid":27443,"tid":27477,"ts":326461803559,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":874744},
-{"pid":27443,"tid":27477,"ts":326461803590,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":874774,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461803590,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":874774},
-{"pid":27443,"tid":27477,"ts":326461803620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":874805,"id":"0xaf88a5edf182217a"},
-{"pid":27443,"tid":27477,"ts":326461803651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":874835,"id":"0xaf88a5d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461803651,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":874835},
-{"pid":27443,"tid":27477,"ts":326461803651,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":31,"tts":874835},
-{"pid":27443,"tid":27477,"ts":326461803681,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":874866,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461803681,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":874866},
-{"pid":27443,"tid":27477,"ts":326461803712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":874897,"id":"0xaf88a5ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326461803712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2686,"tdur":2105,"tts":874897},
-{"pid":27443,"tid":27477,"ts":326461803743,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2655,"tdur":2045,"tts":874927},
-{"pid":27443,"tid":27477,"ts":326461803743,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":874927},
-{"pid":27443,"tid":27477,"ts":326461803743,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":874927},
-{"pid":27443,"tid":27477,"ts":326461803773,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":874958},
-{"pid":27443,"tid":27477,"ts":326461803773,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":874958},
-{"pid":27443,"tid":27477,"ts":326461803895,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2472,"tdur":1892,"tts":875080},
-{"pid":27443,"tid":27477,"ts":326461803956,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2411,"tdur":1831,"tts":875141},
-{"pid":27443,"tid":27477,"ts":326461803956,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2411,"tdur":1831,"tts":875141},
-{"pid":27443,"tid":27477,"ts":326461803956,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":875141,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461804078,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":875263},
-{"pid":27443,"tid":27477,"ts":326461804139,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875293},
-{"pid":27443,"tid":27477,"ts":326461804170,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":875324},
-{"pid":27443,"tid":27477,"ts":326461804200,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875354},
-{"pid":27443,"tid":27477,"ts":326461804231,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":875385},
-{"pid":27443,"tid":27477,"ts":326461804261,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875415},
-{"pid":27443,"tid":27477,"ts":326461804292,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":875476},
-{"pid":27443,"tid":27477,"ts":326461804322,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875476},
-{"pid":27443,"tid":27477,"ts":326461804383,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":875537},
-{"pid":27443,"tid":27477,"ts":326461804383,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875537},
-{"pid":27443,"tid":27477,"ts":326461804444,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":875598},
-{"pid":27443,"tid":27477,"ts":326461804475,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":875629},
-{"pid":27443,"tid":27477,"ts":326461804506,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":875660},
-{"pid":27443,"tid":27477,"ts":326461804536,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875690},
-{"pid":27443,"tid":27477,"ts":326461804567,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":875721},
-{"pid":27443,"tid":27477,"ts":326461804597,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875751},
-{"pid":27443,"tid":27477,"ts":326461804628,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":875812},
-{"pid":27443,"tid":27477,"ts":326461804658,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":875843},
-{"pid":27443,"tid":27477,"ts":326461804719,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":875873},
-{"pid":27443,"tid":27477,"ts":326461804719,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875873},
-{"pid":27443,"tid":27477,"ts":326461804750,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":875904},
-{"pid":27443,"tid":27477,"ts":326461804780,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":875934},
-{"pid":27443,"tid":27477,"ts":326461804811,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":875965},
-{"pid":27443,"tid":27477,"ts":326461804811,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":875965},
-{"pid":27443,"tid":27477,"ts":326461804841,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":875995},
-{"pid":27443,"tid":27477,"ts":326461804872,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876026},
-{"pid":27443,"tid":27477,"ts":326461804902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876056},
-{"pid":27443,"tid":27477,"ts":326461804902,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":876056},
-{"pid":27443,"tid":27477,"ts":326461804933,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":876087},
-{"pid":27443,"tid":27477,"ts":326461804963,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":876117},
-{"pid":27443,"tid":27477,"ts":326461805024,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876148},
-{"pid":27443,"tid":27477,"ts":326461805055,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":876178},
-{"pid":27443,"tid":27477,"ts":326461805085,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":876239},
-{"pid":27443,"tid":27477,"ts":326461805116,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":876239},
-{"pid":27443,"tid":27477,"ts":326461805146,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":876270},
-{"pid":27443,"tid":27477,"ts":326461805177,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":876300},
-{"pid":27443,"tid":27477,"ts":326461805207,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":397,"tdur":31,"tts":876331},
-{"pid":27443,"tid":27477,"ts":326461805207,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":367,"tdur":0,"tts":876331},
-{"pid":27443,"tid":27477,"ts":326461805604,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":876362},
-{"pid":27443,"tid":27477,"ts":326461805635,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":876392},
-{"pid":27443,"tid":27477,"ts":326461805665,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":876423},
-{"pid":27443,"tid":27477,"ts":326461805696,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":876453},
-{"pid":27443,"tid":27477,"ts":326461805726,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":876484},
-{"pid":27443,"tid":27477,"ts":326461805757,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":876514},
-{"pid":27443,"tid":27477,"ts":326461805787,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":92,"tdur":30,"tts":876545},
-{"pid":27443,"tid":27477,"ts":326461805787,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":876545},
-{"pid":27443,"tid":27477,"ts":326461805970,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876667},
-{"pid":27443,"tid":27477,"ts":326461805970,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":876697},
-{"pid":27443,"tid":27477,"ts":326461806001,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":876697},
-{"pid":27443,"tid":27477,"ts":326461806032,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876728},
-{"pid":27443,"tid":27477,"ts":326461806062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876758},
-{"pid":27443,"tid":27477,"ts":326461806062,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":876758},
-{"pid":27443,"tid":27477,"ts":326461806093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":876789},
-{"pid":27443,"tid":27477,"ts":326461806123,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":876819},
-{"pid":27443,"tid":27477,"ts":326461806184,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":876880},
-{"pid":27443,"tid":27477,"ts":326461806184,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":122,"tdur":31,"tts":876880},
-{"pid":27443,"tid":27477,"ts":326461806184,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":31,"tts":876880},
-{"pid":27443,"tid":27477,"ts":326461806337,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":876941},
-{"pid":27443,"tid":27477,"ts":326461806398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461803},"tts":877002,"id":"0xaf88a5d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461806428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":877033},
-{"pid":27443,"tid":27477,"ts":326461806428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":877033,"id":"0xaf88a5edf182217a"},
-{"pid":27443,"tid":27477,"ts":326461806459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":153,"tts":877063},
-{"pid":27443,"tid":27477,"ts":326461806459,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":153,"tts":877063},
-{"pid":27443,"tid":27477,"ts":326461806459,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":877063},
-{"pid":27443,"tid":27477,"ts":326461806489,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":877094},
-{"pid":27443,"tid":27477,"ts":326461806489,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":92,"tts":877094},
-{"pid":27443,"tid":27477,"ts":326461806520,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":877125},
-{"pid":27443,"tid":27477,"ts":326461806581,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":877186},
-{"pid":27443,"tid":27477,"ts":326461806611,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":877216},
-{"pid":27443,"tid":27477,"ts":326461806642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":877247,"id":"0xaf88a5eef182217a"},
-{"pid":27443,"tid":27477,"ts":326461806642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":877247},
-{"pid":27443,"tid":27477,"ts":326461806672,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":877277},
-{"pid":27443,"tid":27477,"ts":326461806672,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":877277,"id":"0x3000000a0"},
-{"pid":27443,"tid":27477,"ts":326461806703,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":877308},
-{"pid":27443,"tid":27477,"ts":326461806734,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":877338,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461806764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":877369,"id":"0xaf88a692f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461806428,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":30,"tts":411048},
-{"pid":27443,"tid":27466,"ts":326461806489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":411078,"id":"0xaf88a5eef182217a"},
-{"pid":27443,"tid":27466,"ts":326461806795,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":411139},
-{"pid":27443,"tid":27466,"ts":326461806825,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":411170},
-{"pid":27443,"tid":27466,"ts":326461806825,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":411170,"id":"0xba469302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461806856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":411200,"id":"0xaf88a5eff182217a"},
-{"pid":27443,"tid":27466,"ts":326461807924,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":411292},
-{"pid":27443,"tid":27466,"ts":326461807954,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":411323},
-{"pid":27443,"tid":27466,"ts":326461807954,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":411323,"id":"0xba469402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461807985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":411353,"id":"0xaf88a5eaf182217a"},
-{"pid":27443,"tid":27466,"ts":326461808046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":411414,"id":"0xaf88abc9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461808046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":411414},
-{"pid":27443,"tid":27466,"ts":326461808046,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":411414,"id":"0xccc5f002"},
-{"pid":27443,"tid":27466,"ts":326461809541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":411567,"id":"0xaf88abcaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461809572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":411597},
-{"pid":27443,"tid":27466,"ts":326461809572,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":411597,"id":"0xccc5f106"},
-{"pid":27443,"tid":27466,"ts":326461809724,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":411689},
-{"pid":27443,"tid":27466,"ts":326461809755,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":411719},
-{"pid":27443,"tid":27466,"ts":326461809786,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":411750,"id":"0xc4c2150a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461810121,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":411811,"id":"0xaf88abcbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461810152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":411841},
-{"pid":27443,"tid":27466,"ts":326461810152,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":411841,"id":"0xccc5f202"},
-{"pid":27443,"tid":27466,"ts":326461822024,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":411963},
-{"pid":27443,"tid":27466,"ts":326461822055,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":411994},
-{"pid":27443,"tid":27466,"ts":326461822055,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412024,"id":"0xba469602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461822116,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":30,"tdur":31,"tts":412055},
-{"pid":27443,"tid":27466,"ts":326461822116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":412055,"id":"0xaf88a5e2f182217a"},
-{"pid":27443,"tid":27466,"ts":326461822604,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":412208},
-{"pid":27443,"tid":27466,"ts":326461822604,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":412238},
-{"pid":27443,"tid":27466,"ts":326461822635,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412238,"id":"0xba469702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461822665,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":412269,"id":"0xaf88a5e3f182217a"},
-{"pid":27443,"tid":27466,"ts":326461823794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":412360,"id":"0xaf88abc4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461823825,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":412391},
-{"pid":27443,"tid":27466,"ts":326461823825,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412391,"id":"0xccc5f402"},
-{"pid":27443,"tid":27466,"ts":326461824557,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":412482},
-{"pid":27443,"tid":27466,"ts":326461824588,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":412513},
-{"pid":27443,"tid":27466,"ts":326461824618,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412543,"id":"0xba469a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461824618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":412543,"id":"0xaf88a5fef182217a"},
-{"pid":27443,"tid":27466,"ts":326461828617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":412696,"id":"0xaf88abc5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461828617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":412696},
-{"pid":27443,"tid":27466,"ts":326461828617,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412696,"id":"0xccc5f502"},
-{"pid":27443,"tid":27466,"ts":326461828678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":412757,"id":"0xaf88abc6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461828708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":412787},
-{"pid":27443,"tid":27466,"ts":326461828708,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412787,"id":"0xccc5f606"},
-{"pid":27443,"tid":27466,"ts":326461829013,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":122,"tdur":91,"tts":412849},
-{"pid":27443,"tid":27466,"ts":326461829044,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":412879},
-{"pid":27443,"tid":27466,"ts":326461829044,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":412879,"id":"0xc4c21a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461829410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413001,"id":"0xaf88abc7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461829410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":413001},
-{"pid":27443,"tid":27466,"ts":326461829410,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413001,"id":"0xccc5f702"},
-{"pid":27443,"tid":27466,"ts":326461841008,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":152,"tts":413154},
-{"pid":27443,"tid":27466,"ts":326461841069,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":413184},
-{"pid":27443,"tid":27466,"ts":326461841069,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413184,"id":"0xba469c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461841099,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":413215},
-{"pid":27443,"tid":27466,"ts":326461841130,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":413245,"id":"0xaf88a5f6f182217a"},
-{"pid":27443,"tid":27466,"ts":326461841435,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":413337},
-{"pid":27443,"tid":27466,"ts":326461841466,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":413367},
-{"pid":27443,"tid":27466,"ts":326461841466,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413367,"id":"0xba469d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461841496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":413398,"id":"0xaf88a5f7f182217a"},
-{"pid":27443,"tid":27466,"ts":326461842381,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":92,"tts":413520},
-{"pid":27443,"tid":27466,"ts":326461842412,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":31,"tts":413550},
-{"pid":27443,"tid":27466,"ts":326461842442,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413550,"id":"0xba469e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461842473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":413581,"id":"0xaf88a5f2f182217a"},
-{"pid":27443,"tid":27466,"ts":326461842625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413673,"id":"0xaf88abc0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461806764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":877399,"id":"0xaf88a565f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461806886,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":877521,"id":"0xaf88a5eff182217a"},
-{"pid":27443,"tid":27477,"ts":326461806917,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":877521},
-{"pid":27443,"tid":27477,"ts":326461806947,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461805685.0,"frame_time_us":326461803790.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":877552},
-{"pid":27443,"tid":27477,"ts":326461806947,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461805685.0,"frame_time_us":326461803790.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":91,"tts":877552},
-{"pid":27443,"tid":27477,"ts":326461807008,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":877613},
-{"pid":27443,"tid":27477,"ts":326461807039,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461820456},"dur":0,"tdur":0,"tts":877643},
-{"pid":27443,"tid":27477,"ts":326461807039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":877643,"id":"0xaf88a5e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461807924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":877765,"id":"0xaf88a5e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461807924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":877765},
-{"pid":27443,"tid":27477,"ts":326461807924,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":31,"tts":877765},
-{"pid":27443,"tid":27477,"ts":326461808015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":877888,"id":"0xaf88a5eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326461808046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":877888},
-{"pid":27443,"tid":27477,"ts":326461808076,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":214,"tdur":214,"tts":877918},
-{"pid":27443,"tid":27477,"ts":326461808076,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":169},"tts":877918},
-{"pid":27443,"tid":27477,"ts":326461808168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":878010,"id":"0xaf88a693f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461808168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":878010,"id":"0xaf88a567f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461808198,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":878040},
-{"pid":27443,"tid":27477,"ts":326461808229,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":878071},
-{"pid":27443,"tid":27477,"ts":326461808229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":878071,"id":"0xaf88a5ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326461808260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":878101,"id":"0xaf88a6acf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461808260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":878101,"id":"0xaf88a561f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461808290,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":878132,"id":"0xaf88a5ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326461808321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1861,"tdur":1587,"tts":878162},
-{"pid":27443,"tid":27477,"ts":326461808321,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1861,"tdur":1587,"tts":878162},
-{"pid":27443,"tid":27477,"ts":326461808351,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1831,"tdur":1526,"tts":878193},
-{"pid":27443,"tid":27477,"ts":326461808351,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":168},"dur":977,"tdur":976,"tts":878193},
-{"pid":27443,"tid":27477,"ts":326461808382,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":168},"dur":305,"tdur":305,"tts":878223},
-{"pid":27443,"tid":27477,"ts":326461808687,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":168},"dur":30,"tdur":31,"tts":878528},
-{"pid":27443,"tid":27477,"ts":326461808717,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":168},"tts":878559},
-{"pid":27443,"tid":27477,"ts":326461808961,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":878803},
-{"pid":27443,"tid":27477,"ts":326461808961,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":62,"tdur":61,"tts":878803},
-{"pid":27443,"tid":27477,"ts":326461808992,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":878834},
-{"pid":27443,"tid":27477,"ts":326461808992,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":878834},
-{"pid":27443,"tid":27477,"ts":326461809023,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":878864,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461809114,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":878956},
-{"pid":27443,"tid":27477,"ts":326461809328,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":879169},
-{"pid":27443,"tid":27477,"ts":326461809358,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":519,"tdur":244,"tts":879200},
-{"pid":27443,"tid":27477,"ts":326461809358,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":879200},
-{"pid":27443,"tid":27477,"ts":326461809358,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":458,"tdur":153,"tts":879230},
-{"pid":27443,"tid":27477,"ts":326461809450,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17110},"dur":0,"tdur":0,"tts":879291},
-{"pid":27443,"tid":27477,"ts":326461809480,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":879322,"id":"0xaf88abcaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461809877,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":879444,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461809908,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":879475,"id":"0x30000009f"},
-{"pid":27443,"tid":27477,"ts":326461809908,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":213,"tts":879475},
-{"pid":27443,"tid":27477,"ts":326461810060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":879627,"id":"0xaf88abcbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461810152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":879719,"id":"0xaf88a6aef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461816103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":879810,"id":"0xaf88a5e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461816134,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1251,"tdur":1251,"tts":879841},
-{"pid":27443,"tid":27477,"ts":326461816134,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1251,"tdur":1251,"tts":879841},
-{"pid":27443,"tid":27477,"ts":326461816134,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":879841},
-{"pid":27443,"tid":27477,"ts":326461816164,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1221,"tdur":1221,"tts":879871},
-{"pid":27443,"tid":27477,"ts":326461816164,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1221,"tdur":1221,"tts":879871},
-{"pid":27443,"tid":27477,"ts":326461816164,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":879871},
-{"pid":27443,"tid":27477,"ts":326461816195,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":879902},
-{"pid":27443,"tid":27477,"ts":326461816195,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":879902,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461816225,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":879932},
-{"pid":27443,"tid":27477,"ts":326461816256,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":879963},
-{"pid":27443,"tid":27477,"ts":326461816378,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":977,"tdur":977,"tts":880085},
-{"pid":27443,"tid":27477,"ts":326461816378,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":169},"dur":305,"tdur":305,"tts":880085},
-{"pid":27443,"tid":27477,"ts":326461816683,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":169},"dur":31,"tdur":31,"tts":880390},
-{"pid":27443,"tid":27477,"ts":326461816744,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":169},"tts":880451},
-{"pid":27443,"tid":27477,"ts":326461816958,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":880695},
-{"pid":27443,"tid":27477,"ts":326461816988,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":367,"tdur":367,"tts":880695},
-{"pid":27443,"tid":27459,"ts":326461807252,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7985411},
-{"pid":27443,"tid":27459,"ts":326461807283,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":7985441},
-{"pid":27443,"tid":27459,"ts":326461807313,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":7985472},
-{"pid":27443,"tid":27459,"ts":326461807344,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":580,"tts":7985533},
-{"pid":27443,"tid":27459,"ts":326461807497,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":427,"tts":7985655},
-{"pid":27443,"tid":27459,"ts":326461807527,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7985685},
-{"pid":27443,"tid":27459,"ts":326461807802,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":129,"frame":"0x78c60000"}},"tts":7985991,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461807832,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":7985991},
-{"pid":27443,"tid":27459,"ts":326461807863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7986021,"id":"0xaf88a5e9f182217a"},
-{"pid":27443,"tid":27459,"ts":326461807893,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7986082},
-{"pid":27443,"tid":27459,"ts":326461807985,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":7986143},
-{"pid":27443,"tid":27459,"ts":326461808015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7986174,"id":"0xaf88abc9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461808107,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7986265,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461808107,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7986265,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461808168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7986326,"id":"0xaf88a566f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461808168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":7986326},
-{"pid":27443,"tid":27459,"ts":326461808198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7986387,"id":"0xaf88a560f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461808229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7986387,"id":"0xaf88a691f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461808229,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":7986387},
-{"pid":27443,"tid":27459,"ts":326461808260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7986418,"id":"0xaf88a6adf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461808321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7986479,"id":"0xaf88a567f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461808321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8179,"tdur":7661,"tts":7986479},
-{"pid":27443,"tid":27459,"ts":326461808351,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7986510,"id":"0xaf88a693f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461808351,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8149,"tdur":7630,"tts":7986510},
-{"pid":27443,"tid":27459,"ts":326461808351,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":169},"tts":7986510},
-{"pid":27443,"tid":27459,"ts":326461808382,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7986540},
-{"pid":27443,"tid":27459,"ts":326461808412,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3876,"tdur":3723,"tts":7986571},
-{"pid":27443,"tid":27459,"ts":326461808443,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":7986601},
-{"pid":27443,"tid":27459,"ts":326461808473,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":129,"frame":"0x78c60000"}},"dur":3815,"tdur":3662,"tts":7986632},
-{"pid":27443,"tid":27459,"ts":326461808534,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3754,"tdur":3601,"tts":7986693},
-{"pid":27443,"tid":27459,"ts":326461808534,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7986723},
-{"pid":27443,"tid":27459,"ts":326461812258,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7990264},
-{"pid":27443,"tid":27459,"ts":326461812319,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3021,"tdur":3021,"tts":7990325},
-{"pid":27443,"tid":27459,"ts":326461812380,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":7990386},
-{"pid":27443,"tid":27459,"ts":326461812380,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7990416},
-{"pid":27443,"tid":27459,"ts":326461812410,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":7990416},
-{"pid":27443,"tid":27459,"ts":326461812899,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":7990904},
-{"pid":27443,"tid":27459,"ts":326461812929,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":7990935},
-{"pid":27443,"tid":27459,"ts":326461812929,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2411,"tdur":2381,"tts":7990965},
-{"pid":27443,"tid":27459,"ts":326461812960,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2228,"tdur":2228,"tts":7990965},
-{"pid":27443,"tid":27459,"ts":326461812990,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":488,"tts":7990996},
-{"pid":27443,"tid":27459,"ts":326461813479,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":7991484},
-{"pid":27443,"tid":27459,"ts":326461813692,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":7991698},
-{"pid":27443,"tid":27459,"ts":326461813784,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":7991790},
-{"pid":27443,"tid":27459,"ts":326461813814,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1374,"tdur":1343,"tts":7991820},
-{"pid":27443,"tid":27459,"ts":326461815188,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":31,"tts":7993193},
-{"pid":27443,"tid":27459,"ts":326461815218,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":7993255},
-{"pid":27443,"tid":27459,"ts":326461815371,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":169},"dur":641,"tdur":549,"tts":7993377},
-{"pid":27443,"tid":27459,"ts":326461815371,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":641,"tdur":549,"tts":7993377},
-{"pid":27443,"tid":27459,"ts":326461815798,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":31,"tdur":0,"tts":7993712},
-{"pid":27443,"tid":27459,"ts":326461815829,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":0,"tdur":0,"tts":7993743},
-{"pid":27443,"tid":27459,"ts":326461815829,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":30,"tdur":0,"tts":7993773},
-{"pid":27443,"tid":27459,"ts":326461815859,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":31,"tdur":31,"tts":7993773},
-{"pid":27443,"tid":27459,"ts":326461815890,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":30,"tdur":0,"tts":7993804},
-{"pid":27443,"tid":27459,"ts":326461815920,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":0,"tdur":0,"tts":7993834},
-{"pid":27443,"tid":27459,"ts":326461815920,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":31,"tdur":31,"tts":7993834},
-{"pid":27443,"tid":27459,"ts":326461815951,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":30,"tdur":30,"tts":7993865},
-{"pid":27443,"tid":27459,"ts":326461815981,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":169},"dur":31,"tdur":31,"tts":7993895},
-{"pid":27443,"tid":27459,"ts":326461816012,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":7993926,"id":"0x3000000a0"},
-{"pid":27443,"tid":27459,"ts":326461816042,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":92,"tts":7993956},
-{"pid":27443,"tid":27459,"ts":326461816073,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7993987,"id":"0xaf88a5e4f182217a"},
-{"pid":27443,"tid":27459,"ts":326461816439,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":4017},"tts":7994079,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461816470,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7994109,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461816470,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":7994140},
-{"pid":27443,"tid":27459,"ts":326461816561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7994201,"id":"0xaf88a560f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461816561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":7994201},
-{"pid":27443,"tid":27459,"ts":326461816592,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7994231,"id":"0xaf88a562f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461816592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7994231,"id":"0xaf88a6acf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461816592,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":30,"tts":7994262},
-{"pid":27443,"tid":27459,"ts":326461816622,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":7994262},
-{"pid":27443,"tid":27459,"ts":326461816683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7994323,"id":"0xaf88a561f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461816683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":7994323},
-{"pid":27443,"tid":27459,"ts":326461816683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7994353,"id":"0xaf88a6aef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461816714,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":0,"tts":7994353},
-{"pid":27443,"tid":27459,"ts":326461816714,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":7994353},
-{"pid":27443,"tid":27459,"ts":326461816744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7994414,"id":"0xaf88a562f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461816775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":7994414},
-{"pid":27443,"tid":27459,"ts":326461816775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7994414,"id":"0xaf88a563f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461816805,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7994445,"id":"0xaf88a6adf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461816805,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":7994445},
-{"pid":27443,"tid":27459,"ts":326461816805,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7994445,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461816836,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":3.62},"dur":91,"tdur":92,"tts":7994475},
-{"pid":27443,"tid":27459,"ts":326461816836,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7994475},
-{"pid":27443,"tid":27459,"ts":326461816897,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":7994536},
-{"pid":27443,"tid":27459,"ts":326461816897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7994536,"id":"0xaf88a6aff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461816927,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":7994567,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461816958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7994628,"id":"0xaf88a563f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461816988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7994628},
-{"pid":27443,"tid":27459,"ts":326461822360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7994689,"id":"0xaf88a57cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461822390,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1435,"tdur":1252,"tts":7994719},
-{"pid":27443,"tid":27459,"ts":326461822390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7994719,"id":"0xaf88a57df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461822421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7994750,"id":"0xaf88a6a8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461822421,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1404,"tdur":1221,"tts":7994750},
-{"pid":27443,"tid":27459,"ts":326461822482,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1312,"tdur":1129,"tts":7994811},
-{"pid":27443,"tid":27459,"ts":326461822513,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":7994842,"id":"0x3000000a1"},
-{"pid":27443,"tid":27459,"ts":326461822757,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":946,"tts":7994903},
-{"pid":27443,"tid":27459,"ts":326461822787,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":916,"tdur":916,"tts":7994933},
-{"pid":27443,"tid":27459,"ts":326461822848,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7994994},
-{"pid":27443,"tid":27459,"ts":326461822909,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":7995055},
-{"pid":27443,"tid":27459,"ts":326461822940,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7995086},
-{"pid":27443,"tid":27459,"ts":326461822970,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7995116},
-{"pid":27443,"tid":27459,"ts":326461823001,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":7995147},
-{"pid":27443,"tid":27459,"ts":326461823031,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":7995177},
-{"pid":27443,"tid":27459,"ts":326461823062,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":7995208},
-{"pid":27443,"tid":27459,"ts":326461823092,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":549,"tts":7995269},
-{"pid":27443,"tid":27459,"ts":326461823245,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":7995391},
-{"pid":27443,"tid":27459,"ts":326461823276,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7995421},
-{"pid":27443,"tid":27459,"ts":326461823550,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":130,"frame":"0x78c60000"}},"tts":7995696,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461823581,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":7995727},
-{"pid":27443,"tid":27459,"ts":326461823581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7995727,"id":"0xaf88a5fdf182217a"},
-{"pid":27443,"tid":27459,"ts":326461823642,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":7995788},
-{"pid":27443,"tid":27459,"ts":326461823733,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":31,"tts":7995879},
-{"pid":27443,"tid":27459,"ts":326461823733,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7995879,"id":"0xaf88abc4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461823855,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":7996001,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461823855,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":7996001,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461823886,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7996032,"id":"0xaf88a57df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461823916,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":7996062},
-{"pid":27443,"tid":27459,"ts":326461823916,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7996093,"id":"0xaf88a57ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461823947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7996093,"id":"0xaf88a6aff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461823947,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":7996093},
-{"pid":27443,"tid":27459,"ts":326461823978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":7996123,"id":"0xaf88a6a9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461824008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7996154,"id":"0xaf88a57ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461824039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":7996184},
-{"pid":27443,"tid":27459,"ts":326461824893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":7996245,"id":"0xaf88a57ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461824893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9431,"tdur":8088,"tts":7996245},
-{"pid":27443,"tid":27459,"ts":326461824924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7996276,"id":"0xaf88a578f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461824954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":7996307,"id":"0xaf88a6aaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461824954,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9370,"tdur":8026,"tts":7996307},
-{"pid":27443,"tid":27477,"ts":326461816988,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":184,"tts":880695},
-{"pid":27443,"tid":27477,"ts":326461817171,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":880879},
-{"pid":27443,"tid":27477,"ts":326461817171,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":880879},
-{"pid":27443,"tid":27477,"ts":326461817202,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":880909},
-{"pid":27443,"tid":27477,"ts":326461817202,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":880909},
-{"pid":27443,"tid":27477,"ts":326461817202,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":880909,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461817233,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":880940},
-{"pid":27443,"tid":27477,"ts":326461817233,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":880940},
-{"pid":27443,"tid":27477,"ts":326461817294,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":881001,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461817324,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":212}},"tts":881031,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461817324,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5726208},"tts":881031,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461817416,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":881092,"id":"0xaf88a5e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461817446,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":881123},
-{"pid":27443,"tid":27477,"ts":326461817446,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":881123},
-{"pid":27443,"tid":27477,"ts":326461817477,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":881153,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461817477,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":881153},
-{"pid":27443,"tid":27477,"ts":326461817477,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":881153,"id":"0xaf88a5e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461817507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":881184,"id":"0xaf88a5e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461817507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":881184},
-{"pid":27443,"tid":27477,"ts":326461817538,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":881214},
-{"pid":27443,"tid":27477,"ts":326461817538,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":881214,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461817538,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":881214},
-{"pid":27443,"tid":27477,"ts":326461817568,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":881245,"id":"0xaf88a5e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461817599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":881275,"id":"0xaf88a5e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461817599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":881275},
-{"pid":27443,"tid":27477,"ts":326461817599,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":881275},
-{"pid":27443,"tid":27477,"ts":326461817599,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":881275,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461817629,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":881306},
-{"pid":27443,"tid":27477,"ts":326461817629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":881306,"id":"0xaf88a5e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461817629,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1374,"tdur":1343,"tts":881336},
-{"pid":27443,"tid":27477,"ts":326461817660,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1343,"tdur":1343,"tts":881336},
-{"pid":27443,"tid":27477,"ts":326461817660,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":881336},
-{"pid":27443,"tid":27477,"ts":326461817660,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":881336},
-{"pid":27443,"tid":27477,"ts":326461817690,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":881367},
-{"pid":27443,"tid":27477,"ts":326461817690,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":881367},
-{"pid":27443,"tid":27477,"ts":326461817782,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1221,"tts":881458},
-{"pid":27443,"tid":27477,"ts":326461817812,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1191,"tdur":1190,"tts":881489},
-{"pid":27443,"tid":27477,"ts":326461817812,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1160,"tdur":1160,"tts":881489},
-{"pid":27443,"tid":27477,"ts":326461817812,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":881489,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461817904,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881580},
-{"pid":27443,"tid":27477,"ts":326461817904,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":881611},
-{"pid":27443,"tid":27477,"ts":326461817934,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":881611},
-{"pid":27443,"tid":27477,"ts":326461817965,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881642},
-{"pid":27443,"tid":27477,"ts":326461817965,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":881642},
-{"pid":27443,"tid":27477,"ts":326461817996,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881672},
-{"pid":27443,"tid":27477,"ts":326461818026,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881703},
-{"pid":27443,"tid":27477,"ts":326461818026,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881703},
-{"pid":27443,"tid":27477,"ts":326461818057,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881733},
-{"pid":27443,"tid":27477,"ts":326461818057,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":881733},
-{"pid":27443,"tid":27477,"ts":326461818087,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881764},
-{"pid":27443,"tid":27477,"ts":326461818087,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":881764},
-{"pid":27443,"tid":27477,"ts":326461818118,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":881794},
-{"pid":27443,"tid":27477,"ts":326461818148,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881825},
-{"pid":27443,"tid":27477,"ts":326461818148,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":881825},
-{"pid":27443,"tid":27477,"ts":326461818179,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881855},
-{"pid":27443,"tid":27477,"ts":326461818179,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":881886},
-{"pid":27443,"tid":27477,"ts":326461818209,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881886},
-{"pid":27443,"tid":27477,"ts":326461818240,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881916},
-{"pid":27443,"tid":27477,"ts":326461818240,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":881916},
-{"pid":27443,"tid":27477,"ts":326461818270,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881947},
-{"pid":27443,"tid":27477,"ts":326461818301,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":881977},
-{"pid":27443,"tid":27477,"ts":326461818301,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":881977},
-{"pid":27443,"tid":27477,"ts":326461818331,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882008},
-{"pid":27443,"tid":27477,"ts":326461818331,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":882008},
-{"pid":27443,"tid":27477,"ts":326461818362,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882038},
-{"pid":27443,"tid":27477,"ts":326461818392,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882069},
-{"pid":27443,"tid":27477,"ts":326461818392,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":882069},
-{"pid":27443,"tid":27477,"ts":326461818423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882099},
-{"pid":27443,"tid":27477,"ts":326461818423,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":882099},
-{"pid":27443,"tid":27477,"ts":326461818453,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882130},
-{"pid":27443,"tid":27477,"ts":326461818453,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":882160},
-{"pid":27443,"tid":27477,"ts":326461818484,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882160},
-{"pid":27443,"tid":27477,"ts":326461818514,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882191},
-{"pid":27443,"tid":27477,"ts":326461818514,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":882191},
-{"pid":27443,"tid":27477,"ts":326461818545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882221},
-{"pid":27443,"tid":27477,"ts":326461818545,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":882221},
-{"pid":27443,"tid":27477,"ts":326461818575,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882252},
-{"pid":27443,"tid":27477,"ts":326461818575,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":882282},
-{"pid":27443,"tid":27477,"ts":326461818606,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882282},
-{"pid":27443,"tid":27477,"ts":326461818636,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882313},
-{"pid":27443,"tid":27477,"ts":326461818636,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":882313},
-{"pid":27443,"tid":27477,"ts":326461818667,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882343},
-{"pid":27443,"tid":27477,"ts":326461818667,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":882343},
-{"pid":27443,"tid":27477,"ts":326461818759,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882435},
-{"pid":27443,"tid":27477,"ts":326461818759,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":882435},
-{"pid":27443,"tid":27477,"ts":326461818789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882466},
-{"pid":27443,"tid":27477,"ts":326461818820,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882496},
-{"pid":27443,"tid":27477,"ts":326461818820,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":882496},
-{"pid":27443,"tid":27477,"ts":326461818850,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":882527},
-{"pid":27443,"tid":27477,"ts":326461818850,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":882527},
-{"pid":27443,"tid":27477,"ts":326461818911,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":882588},
-{"pid":27443,"tid":27477,"ts":326461818942,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":882618},
-{"pid":27443,"tid":27477,"ts":326461818942,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":882618},
-{"pid":27443,"tid":27477,"ts":326461818972,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":882649},
-{"pid":27443,"tid":27477,"ts":326461819003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":882679,"id":"0xaf88a5e1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461819033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":882710},
-{"pid":27443,"tid":27477,"ts":326461819033,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":882710},
-{"pid":27443,"tid":27477,"ts":326461819033,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":882710},
-{"pid":27443,"tid":27477,"ts":326461819033,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":882710},
-{"pid":27443,"tid":27477,"ts":326461819064,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":882740},
-{"pid":27443,"tid":27477,"ts":326461819064,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":882740},
-{"pid":27443,"tid":27477,"ts":326461819125,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":882801},
-{"pid":27443,"tid":27477,"ts":326461819125,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":882801},
-{"pid":27443,"tid":27477,"ts":326461820559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461820},"tts":882862,"id":"0xaf88a5e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461820559,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":882862},
-{"pid":27443,"tid":27477,"ts":326461822177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":882923,"id":"0xaf88a5e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461822207,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":882954},
-{"pid":27443,"tid":27477,"ts":326461822207,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":882954},
-{"pid":27443,"tid":27477,"ts":326461822238,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":882984,"id":"0x3000000a1"},
-{"pid":27443,"tid":27477,"ts":326461822238,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":30,"tdur":31,"tts":882984},
-{"pid":27443,"tid":27477,"ts":326461822268,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":883015,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461822299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":883045,"id":"0xaf88a6a8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461822299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":883045,"id":"0xaf88a57cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461822696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":883168,"id":"0xaf88a5e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461822726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":883168},
-{"pid":27443,"tid":27477,"ts":326461822757,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461821393.0,"frame_time_us":326461820472.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":153,"tts":883198},
-{"pid":27443,"tid":27477,"ts":326461822787,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461821393.0,"frame_time_us":326461820472.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":883229},
-{"pid":27443,"tid":27477,"ts":326461822848,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":883290},
-{"pid":27443,"tid":27477,"ts":326461822848,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461837138},"dur":31,"tdur":0,"tts":883320},
-{"pid":27443,"tid":27477,"ts":326461822879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":883320,"id":"0xaf88a5fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461823764,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":883412,"id":"0xaf88a5fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461823794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":883412},
-{"pid":27443,"tid":27477,"ts":326461823794,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":30,"tts":883412},
-{"pid":27443,"tid":27477,"ts":326461824679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":883503,"id":"0xaf88a5fef182217a"},
-{"pid":27443,"tid":27477,"ts":326461824679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":306,"tdur":305,"tts":883503},
-{"pid":27443,"tid":27477,"ts":326461824710,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":244,"tdur":244,"tts":883534},
-{"pid":27443,"tid":27477,"ts":326461824741,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":170},"tts":883564},
-{"pid":27443,"tid":27477,"ts":326461824802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":883625,"id":"0xaf88a6aaf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461824832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":883656,"id":"0xaf88a57ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461824863,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":883686},
-{"pid":27443,"tid":27477,"ts":326461824893,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":883717},
-{"pid":27443,"tid":27477,"ts":326461824893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":883717,"id":"0xaf88a5fff182217a"},
-{"pid":27443,"tid":27477,"ts":326461824924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":883747,"id":"0xaf88a6abf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461824954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":883778,"id":"0xaf88a579f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461824985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":883808,"id":"0xaf88a5fff182217a"},
-{"pid":27443,"tid":27477,"ts":326461824985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4486,"tdur":1801,"tts":883808},
-{"pid":27443,"tid":27477,"ts":326461825015,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4456,"tdur":1770,"tts":883839},
-{"pid":27443,"tid":27477,"ts":326461825015,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":4426,"tdur":1740,"tts":883839},
-{"pid":27443,"tid":27477,"ts":326461825015,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":169},"dur":3327,"tdur":1129,"tts":883839},
-{"pid":27443,"tid":27477,"ts":326461825076,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":169},"dur":275,"tdur":275,"tts":883900},
-{"pid":27443,"tid":27477,"ts":326461825381,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":169},"dur":31,"tdur":31,"tts":884205},
-{"pid":27443,"tid":27477,"ts":326461825412,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":169},"tts":884236},
-{"pid":27443,"tid":27477,"ts":326461827884,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":884510},
-{"pid":27443,"tid":27477,"ts":326461827915,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":884541},
-{"pid":27443,"tid":27477,"ts":326461827915,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":884541},
-{"pid":27443,"tid":27477,"ts":326461827915,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":884541},
-{"pid":27443,"tid":27477,"ts":326461827945,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":884571,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461828037,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":884663},
-{"pid":27443,"tid":27477,"ts":326461828311,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":884938},
-{"pid":27443,"tid":27477,"ts":326461828342,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":824,"tdur":336,"tts":884968},
-{"pid":27443,"tid":27477,"ts":326461828342,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":884968},
-{"pid":27443,"tid":27477,"ts":326461828372,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":733,"tdur":244,"tts":884999},
-{"pid":27443,"tid":27477,"ts":326461828464,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":92,"tdur":61,"tts":885090},
-{"pid":27443,"tid":27477,"ts":326461828495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":885121,"id":"0xaf88abc5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461828556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":885182,"id":"0xaf88abc6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461829135,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":885273,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461829196,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":885334,"id":"0x3000000a0"},
-{"pid":27443,"tid":27477,"ts":326461829196,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":885334},
-{"pid":27443,"tid":27477,"ts":326461829349,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":885487,"id":"0xaf88abc7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461829410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":885548,"id":"0xaf88a6a4f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461833927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":885670,"id":"0xaf88a5f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461833958,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1220,"tdur":1221,"tts":885701},
-{"pid":27443,"tid":27477,"ts":326461833958,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1220,"tdur":1221,"tts":885701},
-{"pid":27443,"tid":27477,"ts":326461833958,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":885701},
-{"pid":27443,"tid":27477,"ts":326461833988,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1190,"tdur":1191,"tts":885731},
-{"pid":27443,"tid":27477,"ts":326461833988,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1190,"tdur":1191,"tts":885731},
-{"pid":27443,"tid":27477,"ts":326461833988,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":30,"tts":885762},
-{"pid":27443,"tid":27477,"ts":326461834019,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":885762},
-{"pid":27443,"tid":27477,"ts":326461834019,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":885762,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461834049,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":885792},
-{"pid":27443,"tid":27477,"ts":326461834080,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":885823},
-{"pid":27443,"tid":27477,"ts":326461834202,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":946,"tdur":946,"tts":885945},
-{"pid":27443,"tid":27477,"ts":326461834202,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":170},"dur":305,"tdur":305,"tts":885945},
-{"pid":27443,"tid":27477,"ts":326461834507,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":170},"dur":31,"tdur":31,"tts":886250},
-{"pid":27443,"tid":27477,"ts":326461834568,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":170},"tts":886311},
-{"pid":27443,"tid":27477,"ts":326461834782,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":886525},
-{"pid":27443,"tid":27477,"ts":326461834812,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":336,"tdur":336,"tts":886555},
-{"pid":27443,"tid":27477,"ts":326461834812,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":886555},
-{"pid":27443,"tid":27477,"ts":326461834965,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":886708},
-{"pid":27443,"tid":27477,"ts":326461834995,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":886738},
-{"pid":27443,"tid":27477,"ts":326461834995,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":123,"tts":886738},
-{"pid":27443,"tid":27477,"ts":326461834995,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":123,"tts":886738},
-{"pid":27443,"tid":27477,"ts":326461835026,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":886769,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461835026,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":886769},
-{"pid":27443,"tid":27477,"ts":326461835056,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":886799},
-{"pid":27443,"tid":27477,"ts":326461835087,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":886830,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461835117,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":212}},"tts":886861,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461835148,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5726208},"tts":886891,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461835209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":886952,"id":"0xaf88a5f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461835209,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":886952},
-{"pid":27443,"tid":27477,"ts":326461835209,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":886952},
-{"pid":27443,"tid":27477,"ts":326461835240,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":886983,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27459,"ts":326461824954,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":170},"tts":7996307},
-{"pid":27443,"tid":27459,"ts":326461824985,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":7996337},
-{"pid":27443,"tid":27459,"ts":326461825015,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":5341,"tdur":4212,"tts":7996398},
-{"pid":27443,"tid":27459,"ts":326461825046,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":7996398},
-{"pid":27443,"tid":27459,"ts":326461825076,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":130,"frame":"0x78c60000"}},"dur":5280,"tdur":4151,"tts":7996459},
-{"pid":27443,"tid":27459,"ts":326461825168,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":5188,"tdur":4090,"tts":7996520},
-{"pid":27443,"tid":27459,"ts":326461825168,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":7996520},
-{"pid":27443,"tid":27459,"ts":326461830326,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8000579},
-{"pid":27443,"tid":27459,"ts":326461830387,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3021,"tdur":3022,"tts":8000640},
-{"pid":27443,"tid":27459,"ts":326461830417,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8000671},
-{"pid":27443,"tid":27459,"ts":326461830448,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8000701},
-{"pid":27443,"tid":27459,"ts":326461830448,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8000701},
-{"pid":27443,"tid":27459,"ts":326461830906,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":8001159},
-{"pid":27443,"tid":27459,"ts":326461830936,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":8001190},
-{"pid":27443,"tid":27459,"ts":326461830967,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2441,"tdur":2442,"tts":8001220},
-{"pid":27443,"tid":27459,"ts":326461830997,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2259,"tdur":2258,"tts":8001251},
-{"pid":27443,"tid":27459,"ts":326461830997,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":488,"tts":8001251},
-{"pid":27443,"tid":27459,"ts":326461831486,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":8001739},
-{"pid":27443,"tid":27459,"ts":326461831699,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":8001953},
-{"pid":27443,"tid":27459,"ts":326461831821,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8002075},
-{"pid":27443,"tid":27459,"ts":326461831821,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1404,"tdur":1404,"tts":8002075},
-{"pid":27443,"tid":27459,"ts":326461833256,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":8003509},
-{"pid":27443,"tid":27459,"ts":326461833286,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":91,"tts":8003540},
-{"pid":27443,"tid":27459,"ts":326461833408,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":170},"dur":428,"tdur":427,"tts":8003662},
-{"pid":27443,"tid":27459,"ts":326461833439,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":397,"tdur":397,"tts":8003692},
-{"pid":27443,"tid":27459,"ts":326461833652,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":31,"tdur":0,"tts":8003937},
-{"pid":27443,"tid":27459,"ts":326461833683,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":31,"tdur":30,"tts":8003937},
-{"pid":27443,"tid":27459,"ts":326461833714,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":0,"tdur":0,"tts":8003967},
-{"pid":27443,"tid":27459,"ts":326461833744,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":0,"tdur":0,"tts":8003998},
-{"pid":27443,"tid":27459,"ts":326461833744,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":31,"tdur":30,"tts":8003998},
-{"pid":27443,"tid":27459,"ts":326461833775,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":0,"tdur":0,"tts":8004028},
-{"pid":27443,"tid":27459,"ts":326461833775,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":30,"tdur":31,"tts":8004028},
-{"pid":27443,"tid":27459,"ts":326461833805,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":0,"tdur":0,"tts":8004059},
-{"pid":27443,"tid":27459,"ts":326461833805,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":170},"dur":31,"tdur":30,"tts":8004059},{"pid":27443,"tid":27459,"ts":326461833866,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8004120,"id":"0x3000000a1"},
-{"pid":27443,"tid":27459,"ts":326461833866,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":336,"tdur":91,"tts":8004120},
-{"pid":27443,"tid":27459,"ts":326461833897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8004150,"id":"0xaf88a5f8f182217a"},
-{"pid":27443,"tid":27459,"ts":326461834263,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":2906},"tts":8004272,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461834263,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8004272,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461834293,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8004303},
-{"pid":27443,"tid":27459,"ts":326461834354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8004364,"id":"0xaf88a578f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461834385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8004394},
-{"pid":27443,"tid":27459,"ts":326461834385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8004394,"id":"0xaf88a57af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461834415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8004425,"id":"0xaf88a6abf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461834415,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8004425},
-{"pid":27443,"tid":27459,"ts":326461834415,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":8004425},
-{"pid":27443,"tid":27459,"ts":326461834477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8004486,"id":"0xaf88a579f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461834477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8004486},
-{"pid":27443,"tid":27459,"ts":326461834507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8004517,"id":"0xaf88a6a4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461834507,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":8004517},
-{"pid":27443,"tid":27459,"ts":326461834538,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8004547},
-{"pid":27443,"tid":27459,"ts":326461834568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8004578,"id":"0xaf88a57af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461834568,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8004578},
-{"pid":27443,"tid":27459,"ts":326461834599,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8004608,"id":"0xaf88a57bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461834599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8004608,"id":"0xaf88a6a9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461834629,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":8004639},
-{"pid":27443,"tid":27459,"ts":326461834629,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8004639,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461834629,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":2.509},"dur":122,"tdur":122,"tts":8004639},
-{"pid":27443,"tid":27459,"ts":326461834660,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8004669},
-{"pid":27443,"tid":27459,"ts":326461834690,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8004700},
-{"pid":27443,"tid":27459,"ts":326461834721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8004730,"id":"0xaf88a6a5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461834751,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8004761,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461834782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8004791,"id":"0xaf88a57bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461834782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8004791},
-{"pid":27443,"tid":27477,"ts":326461835240,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":886983},
-{"pid":27443,"tid":27477,"ts":326461835270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":887013,"id":"0xaf88a5f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461835270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":887013,"id":"0xaf88a5faf182217a"},
-{"pid":27443,"tid":27477,"ts":326461835301,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":887044},
-{"pid":27443,"tid":27477,"ts":326461835301,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":887044},
-{"pid":27443,"tid":27477,"ts":326461835301,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":887044,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461835331,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":887074},
-{"pid":27443,"tid":27477,"ts":326461835331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":887074,"id":"0xaf88a5f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461835362,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":887105,"id":"0xaf88a5fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461835362,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":887105},
-{"pid":27443,"tid":27477,"ts":326461835362,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":887105},
-{"pid":27443,"tid":27477,"ts":326461835392,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":887135,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461835392,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":887135},
-{"pid":27443,"tid":27477,"ts":326461835392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":887166,"id":"0xaf88a5f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461835423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1648,"tdur":1495,"tts":887166},
-{"pid":27443,"tid":27477,"ts":326461835423,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1648,"tdur":1495,"tts":887166},
-{"pid":27443,"tid":27477,"ts":326461835423,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":887166},
-{"pid":27443,"tid":27477,"ts":326461835453,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":887196},
-{"pid":27443,"tid":27477,"ts":326461835453,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":887196},
-{"pid":27443,"tid":27477,"ts":326461835453,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":887196},
-{"pid":27443,"tid":27477,"ts":326461835575,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1496,"tdur":1313,"tts":887318},
-{"pid":27443,"tid":27477,"ts":326461835575,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1465,"tdur":1313,"tts":887318},
-{"pid":27443,"tid":27477,"ts":326461835575,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1465,"tdur":1313,"tts":887318},
-{"pid":27443,"tid":27477,"ts":326461835575,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":887349,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461835667,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":887410},
-{"pid":27443,"tid":27477,"ts":326461835697,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887440},
-{"pid":27443,"tid":27477,"ts":326461835697,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":887471},
-{"pid":27443,"tid":27477,"ts":326461835728,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887471},
-{"pid":27443,"tid":27477,"ts":326461835758,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887501},
-{"pid":27443,"tid":27477,"ts":326461835758,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887501},
-{"pid":27443,"tid":27477,"ts":326461835789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887532},
-{"pid":27443,"tid":27477,"ts":326461835789,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":887532},
-{"pid":27443,"tid":27477,"ts":326461835819,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887562},
-{"pid":27443,"tid":27477,"ts":326461835819,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":887562},
-{"pid":27443,"tid":27477,"ts":326461835850,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":91,"tdur":31,"tts":887593},
-{"pid":27443,"tid":27477,"ts":326461835850,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":887593},
-{"pid":27443,"tid":27477,"ts":326461835941,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":92,"tdur":30,"tts":887624},
-{"pid":27443,"tid":27477,"ts":326461835941,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":0,"tts":887624},
-{"pid":27443,"tid":27477,"ts":326461836033,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":887654},
-{"pid":27443,"tid":27477,"ts":326461836094,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887685},
-{"pid":27443,"tid":27477,"ts":326461836094,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":887715},
-{"pid":27443,"tid":27477,"ts":326461836125,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887715},
-{"pid":27443,"tid":27477,"ts":326461836155,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887746},
-{"pid":27443,"tid":27477,"ts":326461836155,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":887746},
-{"pid":27443,"tid":27477,"ts":326461836186,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":887776},
-{"pid":27443,"tid":27477,"ts":326461836216,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887807},
-{"pid":27443,"tid":27477,"ts":326461836247,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887837},
-{"pid":27443,"tid":27477,"ts":326461836247,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":887837},
-{"pid":27443,"tid":27477,"ts":326461836277,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":887868},
-{"pid":27443,"tid":27477,"ts":326461836308,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887898},
-{"pid":27443,"tid":27477,"ts":326461836338,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887929},
-{"pid":27443,"tid":27477,"ts":326461836338,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":887929},
-{"pid":27443,"tid":27477,"ts":326461836369,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887959},
-{"pid":27443,"tid":27477,"ts":326461836399,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":887990},
-{"pid":27443,"tid":27477,"ts":326461836430,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888020},
-{"pid":27443,"tid":27477,"ts":326461836430,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":888020},
-{"pid":27443,"tid":27477,"ts":326461836460,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":888051},
-{"pid":27443,"tid":27477,"ts":326461836491,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888081},
-{"pid":27443,"tid":27477,"ts":326461836491,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":888112},
-{"pid":27443,"tid":27477,"ts":326461836521,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888112},
-{"pid":27443,"tid":27477,"ts":326461836552,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888142},
-{"pid":27443,"tid":27477,"ts":326461836552,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888142},
-{"pid":27443,"tid":27477,"ts":326461836582,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888173},
-{"pid":27443,"tid":27477,"ts":326461836582,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":888173},
-{"pid":27443,"tid":27477,"ts":326461836613,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":888203},
-{"pid":27443,"tid":27477,"ts":326461836643,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":888234},
-{"pid":27443,"tid":27477,"ts":326461836674,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":888264},
-{"pid":27443,"tid":27477,"ts":326461836705,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888295},
-{"pid":27443,"tid":27477,"ts":326461836705,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":888295},
-{"pid":27443,"tid":27477,"ts":326461836735,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888325},
-{"pid":27443,"tid":27477,"ts":326461836796,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":888387},
-{"pid":27443,"tid":27477,"ts":326461836827,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888417},
-{"pid":27443,"tid":27477,"ts":326461836827,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":888448},
-{"pid":27443,"tid":27477,"ts":326461836857,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":888448},
-{"pid":27443,"tid":27477,"ts":326461836888,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888478},
-{"pid":27443,"tid":27477,"ts":326461836888,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":888478},
-{"pid":27443,"tid":27477,"ts":326461836918,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":888509},
-{"pid":27443,"tid":27477,"ts":326461836949,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":888539},
-{"pid":27443,"tid":27477,"ts":326461837010,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":888600},
-{"pid":27443,"tid":27477,"ts":326461837010,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":888600},
-{"pid":27443,"tid":27477,"ts":326461837010,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":31,"tts":888600},
-{"pid":27443,"tid":27477,"ts":326461837071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":888661,"id":"0xaf88a5f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461837071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":888661},
-{"pid":27443,"tid":27477,"ts":326461837101,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":888692},
-{"pid":27443,"tid":27477,"ts":326461837101,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":888692},
-{"pid":27443,"tid":27477,"ts":326461837101,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":888692},
-{"pid":27443,"tid":27477,"ts":326461837132,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":888722},
-{"pid":27443,"tid":27477,"ts":326461837132,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":888722},
-{"pid":27443,"tid":27477,"ts":326461837193,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":888783},
-{"pid":27443,"tid":27477,"ts":326461837193,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":888783},
-{"pid":27443,"tid":27477,"ts":326461837223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461837},"tts":888814,"id":"0xaf88a5fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461837223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":888814},
-{"pid":27443,"tid":27477,"ts":326461841191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":888875,"id":"0xaf88a5f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461841191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":888905},
-{"pid":27443,"tid":27477,"ts":326461841222,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":122,"tts":888905},
-{"pid":27443,"tid":27477,"ts":326461841222,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":888936,"id":"0x3000000a2"},
-{"pid":27443,"tid":27477,"ts":326461841252,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":888936},
-{"pid":27443,"tid":27477,"ts":326461841283,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":888966,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461841313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":888997,"id":"0xaf88a6a6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461841313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":888997,"id":"0xaf88a574f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461841527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":889088,"id":"0xaf88a5f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461841557,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":889119},
-{"pid":27443,"tid":27477,"ts":326461841588,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461837940.0,"frame_time_us":326461837154.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":889150},
-{"pid":27443,"tid":27477,"ts":326461841588,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461837940.0,"frame_time_us":326461837154.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":122,"tts":889150},
-{"pid":27443,"tid":27477,"ts":326461841649,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":30,"tts":889211},
-{"pid":27443,"tid":27477,"ts":326461841679,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461853820},"dur":31,"tdur":31,"tts":889241},
-{"pid":27443,"tid":27477,"ts":326461841679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":889241,"id":"0xaf88a5f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461842442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":889333,"id":"0xaf88a5f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461842442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":889333},
-{"pid":27443,"tid":27477,"ts":326461842442,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":30,"tts":889333},
-{"pid":27443,"tid":27477,"ts":326461842473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":889363,"id":"0xaf88a5f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461842503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":428,"tdur":244,"tts":889394},
-{"pid":27443,"tid":27477,"ts":326461842534,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":366,"tdur":183,"tts":889424},
-{"pid":27443,"tid":27477,"ts":326461842534,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":171},"tts":889424},
-{"pid":27443,"tid":27477,"ts":326461842595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":889516,"id":"0xaf88a6a7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461842625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":889516,"id":"0xaf88a576f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461842656,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":889546},
-{"pid":27443,"tid":27477,"ts":326461842656,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":214,"tdur":31,"tts":889546},
-{"pid":27443,"tid":27477,"ts":326461842656,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":889546},
-{"pid":27443,"tid":27477,"ts":326461842870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":889577,"id":"0xaf88a5f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461842900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":889607,"id":"0xaf88a6a1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461842900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":889607,"id":"0xaf88a570f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461842931,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":889638,"id":"0xaf88a5f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461842931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1953,"tdur":1678,"tts":889638},
-{"pid":27443,"tid":27477,"ts":326461842961,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1923,"tdur":1648,"tts":889668},
-{"pid":27443,"tid":27477,"ts":326461842961,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1892,"tdur":1618,"tts":889668},
-{"pid":27443,"tid":27477,"ts":326461842992,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":170},"dur":1037,"tdur":1038,"tts":889699},
-{"pid":27443,"tid":27477,"ts":326461843022,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":170},"dur":305,"tdur":306,"tts":889729},
-{"pid":27443,"tid":27459,"ts":326461841374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8004883,"id":"0xaf88a574f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461841374,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":8004883},
-{"pid":27443,"tid":27459,"ts":326461841435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1190,"tts":8004944},
-{"pid":27443,"tid":27459,"ts":326461841466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8004974,"id":"0xaf88a575f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461841466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8004974,"id":"0xaf88a6a6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461841466,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1159,"tdur":1160,"tts":8004974},
-{"pid":27443,"tid":27459,"ts":326461841527,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1069,"tts":8005035},
-{"pid":27443,"tid":27459,"ts":326461841557,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8005066,"id":"0x3000000a2"},
-{"pid":27443,"tid":27459,"ts":326461841588,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":916,"tts":8005096},
-{"pid":27443,"tid":27459,"ts":326461841618,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":8005127},
-{"pid":27443,"tid":27459,"ts":326461841679,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8005188},
-{"pid":27443,"tid":27459,"ts":326461841710,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8005218},
-{"pid":27443,"tid":27459,"ts":326461841740,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8005249},
-{"pid":27443,"tid":27459,"ts":326461841771,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8005280},
-{"pid":27443,"tid":27459,"ts":326461841801,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8005310},
-{"pid":27443,"tid":27459,"ts":326461841801,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8005341},
-{"pid":27443,"tid":27459,"ts":326461841832,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8005341},
-{"pid":27443,"tid":27459,"ts":326461841862,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":641,"tdur":610,"tts":8005402},
-{"pid":27443,"tid":27459,"ts":326461842015,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":458,"tdur":457,"tts":8005524},
-{"pid":27443,"tid":27459,"ts":326461842046,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8005554},
-{"pid":27443,"tid":27459,"ts":326461842351,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":131,"frame":"0x78c60000"}},"tts":8005859,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461842351,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":8005859},
-{"pid":27443,"tid":27459,"ts":326461842381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8005890,"id":"0xaf88a5f1f182217a"},
-{"pid":27443,"tid":27459,"ts":326461842442,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8005951},
-{"pid":27443,"tid":27459,"ts":326461842534,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8006043},
-{"pid":27443,"tid":27459,"ts":326461842534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8006043,"id":"0xaf88abc0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461842687,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8006165,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461842717,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8006195,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461842748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8006226,"id":"0xaf88a575f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461842748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8006226},
-{"pid":27443,"tid":27459,"ts":326461842778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8006256,"id":"0xaf88a577f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461842778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8006256,"id":"0xaf88a6a5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461842778,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":8006256},
-{"pid":27443,"tid":27459,"ts":326461842809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8006287,"id":"0xaf88a6a0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461842839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8006317,"id":"0xaf88a576f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461842870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9125,"tdur":8179,"tts":8006348},
-{"pid":27443,"tid":27459,"ts":326461842870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8006348,"id":"0xaf88a6a7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461842870,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":9095,"tdur":8149,"tts":8006348},
-{"pid":27443,"tid":27459,"ts":326461842900,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":171},"tts":8006378},
-{"pid":27443,"tid":27459,"ts":326461842900,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":8006378},
-{"pid":27443,"tid":27459,"ts":326461842931,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4425,"tdur":4029,"tts":8006439},
-{"pid":27443,"tid":27459,"ts":326461842961,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":8006439},
-{"pid":27443,"tid":27459,"ts":326461842992,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":131,"frame":"0x78c60000"}},"dur":4334,"tdur":3937,"tts":8006500},
-{"pid":27443,"tid":27459,"ts":326461843266,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4060,"tdur":3876,"tts":8006561},
-{"pid":27443,"tid":27459,"ts":326461843266,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8006561},
-{"pid":27443,"tid":27459,"ts":326461847295,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8010407},
-{"pid":27443,"tid":27459,"ts":326461847356,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3449,"tdur":3205,"tts":8010468},
-{"pid":27443,"tid":27459,"ts":326461847387,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8010529},
-{"pid":27443,"tid":27459,"ts":326461847417,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8010529},
-{"pid":27443,"tid":27459,"ts":326461847448,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8010560},
-{"pid":27443,"tid":27459,"ts":326461847875,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":8010987},
-{"pid":27443,"tid":27459,"ts":326461847905,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":8011017},
-{"pid":27443,"tid":27459,"ts":326461847936,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2869,"tdur":2625,"tts":8011048},
-{"pid":27443,"tid":27459,"ts":326461847936,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2686,"tdur":2411,"tts":8011048},
-{"pid":27443,"tid":27459,"ts":326461847967,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":488,"tdur":489,"tts":8011078},
-{"pid":27443,"tid":27459,"ts":326461848455,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":183,"tts":8011567},
-{"pid":27443,"tid":27459,"ts":326461848668,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":92,"tts":8011780},
-{"pid":27443,"tid":27459,"ts":326461848760,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8011872},
-{"pid":27443,"tid":27459,"ts":326461848791,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1800,"tdur":1557,"tts":8011902},
-{"pid":27443,"tid":27459,"ts":326461850622,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":8013490},
-{"pid":27443,"tid":27459,"ts":326461850652,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":153,"tdur":122,"tts":8013551},
-{"pid":27443,"tid":27459,"ts":326461850835,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":171},"dur":550,"tdur":550,"tts":8013703},
-{"pid":27443,"tid":27459,"ts":326461850835,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":550,"tdur":550,"tts":8013703},
-{"pid":27443,"tid":27459,"ts":326461851141,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":30,"tdur":31,"tts":8014008},
-{"pid":27443,"tid":27466,"ts":326461842625,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":413673},
-{"pid":27443,"tid":27466,"ts":326461842625,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413703,"id":"0xccc5f902"},
-{"pid":27443,"tid":27466,"ts":326461844243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":413795,"id":"0xaf88abc1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461844274,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":413825},
-{"pid":27443,"tid":27466,"ts":326461844274,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413825,"id":"0xccc5fa06"},
-{"pid":27443,"tid":27466,"ts":326461844457,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":413917},
-{"pid":27443,"tid":27466,"ts":326461844487,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":413947},
-{"pid":27443,"tid":27466,"ts":326461844487,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":413947,"id":"0xc4c21d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461844823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":414039,"id":"0xaf88abc2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461844853,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":414069},
-{"pid":27443,"tid":27466,"ts":326461844853,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":414069,"id":"0xccc5fb02"},
-{"pid":27443,"tid":27466,"ts":326461855810,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":414161},
-{"pid":27443,"tid":27466,"ts":326461855841,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":152,"tdur":123,"tts":414191},
-{"pid":27443,"tid":27466,"ts":326461855871,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":414222,"id":"0xba46a002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461855902,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":62,"tts":414252},
-{"pid":27443,"tid":27466,"ts":326461855932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":414283,"id":"0xaf88a58af182217a"},
-{"pid":27443,"tid":27466,"ts":326461856268,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":885,"tdur":91,"tts":414436},
-{"pid":27443,"tid":27466,"ts":326461857092,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":414466},
-{"pid":27443,"tid":27466,"ts":326461857092,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":414466,"id":"0xba46a102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461857123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":414497,"id":"0xaf88a58bf182217a"},
-{"pid":27443,"tid":27466,"ts":326461858008,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":414588},
-{"pid":27443,"tid":27466,"ts":326461858038,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":61,"tts":414619},
-{"pid":27443,"tid":27466,"ts":326461858038,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":414649,"id":"0xba46a202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461858069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":414680,"id":"0xaf88a585f182217a"},
-{"pid":27443,"tid":27466,"ts":326461858527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":414802,"id":"0xaf88abc3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461858527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":414802},
-{"pid":27443,"tid":27466,"ts":326461858527,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":414802,"id":"0xccc5fd02"},
-{"pid":27443,"tid":27466,"ts":326461859869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":414924,"id":"0xaf88abdcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461859900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":414954},
-{"pid":27443,"tid":27466,"ts":326461859900,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":414954,"id":"0xccc5fe06"},
-{"pid":27443,"tid":27466,"ts":326461860114,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":415046},
-{"pid":27443,"tid":27466,"ts":326461860114,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":415077},
-{"pid":27443,"tid":27466,"ts":326461860144,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":415077,"id":"0xc4c2200a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461860480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":415168,"id":"0xaf88abddf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461860510,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":415199},
-{"pid":27443,"tid":27466,"ts":326461860510,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":415199,"id":"0xccc5ff02"},
-{"pid":27443,"tid":27466,"ts":326461872047,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":415321},
-{"pid":27443,"tid":27466,"ts":326461872078,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":91,"tdur":92,"tts":415351},
-{"pid":27443,"tid":27466,"ts":326461872078,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":415351,"id":"0xba46a402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461872108,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":415382},
-{"pid":27443,"tid":27466,"ts":326461872139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":415412,"id":"0xaf88a580f182217a"},
-{"pid":27443,"tid":27466,"ts":326461872444,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":415534},
-{"pid":27443,"tid":27466,"ts":326461872474,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":415565},
-{"pid":27443,"tid":27466,"ts":326461872474,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":415565,"id":"0xba46a502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461872505,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":415595,"id":"0xaf88a581f182217a"},
-{"pid":27443,"tid":27466,"ts":326461873482,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":415687},
-{"pid":27443,"tid":27466,"ts":326461873512,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":415717},
-{"pid":27443,"tid":27466,"ts":326461873543,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":415748,"id":"0xba46a602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461873543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":415778,"id":"0xaf88a583f182217a"},
-{"pid":27443,"tid":27466,"ts":326461873787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":415901,"id":"0xaf88abdef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461873787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":415901},
-{"pid":27443,"tid":27466,"ts":326461873787,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":415931,"id":"0xccc60102"},
-{"pid":27443,"tid":27466,"ts":326461886483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":416023,"id":"0xaf88abdff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461886483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":416023},
-{"pid":27443,"tid":27466,"ts":326461886483,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416023,"id":"0xccc60206"},
-{"pid":27443,"tid":27466,"ts":326461886697,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":416145},
-{"pid":27443,"tid":27466,"ts":326461886727,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":416175},
-{"pid":27443,"tid":27466,"ts":326461886727,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416175,"id":"0xc4c2240a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461887216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":416267,"id":"0xaf88abd8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461887246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":416297},
-{"pid":27443,"tid":27466,"ts":326461887246,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416297,"id":"0xccc60302"},
-{"pid":27443,"tid":27466,"ts":326461891305,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":184,"tts":416419},
-{"pid":27443,"tid":27466,"ts":326461891336,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":416450},
-{"pid":27443,"tid":27466,"ts":326461891366,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416480,"id":"0xba46a802","bp":"e"},
-{"pid":27443,"tid":27477,"ts":326461843327,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":170},"dur":31,"tdur":30,"tts":890035},
-{"pid":27443,"tid":27477,"ts":326461843388,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":170},"tts":890096},
-{"pid":27443,"tid":27477,"ts":326461843602,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":890309},
-{"pid":27443,"tid":27477,"ts":326461843602,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":890340},
-{"pid":27443,"tid":27477,"ts":326461843633,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":890340},
-{"pid":27443,"tid":27477,"ts":326461843633,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":890340},
-{"pid":27443,"tid":27477,"ts":326461843663,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":890370,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461843724,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":890431},
-{"pid":27443,"tid":27477,"ts":326461844029,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":890737},
-{"pid":27443,"tid":27477,"ts":326461844029,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":550,"tdur":274,"tts":890737},
-{"pid":27443,"tid":27477,"ts":326461844060,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":890767},
-{"pid":27443,"tid":27477,"ts":326461844060,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":488,"tdur":214,"tts":890767},
-{"pid":27443,"tid":27477,"ts":326461844121,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":30,"tdur":0,"tts":890859},
-{"pid":27443,"tid":27477,"ts":326461844182,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":890889,"id":"0xaf88abc1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461844579,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":891011,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461844609,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":891042,"id":"0x3000000a1"},
-{"pid":27443,"tid":27477,"ts":326461844609,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":213,"tts":891042},
-{"pid":27443,"tid":27477,"ts":326461844762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":891194,"id":"0xaf88abc2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461844823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":891255,"id":"0xaf88a6a2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461851507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":891378,"id":"0xaf88a58cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461851537,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1557,"tdur":1557,"tts":891408},
-{"pid":27443,"tid":27477,"ts":326461851537,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1557,"tdur":1557,"tts":891408},
-{"pid":27443,"tid":27477,"ts":326461851537,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":31,"tts":891408},
-{"pid":27443,"tid":27477,"ts":326461851568,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1526,"tdur":1526,"tts":891439},
-{"pid":27443,"tid":27477,"ts":326461851568,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1526,"tdur":1526,"tts":891439},
-{"pid":27443,"tid":27477,"ts":326461851598,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":891469},
-{"pid":27443,"tid":27477,"ts":326461851598,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":891469},
-{"pid":27443,"tid":27477,"ts":326461851629,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":891500,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461851629,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":891500},
-{"pid":27443,"tid":27477,"ts":326461851690,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":891561},
-{"pid":27443,"tid":27477,"ts":326461851843,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1220,"tdur":1221,"tts":891713},
-{"pid":27443,"tid":27477,"ts":326461851843,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":171},"dur":366,"tdur":366,"tts":891713},
-{"pid":27443,"tid":27477,"ts":326461852239,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":171},"dur":31,"tdur":31,"tts":892110},
-{"pid":27443,"tid":27477,"ts":326461852300,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":171},"tts":892171},
-{"pid":27443,"tid":27477,"ts":326461852606,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":892476},
-{"pid":27443,"tid":27477,"ts":326461852636,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":892507},
-{"pid":27443,"tid":27477,"ts":326461852636,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":183,"tts":892507},
-{"pid":27443,"tid":27477,"ts":326461852850,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":892720},
-{"pid":27443,"tid":27477,"ts":326461852850,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":892720},
-{"pid":27443,"tid":27477,"ts":326461852880,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":153,"tts":892751},
-{"pid":27443,"tid":27477,"ts":326461852880,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":122,"tts":892751},
-{"pid":27443,"tid":27477,"ts":326461852880,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":892781,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461852911,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":892781},
-{"pid":27443,"tid":27477,"ts":326461852941,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":892812},
-{"pid":27443,"tid":27477,"ts":326461853002,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":892873,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461853033,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":212}},"tts":892904,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461853063,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5726208},"tts":892934,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461853124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":892995,"id":"0xaf88a58df182217a"},
-{"pid":27443,"tid":27477,"ts":326461853124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":892995},
-{"pid":27443,"tid":27477,"ts":326461853155,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":893026},
-{"pid":27443,"tid":27477,"ts":326461853155,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":893026,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461853186,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":893056},
-{"pid":27443,"tid":27477,"ts":326461853186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":893056,"id":"0xaf88a588f182217a"},
-{"pid":27443,"tid":27477,"ts":326461853216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":893087,"id":"0xaf88a58ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461853247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":893117},
-{"pid":27443,"tid":27477,"ts":326461853247,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":893117},
-{"pid":27443,"tid":27477,"ts":326461853247,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":893148,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461853277,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":893148},
-{"pid":27443,"tid":27477,"ts":326461853277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":893148,"id":"0xaf88a589f182217a"},
-{"pid":27443,"tid":27477,"ts":326461853308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":893178,"id":"0xaf88a58ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461853338,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":893209},
-{"pid":27443,"tid":27477,"ts":326461853338,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":893209},
-{"pid":27443,"tid":27477,"ts":326461853338,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":893209,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461853369,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":893239},
-{"pid":27443,"tid":27459,"ts":326461851171,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":31,"tdur":0,"tts":8014069},
-{"pid":27443,"tid":27459,"ts":326461851232,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":0,"tdur":0,"tts":8014100},
-{"pid":27443,"tid":27459,"ts":326461851232,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":31,"tdur":30,"tts":8014100},
-{"pid":27443,"tid":27459,"ts":326461851263,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":30,"tdur":31,"tts":8014130},
-{"pid":27443,"tid":27459,"ts":326461851293,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":0,"tdur":0,"tts":8014161},
-{"pid":27443,"tid":27459,"ts":326461851324,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":0,"tdur":0,"tts":8014191},
-{"pid":27443,"tid":27459,"ts":326461851324,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":30,"tdur":31,"tts":8014191},
-{"pid":27443,"tid":27459,"ts":326461851354,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":171},"dur":31,"tdur":31,"tts":8014222},
-{"pid":27443,"tid":27459,"ts":326461851415,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8014283,"id":"0x3000000a2"},
-{"pid":27443,"tid":27459,"ts":326461851415,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":428,"tdur":92,"tts":8014283},
-{"pid":27443,"tid":27459,"ts":326461851446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8014314,"id":"0xaf88a58cf182217a"},
-{"pid":27443,"tid":27459,"ts":326461851904,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1947},"tts":8014436,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461851904,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8014466,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461851934,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8014466},
-{"pid":27443,"tid":27459,"ts":326461852026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8014558,"id":"0xaf88a577f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461852026,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8014558},
-{"pid":27443,"tid":27459,"ts":326461852056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8014588,"id":"0xaf88a571f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461852087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8014619,"id":"0xaf88a6a1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461852087,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":8014619},
-{"pid":27443,"tid":27459,"ts":326461852117,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8014649},
-{"pid":27443,"tid":27459,"ts":326461852178,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8014710,"id":"0xaf88a570f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461852178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8014710},
-{"pid":27443,"tid":27459,"ts":326461852209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8014741,"id":"0xaf88a6a2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461852209,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":8014741},
-{"pid":27443,"tid":27459,"ts":326461852239,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8014771},
-{"pid":27443,"tid":27459,"ts":326461852270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8014832,"id":"0xaf88a571f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461852300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":214,"tts":8014832},
-{"pid":27443,"tid":27459,"ts":326461852331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8014863,"id":"0xaf88a572f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461852331,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8014863,"id":"0xaf88a6a0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461852331,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":183,"tts":8014863},
-{"pid":27443,"tid":27459,"ts":326461852361,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8014893,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461852361,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.459},"dur":153,"tdur":153,"tts":8014893},
-{"pid":27443,"tid":27459,"ts":326461852392,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8014924},
-{"pid":27443,"tid":27459,"ts":326461852453,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8014985},
-{"pid":27443,"tid":27459,"ts":326461852484,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8015016,"id":"0xaf88a6a3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461852484,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8015016,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461852545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8015077,"id":"0xaf88a572f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461852575,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8015107},
-{"pid":27443,"tid":27459,"ts":326461857275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8015168,"id":"0xaf88a573f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461857306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1221,"tdur":1220,"tts":8015199},
-{"pid":27443,"tid":27459,"ts":326461857336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8015229,"id":"0xaf88a50cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461857336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8015229,"id":"0xaf88a6bcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461857367,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1159,"tts":8015260},
-{"pid":27443,"tid":27459,"ts":326461857428,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1068,"tts":8015321},
-{"pid":27443,"tid":27459,"ts":326461857428,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8015321,"id":"0x3000000a3"},
-{"pid":27443,"tid":27459,"ts":326461857458,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":946,"tdur":946,"tts":8015351},
-{"pid":27443,"tid":27459,"ts":326461857489,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":915,"tdur":915,"tts":8015382},
-{"pid":27443,"tid":27459,"ts":326461857550,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8015443},
-{"pid":27443,"tid":27459,"ts":326461857580,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8015473},
-{"pid":27443,"tid":27459,"ts":326461857611,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8015504},
-{"pid":27443,"tid":27459,"ts":326461857672,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8015565},
-{"pid":27443,"tid":27459,"ts":326461857703,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8015595},
-{"pid":27443,"tid":27459,"ts":326461857733,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8015626},
-{"pid":27443,"tid":27459,"ts":326461857764,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8015656},
-{"pid":27443,"tid":27459,"ts":326461857794,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":550,"tts":8015717},
-{"pid":27443,"tid":27459,"ts":326461857977,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":366,"tts":8015870},
-{"pid":27443,"tid":27459,"ts":326461857977,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8015901},
-{"pid":27443,"tid":27459,"ts":326461858282,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":132,"frame":"0x78c60000"}},"tts":8016175,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461858313,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":8016206},
-{"pid":27443,"tid":27459,"ts":326461858313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8016206,"id":"0xaf88a587f182217a"},
-{"pid":27443,"tid":27459,"ts":326461858343,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8016236},
-{"pid":27443,"tid":27459,"ts":326461858435,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8016328},
-{"pid":27443,"tid":27459,"ts":326461858435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8016328,"id":"0xaf88abc3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461858557,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8016450,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27477,"ts":326461853399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":893270,"id":"0xaf88a588f182217a"},
-{"pid":27443,"tid":27477,"ts":326461853430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1953,"tdur":1954,"tts":893300},
-{"pid":27443,"tid":27477,"ts":326461853430,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1953,"tdur":1954,"tts":893300},
-{"pid":27443,"tid":27477,"ts":326461853430,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":0,"tts":893331},
-{"pid":27443,"tid":27477,"ts":326461853460,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":893331},
-{"pid":27443,"tid":27477,"ts":326461853491,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":893361},
-{"pid":27443,"tid":27477,"ts":326461853491,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":893361},
-{"pid":27443,"tid":27477,"ts":326461853613,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1770,"tdur":1771,"tts":893483},
-{"pid":27443,"tid":27477,"ts":326461853613,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1770,"tdur":1771,"tts":893483},
-{"pid":27443,"tid":27477,"ts":326461853643,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1740,"tdur":1740,"tts":893514},
-{"pid":27443,"tid":27477,"ts":326461853643,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":893514,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461853735,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":893606},
-{"pid":27443,"tid":27477,"ts":326461853765,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":893636},
-{"pid":27443,"tid":27477,"ts":326461853796,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":893667},
-{"pid":27443,"tid":27477,"ts":326461853826,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":893697},
-{"pid":27443,"tid":27477,"ts":326461853857,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":893728},
-{"pid":27443,"tid":27477,"ts":326461853857,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":893728},
-{"pid":27443,"tid":27477,"ts":326461853887,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":893758},
-{"pid":27443,"tid":27477,"ts":326461853918,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":893789},
-{"pid":27443,"tid":27477,"ts":326461853918,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":893819},
-{"pid":27443,"tid":27477,"ts":326461853949,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":893819},
-{"pid":27443,"tid":27477,"ts":326461853979,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":893850},
-{"pid":27443,"tid":27477,"ts":326461854010,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":893880},
-{"pid":27443,"tid":27477,"ts":326461854010,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":893880},
-{"pid":27443,"tid":27477,"ts":326461854040,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":893911},
-{"pid":27443,"tid":27477,"ts":326461854071,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":893941},
-{"pid":27443,"tid":27477,"ts":326461854101,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":893972},
-{"pid":27443,"tid":27477,"ts":326461854132,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894002},
-{"pid":27443,"tid":27477,"ts":326461854132,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894002},
-{"pid":27443,"tid":27477,"ts":326461854162,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":894033},
-{"pid":27443,"tid":27477,"ts":326461854193,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894063},
-{"pid":27443,"tid":27477,"ts":326461854254,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894124},
-{"pid":27443,"tid":27477,"ts":326461854254,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894124},
-{"pid":27443,"tid":27477,"ts":326461854315,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":894185},
-{"pid":27443,"tid":27477,"ts":326461854345,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894216},
-{"pid":27443,"tid":27477,"ts":326461854376,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894246},
-{"pid":27443,"tid":27477,"ts":326461854406,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":894277},
-{"pid":27443,"tid":27477,"ts":326461854437,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894307},
-{"pid":27443,"tid":27477,"ts":326461854467,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":894338},
-{"pid":27443,"tid":27477,"ts":326461854498,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":894369},
-{"pid":27443,"tid":27477,"ts":326461854528,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":894399},
-{"pid":27443,"tid":27477,"ts":326461854559,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":894460},
-{"pid":27443,"tid":27477,"ts":326461854589,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":894460},
-{"pid":27443,"tid":27477,"ts":326461854620,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":894491},
-{"pid":27443,"tid":27477,"ts":326461854650,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":894552},
-{"pid":27443,"tid":27477,"ts":326461854712,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894582},
-{"pid":27443,"tid":27477,"ts":326461854742,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894613},
-{"pid":27443,"tid":27477,"ts":326461854773,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894643},
-{"pid":27443,"tid":27477,"ts":326461854773,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894643},
-{"pid":27443,"tid":27477,"ts":326461854803,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":894674},
-{"pid":27443,"tid":27477,"ts":326461854834,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894704},
-{"pid":27443,"tid":27477,"ts":326461854864,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894735},
-{"pid":27443,"tid":27477,"ts":326461854864,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":894735},
-{"pid":27443,"tid":27477,"ts":326461854895,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":894765},
-{"pid":27443,"tid":27477,"ts":326461854925,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894796},
-{"pid":27443,"tid":27477,"ts":326461854986,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":894887},
-{"pid":27443,"tid":27477,"ts":326461855017,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894887},
-{"pid":27443,"tid":27477,"ts":326461855047,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":894918},
-{"pid":27443,"tid":27477,"ts":326461855078,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":894948},
-{"pid":27443,"tid":27477,"ts":326461855108,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":894979},
-{"pid":27443,"tid":27477,"ts":326461855139,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":895009},
-{"pid":27443,"tid":27477,"ts":326461855169,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":895040},
-{"pid":27443,"tid":27477,"ts":326461855200,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":895070},
-{"pid":27443,"tid":27477,"ts":326461855261,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":895132},
-{"pid":27443,"tid":27477,"ts":326461855291,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":895162},
-{"pid":27443,"tid":27477,"ts":326461855322,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":895193},
-{"pid":27443,"tid":27477,"ts":326461855413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461853},"tts":895284,"id":"0xaf88a5f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461855413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":895284},
-{"pid":27443,"tid":27477,"ts":326461855444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":895315,"id":"0xaf88a589f182217a"},
-{"pid":27443,"tid":27477,"ts":326461855475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":213,"tdur":214,"tts":895345},
-{"pid":27443,"tid":27477,"ts":326461855475,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":213,"tdur":214,"tts":895345},
-{"pid":27443,"tid":27477,"ts":326461855505,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":895376},
-{"pid":27443,"tid":27477,"ts":326461855505,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":895376},
-{"pid":27443,"tid":27477,"ts":326461855536,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":92,"tts":895406},
-{"pid":27443,"tid":27477,"ts":326461855536,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":895437},
-{"pid":27443,"tid":27477,"ts":326461855627,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":31,"tts":895528},
-{"pid":27443,"tid":27477,"ts":326461855658,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":895528},
-{"pid":27443,"tid":27477,"ts":326461856054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":895620,"id":"0xaf88a58af182217a"},
-{"pid":27443,"tid":27477,"ts":326461856054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":1160,"tdur":183,"tts":895620},
-{"pid":27443,"tid":27477,"ts":326461856085,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":1129,"tdur":153,"tts":895650},
-{"pid":27443,"tid":27477,"ts":326461856115,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":895681,"id":"0x3000000a3"},
-{"pid":27443,"tid":27477,"ts":326461856115,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":895681},
-{"pid":27443,"tid":27477,"ts":326461856146,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":895711,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461856177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":895742,"id":"0xaf88a6bcf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461856207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":895772,"id":"0xaf88a573f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461857245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":895833,"id":"0xaf88a58bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461857245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":184,"tts":895833},
-{"pid":27443,"tid":27477,"ts":326461857306,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461853648.0,"frame_time_us":326461853835.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":122,"tts":895895},
-{"pid":27443,"tid":27477,"ts":326461857306,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461853648.0,"frame_time_us":326461853835.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":213,"tdur":122,"tts":895895},
-{"pid":27443,"tid":27477,"ts":326461857367,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":30,"tdur":0,"tts":895956},
-{"pid":27443,"tid":27477,"ts":326461857397,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461870501},"dur":122,"tdur":31,"tts":895986},
-{"pid":27443,"tid":27477,"ts":326461857397,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":895986},
-{"pid":27443,"tid":27477,"ts":326461857519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":896017,"id":"0xaf88a584f182217a"},
-{"pid":27443,"tid":27477,"ts":326461858130,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":896078,"id":"0xaf88a585f182217a"},
-{"pid":27443,"tid":27477,"ts":326461858160,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":896108},
-{"pid":27443,"tid":27477,"ts":326461858160,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":92,"tdur":92,"tts":896108},
-{"pid":27443,"tid":27477,"ts":326461858191,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":896139},
-{"pid":27443,"tid":27477,"ts":326461858191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":896139,"id":"0xaf88a586f182217a"},
-{"pid":27443,"tid":27477,"ts":326461858221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":896169,"id":"0xaf88a6bdf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461858221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":896200,"id":"0xaf88a50df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461858252,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":896230,"id":"0xaf88a586f182217a"},
-{"pid":27443,"tid":27477,"ts":326461858282,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2534,"tdur":1740,"tts":896230},
-{"pid":27443,"tid":27477,"ts":326461858282,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2534,"tdur":1740,"tts":896230},
-{"pid":27443,"tid":27477,"ts":326461858282,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2534,"tdur":1740,"tts":896230},
-{"pid":27443,"tid":27477,"ts":326461858313,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":171},"dur":1312,"tdur":1037,"tts":896261},
-{"pid":27443,"tid":27477,"ts":326461858343,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":171},"dur":611,"tdur":336,"tts":896291},
-{"pid":27443,"tid":27477,"ts":326461858984,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":171},"dur":31,"tdur":30,"tts":896658},
-{"pid":27443,"tid":27477,"ts":326461859015,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":171},"tts":896688},
-{"pid":27443,"tid":27477,"ts":326461859259,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":896932},
-{"pid":27443,"tid":27477,"ts":326461859259,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":31,"tts":896932},
-{"pid":27443,"tid":27477,"ts":326461859259,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":896932},
-{"pid":27443,"tid":27477,"ts":326461859290,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":896963},
-{"pid":27443,"tid":27477,"ts":326461859290,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":896963,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461859381,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":897054},
-{"pid":27443,"tid":27477,"ts":326461859625,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":897298},
-{"pid":27443,"tid":27477,"ts":326461859625,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":611,"tdur":336,"tts":897298},
-{"pid":27443,"tid":27477,"ts":326461859656,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":897329},
-{"pid":27443,"tid":27477,"ts":326461859656,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":549,"tdur":275,"tts":897329},
-{"pid":27443,"tid":27477,"ts":326461859778,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":0,"tdur":0,"tts":897451},
-{"pid":27443,"tid":27477,"ts":326461859808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":897482,"id":"0xaf88abdcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461860236,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":897634,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461860266,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":897665,"id":"0x3000000a2"},
-{"pid":27443,"tid":27477,"ts":326461860266,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":213,"tts":897665},
-{"pid":27443,"tid":27477,"ts":326461860419,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":897817,"id":"0xaf88abddf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461860480,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":897878,"id":"0xaf88a6b8f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461860510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":897909,"id":"0xaf88a50af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461860846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":898000,"id":"0xaf88a587f182217a"},
-{"pid":27443,"tid":27477,"ts":326461860846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":898000},
-{"pid":27443,"tid":27459,"ts":326461858588,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8016481,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461858618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8016511,"id":"0xaf88a50cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461858618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8016511},
-{"pid":27443,"tid":27459,"ts":326461858649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8016542,"id":"0xaf88a50ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461858649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8016542,"id":"0xaf88a6a3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461858679,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":8016572},
-{"pid":27443,"tid":27459,"ts":326461858679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8016572,"id":"0xaf88a6bef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461858740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8016633,"id":"0xaf88a50df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461858740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8016633},
-{"pid":27443,"tid":27459,"ts":326461858740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8016664,"id":"0xaf88a6bdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461858771,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":8016664},
-{"pid":27443,"tid":27459,"ts":326461858771,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":8016664},
-{"pid":27443,"tid":27459,"ts":326461858832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8016725,"id":"0xaf88a50ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461858832,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":8016725},
-{"pid":27443,"tid":27459,"ts":326461859961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461859},"tts":8016847,"id":"0xaf88a554f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461859961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":8016847},
-{"pid":27443,"tid":27459,"ts":326461859992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8016877,"id":"0xaf88a50ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860053,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8016938,"id":"0xaf88a50ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8016938},
-{"pid":27443,"tid":27459,"ts":326461860083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8016969,"id":"0xaf88a508f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8016969,"id":"0xaf88a69ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461860083,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":31,"tts":8016999},
-{"pid":27443,"tid":27459,"ts":326461860114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8016999,"id":"0xaf88a6bff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461860144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8017030,"id":"0xaf88a509f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8017091,"id":"0xaf88a508f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8017091},
-{"pid":27443,"tid":27459,"ts":326461860571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8017213,"id":"0xaf88a50af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860571,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8017213},
-{"pid":27443,"tid":27459,"ts":326461860602,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8017244,"id":"0xaf88a50bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860602,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8017244,"id":"0xaf88a6b8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461860602,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":8017244},
-{"pid":27443,"tid":27459,"ts":326461860632,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8017274},
-{"pid":27443,"tid":27459,"ts":326461860663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8017305,"id":"0xaf88a50bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461860663,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":8017335},
-{"pid":27443,"tid":27459,"ts":326461872596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8017396,"id":"0xaf88a504f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461872596,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1190,"tts":8017396},
-{"pid":27443,"tid":27459,"ts":326461872627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8017427,"id":"0xaf88a505f3d027d2"},{"pid":27443,"tid":27459,"ts":326461872658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8017457,"id":"0xaf88a6b9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461872658,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1129,"tdur":1129,"tts":8017457},
-{"pid":27443,"tid":27459,"ts":326461872719,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1037,"tdur":1038,"tts":8017518},
-{"pid":27443,"tid":27459,"ts":326461872749,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8017549,"id":"0x3000000a4"},
-{"pid":27443,"tid":27459,"ts":326461872780,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":916,"tts":8017579},
-{"pid":27443,"tid":27459,"ts":326461872810,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":855,"tdur":854,"tts":8017610},
-{"pid":27443,"tid":27459,"ts":326461872871,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8017671},
-{"pid":27443,"tid":27459,"ts":326461872902,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":8017701},
-{"pid":27443,"tid":27459,"ts":326461872932,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8017762},
-{"pid":27443,"tid":27459,"ts":326461872993,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8017793},
-{"pid":27443,"tid":27459,"ts":326461873024,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8017823},
-{"pid":27443,"tid":27459,"ts":326461873054,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8017854},
-{"pid":27443,"tid":27459,"ts":326461873085,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":8017884},
-{"pid":27443,"tid":27459,"ts":326461873115,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":550,"tdur":519,"tts":8017945},
-{"pid":27443,"tid":27459,"ts":326461873268,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":366,"tdur":366,"tts":8018068},
-{"pid":27443,"tid":27459,"ts":326461873298,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8018098},
-{"pid":27443,"tid":27459,"ts":326461873573,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":133,"frame":"0x78c60000"}},"tts":8018373,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461873604,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8018403},
-{"pid":27443,"tid":27459,"ts":326461873695,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8018495},
-{"pid":27443,"tid":27459,"ts":326461873726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8018525,"id":"0xaf88abdef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461874061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8018678,"id":"0xaf88a505f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461874092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8485,"tdur":7996,"tts":8018678},
-{"pid":27443,"tid":27459,"ts":326461874122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8018708,"id":"0xaf88a500f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461874122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8018708,"id":"0xaf88a6baf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461874122,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8455,"tdur":7966,"tts":8018708},
-{"pid":27443,"tid":27459,"ts":326461874153,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":172},"tts":8018739},
-{"pid":27443,"tid":27459,"ts":326461874153,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":31,"tts":8018739},
-{"pid":27443,"tid":27477,"ts":326461860877,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":898031},
-{"pid":27443,"tid":27477,"ts":326461870582,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461870},"tts":898092,"id":"0xaf88a584f182217a"},
-{"pid":27443,"tid":27477,"ts":326461870613,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":898123},
-{"pid":27443,"tid":27477,"ts":326461872261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":898184,"id":"0xaf88a580f182217a"},
-{"pid":27443,"tid":27477,"ts":326461872261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":824,"tdur":152,"tts":898184},
-{"pid":27443,"tid":27477,"ts":326461872261,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":152,"tts":898184},
-{"pid":27443,"tid":27477,"ts":326461872291,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":898214,"id":"0x3000000a4"},
-{"pid":27443,"tid":27477,"ts":326461872291,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":898214},
-{"pid":27443,"tid":27477,"ts":326461872322,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":898245,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461872352,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":898275,"id":"0xaf88a6b9f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461872383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":898306,"id":"0xaf88a504f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461873085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":898367,"id":"0xaf88a581f182217a"},
-{"pid":27443,"tid":27477,"ts":326461873115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":898397},
-{"pid":27443,"tid":27477,"ts":326461873146,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461870095.0,"frame_time_us":326461870517.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":61,"tdur":61,"tts":898428},
-{"pid":27443,"tid":27477,"ts":326461873146,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461870095.0,"frame_time_us":326461870517.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":61,"tdur":61,"tts":898428},
-{"pid":27443,"tid":27477,"ts":326461873176,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461887183},"dur":31,"tdur":31,"tts":898458},
-{"pid":27443,"tid":27477,"ts":326461873176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":898458,"id":"0xaf88a582f182217a"},
-{"pid":27443,"tid":27477,"ts":326461873604,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":898550,"id":"0xaf88a583f182217a"},
-{"pid":27443,"tid":27477,"ts":326461873634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":214,"tts":898580},
-{"pid":27443,"tid":27477,"ts":326461873665,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":396,"tdur":183,"tts":898611},
-{"pid":27443,"tid":27477,"ts":326461873665,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":172},"tts":898611},
-{"pid":27443,"tid":27477,"ts":326461873756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":898702,"id":"0xaf88a6baf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461873756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":898733,"id":"0xaf88a506f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461873787,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":898733},
-{"pid":27443,"tid":27477,"ts":326461873817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":898763,"id":"0xaf88a6bbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461873817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":898763,"id":"0xaf88a507f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461873817,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":898763},
-{"pid":27443,"tid":27477,"ts":326461882180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":898886,"id":"0xaf88a59cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461882210,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1282,"tdur":1281,"tts":898886},
-{"pid":27443,"tid":27477,"ts":326461882210,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1252,"tdur":1251,"tts":898886},
-{"pid":27443,"tid":27477,"ts":326461882241,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":898916},
-{"pid":27443,"tid":27477,"ts":326461882241,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1221,"tdur":1221,"tts":898916},
-{"pid":27443,"tid":27477,"ts":326461882241,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1221,"tdur":1221,"tts":898916},
-{"pid":27443,"tid":27477,"ts":326461882271,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":898947},
-{"pid":27443,"tid":27477,"ts":326461882271,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":898947},
-{"pid":27443,"tid":27477,"ts":326461882271,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":898947,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461882302,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":898977},
-{"pid":27443,"tid":27477,"ts":326461882332,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":62,"tdur":61,"tts":899008},
-{"pid":27443,"tid":27477,"ts":326461882455,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":976,"tdur":976,"tts":899130},
-{"pid":27443,"tid":27477,"ts":326461882485,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":172},"dur":275,"tdur":275,"tts":899160},
-{"pid":27443,"tid":27477,"ts":326461882760,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":172},"dur":30,"tdur":30,"tts":899435},
-{"pid":27443,"tid":27477,"ts":326461882821,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":172},"tts":899496},
-{"pid":27443,"tid":27477,"ts":326461883034,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":899740},
-{"pid":27443,"tid":27477,"ts":326461883065,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":366,"tts":899740},
-{"pid":27443,"tid":27477,"ts":326461883095,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":152,"tts":899771},
-{"pid":27443,"tid":27477,"ts":326461883248,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":899923},
-{"pid":27443,"tid":27477,"ts":326461883279,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":899954},
-{"pid":27443,"tid":27477,"ts":326461883279,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":899954},
-{"pid":27443,"tid":27477,"ts":326461883279,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":899954},
-{"pid":27443,"tid":27477,"ts":326461883279,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":899984,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461883309,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":899984},
-{"pid":27443,"tid":27477,"ts":326461883340,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":900015},
-{"pid":27443,"tid":27477,"ts":326461883370,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":900045,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461883401,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":900076,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461883431,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":900106,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461883492,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":900167,"id":"0xaf88a59df182217a"},
-{"pid":27443,"tid":27477,"ts":326461883492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":900167},
-{"pid":27443,"tid":27477,"ts":326461883492,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":30,"tts":900198},
-{"pid":27443,"tid":27477,"ts":326461883523,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":900198,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461883523,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":900198},
-{"pid":27443,"tid":27477,"ts":326461883553,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":900228,"id":"0xaf88a598f182217a"},
-{"pid":27443,"tid":27477,"ts":326461883553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":900259,"id":"0xaf88a59ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461883584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":900259},
-{"pid":27443,"tid":27477,"ts":326461883584,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":900259},
-{"pid":27443,"tid":27459,"ts":326461874184,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":4394,"tdur":4151,"tts":8018800},
-{"pid":27443,"tid":27459,"ts":326461874214,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":31,"tts":8018800},
-{"pid":27443,"tid":27459,"ts":326461874245,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":132,"frame":"0x78c60000"}},"dur":4150,"tdur":3907,"tts":8018861},
-{"pid":27443,"tid":27459,"ts":326461874336,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":4059,"tdur":3846,"tts":8018922},
-{"pid":27443,"tid":27459,"ts":326461874336,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8018953},
-{"pid":27443,"tid":27459,"ts":326461878365,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8022737},
-{"pid":27443,"tid":27459,"ts":326461878426,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":133,"frame":"0x78c60000"}},"dur":152,"tdur":122,"tts":8022798},
-{"pid":27443,"tid":27459,"ts":326461878487,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":8022859},
-{"pid":27443,"tid":27459,"ts":326461878517,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8022890},
-{"pid":27443,"tid":27459,"ts":326461878548,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8022920},
-{"pid":27443,"tid":27459,"ts":326461878578,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3083,"tdur":3052,"tts":8022951},
-{"pid":27443,"tid":27459,"ts":326461878609,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8022981},
-{"pid":27443,"tid":27459,"ts":326461878640,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8023012},
-{"pid":27443,"tid":27459,"ts":326461878640,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8023012},
-{"pid":27443,"tid":27459,"ts":326461879067,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":8023470},
-{"pid":27443,"tid":27459,"ts":326461879097,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":8023470},
-{"pid":27443,"tid":27459,"ts":326461879128,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2502,"tdur":2503,"tts":8023500},
-{"pid":27443,"tid":27459,"ts":326461879158,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2320,"tdur":2319,"tts":8023531},
-{"pid":27443,"tid":27459,"ts":326461879158,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":489,"tdur":488,"tts":8023531},
-{"pid":27443,"tid":27459,"ts":326461879647,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":213,"tts":8024050},
-{"pid":27443,"tid":27459,"ts":326461879891,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":152,"tdur":153,"tts":8024263},
-{"pid":27443,"tid":27459,"ts":326461880043,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8024416},
-{"pid":27443,"tid":27459,"ts":326461880074,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1404,"tdur":1404,"tts":8024446},
-{"pid":27443,"tid":27459,"ts":326461881478,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":0,"tts":8025881},
-{"pid":27443,"tid":27459,"ts":326461881508,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":92,"tts":8025911},
-{"pid":27443,"tid":27459,"ts":326461881661,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":172},"dur":427,"tdur":428,"tts":8026033},
-{"pid":27443,"tid":27459,"ts":326461881661,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":427,"tdur":428,"tts":8026033},
-{"pid":27443,"tid":27459,"ts":326461881905,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":31,"tdur":30,"tts":8026278},
-{"pid":27443,"tid":27459,"ts":326461881936,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":30,"tdur":0,"tts":8026308},
-{"pid":27443,"tid":27459,"ts":326461881966,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":0,"tdur":0,"tts":8026339},
-{"pid":27443,"tid":27459,"ts":326461881966,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":31,"tdur":30,"tts":8026339},
-{"pid":27443,"tid":27459,"ts":326461881997,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":0,"tdur":0,"tts":8026369},
-{"pid":27443,"tid":27459,"ts":326461881997,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":30,"tdur":31,"tts":8026369},
-{"pid":27443,"tid":27459,"ts":326461882027,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":0,"tdur":0,"tts":8026400},
-{"pid":27443,"tid":27459,"ts":326461882058,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":0,"tdur":0,"tts":8026430},
-{"pid":27443,"tid":27459,"ts":326461882058,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":172},"dur":30,"tdur":31,"tts":8026430},
-{"pid":27443,"tid":27459,"ts":326461882088,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8026461,"id":"0x3000000a3"},
-{"pid":27443,"tid":27459,"ts":326461882119,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8026491,"id":"0x3000000a4"},
-{"pid":27443,"tid":27459,"ts":326461882119,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":366,"tdur":92,"tts":8026491},
-{"pid":27443,"tid":27459,"ts":326461882149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8026522,"id":"0xaf88a59cf182217a"},
-{"pid":27443,"tid":27459,"ts":326461882516,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":4667},"tts":8026613,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461882546,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8026644,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461882546,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8026644},
-{"pid":27443,"tid":27459,"ts":326461882638,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8026735,"id":"0xaf88a506f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461882638,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8026735},
-{"pid":27443,"tid":27459,"ts":326461882668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8026766,"id":"0xaf88a6bbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461882668,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8026766},
-{"pid":27443,"tid":27459,"ts":326461882668,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":8026766},
-{"pid":27443,"tid":27459,"ts":326461882729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8026827,"id":"0xaf88a507f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461882729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8026827},
-{"pid":27443,"tid":27459,"ts":326461882760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8026857,"id":"0xaf88a6bef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461882760,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":123,"tts":8026857},
-{"pid":27443,"tid":27459,"ts":326461882760,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8026857,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461882790,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":4.393},"dur":92,"tdur":92,"tts":8026888},
-{"pid":27443,"tid":27459,"ts":326461882790,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8026888},
-{"pid":27443,"tid":27459,"ts":326461882851,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8026949},
-{"pid":27443,"tid":27459,"ts":326461882851,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8026949,"id":"0xaf88a6b4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461882882,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8026980,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461882943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8027041,"id":"0xaf88a500f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461882943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8027041},
-{"pid":27443,"tid":27459,"ts":326461887796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8027132,"id":"0xaf88a501f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461887826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8027132},
-{"pid":27443,"tid":27459,"ts":326461887857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8027163,"id":"0xaf88a502f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461887887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8027193,"id":"0xaf88a6b5f3d0445e"},
-{"pid":27443,"tid":27471,"ts":326461883401,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":91,"tdur":91,"tts":476484},
-{"pid":27443,"tid":27469,"ts":326461883431,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":506210},
-{"pid":27443,"tid":27471,"ts":326461883462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476545,"id":"0xaf88a59df182217a"},
-{"pid":27443,"tid":27469,"ts":326461883492,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":506241},
-{"pid":27443,"tid":27471,"ts":326461883492,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":476575},
-{"pid":27443,"tid":27469,"ts":326461883492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506241,"id":"0xaf88a59ef182217a"},
-{"pid":27443,"tid":27471,"ts":326461883492,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":476575},
-{"pid":27443,"tid":27471,"ts":326461883523,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476606,"id":"0xaf88a59ff182217a"},
-{"pid":27443,"tid":27469,"ts":326461905772,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":506302},
-{"pid":27443,"tid":27469,"ts":326461905833,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":506363},
-{"pid":27443,"tid":27469,"ts":326461905864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506394,"id":"0xaf88a591f182217a"},
-{"pid":27443,"tid":27469,"ts":326461905894,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":506424},
-{"pid":27443,"tid":27469,"ts":326461905925,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":506455},
-{"pid":27443,"tid":27469,"ts":326461905925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506485,"id":"0xaf88a592f182217a"},
-{"pid":27443,"tid":27469,"ts":326461905986,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":506516},
-{"pid":27443,"tid":27469,"ts":326461905986,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":506516},
-{"pid":27443,"tid":27469,"ts":326461906016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506546,"id":"0xaf88a593f182217a"},
-{"pid":27443,"tid":27469,"ts":326461913097,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":61,"tts":506638},
-{"pid":27443,"tid":27469,"ts":326461913128,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":506668},
-{"pid":27443,"tid":27469,"ts":326461913128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506699,"id":"0xaf88a5abf182217a"},
-{"pid":27443,"tid":27471,"ts":326461913158,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":476636},
-{"pid":27443,"tid":27471,"ts":326461913189,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":476667},
-{"pid":27443,"tid":27471,"ts":326461913189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476667,"id":"0xaf88a5a4f182217a"},
-{"pid":27443,"tid":27471,"ts":326461913219,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":476697},
-{"pid":27443,"tid":27471,"ts":326461913219,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":476697},
-{"pid":27443,"tid":27471,"ts":326461913250,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476728,"id":"0xaf88a5a5f182217a"},
-{"pid":27443,"tid":27471,"ts":326461919995,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":476789},
-{"pid":27443,"tid":27471,"ts":326461920056,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":476850},
-{"pid":27443,"tid":27471,"ts":326461920086,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476880,"id":"0xaf88a5a2f182217a"},
-{"pid":27443,"tid":27469,"ts":326461920086,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":506760},
-{"pid":27443,"tid":27469,"ts":326461920117,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":506790},
-{"pid":27443,"tid":27469,"ts":326461920117,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506790,"id":"0xaf88a5a3f182217a"},
-{"pid":27443,"tid":27471,"ts":326461920147,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":476941},
-{"pid":27443,"tid":27471,"ts":326461920147,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":476941},
-{"pid":27443,"tid":27471,"ts":326461920178,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":476972,"id":"0xaf88a5bcf182217a"},
-{"pid":27443,"tid":27498,"ts":326461940932,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":6561,"tdur":5524,"tts":58049},
-{"pid":27443,"tid":27498,"ts":326461940962,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":58080},
-{"pid":27443,"tid":27498,"ts":326461947432,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":63512},
-{"pid":27443,"tid":27469,"ts":326461954513,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":506851},
-{"pid":27443,"tid":27469,"ts":326461954544,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":506882},
-{"pid":27443,"tid":27469,"ts":326461954574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506912,"id":"0xaf88a5b1f182217a"},
-{"pid":27443,"tid":27471,"ts":326461954574,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":477002},
-{"pid":27443,"tid":27471,"ts":326461954574,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":477002},
-{"pid":27443,"tid":27469,"ts":326461954605,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":506943},
-{"pid":27443,"tid":27471,"ts":326461954605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477033,"id":"0xaf88a5b2f182217a"},
-{"pid":27443,"tid":27469,"ts":326461954605,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":506943},
-{"pid":27443,"tid":27469,"ts":326461954605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506943,"id":"0xaf88a5b3f182217a"},
-{"pid":27443,"tid":27471,"ts":326461956833,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":477094},
-{"pid":27443,"tid":27471,"ts":326461956863,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":477124},
-{"pid":27443,"tid":27471,"ts":326461956894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477155,"id":"0xaf88a249f182217a"},
-{"pid":27443,"tid":27471,"ts":326461956894,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":477155},
-{"pid":27443,"tid":27471,"ts":326461956924,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":477186},
-{"pid":27443,"tid":27471,"ts":326461956924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477186,"id":"0xaf88a24af182217a"},
-{"pid":27443,"tid":27471,"ts":326461956955,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":477247},
-{"pid":27443,"tid":27471,"ts":326461956985,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":477247},
-{"pid":27443,"tid":27471,"ts":326461957016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477277,"id":"0xaf88a24bf182217a"},
-{"pid":27443,"tid":27496,"ts":326461989123,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":305,"tdur":275,"tts":82954},
-{"pid":27443,"tid":27496,"ts":326461989154,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":82954},
-{"pid":27443,"tid":27496,"ts":326461989398,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":83229},
-{"pid":27443,"tid":27471,"ts":326461990191,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":62,"tdur":61,"tts":477308},
-{"pid":27443,"tid":27471,"ts":326461990222,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":477369},
-{"pid":27443,"tid":27471,"ts":326461990253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477369,"id":"0xaf88a25cf182217a"},
-{"pid":27443,"tid":27471,"ts":326461990283,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":477399},
-{"pid":27443,"tid":27471,"ts":326461990283,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":477399},
-{"pid":27443,"tid":27477,"ts":326461883584,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":900289,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461883614,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":900289},
-{"pid":27443,"tid":27477,"ts":326461883614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":900289,"id":"0xaf88a599f182217a"},
-{"pid":27443,"tid":27477,"ts":326461883645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":900320,"id":"0xaf88a59ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461883645,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":900320},
-{"pid":27443,"tid":27477,"ts":326461883675,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":0,"tts":900351},
-{"pid":27443,"tid":27477,"ts":326461883675,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":900351,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461883675,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":900351},
-{"pid":27443,"tid":27477,"ts":326461883706,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":900381,"id":"0xaf88a598f182217a"},
-{"pid":27443,"tid":27477,"ts":326461883706,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1404,"tdur":1404,"tts":900381},
-{"pid":27443,"tid":27477,"ts":326461883706,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1373,"tdur":1373,"tts":900381},
-{"pid":27443,"tid":27477,"ts":326461883736,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":900412},
-{"pid":27443,"tid":27477,"ts":326461883736,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":900412},
-{"pid":27443,"tid":27477,"ts":326461883736,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":900412},
-{"pid":27443,"tid":27477,"ts":326461883767,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":61,"tts":900442},
-{"pid":27443,"tid":27477,"ts":326461883858,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1220,"tts":900534},
-{"pid":27443,"tid":27477,"ts":326461883858,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1221,"tdur":1220,"tts":900534},
-{"pid":27443,"tid":27477,"ts":326461883858,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1191,"tdur":1190,"tts":900534},
-{"pid":27443,"tid":27477,"ts":326461883889,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":900564,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461883950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":900625},
-{"pid":27443,"tid":27477,"ts":326461883981,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900656},
-{"pid":27443,"tid":27477,"ts":326461884011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900686},
-{"pid":27443,"tid":27477,"ts":326461884011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":900686},
-{"pid":27443,"tid":27477,"ts":326461884042,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900717},
-{"pid":27443,"tid":27477,"ts":326461884072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900747},
-{"pid":27443,"tid":27477,"ts":326461884072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":900747},
-{"pid":27443,"tid":27477,"ts":326461884103,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900778},
-{"pid":27443,"tid":27477,"ts":326461884103,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":900778},
-{"pid":27443,"tid":27477,"ts":326461884133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900808},
-{"pid":27443,"tid":27477,"ts":326461884133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":900839},
-{"pid":27443,"tid":27477,"ts":326461884164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900839},
-{"pid":27443,"tid":27477,"ts":326461884194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900869},
-{"pid":27443,"tid":27477,"ts":326461884194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":900869},
-{"pid":27443,"tid":27477,"ts":326461884225,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900900},
-{"pid":27443,"tid":27477,"ts":326461884225,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":900900},
-{"pid":27443,"tid":27477,"ts":326461884255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900930},
-{"pid":27443,"tid":27477,"ts":326461884286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900961},
-{"pid":27443,"tid":27477,"ts":326461884286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":900961},
-{"pid":27443,"tid":27477,"ts":326461884316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":900991},
-{"pid":27443,"tid":27477,"ts":326461884347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901022},
-{"pid":27443,"tid":27477,"ts":326461884347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901022},
-{"pid":27443,"tid":27477,"ts":326461884377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901052},
-{"pid":27443,"tid":27477,"ts":326461884377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":901052},
-{"pid":27443,"tid":27477,"ts":326461884408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901083},
-{"pid":27443,"tid":27477,"ts":326461884408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":901083},
-{"pid":27443,"tid":27477,"ts":326461884438,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901114},
-{"pid":27443,"tid":27477,"ts":326461884469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901144},
-{"pid":27443,"tid":27477,"ts":326461884469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":901144},
-{"pid":27443,"tid":27477,"ts":326461884499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901175},
-{"pid":27443,"tid":27477,"ts":326461884499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":901175},
-{"pid":27443,"tid":27477,"ts":326461884530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901205},
-{"pid":27443,"tid":27477,"ts":326461884530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":901205},
-{"pid":27443,"tid":27477,"ts":326461884560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901236},
-{"pid":27443,"tid":27477,"ts":326461884560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":901236},
-{"pid":27443,"tid":27477,"ts":326461884591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901266},
-{"pid":27443,"tid":27477,"ts":326461884621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901297},
-{"pid":27443,"tid":27477,"ts":326461884621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901297},
-{"pid":27443,"tid":27477,"ts":326461884652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901327},
-{"pid":27443,"tid":27477,"ts":326461884652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":901327},
-{"pid":27443,"tid":27477,"ts":326461884683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901358},
-{"pid":27443,"tid":27477,"ts":326461884683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":901358},
-{"pid":27443,"tid":27477,"ts":326461884713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901388},
-{"pid":27443,"tid":27477,"ts":326461884744,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901419},
-{"pid":27443,"tid":27477,"ts":326461884805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901480},
-{"pid":27443,"tid":27477,"ts":326461884805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":901510},
-{"pid":27443,"tid":27477,"ts":326461884835,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":901510},
-{"pid":27443,"tid":27477,"ts":326461884866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":901541},
-{"pid":27443,"tid":27477,"ts":326461884896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901571},
-{"pid":27443,"tid":27477,"ts":326461884896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":901571},
-{"pid":27443,"tid":27477,"ts":326461884927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":901602},
-{"pid":27443,"tid":27477,"ts":326461884957,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":901632},
-{"pid":27443,"tid":27477,"ts":326461884988,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":901663},
-{"pid":27443,"tid":27477,"ts":326461885018,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":901693},
-{"pid":27443,"tid":27477,"ts":326461885018,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":901693},
-{"pid":27443,"tid":27477,"ts":326461885049,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":901724},
-{"pid":27443,"tid":27477,"ts":326461885079,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":901754,"id":"0xaf88a59af182217a"},
-{"pid":27443,"tid":27477,"ts":326461885110,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":901785,"id":"0xaf88a599f182217a"},
-{"pid":27443,"tid":27477,"ts":326461885110,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":901785},
-{"pid":27443,"tid":27477,"ts":326461885110,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":901785},
-{"pid":27443,"tid":27477,"ts":326461885140,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":901815},
-{"pid":27443,"tid":27477,"ts":326461885140,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":901815},
-{"pid":27443,"tid":27477,"ts":326461885140,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":62,"tts":901815},
-{"pid":27443,"tid":27477,"ts":326461885171,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":901846},
-{"pid":27443,"tid":27477,"ts":326461885201,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":901877},
-{"pid":27443,"tid":27477,"ts":326461885232,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":901907},
-{"pid":27443,"tid":27477,"ts":326461885262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":901938,"id":"0xaf88a59af182217a"},
-{"pid":27443,"tid":27477,"ts":326461885262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2076,"tdur":1739,"tts":901938},
-{"pid":27443,"tid":27477,"ts":326461885262,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2045,"tdur":1709,"tts":901938},
-{"pid":27443,"tid":27477,"ts":326461885262,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":901938},
-{"pid":27443,"tid":27477,"ts":326461885293,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2014,"tdur":1679,"tts":901968},
-{"pid":27443,"tid":27477,"ts":326461885293,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":172},"dur":946,"tdur":915,"tts":901999},
-{"pid":27443,"tid":27477,"ts":326461885323,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":172},"dur":275,"tdur":274,"tts":901999},
-{"pid":27443,"tid":27477,"ts":326461885598,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":172},"dur":31,"tdur":31,"tts":902273},
-{"pid":27443,"tid":27477,"ts":326461885629,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":172},"tts":902304},
-{"pid":27443,"tid":27477,"ts":326461885812,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":902487},
-{"pid":27443,"tid":27477,"ts":326461885842,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":902517},
-{"pid":27443,"tid":27477,"ts":326461885842,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":902517},
-{"pid":27443,"tid":27477,"ts":326461885842,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":902517},
-{"pid":27443,"tid":27477,"ts":326461885873,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":902548,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461885934,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":902609},
-{"pid":27443,"tid":27477,"ts":326461886239,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":902914},
-{"pid":27443,"tid":27477,"ts":326461886239,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":305,"tts":902914},
-{"pid":27443,"tid":27477,"ts":326461886270,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":902945},
-{"pid":27443,"tid":27477,"ts":326461886270,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":518,"tdur":244,"tts":902945},
-{"pid":27443,"tid":27477,"ts":326461886361,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":0,"tdur":0,"tts":903036},
-{"pid":27443,"tid":27477,"ts":326461886392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":903067,"id":"0xaf88abdff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461886819,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":903219,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461886849,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":903280,"id":"0x3000000a3"},
-{"pid":27443,"tid":27477,"ts":326461886880,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":903280,"id":"0x3000000a4"},
-{"pid":27443,"tid":27477,"ts":326461886880,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":336,"tdur":275,"tts":903280},
-{"pid":27443,"tid":27477,"ts":326461887155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":903494,"id":"0xaf88abd8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461887246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":903586,"id":"0xaf88a6b5f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461887246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":903586,"id":"0xaf88a501f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461887368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461887},"tts":903708,"id":"0xaf88a582f182217a"},
-{"pid":27443,"tid":27477,"ts":326461887368,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":903708},
-{"pid":27443,"tid":27477,"ts":326461891489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":903769,"id":"0xaf88a59bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461891519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":903799},
-{"pid":27443,"tid":27477,"ts":326461891519,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":153,"tdur":153,"tts":903799},
-{"pid":27443,"tid":27477,"ts":326461891550,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":903830,"id":"0x3000000a5"},
-{"pid":27443,"tid":27477,"ts":326461891550,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":903830},
-{"pid":27443,"tid":27477,"ts":326461891580,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":903860,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461891611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":903891,"id":"0xaf88a6b7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461891611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":903891,"id":"0xaf88a51cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461891824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":903982,"id":"0xaf88a594f182217a"},
-{"pid":27443,"tid":27477,"ts":326461891824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":153,"tts":904013},
-{"pid":27443,"tid":27477,"ts":326461891855,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461886776.0,"frame_time_us":326461887198.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":153,"tts":904013},
-{"pid":27443,"tid":27477,"ts":326461891885,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461886776.0,"frame_time_us":326461887198.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":122,"tdur":123,"tts":904043},
-{"pid":27443,"tid":27477,"ts":326461891946,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461903864},"dur":61,"tdur":61,"tts":904105},
-{"pid":27443,"tid":27459,"ts":326461887887,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":61,"tdur":31,"tts":8027193},
-{"pid":27443,"tid":27459,"ts":326461887918,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8027224},
-{"pid":27443,"tid":27459,"ts":326461887979,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8027285,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461887979,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8027285,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461888040,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8027346,"id":"0xaf88a502f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461888040,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8027346},
-{"pid":27443,"tid":27459,"ts":326461888040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8027376,"id":"0xaf88a503f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461888070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8027376,"id":"0xaf88a6b4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461888070,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":8027376},
-{"pid":27443,"tid":27459,"ts":326461888101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8027407,"id":"0xaf88a6b6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461888131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8027437,"id":"0xaf88a503f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461888131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8027437},
-{"pid":27443,"tid":27459,"ts":326461891672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8027559,"id":"0xaf88a51cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461891702,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1191,"tdur":1190,"tts":8027590},
-{"pid":27443,"tid":27459,"ts":326461891702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8027620,"id":"0xaf88a51df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461891733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8027620,"id":"0xaf88a6b7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461891733,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1160,"tdur":1160,"tts":8027620},
-{"pid":27443,"tid":27459,"ts":326461891794,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1099,"tdur":1069,"tts":8027681},
-{"pid":27443,"tid":27459,"ts":326461891824,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8027712,"id":"0x3000000a5"},
-{"pid":27443,"tid":27459,"ts":326461891855,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":915,"tdur":915,"tts":8027743},
-{"pid":27443,"tid":27459,"ts":326461891885,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":8027773},
-{"pid":27443,"tid":27459,"ts":326461891916,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8027834},
-{"pid":27443,"tid":27459,"ts":326461892007,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8027895},
-{"pid":27443,"tid":27459,"ts":326461892038,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8027926},
-{"pid":27443,"tid":27459,"ts":326461892068,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8027956},
-{"pid":27443,"tid":27459,"ts":326461892068,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8027987},
-{"pid":27443,"tid":27459,"ts":326461892099,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8027987},
-{"pid":27443,"tid":27459,"ts":326461892130,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8028017},
-{"pid":27443,"tid":27459,"ts":326461892160,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":610,"tdur":610,"tts":8028048},
-{"pid":27443,"tid":27459,"ts":326461892313,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":427,"tdur":428,"tts":8028200},
-{"pid":27443,"tid":27459,"ts":326461892343,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8028231},
-{"pid":27443,"tid":27459,"ts":326461892618,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":134,"frame":"0x78c60000"}},"tts":8028536,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461892648,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":8028536},
-{"pid":27443,"tid":27459,"ts":326461892648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8028567,"id":"0xaf88a596f182217a"},
-{"pid":27443,"tid":27459,"ts":326461892709,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8028597},
-{"pid":27443,"tid":27459,"ts":326461892801,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8028689},
-{"pid":27443,"tid":27459,"ts":326461892831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8028719,"id":"0xaf88abd9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461892923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8028811,"id":"0xaf88a51df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461892954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":10834,"tdur":8027,"tts":8028841},
-{"pid":27443,"tid":27459,"ts":326461893198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8028872,"id":"0xaf88a51ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461893228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8028902,"id":"0xaf88a6b0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461893228,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":10530,"tdur":7936,"tts":8028902},
-{"pid":27443,"tid":27459,"ts":326461893228,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":173},"tts":8028902},
-{"pid":27443,"tid":27459,"ts":326461893259,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":8028933},
-{"pid":27443,"tid":27459,"ts":326461893289,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3602,"tdur":3602,"tts":8028963},
-{"pid":27443,"tid":27459,"ts":326461893320,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":0,"tdur":0,"tts":8028994},
-{"pid":27443,"tid":27459,"ts":326461893350,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":134,"frame":"0x78c60000"}},"dur":3541,"tdur":3541,"tts":8029024},
-{"pid":27443,"tid":27459,"ts":326461893411,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3449,"tdur":3449,"tts":8029085},
-{"pid":27443,"tid":27459,"ts":326461893442,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8029116},
-{"pid":27443,"tid":27459,"ts":326461896830,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8032534},
-{"pid":27443,"tid":27459,"ts":326461896891,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":5585,"tdur":3418,"tts":8032565},
-{"pid":27443,"tid":27459,"ts":326461896921,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8032626},
-{"pid":27443,"tid":27459,"ts":326461896952,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8032626},
-{"pid":27443,"tid":27459,"ts":326461896952,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8032656},
-{"pid":27443,"tid":27459,"ts":326461897562,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":8033145},
-{"pid":27443,"tid":27459,"ts":326461897593,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":8033175},
-{"pid":27443,"tid":27459,"ts":326461897623,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4853,"tdur":2777,"tts":8033206},
-{"pid":27443,"tid":27459,"ts":326461897623,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":4578,"tdur":2472,"tts":8033236},
-{"pid":27443,"tid":27459,"ts":326461897654,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":824,"tdur":519,"tts":8033236},
-{"pid":27443,"tid":27459,"ts":326461898478,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":213,"tdur":214,"tts":8033755},
-{"pid":27443,"tid":27459,"ts":326461898691,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":8033969},
-{"pid":27443,"tid":27459,"ts":326461898783,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":30,"tdur":31,"tts":8034060},
-{"pid":27443,"tid":27459,"ts":326461898813,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":3358,"tdur":1587,"tts":8034091},
-{"pid":27443,"tid":27459,"ts":326461902201,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":8035708},
-{"pid":27443,"tid":27466,"ts":326461891397,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":416511},
-{"pid":27443,"tid":27466,"ts":326461891428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":416541,"id":"0xaf88a59bf182217a"},
-{"pid":27443,"tid":27466,"ts":326461891733,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":91,"tdur":92,"tts":416633},
-{"pid":27443,"tid":27466,"ts":326461891763,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":416664},
-{"pid":27443,"tid":27466,"ts":326461891763,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416664,"id":"0xba46a902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461891794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":416694,"id":"0xaf88a594f182217a"},
-{"pid":27443,"tid":27466,"ts":326461892648,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":416755},
-{"pid":27443,"tid":27466,"ts":326461892679,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":416786},
-{"pid":27443,"tid":27466,"ts":326461892679,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416786,"id":"0xba46aa02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461892709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":416816,"id":"0xaf88a597f182217a"},
-{"pid":27443,"tid":27466,"ts":326461892893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":416938,"id":"0xaf88abd9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461892893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":416938},
-{"pid":27443,"tid":27466,"ts":326461892893,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":416938,"id":"0xccc60502"},
-{"pid":27443,"tid":27466,"ts":326461906138,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":417060},
-{"pid":27443,"tid":27466,"ts":326461906199,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":417121},
-{"pid":27443,"tid":27466,"ts":326461906230,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":417152,"id":"0xba46ac02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461906260,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":417182},
-{"pid":27443,"tid":27466,"ts":326461906291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":417213,"id":"0xaf88a5acf182217a"},
-{"pid":27443,"tid":27466,"ts":326461906840,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":214,"tts":417335},
-{"pid":27443,"tid":27466,"ts":326461906871,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":183,"tdur":152,"tts":417366},
-{"pid":27443,"tid":27466,"ts":326461906901,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":417396,"id":"0xba46ad02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461906932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":417427,"id":"0xaf88a5adf182217a"},
-{"pid":27443,"tid":27466,"ts":326461906932,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":30,"tts":417427},
-{"pid":27443,"tid":27466,"ts":326461910167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":417610,"id":"0xaf88abdaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461910167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":417610},
-{"pid":27443,"tid":27466,"ts":326461910198,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":417640,"id":"0xccc60702"},
-{"pid":27443,"tid":27466,"ts":326461912242,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":417762,"id":"0xaf88abdbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461912273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":417762},
-{"pid":27443,"tid":27466,"ts":326461912273,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":417762,"id":"0xccc60806"},
-{"pid":27443,"tid":27466,"ts":326461912456,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":417854},
-{"pid":27443,"tid":27466,"ts":326461912487,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":417884},
-{"pid":27443,"tid":27466,"ts":326461912517,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":417915,"id":"0xc4c2270a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461912822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":418006,"id":"0xaf88abd4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461912822,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":418006},
-{"pid":27443,"tid":27466,"ts":326461912822,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418006,"id":"0xccc60902"},
-{"pid":27443,"tid":27466,"ts":326461914592,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":418129},
-{"pid":27443,"tid":27466,"ts":326461914623,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":418159},
-{"pid":27443,"tid":27466,"ts":326461914623,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418159,"id":"0xba46ae02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461914684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":418220,"id":"0xaf88a5a0f182217a"},
-{"pid":27443,"tid":27466,"ts":326461922284,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":418312},
-{"pid":27443,"tid":27466,"ts":326461922314,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":91,"tts":418373},
-{"pid":27443,"tid":27466,"ts":326461922345,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418373,"id":"0xba46b002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461922375,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":418403},
-{"pid":27443,"tid":27466,"ts":326461922406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":418434,"id":"0xaf88a5bff182217a"},
-{"pid":27443,"tid":27466,"ts":326461922711,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":418525},
-{"pid":27443,"tid":27466,"ts":326461922741,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":418556},
-{"pid":27443,"tid":27466,"ts":326461922741,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418556,"id":"0xba46b102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461922772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":418586,"id":"0xaf88a5b8f182217a"},
-{"pid":27443,"tid":27466,"ts":326461924023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":418739,"id":"0xaf88abd5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461924023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":418739},
-{"pid":27443,"tid":27466,"ts":326461924023,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418739,"id":"0xccc60b02"},
-{"pid":27443,"tid":27466,"ts":326461924420,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":418861,"id":"0xaf88abd6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461924451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":418861},
-{"pid":27443,"tid":27466,"ts":326461924451,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418861,"id":"0xccc60c06"},
-{"pid":27443,"tid":27466,"ts":326461924634,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":418953},
-{"pid":27443,"tid":27466,"ts":326461924664,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":418983},
-{"pid":27443,"tid":27466,"ts":326461924664,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":418983,"id":"0xc4c22a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461925030,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":419105,"id":"0xaf88abd7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461925030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":419105},
-{"pid":27443,"tid":27466,"ts":326461925030,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":419105,"id":"0xccc60d02"},
-{"pid":27443,"tid":27466,"ts":326461926648,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":419197},
-{"pid":27443,"tid":27466,"ts":326461926679,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":91,"tdur":92,"tts":419227},
-{"pid":27443,"tid":27466,"ts":326461926679,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":419227,"id":"0xba46b202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461926740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":419288,"id":"0xaf88a5bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461891946,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":904105,"id":"0xaf88a595f182217a"},
-{"pid":27443,"tid":27477,"ts":326461891946,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":904105},
-{"pid":27443,"tid":27477,"ts":326461892740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":904257,"id":"0xaf88a596f182217a"},
-{"pid":27443,"tid":27477,"ts":326461892770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":0,"tts":904288},
-{"pid":27443,"tid":27477,"ts":326461892770,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":904288},
-{"pid":27443,"tid":27477,"ts":326461892801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":904318,"id":"0xaf88a597f182217a"},
-{"pid":27443,"tid":27477,"ts":326461892801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":214,"tts":904318},
-{"pid":27443,"tid":27477,"ts":326461892831,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":397,"tdur":183,"tts":904349},
-{"pid":27443,"tid":27477,"ts":326461892831,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":173},"tts":904349},
-{"pid":27443,"tid":27477,"ts":326461892923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":904440,"id":"0xaf88a6b0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461892923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":904440,"id":"0xaf88a51ef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461892923,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":904440},
-{"pid":27443,"tid":27477,"ts":326461893167,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":904471},
-{"pid":27443,"tid":27477,"ts":326461893198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":904501,"id":"0xaf88a6b1f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461893228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":904532,"id":"0xaf88a518f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461903239,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":904654,"id":"0xaf88a590f182217a"},
-{"pid":27443,"tid":27477,"ts":326461903239,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":3113,"tdur":2655,"tts":904654},
-{"pid":27443,"tid":27477,"ts":326461903269,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":3083,"tdur":2625,"tts":904684},
-{"pid":27443,"tid":27477,"ts":326461903269,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":31,"tts":904684},
-{"pid":27443,"tid":27477,"ts":326461903300,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":3052,"tdur":2594,"tts":904715},
-{"pid":27443,"tid":27477,"ts":326461903330,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2991,"tdur":2534,"tts":904745},
-{"pid":27443,"tid":27477,"ts":326461903330,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":62,"tdur":61,"tts":904745},
-{"pid":27443,"tid":27477,"ts":326461903361,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":904776},
-{"pid":27443,"tid":27477,"ts":326461903392,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":904806,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461903392,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":31,"tts":904806},
-{"pid":27443,"tid":27477,"ts":326461903453,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":91,"tdur":91,"tts":904868},
-{"pid":27443,"tid":27477,"ts":326461903666,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":2625,"tdur":2167,"tts":905081},
-{"pid":27443,"tid":27477,"ts":326461903697,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":173},"dur":610,"tdur":549,"tts":905112},
-{"pid":27443,"tid":27477,"ts":326461904338,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":173},"dur":91,"tdur":61,"tts":905692},
-{"pid":27443,"tid":27477,"ts":326461904460,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":173},"tts":905814},
-{"pid":27443,"tid":27477,"ts":326461905101,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":906455},
-{"pid":27443,"tid":27477,"ts":326461905101,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1190,"tdur":763,"tts":906485},
-{"pid":27443,"tid":27477,"ts":326461905131,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":366,"tdur":336,"tts":906485},
-{"pid":27443,"tid":27477,"ts":326461905497,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":906821},
-{"pid":27443,"tid":27477,"ts":326461905528,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":906851},
-{"pid":27443,"tid":27477,"ts":326461905558,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":672,"tdur":275,"tts":906882},
-{"pid":27443,"tid":27477,"ts":326461905589,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":244,"tdur":245,"tts":906912},
-{"pid":27443,"tid":27477,"ts":326461905589,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":906912,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461905650,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":31,"tts":906973},
-{"pid":27443,"tid":27477,"ts":326461905681,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":91,"tdur":61,"tts":907004},
-{"pid":27443,"tid":27477,"ts":326461905803,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":907126,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461906260,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":907218,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461906260,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":907248,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461906383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461903},"tts":907340,"id":"0xaf88a595f182217a"},
-{"pid":27443,"tid":27477,"ts":326461906383,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":518,"tdur":30,"tts":907340},
-{"pid":27443,"tid":27477,"ts":326461906932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":907401},
-{"pid":27443,"tid":27477,"ts":326461906932,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":907401},
-{"pid":27443,"tid":27477,"ts":326461907084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":907523,"id":"0xaf88a591f182217a"},
-{"pid":27443,"tid":27477,"ts":326461907115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":907553},
-{"pid":27443,"tid":27477,"ts":326461907115,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":153,"tdur":153,"tts":907553},
-{"pid":27443,"tid":27477,"ts":326461907146,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":907584,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461907176,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":907614},
-{"pid":27443,"tid":27477,"ts":326461907237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":907675,"id":"0xaf88a5aef182217a"},
-{"pid":27443,"tid":27477,"ts":326461907268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":907706,"id":"0xaf88a592f182217a"},
-{"pid":27443,"tid":27477,"ts":326461907298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":907736},
-{"pid":27443,"tid":27477,"ts":326461907329,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":122,"tdur":92,"tts":907767},
-{"pid":27443,"tid":27477,"ts":326461907359,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":907797,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461907359,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":31,"tts":907828},
-{"pid":27443,"tid":27477,"ts":326461907390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":907828,"id":"0xaf88a5aff182217a"},
-{"pid":27443,"tid":27477,"ts":326461907451,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":907889,"id":"0xaf88a593f182217a"},
-{"pid":27443,"tid":27477,"ts":326461907451,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":907889},
-{"pid":27443,"tid":27477,"ts":326461907542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":428,"tdur":183,"tts":907920},
-{"pid":27443,"tid":27477,"ts":326461907542,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":61,"tts":907920},
-{"pid":27443,"tid":27477,"ts":326461907847,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":123,"tdur":91,"tts":907981},
-{"pid":27443,"tid":27459,"ts":326461902262,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":183,"tdur":184,"tts":8035769},
-{"pid":27443,"tid":27459,"ts":326461902476,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":173},"dur":610,"tdur":610,"tts":8035983},
-{"pid":27443,"tid":27459,"ts":326461902506,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":580,"tdur":579,"tts":8036014},
-{"pid":27443,"tid":27459,"ts":326461902873,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":173},"dur":30,"tdur":30,"tts":8036380},
-{"pid":27443,"tid":27459,"ts":326461902934,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":173},"dur":0,"tdur":0,"tts":8036441},
-{"pid":27443,"tid":27459,"ts":326461902964,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":173},"dur":0,"tdur":0,"tts":8036471},
-{"pid":27443,"tid":27459,"ts":326461902964,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":173},"dur":31,"tdur":0,"tts":8036502},
-{"pid":27443,"tid":27459,"ts":326461902995,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":173},"dur":30,"tdur":30,"tts":8036502},
-{"pid":27443,"tid":27459,"ts":326461903025,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":173},"dur":31,"tdur":31,"tts":8036532},
-{"pid":27443,"tid":27459,"ts":326461903086,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8036593,"id":"0x3000000a5"},
-{"pid":27443,"tid":27459,"ts":326461903117,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":580,"tdur":153,"tts":8036624},
-{"pid":27443,"tid":27459,"ts":326461903147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8036654,"id":"0xaf88a590f182217a"},
-{"pid":27443,"tid":27459,"ts":326461903727,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8036838},
-{"pid":27443,"tid":27459,"ts":326461903849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8036929,"id":"0xaf88a51ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461903849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8036929},
-{"pid":27443,"tid":27459,"ts":326461903880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8036990,"id":"0xaf88a6b1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461903910,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":8036990},
-{"pid":27443,"tid":27459,"ts":326461903910,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":8036990},
-{"pid":27443,"tid":27459,"ts":326461904032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8037112,"id":"0xaf88a51ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461904063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":8037143},
-{"pid":27443,"tid":27459,"ts":326461904124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8037204,"id":"0xaf88a518f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461904124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":8037234},
-{"pid":27443,"tid":27459,"ts":326461908488,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8037356,"id":"0xaf88a519f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461908488,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1679,"tdur":1404,"tts":8037387},
-{"pid":27443,"tid":27459,"ts":326461908549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8037417,"id":"0xaf88a51af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461908549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8037417,"id":"0xaf88a6b2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461908580,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1587,"tdur":1343,"tts":8037448},
-{"pid":27443,"tid":27459,"ts":326461908641,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1496,"tdur":1251,"tts":8037509},
-{"pid":27443,"tid":27459,"ts":326461908672,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8037540,"id":"0x3000000a6"},
-{"pid":27443,"tid":27459,"ts":326461908702,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":1343,"tdur":1099,"tts":8037570},
-{"pid":27443,"tid":27459,"ts":326461908733,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":1312,"tdur":1068,"tts":8037601},
-{"pid":27443,"tid":27459,"ts":326461908824,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8037692},
-{"pid":27443,"tid":27459,"ts":326461908855,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8037753},
-{"pid":27443,"tid":27459,"ts":326461908916,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8037784},
-{"pid":27443,"tid":27459,"ts":326461908946,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8037814},
-{"pid":27443,"tid":27459,"ts":326461908977,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8037845},
-{"pid":27443,"tid":27459,"ts":326461909007,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8037906},
-{"pid":27443,"tid":27459,"ts":326461909068,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8037936},
-{"pid":27443,"tid":27459,"ts":326461909129,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":916,"tdur":672,"tts":8037997},
-{"pid":27443,"tid":27459,"ts":326461909312,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":672,"tdur":397,"tts":8038211},
-{"pid":27443,"tid":27459,"ts":326461909312,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":0,"tts":8038211},
-{"pid":27443,"tid":27459,"ts":326461909618,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8038242},
-{"pid":27443,"tid":27459,"ts":326461909892,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":135,"frame":"0x78c60000"}},"tts":8038516,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461909923,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":30,"tts":8038547},
-{"pid":27443,"tid":27459,"ts":326461909923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8038547,"id":"0xaf88a5a9f182217a"},{"pid":27443,"tid":27459,"ts":326461909953,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8038577},
-{"pid":27443,"tid":27459,"ts":326461910075,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":62,"tdur":61,"tts":8038699},
-{"pid":27443,"tid":27459,"ts":326461910075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8038699,"id":"0xaf88abdaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461910198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8038821,"id":"0xaf88a51af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461910228,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8038852},
-{"pid":27443,"tid":27459,"ts":326461910991,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8038944,"id":"0xaf88a51bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461910991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":8210,"tdur":7538,"tts":8038944},
-{"pid":27443,"tid":27459,"ts":326461911022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8038974,"id":"0xaf88a514f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461911022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8038974,"id":"0xaf88a6b3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461911022,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8149,"tdur":7508,"tts":8038974},
-{"pid":27443,"tid":27459,"ts":326461911052,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":174},"tts":8039005},
-{"pid":27443,"tid":27459,"ts":326461911052,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":8039005},
-{"pid":27443,"tid":27459,"ts":326461911083,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":3632,"tdur":3632,"tts":8039035},
-{"pid":27443,"tid":27459,"ts":326461911113,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":8039066},
-{"pid":27443,"tid":27459,"ts":326461911144,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":135,"frame":"0x78c60000"}},"dur":3571,"tdur":3571,"tts":8039096},
-{"pid":27443,"tid":27459,"ts":326461911205,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":3510,"tdur":3448,"tts":8039188},
-{"pid":27443,"tid":27459,"ts":326461911235,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8039188},
-{"pid":27443,"tid":27459,"ts":326461914684,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8042636},
-{"pid":27443,"tid":27459,"ts":326461914715,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3174,"tdur":3082,"tts":8042698},
-{"pid":27443,"tid":27477,"ts":326461907878,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":908011,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461907909,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":908042},
-{"pid":27443,"tid":27477,"ts":326461908000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":908133,"id":"0xaf88a5acf182217a"},
-{"pid":27443,"tid":27477,"ts":326461908031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":908164},
-{"pid":27443,"tid":27477,"ts":326461908031,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":305,"tdur":305,"tts":908164},
-{"pid":27443,"tid":27477,"ts":326461908092,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":908225,"id":"0x3000000a6"},
-{"pid":27443,"tid":27477,"ts":326461908122,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":31,"tts":908255},
-{"pid":27443,"tid":27477,"ts":326461908183,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":908316,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461908214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":908347,"id":"0xaf88a6b2f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461908244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":908377,"id":"0xaf88a519f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461908366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":908499,"id":"0xaf88a5adf182217a"},
-{"pid":27443,"tid":27477,"ts":326461908366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":908499},
-{"pid":27443,"tid":27477,"ts":326461908427,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461903693.0,"frame_time_us":326461903880.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":123,"tts":908560},
-{"pid":27443,"tid":27477,"ts":326461908458,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461903693.0,"frame_time_us":326461903880.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":92,"tts":908591},
-{"pid":27443,"tid":27477,"ts":326461908488,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461920546},"dur":61,"tdur":61,"tts":908622},
-{"pid":27443,"tid":27477,"ts":326461908519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":908652,"id":"0xaf88a5a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461908580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":908713,"id":"0xaf88a5aef182217a"},
-{"pid":27443,"tid":27477,"ts":326461908611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2044,"tdur":1678,"tts":908744},
-{"pid":27443,"tid":27477,"ts":326461908611,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2044,"tdur":1678,"tts":908744},
-{"pid":27443,"tid":27477,"ts":326461908641,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":908774},
-{"pid":27443,"tid":27477,"ts":326461908641,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":908774},
-{"pid":27443,"tid":27477,"ts":326461908672,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":213,"tdur":213,"tts":908805},
-{"pid":27443,"tid":27477,"ts":326461908702,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":183,"tdur":183,"tts":908835},
-{"pid":27443,"tid":27477,"ts":326461908885,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1770,"tdur":1373,"tts":909049},
-{"pid":27443,"tid":27477,"ts":326461908916,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1709,"tdur":1343,"tts":909049},
-{"pid":27443,"tid":27477,"ts":326461908946,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1648,"tdur":1282,"tts":909079},
-{"pid":27443,"tid":27477,"ts":326461908946,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":909079,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461909404,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":909171},
-{"pid":27443,"tid":27477,"ts":326461909435,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909201},
-{"pid":27443,"tid":27477,"ts":326461909465,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909232},
-{"pid":27443,"tid":27477,"ts":326461909465,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":909232},
-{"pid":27443,"tid":27477,"ts":326461909496,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909262},
-{"pid":27443,"tid":27477,"ts":326461909496,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":909262},
-{"pid":27443,"tid":27477,"ts":326461909526,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909293},
-{"pid":27443,"tid":27477,"ts":326461909557,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909324},
-{"pid":27443,"tid":27477,"ts":326461909557,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":909324},
-{"pid":27443,"tid":27477,"ts":326461909587,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909354},
-{"pid":27443,"tid":27477,"ts":326461909587,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":909354},
-{"pid":27443,"tid":27477,"ts":326461909618,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909385},
-{"pid":27443,"tid":27477,"ts":326461909648,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909415},
-{"pid":27443,"tid":27477,"ts":326461909648,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909415},
-{"pid":27443,"tid":27477,"ts":326461909679,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909446},
-{"pid":27443,"tid":27477,"ts":326461909679,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":909446},
-{"pid":27443,"tid":27477,"ts":326461909709,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909476},
-{"pid":27443,"tid":27477,"ts":326461909709,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":909476},
-{"pid":27443,"tid":27477,"ts":326461909740,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909507},
-{"pid":27443,"tid":27477,"ts":326461909770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909537},
-{"pid":27443,"tid":27477,"ts":326461909770,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":909537},
-{"pid":27443,"tid":27477,"ts":326461909801,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909568},
-{"pid":27443,"tid":27477,"ts":326461909831,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909598},
-{"pid":27443,"tid":27477,"ts":326461909831,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":909598},
-{"pid":27443,"tid":27477,"ts":326461909862,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909629},
-{"pid":27443,"tid":27477,"ts":326461909862,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":909629},
-{"pid":27443,"tid":27477,"ts":326461909892,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909659},
-{"pid":27443,"tid":27477,"ts":326461909923,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909690},
-{"pid":27443,"tid":27477,"ts":326461909923,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":909690},
-{"pid":27443,"tid":27477,"ts":326461909953,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909720},
-{"pid":27443,"tid":27477,"ts":326461909953,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":909751},
-{"pid":27443,"tid":27477,"ts":326461909984,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909751},
-{"pid":27443,"tid":27477,"ts":326461910045,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909812},
-{"pid":27443,"tid":27477,"ts":326461910075,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909842},
-{"pid":27443,"tid":27477,"ts":326461910075,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":909842},
-{"pid":27443,"tid":27477,"ts":326461910106,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909873},
-{"pid":27443,"tid":27477,"ts":326461910137,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909903},
-{"pid":27443,"tid":27477,"ts":326461910137,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":909903},
-{"pid":27443,"tid":27477,"ts":326461910167,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":909934},
-{"pid":27443,"tid":27477,"ts":326461910198,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909964},
-{"pid":27443,"tid":27477,"ts":326461910198,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":909964},
-{"pid":27443,"tid":27477,"ts":326461910228,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":909995},
-{"pid":27443,"tid":27477,"ts":326461910259,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":910025},
-{"pid":27443,"tid":27477,"ts":326461910259,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":910025},
-{"pid":27443,"tid":27477,"ts":326461910350,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":910117},
-{"pid":27443,"tid":27477,"ts":326461910350,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":910117},
-{"pid":27443,"tid":27477,"ts":326461910381,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":910148},
-{"pid":27443,"tid":27477,"ts":326461910411,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":910178},
-{"pid":27443,"tid":27477,"ts":326461910442,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":910209},
-{"pid":27443,"tid":27477,"ts":326461910442,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":910209},
-{"pid":27443,"tid":27477,"ts":326461910472,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":910239},
-{"pid":27443,"tid":27477,"ts":326461910503,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":910270},
-{"pid":27443,"tid":27477,"ts":326461910564,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":910331},
-{"pid":27443,"tid":27477,"ts":326461910564,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":910331},
-{"pid":27443,"tid":27477,"ts":326461910594,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":910361},
-{"pid":27443,"tid":27477,"ts":326461910625,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":910392},
-{"pid":27443,"tid":27477,"ts":326461910625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":910392,"id":"0xaf88a5aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326461910655,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":910422,"id":"0xaf88a5aff182217a"},
-{"pid":27443,"tid":27477,"ts":326461910655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":910422},
-{"pid":27443,"tid":27477,"ts":326461910686,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":910453},
-{"pid":27443,"tid":27477,"ts":326461910686,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":910453},
-{"pid":27443,"tid":27477,"ts":326461910686,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":910453},
-{"pid":27443,"tid":27477,"ts":326461910716,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":910483},
-{"pid":27443,"tid":27477,"ts":326461910716,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":910483},
-{"pid":27443,"tid":27477,"ts":326461910777,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":910544},
-{"pid":27443,"tid":27477,"ts":326461910777,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":910544},
-{"pid":27443,"tid":27477,"ts":326461910808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":910575,"id":"0xaf88a5a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461910838,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":123,"tdur":122,"tts":910605},
-{"pid":27443,"tid":27477,"ts":326461910838,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":123,"tdur":122,"tts":910605},
-{"pid":27443,"tid":27477,"ts":326461910838,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":174},"tts":910605},
-{"pid":27443,"tid":27477,"ts":326461910900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":910666,"id":"0xaf88a6b3f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461910930,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":910697,"id":"0xaf88a51bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461910961,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":910727},
-{"pid":27443,"tid":27477,"ts":326461910991,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":910758,"id":"0xaf88a5aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326461910991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2167,"tdur":1862,"tts":910758},
-{"pid":27443,"tid":27477,"ts":326461910991,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2167,"tdur":1862,"tts":910758},
-{"pid":27443,"tid":27477,"ts":326461910991,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":910758},
-{"pid":27443,"tid":27477,"ts":326461911022,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1831,"tdur":1527,"tts":910788},
-{"pid":27443,"tid":27477,"ts":326461911022,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":173},"dur":1007,"tdur":977,"tts":910819},
-{"pid":27443,"tid":27477,"ts":326461911052,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":173},"dur":275,"tdur":275,"tts":910819},
-{"pid":27443,"tid":27477,"ts":326461911357,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":173},"dur":31,"tdur":31,"tts":911124},
-{"pid":27443,"tid":27477,"ts":326461911388,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":173},"tts":911155},
-{"pid":27443,"tid":27477,"ts":326461911571,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":911368},
-{"pid":27443,"tid":27477,"ts":326461911602,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":911368},
-{"pid":27443,"tid":27477,"ts":326461911602,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":911368},
-{"pid":27443,"tid":27477,"ts":326461911602,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":911368},
-{"pid":27443,"tid":27477,"ts":326461911632,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":911399,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461911724,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":911490},
-{"pid":27443,"tid":27477,"ts":326461911998,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":911796},
-{"pid":27443,"tid":27477,"ts":326461912029,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":274,"tts":911796},
-{"pid":27443,"tid":27477,"ts":326461912059,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":911826},
-{"pid":27443,"tid":27477,"ts":326461912059,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":489,"tdur":183,"tts":911826},
-{"pid":27443,"tid":27477,"ts":326461912151,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":0,"tdur":0,"tts":911918},
-{"pid":27443,"tid":27477,"ts":326461912181,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":911948,"id":"0xaf88abdbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461912578,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":912040,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461912609,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":912101,"id":"0x3000000a5"},
-{"pid":27443,"tid":27477,"ts":326461912639,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":912101},
-{"pid":27443,"tid":27477,"ts":326461912761,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":912223,"id":"0xaf88abd4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461912822,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":912284,"id":"0xaf88a74cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461912853,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":912315,"id":"0xaf88a515f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461912883,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":275,"tdur":275,"tts":912345},
-{"pid":27443,"tid":27477,"ts":326461912883,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":275,"tts":912345},
-{"pid":27443,"tid":27477,"ts":326461912914,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":912376},
-{"pid":27443,"tid":27477,"ts":326461912975,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":912437},
-{"pid":27443,"tid":27477,"ts":326461913005,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":912467},
-{"pid":27443,"tid":27477,"ts":326461913005,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":122,"tts":912467},
-{"pid":27443,"tid":27477,"ts":326461913005,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":912467},
-{"pid":27443,"tid":27477,"ts":326461913036,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":912498,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461913036,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":0,"tts":912498},
-{"pid":27443,"tid":27477,"ts":326461913066,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":912528},
-{"pid":27443,"tid":27477,"ts":326461913097,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":912559,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461913128,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":912589,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461913128,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":912589,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461913189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":912650,"id":"0xaf88a5abf182217a"},
-{"pid":27443,"tid":27477,"ts":326461913189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":912650},
-{"pid":27443,"tid":27477,"ts":326461913189,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":912650},
-{"pid":27443,"tid":27477,"ts":326461913219,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":912681,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461913219,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":912681},
-{"pid":27443,"tid":27477,"ts":326461913280,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":912742,"id":"0xaf88a5a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461913280,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":912772,"id":"0xaf88a5a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461913311,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":912772},
-{"pid":27443,"tid":27477,"ts":326461913311,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":912772},
-{"pid":27443,"tid":27477,"ts":326461913311,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":912803,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461913341,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":912803},
-{"pid":27443,"tid":27477,"ts":326461913341,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":912803,"id":"0xaf88a5a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461913372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":912833,"id":"0xaf88a5a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461913372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":912833},
-{"pid":27443,"tid":27477,"ts":326461913402,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":912864},
-{"pid":27443,"tid":27477,"ts":326461913402,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":912864,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461913402,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":912864},
-{"pid":27443,"tid":27477,"ts":326461913433,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":912894,"id":"0xaf88a5a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461913433,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":912894},
-{"pid":27443,"tid":27477,"ts":326461913433,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":122,"tts":912925},
-{"pid":27443,"tid":27477,"ts":326461913463,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":912925},
-{"pid":27443,"tid":27477,"ts":326461913463,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":912925},
-{"pid":27443,"tid":27477,"ts":326461913494,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":912955},
-{"pid":27443,"tid":27477,"ts":326461913494,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":912955},
-{"pid":27443,"tid":27477,"ts":326461913555,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":913016},
-{"pid":27443,"tid":27477,"ts":326461913555,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":913016},
-{"pid":27443,"tid":27477,"ts":326461913585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":913047,"id":"0xaf88a5a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461913585,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":913047},
-{"pid":27443,"tid":27477,"ts":326461913616,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":913078},
-{"pid":27443,"tid":27477,"ts":326461913616,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":913078},
-{"pid":27443,"tid":27477,"ts":326461913616,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":913078},
-{"pid":27443,"tid":27477,"ts":326461913646,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":913108},
-{"pid":27443,"tid":27477,"ts":326461913646,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":913108},
-{"pid":27443,"tid":27477,"ts":326461913707,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":913169},
-{"pid":27443,"tid":27477,"ts":326461913707,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":913169},
-{"pid":27443,"tid":27477,"ts":326461914745,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":913261,"id":"0xaf88a5a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461914745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":913261},
-{"pid":27443,"tid":27477,"ts":326461914776,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":913291},
-{"pid":27443,"tid":27477,"ts":326461914806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":913322,"id":"0xaf88a74df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461918682,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":913444,"id":"0xaf88a5a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461918713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1434,"tdur":1434,"tts":913444},
-{"pid":27443,"tid":27477,"ts":326461918713,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1434,"tdur":1434,"tts":913444},
-{"pid":27443,"tid":27477,"ts":326461918743,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":913474},
-{"pid":27443,"tid":27477,"ts":326461918743,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1404,"tdur":1404,"tts":913474},
-{"pid":27443,"tid":27477,"ts":326461918774,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1343,"tdur":1343,"tts":913505},
-{"pid":27443,"tid":27477,"ts":326461918774,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":913505},
-{"pid":27443,"tid":27477,"ts":326461918804,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":913535},
-{"pid":27443,"tid":27477,"ts":326461918835,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":913566,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461918835,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":913566},
-{"pid":27443,"tid":27477,"ts":326461918896,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":913627},
-{"pid":27443,"tid":27477,"ts":326461919018,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1099,"tdur":1099,"tts":913749},
-{"pid":27443,"tid":27477,"ts":326461919048,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":174},"dur":306,"tdur":306,"tts":913779},
-{"pid":27443,"tid":27459,"ts":326461914776,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8042728},
-{"pid":27443,"tid":27459,"ts":326461914806,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8042789},
-{"pid":27443,"tid":27459,"ts":326461914837,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8042789},
-{"pid":27443,"tid":27459,"ts":326461915264,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":8043216},
-{"pid":27443,"tid":27459,"ts":326461915264,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":8043247},
-{"pid":27443,"tid":27459,"ts":326461915294,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2595,"tdur":2503,"tts":8043277},
-{"pid":27443,"tid":27459,"ts":326461915325,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2350,"tdur":2289,"tts":8043277},
-{"pid":27443,"tid":27459,"ts":326461915325,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":488,"tdur":489,"tts":8043277},
-{"pid":27443,"tid":27459,"ts":326461915844,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":8043796},
-{"pid":27443,"tid":27459,"ts":326461916027,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":122,"tdur":122,"tts":8043979},
-{"pid":27443,"tid":27459,"ts":326461916149,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8044101},
-{"pid":27443,"tid":27459,"ts":326461916149,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1496,"tdur":1465,"tts":8044101},
-{"pid":27443,"tid":27459,"ts":326461917675,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":8045597},
-{"pid":27443,"tid":27459,"ts":326461917736,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":123,"tts":8045627},
-{"pid":27443,"tid":27459,"ts":326461917889,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":174},"dur":702,"tdur":458,"tts":8045780},
-{"pid":27443,"tid":27459,"ts":326461917919,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":672,"tdur":427,"tts":8045811},
-{"pid":27443,"tid":27459,"ts":326461918408,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":30,"tdur":30,"tts":8046055},
-{"pid":27443,"tid":27459,"ts":326461918469,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":0,"tdur":0,"tts":8046116},
-{"pid":27443,"tid":27459,"ts":326461918469,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":30,"tdur":30,"tts":8046116},
-{"pid":27443,"tid":27459,"ts":326461918499,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":0,"tdur":0,"tts":8046146},
-{"pid":27443,"tid":27459,"ts":326461918530,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":0,"tdur":0,"tts":8046177},
-{"pid":27443,"tid":27459,"ts":326461918530,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":30,"tdur":0,"tts":8046177},
-{"pid":27443,"tid":27459,"ts":326461918560,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":174},"dur":0,"tdur":0,"tts":8046207},
-{"pid":27443,"tid":27459,"ts":326461918591,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8046238,"id":"0x3000000a6"},
-{"pid":27443,"tid":27459,"ts":326461918621,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":427,"tdur":92,"tts":8046268},
-{"pid":27443,"tid":27459,"ts":326461918652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8046299,"id":"0xaf88a5a1f182217a"},
-{"pid":27443,"tid":27459,"ts":326461919110,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1467},"tts":8046421,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461919110,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8046452,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461919140,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8046452},
-{"pid":27443,"tid":27459,"ts":326461919232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8046543,"id":"0xaf88a514f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461919232,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8046543},
-{"pid":27443,"tid":27459,"ts":326461919262,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8046574,"id":"0xaf88a516f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461919262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8046574,"id":"0xaf88a74cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461919293,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":0,"tdur":0,"tts":8046604},
-{"pid":27443,"tid":27459,"ts":326461919293,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8046604},
-{"pid":27443,"tid":27459,"ts":326461919323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8046635,"id":"0xaf88a515f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461919354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8046665},
-{"pid":27443,"tid":27459,"ts":326461919354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8046665,"id":"0xaf88a74df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461919384,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8046696},
-{"pid":27443,"tid":27459,"ts":326461919384,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":8046696},
-{"pid":27443,"tid":27459,"ts":326461919445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8046757,"id":"0xaf88a516f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461919445,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":183,"tts":8046757},
-{"pid":27443,"tid":27459,"ts":326461919476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8046787,"id":"0xaf88a517f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461919476,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8046787,"id":"0xaf88a6b6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461919506,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":8046818},
-{"pid":27443,"tid":27459,"ts":326461919506,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8046818,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461919506,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.04},"dur":122,"tdur":122,"tts":8046818},
-{"pid":27443,"tid":27459,"ts":326461919537,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8046848},
-{"pid":27443,"tid":27459,"ts":326461919567,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8046879},
-{"pid":27443,"tid":27459,"ts":326461919598,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8046909,"id":"0xaf88a74ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461919628,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8046940,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461919659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8046970,"id":"0xaf88a517f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461919689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8047001},
-{"pid":27443,"tid":27459,"ts":326461922680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8047062,"id":"0xaf88a510f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461922680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1343,"tdur":1312,"tts":8047062},
-{"pid":27443,"tid":27459,"ts":326461922711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8047092,"id":"0xaf88a511f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461922741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8047123,"id":"0xaf88a74ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461922741,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1282,"tdur":1251,"tts":8047123},
-{"pid":27443,"tid":27459,"ts":326461922833,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1160,"tdur":1129,"tts":8047215},
-{"pid":27443,"tid":27459,"ts":326461922833,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8047215,"id":"0x3000000a7"},
-{"pid":27443,"tid":27459,"ts":326461922864,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":976,"tdur":977,"tts":8047245},
-{"pid":27443,"tid":27459,"ts":326461922894,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":946,"tdur":916,"tts":8047306},
-{"pid":27443,"tid":27459,"ts":326461922955,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8047367},
-{"pid":27443,"tid":27459,"ts":326461923016,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8047398},
-{"pid":27443,"tid":27477,"ts":326461919354,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":174},"dur":61,"tdur":31,"tts":914115},
-{"pid":27443,"tid":27477,"ts":326461919445,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":174},"tts":914176},
-{"pid":27443,"tid":27477,"ts":326461919659,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":914420},
-{"pid":27443,"tid":27477,"ts":326461919689,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":914420},
-{"pid":27443,"tid":27477,"ts":326461919689,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":428,"tdur":428,"tts":914420},
-{"pid":27443,"tid":27477,"ts":326461919720,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":914451},
-{"pid":27443,"tid":27477,"ts":326461919873,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":914604},
-{"pid":27443,"tid":27477,"ts":326461919903,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":914634},
-{"pid":27443,"tid":27477,"ts":326461919903,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":914634},
-{"pid":27443,"tid":27477,"ts":326461919903,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":914634},
-{"pid":27443,"tid":27477,"ts":326461919903,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":914634,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461919934,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":914665},
-{"pid":27443,"tid":27477,"ts":326461919964,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":914695},
-{"pid":27443,"tid":27477,"ts":326461919995,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":914726,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461919995,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":914726},
-{"pid":27443,"tid":27477,"ts":326461920086,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":914817,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461920086,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":914817,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461920147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":914878,"id":"0xaf88a5a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461920178,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":914909},
-{"pid":27443,"tid":27477,"ts":326461920178,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":914909},
-{"pid":27443,"tid":27477,"ts":326461920178,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":914909,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461920208,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":914939},
-{"pid":27443,"tid":27477,"ts":326461920208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":914939,"id":"0xaf88a5bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461920239,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":914970,"id":"0xaf88a5a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461920239,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":914970},
-{"pid":27443,"tid":27477,"ts":326461920239,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":31,"tts":915000},
-{"pid":27443,"tid":27477,"ts":326461920269,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":915000,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461920269,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":915000},
-{"pid":27443,"tid":27477,"ts":326461920300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":915031,"id":"0xaf88a5bef182217a"},
-{"pid":27443,"tid":27477,"ts":326461920300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":915031,"id":"0xaf88a5bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326461920330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":915061},
-{"pid":27443,"tid":27477,"ts":326461920330,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":915061},
-{"pid":27443,"tid":27477,"ts":326461920330,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":915061,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461920330,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":915061},
-{"pid":27443,"tid":27477,"ts":326461920361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":915092,"id":"0xaf88a5bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326461920361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1801,"tdur":1801,"tts":915092},
-{"pid":27443,"tid":27477,"ts":326461920391,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1771,"tdur":1771,"tts":915122},
-{"pid":27443,"tid":27477,"ts":326461920391,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":915122},
-{"pid":27443,"tid":27477,"ts":326461920391,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":915122},
-{"pid":27443,"tid":27477,"ts":326461920422,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":915153},
-{"pid":27443,"tid":27477,"ts":326461920422,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":915153},
-{"pid":27443,"tid":27477,"ts":326461920513,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1618,"tdur":1618,"tts":915244},
-{"pid":27443,"tid":27477,"ts":326461920513,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1618,"tdur":1618,"tts":915244},
-{"pid":27443,"tid":27477,"ts":326461920544,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1587,"tdur":1587,"tts":915275},
-{"pid":27443,"tid":27477,"ts":326461920544,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":915275,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461920605,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":915367},
-{"pid":27443,"tid":27477,"ts":326461920636,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":915367},
-{"pid":27443,"tid":27477,"ts":326461920666,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":915397},
-{"pid":27443,"tid":27477,"ts":326461920697,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915428},
-{"pid":27443,"tid":27477,"ts":326461920697,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":915428},
-{"pid":27443,"tid":27477,"ts":326461920727,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915458},
-{"pid":27443,"tid":27477,"ts":326461920727,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":915458},
-{"pid":27443,"tid":27477,"ts":326461920788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915519},
-{"pid":27443,"tid":27477,"ts":326461920788,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":915519},
-{"pid":27443,"tid":27477,"ts":326461920819,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915550},
-{"pid":27443,"tid":27477,"ts":326461920849,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":915580},
-{"pid":27443,"tid":27477,"ts":326461920880,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":915611},
-{"pid":27443,"tid":27477,"ts":326461920910,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915641},
-{"pid":27443,"tid":27477,"ts":326461920941,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915672},
-{"pid":27443,"tid":27477,"ts":326461920941,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":915672},
-{"pid":27443,"tid":27477,"ts":326461920971,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915702},
-{"pid":27443,"tid":27477,"ts":326461921002,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915733},
-{"pid":27443,"tid":27477,"ts":326461921002,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":915763},
-{"pid":27443,"tid":27477,"ts":326461921063,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915794},
-{"pid":27443,"tid":27477,"ts":326461921093,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":915824},
-{"pid":27443,"tid":27477,"ts":326461921154,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915885},
-{"pid":27443,"tid":27477,"ts":326461921185,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915916},
-{"pid":27443,"tid":27477,"ts":326461921215,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915946},
-{"pid":27443,"tid":27477,"ts":326461921246,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":915977},
-{"pid":27443,"tid":27477,"ts":326461921276,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916007},
-{"pid":27443,"tid":27477,"ts":326461921307,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916038},
-{"pid":27443,"tid":27477,"ts":326461921338,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916069},
-{"pid":27443,"tid":27477,"ts":326461921338,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":916099},
-{"pid":27443,"tid":27477,"ts":326461921399,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916130},
-{"pid":27443,"tid":27477,"ts":326461921399,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":916130},
-{"pid":27443,"tid":27477,"ts":326461921429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916160},
-{"pid":27443,"tid":27477,"ts":326461921429,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":916160},
-{"pid":27443,"tid":27477,"ts":326461921460,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916191},
-{"pid":27443,"tid":27477,"ts":326461921460,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":916191},
-{"pid":27443,"tid":27477,"ts":326461921490,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916221},
-{"pid":27443,"tid":27477,"ts":326461921521,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916252},
-{"pid":27443,"tid":27477,"ts":326461921521,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":916252},
-{"pid":27443,"tid":27477,"ts":326461921551,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":916282},
-{"pid":27443,"tid":27477,"ts":326461921612,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916343},
-{"pid":27443,"tid":27477,"ts":326461921643,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916374},
-{"pid":27443,"tid":27477,"ts":326461921643,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":916374},
-{"pid":27443,"tid":27477,"ts":326461921673,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916404},
-{"pid":27443,"tid":27477,"ts":326461921673,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":916404},
-{"pid":27443,"tid":27477,"ts":326461921704,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916435},
-{"pid":27443,"tid":27477,"ts":326461921795,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":916526},
-{"pid":27443,"tid":27477,"ts":326461921826,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916557},
-{"pid":27443,"tid":27477,"ts":326461921856,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916587},
-{"pid":27443,"tid":27477,"ts":326461921887,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916618},
-{"pid":27443,"tid":27477,"ts":326461921917,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":916648},
-{"pid":27443,"tid":27477,"ts":326461921917,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":916679},
-{"pid":27443,"tid":27477,"ts":326461921948,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":916679},
-{"pid":27443,"tid":27477,"ts":326461922009,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":916740},
-{"pid":27443,"tid":27477,"ts":326461922070,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":916801},
-{"pid":27443,"tid":27477,"ts":326461922070,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":916801},
-{"pid":27443,"tid":27477,"ts":326461922101,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":916832},
-{"pid":27443,"tid":27477,"ts":326461922162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461920},"tts":916893,"id":"0xaf88a5a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461922162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":916893},
-{"pid":27443,"tid":27477,"ts":326461922192,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":916923,"id":"0xaf88a5bef182217a"},
-{"pid":27443,"tid":27477,"ts":326461922192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":916923},
-{"pid":27443,"tid":27477,"ts":326461922223,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":152,"tts":916954},
-{"pid":27443,"tid":27477,"ts":326461922223,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":916954},
-{"pid":27443,"tid":27477,"ts":326461922223,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":916984},
-{"pid":27443,"tid":27477,"ts":326461922253,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":916984},
-{"pid":27443,"tid":27477,"ts":326461922253,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":916984},
-{"pid":27443,"tid":27477,"ts":326461922314,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":917076},
-{"pid":27443,"tid":27477,"ts":326461922345,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":917076},
-{"pid":27443,"tid":27477,"ts":326461922436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":917137,"id":"0xaf88a5bff182217a"},
-{"pid":27443,"tid":27477,"ts":326461922467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":917167},
-{"pid":27443,"tid":27477,"ts":326461922467,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":917167},
-{"pid":27443,"tid":27477,"ts":326461922497,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":917198,"id":"0x3000000a7"},
-{"pid":27443,"tid":27477,"ts":326461922497,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":0,"tdur":0,"tts":917198},
-{"pid":27443,"tid":27477,"ts":326461922528,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":917228,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461922558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":917259,"id":"0xaf88a74ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461922558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":917289,"id":"0xaf88a510f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461922833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":917381,"id":"0xaf88a5b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326461922864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":917411},
-{"pid":27443,"tid":27477,"ts":326461922894,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461920374.0,"frame_time_us":326461920561.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":917442},
-{"pid":27443,"tid":27477,"ts":326461922894,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461920374.0,"frame_time_us":326461920561.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":122,"tdur":92,"tts":917472},
-{"pid":27443,"tid":27477,"ts":326461922955,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":917503},
-{"pid":27443,"tid":27477,"ts":326461922986,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":917533},
-{"pid":27443,"tid":27477,"ts":326461922986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":917533,"id":"0xaf88a5b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461923047,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":917595,"id":"0xaf88a5b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326461923047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2045,"tdur":1770,"tts":917595},
-{"pid":27443,"tid":27459,"ts":326461923047,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":30,"tts":8047459},
-{"pid":27443,"tid":27459,"ts":326461923047,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":8047459},
-{"pid":27443,"tid":27459,"ts":326461923108,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8047520},
-{"pid":27443,"tid":27459,"ts":326461923138,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8047520},
-{"pid":27443,"tid":27459,"ts":326461923199,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8047581},
-{"pid":27443,"tid":27459,"ts":326461923199,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8047611},
-{"pid":27443,"tid":27459,"ts":326461923260,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":550,"tdur":549,"tts":8047642},
-{"pid":27443,"tid":27459,"ts":326461923382,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":428,"tdur":367,"tts":8047794},
-{"pid":27443,"tid":27459,"ts":326461923413,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8047794},
-{"pid":27443,"tid":27459,"ts":326461923718,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":136,"frame":"0x78c60000"}},"tts":8048100,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461923749,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":8048130},
-{"pid":27443,"tid":27459,"ts":326461923749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8048130,"id":"0xaf88a5baf182217a"},
-{"pid":27443,"tid":27459,"ts":326461923779,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8048161},
-{"pid":27443,"tid":27459,"ts":326461923871,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":8048252},
-{"pid":27443,"tid":27459,"ts":326461923932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8048313,"id":"0xaf88abd5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461924054,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8048405,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461924084,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8048435,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326461924115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8048466,"id":"0xaf88a511f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461924115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8048466},
-{"pid":27443,"tid":27459,"ts":326461924145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8048496,"id":"0xaf88a512f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461924145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8048496,"id":"0xaf88a74ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461924145,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":0,"tts":8048527},
-{"pid":27443,"tid":27459,"ts":326461924176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8048527,"id":"0xaf88a748f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461924206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8048588,"id":"0xaf88a512f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461924237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8048588},
-{"pid":27443,"tid":27459,"ts":326461925092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8048680,"id":"0xaf88a513f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461925092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8048680},
-{"pid":27443,"tid":27459,"ts":326461925122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8048710,"id":"0xaf88a52cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461925122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8048741,"id":"0xaf88a749f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461925153,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":8048741},
-{"pid":27443,"tid":27459,"ts":326461925153,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8048741},
-{"pid":27443,"tid":27459,"ts":326461925214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8048802,"id":"0xaf88a52cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461925214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8048802},
-{"pid":27443,"tid":27459,"ts":326461926892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8048863,"id":"0xaf88a52df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461926923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8048893},
-{"pid":27443,"tid":27459,"ts":326461926923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8048893,"id":"0xaf88a52ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461926953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8048924,"id":"0xaf88a74af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461926953,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8048924},
-{"pid":27443,"tid":27459,"ts":326461926953,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":8048924},
-{"pid":27443,"tid":27459,"ts":326461927014,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8048985,"id":"0xaf88a52ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461927045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8049015},
-{"pid":27443,"tid":27459,"ts":326461929609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8049076,"id":"0xaf88a52ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461929639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1190,"tdur":1190,"tts":8049107},
-{"pid":27443,"tid":27459,"ts":326461929639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8049107,"id":"0xaf88a528f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461929670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8049137,"id":"0xaf88a74bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461929670,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":1129,"tdur":1130,"tts":8049137},
-{"pid":27443,"tid":27459,"ts":326461929731,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchMove"},"dur":1068,"tdur":1069,"tts":8049198},
-{"pid":27443,"tid":27459,"ts":326461929761,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8049229,"id":"0x3000000a8"},
-{"pid":27443,"tid":27459,"ts":326461929761,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchmove"},"dur":916,"tdur":885,"tts":8049259},
-{"pid":27443,"tid":27459,"ts":326461929792,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":885,"tdur":885,"tts":8049259},
-{"pid":27443,"tid":27459,"ts":326461929853,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":8049320},
-{"pid":27443,"tid":27459,"ts":326461929914,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8049381},
-{"pid":27443,"tid":27459,"ts":326461929944,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8049412},
-{"pid":27443,"tid":27459,"ts":326461929975,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8049443},
-{"pid":27443,"tid":27459,"ts":326461930036,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8049504},
-{"pid":27443,"tid":27459,"ts":326461930066,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8049534},
-{"pid":27443,"tid":27459,"ts":326461930097,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchmove"}},"dur":580,"tdur":579,"tts":8049565},
-{"pid":27443,"tid":27459,"ts":326461930249,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":397,"tdur":397,"tts":8049717},
-{"pid":27443,"tid":27459,"ts":326461930280,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8049748},
-{"pid":27443,"tid":27459,"ts":326461930555,"ph":"I","cat":"devtools.timeline","name":"RequestAnimationFrame","args":{"data":{"id":137,"frame":"0x78c60000"}},"tts":8050022,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461930616,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8050083},
-{"pid":27443,"tid":27459,"ts":326461930707,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8050175},
-{"pid":27443,"tid":27459,"ts":326461930738,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8050206,"id":"0xaf88abd0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461930860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8050328,"id":"0xaf88a528f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461923077,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2015,"tdur":1740,"tts":917625},
-{"pid":27443,"tid":27477,"ts":326461923108,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":1984,"tdur":1709,"tts":917656},
-{"pid":27443,"tid":27477,"ts":326461923138,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":174},"dur":1038,"tdur":1038,"tts":917686},
-{"pid":27443,"tid":27477,"ts":326461923169,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":174},"dur":305,"tdur":305,"tts":917717},
-{"pid":27443,"tid":27477,"ts":326461923474,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":174},"dur":30,"tdur":30,"tts":918022},
-{"pid":27443,"tid":27477,"ts":326461923504,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":174},"tts":918052},
-{"pid":27443,"tid":27477,"ts":326461923718,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":918266},
-{"pid":27443,"tid":27477,"ts":326461923718,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":918266},
-{"pid":27443,"tid":27477,"ts":326461923749,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":918296},
-{"pid":27443,"tid":27477,"ts":326461923749,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":918296},
-{"pid":27443,"tid":27477,"ts":326461923749,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":918327,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461923840,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":918388},
-{"pid":27443,"tid":27477,"ts":326461924176,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":918724},
-{"pid":27443,"tid":27477,"ts":326461924176,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":610,"tdur":336,"tts":918724},
-{"pid":27443,"tid":27477,"ts":326461924206,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":918754},
-{"pid":27443,"tid":27477,"ts":326461924206,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":519,"tdur":244,"tts":918754},
-{"pid":27443,"tid":27477,"ts":326461924328,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":31,"tdur":0,"tts":918907},
-{"pid":27443,"tid":27477,"ts":326461924359,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":918937,"id":"0xaf88abd6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461924756,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":919029,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461924786,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":919060,"id":"0x3000000a6"},
-{"pid":27443,"tid":27477,"ts":326461924817,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":919090},
-{"pid":27443,"tid":27477,"ts":326461924939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":919243,"id":"0xaf88abd7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461925030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":919304,"id":"0xaf88a749f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461925030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":919304,"id":"0xaf88a513f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461925122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":919395,"id":"0xaf88a5baf182217a"},
-{"pid":27443,"tid":27477,"ts":326461925122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":919395},
-{"pid":27443,"tid":27477,"ts":326461925122,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":31,"tts":919395},
-{"pid":27443,"tid":27477,"ts":326461926770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":919487,"id":"0xaf88a5bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326461926801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":919487},
-{"pid":27443,"tid":27477,"ts":326461926831,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":919517},
-{"pid":27443,"tid":27477,"ts":326461926831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":919517,"id":"0xaf88a74af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461926862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":919548,"id":"0xaf88a52df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461928846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":919639,"id":"0xaf88a5b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326461928846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":919639},
-{"pid":27443,"tid":27477,"ts":326461928846,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":152,"tdur":153,"tts":919639},
-{"pid":27443,"tid":27477,"ts":326461928876,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":919670,"id":"0x3000000a8"},
-{"pid":27443,"tid":27477,"ts":326461928876,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchMove"},"dur":31,"tdur":30,"tts":919670},
-{"pid":27443,"tid":27477,"ts":326461928907,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":919700,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461928937,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":919731,"id":"0xaf88a74bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461928937,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":919731,"id":"0xaf88a52ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461931867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":919823,"id":"0xaf88a5b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326461931898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":919853},
-{"pid":27443,"tid":27477,"ts":326461931898,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":919853},
-{"pid":27443,"tid":27477,"ts":326461931898,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":919884,"id":"0x3000000a9"},
-{"pid":27443,"tid":27477,"ts":326461931928,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchEnd"},"dur":0,"tdur":0,"tts":919884},
-{"pid":27443,"tid":27477,"ts":326461931959,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":919914,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461931959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":919945,"id":"0xaf88a744f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461931989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":919945,"id":"0xaf88a529f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461939802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":920006,"id":"0xaf88a5b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326461939833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":854,"tdur":336,"tts":920036},
-{"pid":27443,"tid":27477,"ts":326461939863,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461937056.0,"frame_time_us":326461937243.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":824,"tdur":305,"tts":920067},
-{"pid":27443,"tid":27477,"ts":326461939894,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461937056.0,"frame_time_us":326461937243.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":793,"tdur":275,"tts":920097},
-{"pid":27443,"tid":27477,"ts":326461939894,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":175},"tts":920097},
-{"pid":27443,"tid":27477,"ts":326461939985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":920250,"id":"0xaf88a745f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461939985,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":920250},
-{"pid":27443,"tid":27477,"ts":326461940046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":920250,"id":"0xaf88a52bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461940046,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":550,"tdur":30,"tts":920250},
-{"pid":27443,"tid":27477,"ts":326461940626,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":920311},
-{"pid":27443,"tid":27477,"ts":326461940657,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461953909},"dur":30,"tdur":31,"tts":920341},
-{"pid":27443,"tid":27477,"ts":326461940657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":920341,"id":"0xaf88a5b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461951309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":920463,"id":"0xaf88a5b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326461951309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":153,"tts":920463},
-{"pid":27443,"tid":27477,"ts":326461951339,"ph":"X","cat":"input","name":"InputEventFilter::ForwardToHandler","args":{"message_type":"InputMsg_HandleInputEvent"},"dur":122,"tdur":122,"tts":920494},
-{"pid":27443,"tid":27477,"ts":326461951339,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HandleInputEventImpl"},"tts":920494,"id":"0x3000000ab"},
-{"pid":27443,"tid":27466,"ts":326461928693,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":419380},
-{"pid":27443,"tid":27466,"ts":326461928723,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":92,"tts":419410},
-{"pid":27443,"tid":27466,"ts":326461928723,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":419410,"id":"0xba46b402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461928754,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":419441},
-{"pid":27443,"tid":27466,"ts":326461928784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":419471,"id":"0xaf88a5b4f182217a"},
-{"pid":27443,"tid":27466,"ts":326461930799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":419563,"id":"0xaf88abd0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461930829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":419594},
-{"pid":27443,"tid":27466,"ts":326461930829,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":419594,"id":"0xccc60f02"},
-{"pid":27443,"tid":27466,"ts":326461931684,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":419746},
-{"pid":27443,"tid":27466,"ts":326461931714,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":92,"tdur":91,"tts":419777},
-{"pid":27443,"tid":27466,"ts":326461931714,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":419777,"id":"0xba46b502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461931745,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":419807},
-{"pid":27443,"tid":27466,"ts":326461931775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":419838,"id":"0xaf88a5b5f182217a"},
-{"pid":27443,"tid":27466,"ts":326461932142,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":419990,"id":"0xaf88abd1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461932172,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/child/child_histogram_message_filter.cc","src_func":"SendHistograms"},"dur":4151,"tdur":4029,"tts":419990},
-{"pid":27443,"tid":27466,"ts":326461936231,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":423958,"id":"0xccc61202"},
-{"pid":27443,"tid":27466,"ts":326461936323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":424019,"id":"0xaf88abd2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461936354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":424050},
-{"pid":27443,"tid":27466,"ts":326461936354,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424050,"id":"0xccc61102"},
-{"pid":27443,"tid":27466,"ts":326461939650,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":424172},
-{"pid":27443,"tid":27466,"ts":326461939711,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":424202},
-{"pid":27443,"tid":27466,"ts":326461939711,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424202,"id":"0xba46b602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461939741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":424233,"id":"0xaf88a5b6f182217a"},
-{"pid":27443,"tid":27466,"ts":326461949813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":424385,"id":"0xaf88abd3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461949813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":424385},
-{"pid":27443,"tid":27466,"ts":326461949844,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424416,"id":"0xccc61302"},
-{"pid":27443,"tid":27466,"ts":326461949905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":424477,"id":"0xaf88abecf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461949905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":424477},
-{"pid":27443,"tid":27466,"ts":326461949905,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424477,"id":"0xccc61402"},
-{"pid":27443,"tid":27466,"ts":326461951125,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":184,"tdur":183,"tts":424568},
-{"pid":27443,"tid":27466,"ts":326461951156,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":122},"dur":122,"tdur":122,"tts":424599},
-{"pid":27443,"tid":27466,"ts":326461951186,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424629,"id":"0xba46b702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461951217,"ph":"X","cat":"input","name":"InputEventFilter::OnMessageReceived::InputMessage","args":{},"dur":61,"tdur":61,"tts":424660},
-{"pid":27443,"tid":27466,"ts":326461951247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":424690,"id":"0xaf88a5b0f182217a"},
-{"pid":27443,"tid":27466,"ts":326461951949,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":123,"tdur":122,"tts":424782},
-{"pid":27443,"tid":27466,"ts":326461951980,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":942},"dur":61,"tdur":61,"tts":424813},
-{"pid":27443,"tid":27466,"ts":326461951980,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424813,"id":"0xba46b802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461952010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":424843,"id":"0xaf88a747f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326461952041,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":424874,"id":"0xaf88a527f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326461954879,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":424935},
-{"pid":27443,"tid":27466,"ts":326461954910,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":424965},
-{"pid":27443,"tid":27466,"ts":326461954910,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":424965,"id":"0xba46b902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461954971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":425026,"id":"0xaf88a24ef182217a"},
-{"pid":27443,"tid":27466,"ts":326461960343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":425148,"id":"0xaf88abedf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461960373,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":425179},
-{"pid":27443,"tid":27466,"ts":326461960373,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":425179,"id":"0xccc61606"},
-{"pid":27443,"tid":27466,"ts":326461960587,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":122,"tdur":92,"tts":425331},
-{"pid":27443,"tid":27466,"ts":326461960648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":425362},
-{"pid":27443,"tid":27466,"ts":326461960648,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":425362,"id":"0xc4c22d0a","bp":"e"},{"pid":27443,"tid":27466,"ts":326461961167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":425484,"id":"0xaf88abeef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326461961197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":427,"tdur":62,"tts":425514},
-{"pid":27443,"tid":27466,"ts":326461961197,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":425514,"id":"0xccc61702"},
-{"pid":27443,"tid":27466,"ts":326461963303,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":425667},
-{"pid":27443,"tid":27466,"ts":326461963364,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":425698},
-{"pid":27443,"tid":27466,"ts":326461963364,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":425698,"id":"0xba46ba02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461963425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":425759,"id":"0xaf88a247f182217a"},
-{"pid":27443,"tid":27466,"ts":326461971391,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":425881},
-{"pid":27443,"tid":27466,"ts":326461971421,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":425911},
-{"pid":27443,"tid":27466,"ts":326461971421,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":425911,"id":"0xba46bc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461971482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":425972,"id":"0xaf88a241f182217a"},
-{"pid":27443,"tid":27466,"ts":326461989489,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":426064},
-{"pid":27443,"tid":27466,"ts":326461989520,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":61,"tts":426125},
-{"pid":27443,"tid":27466,"ts":326461989551,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":426125,"id":"0xba46bd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326461989612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426186,"id":"0xaf88a243f182217a"},
-{"pid":27443,"tid":27459,"ts":326461930860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8050328},
-{"pid":27443,"tid":27459,"ts":326461930860,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":8050328},
-{"pid":27443,"tid":27459,"ts":326461931592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461931},"tts":8050480,"id":"0xaf88a4e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461931623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/renderer/chrome_render_view_observer.cc","src_func":"CapturePageInfoLater"},"dur":793,"tdur":793,"tts":8050511},
-{"pid":27443,"tid":27459,"ts":326461932081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8050999,"id":"0xaf88abd1f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461932355,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":85,"line":61},"dur":31,"tdur":31,"tts":8051243},
-{"pid":27443,"tid":27459,"ts":326461932386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8051274,"id":"0xaf88abd2f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461932386,"ph":"X","cat":"renderer","name":"ChromeRenderViewObserver::CapturePageInfo","args":{},"dur":30,"tdur":30,"tts":8051274},
-{"pid":27443,"tid":27459,"ts":326461932447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8051335,"id":"0xaf88a529f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461932447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":17427,"tdur":13856,"tts":8051335},
-{"pid":27443,"tid":27459,"ts":326461932477,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8051365,"id":"0xaf88a52af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461932477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8051365,"id":"0xaf88a744f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461932477,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":17367,"tdur":13796,"tts":8051365},
-{"pid":27443,"tid":27459,"ts":326461932538,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchEnd"},"dur":17306,"tdur":13735,"tts":8051426},
-{"pid":27443,"tid":27459,"ts":326461932538,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8051426,"id":"0x3000000a9"},
-{"pid":27443,"tid":27459,"ts":326461932569,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchend"},"dur":17122,"tdur":13551,"tts":8051457},
-{"pid":27443,"tid":27459,"ts":326461932600,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":17060,"tdur":13490,"tts":8051487},
-{"pid":27443,"tid":27459,"ts":326461932630,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8051548},
-{"pid":27443,"tid":27459,"ts":326461932691,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8051579},
-{"pid":27443,"tid":27459,"ts":326461932722,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8051609},
-{"pid":27443,"tid":27459,"ts":326461932752,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8051640},
-{"pid":27443,"tid":27459,"ts":326461932783,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchend"}},"dur":16877,"tdur":13307,"tts":8051670},
-{"pid":27443,"tid":27459,"ts":326461932905,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":16694,"tdur":13123,"tts":8051793},
-{"pid":27443,"tid":27459,"ts":326461932935,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8051823},
-{"pid":27443,"tid":27459,"ts":326461934797,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8053715},
-{"pid":27443,"tid":27459,"ts":326461935041,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8053960},
-{"pid":27443,"tid":27459,"ts":326461935163,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8054051},
-{"pid":27443,"tid":27459,"ts":326461935163,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8054051},
-{"pid":27443,"tid":27459,"ts":326461935407,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8054295},
-{"pid":27443,"tid":27459,"ts":326461935621,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8054509},
-{"pid":27443,"tid":27459,"ts":326461935682,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8054570},
-{"pid":27443,"tid":27459,"ts":326461936048,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8054936},
-{"pid":27443,"tid":27459,"ts":326461936140,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8055028},
-{"pid":27443,"tid":27459,"ts":326461936323,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8055211},
-{"pid":27443,"tid":27459,"ts":326461936415,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8055272},
-{"pid":27443,"tid":27459,"ts":326461936659,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8055516},
-{"pid":27443,"tid":27459,"ts":326461936842,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8055699},
-{"pid":27443,"tid":27459,"ts":326461936842,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":31,"tts":8055699},
-{"pid":27443,"tid":27459,"ts":326461937117,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8055791},
-{"pid":27443,"tid":27459,"ts":326461937300,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8055974},
-{"pid":27443,"tid":27459,"ts":326461937452,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8056126},
-{"pid":27443,"tid":27459,"ts":326461937605,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8056249},
-{"pid":27443,"tid":27459,"ts":326461939711,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8056340},
-{"pid":27443,"tid":27459,"ts":326461939833,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8056493},
-{"pid":27443,"tid":27459,"ts":326461940382,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8057042},
-{"pid":27443,"tid":27459,"ts":326461940535,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8057134},
-{"pid":27443,"tid":27459,"ts":326461940535,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":8057134},
-{"pid":27443,"tid":27459,"ts":326461940626,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8057195},
-{"pid":27443,"tid":27459,"ts":326461940718,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8057286},
-{"pid":27443,"tid":27459,"ts":326461940901,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8057500},
-{"pid":27443,"tid":27459,"ts":326461943923,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8060399},
-{"pid":27443,"tid":27459,"ts":326461943953,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8060430},
-{"pid":27443,"tid":27459,"ts":326461943953,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8060460},
-{"pid":27443,"tid":27459,"ts":326461944533,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":2,"counters":true},"tts":8061040},
-{"pid":27443,"tid":27459,"ts":326461944564,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":2},"tts":8061040},
-{"pid":27443,"tid":27459,"ts":326461947432,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8062749},
-{"pid":27443,"tid":27459,"ts":326461948867,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8064214},
-{"pid":27443,"tid":27459,"ts":326461949569,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8064916},
-{"pid":27443,"tid":27459,"ts":326461949721,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8065038},
-{"pid":27443,"tid":27459,"ts":326461949721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8065038,"id":"0xaf88abd3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461949813,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1382},"dur":31,"tdur":0,"tts":8065130},
-{"pid":27443,"tid":27459,"ts":326461949813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8065130,"id":"0xaf88abecf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326461949905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461936},"tts":8065222,"id":"0xaf88a482f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461949905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":8065222},
-{"pid":27443,"tid":27459,"ts":326461949935,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8065252,"id":"0xaf88a524f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461949996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8065313,"id":"0xaf88a52af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461949996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":5921,"tdur":4303,"tts":8065313},
-{"pid":27443,"tid":27459,"ts":326461950210,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8065374,"id":"0xaf88a525f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461950240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8065374,"id":"0xaf88a745f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461950240,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5647,"tdur":4212,"tts":8065374},
-{"pid":27443,"tid":27459,"ts":326461950271,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":175},"tts":8065405},
-{"pid":27443,"tid":27459,"ts":326461950271,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":8065405},
-{"pid":27443,"tid":27459,"ts":326461950332,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":427,"tdur":427,"tts":8065466},
-{"pid":27443,"tid":27459,"ts":326461950332,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":0,"tts":8065496},
-{"pid":27443,"tid":27459,"ts":326461950393,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":136,"frame":"0x78c60000"}},"dur":183,"tdur":153,"tts":8065557},
-{"pid":27443,"tid":27459,"ts":326461950484,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":92,"tdur":61,"tts":8065649},
-{"pid":27443,"tid":27459,"ts":326461950515,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8065649},
-{"pid":27443,"tid":27459,"ts":326461950545,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8065679},
-{"pid":27443,"tid":27459,"ts":326461950607,"ph":"X","cat":"devtools.timeline","name":"FireAnimationFrame","args":{"data":{"id":137,"frame":"0x78c60000"}},"dur":122,"tdur":122,"tts":8065740},
-{"pid":27443,"tid":27459,"ts":326461950668,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":118,"frame":"0x78c60000"}},"dur":61,"tdur":61,"tts":8065801},
-{"pid":27443,"tid":27459,"ts":326461950698,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8065832},
-{"pid":27443,"tid":27459,"ts":326461950698,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8065862},
-{"pid":27443,"tid":27459,"ts":326461950759,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2930,"tdur":2930,"tts":8065893},
-{"pid":27443,"tid":27459,"ts":326461950790,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":2899,"tdur":2899,"tts":8065924},
-{"pid":27443,"tid":27459,"ts":326461950820,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2686,"tdur":2686,"tts":8065954},
-{"pid":27443,"tid":27459,"ts":326461950820,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":611,"tdur":610,"tts":8065954},
-{"pid":27443,"tid":27459,"ts":326461951461,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":8066595},
-{"pid":27443,"tid":27459,"ts":326461951675,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":152,"tdur":122,"tts":8066839},
-{"pid":27443,"tid":27459,"ts":326461951827,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8066961},
-{"pid":27443,"tid":27459,"ts":326461951827,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1679,"tdur":1617,"tts":8066992},
-{"pid":27443,"tid":27459,"ts":326461953506,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":8068640},
-{"pid":27443,"tid":27459,"ts":326461953567,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":122,"tdur":122,"tts":8068701},
-{"pid":27443,"tid":27459,"ts":326461953720,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":175},"dur":1220,"tdur":550,"tts":8068853},
-{"pid":27443,"tid":27459,"ts":326461953720,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1220,"tdur":550,"tts":8068853},
-{"pid":27443,"tid":27459,"ts":326461953994,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":31,"tdur":31,"tts":8069128},
-{"pid":27443,"tid":27459,"ts":326461954025,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":30,"tdur":30,"tts":8069159},
-{"pid":27443,"tid":27459,"ts":326461954055,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":31,"tdur":31,"tts":8069189},
-{"pid":27443,"tid":27459,"ts":326461954086,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":0,"tdur":0,"tts":8069220},
-{"pid":27443,"tid":27459,"ts":326461954086,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":61,"tdur":31,"tts":8069250},
-{"pid":27443,"tid":27459,"ts":326461954086,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":8069250},
-{"pid":27443,"tid":27459,"ts":326461954147,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":30,"tdur":30,"tts":8069281},
-{"pid":27443,"tid":27459,"ts":326461954177,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":31,"tdur":31,"tts":8069311},
-{"pid":27443,"tid":27459,"ts":326461954208,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":175},"dur":732,"tdur":61,"tts":8069342},
-{"pid":27443,"tid":27459,"ts":326461954208,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":702,"tdur":30,"tts":8069342},
-{"pid":27443,"tid":27459,"ts":326461954971,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8069433,"id":"0x3000000a7"},
-{"pid":27443,"tid":27459,"ts":326461954971,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8069433,"id":"0x3000000a8"},
-{"pid":27443,"tid":27459,"ts":326461954971,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8069433,"id":"0x3000000a9"},
-{"pid":27443,"tid":27459,"ts":326461955001,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":825,"tdur":61,"tts":8069464},
-{"pid":27443,"tid":27459,"ts":326461955001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8069464,"id":"0xaf88a24ff182217a"},
-{"pid":27443,"tid":27459,"ts":326461955856,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8069586},
-{"pid":27443,"tid":27459,"ts":326461955948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8069647,"id":"0xaf88a52bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461955948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8069647},
-{"pid":27443,"tid":27459,"ts":326461955978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8069678,"id":"0xaf88a747f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461955978,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":8069678},
-{"pid":27443,"tid":27459,"ts":326461956009,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":942},"dur":30,"tdur":31,"tts":8069708},
-{"pid":27443,"tid":27459,"ts":326461956100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8069800,"id":"0xaf88a525f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461956100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":87105,"tdur":84907,"tts":8069800},
-{"pid":27443,"tid":27459,"ts":326461956131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8069830,"id":"0xaf88a520f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461956131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8069830,"id":"0xaf88a746f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461956161,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/renderer/input/input_event_filter.cc","src_func":"ForwardToHandler"},"dur":87014,"tdur":84846,"tts":8069861},
-{"pid":27443,"tid":27459,"ts":326461956192,"ph":"X","cat":"renderer,benchmark","name":"RenderWidget::OnHandleInputEvent","args":{"event":"TouchEnd"},"dur":86952,"tdur":84786,"tts":8069891},
-{"pid":27443,"tid":27459,"ts":326461956222,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMain"},"tts":8069922,"id":"0x3000000ab"},
-{"pid":27443,"tid":27459,"ts":326461956253,"ph":"X","cat":"input","name":"WebViewImpl::handleInputEvent","args":{"type":"touchend"},"dur":86739,"tdur":84572,"tts":8069952},
-{"pid":27443,"tid":27459,"ts":326461956283,"ph":"X","cat":"blink","name":"EventHandler::handleTouchEvent","args":{},"dur":86709,"tdur":84541,"tts":8069983},
-{"pid":27443,"tid":27459,"ts":326461956344,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8070044},
-{"pid":27443,"tid":27459,"ts":326461956375,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":8070074},
-{"pid":27443,"tid":27459,"ts":326461956405,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"touchend"}},"dur":86556,"tdur":84359,"tts":8070135},
-{"pid":27443,"tid":27459,"ts":326461956589,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":21,"frame":"0x78c60000"}},"dur":86311,"tdur":84145,"tts":8070288},
-{"pid":27443,"tid":27477,"ts":326461951370,"ph":"X","cat":"input,benchmark","name":"InputHandlerProxy::HandleInputEvent","args":{"type":"TouchEnd"},"dur":0,"tdur":0,"tts":920524},
-{"pid":27443,"tid":27477,"ts":326461951400,"ph":"I","cat":"input","name":"InputEventFilter::ForwardToHandler::ForwardToMainListener","args":{},"tts":920555,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461951431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":920586,"id":"0xaf88a746f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461951431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":920586,"id":"0xaf88a526f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461954025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461953},"tts":920677,"id":"0xaf88a5b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326461954055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":428,"tdur":396,"tts":920708},
-{"pid":27443,"tid":27477,"ts":326461954055,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":428,"tdur":396,"tts":920708},
-{"pid":27443,"tid":27477,"ts":326461954055,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":428,"tdur":336,"tts":920738},
-{"pid":27443,"tid":27477,"ts":326461954086,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":366,"tdur":336,"tts":920738},
-{"pid":27443,"tid":27477,"ts":326461954086,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":920738},
-{"pid":27443,"tid":27477,"ts":326461954208,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":920860},
-{"pid":27443,"tid":27477,"ts":326461954238,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":920891},
-{"pid":27443,"tid":27477,"ts":326461954300,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":920921},
-{"pid":27443,"tid":27477,"ts":326461954300,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":920921},
-{"pid":27443,"tid":27477,"ts":326461954300,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":920921,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461954330,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":920952},
-{"pid":27443,"tid":27477,"ts":326461954361,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":920982},
-{"pid":27443,"tid":27477,"ts":326461954422,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":921043,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461954452,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":921074,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461954452,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":921074,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461954666,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921165,"id":"0xaf88a5b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326461954666,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":921165},
-{"pid":27443,"tid":27477,"ts":326461954696,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":921196},
-{"pid":27443,"tid":27477,"ts":326461954696,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":921196,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461954727,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":921226},
-{"pid":27443,"tid":27477,"ts":326461954727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":921226,"id":"0xaf88a24cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461954757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921257,"id":"0xaf88a5b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326461954757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":214,"tdur":122,"tts":921257},
-{"pid":27443,"tid":27477,"ts":326461954788,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":183,"tdur":92,"tts":921287},
-{"pid":27443,"tid":27477,"ts":326461954788,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":921318,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461954788,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":921318},
-{"pid":27443,"tid":27477,"ts":326461954910,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":921318},
-{"pid":27443,"tid":27477,"ts":326461954940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":921349,"id":"0xaf88a24df182217a"},
-{"pid":27443,"tid":27477,"ts":326461954971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921379,"id":"0xaf88a5b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326461954971,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":921379},
-{"pid":27443,"tid":27477,"ts":326461955001,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":921410},
-{"pid":27443,"tid":27477,"ts":326461955001,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":921410,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461955001,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":30,"tts":921410},
-{"pid":27443,"tid":27477,"ts":326461955032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921440,"id":"0xaf88a24cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461955032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":183,"tts":921440},
-{"pid":27443,"tid":27477,"ts":326461955063,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":152,"tts":921471},
-{"pid":27443,"tid":27477,"ts":326461955063,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":921471},
-{"pid":27443,"tid":27477,"ts":326461955063,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":921471},
-{"pid":27443,"tid":27477,"ts":326461955093,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":61,"tts":921501},
-{"pid":27443,"tid":27477,"ts":326461955093,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":921501},
-{"pid":27443,"tid":27477,"ts":326461955185,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":921593},
-{"pid":27443,"tid":27477,"ts":326461955185,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":921593},
-{"pid":27443,"tid":27477,"ts":326461955215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921623,"id":"0xaf88a24df182217a"},
-{"pid":27443,"tid":27477,"ts":326461955215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":921623},
-{"pid":27443,"tid":27477,"ts":326461955246,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":921654},
-{"pid":27443,"tid":27477,"ts":326461955246,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":921654},
-{"pid":27443,"tid":27477,"ts":326461955246,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":921654},
-{"pid":27443,"tid":27477,"ts":326461955276,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":921684},
-{"pid":27443,"tid":27477,"ts":326461955276,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":921684},
-{"pid":27443,"tid":27477,"ts":326461955337,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":921745},
-{"pid":27443,"tid":27477,"ts":326461955337,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":921745},
-{"pid":27443,"tid":27477,"ts":326461955368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921776,"id":"0xaf88a24ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461955398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":921806},
-{"pid":27443,"tid":27477,"ts":326461955429,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461953737.0,"frame_time_us":326461953924.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":91,"tts":921837},
-{"pid":27443,"tid":27477,"ts":326461955429,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461953737.0,"frame_time_us":326461953924.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":921837},
-{"pid":27443,"tid":27477,"ts":326461955490,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461970590},"dur":30,"tdur":30,"tts":921898},
-{"pid":27443,"tid":27477,"ts":326461955490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":921898,"id":"0xaf88a248f182217a"},
-{"pid":27443,"tid":27477,"ts":326461955551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":921959,"id":"0xaf88a24ff182217a"},
-{"pid":27443,"tid":27477,"ts":326461955551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1373,"tdur":1373,"tts":921959},
-{"pid":27443,"tid":27477,"ts":326461955551,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1373,"tdur":1373,"tts":921959},
-{"pid":27443,"tid":27477,"ts":326461955581,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":921989},
-{"pid":27443,"tid":27477,"ts":326461955581,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1313,"tdur":1313,"tts":921989},
-{"pid":27443,"tid":27477,"ts":326461955612,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1282,"tdur":1282,"tts":922020},
-{"pid":27443,"tid":27477,"ts":326461955612,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":922020},
-{"pid":27443,"tid":27477,"ts":326461955612,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":922020},
-{"pid":27443,"tid":27477,"ts":326461955642,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":922051,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461955642,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":922051},
-{"pid":27443,"tid":27477,"ts":326461955673,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":61,"tdur":61,"tts":922081},
-{"pid":27443,"tid":27477,"ts":326461955826,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1068,"tdur":1068,"tts":922234},
-{"pid":27443,"tid":27477,"ts":326461955826,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":175},"dur":335,"tdur":335,"tts":922234},
-{"pid":27443,"tid":27477,"ts":326461956161,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":175},"dur":31,"tdur":31,"tts":922569},
-{"pid":27443,"tid":27477,"ts":326461956222,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":175},"tts":922630},
-{"pid":27443,"tid":27477,"ts":326461956497,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":922905},
-{"pid":27443,"tid":27477,"ts":326461956497,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":922905},
-{"pid":27443,"tid":27477,"ts":326461956497,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":922905},
-{"pid":27443,"tid":27477,"ts":326461956527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":184,"tdur":183,"tts":922936},
-{"pid":27443,"tid":27477,"ts":326461956711,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":923119},
-{"pid":27443,"tid":27477,"ts":326461956711,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":923119},
-{"pid":27443,"tid":27477,"ts":326461956741,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":92,"tdur":92,"tts":923149},
-{"pid":27443,"tid":27477,"ts":326461956741,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":92,"tts":923149},
-{"pid":27443,"tid":27477,"ts":326461956741,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":923149,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461956772,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":923180},
-{"pid":27443,"tid":27477,"ts":326461956772,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":923180},
-{"pid":27443,"tid":27477,"ts":326461956833,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":923241,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461956863,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":923271,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461956863,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":923271,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461956985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923393,"id":"0xaf88a249f182217a"},
-{"pid":27443,"tid":27477,"ts":326461956985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":923393},
-{"pid":27443,"tid":27477,"ts":326461957016,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":923424},
-{"pid":27443,"tid":27477,"ts":326461957016,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":923424,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461957046,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":923454},
-{"pid":27443,"tid":27477,"ts":326461957046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":923454,"id":"0xaf88a244f182217a"},
-{"pid":27443,"tid":27477,"ts":326461957077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923485,"id":"0xaf88a24af182217a"},
-{"pid":27443,"tid":27477,"ts":326461957077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":923485},
-{"pid":27443,"tid":27477,"ts":326461957107,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":923515},
-{"pid":27443,"tid":27477,"ts":326461957107,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":923515,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461957107,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":0,"tts":923546},
-{"pid":27443,"tid":27477,"ts":326461957138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":923546,"id":"0xaf88a245f182217a"},
-{"pid":27443,"tid":27477,"ts":326461957168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923577,"id":"0xaf88a24bf182217a"},
-{"pid":27443,"tid":27477,"ts":326461957168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":923577},
-{"pid":27443,"tid":27477,"ts":326461957168,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":923577},
-{"pid":27443,"tid":27477,"ts":326461957199,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":923607,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461957199,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":923607},
-{"pid":27443,"tid":27477,"ts":326461957229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":923638,"id":"0xaf88a244f182217a"},
-{"pid":27443,"tid":27477,"ts":326461957229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":1557,"tdur":1556,"tts":923638},
-{"pid":27443,"tid":27477,"ts":326461957229,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":1557,"tdur":1556,"tts":923638},
-{"pid":27443,"tid":27477,"ts":326461957260,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":923668},
-{"pid":27443,"tid":27477,"ts":326461957260,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":923668},
-{"pid":27443,"tid":27477,"ts":326461957260,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":923668},
-{"pid":27443,"tid":27477,"ts":326461957291,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":923699},
-{"pid":27443,"tid":27477,"ts":326461957382,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1404,"tdur":1404,"tts":923790},
-{"pid":27443,"tid":27477,"ts":326461957413,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1373,"tdur":1373,"tts":923821},
-{"pid":27443,"tid":27477,"ts":326461957413,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1312,"tdur":1312,"tts":923821},
-{"pid":27443,"tid":27477,"ts":326461957413,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":923821,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326461957504,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":923912},
-{"pid":27443,"tid":27477,"ts":326461957535,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":923943},
-{"pid":27443,"tid":27477,"ts":326461957565,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":923973},
-{"pid":27443,"tid":27477,"ts":326461957565,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":923973},
-{"pid":27443,"tid":27477,"ts":326461957596,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":924004},
-{"pid":27443,"tid":27477,"ts":326461957626,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924034},
-{"pid":27443,"tid":27477,"ts":326461957626,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":924034},
-{"pid":27443,"tid":27477,"ts":326461957657,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924065},
-{"pid":27443,"tid":27477,"ts":326461957687,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924095},
-{"pid":27443,"tid":27459,"ts":326461956619,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8070318},
-{"pid":27443,"tid":27459,"ts":326461956619,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":8070318},
-{"pid":27443,"tid":27459,"ts":326461961624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8075324,"id":"0xaf88a741f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461961655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8075354,"id":"0xaf88a522f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326461961685,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":205,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8075415,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461963700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8077399,"id":"0xaf88a743f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461963761,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":206,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8077460,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461966569,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":91,"tdur":61,"tts":8080299},
-{"pid":27443,"tid":27459,"ts":326461966599,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8080299,"id":"0xaf88a240f182217a"},
-{"pid":27443,"tid":27459,"ts":326461967118,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8080543,"id":"0xaf88a75cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461967179,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":207,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8080604,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461968858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8082282,"id":"0xaf88a75df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461968888,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":208,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8082313,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461968980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8082435,"id":"0xaf88a75ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461969041,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":209,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8082466,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461969773,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommit","args":{},"dur":0,"tdur":0,"tts":8083198},
-{"pid":27443,"tid":27459,"ts":326461974779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8088051,"id":"0xaf88a758f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461974840,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":210,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8088112,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461976244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8089546,"id":"0xaf88a759f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461976305,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":211,"frame":"0x78c60000","timeout":50,"singleShot":true}},"tts":8089577,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461977007,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8090309},
-{"pid":27443,"tid":27459,"ts":326461977037,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8090309},
-{"pid":27443,"tid":27459,"ts":326461977068,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8090340},
-{"pid":27443,"tid":27459,"ts":326461977342,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":1,"counters":true},"tts":8090645},
-{"pid":27443,"tid":27459,"ts":326461977403,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":1},"tts":8090676},
-{"pid":27443,"tid":27459,"ts":326461977403,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1099,"tdur":1098,"tts":8090676},
-{"pid":27443,"tid":27459,"ts":326461977526,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":13,"totalObjects":319,"partialLayout":false,"frame":"0x78c60000"}},"tts":8090798},
-{"pid":27443,"tid":27459,"ts":326461977556,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":8090828},
-{"pid":27443,"tid":27459,"ts":326461977587,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":8090859},
-{"pid":27443,"tid":27459,"ts":326461978014,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":30,"tdur":30,"tts":8091286},
-{"pid":27443,"tid":27459,"ts":326461978044,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":8091316},
-{"pid":27443,"tid":27459,"ts":326461978075,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":275,"tdur":275,"tts":8091347},
-{"pid":27443,"tid":27459,"ts":326461978380,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":61,"tdur":61,"tts":8091652},
-{"pid":27443,"tid":27459,"ts":326461978411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8091683,"id":"0xaf88a75af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461978441,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":8091744},
-{"pid":27443,"tid":27459,"ts":326461980181,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":205,"frame":"0x78c60000"}},"tts":8093483,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461984209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8097482,"id":"0xaf88a75bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461984271,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":212,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8097543,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461985125,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8098397,"id":"0xaf88a754f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461985156,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":213,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8098458,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461988238,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":213,"frame":"0x78c60000"}},"tts":8101419,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461988635,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8101785},
-{"pid":27443,"tid":27459,"ts":326461988788,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8101907},
-{"pid":27443,"tid":27459,"ts":326461988849,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8101968},
-{"pid":27443,"tid":27459,"ts":326461988879,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8101999},
-{"pid":27443,"tid":27459,"ts":326461988971,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8102090},
-{"pid":27443,"tid":27459,"ts":326461989093,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8102212},
-{"pid":27443,"tid":27459,"ts":326461989428,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8102548},
-{"pid":27443,"tid":27459,"ts":326461989551,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8102701},
-{"pid":27443,"tid":27459,"ts":326461990191,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":92,"tts":8103311},
-{"pid":27443,"tid":27459,"ts":326461990314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8103433,"id":"0xaf88a755f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461990802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8103921,"id":"0xaf88a756f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326461990863,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":214,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8103982,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326461993366,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8106485},
-{"pid":27443,"tid":27459,"ts":326461993518,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8106638},
-{"pid":27443,"tid":27459,"ts":326461993579,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8106699},
-{"pid":27443,"tid":27459,"ts":326461993610,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8106729},
-{"pid":27443,"tid":27459,"ts":326461993762,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8106882},
-{"pid":27443,"tid":27459,"ts":326461993915,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8107034},
-{"pid":27443,"tid":27459,"ts":326461993976,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8107126},
-{"pid":27443,"tid":27459,"ts":326461994068,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8107218},
-{"pid":27443,"tid":27459,"ts":326461994159,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8107279},
-{"pid":27443,"tid":27459,"ts":326461994312,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8107431},
-{"pid":27443,"tid":27459,"ts":326461994373,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8107523},
-{"pid":27443,"tid":27477,"ts":326461957687,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":924095},
-{"pid":27443,"tid":27477,"ts":326461957718,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924126},
-{"pid":27443,"tid":27477,"ts":326461957748,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924156},
-{"pid":27443,"tid":27477,"ts":326461957779,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924187},
-{"pid":27443,"tid":27477,"ts":326461957779,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924187},
-{"pid":27443,"tid":27477,"ts":326461957809,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924217},
-{"pid":27443,"tid":27477,"ts":326461957809,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":924248},
-{"pid":27443,"tid":27477,"ts":326461957840,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924248},
-{"pid":27443,"tid":27477,"ts":326461957870,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924278},
-{"pid":27443,"tid":27477,"ts":326461957870,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":924309},
-{"pid":27443,"tid":27477,"ts":326461957901,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":924309},
-{"pid":27443,"tid":27477,"ts":326461957931,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924340},
-{"pid":27443,"tid":27477,"ts":326461957962,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924370},
-{"pid":27443,"tid":27477,"ts":326461957962,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":924370},
-{"pid":27443,"tid":27477,"ts":326461957992,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924401},
-{"pid":27443,"tid":27477,"ts":326461958023,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924431},
-{"pid":27443,"tid":27477,"ts":326461958023,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":924431},
-{"pid":27443,"tid":27477,"ts":326461958054,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924462},
-{"pid":27443,"tid":27477,"ts":326461958084,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924492},
-{"pid":27443,"tid":27477,"ts":326461958084,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":924492},
-{"pid":27443,"tid":27477,"ts":326461958115,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924523},
-{"pid":27443,"tid":27477,"ts":326461958145,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924553},
-{"pid":27443,"tid":27477,"ts":326461958145,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":924553},
-{"pid":27443,"tid":27477,"ts":326461958176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924584},
-{"pid":27443,"tid":27477,"ts":326461958176,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924584},
-{"pid":27443,"tid":27477,"ts":326461958206,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":924614},
-{"pid":27443,"tid":27477,"ts":326461958237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924645},
-{"pid":27443,"tid":27477,"ts":326461958237,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924645},
-{"pid":27443,"tid":27477,"ts":326461958267,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924675},
-{"pid":27443,"tid":27477,"ts":326461958298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924706},
-{"pid":27443,"tid":27477,"ts":326461958298,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924706},
-{"pid":27443,"tid":27477,"ts":326461958328,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":924736},
-{"pid":27443,"tid":27477,"ts":326461958359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924767},
-{"pid":27443,"tid":27477,"ts":326461958359,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924767},
-{"pid":27443,"tid":27477,"ts":326461958389,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924797},
-{"pid":27443,"tid":27477,"ts":326461958481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924889},
-{"pid":27443,"tid":27477,"ts":326461958481,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924889},
-{"pid":27443,"tid":27477,"ts":326461958511,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924919},
-{"pid":27443,"tid":27477,"ts":326461958542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":924950},
-{"pid":27443,"tid":27477,"ts":326461958542,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":924950},
-{"pid":27443,"tid":27477,"ts":326461958572,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":924980},
-{"pid":27443,"tid":27477,"ts":326461958603,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":925011},
-{"pid":27443,"tid":27477,"ts":326461958633,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":925042},
-{"pid":27443,"tid":27477,"ts":326461958694,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":925103},
-{"pid":27443,"tid":27477,"ts":326461958694,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":925103},
-{"pid":27443,"tid":27477,"ts":326461958725,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":0,"tdur":0,"tts":925133},
-{"pid":27443,"tid":27477,"ts":326461958755,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":925164},
-{"pid":27443,"tid":27477,"ts":326461958755,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":925164,"id":"0xaf88a246f182217a"},
-{"pid":27443,"tid":27477,"ts":326461958786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":925225,"id":"0xaf88a245f182217a"},
-{"pid":27443,"tid":27477,"ts":326461958817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":152,"tts":925225},
-{"pid":27443,"tid":27477,"ts":326461958817,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":925225},
-{"pid":27443,"tid":27477,"ts":326461958817,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":925225},
-{"pid":27443,"tid":27477,"ts":326461958847,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":925255},
-{"pid":27443,"tid":27477,"ts":326461958847,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":925255},
-{"pid":27443,"tid":27477,"ts":326461958878,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":925286},
-{"pid":27443,"tid":27477,"ts":326461958939,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":925347},
-{"pid":27443,"tid":27477,"ts":326461958939,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":925347},
-{"pid":27443,"tid":27477,"ts":326461958969,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":925377,"id":"0xaf88a246f182217a"},
-{"pid":27443,"tid":27477,"ts":326461958969,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2289,"tdur":1770,"tts":925377},
-{"pid":27443,"tid":27477,"ts":326461959000,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2228,"tdur":1709,"tts":925408},
-{"pid":27443,"tid":27477,"ts":326461959000,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":0,"tdur":0,"tts":925408},
-{"pid":27443,"tid":27477,"ts":326461959030,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2198,"tdur":1679,"tts":925438},
-{"pid":27443,"tid":27477,"ts":326461959030,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":175},"dur":1099,"tdur":1068,"tts":925438},
-{"pid":27443,"tid":27477,"ts":326461959061,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":175},"dur":305,"tdur":305,"tts":925469},
-{"pid":27443,"tid":27477,"ts":326461959366,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":175},"dur":61,"tdur":61,"tts":925774},
-{"pid":27443,"tid":27477,"ts":326461959427,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":175},"tts":925835},
-{"pid":27443,"tid":27477,"ts":326461959641,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":926079},
-{"pid":27443,"tid":27477,"ts":326461959671,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":926079},
-{"pid":27443,"tid":27477,"ts":326461959671,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":926079},
-{"pid":27443,"tid":27477,"ts":326461959671,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":926110},
-{"pid":27443,"tid":27477,"ts":326461959702,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":926110,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461959793,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":926201},
-{"pid":27443,"tid":27477,"ts":326461960098,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":926506},
-{"pid":27443,"tid":27477,"ts":326461960129,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":793,"tdur":275,"tts":926537},
-{"pid":27443,"tid":27477,"ts":326461960129,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":926537},
-{"pid":27443,"tid":27477,"ts":326461960159,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":702,"tdur":183,"tts":926568},
-{"pid":27443,"tid":27477,"ts":326461960220,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":31,"tdur":30,"tts":926629},
-{"pid":27443,"tid":27477,"ts":326461960251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":926659,"id":"0xaf88abedf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461960922,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":926812,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461960953,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":926842,"id":"0x3000000a7"},
-{"pid":27443,"tid":27477,"ts":326461960983,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":926873,"id":"0x3000000a8"},
-{"pid":27443,"tid":27477,"ts":326461960983,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":926873,"id":"0x3000000a9"},
-{"pid":27443,"tid":27477,"ts":326461960983,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":184,"tdur":183,"tts":926873},
-{"pid":27443,"tid":27477,"ts":326461961106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":926995,"id":"0xaf88abeef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326461961167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":927086,"id":"0xaf88a740f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461961197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":927086,"id":"0xaf88a521f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326461963547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":927178,"id":"0xaf88a247f182217a"},
-{"pid":27443,"tid":27477,"ts":326461963547,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":927178},
-{"pid":27443,"tid":27477,"ts":326461963578,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":927208},
-{"pid":27443,"tid":27477,"ts":326461963608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":927239,"id":"0xaf88a742f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461966691,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":927361,"id":"0xaf88a240f182217a"},
-{"pid":27443,"tid":27477,"ts":326461966691,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":927361},
-{"pid":27443,"tid":27477,"ts":326461966691,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":0,"tts":927392},
-{"pid":27443,"tid":27477,"ts":326461970719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461970},"tts":927453,"id":"0xaf88a248f182217a"},
-{"pid":27443,"tid":27477,"ts":326461970750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":927483},
-{"pid":27443,"tid":27477,"ts":326461971544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":927575,"id":"0xaf88a241f182217a"},
-{"pid":27443,"tid":27477,"ts":326461971544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":274,"tts":927575},
-{"pid":27443,"tid":27477,"ts":326461971574,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461970419.0,"frame_time_us":326461970606.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":927605},
-{"pid":27443,"tid":27477,"ts":326461971605,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461970419.0,"frame_time_us":326461970606.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":183,"tdur":183,"tts":927636},
-{"pid":27443,"tid":27477,"ts":326461971635,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":176},"tts":927697},
-{"pid":27443,"tid":27477,"ts":326461971727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":927758,"id":"0xaf88a75ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326461971757,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":927788},
-{"pid":27443,"tid":27477,"ts":326461971757,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326461987272},"dur":31,"tdur":31,"tts":927788},
-{"pid":27443,"tid":27477,"ts":326461971788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":927819,"id":"0xaf88a242f182217a"},
-{"pid":27443,"tid":27477,"ts":326461987384,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461987},"tts":927941,"id":"0xaf88a242f182217a"},
-{"pid":27443,"tid":27477,"ts":326461987384,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2563,"tdur":458,"tts":927941},
-{"pid":27443,"tid":27477,"ts":326461987384,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2563,"tdur":428,"tts":927971},
-{"pid":27443,"tid":27477,"ts":326461987414,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":2533,"tdur":428,"tts":927971},
-{"pid":27443,"tid":27477,"ts":326461987414,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":2503,"tdur":397,"tts":927971},
-{"pid":27443,"tid":27477,"ts":326461987445,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":928002},
-{"pid":27443,"tid":27477,"ts":326461987567,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":928124},
-{"pid":27443,"tid":27477,"ts":326461987567,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":928124},
-{"pid":27443,"tid":27477,"ts":326461987597,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":2289,"tdur":183,"tts":928155},
-{"pid":27443,"tid":27477,"ts":326461987597,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2106,"tdur":0,"tts":928155},
-{"pid":27443,"tid":27477,"ts":326461989734,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":152,"tdur":153,"tts":928185},
-{"pid":27443,"tid":27477,"ts":326461989734,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":928185,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461989764,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":928216},
-{"pid":27443,"tid":27477,"ts":326461989795,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":928246},
-{"pid":27443,"tid":27477,"ts":326461989856,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":928307,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461989886,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":928368,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461989917,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":928368,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326461989978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":928429,"id":"0xaf88a243f182217a"},
-{"pid":27443,"tid":27477,"ts":326461989978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":671,"tdur":152,"tts":928460},
-{"pid":27443,"tid":27477,"ts":326461989978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":519,"tdur":0,"tts":928460},
-{"pid":27443,"tid":27477,"ts":326461990527,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326461987101.0,"frame_time_us":326461987288.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":928490},
-{"pid":27443,"tid":27477,"ts":326461990558,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326461987101.0,"frame_time_us":326461987288.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":91,"tdur":91,"tts":928521},
-{"pid":27443,"tid":27477,"ts":326461990619,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462003954},"dur":30,"tdur":30,"tts":928582},
-{"pid":27443,"tid":27477,"ts":326461990619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":928612,"id":"0xaf88a25ff182217a"},
-{"pid":27443,"tid":27471,"ts":326461990283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477399,"id":"0xaf88a25df182217a"},
-{"pid":27443,"tid":27471,"ts":326461990314,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":477430},
-{"pid":27443,"tid":27471,"ts":326461990314,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":477430},
-{"pid":27443,"tid":27471,"ts":326461990344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477460,"id":"0xaf88a25ef182217a"},
-{"pid":27443,"tid":27546,"ts":326461994647,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1771,"tdur":1771,"tts":71661},
-{"pid":27443,"tid":27546,"ts":326461994678,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":71692},
-{"pid":27443,"tid":27546,"ts":326461996387,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":73432},
-{"pid":27443,"tid":27498,"ts":326462001362,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":26522,"tdur":26156,"tts":63634},
-{"pid":27443,"tid":27498,"ts":326462001392,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":63665},
-{"pid":27443,"tid":27496,"ts":326462017477,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1159,"tdur":1129,"tts":83290},
-{"pid":27443,"tid":27496,"ts":326462017477,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":83320},
-{"pid":27443,"tid":27496,"ts":326462018636,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":84419},
-{"pid":27443,"tid":27498,"ts":326462027823,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":89790},
-{"pid":27443,"tid":27546,"ts":326462036949,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":702,"tdur":702,"tts":73493},
-{"pid":27443,"tid":27546,"ts":326462036979,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":73523},
-{"pid":27443,"tid":27496,"ts":326462037315,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":793,"tdur":794,"tts":84510},
-{"pid":27443,"tid":27496,"ts":326462037345,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":84541},
-{"pid":27443,"tid":27546,"ts":326462037620,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":74195},
-{"pid":27443,"tid":27496,"ts":326462038078,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":85273},
-{"pid":27443,"tid":27471,"ts":326462057886,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":477491},
-{"pid":27443,"tid":27471,"ts":326462057916,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":0,"tts":477552},
-{"pid":27443,"tid":27471,"ts":326462057947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477552,"id":"0xaf88a252f182217a"},
-{"pid":27443,"tid":27469,"ts":326462057947,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":507034},
-{"pid":27443,"tid":27469,"ts":326462057977,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":507065},
-{"pid":27443,"tid":27469,"ts":326462058008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":507095,"id":"0xaf88a253f182217a"},
-{"pid":27443,"tid":27471,"ts":326462058008,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":477613},
-{"pid":27443,"tid":27471,"ts":326462058008,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":477613},
-{"pid":27443,"tid":27471,"ts":326462058008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":477643,"id":"0xaf88a26cf182217a"},
-{"pid":27443,"tid":27469,"ts":326462071193,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":507126},
-{"pid":27443,"tid":27469,"ts":326462071223,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":507157},
-{"pid":27443,"tid":27469,"ts":326462071223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":507157,"id":"0xaf88a269f182217a"},
-{"pid":27443,"tid":27469,"ts":326462071284,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":507218},
-{"pid":27443,"tid":27469,"ts":326462071315,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":507248},
-{"pid":27443,"tid":27469,"ts":326462071315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":507248,"id":"0xaf88a26af182217a"},
-{"pid":27443,"tid":27469,"ts":326462071315,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1922,"tdur":855,"tts":507248},
-{"pid":27443,"tid":27469,"ts":326462071345,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1892,"tdur":824,"tts":507279},
-{"pid":27443,"tid":27469,"ts":326462071345,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e423948"},"tileResolution":"HIGH_RESOLUTION"}},"tts":507309},
-{"pid":27443,"tid":27469,"ts":326462071376,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":507309},
-{"pid":27443,"tid":27469,"ts":326462071437,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":507370},
-{"pid":27443,"tid":27469,"ts":326462071437,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e423948"},"tileResolution":"HIGH_RESOLUTION"}},"tts":507370},
-{"pid":27443,"tid":27469,"ts":326462071467,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":507401,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462071894,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2442,"tdur":824,"tts":477674},
-{"pid":27443,"tid":27471,"ts":326462071925,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":2411,"tdur":824,"tts":477674},
-{"pid":27443,"tid":27471,"ts":326462071956,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":94,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e42e5c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":477704},
-{"pid":27443,"tid":27471,"ts":326462071956,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":477704},
-{"pid":27443,"tid":27471,"ts":326462072017,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":477765},
-{"pid":27443,"tid":27471,"ts":326462072017,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":94,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e42e5c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":477765},
-{"pid":27443,"tid":27471,"ts":326462072169,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":477796,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462073237,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":508103},
-{"pid":27443,"tid":27469,"ts":326462073237,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":9279,"tdur":915,"tts":508103},
-{"pid":27443,"tid":27469,"ts":326462073268,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":9248,"tdur":885,"tts":508133},
-{"pid":27443,"tid":27469,"ts":326462073268,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e24d2c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":508133},
-{"pid":27443,"tid":27469,"ts":326462073298,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":508164},
-{"pid":27443,"tid":27469,"ts":326462073329,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":508194},
-{"pid":27443,"tid":27469,"ts":326462073359,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":90,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e24d2c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":508225},
-{"pid":27443,"tid":27469,"ts":326462073390,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":508255,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462074306,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":478467},
-{"pid":27443,"tid":27471,"ts":326462074336,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":732,"tts":478498},
-{"pid":27443,"tid":27471,"ts":326462074336,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":732,"tts":478498},
-{"pid":27443,"tid":27471,"ts":326462074367,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":94,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e441a20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":478528},
-{"pid":27443,"tid":27471,"ts":326462074367,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":478528},
-{"pid":27443,"tid":27471,"ts":326462074428,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":478589},
-{"pid":27443,"tid":27471,"ts":326462074428,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":94,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e441a20"},"tileResolution":"HIGH_RESOLUTION"}},"tts":478589},
-{"pid":27443,"tid":27471,"ts":326462074458,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":478620,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326461990680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":928643,"id":"0xaf88a25cf182217a"},
-{"pid":27443,"tid":27477,"ts":326461990680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":928643},
-{"pid":27443,"tid":27477,"ts":326461990710,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":928673},
-{"pid":27443,"tid":27477,"ts":326461990710,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":928673,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461990741,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":928704},
-{"pid":27443,"tid":27477,"ts":326461990741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":928704,"id":"0xaf88a258f182217a"},
-{"pid":27443,"tid":27477,"ts":326461990771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":928734,"id":"0xaf88a25df182217a"},
-{"pid":27443,"tid":27477,"ts":326461990802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":928765},
-{"pid":27443,"tid":27477,"ts":326461990802,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":928765},
-{"pid":27443,"tid":27477,"ts":326461990832,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":928796,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461990832,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":928796},
-{"pid":27443,"tid":27477,"ts":326461990832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":928796,"id":"0xaf88a259f182217a"},
-{"pid":27443,"tid":27477,"ts":326461990863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":928826,"id":"0xaf88a25ef182217a"},
-{"pid":27443,"tid":27477,"ts":326461990893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":928857},
-{"pid":27443,"tid":27477,"ts":326461990893,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":928857},
-{"pid":27443,"tid":27477,"ts":326461990893,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":928857,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326461990924,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":928887},
-{"pid":27443,"tid":27477,"ts":326461990924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":928918,"id":"0xaf88a258f182217a"},
-{"pid":27443,"tid":27477,"ts":326461990954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":213,"tts":928918},
-{"pid":27443,"tid":27477,"ts":326461990954,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":184,"tdur":183,"tts":928918},
-{"pid":27443,"tid":27477,"ts":326461990954,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":62,"tdur":0,"tts":928948},
-{"pid":27443,"tid":27477,"ts":326461990985,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":928948},
-{"pid":27443,"tid":27477,"ts":326461991016,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":928979},
-{"pid":27443,"tid":27477,"ts":326461991016,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":928979},
-{"pid":27443,"tid":27477,"ts":326461991107,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":929070},
-{"pid":27443,"tid":27477,"ts":326461991138,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":929101},
-{"pid":27443,"tid":27477,"ts":326461991168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929131,"id":"0xaf88a259f182217a"},
-{"pid":27443,"tid":27477,"ts":326461991168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":214,"tts":929131},
-{"pid":27443,"tid":27477,"ts":326461991199,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":183,"tdur":183,"tts":929162},
-{"pid":27443,"tid":27477,"ts":326461991199,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":929162},
-{"pid":27443,"tid":27477,"ts":326461991199,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":929162},
-{"pid":27443,"tid":27477,"ts":326461991229,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":122,"tdur":92,"tts":929192},
-{"pid":27443,"tid":27477,"ts":326461991229,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":929192},
-{"pid":27443,"tid":27477,"ts":326461991351,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":929314},
-{"pid":27443,"tid":27477,"ts":326461991351,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":929314},
-{"pid":27443,"tid":27477,"ts":326462004078,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462003},"tts":929436,"id":"0xaf88a25ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462004078,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":61,"tts":929436},
-{"pid":27443,"tid":27477,"ts":326462004109,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":30,"tts":929467},
-{"pid":27443,"tid":27477,"ts":326462006001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929528,"id":"0xaf88a25af182217a"},
-{"pid":27443,"tid":27477,"ts":326462006032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":152,"tts":929559},
-{"pid":27443,"tid":27477,"ts":326462006062,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462003782.0,"frame_time_us":326462003969.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":929589},
-{"pid":27443,"tid":27477,"ts":326462006093,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462003782.0,"frame_time_us":326462003969.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":929620},
-{"pid":27443,"tid":27477,"ts":326462006123,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462020635},"dur":31,"tdur":31,"tts":929650},
-{"pid":27443,"tid":27477,"ts":326462006154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":929681,"id":"0xaf88a25bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462020895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462020},"tts":929803,"id":"0xaf88a25bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462020895,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1312,"tdur":30,"tts":929803},
-{"pid":27443,"tid":27477,"ts":326462022207,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":929833},
-{"pid":27443,"tid":27477,"ts":326462022207,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":929833},
-{"pid":27443,"tid":27477,"ts":326462022238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":929894,"id":"0xaf88a254f182217a"},
-{"pid":27443,"tid":27477,"ts":326462022268,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":929894},
-{"pid":27443,"tid":27477,"ts":326462022299,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462020464.0,"frame_time_us":326462020651.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":929925},
-{"pid":27443,"tid":27477,"ts":326462022329,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462020464.0,"frame_time_us":326462020651.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":929955},
-{"pid":27443,"tid":27477,"ts":326462022360,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462037317},"dur":30,"tdur":30,"tts":929986},
-{"pid":27443,"tid":27477,"ts":326462022390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":930016,"id":"0xaf88a255f182217a"},
-{"pid":27443,"tid":27477,"ts":326462037712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462037},"tts":930108,"id":"0xaf88a255f182217a"},
-{"pid":27443,"tid":27477,"ts":326462037742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":930138},{"pid":27443,"tid":27477,"ts":326462037742,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":930138},
-{"pid":27443,"tid":27477,"ts":326462038994,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":930230,"id":"0xaf88a256f182217a"},
-{"pid":27443,"tid":27477,"ts":326462039024,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":930260},
-{"pid":27443,"tid":27477,"ts":326462039085,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462037145.0,"frame_time_us":326462037332.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":183,"tdur":183,"tts":930322},
-{"pid":27443,"tid":27477,"ts":326462039116,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462037145.0,"frame_time_us":326462037332.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":152,"tdur":153,"tts":930352},
-{"pid":27443,"tid":27477,"ts":326462039207,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462053998},"dur":61,"tdur":61,"tts":930444},
-{"pid":27443,"tid":27477,"ts":326462039238,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":930474,"id":"0xaf88a257f182217a"},
-{"pid":27443,"tid":27477,"ts":326462052514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":930657,"id":"0xaf88a250f182217a"},
-{"pid":27443,"tid":27459,"ts":326461994617,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8107767},
-{"pid":27443,"tid":27459,"ts":326461995105,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":91,"tts":8108225},
-{"pid":27443,"tid":27459,"ts":326461996418,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8109385},
-{"pid":27443,"tid":27459,"ts":326461996845,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8109842},
-{"pid":27443,"tid":27459,"ts":326461997333,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8110300},
-{"pid":27443,"tid":27459,"ts":326461997974,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8110972},
-{"pid":27443,"tid":27459,"ts":326461998188,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8111155},
-{"pid":27443,"tid":27459,"ts":326461998981,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8111948},
-{"pid":27443,"tid":27459,"ts":326461999195,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8112162},
-{"pid":27443,"tid":27459,"ts":326462001331,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8113963},
-{"pid":27443,"tid":27459,"ts":326462002796,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8115428},
-{"pid":27443,"tid":27459,"ts":326462005330,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8117869},
-{"pid":27443,"tid":27459,"ts":326462008076,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":8120433},
-{"pid":27443,"tid":27459,"ts":326462010549,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8122875},
-{"pid":27443,"tid":27459,"ts":326462012868,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8125194},
-{"pid":27443,"tid":27459,"ts":326462015188,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8127514},
-{"pid":27443,"tid":27459,"ts":326462016958,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8129253},
-{"pid":27443,"tid":27459,"ts":326462017049,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8129375},
-{"pid":27443,"tid":27459,"ts":326462017110,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8129406},
-{"pid":27443,"tid":27459,"ts":326462017141,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8129436},
-{"pid":27443,"tid":27459,"ts":326462017233,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8129558},
-{"pid":27443,"tid":27459,"ts":326462017446,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8129742},
-{"pid":27443,"tid":27459,"ts":326462018606,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8130627},
-{"pid":27443,"tid":27459,"ts":326462018697,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8130718},
-{"pid":27443,"tid":27459,"ts":326462018881,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8130901},
-{"pid":27443,"tid":27459,"ts":326462023276,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":210,"frame":"0x78c60000"}},"tts":8134961,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462027823,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8139539},
-{"pid":27443,"tid":27459,"ts":326462029837,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8141553},
-{"pid":27443,"tid":27459,"ts":326462036186,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8147901},
-{"pid":27443,"tid":27459,"ts":326462036308,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8147993},
-{"pid":27443,"tid":27459,"ts":326462036369,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8148054},
-{"pid":27443,"tid":27459,"ts":326462036399,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8148084},
-{"pid":27443,"tid":27459,"ts":326462036491,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8148176},
-{"pid":27443,"tid":27459,"ts":326462036643,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8148329},
-{"pid":27443,"tid":27459,"ts":326462036674,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8148390},
-{"pid":27443,"tid":27459,"ts":326462036766,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8148481},
-{"pid":27443,"tid":27459,"ts":326462036827,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8148512},
-{"pid":27443,"tid":27459,"ts":326462036918,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8148603},
-{"pid":27443,"tid":27459,"ts":326462036949,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8148664},
-{"pid":27443,"tid":27459,"ts":326462037040,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8148725},
-{"pid":27443,"tid":27459,"ts":326462037071,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8148756},
-{"pid":27443,"tid":27459,"ts":326462037071,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8148756},
-{"pid":27443,"tid":27459,"ts":326462037162,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8148847},
-{"pid":27443,"tid":27459,"ts":326462037284,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8148969},
-{"pid":27443,"tid":27459,"ts":326462037651,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8149366},
-{"pid":27443,"tid":27459,"ts":326462037834,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8149549},
-{"pid":27443,"tid":27459,"ts":326462038078,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8149671},
-{"pid":27443,"tid":27459,"ts":326462038200,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8149793},
-{"pid":27443,"tid":27459,"ts":326462042870,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8154433},
-{"pid":27443,"tid":27459,"ts":326462043022,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":8154555},
-{"pid":27443,"tid":27459,"ts":326462043053,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8154585,"id":"0xaf88abeff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462043114,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1382},"dur":30,"tdur":31,"tts":8154646},
-{"pid":27443,"tid":27459,"ts":326462043144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8154677,"id":"0xaf88abe8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462043236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461958},"tts":8154768,"id":"0xaf88a509f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":8154768},
-{"pid":27443,"tid":27459,"ts":326462043297,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8154829,"id":"0xaf88a526f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8154829},
-{"pid":27443,"tid":27459,"ts":326462043327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8154860,"id":"0xaf88a6bff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462043327,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":61,"tdur":61,"tts":8154860},
-{"pid":27443,"tid":27459,"ts":326462043358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8154890,"id":"0xaf88a757f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462043358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8154890,"id":"0xaf88a523f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8154951,"id":"0xaf88a527f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8154951},
-{"pid":27443,"tid":27459,"ts":326462043450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8154982,"id":"0xaf88a740f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462005421,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":426308},
-{"pid":27443,"tid":27466,"ts":326462005482,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":426369},
-{"pid":27443,"tid":27466,"ts":326462005482,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":426369,"id":"0xba46be02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462005543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426430,"id":"0xaf88a25af182217a"},
-{"pid":27443,"tid":27466,"ts":326462021627,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":426522},
-{"pid":27443,"tid":27466,"ts":326462021688,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":62,"tdur":61,"tts":426583},
-{"pid":27443,"tid":27466,"ts":326462021688,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":426583,"id":"0xba46bf02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462021719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426644,"id":"0xaf88a254f182217a"},
-{"pid":27443,"tid":27466,"ts":326462038688,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":426705},
-{"pid":27443,"tid":27466,"ts":326462038749,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":426766},
-{"pid":27443,"tid":27466,"ts":326462038749,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":426766,"id":"0xba46c002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462038780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":426827,"id":"0xaf88a256f182217a"},
-{"pid":27443,"tid":27466,"ts":326462043114,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":426979,"id":"0xaf88abeff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462043144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":426979},
-{"pid":27443,"tid":27466,"ts":326462043144,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427010,"id":"0xccc61802"},
-{"pid":27443,"tid":27466,"ts":326462043236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":427071,"id":"0xaf88abe8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462043236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":427071},
-{"pid":27443,"tid":27466,"ts":326462043236,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427071,"id":"0xccc61902"},
-{"pid":27443,"tid":27466,"ts":326462044670,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":427163},
-{"pid":27443,"tid":27466,"ts":326462044701,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":942},"dur":122,"tdur":61,"tts":427224},
-{"pid":27443,"tid":27466,"ts":326462044731,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427224,"id":"0xba46c102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462044762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":427254,"id":"0xaf88a750f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462044792,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":427285,"id":"0xaf88a53df3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462054925,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":427376},
-{"pid":27443,"tid":27466,"ts":326462054986,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":427437},
-{"pid":27443,"tid":27466,"ts":326462054986,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427437,"id":"0xba46c202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462055017,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":427468,"id":"0xaf88a251f182217a"},
-{"pid":27443,"tid":27466,"ts":326462068049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":427620,"id":"0xaf88abe9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462068049,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":427620},
-{"pid":27443,"tid":27466,"ts":326462068079,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427651,"id":"0xccc61a06"},
-{"pid":27443,"tid":27466,"ts":326462068293,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":92,"tts":427742},
-{"pid":27443,"tid":27466,"ts":326462068324,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":427773},
-{"pid":27443,"tid":27466,"ts":326462068324,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427773,"id":"0xc4c2300a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462069361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":427926,"id":"0xaf88abeaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462069361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":427926},
-{"pid":27443,"tid":27466,"ts":326462069392,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":427956,"id":"0xccc61b02"},
-{"pid":27443,"tid":27466,"ts":326462072719,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":428048},
-{"pid":27443,"tid":27466,"ts":326462072749,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":61,"tts":428109},
-{"pid":27443,"tid":27466,"ts":326462072780,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":428109,"id":"0xba46c502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462072810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":428139,"id":"0xaf88a265f182217a"},
-{"pid":27443,"tid":27466,"ts":326462074855,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":428231},
-{"pid":27443,"tid":27466,"ts":326462074885,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":61,"tts":428292},
-{"pid":27443,"tid":27466,"ts":326462074916,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":428292,"id":"0xba46c702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462074947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":428322,"id":"0xaf88a266f182217a"},
-{"pid":27443,"tid":27466,"ts":326462078212,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":428444,"id":"0xaf88abebf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462078243,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":244,"tdur":92,"tts":428444},
-{"pid":27443,"tid":27466,"ts":326462078243,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":428444,"id":"0xccc61c02"},
-{"pid":27443,"tid":27466,"ts":326462082577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":428628,"id":"0xaf88abe4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462082577,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":428628},
-{"pid":27443,"tid":27466,"ts":326462082607,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":428658,"id":"0xccc61d02"},
-{"pid":27443,"tid":27466,"ts":326462083157,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":428841,"id":"0xaf88abe5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462083187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":336,"tdur":91,"tts":428872},
-{"pid":27443,"tid":27466,"ts":326462083187,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":428872,"id":"0xccc61e02"},
-{"pid":27443,"tid":27466,"ts":326462087612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429024,"id":"0xaf88abe6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462087643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":977,"tdur":61,"tts":429055},
-{"pid":27443,"tid":27466,"ts":326462087674,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429085,"id":"0xccc61f02"},
-{"pid":27443,"tid":27466,"ts":326462098050,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429177,"id":"0xaf88abe7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462098050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":429177},
-{"pid":27443,"tid":27466,"ts":326462098081,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429207,"id":"0xccc62002"},
-{"pid":27443,"tid":27466,"ts":326462105620,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":429299},
-{"pid":27443,"tid":27466,"ts":326462105650,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":429330},
-{"pid":27443,"tid":27466,"ts":326462105650,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429330,"id":"0xba46c802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462105711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":429391,"id":"0xaf88a27cf182217a"},
-{"pid":27443,"tid":27466,"ts":326462121093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429513,"id":"0xaf88abe0f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462043450,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":30,"tdur":30,"tts":8154982},
-{"pid":27443,"tid":27459,"ts":326462043480,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8155012},
-{"pid":27443,"tid":27459,"ts":326462043511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8155043,"id":"0xaf88a520f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043541,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8155074},
-{"pid":27443,"tid":27459,"ts":326462043541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8155074,"id":"0xaf88a53cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8155104,"id":"0xaf88a742f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462043572,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":8155104},
-{"pid":27443,"tid":27459,"ts":326462043572,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":8155104},
-{"pid":27443,"tid":27459,"ts":326462043633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8155165,"id":"0xaf88a521f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462043633,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11842,"tdur":8973,"tts":8155165},
-{"pid":27443,"tid":27459,"ts":326462043663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8155196,"id":"0xaf88a75ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462043663,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":11781,"tdur":8912,"tts":8155196},
-{"pid":27443,"tid":27459,"ts":326462043694,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":176},"tts":8155226},
-{"pid":27443,"tid":27459,"ts":326462043694,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":0,"tts":8155226},
-{"pid":27443,"tid":27459,"ts":326462043724,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":8155257},
-{"pid":27443,"tid":27459,"ts":326462043755,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":8155287},
-{"pid":27443,"tid":27459,"ts":326462043785,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":7874,"tdur":7874,"tts":8155318},
-{"pid":27443,"tid":27459,"ts":326462043816,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8155348},
-{"pid":27443,"tid":27459,"ts":326462043846,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8155379},
-{"pid":27443,"tid":27459,"ts":326462043846,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8155379},
-{"pid":27443,"tid":27459,"ts":326462045464,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":18,"counters":true},"tts":8156996},
-{"pid":27443,"tid":27459,"ts":326462045494,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":18},"tts":8157027},
-{"pid":27443,"tid":27459,"ts":326462045494,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1038,"tdur":1038,"tts":8157027},
-{"pid":27443,"tid":27459,"ts":326462045586,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":22,"totalObjects":330,"partialLayout":false,"frame":"0x78c60000"}},"tts":8157149},
-{"pid":27443,"tid":27459,"ts":326462045616,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":31,"tdur":0,"tts":8157149},
-{"pid":27443,"tid":27459,"ts":326462045647,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":8157179},
-{"pid":27443,"tid":27459,"ts":326462046166,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":0,"tdur":0,"tts":8157698},
-{"pid":27443,"tid":27459,"ts":326462046166,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":8157729},
-{"pid":27443,"tid":27459,"ts":326462046196,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":245,"tdur":244,"tts":8157729},
-{"pid":27443,"tid":27459,"ts":326462046441,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":30,"tdur":30,"tts":8157973},
-{"pid":27443,"tid":27459,"ts":326462046471,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":8158034},
-{"pid":27443,"tid":27459,"ts":326462046532,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":5097,"tdur":5066,"tts":8158095},
-{"pid":27443,"tid":27459,"ts":326462046563,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3632,"tdur":3632,"tts":8158095},
-{"pid":27443,"tid":27459,"ts":326462046563,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":946,"tdur":915,"tts":8158126},
-{"pid":27443,"tid":27459,"ts":326462047509,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":183,"tts":8159041},
-{"pid":27443,"tid":27459,"ts":326462047692,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":488,"tdur":489,"tts":8159224},
-{"pid":27443,"tid":27459,"ts":326462048180,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":30,"tts":8159713},
-{"pid":27443,"tid":27459,"ts":326462048211,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1770,"tdur":1770,"tts":8159743},
-{"pid":27443,"tid":27459,"ts":326462049981,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":214,"tdur":214,"tts":8161513},
-{"pid":27443,"tid":27459,"ts":326462049981,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":8161513},
-{"pid":27443,"tid":27459,"ts":326462050195,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1098,"tdur":1069,"tts":8161757},
-{"pid":27443,"tid":27459,"ts":326462050225,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1038,"tdur":1038,"tts":8161757},
-{"pid":27443,"tid":27459,"ts":326462050256,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":213,"tdur":214,"tts":8161788},
-{"pid":27443,"tid":27459,"ts":326462050469,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":794,"tdur":763,"tts":8162032},
-{"pid":27443,"tid":27459,"ts":326462050530,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":550,"tdur":549,"tts":8162063},
-{"pid":27443,"tid":27459,"ts":326462051293,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":8162826},
-{"pid":27443,"tid":27459,"ts":326462051324,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":305,"tdur":305,"tts":8162856},
-{"pid":27443,"tid":27459,"ts":326462051659,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":176},"dur":733,"tdur":732,"tts":8163192},
-{"pid":27443,"tid":27459,"ts":326462051659,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":733,"tdur":732,"tts":8163192},
-{"pid":27443,"tid":27459,"ts":326462051934,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":275,"tdur":274,"tts":8163467},
-{"pid":27443,"tid":27459,"ts":326462052056,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[0,0,384,0,384,520,0,520],"nodeId":14,"layerId":46}},"dur":61,"tdur":61,"tts":8163589},
-{"pid":27443,"tid":27459,"ts":326462052117,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":0,"tts":8163680},
-{"pid":27443,"tid":27459,"ts":326462052239,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":0,"tdur":0,"tts":8163772},
-{"pid":27443,"tid":27459,"ts":326462052239,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":31,"tdur":30,"tts":8163772},
-{"pid":27443,"tid":27459,"ts":326462052270,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":30,"tdur":0,"tts":8163802},
-{"pid":27443,"tid":27459,"ts":326462052300,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":0,"tdur":0,"tts":8163833},
-{"pid":27443,"tid":27459,"ts":326462052300,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":31,"tdur":30,"tts":8163833},
-{"pid":27443,"tid":27459,"ts":326462052331,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":0,"tdur":0,"tts":8163863},
-{"pid":27443,"tid":27459,"ts":326462052331,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":30,"tdur":31,"tts":8163863},
-{"pid":27443,"tid":27459,"ts":326462052361,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":176},"dur":0,"tdur":0,"tts":8163894},
-{"pid":27443,"tid":27459,"ts":326462052392,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":8163924,"id":"0x3000000ab"},
-{"pid":27443,"tid":27459,"ts":326462052423,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2990,"tdur":122,"tts":8163955},
-{"pid":27443,"tid":27459,"ts":326462052423,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8163955,"id":"0xaf88a250f182217a"},
-{"pid":27443,"tid":27459,"ts":326462055444,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8164108},
-{"pid":27443,"tid":27477,"ts":326462052545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":5585,"tdur":5554,"tts":930688},
-{"pid":27443,"tid":27477,"ts":326462052545,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":930688},
-{"pid":27443,"tid":27477,"ts":326462052606,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":5524,"tdur":5524,"tts":930718},
-{"pid":27443,"tid":27477,"ts":326462052636,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":30,"tts":930749},
-{"pid":27443,"tid":27477,"ts":326462052667,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":5463,"tdur":5433,"tts":930779},
-{"pid":27443,"tid":27477,"ts":326462052697,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":5402,"tdur":5402,"tts":930810},
-{"pid":27443,"tid":27477,"ts":326462052728,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":61,"tdur":61,"tts":930840},
-{"pid":27443,"tid":27477,"ts":326462052728,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":930871},
-{"pid":27443,"tid":27477,"ts":326462052789,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":930901,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462052819,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":930932},
-{"pid":27443,"tid":27477,"ts":326462052850,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":946,"tdur":947,"tts":930962},
-{"pid":27443,"tid":27477,"ts":326462053796,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":931909},
-{"pid":27443,"tid":27477,"ts":326462053857,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1404,"tdur":1374,"tts":932000},
-{"pid":27443,"tid":27477,"ts":326462055383,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":2686,"tdur":2685,"tts":933496},
-{"pid":27443,"tid":27477,"ts":326462055413,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":176},"dur":825,"tdur":824,"tts":933526},
-{"pid":27443,"tid":27477,"ts":326462056268,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":176},"dur":92,"tdur":91,"tts":934381},
-{"pid":27443,"tid":27477,"ts":326462056390,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":176},"tts":934503},
-{"pid":27443,"tid":27477,"ts":326462057153,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":30,"tts":935266},
-{"pid":27443,"tid":27477,"ts":326462057214,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":935327},
-{"pid":27443,"tid":27477,"ts":326462057214,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":824,"tdur":794,"tts":935357},
-{"pid":27443,"tid":27477,"ts":326462057245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":366,"tdur":367,"tts":935357},
-{"pid":27443,"tid":27477,"ts":326462057611,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":935724},
-{"pid":27443,"tid":27477,"ts":326462057641,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":935754},
-{"pid":27443,"tid":27477,"ts":326462057672,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":305,"tdur":305,"tts":935785},
-{"pid":27443,"tid":27477,"ts":326462057703,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":244,"tdur":244,"tts":935815},
-{"pid":27443,"tid":27477,"ts":326462057733,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":935846,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462057764,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":935876},
-{"pid":27443,"tid":27477,"ts":326462057794,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":92,"tdur":61,"tts":935937},
-{"pid":27443,"tid":27477,"ts":326462057916,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":936029,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462058008,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":210}},"tts":936120,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462058008,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":936151,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462058160,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462054},"tts":936273,"id":"0xaf88a257f182217a"},
-{"pid":27443,"tid":27477,"ts":326462058191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":91,"tdur":61,"tts":936304},
-{"pid":27443,"tid":27477,"ts":326462058221,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":936334},
-{"pid":27443,"tid":27477,"ts":326462058282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":936395,"id":"0xaf88a251f182217a"},
-{"pid":27443,"tid":27477,"ts":326462058313,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":274,"tts":936426},
-{"pid":27443,"tid":27477,"ts":326462058374,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462053827.0,"frame_time_us":326462054014.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":213,"tts":936487},
-{"pid":27443,"tid":27477,"ts":326462058435,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462053827.0,"frame_time_us":326462054014.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":153,"tdur":152,"tts":936548},
-{"pid":27443,"tid":27477,"ts":326462058496,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462070680},"dur":61,"tdur":61,"tts":936609},
-{"pid":27443,"tid":27477,"ts":326462058527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":936639,"id":"0xaf88a26df182217a"},
-{"pid":27443,"tid":27477,"ts":326462058618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":936731,"id":"0xaf88a252f182217a"},
-{"pid":27443,"tid":27477,"ts":326462058649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":183,"tdur":183,"tts":936761},
-{"pid":27443,"tid":27477,"ts":326462058679,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":122,"tdur":122,"tts":936792},
-{"pid":27443,"tid":27477,"ts":326462058710,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":936822,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462058740,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":936853},
-{"pid":27443,"tid":27477,"ts":326462058771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":936883,"id":"0xaf88a26ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462058832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":936944,"id":"0xaf88a253f182217a"},
-{"pid":27443,"tid":27477,"ts":326462058862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":153,"tts":936975},
-{"pid":27443,"tid":27477,"ts":326462058893,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":122,"tdur":123,"tts":937005},
-{"pid":27443,"tid":27477,"ts":326462058923,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":937036,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462058954,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":937067},
-{"pid":27443,"tid":27477,"ts":326462058984,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":937097,"id":"0xaf88a26ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462059045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":937158,"id":"0xaf88a26cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462059076,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":937189},
-{"pid":27443,"tid":27477,"ts":326462059076,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":92,"tdur":91,"tts":937189},
-{"pid":27443,"tid":27477,"ts":326462059106,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":937219,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462059137,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":937250},
-{"pid":27443,"tid":27477,"ts":326462059198,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":937311,"id":"0xaf88a26ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462059198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":5127,"tdur":5097,"tts":937341},
-{"pid":27443,"tid":27477,"ts":326462059229,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":5066,"tdur":5067,"tts":937341},
-{"pid":27443,"tid":27477,"ts":326462059259,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":937372},
-{"pid":27443,"tid":27477,"ts":326462059290,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":937402},
-{"pid":27443,"tid":27477,"ts":326462059320,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":275,"tdur":244,"tts":937463},
-{"pid":27443,"tid":27477,"ts":326462059351,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":213,"tdur":214,"tts":937463},
-{"pid":27443,"tid":27459,"ts":326462055505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8164169,"id":"0xaf88a53cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462055536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8164199},
-{"pid":27443,"tid":27459,"ts":326462055536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8164199,"id":"0xaf88a53ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462055566,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8164230,"id":"0xaf88a750f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462055566,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":8164230},
-{"pid":27443,"tid":27459,"ts":326462055566,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":942},"dur":61,"tdur":61,"tts":8164230},
-{"pid":27443,"tid":27459,"ts":326462055658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461962},"tts":8164321,"id":"0xaf88a522f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462055688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":8164352},
-{"pid":27443,"tid":27459,"ts":326462055749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8164413,"id":"0xaf88a53df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462055749,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8164413},
-{"pid":27443,"tid":27459,"ts":326462055810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8164474,"id":"0xaf88a53ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462055810,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8164474},
-{"pid":27443,"tid":27459,"ts":326462069544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8164565,"id":"0xaf88a53ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462069575,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1495,"tdur":91,"tts":8164596},
-{"pid":27443,"tid":27459,"ts":326462069605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8164626,"id":"0xaf88a538f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462069605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8164626,"id":"0xaf88a751f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462069636,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":1404,"tdur":0,"tts":8164657},
-{"pid":27443,"tid":27459,"ts":326462069636,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8164657},
-{"pid":27443,"tid":27459,"ts":326462071101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8164748,"id":"0xaf88a538f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462071101,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":0,"tts":8164779},
-{"pid":27443,"tid":27459,"ts":326462077938,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8164871,"id":"0xaf88a539f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462077938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8164871},
-{"pid":27443,"tid":27459,"ts":326462077968,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8164901,"id":"0xaf88a53af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462077999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8164932,"id":"0xaf88a752f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462077999,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":8164932},
-{"pid":27443,"tid":27459,"ts":326462078029,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8164962},
-{"pid":27443,"tid":27459,"ts":326462078090,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8165023,"id":"0xaf88a53af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462078121,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8165054},
-{"pid":27443,"tid":27459,"ts":326462082332,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462081},"tts":8165176,"id":"0xaf88a638f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462082363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/renderer/chrome_render_process_observer.cc","src_func":"OnRequestComplete"},"dur":122,"tdur":122,"tts":8165206},
-{"pid":27443,"tid":27459,"ts":326462082394,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":37,"line":352},"dur":61,"tdur":61,"tts":8165237},
-{"pid":27443,"tid":27459,"ts":326462082394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8165237,"id":"0xaf88abe4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462088070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8165420,"id":"0xaf88a53bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462088070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8165420},
-{"pid":27443,"tid":27459,"ts":326462088101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8165450,"id":"0xaf88a534f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462088131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8165481,"id":"0xaf88a753f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462088131,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":122,"tdur":92,"tts":8165481},
-{"pid":27443,"tid":27459,"ts":326462088131,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":92,"tdur":92,"tts":8165481},
-{"pid":27443,"tid":27459,"ts":326462088192,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8165542,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462088192,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8165542,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462088284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8165634,"id":"0xaf88a534f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462088314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":20144,"tdur":12788,"tts":8165664},
-{"pid":27443,"tid":27459,"ts":326462088314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8165664,"id":"0xaf88a535f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462088345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8165695,"id":"0xaf88a64bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462088345,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":20082,"tdur":12727,"tts":8165695},
-{"pid":27443,"tid":27459,"ts":326462088375,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":20052,"tdur":12697,"tts":8165725},
-{"pid":27443,"tid":27459,"ts":326462088375,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":31,"tts":8165725},
-{"pid":27443,"tid":27459,"ts":326462088864,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":203,"frame":"0x78c60000"}},"dur":19563,"tdur":12574,"tts":8165817},
-{"pid":27443,"tid":27459,"ts":326462088894,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":19503,"tdur":12544,"tts":8165847},
-{"pid":27443,"tid":27459,"ts":326462088986,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":84,"frame":"0x78c60000"}},"dur":19380,"tdur":12422,"tts":8165939},
-{"pid":27443,"tid":27459,"ts":326462089016,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8165969},
-{"pid":27443,"tid":27459,"ts":326462089261,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8166213},
-{"pid":27443,"tid":27459,"ts":326462089383,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8166336},
-{"pid":27443,"tid":27459,"ts":326462089444,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8166427},
-{"pid":27443,"tid":27459,"ts":326462089840,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8166824},
-{"pid":27443,"tid":27459,"ts":326462089932,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8166885},
-{"pid":27443,"tid":27459,"ts":326462094937,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8167251},
-{"pid":27443,"tid":27459,"ts":326462095059,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8167373},
-{"pid":27443,"tid":27459,"ts":326462095273,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8167617},
-{"pid":27443,"tid":27459,"ts":326462095395,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8167739},
-{"pid":27443,"tid":27459,"ts":326462095487,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8167831},
-{"pid":27443,"tid":27459,"ts":326462095548,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8167862},
-{"pid":27443,"tid":27459,"ts":326462095609,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8167923},
-{"pid":27443,"tid":27459,"ts":326462096006,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8168319},
-{"pid":27443,"tid":27477,"ts":326462059595,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":4700,"tdur":4701,"tts":937707},
-{"pid":27443,"tid":27477,"ts":326462059625,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":4670,"tdur":4640,"tts":937768},
-{"pid":27443,"tid":27477,"ts":326462059656,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":4547,"tdur":4548,"tts":937768},
-{"pid":27443,"tid":27477,"ts":326462059686,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":937799,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462059717,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":1068,"tdur":1038,"tts":937860},
-{"pid":27443,"tid":27477,"ts":326462060816,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":938928},
-{"pid":27443,"tid":27477,"ts":326462061121,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":939233},
-{"pid":27443,"tid":27477,"ts":326462061151,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":939264},
-{"pid":27443,"tid":27477,"ts":326462061212,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":939325},
-{"pid":27443,"tid":27477,"ts":326462061273,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":939386},
-{"pid":27443,"tid":27477,"ts":326462061334,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":939447},
-{"pid":27443,"tid":27477,"ts":326462061365,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":939478},
-{"pid":27443,"tid":27477,"ts":326462061426,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":939539},
-{"pid":27443,"tid":27477,"ts":326462061457,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":939600},
-{"pid":27443,"tid":27477,"ts":326462061518,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":939630},
-{"pid":27443,"tid":27477,"ts":326462061579,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":939691},
-{"pid":27443,"tid":27477,"ts":326462061640,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":939752},
-{"pid":27443,"tid":27477,"ts":326462061701,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":939813},
-{"pid":27443,"tid":27477,"ts":326462061762,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":939874},
-{"pid":27443,"tid":27477,"ts":326462061823,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":939935},
-{"pid":27443,"tid":27477,"ts":326462061853,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":939996},
-{"pid":27443,"tid":27477,"ts":326462061914,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":940027},
-{"pid":27443,"tid":27477,"ts":326462061975,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":940088},
-{"pid":27443,"tid":27477,"ts":326462062036,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":940149},
-{"pid":27443,"tid":27477,"ts":326462062097,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":62,"tdur":30,"tts":940241},
-{"pid":27443,"tid":27477,"ts":326462062159,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":940271},
-{"pid":27443,"tid":27477,"ts":326462062220,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":940332},
-{"pid":27443,"tid":27477,"ts":326462062250,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":940393},
-{"pid":27443,"tid":27477,"ts":326462062311,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":940424},
-{"pid":27443,"tid":27477,"ts":326462062372,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":940485},
-{"pid":27443,"tid":27477,"ts":326462062403,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":30,"tts":940546},
-{"pid":27443,"tid":27477,"ts":326462062464,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":940576},
-{"pid":27443,"tid":27477,"ts":326462062525,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":940637},
-{"pid":27443,"tid":27477,"ts":326462062616,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":940729},
-{"pid":27443,"tid":27477,"ts":326462062677,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":940790},
-{"pid":27443,"tid":27477,"ts":326462062769,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":940882},
-{"pid":27443,"tid":27477,"ts":326462062830,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":940943},
-{"pid":27443,"tid":27477,"ts":326462062891,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":941034},
-{"pid":27443,"tid":27477,"ts":326462062983,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":941095},
-{"pid":27443,"tid":27477,"ts":326462063013,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":941126},
-{"pid":27443,"tid":27477,"ts":326462063074,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":941187},
-{"pid":27443,"tid":27477,"ts":326462063135,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":941248},
-{"pid":27443,"tid":27477,"ts":326462063166,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":31,"tts":941278},
-{"pid":27443,"tid":27477,"ts":326462063227,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":941339},
-{"pid":27443,"tid":27477,"ts":326462063288,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":941400},
-{"pid":27443,"tid":27477,"ts":326462063318,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":941431},
-{"pid":27443,"tid":27477,"ts":326462063379,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":941492},
-{"pid":27443,"tid":27477,"ts":326462063410,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":941553},
-{"pid":27443,"tid":27477,"ts":326462063593,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":941706},
-{"pid":27443,"tid":27477,"ts":326462063654,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":941767},
-{"pid":27443,"tid":27477,"ts":326462063685,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":941828},
-{"pid":27443,"tid":27477,"ts":326462063746,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":0,"tts":941889},
-{"pid":27443,"tid":27477,"ts":326462063807,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":941919},
-{"pid":27443,"tid":27477,"ts":326462063868,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":941980},
-{"pid":27443,"tid":27477,"ts":326462063898,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":942011},
-{"pid":27443,"tid":27477,"ts":326462063990,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":942102},
-{"pid":27443,"tid":27477,"ts":326462064051,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":942194},
-{"pid":27443,"tid":27477,"ts":326462064112,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":942224},
-{"pid":27443,"tid":27477,"ts":326462064142,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":942255},
-{"pid":27443,"tid":27477,"ts":326462064203,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":61,"tts":942316},
-{"pid":27443,"tid":27477,"ts":326462064234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":942377,"id":"0xaf88a268f182217a"},
-{"pid":27443,"tid":27477,"ts":326462064325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":942469,"id":"0xaf88a26ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462064356,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":397,"tdur":396,"tts":942469},
-{"pid":27443,"tid":27477,"ts":326462064386,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":336,"tdur":336,"tts":942499},
-{"pid":27443,"tid":27477,"ts":326462064417,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":942530},
-{"pid":27443,"tid":27477,"ts":326462064448,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":942560},
-{"pid":27443,"tid":27477,"ts":326462064478,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":183,"tdur":153,"tts":942621},
-{"pid":27443,"tid":27477,"ts":326462064509,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":942621},
-{"pid":27443,"tid":27477,"ts":326462064661,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":61,"tts":942774},
-{"pid":27443,"tid":27477,"ts":326462064692,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":942804},
-{"pid":27443,"tid":27477,"ts":326462064783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":942896,"id":"0xaf88a268f182217a"},
-{"pid":27443,"tid":27477,"ts":326462064783,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6593,"tdur":5891,"tts":942926},
-{"pid":27443,"tid":27477,"ts":326462064814,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6562,"tdur":5891,"tts":942926},
-{"pid":27443,"tid":27477,"ts":326462064844,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":942957},
-{"pid":27443,"tid":27477,"ts":326462064875,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":4700,"tdur":3968,"tts":943018},
-{"pid":27443,"tid":27477,"ts":326462064936,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":176},"dur":2625,"tdur":2624,"tts":943049},
-{"pid":27443,"tid":27477,"ts":326462064997,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":176},"dur":793,"tdur":763,"tts":943110},
-{"pid":27443,"tid":27477,"ts":326462065790,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":176},"dur":92,"tdur":92,"tts":943903},
-{"pid":27443,"tid":27477,"ts":326462065882,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":176},"tts":943995},
-{"pid":27443,"tid":27477,"ts":326462066553,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":944666},
-{"pid":27443,"tid":27477,"ts":326462066584,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":944697},
-{"pid":27443,"tid":27477,"ts":326462066584,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":31,"tts":944727},
-{"pid":27443,"tid":27477,"ts":326462066614,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":944727},
-{"pid":27443,"tid":27477,"ts":326462066676,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":944788,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462066889,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":945002},
-{"pid":27443,"tid":27477,"ts":326462067530,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":945643},
-{"pid":27443,"tid":27477,"ts":326462067591,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1282,"tdur":610,"tts":945704},
-{"pid":27443,"tid":27477,"ts":326462067622,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":945734},
-{"pid":27443,"tid":27477,"ts":326462067652,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1129,"tdur":458,"tts":945765},
-{"pid":27443,"tid":27477,"ts":326462067835,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17116},"dur":31,"tdur":30,"tts":945948},
-{"pid":27443,"tid":27477,"ts":326462067896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":946040,"id":"0xaf88abe9f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462068842,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":946284,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462068934,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":946375,"id":"0x3000000ab"},
-{"pid":27443,"tid":27477,"ts":326462068965,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":427,"tdur":427,"tts":946406},
-{"pid":27443,"tid":27477,"ts":326462069239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":946680,"id":"0xaf88abeaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462069422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":946864,"id":"0xaf88a751f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462069453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":946894,"id":"0xaf88a53ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462069575,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":1770,"tdur":1770,"tts":947016},
-{"pid":27443,"tid":27477,"ts":326462069605,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":1740,"tdur":1739,"tts":947047},
-{"pid":27443,"tid":27477,"ts":326462069728,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":335,"tdur":335,"tts":947169},
-{"pid":27443,"tid":27477,"ts":326462070094,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":947535},
-{"pid":27443,"tid":27477,"ts":326462070277,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":947718},
-{"pid":27443,"tid":27477,"ts":326462070307,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":16},"dur":916,"tdur":915,"tts":947749},
-{"pid":27443,"tid":27477,"ts":326462070765,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":428,"tdur":428,"tts":948206},
-{"pid":27443,"tid":27477,"ts":326462070796,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":948237,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462070887,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":122,"tdur":122,"tts":948329},
-{"pid":27443,"tid":27477,"ts":326462071009,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":22,"num_edges":43},"dur":122,"tdur":91,"tts":948451},
-{"pid":27443,"tid":27477,"ts":326462071162,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5308416,"bytes_used_for_staging_resources":10616832,"pending_copy_count":16,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":948634,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462071284,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":948725,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462071315,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":3735552},"tts":948756,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462071406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462070},"tts":948847,"id":"0xaf88a26df182217a"},
-{"pid":27443,"tid":27477,"ts":326462071437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":948878},
-{"pid":27443,"tid":27477,"ts":326462071498,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":948939,"id":"0xaf88a269f182217a"},
-{"pid":27443,"tid":27477,"ts":326462071498,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":213,"tdur":184,"tts":948969},
-{"pid":27443,"tid":27477,"ts":326462071528,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":183,"tdur":184,"tts":948969},
-{"pid":27443,"tid":27477,"ts":326462071589,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5308416,"bytes_used_for_staging_resources":10616832,"pending_copy_count":16,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":949031,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462071620,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":61,"tts":949061},
-{"pid":27443,"tid":27477,"ts":326462071650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":949092,"id":"0xaf88a26bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462071742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949183,"id":"0xaf88a26af182217a"},
-{"pid":27443,"tid":27477,"ts":326462071772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":153,"tdur":152,"tts":949214},
-{"pid":27443,"tid":27477,"ts":326462071772,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":153,"tdur":122,"tts":949244},
-{"pid":27443,"tid":27477,"ts":326462071833,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5308416,"bytes_used_for_staging_resources":10616832,"pending_copy_count":16,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":949275,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462071864,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":949305},
-{"pid":27443,"tid":27477,"ts":326462071894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":949336,"id":"0xaf88a264f182217a"},
-{"pid":27443,"tid":27477,"ts":326462072993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949427,"id":"0xaf88a26bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462073054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":489,"tdur":488,"tts":949458},
-{"pid":27443,"tid":27477,"ts":326462073085,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":458,"tdur":428,"tts":949488},
-{"pid":27443,"tid":27477,"ts":326462073115,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":92,"tdur":91,"tts":949519},
-{"pid":27443,"tid":27477,"ts":326462073146,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":949549},
-{"pid":27443,"tid":27477,"ts":326462073207,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":244,"tdur":245,"tts":949610},
-{"pid":27443,"tid":27477,"ts":326462073237,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":184,"tdur":183,"tts":949641},
-{"pid":27443,"tid":27477,"ts":326462073451,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":61,"tdur":61,"tts":949855},
-{"pid":27443,"tid":27477,"ts":326462073482,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":949885},
-{"pid":27443,"tid":27477,"ts":326462073573,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":949977,"id":"0xaf88a264f182217a"},
-{"pid":27443,"tid":27477,"ts":326462073604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":4150,"tdur":519,"tts":950007},
-{"pid":27443,"tid":27477,"ts":326462073604,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":4150,"tdur":519,"tts":950007},
-{"pid":27443,"tid":27477,"ts":326462073634,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":244,"tdur":244,"tts":950038},
-{"pid":27443,"tid":27477,"ts":326462073665,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":950068},
-{"pid":27443,"tid":27477,"ts":326462073695,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":122,"tdur":91,"tts":950099},
-{"pid":27443,"tid":27477,"ts":326462073726,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":950129},
-{"pid":27443,"tid":27477,"ts":326462073817,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":61,"tdur":30,"tts":950221},
-{"pid":27443,"tid":27477,"ts":326462073878,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":183,"tdur":183,"tts":950282},
-{"pid":27443,"tid":27477,"ts":326462073909,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":153,"tts":950312},
-{"pid":27443,"tid":27477,"ts":326462074092,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":3662,"tdur":31,"tts":950495},
-{"pid":27443,"tid":27477,"ts":326462074092,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":3632,"tdur":0,"tts":950495},
-{"pid":27443,"tid":27477,"ts":326462077724,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":950495},
-{"pid":27443,"tid":27477,"ts":326462077754,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950526,"id":"0xaf88a265f182217a"},
-{"pid":27443,"tid":27477,"ts":326462077785,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":950557},
-{"pid":27443,"tid":27477,"ts":326462077815,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":92,"tdur":92,"tts":950587},
-{"pid":27443,"tid":27477,"ts":326462077846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":950618,"id":"0xaf88a752f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462077846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":950618,"id":"0xaf88a539f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462077907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950679,"id":"0xaf88a266f182217a"},
-{"pid":27443,"tid":27477,"ts":326462077907,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":950709},
-{"pid":27443,"tid":27477,"ts":326462077938,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462070508.0,"frame_time_us":326462070695.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":950709},
-{"pid":27443,"tid":27477,"ts":326462077968,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462070508.0,"frame_time_us":326462070695.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":92,"tdur":91,"tts":950740},
-{"pid":27443,"tid":27477,"ts":326462078029,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462087361},"dur":31,"tdur":30,"tts":950801},
-{"pid":27443,"tid":27477,"ts":326462078029,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":950801,"id":"0xaf88a260f182217a"},
-{"pid":27443,"tid":27477,"ts":326462078060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":950831,"id":"0xaf88a267f182217a"},
-{"pid":27443,"tid":27477,"ts":326462078090,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"ScheduleCheckForCompletedCopyOperationsWithLockAcquired"},"dur":122,"tdur":122,"tts":950862},
-{"pid":27443,"tid":27477,"ts":326462078090,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedCopyOperations","args":{"wait_if_needed":false},"dur":122,"tdur":91,"tts":950862},
-{"pid":27443,"tid":27477,"ts":326462078121,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17153},"dur":61,"tdur":61,"tts":950892},
-{"pid":27443,"tid":27477,"ts":326462078121,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":950892,"id":"0xaf88abebf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462078395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":951136,"id":"0xaf88a261f182217a"},
-{"pid":27443,"tid":27477,"ts":326462078395,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":4365,"tdur":367,"tts":951136},
-{"pid":27443,"tid":27477,"ts":326462078426,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":5},"dur":4242,"tdur":244,"tts":951167},
-{"pid":27443,"tid":27477,"ts":326462082485,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":951228},
-{"pid":27443,"tid":27477,"ts":326462082516,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":951258},
-{"pid":27443,"tid":27477,"ts":326462082546,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":951289},
-{"pid":27443,"tid":27477,"ts":326462082577,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":951320},
-{"pid":27443,"tid":27477,"ts":326462082577,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":951350},
-{"pid":27443,"tid":27477,"ts":326462082668,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17298},"dur":61,"tdur":30,"tts":951442},
-{"pid":27443,"tid":27477,"ts":326462082699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":951442,"id":"0xaf88abe5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462086117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":951533,"id":"0xaf88a262f182217a"},
-{"pid":27443,"tid":27477,"ts":326462086148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":30,"tts":951564},
-{"pid":27443,"tid":27477,"ts":326462086148,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":30,"tts":951564},
-{"pid":27443,"tid":27477,"ts":326462086148,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":951564,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462086178,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":951594},
-{"pid":27443,"tid":27477,"ts":326462087460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462087},"tts":951655,"id":"0xaf88a260f182217a"},
-{"pid":27443,"tid":27477,"ts":326462087490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":184,"tdur":183,"tts":951686},
-{"pid":27443,"tid":27477,"ts":326462087490,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":184,"tdur":183,"tts":951686},
-{"pid":27443,"tid":27477,"ts":326462087521,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":951716,"id":"0xaf88abe6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462087582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":951777,"id":"0xaf88a753f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462087612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":951808,"id":"0xaf88a53bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462097898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":951960,"id":"0xaf88a263f182217a"},
-{"pid":27443,"tid":27477,"ts":326462097898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":91,"tdur":92,"tts":951960},
-{"pid":27443,"tid":27477,"ts":326462097898,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":91,"tdur":92,"tts":951960},
-{"pid":27443,"tid":27477,"ts":326462097928,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":951991,"id":"0xaf88abe7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462105803,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":952113,"id":"0xaf88a27cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462105803,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":952113},
-{"pid":27443,"tid":27477,"ts":326462105864,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462103872.0,"frame_time_us":326462104059.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":213,"tdur":214,"tts":952174},
-{"pid":27443,"tid":27477,"ts":326462105864,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462103872.0,"frame_time_us":326462104059.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":213,"tdur":214,"tts":952174},
-{"pid":27443,"tid":27477,"ts":326462105894,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":177},"tts":952205},
-{"pid":27443,"tid":27471,"ts":326462075221,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":479200},
-{"pid":27443,"tid":27471,"ts":326462075252,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":479230},
-{"pid":27443,"tid":27471,"ts":326462075252,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":30,"tts":479261},
-{"pid":27443,"tid":27471,"ts":326462075282,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":479261},
-{"pid":27443,"tid":27471,"ts":326462075282,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":479261},
-{"pid":27443,"tid":27471,"ts":326462075313,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":479291},
-{"pid":27443,"tid":27471,"ts":326462075343,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":672,"tdur":671,"tts":479322},
-{"pid":27443,"tid":27471,"ts":326462075343,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d3e40"},"tileResolution":"HIGH_RESOLUTION"}},"tts":479322},
-{"pid":27443,"tid":27471,"ts":326462075374,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":479352},
-{"pid":27443,"tid":27471,"ts":326462075404,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":479383},
-{"pid":27443,"tid":27471,"ts":326462075435,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d3e40"},"tileResolution":"HIGH_RESOLUTION"}},"tts":479414},
-{"pid":27443,"tid":27471,"ts":326462075435,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":479414,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462076015,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":479993},
-{"pid":27443,"tid":27471,"ts":326462076015,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":732,"tdur":733,"tts":479993},
-{"pid":27443,"tid":27471,"ts":326462076045,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":702,"tts":480024},
-{"pid":27443,"tid":27471,"ts":326462076045,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e2ec4d8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":480024},
-{"pid":27443,"tid":27471,"ts":326462076045,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":480024},
-{"pid":27443,"tid":27471,"ts":326462076106,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":480085},
-{"pid":27443,"tid":27471,"ts":326462076106,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e2ec4d8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":480085},
-{"pid":27443,"tid":27471,"ts":326462076137,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":480115,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462076717,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":480695},
-{"pid":27443,"tid":27471,"ts":326462076747,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":480726},
-{"pid":27443,"tid":27471,"ts":326462076747,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":480756},
-{"pid":27443,"tid":27471,"ts":326462076778,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":480756},
-{"pid":27443,"tid":27471,"ts":326462076778,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":480756},
-{"pid":27443,"tid":27471,"ts":326462076808,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1648,"tdur":763,"tts":480787},
-{"pid":27443,"tid":27471,"ts":326462076808,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1648,"tdur":763,"tts":480787},
-{"pid":27443,"tid":27471,"ts":326462076839,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4138"},"tileResolution":"HIGH_RESOLUTION"}},"tts":480817},
-{"pid":27443,"tid":27471,"ts":326462076839,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":480817},
-{"pid":27443,"tid":27471,"ts":326462076900,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":480878},
-{"pid":27443,"tid":27471,"ts":326462076900,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4138"},"tileResolution":"HIGH_RESOLUTION"}},"tts":480878},
-{"pid":27443,"tid":27471,"ts":326462076930,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":480909,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462077510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":481489,"id":"0xaf88a267f182217a"},
-{"pid":27443,"tid":27471,"ts":326462077510,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":733,"tdur":0,"tts":481489},
-{"pid":27443,"tid":27469,"ts":326462077663,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":4731,"tdur":61,"tts":508835},
-{"pid":27443,"tid":27471,"ts":326462078273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":481519,"id":"0xaf88a261f182217a"},
-{"pid":27443,"tid":27471,"ts":326462078456,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":481550},
-{"pid":27443,"tid":27471,"ts":326462078487,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":825,"tts":481580},
-{"pid":27443,"tid":27471,"ts":326462078487,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":825,"tts":481580},
-{"pid":27443,"tid":27471,"ts":326462078517,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e2eb6a0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":481611},
-{"pid":27443,"tid":27471,"ts":326462078517,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":481611},
-{"pid":27443,"tid":27471,"ts":326462078548,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":481641},
-{"pid":27443,"tid":27471,"ts":326462078578,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e2eb6a0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":481672},
-{"pid":27443,"tid":27471,"ts":326462078609,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":481703,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462079311,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":482405},
-{"pid":27443,"tid":27471,"ts":326462079341,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":916,"tts":482435},
-{"pid":27443,"tid":27471,"ts":326462079341,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":916,"tts":482435},
-{"pid":27443,"tid":27471,"ts":326462079341,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x79737280"},"tileResolution":"HIGH_RESOLUTION"}},"tts":482466},
-{"pid":27443,"tid":27471,"ts":326462079372,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":482466},
-{"pid":27443,"tid":27471,"ts":326462079403,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":482496},
-{"pid":27443,"tid":27471,"ts":326462079433,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":115,"sourceFrameNumber":175,"tileId":{"id_ref":"0x79737280"},"tileResolution":"HIGH_RESOLUTION"}},"tts":482527},
-{"pid":27443,"tid":27471,"ts":326462079433,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":482527,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462080227,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":483320},
-{"pid":27443,"tid":27471,"ts":326462080257,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":483351},
-{"pid":27443,"tid":27471,"ts":326462080288,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":483381},
-{"pid":27443,"tid":27471,"ts":326462080288,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":483381},
-{"pid":27443,"tid":27471,"ts":326462080288,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":483381},
-{"pid":27443,"tid":27471,"ts":326462080318,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":733,"tdur":732,"tts":483412},
-{"pid":27443,"tid":27471,"ts":326462080349,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":702,"tdur":702,"tts":483442},
-{"pid":27443,"tid":27471,"ts":326462080349,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4430"},"tileResolution":"HIGH_RESOLUTION"}},"tts":483442},
-{"pid":27443,"tid":27471,"ts":326462080379,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":483473},{"pid":27443,"tid":27471,"ts":326462080410,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":483503},
-{"pid":27443,"tid":27471,"ts":326462080440,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4430"},"tileResolution":"HIGH_RESOLUTION"}},"tts":483534},
-{"pid":27443,"tid":27471,"ts":326462080440,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":483564,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462081020,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":484114},
-{"pid":27443,"tid":27471,"ts":326462081051,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":484144},
-{"pid":27443,"tid":27471,"ts":326462081051,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":732,"tts":484175},
-{"pid":27443,"tid":27471,"ts":326462081081,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4398"},"tileResolution":"HIGH_RESOLUTION"}},"tts":484175},
-{"pid":27443,"tid":27471,"ts":326462081081,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":484205},
-{"pid":27443,"tid":27471,"ts":326462081142,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":484236},
-{"pid":27443,"tid":27471,"ts":326462081142,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4398"},"tileResolution":"HIGH_RESOLUTION"}},"tts":484236},
-{"pid":27443,"tid":27471,"ts":326462081173,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":484266,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462081783,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":484907},
-{"pid":27443,"tid":27471,"ts":326462081814,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1159,"tdur":824,"tts":484907},
-{"pid":27443,"tid":27471,"ts":326462081844,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1068,"tdur":732,"tts":484938},
-{"pid":27443,"tid":27471,"ts":326462081844,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4008"},"tileResolution":"HIGH_RESOLUTION"}},"tts":484938},
-{"pid":27443,"tid":27471,"ts":326462081844,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":484938},
-{"pid":27443,"tid":27471,"ts":326462081905,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":484999},
-{"pid":27443,"tid":27471,"ts":326462081905,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4008"},"tileResolution":"HIGH_RESOLUTION"}},"tts":485029},
-{"pid":27443,"tid":27471,"ts":326462081936,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":485029,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462082485,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":508988},
-{"pid":27443,"tid":27469,"ts":326462082546,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1831,"tdur":1709,"tts":509049},
-{"pid":27443,"tid":27469,"ts":326462082546,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1831,"tdur":1679,"tts":509079},
-{"pid":27443,"tid":27469,"ts":326462082668,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4300"},"tileResolution":"HIGH_RESOLUTION"}},"tts":509171},
-{"pid":27443,"tid":27469,"ts":326462082699,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":92,"tts":509201},
-{"pid":27443,"tid":27469,"ts":326462082790,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":509323},
-{"pid":27443,"tid":27469,"ts":326462082851,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4300"},"tileResolution":"HIGH_RESOLUTION"}},"tts":509354},
-{"pid":27443,"tid":27471,"ts":326462082912,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":485670},
-{"pid":27443,"tid":27469,"ts":326462082912,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":509415,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462082973,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":916,"tts":485731},
-{"pid":27443,"tid":27471,"ts":326462082973,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":916,"tts":485731},
-{"pid":27443,"tid":27471,"ts":326462083004,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4268"},"tileResolution":"HIGH_RESOLUTION"}},"tts":485762},
-{"pid":27443,"tid":27471,"ts":326462083004,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":485762},
-{"pid":27443,"tid":27471,"ts":326462083065,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":485823},
-{"pid":27443,"tid":27471,"ts":326462083065,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":117,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d4268"},"tileResolution":"HIGH_RESOLUTION"}},"tts":485853},
-{"pid":27443,"tid":27471,"ts":326462083095,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":485853,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462083858,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":486616},
-{"pid":27443,"tid":27471,"ts":326462083889,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":486647},
-{"pid":27443,"tid":27471,"ts":326462083889,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":915,"tts":486647},
-{"pid":27443,"tid":27471,"ts":326462083920,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d3f70"},"tileResolution":"HIGH_RESOLUTION"}},"tts":486677},
-{"pid":27443,"tid":27471,"ts":326462083920,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":486677},
-{"pid":27443,"tid":27471,"ts":326462083981,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":486738},
-{"pid":27443,"tid":27471,"ts":326462083981,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d3f70"},"tileResolution":"HIGH_RESOLUTION"}},"tts":486738},
-{"pid":27443,"tid":27471,"ts":326462084011,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":486769,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462084347,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":510727},
-{"pid":27443,"tid":27469,"ts":326462084408,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1556,"tdur":1557,"tts":510788},
-{"pid":27443,"tid":27469,"ts":326462084408,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1526,"tdur":1495,"tts":510819},
-{"pid":27443,"tid":27469,"ts":326462084469,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d40a0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":510849},
-{"pid":27443,"tid":27469,"ts":326462084499,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":92,"tdur":61,"tts":510880},
-{"pid":27443,"tid":27469,"ts":326462084591,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":510972},
-{"pid":27443,"tid":27469,"ts":326462084621,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":116,"sourceFrameNumber":175,"tileId":{"id_ref":"0x7e9d40a0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":511033},
-{"pid":27443,"tid":27469,"ts":326462084683,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":511063,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462084805,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":487562},
-{"pid":27443,"tid":27469,"ts":326462085903,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":512284},
-{"pid":27443,"tid":27469,"ts":326462085964,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":184,"tdur":153,"tts":512345},
-{"pid":27443,"tid":27469,"ts":326462086025,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":92,"tdur":92,"tts":512406},
-{"pid":27443,"tid":27469,"ts":326462086056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512437,"id":"0xaf88a262f182217a"},
-{"pid":27443,"tid":27471,"ts":326462116088,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":487654},
-{"pid":27443,"tid":27471,"ts":326462116119,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":487685},
-{"pid":27443,"tid":27471,"ts":326462116149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":487715,"id":"0xaf88a27ff182217a"},
-{"pid":27443,"tid":27471,"ts":326462116180,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":487746},
-{"pid":27443,"tid":27471,"ts":326462116180,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":487746},
-{"pid":27443,"tid":27471,"ts":326462116210,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":487776,"id":"0xaf88a278f182217a"},
-{"pid":27443,"tid":27471,"ts":326462116210,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":31,"tts":487776},
-{"pid":27443,"tid":27471,"ts":326462116241,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":487807},
-{"pid":27443,"tid":27471,"ts":326462116241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":487807,"id":"0xaf88a279f182217a"},
-{"pid":27443,"tid":27471,"ts":326462138582,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":854,"tdur":30,"tts":487868},
-{"pid":27443,"tid":27471,"ts":326462138612,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":0,"tts":487898},
-{"pid":27443,"tid":27459,"ts":326462096097,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8168411},
-{"pid":27443,"tid":27459,"ts":326462096158,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8168472},
-{"pid":27443,"tid":27459,"ts":326462096250,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8168564},
-{"pid":27443,"tid":27459,"ts":326462097623,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":122,"tdur":92,"tts":8169967},
-{"pid":27443,"tid":27459,"ts":326462097776,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":91,"tdur":91,"tts":8170090},
-{"pid":27443,"tid":27459,"ts":326462097806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8170120,"id":"0xaf88a263f182217a"},
-{"pid":27443,"tid":27459,"ts":326462098966,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommit","args":{},"dur":0,"tdur":0,"tts":8170822},
-{"pid":27443,"tid":27459,"ts":326462099607,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8171463},
-{"pid":27443,"tid":27459,"ts":326462100492,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":8172318},
-{"pid":27443,"tid":27459,"ts":326462101225,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":91,"tdur":61,"tts":8173020},
-{"pid":27443,"tid":27459,"ts":326462101957,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":8173752},
-{"pid":27443,"tid":27459,"ts":326462102659,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":8174454},
-{"pid":27443,"tid":27459,"ts":326462103361,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":8175156},
-{"pid":27443,"tid":27459,"ts":326462104063,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":61,"tdur":61,"tts":8175858},
-{"pid":27443,"tid":27459,"ts":326462106718,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.gstatic.com/mapfiles/transparent.png"}},"dur":92,"tdur":61,"tts":8176743},
-{"pid":27443,"tid":27459,"ts":326462107573,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8177567},
-{"pid":27443,"tid":27459,"ts":326462107664,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8177659},
-{"pid":27443,"tid":27459,"ts":326462107695,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8177720},
-{"pid":27443,"tid":27459,"ts":326462107786,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8177781},
-{"pid":27443,"tid":27459,"ts":326462107878,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8177903},
-{"pid":27443,"tid":27459,"ts":326462107970,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8177994},
-{"pid":27443,"tid":27459,"ts":326462108031,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8178025},
-{"pid":27443,"tid":27459,"ts":326462108122,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8178116},
-{"pid":27443,"tid":27459,"ts":326462108366,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8178361},
-{"pid":27443,"tid":27459,"ts":326462108488,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8178483,"id":"0xaf88a535f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462108488,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6379,"tdur":5554,"tts":8178483},
-{"pid":27443,"tid":27459,"ts":326462108519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8178513,"id":"0xaf88a537f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462108549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8178544,"id":"0xaf88a76cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462108549,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":6318,"tdur":5493,"tts":8178544},
-{"pid":27443,"tid":27459,"ts":326462108549,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":177},"tts":8178544},
-{"pid":27443,"tid":27459,"ts":326462108580,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8178574},
-{"pid":27443,"tid":27459,"ts":326462108611,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8178605,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462108641,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8178635,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462108641,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":30,"tts":8178666},
-{"pid":27443,"tid":27459,"ts":326462108672,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":8178666},
-{"pid":27443,"tid":27459,"ts":326462108702,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":4853,"tdur":4853,"tts":8178696},
-{"pid":27443,"tid":27459,"ts":326462108733,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":763,"tdur":763,"tts":8178727},
-{"pid":27443,"tid":27459,"ts":326462108824,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":8,"totalObjects":310,"partialLayout":false,"frame":"0x78c60000"}},"tts":8178849},
-{"pid":27443,"tid":27459,"ts":326462108855,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":30,"tdur":30,"tts":8178849},
-{"pid":27443,"tid":27459,"ts":326462108885,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":8178879},
-{"pid":27443,"tid":27459,"ts":326462109099,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":30,"tdur":31,"tts":8179093},
-{"pid":27443,"tid":27459,"ts":326462109129,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":8179124},
-{"pid":27443,"tid":27459,"ts":326462109160,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":244,"tdur":244,"tts":8179154},
-{"pid":27443,"tid":27459,"ts":326462109404,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":31,"tdur":31,"tts":8179398},
-{"pid":27443,"tid":27459,"ts":326462109465,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":8179459},
-{"pid":27443,"tid":27459,"ts":326462109526,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":4029,"tdur":4029,"tts":8179520},
-{"pid":27443,"tid":27459,"ts":326462109526,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":2808,"tdur":2808,"tts":8179520},
-{"pid":27443,"tid":27459,"ts":326462109557,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":915,"tdur":915,"tts":8179551},
-{"pid":27443,"tid":27459,"ts":326462110472,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":183,"tdur":184,"tts":8180466},
-{"pid":27443,"tid":27459,"ts":326462110655,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":92,"tdur":91,"tts":8180650},
-{"pid":27443,"tid":27459,"ts":326462110747,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8180741},
-{"pid":27443,"tid":27459,"ts":326462110777,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":1465,"tdur":1465,"tts":8180772},
-{"pid":27443,"tid":27459,"ts":326462112273,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":61,"tdur":61,"tts":8182267},
-{"pid":27443,"tid":27459,"ts":326462112365,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":915,"tdur":915,"tts":8182359},
-{"pid":27443,"tid":27459,"ts":326462112365,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":915,"tdur":915,"tts":8182359},
-{"pid":27443,"tid":27459,"ts":326462112395,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":183,"tdur":183,"tts":8182389},
-{"pid":27443,"tid":27459,"ts":326462112578,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":672,"tdur":672,"tts":8182572},
-{"pid":27443,"tid":27459,"ts":326462112639,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":489,"tdur":489,"tts":8182633},
-{"pid":27443,"tid":27459,"ts":326462113311,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":8183305},
-{"pid":27443,"tid":27459,"ts":326462113341,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":214,"tdur":214,"tts":8183335},
-{"pid":27443,"tid":27459,"ts":326462113585,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":177},"dur":275,"tdur":274,"tts":8183580},
-{"pid":27443,"tid":27459,"ts":326462113585,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":275,"tdur":274,"tts":8183580},
-{"pid":27443,"tid":27459,"ts":326462113860,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":916,"tdur":92,"tts":8183854},
-{"pid":27443,"tid":27459,"ts":326462113891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8183885,"id":"0xaf88a27ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462105986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":952296,"id":"0xaf88a76cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462106016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":952327,"id":"0xaf88a536f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462106047,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":952357},
-{"pid":27443,"tid":27477,"ts":326462106047,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462120725},"dur":30,"tdur":31,"tts":952357},
-{"pid":27443,"tid":27477,"ts":326462106077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":952388,"id":"0xaf88a27df182217a"},
-{"pid":27443,"tid":27477,"ts":326462113952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":952510,"id":"0xaf88a27ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462113952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2075,"tdur":2075,"tts":952510},
-{"pid":27443,"tid":27477,"ts":326462113982,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2014,"tdur":2015,"tts":952540},
-{"pid":27443,"tid":27477,"ts":326462113982,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":31,"tts":952540},
-{"pid":27443,"tid":27477,"ts":326462114013,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1983,"tdur":1984,"tts":952571},
-{"pid":27443,"tid":27477,"ts":326462114013,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1983,"tdur":1984,"tts":952571},
-{"pid":27443,"tid":27477,"ts":326462114043,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":952601},
-{"pid":27443,"tid":27477,"ts":326462114043,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":952601},
-{"pid":27443,"tid":27477,"ts":326462114074,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":952632,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462114074,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":952632},
-{"pid":27443,"tid":27477,"ts":326462114104,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":427,"tdur":428,"tts":952662},
-{"pid":27443,"tid":27477,"ts":326462114531,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":953090},
-{"pid":27443,"tid":27477,"ts":326462114562,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":122,"tdur":122,"tts":953120},
-{"pid":27443,"tid":27477,"ts":326462114745,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1221,"tdur":1190,"tts":953334},
-{"pid":27443,"tid":27477,"ts":326462114776,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":177},"dur":305,"tdur":305,"tts":953334},
-{"pid":27443,"tid":27477,"ts":326462115081,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":177},"dur":61,"tdur":61,"tts":953639},
-{"pid":27443,"tid":27477,"ts":326462115142,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":177},"tts":953700},
-{"pid":27443,"tid":27477,"ts":326462115294,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":953883},
-{"pid":27443,"tid":27477,"ts":326462115325,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":953883},
-{"pid":27443,"tid":27477,"ts":326462115325,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":641,"tdur":610,"tts":953914},
-{"pid":27443,"tid":27477,"ts":326462115356,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":244,"tts":953914},
-{"pid":27443,"tid":27477,"ts":326462115600,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":954158},
-{"pid":27443,"tid":27477,"ts":326462115691,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":954249},
-{"pid":27443,"tid":27477,"ts":326462115722,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":15},"dur":213,"tdur":214,"tts":954280},
-{"pid":27443,"tid":27477,"ts":326462115722,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":954280},
-{"pid":27443,"tid":27477,"ts":326462115722,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":954280,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462115813,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":954372},
-{"pid":27443,"tid":27477,"ts":326462115813,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":21,"num_edges":42},"dur":61,"tdur":61,"tts":954372},
-{"pid":27443,"tid":27477,"ts":326462115905,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5640192,"bytes_used_for_staging_resources":10616832,"pending_copy_count":17,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":954463,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462115935,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":954494,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462115966,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":954524,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462116271,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954646,"id":"0xaf88a27ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462116302,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":954646},
-{"pid":27443,"tid":27477,"ts":326462116302,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":954646},
-{"pid":27443,"tid":27477,"ts":326462116332,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5640192,"bytes_used_for_staging_resources":10616832,"pending_copy_count":17,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":954677,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462116363,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":954707},
-{"pid":27443,"tid":27477,"ts":326462116363,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":954707,"id":"0xaf88a27af182217a"},
-{"pid":27443,"tid":27477,"ts":326462116393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954738,"id":"0xaf88a278f182217a"},
-{"pid":27443,"tid":27477,"ts":326462116424,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":954768},
-{"pid":27443,"tid":27477,"ts":326462116424,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":954768},
-{"pid":27443,"tid":27477,"ts":326462116424,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":5640192,"bytes_used_for_staging_resources":10616832,"pending_copy_count":17,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":954799,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462116454,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":954799},
-{"pid":27443,"tid":27477,"ts":326462116454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":954829,"id":"0xaf88a27bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462116485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954829,"id":"0xaf88a279f182217a"},
-{"pid":27443,"tid":27477,"ts":326462116515,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":954860},
-{"pid":27443,"tid":27477,"ts":326462116515,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":954860},
-{"pid":27443,"tid":27477,"ts":326462116515,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":954860,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462116546,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":954890},
-{"pid":27443,"tid":27477,"ts":326462116576,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":954921,"id":"0xaf88a27af182217a"},
-{"pid":27443,"tid":27477,"ts":326462116576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2961,"tdur":2960,"tts":954921},
-{"pid":27443,"tid":27477,"ts":326462116576,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2961,"tdur":2930,"tts":954921},
-{"pid":27443,"tid":27477,"ts":326462116607,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":976,"tdur":977,"tts":954951},
-{"pid":27443,"tid":27477,"ts":326462116607,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":954951},
-{"pid":27443,"tid":27477,"ts":326462116668,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955013},
-{"pid":27443,"tid":27477,"ts":326462116698,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955043},
-{"pid":27443,"tid":27477,"ts":326462116698,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":955074},
-{"pid":27443,"tid":27477,"ts":326462116729,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":955074},
-{"pid":27443,"tid":27477,"ts":326462116759,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955104},
-{"pid":27443,"tid":27477,"ts":326462116790,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":955135},
-{"pid":27443,"tid":27459,"ts":326462114806,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":5919},"tts":8183976,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462114837,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8184007,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462114837,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8184037},
-{"pid":27443,"tid":27459,"ts":326462114898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8184068,"id":"0xaf88a536f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462114928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1740,"tdur":1710,"tts":8184098},
-{"pid":27443,"tid":27459,"ts":326462114928,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8184098,"id":"0xaf88a755f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462114928,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":1679,"tdur":1648,"tts":8184129},
-{"pid":27443,"tid":27459,"ts":326462114959,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1648,"tdur":1648,"tts":8184129},
-{"pid":27443,"tid":27459,"ts":326462114989,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8184159},
-{"pid":27443,"tid":27459,"ts":326462115020,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":8184190},
-{"pid":27443,"tid":27459,"ts":326462115081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184251,"id":"0xaf88a76df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115081,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8184282},
-{"pid":27443,"tid":27459,"ts":326462115111,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":0,"tts":8184312},
-{"pid":27443,"tid":27459,"ts":326462115172,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184343,"id":"0xaf88a76ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115172,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8184373},
-{"pid":27443,"tid":27459,"ts":326462115203,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":8184404},
-{"pid":27443,"tid":27459,"ts":326462115264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184434,"id":"0xaf88a76ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115264,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":31,"tts":8184434},
-{"pid":27443,"tid":27459,"ts":326462115294,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":8184465},
-{"pid":27443,"tid":27459,"ts":326462115356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184526,"id":"0xaf88a768f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115356,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8184526},
-{"pid":27443,"tid":27459,"ts":326462115386,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":8184556},
-{"pid":27443,"tid":27459,"ts":326462115447,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184617,"id":"0xaf88a769f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115447,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8184617},
-{"pid":27443,"tid":27459,"ts":326462115478,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":8184678},
-{"pid":27443,"tid":27459,"ts":326462115539,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184709,"id":"0xaf88a76af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115539,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8184739},
-{"pid":27443,"tid":27459,"ts":326462115569,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":0,"tts":8184770},
-{"pid":27443,"tid":27459,"ts":326462115630,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184800,"id":"0xaf88a76bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115630,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8184800},
-{"pid":27443,"tid":27459,"ts":326462115661,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":8184831},
-{"pid":27443,"tid":27459,"ts":326462115691,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184892,"id":"0xaf88a764f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115722,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8184892},
-{"pid":27443,"tid":27459,"ts":326462115752,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":8184922},
-{"pid":27443,"tid":27459,"ts":326462115783,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8184983,"id":"0xaf88a765f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115813,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8184983},
-{"pid":27443,"tid":27459,"ts":326462115874,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":8185045},
-{"pid":27443,"tid":27459,"ts":326462115905,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185075,"id":"0xaf88a766f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462115935,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8185106},
-{"pid":27443,"tid":27459,"ts":326462115966,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":0,"tdur":0,"tts":8185136},
-{"pid":27443,"tid":27459,"ts":326462115996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185167,"id":"0xaf88a767f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116027,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8185197},
-{"pid":27443,"tid":27459,"ts":326462116027,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":8185228},
-{"pid":27443,"tid":27459,"ts":326462116088,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185258,"id":"0xaf88a760f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116088,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":31,"tts":8185258},
-{"pid":27443,"tid":27459,"ts":326462116119,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":8185289},
-{"pid":27443,"tid":27459,"ts":326462116149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185350,"id":"0xaf88a761f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116180,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8185350},
-{"pid":27443,"tid":27459,"ts":326462116210,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":8185380},
-{"pid":27443,"tid":27459,"ts":326462116241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185411,"id":"0xaf88a762f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116271,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8185441},
-{"pid":27443,"tid":27459,"ts":326462116302,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":0,"tdur":0,"tts":8185472},
-{"pid":27443,"tid":27459,"ts":326462116332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185502,"id":"0xaf88a763f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116363,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8185533},
-{"pid":27443,"tid":27459,"ts":326462116393,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":0,"tdur":0,"tts":8185563},
-{"pid":27443,"tid":27459,"ts":326462116424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185594,"id":"0xaf88a77cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116454,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8185624},
-{"pid":27443,"tid":27459,"ts":326462116485,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":0,"tdur":0,"tts":8185655},
-{"pid":27443,"tid":27459,"ts":326462116515,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185685,"id":"0xaf88a77df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116515,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8185716},
-{"pid":27443,"tid":27459,"ts":326462116546,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":0,"tts":8185746},
-{"pid":27443,"tid":27459,"ts":326462116607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8185777,"id":"0xaf88a77ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8185838,"id":"0xaf88a537f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462116729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8185869},
-{"pid":27443,"tid":27459,"ts":326462116729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8185869,"id":"0xaf88a530f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462116759,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8185899,"id":"0xaf88a741f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116759,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":31,"tdur":0,"tts":8185899},
-{"pid":27443,"tid":27459,"ts":326462116820,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8185960,"id":"0xaf88a530f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462116820,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2106,"tdur":2106,"tts":8185960},
-{"pid":27443,"tid":27459,"ts":326462116851,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8185991,"id":"0xaf88a531f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462116851,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8185991,"id":"0xaf88a743f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462116851,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2045,"tdur":2045,"tts":8185991},
-{"pid":27443,"tid":27459,"ts":326462116882,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2014,"tdur":2015,"tts":8186021},
-{"pid":27443,"tid":27459,"ts":326462116882,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":206,"frame":"0x78c60000"}},"dur":2014,"tdur":1984,"tts":8186052},
-{"pid":27443,"tid":27459,"ts":326462116912,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1953,"tdur":1953,"tts":8186052},
-{"pid":27443,"tid":27459,"ts":326462117004,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":64,"frame":"0x78c60000"}},"dur":1861,"tdur":1862,"tts":8186143},
-{"pid":27443,"tid":27459,"ts":326462117004,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8186143},
-{"pid":27443,"tid":27459,"ts":326462117522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8186693,"id":"0xaf88a77ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462117553,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8186723,"id":"0xaf88a532f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462117614,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":215,"frame":"0x78c60000","timeout":300,"singleShot":true}},"tts":8186754,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462118835,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8188005},
-{"pid":27443,"tid":27459,"ts":326462118957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8188097,"id":"0xaf88a531f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462118957,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":14070,"tdur":3235,"tts":8188097},
-{"pid":27443,"tid":27459,"ts":326462118987,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8188127,"id":"0xaf88a533f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462118987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8188127,"id":"0xaf88a75cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462118987,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":14040,"tdur":3174,"tts":8188158},
-{"pid":27443,"tid":27459,"ts":326462119018,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":14009,"tdur":3174,"tts":8188158},
-{"pid":27443,"tid":27459,"ts":326462119048,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":207,"frame":"0x78c60000"}},"dur":13979,"tdur":3144,"tts":8188188},
-{"pid":27443,"tid":27459,"ts":326462119048,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":13948,"tdur":3082,"tts":8188219},
-{"pid":27443,"tid":27459,"ts":326462119110,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":13886,"tdur":3052,"tts":8188249},
-{"pid":27443,"tid":27459,"ts":326462119140,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8188280},
-{"pid":27443,"tid":27459,"ts":326462120880,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8190019},
-{"pid":27443,"tid":27459,"ts":326462120880,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2350,"tdur":61,"tts":8190019},
-{"pid":27443,"tid":27459,"ts":326462128754,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866"}},"dur":793,"tdur":763,"tts":8190264},
-{"pid":27443,"tid":27459,"ts":326462129242,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866","requestMethod":"GET"}},"tts":8190752,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462129303,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866","priority":0},"tts":8190782,"id":"0xaf88ae4cfda79e62"},
-{"pid":27443,"tid":27459,"ts":326462129456,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":91,"tdur":61,"tts":8190935},
-{"pid":27443,"tid":27459,"ts":326462129486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8190965,"id":"0xaf88abe3f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462129609,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":3326,"tdur":152,"tts":8191088},
-{"pid":27443,"tid":27459,"ts":326462129609,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":3204,"tdur":30,"tts":8191088},
-{"pid":27443,"tid":27459,"ts":326462132874,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29679616,"free":8069120},"tts":8191179},
-{"pid":27443,"tid":27459,"ts":326462132966,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8191271,"id":"0xaf88a77af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462133057,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8191393,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462133088,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8191393,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462133149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8191454,"id":"0xaf88a533f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462133149,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":61,"tts":8191454},
-{"pid":27443,"tid":27459,"ts":326462133179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8191484,"id":"0xaf88a5cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462133179,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8191484,"id":"0xaf88a778f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462133179,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":8191484},
-{"pid":27443,"tid":27459,"ts":326462133210,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8191515},
-{"pid":27443,"tid":27459,"ts":326462133240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8191545,"id":"0xaf88a5ccf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462133240,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":184,"tdur":31,"tts":8191545},
-{"pid":27443,"tid":27459,"ts":326462133424,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8191576},
-{"pid":27443,"tid":27459,"ts":326462133454,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8191606,"id":"0xaf88a779f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462133454,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":8191606},
-{"pid":27443,"tid":27459,"ts":326462133454,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":8191606},
-{"pid":27443,"tid":27459,"ts":326462133515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8191667,"id":"0xaf88a5cdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462133515,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":8191667},
-{"pid":27443,"tid":27459,"ts":326462139314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8191759,"id":"0xaf88a5cef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462139345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":549,"tdur":152,"tts":8191790},
-{"pid":27443,"tid":27459,"ts":326462139345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8191820,"id":"0xaf88a5cff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462139375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8191820,"id":"0xaf88a77bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462139375,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":0,"tts":8191820},
-{"pid":27443,"tid":27459,"ts":326462139772,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":122,"tdur":122,"tts":8191820},
-{"pid":27443,"tid":27459,"ts":326462139802,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":61,"tdur":61,"tts":8191851},
-{"pid":27443,"tid":27459,"ts":326462139833,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":3312},"tts":8191881,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462139863,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8191912,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462139924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8191973,"id":"0xaf88a5cff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462116790,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":955135},
-{"pid":27443,"tid":27477,"ts":326462116851,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":955196},
-{"pid":27443,"tid":27477,"ts":326462116882,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":955226},
-{"pid":27443,"tid":27477,"ts":326462116882,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":955226},
-{"pid":27443,"tid":27477,"ts":326462116943,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955287},
-{"pid":27443,"tid":27477,"ts":326462116943,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":955287},
-{"pid":27443,"tid":27477,"ts":326462116973,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":955318},
-{"pid":27443,"tid":27477,"ts":326462117004,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955348},
-{"pid":27443,"tid":27477,"ts":326462117034,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":955379},
-{"pid":27443,"tid":27477,"ts":326462117034,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":61,"tts":955379},
-{"pid":27443,"tid":27477,"ts":326462117126,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955470},
-{"pid":27443,"tid":27477,"ts":326462117126,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":955470},
-{"pid":27443,"tid":27477,"ts":326462117156,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":955501},
-{"pid":27443,"tid":27477,"ts":326462117187,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":955531},
-{"pid":27443,"tid":27477,"ts":326462117217,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":955562},
-{"pid":27443,"tid":27477,"ts":326462117217,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":955562},
-{"pid":27443,"tid":27477,"ts":326462117248,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":955623},
-{"pid":27443,"tid":27477,"ts":326462117278,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":955623},
-{"pid":27443,"tid":27477,"ts":326462117309,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":955653},
-{"pid":27443,"tid":27477,"ts":326462117339,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955684},
-{"pid":27443,"tid":27477,"ts":326462117370,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":955714},
-{"pid":27443,"tid":27477,"ts":326462117370,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":955714},
-{"pid":27443,"tid":27477,"ts":326462117400,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":955745},
-{"pid":27443,"tid":27477,"ts":326462117431,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":30,"tts":955776},
-{"pid":27443,"tid":27477,"ts":326462117431,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":955806},
-{"pid":27443,"tid":27477,"ts":326462117492,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":955837},
-{"pid":27443,"tid":27477,"ts":326462117492,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":955837},
-{"pid":27443,"tid":27477,"ts":326462117522,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":955867},
-{"pid":27443,"tid":27477,"ts":326462117553,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":955898},
-{"pid":27443,"tid":27477,"ts":326462117614,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":91,"tts":955959},
-{"pid":27443,"tid":27477,"ts":326462117614,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":955959},
-{"pid":27443,"tid":27477,"ts":326462117706,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1800,"tdur":1770,"tts":956081},
-{"pid":27443,"tid":27477,"ts":326462117736,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1770,"tdur":1770,"tts":956081},
-{"pid":27443,"tid":27477,"ts":326462117736,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1740,"tdur":1739,"tts":956081},
-{"pid":27443,"tid":27477,"ts":326462117767,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":956111,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462117767,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":671,"tdur":672,"tts":956111},
-{"pid":27443,"tid":27477,"ts":326462118469,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":956813},
-{"pid":27443,"tid":27477,"ts":326462118560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":956905},
-{"pid":27443,"tid":27477,"ts":326462118591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":956935},
-{"pid":27443,"tid":27477,"ts":326462118621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":956966},
-{"pid":27443,"tid":27477,"ts":326462118652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":956996},
-{"pid":27443,"tid":27477,"ts":326462118652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":956996},
-{"pid":27443,"tid":27477,"ts":326462118682,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":957027},
-{"pid":27443,"tid":27477,"ts":326462118713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957057},
-{"pid":27443,"tid":27477,"ts":326462118713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":957088},
-{"pid":27443,"tid":27477,"ts":326462118743,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":957088},
-{"pid":27443,"tid":27477,"ts":326462118774,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957118},
-{"pid":27443,"tid":27477,"ts":326462118804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957149},
-{"pid":27443,"tid":27477,"ts":326462118804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":957179},
-{"pid":27443,"tid":27477,"ts":326462118835,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":957179},
-{"pid":27443,"tid":27477,"ts":326462118865,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957210},
-{"pid":27443,"tid":27477,"ts":326462118896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957240},
-{"pid":27443,"tid":27477,"ts":326462118896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":957240},
-{"pid":27443,"tid":27477,"ts":326462118926,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":957271},
-{"pid":27443,"tid":27477,"ts":326462118957,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957302},
-{"pid":27443,"tid":27477,"ts":326462118987,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957332},
-{"pid":27443,"tid":27477,"ts":326462118987,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":957332},
-{"pid":27443,"tid":27477,"ts":326462119018,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":957363},
-{"pid":27443,"tid":27477,"ts":326462119048,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957393},
-{"pid":27443,"tid":27477,"ts":326462119079,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957424},
-{"pid":27443,"tid":27477,"ts":326462119079,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":957424},
-{"pid":27443,"tid":27477,"ts":326462119171,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957515},
-{"pid":27443,"tid":27477,"ts":326462119201,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957546},
-{"pid":27443,"tid":27477,"ts":326462119201,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":957546},
-{"pid":27443,"tid":27477,"ts":326462119232,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":957576},
-{"pid":27443,"tid":27477,"ts":326462119262,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":957607},
-{"pid":27443,"tid":27477,"ts":326462119293,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":957637},
-{"pid":27443,"tid":27477,"ts":326462119323,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":957668},
-{"pid":27443,"tid":27477,"ts":326462119354,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":957698},
-{"pid":27443,"tid":27477,"ts":326462119415,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":957759},
-{"pid":27443,"tid":27477,"ts":326462119415,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":957759},
-{"pid":27443,"tid":27477,"ts":326462119445,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":30,"tts":957790},
-{"pid":27443,"tid":27477,"ts":326462119476,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":957820},
-{"pid":27443,"tid":27477,"ts":326462119506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":957851,"id":"0xaf88a274f182217a"},
-{"pid":27443,"tid":27477,"ts":326462119537,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":957881,"id":"0xaf88a27bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462119537,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":153,"tts":957881},
-{"pid":27443,"tid":27477,"ts":326462119567,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":957912},
-{"pid":27443,"tid":27477,"ts":326462119567,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":957912},
-{"pid":27443,"tid":27477,"ts":326462119567,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":957912},
-{"pid":27443,"tid":27477,"ts":326462119598,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":957942},
-{"pid":27443,"tid":27477,"ts":326462119598,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":957942},
-{"pid":27443,"tid":27477,"ts":326462119659,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":958003},
-{"pid":27443,"tid":27477,"ts":326462119689,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":958034},
-{"pid":27443,"tid":27477,"ts":326462119720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":958065,"id":"0xaf88a274f182217a"},
-{"pid":27443,"tid":27477,"ts":326462119720,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3174,"tdur":1739,"tts":958065},
-{"pid":27443,"tid":27477,"ts":326462119750,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3144,"tdur":1709,"tts":958095},
-{"pid":27443,"tid":27477,"ts":326462119750,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":958095},
-{"pid":27443,"tid":27477,"ts":326462119781,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3113,"tdur":1648,"tts":958126},
-{"pid":27443,"tid":27477,"ts":326462119781,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":177},"dur":946,"tdur":946,"tts":958126},
-{"pid":27443,"tid":27477,"ts":326462119811,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":177},"dur":367,"tdur":336,"tts":958156},
-{"pid":27443,"tid":27477,"ts":326462120178,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":177},"dur":30,"tdur":31,"tts":958522},
-{"pid":27443,"tid":27477,"ts":326462120208,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":177},"tts":958553},
-{"pid":27443,"tid":27477,"ts":326462120361,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":19},"tts":958705},
-{"pid":27443,"tid":27477,"ts":326462120361,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":62,"tts":958705},
-{"pid":27443,"tid":27477,"ts":326462120391,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":958736},
-{"pid":27443,"tid":27477,"ts":326462120391,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":958736},
-{"pid":27443,"tid":27477,"ts":326462120422,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":16}},"tts":958767,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462120483,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":958858},
-{"pid":27443,"tid":27477,"ts":326462120727,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":959072},
-{"pid":27443,"tid":27477,"ts":326462120727,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1862,"tdur":427,"tts":959072},
-{"pid":27443,"tid":27477,"ts":326462120758,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":959102},
-{"pid":27443,"tid":27477,"ts":326462120788,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1709,"tdur":274,"tts":959133},
-{"pid":27443,"tid":27477,"ts":326462120849,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17588},"dur":92,"tdur":91,"tts":959194},
-{"pid":27443,"tid":27477,"ts":326462120880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959224,"id":"0xaf88abe0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462120971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959316,"id":"0xaf88abe1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462122558,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":959468,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462122589,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":214,"tts":959499},
-{"pid":27443,"tid":27477,"ts":326462122741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959652,"id":"0xaf88abe2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462122833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":959743,"id":"0xaf88a778f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462122833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":959743,"id":"0xaf88a5ccf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462122925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462120},"tts":959835,"id":"0xaf88a27df182217a"},
-{"pid":27443,"tid":27477,"ts":326462122925,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":959835},
-{"pid":27443,"tid":27477,"ts":326462122955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":959865,"id":"0xaf88a275f182217a"},
-{"pid":27443,"tid":27477,"ts":326462122955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":214,"tdur":214,"tts":959865},
-{"pid":27443,"tid":27477,"ts":326462122986,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462120553.0,"frame_time_us":326462120740.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":152,"tdur":122,"tts":959926},
-{"pid":27443,"tid":27477,"ts":326462123016,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462120553.0,"frame_time_us":326462120740.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":122,"tdur":122,"tts":959926},
-{"pid":27443,"tid":27477,"ts":326462123077,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462137406},"dur":61,"tdur":61,"tts":959987},
-{"pid":27443,"tid":27477,"ts":326462123077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":960018,"id":"0xaf88a276f182217a"},
-{"pid":27443,"tid":27477,"ts":326462123077,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":960018},
-{"pid":27443,"tid":27477,"ts":326462128479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":960140,"id":"0xaf88a277f182217a"},
-{"pid":27443,"tid":27477,"ts":326462128479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":960140},
-{"pid":27443,"tid":27477,"ts":326462128540,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":960201},
-{"pid":27443,"tid":27477,"ts":326462128571,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":960231,"id":"0xaf88a779f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462137513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462137},"tts":960354,"id":"0xaf88a276f182217a"},
-{"pid":27443,"tid":27477,"ts":326462137544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":1190,"tdur":1007,"tts":960354},
-{"pid":27443,"tid":27477,"ts":326462137544,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":960354},
-{"pid":27443,"tid":27477,"ts":326462137666,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":1068,"tdur":1007,"tts":960354},
-{"pid":27443,"tid":27477,"ts":326462137696,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":886,"tdur":824,"tts":960384},
-{"pid":27443,"tid":27466,"ts":326462121093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":429513},
-{"pid":27443,"tid":27466,"ts":326462121124,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429543,"id":"0xccc62102"},
-{"pid":27443,"tid":27466,"ts":326462121185,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429604,"id":"0xaf88abe1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462121185,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":429604},
-{"pid":27443,"tid":27466,"ts":326462121185,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429604,"id":"0xccc62206"},
-{"pid":27443,"tid":27466,"ts":326462122284,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":61,"tts":429696},
-{"pid":27443,"tid":27466,"ts":326462122314,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":429726},
-{"pid":27443,"tid":27466,"ts":326462122314,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429726,"id":"0xc4c2350a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462122375,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":429787},
-{"pid":27443,"tid":27466,"ts":326462122406,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":429818},
-{"pid":27443,"tid":27466,"ts":326462122406,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429818,"id":"0xba46c902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462122436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":429879,"id":"0xaf88a275f182217a"},
-{"pid":27443,"tid":27466,"ts":326462123199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":429970,"id":"0xaf88abe2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462123230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":429970},
-{"pid":27443,"tid":27466,"ts":326462123230,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":429970,"id":"0xccc62302"},
-{"pid":27443,"tid":27466,"ts":326462128327,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":430093},
-{"pid":27443,"tid":27466,"ts":326462128357,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":430123},
-{"pid":27443,"tid":27466,"ts":326462128357,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":430154,"id":"0xba46cc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462128418,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":430184,"id":"0xaf88a277f182217a"},
-{"pid":27443,"tid":27466,"ts":326462129547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430276,"id":"0xaf88abe3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462129578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":430306},
-{"pid":27443,"tid":27466,"ts":326462129578,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":430306,"id":"0xccc62402"},
-{"pid":27443,"tid":27466,"ts":326462138337,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":152,"tts":430398},
-{"pid":27443,"tid":27466,"ts":326462138368,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":430428},
-{"pid":27443,"tid":27466,"ts":326462138398,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":430459,"id":"0xba46ce02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462138459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":430520,"id":"0xaf88a270f182217a"},
-{"pid":27443,"tid":27466,"ts":326462138673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430611,"id":"0xaf88abfcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462138673,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":430611},
-{"pid":27443,"tid":27466,"ts":326462138673,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":430611,"id":"0xccc62502"},
-{"pid":27443,"tid":27466,"ts":326462143434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":430764,"id":"0xaf88abfdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462143434,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":430764},
-{"pid":27443,"tid":27466,"ts":326462143465,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":430795,"id":"0xccc62602"},
-{"pid":27443,"tid":27466,"ts":326462155581,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":430886},
-{"pid":27443,"tid":27466,"ts":326462155612,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":91,"tts":430917},
-{"pid":27443,"tid":27466,"ts":326462155642,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":430947,"id":"0xba46cf02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462155673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":430978,"id":"0xaf88a208f182217a"},
-{"pid":27443,"tid":27466,"ts":326462165745,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":431130,"id":"0xaf88abfef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462165775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":431161},
-{"pid":27443,"tid":27466,"ts":326462165775,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":431161,"id":"0xccc62702"},
-{"pid":27443,"tid":27466,"ts":326462171910,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":431283},
-{"pid":27443,"tid":27466,"ts":326462171940,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":431313},
-{"pid":27443,"tid":27466,"ts":326462171940,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":431313,"id":"0xba46d002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462171971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":431374,"id":"0xaf88a20af182217a"},
-{"pid":27443,"tid":27466,"ts":326462188360,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":431496},
-{"pid":27443,"tid":27466,"ts":326462188391,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":431527},
-{"pid":27443,"tid":27466,"ts":326462188391,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":431527,"id":"0xba46d102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462188421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":431558,"id":"0xaf88a204f182217a"},
-{"pid":27443,"tid":27466,"ts":326462206642,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":275,"tts":431649},
-{"pid":27443,"tid":27466,"ts":326462206672,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":123,"tdur":122,"tts":431680},
-{"pid":27443,"tid":27466,"ts":326462206703,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":431710,"id":"0xba46d202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462206703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":431710,"id":"0xaf88a707f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462206734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":431741,"id":"0xaf88a5e6f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462206764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":431771,"id":"0xaf88a700f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462206795,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":61,"tdur":61,"tts":431802},
-{"pid":27443,"tid":27466,"ts":326462206795,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":431802,"id":"0xba46d402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462206825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":431832,"id":"0xaf88a701f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462206825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":431863,"id":"0xaf88a702f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462206856,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":431863},
-{"pid":27443,"tid":27466,"ts":326462206856,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":431893,"id":"0xba46d302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462206886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":431893,"id":"0xaf88a202f182217a"},
-{"pid":27443,"tid":27466,"ts":326462207344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432046,"id":"0xaf88abfff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462207344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":432046},
-{"pid":27443,"tid":27466,"ts":326462207344,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432046,"id":"0xccc62802"},
-{"pid":27443,"tid":27466,"ts":326462212319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432198,"id":"0xaf88abf8f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462137696,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":886,"tdur":824,"tts":960384},
-{"pid":27443,"tid":27477,"ts":326462137880,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":152,"tts":960598},
-{"pid":27443,"tid":27477,"ts":326462138124,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":960750},
-{"pid":27443,"tid":27477,"ts":326462138185,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":960811},
-{"pid":27443,"tid":27477,"ts":326462138185,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":335,"tdur":336,"tts":960811},
-{"pid":27443,"tid":27477,"ts":326462138185,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":213,"tdur":183,"tts":960842},
-{"pid":27443,"tid":27477,"ts":326462138215,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":960842,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462138276,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":960903},
-{"pid":27443,"tid":27477,"ts":326462138307,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":960933},
-{"pid":27443,"tid":27477,"ts":326462138368,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":960994,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462138551,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":171}},"tts":961178,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462138551,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":17006592},"tts":961178,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462138582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":961239,"id":"0xaf88abfcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462138643,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":961269,"id":"0xaf88a77bf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462138673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":961300,"id":"0xaf88a5cef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462138734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":961361,"id":"0xaf88a270f182217a"},
-{"pid":27443,"tid":27477,"ts":326462138765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":961391},
-{"pid":27443,"tid":27477,"ts":326462138795,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462137235.0,"frame_time_us":326462137422.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":31,"tdur":30,"tts":961422},
-{"pid":27443,"tid":27477,"ts":326462138795,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":961422,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462138826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":961452,"id":"0xaf88a271f182217a"},
-{"pid":27443,"tid":27477,"ts":326462138856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":961483},
-{"pid":27443,"tid":27477,"ts":326462138856,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":961483},
-{"pid":27443,"tid":27477,"ts":326462138887,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":961513,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462138887,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":961513},
-{"pid":27443,"tid":27477,"ts":326462138917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":961544,"id":"0xaf88a272f182217a"},
-{"pid":27443,"tid":27477,"ts":326462138948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":961574,"id":"0xaf88a272f182217a"},
-{"pid":27443,"tid":27477,"ts":326462138948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":183,"tdur":153,"tts":961574},
-{"pid":27443,"tid":27477,"ts":326462138978,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":961605},
-{"pid":27443,"tid":27477,"ts":326462138978,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":961605},
-{"pid":27443,"tid":27477,"ts":326462138978,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":961605},
-{"pid":27443,"tid":27477,"ts":326462139009,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":961635},
-{"pid":27443,"tid":27477,"ts":326462139009,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":961635},
-{"pid":27443,"tid":27477,"ts":326462139070,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":961696},
-{"pid":27443,"tid":27477,"ts":326462139100,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":961727},
-{"pid":27443,"tid":27477,"ts":326462139406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":961788,"id":"0xaf88a273f182217a"},
-{"pid":27443,"tid":27477,"ts":326462139406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":961819},
-{"pid":27443,"tid":27477,"ts":326462139436,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":961819},
-{"pid":27443,"tid":27477,"ts":326462139436,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":961849,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462139467,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":961849},
-{"pid":27443,"tid":27477,"ts":326462139467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":961849,"id":"0xaf88a20df182217a"},
-{"pid":27443,"tid":27477,"ts":326462139497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":961880,"id":"0xaf88a20cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462139528,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":961910},
-{"pid":27443,"tid":27477,"ts":326462139528,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":961910},
-{"pid":27443,"tid":27477,"ts":326462139528,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":961910,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462139558,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":961941},
-{"pid":27443,"tid":27477,"ts":326462139558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":961971,"id":"0xaf88a20df182217a"},
-{"pid":27443,"tid":27477,"ts":326462139589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":961971},
-{"pid":27443,"tid":27477,"ts":326462139589,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":152,"tdur":153,"tts":961971},
-{"pid":27443,"tid":27477,"ts":326462139589,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":962002},
-{"pid":27443,"tid":27477,"ts":326462139619,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":962002},
-{"pid":27443,"tid":27477,"ts":326462139650,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":962032},
-{"pid":27443,"tid":27477,"ts":326462139650,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":962032},
-{"pid":27443,"tid":27477,"ts":326462139711,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":962093},
-{"pid":27443,"tid":27477,"ts":326462139711,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":962093},
-{"pid":27443,"tid":27477,"ts":326462143282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":962215,"id":"0xaf88a20ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462143312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":244,"tdur":61,"tts":962215},
-{"pid":27443,"tid":27477,"ts":326462143312,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":244,"tdur":61,"tts":962215},
-{"pid":27443,"tid":27477,"ts":326462143343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":962246,"id":"0xaf88abfdf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462143556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":962276,"id":"0xaf88a20ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462143587,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":962307,"id":"0xaf88a20ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462143587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":61,"tdur":61,"tts":962307},
-{"pid":27443,"tid":27477,"ts":326462143587,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":61,"tdur":61,"tts":962307},
-{"pid":27443,"tid":27477,"ts":326462143617,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-6.382,"BeginFrameArgs":{"deadline_us":326462137235.0,"frame_time_us":326462137422.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":962337,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462143617,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":962368,"s":"t"},{"pid":27443,"tid":27471,"ts":326462138612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":487898,"id":"0xaf88a271f182217a"},
-{"pid":27443,"tid":27469,"ts":326462139345,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":512589},
-{"pid":27443,"tid":27469,"ts":326462139345,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":512589},
-{"pid":27443,"tid":27469,"ts":326462139375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512620,"id":"0xaf88a273f182217a"},
-{"pid":27443,"tid":27469,"ts":326462139406,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":512650},
-{"pid":27443,"tid":27469,"ts":326462139406,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":0,"tts":512650},
-{"pid":27443,"tid":27469,"ts":326462139406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512650,"id":"0xaf88a20cf182217a"},
-{"pid":27443,"tid":27498,"ts":326462150301,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1008,"tdur":977,"tts":89943},
-{"pid":27443,"tid":27498,"ts":326462150332,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":89943},
-{"pid":27443,"tid":27498,"ts":326462151278,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":90889},
-{"pid":27443,"tid":27469,"ts":326462194220,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":512711},
-{"pid":27443,"tid":27469,"ts":326462194251,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":512742},
-{"pid":27443,"tid":27469,"ts":326462194251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":512742,"id":"0xaf88a200f182217a"},
-{"pid":27443,"tid":27469,"ts":326462194281,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":512772},
-{"pid":27443,"tid":27469,"ts":326462194312,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":512803},
-{"pid":27443,"tid":27469,"ts":326462194312,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":512803},
-{"pid":27443,"tid":27469,"ts":326462194312,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":512803},
-{"pid":27443,"tid":27469,"ts":326462194373,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":512864},
-{"pid":27443,"tid":27469,"ts":326462194373,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":946,"tts":512864},
-{"pid":27443,"tid":27469,"ts":326462194403,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c2868"},"tileResolution":"HIGH_RESOLUTION"}},"tts":512894},
-{"pid":27443,"tid":27469,"ts":326462194403,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":512894},
-{"pid":27443,"tid":27469,"ts":326462194464,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":512955},
-{"pid":27443,"tid":27469,"ts":326462194464,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c2868"},"tileResolution":"HIGH_RESOLUTION"}},"tts":512986},
-{"pid":27443,"tid":27469,"ts":326462194495,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":512986,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462195319,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":513810},
-{"pid":27443,"tid":27469,"ts":326462195319,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":31,"tts":513840},
-{"pid":27443,"tid":27469,"ts":326462195349,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":513840},
-{"pid":27443,"tid":27469,"ts":326462195349,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":513840},
-{"pid":27443,"tid":27469,"ts":326462195349,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":513840},
-{"pid":27443,"tid":27469,"ts":326462195380,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":513871},
-{"pid":27443,"tid":27469,"ts":326462195410,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":915,"tts":513902},
-{"pid":27443,"tid":27469,"ts":326462195410,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e9c92f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":513902},
-{"pid":27443,"tid":27469,"ts":326462195441,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":513932},
-{"pid":27443,"tid":27469,"ts":326462195471,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":513963},
-{"pid":27443,"tid":27469,"ts":326462195471,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e9c92f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":513993},
-{"pid":27443,"tid":27469,"ts":326462195502,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":513993,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462196296,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":514787},
-{"pid":27443,"tid":27469,"ts":326462196326,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":824,"tts":514817},
-{"pid":27443,"tid":27469,"ts":326462196326,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":763,"tts":514848},
-{"pid":27443,"tid":27469,"ts":326462196357,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c2910"},"tileResolution":"HIGH_RESOLUTION"}},"tts":514848},
-{"pid":27443,"tid":27469,"ts":326462196357,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":514848},
-{"pid":27443,"tid":27469,"ts":326462196418,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":514909},
-{"pid":27443,"tid":27469,"ts":326462196418,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c2910"},"tileResolution":"HIGH_RESOLUTION"}},"tts":514909},
-{"pid":27443,"tid":27469,"ts":326462196448,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":514939,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462197120,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":515611,"id":"0xaf88a201f182217a"},
-{"pid":27443,"tid":27469,"ts":326462197120,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":515611},
-{"pid":27443,"tid":27469,"ts":326462197150,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":794,"tdur":794,"tts":515641},
-{"pid":27443,"tid":27469,"ts":326462197150,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":515641},
-{"pid":27443,"tid":27469,"ts":326462197181,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e9c9398"},"tileResolution":"HIGH_RESOLUTION"}},"tts":515672},
-{"pid":27443,"tid":27469,"ts":326462197181,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":515672},
-{"pid":27443,"tid":27469,"ts":326462197211,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":515702},
-{"pid":27443,"tid":27469,"ts":326462197242,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e9c9398"},"tileResolution":"HIGH_RESOLUTION"}},"tts":515733},
-{"pid":27443,"tid":27469,"ts":326462197272,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":515763,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462197913,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":516404},
-{"pid":27443,"tid":27469,"ts":326462197944,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":763,"tdur":763,"tts":516435},
-{"pid":27443,"tid":27469,"ts":326462197944,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":763,"tdur":763,"tts":516435},
-{"pid":27443,"tid":27469,"ts":326462197974,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e2c0608"},"tileResolution":"HIGH_RESOLUTION"}},"tts":516465},
-{"pid":27443,"tid":27469,"ts":326462197974,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":516465},
-{"pid":27443,"tid":27469,"ts":326462198005,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":516526},
-{"pid":27443,"tid":27469,"ts":326462198035,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e2c0608"},"tileResolution":"HIGH_RESOLUTION"}},"tts":516526},
-{"pid":27443,"tid":27469,"ts":326462198066,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":516557,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462198707,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":517198},
-{"pid":27443,"tid":27469,"ts":326462198707,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":20815,"tdur":885,"tts":517198},
-{"pid":27443,"tid":27469,"ts":326462198737,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":20754,"tdur":824,"tts":517228},
-{"pid":27443,"tid":27459,"ts":326462139955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":793,"tdur":458,"tts":8192003},
-{"pid":27443,"tid":27459,"ts":326462139985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8192034,"id":"0xaf88a5c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462139985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8192034,"id":"0xaf88a75df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462139985,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":763,"tdur":366,"tts":8192095},
-{"pid":27443,"tid":27459,"ts":326462139985,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":30,"tts":8192095},
-{"pid":27443,"tid":27459,"ts":326462140413,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":305,"tdur":305,"tts":8192125},
-{"pid":27443,"tid":27459,"ts":326462140474,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":208,"frame":"0x78c60000"}},"dur":244,"tdur":244,"tts":8192186},
-{"pid":27443,"tid":27459,"ts":326462140504,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":214,"tdur":213,"tts":8192217},
-{"pid":27443,"tid":27459,"ts":326462140596,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":91,"tdur":92,"tts":8192308},
-{"pid":27443,"tid":27459,"ts":326462140626,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8192339},
-{"pid":27443,"tid":27459,"ts":326462140657,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8192400},
-{"pid":27443,"tid":27459,"ts":326462140779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8192491,"id":"0xaf88a5c8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462140809,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":306,"tdur":305,"tts":8192522},
-{"pid":27443,"tid":27459,"ts":326462140809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8192522,"id":"0xaf88a5c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462140840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8192553,"id":"0xaf88a75ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462140840,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":244,"tdur":244,"tts":8192553},
-{"pid":27443,"tid":27459,"ts":326462140871,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":213,"tdur":214,"tts":8192583},
-{"pid":27443,"tid":27459,"ts":326462140901,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":209,"frame":"0x78c60000"}},"dur":183,"tdur":183,"tts":8192614},
-{"pid":27443,"tid":27459,"ts":326462140932,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":122,"tdur":122,"tts":8192644},
-{"pid":27443,"tid":27459,"ts":326462140962,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":92,"tdur":61,"tts":8192705},
-{"pid":27443,"tid":27459,"ts":326462140993,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8192705},
-{"pid":27443,"tid":27459,"ts":326462141023,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8192766},
-{"pid":27443,"tid":27459,"ts":326462141145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8192858,"id":"0xaf88a5c9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8192858},
-{"pid":27443,"tid":27459,"ts":326462141176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8192888,"id":"0xaf88a5caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141176,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8192888,"id":"0xaf88a758f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462141206,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":0,"tdur":0,"tts":8192919},
-{"pid":27443,"tid":27459,"ts":326462141237,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8192980,"id":"0xaf88a5caf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":366,"tts":8192980},
-{"pid":27443,"tid":27459,"ts":326462141298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8193010,"id":"0xaf88a5cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8193010,"id":"0xaf88a75bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462141298,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":305,"tdur":306,"tts":8193010},
-{"pid":27443,"tid":27459,"ts":326462141328,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":275,"tdur":275,"tts":8193041},
-{"pid":27443,"tid":27459,"ts":326462141359,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":212,"frame":"0x78c60000"}},"dur":244,"tdur":245,"tts":8193071},
-{"pid":27443,"tid":27459,"ts":326462141389,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":184,"tdur":183,"tts":8193102},
-{"pid":27443,"tid":27459,"ts":326462141420,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":153,"tdur":122,"tts":8193163},
-{"pid":27443,"tid":27459,"ts":326462141450,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8193163},
-{"pid":27443,"tid":27459,"ts":326462141542,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8193255},
-{"pid":27443,"tid":27459,"ts":326462141634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8193377,"id":"0xaf88a5cbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141664,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8193377},
-{"pid":27443,"tid":27459,"ts":326462141695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8193407,"id":"0xaf88a5c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8193407,"id":"0xaf88a754f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462141695,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":30,"tdur":0,"tts":8193438},
-{"pid":27443,"tid":27459,"ts":326462141756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8193468,"id":"0xaf88a5c4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":11354,"tdur":11292,"tts":8193499},
-{"pid":27443,"tid":27459,"ts":326462141786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8193499,"id":"0xaf88a5c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462141817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8193529,"id":"0xaf88a756f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462141817,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":11292,"tdur":11232,"tts":8193529},
-{"pid":27443,"tid":27459,"ts":326462141847,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":11262,"tdur":11201,"tts":8193560},
-{"pid":27443,"tid":27459,"ts":326462141878,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":214,"frame":"0x78c60000"}},"dur":11231,"tdur":11171,"tts":8193590},
-{"pid":27443,"tid":27459,"ts":326462141878,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":11201,"tdur":11109,"tts":8193621},
-{"pid":27443,"tid":27459,"ts":326462141939,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":11140,"tdur":11048,"tts":8193682},
-{"pid":27443,"tid":27459,"ts":326462141969,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8193682},
-{"pid":27443,"tid":27459,"ts":326462142274,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i11!2i329!3i794!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":123,"tdur":91,"tts":8194018},
-{"pid":27443,"tid":27459,"ts":326462142427,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8194140,"id":"0xaf88a774f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462143190,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":92,"tdur":61,"tts":8194933},
-{"pid":27443,"tid":27459,"ts":326462143221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8194933,"id":"0xaf88a20ef182217a"},
-{"pid":27443,"tid":27459,"ts":326462143953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8195666,"id":"0xaf88a775f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462143984,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8195696,"id":"0xaf88a5c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462144014,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":216,"frame":"0x78c60000","timeout":1,"singleShot":true}},"tts":8195757,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462144441,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i11!2i328!3i794!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":61,"tdur":61,"tts":8196154},
-{"pid":27443,"tid":27459,"ts":326462145296,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i11!2i329!3i793!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":92,"tdur":61,"tts":8197039},
-{"pid":27443,"tid":27459,"ts":326462146151,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i11!2i329!3i795!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":91,"tdur":61,"tts":8197863},
-{"pid":27443,"tid":27459,"ts":326462146914,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i11!2i330!3i794!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":91,"tdur":61,"tts":8198657},
-{"pid":27443,"tid":27459,"ts":326462147707,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i11!2i328!3i793!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":61,"tdur":61,"tts":8199420},
-{"pid":27443,"tid":27459,"ts":326462148501,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i11!2i328!3i795!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":91,"tdur":61,"tts":8200213},
-{"pid":27443,"tid":27459,"ts":326462149111,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8200824},
-{"pid":27443,"tid":27459,"ts":326462149386,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8201129},
-{"pid":27443,"tid":27459,"ts":326462149477,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8201190},
-{"pid":27443,"tid":27459,"ts":326462149508,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8201220},
-{"pid":27443,"tid":27459,"ts":326462149721,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8201434},
-{"pid":27443,"tid":27459,"ts":326462150301,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8201953},
-{"pid":27443,"tid":27459,"ts":326462150423,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8202075,"id":"0xaf88a776f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462150515,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":217,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8202166,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462150790,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i11!2i330!3i793!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":91,"tdur":92,"tts":8202441},
-{"pid":27443,"tid":27459,"ts":326462151309,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8202960},
-{"pid":27443,"tid":27459,"ts":326462151705,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8203357},
-{"pid":27443,"tid":27459,"ts":326462152255,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i11!2i330!3i795!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"dur":91,"tdur":92,"tts":8203906},
-{"pid":27443,"tid":27459,"ts":326462152957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8204608,"id":"0xaf88a777f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462152987,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":218,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8204639,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462153048,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8204700},
-{"pid":27443,"tid":27459,"ts":326462153170,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8204822,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462153201,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8204852,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462153231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8204883,"id":"0xaf88a770f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462153262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462143},"tts":8204913,"id":"0xaf88a523f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":31,"tdur":30,"tts":8204944},
-{"pid":27443,"tid":27459,"ts":326462153323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8204974,"id":"0xaf88a5c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153353,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8205005,"id":"0xaf88a5c5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153384,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8205035},
-{"pid":27443,"tid":27459,"ts":326462153414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8205066,"id":"0xaf88a5c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8205066,"id":"0xaf88a757f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462153414,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/renderer/renderer_scheduler_impl.cc","src_func":"UpdatePolicyLocked"},"dur":31,"tdur":30,"tts":8205066},
-{"pid":27443,"tid":27459,"ts":326462153506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8205157,"id":"0xaf88a5c0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":123,"tts":8205157},
-{"pid":27443,"tid":27459,"ts":326462153536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8205188,"id":"0xaf88a5c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8205188,"id":"0xaf88a75af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462153536,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":62,"tdur":31,"tts":8205218},
-{"pid":27443,"tid":27459,"ts":326462153567,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":8205218},
-{"pid":27443,"tid":27459,"ts":326462153567,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":31,"tdur":0,"tts":8205249},
-{"pid":27443,"tid":27459,"ts":326462153659,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462144},"tts":8205310,"id":"0xaf88a5c6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":8205310},
-{"pid":27443,"tid":27459,"ts":326462153689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8205341,"id":"0xaf88a5c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8205402,"id":"0xaf88a5c1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":13582,"tdur":10193,"tts":8205402},
-{"pid":27443,"tid":27459,"ts":326462153781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8205432,"id":"0xaf88a5c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462153781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8205432,"id":"0xaf88a759f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462153781,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":11994,"tdur":10102,"tts":8205432},
-{"pid":27443,"tid":27459,"ts":326462153811,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":11964,"tdur":10071,"tts":8205463},
-{"pid":27443,"tid":27459,"ts":326462153842,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":211,"frame":"0x78c60000"}},"dur":11933,"tdur":10041,"tts":8205493},
-{"pid":27443,"tid":27459,"ts":326462153872,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":11873,"tdur":9980,"tts":8205524},
-{"pid":27443,"tid":27459,"ts":326462153933,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":48,"frame":"0x78c60000"}},"dur":11812,"tdur":9919,"tts":8205585},
-{"pid":27443,"tid":27459,"ts":326462153964,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8205615},
-{"pid":27443,"tid":27459,"ts":326462158511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8208271,"id":"0xaf88a772f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462158542,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":219,"frame":"0x78c60000","timeout":25000,"singleShot":true}},"tts":8208332,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462158969,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8208728,"id":"0xaf88a773f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462159000,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":220,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8208789,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462159152,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8208911},
-{"pid":27443,"tid":27459,"ts":326462159183,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8208942},
-{"pid":27443,"tid":27459,"ts":326462159183,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8208942},
-{"pid":27443,"tid":27459,"ts":326462161411,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":18,"counters":true},"tts":8211200},
-{"pid":27443,"tid":27459,"ts":326462161441,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":18},"tts":8211200},
-{"pid":27443,"tid":27459,"ts":326462161472,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":1587,"tdur":1587,"tts":8211231},
-{"pid":27443,"tid":27459,"ts":326462161563,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":28,"totalObjects":328,"partialLayout":false,"frame":"0x78c60000"}},"tts":8211353},
-{"pid":27443,"tid":27459,"ts":326462161594,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":8211353},
-{"pid":27443,"tid":27459,"ts":326462161624,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":8211384},
-{"pid":27443,"tid":27459,"ts":326462162601,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":31,"tdur":31,"tts":8212360},
-{"pid":27443,"tid":27459,"ts":326462162632,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":8212391},
-{"pid":27443,"tid":27459,"ts":326462162632,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":274,"tdur":244,"tts":8212421},
-{"pid":27443,"tid":27477,"ts":326462155795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":962398,"id":"0xaf88a208f182217a"},
-{"pid":27443,"tid":27477,"ts":326462155795,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":962398},
-{"pid":27443,"tid":27477,"ts":326462155856,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462153916.0,"frame_time_us":326462154103.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":214,"tdur":214,"tts":962459},
-{"pid":27443,"tid":27477,"ts":326462155856,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462153916.0,"frame_time_us":326462154103.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":214,"tdur":183,"tts":962490},
-{"pid":27443,"tid":27477,"ts":326462155887,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":178},"tts":962490},
-{"pid":27443,"tid":27477,"ts":326462155978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":962582,"id":"0xaf88a771f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462156009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":962612,"id":"0xaf88a5dcf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462156009,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":962612},
-{"pid":27443,"tid":27477,"ts":326462156039,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462170769},"dur":31,"tdur":30,"tts":962643},
-{"pid":27443,"tid":27477,"ts":326462156039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":962643,"id":"0xaf88a209f182217a"},
-{"pid":27443,"tid":27477,"ts":326462170872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462170},"tts":962734,"id":"0xaf88a209f182217a"},
-{"pid":27443,"tid":27477,"ts":326462170903,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":962765},
-{"pid":27443,"tid":27477,"ts":326462170903,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":0,"tts":962765},
-{"pid":27443,"tid":27477,"ts":326462172062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":962795,"id":"0xaf88a20af182217a"},
-{"pid":27443,"tid":27477,"ts":326462172062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":962826},
-{"pid":27443,"tid":27477,"ts":326462172093,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462170598.0,"frame_time_us":326462170785.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":962856},
-{"pid":27443,"tid":27477,"ts":326462172123,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462170598.0,"frame_time_us":326462170785.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":962856},
-{"pid":27443,"tid":27477,"ts":326462172154,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462187451},"dur":30,"tdur":0,"tts":962917},
-{"pid":27443,"tid":27477,"ts":326462172184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":962917,"id":"0xaf88a20bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462187719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462187},"tts":963009,"id":"0xaf88a20bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462187750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":963039},
-{"pid":27443,"tid":27477,"ts":326462187750,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":963039},
-{"pid":27443,"tid":27477,"ts":326462188635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963100,"id":"0xaf88a204f182217a"},
-{"pid":27443,"tid":27477,"ts":326462188635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":963100},
-{"pid":27443,"tid":27477,"ts":326462188665,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462187279.0,"frame_time_us":326462187466.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":123,"tdur":122,"tts":963131},
-{"pid":27443,"tid":27477,"ts":326462188696,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462187279.0,"frame_time_us":326462187466.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":963161},
-{"pid":27443,"tid":27477,"ts":326462188726,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462204132},"dur":62,"tdur":31,"tts":963222},
-{"pid":27443,"tid":27477,"ts":326462188757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":963222,"id":"0xaf88a205f182217a"},
-{"pid":27443,"tid":27477,"ts":326462191534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963284,"id":"0xaf88a206f182217a"},
-{"pid":27443,"tid":27477,"ts":326462191565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":963314},
-{"pid":27443,"tid":27477,"ts":326462191565,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":30,"tdur":0,"tts":963314},
-{"pid":27443,"tid":27477,"ts":326462191748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":963375,"id":"0xaf88a207f182217a"},
-{"pid":27443,"tid":27477,"ts":326462191779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2380,"tdur":2380,"tts":963406},
-{"pid":27443,"tid":27477,"ts":326462191779,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2380,"tdur":2380,"tts":963406},
-{"pid":27443,"tid":27477,"ts":326462191779,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":30,"tdur":30,"tts":963406},
-{"pid":27443,"tid":27477,"ts":326462191809,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2350,"tdur":2350,"tts":963436},
-{"pid":27443,"tid":27477,"ts":326462191809,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2350,"tdur":2350,"tts":963436},
-{"pid":27443,"tid":27477,"ts":326462191809,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":963436},
-{"pid":27443,"tid":27477,"ts":326462191840,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":963467},
-{"pid":27443,"tid":27477,"ts":326462191840,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":963467,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462191840,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":963467},
-{"pid":27443,"tid":27477,"ts":326462191870,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":305,"tdur":305,"tts":963497},
-{"pid":27443,"tid":27477,"ts":326462192175,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":963802},
-{"pid":27443,"tid":27477,"ts":326462192206,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":963833},
-{"pid":27443,"tid":27477,"ts":326462192480,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1649,"tdur":1648,"tts":964108},
-{"pid":27443,"tid":27477,"ts":326462192511,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":178},"dur":275,"tdur":275,"tts":964138},
-{"pid":27443,"tid":27477,"ts":326462192786,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":178},"dur":30,"tdur":30,"tts":964413},
-{"pid":27443,"tid":27477,"ts":326462192847,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":178},"tts":964474},
-{"pid":27443,"tid":27477,"ts":326462193274,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":31,"tts":964901},
-{"pid":27443,"tid":27477,"ts":326462193305,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":964932},
-{"pid":27443,"tid":27477,"ts":326462193305,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":824,"tdur":824,"tts":964932},
-{"pid":27443,"tid":27477,"ts":326462193305,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":964932},
-{"pid":27443,"tid":27477,"ts":326462193488,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":965115},
-{"pid":27443,"tid":27477,"ts":326462193579,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":false,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":965206},
-{"pid":27443,"tid":27477,"ts":326462193579,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":32},"dur":519,"tdur":519,"tts":965206},
-{"pid":27443,"tid":27477,"ts":326462193884,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":214,"tdur":213,"tts":965512},
-{"pid":27443,"tid":27477,"ts":326462193884,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":965542,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462193945,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":62,"tdur":61,"tts":965573},
-{"pid":27443,"tid":27477,"ts":326462194007,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":44,"num_edges":123},"dur":61,"tdur":61,"tts":965634},
-{"pid":27443,"tid":27477,"ts":326462194068,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":0,"bytes_used_for_staging_resources":10616832,"pending_copy_count":0,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":965695,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462194098,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":965725,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462194129,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":6389760},"tts":965756,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462206947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":965847,"id":"0xaf88a200f182217a"},
-{"pid":27443,"tid":27477,"ts":326462206978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":61,"tts":965847},
-{"pid":27443,"tid":27459,"ts":326462162906,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":92,"tdur":61,"tts":8212696},
-{"pid":27443,"tid":27459,"ts":326462162967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8212727,"id":"0xaf88a70cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462162998,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":9}},"tts":8212757},
-{"pid":27443,"tid":27459,"ts":326462164921,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8214710},
-{"pid":27443,"tid":27459,"ts":326462165043,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz"}},"dur":671,"tdur":671,"tts":8214802},
-{"pid":27443,"tid":27459,"ts":326462165439,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.114","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz","requestMethod":"GET"}},"tts":8215199,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462165500,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz","priority":0},"tts":8215260,"id":"0xaf88ae4cfda7a762"},
-{"pid":27443,"tid":27459,"ts":326462165623,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":91,"tdur":91,"tts":8215382},
-{"pid":27443,"tid":27459,"ts":326462165653,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8215412,"id":"0xaf88abfef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462165806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8215565,"id":"0xaf88a5ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462167393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462154},"tts":8215656,"id":"0xaf88a5c7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462167423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":8215687},
-{"pid":27443,"tid":27459,"ts":326462167454,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8215718,"id":"0xaf88a5c3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462167484,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":702,"tdur":153,"tts":8215748},
-{"pid":27443,"tid":27459,"ts":326462167484,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":550,"tdur":0,"tts":8215748},
-{"pid":27443,"tid":27459,"ts":326462168064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8215779,"id":"0xaf88a5def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8215809,"id":"0xaf88a770f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462168095,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"EnableLongIdlePeriod"},"dur":91,"tdur":92,"tts":8215809},
-{"pid":27443,"tid":27459,"ts":326462168156,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":15842},"tts":8215870,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462168156,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8215870,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462168217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462153},"tts":8215931,"id":"0xaf88a5c2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":0,"tdur":0,"tts":8215962},
-{"pid":27443,"tid":27459,"ts":326462168278,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8215992,"id":"0xaf88a5dcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8215992},
-{"pid":27443,"tid":27459,"ts":326462168308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216023,"id":"0xaf88a76df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462168308,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":8216023},
-{"pid":27443,"tid":27459,"ts":326462168369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216114,"id":"0xaf88a5def3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8216114},
-{"pid":27443,"tid":27459,"ts":326462168430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216145,"id":"0xaf88a5dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216145,"id":"0xaf88a76ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462168430,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":0,"tts":8216175},
-{"pid":27443,"tid":27459,"ts":326462168491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216206,"id":"0xaf88a5dff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8216236},
-{"pid":27443,"tid":27459,"ts":326462168522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216236,"id":"0xaf88a5d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216267,"id":"0xaf88a76ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462168553,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":8216267},
-{"pid":27443,"tid":27459,"ts":326462168614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216328,"id":"0xaf88a5d8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168614,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8216328},
-{"pid":27443,"tid":27459,"ts":326462168644,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216358,"id":"0xaf88a5d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168644,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216389,"id":"0xaf88a768f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462168675,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":0,"tdur":0,"tts":8216389},
-{"pid":27443,"tid":27459,"ts":326462168736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216450,"id":"0xaf88a5d9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":61,"tts":8216450},
-{"pid":27443,"tid":27459,"ts":326462168766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216481,"id":"0xaf88a5daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462168766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216481,"id":"0xaf88a769f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462168797,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":0,"tdur":0,"tts":8216511},
-{"pid":27443,"tid":27459,"ts":326462169041,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216572,"id":"0xaf88a5daf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8216603},
-{"pid":27443,"tid":27459,"ts":326462169071,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216603,"id":"0xaf88a5dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169102,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216633,"id":"0xaf88a76af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169102,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":31,"tts":8216633},
-{"pid":27443,"tid":27459,"ts":326462169163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216694,"id":"0xaf88a5dbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169163,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8216694},
-{"pid":27443,"tid":27459,"ts":326462169193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216725,"id":"0xaf88a5d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216755,"id":"0xaf88a76bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169224,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":0,"tdur":0,"tts":8216755},
-{"pid":27443,"tid":27459,"ts":326462169285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216816,"id":"0xaf88a5d4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8216816},
-{"pid":27443,"tid":27459,"ts":326462169316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216847,"id":"0xaf88a5d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216847,"id":"0xaf88a764f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169346,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":0,"tdur":0,"tts":8216877},
-{"pid":27443,"tid":27459,"ts":326462169377,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8216938,"id":"0xaf88a5d5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8216938},
-{"pid":27443,"tid":27459,"ts":326462169438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8216969,"id":"0xaf88a5d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8216969,"id":"0xaf88a765f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169468,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":0,"tdur":0,"tts":8216999},
-{"pid":27443,"tid":27459,"ts":326462169529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217060,"id":"0xaf88a5d6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169529,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8217060},
-{"pid":27443,"tid":27459,"ts":326462169560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217091,"id":"0xaf88a5d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217091,"id":"0xaf88a766f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169590,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8217121},
-{"pid":27443,"tid":27459,"ts":326462169590,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":8217121},
-{"pid":27443,"tid":27459,"ts":326462169651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217182,"id":"0xaf88a5d7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169682,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8217213},
-{"pid":27443,"tid":27459,"ts":326462169682,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217213,"id":"0xaf88a5d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169712,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217244,"id":"0xaf88a767f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169712,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":8217244},
-{"pid":27443,"tid":27459,"ts":326462169743,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8217274},
-{"pid":27443,"tid":27459,"ts":326462169804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217335,"id":"0xaf88a5d0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8217335},
-{"pid":27443,"tid":27459,"ts":326462169834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217366,"id":"0xaf88a5d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217366,"id":"0xaf88a760f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169865,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":31,"tts":8217396},
-{"pid":27443,"tid":27459,"ts":326462169865,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":31,"tts":8217396},
-{"pid":27443,"tid":27459,"ts":326462169926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217457,"id":"0xaf88a5d1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":122,"tts":8217488},
-{"pid":27443,"tid":27459,"ts":326462169956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217488,"id":"0xaf88a5d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462169987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217518,"id":"0xaf88a761f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462169987,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":92,"tdur":92,"tts":8217518},
-{"pid":27443,"tid":27459,"ts":326462169987,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":92,"tdur":31,"tts":8217579},
-{"pid":27443,"tid":27459,"ts":326462169987,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":8217579},
-{"pid":27443,"tid":27459,"ts":326462170109,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217640,"id":"0xaf88a5d2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8217671},
-{"pid":27443,"tid":27459,"ts":326462170140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217701,"id":"0xaf88a5d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170170,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217701,"id":"0xaf88a762f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170170,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":61,"tts":8217701},
-{"pid":27443,"tid":27459,"ts":326462170201,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8217732},
-{"pid":27443,"tid":27459,"ts":326462170262,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217793,"id":"0xaf88a5d3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8217793},
-{"pid":27443,"tid":27459,"ts":326462170292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217823,"id":"0xaf88a5ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217823,"id":"0xaf88a763f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170323,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":8217854},
-{"pid":27443,"tid":27459,"ts":326462170323,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":30,"tts":8217854},
-{"pid":27443,"tid":27459,"ts":326462170384,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8217915,"id":"0xaf88a5ecf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8217945},
-{"pid":27443,"tid":27459,"ts":326462170414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8217945,"id":"0xaf88a5edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8217976,"id":"0xaf88a77cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170445,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":31,"tts":8217976},
-{"pid":27443,"tid":27459,"ts":326462170475,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8218007},
-{"pid":27443,"tid":27459,"ts":326462170536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8218068,"id":"0xaf88a5edf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8218068},
-{"pid":27443,"tid":27459,"ts":326462170567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8218098,"id":"0xaf88a5eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170567,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8218098,"id":"0xaf88a77df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170597,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":8218129},
-{"pid":27443,"tid":27459,"ts":326462170597,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":8218129},
-{"pid":27443,"tid":27459,"ts":326462170658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8218190,"id":"0xaf88a5eef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":92,"tts":8218220},
-{"pid":27443,"tid":27459,"ts":326462170689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8218220,"id":"0xaf88a5eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8218251,"id":"0xaf88a77ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170719,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":30,"tts":8218251},
-{"pid":27443,"tid":27459,"ts":326462170719,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":8218281},
-{"pid":27443,"tid":27459,"ts":326462170781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8218342,"id":"0xaf88a5eff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170811,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8218342},
-{"pid":27443,"tid":27459,"ts":326462170842,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8218373,"id":"0xaf88a5e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8218373,"id":"0xaf88a77af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170842,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/Document.cpp","src_func":"checkLoadEventSoon"},"dur":61,"tdur":61,"tts":8218373},
-{"pid":27443,"tid":27459,"ts":326462170872,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8218403},
-{"pid":27443,"tid":27459,"ts":326462170933,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8218464,"id":"0xaf88a5e8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170933,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2106,"tdur":1282,"tts":8218464},
-{"pid":27443,"tid":27459,"ts":326462170964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8218495,"id":"0xaf88a5e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462170994,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8218525,"id":"0xaf88a774f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462170994,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":2045,"tdur":1221,"tts":8218525},
-{"pid":27443,"tid":27459,"ts":326462171025,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1983,"tdur":1160,"tts":8218556},
-{"pid":27443,"tid":27459,"ts":326462171055,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8218586},
-{"pid":27443,"tid":27459,"ts":326462171116,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":885,"tdur":30,"tts":8218678},
-{"pid":27443,"tid":27459,"ts":326462171116,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":855,"tdur":0,"tts":8218678},
-{"pid":27443,"tid":27459,"ts":326462172032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8218739,"id":"0xaf88a70df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172062,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8218770},
-{"pid":27443,"tid":27459,"ts":326462172123,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":8218831},
-{"pid":27443,"tid":27459,"ts":326462172154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8218892,"id":"0xaf88a70ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172184,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8218892},
-{"pid":27443,"tid":27459,"ts":326462172245,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":8218953},
-{"pid":27443,"tid":27459,"ts":326462172276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8218983,"id":"0xaf88a70ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172307,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8219014},
-{"pid":27443,"tid":27459,"ts":326462172368,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":8219075},
-{"pid":27443,"tid":27459,"ts":326462172398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8219105,"id":"0xaf88a708f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172429,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":30,"tts":8219136},
-{"pid":27443,"tid":27459,"ts":326462172459,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":0,"tts":8219197},
-{"pid":27443,"tid":27459,"ts":326462172520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8219227,"id":"0xaf88a709f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172551,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8219258},
-{"pid":27443,"tid":27459,"ts":326462172581,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":8219288},
-{"pid":27443,"tid":27459,"ts":326462172642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8219349,"id":"0xaf88a70af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172673,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8219380},
-{"pid":27443,"tid":27459,"ts":326462172703,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":31,"tts":8219410},
-{"pid":27443,"tid":27459,"ts":326462172764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8219472,"id":"0xaf88a70bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172795,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8219502},
-{"pid":27443,"tid":27459,"ts":326462172825,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":8219533},
-{"pid":27443,"tid":27459,"ts":326462172886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8219594,"id":"0xaf88a704f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462172917,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8219624},
-{"pid":27443,"tid":27459,"ts":326462172947,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":31,"tdur":30,"tts":8219655},
-{"pid":27443,"tid":27459,"ts":326462173008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8219716,"id":"0xaf88a705f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462173070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8219777,"id":"0xaf88a5e9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462173070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1617,"tdur":1587,"tts":8219807},
-{"pid":27443,"tid":27459,"ts":326462173100,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8219807,"id":"0xaf88a5eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462173131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8219838,"id":"0xaf88a775f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462173131,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1556,"tdur":1556,"tts":8219838},
-{"pid":27443,"tid":27459,"ts":326462173161,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1496,"tdur":1496,"tts":8219868},
-{"pid":27443,"tid":27459,"ts":326462173192,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":216,"frame":"0x78c60000"}},"dur":1465,"tdur":1465,"tts":8219899},
-{"pid":27443,"tid":27459,"ts":326462173222,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1404,"tdur":1404,"tts":8219929},
-{"pid":27443,"tid":27459,"ts":326462173314,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":67,"frame":"0x78c60000"}},"dur":1312,"tdur":1312,"tts":8220021},
-{"pid":27443,"tid":27459,"ts":326462173344,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8220051},
-{"pid":27443,"tid":27459,"ts":326462174596,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8221303},
-{"pid":27443,"tid":27459,"ts":326462174718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8221425,"id":"0xaf88a5eaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462174748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1038,"tdur":1038,"tts":8221455},
-{"pid":27443,"tid":27459,"ts":326462174748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8221455,"id":"0xaf88a5ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462174779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8221486,"id":"0xaf88a776f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462174779,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1007,"tdur":1007,"tts":8221486},
-{"pid":27443,"tid":27459,"ts":326462174809,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":946,"tdur":947,"tts":8221516},
-{"pid":27443,"tid":27459,"ts":326462174840,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":217,"frame":"0x78c60000"}},"dur":915,"tdur":916,"tts":8221547},
-{"pid":27443,"tid":27459,"ts":326462174870,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":885,"tdur":886,"tts":8221577},
-{"pid":27443,"tid":27459,"ts":326462174931,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":794,"tdur":794,"tts":8221638},
-{"pid":27443,"tid":27459,"ts":326462174931,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8221638},
-{"pid":27443,"tid":27459,"ts":326462175389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8222096,"id":"0xaf88a706f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462175420,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":221,"frame":"0x78c60000","timeout":1000,"singleShot":true}},"tts":8222127,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462175694,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8222432},
-{"pid":27443,"tid":27459,"ts":326462175816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8222524,"id":"0xaf88a5ebf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462175816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":489,"tdur":488,"tts":8222524},
-{"pid":27443,"tid":27459,"ts":326462175847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8222554,"id":"0xaf88a5e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462175877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8222585,"id":"0xaf88a777f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462175877,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":397,"tdur":396,"tts":8222585},
-{"pid":27443,"tid":27459,"ts":326462175877,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":397,"tdur":366,"tts":8222615},
-{"pid":27443,"tid":27459,"ts":326462175908,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":218,"frame":"0x78c60000"}},"dur":366,"tdur":335,"tts":8222646},
-{"pid":27443,"tid":27459,"ts":326462175938,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":306,"tdur":305,"tts":8222646},
-{"pid":27443,"tid":27459,"ts":326462175999,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":82,"frame":"0x78c60000"}},"dur":245,"tdur":214,"tts":8222737},
-{"pid":27443,"tid":27459,"ts":326462176030,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8222737},
-{"pid":27443,"tid":27459,"ts":326462176213,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8222920},
-{"pid":27443,"tid":27459,"ts":326462176335,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8223042,"id":"0xaf88a5e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462176335,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":34488,"tdur":14131,"tts":8223042},
-{"pid":27443,"tid":27459,"ts":326462176366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8223073,"id":"0xaf88a5e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462176366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8223073,"id":"0xaf88a771f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462176396,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":34397,"tdur":14070,"tts":8223103},
-{"pid":27443,"tid":27459,"ts":326462176396,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":178},"tts":8223103},
-{"pid":27443,"tid":27459,"ts":326462176427,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8223134},
-{"pid":27443,"tid":27459,"ts":326462176457,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8223164,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462176488,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8223195,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462176488,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":61,"tts":8223195},
-{"pid":27443,"tid":27459,"ts":326462176518,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":31,"tdur":30,"tts":8223226},
-{"pid":27443,"tid":27459,"ts":326462176549,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":9888,"tdur":9889,"tts":8223256},
-{"pid":27443,"tid":27459,"ts":326462176579,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8223317},
-{"pid":27443,"tid":27459,"ts":326462176610,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8223317},
-{"pid":27443,"tid":27459,"ts":326462176640,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8223348},
-{"pid":27443,"tid":27459,"ts":326462176946,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"6","state":"pending","name":"opacity","nodeId":89,"nodeName":"DIV"}},"tts":8223653,"id":"0xaf88ae4cfe940ba2"},
-{"pid":27443,"tid":27459,"ts":326462176976,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":8223683},
-{"pid":27443,"tid":27459,"ts":326462177281,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"7","state":"pending","name":"opacity","nodeId":90,"nodeName":"DIV"}},"tts":8223989,"id":"0xaf88ae4cfe940ae2"},
-{"pid":27443,"tid":27459,"ts":326462177526,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"8","state":"pending","name":"opacity","nodeId":91,"nodeName":"DIV"}},"tts":8224263,"id":"0xaf88ae4cfe940522"},
-{"pid":27443,"tid":27459,"ts":326462177800,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"9","state":"pending","name":"opacity","nodeId":92,"nodeName":"DIV"}},"tts":8224538,"id":"0xaf88ae4cfe940462"},
-{"pid":27443,"tid":27459,"ts":326462178075,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"10","state":"pending","name":"opacity","nodeId":93,"nodeName":"DIV"}},"tts":8224782,"id":"0xaf88ae4cfe9404a2"},
-{"pid":27443,"tid":27459,"ts":326462178350,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"11","state":"pending","name":"opacity","nodeId":94,"nodeName":"DIV"}},"tts":8225057,"id":"0xaf88ae4cfe9407e2"},
-{"pid":27443,"tid":27459,"ts":326462178594,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"12","state":"pending","name":"opacity","nodeId":95,"nodeName":"DIV"}},"tts":8225331,"id":"0xaf88ae4cfe940622"},
-{"pid":27443,"tid":27459,"ts":326462178868,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"13","state":"pending","name":"opacity","nodeId":96,"nodeName":"DIV"}},"tts":8225606,"id":"0xaf88ae4cfe940162"},
-{"pid":27443,"tid":27459,"ts":326462179143,"ph":"b","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"id":"14","state":"pending","name":"opacity","nodeId":97,"nodeName":"DIV"}},"tts":8225850,"id":"0xaf88ae4cfe9401a2"},
-{"pid":27443,"tid":27459,"ts":326462179296,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":9,"counters":true},"tts":8226003},
-{"pid":27443,"tid":27459,"ts":326462179326,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":9},"tts":8226033},
-{"pid":27443,"tid":27459,"ts":326462179357,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":7080,"tdur":7051,"tts":8226094},
-{"pid":27443,"tid":27459,"ts":326462179387,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":5097,"tdur":5097,"tts":8226094},
-{"pid":27443,"tid":27459,"ts":326462179418,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1373,"tdur":1373,"tts":8226125},
-{"pid":27443,"tid":27459,"ts":326462180791,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":214,"tdur":214,"tts":8227498},
-{"pid":27443,"tid":27459,"ts":326462181035,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":458,"tdur":457,"tts":8227743},
-{"pid":27443,"tid":27459,"ts":326462181493,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":8228200},
-{"pid":27443,"tid":27459,"ts":326462181524,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2167,"tdur":2167,"tts":8228231},
-{"pid":27443,"tid":27459,"ts":326462183691,"ph":"X","cat":"blink","name":"GraphicsLayerTreeBuilder::rebuild","args":{},"dur":183,"tdur":153,"tts":8230428},
-{"pid":27443,"tid":27459,"ts":326462184484,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1374,"tdur":1374,"tts":8231191},
-{"pid":27443,"tid":27459,"ts":326462184515,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1312,"tdur":1312,"tts":8231222},
-{"pid":27443,"tid":27459,"ts":326462184515,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":244,"tdur":244,"tts":8231222},
-{"pid":27443,"tid":27459,"ts":326462184789,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":1008,"tdur":1007,"tts":8231497},
-{"pid":27443,"tid":27459,"ts":326462184850,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":733,"tdur":732,"tts":8231558},
-{"pid":27443,"tid":27459,"ts":326462185858,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":30,"tdur":30,"tts":8232565},
-{"pid":27443,"tid":27459,"ts":326462185888,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":549,"tdur":550,"tts":8232595},
-{"pid":27443,"tid":27459,"ts":326462186468,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":178},"dur":4914,"tdur":3632,"tts":8233175},
-{"pid":27443,"tid":27459,"ts":326462186468,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":4914,"tdur":3632,"tts":8233175},
-{"pid":27443,"tid":27459,"ts":326462186865,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":519,"tdur":519,"tts":8233572},
-{"pid":27443,"tid":27459,"ts":326462187017,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[141,139,397,139,397,398,141,398],"nodeId":97,"layerId":135}},"dur":214,"tdur":213,"tts":8233725},
-{"pid":27443,"tid":27459,"ts":326462187109,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":30,"tts":8233847},
-{"pid":27443,"tid":27459,"ts":326462187170,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8233877},
-{"pid":27443,"tid":27459,"ts":326462187231,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":8233938},
-{"pid":27443,"tid":27459,"ts":326462187384,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":1648,"tdur":397,"tts":8234091},
-{"pid":27443,"tid":27459,"ts":326462187506,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-115,139,141,139,141,398,-115,398],"nodeId":96,"layerId":136}},"dur":152,"tdur":152,"tts":8234213},
-{"pid":27443,"tid":27459,"ts":326462187567,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":30,"tts":8234274},
-{"pid":27443,"tid":27459,"ts":326462187597,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8234304},
-{"pid":27443,"tid":27459,"ts":326462187658,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":8234365},
-{"pid":27443,"tid":27459,"ts":326462189032,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":366,"tdur":336,"tts":8234518},
-{"pid":27443,"tid":27459,"ts":326462189154,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[141,-117,397,-117,397,142,141,142],"nodeId":95,"layerId":137}},"dur":152,"tdur":122,"tts":8234640},
-{"pid":27443,"tid":27459,"ts":326462189215,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":31,"tts":8234701},
-{"pid":27443,"tid":27459,"ts":326462189245,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":8234701},
-{"pid":27443,"tid":27459,"ts":326462189306,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":8234762},
-{"pid":27443,"tid":27459,"ts":326462189398,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":336,"tdur":335,"tts":8234854},
-{"pid":27443,"tid":27459,"ts":326462189489,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[141,395,397,395,397,654,141,654],"nodeId":94,"layerId":138}},"dur":153,"tdur":91,"tts":8234976},
-{"pid":27443,"tid":27459,"ts":326462189551,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":30,"tts":8235037},
-{"pid":27443,"tid":27459,"ts":326462189581,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":8235037},
-{"pid":27443,"tid":27459,"ts":326462189642,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":8235098},
-{"pid":27443,"tid":27459,"ts":326462189734,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":366,"tdur":336,"tts":8235189},
-{"pid":27443,"tid":27459,"ts":326462189825,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[397,139,653,139,653,398,397,398],"nodeId":93,"layerId":139}},"dur":122,"tdur":122,"tts":8235281},
-{"pid":27443,"tid":27459,"ts":326462189856,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":61,"tdur":31,"tts":8235342},
-{"pid":27443,"tid":27459,"ts":326462189886,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":8235342},
-{"pid":27443,"tid":27459,"ts":326462189947,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":0,"tdur":0,"tts":8235403},
-{"pid":27443,"tid":27459,"ts":326462190130,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":306,"tdur":305,"tts":8235556},
-{"pid":27443,"tid":27459,"ts":326462190222,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-115,-117,141,-117,141,142,-115,142],"nodeId":92,"layerId":140}},"dur":122,"tdur":122,"tts":8235647},
-{"pid":27443,"tid":27459,"ts":326462190283,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":31,"tdur":31,"tts":8235708},
-{"pid":27443,"tid":27459,"ts":326462190314,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8235739},
-{"pid":27443,"tid":27459,"ts":326462190344,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":31,"tts":8235769},
-{"pid":27443,"tid":27459,"ts":326462190436,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":305,"tdur":305,"tts":8235861},
-{"pid":27443,"tid":27459,"ts":326462190527,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[-115,395,141,395,141,654,-115,654],"nodeId":91,"layerId":141}},"dur":122,"tdur":122,"tts":8235953},
-{"pid":27443,"tid":27459,"ts":326462190588,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":31,"tdur":30,"tts":8236014},
-{"pid":27443,"tid":27459,"ts":326462190619,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8236044},
-{"pid":27443,"tid":27459,"ts":326462190649,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":30,"tts":8236075},
-{"pid":27443,"tid":27459,"ts":326462190741,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":305,"tdur":305,"tts":8236166},
-{"pid":27443,"tid":27459,"ts":326462190832,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[397,-117,653,-117,653,142,397,142],"nodeId":90,"layerId":142}},"dur":122,"tdur":122,"tts":8236258},
-{"pid":27443,"tid":27459,"ts":326462190893,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":31,"tdur":30,"tts":8236319},
-{"pid":27443,"tid":27459,"ts":326462190924,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8236349},
-{"pid":27443,"tid":27459,"ts":326462190954,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":30,"tts":8236380},
-{"pid":27443,"tid":27459,"ts":326462191046,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":178},"dur":336,"tdur":336,"tts":8236471},{"pid":27443,"tid":27459,"ts":326462191138,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[397,395,653,395,653,654,397,654],"nodeId":89,"layerId":143}},"dur":122,"tdur":122,"tts":8236563},
-{"pid":27443,"tid":27459,"ts":326462191199,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":30,"tdur":30,"tts":8236624},
-{"pid":27443,"tid":27459,"ts":326462191229,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8236654},
-{"pid":27443,"tid":27459,"ts":326462191260,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":30,"tdur":0,"tts":8236716},
-{"pid":27443,"tid":27459,"ts":326462191382,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":244,"tdur":152,"tts":8236838},
-{"pid":27443,"tid":27459,"ts":326462191412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8236838,"id":"0xaf88a206f182217a"},
-{"pid":27443,"tid":27459,"ts":326462191626,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":19106,"tdur":122,"tts":8236990},
-{"pid":27443,"tid":27459,"ts":326462191656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8237021,"id":"0xaf88a207f182217a"},
-{"pid":27443,"tid":27459,"ts":326462210762,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8237143},
-{"pid":27443,"tid":27459,"ts":326462210854,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462183},"tts":8237234,"id":"0xaf88a5ddf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462210854,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":31,"tts":8237234},
-{"pid":27443,"tid":27459,"ts":326462210915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8237295,"id":"0xaf88a5e5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462210915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1831,"tdur":1618,"tts":8237295},
-{"pid":27443,"tid":27459,"ts":326462210945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8237326,"id":"0xaf88a5e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462210945,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8237326,"id":"0xaf88a773f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462210945,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":1801,"tdur":1587,"tts":8237326},
-{"pid":27443,"tid":27459,"ts":326462210976,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1739,"tdur":1526,"tts":8237356},
-{"pid":27443,"tid":27459,"ts":326462211006,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":220,"frame":"0x78c60000"}},"dur":1709,"tdur":1465,"tts":8237417},
-{"pid":27443,"tid":27459,"ts":326462211037,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1678,"tdur":1465,"tts":8237417},
-{"pid":27443,"tid":27459,"ts":326462211128,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":42,"frame":"0x78c60000"}},"dur":1587,"tdur":1373,"tts":8237509},
-{"pid":27443,"tid":27459,"ts":326462211159,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8237540},
-{"pid":27443,"tid":27459,"ts":326462211617,"ph":"X","cat":"blink","name":"ResourceFetcher::requestResource","args":{"url":{"url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"}},"dur":854,"tdur":641,"tts":8237997},
-{"pid":27443,"tid":27459,"ts":326462212014,"ph":"I","cat":"devtools.timeline","name":"ResourceSendRequest","args":{"data":{"requestId":"27443.115","frame":"0x78c60000","url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931","requestMethod":"GET"}},"tts":8238425,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462212075,"ph":"S","cat":"blink.net","name":"Resource","args":{"url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931","priority":1},"tts":8238455,"id":"0xaf88ae4cfda7f9e2"},
-{"pid":27443,"tid":27459,"ts":326462212166,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":358},"dur":275,"tdur":61,"tts":8238547},
-{"pid":27443,"tid":27459,"ts":326462212197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8238577,"id":"0xaf88abf8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462212624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8238791,"id":"0xaf88a703f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462212654,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":222,"frame":"0x78c60000","timeout":25000,"singleShot":true}},"tts":8238852,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462212685,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8238852},
-{"pid":27443,"tid":27459,"ts":326462212777,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8238944,"id":"0xaf88a5e6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462212777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8238944},
-{"pid":27443,"tid":27459,"ts":326462212807,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8238974,"id":"0xaf88a70df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462212807,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8238974},
-{"pid":27443,"tid":27459,"ts":326462212838,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8239005},
-{"pid":27443,"tid":27459,"ts":326462212868,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239035,"id":"0xaf88a5e7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462212899,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8239066},
-{"pid":27443,"tid":27459,"ts":326462212899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239066,"id":"0xaf88a5e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462212929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239096,"id":"0xaf88a70ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462212929,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8239096},
-{"pid":27443,"tid":27469,"ts":326462198737,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799268b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":517228},
-{"pid":27443,"tid":27469,"ts":326462198768,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":19960,"tdur":30,"tts":517259},
-{"pid":27443,"tid":27471,"ts":326462200111,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":487959},
-{"pid":27443,"tid":27471,"ts":326462200111,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":671,"tdur":672,"tts":487959},
-{"pid":27443,"tid":27471,"ts":326462200141,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e2c06b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":487990},
-{"pid":27443,"tid":27471,"ts":326462200141,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":487990},
-{"pid":27443,"tid":27471,"ts":326462200202,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":488051},
-{"pid":27443,"tid":27471,"ts":326462200202,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":135,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e2c06b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":488051},
-{"pid":27443,"tid":27471,"ts":326462200233,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":488081,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462200782,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":488631},
-{"pid":27443,"tid":27471,"ts":326462200813,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":671,"tdur":672,"tts":488661},
-{"pid":27443,"tid":27471,"ts":326462200813,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":671,"tdur":672,"tts":488661},
-{"pid":27443,"tid":27471,"ts":326462200843,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x79926950"},"tileResolution":"HIGH_RESOLUTION"}},"tts":488692},
-{"pid":27443,"tid":27471,"ts":326462200843,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":488692},
-{"pid":27443,"tid":27471,"ts":326462200874,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":488722},
-{"pid":27443,"tid":27471,"ts":326462200904,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x79926950"},"tileResolution":"HIGH_RESOLUTION"}},"tts":488753},
-{"pid":27443,"tid":27471,"ts":326462200904,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":488783,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462201453,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":489333},
-{"pid":27443,"tid":27471,"ts":326462201484,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":489333},
-{"pid":27443,"tid":27471,"ts":326462201515,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":489363},
-{"pid":27443,"tid":27471,"ts":326462201515,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":489363},
-{"pid":27443,"tid":27471,"ts":326462201515,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":489363},
-{"pid":27443,"tid":27471,"ts":326462201545,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":915,"tts":489394},
-{"pid":27443,"tid":27471,"ts":326462201545,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":915,"tts":489394},
-{"pid":27443,"tid":27471,"ts":326462201576,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9c68"},"tileResolution":"HIGH_RESOLUTION"}},"tts":489424},
-{"pid":27443,"tid":27471,"ts":326462201576,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":489424},
-{"pid":27443,"tid":27471,"ts":326462201637,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":489485},
-{"pid":27443,"tid":27471,"ts":326462201637,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9c68"},"tileResolution":"HIGH_RESOLUTION"}},"tts":489485},
-{"pid":27443,"tid":27471,"ts":326462201667,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":489516,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462202461,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":490309},
-{"pid":27443,"tid":27471,"ts":326462202491,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":490340},
-{"pid":27443,"tid":27471,"ts":326462202491,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":490340},
-{"pid":27443,"tid":27471,"ts":326462202491,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":490340},
-{"pid":27443,"tid":27471,"ts":326462202491,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":490340},
-{"pid":27443,"tid":27471,"ts":326462202522,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":946,"tdur":946,"tts":490370},
-{"pid":27443,"tid":27471,"ts":326462202552,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":915,"tts":490401},
-{"pid":27443,"tid":27471,"ts":326462202552,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799c0390"},"tileResolution":"HIGH_RESOLUTION"}},"tts":490401},
-{"pid":27443,"tid":27471,"ts":326462202583,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":490431},
-{"pid":27443,"tid":27471,"ts":326462202613,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":490462},
-{"pid":27443,"tid":27471,"ts":326462202644,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799c0390"},"tileResolution":"HIGH_RESOLUTION"}},"tts":490492},
-{"pid":27443,"tid":27471,"ts":326462202644,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":490492,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462203437,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":491286},
-{"pid":27443,"tid":27471,"ts":326462203468,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":825,"tts":491316},
-{"pid":27443,"tid":27471,"ts":326462203468,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":824,"tdur":825,"tts":491316},
-{"pid":27443,"tid":27471,"ts":326462203498,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fd8d0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":491347},
-{"pid":27443,"tid":27471,"ts":326462203498,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":491347},
-{"pid":27443,"tid":27471,"ts":326462203559,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":491408},
-{"pid":27443,"tid":27471,"ts":326462203559,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fd8d0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":491408},
-{"pid":27443,"tid":27471,"ts":326462203590,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":491439,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462204261,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":492110},
-{"pid":27443,"tid":27471,"ts":326462204292,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":14009,"tdur":1159,"tts":492141},
-{"pid":27443,"tid":27471,"ts":326462204292,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":13978,"tdur":1129,"tts":492141},
-{"pid":27443,"tid":27471,"ts":326462217202,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9998"},"tileResolution":"HIGH_RESOLUTION"}},"tts":492202},
-{"pid":27443,"tid":27471,"ts":326462217233,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":91,"tdur":92,"tts":492232},
-{"pid":27443,"tid":27471,"ts":326462217324,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":492324},
-{"pid":27443,"tid":27471,"ts":326462217355,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9998"},"tileResolution":"HIGH_RESOLUTION"}},"tts":492354},
-{"pid":27443,"tid":27471,"ts":326462217385,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":492415,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462218270,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":493270},
-{"pid":27443,"tid":27471,"ts":326462218301,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":152,"tdur":153,"tts":493300},
-{"pid":27443,"tid":27471,"ts":326462218331,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":122,"tdur":122,"tts":493331},
-{"pid":27443,"tid":27471,"ts":326462218331,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":493361},
-{"pid":27443,"tid":27471,"ts":326462218362,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":493361},
-{"pid":27443,"tid":27471,"ts":326462218453,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1099,"tdur":1099,"tts":493453},
-{"pid":27443,"tid":27471,"ts":326462218484,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1038,"tdur":1038,"tts":493483},
-{"pid":27443,"tid":27477,"ts":326462206978,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":965847},
-{"pid":27443,"tid":27477,"ts":326462207008,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":0,"bytes_used_for_staging_resources":10616832,"pending_copy_count":0,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":965878,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462207008,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":965878},
-{"pid":27443,"tid":27477,"ts":326462207039,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":965908,"id":"0xaf88a203f182217a"},
-{"pid":27443,"tid":27477,"ts":326462207069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462204},"tts":965939,"id":"0xaf88a205f182217a"},
-{"pid":27443,"tid":27477,"ts":326462207069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":965939},
-{"pid":27443,"tid":27477,"ts":326462207069,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":965939},
-{"pid":27443,"tid":27477,"ts":326462207100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":965969,"id":"0xaf88a201f182217a"},
-{"pid":27443,"tid":27477,"ts":326462207130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":2686,"tdur":152,"tts":966000},
-{"pid":27443,"tid":27477,"ts":326462207130,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":3},"dur":92,"tdur":91,"tts":966000},
-{"pid":27443,"tid":27477,"ts":326462207130,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":966000},
-{"pid":27443,"tid":27477,"ts":326462207161,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":966030},
-{"pid":27443,"tid":27477,"ts":326462207191,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":966061},
-{"pid":27443,"tid":27477,"ts":326462207222,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":17715},"dur":2594,"tdur":61,"tts":966091},
-{"pid":27443,"tid":27477,"ts":326462207252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":966122,"id":"0xaf88abfff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462209816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":966152,"id":"0xaf88a202f182217a"},
-{"pid":27443,"tid":27477,"ts":326462209847,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":966183},
-{"pid":27443,"tid":27477,"ts":326462209877,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462203961.0,"frame_time_us":326462204148.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":92,"tdur":92,"tts":966213},
-{"pid":27443,"tid":27477,"ts":326462209877,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462203961.0,"frame_time_us":326462204148.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":966213},
-{"pid":27443,"tid":27477,"ts":326462209938,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462220814},"dur":31,"tdur":30,"tts":966275},
-{"pid":27443,"tid":27477,"ts":326462209938,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":966305,"id":"0xaf88a21cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462209999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":966336,"id":"0xaf88a203f182217a"},
-{"pid":27443,"tid":27477,"ts":326462209999,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":672,"tdur":671,"tts":966336},
-{"pid":27443,"tid":27477,"ts":326462209999,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":672,"tdur":671,"tts":966336},
-{"pid":27443,"tid":27477,"ts":326462209999,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":550,"tdur":549,"tts":966336},
-{"pid":27443,"tid":27477,"ts":326462209999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":966336},
-{"pid":27443,"tid":27477,"ts":326462210060,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":966397},
-{"pid":27443,"tid":27477,"ts":326462210091,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966427},
-{"pid":27443,"tid":27477,"ts":326462210091,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":966427},
-{"pid":27443,"tid":27477,"ts":326462210121,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966458},
-{"pid":27443,"tid":27477,"ts":326462210121,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":966458},
-{"pid":27443,"tid":27477,"ts":326462210152,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":966488},
-{"pid":27443,"tid":27477,"ts":326462210182,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966519},
-{"pid":27443,"tid":27477,"ts":326462210213,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":31,"tts":966549},
-{"pid":27443,"tid":27477,"ts":326462210213,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":966549},
-{"pid":27443,"tid":27477,"ts":326462210243,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966580},
-{"pid":27443,"tid":27477,"ts":326462210243,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":31,"tts":966610},
-{"pid":27443,"tid":27477,"ts":326462210274,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":966610},
-{"pid":27443,"tid":27477,"ts":326462210304,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966641},
-{"pid":27443,"tid":27477,"ts":326462210304,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":966641},
-{"pid":27443,"tid":27477,"ts":326462210335,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":966671},
-{"pid":27443,"tid":27477,"ts":326462210365,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966702},
-{"pid":27443,"tid":27477,"ts":326462210365,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":30,"tts":966702},
-{"pid":27443,"tid":27477,"ts":326462210396,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":966732},
-{"pid":27443,"tid":27477,"ts":326462210426,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966763},
-{"pid":27443,"tid":27477,"ts":326462210426,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":966763},
-{"pid":27443,"tid":27477,"ts":326462210457,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":966793},
-{"pid":27443,"tid":27477,"ts":326462210488,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966824},
-{"pid":27443,"tid":27477,"ts":326462210488,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":966824},
-{"pid":27443,"tid":27477,"ts":326462210518,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":966854},
-{"pid":27443,"tid":27477,"ts":326462210549,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":966885},
-{"pid":27443,"tid":27477,"ts":326462210549,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":91,"tts":966885},
-{"pid":27443,"tid":27477,"ts":326462210579,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":966915},
-{"pid":27443,"tid":27477,"ts":326462210640,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":966976},
-{"pid":27443,"tid":27477,"ts":326462210671,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":967007},
-{"pid":27443,"tid":27477,"ts":326462220925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462220},"tts":967099,"id":"0xaf88a21cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462220956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":967099},
-{"pid":27443,"tid":27477,"ts":326462220956,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":30,"tts":967099},
-{"pid":27443,"tid":27477,"ts":326462221505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":967160,"id":"0xaf88a21df182217a"},
-{"pid":27443,"tid":27477,"ts":326462221505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":306,"tdur":305,"tts":967160},
-{"pid":27443,"tid":27477,"ts":326462221536,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":6},"dur":214,"tdur":214,"tts":967190},
-{"pid":27443,"tid":27477,"ts":326462221566,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":967221},
-{"pid":27443,"tid":27477,"ts":326462221597,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":967251},
-{"pid":27443,"tid":27477,"ts":326462221627,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":967282},
-{"pid":27443,"tid":27466,"ts":326462212349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":432229},
-{"pid":27443,"tid":27466,"ts":326462212349,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432229,"id":"0xccc62902"},
-{"pid":27443,"tid":27466,"ts":326462215554,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432351,"id":"0xaf88abf9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462215584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":432382},
-{"pid":27443,"tid":27466,"ts":326462215584,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432382,"id":"0xccc62a02"},
-{"pid":27443,"tid":27466,"ts":326462221872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432443,"id":"0xaf88abfaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462221872,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":432443},
-{"pid":27443,"tid":27466,"ts":326462221902,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432473,"id":"0xccc62b02"},
-{"pid":27443,"tid":27466,"ts":326462223001,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":152,"tts":432565},
-{"pid":27443,"tid":27466,"ts":326462223031,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":184,"tdur":92,"tts":432595},
-{"pid":27443,"tid":27466,"ts":326462223031,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432595,"id":"0xba46d502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462223153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":432656,"id":"0xaf88a21ef182217a"},
-{"pid":27443,"tid":27466,"ts":326462236643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432778,"id":"0xaf88abfbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462236643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":432778},
-{"pid":27443,"tid":27466,"ts":326462236643,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432778,"id":"0xccc62c02"},
-{"pid":27443,"tid":27466,"ts":326462237834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":432900,"id":"0xaf88abf4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462237864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":432931},
-{"pid":27443,"tid":27466,"ts":326462237864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":432931,"id":"0xccc62d06"},
-{"pid":27443,"tid":27466,"ts":326462238108,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":433023},
-{"pid":27443,"tid":27466,"ts":326462238139,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":433053},
-{"pid":27443,"tid":27466,"ts":326462238139,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433053,"id":"0xc4c23a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462240031,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":91,"tts":433206},
-{"pid":27443,"tid":27466,"ts":326462240031,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":433206},
-{"pid":27443,"tid":27466,"ts":326462240123,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":433236},
-{"pid":27443,"tid":27466,"ts":326462240123,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433236,"id":"0xba46d602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462240184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":433297,"id":"0xaf88a216f182217a"},
-{"pid":27443,"tid":27466,"ts":326462241771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":433358,"id":"0xaf88abf5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462241771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":433358},
-{"pid":27443,"tid":27466,"ts":326462241801,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433389,"id":"0xccc62e02"},
-{"pid":27443,"tid":27466,"ts":326462246257,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":91,"tts":433511},
-{"pid":27443,"tid":27466,"ts":326462246288,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":433541},
-{"pid":27443,"tid":27466,"ts":326462246288,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433541,"id":"0xba46d702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462246349,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":433602,"id":"0xaf88a212f182217a"},
-{"pid":27443,"tid":27466,"ts":326462252575,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":433663,"id":"0xaf88abf6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462252575,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":433694},
-{"pid":27443,"tid":27466,"ts":326462252606,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433694,"id":"0xccc62f02"},
-{"pid":27443,"tid":27466,"ts":326462252667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":433755,"id":"0xaf88abf7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462252667,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":433755},
-{"pid":27443,"tid":27466,"ts":326462252667,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433755,"id":"0xccc63002"},
-{"pid":27443,"tid":27466,"ts":326462252728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":433816,"id":"0xaf88abf0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462252728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":433816},
-{"pid":27443,"tid":27466,"ts":326462252728,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433816,"id":"0xccc63106"},
-{"pid":27443,"tid":27466,"ts":326462253124,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":62,"tdur":61,"tts":433908},
-{"pid":27443,"tid":27466,"ts":326462253124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":62,"tdur":61,"tts":433908},
-{"pid":27443,"tid":27466,"ts":326462253155,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":433938,"id":"0xc4c23c0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462253857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":434060,"id":"0xaf88abf1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462253857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":434060},
-{"pid":27443,"tid":27466,"ts":326462253857,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434060,"id":"0xccc63202"},
-{"pid":27443,"tid":27466,"ts":326462257245,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":122,"tts":434182},
-{"pid":27443,"tid":27466,"ts":326462257275,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":434213},
-{"pid":27443,"tid":27466,"ts":326462257306,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434243,"id":"0xba46d902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462257336,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":434274,"id":"0xaf88a224f182217a"},
-{"pid":27443,"tid":27466,"ts":326462258130,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":434335},
-{"pid":27443,"tid":27466,"ts":326462258160,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":434365},
-{"pid":27443,"tid":27466,"ts":326462258160,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434396,"id":"0xba46da02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462258191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":434396,"id":"0xaf88a226f182217a"},
-{"pid":27443,"tid":27466,"ts":326462260083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":434518,"id":"0xaf88abf2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462260114,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":434549},
-{"pid":27443,"tid":27466,"ts":326462260114,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434549,"id":"0xccc63302"},
-{"pid":27443,"tid":27466,"ts":326462260175,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":434610,"id":"0xaf88abf3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462260175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":434610},
-{"pid":27443,"tid":27466,"ts":326462260175,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434610,"id":"0xccc63406"},
-{"pid":27443,"tid":27466,"ts":326462260449,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":434701},
-{"pid":27443,"tid":27466,"ts":326462260449,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":434701},
-{"pid":27443,"tid":27459,"ts":326462212929,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":8239096},
-{"pid":27443,"tid":27459,"ts":326462212990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239157,"id":"0xaf88a5e0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462212990,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8239157},
-{"pid":27443,"tid":27459,"ts":326462213021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239188,"id":"0xaf88a5e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239188,"id":"0xaf88a70ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213051,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8239218},
-{"pid":27443,"tid":27459,"ts":326462213051,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8239218},
-{"pid":27443,"tid":27459,"ts":326462213112,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239279,"id":"0xaf88a5e1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8239279},
-{"pid":27443,"tid":27459,"ts":326462213112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239310,"id":"0xaf88a5e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239310,"id":"0xaf88a708f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213143,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":8239310},
-{"pid":27443,"tid":27459,"ts":326462213143,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":0,"tts":8239340},
-{"pid":27443,"tid":27459,"ts":326462213204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239371,"id":"0xaf88a5e2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8239371},
-{"pid":27443,"tid":27459,"ts":326462213234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239401,"id":"0xaf88a5e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213234,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239401,"id":"0xaf88a709f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213265,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":30,"tts":8239432},
-{"pid":27443,"tid":27459,"ts":326462213265,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8239432},
-{"pid":27443,"tid":27459,"ts":326462213326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239493,"id":"0xaf88a5e3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213326,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8239493},
-{"pid":27443,"tid":27459,"ts":326462213326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239523,"id":"0xaf88a5fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239523,"id":"0xaf88a70af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213356,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8239523},
-{"pid":27443,"tid":27459,"ts":326462213356,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":0,"tts":8239554},
-{"pid":27443,"tid":27459,"ts":326462213417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239584,"id":"0xaf88a5fcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8239584},
-{"pid":27443,"tid":27459,"ts":326462213448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239615,"id":"0xaf88a5fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239615,"id":"0xaf88a70bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213479,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":30,"tdur":31,"tts":8239645},
-{"pid":27443,"tid":27459,"ts":326462213479,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":0,"tts":8239645},
-{"pid":27443,"tid":27459,"ts":326462213540,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239707,"id":"0xaf88a5fdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213540,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8239707},
-{"pid":27443,"tid":27459,"ts":326462213570,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239737,"id":"0xaf88a5fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239737,"id":"0xaf88a704f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213570,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8239737},
-{"pid":27443,"tid":27459,"ts":326462213601,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8239768},
-{"pid":27443,"tid":27459,"ts":326462213631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239798,"id":"0xaf88a5fef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213631,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":61,"tts":8239829},
-{"pid":27443,"tid":27459,"ts":326462213662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239829,"id":"0xaf88a5fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239859,"id":"0xaf88a705f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213692,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":31,"tdur":31,"tts":8239859},
-{"pid":27443,"tid":27459,"ts":326462213692,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":8239859},
-{"pid":27443,"tid":27459,"ts":326462213753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8239920,"id":"0xaf88a5fff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8239920},
-{"pid":27443,"tid":27459,"ts":326462213784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8239951,"id":"0xaf88a5f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213784,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8239951,"id":"0xaf88a70cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213784,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":61,"tdur":61,"tts":8239951},
-{"pid":27443,"tid":27459,"ts":326462213814,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":31,"tts":8239981},
-{"pid":27443,"tid":27459,"ts":326462213814,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":0,"tdur":0,"tts":8239981},
-{"pid":27443,"tid":27459,"ts":326462213875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8240042,"id":"0xaf88a5f8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8240042},
-{"pid":27443,"tid":27459,"ts":326462213906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8240073,"id":"0xaf88a5f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213906,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8240073,"id":"0xaf88a707f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213906,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":8240073},
-{"pid":27443,"tid":27459,"ts":326462213967,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8240134,"id":"0xaf88a5f9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213967,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":885,"tdur":366,"tts":8240134},
-{"pid":27443,"tid":27459,"ts":326462213967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8240134,"id":"0xaf88a5faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462213997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8240164,"id":"0xaf88a700f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462213997,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":8240164},
-{"pid":27443,"tid":27459,"ts":326462214058,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":275,"tdur":275,"tts":8240225},
-{"pid":27443,"tid":27459,"ts":326462214303,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.114","frame":"0x78c60000","statusCode":204,"mimeType":"image/gif"}},"tts":8240470,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462214882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8240561,"id":"0xaf88a5faf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462214882,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8240561},
-{"pid":27443,"tid":27459,"ts":326462214913,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8240592,"id":"0xaf88a5fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462214943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8240622,"id":"0xaf88a701f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462214943,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":8240622},
-{"pid":27443,"tid":27459,"ts":326462214974,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8240653,"id":"0xaf88a5fbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462215005,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":701,"tdur":611,"tts":8240683},
-{"pid":27443,"tid":27459,"ts":326462215005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8240683,"id":"0xaf88a5f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462215005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8240683,"id":"0xaf88a702f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462215035,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":641,"tdur":549,"tts":8240714},
-{"pid":27443,"tid":27459,"ts":326462215035,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":641,"tdur":549,"tts":8240714},
-{"pid":27443,"tid":27459,"ts":326462215066,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8240744,"id":"0xaf88a5f5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462215096,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":8240775,"id":"0xaf88ae4cfda7a762"},
-{"pid":27443,"tid":27459,"ts":326462215157,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.114","didFail":false,"networkTime":326462.206703}},"tts":8240836,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462215188,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":213,"tdur":214,"tts":8240866},
-{"pid":27443,"tid":27459,"ts":326462215218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8240897,"id":"0xaf88a71cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462215432,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8241110,"id":"0xaf88a71df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462215462,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":183,"tdur":92,"tts":8241141},
-{"pid":27443,"tid":27459,"ts":326462215462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8241141,"id":"0xaf88abf9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462215737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8241324,"id":"0xaf88a5f4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462215737,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":458,"tts":8241324},
-{"pid":27443,"tid":27459,"ts":326462215768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8241355,"id":"0xaf88a5f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462215768,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8241355,"id":"0xaf88a71cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462215768,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":427,"tdur":427,"tts":8241355},
-{"pid":27443,"tid":27459,"ts":326462215798,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":397,"tdur":397,"tts":8241385},
-{"pid":27443,"tid":27459,"ts":326462215798,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8241416},
-{"pid":27443,"tid":27459,"ts":326462215859,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"error"}},"dur":305,"tdur":275,"tts":8241446},
-{"pid":27443,"tid":27459,"ts":326462215951,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":42,"frame":"0x78c60000"}},"dur":152,"tdur":152,"tts":8241538},
-{"pid":27443,"tid":27459,"ts":326462215981,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8241568},
-{"pid":27443,"tid":27459,"ts":326462216103,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8241690},
-{"pid":27443,"tid":27459,"ts":326462216164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8241751,"id":"0xaf88a71ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462216225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8241812,"id":"0xaf88a5f6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462216225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2228,"tdur":2014,"tts":8241843},
-{"pid":27443,"tid":27459,"ts":326462216256,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8241843,"id":"0xaf88a5f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462216256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8241873,"id":"0xaf88a71df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462216286,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":2167,"tdur":1984,"tts":8241873},
-{"pid":27443,"tid":27459,"ts":326462216286,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2137,"tdur":1954,"tts":8241873},
-{"pid":27443,"tid":27459,"ts":326462216470,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29700096,"free":8048640},"tts":8242057},
-{"pid":27443,"tid":27459,"ts":326462216531,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29732864,"free":8015872},"tts":8242118},
-{"pid":27443,"tid":27459,"ts":326462216561,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29712384,"free":8036352},"tts":8242148},
-{"pid":27443,"tid":27459,"ts":326462216622,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29761536,"free":7987200},"tts":8242209},
-{"pid":27443,"tid":27459,"ts":326462216653,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29728768,"free":8019968},"tts":8242240},
-{"pid":27443,"tid":27459,"ts":326462216683,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29802496,"free":7946240},"tts":8242301},
-{"pid":27443,"tid":27459,"ts":326462216744,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29753344,"free":7995392},"tts":8242331},
-{"pid":27443,"tid":27459,"ts":326462216836,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29863936,"free":7884800},"tts":8242423},
-{"pid":27443,"tid":27459,"ts":326462216866,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29790208,"free":7958528},"tts":8242453},
-{"pid":27443,"tid":27459,"ts":326462216958,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29958144,"free":7790592},"tts":8242545},
-{"pid":27443,"tid":27459,"ts":326462217202,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29847552,"free":7901184},"tts":8242606},
-{"pid":27443,"tid":27459,"ts":326462217416,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":30101504,"free":7647232},"tts":8242820},
-{"pid":27443,"tid":27459,"ts":326462218026,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29933568,"free":7815168},"tts":8243430},
-{"pid":27443,"tid":27459,"ts":326462218392,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":8243827},
-{"pid":27443,"tid":27459,"ts":326462218514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8243918,"id":"0xaf88a5f7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462218514,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8243918},
-{"pid":27443,"tid":27459,"ts":326462218545,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8243949,"id":"0xaf88a5f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462218545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8243949,"id":"0xaf88a71ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462218545,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":61,"tts":8243949},
-{"pid":27443,"tid":27459,"ts":326462218575,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8243979},
-{"pid":27443,"tid":27459,"ts":326462218636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8244040,"id":"0xaf88a5f0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462218636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":8244040},
-{"pid":27443,"tid":27459,"ts":326462233500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8244193,"id":"0xaf88a5f1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462233530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2167,"tdur":2044,"tts":8244224},
-{"pid":27443,"tid":27459,"ts":326462233561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8244254,"id":"0xaf88a5f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462233561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8244254,"id":"0xaf88a71ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462233561,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":2136,"tdur":2014,"tts":8244254},
-{"pid":27443,"tid":27459,"ts":326462233591,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":179},"tts":8244285},
-{"pid":27443,"tid":27459,"ts":326462233591,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":30,"tts":8244285},
-{"pid":27443,"tid":27471,"ts":326462218514,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e2db8f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":493514},
-{"pid":27443,"tid":27471,"ts":326462218514,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":493514},
-{"pid":27443,"tid":27471,"ts":326462218575,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":493575},
-{"pid":27443,"tid":27471,"ts":326462218575,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7e2db8f0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":493605},
-{"pid":27443,"tid":27471,"ts":326462218636,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":493636,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462218759,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":517320},
-{"pid":27443,"tid":27469,"ts":326462218759,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":137,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799268b8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":517320},
-{"pid":27443,"tid":27469,"ts":326462218789,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":517350,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462219491,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":518052},
-{"pid":27443,"tid":27471,"ts":326462219491,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":494491},
-{"pid":27443,"tid":27469,"ts":326462219522,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":915,"tdur":915,"tts":518083},
-{"pid":27443,"tid":27469,"ts":326462219552,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":518113},
-{"pid":27443,"tid":27471,"ts":326462219552,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1526,"tdur":977,"tts":494582},
-{"pid":27443,"tid":27469,"ts":326462219583,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9a48"},"tileResolution":"HIGH_RESOLUTION"}},"tts":518144},
-{"pid":27443,"tid":27469,"ts":326462219583,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":518144},
-{"pid":27443,"tid":27471,"ts":326462219583,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1495,"tdur":977,"tts":494582},
-{"pid":27443,"tid":27471,"ts":326462219613,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bdf9dd0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":494613},
-{"pid":27443,"tid":27471,"ts":326462219613,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":494613},
-{"pid":27443,"tid":27469,"ts":326462219644,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":518205},
-{"pid":27443,"tid":27469,"ts":326462219644,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9a48"},"tileResolution":"HIGH_RESOLUTION"}},"tts":518205},
-{"pid":27443,"tid":27471,"ts":326462219674,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":494674},
-{"pid":27443,"tid":27469,"ts":326462219674,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":518235,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462219674,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bdf9dd0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":494674},
-{"pid":27443,"tid":27471,"ts":326462219705,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":494735,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462220407,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":518968},
-{"pid":27443,"tid":27469,"ts":326462220437,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":9461,"tdur":886,"tts":518998},
-{"pid":27443,"tid":27469,"ts":326462220437,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":9431,"tdur":855,"tts":518998},
-{"pid":27443,"tid":27469,"ts":326462220468,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9af8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":519029},
-{"pid":27443,"tid":27469,"ts":326462220468,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":519029},
-{"pid":27443,"tid":27469,"ts":326462220529,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":519090},
-{"pid":27443,"tid":27469,"ts":326462220529,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":140,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c9af8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":519090},
-{"pid":27443,"tid":27469,"ts":326462220559,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":519121,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462221048,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":495559},
-{"pid":27443,"tid":27471,"ts":326462221109,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3601,"tdur":1252,"tts":495589},
-{"pid":27443,"tid":27469,"ts":326462221383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":519700,"id":"0xaf88a21df182217a"},
-{"pid":27443,"tid":27471,"ts":326462221109,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":3601,"tdur":1252,"tts":495589},
-{"pid":27443,"tid":27471,"ts":326462223276,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bdf9e80"},"tileResolution":"HIGH_RESOLUTION"}},"tts":495711},
-{"pid":27443,"tid":27471,"ts":326462223276,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":495711},
-{"pid":27443,"tid":27471,"ts":326462223337,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":495772},
-{"pid":27443,"tid":27471,"ts":326462223367,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bdf9e80"},"tileResolution":"HIGH_RESOLUTION"}},"tts":495803},
-{"pid":27443,"tid":27471,"ts":326462223398,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":495833,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462224283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":496688,"id":"0xaf88a218f182217a"},
-{"pid":27443,"tid":27471,"ts":326462224344,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":335,"tdur":31,"tts":496749},
-{"pid":27443,"tid":27471,"ts":326462224679,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":496810},
-{"pid":27443,"tid":27471,"ts":326462224710,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":91,"tts":496841},
-{"pid":27443,"tid":27471,"ts":326462224741,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":496871},
-{"pid":27443,"tid":27471,"ts":326462224741,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":496871},
-{"pid":27443,"tid":27471,"ts":326462224741,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":496871},
-{"pid":27443,"tid":27471,"ts":326462224802,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1373,"tdur":1252,"tts":496932},
-{"pid":27443,"tid":27471,"ts":326462224802,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1342,"tdur":1252,"tts":496932},
-{"pid":27443,"tid":27471,"ts":326462224832,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7996b770"},"tileResolution":"HIGH_RESOLUTION"}},"tts":496963},
-{"pid":27443,"tid":27471,"ts":326462224893,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":497024},
-{"pid":27443,"tid":27471,"ts":326462224985,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":497115},
-{"pid":27443,"tid":27471,"ts":326462224985,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7996b770"},"tileResolution":"HIGH_RESOLUTION"}},"tts":497115},
-{"pid":27443,"tid":27471,"ts":326462225015,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":497146,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462226144,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":498184},
-{"pid":27443,"tid":27471,"ts":326462226175,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1038,"tdur":916,"tts":498214},
-{"pid":27443,"tid":27471,"ts":326462226175,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1038,"tdur":916,"tts":498214},
-{"pid":27443,"tid":27471,"ts":326462226206,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fc048"},"tileResolution":"HIGH_RESOLUTION"}},"tts":498245},
-{"pid":27443,"tid":27471,"ts":326462226206,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":498245},
-{"pid":27443,"tid":27471,"ts":326462226267,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":498306},
-{"pid":27443,"tid":27471,"ts":326462226297,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":136,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fc048"},"tileResolution":"HIGH_RESOLUTION"}},"tts":498336},
-{"pid":27443,"tid":27471,"ts":326462226328,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":498397,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462227182,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":499130},
-{"pid":27443,"tid":27477,"ts":326462221658,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":967312},
-{"pid":27443,"tid":27477,"ts":326462221688,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":967343},
-{"pid":27443,"tid":27477,"ts":326462221719,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":967373},
-{"pid":27443,"tid":27477,"ts":326462221750,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18092},"dur":61,"tdur":61,"tts":967404},
-{"pid":27443,"tid":27477,"ts":326462221780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":967434,"id":"0xaf88abfaf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462223245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":967526,"id":"0xaf88a21ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462223245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":967556},
-{"pid":27443,"tid":27477,"ts":326462223276,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462220642.0,"frame_time_us":326462220829.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":92,"tts":967556},
-{"pid":27443,"tid":27477,"ts":326462223306,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462220642.0,"frame_time_us":326462220829.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":967587},
-{"pid":27443,"tid":27477,"ts":326462223337,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462237495},"dur":30,"tdur":31,"tts":967617},
-{"pid":27443,"tid":27477,"ts":326462223367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":967648,"id":"0xaf88a21ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462224496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":967709,"id":"0xaf88a218f182217a"},
-{"pid":27443,"tid":27477,"ts":326462224527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"ScheduleCheckForCompletedCopyOperationsWithLockAcquired"},"dur":91,"tdur":92,"tts":967739},
-{"pid":27443,"tid":27477,"ts":326462224527,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedCopyOperations","args":{"wait_if_needed":false},"dur":61,"tdur":62,"tts":967739},
-{"pid":27443,"tid":27477,"ts":326462230051,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":967953,"id":"0xaf88a219f182217a"},
-{"pid":27443,"tid":27477,"ts":326462230082,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":91,"tts":967984},
-{"pid":27443,"tid":27477,"ts":326462230082,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":91,"tts":967984},
-{"pid":27443,"tid":27477,"ts":326462230112,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":995328,"bytes_used_for_staging_resources":10616832,"pending_copy_count":3,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":968014,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462230143,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":30,"tts":968045},
-{"pid":27443,"tid":27477,"ts":326462230143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":968045,"id":"0xaf88a21af182217a"},
-{"pid":27443,"tid":27477,"ts":326462230173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":968106,"id":"0xaf88a21af182217a"},
-{"pid":27443,"tid":27477,"ts":326462230204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":3357,"tdur":3357,"tts":968106},
-{"pid":27443,"tid":27477,"ts":326462230204,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":3357,"tdur":3357,"tts":968106},
-{"pid":27443,"tid":27477,"ts":326462230234,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":550,"tdur":550,"tts":968136},
-{"pid":27443,"tid":27477,"ts":326462230234,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":968136},
-{"pid":27443,"tid":27477,"ts":326462230265,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":968167},
-{"pid":27443,"tid":27477,"ts":326462230295,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968197},
-{"pid":27443,"tid":27477,"ts":326462230326,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968228},
-{"pid":27443,"tid":27477,"ts":326462230326,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":968228},
-{"pid":27443,"tid":27477,"ts":326462230356,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968258},
-{"pid":27443,"tid":27477,"ts":326462230387,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":30,"tts":968289},
-{"pid":27443,"tid":27477,"ts":326462230387,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":968289},
-{"pid":27443,"tid":27477,"ts":326462230448,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968350},
-{"pid":27443,"tid":27477,"ts":326462230448,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":31,"tts":968380},
-{"pid":27443,"tid":27477,"ts":326462230478,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":968380},
-{"pid":27443,"tid":27477,"ts":326462230509,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":968411},
-{"pid":27443,"tid":27477,"ts":326462230539,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":31,"tts":968441},
-{"pid":27443,"tid":27477,"ts":326462230539,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":968472},
-{"pid":27443,"tid":27477,"ts":326462230600,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968503},
-{"pid":27443,"tid":27477,"ts":326462230600,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":968503},
-{"pid":27443,"tid":27477,"ts":326462230631,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":31,"tts":968533},
-{"pid":27443,"tid":27477,"ts":326462230661,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":968564},
-{"pid":27443,"tid":27477,"ts":326462230692,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":968594},
-{"pid":27443,"tid":27477,"ts":326462230692,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":968625},
-{"pid":27443,"tid":27477,"ts":326462230753,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968655},
-{"pid":27443,"tid":27477,"ts":326462230784,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":968686},
-{"pid":27443,"tid":27477,"ts":326462230784,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":213,"tdur":213,"tts":968686},
-{"pid":27443,"tid":27477,"ts":326462230814,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":968716},
-{"pid":27443,"tid":27477,"ts":326462230997,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":2533,"tdur":2533,"tts":968899},
-{"pid":27443,"tid":27477,"ts":326462230997,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":2533,"tdur":2533,"tts":968899},
-{"pid":27443,"tid":27477,"ts":326462231028,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":2289,"tdur":2289,"tts":968930},
-{"pid":27443,"tid":27477,"ts":326462231028,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":968930,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462231058,"ph":"X","cat":"cc","name":"TreeSynchronizer::SynchronizeTrees","args":{},"dur":428,"tdur":428,"tts":968960},
-{"pid":27443,"tid":27477,"ts":326462231516,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":969418},
-{"pid":27443,"tid":27477,"ts":326462231608,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":969510},
-{"pid":27443,"tid":27477,"ts":326462231638,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":969540},
-{"pid":27443,"tid":27477,"ts":326462231669,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":969571},
-{"pid":27443,"tid":27477,"ts":326462231699,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969601},
-{"pid":27443,"tid":27477,"ts":326462231730,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969632},
-{"pid":27443,"tid":27477,"ts":326462231730,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":969632},
-{"pid":27443,"tid":27477,"ts":326462231760,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":969662},
-{"pid":27443,"tid":27477,"ts":326462231791,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969693},
-{"pid":27443,"tid":27477,"ts":326462231821,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969723},
-{"pid":27443,"tid":27477,"ts":326462231821,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":969723},
-{"pid":27443,"tid":27471,"ts":326462227213,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1251,"tdur":1129,"tts":499130},
-{"pid":27443,"tid":27471,"ts":326462227274,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1190,"tdur":1068,"tts":499191},
-{"pid":27443,"tid":27471,"ts":326462227304,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bde44a8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":499221},
-{"pid":27443,"tid":27471,"ts":326462227335,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":499252},
-{"pid":27443,"tid":27471,"ts":326462227396,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":499313},
-{"pid":27443,"tid":27471,"ts":326462227396,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bde44a8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":499313},
-{"pid":27443,"tid":27471,"ts":326462227426,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":499343,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462228433,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":500228},
-{"pid":27443,"tid":27471,"ts":326462228464,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":91,"tts":500259},
-{"pid":27443,"tid":27471,"ts":326462228495,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":500289},
-{"pid":27443,"tid":27471,"ts":326462228495,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":500289},
-{"pid":27443,"tid":27471,"ts":326462228495,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":500289},
-{"pid":27443,"tid":27471,"ts":326462228678,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1129,"tdur":1068,"tts":500381},
-{"pid":27443,"tid":27471,"ts":326462228678,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1098,"tdur":1038,"tts":500381},
-{"pid":27443,"tid":27471,"ts":326462228708,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799f4240"},"tileResolution":"HIGH_RESOLUTION"}},"tts":500412},
-{"pid":27443,"tid":27471,"ts":326462228708,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":500412},
-{"pid":27443,"tid":27471,"ts":326462228769,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":500503},
-{"pid":27443,"tid":27471,"ts":326462228800,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799f4240"},"tileResolution":"HIGH_RESOLUTION"}},"tts":500503},
-{"pid":27443,"tid":27471,"ts":326462228861,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":500564,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462229776,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":501419},
-{"pid":27443,"tid":27471,"ts":326462229807,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":501449},
-{"pid":27443,"tid":27471,"ts":326462229807,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":501449},
-{"pid":27443,"tid":27471,"ts":326462229837,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":501480},
-{"pid":27443,"tid":27471,"ts":326462229837,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":501480},
-{"pid":27443,"tid":27469,"ts":326462229868,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":519853},
-{"pid":27443,"tid":27471,"ts":326462229868,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":2197,"tdur":1007,"tts":501510},
-{"pid":27443,"tid":27471,"ts":326462229898,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":2137,"tdur":976,"tts":501541},
-{"pid":27443,"tid":27469,"ts":326462229898,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":519914},
-{"pid":27443,"tid":27469,"ts":326462229929,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":519914},
-{"pid":27443,"tid":27471,"ts":326462229929,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4768"},"tileResolution":"HIGH_RESOLUTION"}},"tts":501571},
-{"pid":27443,"tid":27469,"ts":326462229929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":519914,"id":"0xaf88a219f182217a"},
-{"pid":27443,"tid":27471,"ts":326462229960,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":1190,"tdur":30,"tts":501602},
-{"pid":27443,"tid":27469,"ts":326462229990,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1007,"tdur":1007,"tts":519975},
-{"pid":27443,"tid":27469,"ts":326462230051,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":916,"tts":520036},
-{"pid":27443,"tid":27469,"ts":326462230082,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799f40c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":520067},
-{"pid":27443,"tid":27469,"ts":326462230082,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":520067},
-{"pid":27443,"tid":27469,"ts":326462230112,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":520097},
-{"pid":27443,"tid":27469,"ts":326462230143,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799f40c8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":520128},
-{"pid":27443,"tid":27469,"ts":326462230173,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":520158,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462230967,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":520952},
-{"pid":27443,"tid":27469,"ts":326462230997,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":520982},
-{"pid":27443,"tid":27469,"ts":326462230997,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":520982},
-{"pid":27443,"tid":27469,"ts":326462230997,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":520982},
-{"pid":27443,"tid":27469,"ts":326462230997,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":520982},
-{"pid":27443,"tid":27469,"ts":326462231058,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":13582,"tdur":885,"tts":521043},
-{"pid":27443,"tid":27469,"ts":326462231058,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":13551,"tdur":885,"tts":521043},
-{"pid":27443,"tid":27471,"ts":326462231150,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":501632},
-{"pid":27443,"tid":27471,"ts":326462231180,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4768"},"tileResolution":"HIGH_RESOLUTION"}},"tts":501663},
-{"pid":27443,"tid":27471,"ts":326462231241,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":501724,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462232035,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":502517},
-{"pid":27443,"tid":27471,"ts":326462232065,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":916,"tts":502548},
-{"pid":27443,"tid":27471,"ts":326462232065,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":916,"tts":502548},
-{"pid":27443,"tid":27471,"ts":326462232096,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4250"},"tileResolution":"HIGH_RESOLUTION"}},"tts":502578},
-{"pid":27443,"tid":27471,"ts":326462232096,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":502578},
-{"pid":27443,"tid":27471,"ts":326462232126,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":502609},
-{"pid":27443,"tid":27471,"ts":326462232157,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4250"},"tileResolution":"HIGH_RESOLUTION"}},"tts":502640},
-{"pid":27443,"tid":27471,"ts":326462232187,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":502670,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462232951,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":503433},
-{"pid":27443,"tid":27471,"ts":326462232981,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3266,"tdur":793,"tts":503464},
-{"pid":27443,"tid":27471,"ts":326462232981,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":3235,"tdur":763,"tts":503464},
-{"pid":27443,"tid":27471,"ts":326462233012,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fd980"},"tileResolution":"HIGH_RESOLUTION"}},"tts":503494},
-{"pid":27443,"tid":27471,"ts":326462233012,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":503494},
-{"pid":27443,"tid":27471,"ts":326462233073,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":503555},
-{"pid":27443,"tid":27471,"ts":326462233073,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fd980"},"tileResolution":"HIGH_RESOLUTION"}},"tts":503555},
-{"pid":27443,"tid":27477,"ts":326462231852,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":61,"tdur":61,"tts":969754},
-{"pid":27443,"tid":27477,"ts":326462231852,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":969754},
-{"pid":27443,"tid":27477,"ts":326462231913,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":969815},
-{"pid":27443,"tid":27477,"ts":326462231943,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":969845},
-{"pid":27443,"tid":27477,"ts":326462231974,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969876},
-{"pid":27443,"tid":27477,"ts":326462232004,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969906},
-{"pid":27443,"tid":27477,"ts":326462232004,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":969906},
-{"pid":27443,"tid":27477,"ts":326462232035,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":969937},
-{"pid":27443,"tid":27477,"ts":326462232065,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969967},
-{"pid":27443,"tid":27477,"ts":326462232096,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":969998},
-{"pid":27443,"tid":27477,"ts":326462232096,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":969998},
-{"pid":27443,"tid":27477,"ts":326462232126,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":970029},
-{"pid":27443,"tid":27477,"ts":326462232157,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970059},
-{"pid":27443,"tid":27477,"ts":326462232187,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970090},
-{"pid":27443,"tid":27477,"ts":326462232218,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970120},
-{"pid":27443,"tid":27477,"ts":326462232249,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":970151},
-{"pid":27443,"tid":27477,"ts":326462232279,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":970181},
-{"pid":27443,"tid":27477,"ts":326462232340,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970242},
-{"pid":27443,"tid":27477,"ts":326462232371,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970273},{"pid":27443,"tid":27477,"ts":326462232401,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970303},
-{"pid":27443,"tid":27477,"ts":326462232432,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970334},
-{"pid":27443,"tid":27477,"ts":326462232462,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970364},
-{"pid":27443,"tid":27477,"ts":326462232493,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970395},
-{"pid":27443,"tid":27477,"ts":326462232523,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970425},
-{"pid":27443,"tid":27477,"ts":326462232554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970456},
-{"pid":27443,"tid":27477,"ts":326462232584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":970486},
-{"pid":27443,"tid":27477,"ts":326462232615,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970517},
-{"pid":27443,"tid":27477,"ts":326462232645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":970547},
-{"pid":27443,"tid":27477,"ts":326462232676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970578},
-{"pid":27443,"tid":27477,"ts":326462232706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":970608},
-{"pid":27443,"tid":27477,"ts":326462232737,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":970639},
-{"pid":27443,"tid":27477,"ts":326462232767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":970669},
-{"pid":27443,"tid":27477,"ts":326462232798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":970700},
-{"pid":27443,"tid":27477,"ts":326462232889,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":970792},
-{"pid":27443,"tid":27477,"ts":326462232920,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970822},
-{"pid":27443,"tid":27477,"ts":326462232951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970853},
-{"pid":27443,"tid":27477,"ts":326462232981,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":970883},
-{"pid":27443,"tid":27477,"ts":326462233012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970914},
-{"pid":27443,"tid":27477,"ts":326462233042,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":970944},
-{"pid":27443,"tid":27477,"ts":326462233042,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":970944},
-{"pid":27443,"tid":27477,"ts":326462233103,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":971005},
-{"pid":27443,"tid":27477,"ts":326462233164,"ph":"X","cat":"cc","name":"AnimationRegistrar::ActivateAnimations","args":{},"dur":61,"tdur":61,"tts":971066},
-{"pid":27443,"tid":27477,"ts":326462233225,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":971127},
-{"pid":27443,"tid":27477,"ts":326462233256,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":971158},
-{"pid":27443,"tid":27477,"ts":326462233256,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":971158},
-{"pid":27443,"tid":27477,"ts":326462233286,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":0,"tts":971188},
-{"pid":27443,"tid":27477,"ts":326462233317,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":179},"tts":971219},
-{"pid":27443,"tid":27477,"ts":326462233408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":971310,"id":"0xaf88a71ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462233408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":971310,"id":"0xaf88a5f1f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462233469,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":971371},
-{"pid":27443,"tid":27477,"ts":326462233500,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":971402},
-{"pid":27443,"tid":27477,"ts":326462233530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":971432,"id":"0xaf88a21bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462233561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":971463,"id":"0xaf88a21bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462233591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":8302,"tdur":5127,"tts":971494},
-{"pid":27443,"tid":27477,"ts":326462233591,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":8302,"tdur":5127,"tts":971494},
-{"pid":27443,"tid":27477,"ts":326462233591,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":977,"tdur":824,"tts":971524},
-{"pid":27443,"tid":27477,"ts":326462233622,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":916,"tdur":794,"tts":971524},
-{"pid":27443,"tid":27477,"ts":326462233683,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":971585,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462233683,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":92,"tts":971585},
-{"pid":27443,"tid":27477,"ts":326462233927,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":971707,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234019,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":971799,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234080,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":971860,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234141,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":971921,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234202,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":971982,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462233103,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":503586,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462236216,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":504227},
-{"pid":27443,"tid":27471,"ts":326462236247,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":8240,"tdur":1038,"tts":504257},
-{"pid":27443,"tid":27471,"ts":326462236247,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":8240,"tdur":1038,"tts":504257},
-{"pid":27443,"tid":27469,"ts":326462236338,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c43b0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":521135},
-{"pid":27443,"tid":27469,"ts":326462236338,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":521135},
-{"pid":27443,"tid":27469,"ts":326462236399,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":521196},
-{"pid":27443,"tid":27469,"ts":326462236399,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c43b0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":521196},
-{"pid":27443,"tid":27469,"ts":326462236430,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":521226,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462236979,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bde4540"},"tileResolution":"HIGH_RESOLUTION"}},"tts":504349},
-{"pid":27443,"tid":27471,"ts":326462236979,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":504349},
-{"pid":27443,"tid":27471,"ts":326462237040,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":504410},
-{"pid":27443,"tid":27471,"ts":326462237040,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bde4540"},"tileResolution":"HIGH_RESOLUTION"}},"tts":504440},
-{"pid":27443,"tid":27471,"ts":326462237071,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":504440,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462244487,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":505295},
-{"pid":27443,"tid":27471,"ts":326462244487,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":244,"tdur":122,"tts":505325},
-{"pid":27443,"tid":27471,"ts":326462244518,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":213,"tdur":122,"tts":505325},
-{"pid":27443,"tid":27471,"ts":326462244518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":505325,"id":"0xaf88a210f182217a"},
-{"pid":27443,"tid":27469,"ts":326462244609,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":521928},
-{"pid":27443,"tid":27469,"ts":326462244640,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1801,"tdur":61,"tts":521959},
-{"pid":27443,"tid":27469,"ts":326462244640,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1801,"tdur":61,"tts":521959},
-{"pid":27443,"tid":27471,"ts":326462244731,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":702,"tts":505447},
-{"pid":27443,"tid":27471,"ts":326462244762,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":671,"tdur":671,"tts":505478},
-{"pid":27443,"tid":27471,"ts":326462244792,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fda30"},"tileResolution":"HIGH_RESOLUTION"}},"tts":505508},
-{"pid":27443,"tid":27471,"ts":326462244792,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":505508},
-{"pid":27443,"tid":27471,"ts":326462244853,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":505569},
-{"pid":27443,"tid":27471,"ts":326462244853,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":141,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fda30"},"tileResolution":"HIGH_RESOLUTION"}},"tts":505569},
-{"pid":27443,"tid":27471,"ts":326462244884,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":505600,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462245433,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":506149},
-{"pid":27443,"tid":27471,"ts":326462245433,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":702,"tdur":672,"tts":506149},
-{"pid":27443,"tid":27471,"ts":326462245433,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":672,"tdur":672,"tts":506149},
-{"pid":27443,"tid":27471,"ts":326462245464,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fcb50"},"tileResolution":"HIGH_RESOLUTION"}},"tts":506180},
-{"pid":27443,"tid":27471,"ts":326462245464,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":506180},
-{"pid":27443,"tid":27471,"ts":326462245525,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":506241},
-{"pid":27443,"tid":27471,"ts":326462245525,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":138,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7b4fcb50"},"tileResolution":"HIGH_RESOLUTION"}},"tts":506241},
-{"pid":27443,"tid":27471,"ts":326462245555,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":506271,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462246074,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":506790,"id":"0xaf88a211f182217a"},
-{"pid":27443,"tid":27471,"ts":326462246105,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":506821},
-{"pid":27443,"tid":27471,"ts":326462246135,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":10560,"tdur":885,"tts":506851},
-{"pid":27443,"tid":27471,"ts":326462246135,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":10560,"tdur":885,"tts":506851},
-{"pid":27443,"tid":27471,"ts":326462246166,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799fdef8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":506882},
-{"pid":27443,"tid":27471,"ts":326462246166,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":30,"tts":506882},
-{"pid":27443,"tid":27471,"ts":326462246196,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":506912},
-{"pid":27443,"tid":27469,"ts":326462246410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":521989,"id":"0xaf88a213f182217a"},
-{"pid":27443,"tid":27469,"ts":326462246471,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":794,"tdur":794,"tts":522050},
-{"pid":27443,"tid":27469,"ts":326462246471,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":522050},
-{"pid":27443,"tid":27469,"ts":326462246502,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799bfd90"},"tileResolution":"HIGH_RESOLUTION"}},"tts":522081},
-{"pid":27443,"tid":27469,"ts":326462246502,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":522081},
-{"pid":27443,"tid":27469,"ts":326462246563,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":522142},
-{"pid":27443,"tid":27469,"ts":326462246593,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799bfd90"},"tileResolution":"HIGH_RESOLUTION"}},"tts":522173},
-{"pid":27443,"tid":27469,"ts":326462246624,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":522203,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462247234,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":522813},
-{"pid":27443,"tid":27469,"ts":326462247265,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":793,"tdur":794,"tts":522844},
-{"pid":27443,"tid":27469,"ts":326462247265,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":793,"tdur":794,"tts":522844},
-{"pid":27443,"tid":27469,"ts":326462247295,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4460"},"tileResolution":"HIGH_RESOLUTION"}},"tts":522875},
-{"pid":27443,"tid":27469,"ts":326462247326,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":522905},
-{"pid":27443,"tid":27469,"ts":326462247356,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":522936},
-{"pid":27443,"tid":27469,"ts":326462247387,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4460"},"tileResolution":"HIGH_RESOLUTION"}},"tts":522966},
-{"pid":27443,"tid":27469,"ts":326462247417,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":522997,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462248028,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":523638},
-{"pid":27443,"tid":27469,"ts":326462248058,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":915,"tts":523638},
-{"pid":27443,"tid":27469,"ts":326462248089,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":885,"tdur":885,"tts":523668},
-{"pid":27443,"tid":27469,"ts":326462248119,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799f4190"},"tileResolution":"HIGH_RESOLUTION"}},"tts":523699},
-{"pid":27443,"tid":27469,"ts":326462248119,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":30,"tts":523699},
-{"pid":27443,"tid":27459,"ts":326462233652,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":275,"tdur":274,"tts":8244346},
-{"pid":27443,"tid":27459,"ts":326462233652,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":213,"tts":8244346},
-{"pid":27443,"tid":27459,"ts":326462233897,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":8244590},
-{"pid":27443,"tid":27459,"ts":326462233927,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":641,"tdur":550,"tts":8244620},
-{"pid":27443,"tid":27459,"ts":326462234019,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8244712,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234049,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8244742,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234110,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8244803,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234141,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8244834,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234202,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8244895,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234232,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8244925,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234415,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8245017,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234477,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8245078,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234507,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":8245139,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234568,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":214,"tdur":183,"tts":8245170},
-{"pid":27443,"tid":27459,"ts":326462234599,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245200,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234599,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245200,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234629,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245231,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234660,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245261,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234660,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245261,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234690,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245292,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234721,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245322,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234721,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245322,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234751,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":8245353,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462234782,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":366,"tdur":367,"tts":8245383},
-{"pid":27443,"tid":27459,"ts":326462234812,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8245414},
-{"pid":27443,"tid":27459,"ts":326462234843,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8245444},
-{"pid":27443,"tid":27459,"ts":326462234843,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8245444},
-{"pid":27443,"tid":27459,"ts":326462234965,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":0,"counters":true},"tts":8245566},
-{"pid":27443,"tid":27459,"ts":326462234995,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":0},"tts":8245597},
-{"pid":27443,"tid":27459,"ts":326462235026,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":122,"tdur":123,"tts":8245627},
-{"pid":27443,"tid":27459,"ts":326462235026,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":30,"tdur":31,"tts":8245627},
-{"pid":27443,"tid":27459,"ts":326462235056,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":0,"tdur":0,"tts":8245658},
-{"pid":27443,"tid":27459,"ts":326462235087,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":8245689},
-{"pid":27443,"tid":27459,"ts":326462235117,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":31,"tdur":31,"tts":8245719},
-{"pid":27443,"tid":27459,"ts":326462235148,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":179},"dur":336,"tdur":335,"tts":8245750},
-{"pid":27443,"tid":27459,"ts":326462235178,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":306,"tdur":305,"tts":8245780},
-{"pid":27443,"tid":27459,"ts":326462235484,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":91,"tdur":30,"tts":8246116},
-{"pid":27443,"tid":27459,"ts":326462235575,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8246146,"id":"0xaf88a214f182217a"},
-{"pid":27443,"tid":27459,"ts":326462235606,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":8246177,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462235606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8246177,"id":"0xaf88a215f182217a"},
-{"pid":27443,"tid":27459,"ts":326462235667,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":1859},"tts":8246238,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462235667,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8246238,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462235667,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8246238},
-{"pid":27443,"tid":27459,"ts":326462235758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8246329,"id":"0xaf88a5f2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462235758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":184,"tts":8246329},
-{"pid":27443,"tid":27459,"ts":326462235758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8246329,"id":"0xaf88a5f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462235789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8246360,"id":"0xaf88a748f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462235789,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":153,"tts":8246360},
-{"pid":27443,"tid":27459,"ts":326462235789,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8246390,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462235819,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":1.676},"dur":122,"tdur":123,"tts":8246390},
-{"pid":27443,"tid":27459,"ts":326462235819,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8246421},
-{"pid":27443,"tid":27459,"ts":326462235880,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8246452},
-{"pid":27443,"tid":27459,"ts":326462235911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8246482,"id":"0xaf88a718f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462235911,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8246482,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462235972,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8246543,"id":"0xaf88a5f3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462235972,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":8246543},
-{"pid":27443,"tid":27459,"ts":326462240733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8246635,"id":"0xaf88a58cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462240733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":641,"tdur":641,"tts":8246635},
-{"pid":27443,"tid":27459,"ts":326462240764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8246665,"id":"0xaf88a58df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462240764,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8246696,"id":"0xaf88a719f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462240794,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"PostAnimationEventsToMainThreadOnImplThread"},"dur":580,"tdur":580,"tts":8246696},
-{"pid":27443,"tid":27459,"ts":326462240794,"ph":"X","cat":"cc","name":"ThreadProxy::SetAnimationEvents","args":{},"dur":580,"tdur":580,"tts":8246696},
-{"pid":27443,"tid":27459,"ts":326462240825,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":397,"tdur":397,"tts":8246726},
-{"pid":27443,"tid":27459,"ts":326462240886,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8246787,"id":"0xaf88ae4cfe940ba2"},
-{"pid":27443,"tid":27477,"ts":326462234263,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":972043,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234263,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":122,"tts":972043},
-{"pid":27443,"tid":27477,"ts":326462234415,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":972195,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234415,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":31,"tts":972195},
-{"pid":27443,"tid":27477,"ts":326462234507,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"WAITING_FOR_TARGET_AVAILABILITY->STARTING"},"tts":972287,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462234568,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":972348},
-{"pid":27443,"tid":27477,"ts":326462234568,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6562,"tdur":3479,"tts":972379},
-{"pid":27443,"tid":27477,"ts":326462234599,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1617,"tdur":1617,"tts":972379},
-{"pid":27443,"tid":27477,"ts":326462234629,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":397,"tdur":366,"tts":972440},
-{"pid":27443,"tid":27477,"ts":326462235026,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":61,"tdur":31,"tts":972836},
-{"pid":27443,"tid":27477,"ts":326462235087,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":972867},
-{"pid":27443,"tid":27477,"ts":326462235331,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":973111},
-{"pid":27443,"tid":27477,"ts":326462235362,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":366,"tdur":366,"tts":973142},
-{"pid":27443,"tid":27477,"ts":326462235362,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":335,"tdur":335,"tts":973142},
-{"pid":27443,"tid":27477,"ts":326462235362,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":973142},
-{"pid":27443,"tid":27477,"ts":326462235392,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":973172},
-{"pid":27443,"tid":27477,"ts":326462235423,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":973203},
-{"pid":27443,"tid":27477,"ts":326462235453,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":973233},
-{"pid":27443,"tid":27477,"ts":326462235484,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":122,"tdur":122,"tts":973264},
-{"pid":27443,"tid":27477,"ts":326462235575,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":973355},
-{"pid":27443,"tid":27477,"ts":326462235606,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":973386},
-{"pid":27443,"tid":27477,"ts":326462235636,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":973416},
-{"pid":27443,"tid":27477,"ts":326462235636,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":973416},
-{"pid":27443,"tid":27477,"ts":326462235667,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":973477},
-{"pid":27443,"tid":27477,"ts":326462235697,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":24}},"tts":973477,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462235819,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":973599},
-{"pid":27443,"tid":27477,"ts":326462236186,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":973966},
-{"pid":27443,"tid":27477,"ts":326462236216,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":2778,"tdur":641,"tts":973996},
-{"pid":27443,"tid":27477,"ts":326462236247,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":974027},
-{"pid":27443,"tid":27477,"ts":326462236247,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":2655,"tdur":519,"tts":974027},
-{"pid":27443,"tid":27477,"ts":326462236338,"ph":"X","cat":"gpu","name":"GLES2::GenMailboxCHROMIUM","args":{},"dur":92,"tdur":61,"tts":974149},
-{"pid":27443,"tid":27477,"ts":326462236521,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18350},"dur":336,"tdur":92,"tts":974301},
-{"pid":27443,"tid":27477,"ts":326462236552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":974332,"id":"0xaf88abfbf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462236857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":974423,"id":"0xaf88abf4f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462238963,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":974607,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462238994,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":824,"tdur":549,"tts":974637},
-{"pid":27443,"tid":27477,"ts":326462239055,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974698,"id":"0xaf88ae4cffd6cd2a"},
-{"pid":27443,"tid":27477,"ts":326462239055,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":974698,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239085,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974759,"id":"0xaf88ae4cffd1b562"},
-{"pid":27443,"tid":27477,"ts":326462239116,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":974759,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239146,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974790,"id":"0xaf88ae4cffd24b42"},
-{"pid":27443,"tid":27477,"ts":326462239177,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":974820,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239207,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974851,"id":"0xaf88ae4cffd5b36a"},
-{"pid":27443,"tid":27477,"ts":326462239207,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":974881,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239238,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974881,"id":"0xaf88ae4cfd9f32d2"},
-{"pid":27443,"tid":27477,"ts":326462239268,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":974912,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239299,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974942,"id":"0xaf88ae4cf80a60b2"},
-{"pid":27443,"tid":27477,"ts":326462239299,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":974942,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239329,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":974973,"id":"0xaf88ae4cf8dc848a"},
-{"pid":27443,"tid":27477,"ts":326462239390,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":975034,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239421,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":975064,"id":"0xaf88ae4cff3c6662"},
-{"pid":27443,"tid":27477,"ts":326462239421,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":31,"tts":975064},
-{"pid":27443,"tid":27477,"ts":326462239726,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":975095,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239757,"ph":"S","cat":"cc","name":"Animation","args":{"Name":"OPACITY-149"},"tts":975125,"id":"0xaf88ae4cff3ba45a"},
-{"pid":27443,"tid":27477,"ts":326462239787,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"STARTING->RUNNING"},"tts":975156,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462239818,"ph":"X","cat":"cc","name":"ThreadProxy::PostAnimationEventsToMainThreadOnImplThread","args":{},"dur":641,"tdur":184,"tts":975186},
-{"pid":27443,"tid":27477,"ts":326462239848,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":975217,"id":"0xaf88a719f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462239848,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":975248,"id":"0xaf88a58cf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462239848,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":975248},
-{"pid":27443,"tid":27477,"ts":326462240459,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":975370},
-{"pid":27443,"tid":27477,"ts":326462240489,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":549,"tdur":366,"tts":975400},
-{"pid":27443,"tid":27477,"ts":326462240855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":975675,"id":"0xaf88abf5f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462241069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":975797,"id":"0xaf88a71af3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462241069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":975827,"id":"0xaf88a58ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462240916,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8246818,"id":"0xaf88ae4cfe940ae2"},
-{"pid":27443,"tid":27459,"ts":326462240916,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":91,"tts":8246818},
-{"pid":27443,"tid":27459,"ts":326462241038,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8246940,"id":"0xaf88ae4cfe940522"},
-{"pid":27443,"tid":27459,"ts":326462241069,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8246970,"id":"0xaf88ae4cfe940462"},
-{"pid":27443,"tid":27459,"ts":326462241099,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8247001,"id":"0xaf88ae4cfe9404a2"},
-{"pid":27443,"tid":27459,"ts":326462241130,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8247031,"id":"0xaf88ae4cfe9407e2"},
-{"pid":27443,"tid":27459,"ts":326462241160,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8247062,"id":"0xaf88ae4cfe940622"},
-{"pid":27443,"tid":27459,"ts":326462241191,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8247092,"id":"0xaf88ae4cfe940162"},
-{"pid":27443,"tid":27459,"ts":326462241222,"ph":"n","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"data":{"state":"running"}},"tts":8247123,"id":"0xaf88ae4cfe9401a2"},
-{"pid":27443,"tid":27459,"ts":326462241222,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":30,"tdur":0,"tts":8247153},
-{"pid":27443,"tid":27459,"ts":326462241252,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":0,"tdur":0,"tts":8247153},
-{"pid":27443,"tid":27459,"ts":326462241283,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":0,"tdur":0,"tts":8247184},
-{"pid":27443,"tid":27459,"ts":326462241283,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":0,"tdur":0,"tts":8247184},
-{"pid":27443,"tid":27459,"ts":326462241313,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":0,"tdur":0,"tts":8247215},
-{"pid":27443,"tid":27459,"ts":326462241313,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":31,"tdur":0,"tts":8247215},
-{"pid":27443,"tid":27459,"ts":326462241344,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":0,"tdur":0,"tts":8247245},
-{"pid":27443,"tid":27459,"ts":326462241344,"ph":"X","cat":"blink","name":"CompositorPendingAnimations::notifyCompositorAnimationStarted","args":{},"dur":30,"tdur":31,"tts":8247245},
-{"pid":27443,"tid":27459,"ts":326462241435,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8247337,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462241435,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8247337,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462241466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8247367,"id":"0xaf88a58df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462241496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8247398},
-{"pid":27443,"tid":27459,"ts":326462241496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8247398,"id":"0xaf88a58ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462241527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8247428,"id":"0xaf88a718f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462241527,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":31,"tts":8247428},
-{"pid":27443,"tid":27459,"ts":326462241527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8247428,"id":"0xaf88a71bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462241588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8247489,"id":"0xaf88a58ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462241588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8247489},
-{"pid":27443,"tid":27459,"ts":326462241618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8247520,"id":"0xaf88a71af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462241618,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":30,"tts":8247520},
-{"pid":27443,"tid":27459,"ts":326462241618,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":31,"tdur":30,"tts":8247520},
-{"pid":27443,"tid":27459,"ts":326462241679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8247581,"id":"0xaf88a58ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462241679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8247581},
-{"pid":27443,"tid":27459,"ts":326462251904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8247703,"id":"0xaf88a588f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462251934,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":12727,"tdur":3327,"tts":8247703},
-{"pid":27443,"tid":27459,"ts":326462251965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8247733,"id":"0xaf88a589f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462251965,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8247733,"id":"0xaf88a714f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462251995,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":12666,"tdur":3266,"tts":8247764},
-{"pid":27443,"tid":27459,"ts":326462251995,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":180},"tts":8247764},
-{"pid":27443,"tid":27459,"ts":326462251995,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":31,"tdur":0,"tts":8247794},
-{"pid":27443,"tid":27459,"ts":326462252056,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":153,"tdur":153,"tts":8247825},
-{"pid":27443,"tid":27459,"ts":326462252087,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":122,"tdur":123,"tts":8247855},
-{"pid":27443,"tid":27459,"ts":326462252209,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":122,"tdur":122,"tts":8247978},
-{"pid":27443,"tid":27459,"ts":326462252331,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":8248100},
-{"pid":27443,"tid":27459,"ts":326462252392,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":11628,"tdur":2411,"tts":8248161},
-{"pid":27443,"tid":27459,"ts":326462252423,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8248222},
-{"pid":27443,"tid":27459,"ts":326462252453,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":30,"tts":8248222},
-{"pid":27443,"tid":27459,"ts":326462252484,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8248252},
-{"pid":27443,"tid":27459,"ts":326462262922,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":9,"counters":true},"tts":8249870},
-{"pid":27443,"tid":27459,"ts":326462262952,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":9},"tts":8249900},
-{"pid":27443,"tid":27459,"ts":326462262952,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":8249900},
-{"pid":27443,"tid":27459,"ts":326462263044,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":976,"tdur":611,"tts":8249961},
-{"pid":27443,"tid":27459,"ts":326462263074,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":885,"tdur":550,"tts":8249961},
-{"pid":27443,"tid":27459,"ts":326462263074,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":31,"tts":8249961},
-{"pid":27443,"tid":27459,"ts":326462263440,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":397,"tdur":397,"tts":8249992},
-{"pid":27443,"tid":27459,"ts":326462263898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8250450,"id":"0xaf88a717f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462263929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8250480,"id":"0xaf88a58bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462263959,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":0,"tts":8250511},
-{"pid":27443,"tid":27459,"ts":326462263990,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":31,"tts":8250541},
-{"pid":27443,"tid":27459,"ts":326462264051,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":180},"dur":244,"tdur":244,"tts":8250602},
-{"pid":27443,"tid":27459,"ts":326462264051,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":244,"tdur":244,"tts":8250602},
-{"pid":27443,"tid":27459,"ts":326462264295,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":8250846,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462264325,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8250877,"id":"0xaf88a23df182217a"},
-{"pid":27443,"tid":27459,"ts":326462264631,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8250999},
-{"pid":27443,"tid":27459,"ts":326462264692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251060,"id":"0xaf88a589f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462241130,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":732,"tdur":732,"tts":975858},
-{"pid":27443,"tid":27477,"ts":326462241160,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":702,"tdur":702,"tts":975888},
-{"pid":27443,"tid":27477,"ts":326462241160,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":214,"tts":975888},
-{"pid":27443,"tid":27477,"ts":326462241374,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":976102},
-{"pid":27443,"tid":27477,"ts":326462241435,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":976163},
-{"pid":27443,"tid":27477,"ts":326462241466,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":12},"dur":366,"tdur":366,"tts":976194},
-{"pid":27443,"tid":27477,"ts":326462241557,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":976285},
-{"pid":27443,"tid":27477,"ts":326462241649,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":30,"tts":976377},
-{"pid":27443,"tid":27477,"ts":326462241679,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":15,"num_edges":12},"dur":31,"tdur":31,"tts":976407},
-{"pid":27443,"tid":27477,"ts":326462241740,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":3981312,"bytes_used_for_staging_resources":10616832,"pending_copy_count":12,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":976468,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462241832,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":976560,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462241862,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":976590,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462241893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462237},"tts":976621,"id":"0xaf88a21ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462241923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":976651},
-{"pid":27443,"tid":27477,"ts":326462241923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":976682,"id":"0xaf88a214f182217a"},
-{"pid":27443,"tid":27477,"ts":326462241954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":30,"tts":976682},
-{"pid":27443,"tid":27477,"ts":326462241954,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":30,"tts":976682},
-{"pid":27443,"tid":27477,"ts":326462241985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":976712,"id":"0xaf88a215f182217a"},
-{"pid":27443,"tid":27477,"ts":326462241985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":91,"tdur":92,"tts":976712},
-{"pid":27443,"tid":27477,"ts":326462242015,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":976743},
-{"pid":27443,"tid":27477,"ts":326462242046,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":0,"tts":976804},
-{"pid":27443,"tid":27477,"ts":326462242107,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":976835,"id":"0xaf88a216f182217a"},
-{"pid":27443,"tid":27477,"ts":326462242107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":2258,"tdur":396,"tts":976835},
-{"pid":27443,"tid":27477,"ts":326462242137,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462237324.0,"frame_time_us":326462237511.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":2198,"tdur":336,"tts":976865},
-{"pid":27443,"tid":27477,"ts":326462242168,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462237324.0,"frame_time_us":326462237511.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":2167,"tdur":305,"tts":976896},
-{"pid":27443,"tid":27477,"ts":326462242198,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":2106,"tdur":244,"tts":976926},
-{"pid":27443,"tid":27477,"ts":326462242229,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":2045,"tdur":183,"tts":976957},
-{"pid":27443,"tid":27477,"ts":326462244274,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":977140},
-{"pid":27443,"tid":27477,"ts":326462244304,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462254177},"dur":31,"tdur":31,"tts":977170},
-{"pid":27443,"tid":27477,"ts":326462244335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":977201,"id":"0xaf88a217f182217a"},
-{"pid":27443,"tid":27477,"ts":326462246563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":977292,"id":"0xaf88a210f182217a"},
-{"pid":27443,"tid":27477,"ts":326462246593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":977323},
-{"pid":27443,"tid":27477,"ts":326462246593,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":977323},
-{"pid":27443,"tid":27477,"ts":326462246624,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":3981312,"bytes_used_for_staging_resources":10616832,"pending_copy_count":12,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":977353,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462246624,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":977353},
-{"pid":27443,"tid":27477,"ts":326462246624,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":977384,"id":"0xaf88a22cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462246654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":977414,"id":"0xaf88a211f182217a"},
-{"pid":27443,"tid":27477,"ts":326462246685,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":274,"tdur":275,"tts":977414},
-{"pid":27443,"tid":27477,"ts":326462246685,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":5},"dur":183,"tdur":184,"tts":977414},
-{"pid":27443,"tid":27477,"ts":326462246715,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":977445},
-{"pid":27443,"tid":27477,"ts":326462246746,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":977475},
-{"pid":27443,"tid":27477,"ts":326462246776,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":977506},
-{"pid":27443,"tid":27477,"ts":326462246837,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":977567},
-{"pid":27443,"tid":27477,"ts":326462246837,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":977567},
-{"pid":27443,"tid":27477,"ts":326462246868,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18503},"dur":61,"tdur":61,"tts":977598},
-{"pid":27443,"tid":27477,"ts":326462246898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":977628,"id":"0xaf88abf6f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462246959,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":977689,"id":"0xaf88a212f182217a"},
-{"pid":27443,"tid":27477,"ts":326462246959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":245,"tdur":244,"tts":977689},
-{"pid":27443,"tid":27477,"ts":326462246990,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":214,"tdur":213,"tts":977720},
-{"pid":27443,"tid":27477,"ts":326462247020,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":180},"tts":977750},
-{"pid":27443,"tid":27477,"ts":326462247081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":977811,"id":"0xaf88a714f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462247112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":977842,"id":"0xaf88a588f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462247142,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":977872},
-{"pid":27443,"tid":27477,"ts":326462247173,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_REGULAR","deadline":326462230824},"dur":0,"tdur":0,"tts":977903},
-{"pid":27443,"tid":27477,"ts":326462247173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":977903,"id":"0xaf88a22df182217a"},
-{"pid":27443,"tid":27477,"ts":326462247204,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":977933,"id":"0xaf88a715f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462247234,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":977964,"id":"0xaf88a213f182217a"},
-{"pid":27443,"tid":27477,"ts":326462247234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":977964},
-{"pid":27443,"tid":27477,"ts":326462247234,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":977964},
-{"pid":27443,"tid":27477,"ts":326462247265,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":3981312,"bytes_used_for_staging_resources":10616832,"pending_copy_count":12,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":977994,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462247265,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":977994},
-{"pid":27443,"tid":27477,"ts":326462247265,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":977994,"id":"0xaf88a22ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462247295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":978025,"id":"0xaf88a22cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462247326,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":335,"tdur":336,"tts":978055},
-{"pid":27443,"tid":27477,"ts":326462247326,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":335,"tdur":336,"tts":978055},
-{"pid":27443,"tid":27477,"ts":326462247326,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":213,"tdur":183,"tts":978086},
-{"pid":27443,"tid":27477,"ts":326462247356,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":978086},
-{"pid":27443,"tid":27477,"ts":326462247356,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":978086},
-{"pid":27443,"tid":27477,"ts":326462247387,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":978116},
-{"pid":27443,"tid":27477,"ts":326462247417,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":978147},
-{"pid":27443,"tid":27477,"ts":326462247417,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":978147},
-{"pid":27443,"tid":27477,"ts":326462247448,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":978177},
-{"pid":27443,"tid":27477,"ts":326462247448,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":62,"tts":978177},
-{"pid":27443,"tid":27477,"ts":326462247478,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":978208},
-{"pid":27443,"tid":27477,"ts":326462247509,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":978239},
-{"pid":27443,"tid":27477,"ts":326462247539,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":92,"tdur":92,"tts":978269},
-{"pid":27443,"tid":27477,"ts":326462247539,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":978300},
-{"pid":27443,"tid":27477,"ts":326462247631,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":978361},
-{"pid":27443,"tid":27477,"ts":326462247631,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":978361},
-{"pid":27443,"tid":27477,"ts":326462247661,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":978391,"id":"0xaf88a22df182217a"},
-{"pid":27443,"tid":27477,"ts":326462247692,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":6897,"tdur":2472,"tts":978422},
-{"pid":27443,"tid":27477,"ts":326462247692,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":6867,"tdur":2472,"tts":978422},
-{"pid":27443,"tid":27477,"ts":326462247692,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":6318,"tdur":2014,"tts":978422},
-{"pid":27443,"tid":27477,"ts":326462247722,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1160,"tdur":1160,"tts":978452},
-{"pid":27443,"tid":27477,"ts":326462247753,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":305,"tdur":305,"tts":978483},
-{"pid":27443,"tid":27477,"ts":326462248058,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":31,"tdur":30,"tts":978788},
-{"pid":27443,"tid":27477,"ts":326462248119,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":978849},
-{"pid":27443,"tid":27477,"ts":326462248272,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":979002},
-{"pid":27443,"tid":27477,"ts":326462248302,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":979032},
-{"pid":27443,"tid":27477,"ts":326462248302,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":979032},
-{"pid":27443,"tid":27477,"ts":326462248302,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":92,"tdur":92,"tts":979032},
-{"pid":27443,"tid":27477,"ts":326462248333,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":979063},
-{"pid":27443,"tid":27477,"ts":326462248333,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":979063},
-{"pid":27443,"tid":27477,"ts":326462248333,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":0,"tts":979093},
-{"pid":27443,"tid":27477,"ts":326462248394,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":979124},
-{"pid":27443,"tid":27477,"ts":326462248394,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":7}},"tts":979154,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462248485,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":979215},
-{"pid":27443,"tid":27477,"ts":326462248852,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":979581},
-{"pid":27443,"tid":27477,"ts":326462248882,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":4426,"tdur":275,"tts":979612},
-{"pid":27443,"tid":27477,"ts":326462248882,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":979612},
-{"pid":27443,"tid":27477,"ts":326462248913,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":4334,"tdur":184,"tts":979642},
-{"pid":27443,"tid":27477,"ts":326462248974,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18561},"dur":61,"tdur":31,"tts":979703},
-{"pid":27443,"tid":27477,"ts":326462249004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":979734,"id":"0xaf88abf7f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462249035,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":979765,"id":"0xaf88abf0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462253277,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":979887,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462253308,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":91,"tdur":91,"tts":979887},
-{"pid":27443,"tid":27477,"ts":326462253399,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":979978},
-{"pid":27443,"tid":27477,"ts":326462253430,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":549,"tdur":396,"tts":980009},
-{"pid":27443,"tid":27477,"ts":326462253735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":980344,"id":"0xaf88abf1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462254010,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":549,"tdur":458,"tts":980436},
-{"pid":27443,"tid":27477,"ts":326462254010,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":549,"tdur":458,"tts":980436},
-{"pid":27443,"tid":27477,"ts":326462254040,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":980466},
-{"pid":27443,"tid":27477,"ts":326462254193,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":980619},
-{"pid":27443,"tid":27477,"ts":326462254223,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":980650},
-{"pid":27443,"tid":27477,"ts":326462254223,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":5},"dur":275,"tdur":183,"tts":980650},
-{"pid":27443,"tid":27477,"ts":326462254254,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":244,"tdur":153,"tts":980680},
-{"pid":27443,"tid":27477,"ts":326462254315,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":980741},
-{"pid":27443,"tid":27477,"ts":326462254315,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":8,"num_edges":5},"dur":152,"tdur":61,"tts":980741},
-{"pid":27443,"tid":27477,"ts":326462254467,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":980802,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462254528,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":980863,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462254528,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":980863,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462254589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462254},"tts":980924,"id":"0xaf88a217f182217a"},
-{"pid":27443,"tid":27477,"ts":326462254589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":980924},
-{"pid":27443,"tid":27477,"ts":326462254620,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":980955,"id":"0xaf88a22ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462254620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":397,"tdur":397,"tts":980955},
-{"pid":27443,"tid":27477,"ts":326462254620,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":397,"tdur":397,"tts":980955},
-{"pid":27443,"tid":27477,"ts":326462254650,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":275,"tdur":275,"tts":980985},
-{"pid":27443,"tid":27477,"ts":326462254650,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":980985},
-{"pid":27443,"tid":27469,"ts":326462248150,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":523760},
-{"pid":27443,"tid":27469,"ts":326462248180,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":139,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799f4190"},"tileResolution":"HIGH_RESOLUTION"}},"tts":523760},
-{"pid":27443,"tid":27469,"ts":326462248211,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":523790,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462248974,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":524553},
-{"pid":27443,"tid":27469,"ts":326462249004,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":916,"tdur":915,"tts":524584},
-{"pid":27443,"tid":27469,"ts":326462249004,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":916,"tdur":915,"tts":524584},
-{"pid":27443,"tid":27469,"ts":326462249035,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4300"},"tileResolution":"HIGH_RESOLUTION"}},"tts":524614},
-{"pid":27443,"tid":27469,"ts":326462249035,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":524614},
-{"pid":27443,"tid":27469,"ts":326462249096,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":524675},
-{"pid":27443,"tid":27469,"ts":326462249126,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":142,"sourceFrameNumber":178,"tileId":{"id_ref":"0x797c4300"},"tileResolution":"HIGH_RESOLUTION"}},"tts":524706},
-{"pid":27443,"tid":27469,"ts":326462249157,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":524736,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462249889,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":525469},
-{"pid":27443,"tid":27469,"ts":326462249920,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1129,"tdur":794,"tts":525499},
-{"pid":27443,"tid":27469,"ts":326462249950,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1099,"tdur":763,"tts":525530},
-{"pid":27443,"tid":27469,"ts":326462249950,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bdf2e88"},"tileResolution":"HIGH_RESOLUTION"}},"tts":525530},
-{"pid":27443,"tid":27469,"ts":326462249981,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":427,"tdur":92,"tts":525560},
-{"pid":27443,"tid":27469,"ts":326462250408,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":525652},
-{"pid":27443,"tid":27469,"ts":326462250408,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x7bdf2e88"},"tileResolution":"HIGH_RESOLUTION"}},"tts":525682},
-{"pid":27443,"tid":27469,"ts":326462250439,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":525682,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462251019,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":526262},
-{"pid":27443,"tid":27469,"ts":326462251049,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":794,"tdur":793,"tts":526293},
-{"pid":27443,"tid":27469,"ts":326462251049,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":793,"tts":526293},
-{"pid":27443,"tid":27469,"ts":326462251080,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799fde48"},"tileResolution":"HIGH_RESOLUTION"}},"tts":526323},
-{"pid":27443,"tid":27469,"ts":326462251080,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":526323},
-{"pid":27443,"tid":27469,"ts":326462251110,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":526354},
-{"pid":27443,"tid":27469,"ts":326462251141,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799fde48"},"tileResolution":"HIGH_RESOLUTION"}},"tts":526384},
-{"pid":27443,"tid":27469,"ts":326462251171,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":526415,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462251812,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":527056},
-{"pid":27443,"tid":27469,"ts":326462255047,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":489,"tdur":61,"tts":527117},
-{"pid":27443,"tid":27469,"ts":326462255078,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":458,"tdur":31,"tts":527147},
-{"pid":27443,"tid":27469,"ts":326462255078,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527147,"id":"0xaf88a22ff182217a"},
-{"pid":27443,"tid":27469,"ts":326462255536,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":335,"tdur":91,"tts":527178},
-{"pid":27443,"tid":27469,"ts":326462255566,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":275,"tdur":61,"tts":527208},
-{"pid":27443,"tid":27469,"ts":326462255566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527208,"id":"0xaf88a229f182217a"},
-{"pid":27443,"tid":27471,"ts":326462246227,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":143,"sourceFrameNumber":178,"tileId":{"id_ref":"0x799fdef8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":506912},
-{"pid":27443,"tid":27471,"ts":326462255902,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":506943,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462256665,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":507706},
-{"pid":27443,"tid":27471,"ts":326462256695,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":275,"tdur":92,"tts":507736},
-{"pid":27443,"tid":27471,"ts":326462256726,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":244,"tdur":61,"tts":507767},
-{"pid":27443,"tid":27471,"ts":326462256756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":507797,"id":"0xaf88a22bf182217a"},
-{"pid":27443,"tid":27469,"ts":326462261304,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":527300},
-{"pid":27443,"tid":27469,"ts":326462261334,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":527331},
-{"pid":27443,"tid":27469,"ts":326462261365,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527361,"id":"0xaf88a220f182217a"},
-{"pid":27443,"tid":27469,"ts":326462261395,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":527392},
-{"pid":27443,"tid":27469,"ts":326462261395,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":527392},
-{"pid":27443,"tid":27469,"ts":326462261395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527392,"id":"0xaf88a221f182217a"},
-{"pid":27443,"tid":27469,"ts":326462261426,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":527422},
-{"pid":27443,"tid":27469,"ts":326462261426,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":527422},
-{"pid":27443,"tid":27469,"ts":326462261426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527422,"id":"0xaf88a222f182217a"},
-{"pid":27443,"tid":27469,"ts":326462276503,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":61,"tts":527483},
-{"pid":27443,"tid":27469,"ts":326462276534,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":527483},
-{"pid":27443,"tid":27469,"ts":326462276564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527514,"id":"0xaf88a23af182217a"},
-{"pid":27443,"tid":27469,"ts":326462276595,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":31,"tts":527544},
-{"pid":27443,"tid":27469,"ts":326462276595,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":527544},
-{"pid":27443,"tid":27469,"ts":326462276595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527544,"id":"0xaf88a23bf182217a"},
-{"pid":27443,"tid":27469,"ts":326462276625,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":527575},
-{"pid":27443,"tid":27469,"ts":326462276625,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":30,"tts":527575},
-{"pid":27443,"tid":27469,"ts":326462276625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527605,"id":"0xaf88a234f182217a"},
-{"pid":27443,"tid":27469,"ts":326462297226,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":184,"tdur":183,"tts":527636},
-{"pid":27443,"tid":27469,"ts":326462297287,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":123,"tdur":92,"tts":527727},
-{"pid":27443,"tid":27469,"ts":326462297348,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527758,"id":"0xaf88a233f182217a"},
-{"pid":27443,"tid":27471,"ts":326462297379,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":92,"tts":507889},
-{"pid":27443,"tid":27471,"ts":326462297410,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":507920},
-{"pid":27443,"tid":27471,"ts":326462297410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":507920,"id":"0xaf88a2ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326462254650,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":62,"tdur":61,"tts":980985},
-{"pid":27443,"tid":27477,"ts":326462254681,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":981016},
-{"pid":27443,"tid":27477,"ts":326462254712,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":981046},
-{"pid":27443,"tid":27477,"ts":326462254742,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":981077},
-{"pid":27443,"tid":27477,"ts":326462254742,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":981077},
-{"pid":27443,"tid":27477,"ts":326462254773,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":981107},
-{"pid":27443,"tid":27477,"ts":326462254803,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":981138},
-{"pid":27443,"tid":27477,"ts":326462254803,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":981138},
-{"pid":27443,"tid":27477,"ts":326462254834,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":981168},
-{"pid":27443,"tid":27477,"ts":326462254864,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":31,"tts":981199},
-{"pid":27443,"tid":27477,"ts":326462254864,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":981199},
-{"pid":27443,"tid":27477,"ts":326462254895,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":30,"tts":981230},
-{"pid":27443,"tid":27477,"ts":326462254925,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":981260},
-{"pid":27443,"tid":27477,"ts":326462254925,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":981260},
-{"pid":27443,"tid":27477,"ts":326462254986,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":981321},
-{"pid":27443,"tid":27477,"ts":326462254986,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":981352},
-{"pid":27443,"tid":27477,"ts":326462255200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":981504,"id":"0xaf88a22ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462255200,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":981504},
-{"pid":27443,"tid":27477,"ts":326462255230,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":31,"tdur":30,"tts":981535},
-{"pid":27443,"tid":27477,"ts":326462255230,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":981535,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462255230,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":981535},
-{"pid":27443,"tid":27477,"ts":326462255261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":981565,"id":"0xaf88a228f182217a"},
-{"pid":27443,"tid":27477,"ts":326462255291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":981596,"id":"0xaf88a228f182217a"},
-{"pid":27443,"tid":27477,"ts":326462255291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":122,"tts":981596},
-{"pid":27443,"tid":27477,"ts":326462255291,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":981596},
-{"pid":27443,"tid":27477,"ts":326462255291,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":981596},
-{"pid":27443,"tid":27477,"ts":326462255322,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":981626},
-{"pid":27443,"tid":27477,"ts":326462255322,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":981626},
-{"pid":27443,"tid":27477,"ts":326462255322,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":30,"tts":981657},
-{"pid":27443,"tid":27477,"ts":326462255383,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":981687},
-{"pid":27443,"tid":27477,"ts":326462255413,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":981718},
-{"pid":27443,"tid":27477,"ts":326462255688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":981809,"id":"0xaf88a229f182217a"},
-{"pid":27443,"tid":27477,"ts":326462255719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":981840},
-{"pid":27443,"tid":27477,"ts":326462255719,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":30,"tts":981840},
-{"pid":27443,"tid":27477,"ts":326462255719,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":981840,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462255749,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":981870},
-{"pid":27443,"tid":27477,"ts":326462255749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":981870,"id":"0xaf88a22af182217a"},
-{"pid":27443,"tid":27477,"ts":326462255780,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":981901,"id":"0xaf88a22af182217a"},
-{"pid":27443,"tid":27477,"ts":326462255780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":30,"tdur":30,"tts":981901},
-{"pid":27443,"tid":27477,"ts":326462255780,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":30,"tdur":30,"tts":981901},
-{"pid":27443,"tid":27477,"ts":326462255810,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":981931},
-{"pid":27443,"tid":27477,"ts":326462255810,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":981931},
-{"pid":27443,"tid":27477,"ts":326462256878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":982084,"id":"0xaf88a22bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462256878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":62,"tdur":61,"tts":982084},
-{"pid":27443,"tid":27477,"ts":326462256909,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":982115},
-{"pid":27443,"tid":27477,"ts":326462256909,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":982115,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462256909,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":982115},
-{"pid":27443,"tid":27477,"ts":326462257428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":982176,"id":"0xaf88a224f182217a"},
-{"pid":27443,"tid":27477,"ts":326462257428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":274,"tts":982176},
-{"pid":27443,"tid":27477,"ts":326462257458,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462254006.0,"frame_time_us":326462254193.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":245,"tdur":244,"tts":982206},
-{"pid":27443,"tid":27477,"ts":326462257489,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462254006.0,"frame_time_us":326462254193.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":214,"tdur":213,"tts":982237},
-{"pid":27443,"tid":27477,"ts":326462257519,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":153,"tdur":153,"tts":982267},
-{"pid":27443,"tid":27477,"ts":326462257519,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":122,"tdur":122,"tts":982267},
-{"pid":27443,"tid":27477,"ts":326462257641,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":31,"tts":982389},
-{"pid":27443,"tid":27477,"ts":326462257672,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462270859},"dur":31,"tdur":30,"tts":982420},
-{"pid":27443,"tid":27477,"ts":326462257703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":982450,"id":"0xaf88a225f182217a"},
-{"pid":27443,"tid":27477,"ts":326462258282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":982511,"id":"0xaf88a226f182217a"},
-{"pid":27443,"tid":27477,"ts":326462258313,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":982542},
-{"pid":27443,"tid":27477,"ts":326462258313,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":91,"tdur":91,"tts":982542},
-{"pid":27443,"tid":27477,"ts":326462258343,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_REGULAR","deadline":326462247506},"dur":31,"tdur":31,"tts":982572},
-{"pid":27443,"tid":27477,"ts":326462258343,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":982572,"id":"0xaf88a227f182217a"},
-{"pid":27443,"tid":27477,"ts":326462258374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":982603,"id":"0xaf88a716f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462258374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":982603,"id":"0xaf88a58af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462258404,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":982633,"id":"0xaf88a227f182217a"},
-{"pid":27443,"tid":27477,"ts":326462258404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2869,"tdur":2045,"tts":982664},
-{"pid":27443,"tid":27477,"ts":326462258435,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2838,"tdur":2015,"tts":982694},
-{"pid":27443,"tid":27477,"ts":326462258466,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2472,"tdur":1679,"tts":982694},
-{"pid":27443,"tid":27477,"ts":326462258466,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1068,"tdur":1069,"tts":982694},
-{"pid":27443,"tid":27477,"ts":326462258527,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":305,"tdur":305,"tts":982756},
-{"pid":27443,"tid":27477,"ts":326462258832,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":30,"tdur":30,"tts":983061},
-{"pid":27443,"tid":27477,"ts":326462258893,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":983122},
-{"pid":27443,"tid":27477,"ts":326462259076,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":983305},
-{"pid":27443,"tid":27477,"ts":326462259076,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":983305},
-{"pid":27443,"tid":27477,"ts":326462259076,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":983305},
-{"pid":27443,"tid":27477,"ts":326462259106,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":92,"tdur":92,"tts":983335},
-{"pid":27443,"tid":27477,"ts":326462259106,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":983335},
-{"pid":27443,"tid":27477,"ts":326462259137,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":983366},
-{"pid":27443,"tid":27477,"ts":326462259137,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":983366},{"pid":27443,"tid":27477,"ts":326462259168,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":983396},
-{"pid":27443,"tid":27477,"ts":326462259198,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":5}},"tts":983427,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462259259,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":983519},
-{"pid":27443,"tid":27477,"ts":326462259503,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":983732},
-{"pid":27443,"tid":27477,"ts":326462259534,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1068,"tdur":274,"tts":983763},
-{"pid":27443,"tid":27477,"ts":326462259534,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":983763},
-{"pid":27443,"tid":27477,"ts":326462259564,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":1007,"tdur":183,"tts":983793},
-{"pid":27443,"tid":27477,"ts":326462259625,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18713},"dur":92,"tdur":92,"tts":983854},
-{"pid":27443,"tid":27477,"ts":326462259656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983885,"id":"0xaf88abf2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462259717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":983946,"id":"0xaf88abf3f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462260602,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":984037,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462260602,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":984037},
-{"pid":27443,"tid":27477,"ts":326462260663,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":31,"tts":984098},
-{"pid":27443,"tid":27477,"ts":326462260694,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":213,"tdur":214,"tts":984129},
-{"pid":27443,"tid":27477,"ts":326462260846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":984282,"id":"0xaf88ab8cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462260938,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":335,"tdur":336,"tts":984373},
-{"pid":27443,"tid":27477,"ts":326462260938,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":305,"tts":984373},
-{"pid":27443,"tid":27477,"ts":326462260938,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":92,"tts":984373},
-{"pid":27443,"tid":27477,"ts":326462261060,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":984495},
-{"pid":27443,"tid":27477,"ts":326462261060,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":984495},
-{"pid":27443,"tid":27477,"ts":326462261060,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":152,"tdur":153,"tts":984495},
-{"pid":27443,"tid":27477,"ts":326462261090,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":984526},
-{"pid":27443,"tid":27477,"ts":326462261090,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":984526,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462261121,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":984556},
-{"pid":27443,"tid":27477,"ts":326462261151,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":984587},
-{"pid":27443,"tid":27477,"ts":326462261182,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":984648,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462261243,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":984678,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462261243,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":984678,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462261853,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":984770,"id":"0xaf88a220f182217a"},
-{"pid":27443,"tid":27477,"ts":326462261853,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":91,"tts":984770},
-{"pid":27443,"tid":27477,"ts":326462261884,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":31,"tts":984800},
-{"pid":27443,"tid":27477,"ts":326462261884,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":984800,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462261914,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":0,"tdur":0,"tts":984831},
-{"pid":27443,"tid":27477,"ts":326462261914,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":984831,"id":"0xaf88a223f182217a"},
-{"pid":27443,"tid":27477,"ts":326462261945,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":984861,"id":"0xaf88a221f182217a"},
-{"pid":27443,"tid":27477,"ts":326462261945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":984861},
-{"pid":27443,"tid":27477,"ts":326462261945,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":984861},
-{"pid":27443,"tid":27477,"ts":326462261975,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":984892,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462261975,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":984892},
-{"pid":27443,"tid":27477,"ts":326462261975,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":984892,"id":"0xaf88a23cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462262006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":984922,"id":"0xaf88a222f182217a"},
-{"pid":27443,"tid":27477,"ts":326462262006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":62,"tts":984922},
-{"pid":27443,"tid":27477,"ts":326462262036,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":0,"tdur":0,"tts":984953},
-{"pid":27443,"tid":27477,"ts":326462262036,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":984953,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462262036,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":984953},
-{"pid":27443,"tid":27477,"ts":326462262067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":984984,"id":"0xaf88a223f182217a"},
-{"pid":27443,"tid":27477,"ts":326462262067,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":984984},
-{"pid":27443,"tid":27477,"ts":326462262067,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":152,"tts":984984},
-{"pid":27443,"tid":27477,"ts":326462262097,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":985014},
-{"pid":27443,"tid":27477,"ts":326462262097,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":985014},
-{"pid":27443,"tid":27466,"ts":326462260480,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434732,"id":"0xc4c23d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462261487,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":434823,"id":"0xaf88ab8cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462261487,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":434823},
-{"pid":27443,"tid":27466,"ts":326462261487,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434854,"id":"0xccc63502"},
-{"pid":27443,"tid":27466,"ts":326462271803,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":434945},
-{"pid":27443,"tid":27466,"ts":326462271833,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":434976},
-{"pid":27443,"tid":27466,"ts":326462271833,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":434976,"id":"0xba46dc02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462271894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":435037,"id":"0xaf88a23ef182217a"},
-{"pid":27443,"tid":27466,"ts":326462272810,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":435128},
-{"pid":27443,"tid":27466,"ts":326462272841,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":435159},
-{"pid":27443,"tid":27466,"ts":326462272841,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435159,"id":"0xba46dd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462272871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":435189,"id":"0xaf88a238f182217a"},
-{"pid":27443,"tid":27466,"ts":326462274794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":435281,"id":"0xaf88ab8df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462274824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":435312},
-{"pid":27443,"tid":27466,"ts":326462274824,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435312,"id":"0xccc63602"},
-{"pid":27443,"tid":27466,"ts":326462275099,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":435403,"id":"0xaf88ab8ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462275130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":435434},
-{"pid":27443,"tid":27466,"ts":326462275130,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435434,"id":"0xccc63706"},
-{"pid":27443,"tid":27466,"ts":326462275343,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":435495},
-{"pid":27443,"tid":27466,"ts":326462275374,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":435525},
-{"pid":27443,"tid":27466,"ts":326462275374,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435525,"id":"0xc4c2410a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462275771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":435678,"id":"0xaf88ab8ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462275771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":435678},
-{"pid":27443,"tid":27466,"ts":326462275771,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435678,"id":"0xccc63802"},
-{"pid":27443,"tid":27466,"ts":326462293320,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":435800},
-{"pid":27443,"tid":27466,"ts":326462293350,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":435830},
-{"pid":27443,"tid":27466,"ts":326462293350,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435830,"id":"0xba46df02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462293411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":435891,"id":"0xaf88a237f182217a"},
-{"pid":27443,"tid":27466,"ts":326462293472,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":92,"tdur":92,"tts":435952},
-{"pid":27443,"tid":27466,"ts":326462293503,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":30,"tdur":31,"tts":435983},
-{"pid":27443,"tid":27466,"ts":326462293503,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":435983,"id":"0xba46e002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462293533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":436014,"id":"0xaf88a230f182217a"},
-{"pid":27443,"tid":27466,"ts":326462295822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436136,"id":"0xaf88ab88f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462295822,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":436136},
-{"pid":27443,"tid":27466,"ts":326462295853,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":436166,"id":"0xccc63902"},
-{"pid":27443,"tid":27466,"ts":326462296067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436319,"id":"0xaf88ab89f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462296067,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":436319},
-{"pid":27443,"tid":27466,"ts":326462296067,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":436319,"id":"0xccc63a06"},
-{"pid":27443,"tid":27466,"ts":326462296250,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":436441},
-{"pid":27443,"tid":27466,"ts":326462296250,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":436441},
-{"pid":27443,"tid":27466,"ts":326462296280,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":436471,"id":"0xc4c2450a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462296799,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":436624,"id":"0xaf88ab8af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462296830,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":274,"tdur":214,"tts":436654},
-{"pid":27443,"tid":27466,"ts":326462296860,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":436685,"id":"0xccc63b02"},
-{"pid":27443,"tid":27466,"ts":326462305314,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":436990},
-{"pid":27443,"tid":27466,"ts":326462305345,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":437021},
-{"pid":27443,"tid":27466,"ts":326462305345,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437021,"id":"0xba46e202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462305406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":437082,"id":"0xaf88a2c8f182217a"},
-{"pid":27443,"tid":27466,"ts":326462306383,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":437204},
-{"pid":27443,"tid":27466,"ts":326462306413,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":437234},
-{"pid":27443,"tid":27466,"ts":326462306444,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437265,"id":"0xba46e302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462306474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":437295,"id":"0xaf88a2caf182217a"},
-{"pid":27443,"tid":27466,"ts":326462308244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":437417,"id":"0xaf88ab8bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462308275,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":437448},
-{"pid":27443,"tid":27466,"ts":326462308275,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437448,"id":"0xccc63c02"},
-{"pid":27443,"tid":27466,"ts":326462308305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":437478,"id":"0xaf88ab84f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462308336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":437509},
-{"pid":27443,"tid":27466,"ts":326462308336,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437509,"id":"0xccc63d06"},
-{"pid":27443,"tid":27466,"ts":326462308672,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":92,"tts":437570},
-{"pid":27443,"tid":27466,"ts":326462308702,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":30,"tts":437601},
-{"pid":27443,"tid":27466,"ts":326462308702,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437601,"id":"0xc4c2480a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462309190,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":437753,"id":"0xaf88ab85f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462309221,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":437784},
-{"pid":27443,"tid":27466,"ts":326462309221,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437784,"id":"0xccc63e02"},
-{"pid":27443,"tid":27477,"ts":326462262128,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":985045},
-{"pid":27443,"tid":27477,"ts":326462262128,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":985045},
-{"pid":27443,"tid":27477,"ts":326462262189,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":985106},
-{"pid":27443,"tid":27477,"ts":326462262189,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":985106},
-{"pid":27443,"tid":27477,"ts":326462262220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":985136,"id":"0xaf88a23cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462262250,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":985167},
-{"pid":27443,"tid":27477,"ts":326462262250,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":985167},
-{"pid":27443,"tid":27477,"ts":326462262250,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":985167},
-{"pid":27443,"tid":27477,"ts":326462262250,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":985167},
-{"pid":27443,"tid":27477,"ts":326462262281,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":985197},
-{"pid":27443,"tid":27477,"ts":326462262281,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":985197},
-{"pid":27443,"tid":27477,"ts":326462262342,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":985258},
-{"pid":27443,"tid":27477,"ts":326462262342,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":985258},
-{"pid":27443,"tid":27477,"ts":326462264448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":985319,"id":"0xaf88a23df182217a"},
-{"pid":27443,"tid":27477,"ts":326462264478,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":92,"tdur":61,"tts":985350},
-{"pid":27443,"tid":27477,"ts":326462264478,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":985350},
-{"pid":27443,"tid":27477,"ts":326462264539,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":0,"tdur":0,"tts":985411},
-{"pid":27443,"tid":27477,"ts":326462271040,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462270},"tts":985472,"id":"0xaf88a225f182217a"},
-{"pid":27443,"tid":27477,"ts":326462271070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":985502},
-{"pid":27443,"tid":27477,"ts":326462271956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":985563,"id":"0xaf88a23ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462271986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":306,"tts":985563},
-{"pid":27443,"tid":27477,"ts":326462272017,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462270687.0,"frame_time_us":326462270874.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":274,"tdur":275,"tts":985594},
-{"pid":27443,"tid":27477,"ts":326462272047,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462270687.0,"frame_time_us":326462270874.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":244,"tdur":245,"tts":985624},
-{"pid":27443,"tid":27477,"ts":326462272078,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":183,"tdur":153,"tts":985685},
-{"pid":27443,"tid":27477,"ts":326462272108,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":122,"tdur":123,"tts":985685},
-{"pid":27443,"tid":27477,"ts":326462272230,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":30,"tts":985808},
-{"pid":27443,"tid":27477,"ts":326462272261,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462287540},"dur":30,"tdur":31,"tts":985838},
-{"pid":27443,"tid":27477,"ts":326462272291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":985869,"id":"0xaf88a23ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462272963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":985930,"id":"0xaf88a238f182217a"},
-{"pid":27443,"tid":27477,"ts":326462272963,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":985930},
-{"pid":27443,"tid":27477,"ts":326462272993,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":92,"tdur":92,"tts":985960},
-{"pid":27443,"tid":27477,"ts":326462272993,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":31,"tts":985960},
-{"pid":27443,"tid":27477,"ts":326462273024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":985991,"id":"0xaf88a239f182217a"},
-{"pid":27443,"tid":27477,"ts":326462273024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":985991,"id":"0xaf88a710f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462273054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":986021,"id":"0xaf88a585f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462273115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":986082,"id":"0xaf88a239f182217a"},
-{"pid":27443,"tid":27477,"ts":326462273115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3358,"tdur":1954,"tts":986082},
-{"pid":27443,"tid":27477,"ts":326462273115,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3358,"tdur":1954,"tts":986082},
-{"pid":27443,"tid":27477,"ts":326462273146,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2991,"tdur":1587,"tts":986113},
-{"pid":27443,"tid":27477,"ts":326462273146,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1312,"tdur":976,"tts":986113},
-{"pid":27443,"tid":27477,"ts":326462273176,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":672,"tdur":336,"tts":986143},
-{"pid":27443,"tid":27477,"ts":326462273848,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":30,"tdur":31,"tts":986479},
-{"pid":27443,"tid":27477,"ts":326462273878,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":986510},
-{"pid":27443,"tid":27477,"ts":326462274092,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":986723},
-{"pid":27443,"tid":27477,"ts":326462274092,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":986723},
-{"pid":27443,"tid":27477,"ts":326462274092,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":986723},
-{"pid":27443,"tid":27477,"ts":326462274122,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":986754},
-{"pid":27443,"tid":27477,"ts":326462274122,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":986754},
-{"pid":27443,"tid":27477,"ts":326462274153,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":986784,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462274214,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":986845},
-{"pid":27443,"tid":27477,"ts":326462274458,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":987089},
-{"pid":27443,"tid":27477,"ts":326462274458,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1038,"tdur":367,"tts":987089},
-{"pid":27443,"tid":27477,"ts":326462274489,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":987120},
-{"pid":27443,"tid":27477,"ts":326462274489,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":946,"tdur":275,"tts":987120},
-{"pid":27443,"tid":27477,"ts":326462274672,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18725},"dur":336,"tdur":123,"tts":987211},
-{"pid":27443,"tid":27477,"ts":326462274702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":987242,"id":"0xaf88ab8df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462275038,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":987364,"id":"0xaf88ab8ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462275465,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":987456,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462275496,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":987456},
-{"pid":27443,"tid":27477,"ts":326462275557,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":987517},
-{"pid":27443,"tid":27477,"ts":326462275587,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":550,"tdur":153,"tts":987547},
-{"pid":27443,"tid":27477,"ts":326462275679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":987639,"id":"0xaf88ab8ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462276167,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":306,"tdur":275,"tts":987730},
-{"pid":27443,"tid":27477,"ts":326462276167,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":275,"tts":987730},
-{"pid":27443,"tid":27459,"ts":326462264722,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8251091},
-{"pid":27443,"tid":27459,"ts":326462264753,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8251152,"id":"0xaf88a584f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462264783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8251152,"id":"0xaf88a715f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462264783,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":8251152},
-{"pid":27443,"tid":27459,"ts":326462264814,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8251182},
-{"pid":27443,"tid":27459,"ts":326462264875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251243,"id":"0xaf88a58af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462264875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8251243},
-{"pid":27443,"tid":27459,"ts":326462264905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8251274,"id":"0xaf88a716f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462264905,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8251274},
-{"pid":27443,"tid":27459,"ts":326462264905,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":8251304},
-{"pid":27443,"tid":27459,"ts":326462264966,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251335,"id":"0xaf88a584f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462264966,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":8251365},
-{"pid":27443,"tid":27459,"ts":326462281875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251426,"id":"0xaf88a585f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462281905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8251457},
-{"pid":27443,"tid":27459,"ts":326462281936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8251487,"id":"0xaf88a586f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462281936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8251487,"id":"0xaf88a710f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462281936,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":8251487},
-{"pid":27443,"tid":27459,"ts":326462281966,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8251518},
-{"pid":27443,"tid":27459,"ts":326462282027,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251579,"id":"0xaf88a586f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462282027,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8251579},
-{"pid":27443,"tid":27459,"ts":326462295639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251670,"id":"0xaf88a587f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462295639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":123,"tts":8251670},
-{"pid":27443,"tid":27459,"ts":326462295670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8251701,"id":"0xaf88a580f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462295700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8251732,"id":"0xaf88a711f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462295700,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8251732},
-{"pid":27443,"tid":27459,"ts":326462295700,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":8251732},
-{"pid":27443,"tid":27459,"ts":326462295792,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251823,"id":"0xaf88a580f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462295792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8251823},
-{"pid":27443,"tid":27459,"ts":326462306962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8251915,"id":"0xaf88a581f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462306993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8251945},
-{"pid":27443,"tid":27459,"ts":326462307023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8251976,"id":"0xaf88a582f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462307023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8251976,"id":"0xaf88a712f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462307054,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":8252006},
-{"pid":27443,"tid":27459,"ts":326462307054,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":8252006},
-{"pid":27443,"tid":27459,"ts":326462307146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252098,"id":"0xaf88a582f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462307146,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":8252098},
-{"pid":27443,"tid":27459,"ts":326462323474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252189,"id":"0xaf88a583f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462323504,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8252220},
-{"pid":27443,"tid":27459,"ts":326462323535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8252250,"id":"0xaf88a59cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462323535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8252250,"id":"0xaf88a713f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462323565,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":30,"tts":8252281},
-{"pid":27443,"tid":27459,"ts":326462323565,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":8252281},
-{"pid":27443,"tid":27459,"ts":326462323627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252342,"id":"0xaf88a59cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462323657,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8252372},
-{"pid":27443,"tid":27459,"ts":326462340535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252464,"id":"0xaf88a59df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462340535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8252464},
-{"pid":27443,"tid":27459,"ts":326462340565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8252495,"id":"0xaf88a59ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462340596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8252525,"id":"0xaf88a72cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462340596,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":8252525},
-{"pid":27443,"tid":27459,"ts":326462340626,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8252556},
-{"pid":27443,"tid":27459,"ts":326462340687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252617,"id":"0xaf88a59ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462340687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8252617},
-{"pid":27443,"tid":27459,"ts":326462357077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252739,"id":"0xaf88a59ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462357077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":91,"tts":8252739},
-{"pid":27443,"tid":27459,"ts":326462357107,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8252769,"id":"0xaf88a598f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462357138,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8252800,"id":"0xaf88a72df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462357138,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":183,"tdur":30,"tts":8252800},
-{"pid":27443,"tid":27459,"ts":326462357138,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":183,"tdur":30,"tts":8252800},
-{"pid":27443,"tid":27459,"ts":326462357138,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":8252800},
-{"pid":27443,"tid":27459,"ts":326462357352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252861,"id":"0xaf88a598f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462357382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8252891},
-{"pid":27443,"tid":27459,"ts":326462375603,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8252983,"id":"0xaf88a599f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462375603,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8252983},
-{"pid":27443,"tid":27459,"ts":326462375633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8253013,"id":"0xaf88a59af3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462276167,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":987730},
-{"pid":27443,"tid":27477,"ts":326462276259,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":987822},
-{"pid":27443,"tid":27477,"ts":326462276259,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":987822},
-{"pid":27443,"tid":27477,"ts":326462276289,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":123,"tts":987852},
-{"pid":27443,"tid":27477,"ts":326462276289,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":123,"tts":987852},
-{"pid":27443,"tid":27477,"ts":326462276289,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":987852,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462276350,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":987913},
-{"pid":27443,"tid":27477,"ts":326462276350,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":987913},
-{"pid":27443,"tid":27477,"ts":326462276412,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":987975,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462276442,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":988005,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462276442,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":988005,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462276686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988097,"id":"0xaf88a23af182217a"},
-{"pid":27443,"tid":27477,"ts":326462276686,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":988097},
-{"pid":27443,"tid":27477,"ts":326462276686,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":988097},
-{"pid":27443,"tid":27477,"ts":326462276717,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":988127,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462276717,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":988127},
-{"pid":27443,"tid":27477,"ts":326462276747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":988158,"id":"0xaf88a235f182217a"},
-{"pid":27443,"tid":27477,"ts":326462276747,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988158,"id":"0xaf88a23bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462276778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":988188},
-{"pid":27443,"tid":27477,"ts":326462276778,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":30,"tdur":31,"tts":988188},
-{"pid":27443,"tid":27477,"ts":326462276778,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8294400,"bytes_used_for_staging_resources":10616832,"pending_copy_count":25,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":988188,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462276808,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":988219},
-{"pid":27443,"tid":27477,"ts":326462276808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":988219,"id":"0xaf88a236f182217a"},
-{"pid":27443,"tid":27477,"ts":326462276839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988249,"id":"0xaf88a234f182217a"},
-{"pid":27443,"tid":27477,"ts":326462276839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":988249},
-{"pid":27443,"tid":27477,"ts":326462276839,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":988249},
-{"pid":27443,"tid":27477,"ts":326462276839,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":988280,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462276869,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":988280},
-{"pid":27443,"tid":27477,"ts":326462276869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988280,"id":"0xaf88a235f182217a"},
-{"pid":27443,"tid":27477,"ts":326462276900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":988310},
-{"pid":27443,"tid":27477,"ts":326462276900,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":988310},
-{"pid":27443,"tid":27477,"ts":326462276900,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":988310},
-{"pid":27443,"tid":27477,"ts":326462276900,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":988310},
-{"pid":27443,"tid":27477,"ts":326462276930,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":988341},
-{"pid":27443,"tid":27477,"ts":326462276930,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":988341},
-{"pid":27443,"tid":27477,"ts":326462276991,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":988402},
-{"pid":27443,"tid":27477,"ts":326462277022,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":988432},
-{"pid":27443,"tid":27477,"ts":326462277052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988463,"id":"0xaf88a236f182217a"},
-{"pid":27443,"tid":27477,"ts":326462277052,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":123,"tdur":122,"tts":988463},
-{"pid":27443,"tid":27477,"ts":326462277052,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":123,"tdur":122,"tts":988463},
-{"pid":27443,"tid":27477,"ts":326462277052,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":988463},
-{"pid":27443,"tid":27477,"ts":326462277083,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":988493},
-{"pid":27443,"tid":27477,"ts":326462277083,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":988493},
-{"pid":27443,"tid":27477,"ts":326462277083,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":988493},
-{"pid":27443,"tid":27477,"ts":326462277144,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":988554},
-{"pid":27443,"tid":27477,"ts":326462277144,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":988554},
-{"pid":27443,"tid":27477,"ts":326462287643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462287},"tts":988646,"id":"0xaf88a23ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462287674,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":988676},
-{"pid":27443,"tid":27477,"ts":326462293594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":988738,"id":"0xaf88a237f182217a"},
-{"pid":27443,"tid":27477,"ts":326462293594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":335,"tts":988738},
-{"pid":27443,"tid":27477,"ts":326462293625,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462287369.0,"frame_time_us":326462287556.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":305,"tdur":274,"tts":988799},
-{"pid":27443,"tid":27477,"ts":326462293656,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462287369.0,"frame_time_us":326462287556.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":274,"tdur":274,"tts":988799},
-{"pid":27443,"tid":27477,"ts":326462293686,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":183,"tdur":183,"tts":988829},
-{"pid":27443,"tid":27477,"ts":326462293686,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":153,"tdur":153,"tts":988829},
-{"pid":27443,"tid":27477,"ts":326462293839,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":0,"tts":988982},
-{"pid":27443,"tid":27477,"ts":326462293869,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462304222},"dur":31,"tdur":31,"tts":989012},
-{"pid":27443,"tid":27477,"ts":326462293900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":989043,"id":"0xaf88a231f182217a"},
-{"pid":27443,"tid":27477,"ts":326462293930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":989104,"id":"0xaf88a230f182217a"},
-{"pid":27443,"tid":27477,"ts":326462293961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":989104},
-{"pid":27443,"tid":27477,"ts":326462293991,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":153,"tdur":153,"tts":989134},
-{"pid":27443,"tid":27477,"ts":326462294022,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":30,"tts":989165},
-{"pid":27443,"tid":27477,"ts":326462294052,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":989195,"id":"0xaf88a232f182217a"},
-{"pid":27443,"tid":27477,"ts":326462294083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":989226,"id":"0xaf88a711f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462294113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":989256,"id":"0xaf88a587f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462294174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":989317,"id":"0xaf88a232f182217a"},
-{"pid":27443,"tid":27477,"ts":326462294174,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3052,"tdur":2289,"tts":989317},
-{"pid":27443,"tid":27477,"ts":326462294205,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3021,"tdur":2258,"tts":989348},
-{"pid":27443,"tid":27477,"ts":326462294205,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2564,"tdur":1801,"tts":989348},
-{"pid":27443,"tid":27477,"ts":326462294205,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1160,"tdur":1069,"tts":989378},
-{"pid":27443,"tid":27477,"ts":326462294266,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":427,"tdur":366,"tts":989409},
-{"pid":27443,"tid":27477,"ts":326462294693,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":61,"tdur":30,"tts":989806},
-{"pid":27443,"tid":27477,"ts":326462294754,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":989836},
-{"pid":27443,"tid":27477,"ts":326462294937,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":990019},
-{"pid":27443,"tid":27477,"ts":326462294937,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":990050},
-{"pid":27443,"tid":27477,"ts":326462294968,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":990050},
-{"pid":27443,"tid":27477,"ts":326462294968,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":990050},
-{"pid":27443,"tid":27477,"ts":326462294968,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":990050},
-{"pid":27443,"tid":27477,"ts":326462294998,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":990080,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462295059,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":990172},
-{"pid":27443,"tid":27477,"ts":326462295365,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":990447},
-{"pid":27443,"tid":27477,"ts":326462295395,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1038,"tdur":336,"tts":990477},
-{"pid":27443,"tid":27477,"ts":326462295395,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":990477},
-{"pid":27443,"tid":27477,"ts":326462295426,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":915,"tdur":213,"tts":990508},
-{"pid":27443,"tid":27477,"ts":326462295700,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18732},"dur":245,"tdur":61,"tts":990599},
-{"pid":27443,"tid":27477,"ts":326462295731,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":990630,"id":"0xaf88ab88f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462295975,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":990691,"id":"0xaf88ab89f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462296402,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":990782,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462296433,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":990813},
-{"pid":27443,"tid":27477,"ts":326462296494,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":990874},
-{"pid":27443,"tid":27477,"ts":326462296524,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":990904},
-{"pid":27443,"tid":27477,"ts":326462296677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":991057,"id":"0xaf88ab8af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462296769,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":457,"tdur":457,"tts":991149},
-{"pid":27443,"tid":27477,"ts":326462296799,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":427,"tdur":427,"tts":991179},
-{"pid":27443,"tid":27477,"ts":326462296799,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":214,"tts":991179},
-{"pid":27443,"tid":27477,"ts":326462297013,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":991393},
-{"pid":27443,"tid":27477,"ts":326462297013,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":991393},
-{"pid":27443,"tid":27477,"ts":326462297043,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":991423},
-{"pid":27443,"tid":27477,"ts":326462297043,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":991423},
-{"pid":27443,"tid":27477,"ts":326462297043,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":991423,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462297104,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":991484},
-{"pid":27443,"tid":27477,"ts":326462297104,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":31,"tts":991484},
-{"pid":27443,"tid":27477,"ts":326462297165,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8957952,"bytes_used_for_staging_resources":10616832,"pending_copy_count":27,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":991545,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462297196,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":991576,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462297196,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":991606,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462297959,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991667,"id":"0xaf88a233f182217a"},
-{"pid":27443,"tid":27477,"ts":326462297959,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":991667},
-{"pid":27443,"tid":27477,"ts":326462297959,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":62,"tts":991667},
-{"pid":27443,"tid":27477,"ts":326462297989,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8957952,"bytes_used_for_staging_resources":10616832,"pending_copy_count":27,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":991698,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462297989,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":991698},
-{"pid":27443,"tid":27477,"ts":326462298020,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":991729,"id":"0xaf88a2cef182217a"},
-{"pid":27443,"tid":27477,"ts":326462298050,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991759,"id":"0xaf88a2ccf182217a"},
-{"pid":27443,"tid":27477,"ts":326462298050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":991759},
-{"pid":27443,"tid":27477,"ts":326462298050,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":991759},
-{"pid":27443,"tid":27477,"ts":326462298081,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":8957952,"bytes_used_for_staging_resources":10616832,"pending_copy_count":27,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":991790,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462298081,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":30,"tts":991790},
-{"pid":27443,"tid":27477,"ts":326462298111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":991820,"id":"0xaf88a2cff182217a"},
-{"pid":27443,"tid":27477,"ts":326462298111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991820,"id":"0xaf88a2cdf182217a"},
-{"pid":27443,"tid":27477,"ts":326462298142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":991851},
-{"pid":27443,"tid":27477,"ts":326462298142,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":991851},
-{"pid":27443,"tid":27477,"ts":326462298142,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":991851,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462298173,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":991881},
-{"pid":27443,"tid":27477,"ts":326462298173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":991881,"id":"0xaf88a2cef182217a"},
-{"pid":27443,"tid":27477,"ts":326462298203,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":991912},
-{"pid":27443,"tid":27477,"ts":326462298203,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":152,"tts":991912},
-{"pid":27443,"tid":27477,"ts":326462298203,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":991912},
-{"pid":27443,"tid":27477,"ts":326462298203,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":991912},
-{"pid":27443,"tid":27477,"ts":326462298234,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":92,"tts":991942},
-{"pid":27443,"tid":27477,"ts":326462298234,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":30,"tts":991973},
-{"pid":27443,"tid":27469,"ts":326462297440,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":153,"tdur":122,"tts":527849},
-{"pid":27443,"tid":27469,"ts":326462297501,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":31,"tts":527910},
-{"pid":27443,"tid":27469,"ts":326462297532,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":527941,"id":"0xaf88a2cdf182217a"},
-{"pid":27443,"tid":27471,"ts":326462309435,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":152,"tdur":152,"tts":508042},
-{"pid":27443,"tid":27471,"ts":326462309496,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":508103},
-{"pid":27443,"tid":27471,"ts":326462309526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508133,"id":"0xaf88a2c4f182217a"},
-{"pid":27443,"tid":27471,"ts":326462309587,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":508194},
-{"pid":27443,"tid":27471,"ts":326462309587,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":0,"tts":508225},
-{"pid":27443,"tid":27471,"ts":326462309618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508225,"id":"0xaf88a2c5f182217a"},
-{"pid":27443,"tid":27471,"ts":326462309648,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":508255},
-{"pid":27443,"tid":27471,"ts":326462309679,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":508286},
-{"pid":27443,"tid":27471,"ts":326462309679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508286,"id":"0xaf88a2c7f182217a"},
-{"pid":27443,"tid":27471,"ts":326462327625,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":508347},
-{"pid":27443,"tid":27471,"ts":326462327655,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":508377},
-{"pid":27443,"tid":27471,"ts":326462327655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508377,"id":"0xaf88a2ddf182217a"},
-{"pid":27443,"tid":27469,"ts":326462327655,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":528063},
-{"pid":27443,"tid":27469,"ts":326462327686,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":528094},
-{"pid":27443,"tid":27469,"ts":326462327716,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528124,"id":"0xaf88a2def182217a"},
-{"pid":27443,"tid":27471,"ts":326462327716,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":30,"tts":508408},
-{"pid":27443,"tid":27471,"ts":326462327747,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":508438},
-{"pid":27443,"tid":27471,"ts":326462327747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508438,"id":"0xaf88a2dff182217a"},
-{"pid":27443,"tid":27469,"ts":326462344289,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":92,"tts":528185},
-{"pid":27443,"tid":27469,"ts":326462344319,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":528216},
-{"pid":27443,"tid":27469,"ts":326462344319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528216,"id":"0xaf88a2d6f182217a"},
-{"pid":27443,"tid":27471,"ts":326462344319,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":508499},
-{"pid":27443,"tid":27471,"ts":326462344350,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":508530},
-{"pid":27443,"tid":27471,"ts":326462344380,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508560,"id":"0xaf88a2d7f182217a"},
-{"pid":27443,"tid":27469,"ts":326462344380,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":528277},
-{"pid":27443,"tid":27469,"ts":326462344411,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":528307},
-{"pid":27443,"tid":27469,"ts":326462344411,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528307,"id":"0xaf88a2d0f182217a"},
-{"pid":27443,"tid":27471,"ts":326462360892,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":732,"tdur":61,"tts":508622},
-{"pid":27443,"tid":27471,"ts":326462360922,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":508652},
-{"pid":27443,"tid":27471,"ts":326462360922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508652,"id":"0xaf88a2eff182217a"},
-{"pid":27443,"tid":27469,"ts":326462360953,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":528399},
-{"pid":27443,"tid":27469,"ts":326462361014,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":528460},
-{"pid":27443,"tid":27469,"ts":326462361045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528490,"id":"0xaf88a2e8f182217a"},
-{"pid":27443,"tid":27469,"ts":326462361106,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":528551},
-{"pid":27443,"tid":27469,"ts":326462361106,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":528551},
-{"pid":27443,"tid":27469,"ts":326462361136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528582,"id":"0xaf88a2eaf182217a"},
-{"pid":27443,"tid":27469,"ts":326462377892,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":528673},
-{"pid":27443,"tid":27469,"ts":326462377953,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":528734},
-{"pid":27443,"tid":27469,"ts":326462377953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528765,"id":"0xaf88a2e0f182217a"},
-{"pid":27443,"tid":27469,"ts":326462378044,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":528826},
-{"pid":27443,"tid":27469,"ts":326462378044,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":528826},
-{"pid":27443,"tid":27469,"ts":326462378075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528857,"id":"0xaf88a2e1f182217a"},
-{"pid":27443,"tid":27469,"ts":326462378136,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":528918},
-{"pid":27443,"tid":27469,"ts":326462378166,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":528948},
-{"pid":27443,"tid":27469,"ts":326462378166,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":528948,"id":"0xaf88a2e3f182217a"},
-{"pid":27443,"tid":27469,"ts":326462394831,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":92,"tts":529070},
-{"pid":27443,"tid":27469,"ts":326462394892,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":529131},
-{"pid":27443,"tid":27471,"ts":326462394892,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":91,"tts":508744},
-{"pid":27443,"tid":27469,"ts":326462394892,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":529162,"id":"0xaf88a2faf182217a"},
-{"pid":27443,"tid":27471,"ts":326462394922,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":508774},
-{"pid":27443,"tid":27471,"ts":326462394922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508774,"id":"0xaf88a2fbf182217a"},
-{"pid":27443,"tid":27469,"ts":326462394953,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":529192},
-{"pid":27443,"tid":27469,"ts":326462394983,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":529223},
-{"pid":27443,"tid":27469,"ts":326462395014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":529253,"id":"0xaf88a2f4f182217a"},
-{"pid":27443,"tid":27471,"ts":326462410793,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":122,"tts":508866},
-{"pid":27443,"tid":27471,"ts":326462410854,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":508927},
-{"pid":27443,"tid":27471,"ts":326462410854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":508927,"id":"0xaf88a2f3f182217a"},
-{"pid":27443,"tid":27471,"ts":326462410915,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":508988},
-{"pid":27443,"tid":27471,"ts":326462410915,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":508988},
-{"pid":27443,"tid":27471,"ts":326462410945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509018,"id":"0xaf88a28cf182217a"},
-{"pid":27443,"tid":27471,"ts":326462410976,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":509049},
-{"pid":27443,"tid":27477,"ts":326462298325,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":992034},
-{"pid":27443,"tid":27477,"ts":326462298325,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":992034},
-{"pid":27443,"tid":27477,"ts":326462298356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":992064,"id":"0xaf88a2cff182217a"},
-{"pid":27443,"tid":27477,"ts":326462298386,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":992095},
-{"pid":27443,"tid":27477,"ts":326462298386,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":992095},
-{"pid":27443,"tid":27477,"ts":326462298386,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":992095},
-{"pid":27443,"tid":27477,"ts":326462298417,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":992125},
-{"pid":27443,"tid":27477,"ts":326462298417,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":992125},
-{"pid":27443,"tid":27477,"ts":326462298447,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":31,"tdur":30,"tts":992156},
-{"pid":27443,"tid":27477,"ts":326462298478,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":992186},
-{"pid":27443,"tid":27477,"ts":326462298508,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":992217},
-{"pid":27443,"tid":27477,"ts":326462304307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462304},"tts":992278,"id":"0xaf88a231f182217a"},
-{"pid":27443,"tid":27477,"ts":326462304338,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":992308},
-{"pid":27443,"tid":27477,"ts":326462305558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":992369,"id":"0xaf88a2c8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462305558,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":336,"tdur":336,"tts":992369},
-{"pid":27443,"tid":27477,"ts":326462305620,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462304050.0,"frame_time_us":326462304237.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":274,"tdur":275,"tts":992430},
-{"pid":27443,"tid":27477,"ts":326462305620,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462304050.0,"frame_time_us":326462304237.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":274,"tdur":244,"tts":992461},
-{"pid":27443,"tid":27477,"ts":326462305650,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":214,"tdur":183,"tts":992461},
-{"pid":27443,"tid":27477,"ts":326462305681,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":152,"tdur":152,"tts":992492},
-{"pid":27443,"tid":27477,"ts":326462305833,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":992644},
-{"pid":27443,"tid":27477,"ts":326462305864,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462320903},"dur":30,"tdur":30,"tts":992675},
-{"pid":27443,"tid":27477,"ts":326462305864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":992675,"id":"0xaf88a2c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462306566,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":992766,"id":"0xaf88a2caf182217a"},
-{"pid":27443,"tid":27477,"ts":326462306566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":992766},
-{"pid":27443,"tid":27477,"ts":326462306596,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":122,"tdur":122,"tts":992797},
-{"pid":27443,"tid":27477,"ts":326462306596,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":31,"tts":992827},
-{"pid":27443,"tid":27477,"ts":326462306627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":992827,"id":"0xaf88a2cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326462306657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":992858,"id":"0xaf88a712f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462306688,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":992888,"id":"0xaf88a581f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462306749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":992949,"id":"0xaf88a2cbf182217a"},
-{"pid":27443,"tid":27477,"ts":326462306779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2717,"tdur":2014,"tts":992980},
-{"pid":27443,"tid":27477,"ts":326462306779,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2717,"tdur":2014,"tts":992980},
-{"pid":27443,"tid":27477,"ts":326462306779,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2381,"tdur":1678,"tts":992980},
-{"pid":27443,"tid":27477,"ts":326462306810,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1190,"tdur":1008,"tts":993010},
-{"pid":27443,"tid":27477,"ts":326462306871,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":519,"tdur":336,"tts":993071},
-{"pid":27443,"tid":27477,"ts":326462307390,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":61,"tdur":61,"tts":993407},
-{"pid":27443,"tid":27477,"ts":326462307451,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":993468},
-{"pid":27443,"tid":27477,"ts":326462307634,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":993651},
-{"pid":27443,"tid":27477,"ts":326462307634,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":993651},
-{"pid":27443,"tid":27477,"ts":326462307634,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":993682},
-{"pid":27443,"tid":27477,"ts":326462307664,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":993682},
-{"pid":27443,"tid":27477,"ts":326462307664,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":993682},
-{"pid":27443,"tid":27477,"ts":326462307695,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":993712,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462307756,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":993773},
-{"pid":27443,"tid":27477,"ts":326462308000,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":994018},
-{"pid":27443,"tid":27477,"ts":326462308000,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":855,"tdur":305,"tts":994048},
-{"pid":27443,"tid":27477,"ts":326462308031,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":994048},
-{"pid":27443,"tid":27477,"ts":326462308031,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":763,"tdur":244,"tts":994048},
-{"pid":27443,"tid":27477,"ts":326462308122,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":92,"tdur":31,"tts":994170},
-{"pid":27443,"tid":27477,"ts":326462308153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":994170,"id":"0xaf88ab8bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462308214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":994231,"id":"0xaf88ab84f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462308824,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":994323,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462308855,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":994353},
-{"pid":27443,"tid":27477,"ts":326462308916,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":31,"tts":994414},
-{"pid":27443,"tid":27477,"ts":326462308946,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":213,"tts":994445},
-{"pid":27443,"tid":27477,"ts":326462309099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":994597,"id":"0xaf88ab85f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462309160,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":336,"tdur":336,"tts":994658},
-{"pid":27443,"tid":27477,"ts":326462309190,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":275,"tts":994689},
-{"pid":27443,"tid":27477,"ts":326462309190,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":994689},
-{"pid":27443,"tid":27477,"ts":326462309282,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":994781},
-{"pid":27443,"tid":27477,"ts":326462309282,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":994781},
-{"pid":27443,"tid":27477,"ts":326462309312,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":122,"tts":994811},
-{"pid":27443,"tid":27477,"ts":326462309312,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":994811},
-{"pid":27443,"tid":27477,"ts":326462309312,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":994811,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462309343,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":994872},
-{"pid":27443,"tid":27477,"ts":326462309374,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":994872},
-{"pid":27443,"tid":27477,"ts":326462309435,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":994933,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462309465,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":994964,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462309465,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":994964,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462309557,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995086,"id":"0xaf88a2c4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":995086},
-{"pid":27443,"tid":27477,"ts":326462309587,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":995086},
-{"pid":27443,"tid":27477,"ts":326462309618,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":995116,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462309618,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":995116},
-{"pid":27443,"tid":27477,"ts":326462309618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":995147,"id":"0xaf88a2c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995147,"id":"0xaf88a2c5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":995177},
-{"pid":27443,"tid":27477,"ts":326462309679,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":995177},
-{"pid":27443,"tid":27477,"ts":326462309679,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":995177,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462309709,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":995208},
-{"pid":27443,"tid":27477,"ts":326462309709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":995208,"id":"0xaf88a2c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995238,"id":"0xaf88a2c6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":153,"tts":995238},
-{"pid":27443,"tid":27477,"ts":326462309740,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":152,"tdur":153,"tts":995238},
-{"pid":27443,"tid":27477,"ts":326462309770,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":995269},
-{"pid":27443,"tid":27477,"ts":326462309770,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":995269},
-{"pid":27443,"tid":27477,"ts":326462309801,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":995299},
-{"pid":27443,"tid":27477,"ts":326462309801,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":995299},
-{"pid":27443,"tid":27477,"ts":326462309862,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":995360},
-{"pid":27443,"tid":27477,"ts":326462309862,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":995360},
-{"pid":27443,"tid":27477,"ts":326462309892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995391,"id":"0xaf88a2c7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":995421},
-{"pid":27443,"tid":27477,"ts":326462309923,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":995421},
-{"pid":27443,"tid":27477,"ts":326462309923,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":995421,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462309923,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":31,"tts":995421},
-{"pid":27443,"tid":27477,"ts":326462309953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995452,"id":"0xaf88a2c0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462309953,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":184,"tdur":183,"tts":995452},
-{"pid":27443,"tid":27477,"ts":326462309984,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":153,"tdur":152,"tts":995483},
-{"pid":27443,"tid":27477,"ts":326462309984,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":0,"tts":995483},
-{"pid":27443,"tid":27477,"ts":326462309984,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":995483},
-{"pid":27443,"tid":27477,"ts":326462310045,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":995544},
-{"pid":27443,"tid":27477,"ts":326462310045,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":995544},
-{"pid":27443,"tid":27477,"ts":326462310106,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":995605},
-{"pid":27443,"tid":27477,"ts":326462310106,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":995605},
-{"pid":27443,"tid":27477,"ts":326462321002,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462320},"tts":995696,"id":"0xaf88a2c9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462321002,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":0,"tts":995727},
-{"pid":27443,"tid":27477,"ts":326462322101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":995788,"id":"0xaf88a2c1f182217a"},
-{"pid":27443,"tid":27477,"ts":326462322101,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":995788},
-{"pid":27443,"tid":27477,"ts":326462322192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":549,"tdur":550,"tts":995818},
-{"pid":27443,"tid":27477,"ts":326462322253,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462320732.0,"frame_time_us":326462320919.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":458,"tdur":458,"tts":995879},
-{"pid":27443,"tid":27477,"ts":326462322314,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462320732.0,"frame_time_us":326462320919.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":397,"tdur":397,"tts":995940},
-{"pid":27443,"tid":27477,"ts":326462322345,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":305,"tdur":305,"tts":995971},{"pid":27443,"tid":27477,"ts":326462322375,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":244,"tdur":214,"tts":996001},
-{"pid":27443,"tid":27477,"ts":326462322619,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":0,"tts":996246},
-{"pid":27443,"tid":27477,"ts":326462322650,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462337585},"dur":61,"tdur":61,"tts":996276},
-{"pid":27443,"tid":27477,"ts":326462322680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":996307,"id":"0xaf88a2c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462323108,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":996459,"id":"0xaf88a2c3f182217a"},
-{"pid":27443,"tid":27477,"ts":326462323138,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":996490},
-{"pid":27443,"tid":27477,"ts":326462323199,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":214,"tdur":213,"tts":996551},
-{"pid":27443,"tid":27477,"ts":326462323230,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":61,"tts":996581},
-{"pid":27443,"tid":27477,"ts":326462323260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":996612,"id":"0xaf88a2dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326462323291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":996673,"id":"0xaf88a713f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462323352,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":996703,"id":"0xaf88a583f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462323474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":996825,"id":"0xaf88a2dcf182217a"},
-{"pid":27443,"tid":27477,"ts":326462323474,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4303,"tdur":3754,"tts":996825},
-{"pid":27443,"tid":27477,"ts":326462323474,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":996825},
-{"pid":27443,"tid":27477,"ts":326462323535,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4212,"tdur":3663,"tts":996886},
-{"pid":27443,"tid":27477,"ts":326462323565,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3602,"tdur":3083,"tts":996886},
-{"pid":27443,"tid":27466,"ts":326462321887,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":437936},
-{"pid":27443,"tid":27466,"ts":326462321917,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":92,"tts":437997},
-{"pid":27443,"tid":27466,"ts":326462321948,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":437997,"id":"0xba46e502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462321978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":438028,"id":"0xaf88a2c1f182217a"},
-{"pid":27443,"tid":27466,"ts":326462322986,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":438150},
-{"pid":27443,"tid":27466,"ts":326462323016,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":438180},
-{"pid":27443,"tid":27466,"ts":326462323016,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":438180,"id":"0xba46e602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462323047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":438211,"id":"0xaf88a2c3f182217a"},
-{"pid":27443,"tid":27466,"ts":326462326190,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":438364,"id":"0xaf88ab86f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462326190,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":438394},
-{"pid":27443,"tid":27466,"ts":326462326221,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":438394,"id":"0xccc63f06"},
-{"pid":27443,"tid":27466,"ts":326462326373,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":438486},
-{"pid":27443,"tid":27466,"ts":326462326404,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":438516},
-{"pid":27443,"tid":27466,"ts":326462326434,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":438547,"id":"0xc4c24b0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462327136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":438638,"id":"0xaf88ab87f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462327136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":438638},
-{"pid":27443,"tid":27466,"ts":326462327136,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":438669,"id":"0xccc64002"},
-{"pid":27443,"tid":27466,"ts":326462338459,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":438760},
-{"pid":27443,"tid":27466,"ts":326462338490,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":438791},
-{"pid":27443,"tid":27466,"ts":326462338520,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":438821,"id":"0xba46e802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462338551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":438852,"id":"0xaf88a2daf182217a"},
-{"pid":27443,"tid":27466,"ts":326462339924,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":275,"tts":438974},
-{"pid":27443,"tid":27466,"ts":326462339985,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":214,"tdur":183,"tts":439035},
-{"pid":27443,"tid":27466,"ts":326462340016,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":439066,"id":"0xba46e902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462340108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":439157,"id":"0xaf88a2d4f182217a"},
-{"pid":27443,"tid":27466,"ts":326462342915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":439340,"id":"0xaf88ab80f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462342915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":439340},
-{"pid":27443,"tid":27466,"ts":326462342915,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":439340,"id":"0xccc64106"},
-{"pid":27443,"tid":27466,"ts":326462343129,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":61,"tts":439462},
-{"pid":27443,"tid":27466,"ts":326462343160,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":439462},
-{"pid":27443,"tid":27466,"ts":326462343190,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":439493,"id":"0xc4c24e0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462343800,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":439554,"id":"0xaf88ab81f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462343831,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":439584},
-{"pid":27443,"tid":27466,"ts":326462343831,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":439584,"id":"0xccc64202"},
-{"pid":27443,"tid":27466,"ts":326462355246,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":439645},
-{"pid":27443,"tid":27466,"ts":326462355276,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":92,"tts":439676},
-{"pid":27443,"tid":27466,"ts":326462355276,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":439676},
-{"pid":27443,"tid":27466,"ts":326462355337,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":439706,"id":"0xba46eb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462355368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":439737,"id":"0xaf88a2d3f182217a"},
-{"pid":27443,"tid":27466,"ts":326462356405,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":306,"tdur":183,"tts":439859},
-{"pid":27443,"tid":27466,"ts":326462356436,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":244,"tdur":122,"tts":439890},
-{"pid":27443,"tid":27466,"ts":326462356466,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":439920,"id":"0xba46ec02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462356680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":440012,"id":"0xaf88a2edf182217a"},
-{"pid":27443,"tid":27466,"ts":326462359793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":440073,"id":"0xaf88ab82f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462359824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":440103},
-{"pid":27443,"tid":27466,"ts":326462359824,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":440103,"id":"0xccc64306"},
-{"pid":27443,"tid":27466,"ts":326462360129,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":440195},
-{"pid":27443,"tid":27466,"ts":326462360159,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":440225},
-{"pid":27443,"tid":27466,"ts":326462360190,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":440256,"id":"0xc4c2510a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462360648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":440378,"id":"0xaf88ab83f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462360648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":183,"tdur":153,"tts":440408},
-{"pid":27443,"tid":27466,"ts":326462360678,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":440408,"id":"0xccc64402"},
-{"pid":27443,"tid":27466,"ts":326462372154,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":274,"tts":440653},
-{"pid":27443,"tid":27466,"ts":326462372245,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":184,"tdur":183,"tts":440714},
-{"pid":27443,"tid":27466,"ts":326462372276,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":440744,"id":"0xba46ee02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462372368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":440836,"id":"0xaf88a2e4f182217a"},
-{"pid":27443,"tid":27466,"ts":326462375298,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":440988},
-{"pid":27443,"tid":27466,"ts":326462375328,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":441019},
-{"pid":27443,"tid":27466,"ts":326462375359,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441049,"id":"0xba46ef02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462375389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":441080,"id":"0xaf88a2e6f182217a"},
-{"pid":27443,"tid":27466,"ts":326462376793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":441171,"id":"0xaf88ab9cf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462376824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":441202},
-{"pid":27443,"tid":27466,"ts":326462376824,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441202,"id":"0xccc64506"},
-{"pid":27443,"tid":27466,"ts":326462377098,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":92,"tdur":91,"tts":441294},
-{"pid":27443,"tid":27477,"ts":326462323596,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":2197,"tdur":1923,"tts":996917},
-{"pid":27443,"tid":27477,"ts":326462323688,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":946,"tdur":640,"tts":997009},
-{"pid":27443,"tid":27477,"ts":326462323688,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":997009},
-{"pid":27443,"tid":27477,"ts":326462324634,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":61,"tdur":61,"tts":997680},
-{"pid":27443,"tid":27477,"ts":326462324695,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":997741},
-{"pid":27443,"tid":27477,"ts":326462325030,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":998107},
-{"pid":27443,"tid":27477,"ts":326462325061,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":998138},
-{"pid":27443,"tid":27477,"ts":326462325092,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":91,"tdur":91,"tts":998138},
-{"pid":27443,"tid":27477,"ts":326462325122,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":998168},
-{"pid":27443,"tid":27477,"ts":326462325122,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":998168},
-{"pid":27443,"tid":27477,"ts":326462325183,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":998229,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462325336,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":998382},
-{"pid":27443,"tid":27477,"ts":326462325763,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":998840},
-{"pid":27443,"tid":27477,"ts":326462325824,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":519,"tts":998870},
-{"pid":27443,"tid":27477,"ts":326462325824,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":998901},
-{"pid":27443,"tid":27477,"ts":326462325855,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":640,"tdur":397,"tts":998901},
-{"pid":27443,"tid":27477,"ts":326462326038,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":30,"tdur":30,"tts":999084},
-{"pid":27443,"tid":27477,"ts":326462326099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":999145,"id":"0xaf88ab86f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462326556,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":999359,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462326587,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":122,"tdur":122,"tts":999389},
-{"pid":27443,"tid":27477,"ts":326462326709,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":31,"tts":999511},
-{"pid":27443,"tid":27477,"ts":326462326740,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":396,"tdur":396,"tts":999542},
-{"pid":27443,"tid":27477,"ts":326462327045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":999847,"id":"0xaf88ab87f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462327197,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":550,"tdur":549,"tts":1000000},
-{"pid":27443,"tid":27477,"ts":326462327197,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":519,"tdur":518,"tts":1000000},
-{"pid":27443,"tid":27477,"ts":326462327228,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":1000030},
-{"pid":27443,"tid":27477,"ts":326462327381,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1000183},
-{"pid":27443,"tid":27477,"ts":326462327411,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1000213},
-{"pid":27443,"tid":27477,"ts":326462327442,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":213,"tdur":213,"tts":1000244},
-{"pid":27443,"tid":27477,"ts":326462327442,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":213,"tdur":183,"tts":1000274},
-{"pid":27443,"tid":27477,"ts":326462327472,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1000274,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462327533,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1000335},
-{"pid":27443,"tid":27477,"ts":326462327533,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":1000366},
-{"pid":27443,"tid":27477,"ts":326462327625,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1000427,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462327686,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1000488,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462327716,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1000518,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462327777,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1000579,"id":"0xaf88a2ddf182217a"},
-{"pid":27443,"tid":27477,"ts":326462327808,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":1000610},
-{"pid":27443,"tid":27477,"ts":326462327808,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":122,"tdur":122,"tts":1000610},
-{"pid":27443,"tid":27477,"ts":326462327838,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1000640,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462327869,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":1000671},
-{"pid":27443,"tid":27477,"ts":326462327899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1000702,"id":"0xaf88a2d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462327930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1000732,"id":"0xaf88a2def182217a"},
-{"pid":27443,"tid":27477,"ts":326462327960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":123,"tdur":122,"tts":1000763},
-{"pid":27443,"tid":27477,"ts":326462327960,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":123,"tdur":91,"tts":1000763},
-{"pid":27443,"tid":27477,"ts":326462327991,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1000793,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462328021,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":30,"tts":1000824},
-{"pid":27443,"tid":27477,"ts":326462328052,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1000854,"id":"0xaf88a2d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462328083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1000885,"id":"0xaf88a2dff182217a"},
-{"pid":27443,"tid":27477,"ts":326462328113,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1000915},
-{"pid":27443,"tid":27477,"ts":326462328113,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":1000915},
-{"pid":27443,"tid":27477,"ts":326462328144,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1000946,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462328144,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":30,"tdur":30,"tts":1000946},
-{"pid":27443,"tid":27477,"ts":326462328205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1001007,"id":"0xaf88a2d8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462328205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":274,"tdur":274,"tts":1001007},
-{"pid":27443,"tid":27477,"ts":326462328235,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":244,"tdur":244,"tts":1001037},
-{"pid":27443,"tid":27477,"ts":326462328235,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":1001037},
-{"pid":27443,"tid":27477,"ts":326462328266,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1001068},
-{"pid":27443,"tid":27477,"ts":326462328296,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":1001098},
-{"pid":27443,"tid":27477,"ts":326462328327,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":1001129},
-{"pid":27443,"tid":27477,"ts":326462328418,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":61,"tdur":61,"tts":1001220},
-{"pid":27443,"tid":27477,"ts":326462328449,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1001251},
-{"pid":27443,"tid":27477,"ts":326462328510,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1001312,"id":"0xaf88a2d9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462328510,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":274,"tdur":275,"tts":1001312},
-{"pid":27443,"tid":27477,"ts":326462328540,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":244,"tdur":214,"tts":1001342},
-{"pid":27443,"tid":27477,"ts":326462328571,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1001373},
-{"pid":27443,"tid":27477,"ts":326462328571,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1001373},
-{"pid":27443,"tid":27477,"ts":326462328601,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":122,"tdur":123,"tts":1001403},
-{"pid":27443,"tid":27477,"ts":326462328632,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":1001434},
-{"pid":27443,"tid":27477,"ts":326462328723,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":1001526},
-{"pid":27443,"tid":27477,"ts":326462328723,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":1001556},
-{"pid":27443,"tid":27477,"ts":326462337757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462337},"tts":1001678,"id":"0xaf88a2c2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462337757,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":1001709},
-{"pid":27443,"tid":27477,"ts":326462338643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1001800,"id":"0xaf88a2daf182217a"},
-{"pid":27443,"tid":27477,"ts":326462338673,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":641,"tdur":641,"tts":1001800},
-{"pid":27443,"tid":27477,"ts":326462338734,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462337413.0,"frame_time_us":326462337600.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":580,"tdur":550,"tts":1001861},
-{"pid":27443,"tid":27477,"ts":326462338795,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462337413.0,"frame_time_us":326462337600.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":488,"tdur":489,"tts":1001922},
-{"pid":27443,"tid":27477,"ts":326462338826,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":366,"tdur":366,"tts":1001953},
-{"pid":27443,"tid":27477,"ts":326462338856,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":305,"tdur":275,"tts":1002014},
-{"pid":27443,"tid":27477,"ts":326462339161,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":30,"tts":1002289},
-{"pid":27443,"tid":27477,"ts":326462339222,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462354266},"dur":61,"tdur":61,"tts":1002350},
-{"pid":27443,"tid":27477,"ts":326462339253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1002380,"id":"0xaf88a2dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326462340291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1002563,"id":"0xaf88a2d4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462340291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":1002563},
-{"pid":27443,"tid":27477,"ts":326462340352,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":152,"tdur":153,"tts":1002624},
-{"pid":27443,"tid":27477,"ts":326462340382,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":31,"tdur":30,"tts":1002655},
-{"pid":27443,"tid":27477,"ts":326462340382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1002685,"id":"0xaf88a2d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462340443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1002716,"id":"0xaf88a72cf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462340474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1002746,"id":"0xaf88a59df3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462340535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1002807,"id":"0xaf88a2d5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462340565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3876,"tdur":3540,"tts":1002838},
-{"pid":27443,"tid":27477,"ts":326462340596,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3845,"tdur":3480,"tts":1002868},
-{"pid":27443,"tid":27477,"ts":326462340626,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3236,"tdur":2899,"tts":1002899},
-{"pid":27443,"tid":27477,"ts":326462340626,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1923,"tdur":1892,"tts":1002899},
-{"pid":27443,"tid":27477,"ts":326462340687,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":672,"tdur":610,"tts":1002991},
-{"pid":27443,"tid":27477,"ts":326462341389,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":61,"tdur":61,"tts":1003631},
-{"pid":27443,"tid":27477,"ts":326462341450,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":1003692},
-{"pid":27443,"tid":27477,"ts":326462341786,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":1004059},
-{"pid":27443,"tid":27477,"ts":326462341847,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1004089},
-{"pid":27443,"tid":27477,"ts":326462341847,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":92,"tdur":92,"tts":1004089},
-{"pid":27443,"tid":27477,"ts":326462341878,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1004120},
-{"pid":27443,"tid":27477,"ts":326462341878,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1004120},
-{"pid":27443,"tid":27477,"ts":326462341908,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1004150,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462342061,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1004333},
-{"pid":27443,"tid":27477,"ts":326462342519,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1004761},
-{"pid":27443,"tid":27477,"ts":326462342549,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":794,"tdur":489,"tts":1004791},
-{"pid":27443,"tid":27477,"ts":326462342580,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":1004822},
-{"pid":27443,"tid":27477,"ts":326462342610,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":641,"tdur":336,"tts":1004852},
-{"pid":27443,"tid":27477,"ts":326462342732,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":31,"tdur":0,"tts":1005005},
-{"pid":27443,"tid":27477,"ts":326462342793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1005035,"id":"0xaf88ab80f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462343312,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1005249,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462343343,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":122,"tdur":122,"tts":1005280},
-{"pid":27443,"tid":27477,"ts":326462343465,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":1005402},
-{"pid":27443,"tid":27477,"ts":326462343526,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":305,"tts":1005463},
-{"pid":27443,"tid":27477,"ts":326462343709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1005646,"id":"0xaf88ab81f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462343862,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":549,"tdur":550,"tts":1005798},
-{"pid":27443,"tid":27477,"ts":326462343892,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":519,"tdur":519,"tts":1005829},
-{"pid":27443,"tid":27477,"ts":326462343892,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":153,"tdur":153,"tts":1005829},
-{"pid":27443,"tid":27477,"ts":326462344045,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1006012},
-{"pid":27443,"tid":27477,"ts":326462344075,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1006012},
-{"pid":27443,"tid":27477,"ts":326462344106,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":213,"tdur":213,"tts":1006043},
-{"pid":27443,"tid":27477,"ts":326462344106,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":213,"tdur":183,"tts":1006073},
-{"pid":27443,"tid":27477,"ts":326462344136,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1006073,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462344197,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1006134},
-{"pid":27443,"tid":27477,"ts":326462344228,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":30,"tts":1006165},
-{"pid":27443,"tid":27477,"ts":326462344289,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1006256,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462344350,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1006287,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462344380,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1006317,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462344441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006378,"id":"0xaf88a2d6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462344472,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":1006409},
-{"pid":27443,"tid":27477,"ts":326462344502,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":1006439},
-{"pid":27443,"tid":27477,"ts":326462344533,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1006470,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462344533,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":31,"tts":1006500},
-{"pid":27443,"tid":27477,"ts":326462344564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1006500,"id":"0xaf88a2d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326462344625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006561,"id":"0xaf88a2d7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462344625,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":1006561},
-{"pid":27443,"tid":27477,"ts":326462344655,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":92,"tdur":91,"tts":1006592},
-{"pid":27443,"tid":27477,"ts":326462344686,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1006622,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462344686,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":1006622},
-{"pid":27443,"tid":27477,"ts":326462344716,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1006653,"id":"0xaf88a2d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462344777,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006714,"id":"0xaf88a2d0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462344777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":1006714},
-{"pid":27443,"tid":27477,"ts":326462344808,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":30,"tts":1006745},
-{"pid":27443,"tid":27477,"ts":326462344808,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1006745,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462344838,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1006775},
-{"pid":27443,"tid":27477,"ts":326462344869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1006806,"id":"0xaf88a2d1f182217a"},
-{"pid":27443,"tid":27477,"ts":326462344899,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":275,"tdur":275,"tts":1006836},
-{"pid":27443,"tid":27477,"ts":326462344899,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":275,"tdur":275,"tts":1006836},
-{"pid":27443,"tid":27477,"ts":326462344930,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1006867},
-{"pid":27443,"tid":27477,"ts":326462344930,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1006867},
-{"pid":27443,"tid":27477,"ts":326462344960,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":122,"tts":1006928},
-{"pid":27443,"tid":27477,"ts":326462344991,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":91,"tts":1006928},
-{"pid":27443,"tid":27477,"ts":326462345113,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1007050},
-{"pid":27443,"tid":27477,"ts":326462345143,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1007080},
-{"pid":27443,"tid":27477,"ts":326462345174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007111,"id":"0xaf88a2d2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462345204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":245,"tdur":244,"tts":1007141},
-{"pid":27443,"tid":27477,"ts":326462345204,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":245,"tdur":213,"tts":1007172},
-{"pid":27443,"tid":27477,"ts":326462345235,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1007172},
-{"pid":27443,"tid":27477,"ts":326462345235,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1007202},
-{"pid":27443,"tid":27477,"ts":326462345265,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":123,"tdur":91,"tts":1007233},
-{"pid":27443,"tid":27477,"ts":326462345296,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":1007233},
-{"pid":27443,"tid":27477,"ts":326462345388,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":61,"tts":1007324},
-{"pid":27443,"tid":27477,"ts":326462345418,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1007355},
-{"pid":27443,"tid":27477,"ts":326462354391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462354},"tts":1007477,"id":"0xaf88a2dbf182217a"},
-{"pid":27443,"tid":27477,"ts":326462354422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":30,"tts":1007508},
-{"pid":27443,"tid":27477,"ts":326462355459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1007630,"id":"0xaf88a2d3f182217a"},
-{"pid":27443,"tid":27477,"ts":326462355490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":1221,"tdur":763,"tts":1007660},
-{"pid":27443,"tid":27477,"ts":326462355551,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462354095.0,"frame_time_us":326462354282.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":1129,"tdur":641,"tts":1007752},
-{"pid":27443,"tid":27477,"ts":326462355612,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462354095.0,"frame_time_us":326462354282.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":1068,"tdur":611,"tts":1007782},
-{"pid":27443,"tid":27477,"ts":326462355673,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":397,"tdur":397,"tts":1007843},
-{"pid":27443,"tid":27477,"ts":326462355703,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":306,"tdur":275,"tts":1007904},
-{"pid":27443,"tid":27477,"ts":326462356009,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":61,"tdur":30,"tts":1008210},
-{"pid":27443,"tid":27477,"ts":326462356100,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462370948},"dur":580,"tdur":91,"tts":1008271},
-{"pid":27443,"tid":27477,"ts":326462356131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1008301,"id":"0xaf88a2ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326462356131,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":488,"tdur":0,"tts":1008301},
-{"pid":27443,"tid":27477,"ts":326462356741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1008454,"id":"0xaf88a2edf182217a"},
-{"pid":27443,"tid":27477,"ts":326462356772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":305,"tdur":305,"tts":1008484},
-{"pid":27443,"tid":27477,"ts":326462356833,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":213,"tdur":214,"tts":1008545},
-{"pid":27443,"tid":27477,"ts":326462356863,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":61,"tts":1008576},
-{"pid":27443,"tid":27477,"ts":326462356894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1008637,"id":"0xaf88a2eef182217a"},
-{"pid":27443,"tid":27477,"ts":326462356955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1008667,"id":"0xaf88a72df3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462356985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1008698,"id":"0xaf88a59ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462357077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1008820,"id":"0xaf88a2eef182217a"},
-{"pid":27443,"tid":27477,"ts":326462357107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3846,"tdur":3418,"tts":1008820},
-{"pid":27443,"tid":27477,"ts":326462357138,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3815,"tdur":3388,"tts":1008850},
-{"pid":27443,"tid":27477,"ts":326462357168,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3449,"tdur":3021,"tts":1008881},
-{"pid":27443,"tid":27477,"ts":326462357199,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":2167,"tdur":2167,"tts":1008911},
-{"pid":27443,"tid":27477,"ts":326462357260,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":702,"tdur":701,"tts":1008973},
-{"pid":27443,"tid":27477,"ts":326462357992,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":62,"tdur":61,"tts":1009705},
-{"pid":27443,"tid":27477,"ts":326462358084,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":1009797},
-{"pid":27443,"tid":27477,"ts":326462358481,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":31,"tts":1010193},
-{"pid":27443,"tid":27477,"ts":326462358511,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1010254},
-{"pid":27443,"tid":27477,"ts":326462358542,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":1010254},
-{"pid":27443,"tid":27477,"ts":326462358572,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":1010285},
-{"pid":27443,"tid":27477,"ts":326462358603,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1010315},
-{"pid":27443,"tid":27477,"ts":326462358633,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1010346,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462358817,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1010529},
-{"pid":27443,"tid":27477,"ts":326462359335,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1011048},
-{"pid":27443,"tid":27477,"ts":326462359366,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":915,"tdur":458,"tts":1011109},
-{"pid":27443,"tid":27477,"ts":326462359427,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1011139},
-{"pid":27443,"tid":27477,"ts":326462359457,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":763,"tdur":336,"tts":1011170},
-{"pid":27443,"tid":27477,"ts":326462359610,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":31,"tdur":30,"tts":1011323},
-{"pid":27443,"tid":27477,"ts":326462359671,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1011384,"id":"0xaf88ab82f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462360281,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1011567,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462360281,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":62,"tdur":61,"tts":1011567},
-{"pid":27443,"tid":27477,"ts":326462360373,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":1011658},
-{"pid":27443,"tid":27477,"ts":326462360373,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":1011658},
-{"pid":27443,"tid":27477,"ts":326462360526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1011811,"id":"0xaf88ab83f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462360617,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":336,"tdur":336,"tts":1011902},
-{"pid":27443,"tid":27477,"ts":326462360648,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":305,"tdur":275,"tts":1011933},
-{"pid":27443,"tid":27477,"ts":326462360648,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":1011933},
-{"pid":27443,"tid":27477,"ts":326462360770,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1012055},
-{"pid":27443,"tid":27477,"ts":326462360770,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1012055},
-{"pid":27443,"tid":27477,"ts":326462360800,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":92,"tdur":91,"tts":1012086},
-{"pid":27443,"tid":27477,"ts":326462360800,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":92,"tdur":91,"tts":1012086},
-{"pid":27443,"tid":27477,"ts":326462360800,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1012086,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462360831,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1012116},
-{"pid":27443,"tid":27477,"ts":326462360831,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":1012116},
-{"pid":27443,"tid":27477,"ts":326462360892,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1012177,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462360922,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1012208,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462360922,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1012208,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462360983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1012269,"id":"0xaf88a2eff182217a"},
-{"pid":27443,"tid":27477,"ts":326462360983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":123,"tdur":122,"tts":1012269},
-{"pid":27443,"tid":27477,"ts":326462360983,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":123,"tdur":122,"tts":1012269},
-{"pid":27443,"tid":27477,"ts":326462361014,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1012299,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462361014,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":92,"tdur":92,"tts":1012299},
-{"pid":27443,"tid":27477,"ts":326462361075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1012360,"id":"0xaf88a2e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462361106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1012391,"id":"0xaf88a2e8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462361136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1012421},
-{"pid":27443,"tid":27477,"ts":326462361136,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":1012421},
-{"pid":27443,"tid":27477,"ts":326462361136,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1012421,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462361167,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":0,"tdur":0,"tts":1012452},
-{"pid":27443,"tid":27477,"ts":326462361167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1012452,"id":"0xaf88a2ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326462361197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1012482,"id":"0xaf88a2e9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462361197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":1012482},
-{"pid":27443,"tid":27477,"ts":326462361197,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":122,"tts":1012513},
-{"pid":27443,"tid":27477,"ts":326462361228,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1012513},
-{"pid":27443,"tid":27477,"ts":326462361228,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1012513},
-{"pid":27443,"tid":27477,"ts":326462361228,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":61,"tts":1012543},
-{"pid":27443,"tid":27477,"ts":326462361258,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":31,"tts":1012543},
-{"pid":27443,"tid":27477,"ts":326462361319,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1012604},
-{"pid":27443,"tid":27477,"ts":326462361319,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1012604},
-{"pid":27443,"tid":27477,"ts":326462361350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1012635,"id":"0xaf88a2eaf182217a"},
-{"pid":27443,"tid":27477,"ts":326462361350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1012635},
-{"pid":27443,"tid":27477,"ts":326462361380,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":1012665},
-{"pid":27443,"tid":27477,"ts":326462361380,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1012665,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462361380,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1012665},
-{"pid":27443,"tid":27477,"ts":326462361411,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1012696,"id":"0xaf88a2ebf182217a"},
-{"pid":27443,"tid":27477,"ts":326462361411,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":152,"tdur":122,"tts":1012696},
-{"pid":27443,"tid":27477,"ts":326462361411,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":1012696},
-{"pid":27443,"tid":27477,"ts":326462361441,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1012727},
-{"pid":27443,"tid":27477,"ts":326462361441,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1012727},
-{"pid":27443,"tid":27477,"ts":326462361441,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":1012727},
-{"pid":27443,"tid":27477,"ts":326462361472,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":31,"tts":1012757},
-{"pid":27443,"tid":27477,"ts":326462361502,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":1012818},
-{"pid":27443,"tid":27477,"ts":326462361533,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1012818},
-{"pid":27443,"tid":27477,"ts":326462371086,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462370},"tts":1012910,"id":"0xaf88a2ecf182217a"},
-{"pid":27443,"tid":27477,"ts":326462371116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":1012940},
-{"pid":27443,"tid":27477,"ts":326462372459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1013001,"id":"0xaf88a2e4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462372459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":305,"tts":1013001},
-{"pid":27443,"tid":27477,"ts":326462372490,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462370777.0,"frame_time_us":326462370964.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":427,"tdur":274,"tts":1013032},
-{"pid":27443,"tid":27477,"ts":326462372490,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462370777.0,"frame_time_us":326462370964.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":427,"tdur":244,"tts":1013062},
-{"pid":27443,"tid":27477,"ts":326462372520,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":336,"tdur":183,"tts":1013062},
-{"pid":27443,"tid":27477,"ts":326462372551,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":274,"tdur":122,"tts":1013093},
-{"pid":27443,"tid":27477,"ts":326462372825,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":30,"tts":1013215},
-{"pid":27443,"tid":27477,"ts":326462372856,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462387630},"dur":30,"tdur":31,"tts":1013245},
-{"pid":27443,"tid":27477,"ts":326462372886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1013276,"id":"0xaf88a2e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462375420,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1013367,"id":"0xaf88a2e6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462375450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":1013398},
-{"pid":27443,"tid":27477,"ts":326462375481,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":91,"tdur":92,"tts":1013428},
-{"pid":27443,"tid":27477,"ts":326462375481,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":30,"tdur":31,"tts":1013428},
-{"pid":27443,"tid":27477,"ts":326462375511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1013459,"id":"0xaf88a2e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462375511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1013459,"id":"0xaf88a72ef3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462375542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1013490,"id":"0xaf88a599f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462375603,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1013551,"id":"0xaf88a2e7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462375603,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2350,"tdur":1983,"tts":1013551},
-{"pid":27443,"tid":27477,"ts":326462375603,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2319,"tdur":1953,"tts":1013551},
-{"pid":27443,"tid":27477,"ts":326462375633,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2015,"tdur":1618,"tts":1013581},
-{"pid":27443,"tid":27477,"ts":326462375633,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":946,"tdur":946,"tts":1013581},
-{"pid":27443,"tid":27477,"ts":326462375694,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":305,"tdur":305,"tts":1013642},
-{"pid":27443,"tid":27477,"ts":326462375999,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":31,"tdur":31,"tts":1013947},
-{"pid":27443,"tid":27477,"ts":326462376030,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":1013978},
-{"pid":27443,"tid":27477,"ts":326462376213,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":1014161},
-{"pid":27443,"tid":27477,"ts":326462376213,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1014161},
-{"pid":27443,"tid":27477,"ts":326462376244,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":1014192},
-{"pid":27443,"tid":27477,"ts":326462376244,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1014192},
-{"pid":27443,"tid":27477,"ts":326462376244,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1014192},
-{"pid":27443,"tid":27477,"ts":326462376274,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1014222,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462376335,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1014314},
-{"pid":27443,"tid":27477,"ts":326462376579,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1014527},
-{"pid":27443,"tid":27477,"ts":326462376610,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":641,"tdur":274,"tts":1014558},
-{"pid":27443,"tid":27477,"ts":326462376610,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1014558},
-{"pid":27443,"tid":27477,"ts":326462376610,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":580,"tdur":213,"tts":1014558},
-{"pid":27443,"tid":27477,"ts":326462376701,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":0,"tdur":0,"tts":1014649},
-{"pid":27443,"tid":27477,"ts":326462376732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1014680,"id":"0xaf88ab9cf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462377220,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1014802,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462377251,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":1014832},
-{"pid":27443,"tid":27477,"ts":326462377312,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":1014893},
-{"pid":27443,"tid":27477,"ts":326462377342,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":275,"tdur":275,"tts":1014924},
-{"pid":27443,"tid":27477,"ts":326462377556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1015138,"id":"0xaf88ab9df3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462377648,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":274,"tdur":275,"tts":1015229},
-{"pid":27443,"tid":27477,"ts":326462377648,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":274,"tdur":275,"tts":1015229},
-{"pid":27443,"tid":27477,"ts":326462377648,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":1015229},
-{"pid":27443,"tid":27477,"ts":326462377739,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1015321},
-{"pid":27443,"tid":27477,"ts":326462377739,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1015351},
-{"pid":27443,"tid":27477,"ts":326462377770,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":122,"tdur":122,"tts":1015351},
-{"pid":27443,"tid":27477,"ts":326462377770,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":122,"tdur":122,"tts":1015351},
-{"pid":27443,"tid":27477,"ts":326462377770,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1015351,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462377800,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1015382},
-{"pid":27443,"tid":27477,"ts":326462377800,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":1015382},
-{"pid":27443,"tid":27477,"ts":326462377861,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1015443,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462377892,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1015473,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462377922,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1015504,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462378014,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015565,"id":"0xaf88a2e0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462378044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":61,"tts":1015595},
-{"pid":27443,"tid":27477,"ts":326462378044,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":61,"tts":1015595},
-{"pid":27443,"tid":27477,"ts":326462378044,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1015626,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462378075,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":30,"tts":1015626},
-{"pid":27443,"tid":27477,"ts":326462378136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1015656,"id":"0xaf88a2e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462378166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015687,"id":"0xaf88a2e1f182217a"},
-{"pid":27443,"tid":27459,"ts":326462375664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8253044,"id":"0xaf88a72ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462375664,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":30,"tts":8253044},
-{"pid":27443,"tid":27459,"ts":326462375664,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":8253044},
-{"pid":27443,"tid":27459,"ts":326462375755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8253135,"id":"0xaf88a59af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462375755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8253135},
-{"pid":27443,"tid":27459,"ts":326462391016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8253197,"id":"0xaf88a59bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462391046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8253227},
-{"pid":27443,"tid":27459,"ts":326462391077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8253258,"id":"0xaf88a594f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462391077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8253258,"id":"0xaf88a72ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462391077,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":61,"tts":8253258},
-{"pid":27443,"tid":27459,"ts":326462391107,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8253288},
-{"pid":27443,"tid":27459,"ts":326462391168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462390},"tts":8253349,"id":"0xaf88a58bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462391199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":30,"tts":8253380},
-{"pid":27443,"tid":27459,"ts":326462391229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8253410,"id":"0xaf88a594f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462391260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":91,"tts":8253441},
-{"pid":27443,"tid":27459,"ts":326462391351,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8253441,"id":"0xaf88a595f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462391382,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8253471,"id":"0xaf88a717f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462391382,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/animation/AnimationTimeline.cpp","src_func":"wakeAfter"},"dur":61,"tdur":61,"tts":8253471},
-{"pid":27443,"tid":27459,"ts":326462391382,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":61,"tdur":61,"tts":8253471},
-{"pid":27443,"tid":27459,"ts":326462391412,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":8253502},
-{"pid":27443,"tid":27459,"ts":326462391412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8253502,"id":"0xaf88a2f9f182217a"},
-{"pid":27443,"tid":27459,"ts":326462391473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8253563,"id":"0xaf88a595f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462391473,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":8253563},
-{"pid":27443,"tid":27459,"ts":326462391534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8253593},
-{"pid":27443,"tid":27459,"ts":326462407344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8253715,"id":"0xaf88a596f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462407405,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6165,"tdur":5677,"tts":8253776},
-{"pid":27443,"tid":27459,"ts":326462407497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8253868,"id":"0xaf88a597f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462407527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8253898,"id":"0xaf88a728f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462407558,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5982,"tdur":5494,"tts":8253929},
-{"pid":27443,"tid":27459,"ts":326462407588,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":181},"tts":8253960},
-{"pid":27443,"tid":27459,"ts":326462407619,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":31,"tts":8253990},
-{"pid":27443,"tid":27459,"ts":326462407710,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":794,"tdur":396,"tts":8254082},
-{"pid":27443,"tid":27459,"ts":326462407771,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":702,"tdur":305,"tts":8254143},
-{"pid":27443,"tid":27459,"ts":326462407771,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":61,"tts":8254143},
-{"pid":27443,"tid":27459,"ts":326462408504,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":427,"tdur":367,"tts":8254478},
-{"pid":27443,"tid":27459,"ts":326462408961,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":153,"tdur":153,"tts":8254875},
-{"pid":27443,"tid":27459,"ts":326462409114,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":3357,"tdur":3326,"tts":8255028},
-{"pid":27443,"tid":27459,"ts":326462409206,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8255119},
-{"pid":27443,"tid":27459,"ts":326462409236,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":61,"tdur":31,"tts":8255180},
-{"pid":27443,"tid":27459,"ts":326462409297,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8255211},
-{"pid":27443,"tid":27459,"ts":326462411098,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":9,"counters":true},"tts":8257012},
-{"pid":27443,"tid":27459,"ts":326462411159,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":9},"tts":8257073},
-{"pid":27443,"tid":27459,"ts":326462411220,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1221,"tdur":1190,"tts":8257164},
-{"pid":27443,"tid":27459,"ts":326462411281,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":977,"tdur":976,"tts":8257195},
-{"pid":27443,"tid":27459,"ts":326462411312,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":854,"tdur":824,"tts":8257256},
-{"pid":27443,"tid":27459,"ts":326462412227,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":30,"tts":8258141},
-{"pid":27443,"tid":27459,"ts":326462412288,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":8258202},
-{"pid":27443,"tid":27459,"ts":326462412349,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":92,"tdur":31,"tts":8258293},
-{"pid":27443,"tid":27459,"ts":326462412349,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":8258293},
-{"pid":27443,"tid":27459,"ts":326462412471,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":181},"dur":672,"tdur":641,"tts":8258385},
-{"pid":27443,"tid":27459,"ts":326462412502,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":610,"tdur":610,"tts":8258416},
-{"pid":27443,"tid":27459,"ts":326462413143,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":122,"tdur":123,"tts":8259056},
-{"pid":27443,"tid":27459,"ts":326462413173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8259087,"id":"0xaf88a288f182217a"},
-{"pid":27443,"tid":27459,"ts":326462413265,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":8259179,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462413295,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8259209,"id":"0xaf88a289f182217a"},
-{"pid":27443,"tid":27459,"ts":326462413417,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":7606},"tts":8259331,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462413448,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8259362,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462413479,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8259423},
-{"pid":27443,"tid":27459,"ts":326462413631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8259545,"id":"0xaf88a597f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462413662,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":8259575},
-{"pid":27443,"tid":27459,"ts":326462413692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8259636,"id":"0xaf88a590f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462413753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8259667,"id":"0xaf88a729f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462413753,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":92,"tdur":61,"tts":8259697},
-{"pid":27443,"tid":27459,"ts":326462413784,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":61,"tdur":31,"tts":8259697},
-{"pid":27443,"tid":27466,"ts":326462377129,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":441324},
-{"pid":27443,"tid":27466,"ts":326462377129,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441324,"id":"0xc4c2540a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462377617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":441416,"id":"0xaf88ab9df3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462377648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":441446},
-{"pid":27443,"tid":27466,"ts":326462377648,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441446,"id":"0xccc64602"},
-{"pid":27443,"tid":27466,"ts":326462388543,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":441538},
-{"pid":27443,"tid":27466,"ts":326462388574,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":441568},
-{"pid":27443,"tid":27466,"ts":326462388604,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441599,"id":"0xba46f102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462388635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":441629,"id":"0xaf88a2fdf182217a"},
-{"pid":27443,"tid":27466,"ts":326462390619,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":441721},
-{"pid":27443,"tid":27466,"ts":326462390649,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":92,"tts":441751},
-{"pid":27443,"tid":27466,"ts":326462390649,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441751,"id":"0xba46f202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462390710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":441812,"id":"0xaf88a2fff182217a"},
-{"pid":27443,"tid":27466,"ts":326462393854,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":441934,"id":"0xaf88ab9ef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462393854,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":441934},
-{"pid":27443,"tid":27466,"ts":326462393854,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":441965,"id":"0xccc64706"},
-{"pid":27443,"tid":27466,"ts":326462394159,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":442026},
-{"pid":27443,"tid":27466,"ts":326462394190,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":442057},
-{"pid":27443,"tid":27466,"ts":326462394190,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":442057,"id":"0xc4c2570a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462394556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":442148,"id":"0xaf88ab9ff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462394556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":442148},
-{"pid":27443,"tid":27466,"ts":326462394586,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":442179,"id":"0xccc64802"},
-{"pid":27443,"tid":27466,"ts":326462405360,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":275,"tdur":214,"tts":442270},
-{"pid":27443,"tid":27466,"ts":326462405360,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":442270},
-{"pid":27443,"tid":27466,"ts":326462405452,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":152,"tdur":122,"tts":442331},
-{"pid":27443,"tid":27466,"ts":326462405482,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":442362,"id":"0xba46f402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462405543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":442392,"id":"0xaf88a2f7f182217a"},
-{"pid":27443,"tid":27466,"ts":326462406703,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":183,"tts":442545},
-{"pid":27443,"tid":27466,"ts":326462406734,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":152,"tdur":122,"tts":442575},
-{"pid":27443,"tid":27466,"ts":326462406764,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":442606,"id":"0xba46f502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462406795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":442636,"id":"0xaf88a2f1f182217a"},
-{"pid":27443,"tid":27466,"ts":326462409328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":442820,"id":"0xaf88ab98f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462409358,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":442850},
-{"pid":27443,"tid":27466,"ts":326462409358,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":442850,"id":"0xccc64906"},
-{"pid":27443,"tid":27466,"ts":326462409572,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":91,"tts":442942},
-{"pid":27443,"tid":27466,"ts":326462409602,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":442972},
-{"pid":27443,"tid":27466,"ts":326462409633,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":443003,"id":"0xc4c25a0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462410243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":443125,"id":"0xaf88ab99f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462410243,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":443125},
-{"pid":27443,"tid":27466,"ts":326462410274,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":443155,"id":"0xccc64a02"},
-{"pid":27443,"tid":27466,"ts":326462422207,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":367,"tdur":367,"tts":443277},
-{"pid":27443,"tid":27466,"ts":326462422299,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":244,"tdur":214,"tts":443369},
-{"pid":27443,"tid":27466,"ts":326462422329,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":443399,"id":"0xba46f702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462422421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":443522,"id":"0xaf88a28af182217a"},
-{"pid":27443,"tid":27466,"ts":326462423733,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":306,"tdur":274,"tts":443827},
-{"pid":27443,"tid":27466,"ts":326462423733,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":443827},
-{"pid":27443,"tid":27466,"ts":326462423825,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":183,"tdur":153,"tts":443918},
-{"pid":27443,"tid":27466,"ts":326462423855,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":443918,"id":"0xba46f802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462423916,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":444010,"id":"0xaf88a284f182217a"},
-{"pid":27443,"tid":27466,"ts":326462427304,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":444193,"id":"0xaf88ab9af3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462427335,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":444223},
-{"pid":27443,"tid":27466,"ts":326462427335,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":444223,"id":"0xccc64b06"},
-{"pid":27443,"tid":27466,"ts":326462427640,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":61,"tdur":61,"tts":444346},
-{"pid":27443,"tid":27466,"ts":326462427670,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":444376},
-{"pid":27443,"tid":27466,"ts":326462427670,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":444376,"id":"0xc4c25d0a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462428983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":444498,"id":"0xaf88ab9bf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462429013,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":444529},
-{"pid":27443,"tid":27466,"ts":326462429013,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":444529,"id":"0xccc64c02"},
-{"pid":27443,"tid":27466,"ts":326462430631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":444712,"id":"0xaf88ab94f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462430661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":444712},
-{"pid":27443,"tid":27466,"ts":326462430661,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":444712,"id":"0xccc64d02"},
-{"pid":27443,"tid":27466,"ts":326462438749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":153,"tts":444864},
-{"pid":27443,"tid":27466,"ts":326462438780,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":122,"tts":444895},
-{"pid":27443,"tid":27466,"ts":326462438780,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":444895,"id":"0xba46fa02","bp":"e"},
-{"pid":27443,"tid":27477,"ts":326462378166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":1015687},
-{"pid":27443,"tid":27477,"ts":326462378197,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":1015718},
-{"pid":27443,"tid":27477,"ts":326462378227,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1015748,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462378227,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":1015748},
-{"pid":27443,"tid":27477,"ts":326462378227,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1015748,"id":"0xaf88a2fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326462378258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015779,"id":"0xaf88a2e2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462378258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":122,"tts":1015809},
-{"pid":27443,"tid":27477,"ts":326462378289,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":1015809},
-{"pid":27443,"tid":27477,"ts":326462378289,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":1015809},
-{"pid":27443,"tid":27477,"ts":326462378289,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":1015809},
-{"pid":27443,"tid":27477,"ts":326462378319,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":1015840},
-{"pid":27443,"tid":27477,"ts":326462378319,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":1015840},
-{"pid":27443,"tid":27477,"ts":326462378380,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1015901},
-{"pid":27443,"tid":27477,"ts":326462378411,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1015931},
-{"pid":27443,"tid":27477,"ts":326462378441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015962,"id":"0xaf88a2e3f182217a"},
-{"pid":27443,"tid":27477,"ts":326462378441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":30,"tts":1015962},
-{"pid":27443,"tid":27477,"ts":326462378441,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":30,"tts":1015962},
-{"pid":27443,"tid":27477,"ts":326462378441,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1015962,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462378472,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1015992},
-{"pid":27443,"tid":27477,"ts":326462378472,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1015992,"id":"0xaf88a2fcf182217a"},
-{"pid":27443,"tid":27477,"ts":326462378502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":122,"tdur":122,"tts":1016023},
-{"pid":27443,"tid":27477,"ts":326462378502,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":1016023},{"pid":27443,"tid":27477,"ts":326462378502,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1016023},
-{"pid":27443,"tid":27477,"ts":326462378502,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":1016053},
-{"pid":27443,"tid":27477,"ts":326462378533,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":1016053},
-{"pid":27443,"tid":27477,"ts":326462378533,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":1016053},
-{"pid":27443,"tid":27477,"ts":326462378594,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":1016114},
-{"pid":27443,"tid":27477,"ts":326462378594,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":1016114},
-{"pid":27443,"tid":27477,"ts":326462387719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462387},"tts":1016206,"id":"0xaf88a2e5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462387719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":0,"tts":1016236},
-{"pid":27443,"tid":27477,"ts":326462388696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1016297,"id":"0xaf88a2fdf182217a"},
-{"pid":27443,"tid":27477,"ts":326462388726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":794,"tdur":732,"tts":1016328},
-{"pid":27443,"tid":27477,"ts":326462388788,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462387458.0,"frame_time_us":326462387645.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":701,"tdur":641,"tts":1016389},
-{"pid":27443,"tid":27477,"ts":326462388849,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462387458.0,"frame_time_us":326462387645.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":640,"tdur":580,"tts":1016450},
-{"pid":27443,"tid":27477,"ts":326462388910,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":488,"tdur":427,"tts":1016511},
-{"pid":27443,"tid":27477,"ts":326462388910,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":31,"tts":1016511},
-{"pid":27443,"tid":27477,"ts":326462389032,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":305,"tdur":305,"tts":1016572},
-{"pid":27443,"tid":27477,"ts":326462389337,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":0,"tts":1016908},
-{"pid":27443,"tid":27477,"ts":326462389398,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462404311},"dur":91,"tdur":61,"tts":1016969},
-{"pid":27443,"tid":27477,"ts":326462389459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1016999,"id":"0xaf88a2fef182217a"},
-{"pid":27443,"tid":27477,"ts":326462390771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1017183,"id":"0xaf88a2fff182217a"},
-{"pid":27443,"tid":27477,"ts":326462390802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":244,"tts":1017213},
-{"pid":27443,"tid":27477,"ts":326462390832,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":184,"tdur":153,"tts":1017274},
-{"pid":27443,"tid":27477,"ts":326462390863,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":30,"tts":1017305},
-{"pid":27443,"tid":27477,"ts":326462390893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1017335,"id":"0xaf88a2f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462390954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1017366,"id":"0xaf88a72ff3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462390985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1017396,"id":"0xaf88a59bf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462391046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1017457,"id":"0xaf88a2f8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462391077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3815,"tdur":3387,"tts":1017488},
-{"pid":27443,"tid":27477,"ts":326462391107,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3785,"tdur":3357,"tts":1017518},
-{"pid":27443,"tid":27477,"ts":326462391107,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":3479,"tdur":3052,"tts":1017518},
-{"pid":27443,"tid":27477,"ts":326462391138,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":2289,"tdur":2198,"tts":1017579},
-{"pid":27443,"tid":27477,"ts":326462391229,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":794,"tdur":763,"tts":1017640},
-{"pid":27443,"tid":27477,"ts":326462392023,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":91,"tdur":61,"tts":1018403},
-{"pid":27443,"tid":27477,"ts":326462392114,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":1018495},
-{"pid":27443,"tid":27477,"ts":326462392511,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":1018922},
-{"pid":27443,"tid":27477,"ts":326462392572,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1018953},
-{"pid":27443,"tid":27477,"ts":326462392572,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":1018953},
-{"pid":27443,"tid":27477,"ts":326462392603,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":1018983},
-{"pid":27443,"tid":27477,"ts":326462392633,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1019014},
-{"pid":27443,"tid":27477,"ts":326462392664,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1019044,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462392847,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1019227},
-{"pid":27443,"tid":27477,"ts":326462393396,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1019777},
-{"pid":27443,"tid":27477,"ts":326462393427,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":854,"tdur":458,"tts":1019807},
-{"pid":27443,"tid":27477,"ts":326462393457,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":61,"tdur":61,"tts":1019838},
-{"pid":27443,"tid":27477,"ts":326462393457,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1019838},
-{"pid":27443,"tid":27477,"ts":326462393518,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":733,"tdur":336,"tts":1019899},
-{"pid":27443,"tid":27477,"ts":326462393671,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":30,"tdur":31,"tts":1020051},
-{"pid":27443,"tid":27477,"ts":326462393732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1020112,"id":"0xaf88ab9ef3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462394281,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1020265,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462394312,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":61,"tdur":61,"tts":1020296},
-{"pid":27443,"tid":27477,"ts":326462394373,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":1020357},
-{"pid":27443,"tid":27477,"ts":326462394403,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1020387},
-{"pid":27443,"tid":27477,"ts":326462394495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1020479,"id":"0xaf88ab9ff3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462394586,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":275,"tdur":275,"tts":1020570},
-{"pid":27443,"tid":27477,"ts":326462394586,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":275,"tdur":275,"tts":1020570},
-{"pid":27443,"tid":27477,"ts":326462394586,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":61,"tts":1020601},
-{"pid":27443,"tid":27477,"ts":326462394678,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1020662},
-{"pid":27443,"tid":27477,"ts":326462394708,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1020692},
-{"pid":27443,"tid":27477,"ts":326462394708,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":123,"tdur":122,"tts":1020692},
-{"pid":27443,"tid":27477,"ts":326462394708,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":123,"tdur":122,"tts":1020692},
-{"pid":27443,"tid":27477,"ts":326462394739,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1020723,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462394739,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":30,"tts":1020723},
-{"pid":27443,"tid":27477,"ts":326462394770,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":30,"tdur":31,"tts":1020753},
-{"pid":27443,"tid":27477,"ts":326462394800,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1020784,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462394831,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1020814,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462394861,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1020845,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462394892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020875,"id":"0xaf88a2f9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462394892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":30,"tdur":31,"tts":1020875},
-{"pid":27443,"tid":27477,"ts":326462394922,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":0,"tdur":0,"tts":1020906},
-{"pid":27443,"tid":27477,"ts":326462394953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1020937,"id":"0xaf88a2faf182217a"},
-{"pid":27443,"tid":27477,"ts":326462394983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":1020967},
-{"pid":27443,"tid":27477,"ts":326462394983,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":92,"tdur":92,"tts":1020967},
-{"pid":27443,"tid":27477,"ts":326462394983,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1020967,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462395014,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":61,"tdur":30,"tts":1020998},
-{"pid":27443,"tid":27477,"ts":326462395044,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1021028,"id":"0xaf88a2f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462395075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1021059,"id":"0xaf88a2fbf182217a"},
-{"pid":27443,"tid":27477,"ts":326462395075,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1021059},
-{"pid":27443,"tid":27477,"ts":326462395105,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":31,"tdur":31,"tts":1021089},
-{"pid":27443,"tid":27477,"ts":326462395105,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1021089,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462395105,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":1021089},
-{"pid":27443,"tid":27477,"ts":326462395136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1021120,"id":"0xaf88a2f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462395166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1021150,"id":"0xaf88a2f4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462395166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":1021150},
-{"pid":27443,"tid":27477,"ts":326462395166,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":1021150},
-{"pid":27443,"tid":27477,"ts":326462395166,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1021150,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462395197,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1021181},
-{"pid":27443,"tid":27477,"ts":326462395197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1021181,"id":"0xaf88a2f5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462395227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":1021211},
-{"pid":27443,"tid":27477,"ts":326462395227,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":122,"tdur":122,"tts":1021211},
-{"pid":27443,"tid":27477,"ts":326462395227,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1021211},
-{"pid":27443,"tid":27477,"ts":326462395227,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1021211},
-{"pid":27443,"tid":27477,"ts":326462395258,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":61,"tdur":61,"tts":1021242},
-{"pid":27443,"tid":27477,"ts":326462395258,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":1021242},
-{"pid":27443,"tid":27477,"ts":326462395319,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1021333},
-{"pid":27443,"tid":27477,"ts":326462395349,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1021333},
-{"pid":27443,"tid":27477,"ts":326462395380,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1021364,"id":"0xaf88a2f6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462395380,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":152,"tts":1021364},
-{"pid":27443,"tid":27477,"ts":326462395380,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":122,"tdur":122,"tts":1021364},
-{"pid":27443,"tid":27477,"ts":326462395410,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1021394},
-{"pid":27443,"tid":27477,"ts":326462395410,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1021394},
-{"pid":27443,"tid":27477,"ts":326462395410,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":61,"tdur":61,"tts":1021394},
-{"pid":27443,"tid":27477,"ts":326462395441,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":30,"tdur":30,"tts":1021425},
-{"pid":27443,"tid":27477,"ts":326462395502,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1021486},
-{"pid":27443,"tid":27477,"ts":326462395502,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1021486},
-{"pid":27443,"tid":27477,"ts":326462404414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462404},"tts":1021547,"id":"0xaf88a2fef182217a"},
-{"pid":27443,"tid":27477,"ts":326462404444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":1021577},
-{"pid":27443,"tid":27477,"ts":326462405757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1021669,"id":"0xaf88a2f7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462405787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":458,"tts":1021669},
-{"pid":27443,"tid":27477,"ts":326462405848,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462404140.0,"frame_time_us":326462404327.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":397,"tdur":397,"tts":1021730},
-{"pid":27443,"tid":27477,"ts":326462405879,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462404140.0,"frame_time_us":326462404327.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":366,"tdur":336,"tts":1021791},
-{"pid":27443,"tid":27477,"ts":326462405940,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":214,"tdur":213,"tts":1021822},
-{"pid":27443,"tid":27477,"ts":326462405940,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":183,"tdur":183,"tts":1021822},
-{"pid":27443,"tid":27477,"ts":326462406123,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":30,"tts":1022005},
-{"pid":27443,"tid":27477,"ts":326462406184,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462420993},"dur":31,"tdur":30,"tts":1022066},
-{"pid":27443,"tid":27477,"ts":326462406215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1022096,"id":"0xaf88a2f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462406978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1022188,"id":"0xaf88a2f1f182217a"},
-{"pid":27443,"tid":27477,"ts":326462407008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":397,"tts":1022218},
-{"pid":27443,"tid":27477,"ts":326462407039,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":335,"tdur":336,"tts":1022249},
-{"pid":27443,"tid":27477,"ts":326462407039,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":181},"tts":1022279},
-{"pid":27443,"tid":27477,"ts":326462407191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1022401,"id":"0xaf88a728f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462407222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1022432,"id":"0xaf88a596f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462407252,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":1022493},
-{"pid":27443,"tid":27477,"ts":326462407283,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_REGULAR","deadline":326462397640},"dur":61,"tdur":61,"tts":1022493},
-{"pid":27443,"tid":27477,"ts":326462407313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1022524,"id":"0xaf88a2f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462407344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1022554,"id":"0xaf88a729f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462407405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1022615,"id":"0xaf88a2f2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462407435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":3327,"tdur":2991,"tts":1022646},
-{"pid":27443,"tid":27477,"ts":326462407466,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":3266,"tdur":2930,"tts":1022676},
-{"pid":27443,"tid":27477,"ts":326462407497,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2777,"tdur":2441,"tts":1022707},
-{"pid":27443,"tid":27477,"ts":326462407527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1526,"tdur":1526,"tts":1022737},
-{"pid":27443,"tid":27477,"ts":326462407558,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":457,"tdur":458,"tts":1022768},
-{"pid":27443,"tid":27477,"ts":326462408046,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":30,"tdur":31,"tts":1023256},
-{"pid":27443,"tid":27477,"ts":326462408107,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":1023317},
-{"pid":27443,"tid":27477,"ts":326462408351,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":31,"tts":1023561},
-{"pid":27443,"tid":27477,"ts":326462408382,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1023592},
-{"pid":27443,"tid":27477,"ts":326462408412,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1023622},
-{"pid":27443,"tid":27477,"ts":326462408412,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1023622},
-{"pid":27443,"tid":27477,"ts":326462408412,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":1023653},
-{"pid":27443,"tid":27477,"ts":326462408443,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1023653,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462408565,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1023805},
-{"pid":27443,"tid":27477,"ts":326462409023,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1024233},
-{"pid":27443,"tid":27477,"ts":326462409053,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":366,"tts":1024263},
-{"pid":27443,"tid":27477,"ts":326462409084,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1024294},
-{"pid":27443,"tid":27477,"ts":326462409084,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":610,"tdur":274,"tts":1024294},
-{"pid":27443,"tid":27477,"ts":326462409206,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":0,"tdur":0,"tts":1024416},
-{"pid":27443,"tid":27477,"ts":326462409236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1024446,"id":"0xaf88ab98f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462409724,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1024599,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462409755,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":122,"tdur":123,"tts":1024629},
-{"pid":27443,"tid":27477,"ts":326462409877,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":31,"tdur":30,"tts":1024752},
-{"pid":27443,"tid":27477,"ts":326462409908,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":335,"tdur":336,"tts":1024782},
-{"pid":27443,"tid":27477,"ts":326462410152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1025026,"id":"0xaf88ab99f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462410274,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":458,"tdur":458,"tts":1025148},
-{"pid":27443,"tid":27477,"ts":326462410304,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":428,"tdur":427,"tts":1025179},
-{"pid":27443,"tid":27477,"ts":326462410304,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":1025179},
-{"pid":27443,"tid":27477,"ts":326462410457,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1025331},
-{"pid":27443,"tid":27477,"ts":326462410457,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1025331},
-{"pid":27443,"tid":27477,"ts":326462410488,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":1025362},
-{"pid":27443,"tid":27477,"ts":326462410488,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":1025362},
-{"pid":27443,"tid":27477,"ts":326462410518,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1025392,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462410549,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":1025423},
-{"pid":27443,"tid":27477,"ts":326462410579,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":31,"tdur":30,"tts":1025454},
-{"pid":27443,"tid":27477,"ts":326462410640,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1025515,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462410701,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1025576,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462410701,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1025576,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462411067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1025698,"id":"0xaf88a2f3f182217a"},
-{"pid":27443,"tid":27477,"ts":326462411098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":1025728},
-{"pid":27443,"tid":27477,"ts":326462411098,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":1025728},
-{"pid":27443,"tid":27477,"ts":326462411128,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1025759,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462411159,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":1025789},
-{"pid":27443,"tid":27477,"ts":326462411159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1025789,"id":"0xaf88a28ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462411189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1025850,"id":"0xaf88a28cf182217a"},
-{"pid":27443,"tid":27471,"ts":326462410976,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":30,"tts":509049},
-{"pid":27443,"tid":27471,"ts":326462411006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509079,"id":"0xaf88a28df182217a"},
-{"pid":27443,"tid":27471,"ts":326462429380,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":509110},
-{"pid":27443,"tid":27471,"ts":326462429410,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":509140},
-{"pid":27443,"tid":27471,"ts":326462429441,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509171,"id":"0xaf88a280f182217a"},
-{"pid":27443,"tid":27471,"ts":326462429441,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":30,"tts":509171},
-{"pid":27443,"tid":27471,"ts":326462429471,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":509201},
-{"pid":27443,"tid":27471,"ts":326462429471,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509201,"id":"0xaf88a281f182217a"},
-{"pid":27443,"tid":27471,"ts":326462429502,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":30,"tdur":30,"tts":509232},
-{"pid":27443,"tid":27471,"ts":326462429502,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":509232},
-{"pid":27443,"tid":27471,"ts":326462429502,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509232,"id":"0xaf88a282f182217a"},
-{"pid":27443,"tid":27471,"ts":326462431547,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":509293},
-{"pid":27443,"tid":27471,"ts":326462431577,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":509323},
-{"pid":27443,"tid":27471,"ts":326462431577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509323,"id":"0xaf88a283f182217a"},
-{"pid":27443,"tid":27471,"ts":326462431608,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":91,"tdur":61,"tts":509354},
-{"pid":27443,"tid":27471,"ts":326462431608,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":30,"tdur":31,"tts":509354},
-{"pid":27443,"tid":27471,"ts":326462431608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509354,"id":"0xaf88a29cf182217a"},
-{"pid":27443,"tid":27469,"ts":326462431608,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":183,"tdur":122,"tts":529406},
-{"pid":27443,"tid":27469,"ts":326462431699,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":529467},
-{"pid":27443,"tid":27469,"ts":326462431730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":529497,"id":"0xaf88a29df182217a"},
-{"pid":27443,"tid":27471,"ts":326462472047,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":122,"tdur":91,"tts":509446},
-{"pid":27443,"tid":27471,"ts":326462472108,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":509476},
-{"pid":27443,"tid":27471,"ts":326462472139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509507,"id":"0xaf88a290f182217a"},
-{"pid":27443,"tid":27471,"ts":326462472169,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":61,"tdur":61,"tts":509537},
-{"pid":27443,"tid":27471,"ts":326462472200,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":0,"tdur":0,"tts":509568},
-{"pid":27443,"tid":27471,"ts":326462472200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509568,"id":"0xaf88a291f182217a"},
-{"pid":27443,"tid":27471,"ts":326462472230,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":31,"tdur":31,"tts":509598},
-{"pid":27443,"tid":27471,"ts":326462472230,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":31,"tdur":31,"tts":509598},
-{"pid":27443,"tid":27471,"ts":326462472261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509629,"id":"0xaf88a292f182217a"},
-{"pid":27443,"tid":27546,"ts":326462516088,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":6074,"tdur":5890,"tts":74256},
-{"pid":27443,"tid":27546,"ts":326462516119,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":74286},
-{"pid":27443,"tid":27496,"ts":326462516820,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":3999,"tdur":3937,"tts":85396},
-{"pid":27443,"tid":27496,"ts":326462516851,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":85426},
-{"pid":27443,"tid":27496,"ts":326462520758,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":89302},
-{"pid":27443,"tid":27546,"ts":326462522131,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80115},
-{"pid":27443,"tid":27498,"ts":326462525977,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1861,"tdur":1862,"tts":90950},
-{"pid":27443,"tid":27498,"ts":326462525977,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":90981},
-{"pid":27443,"tid":27498,"ts":326462527808,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":92781},
-{"pid":27443,"tid":27496,"ts":326462532477,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":11812,"tdur":8912,"tts":89424},
-{"pid":27443,"tid":27496,"ts":326462532508,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":89455},
-{"pid":27443,"tid":27546,"ts":326462532691,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":274,"tts":80177},
-{"pid":27443,"tid":27546,"ts":326462532691,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80207},
-{"pid":27443,"tid":27546,"ts":326462532966,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80451},
-{"pid":27443,"tid":27498,"ts":326462535468,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":1008,"tdur":976,"tts":92904},
-{"pid":27443,"tid":27498,"ts":326462535499,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":92904},
-{"pid":27443,"tid":27546,"ts":326462535957,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":366,"tdur":336,"tts":80512},
-{"pid":27443,"tid":27546,"ts":326462535987,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80543},
-{"pid":27443,"tid":27546,"ts":326462536323,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80848},
-{"pid":27443,"tid":27498,"ts":326462536445,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":93850},
-{"pid":27443,"tid":27546,"ts":326462539619,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":275,"tdur":275,"tts":80909},
-{"pid":27443,"tid":27546,"ts":326462539650,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":80940},
-{"pid":27443,"tid":27546,"ts":326462539863,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":81153},
-{"pid":27443,"tid":27498,"ts":326462540565,"ph":"X","cat":"toplevel","name":"WorkerThread::ThreadMain::Run","args":{"src_file":"../../gin/v8_platform.cc","src_func":"CallOnBackgroundThread"},"dur":2472,"tdur":672,"tts":93941},
-{"pid":27443,"tid":27498,"ts":326462540596,"ph":"B","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":93941},
-{"pid":27443,"tid":27498,"ts":326462543007,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":94582},
-{"pid":27443,"tid":27496,"ts":326462544258,"ph":"E","cat":"v8","name":"V8.RecompileConcurrent","args":{},"tts":98336},
-{"pid":27443,"tid":27471,"ts":326462638322,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":3205,"tdur":152,"tts":509690},
-{"pid":27443,"tid":27471,"ts":326462638383,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":3144,"tdur":61,"tts":509751},
-{"pid":27443,"tid":27469,"ts":326462638505,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":49352,"tdur":48771,"tts":529620},
-{"pid":27443,"tid":27469,"ts":326462638536,"ph":"X","cat":"cc","name":"ImageDecodeTaskImpl::RunOnWorkerThread","args":{},"dur":49290,"tdur":48741,"tts":529620},
-{"pid":27443,"tid":27469,"ts":326462638536,"ph":"B","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":529650},
-{"pid":27443,"tid":27469,"ts":326462638566,"ph":"E","cat":"skia","name":"SkPixelRef::lockPixelsMutex","args":{},"tts":529650},
-{"pid":27443,"tid":27469,"ts":326462638597,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":32874496,"free":4874240},"tts":529681},
-{"pid":27443,"tid":27469,"ts":326462638627,"ph":"X","cat":"blink","name":"DecodingImageGenerator::getPixels","args":{"index":0},"dur":49169,"tdur":48619,"tts":529711},
-{"pid":27443,"tid":27477,"ts":326462411220,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":1025850},
-{"pid":27443,"tid":27477,"ts":326462411251,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":91,"tts":1025881},
-{"pid":27443,"tid":27477,"ts":326462411281,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1025911,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462411281,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":61,"tts":1025911},
-{"pid":27443,"tid":27477,"ts":326462411312,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1025942,"id":"0xaf88a28ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462411342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1026003,"id":"0xaf88a28df182217a"},
-{"pid":27443,"tid":27477,"ts":326462411373,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1026003},
-{"pid":27443,"tid":27477,"ts":326462411373,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":1026003},
-{"pid":27443,"tid":27477,"ts":326462411403,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1026033,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462411403,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":31,"tts":1026033},
-{"pid":27443,"tid":27477,"ts":326462411434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1026064,"id":"0xaf88a28ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462411464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":245,"tts":1026094},
-{"pid":27443,"tid":27477,"ts":326462411464,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":244,"tdur":245,"tts":1026094},
-{"pid":27443,"tid":27477,"ts":326462411495,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1026125},
-{"pid":27443,"tid":27477,"ts":326462411495,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1026125},
-{"pid":27443,"tid":27477,"ts":326462411525,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":123,"tts":1026155},
-{"pid":27443,"tid":27477,"ts":326462411556,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":1026186},
-{"pid":27443,"tid":27477,"ts":326462411647,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":61,"tdur":61,"tts":1026278},
-{"pid":27443,"tid":27477,"ts":326462411678,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1026308},
-{"pid":27443,"tid":27477,"ts":326462411708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1026339,"id":"0xaf88a28ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462411739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":213,"tdur":214,"tts":1026369},
-{"pid":27443,"tid":27477,"ts":326462411739,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":213,"tdur":214,"tts":1026369},
-{"pid":27443,"tid":27477,"ts":326462411769,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1026400},
-{"pid":27443,"tid":27477,"ts":326462411769,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1026400},
-{"pid":27443,"tid":27477,"ts":326462411800,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":92,"tts":1026430},
-{"pid":27443,"tid":27477,"ts":326462411800,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":1026430},
-{"pid":27443,"tid":27477,"ts":326462411891,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":30,"tts":1026522},
-{"pid":27443,"tid":27477,"ts":326462411922,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1026552},
-{"pid":27443,"tid":27477,"ts":326462413265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1026644,"id":"0xaf88a288f182217a"},
-{"pid":27443,"tid":27477,"ts":326462413295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":31,"tdur":31,"tts":1026674},
-{"pid":27443,"tid":27477,"ts":326462413295,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":31,"tts":1026674},
-{"pid":27443,"tid":27477,"ts":326462413356,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1026735,"id":"0xaf88a289f182217a"},
-{"pid":27443,"tid":27477,"ts":326462413356,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":123,"tdur":92,"tts":1026735},
-{"pid":27443,"tid":27477,"ts":326462413387,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":1026766},
-{"pid":27443,"tid":27477,"ts":326462413417,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":31,"tdur":0,"tts":1026827},
-{"pid":27443,"tid":27477,"ts":326462421139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462421},"tts":1026919,"id":"0xaf88a2f0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462421139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":1026919},
-{"pid":27443,"tid":27477,"ts":326462422574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1026980,"id":"0xaf88a28af182217a"},
-{"pid":27443,"tid":27477,"ts":326462422574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":457,"tdur":457,"tts":1026980},
-{"pid":27443,"tid":27477,"ts":326462422635,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462420821.0,"frame_time_us":326462421008.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":396,"tdur":396,"tts":1027041},
-{"pid":27443,"tid":27477,"ts":326462422665,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462420821.0,"frame_time_us":326462421008.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":366,"tdur":366,"tts":1027071},
-{"pid":27443,"tid":27477,"ts":326462422726,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":244,"tdur":244,"tts":1027132},
-{"pid":27443,"tid":27477,"ts":326462422757,"ph":"X","cat":"cc","name":"AnimationRegistrar::AnimateLayers","args":{},"dur":183,"tdur":183,"tts":1027163},
-{"pid":27443,"tid":27477,"ts":326462422940,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":30,"tdur":30,"tts":1027346},
-{"pid":27443,"tid":27477,"ts":326462422970,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462437674},"dur":31,"tdur":31,"tts":1027376},
-{"pid":27443,"tid":27477,"ts":326462423001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027407,"id":"0xaf88a28bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462424039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1027529,"id":"0xaf88a284f182217a"},
-{"pid":27443,"tid":27477,"ts":326462424039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":793,"tdur":397,"tts":1027529},
-{"pid":27443,"tid":27477,"ts":326462424069,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":763,"tdur":367,"tts":1027559},
-{"pid":27443,"tid":27477,"ts":326462424100,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":182},"tts":1027590},
-{"pid":27443,"tid":27477,"ts":326462424191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1027712,"id":"0xaf88a724f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462424222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027712,"id":"0xaf88a5acf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462424283,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":1027773},
-{"pid":27443,"tid":27477,"ts":326462424313,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_REGULAR","deadline":326462414321},"dur":31,"tdur":30,"tts":1027804},
-{"pid":27443,"tid":27477,"ts":326462424344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027834,"id":"0xaf88a285f182217a"},
-{"pid":27443,"tid":27477,"ts":326462424374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1027865,"id":"0xaf88a725f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462424374,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":428,"tdur":30,"tts":1027865},
-{"pid":27443,"tid":27477,"ts":326462424802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1027895,"id":"0xaf88a5aef3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462424863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1027956,"id":"0xaf88a285f182217a"},
-{"pid":27443,"tid":27477,"ts":326462424863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":4608,"tdur":3876,"tts":1027956},
-{"pid":27443,"tid":27477,"ts":326462424893,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":4578,"tdur":3845,"tts":1027987},
-{"pid":27443,"tid":27477,"ts":326462424893,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":4120,"tdur":3387,"tts":1027987},
-{"pid":27443,"tid":27477,"ts":326462424924,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":178},"dur":1831,"tdur":1526,"tts":1028017},
-{"pid":27443,"tid":27477,"ts":326462424985,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":178},"dur":824,"tdur":519,"tts":1028078},
-{"pid":27443,"tid":27459,"ts":326462413936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8259850,"id":"0xaf88a590f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462413967,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":489,"tts":8259880},
-{"pid":27443,"tid":27459,"ts":326462414028,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8259942,"id":"0xaf88a591f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462414058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8259972,"id":"0xaf88a71bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462414089,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":336,"tdur":335,"tts":8260003},
-{"pid":27443,"tid":27459,"ts":326462414089,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8260033,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462414150,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":6.874},"dur":244,"tdur":244,"tts":8260064},
-{"pid":27443,"tid":27459,"ts":326462414180,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8260094},
-{"pid":27443,"tid":27459,"ts":326462414272,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8260186},
-{"pid":27443,"tid":27459,"ts":326462414333,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8260247,"id":"0xaf88a72af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462414364,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8260277,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462414516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8260430,"id":"0xaf88a591f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462414516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":0,"tts":8260460},
-{"pid":27443,"tid":27459,"ts":326462417782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462417},"tts":8260674,"id":"0xaf88a532f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462417782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":122,"tdur":61,"tts":8260705},
-{"pid":27443,"tid":27459,"ts":326462417843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8260735,"id":"0xaf88a592f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462417934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8260857,"id":"0xaf88a592f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462417965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2655,"tdur":2655,"tts":8260857},
-{"pid":27443,"tid":27459,"ts":326462418026,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8260918,"id":"0xaf88a593f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462418057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8260949,"id":"0xaf88a77ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462418087,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2503,"tdur":2503,"tts":8260979},
-{"pid":27443,"tid":27459,"ts":326462418118,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2441,"tdur":2441,"tts":8261010},
-{"pid":27443,"tid":27459,"ts":326462418179,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":215,"frame":"0x78c60000"}},"dur":2380,"tdur":2350,"tts":8261101},
-{"pid":27443,"tid":27459,"ts":326462418240,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":2289,"tdur":2259,"tts":8261162},
-{"pid":27443,"tid":27459,"ts":326462418392,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":144,"frame":"0x78c60000"}},"dur":2106,"tdur":2075,"tts":8261315},
-{"pid":27443,"tid":27459,"ts":326462418453,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8261345},
-{"pid":27443,"tid":27459,"ts":326462420285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8263177,"id":"0xaf88a72bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462420376,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":223,"frame":"0x78c60000","timeout":500,"singleShot":true}},"tts":8263299,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462420437,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8263360},
-{"pid":27443,"tid":27459,"ts":326462420681,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8263573,"id":"0xaf88a593f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462420712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":8263604},
-{"pid":27443,"tid":27459,"ts":326462424313,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8263787,"id":"0xaf88a5acf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462424313,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":6043,"tdur":3693,"tts":8263787},
-{"pid":27443,"tid":27459,"ts":326462424344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8263818,"id":"0xaf88a5adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462424374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8263848,"id":"0xaf88a724f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462424374,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":5982,"tdur":3602,"tts":8263848},
-{"pid":27443,"tid":27459,"ts":326462424405,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":182},"tts":8263879},
-{"pid":27443,"tid":27459,"ts":326462424405,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":8263879},
-{"pid":27443,"tid":27459,"ts":326462424466,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8263940,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462424466,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8263940,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462424496,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":824,"tdur":824,"tts":8263970},
-{"pid":27443,"tid":27459,"ts":326462424527,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":793,"tdur":793,"tts":8264001},
-{"pid":27443,"tid":27459,"ts":326462424588,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264062,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462424618,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":31,"tdur":0,"tts":8264092},
-{"pid":27443,"tid":27459,"ts":326462424679,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264153,"id":"0xaf88ae4cfe940ba2"},
-{"pid":27443,"tid":27459,"ts":326462424710,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264184,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462424741,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264214,"id":"0xaf88ae4cfe940ae2"},
-{"pid":27443,"tid":27459,"ts":326462424771,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264245,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462424832,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264306,"id":"0xaf88ae4cfe940522"},
-{"pid":27443,"tid":27459,"ts":326462424863,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264336,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462424893,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264367,"id":"0xaf88ae4cfe940462"},
-{"pid":27443,"tid":27459,"ts":326462424924,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264397,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462424985,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264459,"id":"0xaf88ae4cfe9404a2"},
-{"pid":27443,"tid":27459,"ts":326462425015,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264489,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462425076,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264550,"id":"0xaf88ae4cfe9407e2"},
-{"pid":27443,"tid":27459,"ts":326462425107,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264581,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462425137,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264611,"id":"0xaf88ae4cfe940622"},
-{"pid":27443,"tid":27459,"ts":326462425168,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264642,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462425229,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264703,"id":"0xaf88ae4cfe940162"},
-{"pid":27443,"tid":27459,"ts":326462425259,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->ABORTED"},"tts":8264733,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462425290,"ph":"e","cat":"blink.animations,devtools.timeline","name":"KeyframeEffect","args":{"endData":{"state":"finished"}},"tts":8264764,"id":"0xaf88ae4cfe9401a2"},
-{"pid":27443,"tid":27459,"ts":326462425320,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":2289,"tdur":2106,"tts":8264794},
-{"pid":27443,"tid":27459,"ts":326462425351,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8264825},
-{"pid":27443,"tid":27459,"ts":326462425381,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8264855},
-{"pid":27443,"tid":27459,"ts":326462425381,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8264886},
-{"pid":27443,"tid":27459,"ts":326462426144,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":9,"counters":true},"tts":8265618},
-{"pid":27443,"tid":27459,"ts":326462426175,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":9},"tts":8265649},
-{"pid":27443,"tid":27459,"ts":326462426206,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":1403,"tdur":1221,"tts":8265679},
-{"pid":27443,"tid":27459,"ts":326462426236,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":1282,"tdur":1099,"tts":8265710},
-{"pid":27443,"tid":27459,"ts":326462426236,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":153,"tdur":152,"tts":8265710},
-{"pid":27443,"tid":27459,"ts":326462426389,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":214,"tts":8265862},
-{"pid":27443,"tid":27459,"ts":326462426633,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":91,"tdur":91,"tts":8266107},
-{"pid":27443,"tid":27459,"ts":326462426724,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":31,"tdur":31,"tts":8266198},
-{"pid":27443,"tid":27459,"ts":326462426755,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":610,"tdur":396,"tts":8266229},
-{"pid":27443,"tid":27459,"ts":326462427548,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":0,"tdur":0,"tts":8266839},
-{"pid":27443,"tid":27459,"ts":326462427579,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":30,"tts":8266870},
-{"pid":27443,"tid":27459,"ts":326462427609,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":182},"dur":336,"tdur":336,"tts":8266900},
-{"pid":27443,"tid":27459,"ts":326462427640,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":305,"tdur":305,"tts":8266931},
-{"pid":27443,"tid":27459,"ts":326462427976,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":30,"tdur":31,"tts":8267266},
-{"pid":27443,"tid":27459,"ts":326462427976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8267266,"id":"0xaf88a286f182217a"},
-{"pid":27443,"tid":27459,"ts":326462428006,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":2259,"tdur":61,"tts":8267297},
-{"pid":27443,"tid":27459,"ts":326462428006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8267297,"id":"0xaf88a287f182217a"},
-{"pid":27443,"tid":27459,"ts":326462430295,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":7379},"tts":8267419,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462430295,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8267419,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462430326,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8267450},
-{"pid":27443,"tid":27459,"ts":326462430387,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462430},"tts":8267511,"id":"0xaf88a4e4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462430417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/render_view_impl.cc","src_func":"StartNavStateSyncTimerIfNecessary"},"dur":214,"tdur":183,"tts":8267541},
-{"pid":27443,"tid":27459,"ts":326462430539,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":61,"tdur":61,"tts":8267663},
-{"pid":27443,"tid":27459,"ts":326462430570,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8267694,"id":"0xaf88ab94f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462430661,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8267785,"id":"0xaf88a5adf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462430661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":367,"tdur":92,"tts":8267785},
-{"pid":27443,"tid":27459,"ts":326462430692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8267816,"id":"0xaf88a5aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462430692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8267816,"id":"0xaf88a72af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462430692,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":305,"tdur":61,"tts":8267816},
-{"pid":27443,"tid":27459,"ts":326462430692,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":30,"tts":8267816},
-{"pid":27443,"tid":27459,"ts":326462430997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8267877,"id":"0xaf88a727f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462431028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8267907,"id":"0xaf88a5aef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462431058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8267938},
-{"pid":27443,"tid":27459,"ts":326462431058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8267938,"id":"0xaf88a725f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462431089,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":30,"tdur":31,"tts":8267968},
-{"pid":27443,"tid":27459,"ts":326462431089,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8267968},
-{"pid":27443,"tid":27459,"ts":326462431150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8268029,"id":"0xaf88a5aff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462431150,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8268029},
-{"pid":27443,"tid":27459,"ts":326462431180,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8268060,"id":"0xaf88a5a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462431180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8268060,"id":"0xaf88a726f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462431180,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"PostAnimationEventsToMainThreadOnImplThread"},"dur":61,"tdur":61,"tts":8268060},
-{"pid":27443,"tid":27459,"ts":326462431211,"ph":"X","cat":"cc","name":"ThreadProxy::SetAnimationEvents","args":{},"dur":0,"tdur":0,"tts":8268090},
-{"pid":27443,"tid":27459,"ts":326462431272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8268152,"id":"0xaf88a5a8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462431302,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8268182},
-{"pid":27443,"tid":27459,"ts":326462441496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8268304,"id":"0xaf88a5a9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462441527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":4120,"tdur":1343,"tts":8268335},
-{"pid":27443,"tid":27459,"ts":326462441588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8268396,"id":"0xaf88a5aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462441618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8268457,"id":"0xaf88a720f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462441649,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":3967,"tdur":1221,"tts":8268457},
-{"pid":27443,"tid":27459,"ts":326462441679,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":183},"tts":8268487},
-{"pid":27443,"tid":27459,"ts":326462441710,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":824,"tdur":92,"tts":8268548},
-{"pid":27443,"tid":27459,"ts":326462441710,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":793,"tdur":61,"tts":8268548},
-{"pid":27443,"tid":27459,"ts":326462442595,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8268701,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462442625,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8268731,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462442656,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":2136,"tdur":91,"tts":8268762},
-{"pid":27443,"tid":27459,"ts":326462442656,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":2075,"tdur":30,"tts":8268762},
-{"pid":27443,"tid":27459,"ts":326462444762,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":30,"tts":8268823},
-{"pid":27443,"tid":27459,"ts":326462444792,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":245,"tdur":245,"tts":8268853},
-{"pid":27443,"tid":27459,"ts":326462444853,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":153,"tdur":152,"tts":8268915},
-{"pid":27443,"tid":27459,"ts":326462444884,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":0,"tdur":0,"tts":8268945},
-{"pid":27443,"tid":27459,"ts":326462444914,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":30,"tts":8268976},
-{"pid":27443,"tid":27459,"ts":326462444976,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":30,"tdur":30,"tts":8269037},
-{"pid":27443,"tid":27459,"ts":326462445037,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":183},"dur":396,"tdur":396,"tts":8269098},
-{"pid":27443,"tid":27477,"ts":326462425839,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":178},"dur":92,"tdur":91,"tts":1028628},
-{"pid":27443,"tid":27477,"ts":326462425931,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":178},"tts":1028719},
-{"pid":27443,"tid":27477,"ts":326462426175,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":1028994},
-{"pid":27443,"tid":27477,"ts":326462426206,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1028994},
-{"pid":27443,"tid":27477,"ts":326462426236,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1029024},
-{"pid":27443,"tid":27477,"ts":326462426236,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1029024},
-{"pid":27443,"tid":27477,"ts":326462426267,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1029055},
-{"pid":27443,"tid":27477,"ts":326462426267,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1029085,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462426389,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1029177},
-{"pid":27443,"tid":27477,"ts":326462426755,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1029543},
-{"pid":27443,"tid":27477,"ts":326462426785,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1038,"tdur":610,"tts":1029574},
-{"pid":27443,"tid":27477,"ts":326462426785,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":1029574},
-{"pid":27443,"tid":27477,"ts":326462426816,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":916,"tdur":489,"tts":1029604},
-{"pid":27443,"tid":27477,"ts":326462427152,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":30,"tdur":31,"tts":1029940},
-{"pid":27443,"tid":27477,"ts":326462427213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1030001,"id":"0xaf88ab9af3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462427793,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1030154,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462427823,"ph":"X","cat":"cc","name":"AnimationRegistrar::UpdateAnimationState","args":{},"dur":763,"tdur":763,"tts":1030184},
-{"pid":27443,"tid":27477,"ts":326462427884,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030245,"id":"0xaf88ae4cffd6cd2a"},
-{"pid":27443,"tid":27477,"ts":326462427884,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030276,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462427915,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030276,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462427976,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030337,"id":"0xaf88ae4cffd1b562"},
-{"pid":27443,"tid":27477,"ts":326462427976,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030337,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428006,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030367,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428037,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030398,"id":"0xaf88ae4cffd24b42"},
-{"pid":27443,"tid":27477,"ts":326462428067,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030428,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428098,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030459,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428128,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030489,"id":"0xaf88ae4cffd5b36a"},
-{"pid":27443,"tid":27477,"ts":326462428128,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030489,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428159,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030520,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428189,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030550,"id":"0xaf88ae4cfd9f32d2"},
-{"pid":27443,"tid":27477,"ts":326462428220,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030581,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428250,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030611,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428281,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030642,"id":"0xaf88ae4cf80a60b2"},
-{"pid":27443,"tid":27477,"ts":326462428311,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030673,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428311,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030703,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428372,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030734,"id":"0xaf88ae4cf8dc848a"},
-{"pid":27443,"tid":27477,"ts":326462428372,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030734,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428403,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030764,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428433,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030795,"id":"0xaf88ae4cff3c6662"},
-{"pid":27443,"tid":27477,"ts":326462428464,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030825,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428464,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030825,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428495,"ph":"F","cat":"cc","name":"Animation","args":{},"tts":1030886,"id":"0xaf88ae4cff3ba45a"},
-{"pid":27443,"tid":27477,"ts":326462428525,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"RUNNING->FINISHED"},"tts":1030886,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428556,"ph":"I","cat":"cc","name":"LayerAnimationController::SetRunState","args":{"Name":"OPACITY-149","State":"FINISHED->WAITING_FOR_DELETION"},"tts":1030917,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462428586,"ph":"X","cat":"cc","name":"ThreadProxy::PostAnimationEventsToMainThreadOnImplThread","args":{},"dur":61,"tdur":31,"tts":1030947},
-{"pid":27443,"tid":27477,"ts":326462428617,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1030978,"id":"0xaf88a726f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462428647,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimateOnImplThread","args":{},"dur":0,"tdur":0,"tts":1031008},
-{"pid":27443,"tid":27477,"ts":326462428678,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":305,"tts":1031039},
-{"pid":27443,"tid":27477,"ts":326462428891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1031283,"id":"0xaf88ab9bf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462429013,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":428,"tdur":397,"tts":1031405},
-{"pid":27443,"tid":27477,"ts":326462429044,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":1031405},
-{"pid":27443,"tid":27477,"ts":326462429074,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":1031436},
-{"pid":27443,"tid":27477,"ts":326462429196,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1031558},
-{"pid":27443,"tid":27477,"ts":326462429196,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1031558},
-{"pid":27443,"tid":27477,"ts":326462429227,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":1031588},
-{"pid":27443,"tid":27477,"ts":326462429227,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":1031588},
-{"pid":27443,"tid":27477,"ts":326462429258,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1031619,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462429288,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1031649},
-{"pid":27443,"tid":27477,"ts":326462429288,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":1031649},
-{"pid":27443,"tid":27477,"ts":326462429380,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1031741,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462429410,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1031771,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462429441,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1031802,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462429502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1031863,"id":"0xaf88a286f182217a"},
-{"pid":27443,"tid":27477,"ts":326462429502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":61,"tdur":61,"tts":1031863},
-{"pid":27443,"tid":27477,"ts":326462429532,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":31,"tdur":0,"tts":1031893},
-{"pid":27443,"tid":27477,"ts":326462429563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1031924,"id":"0xaf88a287f182217a"},
-{"pid":27443,"tid":27477,"ts":326462429593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":2106,"tdur":2106,"tts":1031954},
-{"pid":27443,"tid":27477,"ts":326462429593,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":2076,"tdur":2076,"tts":1031954},
-{"pid":27443,"tid":27477,"ts":326462429593,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":31,"tdur":0,"tts":1031985},
-{"pid":27443,"tid":27477,"ts":326462429624,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":2045,"tdur":2045,"tts":1031985},
-{"pid":27443,"tid":27477,"ts":326462429624,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":2045,"tdur":2015,"tts":1032015},
-{"pid":27443,"tid":27477,"ts":326462429654,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":1032015},
-{"pid":27443,"tid":27477,"ts":326462429654,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":1032015},
-{"pid":27443,"tid":27477,"ts":326462429685,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":1032046,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462429715,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1032076},
-{"pid":27443,"tid":27477,"ts":326462429746,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":397,"tdur":397,"tts":1032107},
-{"pid":27443,"tid":27477,"ts":326462430234,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1404,"tdur":1404,"tts":1032595},
-{"pid":27443,"tid":27477,"ts":326462430265,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":182},"dur":427,"tdur":427,"tts":1032626},
-{"pid":27443,"tid":27477,"ts":326462430692,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":182},"dur":92,"tdur":92,"tts":1033053},
-{"pid":27443,"tid":27477,"ts":326462430784,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":182},"tts":1033145},
-{"pid":27443,"tid":27477,"ts":326462431058,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":31,"tdur":0,"tts":1033419},
-{"pid":27443,"tid":27477,"ts":326462431089,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1033450},
-{"pid":27443,"tid":27477,"ts":326462431089,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":549,"tdur":549,"tts":1033450},
-{"pid":27443,"tid":27477,"ts":326462431119,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1033480},
-{"pid":27443,"tid":27477,"ts":326462431119,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1033480},
-{"pid":27443,"tid":27477,"ts":326462431150,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":244,"tdur":244,"tts":1033511},
-{"pid":27443,"tid":27477,"ts":326462431394,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1033755},
-{"pid":27443,"tid":27477,"ts":326462431424,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1033786},
-{"pid":27443,"tid":27477,"ts":326462431424,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":153,"tdur":152,"tts":1033786},
-{"pid":27443,"tid":27477,"ts":326462431424,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":122,"tts":1033816},
-{"pid":27443,"tid":27477,"ts":326462431455,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":31,"tdur":0,"tts":1033847},
-{"pid":27443,"tid":27477,"ts":326462431486,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":30,"tts":1033847},
-{"pid":27443,"tid":27477,"ts":326462431547,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1033908,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462431608,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1033969,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462431608,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1033969,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462431699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034060,"id":"0xaf88a280f182217a"},
-{"pid":27443,"tid":27477,"ts":326462431699,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":0,"tts":1034091},
-{"pid":27443,"tid":27477,"ts":326462431730,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034091,"id":"0xaf88a281f182217a"},
-{"pid":27443,"tid":27477,"ts":326462431760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":1034121},
-{"pid":27443,"tid":27477,"ts":326462431791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034152,"id":"0xaf88a282f182217a"},
-{"pid":27443,"tid":27477,"ts":326462431791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":0,"tdur":0,"tts":1034152},
-{"pid":27443,"tid":27477,"ts":326462431821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034182,"id":"0xaf88a283f182217a"},
-{"pid":27443,"tid":27477,"ts":326462431821,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":122,"tts":1034182},
-{"pid":27443,"tid":27477,"ts":326462431852,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":1034213},
-{"pid":27443,"tid":27477,"ts":326462431852,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1034213,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462431882,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":1034243},
-{"pid":27443,"tid":27477,"ts":326462431913,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1034274,"id":"0xaf88a29ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462431943,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034304,"id":"0xaf88a29cf182217a"},
-{"pid":27443,"tid":27477,"ts":326462431943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":122,"tdur":123,"tts":1034304},
-{"pid":27443,"tid":27477,"ts":326462431974,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":1034335},
-{"pid":27443,"tid":27477,"ts":326462431974,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1034365,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462432004,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":31,"tdur":31,"tts":1034365},
-{"pid":27443,"tid":27477,"ts":326462432035,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1034396,"id":"0xaf88a29ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462432065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034427,"id":"0xaf88a29df182217a"},
-{"pid":27443,"tid":27477,"ts":326462432065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1034427},
-{"pid":27443,"tid":27477,"ts":326462432096,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":1034457},
-{"pid":27443,"tid":27477,"ts":326462432096,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1034457,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462432126,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1034488},
-{"pid":27443,"tid":27477,"ts":326462432157,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1034518,"id":"0xaf88a29ef182217a"},
-{"pid":27443,"tid":27477,"ts":326462432157,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2045,"tdur":2045,"tts":1034518},
-{"pid":27443,"tid":27477,"ts":326462432187,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2015,"tdur":2014,"tts":1034549},
-{"pid":27443,"tid":27477,"ts":326462432187,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1034549},
-{"pid":27443,"tid":27477,"ts":326462432187,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1034549},
-{"pid":27443,"tid":27477,"ts":326462432218,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":153,"tdur":153,"tts":1034579},
-{"pid":27443,"tid":27477,"ts":326462432249,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":1034610},
-{"pid":27443,"tid":27477,"ts":326462432401,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1801,"tdur":1801,"tts":1034762},
-{"pid":27443,"tid":27477,"ts":326462432401,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1801,"tdur":1801,"tts":1034762},
-{"pid":27443,"tid":27477,"ts":326462432432,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1739,"tdur":1739,"tts":1034793},{"pid":27443,"tid":27477,"ts":326462432432,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":1034793,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462432554,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1034915},
-{"pid":27443,"tid":27477,"ts":326462432584,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1034945},
-{"pid":27443,"tid":27477,"ts":326462432615,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1034976},
-{"pid":27443,"tid":27477,"ts":326462432645,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035006},
-{"pid":27443,"tid":27477,"ts":326462432676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035037},
-{"pid":27443,"tid":27477,"ts":326462432676,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1035037},
-{"pid":27443,"tid":27477,"ts":326462432706,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1035067},
-{"pid":27443,"tid":27477,"ts":326462432737,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1035098},
-{"pid":27443,"tid":27477,"ts":326462432767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1035128},
-{"pid":27443,"tid":27477,"ts":326462432798,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":1035159},
-{"pid":27443,"tid":27477,"ts":326462432828,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":1035190},
-{"pid":27443,"tid":27477,"ts":326462432859,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035220},
-{"pid":27443,"tid":27477,"ts":326462432889,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035251},
-{"pid":27443,"tid":27477,"ts":326462432920,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035281},
-{"pid":27443,"tid":27477,"ts":326462432951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035312},
-{"pid":27443,"tid":27477,"ts":326462432951,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":1035342},
-{"pid":27443,"tid":27477,"ts":326462432981,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1035373},
-{"pid":27443,"tid":27477,"ts":326462433012,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1035373},
-{"pid":27443,"tid":27477,"ts":326462433042,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1035403},
-{"pid":27443,"tid":27477,"ts":326462433073,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1035434},
-{"pid":27443,"tid":27477,"ts":326462433103,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1035464},
-{"pid":27443,"tid":27477,"ts":326462433134,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":1035495},
-{"pid":27443,"tid":27477,"ts":326462433164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1035525},
-{"pid":27443,"tid":27477,"ts":326462433195,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035556},
-{"pid":27443,"tid":27477,"ts":326462433225,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1035586},
-{"pid":27443,"tid":27477,"ts":326462433256,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035617},
-{"pid":27443,"tid":27477,"ts":326462433286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1035647},
-{"pid":27443,"tid":27477,"ts":326462433317,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035678},
-{"pid":27443,"tid":27477,"ts":326462433347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035708},
-{"pid":27443,"tid":27477,"ts":326462433378,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035739},
-{"pid":27443,"tid":27477,"ts":326462433408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035769},
-{"pid":27443,"tid":27477,"ts":326462433439,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035800},
-{"pid":27443,"tid":27477,"ts":326462433469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035830},
-{"pid":27443,"tid":27477,"ts":326462433469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1035861},
-{"pid":27443,"tid":27477,"ts":326462433530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035891},
-{"pid":27443,"tid":27477,"ts":326462433530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1035922},
-{"pid":27443,"tid":27477,"ts":326462433591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1035953},
-{"pid":27443,"tid":27477,"ts":326462433591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":1035953},
-{"pid":27443,"tid":27477,"ts":326462433622,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":1036014},
-{"pid":27443,"tid":27477,"ts":326462433652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":1036014},
-{"pid":27443,"tid":27477,"ts":326462433683,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1036044},
-{"pid":27443,"tid":27477,"ts":326462433714,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1036075},
-{"pid":27443,"tid":27477,"ts":326462433805,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1036166},
-{"pid":27443,"tid":27477,"ts":326462433836,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1036197},
-{"pid":27443,"tid":27477,"ts":326462433866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1036227},
-{"pid":27443,"tid":27477,"ts":326462433927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1036288},
-{"pid":27443,"tid":27477,"ts":326462433927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1036288},
-{"pid":27443,"tid":27477,"ts":326462433958,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1036319},
-{"pid":27443,"tid":27477,"ts":326462433988,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1036349},
-{"pid":27443,"tid":27477,"ts":326462434049,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":1036410},
-{"pid":27443,"tid":27477,"ts":326462434110,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":0,"tdur":0,"tts":1036471},
-{"pid":27443,"tid":27477,"ts":326462434110,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":1036471},
-{"pid":27443,"tid":27477,"ts":326462434141,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":30,"tdur":30,"tts":1036502},
-{"pid":27443,"tid":27477,"ts":326462434232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1036593,"id":"0xaf88a29ff182217a"},
-{"pid":27443,"tid":27477,"ts":326462434232,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":214,"tts":1036593},
-{"pid":27443,"tid":27477,"ts":326462434263,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":183,"tdur":183,"tts":1036624},
-{"pid":27443,"tid":27477,"ts":326462434263,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":1036624},
-{"pid":27443,"tid":27477,"ts":326462434293,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1036655},
-{"pid":27443,"tid":27477,"ts":326462434293,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":92,"tdur":91,"tts":1036655},
-{"pid":27443,"tid":27477,"ts":326462434324,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":1036685},
-{"pid":27443,"tid":27477,"ts":326462434385,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":31,"tts":1036746},
-{"pid":27443,"tid":27477,"ts":326462434415,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1036777},
-{"pid":27443,"tid":27477,"ts":326462437803,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462437},"tts":1036899,"id":"0xaf88a28bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462437803,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":30,"tts":1036899},
-{"pid":27443,"tid":27477,"ts":326462438963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1036960,"id":"0xaf88a298f182217a"},
-{"pid":27443,"tid":27477,"ts":326462438994,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":275,"tts":1036990},
-{"pid":27443,"tid":27477,"ts":326462439024,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462437503.0,"frame_time_us":326462437690.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":244,"tdur":244,"tts":1037021},
-{"pid":27443,"tid":27477,"ts":326462439085,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462437503.0,"frame_time_us":326462437690.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":153,"tdur":152,"tts":1037082},
-{"pid":27443,"tid":27477,"ts":326462439146,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":30,"tts":1037143},
-{"pid":27443,"tid":27477,"ts":326462439177,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462454356},"dur":61,"tdur":30,"tts":1037204},
-{"pid":27443,"tid":27477,"ts":326462439207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1037234,"id":"0xaf88a299f182217a"},
-{"pid":27443,"tid":27477,"ts":326462441160,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1037356,"id":"0xaf88a29af182217a"},
-{"pid":27443,"tid":27477,"ts":326462441191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":702,"tdur":397,"tts":1037387},
-{"pid":27443,"tid":27477,"ts":326462441222,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":671,"tdur":366,"tts":1037418},
-{"pid":27443,"tid":27477,"ts":326462441252,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":183},"tts":1037448},
-{"pid":27443,"tid":27477,"ts":326462441344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1037570,"id":"0xaf88a720f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462441374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1037570,"id":"0xaf88a5a9f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462441435,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":1037631},
-{"pid":27443,"tid":27477,"ts":326462441435,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1037631},
-{"pid":27443,"tid":27477,"ts":326462441588,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":61,"tdur":30,"tts":1037662},
-{"pid":27443,"tid":27477,"ts":326462441588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1037692,"id":"0xaf88a29bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462441679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1037723,"id":"0xaf88a721f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462441862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1037753,"id":"0xaf88a5abf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462441923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1037814,"id":"0xaf88a29bf182217a"},
-{"pid":27443,"tid":27477,"ts":326462441923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":2717,"tdur":2289,"tts":1037814},
-{"pid":27443,"tid":27477,"ts":326462441954,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":2686,"tdur":2258,"tts":1037845},
-{"pid":27443,"tid":27477,"ts":326462441954,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":2655,"tdur":2228,"tts":1037845},
-{"pid":27443,"tid":27477,"ts":326462441985,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":182},"dur":1403,"tdur":1374,"tts":1037875},
-{"pid":27443,"tid":27477,"ts":326462442015,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":182},"dur":488,"tdur":488,"tts":1037906},
-{"pid":27443,"tid":27477,"ts":326462442503,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":182},"dur":61,"tdur":61,"tts":1038394},
-{"pid":27443,"tid":27477,"ts":326462442564,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":182},"tts":1038455},
-{"pid":27443,"tid":27477,"ts":326462442809,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1038699},
-{"pid":27443,"tid":27477,"ts":326462442839,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1038730},
-{"pid":27443,"tid":27477,"ts":326462442839,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1038730},
-{"pid":27443,"tid":27477,"ts":326462442870,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1038760},
-{"pid":27443,"tid":27477,"ts":326462442870,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1038791,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462442992,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1038913},
-{"pid":27443,"tid":27477,"ts":326462443358,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1039249},
-{"pid":27443,"tid":27477,"ts":326462443388,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":855,"tdur":428,"tts":1039279},
-{"pid":27443,"tid":27477,"ts":326462443388,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":1039279},
-{"pid":27443,"tid":27477,"ts":326462443419,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":732,"tdur":305,"tts":1039310},
-{"pid":27443,"tid":27477,"ts":326462443572,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18737},"dur":30,"tdur":0,"tts":1039493},
-{"pid":27443,"tid":27477,"ts":326462443633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1039523,"id":"0xaf88ab95f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462444213,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1039676,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462444243,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":305,"tdur":305,"tts":1039707},
-{"pid":27443,"tid":27477,"ts":326462444487,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1039951,"id":"0xaf88ab96f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462444579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1040042,"id":"0xaf88a722f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462445525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1040225,"id":"0xaf88a294f182217a"},
-{"pid":27443,"tid":27477,"ts":326462445525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":91,"tdur":92,"tts":1040225},
-{"pid":27443,"tid":27477,"ts":326462445555,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameAbortedOnImplThread","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":61,"tdur":61,"tts":1040256},
-{"pid":27443,"tid":27477,"ts":326462445586,"ph":"X","cat":"cc","name":"Scheduler::BeginMainFrameAborted","args":{"reason":"CommitEarlyOutReason::FINISHED_NO_UPDATES"},"dur":30,"tdur":31,"tts":1040286},
-{"pid":27443,"tid":27477,"ts":326462454437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462454},"tts":1040378,"id":"0xaf88a299f182217a"},
-{"pid":27443,"tid":27477,"ts":326462454467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":1040409},
-{"pid":27443,"tid":27477,"ts":326462460083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1040500,"id":"0xaf88a295f182217a"},
-{"pid":27443,"tid":27477,"ts":326462460083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":244,"tts":1040500},
-{"pid":27443,"tid":27477,"ts":326462460144,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462454184.0,"frame_time_us":326462454371.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":397,"tdur":183,"tts":1040561},
-{"pid":27443,"tid":27477,"ts":326462460175,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462454184.0,"frame_time_us":326462454371.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":366,"tdur":122,"tts":1040592},
-{"pid":27443,"tid":27477,"ts":326462460266,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462471037},"dur":244,"tdur":61,"tts":1040653},
-{"pid":27443,"tid":27477,"ts":326462460266,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":30,"tts":1040653},
-{"pid":27443,"tid":27477,"ts":326462460510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1040714,"id":"0xaf88a297f182217a"},
-{"pid":27443,"tid":27477,"ts":326462460541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1040775,"id":"0xaf88a296f182217a"},
-{"pid":27443,"tid":27477,"ts":326462460571,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":152,"tts":1040775},
-{"pid":27443,"tid":27477,"ts":326462460602,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":366,"tdur":92,"tts":1040805},
-{"pid":27443,"tid":27477,"ts":326462460632,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1040836,"id":"0xaf88a735f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462460663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1040866,"id":"0xaf88a5bbf3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462471193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462471},"tts":1041080,"id":"0xaf88a297f182217a"},
-{"pid":27443,"tid":27477,"ts":326462471223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":794,"tdur":794,"tts":1041110},
-{"pid":27443,"tid":27466,"ts":326462438841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":444956,"id":"0xaf88a298f182217a"},
-{"pid":27443,"tid":27466,"ts":326462441038,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":445109},
-{"pid":27443,"tid":27466,"ts":326462441069,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":61,"tdur":61,"tts":445139},
-{"pid":27443,"tid":27466,"ts":326462441069,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":445139,"id":"0xba46fb02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462441099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":445170,"id":"0xaf88a29af182217a"},
-{"pid":27443,"tid":27466,"ts":326462443785,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":445322,"id":"0xaf88ab95f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462443785,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":445353},
-{"pid":27443,"tid":27466,"ts":326462443816,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":445353,"id":"0xccc64e06"},
-{"pid":27443,"tid":27466,"ts":326462444060,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":91,"tdur":31,"tts":445505},
-{"pid":27443,"tid":27466,"ts":326462444090,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":445505},
-{"pid":27443,"tid":27466,"ts":326462444121,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":445536,"id":"0xc4c2600a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462444548,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":445597,"id":"0xaf88ab96f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462444579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":445627},
-{"pid":27443,"tid":27466,"ts":326462444579,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":445627,"id":"0xccc64f02"},
-{"pid":27443,"tid":27466,"ts":326462447478,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":213,"tts":445750},
-{"pid":27443,"tid":27466,"ts":326462447509,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":183,"tdur":183,"tts":445780},
-{"pid":27443,"tid":27466,"ts":326462447539,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":445811,"id":"0xba46fd02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462447539,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":445841,"id":"0xaf88a73cf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462447570,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":445841,"id":"0xaf88a5a6f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462447661,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":445933,"id":"0xaf88a73df3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462452575,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":305,"tts":446055},
-{"pid":27443,"tid":27466,"ts":326462452636,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":122,"tdur":122,"tts":446116},
-{"pid":27443,"tid":27466,"ts":326462452636,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":446116,"id":"0xba46fe02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462452697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":446177,"id":"0xaf88a73ff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462452728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":446207,"id":"0xaf88a5a2f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462452789,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":92,"tts":446268},
-{"pid":27443,"tid":27466,"ts":326462452819,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":446299,"id":"0xba46ff02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462452850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":446329,"id":"0xaf88a738f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462452850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":446329,"id":"0xaf88a5bcf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462453369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":446451,"id":"0xaf88ab97f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462453399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":446482},
-{"pid":27443,"tid":27466,"ts":326462453399,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":446482,"id":"0xccc65002"},
-{"pid":27443,"tid":27466,"ts":326462454498,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":446604},
-{"pid":27443,"tid":27466,"ts":326462454528,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":122,"tts":446635},
-{"pid":27443,"tid":27466,"ts":326462454559,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":446665,"id":"0xba470002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462454589,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":446696,"id":"0xaf88a739f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462454620,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":446726,"id":"0xaf88a5bef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462455413,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":214,"tdur":153,"tts":446848},
-{"pid":27443,"tid":27466,"ts":326462455413,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":31,"tts":446848},
-{"pid":27443,"tid":27466,"ts":326462455475,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":122,"tdur":61,"tts":446909},
-{"pid":27443,"tid":27466,"ts":326462455505,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":446909,"id":"0xba470102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462455536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":446909,"id":"0xaf88a73af3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462455597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":446970,"id":"0xaf88a73bf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462456421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":447031,"id":"0xaf88ab90f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462456421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":447031},
-{"pid":27443,"tid":27466,"ts":326462456421,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":447062,"id":"0xccc65102"},
-{"pid":27443,"tid":27466,"ts":326462457306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":447123,"id":"0xaf88ab91f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462457336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":447153},
-{"pid":27443,"tid":27466,"ts":326462457336,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":447153,"id":"0xccc65202"},
-{"pid":27443,"tid":27466,"ts":326462459778,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":152,"tts":447276},
-{"pid":27443,"tid":27466,"ts":326462459839,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":122,"tts":447306},
-{"pid":27443,"tid":27466,"ts":326462459869,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":447337,"id":"0xba470202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462459900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":447367,"id":"0xaf88a295f182217a"},
-{"pid":27443,"tid":27466,"ts":326462460297,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":447550},
-{"pid":27443,"tid":27466,"ts":326462460327,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":92,"tdur":91,"tts":447581},
-{"pid":27443,"tid":27466,"ts":326462460358,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":447611,"id":"0xba470302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462460388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":447642,"id":"0xaf88a296f182217a"},
-{"pid":27443,"tid":27466,"ts":326462471986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":447794,"id":"0xaf88ab92f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462472017,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":183,"tdur":153,"tts":447855},
-{"pid":27443,"tid":27466,"ts":326462472017,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":447855},
-{"pid":27443,"tid":27466,"ts":326462472078,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":447886,"id":"0xccc65302"},
-{"pid":27443,"tid":27466,"ts":326462473359,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":428,"tdur":396,"tts":448100},
-{"pid":27443,"tid":27466,"ts":326462473421,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":305,"tdur":305,"tts":448161},
-{"pid":27443,"tid":27466,"ts":326462473451,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":448222,"id":"0xba470502","bp":"e"},
-{"pid":27443,"tid":27459,"ts":326462445067,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":336,"tdur":336,"tts":8269128},
-{"pid":27443,"tid":27459,"ts":326462445433,"ph":"I","cat":"cc","name":"EarlyOut_NoUpdates","args":{},"tts":8269494,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462445464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8269525,"id":"0xaf88a294f182217a"},
-{"pid":27443,"tid":27459,"ts":326462445555,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":8831},"tts":8269616,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462445555,"ph":"b","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8269616,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462445586,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8269647},
-{"pid":27443,"tid":27459,"ts":326462445677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8269739,"id":"0xaf88a5aaf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462445708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8269769},
-{"pid":27443,"tid":27459,"ts":326462445739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8269800,"id":"0xaf88a5a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462445739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8269800,"id":"0xaf88a721f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462445769,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":31,"tdur":31,"tts":8269830},
-{"pid":27443,"tid":27459,"ts":326462445769,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":8269830},
-{"pid":27443,"tid":27459,"ts":326462445861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8269922,"id":"0xaf88a5abf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462445861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8269922},
-{"pid":27443,"tid":27459,"ts":326462445891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8269952,"id":"0xaf88a722f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462445891,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":61,"tdur":61,"tts":8269952},
-{"pid":27443,"tid":27459,"ts":326462445922,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8269983},
-{"pid":27443,"tid":27459,"ts":326462445983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8270044,"id":"0xaf88a5a4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462445983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":274,"tdur":244,"tts":8270074},
-{"pid":27443,"tid":27459,"ts":326462446013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8270074,"id":"0xaf88a5a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462446044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8270105,"id":"0xaf88a727f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462446044,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":213,"tdur":183,"tts":8270135},
-{"pid":27443,"tid":27459,"ts":326462446074,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8270135,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462446105,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":8.282},"dur":152,"tdur":152,"tts":8270166},
-{"pid":27443,"tid":27459,"ts":326462446105,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8270196},
-{"pid":27443,"tid":27459,"ts":326462446166,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8270227},
-{"pid":27443,"tid":27459,"ts":326462446196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8270257,"id":"0xaf88a723f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462446227,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8270288,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462446288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8270379,"id":"0xaf88a5a5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462446318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":31,"tts":8270379},
-{"pid":27443,"tid":27459,"ts":326462447661,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8270502,"id":"0xaf88a5a6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462447661,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8270502},
-{"pid":27443,"tid":27459,"ts":326462447692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8270532,"id":"0xaf88a5a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462447692,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8270563,"id":"0xaf88a73cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462447722,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":0,"tdur":0,"tts":8270563},
-{"pid":27443,"tid":27459,"ts":326462447783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8270624,"id":"0xaf88a5a7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462447783,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8270624},
-{"pid":27443,"tid":27459,"ts":326462447814,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8270654,"id":"0xaf88a5a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462447814,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8270654,"id":"0xaf88a723f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462447814,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":30,"tts":8270685},
-{"pid":27443,"tid":27459,"ts":326462447844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8270685,"id":"0xaf88a73ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462447905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8270746,"id":"0xaf88a5a0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462447905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":580,"tts":8270746},
-{"pid":27443,"tid":27459,"ts":326462447936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8270776,"id":"0xaf88a5a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462447936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8270776,"id":"0xaf88a73df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462447967,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":488,"tts":8270807},
-{"pid":27443,"tid":27459,"ts":326462448058,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":397,"tdur":397,"tts":8270898},
-{"pid":27443,"tid":27459,"ts":326462448424,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.115","frame":"0x78c60000","statusCode":200,"mimeType":"text/javascript"}},"tts":8271265,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462448516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8271356,"id":"0xaf88a5a1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462448516,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8271356},
-{"pid":27443,"tid":27459,"ts":326462452789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8271478,"id":"0xaf88a5a2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462452789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8271478},
-{"pid":27443,"tid":27459,"ts":326462452819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8271509,"id":"0xaf88a5a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462452850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8271539,"id":"0xaf88a73ff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462452850,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":31,"tts":8271539},
-{"pid":27443,"tid":27459,"ts":326462452850,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":30,"tdur":31,"tts":8271539},
-{"pid":27443,"tid":27459,"ts":326462452941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8271631,"id":"0xaf88a5a3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462452941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":428,"tdur":427,"tts":8271631},
-{"pid":27443,"tid":27459,"ts":326462452972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8271661,"id":"0xaf88a5bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462452972,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8271661,"id":"0xaf88a738f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462452972,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":397,"tdur":367,"tts":8271661},
-{"pid":27443,"tid":27459,"ts":326462453002,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":336,"tdur":336,"tts":8271692},
-{"pid":27443,"tid":27459,"ts":326462453033,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.115","frame":"0x78c60000","encodedDataLength":5534}},"tts":8271722,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462453063,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":8271753},
-{"pid":27443,"tid":27459,"ts":326462453155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8271844,"id":"0xaf88ae40ff1ecb9e"},
-{"pid":27443,"tid":27459,"ts":326462453186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8271875,"id":"0xaf88ae54ff1ad452"},
-{"pid":27443,"tid":27459,"ts":326462453277,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":8271967},
-{"pid":27443,"tid":27459,"ts":326462453308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8271997,"id":"0xaf88ab97f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462453399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8272089,"id":"0xaf88a5bcf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462453399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8272089},
-{"pid":27443,"tid":27459,"ts":326462453460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8272150,"id":"0xaf88a5bdf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462453460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8272150},
-{"pid":27443,"tid":27459,"ts":326462455902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8272241,"id":"0xaf88a5bef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462455932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":489,"tdur":488,"tts":8272272},
-{"pid":27443,"tid":27459,"ts":326462455993,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8272333,"id":"0xaf88a5bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462456024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8272363,"id":"0xaf88a739f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462456024,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":367,"tts":8272363},
-{"pid":27443,"tid":27459,"ts":326462456054,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":336,"tdur":336,"tts":8272394},
-{"pid":27443,"tid":27459,"ts":326462456146,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.115","frame":"0x78c60000","encodedDataLength":0}},"tts":8272485,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462456177,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":8272516},
-{"pid":27443,"tid":27459,"ts":326462456268,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":92,"tdur":92,"tts":8272607},
-{"pid":27443,"tid":27459,"ts":326462456299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8272638,"id":"0xaf88ab90f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462456451,"ph":"e","cat":"renderer.scheduler","name":"ShortIdlePeriod","args":{},"tts":8272791,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462456482,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8272821,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462456512,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8272852,"id":"0xaf88a5bff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462456543,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8272882},
-{"pid":27443,"tid":27459,"ts":326462456573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8272913,"id":"0xaf88a5b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462456604,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8272943,"id":"0xaf88a73af3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462456604,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":0,"tts":8272943},
-{"pid":27443,"tid":27459,"ts":326462456665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8273035,"id":"0xaf88a5b8f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462456695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":702,"tdur":671,"tts":8273035},
-{"pid":27443,"tid":27459,"ts":326462456726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8273065,"id":"0xaf88a5b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462456756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8273096,"id":"0xaf88a73bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462456787,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":580,"tdur":580,"tts":8273126},
-{"pid":27443,"tid":27459,"ts":326462456787,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":549,"tdur":550,"tts":8273126},
-{"pid":27443,"tid":27459,"ts":326462456940,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":8273279,"id":"0xaf88ae4cfda7f9e2"},
-{"pid":27443,"tid":27459,"ts":326462457092,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.115","didFail":false,"networkTime":326462.455291}},"tts":8273432,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462457153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8273493,"id":"0xaf88a734f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462457214,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":92,"tdur":91,"tts":8273554},
-{"pid":27443,"tid":27459,"ts":326462457214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8273584,"id":"0xaf88ab91f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462457428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8273767,"id":"0xaf88a5b9f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462457428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":8273767},
-{"pid":27443,"tid":27459,"ts":326462457458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8273798,"id":"0xaf88a5baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462457489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8273828,"id":"0xaf88a734f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462457489,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":152,"tdur":153,"tts":8273828},
-{"pid":27443,"tid":27459,"ts":326462457519,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":122,"tdur":122,"tts":8273859},
-{"pid":27443,"tid":27459,"ts":326462457703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8274042,"id":"0xaf88a5baf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462457733,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":8274072},
-{"pid":27443,"tid":27459,"ts":326462461243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8274225,"id":"0xaf88a5bbf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462461243,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8274225},
-{"pid":27443,"tid":27459,"ts":326462461273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8274256,"id":"0xaf88a5b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462461304,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8274286,"id":"0xaf88a735f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462461304,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":8274286},
-{"pid":27443,"tid":27459,"ts":326462461334,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8274317},
-{"pid":27443,"tid":27459,"ts":326462461395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8274378,"id":"0xaf88a5b4f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462461395,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8274378},
-{"pid":27443,"tid":27459,"ts":326462465333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8274500,"id":"0xaf88a5b5f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462465333,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8274500},
-{"pid":27443,"tid":27459,"ts":326462465363,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8274530,"id":"0xaf88a5b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462465363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8274530,"id":"0xaf88a736f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462465394,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/ScriptStreamer.cpp","src_func":"streamingCompleteOnBackgroundThread"},"dur":30,"tdur":30,"tts":8274561},
-{"pid":27443,"tid":27459,"ts":326462465424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8274591,"id":"0xaf88a737f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462465485,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8274652,"id":"0xaf88a5b6f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462465485,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":80727,"tdur":75721,"tts":8274652},
-{"pid":27443,"tid":27459,"ts":326462465516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8274683,"id":"0xaf88a5b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462465516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8274683,"id":"0xaf88a737f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462465516,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/ScriptRunner.cpp","src_func":"postTaskIfOneIsNotAlreadyInFlight"},"dur":80696,"tdur":75660,"tts":8274683},
-{"pid":27443,"tid":27459,"ts":326462465607,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29949952,"free":7798784},"tts":8274774},
-{"pid":27443,"tid":27459,"ts":326462465699,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29974528,"free":7774208},"tts":8274866},
-{"pid":27443,"tid":27459,"ts":326462465729,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29958144,"free":7790592},"tts":8274897},
-{"pid":27443,"tid":27459,"ts":326462465790,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29995008,"free":7753728},"tts":8274958},
-{"pid":27443,"tid":27459,"ts":326462465943,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29970432,"free":7778304},"tts":8275110},
-{"pid":27443,"tid":27459,"ts":326462466370,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":8275537},
-{"pid":27443,"tid":27459,"ts":326462466523,"ph":"X","cat":"devtools.timeline","name":"EvaluateScript","args":{"data":{"frame":"0x78c60000","url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931","lineNumber":1}},"dur":79261,"tdur":74256,"tts":8275690},
-{"pid":27443,"tid":27459,"ts":326462466553,"ph":"X","cat":"v8","name":"v8.compile","args":{"fileName":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"},"dur":15718,"tdur":13215,"tts":8275721},
-{"pid":27443,"tid":27459,"ts":326462467286,"ph":"B","cat":"v8","name":"V8.CompileMicroSeconds","args":{},"tts":8276453},
-{"pid":27443,"tid":27459,"ts":326462467805,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8276972},
-{"pid":27443,"tid":27459,"ts":326462481783,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8288448},
-{"pid":27443,"tid":27459,"ts":326462481844,"ph":"E","cat":"v8","name":"V8.CompileMicroSeconds","args":{},"tts":8288509},
-{"pid":27443,"tid":27459,"ts":326462482149,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1434},"dur":92,"tdur":91,"tts":8288814},
-{"pid":27443,"tid":27459,"ts":326462482180,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8288844,"id":"0xaf88ab93f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462482302,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"},"dur":63482,"tdur":60980,"tts":8288966},
-{"pid":27443,"tid":27459,"ts":326462482332,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8288997},
-{"pid":27443,"tid":27459,"ts":326462492160,"ph":"B","cat":"v8","name":"V8.GCScavenger","args":{},"tts":8298855},
-{"pid":27443,"tid":27459,"ts":326462492221,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":21886624},"tts":8298886},
-{"pid":27443,"tid":27459,"ts":326462505497,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":0,"tts":8311887},
-{"pid":27443,"tid":27459,"ts":326462505711,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":31,"tdur":31,"tts":8312070},
-{"pid":27443,"tid":27459,"ts":326462505864,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8312223},
-{"pid":27443,"tid":27459,"ts":326462505986,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":0,"tdur":0,"tts":8312345},
-{"pid":27443,"tid":27459,"ts":326462506199,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":18471656},"tts":8312589},
-{"pid":27443,"tid":27459,"ts":326462506230,"ph":"E","cat":"v8","name":"V8.GCScavenger","args":{},"tts":8312589},
-{"pid":27443,"tid":27459,"ts":326462512395,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8318785},
-{"pid":27443,"tid":27459,"ts":326462512548,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8318907},
-{"pid":27443,"tid":27459,"ts":326462512609,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8318968},
-{"pid":27443,"tid":27459,"ts":326462512639,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8318998},
-{"pid":27443,"tid":27459,"ts":326462512731,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8319090},
-{"pid":27443,"tid":27459,"ts":326462512853,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8319243},
-{"pid":27443,"tid":27459,"ts":326462512944,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8319304},
-{"pid":27443,"tid":27459,"ts":326462512975,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8319334},
-{"pid":27443,"tid":27459,"ts":326462513066,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8319426},
-{"pid":27443,"tid":27459,"ts":326462513250,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8319609},
-{"pid":27443,"tid":27459,"ts":326462513311,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8319670},
-{"pid":27443,"tid":27459,"ts":326462513433,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8319792},
-{"pid":27443,"tid":27459,"ts":326462513494,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8319853},
-{"pid":27443,"tid":27459,"ts":326462513555,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8319914},
-{"pid":27443,"tid":27459,"ts":326462513616,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8319975},
-{"pid":27443,"tid":27459,"ts":326462513707,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320067},
-{"pid":27443,"tid":27459,"ts":326462513768,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320128},
-{"pid":27443,"tid":27459,"ts":326462514013,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320372},
-{"pid":27443,"tid":27459,"ts":326462514074,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320433},
-{"pid":27443,"tid":27459,"ts":326462514257,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320616},
-{"pid":27443,"tid":27459,"ts":326462514348,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320708},
-{"pid":27443,"tid":27459,"ts":326462514409,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8320769},
-{"pid":27443,"tid":27459,"ts":326462514470,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8320860},
-{"pid":27443,"tid":27459,"ts":326462514562,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8320921},
-{"pid":27443,"tid":27459,"ts":326462514623,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321013},
-{"pid":27443,"tid":27459,"ts":326462514715,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321074},
-{"pid":27443,"tid":27459,"ts":326462514776,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321135},
-{"pid":27443,"tid":27459,"ts":326462514867,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321226},
-{"pid":27443,"tid":27459,"ts":326462514959,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321318},
-{"pid":27443,"tid":27459,"ts":326462514989,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8321349},
-{"pid":27443,"tid":27459,"ts":326462515111,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8321471},
-{"pid":27443,"tid":27459,"ts":326462515233,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321623},
-{"pid":27443,"tid":27459,"ts":326462515417,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8321806},
-{"pid":27443,"tid":27459,"ts":326462515478,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8321837},
-{"pid":27443,"tid":27459,"ts":326462515600,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8321989},
-{"pid":27443,"tid":27459,"ts":326462516057,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8322417},
-{"pid":27443,"tid":27459,"ts":326462516119,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8322478},
-{"pid":27443,"tid":27459,"ts":326462516180,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8322569},
-{"pid":27443,"tid":27459,"ts":326462516241,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8322600},
-{"pid":27443,"tid":27459,"ts":326462516332,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8322691},
-{"pid":27443,"tid":27459,"ts":326462516393,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8322752},
-{"pid":27443,"tid":27477,"ts":326462471223,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":763,"tdur":763,"tts":1041110},
-{"pid":27443,"tid":27477,"ts":326462471223,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":1041110},
-{"pid":27443,"tid":27477,"ts":326462471345,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":488,"tdur":457,"tts":1041233},
-{"pid":27443,"tid":27477,"ts":326462471345,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":458,"tdur":427,"tts":1041263},
-{"pid":27443,"tid":27477,"ts":326462471376,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":122,"tdur":122,"tts":1041263},
-{"pid":27443,"tid":27477,"ts":326462471528,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1041416},
-{"pid":27443,"tid":27477,"ts":326462471528,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1041416},
-{"pid":27443,"tid":27477,"ts":326462471559,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":183,"tdur":183,"tts":1041446},
-{"pid":27443,"tid":27477,"ts":326462471559,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":183,"tdur":183,"tts":1041446},
-{"pid":27443,"tid":27477,"ts":326462471589,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1041477,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462471620,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1041507},
-{"pid":27443,"tid":27477,"ts":326462471620,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":61,"tts":1041507},
-{"pid":27443,"tid":27477,"ts":326462471711,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1041599,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462471772,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":216}},"tts":1041660,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462471772,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":5062656},"tts":1041660,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462471833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1041751,"id":"0xaf88ab92f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462471925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1041812,"id":"0xaf88a730f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462471956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1041843,"id":"0xaf88a5b0f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462472291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1041935,"id":"0xaf88a290f182217a"},
-{"pid":27443,"tid":27477,"ts":326462472322,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":1041965},
-{"pid":27443,"tid":27477,"ts":326462472322,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":91,"tdur":92,"tts":1041965},
-{"pid":27443,"tid":27477,"ts":326462472352,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1041996,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462472383,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":30,"tdur":31,"tts":1042026},
-{"pid":27443,"tid":27477,"ts":326462472383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1042026,"id":"0xaf88a293f182217a"},
-{"pid":27443,"tid":27477,"ts":326462472413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042087,"id":"0xaf88a291f182217a"},
-{"pid":27443,"tid":27477,"ts":326462472444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":91,"tdur":92,"tts":1042087},
-{"pid":27443,"tid":27477,"ts":326462472444,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":91,"tdur":92,"tts":1042087},
-{"pid":27443,"tid":27477,"ts":326462472474,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":10616832,"bytes_used_for_staging_resources":10616832,"pending_copy_count":32,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1042118,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462472474,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":61,"tdur":31,"tts":1042148},
-{"pid":27443,"tid":27477,"ts":326462472505,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1042148,"id":"0xaf88a2acf182217a"},
-{"pid":27443,"tid":27477,"ts":326462472535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042179,"id":"0xaf88a292f182217a"},
-{"pid":27443,"tid":27477,"ts":326462472566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1042209},
-{"pid":27443,"tid":27477,"ts":326462472566,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":61,"tdur":61,"tts":1042209},
-{"pid":27443,"tid":27477,"ts":326462472566,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1042209,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462472596,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":31,"tdur":0,"tts":1042240},
-{"pid":27443,"tid":27477,"ts":326462472627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042270,"id":"0xaf88a293f182217a"},
-{"pid":27443,"tid":27477,"ts":326462472658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":244,"tdur":244,"tts":1042301},
-{"pid":27443,"tid":27477,"ts":326462472658,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":244,"tdur":244,"tts":1042301},
-{"pid":27443,"tid":27477,"ts":326462472688,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1042331},
-{"pid":27443,"tid":27477,"ts":326462472688,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1042331},
-{"pid":27443,"tid":27477,"ts":326462472719,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":122,"tdur":122,"tts":1042362},
-{"pid":27443,"tid":27477,"ts":326462472749,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":1042392},
-{"pid":27443,"tid":27477,"ts":326462472841,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":61,"tdur":61,"tts":1042484},
-{"pid":27443,"tid":27477,"ts":326462472871,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1042514},
-{"pid":27443,"tid":27477,"ts":326462472932,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042575,"id":"0xaf88a2acf182217a"},
-{"pid":27443,"tid":27477,"ts":326462472932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":305,"tdur":306,"tts":1042575},
-{"pid":27443,"tid":27477,"ts":326462472963,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":244,"tdur":244,"tts":1042606},
-{"pid":27443,"tid":27477,"ts":326462472963,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":1042606},
-{"pid":27443,"tid":27477,"ts":326462472993,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1042636},
-{"pid":27443,"tid":27477,"ts":326462473024,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":122,"tdur":122,"tts":1042667},
-{"pid":27443,"tid":27477,"ts":326462473054,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":91,"tts":1042698},
-{"pid":27443,"tid":27477,"ts":326462473146,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":61,"tdur":30,"tts":1042820},
-{"pid":27443,"tid":27477,"ts":326462473176,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":1042820},
-{"pid":27443,"tid":27477,"ts":326462473787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1042911,"id":"0xaf88a2adf182217a"},
-{"pid":27443,"tid":27477,"ts":326462473817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":1042942},
-{"pid":27443,"tid":27477,"ts":326462473878,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462470866.0,"frame_time_us":326462471053.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":31,"tdur":30,"tts":1043003},
-{"pid":27443,"tid":27477,"ts":326462473878,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":1043003,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462625626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1043125,"id":"0xaf88a2aef182217a"},
-{"pid":27443,"tid":27477,"ts":326462625656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendCommitRequestToImplThreadIfNeeded"},"dur":122,"tdur":122,"tts":1043155},
-{"pid":27443,"tid":27477,"ts":326462625656,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsCommitOnImplThread","args":{},"dur":92,"tdur":92,"tts":1043155},
-{"pid":27443,"tid":27477,"ts":326462625687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1043186,"id":"0xaf88aba0f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462625748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1043247,"id":"0xaf88a2aff182217a"},
-{"pid":27443,"tid":27477,"ts":326462625778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1043277,"id":"0xaf88a2aff182217a"},
-{"pid":27443,"tid":27477,"ts":326462625778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"PostBeginRetroFrameIfNeeded"},"dur":92,"tdur":92,"tts":1043277},
-{"pid":27443,"tid":27466,"ts":326462473543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":448313,"id":"0xaf88a2adf182217a"},
-{"pid":27443,"tid":27466,"ts":326462473543,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":92,"tts":448313},
-{"pid":27443,"tid":27466,"ts":326462482302,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":448710,"id":"0xaf88ab93f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462482332,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":122,"tts":448741},
-{"pid":27443,"tid":27466,"ts":326462482363,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":448741,"id":"0xccc65402"},
-{"pid":27443,"tid":27466,"ts":326462549386,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":824,"tdur":335,"tts":448924},
-{"pid":27443,"tid":27466,"ts":326462549538,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":292},"dur":641,"tdur":244,"tts":448985},
-{"pid":27443,"tid":27466,"ts":326462549538,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":448985,"id":"0xba470602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462549660,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":449015,"id":"0xaf88a7ccf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462549691,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449046,"id":"0xaf88a24df3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462549996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":449168,"id":"0xaf88a7cdf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462549996,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":449168},
-{"pid":27443,"tid":27466,"ts":326462550149,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449198,"id":"0xaf88a24ff3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462556589,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":763,"tdur":336,"tts":449320},
-{"pid":27443,"tid":27466,"ts":326462556650,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":328},"dur":335,"tdur":122,"tts":449351},
-{"pid":27443,"tid":27466,"ts":326462556650,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":449351,"id":"0xba470702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462556711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":449412,"id":"0xaf88a7c9f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462556711,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":449412},
-{"pid":27443,"tid":27466,"ts":326462556863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449442,"id":"0xaf88a24bf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462557138,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":214,"tdur":122,"tts":449534},
-{"pid":27443,"tid":27466,"ts":326462557138,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":449534,"id":"0xba470802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462557291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":449595,"id":"0xaf88a7c4f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462557291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449595,"id":"0xaf88a246f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462558359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":449717,"id":"0xaf88abacf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462558389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":449748},
-{"pid":27443,"tid":27466,"ts":326462558389,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":449748,"id":"0xccc65502"},
-{"pid":27443,"tid":27466,"ts":326462559061,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":449809},
-{"pid":27443,"tid":27466,"ts":326462559091,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":92,"tts":449839},
-{"pid":27443,"tid":27466,"ts":326462559122,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":449870,"id":"0xba470902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462559152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":449900,"id":"0xaf88a7c6f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462559152,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":449900,"id":"0xaf88a241f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462559549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":450022,"id":"0xaf88abadf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462559549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":450022},
-{"pid":27443,"tid":27466,"ts":326462559580,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":450053,"id":"0xccc65602"},
-{"pid":27443,"tid":27466,"ts":326462560037,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":450114},
-{"pid":27443,"tid":27466,"ts":326462560068,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":91,"tdur":92,"tts":450144},
-{"pid":27443,"tid":27466,"ts":326462560068,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":450175,"id":"0xba470a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462560098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":450175,"id":"0xaf88a7c1f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462560129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":450205,"id":"0xaf88a25cf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462560617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":450297,"id":"0xaf88abaef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462560617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":450297},
-{"pid":27443,"tid":27466,"ts":326462560648,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":450328,"id":"0xccc65702"},
-{"pid":27443,"tid":27466,"ts":326462581127,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":450419},
-{"pid":27443,"tid":27466,"ts":326462581157,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":123,"tdur":122,"tts":450450},
-{"pid":27443,"tid":27466,"ts":326462581157,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":450480,"id":"0xba470b02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462581218,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":450511,"id":"0xaf88a7c3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462581249,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":450541,"id":"0xaf88a25ff3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462581798,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":450663,"id":"0xaf88abaff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462581829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":450694},
-{"pid":27443,"tid":27466,"ts":326462581829,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":450694,"id":"0xccc65802"},
-{"pid":27443,"tid":27466,"ts":326462587323,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":305,"tdur":183,"tts":450785},
-{"pid":27443,"tid":27466,"ts":326462587353,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":275,"tdur":152,"tts":450816},
-{"pid":27443,"tid":27466,"ts":326462587384,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":450846,"id":"0xba470c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462587567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":450907,"id":"0xaf88a7dff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462587567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":450907,"id":"0xaf88a254f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462588147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":451091,"id":"0xaf88aba8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462588147,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":451091},
-{"pid":27443,"tid":27466,"ts":326462588177,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":451121,"id":"0xccc65902"},
-{"pid":27443,"tid":27466,"ts":326462593274,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":451182},
-{"pid":27443,"tid":27466,"ts":326462593305,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":122,"tts":451213},
-{"pid":27443,"tid":27466,"ts":326462593335,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":451243,"id":"0xba470d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462593366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":451274,"id":"0xaf88a7dbf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462593366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":451304,"id":"0xaf88a251f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462593976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":451457,"id":"0xaf88aba9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462516546,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8322936},
-{"pid":27443,"tid":27459,"ts":326462516607,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8322997},
-{"pid":27443,"tid":27459,"ts":326462516759,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8323119},
-{"pid":27443,"tid":27459,"ts":326462519628,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8325682,"id":"0xaf88a731f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462519659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8325713,"id":"0xaf88a5b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462519720,"ph":"I","cat":"devtools.timeline","name":"TimerInstall","args":{"data":{"timerId":224,"frame":"0x78c60000","timeout":0,"singleShot":true}},"tts":8325774,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462520788,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8326842},
-{"pid":27443,"tid":27459,"ts":326462521215,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8327269},
-{"pid":27443,"tid":27459,"ts":326462522131,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8328185},
-{"pid":27443,"tid":27459,"ts":326462523962,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8330016},
-{"pid":27443,"tid":27459,"ts":326462525183,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8331237},
-{"pid":27443,"tid":27459,"ts":326462525397,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8331451},
-{"pid":27443,"tid":27459,"ts":326462525488,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8331542},
-{"pid":27443,"tid":27459,"ts":326462525946,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8332000},
-{"pid":27443,"tid":27459,"ts":326462527808,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8333892},
-{"pid":27443,"tid":27459,"ts":326462528235,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8334289},
-{"pid":27443,"tid":27459,"ts":326462530707,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8336761},
-{"pid":27443,"tid":27459,"ts":326462530799,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8336853},
-{"pid":27443,"tid":27459,"ts":326462530860,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8336914},
-{"pid":27443,"tid":27459,"ts":326462530860,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8336914},
-{"pid":27443,"tid":27459,"ts":326462530951,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8337036},
-{"pid":27443,"tid":27459,"ts":326462531074,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337128},
-{"pid":27443,"tid":27459,"ts":326462531104,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337158},
-{"pid":27443,"tid":27459,"ts":326462531135,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8337189},
-{"pid":27443,"tid":27459,"ts":326462531196,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8337250},
-{"pid":27443,"tid":27459,"ts":326462531379,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337433},
-{"pid":27443,"tid":27459,"ts":326462531440,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337494},
-{"pid":27443,"tid":27459,"ts":326462531531,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337585},
-{"pid":27443,"tid":27459,"ts":326462531592,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337646},
-{"pid":27443,"tid":27459,"ts":326462531653,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337738},
-{"pid":27443,"tid":27459,"ts":326462531714,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337768},
-{"pid":27443,"tid":27459,"ts":326462531775,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337830},
-{"pid":27443,"tid":27459,"ts":326462531867,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8337921},
-{"pid":27443,"tid":27459,"ts":326462531989,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8338043},
-{"pid":27443,"tid":27459,"ts":326462532111,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8338165},
-{"pid":27443,"tid":27459,"ts":326462532416,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8338501},
-{"pid":27443,"tid":27459,"ts":326462532447,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8338531},
-{"pid":27443,"tid":27459,"ts":326462532508,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8338593},
-{"pid":27443,"tid":27459,"ts":326462532538,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8338623},
-{"pid":27443,"tid":27459,"ts":326462532661,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8338745},
-{"pid":27443,"tid":27459,"ts":326462532966,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8339020},
-{"pid":27443,"tid":27459,"ts":326462533118,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8339172},
-{"pid":27443,"tid":27459,"ts":326462534675,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8340729},
-{"pid":27443,"tid":27459,"ts":326462534766,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8340821},
-{"pid":27443,"tid":27459,"ts":326462534828,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8340882},
-{"pid":27443,"tid":27459,"ts":326462535102,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8341156},
-{"pid":27443,"tid":27459,"ts":326462535163,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8341248},
-{"pid":27443,"tid":27459,"ts":326462535468,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8341522},
-{"pid":27443,"tid":27459,"ts":326462535621,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8341645},
-{"pid":27443,"tid":27459,"ts":326462535682,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8341706},
-{"pid":27443,"tid":27459,"ts":326462535713,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8341736},
-{"pid":27443,"tid":27459,"ts":326462535743,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8341767},
-{"pid":27443,"tid":27459,"ts":326462535804,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8341828},
-{"pid":27443,"tid":27459,"ts":326462535957,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8341980},
-{"pid":27443,"tid":27459,"ts":326462536323,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8342347},
-{"pid":27443,"tid":27459,"ts":326462536476,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8342499},
-{"pid":27443,"tid":27459,"ts":326462536506,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8342530},
-{"pid":27443,"tid":27459,"ts":326462536720,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8342743},
-{"pid":27443,"tid":27459,"ts":326462539253,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8345276},
-{"pid":27443,"tid":27459,"ts":326462539314,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8345368},
-{"pid":27443,"tid":27459,"ts":326462539375,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8345399},
-{"pid":27443,"tid":27459,"ts":326462539375,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8345429},
-{"pid":27443,"tid":27459,"ts":326462539467,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8345490},
-{"pid":27443,"tid":27459,"ts":326462539619,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8345643},
-{"pid":27443,"tid":27459,"ts":326462539894,"ph":"B","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8345917},
-{"pid":27443,"tid":27459,"ts":326462539985,"ph":"E","cat":"v8","name":"V8.ParseLazyMicroSeconds","args":{},"tts":8346009},
-{"pid":27443,"tid":27459,"ts":326462540046,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8346101},
-{"pid":27443,"tid":27459,"ts":326462540077,"ph":"B","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8346101},
-{"pid":27443,"tid":27459,"ts":326462540169,"ph":"E","cat":"v8","name":"V8.CompileFullCode","args":{},"tts":8346192},
-{"pid":27443,"tid":27459,"ts":326462540535,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8346589},
-{"pid":27443,"tid":27459,"ts":326462540565,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8346589},
-{"pid":27443,"tid":27459,"ts":326462540687,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8346711},
-{"pid":27443,"tid":27459,"ts":326462543007,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8347260},
-{"pid":27443,"tid":27459,"ts":326462543221,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8347474},
-{"pid":27443,"tid":27459,"ts":326462544289,"ph":"B","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8348451},
-{"pid":27443,"tid":27459,"ts":326462545418,"ph":"E","cat":"v8","name":"V8.RecompileSynchronous","args":{},"tts":8349580},
-{"pid":27443,"tid":27459,"ts":326462545723,"ph":"I","cat":"devtools.timeline","name":"TimerRemove","args":{"data":{"timerId":219,"frame":"0x78c60000"}},"tts":8349916,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462545754,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8349916},
-{"pid":27443,"tid":27459,"ts":326462545815,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":30,"tdur":0,"tts":8350007},
-{"pid":27443,"tid":27459,"ts":326462545876,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":30,"tdur":30,"tts":8350038},
-{"pid":27443,"tid":27459,"ts":326462546120,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29933568,"free":7815168},"tts":8350282},
-{"pid":27443,"tid":27459,"ts":326462546151,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8350343,"id":"0xaf88a732f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462546242,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8350434,"id":"0xaf88a5b7f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462546273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":123,"tts":8350434},{"pid":27443,"tid":27459,"ts":326462546303,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8350465,"id":"0xaf88a5b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462546303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8350465,"id":"0xaf88a730f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462546303,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":92,"tdur":92,"tts":8350465},
-{"pid":27443,"tid":27459,"ts":326462546334,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":61,"tdur":62,"tts":8350495},
-{"pid":27443,"tid":27459,"ts":326462546364,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8350526,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462546364,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8350526,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462546425,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8350587,"id":"0xaf88a5b0f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462546425,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8350587},
-{"pid":27443,"tid":27459,"ts":326462546456,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8350618,"id":"0xaf88a732f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462546456,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/dom/Document.cpp","src_func":"checkLoadEventSoon"},"dur":30,"tdur":30,"tts":8350618},
-{"pid":27443,"tid":27459,"ts":326462546486,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":0,"tdur":0,"tts":8350648},
-{"pid":27443,"tid":27459,"ts":326462546517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8350709,"id":"0xaf88a5b2f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462546547,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":2228,"tdur":2228,"tts":8350709},
-{"pid":27443,"tid":27459,"ts":326462546547,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8350709,"id":"0xaf88a5b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462546578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8350740,"id":"0xaf88a731f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462546578,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":2197,"tdur":2197,"tts":8350740},
-{"pid":27443,"tid":27459,"ts":326462546578,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":2197,"tdur":2167,"tts":8350770},
-{"pid":27443,"tid":27459,"ts":326462546608,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":224,"frame":"0x78c60000"}},"dur":2137,"tdur":2106,"tts":8350801},
-{"pid":27443,"tid":27459,"ts":326462546639,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":2106,"tdur":2106,"tts":8350801},
-{"pid":27443,"tid":27459,"ts":326462546730,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"66","scriptName":"undefined","scriptLine":28,"frame":"0x78c60000"}},"dur":2015,"tdur":2015,"tts":8350892},
-{"pid":27443,"tid":27459,"ts":326462546730,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8350923},
-{"pid":27443,"tid":27459,"ts":326462548714,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8352876},
-{"pid":27443,"tid":27459,"ts":326462548806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462520},"tts":8352968,"id":"0xaf88a5b1f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462548806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":30,"tdur":0,"tts":8352998},
-{"pid":27443,"tid":27459,"ts":326462548867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8353029,"id":"0xaf88a5b3f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462548867,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8353029},
-{"pid":27443,"tid":27459,"ts":326462548897,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8353059,"id":"0xaf88a24cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462548897,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8353059,"id":"0xaf88a73ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462548897,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":8353059},
-{"pid":27443,"tid":27459,"ts":326462548928,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8353090,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462548928,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":47.406},"dur":122,"tdur":122,"tts":8353090},
-{"pid":27443,"tid":27459,"ts":326462548928,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8353120},
-{"pid":27443,"tid":27459,"ts":326462548989,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8353151},
-{"pid":27443,"tid":27459,"ts":326462548989,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8353151,"id":"0xaf88a733f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462549019,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8353181,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462549019,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8353181,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462549081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8353242,"id":"0xaf88a24cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462549081,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8353242},
-{"pid":27443,"tid":27459,"ts":326462549874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8353364,"id":"0xaf88a24df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462549905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8353395},
-{"pid":27443,"tid":27459,"ts":326462549905,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8353395,"id":"0xaf88a24ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462549935,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8353425,"id":"0xaf88a7ccf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462549935,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":31,"tts":8353425},
-{"pid":27443,"tid":27459,"ts":326462549996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8353486,"id":"0xaf88a24ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462549996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":366,"tdur":214,"tts":8353486},
-{"pid":27443,"tid":27459,"ts":326462549996,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":8353486},
-{"pid":27443,"tid":27459,"ts":326462550240,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8353578,"id":"0xaf88a248f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462550271,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8353609,"id":"0xaf88a733f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462550271,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":8353609},
-{"pid":27443,"tid":27459,"ts":326462550271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8353609,"id":"0xaf88a7cef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462550332,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8353670,"id":"0xaf88a7cff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462550362,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8353700,"id":"0xaf88a24ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462550393,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":8353731},
-{"pid":27443,"tid":27459,"ts":326462550393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8353731,"id":"0xaf88a7cef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462550423,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":92,"tdur":92,"tts":8353761},
-{"pid":27443,"tid":27459,"ts":326462550423,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8353761,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462550454,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8353792,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462550484,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8353822,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462550484,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8353853,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462550515,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8353853,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462550545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8353883,"id":"0xaf88a248f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462550576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":488,"tts":8353914},
-{"pid":27443,"tid":27459,"ts":326462550576,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8353914,"id":"0xaf88a249f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462550607,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8353944,"id":"0xaf88a7cdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462550607,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":457,"tdur":458,"tts":8353944},
-{"pid":27443,"tid":27459,"ts":326462550668,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedResponse","args":{},"dur":366,"tdur":367,"tts":8354005},
-{"pid":27443,"tid":27459,"ts":326462551003,"ph":"I","cat":"devtools.timeline","name":"ResourceReceiveResponse","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","statusCode":200,"mimeType":"image/png"}},"tts":8354341,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462551095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8354433,"id":"0xaf88a249f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462551095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8354433},
-{"pid":27443,"tid":27459,"ts":326462551125,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8354463,"id":"0xaf88a24af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462551125,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8354494,"id":"0xaf88a7cff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462551156,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":8354494},
-{"pid":27443,"tid":27459,"ts":326462551156,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8354494,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462551156,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.328},"dur":122,"tdur":122,"tts":8354494},
-{"pid":27443,"tid":27459,"ts":326462551186,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8354524},
-{"pid":27443,"tid":27459,"ts":326462551217,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8354555},
-{"pid":27443,"tid":27459,"ts":326462551247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8354585,"id":"0xaf88a7c8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462551247,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8354585,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462551278,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8354616,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462551309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8354646,"id":"0xaf88a24af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462551339,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8354677},
-{"pid":27443,"tid":27459,"ts":326462557016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8354768,"id":"0xaf88a24bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8354799},
-{"pid":27443,"tid":27459,"ts":326462557046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8354799,"id":"0xaf88a244f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8354829,"id":"0xaf88a7c9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462557077,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":8354829},
-{"pid":27443,"tid":27459,"ts":326462557077,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnSetDataBuffer","args":{},"dur":61,"tdur":0,"tts":8354860},
-{"pid":27443,"tid":27459,"ts":326462557168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8354921,"id":"0xaf88a244f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":92,"tts":8354951},
-{"pid":27443,"tid":27459,"ts":326462557199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8354951,"id":"0xaf88a245f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8354982,"id":"0xaf88a7c8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462557229,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":8354982},
-{"pid":27443,"tid":27459,"ts":326462557229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8354982,"id":"0xaf88a7caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462557260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8355012,"id":"0xaf88a7cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462557443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8355104,"id":"0xaf88a245f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8355104},
-{"pid":27443,"tid":27459,"ts":326462557474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8355135,"id":"0xaf88a247f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8355135,"id":"0xaf88a7caf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462557474,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":91,"tdur":91,"tts":8355135},
-{"pid":27443,"tid":27459,"ts":326462557504,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8355165,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462557504,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8355165,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462557504,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8355165,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462557535,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8355196,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462557565,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8355226,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462557596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8355257,"id":"0xaf88a246f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462557596,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":763,"tdur":641,"tts":8355257},
-{"pid":27443,"tid":27459,"ts":326462557626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8355287,"id":"0xaf88a7c4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462557687,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":672,"tdur":580,"tts":8355318},
-{"pid":27443,"tid":27459,"ts":326462557687,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":672,"tdur":580,"tts":8355318},
-{"pid":27443,"tid":27459,"ts":326462557748,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":48203}},"tts":8355379,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462557779,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":213,"tdur":122,"tts":8355409},
-{"pid":27443,"tid":27459,"ts":326462557779,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":61,"tts":8355409},
-{"pid":27443,"tid":27459,"ts":326462557992,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":275,"tdur":275,"tts":8355531},
-{"pid":27443,"tid":27459,"ts":326462558023,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":244,"tdur":213,"tts":8355562},
-{"pid":27443,"tid":27459,"ts":326462558267,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":8355806},
-{"pid":27443,"tid":27459,"ts":326462558298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8355837,"id":"0xaf88abacf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462558389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8355928,"id":"0xaf88a247f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462558420,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8355959},
-{"pid":27443,"tid":27459,"ts":326462558420,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8355959,"id":"0xaf88a240f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462558450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8355989,"id":"0xaf88a7cbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462558450,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":8355989},
-{"pid":27443,"tid":27459,"ts":326462558450,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8355989,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462558481,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.085},"dur":91,"tdur":91,"tts":8356020},
-{"pid":27443,"tid":27459,"ts":326462558481,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8356020},
-{"pid":27443,"tid":27459,"ts":326462558511,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8356050},
-{"pid":27443,"tid":27459,"ts":326462558542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8356081,"id":"0xaf88a7c5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462558572,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8356111,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462558572,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8356111,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462558633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8356172,"id":"0xaf88a240f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462558633,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8356172},
-{"pid":27443,"tid":27459,"ts":326462559213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8356233,"id":"0xaf88a241f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462559244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":305,"tts":8356264},
-{"pid":27443,"tid":27459,"ts":326462559274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8356294,"id":"0xaf88a242f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462559274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8356294,"id":"0xaf88a7c6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462559274,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":275,"tdur":275,"tts":8356294},
-{"pid":27443,"tid":27459,"ts":326462559305,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":213,"tdur":213,"tts":8356325},
-{"pid":27443,"tid":27459,"ts":326462559335,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":16393}},"tts":8356355,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462559366,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":30,"tts":8356386},
-{"pid":27443,"tid":27459,"ts":326462559396,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":8356416},
-{"pid":27443,"tid":27459,"ts":326462559396,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":8356416},
-{"pid":27443,"tid":27459,"ts":326462559457,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":8356477},
-{"pid":27443,"tid":27459,"ts":326462559488,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8356508,"id":"0xaf88abadf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462559580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8356600,"id":"0xaf88a242f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462559580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":122,"tts":8356600},
-{"pid":27443,"tid":27459,"ts":326462559610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8356630,"id":"0xaf88a243f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462559610,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8356630,"id":"0xaf88a7c5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462559610,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":427,"tdur":61,"tts":8356630},
-{"pid":27443,"tid":27459,"ts":326462559641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8356661,"id":"0xaf88a7c7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462559641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8356661,"id":"0xaf88a7c0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462560098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8356752,"id":"0xaf88a243f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462560098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":153,"tts":8356752},
-{"pid":27443,"tid":27459,"ts":326462560159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8356783,"id":"0xaf88a25df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462560190,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8356813,"id":"0xaf88a7c7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462560190,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":91,"tdur":92,"tts":8356813},
-{"pid":27443,"tid":27459,"ts":326462560220,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8356844,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560220,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8356844,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560220,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8356844,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560251,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8356874,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560281,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8356905,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8356935,"id":"0xaf88a25cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462560312,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":274,"tts":8356966},
-{"pid":27443,"tid":27459,"ts":326462560343,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8356966,"id":"0xaf88a7c1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462560343,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":274,"tts":8356966},
-{"pid":27443,"tid":27459,"ts":326462560373,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":214,"tdur":214,"tts":8356996},
-{"pid":27443,"tid":27459,"ts":326462560404,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":0}},"tts":8357027,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462560404,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":31,"tts":8357057},
-{"pid":27443,"tid":27459,"ts":326462560465,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":8357088},
-{"pid":27443,"tid":27459,"ts":326462560465,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":8357088},
-{"pid":27443,"tid":27459,"ts":326462560526,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":31,"tts":8357179},
-{"pid":27443,"tid":27459,"ts":326462560556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8357179,"id":"0xaf88abaef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462560648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8357271,"id":"0xaf88a25df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462560648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8357271},
-{"pid":27443,"tid":27459,"ts":326462560678,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8357302,"id":"0xaf88a25ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462560678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8357302,"id":"0xaf88a7c0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462560709,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":8357332},
-{"pid":27443,"tid":27459,"ts":326462560709,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8357332,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560709,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.542},"dur":122,"tdur":122,"tts":8357332},
-{"pid":27443,"tid":27459,"ts":326462560739,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8357363},
-{"pid":27443,"tid":27459,"ts":326462560770,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8357393},
-{"pid":27443,"tid":27459,"ts":326462560800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8357424,"id":"0xaf88a7c2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462560800,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8357424,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560831,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8357454,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462560861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8357485,"id":"0xaf88a25ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462560861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":30,"tts":8357485},
-{"pid":27443,"tid":27459,"ts":326462581371,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8357576,"id":"0xaf88a25ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462581402,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":427,"tts":8357607},
-{"pid":27443,"tid":27459,"ts":326462581432,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8357637,"id":"0xaf88a258f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462581432,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8357637,"id":"0xaf88a7c3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462581432,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":366,"tts":8357637},
-{"pid":27443,"tid":27459,"ts":326462581463,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":335,"tdur":335,"tts":8357668},
-{"pid":27443,"tid":27459,"ts":326462581524,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":22337}},"tts":8357729,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462581524,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":91,"tdur":61,"tts":8357759},
-{"pid":27443,"tid":27459,"ts":326462581615,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":92,"tts":8357820},
-{"pid":27443,"tid":27459,"ts":326462581615,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":92,"tdur":30,"tts":8357851},
-{"pid":27443,"tid":27459,"ts":326462581707,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":91,"tdur":61,"tts":8357912},
-{"pid":27443,"tid":27459,"ts":326462581737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8357942,"id":"0xaf88abaff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462581859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8358065,"id":"0xaf88a258f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462581859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":184,"tdur":122,"tts":8358065},
-{"pid":27443,"tid":27459,"ts":326462581890,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8358095,"id":"0xaf88a259f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462581920,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8358126,"id":"0xaf88a7c2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462581920,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":8358126},
-{"pid":27443,"tid":27459,"ts":326462581951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8358156,"id":"0xaf88a7dcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462581951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8358156,"id":"0xaf88a7ddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462582073,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8358248,"id":"0xaf88a259f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462582073,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":183,"tts":8358248},
-{"pid":27443,"tid":27459,"ts":326462582104,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8358278,"id":"0xaf88a25af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462582104,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":8358278},
-{"pid":27443,"tid":27459,"ts":326462582226,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8358309,"id":"0xaf88a7dcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462582226,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":152,"tdur":122,"tts":8358309},
-{"pid":27443,"tid":27459,"ts":326462582256,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8358339,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582256,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8358339,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582287,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8358370,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582348,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8358400,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582348,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8358400,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8358461,"id":"0xaf88a25af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462582439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":8358492},
-{"pid":27443,"tid":27459,"ts":326462582439,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8358522,"id":"0xaf88a25bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462582470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8358522,"id":"0xaf88a7ddf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462582470,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":183,"tts":8358522},
-{"pid":27443,"tid":27459,"ts":326462582500,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8358553,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582500,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.787},"dur":153,"tdur":152,"tts":8358553},
-{"pid":27443,"tid":27459,"ts":326462582531,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8358583},
-{"pid":27443,"tid":27459,"ts":326462582561,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8358614},
-{"pid":27443,"tid":27459,"ts":326462582592,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8358644,"id":"0xaf88a7def3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462582622,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8358675,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582622,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8358705,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462582714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8358766,"id":"0xaf88a25bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462582714,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8358766},
-{"pid":27443,"tid":27459,"ts":326462587658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8358889,"id":"0xaf88a254f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462587689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":580,"tdur":427,"tts":8358919},
-{"pid":27443,"tid":27459,"ts":326462587719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8358950,"id":"0xaf88a255f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462587719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8358950,"id":"0xaf88a7dff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462587750,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":519,"tdur":366,"tts":8358980},
-{"pid":27443,"tid":27459,"ts":326462587750,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":488,"tdur":336,"tts":8358980},
-{"pid":27443,"tid":27459,"ts":326462587811,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":17580}},"tts":8359072,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462587811,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":8359072},
-{"pid":27443,"tid":27459,"ts":326462587872,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":8359102},
-{"pid":27443,"tid":27459,"ts":326462587933,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":8359163},
-{"pid":27443,"tid":27459,"ts":326462587933,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":30,"tts":8359194},
-{"pid":27443,"tid":27459,"ts":326462587994,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":244,"tdur":61,"tts":8359255},
-{"pid":27443,"tid":27459,"ts":326462588025,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8359255,"id":"0xaf88aba8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462588299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8359377,"id":"0xaf88a255f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462588299,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":30,"tts":8359377},
-{"pid":27443,"tid":27459,"ts":326462588482,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8359438},
-{"pid":27443,"tid":27459,"ts":326462588482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8359438,"id":"0xaf88a256f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462588513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8359468,"id":"0xaf88a7def3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462588513,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":31,"tts":8359468},
-{"pid":27443,"tid":27459,"ts":326462588513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8359468,"id":"0xaf88a7d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462588543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8359499,"id":"0xaf88a7d9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462588574,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8359560,"id":"0xaf88a256f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462588604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":8359560},
-{"pid":27443,"tid":27459,"ts":326462588604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8359591,"id":"0xaf88a257f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462588635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8359591,"id":"0xaf88a7d8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462588635,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":91,"tdur":91,"tts":8359591},
-{"pid":27443,"tid":27459,"ts":326462588665,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8359621,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588665,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8359621,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588696,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8359652,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588726,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8359682,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588726,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8359682,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8359713,"id":"0xaf88a257f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462588788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":8359743},
-{"pid":27443,"tid":27459,"ts":326462588788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8359743,"id":"0xaf88a250f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462588818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8359774,"id":"0xaf88a7d9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462588818,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":183,"tts":8359774},
-{"pid":27443,"tid":27459,"ts":326462588818,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8359774,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588849,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.878},"dur":122,"tdur":122,"tts":8359804},
-{"pid":27443,"tid":27459,"ts":326462588849,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8359804},
-{"pid":27443,"tid":27459,"ts":326462588910,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8359865},
-{"pid":27443,"tid":27459,"ts":326462588910,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8359865,"id":"0xaf88a7daf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462588940,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8359896,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462588940,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8359896,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462589032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8359987,"id":"0xaf88a250f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462589032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8359987},
-{"pid":27443,"tid":27459,"ts":326462593488,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8360048,"id":"0xaf88a251f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462593488,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":610,"tdur":336,"tts":8360048},
-{"pid":27443,"tid":27459,"ts":326462593518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8360079,"id":"0xaf88a252f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462593518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8360079,"id":"0xaf88a7dbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462593518,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":8360079},
-{"pid":27443,"tid":27459,"ts":326462593610,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":488,"tdur":275,"tts":8360109},
-{"pid":27443,"tid":27459,"ts":326462593671,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":397,"tdur":245,"tts":8360109},
-{"pid":27443,"tid":27459,"ts":326462593732,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":9271}},"tts":8360170,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462593732,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":31,"tts":8360170},
-{"pid":27443,"tid":27459,"ts":326462593793,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":62,"tts":8360231},
-{"pid":27443,"tid":27459,"ts":326462593793,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":30,"tdur":31,"tts":8360231},
-{"pid":27443,"tid":27459,"ts":326462593854,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":214,"tdur":61,"tts":8360293},
-{"pid":27443,"tid":27459,"ts":326462593884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8360323,"id":"0xaf88aba9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462594129,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8360415,"id":"0xaf88a252f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594129,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8360415},
-{"pid":27443,"tid":27459,"ts":326462594159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8360445,"id":"0xaf88a253f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8360445,"id":"0xaf88a7daf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462594159,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":30,"tts":8360476},
-{"pid":27443,"tid":27459,"ts":326462594190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8360476,"id":"0xaf88a7d4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462594190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8360506,"id":"0xaf88a7d5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462594251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8360537,"id":"0xaf88a253f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8360537},
-{"pid":27443,"tid":27459,"ts":326462594281,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8360567,"id":"0xaf88a26cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594281,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8360567,"id":"0xaf88a7d4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462594281,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":8360567},
-{"pid":27443,"tid":27459,"ts":326462594312,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8360598,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594312,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8360598,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27466,"ts":326462593976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":451457},
-{"pid":27443,"tid":27466,"ts":326462594007,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":451487,"id":"0xccc65a02"},
-{"pid":27443,"tid":27466,"ts":326462602003,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":153,"tts":451548},
-{"pid":27443,"tid":27466,"ts":326462602125,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":122,"tts":451579},
-{"pid":27443,"tid":27466,"ts":326462602125,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":451579,"id":"0xba470e02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462602186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":451640,"id":"0xaf88a7d7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462602186,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":451640,"id":"0xaf88a26ef3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462602796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":451762,"id":"0xaf88abaaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462602827,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":451793},
-{"pid":27443,"tid":27466,"ts":326462602827,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":451793,"id":"0xccc65b02"},
-{"pid":27443,"tid":27466,"ts":326462607405,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":451884},
-{"pid":27443,"tid":27466,"ts":326462607435,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":123,"tdur":122,"tts":451915},
-{"pid":27443,"tid":27466,"ts":326462607466,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":451945,"id":"0xba470f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462607497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":451976,"id":"0xaf88a7d3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462607527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":452006,"id":"0xaf88a26bf3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462607893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452098,"id":"0xaf88ababf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462607924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":452128},
-{"pid":27443,"tid":27466,"ts":326462607924,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":452128,"id":"0xccc65c02"},
-{"pid":27443,"tid":27466,"ts":326462612868,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":452250},
-{"pid":27443,"tid":27466,"ts":326462612899,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":122,"tdur":122,"tts":452281},
-{"pid":27443,"tid":27466,"ts":326462612899,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":452281,"id":"0xba471002","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462612960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":452342,"id":"0xaf88a7eff3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462612960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":452342,"id":"0xaf88a260f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462616378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452495,"id":"0xaf88aba4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462616378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":61,"tts":452495},
-{"pid":27443,"tid":27466,"ts":326462616408,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":452525,"id":"0xccc65d02"},
-{"pid":27443,"tid":27466,"ts":326462616408,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":452525},
-{"pid":27443,"tid":27466,"ts":326462619918,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":452617},
-{"pid":27443,"tid":27466,"ts":326462619949,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":152,"tdur":153,"tts":452647},
-{"pid":27443,"tid":27466,"ts":326462619949,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":452647,"id":"0xba471102","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462620040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":452739,"id":"0xaf88a7ebf3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462620040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":452739,"id":"0xaf88a27df3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462620742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":452891,"id":"0xaf88aba5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462620742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":452891},
-{"pid":27443,"tid":27466,"ts":326462620773,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":452922,"id":"0xccc65e02"},
-{"pid":27443,"tid":27466,"ts":326462621933,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":152,"tts":452983},
-{"pid":27443,"tid":27466,"ts":326462621963,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":337},"dur":92,"tdur":92,"tts":453013},
-{"pid":27443,"tid":27466,"ts":326462621963,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":453013,"id":"0xba471202","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462622024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":453074,"id":"0xaf88a7e7f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462622024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":453074,"id":"0xaf88a27af3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462622543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453227,"id":"0xaf88aba6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462622574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":453258},
-{"pid":27443,"tid":27466,"ts":326462622574,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":453258,"id":"0xccc65f02"},
-{"pid":27443,"tid":27466,"ts":326462623215,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":453349},
-{"pid":27443,"tid":27466,"ts":326462623245,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":350},"dur":122,"tdur":122,"tts":453380},
-{"pid":27443,"tid":27466,"ts":326462623245,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":453380,"id":"0xba471302","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462623276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":453410,"id":"0xaf88a7e2f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462623306,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":453441,"id":"0xaf88a277f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462623337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":453471,"id":"0xaf88a7e3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326462624893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453593,"id":"0xaf88aba7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462624893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":453593},
-{"pid":27443,"tid":27466,"ts":326462624924,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":453624,"id":"0xccc66002"},
-{"pid":27443,"tid":27466,"ts":326462625900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":453746,"id":"0xaf88aba0f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462625931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":453746},
-{"pid":27443,"tid":27466,"ts":326462625931,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":453746,"id":"0xccc66102"},
-{"pid":27443,"tid":27466,"ts":326462627426,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":453837},
-{"pid":27443,"tid":27466,"ts":326462627457,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":91,"tts":453868},
-{"pid":27443,"tid":27466,"ts":326462627457,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":453898,"id":"0xba471402","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462627518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":453929,"id":"0xaf88a2a8f182217a"},
-{"pid":27443,"tid":27466,"ts":326462641679,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":122,"tts":454051},
-{"pid":27443,"tid":27466,"ts":326462641740,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":91,"tts":454082},
-{"pid":27443,"tid":27466,"ts":326462641740,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":454082,"id":"0xba471502","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462641771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454143,"id":"0xaf88a2a5f182217a"},
-{"pid":27443,"tid":27466,"ts":326462656482,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":152,"tdur":153,"tts":454234},
-{"pid":27443,"tid":27459,"ts":326462594342,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8360628,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594373,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8360659,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594403,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8360689,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8360720,"id":"0xaf88a26cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8360750},
-{"pid":27443,"tid":27459,"ts":326462594464,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8360750,"id":"0xaf88a26df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594495,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8360781,"id":"0xaf88a7d5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462594495,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":122,"tdur":122,"tts":8360781},
-{"pid":27443,"tid":27459,"ts":326462594495,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8360781,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594495,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.878},"dur":122,"tdur":92,"tts":8360811},
-{"pid":27443,"tid":27459,"ts":326462594525,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8360811},
-{"pid":27443,"tid":27459,"ts":326462594556,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8360842},
-{"pid":27443,"tid":27459,"ts":326462594586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8360872,"id":"0xaf88a7d6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462594586,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8360903,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594617,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8360903,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462594647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8360933,"id":"0xaf88a26df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462594678,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8360964},
-{"pid":27443,"tid":27459,"ts":326462602400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8361025,"id":"0xaf88a26ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462602430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":366,"tts":8361056},
-{"pid":27443,"tid":27459,"ts":326462602461,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8361086,"id":"0xaf88a26ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462602461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8361086,"id":"0xaf88a7d7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462602461,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":457,"tdur":336,"tts":8361086},
-{"pid":27443,"tid":27459,"ts":326462602491,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":397,"tdur":274,"tts":8361117},
-{"pid":27443,"tid":27459,"ts":326462602552,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":18767}},"tts":8361178,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462602552,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":8361178},
-{"pid":27443,"tid":27459,"ts":326462602613,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":8361239},
-{"pid":27443,"tid":27459,"ts":326462602644,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":30,"tdur":31,"tts":8361269},
-{"pid":27443,"tid":27459,"ts":326462602705,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":183,"tdur":61,"tts":8361330},
-{"pid":27443,"tid":27459,"ts":326462602705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8361330,"id":"0xaf88abaaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462602949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8361452,"id":"0xaf88a26ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462602979,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":91,"tts":8361483},
-{"pid":27443,"tid":27459,"ts":326462602979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8361483,"id":"0xaf88a268f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462603010,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8361513,"id":"0xaf88a7d6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462603010,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":31,"tts":8361513},
-{"pid":27443,"tid":27459,"ts":326462603010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8361513,"id":"0xaf88a7d0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462603041,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8361544,"id":"0xaf88a7d1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462603071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8361574,"id":"0xaf88a268f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462603102,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8361605},
-{"pid":27443,"tid":27459,"ts":326462603102,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8361605,"id":"0xaf88a269f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462603132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8361635,"id":"0xaf88a7d0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462603132,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":92,"tdur":92,"tts":8361635},
-{"pid":27443,"tid":27459,"ts":326462603163,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8361666,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603163,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8361666,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603163,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8361666,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603193,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8361696,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603193,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8361696,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8361757,"id":"0xaf88a269f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462603254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":214,"tts":8361757},
-{"pid":27443,"tid":27459,"ts":326462603285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8361788,"id":"0xaf88a26af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462603285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8361788,"id":"0xaf88a7d1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462603285,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":152,"tdur":122,"tts":8361819},
-{"pid":27443,"tid":27459,"ts":326462603315,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8361819,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603315,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.878},"dur":122,"tdur":122,"tts":8361819},
-{"pid":27443,"tid":27459,"ts":326462603346,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8361849},
-{"pid":27443,"tid":27459,"ts":326462603376,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8361880},
-{"pid":27443,"tid":27459,"ts":326462603407,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8361910,"id":"0xaf88a7d2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462603407,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8361910,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603437,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8361941,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462603468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8361971,"id":"0xaf88a26af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462603498,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8362002},
-{"pid":27443,"tid":27459,"ts":326462607558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8362093,"id":"0xaf88a26bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462607588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":305,"tts":8362093},
-{"pid":27443,"tid":27459,"ts":326462607588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8362124,"id":"0xaf88a264f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462607619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8362124,"id":"0xaf88a7d3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462607619,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":274,"tdur":274,"tts":8362124},
-{"pid":27443,"tid":27459,"ts":326462607649,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":244,"tdur":244,"tts":8362154},
-{"pid":27443,"tid":27459,"ts":326462607710,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":14019}},"tts":8362215,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462607710,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":31,"tdur":31,"tts":8362215},
-{"pid":27443,"tid":27459,"ts":326462607741,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":31,"tts":8362276},
-{"pid":27443,"tid":27459,"ts":326462607771,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":31,"tdur":31,"tts":8362276},
-{"pid":27443,"tid":27459,"ts":326462607832,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":8362337},
-{"pid":27443,"tid":27459,"ts":326462607832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8362337,"id":"0xaf88ababf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462607924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8362429,"id":"0xaf88a264f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462607924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":91,"tts":8362429},
-{"pid":27443,"tid":27459,"ts":326462607954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8362459,"id":"0xaf88a265f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462607954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8362459,"id":"0xaf88a7d2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462607985,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":30,"tts":8362490},
-{"pid":27443,"tid":27459,"ts":326462607985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8362490,"id":"0xaf88a7ecf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462607985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8362520,"id":"0xaf88a7edf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462608168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8362582,"id":"0xaf88a265f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462608168,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":8362582},
-{"pid":27443,"tid":27459,"ts":326462608260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":396,"tdur":153,"tts":8362612},
-{"pid":27443,"tid":27459,"ts":326462608290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8362643,"id":"0xaf88a266f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462608290,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8362643,"id":"0xaf88a7ecf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462608290,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":366,"tdur":122,"tts":8362643},
-{"pid":27443,"tid":27459,"ts":326462608565,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8362673,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608595,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8362704,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608595,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8362704,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608626,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8362734,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608626,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8362734,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8362795,"id":"0xaf88a266f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462608748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":275,"tdur":244,"tts":8362795},
-{"pid":27443,"tid":27459,"ts":326462608748,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":8362795},
-{"pid":27443,"tid":27459,"ts":326462608809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8362856,"id":"0xaf88a267f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462608839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8362856,"id":"0xaf88a7edf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462608839,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":8362856},
-{"pid":27443,"tid":27459,"ts":326462608870,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8362887,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608870,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.756},"dur":122,"tdur":122,"tts":8362887},
-{"pid":27443,"tid":27459,"ts":326462608870,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8362917},
-{"pid":27443,"tid":27459,"ts":326462608931,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8362948},
-{"pid":27443,"tid":27459,"ts":326462608961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8362978,"id":"0xaf88a7eef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462608961,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8362978,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462608992,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8363009,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462609053,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8363070,"id":"0xaf88a267f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462609053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8363070},
-{"pid":27443,"tid":27459,"ts":326462615829,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8363161,"id":"0xaf88a260f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462615829,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":488,"tdur":458,"tts":8363161},
-{"pid":27443,"tid":27459,"ts":326462615859,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8363192,"id":"0xaf88a261f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462615890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8363222,"id":"0xaf88a7eff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462615890,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":396,"tdur":367,"tts":8363222},
-{"pid":27443,"tid":27459,"ts":326462615920,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":366,"tdur":336,"tts":8363253},
-{"pid":27443,"tid":27459,"ts":326462615981,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":9496}},"tts":8363314,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462616012,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":8363345},
-{"pid":27443,"tid":27459,"ts":326462616073,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":61,"tdur":61,"tts":8363406},
-{"pid":27443,"tid":27459,"ts":326462616073,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":8363406},
-{"pid":27443,"tid":27459,"ts":326462616134,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":122,"tdur":91,"tts":8363467},
-{"pid":27443,"tid":27459,"ts":326462616164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8363497,"id":"0xaf88aba4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462616347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8363650,"id":"0xaf88a261f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462616347,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":123,"tdur":122,"tts":8363650},
-{"pid":27443,"tid":27459,"ts":326462616378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8363680,"id":"0xaf88a262f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462616408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8363711,"id":"0xaf88a7eef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462616408,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":62,"tdur":61,"tts":8363711},
-{"pid":27443,"tid":27459,"ts":326462616439,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8363741,"id":"0xaf88a7e8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462616439,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8363741,"id":"0xaf88a7e9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462616500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8363802,"id":"0xaf88a262f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462616500,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":183,"tdur":183,"tts":8363802},
-{"pid":27443,"tid":27459,"ts":326462616531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8363833,"id":"0xaf88a263f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462616561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8363863,"id":"0xaf88a7e8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462616561,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":8363863},
-{"pid":27443,"tid":27459,"ts":326462616592,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8363894,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616592,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8363924,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616622,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8363924,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616653,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8363955,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616653,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8363955,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616714,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8364016,"id":"0xaf88a263f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462616744,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":8364047},
-{"pid":27443,"tid":27459,"ts":326462616744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8364077,"id":"0xaf88a27cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462616775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8364077,"id":"0xaf88a7e9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462616775,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":183,"tdur":183,"tts":8364077},
-{"pid":27443,"tid":27459,"ts":326462616805,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8364108,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616805,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.817},"dur":153,"tdur":152,"tts":8364108},
-{"pid":27443,"tid":27459,"ts":326462616836,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8364138},
-{"pid":27443,"tid":27459,"ts":326462616897,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8364199},
-{"pid":27443,"tid":27459,"ts":326462616927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8364230,"id":"0xaf88a7eaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462616927,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8364230,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462616958,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8364260,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462617019,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8364321,"id":"0xaf88a27cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462617019,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8364321},
-{"pid":27443,"tid":27459,"ts":326462620315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8364413,"id":"0xaf88a27df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462620315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":427,"tdur":427,"tts":8364413},
-{"pid":27443,"tid":27459,"ts":326462620346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8364443,"id":"0xaf88a27ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462620376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8364474,"id":"0xaf88a7ebf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462620376,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":366,"tdur":366,"tts":8364474},
-{"pid":27443,"tid":27459,"ts":326462620407,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":305,"tdur":306,"tts":8364504},
-{"pid":27443,"tid":27459,"ts":326462620437,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":37721}},"tts":8364565,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462620468,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":61,"tdur":61,"tts":8364565},
-{"pid":27443,"tid":27459,"ts":326462620529,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":61,"tts":8364657},
-{"pid":27443,"tid":27459,"ts":326462620559,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":8364657},
-{"pid":27443,"tid":27459,"ts":326462620651,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":61,"tdur":62,"tts":8364748},
-{"pid":27443,"tid":27459,"ts":326462620651,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8364748,"id":"0xaf88aba5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462620773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8364871,"id":"0xaf88a27ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462620803,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8364901},
-{"pid":27443,"tid":27459,"ts":326462620803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8364932,"id":"0xaf88a27ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462620834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8364932,"id":"0xaf88a7eaf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462620834,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":8364932},
-{"pid":27443,"tid":27459,"ts":326462620864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8364962,"id":"0xaf88a7e4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462620864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8364993,"id":"0xaf88a7e5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462620925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8365023,"id":"0xaf88a27ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462620956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":214,"tdur":183,"tts":8365054},
-{"pid":27443,"tid":27459,"ts":326462620956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8365054,"id":"0xaf88a278f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462620987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8365084,"id":"0xaf88a7e4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462620987,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":8365084},
-{"pid":27443,"tid":27459,"ts":326462621048,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":8365115},
-{"pid":27443,"tid":27459,"ts":326462621078,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8365145,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621078,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8365145,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621078,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8365145,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621139,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8365206,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621139,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8365206,"id":"0xaf88ae4cf182f66a"},{"pid":27443,"tid":27459,"ts":326462621200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8365267,"id":"0xaf88a278f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462621200,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":244,"tdur":244,"tts":8365267},
-{"pid":27443,"tid":27459,"ts":326462621231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8365298,"id":"0xaf88a279f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462621231,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8365328,"id":"0xaf88a7e5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462621261,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":8365328},
-{"pid":27443,"tid":27459,"ts":326462621261,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8365328,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621292,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.817},"dur":122,"tdur":122,"tts":8365359},
-{"pid":27443,"tid":27459,"ts":326462621292,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8365359},
-{"pid":27443,"tid":27459,"ts":326462621353,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8365420},
-{"pid":27443,"tid":27459,"ts":326462621383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8365450,"id":"0xaf88a7e6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462621383,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8365450,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621414,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8365481,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462621475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8365542,"id":"0xaf88a279f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462621475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8365542},
-{"pid":27443,"tid":27459,"ts":326462622146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8365634,"id":"0xaf88a27af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462622146,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":550,"tdur":396,"tts":8365634},
-{"pid":27443,"tid":27459,"ts":326462622177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8365664,"id":"0xaf88a27bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462622207,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8365695,"id":"0xaf88a7e7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462622207,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":458,"tdur":305,"tts":8365695},
-{"pid":27443,"tid":27459,"ts":326462622238,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnReceivedData","args":{},"dur":427,"tdur":275,"tts":8365725},
-{"pid":27443,"tid":27459,"ts":326462622268,"ph":"I","cat":"devtools.timeline","name":"ResourceReceivedData","args":{"data":{"requestId":"27443.113","frame":"0x78c60000","encodedDataLength":0}},"tts":8365786,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462622299,"ph":"X","cat":"blink","name":"Resource::appendData","args":{},"dur":30,"tdur":31,"tts":8365786},
-{"pid":27443,"tid":27459,"ts":326462622329,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":92,"tdur":61,"tts":8365847},
-{"pid":27443,"tid":27459,"ts":326462622360,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":30,"tdur":31,"tts":8365847},
-{"pid":27443,"tid":27459,"ts":326462622421,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":378},"dur":214,"tdur":61,"tts":8365908},
-{"pid":27443,"tid":27459,"ts":326462622451,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8365939,"id":"0xaf88aba6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462622726,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8366061,"id":"0xaf88a27bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462622726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8366061},
-{"pid":27443,"tid":27459,"ts":326462622757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8366091,"id":"0xaf88a274f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462622757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8366091,"id":"0xaf88a7e6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462622787,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":31,"tdur":30,"tts":8366122},
-{"pid":27443,"tid":27459,"ts":326462622787,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8366122,"id":"0xaf88a7e0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462622818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8366152,"id":"0xaf88a7e1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462622879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8366213,"id":"0xaf88a274f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462622879,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":153,"tts":8366213},
-{"pid":27443,"tid":27459,"ts":326462622909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8366244,"id":"0xaf88a275f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462622909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8366244,"id":"0xaf88a7e0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462622909,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":92,"tts":8366274},
-{"pid":27443,"tid":27459,"ts":326462622940,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8366274,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462622970,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8366305,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462622970,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8366305,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462623001,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8366336,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462623001,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8366336,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462623062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8366397,"id":"0xaf88a275f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462623092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":458,"tdur":244,"tts":8366427},
-{"pid":27443,"tid":27459,"ts":326462623092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8366458,"id":"0xaf88a276f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462623123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8366458,"id":"0xaf88a7e1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462623123,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":427,"tdur":213,"tts":8366458},
-{"pid":27443,"tid":27459,"ts":326462623153,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8366488,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462623153,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.817},"dur":367,"tdur":153,"tts":8366488},
-{"pid":27443,"tid":27459,"ts":326462623184,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8366519},
-{"pid":27443,"tid":27459,"ts":326462623184,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":8366519},
-{"pid":27443,"tid":27459,"ts":326462623459,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8366580},
-{"pid":27443,"tid":27459,"ts":326462623489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8366610,"id":"0xaf88a7fcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462623520,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8366641,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462623520,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8366641,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462623581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8366702,"id":"0xaf88a276f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462623611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":61,"tdur":61,"tts":8366732},
-{"pid":27443,"tid":27459,"ts":326462623611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8366732,"id":"0xaf88a270f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462623642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8366763,"id":"0xaf88a7e2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462623642,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/child_resource_message_filter.cc","src_func":"OnMessageReceived"},"dur":30,"tdur":30,"tts":8366763},
-{"pid":27443,"tid":27459,"ts":326462623703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8366824,"id":"0xaf88a277f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462623703,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1251,"tdur":855,"tts":8366854},
-{"pid":27443,"tid":27459,"ts":326462623733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8366854,"id":"0xaf88a7e3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462623764,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../content/child/resource_scheduling_filter.cc","src_func":"OnMessageReceived"},"dur":1160,"tdur":793,"tts":8366885},
-{"pid":27443,"tid":27459,"ts":326462623764,"ph":"X","cat":"loader","name":"ResourceDispatcher::OnRequestComplete","args":{},"dur":1160,"tdur":793,"tts":8366885},
-{"pid":27443,"tid":27459,"ts":326462624069,"ph":"F","cat":"blink.net","name":"Resource","args":{},"tts":8367190,"id":"0xaf88ae4cfda79e62"},
-{"pid":27443,"tid":27459,"ts":326462624191,"ph":"I","cat":"devtools.timeline","name":"ResourceFinish","args":{"data":{"requestId":"27443.113","didFail":false,"networkTime":326462.623123}},"tts":8367312,"s":"t"},
-{"pid":27443,"tid":27459,"ts":326462624191,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":0,"tts":8367312},
-{"pid":27443,"tid":27459,"ts":326462624588,"ph":"X","cat":"blink","name":"ImageResource::updateImage","args":{},"dur":91,"tdur":61,"tts":8367373},
-{"pid":27443,"tid":27459,"ts":326462624618,"ph":"X","cat":"blink","name":"BitmapImage::dataChanged","args":{},"dur":61,"tdur":61,"tts":8367373},
-{"pid":27443,"tid":27459,"ts":326462624710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8367465,"id":"0xaf88a7fdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462624741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8367495,"id":"0xaf88a7fef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462624802,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":8367556},
-{"pid":27443,"tid":27459,"ts":326462624802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8367556,"id":"0xaf88aba7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462625015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8367770,"id":"0xaf88a270f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462625015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":1404,"tdur":1404,"tts":8367770},
-{"pid":27443,"tid":27459,"ts":326462625046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8367801,"id":"0xaf88a271f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462625046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8367801,"id":"0xaf88a7fdf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462625076,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/events/EventSender.h","src_func":"dispatchEventSoon"},"dur":1343,"tdur":1343,"tts":8367831},
-{"pid":27443,"tid":27459,"ts":326462625107,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":1282,"tdur":1281,"tts":8367862},
-{"pid":27443,"tid":27459,"ts":326462625137,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":31,"tdur":0,"tts":8367892},
-{"pid":27443,"tid":27459,"ts":326462625198,"ph":"X","cat":"devtools.timeline","name":"EventDispatch","args":{"data":{"type":"load"}},"dur":1160,"tdur":1160,"tts":8367953},
-{"pid":27443,"tid":27459,"ts":326462625351,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"59","scriptName":"https://maps.gstatic.com/maps-api-v3/api/js/21/3/main.js","scriptLine":16,"frame":"0x78c60000"}},"dur":977,"tdur":946,"tts":8368106},
-{"pid":27443,"tid":27459,"ts":326462625381,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8368136},
-{"pid":27443,"tid":27459,"ts":326462625534,"ph":"X","cat":"cc","name":"ThreadProxy::SetNeedsAnimate","args":{},"dur":61,"tdur":61,"tts":8368289},
-{"pid":27443,"tid":27459,"ts":326462625565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8368319,"id":"0xaf88a2aef182217a"},
-{"pid":27443,"tid":27459,"ts":326462626267,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8369052},
-{"pid":27443,"tid":27459,"ts":326462626389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8369143,"id":"0xaf88a7fff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462626450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8369204,"id":"0xaf88a271f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462626480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":92,"tdur":92,"tts":8369235},
-{"pid":27443,"tid":27459,"ts":326462626480,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8369265,"id":"0xaf88a272f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462626511,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8369265,"id":"0xaf88a7fcf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462626511,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":62,"tts":8369265},
-{"pid":27443,"tid":27459,"ts":326462626541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8369296,"id":"0xaf88a7f8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462626572,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8369327,"id":"0xaf88a7f9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462626602,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8369357,"id":"0xaf88a272f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462626633,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":8369388},
-{"pid":27443,"tid":27459,"ts":326462626633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8369418,"id":"0xaf88a273f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462626663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8369418,"id":"0xaf88a7f8f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462626663,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":122,"tdur":122,"tts":8369418},
-{"pid":27443,"tid":27459,"ts":326462626694,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8369449,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462626724,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8369479,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462626724,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8369479,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462626755,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8369510,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462626755,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8369540,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462626816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8369571,"id":"0xaf88a273f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462626846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":306,"tdur":305,"tts":8369601},
-{"pid":27443,"tid":27459,"ts":326462626846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8369632,"id":"0xaf88a20cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462626877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8369632,"id":"0xaf88a7fef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462626877,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp","src_func":"scheduleDocumentResourcesGC"},"dur":244,"tdur":214,"tts":8369662},
-{"pid":27443,"tid":27459,"ts":326462626907,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":184,"tdur":183,"tts":8369662},
-{"pid":27443,"tid":27459,"ts":326462627030,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":30,"tdur":31,"tts":8369784},
-{"pid":27443,"tid":27459,"ts":326462627182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8369937,"id":"0xaf88a20cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462627182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":8369937},
-{"pid":27443,"tid":27459,"ts":326462627213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8369998,"id":"0xaf88a20df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462627243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8369998,"id":"0xaf88a7fff3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462627274,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/loader/ImageLoader.cpp","src_func":"updatedHasPendingEvent"},"dur":61,"tdur":30,"tts":8370029},
-{"pid":27443,"tid":27459,"ts":326462627274,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":30,"tdur":0,"tts":8370059},
-{"pid":27443,"tid":27459,"ts":326462627365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8370120,"id":"0xaf88a20df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462627396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":274,"tts":8370151},
-{"pid":27443,"tid":27459,"ts":326462627426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8370181,"id":"0xaf88a20ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462627426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8370181,"id":"0xaf88a7f9f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462627457,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":213,"tdur":213,"tts":8370212},
-{"pid":27443,"tid":27459,"ts":326462627457,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8370242,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462627487,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.268},"dur":183,"tdur":183,"tts":8370242},
-{"pid":27443,"tid":27459,"ts":326462627518,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8370273},
-{"pid":27443,"tid":27459,"ts":326462627548,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8370334},
-{"pid":27443,"tid":27459,"ts":326462627609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8370364,"id":"0xaf88a7faf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462627609,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8370364,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462627640,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8370395,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462627732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8370486,"id":"0xaf88a20ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462627732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8370486},
-{"pid":27443,"tid":27459,"ts":326462628067,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8370608,"id":"0xaf88a20ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462628098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":9034,"tdur":8759,"tts":8370639},
-{"pid":27443,"tid":27459,"ts":326462628098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8370639,"id":"0xaf88a208f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462628128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8370669,"id":"0xaf88a7fbf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462628128,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"ScheduledActionSendBeginMainFrame"},"dur":8973,"tdur":8699,"tts":8370669},
-{"pid":27443,"tid":27459,"ts":326462628159,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{"begin_frame_id":184},"tts":8370700},
-{"pid":27443,"tid":27459,"ts":326462628159,"ph":"X","cat":"gpu","name":"RenderWidget::willBeginCompositorFrame","args":{},"dur":30,"tdur":30,"tts":8370700},
-{"pid":27443,"tid":27459,"ts":326462628220,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8370761,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462628220,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8370761,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27477,"ts":326462625809,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginRetroFrame","args":{},"dur":30,"tdur":30,"tts":1043308},
-{"pid":27443,"tid":27477,"ts":326462625839,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrame discarding","args":{"expiration_time - now":-154.943,"BeginFrameArgs":{"deadline_us":326462470866.0,"frame_time_us":326462471053.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"tts":1043338,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462625839,"ph":"I","cat":"cc","name":"Scheduler::BeginRetroFrames all expired","args":{},"tts":1043338,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462627609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1043399,"id":"0xaf88a2a8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462627609,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":306,"tdur":306,"tts":1043399},
-{"pid":27443,"tid":27477,"ts":326462627640,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462620881.0,"frame_time_us":326462621068.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":275,"tdur":244,"tts":1043461},
-{"pid":27443,"tid":27477,"ts":326462627670,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462620881.0,"frame_time_us":326462621068.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":245,"tdur":214,"tts":1043491},
-{"pid":27443,"tid":27477,"ts":326462627701,"ph":"B","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{"begin_frame_id":184},"tts":1043491},
-{"pid":27443,"tid":27477,"ts":326462627823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1043613,"id":"0xaf88a7fbf3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462627823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1043613,"id":"0xaf88a20ff3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462627854,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::ScheduledActionSendBeginMainFrame","args":{},"tts":1043674},
-{"pid":27443,"tid":27477,"ts":326462627884,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462637734},"dur":31,"tdur":31,"tts":1043674},
-{"pid":27443,"tid":27477,"ts":326462627915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1043705,"id":"0xaf88a2a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462636766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1043796,"id":"0xaf88a2aaf182217a"},
-{"pid":27443,"tid":27477,"ts":326462636766,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"BeginMainFrame"},"dur":1800,"tdur":1709,"tts":1043796},
-{"pid":27443,"tid":27477,"ts":326462636766,"ph":"X","cat":"cc","name":"ThreadProxy::StartCommitOnImplThread","args":{},"dur":1678,"tdur":1617,"tts":1043827},
-{"pid":27443,"tid":27477,"ts":326462636796,"ph":"X","cat":"cc","name":"Scheduler::NotifyBeginMainFrameStarted","args":{},"dur":0,"tdur":0,"tts":1043827},
-{"pid":27443,"tid":27477,"ts":326462636796,"ph":"X","cat":"cc","name":"Scheduler::NotifyReadyToCommit","args":{},"dur":1618,"tdur":1617,"tts":1043827},
-{"pid":27443,"tid":27477,"ts":326462636827,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionCommit","args":{},"dur":1587,"tdur":1587,"tts":1043857},
-{"pid":27443,"tid":27477,"ts":326462636827,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":1043857},
-{"pid":27443,"tid":27477,"ts":326462636827,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":1043888},
-{"pid":27443,"tid":27477,"ts":326462636857,"ph":"S","cat":"cc","name":"PendingTree:waiting","args":{},"tts":1043888,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462636857,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":1043888},
-{"pid":27443,"tid":27477,"ts":326462636918,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":31,"tdur":30,"tts":1043949},
-{"pid":27443,"tid":27477,"ts":326462637040,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":1374,"tdur":1343,"tts":1044071},
-{"pid":27443,"tid":27477,"ts":326462637040,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":false,"SourceFrameNumber":184},"dur":336,"tdur":305,"tts":1044071},
-{"pid":27443,"tid":27477,"ts":326462637376,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":false,"SourceFrameNumber":184},"dur":30,"tdur":30,"tts":1044407},
-{"pid":27443,"tid":27477,"ts":326462637437,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":false,"SourceFrameNumber":184},"tts":1044468},
-{"pid":27443,"tid":27477,"ts":326462637712,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":0,"tts":1044742},
-{"pid":27443,"tid":27477,"ts":326462637742,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1044773},
-{"pid":27443,"tid":27477,"ts":326462637742,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":641,"tdur":641,"tts":1044773},
-{"pid":27443,"tid":27477,"ts":326462637742,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":214,"tdur":214,"tts":1044773},
-{"pid":27443,"tid":27477,"ts":326462637956,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1044987},
-{"pid":27443,"tid":27477,"ts":326462638017,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1045048},
-{"pid":27443,"tid":27477,"ts":326462638017,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":12},"dur":336,"tdur":335,"tts":1045048},
-{"pid":27443,"tid":27477,"ts":326462638169,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":184,"tdur":183,"tts":1045200},
-{"pid":27443,"tid":27477,"ts":326462638200,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1045231,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462638231,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":30,"tdur":31,"tts":1045261},
-{"pid":27443,"tid":27477,"ts":326462638292,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":16,"num_edges":48},"dur":30,"tdur":31,"tts":1045322},
-{"pid":27443,"tid":27477,"ts":326462638353,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1045383,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462638383,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":1045414,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462638383,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":1045414,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462638566,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462637},"tts":1045505,"id":"0xaf88a2a9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462638566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":61,"tdur":31,"tts":1045505},
-{"pid":27443,"tid":27477,"ts":326462638597,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":0,"tdur":0,"tts":1045536},
-{"pid":27443,"tid":27477,"ts":326462641160,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1045597,"id":"0xaf88a2abf182217a"},
-{"pid":27443,"tid":27477,"ts":326462641160,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":1045597},
-{"pid":27443,"tid":27477,"ts":326462641191,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":62,"tts":1045627},
-{"pid":27443,"tid":27477,"ts":326462641191,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,false,true]}},"tts":1045658,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462641222,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":1045658},
-{"pid":27443,"tid":27477,"ts":326462641252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1045689,"id":"0xaf88a2a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462641283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1045719,"id":"0xaf88a2a4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462641283,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":213,"tdur":214,"tts":1045719},
-{"pid":27443,"tid":27477,"ts":326462641283,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":213,"tdur":214,"tts":1045719},
-{"pid":27443,"tid":27477,"ts":326462641313,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1045750},
-{"pid":27443,"tid":27477,"ts":326462641313,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1045750},
-{"pid":27443,"tid":27477,"ts":326462641344,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":92,"tts":1045780},
-{"pid":27443,"tid":27477,"ts":326462641344,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":1045780},
-{"pid":27443,"tid":27477,"ts":326462641466,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":1045902},
-{"pid":27443,"tid":27477,"ts":326462641466,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1045902},
-{"pid":27443,"tid":27477,"ts":326462641862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1045963,"id":"0xaf88a2a5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462641893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":1045963},
-{"pid":27443,"tid":27477,"ts":326462641923,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462638182.0,"frame_time_us":326462638369.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":123,"tdur":122,"tts":1045994},
-{"pid":27443,"tid":27477,"ts":326462641954,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462638182.0,"frame_time_us":326462638369.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":1046024},
-{"pid":27443,"tid":27459,"ts":326462628250,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8370792,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462628250,"ph":"X","cat":"blink","name":"WebViewImpl::beginFrame","args":{},"dur":61,"tdur":31,"tts":8370822},
-{"pid":27443,"tid":27459,"ts":326462628281,"ph":"X","cat":"blink","name":"AnimationTimeline::serviceAnimations","args":{},"dur":30,"tdur":31,"tts":8370822},
-{"pid":27443,"tid":27459,"ts":326462628311,"ph":"X","cat":"blink","name":"WebViewImpl::layout","args":{},"dur":7173,"tdur":7142,"tts":8370883},
-{"pid":27443,"tid":27459,"ts":326462628372,"ph":"B","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"beginData":{"frame":"0x78c60000"}},"tts":8370914},
-{"pid":27443,"tid":27459,"ts":326462628403,"ph":"X","cat":"blink","name":"Node::updateDistribution","args":{},"dur":0,"tdur":0,"tts":8370944},
-{"pid":27443,"tid":27459,"ts":326462628403,"ph":"B","cat":"blink,blink_style","name":"Document::updateStyle","args":{},"tts":8370975},
-{"pid":27443,"tid":27459,"ts":326462628678,"ph":"E","cat":"blink,blink_style","name":"Document::updateStyle","args":{"resolverAccessCount":1,"counters":true},"tts":8371249},
-{"pid":27443,"tid":27459,"ts":326462628708,"ph":"E","cat":"blink,devtools.timeline","name":"UpdateLayoutTree","args":{"elementCount":1},"tts":8371280},
-{"pid":27443,"tid":27459,"ts":326462628739,"ph":"X","cat":"blink,benchmark","name":"FrameView::layout","args":{},"dur":946,"tdur":946,"tts":8371280},
-{"pid":27443,"tid":27459,"ts":326462628769,"ph":"B","cat":"devtools.timeline","name":"Layout","args":{"beginData":{"dirtyObjects":2,"totalObjects":2,"partialLayout":true,"frame":"0x78c60000"}},"tts":8371310},
-{"pid":27443,"tid":27459,"ts":326462628800,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPreLayoutTasks","args":{},"dur":0,"tdur":0,"tts":8371341},
-{"pid":27443,"tid":27459,"ts":326462628830,"ph":"B","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{},"tts":8371371},
-{"pid":27443,"tid":27459,"ts":326462629013,"ph":"X","cat":"blink","name":"ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities","args":{},"dur":31,"tdur":0,"tts":8371585},
-{"pid":27443,"tid":27459,"ts":326462629074,"ph":"E","cat":"blink,benchmark,disabled-by-default-blink.debug.layout","name":"FrameView::performLayout","args":{"counters":{}},"tts":8371616},
-{"pid":27443,"tid":27459,"ts":326462629074,"ph":"X","cat":"blink,benchmark","name":"DeprecatedPaintLayer::updateLayerPositionsAfterLayout","args":{},"dur":397,"tdur":396,"tts":8371616},
-{"pid":27443,"tid":27459,"ts":326462629471,"ph":"X","cat":"blink,benchmark","name":"FrameView::performPostLayoutTasks","args":{},"dur":92,"tdur":92,"tts":8372012},
-{"pid":27443,"tid":27459,"ts":326462629532,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8372073,"id":"0xaf88a7f4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462629563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8372104,"id":"0xaf88a209f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462629624,"ph":"E","cat":"devtools.timeline","name":"Layout","args":{"endData":{"root":[0,0,384,0,384,520,0,520],"rootNode":78}},"tts":8372165},
-{"pid":27443,"tid":27459,"ts":326462629685,"ph":"X","cat":"devtools.timeline","name":"UpdateLayerTree","args":{"data":{"frame":"0x78c60000"}},"dur":5799,"tdur":5769,"tts":8372256},
-{"pid":27443,"tid":27459,"ts":326462629715,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateIfNeededRecursive","args":{},"dur":3999,"tdur":3999,"tts":8372256},
-{"pid":27443,"tid":27459,"ts":326462629746,"ph":"X","cat":"blink","name":"CompositingInputsUpdater::update","args":{},"dur":1221,"tdur":1221,"tts":8372287},
-{"pid":27443,"tid":27459,"ts":326462630967,"ph":"X","cat":"blink","name":"CompositingRequirementsUpdater::updateRecursive","args":{},"dur":244,"tdur":244,"tts":8373508},
-{"pid":27443,"tid":27459,"ts":326462631241,"ph":"X","cat":"blink","name":"CompositingLayerAssigner::assign","args":{},"dur":153,"tdur":122,"tts":8373783},
-{"pid":27443,"tid":27459,"ts":326462631394,"ph":"X","cat":"blink","name":"DeprecatedPaintLayerCompositor::updateAfterCompositingChange","args":{},"dur":0,"tdur":0,"tts":8373935},
-{"pid":27443,"tid":27459,"ts":326462631424,"ph":"X","cat":"blink","name":"GraphicsLayerUpdater::update","args":{},"dur":2259,"tdur":2258,"tts":8373966},
-{"pid":27443,"tid":27459,"ts":326462633714,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateAfterCompositingChangeIfNeeded","args":{},"dur":1556,"tdur":1556,"tts":8376255},
-{"pid":27443,"tid":27459,"ts":326462633744,"ph":"X","cat":"input","name":"ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded","args":{},"dur":1496,"tdur":1496,"tts":8376285},
-{"pid":27443,"tid":27459,"ts":326462633744,"ph":"X","cat":"input","name":"ScrollingCoordinator::computeTouchEventTargetRects","args":{},"dur":305,"tdur":274,"tts":8376316},
-{"pid":27443,"tid":27459,"ts":326462634049,"ph":"X","cat":"input","name":"ScrollingCoordinator::setTouchEventTargetRects","args":{},"dur":1160,"tdur":1129,"tts":8376621},
-{"pid":27443,"tid":27459,"ts":326462634141,"ph":"X","cat":"input","name":"ScrollingCoordinator::projectRectsToGraphicsLayerSpace","args":{},"dur":854,"tdur":855,"tts":8376682},
-{"pid":27443,"tid":27459,"ts":326462635270,"ph":"X","cat":"blink","name":"FrameView::updateCompositedSelectionIfNeeded","args":{},"dur":31,"tdur":31,"tts":8377811},
-{"pid":27443,"tid":27459,"ts":326462635301,"ph":"X","cat":"blink","name":"FrameView::invalidateTree","args":{"root":"LayoutView #document"},"dur":183,"tdur":183,"tts":8377842},
-{"pid":27443,"tid":27459,"ts":326462635514,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":184},"dur":1129,"tdur":1130,"tts":8378055},
-{"pid":27443,"tid":27459,"ts":326462635514,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1099,"tdur":1099,"tts":8378055},
-{"pid":27443,"tid":27459,"ts":326462635789,"ph":"X","cat":"cc","name":"PictureLayer::Update","args":{"source_frame_number":184},"dur":824,"tdur":824,"tts":8378330},
-{"pid":27443,"tid":27459,"ts":326462635941,"ph":"X","cat":"devtools.timeline","name":"Paint","args":{"data":{"frame":"0x78c60000","clip":[0,0,384,0,384,520,0,520],"nodeId":14,"layerId":46}},"dur":458,"tdur":457,"tts":8378483},
-{"pid":27443,"tid":27459,"ts":326462636064,"ph":"X","cat":"skia","name":"BitmapImage::draw","args":{},"dur":274,"tdur":244,"tts":8378635},
-{"pid":27443,"tid":27459,"ts":326462636094,"ph":"X","cat":"renderer","name":"MemoryCache::prune()","args":{},"dur":244,"tdur":213,"tts":8378666},
-{"pid":27443,"tid":27459,"ts":326462636216,"ph":"C","cat":"renderer","name":"DiscardableMemoryUsage","args":{"allocated":29679616,"free":8069120},"tts":8378757},
-{"pid":27443,"tid":27459,"ts":326462636399,"ph":"X","cat":"blink,benchmark","name":"DisplayItemList::commitNewDisplayItems","args":{},"dur":31,"tdur":0,"tts":8378971},
-{"pid":27443,"tid":27459,"ts":326462636643,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrame::commit","args":{},"dur":397,"tdur":122,"tts":8379185},
-{"pid":27443,"tid":27459,"ts":326462636674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8379215,"id":"0xaf88a2aaf182217a"},
-{"pid":27443,"tid":27459,"ts":326462637101,"ph":"E","cat":"cc,benchmark","name":"ThreadProxy::BeginMainFrame","args":{},"tts":8379368},
-{"pid":27443,"tid":27459,"ts":326462637162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8379429,"id":"0xaf88a208f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462637193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8379459},
-{"pid":27443,"tid":27459,"ts":326462637223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8379490,"id":"0xaf88a20af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462637223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8379490,"id":"0xaf88a7faf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462637254,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":30,"tdur":31,"tts":8379520},
-{"pid":27443,"tid":27459,"ts":326462637254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8379520,"id":"0xaf88a7f5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462637315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8379581,"id":"0xaf88a20af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462637345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8379612},
-{"pid":27443,"tid":27459,"ts":326462650713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462650},"tts":8379734,"id":"0xaf88a209f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462650713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":8379734},
-{"pid":27443,"tid":27459,"ts":326462650744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8379765,"id":"0xaf88a20bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462650835,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8379856,"id":"0xaf88a20bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462650835,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":153,"tdur":153,"tts":8379856},
-{"pid":27443,"tid":27459,"ts":326462650866,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8379887,"id":"0xaf88a204f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462650896,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8379917,"id":"0xaf88a7f4f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462650896,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/input/EventHandler.cpp","src_func":"scheduleCursorUpdate"},"dur":92,"tdur":61,"tts":8379917},
-{"pid":27443,"tid":27459,"ts":326462650927,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":31,"tdur":30,"tts":8379948},
-{"pid":27443,"tid":27459,"ts":326462650958,"ph":"X","cat":"input","name":"EventHandler::updateCursor","args":{},"dur":0,"tdur":0,"tts":8379978},
-{"pid":27443,"tid":27459,"ts":326462651019,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380039,"id":"0xaf88a204f3d027d2"},
-{"pid":27443,"tid":27469,"ts":326462638658,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decodeAndScale","args":{"generator":"0x78ccca20","decodeCount":0},"dur":49138,"tdur":48558,"tts":529742},
-{"pid":27443,"tid":27469,"ts":326462638658,"ph":"X","cat":"blink","name":"ImageFrameGenerator::tryToResumeDecodeAndScale","args":{"index":0},"dur":49107,"tdur":48558,"tts":529742},
-{"pid":27443,"tid":27469,"ts":326462638688,"ph":"X","cat":"blink","name":"ImageFrameGenerator::decode","args":{"width":768,"height":1040},"dur":49077,"tdur":48528,"tts":529772},
-{"pid":27443,"tid":27471,"ts":326462638383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":509751,"id":"0xaf88a2abf182217a"},
-{"pid":27443,"tid":27469,"ts":326462687857,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1251,"tdur":1251,"tts":578391},
-{"pid":27443,"tid":27469,"ts":326462687918,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1190,"tdur":1190,"tts":578452},
-{"pid":27443,"tid":27469,"ts":326462687979,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e41a658"},"tileResolution":"HIGH_RESOLUTION"}},"tts":578513},
-{"pid":27443,"tid":27469,"ts":326462687979,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":122,"tdur":61,"tts":578544},
-{"pid":27443,"tid":27469,"ts":326462688101,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":578635},
-{"pid":27443,"tid":27469,"ts":326462688131,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e41a658"},"tileResolution":"HIGH_RESOLUTION"}},"tts":578666},
-{"pid":27443,"tid":27469,"ts":326462688162,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":578696,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462689077,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":579612},
-{"pid":27443,"tid":27469,"ts":326462689108,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":4090,"tdur":1221,"tts":579642},
-{"pid":27443,"tid":27469,"ts":326462689139,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":4059,"tdur":1190,"tts":579673},
-{"pid":27443,"tid":27469,"ts":326462689169,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797c0410"},"tileResolution":"HIGH_RESOLUTION"}},"tts":579703},
-{"pid":27443,"tid":27469,"ts":326462689169,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":31,"tdur":31,"tts":579703},
-{"pid":27443,"tid":27469,"ts":326462689230,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":579764},
-{"pid":27443,"tid":27469,"ts":326462689261,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797c0410"},"tileResolution":"HIGH_RESOLUTION"}},"tts":579795},
-{"pid":27443,"tid":27469,"ts":326462689291,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":579826,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462690115,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1007,"tdur":977,"tts":509842},
-{"pid":27443,"tid":27471,"ts":326462690146,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":946,"tdur":946,"tts":509873},
-{"pid":27443,"tid":27471,"ts":326462690176,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797ca020"},"tileResolution":"HIGH_RESOLUTION"}},"tts":509903},
-{"pid":27443,"tid":27471,"ts":326462690176,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":509903},
-{"pid":27443,"tid":27471,"ts":326462690237,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":509964},
-{"pid":27443,"tid":27471,"ts":326462690268,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797ca020"},"tileResolution":"HIGH_RESOLUTION"}},"tts":509995},
-{"pid":27443,"tid":27471,"ts":326462690329,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":510056,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462691092,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":510819},
-{"pid":27443,"tid":27471,"ts":326462691122,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1160,"tdur":1069,"tts":510849},
-{"pid":27443,"tid":27471,"ts":326462691122,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1160,"tdur":1069,"tts":510849},
-{"pid":27443,"tid":27471,"ts":326462691153,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e9cf9e8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":510880},
-{"pid":27443,"tid":27471,"ts":326462691275,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":510911},
-{"pid":27443,"tid":27471,"ts":326462691336,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":510972},
-{"pid":27443,"tid":27471,"ts":326462691366,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e9cf9e8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":511002},
-{"pid":27443,"tid":27471,"ts":326462691397,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":511033,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462692252,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":511887},
-{"pid":27443,"tid":27471,"ts":326462692282,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1190,"tdur":1099,"tts":511948},
-{"pid":27443,"tid":27471,"ts":326462692313,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1129,"tdur":1068,"tts":511948},
-{"pid":27443,"tid":27471,"ts":326462692343,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e4a1dd0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":511979},
-{"pid":27443,"tid":27471,"ts":326462692343,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":511979},
-{"pid":27443,"tid":27471,"ts":326462692404,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":512040},
-{"pid":27443,"tid":27471,"ts":326462692435,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e4a1dd0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":512070},
-{"pid":27443,"tid":27471,"ts":326462692465,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":512101,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462693198,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":580863},
-{"pid":27443,"tid":27469,"ts":326462693198,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1373,"tdur":1037,"tts":580894},
-{"pid":27443,"tid":27469,"ts":326462693228,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1343,"tdur":1037,"tts":580894},
-{"pid":27443,"tid":27469,"ts":326462693259,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7991c800"},"tileResolution":"HIGH_RESOLUTION"}},"tts":580924},
-{"pid":27443,"tid":27469,"ts":326462693259,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":30,"tdur":31,"tts":580924},
-{"pid":27443,"tid":27469,"ts":326462693320,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":580985},
-{"pid":27443,"tid":27469,"ts":326462693320,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7991c800"},"tileResolution":"HIGH_RESOLUTION"}},"tts":580985},
-{"pid":27443,"tid":27469,"ts":326462693350,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":581016,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462693442,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":513016},
-{"pid":27443,"tid":27471,"ts":326462693472,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1771,"tdur":1099,"tts":513047},
-{"pid":27443,"tid":27471,"ts":326462693472,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":1130,"tdur":1038,"tts":513047},
-{"pid":27443,"tid":27471,"ts":326462693503,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797c0a88"},"tileResolution":"HIGH_RESOLUTION"}},"tts":513077},
-{"pid":27443,"tid":27471,"ts":326462693503,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":31,"tts":513077},
-{"pid":27443,"tid":27471,"ts":326462693564,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":513139},
-{"pid":27443,"tid":27471,"ts":326462693564,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797c0a88"},"tileResolution":"HIGH_RESOLUTION"}},"tts":513169},
-{"pid":27443,"tid":27471,"ts":326462693594,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":513169,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462694022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":581687,"id":"0xaf88a2bdf182217a"},
-{"pid":27443,"tid":27469,"ts":326462694235,"ph":"X","cat":"cc","name":"WaitingForCopyOperationsToComplete","args":{},"dur":92,"tdur":61,"tts":581779},
-{"pid":27443,"tid":27469,"ts":326462694327,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":581870,"id":"0xaf88a2bef182217a"},
-{"pid":27443,"tid":27469,"ts":326462694541,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":581901},
-{"pid":27443,"tid":27471,"ts":326462694602,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":514085},
-{"pid":27443,"tid":27469,"ts":326462694571,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":4914,"tdur":1191,"tts":581931},
-{"pid":27443,"tid":27477,"ts":326462641985,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462655035},"dur":30,"tdur":30,"tts":1046055},
-{"pid":27443,"tid":27477,"ts":326462642015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1046085,"id":"0xaf88a2a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462655352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462655},"tts":1046177,"id":"0xaf88a2a6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462655383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":30,"tdur":31,"tts":1046207},
-{"pid":27443,"tid":27477,"ts":326462655383,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":30,"tdur":31,"tts":1046207},
-{"pid":27443,"tid":27477,"ts":326462656695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1046299,"id":"0xaf88a2a7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462656695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":153,"tts":1046299},
-{"pid":27443,"tid":27477,"ts":326462656726,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462654862.0,"frame_time_us":326462655049.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":123,"tts":1046329},
-{"pid":27443,"tid":27477,"ts":326462656756,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462654862.0,"frame_time_us":326462655049.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":1046360},
-{"pid":27443,"tid":27477,"ts":326462656787,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462671715},"dur":30,"tdur":31,"tts":1046390},
-{"pid":27443,"tid":27477,"ts":326462656817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1046421,"id":"0xaf88a2a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462672017,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462671},"tts":1046513,"id":"0xaf88a2a0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462672047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":1046543},
-{"pid":27443,"tid":27477,"ts":326462672047,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":1046543},
-{"pid":27443,"tid":27477,"ts":326462673207,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1046635,"id":"0xaf88a2a1f182217a"},
-{"pid":27443,"tid":27477,"ts":326462673237,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":152,"tts":1046635},
-{"pid":27443,"tid":27477,"ts":326462673268,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462671552.0,"frame_time_us":326462671739.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":91,"tdur":92,"tts":1046665},
-{"pid":27443,"tid":27477,"ts":326462673298,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462671552.0,"frame_time_us":326462671739.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":61,"tdur":61,"tts":1046696},
-{"pid":27443,"tid":27477,"ts":326462673329,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462688405},"dur":30,"tdur":31,"tts":1046726},
-{"pid":27443,"tid":27477,"ts":326462673359,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1046757,"id":"0xaf88a2a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462691214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462688},"tts":1046818,"id":"0xaf88a2a2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462691244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":31,"tdur":31,"tts":1046848},
-{"pid":27443,"tid":27477,"ts":326462691244,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":31,"tdur":31,"tts":1046848},
-{"pid":27443,"tid":27477,"ts":326462692496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1046940,"id":"0xaf88a2a3f182217a"},
-{"pid":27443,"tid":27477,"ts":326462692496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":183,"tts":1046940},
-{"pid":27443,"tid":27477,"ts":326462692557,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462688225.0,"frame_time_us":326462688412.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":122,"tts":1047001},
-{"pid":27443,"tid":27477,"ts":326462692587,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462688225.0,"frame_time_us":326462688412.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":true},"dur":92,"tdur":92,"tts":1047031},
-{"pid":27443,"tid":27477,"ts":326462692618,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462705078},"dur":30,"tdur":30,"tts":1047062},
-{"pid":27443,"tid":27477,"ts":326462692648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1047092,"id":"0xaf88a2bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326462694205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047245,"id":"0xaf88a2bdf182217a"},
-{"pid":27443,"tid":27477,"ts":326462694205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"ScheduleCheckForCompletedCopyOperationsWithLockAcquired"},"dur":91,"tdur":61,"tts":1047245},
-{"pid":27443,"tid":27477,"ts":326462694205,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedCopyOperations","args":{"wait_if_needed":false},"dur":61,"tdur":31,"tts":1047245},
-{"pid":27443,"tid":27477,"ts":326462694480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047428,"id":"0xaf88a2bef182217a"},
-{"pid":27443,"tid":27477,"ts":326462694480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/one_copy_tile_task_worker_pool.cc","src_func":"PlaybackAndScheduleCopyOnWorkerThread"},"dur":427,"tdur":366,"tts":1047428},
-{"pid":27443,"tid":27477,"ts":326462694510,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":6},"dur":305,"tdur":244,"tts":1047459},
-{"pid":27443,"tid":27477,"ts":326462694602,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":61,"tdur":31,"tts":1047489},
-{"pid":27443,"tid":27477,"ts":326462694663,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":1047550},
-{"pid":27443,"tid":27477,"ts":326462694693,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":1047581},
-{"pid":27443,"tid":27477,"ts":326462694724,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":1047611},
-{"pid":27443,"tid":27477,"ts":326462694754,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":0,"tts":1047642},
-{"pid":27443,"tid":27477,"ts":326462694785,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":1047672},
-{"pid":27443,"tid":27477,"ts":326462694815,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":18911},"dur":92,"tdur":91,"tts":1047703},
-{"pid":27443,"tid":27477,"ts":326462694846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1047733,"id":"0xaf88aba1f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462699607,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047855,"id":"0xaf88a2bff182217a"},
-{"pid":27443,"tid":27477,"ts":326462699607,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":92,"tts":1047855},
-{"pid":27443,"tid":27477,"ts":326462699638,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":61,"tts":1047886},
-{"pid":27443,"tid":27477,"ts":326462699638,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1047917,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462699668,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":30,"tts":1047917},
-{"pid":27443,"tid":27477,"ts":326462699668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1047917,"id":"0xaf88a2b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462699699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1047947,"id":"0xaf88a2b8f182217a"},
-{"pid":27443,"tid":27477,"ts":326462699729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":2442,"tdur":2411,"tts":1047978},
-{"pid":27443,"tid":27477,"ts":326462699729,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":2442,"tdur":2411,"tts":1047978},
-{"pid":27443,"tid":27477,"ts":326462699729,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":702,"tdur":671,"tts":1047978},
-{"pid":27443,"tid":27477,"ts":326462699760,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1048008},
-{"pid":27443,"tid":27477,"ts":326462699760,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":0,"tts":1048039},
-{"pid":27443,"tid":27477,"ts":326462699790,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":30,"tts":1048039},
-{"pid":27443,"tid":27477,"ts":326462699821,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":1048069},
-{"pid":27443,"tid":27477,"ts":326462699851,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":1048100},
-{"pid":27443,"tid":27477,"ts":326462699851,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":1048130},
-{"pid":27443,"tid":27477,"ts":326462699882,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":1048130},
-{"pid":27443,"tid":27477,"ts":326462699912,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":30,"tts":1048161},
-{"pid":27443,"tid":27477,"ts":326462699912,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":1048161},
-{"pid":27443,"tid":27477,"ts":326462699973,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":1048222},
-{"pid":27443,"tid":27477,"ts":326462699973,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":153,"tdur":122,"tts":1048222},
-{"pid":27443,"tid":27459,"ts":326462651019,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8380039},
-{"pid":27443,"tid":27459,"ts":326462708305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380161,"id":"0xaf88a205f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462708336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8380192},
-{"pid":27443,"tid":27459,"ts":326462708366,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8380222,"id":"0xaf88a206f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462708366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8380222,"id":"0xaf88a7f6f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462708366,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DrawSwapInternal"},"dur":31,"tdur":31,"tts":8380222},
-{"pid":27443,"tid":27459,"ts":326462708397,"ph":"X","cat":"gpu","name":"RenderWidget::DidCommitAndDrawCompositorFrame","args":{},"dur":0,"tdur":0,"tts":8380253},
-{"pid":27443,"tid":27459,"ts":326462708458,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380314,"id":"0xaf88a206f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462708458,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":30,"tts":8380314},
-{"pid":27443,"tid":27459,"ts":326462710167,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380405,"id":"0xaf88a207f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462710198,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":92,"tts":8380436},
-{"pid":27443,"tid":27459,"ts":326462710198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8380466,"id":"0xaf88a200f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462710228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8380466,"id":"0xaf88a7f7f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462710228,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"DidSwapBuffersCompleteOnImplThread"},"dur":61,"tdur":31,"tts":8380466},
-{"pid":27443,"tid":27459,"ts":326462710259,"ph":"X","cat":"renderer","name":"RenderWidget::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":8380497},
-{"pid":27443,"tid":27459,"ts":326462710320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380558,"id":"0xaf88a200f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462710320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":30,"tdur":31,"tts":8380558},
-{"pid":27443,"tid":27459,"ts":326462722223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380650,"id":"0xaf88a201f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462722253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":336,"tdur":183,"tts":8380680},
-{"pid":27443,"tid":27459,"ts":326462722284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8380711,"id":"0xaf88a202f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462722314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8380741,"id":"0xaf88a7f0f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462722314,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../cc/trees/thread_proxy.cc","src_func":"SendBeginMainFrameNotExpectedSoon"},"dur":275,"tdur":122,"tts":8380741},
-{"pid":27443,"tid":27459,"ts":326462722345,"ph":"X","cat":"cc","name":"ThreadProxy::BeginMainFrameNotExpectedSoon","args":{},"dur":244,"tdur":91,"tts":8380772},
-{"pid":27443,"tid":27459,"ts":326462722528,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8380802,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462722558,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8380833,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462722650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8380924,"id":"0xaf88a202f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462722650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":305,"tdur":305,"tts":8380924},
-{"pid":27443,"tid":27459,"ts":326462722680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8380955,"id":"0xaf88a203f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462722711,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8380985,"id":"0xaf88a7f5f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462722711,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":244,"tdur":214,"tts":8380985},
-{"pid":27443,"tid":27459,"ts":326462722741,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8381016,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462722741,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.787},"dur":184,"tdur":183,"tts":8381016},
-{"pid":27443,"tid":27459,"ts":326462722772,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8381046},
-{"pid":27443,"tid":27459,"ts":326462722833,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8381107},
-{"pid":27443,"tid":27459,"ts":326462722864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8381138,"id":"0xaf88a7f1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462722894,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8381168,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462722925,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8381199,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326462722986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8381260,"id":"0xaf88a203f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462723016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8381291},
-{"pid":27443,"tid":27459,"ts":326462786468,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462786},"tts":8381504,"id":"0xaf88a524f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462786498,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":123,"tdur":122,"tts":8381504},
-{"pid":27443,"tid":27459,"ts":326462786560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8381565,"id":"0xaf88a21cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462786590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8381596,"id":"0xaf88a21df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462786682,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8381687,"id":"0xaf88a21cf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462786712,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":824,"tdur":824,"tts":8381718},
-{"pid":27443,"tid":27459,"ts":326462786743,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8381748,"id":"0xaf88a21ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462786773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8381779,"id":"0xaf88a69bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462786804,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":732,"tdur":733,"tts":8381809},
-{"pid":27443,"tid":27459,"ts":326462786804,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":702,"tdur":671,"tts":8381840},
-{"pid":27443,"tid":27459,"ts":326462786865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8381870,"id":"0xaf88a7f2f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462786926,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":16,"frame":"0x78c60000"}},"dur":580,"tdur":549,"tts":8381962},
-{"pid":27443,"tid":27459,"ts":326462786987,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":519,"tdur":519,"tts":8381992},
-{"pid":27443,"tid":27459,"ts":326462787109,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"69","scriptName":"undefined","scriptLine":22,"frame":"0x78c60000"}},"dur":366,"tdur":366,"tts":8382115},
-{"pid":27443,"tid":27459,"ts":326462787139,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8382145},
-{"pid":27443,"tid":27459,"ts":326462787445,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8382450},
-{"pid":27443,"tid":27459,"ts":326462787597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8382603,"id":"0xaf88a21ef3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462787597,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":31,"tdur":0,"tts":8382633},
-{"pid":27443,"tid":27459,"ts":326462920513,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462920},"tts":8382756,"id":"0xaf88a21df3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462920544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"ScheduleDelayedWorkLocked"},"dur":61,"tdur":61,"tts":8382786},
-{"pid":27443,"tid":27459,"ts":326462920574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8382817,"id":"0xaf88a21ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462920605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8382847,"id":"0xaf88a218f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462920636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8382878,"id":"0xaf88a21ff3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462920666,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":3754,"tdur":2838,"tts":8382908},
-{"pid":27443,"tid":27459,"ts":326462920697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8382939,"id":"0xaf88a219f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462656543,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":454295},
-{"pid":27443,"tid":27466,"ts":326462656543,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":454295,"id":"0xba471602","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462656604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454356,"id":"0xaf88a2a7f182217a"},
-{"pid":27443,"tid":27466,"ts":326462673054,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":122,"tts":454448},
-{"pid":27443,"tid":27466,"ts":326462673085,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":91,"tdur":92,"tts":454478},
-{"pid":27443,"tid":27466,"ts":326462673085,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":454478,"id":"0xba471702","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462673146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454539,"id":"0xaf88a2a1f182217a"},
-{"pid":27443,"tid":27466,"ts":326462692282,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":454631},
-{"pid":27443,"tid":27466,"ts":326462692313,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":122,"tdur":92,"tts":454692},
-{"pid":27443,"tid":27466,"ts":326462692343,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":454692,"id":"0xba471802","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462692374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":454722,"id":"0xaf88a2a3f182217a"},
-{"pid":27443,"tid":27466,"ts":326462694937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":454875,"id":"0xaf88aba1f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462694968,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":454906},
-{"pid":27443,"tid":27466,"ts":326462694968,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":454906,"id":"0xccc66202"},
-{"pid":27443,"tid":27466,"ts":326462703605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":455058,"id":"0xaf88aba2f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462703636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":455089},
-{"pid":27443,"tid":27466,"ts":326462703636,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":455089,"id":"0xccc66302"},
-{"pid":27443,"tid":27466,"ts":326462703727,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":455180,"id":"0xaf88aba3f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462703727,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":455180},
-{"pid":27443,"tid":27466,"ts":326462703727,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":455180,"id":"0xccc66406"},
-{"pid":27443,"tid":27466,"ts":326462705406,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":52},"dur":122,"tdur":92,"tts":455302},
-{"pid":27443,"tid":27466,"ts":326462705467,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":455333},
-{"pid":27443,"tid":27466,"ts":326462705467,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":455333,"id":"0xc4c2640a","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462706535,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":153,"tdur":153,"tts":455424},
-{"pid":27443,"tid":27466,"ts":326462706596,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":61,"tdur":61,"tts":455486},
-{"pid":27443,"tid":27466,"ts":326462706596,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":455486,"id":"0xba471902","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462706657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":455547,"id":"0xaf88a2bbf182217a"},
-{"pid":27443,"tid":27466,"ts":326462707084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":455669,"id":"0xaf88abbcf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462707115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":455699},
-{"pid":27443,"tid":27466,"ts":326462707115,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":455699,"id":"0xccc66502"},
-{"pid":27443,"tid":27466,"ts":326462709343,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":244,"tdur":152,"tts":455791},
-{"pid":27443,"tid":27466,"ts":326462709374,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":973},"dur":213,"tdur":91,"tts":455852},
-{"pid":27443,"tid":27466,"ts":326462709404,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":455852,"id":"0xba471a02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462709557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":455913,"id":"0xaf88a2b1f182217a"},
-{"pid":27443,"tid":27466,"ts":326462722070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456035,"id":"0xaf88abbdf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462722070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_message_filter.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":456035},
-{"pid":27443,"tid":27466,"ts":326462722101,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456065,"id":"0xccc66602"},
-{"pid":27443,"tid":27466,"ts":326462723108,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":122,"tdur":123,"tts":456187},
-{"pid":27443,"tid":27466,"ts":326462723138,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":996},"dur":92,"tdur":92,"tts":456218},
-{"pid":27443,"tid":27466,"ts":326462723138,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456218,"id":"0xba471c02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326462723199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":456279,"id":"0xaf88a2b3f182217a"},
-{"pid":27443,"tid":27466,"ts":326462922162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456432,"id":"0xaf88abbef3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462922192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":456432},
-{"pid":27443,"tid":27466,"ts":326462922223,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456462,"id":"0xccc66702"},
-{"pid":27443,"tid":27466,"ts":326462922986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456554,"id":"0xaf88abbff3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462922986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":456554},
-{"pid":27443,"tid":27466,"ts":326462923016,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456584,"id":"0xccc66802"},
-{"pid":27443,"tid":27466,"ts":326462923047,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456615,"id":"0xaf88abb8f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462923077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":456645},
-{"pid":27443,"tid":27466,"ts":326462923077,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456645,"id":"0xccc66902"},
-{"pid":27443,"tid":27466,"ts":326462923810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456737,"id":"0xaf88abb9f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462923810,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":456737},
-{"pid":27443,"tid":27466,"ts":326462923810,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456737,"id":"0xccc66a02"},
-{"pid":27443,"tid":27466,"ts":326462924023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456828,"id":"0xaf88abbaf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462924023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":456828},
-{"pid":27443,"tid":27466,"ts":326462924023,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456828,"id":"0xccc66b02"},
-{"pid":27443,"tid":27466,"ts":326462924054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456889,"id":"0xaf88abbbf3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462924084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":456889},
-{"pid":27443,"tid":27466,"ts":326462924084,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456889,"id":"0xccc66c02"},
-{"pid":27443,"tid":27466,"ts":326462924145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":456950,"id":"0xaf88abb4f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462924145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":456950},
-{"pid":27443,"tid":27466,"ts":326462924145,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":456950,"id":"0xccc66d02"},
-{"pid":27443,"tid":27466,"ts":326462924206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":457012,"id":"0xaf88abb5f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462924206,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":457012},
-{"pid":27443,"tid":27469,"ts":326462694968,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":4517,"tdur":1160,"tts":581962},
-{"pid":27443,"tid":27469,"ts":326462694998,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e42b758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":582023},
-{"pid":27443,"tid":27471,"ts":326462695273,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":885,"tdur":855,"tts":514176},
-{"pid":27443,"tid":27471,"ts":326462695273,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":855,"tdur":855,"tts":514176},
-{"pid":27443,"tid":27471,"ts":326462695304,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e2ab5f8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":514207},
-{"pid":27443,"tid":27471,"ts":326462695304,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":514207},
-{"pid":27443,"tid":27471,"ts":326462695365,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":514268},
-{"pid":27443,"tid":27471,"ts":326462695365,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e2ab5f8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":514268},
-{"pid":27443,"tid":27471,"ts":326462695395,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":514298,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462696128,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":515031},
-{"pid":27443,"tid":27471,"ts":326462696158,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":794,"tdur":794,"tts":515061},
-{"pid":27443,"tid":27471,"ts":326462696158,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":515061},
-{"pid":27443,"tid":27471,"ts":326462696189,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e2b1ac0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":515092},
-{"pid":27443,"tid":27471,"ts":326462696189,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":515092},
-{"pid":27443,"tid":27471,"ts":326462696250,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":515153},
-{"pid":27443,"tid":27471,"ts":326462696280,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e2b1ac0"},"tileResolution":"HIGH_RESOLUTION"}},"tts":515183},
-{"pid":27443,"tid":27471,"ts":326462696311,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":515214,"s":"t"},{"pid":27443,"tid":27471,"ts":326462696952,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":515855},
-{"pid":27443,"tid":27471,"ts":326462696982,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":824,"tdur":824,"tts":515885},
-{"pid":27443,"tid":27471,"ts":326462696982,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":794,"tdur":794,"tts":515885},
-{"pid":27443,"tid":27471,"ts":326462697013,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797a7fe8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":515916},
-{"pid":27443,"tid":27471,"ts":326462697013,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":30,"tts":515916},
-{"pid":27443,"tid":27471,"ts":326462697074,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":515977},
-{"pid":27443,"tid":27471,"ts":326462697074,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x797a7fe8"},"tileResolution":"HIGH_RESOLUTION"}},"tts":516007},
-{"pid":27443,"tid":27471,"ts":326462697104,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":516038,"s":"t"},
-{"pid":27443,"tid":27471,"ts":326462697776,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":516679},
-{"pid":27443,"tid":27471,"ts":326462697806,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":672,"tdur":672,"tts":516709},
-{"pid":27443,"tid":27471,"ts":326462697806,"ph":"X","cat":"cc","name":"RasterizerTaskImpl::RunOnWorkerThread","args":{},"dur":672,"tdur":672,"tts":516709},
-{"pid":27443,"tid":27471,"ts":326462697837,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7b4fdc10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":516740},
-{"pid":27443,"tid":27471,"ts":326462697837,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":61,"tdur":61,"tts":516740},
-{"pid":27443,"tid":27471,"ts":326462697898,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":516801},
-{"pid":27443,"tid":27471,"ts":326462697928,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7b4fdc10"},"tileResolution":"HIGH_RESOLUTION"}},"tts":516831},
-{"pid":27443,"tid":27471,"ts":326462697959,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":516862,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462695029,"ph":"X","cat":"cc","name":"DisplayListRasterSource::PerformSolidColorAnalysis","args":{},"dur":3449,"tdur":92,"tts":582023},
-{"pid":27443,"tid":27471,"ts":326462698478,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":517381},
-{"pid":27443,"tid":27469,"ts":326462698478,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"AnalyzeTask","args":{},"tts":582115},
-{"pid":27443,"tid":27469,"ts":326462698508,"ph":"B","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{"tileData":{"layerId":46,"sourceFrameNumber":184,"tileId":{"id_ref":"0x7e42b758"},"tileResolution":"HIGH_RESOLUTION"}},"tts":582145},
-{"pid":27443,"tid":27469,"ts":326462698539,"ph":"I","cat":"cc","name":"SkCanvas::clear","args":{},"tts":582176,"s":"t"},
-{"pid":27443,"tid":27469,"ts":326462699454,"ph":"E","cat":"cc,disabled-by-default-devtools.timeline","name":"RasterTask","args":{},"tts":583122},
-{"pid":27443,"tid":27469,"ts":326462699515,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":92,"tdur":92,"tts":583152},
-{"pid":27443,"tid":27469,"ts":326462699546,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":61,"tdur":61,"tts":583183},
-{"pid":27443,"tid":27469,"ts":326462699546,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":583183,"id":"0xaf88a2bff182217a"},
-{"pid":27443,"tid":27471,"ts":326462699546,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1221,"tdur":91,"tts":517442},
-{"pid":27443,"tid":27471,"ts":326462699576,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1160,"tdur":31,"tts":517472},
-{"pid":27443,"tid":27471,"ts":326462700736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":517503,"id":"0xaf88a2b9f182217a"},
-{"pid":27443,"tid":27469,"ts":326462708519,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":488,"tdur":61,"tts":583244},
-{"pid":27443,"tid":27469,"ts":326462708549,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":458,"tdur":31,"tts":583274},
-{"pid":27443,"tid":27469,"ts":326462708580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":583305,"id":"0xaf88a2b5f182217a"},
-{"pid":27443,"tid":27469,"ts":326462709038,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":458,"tdur":61,"tts":583335},
-{"pid":27443,"tid":27469,"ts":326462709038,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":458,"tdur":31,"tts":583335},
-{"pid":27443,"tid":27469,"ts":326462709038,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":583335,"id":"0xaf88a2b7f182217a"},
-{"pid":27443,"tid":27471,"ts":326462709099,"ph":"X","cat":"toplevel","name":"TaskGraphRunner::RunTask","args":{},"dur":1282,"tdur":61,"tts":517564},
-{"pid":27443,"tid":27471,"ts":326462709099,"ph":"X","cat":"cc","name":"TaskSetFinishedTaskImpl::RunOnWorkerThread","args":{},"dur":1282,"tdur":61,"tts":517564},
-{"pid":27443,"tid":27471,"ts":326462709526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":517625,"id":"0xaf88a2b0f182217a"},
-{"pid":27443,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":4}},
-{"pid":27443,"tid":27466,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-5}},
-{"pid":27443,"tid":27466,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"Renderer"}},
-{"pid":27443,"tid":27466,"ts":0,"ph":"M","cat":"__metadata","name":"process_labels","args":{"labels":"Google Maps"}},
-{"pid":27443,"tid":27459,"ts":0,"ph":"M","cat":"__metadata","name":"thread_sort_index","args":{"sort_index":-1}},
-{"pid":27443,"tid":27491,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"ScriptStreamerThread"}},
-{"pid":27443,"tid":27483,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"HTMLParserThread"}},
-{"pid":27443,"tid":27471,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CompositorTileWorker2/27471"}},
-{"pid":27443,"tid":27469,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CompositorTileWorker1/27469"}},
-{"pid":27443,"tid":27498,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"WorkerPool/27498"}},
-{"pid":27443,"tid":27477,"ts":326462699973,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":91,"tts":1048222},
-{"pid":27443,"tid":27477,"ts":326462700095,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":31,"tts":1048313},
-{"pid":27443,"tid":27477,"ts":326462700156,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":1048374},
-{"pid":27443,"tid":27477,"ts":326462700156,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":1048374},
-{"pid":27443,"tid":27477,"ts":326462700187,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":0,"tdur":0,"tts":1048405},
-{"pid":27443,"tid":27477,"ts":326462700217,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":0,"tdur":0,"tts":1048435},
-{"pid":27443,"tid":27477,"ts":326462700217,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":61,"tdur":61,"tts":1048435},
-{"pid":27443,"tid":27477,"ts":326462700248,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":1048466},
-{"pid":27443,"tid":27477,"ts":326462700278,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":0,"tts":1048496},
-{"pid":27443,"tid":27477,"ts":326462700309,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":30,"tdur":30,"tts":1048527},
-{"pid":27443,"tid":27477,"ts":326462700309,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":30,"tdur":30,"tts":1048527},
-{"pid":27443,"tid":27477,"ts":326462700339,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":31,"tdur":31,"tts":1048557},
-{"pid":27443,"tid":27477,"ts":326462700370,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::IssueCopyOperations","args":{"count":1},"dur":31,"tdur":30,"tts":1048588},
-{"pid":27443,"tid":27477,"ts":326462700370,"ph":"X","cat":"cc","name":"ResourceProvider::CopyResource","args":{},"dur":31,"tdur":30,"tts":1048588},
-{"pid":27443,"tid":27477,"ts":326462700401,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::NotifyTileStateChanged","args":{},"dur":30,"tdur":31,"tts":1048618},
-{"pid":27443,"tid":27477,"ts":326462700431,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":214,"tdur":183,"tts":1048649},
-{"pid":27443,"tid":27477,"ts":326462700462,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":152,"tdur":152,"tts":1048680},
-{"pid":27443,"tid":27477,"ts":326462700645,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":1526,"tdur":1526,"tts":1048863},
-{"pid":27443,"tid":27477,"ts":326462700645,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":1526,"tdur":1526,"tts":1048863},
-{"pid":27443,"tid":27477,"ts":326462700675,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionActivateSyncTree","args":{},"dur":1435,"tdur":1435,"tts":1048893},
-{"pid":27443,"tid":27477,"ts":326462700675,"ph":"F","cat":"cc","name":"PendingTree:waiting","args":{},"tts":1048893,"id":"0xaf88ae4cff1a0e22"},
-{"pid":27443,"tid":27477,"ts":326462700767,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1048985},
-{"pid":27443,"tid":27477,"ts":326462700797,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049015},
-{"pid":27443,"tid":27477,"ts":326462700858,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049076},
-{"pid":27443,"tid":27477,"ts":326462700858,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049076},
-{"pid":27443,"tid":27477,"ts":326462700889,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1049107},
-{"pid":27443,"tid":27477,"ts":326462700919,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049137},
-{"pid":27443,"tid":27477,"ts":326462700950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049168},
-{"pid":27443,"tid":27477,"ts":326462700950,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1049168},
-{"pid":27443,"tid":27477,"ts":326462700980,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049198},
-{"pid":27443,"tid":27477,"ts":326462701011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049229},
-{"pid":27443,"tid":27477,"ts":326462701011,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":1049259},
-{"pid":27443,"tid":27477,"ts":326462701041,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1049259},
-{"pid":27443,"tid":27477,"ts":326462701072,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049290},
-{"pid":27443,"tid":27477,"ts":326462701102,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049320},
-{"pid":27443,"tid":27477,"ts":326462701102,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049320},
-{"pid":27443,"tid":27477,"ts":326462701133,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049351},
-{"pid":27443,"tid":27477,"ts":326462701164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049381},
-{"pid":27443,"tid":27477,"ts":326462701164,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":1049381},
-{"pid":27443,"tid":27477,"ts":326462701194,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049412},
-{"pid":27443,"tid":27477,"ts":326462701225,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049443},
-{"pid":27443,"tid":27477,"ts":326462701255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049473},
-{"pid":27443,"tid":27477,"ts":326462701255,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049473},
-{"pid":27443,"tid":27477,"ts":326462701286,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049504},
-{"pid":27443,"tid":27477,"ts":326462701316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049534},
-{"pid":27443,"tid":27477,"ts":326462701316,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049534},
-{"pid":27443,"tid":27477,"ts":326462701347,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049565},
-{"pid":27443,"tid":27477,"ts":326462701377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049595},
-{"pid":27443,"tid":27477,"ts":326462701377,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049595},
-{"pid":27443,"tid":27477,"ts":326462701408,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1049626},
-{"pid":27443,"tid":27477,"ts":326462701438,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049656},
-{"pid":27443,"tid":27477,"ts":326462701469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049687},
-{"pid":27443,"tid":27477,"ts":326462701469,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1049687},
-{"pid":27443,"tid":27477,"ts":326462701499,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049717},
-{"pid":27443,"tid":27477,"ts":326462701530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049748},
-{"pid":27443,"tid":27477,"ts":326462701530,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1049748},
-{"pid":27443,"tid":27477,"ts":326462701560,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049778},
-{"pid":27443,"tid":27477,"ts":326462701591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049809},
-{"pid":27443,"tid":27477,"ts":326462701591,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":30,"tts":1049809},
-{"pid":27443,"tid":27477,"ts":326462701621,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049839},
-{"pid":27443,"tid":27477,"ts":326462701652,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049870},
-{"pid":27443,"tid":27477,"ts":326462701682,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049900},
-{"pid":27443,"tid":27477,"ts":326462701682,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1049900},
-{"pid":27443,"tid":27477,"ts":326462701713,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":0,"tts":1049931},
-{"pid":27443,"tid":27477,"ts":326462701743,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1049961},
-{"pid":27443,"tid":27477,"ts":326462701804,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1050053},
-{"pid":27443,"tid":27477,"ts":326462701835,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":30,"tts":1050053},
-{"pid":27443,"tid":27477,"ts":326462701866,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":30,"tdur":31,"tts":1050083},
-{"pid":27443,"tid":27477,"ts":326462701896,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":31,"tts":1050114},
-{"pid":27443,"tid":27477,"ts":326462701927,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1050145},
-{"pid":27443,"tid":27477,"ts":326462701957,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":0,"tdur":0,"tts":1050175},
-{"pid":27443,"tid":27477,"ts":326462701957,"ph":"X","cat":"cc","name":"TakeTilesAndPropertiesFrom","args":{},"dur":31,"tdur":0,"tts":1050206},
-{"pid":27443,"tid":27477,"ts":326462702018,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1050236},
-{"pid":27443,"tid":27477,"ts":326462702049,"ph":"X","cat":"cc","name":"SchedulerStateMachine::SetNeedsPrepareTiles","args":{},"dur":30,"tdur":30,"tts":1050267},
-{"pid":27443,"tid":27477,"ts":326462702079,"ph":"X","cat":"cc","name":"ThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1050297},
-{"pid":27443,"tid":27477,"ts":326462702079,"ph":"X","cat":"cc","name":"ThreadProxy::DidActivateSyncTreeOnImplThread","args":{},"dur":31,"tdur":31,"tts":1050297},
-{"pid":27443,"tid":27477,"ts":326462702140,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_IMMEDIATE","deadline":0},"dur":0,"tdur":0,"tts":1050358},
-{"pid":27443,"tid":27477,"ts":326462702140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1050358,"id":"0xaf88a2baf182217a"},
-{"pid":27443,"tid":27477,"ts":326462702171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1050389,"id":"0xaf88a2b9f182217a"},
-{"pid":27443,"tid":27477,"ts":326462702201,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":31,"tdur":31,"tts":1050419},
-{"pid":27443,"tid":27477,"ts":326462702201,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":31,"tdur":31,"tts":1050419},
-{"pid":27443,"tid":27477,"ts":326462702201,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1050419,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462702232,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1050450},
-{"pid":27443,"tid":27477,"ts":326462702232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1050450,"id":"0xaf88a2baf182217a"},
-{"pid":27443,"tid":27477,"ts":326462702262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":5799,"tdur":2228,"tts":1050480},
-{"pid":27443,"tid":27477,"ts":326462702262,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":5799,"tdur":2228,"tts":1050480},
-{"pid":27443,"tid":27477,"ts":326462702262,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionAnimate","args":{},"dur":31,"tdur":0,"tts":1050511},
-{"pid":27443,"tid":27477,"ts":326462702293,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionDrawAndSwap","args":{},"dur":5341,"tdur":1739,"tts":1050511},
-{"pid":27443,"tid":27477,"ts":326462702323,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":184},"dur":1038,"tdur":1038,"tts":1050541},
-{"pid":27443,"tid":27477,"ts":326462702354,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":184},"dur":305,"tdur":305,"tts":1050572},
-{"pid":27443,"tid":27477,"ts":326462702659,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":184},"dur":61,"tdur":61,"tts":1050877},
-{"pid":27443,"tid":27477,"ts":326462702720,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":184},"tts":1050938},
-{"pid":27443,"tid":27477,"ts":326462702903,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":28},"tts":1051121},
-{"pid":27443,"tid":27477,"ts":326462702903,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1051121},
-{"pid":27443,"tid":27477,"ts":326462702934,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1051152},
-{"pid":27443,"tid":27477,"ts":326462702934,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1051152},
-{"pid":27443,"tid":27477,"ts":326462702964,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":12}},"tts":1051182,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462703056,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1051274},
-{"pid":27443,"tid":27477,"ts":326462703361,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1051579},
-{"pid":27443,"tid":27477,"ts":326462703361,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":3449,"tdur":366,"tts":1051579},
-{"pid":27443,"tid":27477,"ts":326462703392,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1051609},
-{"pid":27443,"tid":27477,"ts":326462703392,"ph":"X","cat":"cc","name":"DelegatingRenderer::DrawFrame","args":{},"dur":3357,"tdur":275,"tts":1051609},
-{"pid":27443,"tid":27477,"ts":326462703483,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":19085},"dur":92,"tdur":92,"tts":1051701},
-{"pid":27443,"tid":27477,"ts":326462703514,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1051732,"id":"0xaf88aba2f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462703575,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1051823,"id":"0xaf88aba3f3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462706810,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1051945,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462706840,"ph":"X","cat":"cc,benchmark","name":"DelegatingRenderer::SwapBuffers","args":{},"dur":702,"tdur":213,"tts":1051976},
-{"pid":27443,"tid":27477,"ts":326462706962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1052098,"id":"0xaf88abbcf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462707542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1052189,"id":"0xaf88a7f6f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462707573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1052220,"id":"0xaf88a205f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462707634,"ph":"X","cat":"cc","name":"ThreadProxy::ScheduledActionPrepareTiles","args":{},"dur":397,"tdur":397,"tts":1052281},
-{"pid":27443,"tid":27477,"ts":326462707634,"ph":"X","cat":"cc","name":"TileManager::PrepareTiles","args":{},"dur":397,"tdur":397,"tts":1052281},
-{"pid":27443,"tid":27477,"ts":326462707664,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":92,"tdur":92,"tts":1052311},
-{"pid":27443,"tid":27477,"ts":326462707786,"ph":"B","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{},"tts":1052434},
-{"pid":27443,"tid":27477,"ts":326462707786,"ph":"E","cat":"cc","name":"TileManager::AssignGpuMemoryToTiles","args":{"all_tiles_that_need_to_be_rasterized_are_scheduled":true,"had_enough_memory_to_schedule_tiles_needed_now":true},"tts":1052434},
-{"pid":27443,"tid":27477,"ts":326462707786,"ph":"X","cat":"cc","name":"TileManager::ScheduleTasks","args":{"count":0},"dur":214,"tdur":183,"tts":1052464},
-{"pid":27443,"tid":27477,"ts":326462707817,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::ScheduleTasks","args":{},"dur":153,"tdur":153,"tts":1052464},
-{"pid":27443,"tid":27477,"ts":326462707817,"ph":"S","cat":"cc","name":"ScheduledTasks","args":{},"tts":1052464,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462707878,"ph":"X","cat":"cc","name":"TileTaskWorkerPool::ScheduleTasksOnOriginThread","args":{},"dur":0,"tdur":0,"tts":1052525},
-{"pid":27443,"tid":27477,"ts":326462707878,"ph":"X","cat":"cc","name":"TaskGraphRunner::ScheduleTasks","args":{"num_nodes":3,"num_edges":0},"dur":61,"tdur":31,"tts":1052525},
-{"pid":27443,"tid":27477,"ts":326462707939,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[true,true,true]}},"tts":1052586,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462708000,"ph":"I","cat":"cc","name":"DidPrepareTiles","args":{"state":{"did_oom_on_last_assign":false,"global_state":{"hard_memory_limit_in_bytes":268435456,"memory_limit_policy":"ALLOW_ANYTHING","num_resources_limit":10000000,"soft_memory_limit_in_bytes":134217728,"tree_priority":"SAME_PRIORITY_FOR_BOTH_TREES"},"tile_count":229}},"tts":1052647,"s":"t"},
-{"pid":27443,"tid":27477,"ts":326462708031,"ph":"C","cat":"cc","name":"unused_memory_bytes","args":{"value":1081344},"tts":1052678,"id":"0xaf88ae4cff39fc5a"},
-{"pid":27443,"tid":27477,"ts":326462708061,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462705},"tts":1052708,"id":"0xaf88a2bcf182217a"},
-{"pid":27443,"tid":27477,"ts":326462708092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":0,"tdur":0,"tts":1052739},
-{"pid":27443,"tid":27477,"ts":326462708092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1052739,"id":"0xaf88a2bbf182217a"},
-{"pid":27443,"tid":27477,"ts":326462708122,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":1052769},
-{"pid":27443,"tid":27477,"ts":326462708122,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462704914.0,"frame_time_us":326462705101.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":122,"tdur":91,"tts":1052800},
-{"pid":27443,"tid":27477,"ts":326462708153,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginImplFrame","args":{"args":{"deadline_us":326462704914.0,"frame_time_us":326462705101.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"},"main_thread_is_high_latency":false},"dur":91,"tdur":91,"tts":1052800},
-{"pid":27443,"tid":27477,"ts":326462708214,"ph":"X","cat":"cc","name":"Scheduler::ScheduleBeginImplFrameDeadline","args":{"mode":"BEGIN_IMPL_FRAME_DEADLINE_MODE_LATE","deadline":326462721767},"dur":30,"tdur":30,"tts":1052861},
-{"pid":27443,"tid":27477,"ts":326462708214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1052861,"id":"0xaf88a2b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462708702,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1053044,"id":"0xaf88a2b5f182217a"},
-{"pid":27443,"tid":27477,"ts":326462708702,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":92,"tdur":62,"tts":1053074},
-{"pid":27443,"tid":27477,"ts":326462708733,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":0},"dur":61,"tdur":62,"tts":1053074},
-{"pid":27443,"tid":27477,"ts":326462708733,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,true,true]}},"tts":1053105,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462708763,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_ACTIVATION"},"dur":31,"tdur":31,"tts":1053105},
-{"pid":27443,"tid":27477,"ts":326462708763,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1053105,"id":"0xaf88a2b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462708794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1053136,"id":"0xaf88a2b6f182217a"},
-{"pid":27443,"tid":27477,"ts":326462708824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":153,"tdur":153,"tts":1053166},
-{"pid":27443,"tid":27477,"ts":326462708824,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToActivate","args":{},"dur":153,"tdur":153,"tts":1053166},
-{"pid":27443,"tid":27477,"ts":326462708824,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1053166},
-{"pid":27443,"tid":27477,"ts":326462708855,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1053197},
-{"pid":27443,"tid":27477,"ts":326462708855,"ph":"X","cat":"cc","name":"TileManager::IsReadyToActivate","args":{},"dur":91,"tdur":91,"tts":1053197},
-{"pid":27443,"tid":27477,"ts":326462708855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":61,"tdur":61,"tts":1053197},
-{"pid":27443,"tid":27477,"ts":326462708946,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1053288},
-{"pid":27443,"tid":27477,"ts":326462708946,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1053288},
-{"pid":27443,"tid":27477,"ts":326462709618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1053410,"id":"0xaf88a2b7f182217a"},
-{"pid":27443,"tid":27477,"ts":326462709648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":61,"tdur":61,"tts":1053441},
-{"pid":27443,"tid":27477,"ts":326462709648,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":1},"dur":61,"tdur":61,"tts":1053441},
-{"pid":27443,"tid":27477,"ts":326462709679,"ph":"T","cat":"cc","name":"ScheduledTasks","args":{"step":"running","state":{"staging_state":{"bytes_pending_copy":6635520,"bytes_used_for_staging_resources":10616832,"pending_copy_count":20,"staging_resource_count":32},"tasks_pending":[false,false,true]}},"tts":1053471,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462709679,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"REQUIRED_FOR_DRAW"},"dur":30,"tdur":31,"tts":1053471},
-{"pid":27443,"tid":27477,"ts":326462709709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1053502,"id":"0xaf88a2b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462709709,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1053532,"id":"0xaf88a2b0f182217a"},
-{"pid":27443,"tid":27477,"ts":326462709740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/raster/tile_task_worker_pool.cc","src_func":"TaskSetFinished"},"dur":30,"tdur":31,"tts":1053532},
-{"pid":27443,"tid":27477,"ts":326462709740,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::OnTaskSetFinished","args":{"task_set":2},"dur":30,"tdur":31,"tts":1053532},
-{"pid":27443,"tid":27477,"ts":326462709740,"ph":"F","cat":"cc","name":"ScheduledTasks","args":{},"tts":1053532,"id":"0xaf88ae4cff2ed3d2"},
-{"pid":27443,"tid":27477,"ts":326462709770,"ph":"X","cat":"cc","name":"TileManager::DidFinishRunningTileTasks","args":{"task_set":"ALL"},"dur":0,"tdur":0,"tts":1053563},
-{"pid":27443,"tid":27477,"ts":326462709770,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1053593,"id":"0xaf88a2b1f182217a"},
-{"pid":27443,"tid":27477,"ts":326462709801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1053593},
-{"pid":27443,"tid":27477,"ts":326462709831,"ph":"X","cat":"cc,benchmark","name":"ThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1053624},
-{"pid":27443,"tid":27477,"ts":326462709831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1053624,"id":"0xaf88a7f7f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462709862,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1053654,"id":"0xaf88a207f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462709923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1053715,"id":"0xaf88a2b2f182217a"},
-{"pid":27443,"tid":27477,"ts":326462709923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/base/unique_notifier.cc","src_func":"Schedule"},"dur":214,"tdur":214,"tts":1053715},
-{"pid":27443,"tid":27477,"ts":326462709923,"ph":"X","cat":"cc","name":"TileManager::CheckIfReadyToDraw","args":{},"dur":183,"tdur":184,"tts":1053715},
-{"pid":27443,"tid":27477,"ts":326462709953,"ph":"X","cat":"cc","name":"OneCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1053746},
-{"pid":27443,"tid":27477,"ts":326462709953,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1053746},
-{"pid":27443,"tid":27477,"ts":326462709984,"ph":"X","cat":"cc","name":"TileManager::IsReadyToDraw","args":{},"dur":91,"tdur":92,"tts":1053776},
-{"pid":27443,"tid":27477,"ts":326462709984,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BuildRasterQueue","args":{},"dur":91,"tdur":92,"tts":1053776},
-{"pid":27443,"tid":27477,"ts":326462710075,"ph":"X","cat":"cc","name":"TileManager::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":1053868},
-{"pid":27443,"tid":27477,"ts":326462710106,"ph":"X","cat":"cc","name":"ThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1053899},
-{"pid":27443,"tid":27477,"ts":326462721887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462721},"tts":1053990,"id":"0xaf88a2b4f182217a"},
-{"pid":27443,"tid":27477,"ts":326462721887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../cc/scheduler/scheduler.cc","src_func":"ScheduleBeginImplFrameDeadline"},"dur":305,"tdur":244,"tts":1053990},
-{"pid":27443,"tid":27477,"ts":326462721917,"ph":"X","cat":"cc,benchmark","name":"Scheduler::OnBeginImplFrameDeadline","args":{},"dur":245,"tdur":183,"tts":1054021},
-{"pid":27443,"tid":27477,"ts":326462721948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1054051,"id":"0xaf88abbdf3d03dca"},
-{"pid":27443,"tid":27477,"ts":326462722101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":1054143,"id":"0xaf88a7f0f3d0445e"},
-{"pid":27443,"tid":27477,"ts":326462722131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1054173,"id":"0xaf88a201f3d027d2"},
-{"pid":27443,"tid":27477,"ts":326462723291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1054265,"id":"0xaf88a2b3f182217a"},
-{"pid":27443,"tid":27477,"ts":326462723291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/renderer/gpu/compositor_forwarding_message_filter.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1054265},
-{"pid":27443,"tid":27477,"ts":326462723321,"ph":"X","cat":"cc,benchmark","name":"Scheduler::BeginFrame","args":{"args":{"deadline_us":326462721604.0,"frame_time_us":326462721791.0,"interval_us":16666.0,"on_critical_path":true,"subtype":"NORMAL","type":"BeginFrameArgs"}},"dur":31,"tdur":0,"tts":1054326},
-{"pid":27443,"tid":27477,"ts":326462723352,"ph":"I","cat":"cc","name":"Scheduler::BeginFrame deferred","args":{},"tts":1054326,"s":"t"},
-{"pid":27443,"tid":27477,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.011576778385772913}},
-{"pid":27443,"tid":27459,"ts":326462920697,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8382939,"id":"0xaf88a72bf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326462920727,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/core/frame/DOMTimer.cpp","src_func":"DOMTimer"},"dur":3663,"tdur":2747,"tts":8382969},
-{"pid":27443,"tid":27459,"ts":326462920727,"ph":"X","cat":"blink","name":"TimerBase::run","args":{},"dur":3663,"tdur":2747,"tts":8382969},
-{"pid":27443,"tid":27459,"ts":326462920788,"ph":"X","cat":"devtools.timeline","name":"TimerFire","args":{"data":{"timerId":223,"frame":"0x78c60000"}},"dur":3602,"tdur":2686,"tts":8383030},
-{"pid":27443,"tid":27459,"ts":326462920819,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":3540,"tdur":2624,"tts":8383061},
-{"pid":27443,"tid":27459,"ts":326462920880,"ph":"X","cat":"devtools.timeline,v8","name":"FunctionCall","args":{"data":{"scriptId":"55","scriptName":"https://maps.gstatic.com/maps-lite/js/2/9a/main.js","scriptLine":91,"frame":"0x78c60000"}},"dur":3479,"tdur":2563,"tts":8383122},
-{"pid":27443,"tid":27459,"ts":326462920910,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":8383152},
-{"pid":27443,"tid":27459,"ts":326462921856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8384098,"id":"0xaf88a21af3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462922009,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStartLoading","args":{"id":1},"dur":122,"tdur":122,"tts":8384251},
-{"pid":27443,"tid":27459,"ts":326462922070,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":711},"dur":61,"tdur":61,"tts":8384312},
-{"pid":27443,"tid":27459,"ts":326462922070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8384312,"id":"0xaf88abbef3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462922253,"ph":"X","cat":"blink","name":"PinchViewport::mainFrameDidChangeSize","args":{},"dur":366,"tdur":31,"tts":8384495},
-{"pid":27443,"tid":27459,"ts":326462922253,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":8384495},
-{"pid":27443,"tid":27459,"ts":326462922619,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didNavigateWithinPage","args":{"id":1},"dur":1374,"tdur":793,"tts":8384526},
-{"pid":27443,"tid":27459,"ts":326462922680,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didCommitProvisionalLoad","args":{"id":1,"url":"https://www.google.com/maps/@37.3606361,-122.1332344,13z?hl=en"},"dur":1313,"tdur":732,"tts":8384587},
-{"pid":27443,"tid":27459,"ts":326462922894,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1115},"dur":61,"tdur":31,"tts":8384739},
-{"pid":27443,"tid":27459,"ts":326462922925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8384739,"id":"0xaf88abbff3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462922986,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":749},"dur":30,"tdur":31,"tts":8384800},
-{"pid":27443,"tid":27459,"ts":326462923016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8384831,"id":"0xaf88abb8f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462923718,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1402},"dur":61,"tdur":61,"tts":8385045},
-{"pid":27443,"tid":27459,"ts":326462923749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385075,"id":"0xaf88abb9f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462923871,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":694},"dur":61,"tdur":61,"tts":8385197},
-{"pid":27443,"tid":27459,"ts":326462923901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385228,"id":"0xaf88abbaf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462923962,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":31,"tdur":0,"tts":8385289},
-{"pid":27443,"tid":27459,"ts":326462923962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385289,"id":"0xaf88abbbf3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462923993,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":761},"dur":30,"tdur":31,"tts":8385319},
-{"pid":27443,"tid":27459,"ts":326462924023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385350,"id":"0xaf88abb4f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462924054,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":766},"dur":30,"tdur":0,"tts":8385380},
-{"pid":27443,"tid":27459,"ts":326462924054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385380,"id":"0xaf88abb5f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462924084,"ph":"X","cat":"navigation","name":"RenderFrameImpl::didStopLoading","args":{"id":1},"dur":214,"tdur":213,"tts":8385411},
-{"pid":27443,"tid":27459,"ts":326462924145,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":2,"line":1517},"dur":31,"tdur":30,"tts":8385472},
-{"pid":27443,"tid":27459,"ts":326462924145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385502,"id":"0xaf88abb6f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462924267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385594,"id":"0xaf88a21bf3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462924298,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":1,"line":714},"dur":0,"tdur":0,"tts":8385624},
-{"pid":27443,"tid":27459,"ts":326462924298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385624,"id":"0xaf88abb7f3d03dca"},
-{"pid":27443,"tid":27459,"ts":326462924328,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":8385655},
-{"pid":27443,"tid":27459,"ts":326462924451,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8385777,"id":"0xaf88a219f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326462924481,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8385808},
-{"pid":27443,"tid":27459,"ts":326463031363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8385899,"id":"0xaf88a214f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":122,"tdur":122,"tts":8385899},
-{"pid":27443,"tid":27459,"ts":326463031424,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8385930,"id":"0xaf88a215f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031424,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8385930,"id":"0xaf88a7f3f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463031424,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":62,"tdur":61,"tts":8385930},
-{"pid":27443,"tid":27459,"ts":326463031455,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":63,"line":23},"dur":31,"tdur":31,"tts":8385960},
-{"pid":27443,"tid":27459,"ts":326463031547,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8386052,"id":"0xaf88a215f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031547,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":91,"tdur":91,"tts":8386052},
-{"pid":27443,"tid":27459,"ts":326463031577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8386082,"id":"0xaf88a216f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8386082,"id":"0xaf88a7f1f3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463031577,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/single_thread_idle_task_runner.cc","src_func":"PostIdleTaskAfterWakeup"},"dur":61,"tdur":61,"tts":8386082},
-{"pid":27443,"tid":27459,"ts":326463031608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8386113,"id":"0xaf88a78cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463031608,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8386113,"id":"0xaf88a78df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463031669,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8386174,"id":"0xaf88a216f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031669,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":152,"tdur":152,"tts":8386174},
-{"pid":27443,"tid":27459,"ts":326463031699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8386204,"id":"0xaf88a217f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8386204,"id":"0xaf88a78cf3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463031699,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../components/scheduler/child/idle_helper.cc","src_func":"OnIdleTaskPostedOnMainThread"},"dur":92,"tdur":92,"tts":8386204},
-{"pid":27443,"tid":27459,"ts":326463031730,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8386235,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463031730,"ph":"e","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8386235,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463031760,"ph":"e","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{},"tts":8386265,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463031760,"ph":"b","cat":"renderer.scheduler","name":"RendererSchedulerIdlePeriod","args":{"idle_period_length_ms":50000},"tts":8386296,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463031791,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriod","args":{},"tts":8386296,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463031821,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8386326,"id":"0xaf88a217f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463031852,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":213,"tdur":214,"tts":8386357},
-{"pid":27443,"tid":27459,"ts":326463031852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8386357,"id":"0xaf88a210f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326462924237,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":457042,"id":"0xccc66e02"},
-{"pid":27443,"tid":27466,"ts":326462924267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":457073,"id":"0xaf88abb6f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462924267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":457073},
-{"pid":27443,"tid":27466,"ts":326462924298,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":457103,"id":"0xccc66f02"},
-{"pid":27443,"tid":27466,"ts":326462924328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":457134,"id":"0xaf88abb7f3d03dca"},
-{"pid":27443,"tid":27466,"ts":326462924328,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":30,"tts":457134},
-{"pid":27443,"tid":27466,"ts":326462924359,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":457164,"id":"0xccc67002"},
-{"pid":27443,"tid":27466,"ts":326463031150,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"dur":183,"tdur":183,"tts":457225},
-{"pid":27443,"tid":27466,"ts":326463031211,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":63,"line":23},"dur":91,"tdur":92,"tts":457286},
-{"pid":27443,"tid":27466,"ts":326463031211,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":457286,"id":"0xba471d02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":326463031241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":457347,"id":"0xaf88a7f3f3d0445e"},
-{"pid":27443,"tid":27466,"ts":326463031272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":457347,"id":"0xaf88a214f3d027d2"},
-{"pid":27443,"tid":27466,"ts":326463172917,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":60},"tdur":0,"tts":457439},
-{"pid":27443,"tid":27466,"ts":326463172947,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":61,"line":40},"tdur":0,"tts":457469},
-{"pid":27443,"tid":27466,"ts":326463172978,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":457500,"id":"0xba471f02","bp":"e"},
-{"pid":27443,"tid":27466,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.011462507380436922}},
-{"pid":27443,"tid":27459,"ts":326463031882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{"queue_duration":0},"tts":8386387,"id":"0xaf88a78df3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463031882,"ph":"X","cat":"toplevel","name":"TaskQueueManager::RunTask","args":{"src_file":"../../third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp","src_func":"idleGCTaskInMainThread"},"dur":153,"tdur":153,"tts":8386387},
-{"pid":27443,"tid":27459,"ts":326463031882,"ph":"b","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8386418,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463031913,"ph":"X","cat":"renderer.scheduler","name":"SingleThreadIdleTaskRunner::RunTask","args":{"allotted_time_ms":49.847},"dur":122,"tdur":122,"tts":8386418},
-{"pid":27443,"tid":27459,"ts":326463031913,"ph":"B","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8386448},
-{"pid":27443,"tid":27459,"ts":326463031974,"ph":"E","cat":"v8","name":"V8.GCIdleNotification","args":{},"tts":8386479},
-{"pid":27443,"tid":27459,"ts":326463032004,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"TaskQueueManager::PostTask","args":{},"tts":8386510,"id":"0xaf88a78ef3d0445e"},
-{"pid":27443,"tid":27459,"ts":326463032004,"ph":"e","cat":"renderer.scheduler","name":"RunningIdleTask","args":{},"tts":8386510,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463032035,"ph":"b","cat":"renderer.scheduler","name":"LongIdlePeriodPaused","args":{},"tts":8386540,"id":"0xaf88ae4cf182f66a"},
-{"pid":27443,"tid":27459,"ts":326463032065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":8386571,"id":"0xaf88a210f3d027d2"},
-{"pid":27443,"tid":27459,"ts":326463032096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/scheduler/child/task_queue_manager.cc","src_func":"MaybePostDoWorkOnMainRunner"},"dur":0,"tdur":0,"tts":8386601},
-{"pid":27443,"tid":27459,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.014919595896474508}},
-{"pid":27443,"tid":27546,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"WorkerPool/27546"}},
-{"pid":27443,"tid":27496,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"WorkerPool/27496"}},
-{"pid":27443,"tid":27459,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrRendererMain"}},
-{"pid":27443,"tid":27477,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Compositor"}},
-{"pid":27443,"tid":27466,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},{"pid":27369,"tid":27403,"ts":326457180272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1770,"id":"0xaf8a66b6feb47934"},
-{"pid":27369,"tid":27403,"ts":326457180272,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1770},
-{"pid":27369,"tid":27403,"ts":326463171879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2014,"id":"0xaf8a644afebb3284"},
-{"pid":27369,"tid":27403,"ts":326463171910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/tracing/tracing_controller_impl.cc","src_func":"DisableRecording"},"tdur":0,"tts":2044},
-{"pid":27369,"tid":27403,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.030666666666666665}},
-{"pid":27369,"tid":27369,"ts":326457184454,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1674835},
-{"pid":27369,"tid":27369,"ts":326457184484,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1674897,"id":"0xaf8a66b6feb47934"},
-{"pid":27369,"tid":27369,"ts":326457184515,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/tracing/tracing_controller_impl.cc","src_func":"SetEnabledOnFileThread"},"dur":1465,"tdur":213,"tts":1674897},
-{"pid":27369,"tid":27369,"ts":326457184606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1674958,"id":"0xaf8a63a5febbc614"},
-{"pid":27369,"tid":27369,"ts":326457184606,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1252,"tdur":30,"tts":1674958},
-{"pid":27369,"tid":27369,"ts":326457185949,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1675080,"id":"0xaf8a63a6febbc614"},
-{"pid":27369,"tid":27369,"ts":326457186071,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1675202},
-{"pid":27369,"tid":27369,"ts":326457186193,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1675324},
-{"pid":27369,"tid":27369,"ts":326457196234,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1676636},
-{"pid":27369,"tid":27369,"ts":326457196387,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1676758},
-{"pid":27369,"tid":27369,"ts":326457196479,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1676850},
-{"pid":27369,"tid":27369,"ts":326457206398,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1677033},
-{"pid":27369,"tid":27369,"ts":326457206398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1677033,"id":"0xaf8a66b7feb47934"},
-{"pid":27369,"tid":27369,"ts":326457206428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/gpu/gpu_process_host.cc","src_func":"RouteOnUIThread"},"dur":31,"tdur":31,"tts":1677063},
-{"pid":27369,"tid":27369,"ts":326457206520,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1677155},
-{"pid":27369,"tid":27369,"ts":326457217538,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1677521},
-{"pid":27369,"tid":27369,"ts":326457258252,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1681153},
-{"pid":27369,"tid":27369,"ts":326457258374,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1681245},
-{"pid":27369,"tid":27369,"ts":326457258496,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1681367},
-{"pid":27369,"tid":27369,"ts":326457267896,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1681580},
-{"pid":27369,"tid":27369,"ts":326457280532,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1689088},
-{"pid":27369,"tid":27369,"ts":326457999683,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1689729},
-{"pid":27369,"tid":27369,"ts":326457999775,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_DOWN"},"dur":214,"tdur":214,"tts":1689790},
-{"pid":27369,"tid":27369,"ts":326457999836,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1689851,"id":"0xaf8a66b0feb47934"},
-{"pid":27369,"tid":27369,"ts":326457999927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1689943,"id":"0xaf8a66b1feb47934"},
-{"pid":27369,"tid":27369,"ts":326458005055,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":641,"tdur":305,"tts":1690157},
-{"pid":27369,"tid":27369,"ts":326458005055,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":1690157},
-{"pid":27369,"tid":27369,"ts":326457994000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{},"tts":1690218,"id":"0x30000000c"},
-{"pid":27369,"tid":27369,"ts":326458005452,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901900},"tts":1690218,"id":"0x30000000c"},
-{"pid":27369,"tid":27369,"ts":326458005482,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":1690248},
-{"pid":27369,"tid":27369,"ts":326458005482,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1690248,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458005513,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":1690279},
-{"pid":27369,"tid":27369,"ts":326458005513,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchStart"},"dur":183,"tdur":152,"tts":1690279},
-{"pid":27369,"tid":27369,"ts":326458005543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1690309,"id":"0xaf8a63a7febbc614"},
-{"pid":27369,"tid":27369,"ts":326458005604,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":0,"tts":1690401},
-{"pid":27369,"tid":27369,"ts":326458005635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1690401,"id":"0xaf8a63a0febbc614"},
-{"pid":27369,"tid":27369,"ts":326458005665,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1690431,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458005665,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1690431,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458005726,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1690492},
-{"pid":27369,"tid":27369,"ts":326458007985,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1690981},
-{"pid":27369,"tid":27369,"ts":326458008137,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1691103},
-{"pid":27369,"tid":27369,"ts":326458010976,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1691286},
-{"pid":27369,"tid":27369,"ts":326458011037,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1691347},
-{"pid":27369,"tid":27369,"ts":326458017202,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1691622},
-{"pid":27369,"tid":27369,"ts":326458017599,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1692018},
-{"pid":27369,"tid":27369,"ts":326458017660,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":62,"tts":1692079},
-{"pid":27369,"tid":27369,"ts":326458017751,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1692171},
-{"pid":27369,"tid":27369,"ts":326458010000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1692202,"id":"0x30000000d"},
-{"pid":27369,"tid":27369,"ts":326458017782,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901901},"tts":1692232,"id":"0x30000000d"},
-{"pid":27369,"tid":27369,"ts":326458017812,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1692232},
-{"pid":27369,"tid":27369,"ts":326458017812,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1692232,"id":"0xaf8a644cff493284"},
-{"pid":27369,"tid":27369,"ts":326458017843,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1692263},
-{"pid":27369,"tid":27369,"ts":326458018087,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1692507},
-{"pid":27369,"tid":27369,"ts":326458033927,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1692934},
-{"pid":27369,"tid":27369,"ts":326458034660,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1693422},
-{"pid":27369,"tid":27369,"ts":326458034721,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":30,"tdur":31,"tts":1693483},
-{"pid":27369,"tid":27369,"ts":326458034782,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":213,"tdur":92,"tts":1693544},
-{"pid":27369,"tid":27369,"ts":326458028000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1693575,"id":"0x30000000e"},
-{"pid":27369,"tid":27369,"ts":326458034812,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901902},"tts":1693575,"id":"0x30000000e"},
-{"pid":27369,"tid":27369,"ts":326458034843,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":152,"tdur":31,"tts":1693605},
-{"pid":27369,"tid":27369,"ts":326458034843,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1693605,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458034843,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1693605},
-{"pid":27369,"tid":27369,"ts":326458034995,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1693636},
-{"pid":27369,"tid":27369,"ts":326458036033,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1694002},
-{"pid":27369,"tid":27407,"ts":326457188177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1371219,"id":"0xaf8a63a5febbc614"},
-{"pid":27369,"tid":27407,"ts":326457188177,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":61,"tts":1371219},
-{"pid":27369,"tid":27407,"ts":326457188269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/public/browser/browser_message_filter.cc","src_func":"Send"},"dur":244,"tdur":245,"tts":1371310},
-{"pid":27369,"tid":27407,"ts":326457188330,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1371371,"id":"0xba43f402"},
-{"pid":27369,"tid":27407,"ts":326457188543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1371585,"id":"0xaf8a63a6febbc614"},
-{"pid":27369,"tid":27407,"ts":326457188574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/public/browser/browser_message_filter.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1371616},
-{"pid":27369,"tid":27407,"ts":326457188604,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1371646,"id":"0xba43f502"},
-{"pid":27369,"tid":27407,"ts":326457206062,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":183,"tdur":183,"tts":1371860},
-{"pid":27369,"tid":27407,"ts":326457206093,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":407},"dur":152,"tdur":122,"tts":1371921},
-{"pid":27369,"tid":27407,"ts":326457206123,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1371921,"id":"0xc4c0d602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326457206154,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1371951,"id":"0xaf8a66b7feb47934"},
-{"pid":27369,"tid":27407,"ts":326458006062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372134,"id":"0xaf8a63a7febbc614"},
-{"pid":27369,"tid":27407,"ts":326458006062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/gpu/gpu_process_host_ui_shim.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1372134},
-{"pid":27369,"tid":27407,"ts":326458006093,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372165,"id":"0xba43f602"},
-{"pid":27369,"tid":27407,"ts":326458006154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372226,"id":"0xaf8a63a0febbc614"},
-{"pid":27369,"tid":27407,"ts":326458006184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1372256},
-{"pid":27369,"tid":27407,"ts":326458006184,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372256,"id":"0xba43f702"},
-{"pid":27369,"tid":27407,"ts":326458038780,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":1372379},
-{"pid":27369,"tid":27407,"ts":326458038810,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":232},"dur":122,"tdur":91,"tts":1372440},
-{"pid":27369,"tid":27407,"ts":326458038841,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372440,"id":"0xccc36402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458038841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1372470,"id":"0xaf8a66b2feb47934"},
-{"pid":27369,"tid":27407,"ts":326458038932,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":62,"tdur":61,"tts":1372531},
-{"pid":27369,"tid":27407,"ts":326458038963,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372562,"id":"0xccc36502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458038963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1372562,"id":"0xaf8a66b3feb47934"},
-{"pid":27369,"tid":27407,"ts":326458039360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372714,"id":"0xaf8a63a1febbc614"},
-{"pid":27369,"tid":27407,"ts":326458039360,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1372714},
-{"pid":27369,"tid":27407,"ts":326458039390,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372745,"id":"0xba43f802"},
-{"pid":27369,"tid":27407,"ts":326458040123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1372867,"id":"0xaf8a63a2febbc614"},
-{"pid":27369,"tid":27407,"ts":326458040153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1372867},
-{"pid":27369,"tid":27407,"ts":326458040153,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372867,"id":"0xba43f902"},
-{"pid":27369,"tid":27407,"ts":326458043907,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1372958},
-{"pid":27369,"tid":27407,"ts":326458043938,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1372989},
-{"pid":27369,"tid":27407,"ts":326458043938,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1372989,"id":"0xccc36702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458043968,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373019,"id":"0xaf8a674cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458044060,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":61,"tts":1373111},
-{"pid":27369,"tid":27407,"ts":326458044060,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1373142,"id":"0xccc36802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458044090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373142,"id":"0xaf8a674dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458044914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373264,"id":"0xaf8a63a3febbc614"},
-{"pid":27369,"tid":27407,"ts":326458044945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1373294},
-{"pid":27369,"tid":27407,"ts":326458044945,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1373294,"id":"0xba43fa02"},
-{"pid":27369,"tid":27407,"ts":326458052941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373416,"id":"0xaf8a63bcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458052941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1373416},
-{"pid":27369,"tid":27407,"ts":326458052972,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1373447,"id":"0xba43fb02"},
-{"pid":27369,"tid":27407,"ts":326458053949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373569,"id":"0xaf8a63bdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458053949,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1373569},
-{"pid":27369,"tid":27407,"ts":326458053979,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1373599,"id":"0xba43fc02"},
-{"pid":27369,"tid":27407,"ts":326458067927,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1373691},
-{"pid":27369,"tid":27407,"ts":326458067957,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1373721},
-{"pid":27369,"tid":27407,"ts":326458067988,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1373752,"id":"0xccc36a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458067988,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1373752,"id":"0xaf8a674efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458068415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1373905,"id":"0xaf8a63befebbc614"},
-{"pid":27369,"tid":27407,"ts":326458068446,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1373935},
-{"pid":27369,"tid":27407,"ts":326458068446,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1373935,"id":"0xba43fd02"},
-{"pid":27369,"tid":27407,"ts":326458069941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1374057,"id":"0xaf8a63bffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458069941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1374057},
-{"pid":27369,"tid":27407,"ts":326458069941,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1374057,"id":"0xba43fe02"},
-{"pid":27369,"tid":27407,"ts":326458084469,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1374210},
-{"pid":27369,"tid":27407,"ts":326458084499,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1374240},
-{"pid":27369,"tid":27407,"ts":326458084530,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1374271,"id":"0xccc36c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458084530,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1374271,"id":"0xaf8a674ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458084988,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1374393,"id":"0xaf8a63b8febbc614"},
-{"pid":27369,"tid":27407,"ts":326458084988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1374393},
-{"pid":27369,"tid":27407,"ts":326458085018,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1374423,"id":"0xba43ff02"},
-{"pid":27369,"tid":27407,"ts":326458086514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1374546,"id":"0xaf8a63b9febbc614"},
-{"pid":27369,"tid":27369,"ts":326458039146,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1694155},
-{"pid":27369,"tid":27369,"ts":326458039207,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1694216,"id":"0xaf8a66b2feb47934"},
-{"pid":27369,"tid":27369,"ts":326458039207,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":1694216},
-{"pid":27369,"tid":27369,"ts":326458039207,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":232},"dur":153,"tdur":122,"tts":1694216},
-{"pid":27369,"tid":27369,"ts":326458039268,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1694277},
-{"pid":27369,"tid":27369,"ts":326458039268,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1694307,"id":"0xaf8a63a1febbc614"},
-{"pid":27369,"tid":27369,"ts":326458039421,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1694399},
-{"pid":27369,"tid":27369,"ts":326458039421,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":1694399},
-{"pid":27369,"tid":27369,"ts":326458039665,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1694521},
-{"pid":27369,"tid":27369,"ts":326458039696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1694521,"id":"0xaf8a66b3feb47934"},
-{"pid":27369,"tid":27369,"ts":326458039696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":946,"tdur":458,"tts":1694521},
-{"pid":27369,"tid":27369,"ts":326458039726,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":916,"tdur":427,"tts":1694552},
-{"pid":27369,"tid":27369,"ts":326458039757,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1694582,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458039787,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1694613,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458039787,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchStart","ack":"CONSUMED"},"dur":855,"tdur":366,"tts":1694613},
-{"pid":27369,"tid":27369,"ts":326458039787,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":855,"tdur":366,"tts":1694613},
-{"pid":27369,"tid":27369,"ts":326458039909,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458039818.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901900.0,"time":326458005421.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326457994000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326458039818.0},"coordinates":[{"x":358.0,"y":714.5}],"trace_id":12884901900.0}},"tts":1694735,"id":"0x30000000c"},
-{"pid":27369,"tid":27369,"ts":326458039940,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":1694765,"id":"0x30000000c","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326458039940,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1694765,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458039970,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":672,"tdur":152,"tts":1694796},
-{"pid":27369,"tid":27369,"ts":326458039970,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":641,"tdur":152,"tts":1694796},
-{"pid":27369,"tid":27369,"ts":326458040031,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":550,"tdur":61,"tts":1694857},
-{"pid":27369,"tid":27369,"ts":326458040031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1694887,"id":"0xaf8a63a2febbc614"},
-{"pid":27369,"tid":27369,"ts":326458040611,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1694948,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458040611,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1694948,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458040703,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1695040},
-{"pid":27369,"tid":27369,"ts":326458044151,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1695193},
-{"pid":27369,"tid":27369,"ts":326458044182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1695223,"id":"0xaf8a674cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458044182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1695223},
-{"pid":27369,"tid":27369,"ts":326458044213,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":91,"tts":1695254},
-{"pid":27369,"tid":27369,"ts":326458044243,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":61,"tdur":61,"tts":1695284},
-{"pid":27369,"tid":27369,"ts":326458044365,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1695406},
-{"pid":27369,"tid":27369,"ts":326458044457,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1695498},
-{"pid":27369,"tid":27369,"ts":326458044457,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1695498,"id":"0xaf8a674dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458044457,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":1695498},
-{"pid":27369,"tid":27369,"ts":326458044487,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1695528},
-{"pid":27369,"tid":27369,"ts":326458044518,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1695559,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458044518,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1695559,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458044548,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":31,"tts":1695589},
-{"pid":27369,"tid":27369,"ts":326458044548,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":1695589},
-{"pid":27369,"tid":27369,"ts":326458044579,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1695620,"id":"0xaf8a644cff493284"},
-{"pid":27369,"tid":27369,"ts":326458044640,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1695681},
-{"pid":27369,"tid":27369,"ts":326458044762,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1695803},
-{"pid":27369,"tid":27369,"ts":326458044762,"ph":"B","cat":"Java","name":"VSyncSynthetic","args":{},"tts":1695803},
-{"pid":27369,"tid":27369,"ts":326458044823,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":1695864},
-{"pid":27369,"tid":27369,"ts":326458044823,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458038223},"dur":61,"tdur":61,"tts":1695864},
-{"pid":27369,"tid":27369,"ts":326458044853,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":1695895},
-{"pid":27369,"tid":27369,"ts":326458044853,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1695895,"id":"0xaf8a63a3febbc614"},
-{"pid":27369,"tid":27369,"ts":326458044945,"ph":"E","cat":"Java","name":"VSyncSynthetic","args":{},"tts":1695986},
-{"pid":27369,"tid":27369,"ts":326458045250,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1696078},
-{"pid":27369,"tid":27369,"ts":326458052117,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1696444},
-{"pid":27369,"tid":27369,"ts":326458052545,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1696871},
-{"pid":27369,"tid":27369,"ts":326458052606,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":1696963},
-{"pid":27369,"tid":27369,"ts":326458052697,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":214,"tts":1697054},
-{"pid":27369,"tid":27369,"ts":326458045000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1697054,"id":"0x30000000f"},
-{"pid":27369,"tid":27369,"ts":326458052758,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901903},"tts":1697085,"id":"0x30000000f"},
-{"pid":27369,"tid":27369,"ts":326458052758,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":1697085},
-{"pid":27369,"tid":27369,"ts":326458052789,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1697115,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458052789,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":153,"tts":1697115},
-{"pid":27369,"tid":27369,"ts":326458052789,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":153,"tts":1697115},
-{"pid":27369,"tid":27369,"ts":326458052819,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":1697146},
-{"pid":27369,"tid":27369,"ts":326458052850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697176,"id":"0xaf8a63bcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458052911,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1697237,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458052911,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1697237,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458052972,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1697298},
-{"pid":27369,"tid":27369,"ts":326458053796,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1697573},
-{"pid":27369,"tid":27369,"ts":326458053826,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":123,"tdur":122,"tts":1697604},
-{"pid":27369,"tid":27369,"ts":326458053826,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458050104},"dur":92,"tdur":91,"tts":1697604},
-{"pid":27369,"tid":27369,"ts":326458053857,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1697634},
-{"pid":27369,"tid":27369,"ts":326458053887,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697665,"id":"0xaf8a63bdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458053949,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1697756},
-{"pid":27369,"tid":27369,"ts":326458054437,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1697848},
-{"pid":27369,"tid":27369,"ts":326458067316,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1698336},
-{"pid":27369,"tid":27369,"ts":326458067713,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1698733},
-{"pid":27369,"tid":27369,"ts":326458067774,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1698794},
-{"pid":27369,"tid":27369,"ts":326458067866,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":1698886},
-{"pid":27369,"tid":27369,"ts":326458061000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1698916,"id":"0x300000010"},
-{"pid":27369,"tid":27369,"ts":326458067927,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901904},"tts":1698947,"id":"0x300000010"},
-{"pid":27369,"tid":27369,"ts":326458067927,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":1698947},
-{"pid":27369,"tid":27369,"ts":326458067927,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1698977,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458067957,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1698977},
-{"pid":27369,"tid":27369,"ts":326458068202,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1699221},
-{"pid":27369,"tid":27369,"ts":326458068263,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":153,"tts":1699282},
-{"pid":27369,"tid":27369,"ts":326458068263,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458066780},"dur":152,"tdur":122,"tts":1699282},
-{"pid":27369,"tid":27369,"ts":326458068293,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":61,"tts":1699313},
-{"pid":27369,"tid":27369,"ts":326458068293,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1699313},
-{"pid":27369,"tid":27369,"ts":326458068354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1699343,"id":"0xaf8a63befebbc614"},
-{"pid":27369,"tid":27369,"ts":326458068446,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1699435},
-{"pid":27369,"tid":27369,"ts":326458069544,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1699984},
-{"pid":27369,"tid":27369,"ts":326458069636,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1700106},
-{"pid":27369,"tid":27369,"ts":326458069667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1700106,"id":"0xaf8a674efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458069667,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":306,"tts":1700106},
-{"pid":27369,"tid":27369,"ts":326458069697,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":1700137},
-{"pid":27369,"tid":27369,"ts":326458069728,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1700198,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458069758,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1700198,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458069758,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":1700198},
-{"pid":27369,"tid":27369,"ts":326458069789,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":152,"tdur":153,"tts":1700228},
-{"pid":27369,"tid":27369,"ts":326458069789,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1700228,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458069819,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1700259},
-{"pid":27369,"tid":27369,"ts":326458069819,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1700259},
-{"pid":27369,"tid":27369,"ts":326458069850,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1700289},
-{"pid":27369,"tid":27369,"ts":326458069850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1700320,"id":"0xaf8a63bffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458069911,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1700350,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458069911,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1700350,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458070063,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1700503},
-{"pid":27369,"tid":27369,"ts":326458083981,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1700900},
-{"pid":27369,"tid":27369,"ts":326458084408,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1701327},
-{"pid":27369,"tid":27369,"ts":326458084469,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1701388},
-{"pid":27369,"tid":27369,"ts":326458084560,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":61,"tts":1701510},
-{"pid":27369,"tid":27369,"ts":326458078000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1701510,"id":"0x300000011"},
-{"pid":27369,"tid":27369,"ts":326458084621,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901905},"tts":1701541,"id":"0x300000011"},
-{"pid":27369,"tid":27369,"ts":326458084621,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":1701541},
-{"pid":27369,"tid":27369,"ts":326458084621,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1701571,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458084652,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1701571},
-{"pid":27369,"tid":27369,"ts":326458084805,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1701754},
-{"pid":27369,"tid":27369,"ts":326458084866,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":1701785},
-{"pid":27369,"tid":27369,"ts":326458084896,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458083457},"dur":61,"tdur":62,"tts":1701815},
-{"pid":27369,"tid":27369,"ts":326458084896,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":1701815},
-{"pid":27369,"tid":27369,"ts":326458084927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1701846,"id":"0xaf8a63b8febbc614"},
-{"pid":27369,"tid":27369,"ts":326458085079,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1701999},
-{"pid":27369,"tid":27369,"ts":326458085446,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1702151},
-{"pid":27369,"tid":27369,"ts":326458085629,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1702304},
-{"pid":27369,"tid":27369,"ts":326458085629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1702304,"id":"0xaf8a674ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458085659,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":672,"tdur":336,"tts":1702334},
-{"pid":27369,"tid":27369,"ts":326458085659,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":641,"tdur":306,"tts":1702334},
-{"pid":27369,"tid":27369,"ts":326458085751,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1702395,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458085781,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1702395,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458085781,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":519,"tdur":245,"tts":1702395},
-{"pid":27369,"tid":27369,"ts":326458085812,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":488,"tdur":214,"tts":1702426},
-{"pid":27369,"tid":27369,"ts":326458085842,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1702456,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458085873,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":427,"tdur":153,"tts":1702487},
-{"pid":27369,"tid":27369,"ts":326458085873,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":397,"tdur":122,"tts":1702487},
-{"pid":27369,"tid":27369,"ts":326458085903,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":336,"tdur":61,"tts":1702517},
-{"pid":27369,"tid":27369,"ts":326458085903,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":306,"tdur":0,"tts":1702517},
-{"pid":27369,"tid":27369,"ts":326458086209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702548,"id":"0xaf8a63b9febbc614"},
-{"pid":27369,"tid":27369,"ts":326458086270,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1702609,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458086270,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1702609,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458086392,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1702731},
-{"pid":27369,"tid":27369,"ts":326458100675,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1703219},
-{"pid":27369,"tid":27369,"ts":326458101133,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1703677},
-{"pid":27369,"tid":27369,"ts":326458101194,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1703738},
-{"pid":27369,"tid":27369,"ts":326458101286,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":92,"tts":1703860},
-{"pid":27369,"tid":27369,"ts":326458095000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1703891,"id":"0x300000012"},
-{"pid":27369,"tid":27369,"ts":326458101347,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901906},"tts":1703891,"id":"0x300000012"},
-{"pid":27369,"tid":27369,"ts":326458101377,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":1703921},
-{"pid":27369,"tid":27369,"ts":326458101377,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1703921,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458101408,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1703952},
-{"pid":27369,"tid":27369,"ts":326458101804,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1704227},
-{"pid":27369,"tid":27369,"ts":326458101804,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":0,"tts":1704227},
-{"pid":27369,"tid":27369,"ts":326458101896,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":152,"tts":1704288},
-{"pid":27369,"tid":27369,"ts":326458101927,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458100133},"dur":91,"tdur":91,"tts":1704288},
-{"pid":27369,"tid":27369,"ts":326458101957,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1704318},
-{"pid":27369,"tid":27369,"ts":326458101988,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1704349,"id":"0xaf8a63bafebbc614"},
-{"pid":27369,"tid":27369,"ts":326458102079,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1704440},
-{"pid":27369,"tid":27369,"ts":326458102201,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1704562},
-{"pid":27369,"tid":27369,"ts":326458109740,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1704868},
-{"pid":27369,"tid":27369,"ts":326458109740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1704898,"id":"0xaf8a6748feb47934"},
-{"pid":27369,"tid":27369,"ts":326458109770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":1704898},
-{"pid":27369,"tid":27369,"ts":326458109770,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":336,"tdur":336,"tts":1704898},
-{"pid":27369,"tid":27369,"ts":326458109831,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1704959,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458109831,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1704959,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458109862,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":244,"tdur":244,"tts":1704990},
-{"pid":27369,"tid":27369,"ts":326458109862,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":244,"tdur":213,"tts":1704990},
-{"pid":27369,"tid":27369,"ts":326458109892,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1705020,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458109892,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":1705020},
-{"pid":27369,"tid":27369,"ts":326458109923,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":152,"tts":1705051},
-{"pid":27369,"tid":27369,"ts":326458109953,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":1705081},
-{"pid":27369,"tid":27369,"ts":326458109953,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1705081,"id":"0xaf8a63bbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458110045,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1705173,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458110075,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1705203,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458110167,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1705295},
-{"pid":27369,"tid":27369,"ts":326458113372,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1705478},
-{"pid":27369,"tid":27369,"ts":326458113402,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1705508,"id":"0xaf8a6749feb47934"},
-{"pid":27369,"tid":27369,"ts":326458113402,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":428,"tts":1705508},
-{"pid":27369,"tid":27369,"ts":326458113402,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":428,"tts":1705508},
-{"pid":27369,"tid":27369,"ts":326458113433,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":396,"tdur":397,"tts":1705539},
-{"pid":27369,"tid":27369,"ts":326458113616,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":61,"tts":1705753},
-{"pid":27369,"tid":27369,"ts":326458113646,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1705753},
-{"pid":27369,"tid":27369,"ts":326458113677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1705783,"id":"0xaf8a674afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458113768,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1705875},
-{"pid":27369,"tid":27369,"ts":326458113799,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1705905},
-{"pid":27369,"tid":27369,"ts":326458113891,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1705997},
-{"pid":27369,"tid":27369,"ts":326458113982,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1706088},
-{"pid":27369,"tid":27369,"ts":326458114013,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1706119,"id":"0xaf8a674afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458114013,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1495,"tdur":1495,"tts":1706119},
-{"pid":27369,"tid":27369,"ts":326458114043,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1706149},
-{"pid":27369,"tid":27369,"ts":326458114043,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1435,"tdur":1435,"tts":1706149},
-{"pid":27369,"tid":27369,"ts":326458114074,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":46},"dur":61,"tdur":61,"tts":1706180},
-{"pid":27369,"tid":27369,"ts":326458114074,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1706180},
-{"pid":27369,"tid":27369,"ts":326458114135,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":1706241},
-{"pid":27369,"tid":27369,"ts":326458114135,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1706241,"id":"0x300000010"},
-{"pid":27369,"tid":27369,"ts":326458114165,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1706271},
-{"pid":27369,"tid":27407,"ts":326458086544,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1374546},
-{"pid":27369,"tid":27407,"ts":326458086575,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1374576,"id":"0xba440002"},
-{"pid":27369,"tid":27407,"ts":326458102049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1374668,"id":"0xaf8a63bafebbc614"},
-{"pid":27369,"tid":27407,"ts":326458102079,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1374698},
-{"pid":27369,"tid":27407,"ts":326458102079,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1374698,"id":"0xba440102"},
-{"pid":27369,"tid":27407,"ts":326458109465,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1374820},
-{"pid":27369,"tid":27407,"ts":326458109496,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1374851},
-{"pid":27369,"tid":27407,"ts":326458109496,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1374851,"id":"0xccc36e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458109526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1374881,"id":"0xaf8a6748feb47934"},
-{"pid":27369,"tid":27407,"ts":326458110075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1375095,"id":"0xaf8a63bbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458110075,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1375095},
-{"pid":27369,"tid":27407,"ts":326458110075,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1375095,"id":"0xba440202"},
-{"pid":27369,"tid":27407,"ts":326458113066,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1375217},
-{"pid":27369,"tid":27407,"ts":326458113128,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1375278},
-{"pid":27369,"tid":27407,"ts":326458113128,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1375278,"id":"0xccc37102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458113158,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1375309,"id":"0xaf8a6749feb47934"},
-{"pid":27369,"tid":27407,"ts":326458114715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1375522,"id":"0xaf8a63b4febbc614"},
-{"pid":27369,"tid":27407,"ts":326458114745,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1375553},
-{"pid":27369,"tid":27407,"ts":326458114745,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1375553,"id":"0xba440302"},
-{"pid":27369,"tid":27407,"ts":326458115447,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1375675,"id":"0xaf8a63b5febbc614"},
-{"pid":27369,"tid":27407,"ts":326458115447,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1375675},
-{"pid":27369,"tid":27407,"ts":326458115478,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1375705,"id":"0xba440402"},
-{"pid":27369,"tid":27407,"ts":326458122650,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1375797},
-{"pid":27369,"tid":27407,"ts":326458122680,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1375827},
-{"pid":27369,"tid":27407,"ts":326458122680,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1375827,"id":"0xc4c0d902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458122711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1375858,"id":"0xaf8a674bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458122802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1375949,"id":"0xaf8a63b6febbc614"},
-{"pid":27369,"tid":27407,"ts":326458122802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1375949},
-{"pid":27369,"tid":27407,"ts":326458122833,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1375980,"id":"0xba440502"},
-{"pid":27369,"tid":27407,"ts":326458129364,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1376072},
-{"pid":27369,"tid":27407,"ts":326458129395,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1376102},
-{"pid":27369,"tid":27407,"ts":326458129395,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1376102,"id":"0xccc37202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458129425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1376133,"id":"0xaf8a6744feb47934"},
-{"pid":27369,"tid":27407,"ts":326458130066,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1376407,"id":"0xaf8a63b7febbc614"},
-{"pid":27369,"tid":27407,"ts":326458130066,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1376407},
-{"pid":27369,"tid":27407,"ts":326458130097,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1376438,"id":"0xba440602"},
-{"pid":27369,"tid":27407,"ts":326458134400,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1376529},
-{"pid":27369,"tid":27407,"ts":326458134461,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":184,"tts":1376590},
-{"pid":27369,"tid":27407,"ts":326458134461,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1376590,"id":"0xccc37602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458134522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1376651,"id":"0xaf8a6745feb47934"},
-{"pid":27369,"tid":27407,"ts":326458137819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1376835,"id":"0xaf8a63b0febbc614"},
-{"pid":27369,"tid":27407,"ts":326458137849,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1376865},
-{"pid":27369,"tid":27407,"ts":326458137849,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1376865,"id":"0xba440702"},
-{"pid":27369,"tid":27407,"ts":326458148104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377018,"id":"0xaf8a63b1febbc614"},
-{"pid":27369,"tid":27407,"ts":326458148104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1377018},
-{"pid":27369,"tid":27407,"ts":326458148134,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1377048,"id":"0xba440802"},
-{"pid":27369,"tid":27407,"ts":326458148562,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377140,"id":"0xaf8a63b2febbc614"},
-{"pid":27369,"tid":27407,"ts":326458148562,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1377140},
-{"pid":27369,"tid":27407,"ts":326458148562,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1377140,"id":"0xba440902"},
-{"pid":27369,"tid":27407,"ts":326458151980,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377292,"id":"0xaf8a63b3febbc614"},
-{"pid":27369,"tid":27407,"ts":326458151980,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1377292},
-{"pid":27369,"tid":27407,"ts":326458152010,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1377323,"id":"0xba440a02"},
-{"pid":27369,"tid":27407,"ts":326458154910,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":153,"tts":1377414},
-{"pid":27369,"tid":27407,"ts":326458154940,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":123,"tdur":122,"tts":1377445},
-{"pid":27369,"tid":27407,"ts":326458154940,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1377475,"id":"0xc4c0dc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458154971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1377475,"id":"0xaf8a6740feb47934"},
-{"pid":27369,"tid":27407,"ts":326458161472,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":213,"tts":1377659},
-{"pid":27369,"tid":27407,"ts":326458161502,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1377689},
-{"pid":27369,"tid":27407,"ts":326458161533,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1377720,"id":"0xccc37a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458161563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1377750,"id":"0xaf8a6741feb47934"},
-{"pid":27369,"tid":27407,"ts":326458163272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1377964,"id":"0xaf8a6c4cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458163272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1377964},
-{"pid":27369,"tid":27407,"ts":326458163303,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1377994,"id":"0xba440b02"},
-{"pid":27369,"tid":27407,"ts":326458163974,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378116,"id":"0xaf8a6c4dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458114165,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":1706271},
-{"pid":27369,"tid":27369,"ts":326458114226,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":1706332},
-{"pid":27369,"tid":27369,"ts":326458114440,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1706546},
-{"pid":27369,"tid":27369,"ts":326458114470,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":1706577},
-{"pid":27369,"tid":27369,"ts":326458114501,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":92,"tts":1706607},
-{"pid":27369,"tid":27369,"ts":326458114501,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":46},"dur":30,"tdur":31,"tts":1706607},
-{"pid":27369,"tid":27369,"ts":326458114531,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":46},"dur":31,"tdur":30,"tts":1706638},
-{"pid":27369,"tid":27369,"ts":326458114562,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":46},"tts":1706668},
-{"pid":27369,"tid":27369,"ts":326458114562,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1706668},
-{"pid":27369,"tid":27369,"ts":326458114592,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1706699},
-{"pid":27369,"tid":27369,"ts":326458114592,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1706699},
-{"pid":27369,"tid":27369,"ts":326458114623,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1706729},
-{"pid":27369,"tid":27369,"ts":326458114654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1706760,"id":"0xaf8a63b4febbc614"},
-{"pid":27369,"tid":27369,"ts":326458114715,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":1706821},
-{"pid":27369,"tid":27369,"ts":326458114745,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":46},"dur":214,"tdur":214,"tts":1706851},
-{"pid":27369,"tid":27369,"ts":326458114745,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1706851},
-{"pid":27369,"tid":27369,"ts":326458114745,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1706851},
-{"pid":27369,"tid":27369,"ts":326458114776,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1706882},
-{"pid":27369,"tid":27369,"ts":326458114776,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1706882,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458114806,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1706912},
-{"pid":27369,"tid":27369,"ts":326458114928,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1707034},
-{"pid":27369,"tid":27369,"ts":326458114959,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1707065},
-{"pid":27369,"tid":27369,"ts":326458114959,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":1707065},
-{"pid":27369,"tid":27369,"ts":326458114989,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":245,"tts":1707095},
-{"pid":27369,"tid":27369,"ts":326458114989,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1707095},
-{"pid":27369,"tid":27369,"ts":326458115050,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":1707157},
-{"pid":27369,"tid":27369,"ts":326458115264,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1707370,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458115294,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1707401,"id":"0x300000010"},
-{"pid":27369,"tid":27369,"ts":326458115325,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1707431},
-{"pid":27369,"tid":27369,"ts":326458115325,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15082},"dur":92,"tdur":92,"tts":1707431},
-{"pid":27369,"tid":27369,"ts":326458115356,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1707462},
-{"pid":27369,"tid":27369,"ts":326458115386,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1707492,"id":"0xaf8a63b5febbc614"},
-{"pid":27369,"tid":27369,"ts":326458115447,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":1707553},
-{"pid":27369,"tid":27369,"ts":326458115447,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1707553},
-{"pid":27369,"tid":27369,"ts":326458115569,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1707675},
-{"pid":27369,"tid":27369,"ts":326458120239,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1708042},
-{"pid":27369,"tid":27369,"ts":326458120666,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1708469},
-{"pid":27369,"tid":27369,"ts":326458120758,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":62,"tts":1708560},
-{"pid":27369,"tid":27369,"ts":326458120849,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1708652},
-{"pid":27369,"tid":27369,"ts":326458111000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1708683,"id":"0x300000013"},
-{"pid":27369,"tid":27369,"ts":326458120880,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901907},"tts":1708683,"id":"0x300000013"},
-{"pid":27369,"tid":27369,"ts":326458120910,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":0,"tts":1708713},
-{"pid":27369,"tid":27369,"ts":326458120910,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1708713,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458120941,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1708744},
-{"pid":27369,"tid":27369,"ts":326458121643,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1709049},
-{"pid":27369,"tid":27369,"ts":326458121643,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":946,"tdur":0,"tts":1709049},
-{"pid":27369,"tid":27369,"ts":326458122650,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":91,"tts":1709110},
-{"pid":27369,"tid":27369,"ts":326458122650,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458116809},"dur":91,"tdur":61,"tts":1709110},
-{"pid":27369,"tid":27369,"ts":326458122680,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":1709140},
-{"pid":27369,"tid":27369,"ts":326458122680,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1709140,"id":"0xaf8a63b6febbc614"},
-{"pid":27369,"tid":27369,"ts":326458122772,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1709232},
-{"pid":27369,"tid":27369,"ts":326458122864,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1709323},
-{"pid":27369,"tid":27369,"ts":326458122986,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1709446},
-{"pid":27369,"tid":27369,"ts":326458122986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1709476,"id":"0xaf8a674bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458123016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1709476},
-{"pid":27369,"tid":27369,"ts":326458123047,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1709507},
-{"pid":27369,"tid":27369,"ts":326458123047,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1709507},
-{"pid":27369,"tid":27369,"ts":326458123138,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1709598},
-{"pid":27369,"tid":27369,"ts":326458129670,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1709873},
-{"pid":27369,"tid":27369,"ts":326458129700,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1709903,"id":"0xaf8a6744feb47934"},
-{"pid":27369,"tid":27369,"ts":326458129700,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":672,"tdur":306,"tts":1709903},
-{"pid":27369,"tid":27369,"ts":326458129731,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":641,"tdur":275,"tts":1709934},
-{"pid":27369,"tid":27369,"ts":326458129761,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1709964,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458129792,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1709995,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458129792,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":580,"tdur":214,"tts":1709995},
-{"pid":27369,"tid":27369,"ts":326458129822,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":550,"tdur":153,"tts":1710025},
-{"pid":27369,"tid":27369,"ts":326458129853,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1710056,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458129853,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":488,"tdur":122,"tts":1710056},
-{"pid":27369,"tid":27369,"ts":326458129883,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":458,"tdur":92,"tts":1710086},
-{"pid":27369,"tid":27369,"ts":326458129914,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":396,"tdur":31,"tts":1710117},
-{"pid":27369,"tid":27369,"ts":326458129944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1710148,"id":"0xaf8a63b7febbc614"},
-{"pid":27369,"tid":27369,"ts":326458130341,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1710178,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458130341,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1710178,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458130433,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1710270},
-{"pid":27369,"tid":27369,"ts":326458134797,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1710453},
-{"pid":27369,"tid":27369,"ts":326458134828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1710483,"id":"0xaf8a6745feb47934"},
-{"pid":27369,"tid":27369,"ts":326458134828,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":549,"tdur":458,"tts":1710483},
-{"pid":27369,"tid":27369,"ts":326458134828,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":518,"tdur":428,"tts":1710483},
-{"pid":27369,"tid":27369,"ts":326458134889,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":457,"tdur":367,"tts":1710544},
-{"pid":27369,"tid":27369,"ts":326458135163,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":1710727},
-{"pid":27369,"tid":27369,"ts":326458135163,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1710727},
-{"pid":27369,"tid":27369,"ts":326458135194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1710758,"id":"0xaf8a6746feb47934"},
-{"pid":27369,"tid":27369,"ts":326458135285,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1710849},
-{"pid":27369,"tid":27369,"ts":326458135316,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1710880},
-{"pid":27369,"tid":27369,"ts":326458135438,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1711002},
-{"pid":27369,"tid":27369,"ts":326458135652,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1711216},
-{"pid":27369,"tid":27369,"ts":326458136109,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1711674},
-{"pid":27369,"tid":27369,"ts":326458136170,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":61,"tts":1711735},
-{"pid":27369,"tid":27369,"ts":326458136262,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1711826},
-{"pid":27369,"tid":27369,"ts":326458128000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1711857,"id":"0x300000014"},
-{"pid":27369,"tid":27369,"ts":326458136323,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901908},"tts":1711887,"id":"0x300000014"},
-{"pid":27369,"tid":27369,"ts":326458136323,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1711887},
-{"pid":27369,"tid":27369,"ts":326458136323,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1711887,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458136384,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1711948},
-{"pid":27369,"tid":27369,"ts":326458136964,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1712131},
-{"pid":27369,"tid":27369,"ts":326458136994,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":1526,"tdur":275,"tts":1712162},
-{"pid":27369,"tid":27369,"ts":326458136994,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458133486},"dur":153,"tdur":152,"tts":1712162},
-{"pid":27369,"tid":27369,"ts":326458137025,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":122,"tts":1712192},
-{"pid":27369,"tid":27369,"ts":326458137055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1712223,"id":"0xaf8a63b0febbc614"},
-{"pid":27369,"tid":27369,"ts":326458137055,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":1712223},
-{"pid":27369,"tid":27369,"ts":326458138520,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":2,"delay":7.466},"dur":92,"tdur":91,"tts":1712437},
-{"pid":27369,"tid":27369,"ts":326458138551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1712467,"id":"0xaf8a6747feb47934"},
-{"pid":27369,"tid":27369,"ts":326458138612,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1712528},
-{"pid":27369,"tid":27369,"ts":326458138704,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1712650},
-{"pid":27369,"tid":27369,"ts":326458138856,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1712772},
-{"pid":27369,"tid":27369,"ts":326458138887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1712803,"id":"0xaf8a6746feb47934"},
-{"pid":27369,"tid":27369,"ts":326458138887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":0,"tdur":0,"tts":1712803},
-{"pid":27369,"tid":27369,"ts":326458138948,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1712864},
-{"pid":27369,"tid":27369,"ts":326458139039,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1712955},
-{"pid":27369,"tid":27369,"ts":326458139283,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1713200},
-{"pid":27369,"tid":27369,"ts":326458146578,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1713474},
-{"pid":27369,"tid":27369,"ts":326458146639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458146},"tts":1713505,"id":"0xaf8a6747feb47934"},
-{"pid":27369,"tid":27369,"ts":326458146639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1984,"tdur":1648,"tts":1713505},
-{"pid":27369,"tid":27369,"ts":326458146669,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1713535},
-{"pid":27369,"tid":27369,"ts":326458146669,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1923,"tdur":1556,"tts":1713566},
-{"pid":27369,"tid":27369,"ts":326458146700,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":47},"dur":122,"tdur":92,"tts":1713596},
-{"pid":27369,"tid":27369,"ts":326458146730,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":92,"tdur":61,"tts":1713596},
-{"pid":27369,"tid":27369,"ts":326458146822,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":366,"tdur":366,"tts":1713688},
-{"pid":27369,"tid":27369,"ts":326458146822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1713688,"id":"0x300000011"},
-{"pid":27369,"tid":27369,"ts":326458146853,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":1713718},
-{"pid":27369,"tid":27369,"ts":326458146883,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1713749},
-{"pid":27369,"tid":27369,"ts":326458146914,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":245,"tts":1713779},
-{"pid":27369,"tid":27369,"ts":326458147188,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1714054},
-{"pid":27369,"tid":27369,"ts":326458147219,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":1714085},
-{"pid":27369,"tid":27369,"ts":326458147249,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":367,"tdur":153,"tts":1714115},
-{"pid":27369,"tid":27369,"ts":326458147249,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":47},"dur":275,"tdur":61,"tts":1714115},
-{"pid":27369,"tid":27369,"ts":326458147524,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":47},"dur":31,"tdur":31,"tts":1714176},
-{"pid":27369,"tid":27369,"ts":326458147555,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":47},"tts":1714207},
-{"pid":27369,"tid":27369,"ts":326458147555,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1714207},
-{"pid":27369,"tid":27369,"ts":326458147585,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1714237},
-{"pid":27369,"tid":27369,"ts":326458147585,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":1714237},
-{"pid":27369,"tid":27369,"ts":326458147616,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":1714268},
-{"pid":27369,"tid":27369,"ts":326458147646,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1714298,"id":"0xaf8a63b1febbc614"},
-{"pid":27369,"tid":27369,"ts":326458147738,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":854,"tdur":732,"tts":1714390},
-{"pid":27369,"tid":27369,"ts":326458147768,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":47},"dur":275,"tdur":153,"tts":1714420},
-{"pid":27369,"tid":27369,"ts":326458147768,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":153,"tdur":31,"tts":1714420},
-{"pid":27369,"tid":27369,"ts":326458147768,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1714420},
-{"pid":27369,"tid":27369,"ts":326458147890,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1714420},
-{"pid":27369,"tid":27369,"ts":326458147890,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":1714451},
-{"pid":27369,"tid":27369,"ts":326458147921,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1714451,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458147951,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1714481},
-{"pid":27369,"tid":27369,"ts":326458148012,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1714542},
-{"pid":27369,"tid":27369,"ts":326458148043,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1714573},
-{"pid":27369,"tid":27369,"ts":326458148043,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":1714573},
-{"pid":27369,"tid":27369,"ts":326458148073,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":274,"tts":1714604},
-{"pid":27369,"tid":27369,"ts":326458148073,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":1714604},
-{"pid":27369,"tid":27369,"ts":326458148134,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":184,"tdur":183,"tts":1714665},
-{"pid":27369,"tid":27369,"ts":326458148379,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1714909,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458148409,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1714939,"id":"0x300000011"},
-{"pid":27369,"tid":27369,"ts":326458148440,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":122,"tts":1714970},
-{"pid":27369,"tid":27369,"ts":326458148440,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":1372},"dur":91,"tdur":91,"tts":1714970},
-{"pid":27369,"tid":27369,"ts":326458148470,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1715000},
-{"pid":27369,"tid":27369,"ts":326458148501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1715031,"id":"0xaf8a63b2febbc614"},
-{"pid":27369,"tid":27369,"ts":326458148531,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1715061},
-{"pid":27369,"tid":27369,"ts":326458148562,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1715092},
-{"pid":27369,"tid":27369,"ts":326458148745,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1715275},
-{"pid":27369,"tid":27369,"ts":326458150881,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1715519},
-{"pid":27369,"tid":27369,"ts":326458151309,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1715946},
-{"pid":27369,"tid":27369,"ts":326458151370,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":30,"tts":1716038},
-{"pid":27369,"tid":27369,"ts":326458151461,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1716099},
-{"pid":27369,"tid":27369,"ts":326458145000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1716130,"id":"0x300000015"},
-{"pid":27369,"tid":27369,"ts":326458151522,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901909},"tts":1716160,"id":"0x300000015"},
-{"pid":27369,"tid":27369,"ts":326458151522,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1716160},
-{"pid":27369,"tid":27369,"ts":326458151522,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1716160,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458151583,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1716221},
-{"pid":27369,"tid":27369,"ts":326458151797,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1716465},
-{"pid":27369,"tid":27369,"ts":326458151858,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1716496},
-{"pid":27369,"tid":27369,"ts":326458151858,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458150162},"dur":91,"tdur":91,"tts":1716496},
-{"pid":27369,"tid":27369,"ts":326458151888,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1716526},
-{"pid":27369,"tid":27369,"ts":326458151888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1716557,"id":"0xaf8a63b3febbc614"},
-{"pid":27369,"tid":27369,"ts":326458151980,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1716648},
-{"pid":27369,"tid":27369,"ts":326458152072,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1716740},
-{"pid":27369,"tid":27369,"ts":326458155154,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1716954},
-{"pid":27369,"tid":27369,"ts":326458155185,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1716954,"id":"0xaf8a6740feb47934"},
-{"pid":27369,"tid":27369,"ts":326458155185,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1716954},
-{"pid":27369,"tid":27369,"ts":326458155246,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1717015},
-{"pid":27369,"tid":27369,"ts":326458155246,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1717015},
-{"pid":27369,"tid":27369,"ts":326458155337,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1717106},
-{"pid":27369,"tid":27369,"ts":326458161930,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1717411},
-{"pid":27369,"tid":27369,"ts":326458161960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1717442,"id":"0xaf8a6741feb47934"},
-{"pid":27369,"tid":27369,"ts":326458161960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1717442},
-{"pid":27369,"tid":27369,"ts":326458161960,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":1717442},
-{"pid":27369,"tid":27369,"ts":326458162021,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1717503},
-{"pid":27369,"tid":27369,"ts":326458162204,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1717686},
-{"pid":27369,"tid":27369,"ts":326458162235,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1717717},
-{"pid":27369,"tid":27369,"ts":326458162235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1717717,"id":"0xaf8a6742feb47934"},
-{"pid":27369,"tid":27369,"ts":326458162326,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1717808},
-{"pid":27369,"tid":27369,"ts":326458162357,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1717839},
-{"pid":27369,"tid":27369,"ts":326458162479,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1717961},
-{"pid":27369,"tid":27369,"ts":326458162571,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1718052},
-{"pid":27369,"tid":27369,"ts":326458162571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1718052,"id":"0xaf8a6742feb47934"},
-{"pid":27369,"tid":27369,"ts":326458162601,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1435,"tdur":1434,"tts":1718083},
-{"pid":27369,"tid":27369,"ts":326458162601,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":1718083},
-{"pid":27369,"tid":27369,"ts":326458162632,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1374,"tts":1718113},
-{"pid":27369,"tid":27369,"ts":326458162662,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":48},"dur":61,"tdur":61,"tts":1718144},
-{"pid":27369,"tid":27369,"ts":326458162662,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":1718144},
-{"pid":27369,"tid":27369,"ts":326458162723,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1718205},
-{"pid":27369,"tid":27369,"ts":326458162723,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1718205,"id":"0x300000012"},
-{"pid":27369,"tid":27369,"ts":326458162754,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1718235},
-{"pid":27369,"tid":27369,"ts":326458162754,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1718235},
-{"pid":27369,"tid":27369,"ts":326458162784,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":1718266},
-{"pid":27369,"tid":27369,"ts":326458162998,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1718480},
-{"pid":27369,"tid":27369,"ts":326458163028,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1718510},
-{"pid":27369,"tid":27369,"ts":326458163028,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1718510},
-{"pid":27369,"tid":27369,"ts":326458163059,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":48},"dur":30,"tdur":30,"tts":1718541},
-{"pid":27369,"tid":27369,"ts":326458163089,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":48},"dur":31,"tdur":31,"tts":1718571},
-{"pid":27369,"tid":27369,"ts":326458163120,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":48},"tts":1718602},
-{"pid":27369,"tid":27369,"ts":326458163120,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1718602},
-{"pid":27369,"tid":27369,"ts":326458163120,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1718602},
-{"pid":27369,"tid":27369,"ts":326458163150,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1718632},
-{"pid":27369,"tid":27369,"ts":326458163181,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1718663},
-{"pid":27369,"tid":27369,"ts":326458163181,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1718663,"id":"0xaf8a6c4cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458163272,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":733,"tdur":733,"tts":1718754},
-{"pid":27369,"tid":27369,"ts":326458163272,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":48},"dur":184,"tdur":152,"tts":1718785},
-{"pid":27369,"tid":27369,"ts":326458163303,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":1718785},
-{"pid":27369,"tid":27369,"ts":326458163303,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1718785},
-{"pid":27369,"tid":27369,"ts":326458163303,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1718785},
-{"pid":27369,"tid":27369,"ts":326458163334,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1718815,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458163364,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1718846},
-{"pid":27369,"tid":27369,"ts":326458163425,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1718907},
-{"pid":27369,"tid":27369,"ts":326458163456,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":336,"tts":1718937},
-{"pid":27369,"tid":27369,"ts":326458163456,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":1718937},
-{"pid":27369,"tid":27369,"ts":326458163486,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1718968},
-{"pid":27369,"tid":27369,"ts":326458163486,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":1718968},
-{"pid":27369,"tid":27369,"ts":326458163547,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1719029},
-{"pid":27369,"tid":27369,"ts":326458163761,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1719243,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458163822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1719304,"id":"0x300000012"},
-{"pid":27369,"tid":27369,"ts":326458163822,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":1719304},
-{"pid":27369,"tid":27369,"ts":326458163852,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4034},"dur":92,"tdur":92,"tts":1719334},
-{"pid":27369,"tid":27369,"ts":326458163883,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1719365},
-{"pid":27369,"tid":27369,"ts":326458163883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1719365,"id":"0xaf8a6c4dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458163944,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1719426},{"pid":27369,"tid":27369,"ts":326458163974,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1719456},
-{"pid":27369,"tid":27369,"ts":326458164097,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1719578},
-{"pid":27369,"tid":27369,"ts":326458166813,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1719700},
-{"pid":27369,"tid":27369,"ts":326458166843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1719731,"id":"0xaf8a6743feb47934"},
-{"pid":27369,"tid":27369,"ts":326458170079,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":306,"tts":1719822},
-{"pid":27369,"tid":27369,"ts":326458170109,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":1719853},
-{"pid":27369,"tid":27369,"ts":326458170170,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1719914,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458170170,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1719914,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458170170,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":152,"tts":1719945},
-{"pid":27369,"tid":27369,"ts":326458170201,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":152,"tdur":152,"tts":1719945},
-{"pid":27369,"tid":27369,"ts":326458170231,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1719975,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458170231,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1719975},
-{"pid":27369,"tid":27369,"ts":326458170262,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":91,"tdur":91,"tts":1720006},
-{"pid":27369,"tid":27369,"ts":326458170292,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":1720036},
-{"pid":27369,"tid":27369,"ts":326458170292,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1720036,"id":"0xaf8a6c4efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458170323,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1720067,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458170353,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1720097,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458170475,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1720219},
-{"pid":27369,"tid":27369,"ts":326458170658,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1720402},
-{"pid":27369,"tid":27369,"ts":326458171238,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1720921},
-{"pid":27369,"tid":27369,"ts":326458171299,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1720982},
-{"pid":27369,"tid":27369,"ts":326458171421,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":1721104},
-{"pid":27369,"tid":27369,"ts":326458161000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1721104,"id":"0x300000016"},
-{"pid":27369,"tid":27369,"ts":326458171452,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901910},"tts":1721135,"id":"0x300000016"},
-{"pid":27369,"tid":27407,"ts":326458163974,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1378116},
-{"pid":27369,"tid":27407,"ts":326458164005,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1378147,"id":"0xba440c02"},
-{"pid":27369,"tid":27407,"ts":326458164341,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":123,"tts":1378238},
-{"pid":27369,"tid":27407,"ts":326458164371,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1378269},
-{"pid":27369,"tid":27407,"ts":326458164371,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1378269,"id":"0xccc37b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458164371,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378269,"id":"0xaf8a6743feb47934"},
-{"pid":27369,"tid":27407,"ts":326458170201,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1378422},
-{"pid":27369,"tid":27407,"ts":326458170231,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1378452},
-{"pid":27369,"tid":27407,"ts":326458170231,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1378452,"id":"0xc4c0df02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458170262,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378483,"id":"0xaf8a675cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458170353,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378574,"id":"0xaf8a6c4efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458170353,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1378574},
-{"pid":27369,"tid":27407,"ts":326458170384,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1378605,"id":"0xba440d02"},
-{"pid":27369,"tid":27407,"ts":326458171940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1378757,"id":"0xaf8a6c4ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458171940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1378757},
-{"pid":27369,"tid":27407,"ts":326458171940,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1378757,"id":"0xba440e02"},
-{"pid":27369,"tid":27407,"ts":326458173375,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1378879},
-{"pid":27369,"tid":27407,"ts":326458173405,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1378910},
-{"pid":27369,"tid":27407,"ts":326458173436,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1378940,"id":"0xccc37d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458173436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1378940,"id":"0xaf8a675dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458173894,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1379124,"id":"0xaf8a6c48febbc614"},
-{"pid":27369,"tid":27407,"ts":326458173894,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1379124},
-{"pid":27369,"tid":27407,"ts":326458173894,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1379124,"id":"0xba440f02"},
-{"pid":27369,"tid":27407,"ts":326458186224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1379276,"id":"0xaf8a6c49febbc614"},
-{"pid":27369,"tid":27407,"ts":326458186254,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1379307},
-{"pid":27369,"tid":27407,"ts":326458186254,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1379307,"id":"0xba441002"},
-{"pid":27369,"tid":27407,"ts":326458188849,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1379429},
-{"pid":27369,"tid":27407,"ts":326458188879,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":1379490},
-{"pid":27369,"tid":27407,"ts":326458188910,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1379490,"id":"0xccc37f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458188940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1379520,"id":"0xaf8a675efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458191870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1379673,"id":"0xaf8a6c4afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458191901,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1379703},
-{"pid":27369,"tid":27407,"ts":326458191901,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1379703,"id":"0xba441102"},
-{"pid":27369,"tid":27407,"ts":326458193518,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1379826},
-{"pid":27369,"tid":27407,"ts":326458193579,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1379887},
-{"pid":27369,"tid":27407,"ts":326458193579,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1379917,"id":"0xccc38102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458193640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1379948,"id":"0xaf8a675ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458195197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1380100,"id":"0xaf8a6c4bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458195227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1380131},
-{"pid":27369,"tid":27407,"ts":326458195227,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1380131,"id":"0xba441202"},
-{"pid":27369,"tid":27407,"ts":326458195899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1380253,"id":"0xaf8a6c44febbc614"},
-{"pid":27369,"tid":27407,"ts":326458195929,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1380283},
-{"pid":27369,"tid":27407,"ts":326458195929,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1380283,"id":"0xba441302"},
-{"pid":27369,"tid":27407,"ts":326458202247,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1380436,"id":"0xaf8a6c45febbc614"},
-{"pid":27369,"tid":27407,"ts":326458202278,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1380466},
-{"pid":27369,"tid":27407,"ts":326458202278,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1380466,"id":"0xba441402"},
-{"pid":27369,"tid":27407,"ts":326458203529,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1380589},
-{"pid":27369,"tid":27407,"ts":326458203559,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1380619},
-{"pid":27369,"tid":27407,"ts":326458203590,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1380650,"id":"0xc4c0e202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458203590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1380650,"id":"0xaf8a6759feb47934"},
-{"pid":27369,"tid":27407,"ts":326458221566,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1380802},
-{"pid":27369,"tid":27407,"ts":326458221597,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1380833},
-{"pid":27369,"tid":27407,"ts":326458221597,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1380863,"id":"0xccc38402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458221627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1380863,"id":"0xaf8a675afeb47934"},
-{"pid":27369,"tid":27407,"ts":326458222451,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1381046,"id":"0xaf8a6c46febbc614"},
-{"pid":27369,"tid":27407,"ts":326458222451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1381046},
-{"pid":27369,"tid":27407,"ts":326458222482,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1381077,"id":"0xba441502"},
-{"pid":27369,"tid":27407,"ts":326458222513,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1381107},
-{"pid":27369,"tid":27407,"ts":326458222574,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":91,"tdur":92,"tts":1381168},
-{"pid":27369,"tid":27407,"ts":326458222574,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1381168,"id":"0xccc38502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458222604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1381199,"id":"0xaf8a675bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458223337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1381382,"id":"0xaf8a6c47febbc614"},
-{"pid":27369,"tid":27407,"ts":326458223337,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1381382},
-{"pid":27369,"tid":27407,"ts":326458223367,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1381413,"id":"0xba441602"},
-{"pid":27369,"tid":27369,"ts":326458171452,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":1721135},
-{"pid":27369,"tid":27369,"ts":326458171482,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1721165,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458171513,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1721196},
-{"pid":27369,"tid":27369,"ts":326458171788,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1721471},
-{"pid":27369,"tid":27369,"ts":326458171818,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1721501},
-{"pid":27369,"tid":27369,"ts":326458171818,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458166838},"dur":92,"tdur":92,"tts":1721501},
-{"pid":27369,"tid":27369,"ts":326458171849,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1721532},
-{"pid":27369,"tid":27369,"ts":326458171849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1721532,"id":"0xaf8a6c4ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458171940,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1721623},
-{"pid":27369,"tid":27369,"ts":326458172032,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1721715},
-{"pid":27369,"tid":27369,"ts":326458172123,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1721837},
-{"pid":27369,"tid":27369,"ts":326458172154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721837,"id":"0xaf8a675cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458172154,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1721837},
-{"pid":27369,"tid":27369,"ts":326458172184,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":1721898},
-{"pid":27369,"tid":27369,"ts":326458172215,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":1721898},
-{"pid":27369,"tid":27369,"ts":326458172307,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1721989},
-{"pid":27369,"tid":27369,"ts":326458173619,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1722142},
-{"pid":27369,"tid":27369,"ts":326458173649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1722173,"id":"0xaf8a675dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458173649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":274,"tts":1722173},
-{"pid":27369,"tid":27369,"ts":326458173649,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":274,"tts":1722173},
-{"pid":27369,"tid":27369,"ts":326458173680,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1722203,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458173710,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1722234,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458173710,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":184,"tdur":183,"tts":1722234},
-{"pid":27369,"tid":27369,"ts":326458173710,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":184,"tdur":183,"tts":1722234},
-{"pid":27369,"tid":27369,"ts":326458173741,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1722264,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458173772,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1722295},
-{"pid":27369,"tid":27369,"ts":326458173772,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1722295},
-{"pid":27369,"tid":27369,"ts":326458173802,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1722325},
-{"pid":27369,"tid":27369,"ts":326458173802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1722356,"id":"0xaf8a6c48febbc614"},
-{"pid":27369,"tid":27369,"ts":326458173863,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1722386,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458173863,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1722386,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458174168,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1722508},
-{"pid":27369,"tid":27369,"ts":326458180547,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1722783},
-{"pid":27369,"tid":27369,"ts":326458180578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458179},"tts":1722813,"id":"0xaf8a66b0feb47934"},
-{"pid":27369,"tid":27369,"ts":326458180578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ui/events/gesture_detection/gesture_detector.cc","src_func":"StartTimeout"},"dur":30,"tdur":31,"tts":1722813},
-{"pid":27369,"tid":27369,"ts":326458180700,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1722936},
-{"pid":27369,"tid":27369,"ts":326458184759,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1723241},
-{"pid":27369,"tid":27369,"ts":326458185369,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1723668},
-{"pid":27369,"tid":27369,"ts":326458185430,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":61,"tts":1723760},
-{"pid":27369,"tid":27369,"ts":326458185552,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":1723851},
-{"pid":27369,"tid":27369,"ts":326458178000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1723882,"id":"0x300000017"},
-{"pid":27369,"tid":27369,"ts":326458185583,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901911},"tts":1723882,"id":"0x300000017"},
-{"pid":27369,"tid":27369,"ts":326458185613,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":1723912},
-{"pid":27369,"tid":27369,"ts":326458185613,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1723912,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458185644,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1723943},
-{"pid":27369,"tid":27369,"ts":326458186010,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1724126},
-{"pid":27369,"tid":27369,"ts":326458186071,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":519,"tdur":214,"tts":1724156},
-{"pid":27369,"tid":27369,"ts":326458186071,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458183515},"dur":275,"tdur":92,"tts":1724156},
-{"pid":27369,"tid":27369,"ts":326458186102,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":61,"tts":1724187},
-{"pid":27369,"tid":27369,"ts":326458186132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1724217,"id":"0xaf8a6c49febbc614"},
-{"pid":27369,"tid":27369,"ts":326458186590,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1724401},
-{"pid":27369,"tid":27369,"ts":326458186712,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1724492},
-{"pid":27369,"tid":27369,"ts":326458190558,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1724736},
-{"pid":27369,"tid":27369,"ts":326458190558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1724736,"id":"0xaf8a675efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458190588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":1724767},
-{"pid":27369,"tid":27369,"ts":326458190588,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":274,"tts":1724767},
-{"pid":27369,"tid":27369,"ts":326458190649,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1724828,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458190649,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1724828,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458190680,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":1724858},
-{"pid":27369,"tid":27369,"ts":326458190680,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1724858},
-{"pid":27369,"tid":27369,"ts":326458190710,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1724889,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458190710,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1724889},
-{"pid":27369,"tid":27369,"ts":326458190741,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1724919},
-{"pid":27369,"tid":27369,"ts":326458190741,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":1724919},
-{"pid":27369,"tid":27369,"ts":326458190771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1724950,"id":"0xaf8a6c4afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458190832,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1725011,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458190832,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1725011,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458190954,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1725133},
-{"pid":27369,"tid":27369,"ts":326458193884,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1725286},
-{"pid":27369,"tid":27369,"ts":326458193915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1725316,"id":"0xaf8a675ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458193915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1725316},
-{"pid":27369,"tid":27369,"ts":326458193915,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":1725316},
-{"pid":27369,"tid":27369,"ts":326458193945,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":366,"tts":1725377},
-{"pid":27369,"tid":27369,"ts":326458194159,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1725560},
-{"pid":27369,"tid":27369,"ts":326458194159,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":1725591},
-{"pid":27369,"tid":27369,"ts":326458194190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1725591,"id":"0xaf8a6758feb47934"},
-{"pid":27369,"tid":27369,"ts":326458194281,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1725682},
-{"pid":27369,"tid":27369,"ts":326458194312,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1725713},
-{"pid":27369,"tid":27369,"ts":326458194434,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1725835},
-{"pid":27369,"tid":27369,"ts":326458194525,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1725927},
-{"pid":27369,"tid":27369,"ts":326458194525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1725927,"id":"0xaf8a6758feb47934"},
-{"pid":27369,"tid":27369,"ts":326458194525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1435,"tdur":1404,"tts":1725957},
-{"pid":27369,"tid":27369,"ts":326458194556,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1725957},
-{"pid":27369,"tid":27369,"ts":326458194556,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1404,"tdur":1404,"tts":1725957},
-{"pid":27369,"tid":27369,"ts":326458194586,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":49},"dur":61,"tdur":61,"tts":1725988},
-{"pid":27369,"tid":27369,"ts":326458194617,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":1726018},
-{"pid":27369,"tid":27369,"ts":326458194647,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":1726049},
-{"pid":27369,"tid":27369,"ts":326458194678,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1726079,"id":"0x300000013"},
-{"pid":27369,"tid":27369,"ts":326458194678,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1726079,"id":"0x300000014"},
-{"pid":27369,"tid":27369,"ts":326458194678,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":1726110},
-{"pid":27369,"tid":27369,"ts":326458194708,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1726110},
-{"pid":27369,"tid":27369,"ts":326458194739,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":183,"tts":1726140},
-{"pid":27369,"tid":27369,"ts":326458194953,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1726354},
-{"pid":27369,"tid":27369,"ts":326458194983,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1726384},
-{"pid":27369,"tid":27369,"ts":326458194983,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1726384},
-{"pid":27369,"tid":27369,"ts":326458194983,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":49},"dur":61,"tdur":30,"tts":1726415},
-{"pid":27369,"tid":27369,"ts":326458195044,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":49},"dur":0,"tdur":0,"tts":1726445},
-{"pid":27369,"tid":27369,"ts":326458195044,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":49},"tts":1726476},
-{"pid":27369,"tid":27369,"ts":326458195075,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1726476},
-{"pid":27369,"tid":27369,"ts":326458195075,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1726476},
-{"pid":27369,"tid":27369,"ts":326458195075,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":1726476},
-{"pid":27369,"tid":27369,"ts":326458195105,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1726506},
-{"pid":27369,"tid":27369,"ts":326458195136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1726537,"id":"0xaf8a6c4bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458195197,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":701,"tts":1726629},
-{"pid":27369,"tid":27369,"ts":326458195227,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":49},"dur":153,"tdur":152,"tts":1726629},
-{"pid":27369,"tid":27369,"ts":326458195227,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1726629},
-{"pid":27369,"tid":27369,"ts":326458195258,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1726659},
-{"pid":27369,"tid":27369,"ts":326458195258,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1726659},
-{"pid":27369,"tid":27369,"ts":326458195288,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1726690,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458195288,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1726690},
-{"pid":27369,"tid":27369,"ts":326458195380,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1726781},
-{"pid":27369,"tid":27369,"ts":326458195380,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1726781},
-{"pid":27369,"tid":27369,"ts":326458195410,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1726812},
-{"pid":27369,"tid":27369,"ts":326458195410,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":274,"tts":1726812},
-{"pid":27369,"tid":27369,"ts":326458195441,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1726842},
-{"pid":27369,"tid":27369,"ts":326458195471,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":184,"tdur":183,"tts":1726873},
-{"pid":27369,"tid":27369,"ts":326458195685,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1727117,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458195746,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1727147,"id":"0x300000013"},
-{"pid":27369,"tid":27369,"ts":326458195777,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1727178,"id":"0x300000014"},
-{"pid":27369,"tid":27369,"ts":326458195777,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":1727178},
-{"pid":27369,"tid":27369,"ts":326458195807,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6696},"dur":92,"tdur":92,"tts":1727208},
-{"pid":27369,"tid":27369,"ts":326458195807,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":1727239},
-{"pid":27369,"tid":27369,"ts":326458195838,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1727239,"id":"0xaf8a6c44febbc614"},
-{"pid":27369,"tid":27369,"ts":326458195899,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1727300},
-{"pid":27369,"tid":27369,"ts":326458195899,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1727300},
-{"pid":27369,"tid":27369,"ts":326458196021,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1727453},
-{"pid":27369,"tid":27369,"ts":326458200813,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1727788},
-{"pid":27369,"tid":27369,"ts":326458201362,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1728338},
-{"pid":27369,"tid":27369,"ts":326458201423,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":61,"tts":1728429},
-{"pid":27369,"tid":27369,"ts":326458201545,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":1728521},
-{"pid":27369,"tid":27369,"ts":326458195000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1728521,"id":"0x300000018"},
-{"pid":27369,"tid":27369,"ts":326458201576,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901912},"tts":1728551,"id":"0x300000018"},
-{"pid":27369,"tid":27369,"ts":326458201576,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":1728551},
-{"pid":27369,"tid":27369,"ts":326458201606,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1728582,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458201606,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1728612},
-{"pid":27369,"tid":27369,"ts":326458201850,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1728826},
-{"pid":27369,"tid":27369,"ts":326458201850,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":31,"tts":1728826},
-{"pid":27369,"tid":27369,"ts":326458202033,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":367,"tdur":122,"tts":1728887},
-{"pid":27369,"tid":27369,"ts":326458202064,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458200191},"dur":305,"tdur":61,"tts":1728918},
-{"pid":27369,"tid":27369,"ts":326458202064,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":305,"tdur":31,"tts":1728948},
-{"pid":27369,"tid":27369,"ts":326458202094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1728948,"id":"0xaf8a6c45febbc614"},
-{"pid":27369,"tid":27369,"ts":326458202430,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1729040},
-{"pid":27369,"tid":27369,"ts":326458202522,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1729131},
-{"pid":27369,"tid":27369,"ts":326458204109,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1729345},
-{"pid":27369,"tid":27369,"ts":326458204109,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1729375,"id":"0xaf8a6759feb47934"},
-{"pid":27369,"tid":27369,"ts":326458204139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1729375},
-{"pid":27369,"tid":27369,"ts":326458204170,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1729406},
-{"pid":27369,"tid":27369,"ts":326458204200,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1729436},
-{"pid":27369,"tid":27369,"ts":326458204292,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1729528},
-{"pid":27369,"tid":27369,"ts":326458219857,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1729925},
-{"pid":27369,"tid":27369,"ts":326458220315,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1730383},
-{"pid":27369,"tid":27369,"ts":326458220376,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":1730444},
-{"pid":27369,"tid":27369,"ts":326458220498,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":1730566},
-{"pid":27369,"tid":27369,"ts":326458211000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1730596,"id":"0x300000019"},
-{"pid":27369,"tid":27369,"ts":326458220559,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901913},"tts":1730627,"id":"0x300000019"},
-{"pid":27369,"tid":27369,"ts":326458220559,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":1730627},
-{"pid":27369,"tid":27369,"ts":326458220590,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1730657,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458220620,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1730688},
-{"pid":27369,"tid":27369,"ts":326458222116,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1731054},
-{"pid":27369,"tid":27369,"ts":326458222177,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":580,"tdur":122,"tts":1731085},
-{"pid":27369,"tid":27369,"ts":326458222177,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458216867},"dur":549,"tdur":91,"tts":1731085},
-{"pid":27369,"tid":27369,"ts":326458222207,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":519,"tdur":61,"tts":1731115},
-{"pid":27369,"tid":27369,"ts":326458222238,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1731146,"id":"0xaf8a6c46febbc614"},
-{"pid":27369,"tid":27369,"ts":326458222757,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1731207},
-{"pid":27369,"tid":27369,"ts":326458222909,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1731359},
-{"pid":27369,"tid":27369,"ts":326458223001,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1731451},
-{"pid":27369,"tid":27369,"ts":326458223031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731481,"id":"0xaf8a675afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458223031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":275,"tts":1731481},
-{"pid":27369,"tid":27369,"ts":326458223062,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":244,"tts":1731512},
-{"pid":27369,"tid":27369,"ts":326458223123,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1731573,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458223123,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1731573,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458223123,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":244,"tdur":183,"tts":1731573},
-{"pid":27369,"tid":27369,"ts":326458223153,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":214,"tdur":153,"tts":1731603},
-{"pid":27369,"tid":27369,"ts":326458223153,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1731634,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458223184,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":122,"tts":1731634},
-{"pid":27369,"tid":27369,"ts":326458223184,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":91,"tts":1731634},
-{"pid":27369,"tid":27369,"ts":326458223215,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":31,"tts":1731664},
-{"pid":27369,"tid":27369,"ts":326458223245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1731695,"id":"0xaf8a6c47febbc614"},
-{"pid":27369,"tid":27369,"ts":326458223337,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1731725,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458223337,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1731725,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458223428,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1731817},
-{"pid":27369,"tid":27369,"ts":326458223520,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1731909},
-{"pid":27369,"tid":27369,"ts":326458223550,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731939,"id":"0xaf8a675bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458223550,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":1731939},
-{"pid":27369,"tid":27369,"ts":326458223550,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":397,"tts":1731939},
-{"pid":27369,"tid":27369,"ts":326458223581,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1731970},
-{"pid":27369,"tid":27369,"ts":326458223764,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":1732153},
-{"pid":27369,"tid":27369,"ts":326458223764,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1732153},
-{"pid":27369,"tid":27369,"ts":326458223794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1732183,"id":"0xaf8a6754feb47934"},
-{"pid":27369,"tid":27369,"ts":326458223855,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1732275},
-{"pid":27369,"tid":27369,"ts":326458223916,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1732305},
-{"pid":27369,"tid":27369,"ts":326458224008,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1732397},
-{"pid":27369,"tid":27369,"ts":326458224069,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1732488},
-{"pid":27369,"tid":27369,"ts":326458224100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1732488,"id":"0xaf8a6754feb47934"},
-{"pid":27369,"tid":27369,"ts":326458224130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1374,"tdur":1373,"tts":1732519},
-{"pid":27369,"tid":27369,"ts":326458224130,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1732519},
-{"pid":27369,"tid":27369,"ts":326458224130,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1343,"tdur":1313,"tts":1732549},
-{"pid":27369,"tid":27369,"ts":326458224161,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":50},"dur":61,"tdur":62,"tts":1732549},
-{"pid":27369,"tid":27369,"ts":326458224191,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1732580},
-{"pid":27369,"tid":27369,"ts":326458224222,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1732611},
-{"pid":27369,"tid":27369,"ts":326458224252,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1732641,"id":"0x300000016"},
-{"pid":27369,"tid":27369,"ts":326458224252,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1732641},
-{"pid":27369,"tid":27369,"ts":326458224252,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":1732672},
-{"pid":27369,"tid":27369,"ts":326458224283,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":213,"tts":1732672},
-{"pid":27369,"tid":27369,"ts":326458224496,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1732885},
-{"pid":27369,"tid":27369,"ts":326458224527,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1732916},
-{"pid":27369,"tid":27369,"ts":326458224527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1732916},
-{"pid":27369,"tid":27369,"ts":326458224557,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":50},"dur":31,"tdur":31,"tts":1732946},
-{"pid":27369,"tid":27369,"ts":326458224588,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":50},"dur":30,"tdur":30,"tts":1732977},
-{"pid":27369,"tid":27369,"ts":326458224618,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":50},"tts":1733007},
-{"pid":27369,"tid":27369,"ts":326458224618,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1733007},
-{"pid":27369,"tid":27369,"ts":326458224618,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1733007},
-{"pid":27369,"tid":27369,"ts":326458224649,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1733038},
-{"pid":27369,"tid":27369,"ts":326458224679,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":1733068},
-{"pid":27369,"tid":27369,"ts":326458224679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1733068,"id":"0xaf8a6c40febbc614"},
-{"pid":27369,"tid":27369,"ts":326458224771,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":1733160},
-{"pid":27369,"tid":27369,"ts":326458224771,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":50},"dur":153,"tdur":152,"tts":1733160},
-{"pid":27369,"tid":27369,"ts":326458224802,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":1733190},
-{"pid":27369,"tid":27369,"ts":326458224802,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":1733190},
-{"pid":27369,"tid":27369,"ts":326458224802,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1733190},
-{"pid":27369,"tid":27369,"ts":326458224832,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1733221,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458224832,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1733221},
-{"pid":27369,"tid":27369,"ts":326458224924,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1733312},
-{"pid":27369,"tid":27369,"ts":326458224954,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1733343},
-{"pid":27369,"tid":27369,"ts":326458224954,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1733343},
-{"pid":27369,"tid":27369,"ts":326458224954,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":244,"tts":1733374},
-{"pid":27369,"tid":27369,"ts":326458224985,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1733374},
-{"pid":27369,"tid":27369,"ts":326458225015,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":183,"tts":1733435},
-{"pid":27369,"tid":27369,"ts":326458225259,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1733648,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458225320,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1733709,"id":"0x300000016"},
-{"pid":27369,"tid":27369,"ts":326458225320,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":1733709},
-{"pid":27369,"tid":27369,"ts":326458225351,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9358},"dur":61,"tdur":61,"tts":1733740},
-{"pid":27369,"tid":27369,"ts":326458225351,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":1733770},
-{"pid":27369,"tid":27369,"ts":326458225381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1733770,"id":"0xaf8a6c41febbc614"},
-{"pid":27369,"tid":27369,"ts":326458225442,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":1733831},
-{"pid":27369,"tid":27369,"ts":326458225442,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1733831},
-{"pid":27369,"tid":27369,"ts":326458225595,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1733984},
-{"pid":27369,"tid":27369,"ts":326458228891,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1734198},
-{"pid":27369,"tid":27369,"ts":326458228922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1734228,"id":"0xaf8a6755feb47934"},
-{"pid":27369,"tid":27369,"ts":326458228922,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":641,"tdur":214,"tts":1734228},
-{"pid":27369,"tid":27369,"ts":326458228952,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":611,"tdur":183,"tts":1734259},
-{"pid":27369,"tid":27369,"ts":326458229441,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1734320,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458229441,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1734320,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458229471,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1734350},
-{"pid":27369,"tid":27369,"ts":326458229471,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":1734350},
-{"pid":27369,"tid":27369,"ts":326458229502,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1734381,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458229654,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1734533},
-{"pid":27369,"tid":27369,"ts":326458231211,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1734716},
-{"pid":27369,"tid":27369,"ts":326458231241,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1734747,"id":"0xaf8a6756feb47934"},
-{"pid":27369,"tid":27369,"ts":326458231241,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1734747},
-{"pid":27369,"tid":27369,"ts":326458231272,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":1734808},
-{"pid":27369,"tid":27369,"ts":326458231302,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1734808},
-{"pid":27369,"tid":27369,"ts":326458231394,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1734900},
-{"pid":27369,"tid":27369,"ts":326458234019,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1735113},
-{"pid":27369,"tid":27369,"ts":326458234477,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1735571},
-{"pid":27369,"tid":27369,"ts":326458234538,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1735632},
-{"pid":27369,"tid":27407,"ts":326458225015,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1381504,"id":"0xaf8a6c40febbc614"},
-{"pid":27369,"tid":27407,"ts":326458225046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1381535},
-{"pid":27369,"tid":27407,"ts":326458225076,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1381565,"id":"0xba441702"},
-{"pid":27369,"tid":27407,"ts":326458225565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1381657,"id":"0xaf8a6c41febbc614"},
-{"pid":27369,"tid":27407,"ts":326458225565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1381657},
-{"pid":27369,"tid":27407,"ts":326458225565,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1381657,"id":"0xba441802"},
-{"pid":27369,"tid":27407,"ts":326458228556,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1381809},
-{"pid":27369,"tid":27407,"ts":326458228617,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1381840},
-{"pid":27369,"tid":27407,"ts":326458228617,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1381840,"id":"0xccc38702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458228647,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1381870,"id":"0xaf8a6755feb47934"},
-{"pid":27369,"tid":27407,"ts":326458230997,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1382054},
-{"pid":27369,"tid":27407,"ts":326458231028,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":92,"tts":1382084},
-{"pid":27369,"tid":27407,"ts":326458231028,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1382084,"id":"0xc4c0e502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458231058,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1382115,"id":"0xaf8a6756feb47934"},
-{"pid":27369,"tid":27407,"ts":326458235087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1382298,"id":"0xaf8a6c42febbc614"},
-{"pid":27369,"tid":27407,"ts":326458235117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1382298},
-{"pid":27369,"tid":27407,"ts":326458235117,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1382298,"id":"0xba441902"},
-{"pid":27369,"tid":27407,"ts":326458235514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1382420,"id":"0xaf8a6c43febbc614"},
-{"pid":27369,"tid":27407,"ts":326458235545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1382450},
-{"pid":27369,"tid":27407,"ts":326458235545,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1382481,"id":"0xba441a02"},
-{"pid":27369,"tid":27407,"ts":326458244823,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1382572},
-{"pid":27369,"tid":27407,"ts":326458244853,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":1382603},
-{"pid":27369,"tid":27407,"ts":326458244853,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1382603,"id":"0xccc38902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458244884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1382633,"id":"0xaf8a6757feb47934"},
-{"pid":27369,"tid":27407,"ts":326458247753,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1382817},
-{"pid":27369,"tid":27407,"ts":326458247783,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":122,"tts":1382847},
-{"pid":27369,"tid":27407,"ts":326458247814,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1382878,"id":"0xccc38b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458247844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1382908,"id":"0xaf8a6750feb47934"},
-{"pid":27369,"tid":27407,"ts":326458250133,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1383091,"id":"0xaf8a6c5cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458250133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1383091},
-{"pid":27369,"tid":27407,"ts":326458250164,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1383122,"id":"0xba441b02"},
-{"pid":27369,"tid":27407,"ts":326458251568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1383244,"id":"0xaf8a6c5dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458251598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1383244},
-{"pid":27369,"tid":27407,"ts":326458251598,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1383244,"id":"0xba441c02"},
-{"pid":27369,"tid":27407,"ts":326458253949,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1383366,"id":"0xaf8a6c5efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458253979,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1383396},
-{"pid":27369,"tid":27407,"ts":326458253979,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1383396,"id":"0xba441d02"},
-{"pid":27369,"tid":27407,"ts":326458254040,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1383457,"id":"0xaf8a6c5ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458254040,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1383488},
-{"pid":27369,"tid":27407,"ts":326458254071,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1383488,"id":"0xba441e02"},
-{"pid":27369,"tid":27407,"ts":326458256299,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":183,"tts":1383580},
-{"pid":27369,"tid":27407,"ts":326458256329,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1383610},
-{"pid":27369,"tid":27407,"ts":326458256360,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1383641,"id":"0xc4c0e802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458256390,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1383671,"id":"0xaf8a6752feb47934"},
-{"pid":27369,"tid":27407,"ts":326458264814,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1383854},
-{"pid":27369,"tid":27407,"ts":326458264844,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":1383915},
-{"pid":27369,"tid":27407,"ts":326458264875,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1383915,"id":"0xccc38d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458264905,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1383946,"id":"0xaf8a6753feb47934"},
-{"pid":27369,"tid":27407,"ts":326458269605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1384098,"id":"0xaf8a6c58febbc614"},
-{"pid":27369,"tid":27407,"ts":326458269605,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1384098},
-{"pid":27369,"tid":27407,"ts":326458269636,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1384129,"id":"0xba441f02"},
-{"pid":27369,"tid":27407,"ts":326458269728,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1384220},
-{"pid":27369,"tid":27407,"ts":326458269789,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1384282},
-{"pid":27369,"tid":27407,"ts":326458269789,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1384282,"id":"0xccc39002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458269819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1384312,"id":"0xaf8a676cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458269941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1384434,"id":"0xaf8a6c59febbc614"},
-{"pid":27369,"tid":27407,"ts":326458269941,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":31,"tts":1384434},
-{"pid":27369,"tid":27407,"ts":326458270246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1384495},
-{"pid":27369,"tid":27407,"ts":326458270246,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1384495,"id":"0xba442002"},
-{"pid":27369,"tid":27407,"ts":326458274000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1384648,"id":"0xaf8a6c5afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458274031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1384678},
-{"pid":27369,"tid":27407,"ts":326458274031,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1384678,"id":"0xba442102"},
-{"pid":27369,"tid":27407,"ts":326458275557,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1384831,"id":"0xaf8a6c5bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458275557,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1384831},
-{"pid":27369,"tid":27369,"ts":326458234629,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":214,"tdur":213,"tts":1735724},
-{"pid":27369,"tid":27369,"ts":326458228000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1735754,"id":"0x30000001a"},
-{"pid":27369,"tid":27369,"ts":326458234660,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901914},"tts":1735754,"id":"0x30000001a"},
-{"pid":27369,"tid":27369,"ts":326458234690,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":153,"tdur":152,"tts":1735785},
-{"pid":27369,"tid":27369,"ts":326458234690,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1735785,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458234690,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1735785},
-{"pid":27369,"tid":27369,"ts":326458234721,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1735815},
-{"pid":27369,"tid":27369,"ts":326458234751,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1735846},
-{"pid":27369,"tid":27369,"ts":326458234751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1735846,"id":"0xaf8a6c42febbc614"},
-{"pid":27369,"tid":27369,"ts":326458234812,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1735907,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458234812,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1735907,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458234873,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1735968},
-{"pid":27369,"tid":27369,"ts":326458235117,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1736212},
-{"pid":27369,"tid":27369,"ts":326458235148,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":1373,"tdur":123,"tts":1736242},
-{"pid":27369,"tid":27369,"ts":326458235178,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458233544},"dur":62,"tdur":61,"tts":1736273},
-{"pid":27369,"tid":27369,"ts":326458235178,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":1736273},
-{"pid":27369,"tid":27369,"ts":326458235209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1736303,"id":"0xaf8a6c43febbc614"},
-{"pid":27369,"tid":27369,"ts":326458236552,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1736395},
-{"pid":27369,"tid":27369,"ts":326458236674,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1736517},
-{"pid":27369,"tid":27369,"ts":326458245372,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1736883},
-{"pid":27369,"tid":27369,"ts":326458245372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1736883,"id":"0xaf8a6757feb47934"},
-{"pid":27369,"tid":27369,"ts":326458245403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":1736914},
-{"pid":27369,"tid":27369,"ts":326458245403,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":152,"tts":1736914},
-{"pid":27369,"tid":27369,"ts":326458245464,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1736975,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458245464,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1736975,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458245494,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":31,"tts":1737005},
-{"pid":27369,"tid":27369,"ts":326458245494,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":1737005},
-{"pid":27369,"tid":27369,"ts":326458245525,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1737036,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458245616,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1737128},
-{"pid":27369,"tid":27369,"ts":326458247997,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1737280},
-{"pid":27369,"tid":27369,"ts":326458248028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1737280,"id":"0xaf8a6750feb47934"},
-{"pid":27369,"tid":27369,"ts":326458248028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":1737280},
-{"pid":27369,"tid":27369,"ts":326458248058,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":396,"tts":1737311},
-{"pid":27369,"tid":27369,"ts":326458248089,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1737341},
-{"pid":27369,"tid":27369,"ts":326458248272,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":1737524},
-{"pid":27369,"tid":27369,"ts":326458248272,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1737524},
-{"pid":27369,"tid":27369,"ts":326458248302,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1737555,"id":"0xaf8a6751feb47934"},
-{"pid":27369,"tid":27369,"ts":326458248394,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1737646},
-{"pid":27369,"tid":27369,"ts":326458248424,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1737677},
-{"pid":27369,"tid":27369,"ts":326458248516,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1737768},
-{"pid":27369,"tid":27369,"ts":326458248699,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1737891},
-{"pid":27369,"tid":27369,"ts":326458248730,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1737921,"id":"0xaf8a6751feb47934"},
-{"pid":27369,"tid":27369,"ts":326458248730,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":3082,"tdur":1679,"tts":1737921},
-{"pid":27369,"tid":27369,"ts":326458248760,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1737952},
-{"pid":27369,"tid":27369,"ts":326458248760,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2869,"tdur":1618,"tts":1737982},
-{"pid":27369,"tid":27369,"ts":326458248760,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1737982},
-{"pid":27369,"tid":27369,"ts":326458248852,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":51},"dur":61,"tdur":61,"tts":1738013},
-{"pid":27369,"tid":27369,"ts":326458248882,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1738043},
-{"pid":27369,"tid":27369,"ts":326458248913,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":457,"tdur":366,"tts":1738104},
-{"pid":27369,"tid":27369,"ts":326458248913,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":1738104},
-{"pid":27369,"tid":27369,"ts":326458249004,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1738135,"id":"0x300000017"},
-{"pid":27369,"tid":27369,"ts":326458249004,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1738135,"id":"0x300000018"},
-{"pid":27369,"tid":27369,"ts":326458249035,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1738165},
-{"pid":27369,"tid":27369,"ts":326458249035,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":1738165},
-{"pid":27369,"tid":27369,"ts":326458249065,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":275,"tdur":244,"tts":1738196},
-{"pid":27369,"tid":27369,"ts":326458249340,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1738440},
-{"pid":27369,"tid":27369,"ts":326458249370,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":1738470},
-{"pid":27369,"tid":27369,"ts":326458249401,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":458,"tdur":153,"tts":1738531},
-{"pid":27369,"tid":27369,"ts":326458249401,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":1738531},
-{"pid":27369,"tid":27369,"ts":326458249706,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":51},"dur":61,"tdur":31,"tts":1738531},
-{"pid":27369,"tid":27369,"ts":326458249767,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":51},"dur":31,"tdur":0,"tts":1738593},
-{"pid":27369,"tid":27369,"ts":326458249798,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":51},"tts":1738623},
-{"pid":27369,"tid":27369,"ts":326458249798,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1738623},
-{"pid":27369,"tid":27369,"ts":326458249798,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1738623},
-{"pid":27369,"tid":27369,"ts":326458249828,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":1738654},
-{"pid":27369,"tid":27369,"ts":326458249859,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":1738715},
-{"pid":27369,"tid":27369,"ts":326458249889,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1738715,"id":"0xaf8a6c5cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458250835,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":763,"tts":1738806},
-{"pid":27369,"tid":27369,"ts":326458250866,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":51},"dur":153,"tdur":152,"tts":1738837},
-{"pid":27369,"tid":27369,"ts":326458250866,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1738837},
-{"pid":27369,"tid":27369,"ts":326458250896,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1738867},
-{"pid":27369,"tid":27369,"ts":326458250896,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1738867},
-{"pid":27369,"tid":27369,"ts":326458250927,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1738898,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458250927,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1738898},
-{"pid":27369,"tid":27369,"ts":326458251019,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1738989},
-{"pid":27369,"tid":27369,"ts":326458251049,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":305,"tts":1739020},
-{"pid":27369,"tid":27369,"ts":326458251049,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1739020},
-{"pid":27369,"tid":27369,"ts":326458251049,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":244,"tts":1739050},
-{"pid":27369,"tid":27369,"ts":326458251080,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1739050},
-{"pid":27369,"tid":27369,"ts":326458251141,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1739111},
-{"pid":27369,"tid":27369,"ts":326458251354,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1739325,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458251415,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1739386,"id":"0x300000017"},
-{"pid":27369,"tid":27369,"ts":326458251415,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1739386,"id":"0x300000018"},
-{"pid":27369,"tid":27369,"ts":326458251446,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":1739417},
-{"pid":27369,"tid":27369,"ts":326458251446,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12020},"dur":122,"tdur":122,"tts":1739417},
-{"pid":27369,"tid":27369,"ts":326458251476,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1739447},
-{"pid":27369,"tid":27369,"ts":326458251507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1739478,"id":"0xaf8a6c5dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458251568,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1739539},
-{"pid":27369,"tid":27369,"ts":326458251568,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":1739569},
-{"pid":27369,"tid":27369,"ts":326458251904,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1739691},
-{"pid":27369,"tid":27369,"ts":326458252087,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1739874},
-{"pid":27369,"tid":27369,"ts":326458252484,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1740271},
-{"pid":27369,"tid":27369,"ts":326458252545,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1740332},
-{"pid":27369,"tid":27369,"ts":326458252667,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":1740454},
-{"pid":27369,"tid":27369,"ts":326458245000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1740515,"id":"0x30000001b"},
-{"pid":27369,"tid":27369,"ts":326458252728,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901915},"tts":1740515,"id":"0x30000001b"},
-{"pid":27369,"tid":27369,"ts":326458252758,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":153,"tdur":152,"tts":1740546},
-{"pid":27369,"tid":27369,"ts":326458252758,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1740546,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458252758,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1740546},
-{"pid":27369,"tid":27369,"ts":326458252789,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1740576},
-{"pid":27369,"tid":27369,"ts":326458252819,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1740607},
-{"pid":27369,"tid":27369,"ts":326458252819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1740607,"id":"0xaf8a6c5efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458252880,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1740668,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458252880,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1740668,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458252911,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1740698},
-{"pid":27369,"tid":27369,"ts":326458253186,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1740973},
-{"pid":27369,"tid":27369,"ts":326458253216,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":92,"tdur":91,"tts":1741004},
-{"pid":27369,"tid":27369,"ts":326458253216,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458250220},"dur":61,"tdur":31,"tts":1741034},
-{"pid":27369,"tid":27369,"ts":326458253247,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":1741034},
-{"pid":27369,"tid":27369,"ts":326458253277,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1741065,"id":"0xaf8a6c5ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458253308,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1741095},
-{"pid":27369,"tid":27369,"ts":326458253399,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1741187},
-{"pid":27369,"tid":27369,"ts":326458256573,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1741370},
-{"pid":27369,"tid":27369,"ts":326458256604,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1741400,"id":"0xaf8a6752feb47934"},
-{"pid":27369,"tid":27369,"ts":326458256604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1741400},
-{"pid":27369,"tid":27369,"ts":326458256665,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":1741461},
-{"pid":27369,"tid":27369,"ts":326458256665,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1741461},
-{"pid":27369,"tid":27369,"ts":326458256756,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1741553},
-{"pid":27369,"tid":27369,"ts":326458265180,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1741889},
-{"pid":27369,"tid":27369,"ts":326458265180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1741889,"id":"0xaf8a6753feb47934"},
-{"pid":27369,"tid":27369,"ts":326458265211,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":1741919},
-{"pid":27369,"tid":27369,"ts":326458265211,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":1741919},
-{"pid":27369,"tid":27369,"ts":326458265272,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1741980,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458265272,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1741980,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458265302,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":1742011},
-{"pid":27369,"tid":27369,"ts":326458265302,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":1742011},
-{"pid":27369,"tid":27369,"ts":326458265333,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1742041,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458265424,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1742133},
-{"pid":27369,"tid":27369,"ts":326458267347,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1742377},
-{"pid":27369,"tid":27369,"ts":326458267744,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1742804},
-{"pid":27369,"tid":27369,"ts":326458267835,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1742865},
-{"pid":27369,"tid":27369,"ts":326458267927,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":214,"tts":1742987},
-{"pid":27369,"tid":27369,"ts":326458261000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1742987,"id":"0x30000001c"},
-{"pid":27369,"tid":27369,"ts":326458267988,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901916},"tts":1743018,"id":"0x30000001c"},
-{"pid":27369,"tid":27369,"ts":326458267988,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":152,"tdur":153,"tts":1743018},
-{"pid":27369,"tid":27369,"ts":326458268018,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1743048,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458268018,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":123,"tts":1743048},
-{"pid":27369,"tid":27369,"ts":326458268018,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":123,"tts":1743048},
-{"pid":27369,"tid":27369,"ts":326458268049,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1743079},
-{"pid":27369,"tid":27369,"ts":326458268079,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1743110,"id":"0xaf8a6c58febbc614"},
-{"pid":27369,"tid":27369,"ts":326458268110,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1743140,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458268140,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1743171,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458268171,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1743201},
-{"pid":27369,"tid":27369,"ts":326458268354,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1743384},
-{"pid":27369,"tid":27369,"ts":326458268415,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":1743445},
-{"pid":27369,"tid":27369,"ts":326458268415,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458266896},"dur":61,"tdur":61,"tts":1743445},
-{"pid":27369,"tid":27369,"ts":326458268446,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":1743476},
-{"pid":27369,"tid":27369,"ts":326458268446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1743476,"id":"0xaf8a6c59febbc614"},
-{"pid":27369,"tid":27369,"ts":326458268598,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1743628},
-{"pid":27369,"tid":27369,"ts":326458268690,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1743720},
-{"pid":27369,"tid":27369,"ts":326458272596,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1743964},
-{"pid":27369,"tid":27369,"ts":326458272627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1743995,"id":"0xaf8a676cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458272627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":457,"tts":1743995},
-{"pid":27369,"tid":27369,"ts":326458272627,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":427,"tts":1744025},
-{"pid":27369,"tid":27369,"ts":326458272688,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":396,"tts":1744056},
-{"pid":27369,"tid":27369,"ts":326458272902,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":1744269},
-{"pid":27369,"tid":27369,"ts":326458272902,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":61,"tts":1744269},
-{"pid":27369,"tid":27369,"ts":326458272932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1744300,"id":"0xaf8a676dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458273024,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1744391},
-{"pid":27369,"tid":27369,"ts":326458273054,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1744422},
-{"pid":27369,"tid":27369,"ts":326458273176,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1744544},
-{"pid":27369,"tid":27369,"ts":326458273268,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1744636},
-{"pid":27369,"tid":27369,"ts":326458273268,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1744636,"id":"0xaf8a676dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458273298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2473,"tdur":1557,"tts":1744666},
-{"pid":27369,"tid":27369,"ts":326458273298,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1744666},
-{"pid":27369,"tid":27369,"ts":326458273298,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2442,"tdur":1526,"tts":1744666},
-{"pid":27369,"tid":27369,"ts":326458273329,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":52},"dur":61,"tdur":61,"tts":1744697},
-{"pid":27369,"tid":27369,"ts":326458273359,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1744727},
-{"pid":27369,"tid":27369,"ts":326458273390,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":1744758},
-{"pid":27369,"tid":27369,"ts":326458273421,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1744788,"id":"0x30000001a"},
-{"pid":27369,"tid":27369,"ts":326458273421,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1744788},
-{"pid":27369,"tid":27369,"ts":326458273451,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1744819},
-{"pid":27369,"tid":27369,"ts":326458273451,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":214,"tts":1744849},
-{"pid":27369,"tid":27369,"ts":326458273695,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1745063},
-{"pid":27369,"tid":27369,"ts":326458273726,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1745093},
-{"pid":27369,"tid":27369,"ts":326458273756,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":91,"tts":1745124},
-{"pid":27369,"tid":27369,"ts":326458273756,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":52},"dur":31,"tdur":30,"tts":1745124},
-{"pid":27369,"tid":27369,"ts":326458273787,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":52},"dur":30,"tdur":31,"tts":1745154},
-{"pid":27369,"tid":27369,"ts":326458273817,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":52},"tts":1745185},
-{"pid":27369,"tid":27369,"ts":326458273817,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1745185},
-{"pid":27369,"tid":27369,"ts":326458273848,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1745215},
-{"pid":27369,"tid":27369,"ts":326458273848,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1745215},
-{"pid":27369,"tid":27369,"ts":326458273878,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":428,"tdur":61,"tts":1745246},
-{"pid":27369,"tid":27369,"ts":326458273878,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1745276,"id":"0xaf8a6c5afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458274336,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1374,"tdur":794,"tts":1745368},
-{"pid":27369,"tid":27369,"ts":326458274336,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":52},"dur":183,"tdur":183,"tts":1745368},
-{"pid":27369,"tid":27369,"ts":326458274367,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":1745399},
-{"pid":27369,"tid":27369,"ts":326458274367,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1745399},
-{"pid":27369,"tid":27369,"ts":326458274367,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1745399},
-{"pid":27369,"tid":27369,"ts":326458274397,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1745429,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458274428,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1745460},
-{"pid":27369,"tid":27369,"ts":326458274519,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1745551},
-{"pid":27369,"tid":27369,"ts":326458274519,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":1745551},
-{"pid":27369,"tid":27369,"ts":326458274550,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1745582},
-{"pid":27369,"tid":27369,"ts":326458274550,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":1745582},
-{"pid":27369,"tid":27369,"ts":326458274580,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1745612},
-{"pid":27369,"tid":27369,"ts":326458274611,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":213,"tts":1745643},
-{"pid":27369,"tid":27369,"ts":326458274885,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1745917,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458274916,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1745948,"id":"0x30000001a"},
-{"pid":27369,"tid":27369,"ts":326458274947,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":763,"tdur":184,"tts":1745978},
-{"pid":27369,"tid":27369,"ts":326458274977,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14998},"dur":702,"tdur":122,"tts":1746009},
-{"pid":27369,"tid":27369,"ts":326458274977,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":702,"tdur":122,"tts":1746009},
-{"pid":27369,"tid":27369,"ts":326458275008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1746039,"id":"0xaf8a6c5bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458275679,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1746131},
-{"pid":27369,"tid":27369,"ts":326458275679,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1746131},
-{"pid":27369,"tid":27369,"ts":326458275832,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1746284},
-{"pid":27369,"tid":27369,"ts":326458281569,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1746558},
-{"pid":27369,"tid":27369,"ts":326458281600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1746589,"id":"0xaf8a676efeb47934"},{"pid":27369,"tid":27369,"ts":326458281600,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":1746589},
-{"pid":27369,"tid":27369,"ts":326458281661,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":1746650},
-{"pid":27369,"tid":27369,"ts":326458281661,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1746650},
-{"pid":27369,"tid":27369,"ts":326458281753,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1746741},
-{"pid":27369,"tid":27369,"ts":326458285476,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1747047},
-{"pid":27369,"tid":27369,"ts":326458285995,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1747566},
-{"pid":27369,"tid":27369,"ts":326458286056,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1747627},
-{"pid":27369,"tid":27369,"ts":326458286148,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":1747718},
-{"pid":27369,"tid":27369,"ts":326458278000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1747749,"id":"0x30000001d"},
-{"pid":27369,"tid":27369,"ts":326458286178,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901917},"tts":1747749,"id":"0x30000001d"},
-{"pid":27369,"tid":27369,"ts":326458286209,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":1747779},
-{"pid":27369,"tid":27369,"ts":326458286209,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1747779,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458286239,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1747810},
-{"pid":27369,"tid":27369,"ts":326458286666,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1748084},
-{"pid":27369,"tid":27369,"ts":326458286727,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1748145},
-{"pid":27369,"tid":27369,"ts":326458286727,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458283573},"dur":92,"tdur":92,"tts":1748145},
-{"pid":27369,"tid":27369,"ts":326458286758,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1748176},
-{"pid":27369,"tid":27369,"ts":326458286788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1748206,"id":"0xaf8a6c54febbc614"},
-{"pid":27369,"tid":27369,"ts":326458286880,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1748298},
-{"pid":27369,"tid":27369,"ts":326458286972,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1748390},
-{"pid":27369,"tid":27369,"ts":326458293900,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1748725},
-{"pid":27369,"tid":27369,"ts":326458293930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1748725,"id":"0xaf8a676ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458293930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":274,"tts":1748756},
-{"pid":27369,"tid":27369,"ts":326458293961,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":274,"tts":1748756},
-{"pid":27369,"tid":27369,"ts":326458294022,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1748817,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458294022,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1748817,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458294022,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":213,"tdur":183,"tts":1748847},
-{"pid":27369,"tid":27369,"ts":326458294052,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1748847},
-{"pid":27369,"tid":27369,"ts":326458294083,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1748878,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458294083,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":1748878},
-{"pid":27369,"tid":27369,"ts":326458294113,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":92,"tdur":92,"tts":1748908},
-{"pid":27369,"tid":27369,"ts":326458294113,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1748908},
-{"pid":27369,"tid":27369,"ts":326458294144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1748939,"id":"0xaf8a6c55febbc614"},
-{"pid":27369,"tid":27369,"ts":326458294205,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1749000,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458294205,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1749000,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458294480,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1749122},
-{"pid":27369,"tid":27369,"ts":326458295884,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1749275},
-{"pid":27369,"tid":27369,"ts":326458295884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1749275,"id":"0xaf8a6768feb47934"},
-{"pid":27369,"tid":27369,"ts":326458295914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":1749305},
-{"pid":27369,"tid":27369,"ts":326458295914,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":397,"tts":1749305},
-{"pid":27369,"tid":27369,"ts":326458295945,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1749336},
-{"pid":27369,"tid":27369,"ts":326458296128,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":1749519},
-{"pid":27369,"tid":27369,"ts":326458296128,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1749519},
-{"pid":27369,"tid":27369,"ts":326458296158,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1749549,"id":"0xaf8a6769feb47934"},
-{"pid":27369,"tid":27369,"ts":326458296219,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1749641},
-{"pid":27369,"tid":27369,"ts":326458296280,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1749671},
-{"pid":27369,"tid":27369,"ts":326458296372,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1749763},
-{"pid":27369,"tid":27369,"ts":326458296463,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1749855},
-{"pid":27369,"tid":27407,"ts":326458275557,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1384831,"id":"0xba442202"},
-{"pid":27369,"tid":27407,"ts":326458281295,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1384953},
-{"pid":27369,"tid":27407,"ts":326458281325,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1384983},
-{"pid":27369,"tid":27407,"ts":326458281356,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1385014,"id":"0xc4c0eb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458281356,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1385045,"id":"0xaf8a676efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458286941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385197,"id":"0xaf8a6c54febbc614"},
-{"pid":27369,"tid":27407,"ts":326458286941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1385197},
-{"pid":27369,"tid":27407,"ts":326458286972,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1385228,"id":"0xba442302"},
-{"pid":27369,"tid":27407,"ts":326458293594,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1385380},
-{"pid":27369,"tid":27407,"ts":326458293625,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1385411},
-{"pid":27369,"tid":27407,"ts":326458293625,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1385411,"id":"0xccc39202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458293656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1385441,"id":"0xaf8a676ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458294235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385624,"id":"0xaf8a6c55febbc614"},
-{"pid":27369,"tid":27407,"ts":326458294235,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1385624},
-{"pid":27369,"tid":27407,"ts":326458294235,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1385624,"id":"0xba442402"},
-{"pid":27369,"tid":27407,"ts":326458295639,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1385746},
-{"pid":27369,"tid":27407,"ts":326458295670,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1385777},
-{"pid":27369,"tid":27407,"ts":326458295700,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1385808,"id":"0xccc39402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458295731,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1385838,"id":"0xaf8a6768feb47934"},
-{"pid":27369,"tid":27407,"ts":326458297013,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1385960,"id":"0xaf8a6c56febbc614"},
-{"pid":27369,"tid":27407,"ts":326458297043,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1385991},
-{"pid":27369,"tid":27407,"ts":326458297043,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1385991,"id":"0xba442502"},
-{"pid":27369,"tid":27407,"ts":326458297104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386052,"id":"0xaf8a6c57febbc614"},
-{"pid":27369,"tid":27407,"ts":326458297104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1386052},
-{"pid":27369,"tid":27407,"ts":326458297104,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386082,"id":"0xba442606"},
-{"pid":27369,"tid":27407,"ts":326458297165,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1386113},
-{"pid":27369,"tid":27407,"ts":326458297196,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1386143},
-{"pid":27369,"tid":27407,"ts":326458297196,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386143,"id":"0xccc39602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458297226,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1386174,"id":"0xaf8a676afeb47934"},
-{"pid":27369,"tid":27407,"ts":326458297287,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":91,"tts":1386235},
-{"pid":27369,"tid":27407,"ts":326458297318,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":31,"tts":1386265},
-{"pid":27369,"tid":27407,"ts":326458297318,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386265,"id":"0xc4c0ee0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458297806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386418,"id":"0xaf8a6c50febbc614"},
-{"pid":27369,"tid":27407,"ts":326458297806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":31,"tdur":0,"tts":1386418},
-{"pid":27369,"tid":27407,"ts":326458298111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386479,"id":"0xaf8a6c51febbc614"},
-{"pid":27369,"tid":27407,"ts":326458298142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1386509},
-{"pid":27369,"tid":27407,"ts":326458298142,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386509,"id":"0xba442702"},
-{"pid":27369,"tid":27407,"ts":326458298783,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386601,"id":"0xaf8a6c52febbc614"},
-{"pid":27369,"tid":27407,"ts":326458298813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":30,"tts":1386632},
-{"pid":27369,"tid":27407,"ts":326458298813,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386632,"id":"0xba442802"},
-{"pid":27369,"tid":27407,"ts":326458301774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386754,"id":"0xaf8a6c53febbc614"},
-{"pid":27369,"tid":27407,"ts":326458301804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1386784},
-{"pid":27369,"tid":27407,"ts":326458301804,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386784,"id":"0xba442902"},
-{"pid":27369,"tid":27407,"ts":326458302232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1386906,"id":"0xaf8a6c6cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458302232,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1386906},
-{"pid":27369,"tid":27407,"ts":326458302262,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1386937,"id":"0xba442a02"},
-{"pid":27369,"tid":27407,"ts":326458304063,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1387028},
-{"pid":27369,"tid":27407,"ts":326458304093,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":1387059},
-{"pid":27369,"tid":27407,"ts":326458304093,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1387059,"id":"0xccc39802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458304124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1387089,"id":"0xaf8a676bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458304277,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":91,"tdur":92,"tts":1387242},
-{"pid":27369,"tid":27407,"ts":326458304277,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1387242},
-{"pid":27369,"tid":27407,"ts":326458304307,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1387273,"id":"0xc4c0f002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458304307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1387273,"id":"0xaf8a6764feb47934"},
-{"pid":27369,"tid":27407,"ts":326458318347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1387456,"id":"0xaf8a6c6dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458318377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1387486},
-{"pid":27369,"tid":27407,"ts":326458318377,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1387486,"id":"0xba442b02"},
-{"pid":27369,"tid":27407,"ts":326458319110,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1387608,"id":"0xaf8a6c6efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458319140,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1387639},
-{"pid":27369,"tid":27407,"ts":326458319140,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1387639,"id":"0xba442c02"},
-{"pid":27369,"tid":27407,"ts":326458321887,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1387730},
-{"pid":27369,"tid":27407,"ts":326458321948,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1387791},
-{"pid":27369,"tid":27407,"ts":326458321948,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1387791,"id":"0xccc39b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458321978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1387822,"id":"0xaf8a6765feb47934"},
-{"pid":27369,"tid":27369,"ts":326458296463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1749855,"id":"0xaf8a6769feb47934"},
-{"pid":27369,"tid":27369,"ts":326458296494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2381,"tdur":1709,"tts":1749885},
-{"pid":27369,"tid":27369,"ts":326458296494,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":1749885},
-{"pid":27369,"tid":27369,"ts":326458296524,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2320,"tdur":1648,"tts":1749916},
-{"pid":27369,"tid":27369,"ts":326458296524,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":53},"dur":61,"tdur":31,"tts":1749946},
-{"pid":27369,"tid":27369,"ts":326458296555,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":1749946},
-{"pid":27369,"tid":27369,"ts":326458296616,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1251,"tdur":580,"tts":1750007},
-{"pid":27369,"tid":27369,"ts":326458296616,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1750007,"id":"0x30000001b"},
-{"pid":27369,"tid":27369,"ts":326458296616,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":1750007},
-{"pid":27369,"tid":27369,"ts":326458296647,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1750038},
-{"pid":27369,"tid":27369,"ts":326458296677,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1160,"tdur":489,"tts":1750068},
-{"pid":27369,"tid":27369,"ts":326458296830,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":1750221},
-{"pid":27369,"tid":27369,"ts":326458296860,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1750251},
-{"pid":27369,"tid":27369,"ts":326458296891,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1750282},
-{"pid":27369,"tid":27369,"ts":326458296891,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":1750282},
-{"pid":27369,"tid":27369,"ts":326458296921,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15054},"dur":92,"tdur":92,"tts":1750312},
-{"pid":27369,"tid":27369,"ts":326458296952,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":1750343},
-{"pid":27369,"tid":27369,"ts":326458296952,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1750343,"id":"0xaf8a6c56febbc614"},
-{"pid":27369,"tid":27369,"ts":326458297013,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":763,"tdur":91,"tts":1750404},
-{"pid":27369,"tid":27369,"ts":326458297043,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1750434,"id":"0xaf8a6c57febbc614"},
-{"pid":27369,"tid":27369,"ts":326458297745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1750465,"id":"0xaf8a6c50febbc614"},
-{"pid":27369,"tid":27369,"ts":326458297867,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1750587},
-{"pid":27369,"tid":27369,"ts":326458297898,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1750618},
-{"pid":27369,"tid":27369,"ts":326458297898,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1750618},
-{"pid":27369,"tid":27369,"ts":326458297898,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":53},"dur":30,"tdur":30,"tts":1750618},
-{"pid":27369,"tid":27369,"ts":326458297959,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":53},"dur":0,"tdur":0,"tts":1750679},
-{"pid":27369,"tid":27369,"ts":326458297959,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":53},"tts":1750679},
-{"pid":27369,"tid":27369,"ts":326458297989,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1750709},
-{"pid":27369,"tid":27369,"ts":326458297989,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1750709},
-{"pid":27369,"tid":27369,"ts":326458297989,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":1750709},
-{"pid":27369,"tid":27369,"ts":326458298050,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":1750770},
-{"pid":27369,"tid":27369,"ts":326458298050,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1750770,"id":"0xaf8a6c51febbc614"},
-{"pid":27369,"tid":27369,"ts":326458298142,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":1750862},
-{"pid":27369,"tid":27369,"ts":326458298142,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":53},"dur":153,"tdur":152,"tts":1750862},
-{"pid":27369,"tid":27369,"ts":326458298173,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":1750892},
-{"pid":27369,"tid":27369,"ts":326458298173,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":1750892},
-{"pid":27369,"tid":27369,"ts":326458298173,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1750892},
-{"pid":27369,"tid":27369,"ts":326458298203,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1750923,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458298203,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1750923},
-{"pid":27369,"tid":27369,"ts":326458298295,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1751014},
-{"pid":27369,"tid":27369,"ts":326458298325,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1751045},
-{"pid":27369,"tid":27369,"ts":326458298325,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1751045},
-{"pid":27369,"tid":27369,"ts":326458298325,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1751045},
-{"pid":27369,"tid":27369,"ts":326458298356,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1751075},
-{"pid":27369,"tid":27369,"ts":326458298386,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1751106},
-{"pid":27369,"tid":27369,"ts":326458298630,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1751350,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458298661,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1751381,"id":"0x30000001b"},
-{"pid":27369,"tid":27369,"ts":326458298691,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":1751411},
-{"pid":27369,"tid":27369,"ts":326458298691,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":1333},"dur":92,"tdur":92,"tts":1751411},
-{"pid":27369,"tid":27369,"ts":326458298722,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":1751442},
-{"pid":27369,"tid":27369,"ts":326458298722,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1751442,"id":"0xaf8a6c52febbc614"},
-{"pid":27369,"tid":27369,"ts":326458298783,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1751503},
-{"pid":27369,"tid":27369,"ts":326458298783,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":1751533},
-{"pid":27369,"tid":27369,"ts":326458298936,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1751655},
-{"pid":27369,"tid":27369,"ts":326458299027,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1751747},
-{"pid":27369,"tid":27369,"ts":326458299058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1751777,"id":"0xaf8a676afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458299058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1751777},
-{"pid":27369,"tid":27369,"ts":326458299058,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1751777},
-{"pid":27369,"tid":27369,"ts":326458299119,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1751838,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458299119,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1751838,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458299119,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1751838},
-{"pid":27369,"tid":27369,"ts":326458299149,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":1751869},
-{"pid":27369,"tid":27369,"ts":326458299149,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1751869,"id":"0xaf8a644cfa8d4c3c"},
-{"pid":27369,"tid":27369,"ts":326458299241,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1751960},
-{"pid":27369,"tid":27369,"ts":326458300980,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1752174},
-{"pid":27369,"tid":27369,"ts":326458301408,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1752601},
-{"pid":27369,"tid":27369,"ts":326458301469,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":1752662},
-{"pid":27369,"tid":27369,"ts":326458301560,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":1752754},
-{"pid":27369,"tid":27369,"ts":326458295000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1752784,"id":"0x30000001e"},
-{"pid":27369,"tid":27369,"ts":326458301621,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901918},"tts":1752815,"id":"0x30000001e"},
-{"pid":27369,"tid":27369,"ts":326458301621,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":1752815},
-{"pid":27369,"tid":27369,"ts":326458301621,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1752815,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458301652,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1752846},
-{"pid":27369,"tid":27369,"ts":326458301652,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1752846},
-{"pid":27369,"tid":27369,"ts":326458301682,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1752876},
-{"pid":27369,"tid":27369,"ts":326458301713,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1752907,"id":"0xaf8a6c53febbc614"},
-{"pid":27369,"tid":27369,"ts":326458301743,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1752937,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458301774,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1752968,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458301804,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1752998},
-{"pid":27369,"tid":27369,"ts":326458302049,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1753242},
-{"pid":27369,"tid":27369,"ts":326458302110,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":1753303},
-{"pid":27369,"tid":27369,"ts":326458302110,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458300249},"dur":91,"tdur":92,"tts":1753303},
-{"pid":27369,"tid":27369,"ts":326458302140,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":1753334},
-{"pid":27369,"tid":27369,"ts":326458302140,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1753334,"id":"0xaf8a6c6cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458302232,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1753425},
-{"pid":27369,"tid":27369,"ts":326458302323,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1753517},
-{"pid":27369,"tid":27369,"ts":326458304338,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1753731},
-{"pid":27369,"tid":27369,"ts":326458304368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1753761,"id":"0xaf8a676bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458304368,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":1753761},
-{"pid":27369,"tid":27369,"ts":326458304368,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1753761},
-{"pid":27369,"tid":27369,"ts":326458304429,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1753822,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458304429,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1753822,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458304460,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":30,"tts":1753853},
-{"pid":27369,"tid":27369,"ts":326458304460,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":1753853},
-{"pid":27369,"tid":27369,"ts":326458304490,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1753883,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458304582,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1753975},
-{"pid":27369,"tid":27369,"ts":326458304673,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1754066},
-{"pid":27369,"tid":27369,"ts":326458304673,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1754066,"id":"0xaf8a6764feb47934"},
-{"pid":27369,"tid":27369,"ts":326458304704,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":61,"tts":1754097},
-{"pid":27369,"tid":27369,"ts":326458304734,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1754127},
-{"pid":27369,"tid":27369,"ts":326458304734,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1754127},
-{"pid":27369,"tid":27369,"ts":326458304826,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1754219},
-{"pid":27369,"tid":27369,"ts":326458317431,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1754616},
-{"pid":27369,"tid":27369,"ts":326458317919,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1755104},
-{"pid":27369,"tid":27369,"ts":326458317980,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1755165},
-{"pid":27369,"tid":27369,"ts":326458318072,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":671,"tdur":244,"tts":1755257},
-{"pid":27369,"tid":27369,"ts":326458311000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1755287,"id":"0x30000001f"},
-{"pid":27369,"tid":27369,"ts":326458318133,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901919},"tts":1755318,"id":"0x30000001f"},
-{"pid":27369,"tid":27369,"ts":326458318133,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":610,"tdur":183,"tts":1755318},
-{"pid":27369,"tid":27369,"ts":326458318163,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1755348,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458318163,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":580,"tdur":153,"tts":1755348},
-{"pid":27369,"tid":27369,"ts":326458318163,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":580,"tdur":153,"tts":1755348},
-{"pid":27369,"tid":27369,"ts":326458318194,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":519,"tdur":91,"tts":1755379},
-{"pid":27369,"tid":27369,"ts":326458318224,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1755409,"id":"0xaf8a6c6dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458318713,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1755470,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458318713,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1755501,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458318774,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1755531},
-{"pid":27369,"tid":27369,"ts":326458318957,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1755714},
-{"pid":27369,"tid":27369,"ts":326458318987,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":519,"tdur":244,"tts":1755745},
-{"pid":27369,"tid":27369,"ts":326458318987,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458316925},"dur":397,"tdur":122,"tts":1755745},
-{"pid":27369,"tid":27369,"ts":326458319018,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":366,"tdur":62,"tts":1755775},
-{"pid":27369,"tid":27369,"ts":326458319018,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1755775,"id":"0xaf8a6c6efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458319506,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1755989},
-{"pid":27369,"tid":27369,"ts":326458319689,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1756142},
-{"pid":27369,"tid":27369,"ts":326458322223,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1756447},
-{"pid":27369,"tid":27369,"ts":326458322253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1756477,"id":"0xaf8a6765feb47934"},
-{"pid":27369,"tid":27369,"ts":326458322253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1756477},
-{"pid":27369,"tid":27369,"ts":326458322253,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":427,"tts":1756508},
-{"pid":27369,"tid":27369,"ts":326458322314,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":1756538},
-{"pid":27369,"tid":27369,"ts":326458322528,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":1756752},
-{"pid":27369,"tid":27369,"ts":326458322528,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1756752},
-{"pid":27369,"tid":27369,"ts":326458322558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1756783,"id":"0xaf8a6766feb47934"},
-{"pid":27369,"tid":27369,"ts":326458322650,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1756874},
-{"pid":27369,"tid":27369,"ts":326458322680,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1756905},
-{"pid":27369,"tid":27369,"ts":326458322772,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1756996},
-{"pid":27369,"tid":27369,"ts":326458322864,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1757088},
-{"pid":27369,"tid":27369,"ts":326458322894,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1757118,"id":"0xaf8a6766feb47934"},
-{"pid":27369,"tid":27369,"ts":326458322894,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2167,"tdur":1771,"tts":1757118},
-{"pid":27369,"tid":27369,"ts":326458322894,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":31,"tts":1757118},
-{"pid":27369,"tid":27369,"ts":326458322925,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2105,"tdur":1709,"tts":1757149},
-{"pid":27369,"tid":27369,"ts":326458322955,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":54},"dur":31,"tdur":31,"tts":1757179},
-{"pid":27369,"tid":27369,"ts":326458322955,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1757179},
-{"pid":27369,"tid":27369,"ts":326458323016,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1038,"tdur":641,"tts":1757240},
-{"pid":27369,"tid":27369,"ts":326458323016,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1757240,"id":"0x30000001c"},
-{"pid":27369,"tid":27369,"ts":326458323016,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1757240,"id":"0x30000001d"},
-{"pid":27369,"tid":27369,"ts":326458323047,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1757271,"id":"0x30000001e"},
-{"pid":27369,"tid":27369,"ts":326458323047,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1757271},
-{"pid":27369,"tid":27369,"ts":326458323047,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":1757302},
-{"pid":27369,"tid":27369,"ts":326458323108,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":915,"tdur":519,"tts":1757332},
-{"pid":27369,"tid":27369,"ts":326458323260,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":1757485},
-{"pid":27369,"tid":27369,"ts":326458323291,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1757515},
-{"pid":27369,"tid":27369,"ts":326458323321,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1757546},
-{"pid":27369,"tid":27369,"ts":326458323321,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":1375},"dur":92,"tdur":91,"tts":1757546},
-{"pid":27369,"tid":27369,"ts":326458323352,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1757576},
-{"pid":27369,"tid":27369,"ts":326458323352,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1757576,"id":"0xaf8a6c6ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458323413,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":519,"tdur":122,"tts":1757637},
-{"pid":27369,"tid":27369,"ts":326458323443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1757668,"id":"0xaf8a6c68febbc614"},
-{"pid":27369,"tid":27369,"ts":326458323901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1757729,"id":"0xaf8a6c69febbc614"},
-{"pid":27369,"tid":27369,"ts":326458324023,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1757851},
-{"pid":27369,"tid":27369,"ts":326458324054,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1757881},
-{"pid":27369,"tid":27369,"ts":326458324054,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1757881},
-{"pid":27369,"tid":27369,"ts":326458324084,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":54},"dur":31,"tdur":30,"tts":1757912},
-{"pid":27369,"tid":27369,"ts":326458324115,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":54},"dur":30,"tdur":31,"tts":1757942},
-{"pid":27369,"tid":27369,"ts":326458324145,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":54},"tts":1757973},
-{"pid":27369,"tid":27369,"ts":326458324145,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1757973},
-{"pid":27369,"tid":27369,"ts":326458324145,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1757973},
-{"pid":27369,"tid":27369,"ts":326458324176,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1758003},
-{"pid":27369,"tid":27369,"ts":326458324206,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1758034},
-{"pid":27369,"tid":27369,"ts":326458324206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1758065,"id":"0xaf8a6c6afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458324298,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":732,"tts":1758126},
-{"pid":27369,"tid":27369,"ts":326458324328,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":54},"dur":153,"tdur":153,"tts":1758156},
-{"pid":27369,"tid":27369,"ts":326458324328,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":1758156},
-{"pid":27369,"tid":27369,"ts":326458324328,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1758156},
-{"pid":27369,"tid":27369,"ts":326458324359,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1758187},
-{"pid":27369,"tid":27369,"ts":326458324359,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1758187,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458324390,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1758217},
-{"pid":27369,"tid":27369,"ts":326458324451,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1758278},
-{"pid":27369,"tid":27369,"ts":326458324481,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1758309},
-{"pid":27369,"tid":27369,"ts":326458324481,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":1758339},
-{"pid":27369,"tid":27369,"ts":326458324512,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1758339},
-{"pid":27369,"tid":27369,"ts":326458324512,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":1758339},
-{"pid":27369,"tid":27369,"ts":326458324573,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":153,"tts":1758400},
-{"pid":27369,"tid":27369,"ts":326458324786,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1758614,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458324847,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1758675,"id":"0x30000001c"},
-{"pid":27369,"tid":27369,"ts":326458324847,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1758675,"id":"0x30000001d"},
-{"pid":27369,"tid":27369,"ts":326458324878,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1758705,"id":"0x30000001e"},
-{"pid":27369,"tid":27369,"ts":326458324878,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":1758705},
-{"pid":27369,"tid":27369,"ts":326458324908,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3887},"dur":61,"tdur":61,"tts":1758736},
-{"pid":27369,"tid":27369,"ts":326458324939,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1758766},
-{"pid":27369,"tid":27369,"ts":326458324939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1758766,"id":"0xaf8a6c6bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458325000,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":1758828},
-{"pid":27369,"tid":27369,"ts":326458325000,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1758828},
-{"pid":27369,"tid":27407,"ts":326458323443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1388005,"id":"0xaf8a6c6ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458323443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1388036},
-{"pid":27369,"tid":27407,"ts":326458323474,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388036,"id":"0xba442d02"},
-{"pid":27369,"tid":27407,"ts":326458323535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1388097,"id":"0xaf8a6c68febbc614"},
-{"pid":27369,"tid":27407,"ts":326458323535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":1388097},
-{"pid":27369,"tid":27407,"ts":326458323535,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388097,"id":"0xba442e06"},
-{"pid":27369,"tid":27407,"ts":326458323718,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":92,"tts":1388188},
-{"pid":27369,"tid":27407,"ts":326458323749,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":30,"tdur":30,"tts":1388219},
-{"pid":27369,"tid":27407,"ts":326458323749,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388219,"id":"0xc4c0f30a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458323962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1388341,"id":"0xaf8a6c69febbc614"},
-{"pid":27369,"tid":27407,"ts":326458323962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":31,"tdur":0,"tts":1388371},
-{"pid":27369,"tid":27407,"ts":326458324267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1388463,"id":"0xaf8a6c6afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458324298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1388463},
-{"pid":27369,"tid":27407,"ts":326458324298,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388463,"id":"0xba442f02"},
-{"pid":27369,"tid":27407,"ts":326458324939,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":122,"tts":1388585},
-{"pid":27369,"tid":27407,"ts":326458324969,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":1388615},
-{"pid":27369,"tid":27407,"ts":326458325000,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388615,"id":"0xccc39d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458325000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1388615,"id":"0xaf8a6767feb47934"},
-{"pid":27369,"tid":27407,"ts":326458325092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1388707,"id":"0xaf8a6c6bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458325092,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1388707},
-{"pid":27369,"tid":27407,"ts":326458325122,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388737,"id":"0xba443002"},
-{"pid":27369,"tid":27407,"ts":326458329517,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1388860},
-{"pid":27369,"tid":27407,"ts":326458329547,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1388890},
-{"pid":27369,"tid":27407,"ts":326458329547,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1388890,"id":"0xc4c0f502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458329578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1388921,"id":"0xaf8a6760feb47934"},
-{"pid":27369,"tid":27407,"ts":326458335285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1389134,"id":"0xaf8a6c64febbc614"},
-{"pid":27369,"tid":27407,"ts":326458335285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1389134},
-{"pid":27369,"tid":27407,"ts":326458335316,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1389165,"id":"0xba443102"},
-{"pid":27369,"tid":27407,"ts":326458336292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1389348,"id":"0xaf8a6c65febbc614"},
-{"pid":27369,"tid":27407,"ts":326458336292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1389348},
-{"pid":27369,"tid":27407,"ts":326458336323,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1389378,"id":"0xba443202"},
-{"pid":27369,"tid":27407,"ts":326458339863,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":184,"tts":1389500},
-{"pid":27369,"tid":27407,"ts":326458339924,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1389531},
-{"pid":27369,"tid":27407,"ts":326458339924,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1389531,"id":"0xccc39f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458339955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1389562,"id":"0xaf8a6761feb47934"},
-{"pid":27369,"tid":27407,"ts":326458343648,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1389745},
-{"pid":27369,"tid":27407,"ts":326458343709,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1389806},
-{"pid":27369,"tid":27407,"ts":326458343709,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1389806,"id":"0xccc3a202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458343739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1389836,"id":"0xaf8a6762feb47934"},
-{"pid":27369,"tid":27407,"ts":326458345265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1390050,"id":"0xaf8a6c66febbc614"},
-{"pid":27369,"tid":27407,"ts":326458345265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1390050},
-{"pid":27369,"tid":27407,"ts":326458345296,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1390080,"id":"0xba443302"},
-{"pid":27369,"tid":27407,"ts":326458346151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1390172,"id":"0xaf8a6c67febbc614"},
-{"pid":27369,"tid":27407,"ts":326458346151,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":244,"tdur":92,"tts":1390172},
-{"pid":27369,"tid":27407,"ts":326458346181,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1390202,"id":"0xba443402"},
-{"pid":27369,"tid":27407,"ts":326458351400,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":733,"tdur":213,"tts":1390325},
-{"pid":27369,"tid":27407,"ts":326458351431,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":702,"tdur":122,"tts":1390386},
-{"pid":27369,"tid":27407,"ts":326458351461,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1390386,"id":"0xc4c0f802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458351492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1390416,"id":"0xaf8a677cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458354330,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1390660,"id":"0xaf8a6c60febbc614"},
-{"pid":27369,"tid":27407,"ts":326458354330,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1390660},
-{"pid":27369,"tid":27407,"ts":326458354361,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1390691,"id":"0xba443502"},
-{"pid":27369,"tid":27407,"ts":326458354971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1390782,"id":"0xaf8a6c61febbc614"},
-{"pid":27369,"tid":27407,"ts":326458355001,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1390813},
-{"pid":27369,"tid":27407,"ts":326458355001,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1390813,"id":"0xba443602"},
-{"pid":27369,"tid":27407,"ts":326458357046,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1390904},
-{"pid":27369,"tid":27407,"ts":326458357077,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1390935},
-{"pid":27369,"tid":27407,"ts":326458357077,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1390935,"id":"0xccc3a402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458357107,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1390965,"id":"0xaf8a677dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458359305,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1391118},
-{"pid":27369,"tid":27407,"ts":326458359366,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":122,"tts":1391179},
-{"pid":27369,"tid":27407,"ts":326458359366,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1391179,"id":"0xccc3a602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458359396,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1391240,"id":"0xaf8a677efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458360922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1391423,"id":"0xaf8a6c62febbc614"},
-{"pid":27369,"tid":27369,"ts":326458325122,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1758950},
-{"pid":27369,"tid":27369,"ts":326458325214,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1759041},
-{"pid":27369,"tid":27369,"ts":326458325244,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1759072,"id":"0xaf8a6767feb47934"},
-{"pid":27369,"tid":27369,"ts":326458325244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":122,"tts":1759072},
-{"pid":27369,"tid":27369,"ts":326458325244,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1759072},
-{"pid":27369,"tid":27369,"ts":326458325305,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1759133,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458325305,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1759133,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458325336,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":31,"tts":1759163},
-{"pid":27369,"tid":27369,"ts":326458325336,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1759163},
-{"pid":27369,"tid":27369,"ts":326458325366,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1759194,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458325427,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1759255},
-{"pid":27369,"tid":27369,"ts":326458329792,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1759438},
-{"pid":27369,"tid":27369,"ts":326458329822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1759468,"id":"0xaf8a6760feb47934"},
-{"pid":27369,"tid":27369,"ts":326458329822,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":123,"tts":1759468},
-{"pid":27369,"tid":27369,"ts":326458329883,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1759529},
-{"pid":27369,"tid":27369,"ts":326458329883,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1759529},
-{"pid":27369,"tid":27369,"ts":326458330036,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1759682},
-{"pid":27369,"tid":27369,"ts":326458334431,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1760048},
-{"pid":27369,"tid":27369,"ts":326458334858,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1760476},
-{"pid":27369,"tid":27369,"ts":326458334919,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1760506},
-{"pid":27369,"tid":27369,"ts":326458335011,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":702,"tdur":305,"tts":1760598},
-{"pid":27369,"tid":27369,"ts":326458328000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1760628,"id":"0x300000020"},
-{"pid":27369,"tid":27369,"ts":326458335072,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901920},"tts":1760659,"id":"0x300000020"},
-{"pid":27369,"tid":27369,"ts":326458335072,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":641,"tdur":244,"tts":1760659},
-{"pid":27369,"tid":27369,"ts":326458335102,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1760689,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458335102,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":611,"tdur":183,"tts":1760689},
-{"pid":27369,"tid":27369,"ts":326458335102,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":580,"tdur":183,"tts":1760689},
-{"pid":27369,"tid":27369,"ts":326458335133,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":519,"tdur":122,"tts":1760720},
-{"pid":27369,"tid":27369,"ts":326458335163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1760750,"id":"0xaf8a6c64febbc614"},
-{"pid":27369,"tid":27369,"ts":326458335682,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1760872,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458335682,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1760872,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458335713,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1760903},
-{"pid":27369,"tid":27369,"ts":326458336109,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1761178},
-{"pid":27369,"tid":27369,"ts":326458336140,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":458,"tdur":122,"tts":1761208},
-{"pid":27369,"tid":27369,"ts":326458336140,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458333602},"dur":427,"tdur":61,"tts":1761239},
-{"pid":27369,"tid":27369,"ts":326458336170,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":61,"tts":1761239},
-{"pid":27369,"tid":27369,"ts":326458336201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1761269,"id":"0xaf8a6c65febbc614"},
-{"pid":27369,"tid":27369,"ts":326458336628,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1761361},
-{"pid":27369,"tid":27369,"ts":326458336750,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1761483},
-{"pid":27369,"tid":27369,"ts":326458340169,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1761696},
-{"pid":27369,"tid":27369,"ts":326458340199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1761727,"id":"0xaf8a6761feb47934"},
-{"pid":27369,"tid":27369,"ts":326458340199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":1761727},
-{"pid":27369,"tid":27369,"ts":326458340199,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1761727},
-{"pid":27369,"tid":27369,"ts":326458340260,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1761788,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458340260,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1761788,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458340291,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":30,"tts":1761819},
-{"pid":27369,"tid":27369,"ts":326458340291,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":1761819},
-{"pid":27369,"tid":27369,"ts":326458340321,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1761849,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458340413,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1761941},
-{"pid":27369,"tid":27369,"ts":326458343953,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1762246},
-{"pid":27369,"tid":27369,"ts":326458343953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1762246,"id":"0xaf8a6762feb47934"},
-{"pid":27369,"tid":27369,"ts":326458343984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":396,"tdur":397,"tts":1762276},
-{"pid":27369,"tid":27369,"ts":326458343984,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":397,"tts":1762276},
-{"pid":27369,"tid":27369,"ts":326458344014,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1762307},
-{"pid":27369,"tid":27369,"ts":326458344197,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1762490},
-{"pid":27369,"tid":27369,"ts":326458344228,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":62,"tts":1762520},
-{"pid":27369,"tid":27369,"ts":326458344228,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1762520,"id":"0xaf8a6763feb47934"},
-{"pid":27369,"tid":27369,"ts":326458344319,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1762612},
-{"pid":27369,"tid":27369,"ts":326458344350,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1762643},
-{"pid":27369,"tid":27369,"ts":326458344441,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1762734},
-{"pid":27369,"tid":27369,"ts":326458344564,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1762856},
-{"pid":27369,"tid":27369,"ts":326458344594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1762887,"id":"0xaf8a6763feb47934"},
-{"pid":27369,"tid":27369,"ts":326458344594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1618,"tdur":1434,"tts":1762887},
-{"pid":27369,"tid":27369,"ts":326458344594,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":1762887},
-{"pid":27369,"tid":27369,"ts":326458344625,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1556,"tdur":1374,"tts":1762917},
-{"pid":27369,"tid":27369,"ts":326458344655,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":55},"dur":61,"tdur":61,"tts":1762948},
-{"pid":27369,"tid":27369,"ts":326458344655,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1762948},
-{"pid":27369,"tid":27369,"ts":326458344716,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1763009},
-{"pid":27369,"tid":27369,"ts":326458344747,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1763039,"id":"0x30000001f"},
-{"pid":27369,"tid":27369,"ts":326458344747,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":1763039},
-{"pid":27369,"tid":27369,"ts":326458344777,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1763070},
-{"pid":27369,"tid":27369,"ts":326458344777,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":183,"tts":1763100},
-{"pid":27369,"tid":27369,"ts":326458344991,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1763283},
-{"pid":27369,"tid":27369,"ts":326458345021,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1763314},
-{"pid":27369,"tid":27369,"ts":326458345021,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":91,"tts":1763345},
-{"pid":27369,"tid":27369,"ts":326458345052,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":55},"dur":30,"tdur":30,"tts":1763345},
-{"pid":27369,"tid":27369,"ts":326458345082,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":55},"dur":31,"tdur":31,"tts":1763375},
-{"pid":27369,"tid":27369,"ts":326458345113,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":55},"tts":1763406},
-{"pid":27369,"tid":27369,"ts":326458345113,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1763406},
-{"pid":27369,"tid":27369,"ts":326458345113,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1763436},
-{"pid":27369,"tid":27369,"ts":326458345143,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1763436},
-{"pid":27369,"tid":27369,"ts":326458345174,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1763467},
-{"pid":27369,"tid":27369,"ts":326458345174,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1763497,"id":"0xaf8a6c66febbc614"},
-{"pid":27369,"tid":27369,"ts":326458345265,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":916,"tdur":733,"tts":1763558},
-{"pid":27369,"tid":27369,"ts":326458345296,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":55},"dur":366,"tdur":152,"tts":1763589},
-{"pid":27369,"tid":27369,"ts":326458345296,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":1763589},
-{"pid":27369,"tid":27369,"ts":326458345296,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":244,"tdur":61,"tts":1763589},
-{"pid":27369,"tid":27369,"ts":326458345327,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":183,"tdur":0,"tts":1763619},
-{"pid":27369,"tid":27369,"ts":326458345327,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":1763619},
-{"pid":27369,"tid":27369,"ts":326458345540,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1763650,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458345540,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1763680},
-{"pid":27369,"tid":27369,"ts":326458345632,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1763741},
-{"pid":27369,"tid":27369,"ts":326458345662,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1763772},
-{"pid":27369,"tid":27369,"ts":326458345662,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1763772},
-{"pid":27369,"tid":27369,"ts":326458345693,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":245,"tts":1763802},
-{"pid":27369,"tid":27369,"ts":326458345693,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1763802},
-{"pid":27369,"tid":27369,"ts":326458345723,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":153,"tts":1763863},
-{"pid":27369,"tid":27369,"ts":326458345967,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1764077,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458345998,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1764138,"id":"0x30000001f"},
-{"pid":27369,"tid":27369,"ts":326458346028,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1764138},
-{"pid":27369,"tid":27369,"ts":326458346059,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6399},"dur":61,"tdur":61,"tts":1764169},
-{"pid":27369,"tid":27369,"ts":326458346059,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1764169},
-{"pid":27369,"tid":27369,"ts":326458346090,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1764199,"id":"0xaf8a6c67febbc614"},
-{"pid":27369,"tid":27369,"ts":326458346151,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":0,"tts":1764260},
-{"pid":27369,"tid":27369,"ts":326458346151,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1764260},
-{"pid":27369,"tid":27369,"ts":326458346273,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1764382},
-{"pid":27369,"tid":27369,"ts":326458353445,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1764687},
-{"pid":27369,"tid":27369,"ts":326458353872,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1765115},
-{"pid":27369,"tid":27369,"ts":326458353933,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":1765176},
-{"pid":27369,"tid":27369,"ts":326458354055,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":428,"tdur":244,"tts":1765298},
-{"pid":27369,"tid":27369,"ts":326458345000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1765328,"id":"0x300000021"},
-{"pid":27369,"tid":27369,"ts":326458354116,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901921},"tts":1765359,"id":"0x300000021"},
-{"pid":27369,"tid":27369,"ts":326458354116,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":367,"tdur":183,"tts":1765359},
-{"pid":27369,"tid":27369,"ts":326458354147,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1765389,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458354147,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":336,"tdur":153,"tts":1765389},
-{"pid":27369,"tid":27369,"ts":326458354177,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":306,"tdur":122,"tts":1765420},
-{"pid":27369,"tid":27369,"ts":326458354208,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":61,"tts":1765450},
-{"pid":27369,"tid":27369,"ts":326458354208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1765481,"id":"0xaf8a6c60febbc614"},
-{"pid":27369,"tid":27369,"ts":326458354452,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1765511,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458354452,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1765511,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458354513,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1765573},
-{"pid":27369,"tid":27369,"ts":326458354818,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1765878},
-{"pid":27369,"tid":27369,"ts":326458354879,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1765939},
-{"pid":27369,"tid":27369,"ts":326458354879,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458350278},"dur":92,"tdur":91,"tts":1765939},
-{"pid":27369,"tid":27369,"ts":326458354910,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":1765969},
-{"pid":27369,"tid":27369,"ts":326458354910,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1765969,"id":"0xaf8a6c61febbc614"},
-{"pid":27369,"tid":27369,"ts":326458355001,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1766061},
-{"pid":27369,"tid":27369,"ts":326458355093,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1766152},
-{"pid":27369,"tid":27369,"ts":326458355215,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1766274},
-{"pid":27369,"tid":27369,"ts":326458355215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1766305,"id":"0xaf8a677cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458355246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1766305},
-{"pid":27369,"tid":27369,"ts":326458355276,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":1766336},
-{"pid":27369,"tid":27369,"ts":326458355276,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1766336},
-{"pid":27369,"tid":27369,"ts":326458355368,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1766427},
-{"pid":27369,"tid":27369,"ts":326458357291,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1766610},
-{"pid":27369,"tid":27369,"ts":326458357291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1766610,"id":"0xaf8a677dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458357321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":1766641},
-{"pid":27369,"tid":27369,"ts":326458357321,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1766641},
-{"pid":27369,"tid":27369,"ts":326458357382,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1766702,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458357382,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1766702,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458357413,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":31,"tts":1766732},
-{"pid":27369,"tid":27369,"ts":326458357413,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1766732},
-{"pid":27369,"tid":27369,"ts":326458357443,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1766763,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458357535,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1766854},
-{"pid":27369,"tid":27369,"ts":326458359610,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1767007},
-{"pid":27369,"tid":27369,"ts":326458359610,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1767007,"id":"0xaf8a677efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458359641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":457,"tdur":458,"tts":1767037},
-{"pid":27369,"tid":27369,"ts":326458359641,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":457,"tdur":458,"tts":1767037},
-{"pid":27369,"tid":27369,"ts":326458359671,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":397,"tts":1767068},
-{"pid":27369,"tid":27369,"ts":326458359854,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":61,"tts":1767251},
-{"pid":27369,"tid":27369,"ts":326458359854,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1767251},
-{"pid":27369,"tid":27369,"ts":326458359885,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1767282,"id":"0xaf8a677ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458359976,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1767373},
-{"pid":27369,"tid":27369,"ts":326458360037,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1767465},
-{"pid":27369,"tid":27369,"ts":326458360159,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1767556},
-{"pid":27369,"tid":27369,"ts":326458360251,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1767648},
-{"pid":27369,"tid":27369,"ts":326458360251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1767648,"id":"0xaf8a677ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458360251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1679,"tdur":1374,"tts":1767678},
-{"pid":27369,"tid":27369,"ts":326458360281,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1767678},
-{"pid":27369,"tid":27369,"ts":326458360281,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1557,"tdur":1374,"tts":1767678},
-{"pid":27369,"tid":27369,"ts":326458360312,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":56},"dur":61,"tdur":61,"tts":1767709},
-{"pid":27369,"tid":27369,"ts":326458360312,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":31,"tts":1767739},
-{"pid":27369,"tid":27369,"ts":326458360373,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1767770},
-{"pid":27369,"tid":27369,"ts":326458360404,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1767801,"id":"0x300000020"},
-{"pid":27369,"tid":27369,"ts":326458360404,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1767801},
-{"pid":27369,"tid":27369,"ts":326458360434,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1767831},
-{"pid":27369,"tid":27369,"ts":326458360434,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":1767831},
-{"pid":27369,"tid":27369,"ts":326458360648,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1768045},
-{"pid":27369,"tid":27369,"ts":326458360678,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1768075},
-{"pid":27369,"tid":27369,"ts":326458360678,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":91,"tts":1768106},
-{"pid":27369,"tid":27369,"ts":326458360709,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":56},"dur":30,"tdur":30,"tts":1768106},
-{"pid":27369,"tid":27369,"ts":326458360739,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":56},"dur":31,"tdur":31,"tts":1768136},
-{"pid":27369,"tid":27369,"ts":326458360770,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":56},"tts":1768167},
-{"pid":27369,"tid":27369,"ts":326458360770,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1768167},
-{"pid":27369,"tid":27369,"ts":326458360770,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1768167},
-{"pid":27369,"tid":27369,"ts":326458360800,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1768197},
-{"pid":27369,"tid":27369,"ts":326458360831,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1768228},
-{"pid":27369,"tid":27369,"ts":326458360831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1768258,"id":"0xaf8a6c62febbc614"},
-{"pid":27369,"tid":27369,"ts":326458360922,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":916,"tdur":733,"tts":1768319},
-{"pid":27369,"tid":27369,"ts":326458360953,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":56},"dur":336,"tdur":152,"tts":1768350},
-{"pid":27369,"tid":27369,"ts":326458360953,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":1768350},
-{"pid":27369,"tid":27369,"ts":326458360983,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":184,"tdur":0,"tts":1768380},
-{"pid":27369,"tid":27369,"ts":326458360983,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":184,"tdur":0,"tts":1768380},
-{"pid":27369,"tid":27369,"ts":326458361197,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1768411,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458361197,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1768411},
-{"pid":27369,"tid":27369,"ts":326458361289,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1768502},
-{"pid":27369,"tid":27369,"ts":326458361289,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":305,"tts":1768533},
-{"pid":27369,"tid":27369,"ts":326458361319,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1768533},
-{"pid":27369,"tid":27369,"ts":326458361319,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1768533},
-{"pid":27369,"tid":27369,"ts":326458361350,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1768564},
-{"pid":27369,"tid":27369,"ts":326458361380,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1768594},
-{"pid":27369,"tid":27369,"ts":326458361594,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1768808,"s":"t"},
-{"pid":27369,"tid":27407,"ts":326458360922,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1391454},
-{"pid":27369,"tid":27407,"ts":326458360953,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1391454,"id":"0xba443702"},
-{"pid":27369,"tid":27407,"ts":326458362113,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1391606,"id":"0xaf8a6c63febbc614"},
-{"pid":27369,"tid":27407,"ts":326458362143,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1391637},
-{"pid":27369,"tid":27407,"ts":326458362143,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1391637,"id":"0xba443802"},
-{"pid":27369,"tid":27407,"ts":326458366263,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":183,"tts":1391790},
-{"pid":27369,"tid":27407,"ts":326458366325,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1391820},
-{"pid":27369,"tid":27407,"ts":326458366325,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1391820,"id":"0xc4c0fb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458366355,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1391851,"id":"0xaf8a6778feb47934"},
-{"pid":27369,"tid":27407,"ts":326458368614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1392064,"id":"0xaf8a6c7cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458368644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1392095},
-{"pid":27369,"tid":27407,"ts":326458368644,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1392095,"id":"0xba443902"},
-{"pid":27369,"tid":27407,"ts":326458369316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1392217,"id":"0xaf8a6c7dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458369346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1392247},
-{"pid":27369,"tid":27407,"ts":326458369346,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1392247,"id":"0xba443a02"},
-{"pid":27369,"tid":27407,"ts":326458373070,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1392400},
-{"pid":27369,"tid":27407,"ts":326458373100,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":1392430},
-{"pid":27369,"tid":27407,"ts":326458373100,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1392430,"id":"0xccc3a802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458373131,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1392461,"id":"0xaf8a6779feb47934"},
-{"pid":27369,"tid":27407,"ts":326458376122,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1392644},
-{"pid":27369,"tid":27407,"ts":326458376183,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":152,"tts":1392675},
-{"pid":27369,"tid":27407,"ts":326458376213,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1392705,"id":"0xccc3aa02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458376244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1392736,"id":"0xaf8a677afeb47934"},
-{"pid":27369,"tid":27407,"ts":326458377739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1392919,"id":"0xaf8a6c7efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458377739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1392919},
-{"pid":27369,"tid":27407,"ts":326458377770,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1392949,"id":"0xba443b02"},
-{"pid":27369,"tid":27407,"ts":326458378594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1393071,"id":"0xaf8a6c7ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458378624,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1393071},
-{"pid":27369,"tid":27407,"ts":326458378624,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1393071,"id":"0xba443c02"},
-{"pid":27369,"tid":27407,"ts":326458384362,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1393193},
-{"pid":27369,"tid":27407,"ts":326458384423,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1393254},
-{"pid":27369,"tid":27407,"ts":326458384423,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1393254,"id":"0xc4c0fe02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458384454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1393285,"id":"0xaf8a6774feb47934"},
-{"pid":27369,"tid":27407,"ts":326458385217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1393438,"id":"0xaf8a6c78febbc614"},
-{"pid":27369,"tid":27407,"ts":326458385247,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1393468},
-{"pid":27369,"tid":27407,"ts":326458385247,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1393468,"id":"0xba443d02"},
-{"pid":27369,"tid":27407,"ts":326458385919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1393621,"id":"0xaf8a6c79febbc614"},
-{"pid":27369,"tid":27407,"ts":326458385949,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1393621},
-{"pid":27369,"tid":27407,"ts":326458385949,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1393621,"id":"0xba443e02"},
-{"pid":27369,"tid":27407,"ts":326458388635,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1393743},
-{"pid":27369,"tid":27407,"ts":326458388665,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":1393773},
-{"pid":27369,"tid":27407,"ts":326458388665,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1393773,"id":"0xccc3ac02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458388696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1393804,"id":"0xaf8a6775feb47934"},
-{"pid":27369,"tid":27407,"ts":326458392114,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1393956},
-{"pid":27369,"tid":27407,"ts":326458392206,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1394048},
-{"pid":27369,"tid":27407,"ts":326458392206,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1394048,"id":"0xccc3af02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458392236,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1394079,"id":"0xaf8a6776feb47934"},
-{"pid":27369,"tid":27407,"ts":326458394525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394292,"id":"0xaf8a6c7afebbc614"},{"pid":27369,"tid":27407,"ts":326458394556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1394323},
-{"pid":27369,"tid":27407,"ts":326458394556,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1394323,"id":"0xba443f02"},
-{"pid":27369,"tid":27407,"ts":326458395441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394475,"id":"0xaf8a6c7bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458395441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1394475},
-{"pid":27369,"tid":27407,"ts":326458395471,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1394506,"id":"0xba444002"},
-{"pid":27369,"tid":27407,"ts":326458402674,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":305,"tdur":153,"tts":1394628},
-{"pid":27369,"tid":27407,"ts":326458402735,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":214,"tdur":92,"tts":1394658},
-{"pid":27369,"tid":27407,"ts":326458402735,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1394658},
-{"pid":27369,"tid":27407,"ts":326458402888,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1394689,"id":"0xc4c10102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458402888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1394689,"id":"0xaf8a6770feb47934"},
-{"pid":27369,"tid":27407,"ts":326458403926,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394842,"id":"0xaf8a6c74febbc614"},
-{"pid":27369,"tid":27407,"ts":326458403956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1394872},
-{"pid":27369,"tid":27407,"ts":326458403956,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1394872,"id":"0xba444102"},
-{"pid":27369,"tid":27407,"ts":326458404414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1394994,"id":"0xaf8a6c75febbc614"},
-{"pid":27369,"tid":27407,"ts":326458404444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1395025},
-{"pid":27369,"tid":27407,"ts":326458404444,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1395025,"id":"0xba444202"},
-{"pid":27369,"tid":27369,"ts":326458361655,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1768869,"id":"0x300000020"},
-{"pid":27369,"tid":27369,"ts":326458361685,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":1768899},
-{"pid":27369,"tid":27369,"ts":326458361685,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8911},"dur":92,"tdur":61,"tts":1768930},
-{"pid":27369,"tid":27369,"ts":326458361716,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1768930},
-{"pid":27369,"tid":27369,"ts":326458361746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1768960,"id":"0xaf8a6c63febbc614"},
-{"pid":27369,"tid":27369,"ts":326458361777,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":1768991},
-{"pid":27369,"tid":27369,"ts":326458361808,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1769021},
-{"pid":27369,"tid":27369,"ts":326458361991,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1769113},
-{"pid":27369,"tid":27369,"ts":326458366569,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1769357},
-{"pid":27369,"tid":27369,"ts":326458366599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1769388,"id":"0xaf8a6778feb47934"},
-{"pid":27369,"tid":27369,"ts":326458366599,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":1769388},
-{"pid":27369,"tid":27369,"ts":326458366660,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":1769449},
-{"pid":27369,"tid":27369,"ts":326458366660,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1769449},
-{"pid":27369,"tid":27369,"ts":326458366752,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1769540},
-{"pid":27369,"tid":27369,"ts":326458367606,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1769815},
-{"pid":27369,"tid":27369,"ts":326458368064,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1770303},
-{"pid":27369,"tid":27369,"ts":326458368156,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1770364},
-{"pid":27369,"tid":27369,"ts":326458368278,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":366,"tdur":306,"tts":1770486},
-{"pid":27369,"tid":27369,"ts":326458361000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1770517,"id":"0x300000022"},
-{"pid":27369,"tid":27369,"ts":326458368339,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901922},"tts":1770547,"id":"0x300000022"},
-{"pid":27369,"tid":27369,"ts":326458368339,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":305,"tdur":245,"tts":1770547},
-{"pid":27369,"tid":27369,"ts":326458368369,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1770578,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458368369,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":275,"tdur":183,"tts":1770578},
-{"pid":27369,"tid":27369,"ts":326458368400,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":214,"tdur":153,"tts":1770608},
-{"pid":27369,"tid":27369,"ts":326458368491,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":1770669},
-{"pid":27369,"tid":27369,"ts":326458368522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1770700,"id":"0xaf8a6c7cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458368583,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1770730,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458368614,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1770761,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458368644,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1770792},
-{"pid":27369,"tid":27369,"ts":326458369163,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1771005},
-{"pid":27369,"tid":27369,"ts":326458369193,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":489,"tdur":213,"tts":1771036},
-{"pid":27369,"tid":27369,"ts":326458369224,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458366954},"dur":61,"tdur":61,"tts":1771066},
-{"pid":27369,"tid":27369,"ts":326458369224,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1771066},
-{"pid":27369,"tid":27369,"ts":326458369254,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1771097,"id":"0xaf8a6c7dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458369712,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1771280},
-{"pid":27369,"tid":27369,"ts":326458369804,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1771371},
-{"pid":27369,"tid":27369,"ts":326458373314,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1771677},
-{"pid":27369,"tid":27369,"ts":326458373344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1771707,"id":"0xaf8a6779feb47934"},
-{"pid":27369,"tid":27369,"ts":326458373344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":1771707},
-{"pid":27369,"tid":27369,"ts":326458373344,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1771707},
-{"pid":27369,"tid":27369,"ts":326458373405,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1771768,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458373436,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1771799,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458373436,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1771799},
-{"pid":27369,"tid":27369,"ts":326458373436,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":1771799},
-{"pid":27369,"tid":27369,"ts":326458373466,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1771829,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458373649,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1772012},
-{"pid":27369,"tid":27369,"ts":326458376427,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1772195},
-{"pid":27369,"tid":27369,"ts":326458376457,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1772226,"id":"0xaf8a677afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458376457,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":427,"tts":1772226},
-{"pid":27369,"tid":27369,"ts":326458376457,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":1772226},
-{"pid":27369,"tid":27369,"ts":326458376488,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":366,"tts":1772287},
-{"pid":27369,"tid":27369,"ts":326458376671,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":61,"tts":1772470},
-{"pid":27369,"tid":27369,"ts":326458376701,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1772470},
-{"pid":27369,"tid":27369,"ts":326458376732,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1772501,"id":"0xaf8a677bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458376793,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1772562},
-{"pid":27369,"tid":27369,"ts":326458376854,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1772623},
-{"pid":27369,"tid":27369,"ts":326458376946,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1772714},
-{"pid":27369,"tid":27369,"ts":326458377037,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1772806},
-{"pid":27369,"tid":27369,"ts":326458377037,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1772806,"id":"0xaf8a677bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458377068,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1404,"tts":1772836},
-{"pid":27369,"tid":27369,"ts":326458377068,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":1772836},
-{"pid":27369,"tid":27369,"ts":326458377098,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1557,"tdur":1373,"tts":1772867},
-{"pid":27369,"tid":27369,"ts":326458377098,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":57},"dur":61,"tdur":61,"tts":1772867},
-{"pid":27369,"tid":27369,"ts":326458377129,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":1772897},
-{"pid":27369,"tid":27369,"ts":326458377159,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":1772928},
-{"pid":27369,"tid":27369,"ts":326458377190,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1772958,"id":"0x300000021"},
-{"pid":27369,"tid":27369,"ts":326458377220,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1772989},
-{"pid":27369,"tid":27369,"ts":326458377220,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1772989},
-{"pid":27369,"tid":27369,"ts":326458377251,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":1773019},
-{"pid":27369,"tid":27369,"ts":326458377464,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1773233},
-{"pid":27369,"tid":27369,"ts":326458377495,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1773264},
-{"pid":27369,"tid":27369,"ts":326458377495,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1773264},
-{"pid":27369,"tid":27369,"ts":326458377526,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":57},"dur":30,"tdur":31,"tts":1773294},
-{"pid":27369,"tid":27369,"ts":326458377556,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":57},"dur":31,"tdur":30,"tts":1773325},
-{"pid":27369,"tid":27369,"ts":326458377587,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":57},"tts":1773355},
-{"pid":27369,"tid":27369,"ts":326458377587,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1773355},
-{"pid":27369,"tid":27369,"ts":326458377587,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1773355},
-{"pid":27369,"tid":27369,"ts":326458377617,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1773386},
-{"pid":27369,"tid":27369,"ts":326458377648,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1773416},
-{"pid":27369,"tid":27369,"ts":326458377648,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1773416,"id":"0xaf8a6c7efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458377739,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":885,"tdur":702,"tts":1773508},
-{"pid":27369,"tid":27369,"ts":326458377739,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":57},"dur":366,"tdur":153,"tts":1773538},
-{"pid":27369,"tid":27369,"ts":326458377770,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":1773538},
-{"pid":27369,"tid":27369,"ts":326458377770,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":213,"tdur":31,"tts":1773538},
-{"pid":27369,"tid":27369,"ts":326458377770,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":213,"tdur":31,"tts":1773538},
-{"pid":27369,"tid":27369,"ts":326458377770,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":31,"tts":1773538},
-{"pid":27369,"tid":27369,"ts":326458377983,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1773569,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458378014,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1773599},
-{"pid":27369,"tid":27369,"ts":326458378075,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1773691},
-{"pid":27369,"tid":27369,"ts":326458378105,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1773691},
-{"pid":27369,"tid":27369,"ts":326458378136,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1773721},
-{"pid":27369,"tid":27369,"ts":326458378136,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1773721},
-{"pid":27369,"tid":27369,"ts":326458378136,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":62,"tts":1773721},
-{"pid":27369,"tid":27369,"ts":326458378197,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1773783},
-{"pid":27369,"tid":27369,"ts":326458378411,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1773996,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458378472,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1774057,"id":"0x300000021"},
-{"pid":27369,"tid":27369,"ts":326458378472,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":1774057},
-{"pid":27369,"tid":27369,"ts":326458378502,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11423},"dur":92,"tdur":91,"tts":1774088},
-{"pid":27369,"tid":27369,"ts":326458378533,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1774118},
-{"pid":27369,"tid":27369,"ts":326458378533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1774118,"id":"0xaf8a6c7ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458378594,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":1774179},
-{"pid":27369,"tid":27369,"ts":326458378594,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1774179},
-{"pid":27369,"tid":27369,"ts":326458378716,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1774332},
-{"pid":27369,"tid":27369,"ts":326458384179,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1774729},
-{"pid":27369,"tid":27369,"ts":326458384698,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1775186},
-{"pid":27369,"tid":27369,"ts":326458384789,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1775278},
-{"pid":27369,"tid":27369,"ts":326458384881,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":366,"tdur":274,"tts":1775370},
-{"pid":27369,"tid":27369,"ts":326458378000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1775400,"id":"0x300000023"},
-{"pid":27369,"tid":27369,"ts":326458385034,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901923},"tts":1775431,"id":"0x300000023"},
-{"pid":27369,"tid":27369,"ts":326458385034,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":213,"tts":1775431},
-{"pid":27369,"tid":27369,"ts":326458385064,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1775461,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458385064,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":152,"tts":1775492},
-{"pid":27369,"tid":27369,"ts":326458385095,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":122,"tts":1775492},
-{"pid":27369,"tid":27369,"ts":326458385125,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1775522},
-{"pid":27369,"tid":27369,"ts":326458385156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1775553,"id":"0xaf8a6c78febbc614"},
-{"pid":27369,"tid":27369,"ts":326458385217,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1775614,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458385217,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1775614,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458385247,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1775644},
-{"pid":27369,"tid":27369,"ts":326458385766,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1775919},
-{"pid":27369,"tid":27369,"ts":326458385797,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":1775949},
-{"pid":27369,"tid":27369,"ts":326458385827,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458383631},"dur":92,"tdur":92,"tts":1775980},
-{"pid":27369,"tid":27369,"ts":326458385827,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":1775980},
-{"pid":27369,"tid":27369,"ts":326458385858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1776010,"id":"0xaf8a6c79febbc614"},
-{"pid":27369,"tid":27369,"ts":326458385949,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1776102},
-{"pid":27369,"tid":27369,"ts":326458386071,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1776224},
-{"pid":27369,"tid":27369,"ts":326458386193,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1776346},
-{"pid":27369,"tid":27369,"ts":326458386224,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1776377,"id":"0xaf8a6774feb47934"},
-{"pid":27369,"tid":27369,"ts":326458386224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1776377},
-{"pid":27369,"tid":27369,"ts":326458386254,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":1776438},
-{"pid":27369,"tid":27369,"ts":326458386285,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1776438},
-{"pid":27369,"tid":27369,"ts":326458386376,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1776529},
-{"pid":27369,"tid":27369,"ts":326458388879,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1776712},
-{"pid":27369,"tid":27369,"ts":326458388879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1776712,"id":"0xaf8a6775feb47934"},
-{"pid":27369,"tid":27369,"ts":326458388910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":1776743},
-{"pid":27369,"tid":27369,"ts":326458388910,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1776743},
-{"pid":27369,"tid":27369,"ts":326458388971,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1776804,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458388971,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1776804,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458389001,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":1776835},
-{"pid":27369,"tid":27369,"ts":326458389001,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":1776835},
-{"pid":27369,"tid":27369,"ts":326458389032,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1776865,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458389093,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1776957},
-{"pid":27369,"tid":27369,"ts":326458393182,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1777140},
-{"pid":27369,"tid":27369,"ts":326458393213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1777170,"id":"0xaf8a6776feb47934"},
-{"pid":27369,"tid":27369,"ts":326458393213,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1777170},
-{"pid":27369,"tid":27369,"ts":326458393243,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":1777201},
-{"pid":27369,"tid":27369,"ts":326458393274,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":367,"tts":1777231},
-{"pid":27369,"tid":27369,"ts":326458393457,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1777414},
-{"pid":27369,"tid":27369,"ts":326458393488,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1777445},
-{"pid":27369,"tid":27369,"ts":326458393488,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1777445,"id":"0xaf8a6777feb47934"},
-{"pid":27369,"tid":27369,"ts":326458393579,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1777537},
-{"pid":27369,"tid":27369,"ts":326458393640,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1777598},
-{"pid":27369,"tid":27369,"ts":326458393732,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1777689},
-{"pid":27369,"tid":27369,"ts":326458393793,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1777781},
-{"pid":27369,"tid":27369,"ts":326458393823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1777781,"id":"0xaf8a6777feb47934"},
-{"pid":27369,"tid":27369,"ts":326458393823,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1679,"tdur":1495,"tts":1777781},
-{"pid":27369,"tid":27369,"ts":326458393854,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1777811},
-{"pid":27369,"tid":27369,"ts":326458393854,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1617,"tdur":1435,"tts":1777811},
-{"pid":27369,"tid":27369,"ts":326458393884,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":58},"dur":61,"tdur":61,"tts":1777842},
-{"pid":27369,"tid":27369,"ts":326458393884,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1777842},
-{"pid":27369,"tid":27369,"ts":326458393945,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":1777903},
-{"pid":27369,"tid":27369,"ts":326458393945,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1777933,"id":"0x300000022"},
-{"pid":27369,"tid":27369,"ts":326458393976,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1777933},
-{"pid":27369,"tid":27369,"ts":326458393976,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":1777933},
-{"pid":27369,"tid":27369,"ts":326458394007,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":1777964},
-{"pid":27369,"tid":27369,"ts":326458394251,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1778208},
-{"pid":27369,"tid":27369,"ts":326458394281,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1778238},
-{"pid":27369,"tid":27369,"ts":326458394281,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":1778238},
-{"pid":27369,"tid":27369,"ts":326458394312,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":58},"dur":30,"tdur":31,"tts":1778269},
-{"pid":27369,"tid":27369,"ts":326458394342,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":58},"dur":31,"tdur":30,"tts":1778300},
-{"pid":27369,"tid":27369,"ts":326458394373,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":58},"tts":1778330},
-{"pid":27369,"tid":27369,"ts":326458394373,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1778330},
-{"pid":27369,"tid":27369,"ts":326458394373,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1778330},
-{"pid":27369,"tid":27369,"ts":326458394403,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1778361},
-{"pid":27369,"tid":27369,"ts":326458394434,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1778391},
-{"pid":27369,"tid":27369,"ts":326458394434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1778391,"id":"0xaf8a6c7afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458394525,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":946,"tdur":763,"tts":1778483},
-{"pid":27369,"tid":27369,"ts":326458394556,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":58},"dur":336,"tdur":153,"tts":1778513},
-{"pid":27369,"tid":27369,"ts":326458394556,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":1778513},
-{"pid":27369,"tid":27369,"ts":326458394556,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":214,"tdur":0,"tts":1778544},
-{"pid":27369,"tid":27369,"ts":326458394586,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":184,"tdur":0,"tts":1778544},
-{"pid":27369,"tid":27369,"ts":326458394800,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1778574,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458394800,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1778574},
-{"pid":27369,"tid":27369,"ts":326458394892,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1778666},
-{"pid":27369,"tid":27369,"ts":326458394922,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1778696},
-{"pid":27369,"tid":27369,"ts":326458394922,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1778696},
-{"pid":27369,"tid":27369,"ts":326458394953,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":274,"tts":1778727},
-{"pid":27369,"tid":27369,"ts":326458394953,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1778727},
-{"pid":27369,"tid":27369,"ts":326458394983,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":183,"tts":1778788},
-{"pid":27369,"tid":27369,"ts":326458395227,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1779001,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458395288,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1779063,"id":"0x300000022"},
-{"pid":27369,"tid":27369,"ts":326458395288,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":1779063},
-{"pid":27369,"tid":27369,"ts":326458395319,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14330},"dur":91,"tdur":92,"tts":1779093},
-{"pid":27369,"tid":27369,"ts":326458395349,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1779124},
-{"pid":27369,"tid":27369,"ts":326458395380,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1779154,"id":"0xaf8a6c7bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458395410,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":0,"tts":1779215},
-{"pid":27369,"tid":27369,"ts":326458395441,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1779215},
-{"pid":27369,"tid":27369,"ts":326458395563,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1779337},
-{"pid":27369,"tid":27369,"ts":326458402674,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1779673},
-{"pid":27369,"tid":27369,"ts":326458402674,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":1779673},
-{"pid":27369,"tid":27369,"ts":326458403468,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1780131},
-{"pid":27369,"tid":27369,"ts":326458403529,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":183,"tdur":122,"tts":1780192},
-{"pid":27369,"tid":27369,"ts":326458403529,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1780192},
-{"pid":27369,"tid":27369,"ts":326458403712,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":1780314},
-{"pid":27369,"tid":27369,"ts":326458395000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1780344,"id":"0x300000024"},
-{"pid":27369,"tid":27369,"ts":326458403743,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901924},"tts":1780375,"id":"0x300000024"},
-{"pid":27369,"tid":27369,"ts":326458403773,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":1780375},
-{"pid":27369,"tid":27369,"ts":326458403773,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1780375,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458403804,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":153,"tts":1780405},
-{"pid":27369,"tid":27369,"ts":326458403804,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":153,"tts":1780405},
-{"pid":27369,"tid":27369,"ts":326458403834,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1780436},
-{"pid":27369,"tid":27369,"ts":326458403865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1780466,"id":"0xaf8a6c74febbc614"},
-{"pid":27369,"tid":27369,"ts":326458403926,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1780528,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458403956,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1780558,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458403987,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1780589},
-{"pid":27369,"tid":27369,"ts":326458404261,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1780863},
-{"pid":27369,"tid":27369,"ts":326458404322,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1780924},
-{"pid":27369,"tid":27369,"ts":326458404322,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458400307},"dur":92,"tdur":92,"tts":1780924},
-{"pid":27369,"tid":27369,"ts":326458404353,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":1780955},
-{"pid":27369,"tid":27369,"ts":326458404353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1780955,"id":"0xaf8a6c75febbc614"},
-{"pid":27369,"tid":27369,"ts":326458404444,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1781046},
-{"pid":27369,"tid":27369,"ts":326458404536,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1781138},
-{"pid":27369,"tid":27369,"ts":326458404628,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1781229},
-{"pid":27369,"tid":27369,"ts":326458404658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1781260,"id":"0xaf8a6770feb47934"},
-{"pid":27369,"tid":27369,"ts":326458404658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1781260},
-{"pid":27369,"tid":27369,"ts":326458404689,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1781291},
-{"pid":27369,"tid":27369,"ts":326458404719,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1781321},
-{"pid":27369,"tid":27369,"ts":326458404811,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1781413},
-{"pid":27369,"tid":27369,"ts":326458407039,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1781565},
-{"pid":27369,"tid":27369,"ts":326458407069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1781596,"id":"0xaf8a6771feb47934"},
-{"pid":27369,"tid":27369,"ts":326458407069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1781596},
-{"pid":27369,"tid":27369,"ts":326458407069,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":1781596},
-{"pid":27369,"tid":27369,"ts":326458407130,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":1781657},
-{"pid":27369,"tid":27369,"ts":326458407313,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":1781840},
-{"pid":27369,"tid":27369,"ts":326458407344,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1781870},
-{"pid":27369,"tid":27369,"ts":326458407344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1781870,"id":"0xaf8a6772feb47934"},
-{"pid":27369,"tid":27369,"ts":326458407435,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1781962},
-{"pid":27369,"tid":27369,"ts":326458407497,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1782023},
-{"pid":27369,"tid":27369,"ts":326458407619,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1782145},
-{"pid":27369,"tid":27369,"ts":326458407710,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1782237},
-{"pid":27369,"tid":27369,"ts":326458407741,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1782267,"id":"0xaf8a6772feb47934"},
-{"pid":27369,"tid":27369,"ts":326458407741,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1465,"tdur":1465,"tts":1782267},
-{"pid":27369,"tid":27369,"ts":326458407771,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1782298},
-{"pid":27369,"tid":27369,"ts":326458407771,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1435,"tdur":1434,"tts":1782298},
-{"pid":27369,"tid":27369,"ts":326458407802,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":59},"dur":61,"tdur":61,"tts":1782328},
-{"pid":27369,"tid":27369,"ts":326458407802,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1782328},
-{"pid":27369,"tid":27369,"ts":326458407863,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1782389},
-{"pid":27369,"tid":27369,"ts":326458407863,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1782389,"id":"0x300000023"},
-{"pid":27369,"tid":27369,"ts":326458407893,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1782420},
-{"pid":27369,"tid":27369,"ts":326458407893,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":1782420},
-{"pid":27369,"tid":27369,"ts":326458407924,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":1782450},
-{"pid":27369,"tid":27369,"ts":326458408137,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1782664},
-{"pid":27369,"tid":27369,"ts":326458408168,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":1782694},
-{"pid":27369,"tid":27369,"ts":326458408198,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":123,"tdur":122,"tts":1782725},
-{"pid":27369,"tid":27369,"ts":326458408198,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":59},"dur":31,"tdur":30,"tts":1782725},
-{"pid":27369,"tid":27369,"ts":326458408229,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":59},"dur":31,"tdur":31,"tts":1782755},
-{"pid":27369,"tid":27369,"ts":326458408260,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":59},"tts":1782786},
-{"pid":27369,"tid":27407,"ts":326458406764,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1395116},
-{"pid":27369,"tid":27407,"ts":326458406825,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1395177},
-{"pid":27369,"tid":27407,"ts":326458406825,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1395177,"id":"0xccc3b202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458406856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1395208,"id":"0xaf8a6771feb47934"},
-{"pid":27369,"tid":27407,"ts":326458407527,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1395391},
-{"pid":27369,"tid":27407,"ts":326458407558,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1395421},
-{"pid":27369,"tid":27407,"ts":326458407588,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1395452,"id":"0xccc3b302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458407588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1395452,"id":"0xaf8a6773feb47934"},
-{"pid":27369,"tid":27407,"ts":326458408412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1395574,"id":"0xaf8a6c76febbc614"},
-{"pid":27369,"tid":27407,"ts":326458408443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1395605},
-{"pid":27369,"tid":27407,"ts":326458408443,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1395605,"id":"0xba444302"},
-{"pid":27369,"tid":27407,"ts":326458409145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1395696,"id":"0xaf8a6c77febbc614"},
-{"pid":27369,"tid":27407,"ts":326458409175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1395727},
-{"pid":27369,"tid":27407,"ts":326458409175,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1395727,"id":"0xba444402"},
-{"pid":27369,"tid":27407,"ts":326458413540,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":183,"tts":1395818},
-{"pid":27369,"tid":27407,"ts":326458413570,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":122,"tts":1395849},
-{"pid":27369,"tid":27407,"ts":326458413601,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1395879,"id":"0xc4c10402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458413601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1395879,"id":"0xaf8a670cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458418270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1396093,"id":"0xaf8a6c70febbc614"},
-{"pid":27369,"tid":27407,"ts":326458418301,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1396093},
-{"pid":27369,"tid":27407,"ts":326458418301,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1396093,"id":"0xba444502"},
-{"pid":27369,"tid":27407,"ts":326458419674,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1396245,"id":"0xaf8a6c71febbc614"},
-{"pid":27369,"tid":27407,"ts":326458419674,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1396245},
-{"pid":27369,"tid":27407,"ts":326458419705,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1396276,"id":"0xba444602"},
-{"pid":27369,"tid":27407,"ts":326458420803,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1396398},
-{"pid":27369,"tid":27407,"ts":326458420834,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1396429},
-{"pid":27369,"tid":27407,"ts":326458420834,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1396429,"id":"0xccc3b502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458420864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1396459,"id":"0xaf8a670dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458435056,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1396642,"id":"0xaf8a6c72febbc614"},
-{"pid":27369,"tid":27407,"ts":326458435087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1396642},
-{"pid":27369,"tid":27407,"ts":326458435087,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1396642,"id":"0xba444702"},
-{"pid":27369,"tid":27407,"ts":326458435697,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1396764,"id":"0xaf8a6c73febbc614"},
-{"pid":27369,"tid":27407,"ts":326458435728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":1396795},
-{"pid":27369,"tid":27407,"ts":326458435728,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1396795,"id":"0xba444802"},
-{"pid":27369,"tid":27407,"ts":326458436003,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1396886},
-{"pid":27369,"tid":27407,"ts":326458436064,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":91,"tdur":92,"tts":1396947},
-{"pid":27369,"tid":27407,"ts":326458436064,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1396947,"id":"0xccc3b702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458436094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1396978,"id":"0xaf8a670efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458437529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1397131,"id":"0xaf8a6c0cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458437559,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1397161},
-{"pid":27369,"tid":27407,"ts":326458437559,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1397161,"id":"0xba444902"},
-{"pid":27369,"tid":27407,"ts":326458437834,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":92,"tts":1397283},
-{"pid":27369,"tid":27407,"ts":326458437864,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1397314},
-{"pid":27369,"tid":27407,"ts":326458437864,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1397314,"id":"0xccc3b902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458437864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1397314,"id":"0xaf8a6708feb47934"},
-{"pid":27369,"tid":27407,"ts":326458438292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1397436,"id":"0xaf8a6c0dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458438322,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1397466},
-{"pid":27369,"tid":27407,"ts":326458438322,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1397466,"id":"0xba444a02"},
-{"pid":27369,"tid":27407,"ts":326458442839,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":183,"tts":1397558},
-{"pid":27369,"tid":27407,"ts":326458442900,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1397619},
-{"pid":27369,"tid":27407,"ts":326458442900,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1397619,"id":"0xc4c10702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458442931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1397649,"id":"0xaf8a6709feb47934"},
-{"pid":27369,"tid":27407,"ts":326458451843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1397863,"id":"0xaf8a6c0efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458451873,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1397894},
-{"pid":27369,"tid":27407,"ts":326458451873,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1397894,"id":"0xba444b02"},
-{"pid":27369,"tid":27407,"ts":326458452392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398016,"id":"0xaf8a6c0ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458452423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1398046},
-{"pid":27369,"tid":27407,"ts":326458452423,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398046,"id":"0xba444c02"},
-{"pid":27369,"tid":27407,"ts":326458455169,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1398138},
-{"pid":27369,"tid":27407,"ts":326458455230,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1398168},
-{"pid":27369,"tid":27407,"ts":326458455230,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398168,"id":"0xccc3bb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458455261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1398229,"id":"0xaf8a670afeb47934"},
-{"pid":27369,"tid":27407,"ts":326458456604,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398382,"id":"0xaf8a6c08febbc614"},
-{"pid":27369,"tid":27407,"ts":326458456634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1398412},
-{"pid":27369,"tid":27369,"ts":326458408260,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1782786},
-{"pid":27369,"tid":27369,"ts":326458408290,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1782817},
-{"pid":27369,"tid":27369,"ts":326458408290,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":1782817},
-{"pid":27369,"tid":27369,"ts":326458408321,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1782847},
-{"pid":27369,"tid":27369,"ts":326458408351,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1782878,"id":"0xaf8a6c76febbc614"},
-{"pid":27369,"tid":27369,"ts":326458408412,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":733,"tts":1782969},
-{"pid":27369,"tid":27369,"ts":326458408443,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":59},"dur":183,"tdur":183,"tts":1782969},
-{"pid":27369,"tid":27369,"ts":326458408473,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":1783000},
-{"pid":27369,"tid":27369,"ts":326458408473,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1783000},
-{"pid":27369,"tid":27369,"ts":326458408473,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1783000},
-{"pid":27369,"tid":27369,"ts":326458408504,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1783030,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458408504,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1783061},
-{"pid":27369,"tid":27369,"ts":326458408626,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1783152},
-{"pid":27369,"tid":27369,"ts":326458408656,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1783183},
-{"pid":27369,"tid":27369,"ts":326458408656,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1783183},
-{"pid":27369,"tid":27369,"ts":326458408656,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":275,"tts":1783213},
-{"pid":27369,"tid":27369,"ts":326458408687,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1783213},
-{"pid":27369,"tid":27369,"ts":326458408748,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1783274},
-{"pid":27369,"tid":27369,"ts":326458408961,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1783488,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458409023,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1783549,"id":"0x300000023"},
-{"pid":27369,"tid":27369,"ts":326458409023,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":1783549},
-{"pid":27369,"tid":27369,"ts":326458409053,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":722},"dur":92,"tdur":91,"tts":1783580},
-{"pid":27369,"tid":27369,"ts":326458409084,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1783610},
-{"pid":27369,"tid":27369,"ts":326458409084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1783610,"id":"0xaf8a6c77febbc614"},
-{"pid":27369,"tid":27369,"ts":326458409145,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":1783671},
-{"pid":27369,"tid":27369,"ts":326458409145,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1783671},
-{"pid":27369,"tid":27369,"ts":326458409267,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1783793},
-{"pid":27369,"tid":27369,"ts":326458409358,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1783885},
-{"pid":27369,"tid":27369,"ts":326458409389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1783915,"id":"0xaf8a6773feb47934"},
-{"pid":27369,"tid":27369,"ts":326458409389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1783915},
-{"pid":27369,"tid":27369,"ts":326458409389,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1783915},
-{"pid":27369,"tid":27369,"ts":326458409450,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1783976,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458409450,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1783976,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458409450,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1783976},
-{"pid":27369,"tid":27369,"ts":326458409480,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":1784007},
-{"pid":27369,"tid":27369,"ts":326458409480,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1784007,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458409572,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1784098},
-{"pid":27369,"tid":27369,"ts":326458413875,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1784404},
-{"pid":27369,"tid":27369,"ts":326458413875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1784404,"id":"0xaf8a670cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458413906,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1784434},
-{"pid":27369,"tid":27369,"ts":326458413936,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1784465},
-{"pid":27369,"tid":27369,"ts":326458413936,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":1784495},
-{"pid":27369,"tid":27369,"ts":326458414058,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1784587},
-{"pid":27369,"tid":27369,"ts":326458417477,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1784800},
-{"pid":27369,"tid":27369,"ts":326458417873,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1785228},
-{"pid":27369,"tid":27369,"ts":326458417934,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":61,"tts":1785289},
-{"pid":27369,"tid":27369,"ts":326458418026,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":1038,"tdur":305,"tts":1785350},
-{"pid":27369,"tid":27369,"ts":326458411000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1785380,"id":"0x300000025"},
-{"pid":27369,"tid":27369,"ts":326458418087,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901925},"tts":1785411,"id":"0x300000025"},
-{"pid":27369,"tid":27369,"ts":326458418087,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":977,"tdur":244,"tts":1785411},
-{"pid":27369,"tid":27369,"ts":326458418118,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1785441,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458418118,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":946,"tdur":183,"tts":1785441},
-{"pid":27369,"tid":27369,"ts":326458418118,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":915,"tdur":183,"tts":1785441},
-{"pid":27369,"tid":27369,"ts":326458418148,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":855,"tdur":122,"tts":1785472},
-{"pid":27369,"tid":27369,"ts":326458418179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1785502,"id":"0xaf8a6c70febbc614"},
-{"pid":27369,"tid":27369,"ts":326458419003,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1785594,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458419033,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1785624,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458419064,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1785655},
-{"pid":27369,"tid":27369,"ts":326458419491,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1785960},
-{"pid":27369,"tid":27369,"ts":326458419552,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1786021},
-{"pid":27369,"tid":27369,"ts":326458419552,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458416983},"dur":92,"tdur":92,"tts":1786021},
-{"pid":27369,"tid":27369,"ts":326458419583,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1786052},
-{"pid":27369,"tid":27369,"ts":326458419583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1786052,"id":"0xaf8a6c71febbc614"},
-{"pid":27369,"tid":27369,"ts":326458419674,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1786143},
-{"pid":27369,"tid":27369,"ts":326458419766,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1786265},
-{"pid":27369,"tid":27369,"ts":326458421017,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1786448},
-{"pid":27369,"tid":27369,"ts":326458421048,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1786479,"id":"0xaf8a670dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458421048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":1786479},
-{"pid":27369,"tid":27369,"ts":326458421048,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":1786479},
-{"pid":27369,"tid":27369,"ts":326458421109,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1786540,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458421109,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1786540,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458421139,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":1786571},
-{"pid":27369,"tid":27369,"ts":326458421139,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":1786571},
-{"pid":27369,"tid":27369,"ts":326458421170,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1786601,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458421261,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1786693},
-{"pid":27369,"tid":27369,"ts":326458434232,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1787150},
-{"pid":27369,"tid":27369,"ts":326458434660,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1787608},
-{"pid":27369,"tid":27369,"ts":326458434751,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1787669},
-{"pid":27369,"tid":27369,"ts":326458434843,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":1787761},
-{"pid":27369,"tid":27369,"ts":326458428000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1787791,"id":"0x300000026"},
-{"pid":27369,"tid":27369,"ts":326458434904,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901926},"tts":1787822,"id":"0x300000026"},
-{"pid":27369,"tid":27369,"ts":326458434904,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":1787822},
-{"pid":27369,"tid":27369,"ts":326458434904,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1787822,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458434934,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1787852},
-{"pid":27369,"tid":27369,"ts":326458434934,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1787852},
-{"pid":27369,"tid":27369,"ts":326458434965,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1787883},
-{"pid":27369,"tid":27369,"ts":326458434995,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1787913,"id":"0xaf8a6c72febbc614"},
-{"pid":27369,"tid":27369,"ts":326458435026,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1787974,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458435056,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1787974,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458435087,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1788005},
-{"pid":27369,"tid":27369,"ts":326458435514,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1788249},
-{"pid":27369,"tid":27369,"ts":326458435606,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":91,"tts":1788280},
-{"pid":27369,"tid":27369,"ts":326458435606,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458433660},"dur":61,"tdur":61,"tts":1788280},
-{"pid":27369,"tid":27369,"ts":326458435636,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":1788310},
-{"pid":27369,"tid":27369,"ts":326458435636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1788310,"id":"0xaf8a6c73febbc614"},
-{"pid":27369,"tid":27369,"ts":326458435728,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1788402},
-{"pid":27369,"tid":27369,"ts":326458435819,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1788493},
-{"pid":27369,"tid":27369,"ts":326458436247,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1788646},
-{"pid":27369,"tid":27369,"ts":326458436277,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1788676,"id":"0xaf8a670efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458436277,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":428,"tts":1788676},
-{"pid":27369,"tid":27369,"ts":326458436277,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":428,"tts":1788676},
-{"pid":27369,"tid":27369,"ts":326458436338,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":367,"tdur":367,"tts":1788737},
-{"pid":27369,"tid":27369,"ts":326458436521,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":1788921},
-{"pid":27369,"tid":27369,"ts":326458436552,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1788951},
-{"pid":27369,"tid":27369,"ts":326458436552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1788951,"id":"0xaf8a670ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458436643,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1789043},
-{"pid":27369,"tid":27369,"ts":326458436674,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1789073},
-{"pid":27369,"tid":27369,"ts":326458436766,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1789165},
-{"pid":27369,"tid":27369,"ts":326458436857,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1789256},
-{"pid":27369,"tid":27369,"ts":326458436888,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1789287,"id":"0xaf8a670ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458436888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1648,"tdur":1465,"tts":1789287},
-{"pid":27369,"tid":27369,"ts":326458436888,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":1789317},
-{"pid":27369,"tid":27369,"ts":326458436918,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1435,"tdur":1435,"tts":1789317},
-{"pid":27369,"tid":27369,"ts":326458436949,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":60},"dur":30,"tdur":30,"tts":1789348},
-{"pid":27369,"tid":27369,"ts":326458436949,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":1789348},
-{"pid":27369,"tid":27369,"ts":326458437010,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":274,"tdur":275,"tts":1789409},
-{"pid":27369,"tid":27369,"ts":326458437010,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1789409,"id":"0x300000024"},
-{"pid":27369,"tid":27369,"ts":326458437010,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1789409,"id":"0x300000025"},
-{"pid":27369,"tid":27369,"ts":326458437040,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1789439},
-{"pid":27369,"tid":27369,"ts":326458437040,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1789439},
-{"pid":27369,"tid":27369,"ts":326458437071,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":1789470},
-{"pid":27369,"tid":27369,"ts":326458437284,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1789684},
-{"pid":27369,"tid":27369,"ts":326458437315,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1789714},
-{"pid":27369,"tid":27369,"ts":326458437315,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1789714},
-{"pid":27369,"tid":27369,"ts":326458437315,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":60},"dur":61,"tdur":61,"tts":1789714},
-{"pid":27369,"tid":27369,"ts":326458437376,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":60},"dur":0,"tdur":0,"tts":1789775},
-{"pid":27369,"tid":27369,"ts":326458437376,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":60},"tts":1789806},
-{"pid":27369,"tid":27369,"ts":326458437406,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1789806},
-{"pid":27369,"tid":27369,"ts":326458437406,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":1789806},
-{"pid":27369,"tid":27369,"ts":326458437437,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1789836},
-{"pid":27369,"tid":27369,"ts":326458437437,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":30,"tts":1789867},
-{"pid":27369,"tid":27369,"ts":326458437468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1789867,"id":"0xaf8a6c0cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458437559,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":1789958},
-{"pid":27369,"tid":27369,"ts":326458437559,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":60},"dur":214,"tdur":214,"tts":1789958},
-{"pid":27369,"tid":27369,"ts":326458437590,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":1789989},
-{"pid":27369,"tid":27369,"ts":326458437590,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1789989},
-{"pid":27369,"tid":27369,"ts":326458437590,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1789989},
-{"pid":27369,"tid":27369,"ts":326458437620,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1790019,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458437651,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1790050},
-{"pid":27369,"tid":27369,"ts":326458437742,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1790141},
-{"pid":27369,"tid":27369,"ts":326458437773,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":336,"tts":1790172},
-{"pid":27369,"tid":27369,"ts":326458437773,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":1790172},
-{"pid":27369,"tid":27369,"ts":326458437803,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1790202},
-{"pid":27369,"tid":27369,"ts":326458437803,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":62,"tts":1790202},
-{"pid":27369,"tid":27369,"ts":326458437864,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1790264},
-{"pid":27369,"tid":27369,"ts":326458438078,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1790477,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458438139,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1790538,"id":"0x300000024"},
-{"pid":27369,"tid":27369,"ts":326458438169,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1790569,"id":"0x300000025"},
-{"pid":27369,"tid":27369,"ts":326458438169,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":1790569},
-{"pid":27369,"tid":27369,"ts":326458438200,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3484},"dur":92,"tdur":61,"tts":1790599},
-{"pid":27369,"tid":27369,"ts":326458438200,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1790599},
-{"pid":27369,"tid":27369,"ts":326458438231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1790630,"id":"0xaf8a6c0dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458438292,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1790691},
-{"pid":27369,"tid":27369,"ts":326458438292,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":1790691},
-{"pid":27369,"tid":27369,"ts":326458438597,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1790843},
-{"pid":27369,"tid":27369,"ts":326458438688,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1790935},
-{"pid":27369,"tid":27369,"ts":326458438688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1790935,"id":"0xaf8a6708feb47934"},
-{"pid":27369,"tid":27369,"ts":326458438719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":123,"tts":1790965},
-{"pid":27369,"tid":27369,"ts":326458438719,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":1790965},
-{"pid":27369,"tid":27369,"ts":326458438749,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1790996,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458438780,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1791027,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458438780,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1791027},
-{"pid":27369,"tid":27369,"ts":326458438780,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":30,"tts":1791027},
-{"pid":27369,"tid":27369,"ts":326458438810,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1791057,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458438902,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1791149},
-{"pid":27369,"tid":27369,"ts":326458443144,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1791332},
-{"pid":27369,"tid":27369,"ts":326458443175,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1791362,"id":"0xaf8a6709feb47934"},
-{"pid":27369,"tid":27369,"ts":326458443205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":1791393},
-{"pid":27369,"tid":27369,"ts":326458443236,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":1791423},
-{"pid":27369,"tid":27369,"ts":326458443266,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1791454},
-{"pid":27369,"tid":27369,"ts":326458443358,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1791545},
-{"pid":27369,"tid":27369,"ts":326458450835,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1792003},
-{"pid":27369,"tid":27369,"ts":326458451385,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1792522},
-{"pid":27369,"tid":27369,"ts":326458451446,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1792583},
-{"pid":27369,"tid":27369,"ts":326458451568,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":305,"tdur":305,"tts":1792705},
-{"pid":27369,"tid":27369,"ts":326458445000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1792736,"id":"0x300000027"},
-{"pid":27369,"tid":27369,"ts":326458451629,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901927},"tts":1792766,"id":"0x300000027"},
-{"pid":27369,"tid":27369,"ts":326458451629,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":244,"tdur":244,"tts":1792766},
-{"pid":27369,"tid":27369,"ts":326458451659,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1792797,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458451659,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":184,"tdur":183,"tts":1792797},
-{"pid":27369,"tid":27369,"ts":326458451690,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":1792827},
-{"pid":27369,"tid":27369,"ts":326458451721,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":1792858},
-{"pid":27369,"tid":27369,"ts":326458451751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1792888,"id":"0xaf8a6c0efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458451812,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1792949,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458451843,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1792980,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458451873,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1793010},
-{"pid":27369,"tid":27369,"ts":326458452209,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1793224},
-{"pid":27369,"tid":27369,"ts":326458452270,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":1793285},
-{"pid":27369,"tid":27369,"ts":326458452270,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458450336},"dur":122,"tdur":91,"tts":1793316},
-{"pid":27369,"tid":27369,"ts":326458452300,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1793316},
-{"pid":27369,"tid":27369,"ts":326458452331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1793346,"id":"0xaf8a6c0ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458452575,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1793590},
-{"pid":27369,"tid":27369,"ts":326458452667,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1793712},
-{"pid":27369,"tid":27369,"ts":326458455444,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1793987},
-{"pid":27369,"tid":27369,"ts":326458455475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1794018,"id":"0xaf8a670afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458455475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":1794018},
-{"pid":27369,"tid":27369,"ts":326458455475,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":396,"tts":1794018},
-{"pid":27369,"tid":27369,"ts":326458455536,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":335,"tdur":335,"tts":1794079},
-{"pid":27369,"tid":27369,"ts":326458455688,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1794231},
-{"pid":27369,"tid":27369,"ts":326458455719,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1794262},
-{"pid":27369,"tid":27369,"ts":326458455719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1794292,"id":"0xaf8a670bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458455810,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1794353},
-{"pid":27369,"tid":27369,"ts":326458455841,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1794414},
-{"pid":27369,"tid":27369,"ts":326458455963,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1794506},
-{"pid":27369,"tid":27369,"ts":326458456024,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1794567},
-{"pid":27369,"tid":27369,"ts":326458456054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1794597,"id":"0xaf8a670bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458456054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2350,"tdur":1771,"tts":1794597},
-{"pid":27369,"tid":27369,"ts":326458456085,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1794628},
-{"pid":27369,"tid":27369,"ts":326458456085,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2136,"tdur":1709,"tts":1794628},
-{"pid":27369,"tid":27369,"ts":326458456115,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":61},"dur":62,"tdur":61,"tts":1794658},
-{"pid":27369,"tid":27369,"ts":326458456115,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1794658},
-{"pid":27369,"tid":27369,"ts":326458456177,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1037,"tdur":611,"tts":1794719},
-{"pid":27369,"tid":27369,"ts":326458456177,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1794719,"id":"0x300000026"},
-{"pid":27369,"tid":27369,"ts":326458456207,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1794750},
-{"pid":27369,"tid":27369,"ts":326458456207,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1794750},
-{"pid":27369,"tid":27369,"ts":326458456238,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":946,"tdur":518,"tts":1794781},
-{"pid":27369,"tid":27369,"ts":326458456390,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1794933},
-{"pid":27369,"tid":27369,"ts":326458456421,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1794964},
-{"pid":27369,"tid":27369,"ts":326458456421,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":1794994},
-{"pid":27369,"tid":27369,"ts":326458456451,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":1794994},
-{"pid":27369,"tid":27369,"ts":326458456482,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1795025},
-{"pid":27369,"tid":27369,"ts":326458456482,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3554},"dur":91,"tdur":91,"tts":1795025},
-{"pid":27369,"tid":27369,"ts":326458456512,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1795055},
-{"pid":27369,"tid":27369,"ts":326458456543,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1795086,"id":"0xaf8a6c08febbc614"},
-{"pid":27369,"tid":27369,"ts":326458456604,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":519,"tdur":91,"tts":1795147},
-{"pid":27369,"tid":27369,"ts":326458456604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1795147,"id":"0xaf8a6c09febbc614"},
-{"pid":27369,"tid":27369,"ts":326458457092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1795238,"id":"0xaf8a6c0afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458457214,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1795330},
-{"pid":27369,"tid":27369,"ts":326458457245,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1795360},
-{"pid":27369,"tid":27369,"ts":326458457245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1795360},
-{"pid":27369,"tid":27369,"ts":326458457245,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":61},"dur":61,"tdur":61,"tts":1795360},
-{"pid":27369,"tid":27369,"ts":326458457306,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":61},"dur":30,"tdur":31,"tts":1795421},
-{"pid":27369,"tid":27369,"ts":326458457336,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":61},"tts":1795452},
-{"pid":27369,"tid":27369,"ts":326458457336,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1795452},
-{"pid":27369,"tid":27369,"ts":326458457336,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1795452},
-{"pid":27369,"tid":27369,"ts":326458457367,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1795482},
-{"pid":27369,"tid":27369,"ts":326458457397,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1795513},
-{"pid":27369,"tid":27369,"ts":326458457428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1795544,"id":"0xaf8a6c0bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458457489,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":732,"tts":1795605},
-{"pid":27369,"tid":27369,"ts":326458457519,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":61},"dur":184,"tdur":183,"tts":1795635},
-{"pid":27369,"tid":27369,"ts":326458457519,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1795635},
-{"pid":27369,"tid":27369,"ts":326458457519,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1795635},
-{"pid":27369,"tid":27369,"ts":326458457550,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1795666},
-{"pid":27369,"tid":27369,"ts":326458457550,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1795666,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458457580,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1795696},
-{"pid":27369,"tid":27369,"ts":326458457672,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1795788},
-{"pid":27369,"tid":27369,"ts":326458457703,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1795818},
-{"pid":27369,"tid":27369,"ts":326458457703,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":1795818},
-{"pid":27369,"tid":27369,"ts":326458457733,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1795849},
-{"pid":27369,"tid":27369,"ts":326458457733,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":1795849},
-{"pid":27369,"tid":27369,"ts":326458457764,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":152,"tts":1795910},
-{"pid":27369,"tid":27369,"ts":326458458008,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1796123,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458458038,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1796154,"id":"0x300000026"},
-{"pid":27369,"tid":27369,"ts":326458458069,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":123,"tts":1796184},
-{"pid":27369,"tid":27369,"ts":326458458069,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6066},"dur":91,"tdur":92,"tts":1796184},
-{"pid":27369,"tid":27369,"ts":326458458099,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1796215},
-{"pid":27369,"tid":27407,"ts":326458456634,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398412,"id":"0xba444d02"},
-{"pid":27369,"tid":27407,"ts":326458456695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398473,"id":"0xaf8a6c09febbc614"},
-{"pid":27369,"tid":27407,"ts":326458456726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1398504},
-{"pid":27369,"tid":27407,"ts":326458456726,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398504,"id":"0xba444e06"},
-{"pid":27369,"tid":27407,"ts":326458457001,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":91,"tdur":92,"tts":1398565},
-{"pid":27369,"tid":27407,"ts":326458457031,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":1398596},
-{"pid":27369,"tid":27407,"ts":326458457031,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398626,"id":"0xc4c10a0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458457092,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1398657},
-{"pid":27369,"tid":27407,"ts":326458457123,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1398687},
-{"pid":27369,"tid":27407,"ts":326458457123,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398687,"id":"0xccc3bd02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458457153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1398718,"id":"0xaf8a6704feb47934"},
-{"pid":27369,"tid":27407,"ts":326458457214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398779,"id":"0xaf8a6c0afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458457245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1398809},
-{"pid":27369,"tid":27407,"ts":326458457489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1398901,"id":"0xaf8a6c0bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458457489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1398901},
-{"pid":27369,"tid":27407,"ts":326458457489,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1398901,"id":"0xba444f02"},
-{"pid":27369,"tid":27407,"ts":326458458191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1399023,"id":"0xaf8a6c04febbc614"},
-{"pid":27369,"tid":27407,"ts":326458458191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1399023},
-{"pid":27369,"tid":27407,"ts":326458458191,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1399053,"id":"0xba445002"},
-{"pid":27369,"tid":27407,"ts":326458462220,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":214,"tts":1399145},
-{"pid":27369,"tid":27407,"ts":326458462250,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1399175},
-{"pid":27369,"tid":27407,"ts":326458462281,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1399206,"id":"0xc4c10c02","bp":"e"},{"pid":27369,"tid":27407,"ts":326458462281,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1399206,"id":"0xaf8a6705feb47934"},
-{"pid":27369,"tid":27407,"ts":326458468873,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1399450,"id":"0xaf8a6c05febbc614"},
-{"pid":27369,"tid":27407,"ts":326458468904,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1399481},
-{"pid":27369,"tid":27407,"ts":326458468904,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1399511,"id":"0xba445102"},
-{"pid":27369,"tid":27407,"ts":326458470521,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1399633,"id":"0xaf8a6c06febbc614"},
-{"pid":27369,"tid":27407,"ts":326458470521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1399633},
-{"pid":27369,"tid":27407,"ts":326458470521,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1399633,"id":"0xba445202"},
-{"pid":27369,"tid":27407,"ts":326458473909,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1399786},
-{"pid":27369,"tid":27407,"ts":326458473939,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1399816},
-{"pid":27369,"tid":27407,"ts":326458473970,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1399847,"id":"0xccc3c002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458473970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1399847,"id":"0xaf8a6706feb47934"},
-{"pid":27369,"tid":27407,"ts":326458478304,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":274,"tdur":275,"tts":1400030},
-{"pid":27369,"tid":27407,"ts":326458478365,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":183,"tts":1400091},
-{"pid":27369,"tid":27407,"ts":326458478365,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1400091,"id":"0xccc3c302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458478426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1400152,"id":"0xaf8a6707feb47934"},
-{"pid":27369,"tid":27407,"ts":326458480257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1400396,"id":"0xaf8a6c07febbc614"},
-{"pid":27369,"tid":27407,"ts":326458480257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1400396},
-{"pid":27369,"tid":27407,"ts":326458480288,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1400427,"id":"0xba445302"},
-{"pid":27369,"tid":27407,"ts":326458480959,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1400549,"id":"0xaf8a6c00febbc614"},
-{"pid":27369,"tid":27407,"ts":326458480990,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1400579},
-{"pid":27369,"tid":27407,"ts":326458480990,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1400579,"id":"0xba445402"},
-{"pid":27369,"tid":27407,"ts":326458486605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1400732,"id":"0xaf8a6c01febbc614"},
-{"pid":27369,"tid":27407,"ts":326458486605,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1400732},
-{"pid":27369,"tid":27407,"ts":326458486636,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1400763,"id":"0xba445502"},
-{"pid":27369,"tid":27407,"ts":326458487765,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1400915,"id":"0xaf8a6c02febbc614"},
-{"pid":27369,"tid":27407,"ts":326458487796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1400946},
-{"pid":27369,"tid":27407,"ts":326458487796,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1400946,"id":"0xba445602"},
-{"pid":27369,"tid":27407,"ts":326458488772,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1401037},
-{"pid":27369,"tid":27407,"ts":326458488803,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":91,"tts":1401068},
-{"pid":27369,"tid":27407,"ts":326458488803,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1401068,"id":"0xc4c10f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458488833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1401098,"id":"0xaf8a6701feb47934"},
-{"pid":27369,"tid":27407,"ts":326458491122,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1401251},
-{"pid":27369,"tid":27407,"ts":326458491153,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1401281},
-{"pid":27369,"tid":27407,"ts":326458491153,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1401312,"id":"0xccc3c502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458491183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1401312,"id":"0xaf8a6702feb47934"},
-{"pid":27369,"tid":27407,"ts":326458495792,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":184,"tts":1401464},
-{"pid":27369,"tid":27407,"ts":326458495822,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":122,"tts":1401526},
-{"pid":27369,"tid":27407,"ts":326458495853,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1401526,"id":"0xccc3c702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458495884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1401556,"id":"0xaf8a6703feb47934"},
-{"pid":27369,"tid":27407,"ts":326458497379,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1401770,"id":"0xaf8a6c03febbc614"},
-{"pid":27369,"tid":27407,"ts":326458497379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":244,"tdur":61,"tts":1401770},
-{"pid":27369,"tid":27407,"ts":326458497410,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1401800,"id":"0xba445702"},
-{"pid":27369,"tid":27369,"ts":326458458099,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1796215,"id":"0xaf8a6c04febbc614"},
-{"pid":27369,"tid":27369,"ts":326458458160,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1796276},
-{"pid":27369,"tid":27369,"ts":326458458191,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1796307},
-{"pid":27369,"tid":27369,"ts":326458458466,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1796459},
-{"pid":27369,"tid":27369,"ts":326458458557,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1796520},
-{"pid":27369,"tid":27369,"ts":326458458588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1796551,"id":"0xaf8a6704feb47934"},
-{"pid":27369,"tid":27369,"ts":326458458588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":1796551},
-{"pid":27369,"tid":27369,"ts":326458458588,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":122,"tts":1796581},
-{"pid":27369,"tid":27369,"ts":326458458649,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1796612,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458458649,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1796612,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458458679,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":31,"tts":1796642},
-{"pid":27369,"tid":27369,"ts":326458458679,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":1796642},
-{"pid":27369,"tid":27369,"ts":326458458710,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1796673,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458458801,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1796764},
-{"pid":27369,"tid":27369,"ts":326458462494,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1796917},
-{"pid":27369,"tid":27369,"ts":326458462525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1796947,"id":"0xaf8a6705feb47934"},
-{"pid":27369,"tid":27369,"ts":326458462525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1796947},
-{"pid":27369,"tid":27369,"ts":326458462555,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1796978},
-{"pid":27369,"tid":27369,"ts":326458462586,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1797009},
-{"pid":27369,"tid":27369,"ts":326458462677,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1797100},
-{"pid":27369,"tid":27369,"ts":326458467957,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1797405},
-{"pid":27369,"tid":27369,"ts":326458468476,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1797924},
-{"pid":27369,"tid":27369,"ts":326458468537,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1797985},
-{"pid":27369,"tid":27369,"ts":326458468659,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":245,"tdur":244,"tts":1798107},
-{"pid":27369,"tid":27369,"ts":326458462000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1798138,"id":"0x300000028"},
-{"pid":27369,"tid":27369,"ts":326458468690,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901928},"tts":1798138,"id":"0x300000028"},
-{"pid":27369,"tid":27369,"ts":326458468720,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":184,"tdur":183,"tts":1798168},
-{"pid":27369,"tid":27369,"ts":326458468720,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1798168,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458468720,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":184,"tdur":183,"tts":1798168},
-{"pid":27369,"tid":27369,"ts":326458468751,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1798199},
-{"pid":27369,"tid":27369,"ts":326458468781,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1798229},
-{"pid":27369,"tid":27369,"ts":326458468781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1798260,"id":"0xaf8a6c05febbc614"},
-{"pid":27369,"tid":27369,"ts":326458468842,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1798290,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458468873,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1798321,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458468904,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1798382},
-{"pid":27369,"tid":27369,"ts":326458470277,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1798687},
-{"pid":27369,"tid":27369,"ts":326458470277,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1798687},
-{"pid":27369,"tid":27369,"ts":326458470399,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1798748},
-{"pid":27369,"tid":27369,"ts":326458470399,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458467012},"dur":92,"tdur":92,"tts":1798748},
-{"pid":27369,"tid":27369,"ts":326458470430,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1798779},
-{"pid":27369,"tid":27369,"ts":326458470430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1798779,"id":"0xaf8a6c06febbc614"},
-{"pid":27369,"tid":27369,"ts":326458470521,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1798870},
-{"pid":27369,"tid":27369,"ts":326458470826,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1799023},
-{"pid":27369,"tid":27369,"ts":326458474336,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1799267},
-{"pid":27369,"tid":27369,"ts":326458474367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1799267,"id":"0xaf8a6706feb47934"},
-{"pid":27369,"tid":27369,"ts":326458474367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":1799267},
-{"pid":27369,"tid":27369,"ts":326458474397,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":1799298},
-{"pid":27369,"tid":27369,"ts":326458474458,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1799359,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458474458,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1799359,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458474489,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1799389},
-{"pid":27369,"tid":27369,"ts":326458474489,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1799389},
-{"pid":27369,"tid":27369,"ts":326458474519,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1799420,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458474611,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1799511},
-{"pid":27369,"tid":27369,"ts":326458478762,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1799755},
-{"pid":27369,"tid":27369,"ts":326458478792,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1799786,"id":"0xaf8a6707feb47934"},
-{"pid":27369,"tid":27369,"ts":326458478792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":488,"tts":1799786},
-{"pid":27369,"tid":27369,"ts":326458478792,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":488,"tts":1799786},
-{"pid":27369,"tid":27369,"ts":326458478853,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":397,"tts":1799847},
-{"pid":27369,"tid":27369,"ts":326458479036,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":122,"tts":1800030},
-{"pid":27369,"tid":27369,"ts":326458479067,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":61,"tts":1800061},
-{"pid":27369,"tid":27369,"ts":326458479097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1800091,"id":"0xaf8a6700feb47934"},
-{"pid":27369,"tid":27369,"ts":326458479189,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1800183},
-{"pid":27369,"tid":27369,"ts":326458479250,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1800213},
-{"pid":27369,"tid":27369,"ts":326458479372,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1800335},
-{"pid":27369,"tid":27369,"ts":326458479494,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1800457},
-{"pid":27369,"tid":27369,"ts":326458479525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1800488,"id":"0xaf8a6700feb47934"},
-{"pid":27369,"tid":27369,"ts":326458479525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1495,"tdur":1495,"tts":1800488},
-{"pid":27369,"tid":27369,"ts":326458479525,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":1800488},
-{"pid":27369,"tid":27369,"ts":326458479555,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1465,"tdur":1465,"tts":1800518},
-{"pid":27369,"tid":27369,"ts":326458479586,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":62},"dur":61,"tdur":61,"tts":1800549},
-{"pid":27369,"tid":27369,"ts":326458479586,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1800549},
-{"pid":27369,"tid":27369,"ts":326458479647,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1800610},
-{"pid":27369,"tid":27369,"ts":326458479677,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1800640,"id":"0x300000027"},
-{"pid":27369,"tid":27369,"ts":326458479708,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1800671},
-{"pid":27369,"tid":27369,"ts":326458479708,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1800671},
-{"pid":27369,"tid":27369,"ts":326458479738,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":184,"tts":1800701},
-{"pid":27369,"tid":27369,"ts":326458479952,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1800915},
-{"pid":27369,"tid":27369,"ts":326458479982,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1800946},
-{"pid":27369,"tid":27369,"ts":326458479982,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":153,"tdur":152,"tts":1800946},
-{"pid":27369,"tid":27369,"ts":326458479982,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":62},"dur":92,"tdur":91,"tts":1800946},
-{"pid":27369,"tid":27369,"ts":326458479982,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1800946},
-{"pid":27369,"tid":27369,"ts":326458480074,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":62},"dur":30,"tdur":31,"tts":1801037},
-{"pid":27369,"tid":27369,"ts":326458480104,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":62},"tts":1801068},
-{"pid":27369,"tid":27369,"ts":326458480104,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1801068},
-{"pid":27369,"tid":27369,"ts":326458480104,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1801068},
-{"pid":27369,"tid":27369,"ts":326458480135,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1801098},
-{"pid":27369,"tid":27369,"ts":326458480166,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1801129},
-{"pid":27369,"tid":27369,"ts":326458480166,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1801129,"id":"0xaf8a6c07febbc614"},
-{"pid":27369,"tid":27369,"ts":326458480257,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":733,"tdur":733,"tts":1801220},
-{"pid":27369,"tid":27369,"ts":326458480288,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":62},"dur":183,"tdur":183,"tts":1801251},
-{"pid":27369,"tid":27369,"ts":326458480288,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1801251},
-{"pid":27369,"tid":27369,"ts":326458480318,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1801281},
-{"pid":27369,"tid":27369,"ts":326458480318,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1801281},
-{"pid":27369,"tid":27369,"ts":326458480349,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1801312,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458480349,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1801312},
-{"pid":27369,"tid":27369,"ts":326458480440,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1801403},
-{"pid":27369,"tid":27369,"ts":326458480471,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1801434},
-{"pid":27369,"tid":27369,"ts":326458480471,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":1801434},
-{"pid":27369,"tid":27369,"ts":326458480501,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":245,"tts":1801464},
-{"pid":27369,"tid":27369,"ts":326458480501,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":62,"tts":1801464},
-{"pid":27369,"tid":27369,"ts":326458480562,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":1801526},
-{"pid":27369,"tid":27369,"ts":326458480776,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1801739,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458480837,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1801800,"id":"0x300000027"},
-{"pid":27369,"tid":27369,"ts":326458480837,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1801800},
-{"pid":27369,"tid":27369,"ts":326458480867,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8578},"dur":92,"tdur":91,"tts":1801831},
-{"pid":27369,"tid":27369,"ts":326458480898,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1801861},
-{"pid":27369,"tid":27369,"ts":326458480898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1801861,"id":"0xaf8a6c00febbc614"},
-{"pid":27369,"tid":27369,"ts":326458480959,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1801922},
-{"pid":27369,"tid":27369,"ts":326458480959,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1801922},
-{"pid":27369,"tid":27369,"ts":326458481112,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1802075},
-{"pid":27369,"tid":27369,"ts":326458485232,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1802411},
-{"pid":27369,"tid":27369,"ts":326458485781,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1802990},
-{"pid":27369,"tid":27369,"ts":326458485873,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":1803052},
-{"pid":27369,"tid":27369,"ts":326458485995,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":213,"tts":1803174},
-{"pid":27369,"tid":27369,"ts":326458478000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1803174,"id":"0x300000029"},
-{"pid":27369,"tid":27369,"ts":326458486025,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901929},"tts":1803204,"id":"0x300000029"},
-{"pid":27369,"tid":27369,"ts":326458486025,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":184,"tdur":183,"tts":1803204},
-{"pid":27369,"tid":27369,"ts":326458486056,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1803235,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458486056,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1803235},
-{"pid":27369,"tid":27369,"ts":326458486086,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":123,"tdur":122,"tts":1803265},
-{"pid":27369,"tid":27369,"ts":326458486117,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1803296},
-{"pid":27369,"tid":27369,"ts":326458486148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1803326,"id":"0xaf8a6c01febbc614"},
-{"pid":27369,"tid":27369,"ts":326458486178,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1803357,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458486209,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1803387,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458486239,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1803418},
-{"pid":27369,"tid":27369,"ts":326458487002,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1803692},
-{"pid":27369,"tid":27369,"ts":326458487063,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":122,"tts":1803723},
-{"pid":27369,"tid":27369,"ts":326458487063,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458483689},"dur":336,"tdur":92,"tts":1803723},
-{"pid":27369,"tid":27369,"ts":326458487094,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":305,"tdur":61,"tts":1803754},
-{"pid":27369,"tid":27369,"ts":326458487124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1803784,"id":"0xaf8a6c02febbc614"},
-{"pid":27369,"tid":27369,"ts":326458487460,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1803876},
-{"pid":27369,"tid":27369,"ts":326458487674,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1804089},
-{"pid":27369,"tid":27369,"ts":326458489016,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1804272},
-{"pid":27369,"tid":27369,"ts":326458489016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1804272,"id":"0xaf8a6701feb47934"},
-{"pid":27369,"tid":27369,"ts":326458489047,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":1804303},
-{"pid":27369,"tid":27369,"ts":326458489077,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1804333},
-{"pid":27369,"tid":27369,"ts":326458489077,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1804333},
-{"pid":27369,"tid":27369,"ts":326458489169,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1804425},
-{"pid":27369,"tid":27369,"ts":326458491366,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1804608},
-{"pid":27369,"tid":27369,"ts":326458491397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1804639,"id":"0xaf8a6702feb47934"},
-{"pid":27369,"tid":27369,"ts":326458491397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":1804639},
-{"pid":27369,"tid":27369,"ts":326458491397,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":1804639},
-{"pid":27369,"tid":27369,"ts":326458491458,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1804700,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458491489,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1804730,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458491489,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1804730},
-{"pid":27369,"tid":27369,"ts":326458491489,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":1804730},
-{"pid":27369,"tid":27369,"ts":326458491519,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1804761,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458491672,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1804913},
-{"pid":27369,"tid":27369,"ts":326458496067,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1805218},
-{"pid":27369,"tid":27369,"ts":326458496097,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1805218,"id":"0xaf8a6703feb47934"},
-{"pid":27369,"tid":27369,"ts":326458496097,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":427,"tts":1805249},
-{"pid":27369,"tid":27369,"ts":326458496128,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":397,"tts":1805249},
-{"pid":27369,"tid":27369,"ts":326458496158,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1805280},
-{"pid":27369,"tid":27369,"ts":326458496341,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":1805463},
-{"pid":27369,"tid":27369,"ts":326458496372,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1805493},
-{"pid":27369,"tid":27369,"ts":326458496372,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1805493,"id":"0xaf8a671cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458496463,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1805585},
-{"pid":27369,"tid":27369,"ts":326458496494,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1805615},
-{"pid":27369,"tid":27369,"ts":326458496585,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1805737},
-{"pid":27369,"tid":27369,"ts":326458496677,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1805798},
-{"pid":27369,"tid":27369,"ts":326458496708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1805829,"id":"0xaf8a671cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458496708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1617,"tdur":1434,"tts":1805829},
-{"pid":27369,"tid":27369,"ts":326458496738,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1805859},
-{"pid":27369,"tid":27369,"ts":326458496738,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1404,"tdur":1404,"tts":1805859},
-{"pid":27369,"tid":27369,"ts":326458496769,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":63},"dur":61,"tdur":61,"tts":1805890},
-{"pid":27369,"tid":27369,"ts":326458496769,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1805890},
-{"pid":27369,"tid":27369,"ts":326458496830,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1805951},
-{"pid":27369,"tid":27369,"ts":326458496830,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1805951,"id":"0x300000028"},
-{"pid":27369,"tid":27369,"ts":326458496860,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1805981},
-{"pid":27369,"tid":27369,"ts":326458496860,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":1805981},
-{"pid":27369,"tid":27369,"ts":326458496891,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":1806012},
-{"pid":27369,"tid":27369,"ts":326458497104,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1806226},
-{"pid":27369,"tid":27369,"ts":326458497135,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1806256},
-{"pid":27369,"tid":27369,"ts":326458497135,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":91,"tts":1806287},
-{"pid":27369,"tid":27369,"ts":326458497165,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":63},"dur":31,"tdur":30,"tts":1806287},
-{"pid":27369,"tid":27369,"ts":326458497196,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":63},"dur":30,"tdur":31,"tts":1806317},
-{"pid":27369,"tid":27369,"ts":326458497226,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":63},"tts":1806348},
-{"pid":27369,"tid":27369,"ts":326458497226,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1806348},
-{"pid":27369,"tid":27369,"ts":326458497226,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1806348},
-{"pid":27369,"tid":27369,"ts":326458497257,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1806378},
-{"pid":27369,"tid":27369,"ts":326458497287,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1806409},
-{"pid":27369,"tid":27369,"ts":326458497287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1806409,"id":"0xaf8a6c03febbc614"},
-{"pid":27369,"tid":27369,"ts":326458497379,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":733,"tts":1806500},
-{"pid":27369,"tid":27369,"ts":326458497410,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":63},"dur":183,"tdur":183,"tts":1806531},
-{"pid":27369,"tid":27369,"ts":326458497410,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1806531},
-{"pid":27369,"tid":27369,"ts":326458497440,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1806561},
-{"pid":27369,"tid":27369,"ts":326458497440,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1806561},
-{"pid":27369,"tid":27369,"ts":326458497440,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1806561,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458497471,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1806592},
-{"pid":27369,"tid":27369,"ts":326458497562,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1806714},
-{"pid":27369,"tid":27369,"ts":326458497593,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":305,"tts":1806714},
-{"pid":27369,"tid":27369,"ts":326458497593,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":1806714},
-{"pid":27369,"tid":27369,"ts":326458497623,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1806744},
-{"pid":27369,"tid":27369,"ts":326458497654,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1806775},
-{"pid":27369,"tid":27369,"ts":326458497684,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1806806},
-{"pid":27369,"tid":27369,"ts":326458497898,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1807019,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458497959,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1807080,"id":"0x300000028"},
-{"pid":27369,"tid":27369,"ts":326458497959,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":1807080},
-{"pid":27369,"tid":27369,"ts":326458497989,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11090},"dur":92,"tdur":91,"tts":1807111},
-{"pid":27369,"tid":27369,"ts":326458498020,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1807141},
-{"pid":27369,"tid":27369,"ts":326458498020,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1807141,"id":"0xaf8a6c1cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458498081,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":1807202},
-{"pid":27369,"tid":27369,"ts":326458498081,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1807202},
-{"pid":27369,"tid":27369,"ts":326458498386,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1807324},
-{"pid":27369,"tid":27369,"ts":326458501896,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1807660},
-{"pid":27369,"tid":27369,"ts":326458502384,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1808179},
-{"pid":27369,"tid":27369,"ts":326458502476,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1808240},
-{"pid":27369,"tid":27369,"ts":326458502567,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":245,"tdur":244,"tts":1808332},
-{"pid":27369,"tid":27369,"ts":326458495000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1808362,"id":"0x30000002a"},
-{"pid":27369,"tid":27369,"ts":326458502629,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901930},"tts":1808393,"id":"0x30000002a"},
-{"pid":27369,"tid":27369,"ts":326458502629,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":1808393},
-{"pid":27369,"tid":27369,"ts":326458502659,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1808423,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458502659,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":1808423},
-{"pid":27369,"tid":27369,"ts":326458502659,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1808423},
-{"pid":27369,"tid":27369,"ts":326458502690,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":1808454},
-{"pid":27369,"tid":27369,"ts":326458502720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1808484,"id":"0xaf8a6c1dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458502781,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1808545,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458502781,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1808545,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458502812,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1808606},
-{"pid":27369,"tid":27369,"ts":326458503239,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1808789},
-{"pid":27369,"tid":27369,"ts":326458503300,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":184,"tts":1808850},
-{"pid":27369,"tid":27369,"ts":326458503300,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458500365},"dur":61,"tdur":61,"tts":1808850},
-{"pid":27369,"tid":27369,"ts":326458503330,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":1808881},
-{"pid":27369,"tid":27369,"ts":326458503361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1808911,"id":"0xaf8a6c1efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458503483,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1809034},
-{"pid":27369,"tid":27369,"ts":326458503636,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1809125},
-{"pid":27369,"tid":27369,"ts":326458506688,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1809430},
-{"pid":27369,"tid":27369,"ts":326458506718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1809430,"id":"0xaf8a671dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458506718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":1809461},
-{"pid":27369,"tid":27369,"ts":326458506779,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1809491},
-{"pid":27369,"tid":27369,"ts":326458506779,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1809491},
-{"pid":27369,"tid":27369,"ts":326458506871,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1809583},
-{"pid":27369,"tid":27369,"ts":326458507329,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1809735},
-{"pid":27369,"tid":27369,"ts":326458507359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1809766,"id":"0xaf8a671efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458507359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":1809766},
-{"pid":27369,"tid":27369,"ts":326458507359,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1809766},
-{"pid":27369,"tid":27369,"ts":326458507420,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1809827,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458507420,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1809858,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458507451,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":30,"tts":1809858},
-{"pid":27369,"tid":27369,"ts":326458507451,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":1809858},
-{"pid":27369,"tid":27369,"ts":326458507481,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1809888,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458507603,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1810010},
-{"pid":27369,"tid":27369,"ts":326458508397,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1810163},
-{"pid":27369,"tid":27369,"ts":326458508397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1810163,"id":"0xaf8a671ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458508427,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":1810193},
-{"pid":27369,"tid":27369,"ts":326458508427,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":397,"tts":1810193},
-{"pid":27369,"tid":27369,"ts":326458508458,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":336,"tdur":336,"tts":1810224},
-{"pid":27369,"tid":27369,"ts":326458508611,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":1810376},
-{"pid":27369,"tid":27369,"ts":326458508641,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1810407},
-{"pid":27369,"tid":27369,"ts":326458508641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1810437,"id":"0xaf8a6718feb47934"},
-{"pid":27369,"tid":27369,"ts":326458508733,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1810499},
-{"pid":27369,"tid":27369,"ts":326458508763,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1810529},
-{"pid":27369,"tid":27369,"ts":326458508885,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1810651},
-{"pid":27369,"tid":27369,"ts":326458508946,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1810712},
-{"pid":27369,"tid":27369,"ts":326458508977,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1810743,"id":"0xaf8a6718feb47934"},
-{"pid":27369,"tid":27369,"ts":326458508977,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":1810743},
-{"pid":27369,"tid":27407,"ts":326458498081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1401892,"id":"0xaf8a6c1cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458498111,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1401922},
-{"pid":27369,"tid":27407,"ts":326458498111,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1401922,"id":"0xba445802"},
-{"pid":27369,"tid":27407,"ts":326458503666,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1402044,"id":"0xaf8a6c1dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458503697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":61,"tts":1402075},
-{"pid":27369,"tid":27407,"ts":326458503697,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1402075,"id":"0xba445902"},
-{"pid":27369,"tid":27407,"ts":326458503819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1402136,"id":"0xaf8a6c1efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458503819,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1402136},
-{"pid":27369,"tid":27407,"ts":326458503849,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1402166,"id":"0xba445a02"},
-{"pid":27369,"tid":27407,"ts":326458506383,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1402258},
-{"pid":27369,"tid":27407,"ts":326458506413,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":152,"tts":1402289},
-{"pid":27369,"tid":27407,"ts":326458506444,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1402319,"id":"0xc4c11202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458506444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1402319,"id":"0xaf8a671dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458507115,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1402502},
-{"pid":27369,"tid":27407,"ts":326458507146,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1402533},
-{"pid":27369,"tid":27407,"ts":326458507146,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1402533,"id":"0xccc3c902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458507176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1402563,"id":"0xaf8a671efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458508153,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1402716},
-{"pid":27369,"tid":27407,"ts":326458508183,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1402746},
-{"pid":27369,"tid":27407,"ts":326458508214,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1402777,"id":"0xccc3cb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458508244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1402807,"id":"0xaf8a671ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458509648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1402960,"id":"0xaf8a6c1ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458509648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1402960},
-{"pid":27369,"tid":27407,"ts":326458509679,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1402990,"id":"0xba445b02"},
-{"pid":27369,"tid":27407,"ts":326458510442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1403113,"id":"0xaf8a6c18febbc614"},
-{"pid":27369,"tid":27407,"ts":326458510442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1403113},
-{"pid":27369,"tid":27407,"ts":326458510472,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1403143,"id":"0xba445c02"},
-{"pid":27369,"tid":27407,"ts":326458514348,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1403235},
-{"pid":27369,"tid":27407,"ts":326458514379,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1403265},
-{"pid":27369,"tid":27407,"ts":326458514379,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1403265,"id":"0xc4c11502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458514409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1403296,"id":"0xaf8a6719feb47934"},
-{"pid":27369,"tid":27407,"ts":326458518408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1403479,"id":"0xaf8a6c19febbc614"},
-{"pid":27369,"tid":27407,"ts":326458518408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1403479},
-{"pid":27369,"tid":27407,"ts":326458518438,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1403509,"id":"0xba445d02"},
-{"pid":27369,"tid":27407,"ts":326458518957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1403631,"id":"0xaf8a6c1afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458518957,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1403631},
-{"pid":27369,"tid":27407,"ts":326458518987,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1403662,"id":"0xba445e02"},
-{"pid":27369,"tid":27407,"ts":326458520544,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1403754},
-{"pid":27369,"tid":27407,"ts":326458520574,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":1403784},
-{"pid":27369,"tid":27407,"ts":326458520574,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1403784,"id":"0xccc3cd02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458520605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1403815,"id":"0xaf8a671afeb47934"},
-{"pid":27369,"tid":27407,"ts":326458535621,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":153,"tts":1403967},
-{"pid":27369,"tid":27407,"ts":326458535682,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":92,"tdur":92,"tts":1404028},
-{"pid":27369,"tid":27407,"ts":326458535682,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1404028,"id":"0xccc3cf02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458535713,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1404059,"id":"0xaf8a671bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458535804,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1404150,"id":"0xaf8a6c1bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458535804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1404150},
-{"pid":27369,"tid":27407,"ts":326458535804,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1404181,"id":"0xba445f02"},
-{"pid":27369,"tid":27407,"ts":326458536567,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1404303,"id":"0xaf8a6c14febbc614"},
-{"pid":27369,"tid":27407,"ts":326458536567,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1404303},
-{"pid":27369,"tid":27407,"ts":326458536598,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1404333,"id":"0xba446002"},
-{"pid":27369,"tid":27407,"ts":326458537880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1404455,"id":"0xaf8a6c15febbc614"},
-{"pid":27369,"tid":27407,"ts":326458537880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1404455},
-{"pid":27369,"tid":27407,"ts":326458537910,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1404486,"id":"0xba446102"},
-{"pid":27369,"tid":27407,"ts":326458538612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1404578,"id":"0xaf8a6c16febbc614"},
-{"pid":27369,"tid":27407,"ts":326458538643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1404608},
-{"pid":27369,"tid":27407,"ts":326458538643,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1404608,"id":"0xba446202"},
-{"pid":27369,"tid":27407,"ts":326458539192,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1404730},
-{"pid":27369,"tid":27407,"ts":326458539222,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":1404761},
-{"pid":27369,"tid":27407,"ts":326458539222,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1404761,"id":"0xccc3d102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458539253,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1404791,"id":"0xaf8a6715feb47934"},
-{"pid":27369,"tid":27407,"ts":326458542763,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1404944},
-{"pid":27369,"tid":27407,"ts":326458542793,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1404974},
-{"pid":27369,"tid":27407,"ts":326458542824,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1405005,"id":"0xc4c11802","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326458508977,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":1810773},
-{"pid":27369,"tid":27369,"ts":326458509038,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1434,"tdur":1434,"tts":1810804},
-{"pid":27369,"tid":27369,"ts":326458509038,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":64},"dur":61,"tdur":61,"tts":1810804},
-{"pid":27369,"tid":27369,"ts":326458509068,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1810834},
-{"pid":27369,"tid":27369,"ts":326458509099,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":275,"tts":1810895},
-{"pid":27369,"tid":27369,"ts":326458509129,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1810895,"id":"0x300000029"},
-{"pid":27369,"tid":27369,"ts":326458509129,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":1810895},
-{"pid":27369,"tid":27369,"ts":326458509160,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1810926},
-{"pid":27369,"tid":27369,"ts":326458509190,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":183,"tts":1810956},
-{"pid":27369,"tid":27369,"ts":326458509404,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1811170},
-{"pid":27369,"tid":27369,"ts":326458509404,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":1811170},
-{"pid":27369,"tid":27369,"ts":326458509435,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":1811200},
-{"pid":27369,"tid":27369,"ts":326458509435,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":64},"dur":30,"tdur":31,"tts":1811200},
-{"pid":27369,"tid":27369,"ts":326458509465,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":64},"dur":31,"tdur":0,"tts":1811262},
-{"pid":27369,"tid":27369,"ts":326458509496,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":64},"tts":1811262},
-{"pid":27369,"tid":27369,"ts":326458509496,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1811292},
-{"pid":27369,"tid":27369,"ts":326458509526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1811292},
-{"pid":27369,"tid":27369,"ts":326458509526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1811292},
-{"pid":27369,"tid":27369,"ts":326458509557,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1811323},
-{"pid":27369,"tid":27369,"ts":326458509587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1811353,"id":"0xaf8a6c1ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458509648,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":1811414},
-{"pid":27369,"tid":27369,"ts":326458509679,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":64},"dur":244,"tdur":244,"tts":1811445},
-{"pid":27369,"tid":27369,"ts":326458509679,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1811445},
-{"pid":27369,"tid":27369,"ts":326458509709,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1811475},
-{"pid":27369,"tid":27369,"ts":326458509709,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1811475},
-{"pid":27369,"tid":27369,"ts":326458509740,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1811506,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458509740,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1811506},
-{"pid":27369,"tid":27369,"ts":326458509892,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1811658},
-{"pid":27369,"tid":27369,"ts":326458509923,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1811689},
-{"pid":27369,"tid":27369,"ts":326458509923,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":1811689},
-{"pid":27369,"tid":27369,"ts":326458509953,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1811719},
-{"pid":27369,"tid":27369,"ts":326458509953,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":92,"tdur":61,"tts":1811719},
-{"pid":27369,"tid":27369,"ts":326458510045,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":1811811},
-{"pid":27369,"tid":27369,"ts":326458510259,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1812025,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458510289,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1812086,"id":"0x300000029"},
-{"pid":27369,"tid":27369,"ts":326458510320,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":1812086},
-{"pid":27369,"tid":27369,"ts":326458510320,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13602},"dur":91,"tdur":61,"tts":1812116},
-{"pid":27369,"tid":27369,"ts":326458510350,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1812116},
-{"pid":27369,"tid":27369,"ts":326458510381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1812147,"id":"0xaf8a6c18febbc614"},
-{"pid":27369,"tid":27369,"ts":326458510442,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":1812208},
-{"pid":27369,"tid":27369,"ts":326458510442,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1812208},
-{"pid":27369,"tid":27369,"ts":326458510564,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1812330},
-{"pid":27369,"tid":27369,"ts":326458514593,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1812513},
-{"pid":27369,"tid":27369,"ts":326458514623,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1812543,"id":"0xaf8a6719feb47934"},
-{"pid":27369,"tid":27369,"ts":326458514623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1812543},
-{"pid":27369,"tid":27369,"ts":326458514654,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":1812574},
-{"pid":27369,"tid":27369,"ts":326458514684,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1812604},
-{"pid":27369,"tid":27369,"ts":326458514776,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1812696},
-{"pid":27369,"tid":27369,"ts":326458517553,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1813032},
-{"pid":27369,"tid":27369,"ts":326458517980,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1813459},
-{"pid":27369,"tid":27369,"ts":326458518041,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1813520},
-{"pid":27369,"tid":27369,"ts":326458518163,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":1813642},
-{"pid":27369,"tid":27369,"ts":326458512031,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1813673,"id":"0x30000002b"},
-{"pid":27369,"tid":27369,"ts":326458518194,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901931},"tts":1813673,"id":"0x30000002b"},
-{"pid":27369,"tid":27369,"ts":326458518224,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":183,"tts":1813703},
-{"pid":27369,"tid":27369,"ts":326458518224,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1813703,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458518255,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1813734},
-{"pid":27369,"tid":27369,"ts":326458518255,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":1813734},
-{"pid":27369,"tid":27369,"ts":326458518285,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":1813764},
-{"pid":27369,"tid":27369,"ts":326458518316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1813795,"id":"0xaf8a6c19febbc614"},
-{"pid":27369,"tid":27369,"ts":326458518377,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1813856,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458518377,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1813886,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458518438,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1813917},
-{"pid":27369,"tid":27369,"ts":326458518804,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1814191},
-{"pid":27369,"tid":27369,"ts":326458518835,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1814222},
-{"pid":27369,"tid":27369,"ts":326458518865,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458517041},"dur":61,"tdur":61,"tts":1814253},
-{"pid":27369,"tid":27369,"ts":326458518865,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1814253},
-{"pid":27369,"tid":27369,"ts":326458518896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1814283,"id":"0xaf8a6c1afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458518987,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1814375},
-{"pid":27369,"tid":27369,"ts":326458519079,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1814466},
-{"pid":27369,"tid":27369,"ts":326458520788,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1814649},
-{"pid":27369,"tid":27369,"ts":326458520788,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1814649,"id":"0xaf8a671afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458520788,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":122,"tts":1814680},
-{"pid":27369,"tid":27369,"ts":326458520819,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1814680},
-{"pid":27369,"tid":27369,"ts":326458520849,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1814741,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458520880,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1814741,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458520880,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1814741},
-{"pid":27369,"tid":27369,"ts":326458520910,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":1814771},
-{"pid":27369,"tid":27369,"ts":326458520910,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1814771,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458521002,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1814863},
-{"pid":27369,"tid":27369,"ts":326458534309,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1815321},
-{"pid":27369,"tid":27369,"ts":326458535163,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1815962},
-{"pid":27369,"tid":27369,"ts":326458535255,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":1816053},
-{"pid":27369,"tid":27369,"ts":326458535407,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":306,"tdur":213,"tts":1816206},
-{"pid":27369,"tid":27369,"ts":326458528000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1816206,"id":"0x30000002c"},
-{"pid":27369,"tid":27369,"ts":326458535438,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901932},"tts":1816236,"id":"0x30000002c"},
-{"pid":27369,"tid":27369,"ts":326458535438,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":244,"tdur":152,"tts":1816267},
-{"pid":27369,"tid":27369,"ts":326458535468,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1816297,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458535499,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":122,"tts":1816297},
-{"pid":27369,"tid":27369,"ts":326458535499,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1816297},
-{"pid":27369,"tid":27369,"ts":326458535560,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":91,"tts":1816328},
-{"pid":27369,"tid":27369,"ts":326458535621,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":1816358},
-{"pid":27369,"tid":27369,"ts":326458535621,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1816358,"id":"0xaf8a6c1bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458535652,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1816419,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458535682,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1816419,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458535713,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1816450},
-{"pid":27369,"tid":27369,"ts":326458535865,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1816603},
-{"pid":27369,"tid":27369,"ts":326458535926,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":1816664},
-{"pid":27369,"tid":27369,"ts":326458535926,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458533718},"dur":92,"tdur":91,"tts":1816664},
-{"pid":27369,"tid":27369,"ts":326458535957,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1816694},
-{"pid":27369,"tid":27369,"ts":326458535957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1816725,"id":"0xaf8a6c14febbc614"},
-{"pid":27369,"tid":27369,"ts":326458536140,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1816877},
-{"pid":27369,"tid":27369,"ts":326458536231,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1816969},
-{"pid":27369,"tid":27369,"ts":326458536384,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1817121},
-{"pid":27369,"tid":27369,"ts":326458536415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1817152,"id":"0xaf8a671bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458536415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":1817152},
-{"pid":27369,"tid":27369,"ts":326458536415,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":1817152},
-{"pid":27369,"tid":27369,"ts":326458536476,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1817213},
-{"pid":27369,"tid":27369,"ts":326458536659,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":1817396},
-{"pid":27369,"tid":27369,"ts":326458536659,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":61,"tts":1817396},
-{"pid":27369,"tid":27369,"ts":326458536689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1817427,"id":"0xaf8a6714feb47934"},
-{"pid":27369,"tid":27369,"ts":326458536781,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1817518},
-{"pid":27369,"tid":27369,"ts":326458536811,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1817549},
-{"pid":27369,"tid":27369,"ts":326458536903,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1817640},
-{"pid":27369,"tid":27369,"ts":326458537086,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1817823},
-{"pid":27369,"tid":27369,"ts":326458537117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1817854,"id":"0xaf8a6714feb47934"},
-{"pid":27369,"tid":27369,"ts":326458537117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1556,"tts":1817854},
-{"pid":27369,"tid":27369,"ts":326458537147,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1817884},
-{"pid":27369,"tid":27369,"ts":326458537147,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1526,"tdur":1465,"tts":1817915},
-{"pid":27369,"tid":27369,"ts":326458537178,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":65},"dur":122,"tdur":92,"tts":1817915},
-{"pid":27369,"tid":27369,"ts":326458537208,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":92,"tdur":62,"tts":1817945},
-{"pid":27369,"tid":27369,"ts":326458537208,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1817945},
-{"pid":27369,"tid":27369,"ts":326458537300,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":305,"tts":1818037},
-{"pid":27369,"tid":27369,"ts":326458537330,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1818037,"id":"0x30000002a"},
-{"pid":27369,"tid":27369,"ts":326458537330,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1818037,"id":"0x30000002b"},
-{"pid":27369,"tid":27369,"ts":326458537361,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1818068},
-{"pid":27369,"tid":27369,"ts":326458537361,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":1818068},
-{"pid":27369,"tid":27369,"ts":326458537391,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":1818098},
-{"pid":27369,"tid":27369,"ts":326458537605,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1818312},
-{"pid":27369,"tid":27369,"ts":326458537635,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1818342},
-{"pid":27369,"tid":27369,"ts":326458537666,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":91,"tts":1818373},
-{"pid":27369,"tid":27369,"ts":326458537666,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":65},"dur":30,"tdur":30,"tts":1818373},
-{"pid":27369,"tid":27369,"ts":326458537696,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":65},"dur":31,"tdur":31,"tts":1818403},
-{"pid":27369,"tid":27369,"ts":326458537727,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":65},"tts":1818434},
-{"pid":27369,"tid":27369,"ts":326458537727,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1818434},
-{"pid":27369,"tid":27369,"ts":326458537727,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1818464},
-{"pid":27369,"tid":27369,"ts":326458537757,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1818464},
-{"pid":27369,"tid":27369,"ts":326458537788,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1818495},
-{"pid":27369,"tid":27369,"ts":326458537788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1818495,"id":"0xaf8a6c15febbc614"},
-{"pid":27369,"tid":27369,"ts":326458537880,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":1818586},
-{"pid":27369,"tid":27369,"ts":326458537910,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":65},"dur":183,"tdur":183,"tts":1818617},
-{"pid":27369,"tid":27369,"ts":326458537910,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":1818617},
-{"pid":27369,"tid":27369,"ts":326458537910,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1818617},
-{"pid":27369,"tid":27369,"ts":326458537941,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1818647},
-{"pid":27369,"tid":27369,"ts":326458537941,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1818647,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458537971,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1818678},
-{"pid":27369,"tid":27369,"ts":326458538093,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1818800},
-{"pid":27369,"tid":27369,"ts":326458538124,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1818831},
-{"pid":27369,"tid":27369,"ts":326458538124,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1818831},
-{"pid":27369,"tid":27369,"ts":326458538124,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":274,"tts":1818831},
-{"pid":27369,"tid":27369,"ts":326458538154,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1818861},
-{"pid":27369,"tid":27369,"ts":326458538185,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1818892},
-{"pid":27369,"tid":27369,"ts":326458538398,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1819105,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458538459,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1819166,"id":"0x30000002a"},
-{"pid":27369,"tid":27369,"ts":326458538490,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1819197,"id":"0x30000002b"},
-{"pid":27369,"tid":27369,"ts":326458538490,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":1819197},
-{"pid":27369,"tid":27369,"ts":326458538520,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16114},"dur":92,"tdur":92,"tts":1819227},
-{"pid":27369,"tid":27369,"ts":326458538520,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":1819227},
-{"pid":27369,"tid":27369,"ts":326458538551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1819258,"id":"0xaf8a6c16febbc614"},
-{"pid":27369,"tid":27369,"ts":326458538612,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":1819319},
-{"pid":27369,"tid":27369,"ts":326458538612,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1819319},
-{"pid":27369,"tid":27369,"ts":326458538765,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1819471},
-{"pid":27369,"tid":27369,"ts":326458539467,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1819624},
-{"pid":27369,"tid":27369,"ts":326458539467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1819655,"id":"0xaf8a6715feb47934"},
-{"pid":27369,"tid":27369,"ts":326458539497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1819655},
-{"pid":27369,"tid":27369,"ts":326458539497,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1819655},
-{"pid":27369,"tid":27369,"ts":326458539528,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1819716,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458539558,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1819716,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458539558,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1819716},
-{"pid":27369,"tid":27369,"ts":326458539589,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1819746},
-{"pid":27369,"tid":27369,"ts":326458539589,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1819746,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458539680,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1819838},
-{"pid":27369,"tid":27369,"ts":326458543037,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1820021},
-{"pid":27369,"tid":27369,"ts":326458543068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1820051,"id":"0xaf8a6716feb47934"},
-{"pid":27369,"tid":27369,"ts":326458543068,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1820051},
-{"pid":27369,"tid":27369,"ts":326458543129,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1820112},
-{"pid":27369,"tid":27369,"ts":326458543129,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1820112},
-{"pid":27369,"tid":27369,"ts":326458543221,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1820204},
-{"pid":27369,"tid":27369,"ts":326458551034,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1820692},
-{"pid":27369,"tid":27369,"ts":326458551553,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1821181},
-{"pid":27369,"tid":27369,"ts":326458551644,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1821272},
-{"pid":27369,"tid":27369,"ts":326458551766,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":580,"tdur":367,"tts":1821394},
-{"pid":27369,"tid":27369,"ts":326458545000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1821425,"id":"0x30000002d"},
-{"pid":27369,"tid":27369,"ts":326458551797,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901933},"tts":1821455,"id":"0x30000002d"},
-{"pid":27369,"tid":27369,"ts":326458551827,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":489,"tdur":275,"tts":1821455},
-{"pid":27369,"tid":27369,"ts":326458551858,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1821486,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458551888,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":428,"tdur":214,"tts":1821516},
-{"pid":27369,"tid":27369,"ts":326458551888,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":428,"tdur":214,"tts":1821516},
-{"pid":27369,"tid":27369,"ts":326458551949,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":336,"tdur":122,"tts":1821577},
-{"pid":27369,"tid":27369,"ts":326458551980,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1821608,"id":"0xaf8a6c17febbc614"},
-{"pid":27369,"tid":27369,"ts":326458552285,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1821699,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458552316,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1821730,"s":"t"},
-{"pid":27369,"tid":27407,"ts":326458542824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1405035,"id":"0xaf8a6716feb47934"},
-{"pid":27369,"tid":27407,"ts":326458552133,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1405249,"id":"0xaf8a6c17febbc614"},
-{"pid":27369,"tid":27407,"ts":326458552133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1405249},
-{"pid":27369,"tid":27407,"ts":326458552163,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1405280,"id":"0xba446302"},
-{"pid":27369,"tid":27407,"ts":326458553018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1405432,"id":"0xaf8a6c10febbc614"},
-{"pid":27369,"tid":27407,"ts":326458553018,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1405463},
-{"pid":27369,"tid":27407,"ts":326458553048,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1405463,"id":"0xba446402"},
-{"pid":27369,"tid":27407,"ts":326458555459,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1405585},
-{"pid":27369,"tid":27407,"ts":326458555459,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1405585},
-{"pid":27369,"tid":27407,"ts":326458555520,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":1405646},
-{"pid":27369,"tid":27407,"ts":326458555551,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1405676,"id":"0xccc3d302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458555551,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1405676,"id":"0xaf8a6717feb47934"},
-{"pid":27369,"tid":27407,"ts":326458556711,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":457,"tdur":183,"tts":1405890},
-{"pid":27369,"tid":27407,"ts":326458556772,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1405951},
-{"pid":27369,"tid":27407,"ts":326458556772,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1405951,"id":"0xccc3d502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458556802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1405981,"id":"0xaf8a6710feb47934"},
-{"pid":27369,"tid":27407,"ts":326458558450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1406165,"id":"0xaf8a6c11febbc614"},
-{"pid":27369,"tid":27407,"ts":326458558450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1406165},
-{"pid":27369,"tid":27407,"ts":326458558481,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1406195,"id":"0xba446502"},
-{"pid":27369,"tid":27407,"ts":326458558542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1406256,"id":"0xaf8a6c12febbc614"},
-{"pid":27369,"tid":27407,"ts":326458558542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1406256},
-{"pid":27369,"tid":27407,"ts":326458558542,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1406256,"id":"0xba446606"},
-{"pid":27369,"tid":27407,"ts":326458558725,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":91,"tts":1406348},
-{"pid":27369,"tid":27407,"ts":326458558755,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":1406378},
-{"pid":27369,"tid":27407,"ts":326458558755,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1406378,"id":"0xc4c11b0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458558878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1406470,"id":"0xaf8a6c13febbc614"},
-{"pid":27369,"tid":27407,"ts":326458558878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1406470},
-{"pid":27369,"tid":27407,"ts":326458559183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1406561,"id":"0xaf8a6c2cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458559183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1406592},
-{"pid":27369,"tid":27407,"ts":326458559213,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1406592,"id":"0xba446702"},
-{"pid":27369,"tid":27407,"ts":326458559946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1406683,"id":"0xaf8a6c2dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458559976,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1406714},
-{"pid":27369,"tid":27407,"ts":326458559976,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1406714,"id":"0xba446802"},
-{"pid":27369,"tid":27407,"ts":326458563822,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1406867},
-{"pid":27369,"tid":27407,"ts":326458563852,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1406897},
-{"pid":27369,"tid":27407,"ts":326458563852,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1406897,"id":"0xc4c11d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458563883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1406928,"id":"0xaf8a6712feb47934"},
-{"pid":27369,"tid":27407,"ts":326458568522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1407080,"id":"0xaf8a6c2efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458568553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1407111},
-{"pid":27369,"tid":27407,"ts":326458568553,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1407111,"id":"0xba446902"},
-{"pid":27369,"tid":27407,"ts":326458569193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1407263,"id":"0xaf8a6c2ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458569193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":245,"tdur":61,"tts":1407294},
-{"pid":27369,"tid":27407,"ts":326458569224,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1407294,"id":"0xba446a02"},
-{"pid":27369,"tid":27407,"ts":326458570842,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1407446},
-{"pid":27369,"tid":27407,"ts":326458570872,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":1407477},
-{"pid":27369,"tid":27407,"ts":326458570872,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1407477,"id":"0xccc3d702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458570903,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1407508,"id":"0xaf8a6713feb47934"},
-{"pid":27369,"tid":27407,"ts":326458585064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1407691,"id":"0xaf8a6c28febbc614"},
-{"pid":27369,"tid":27407,"ts":326458585095,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1407691},
-{"pid":27369,"tid":27407,"ts":326458585095,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1407721,"id":"0xba446b02"},
-{"pid":27369,"tid":27407,"ts":326458585430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1407874,"id":"0xaf8a6c29febbc614"},
-{"pid":27369,"tid":27407,"ts":326458585430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1407874},
-{"pid":27369,"tid":27407,"ts":326458585461,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1407904,"id":"0xba446c02"},
-{"pid":27369,"tid":27407,"ts":326458587475,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1407996},
-{"pid":27369,"tid":27407,"ts":326458587536,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1408057},
-{"pid":27369,"tid":27407,"ts":326458587536,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408057,"id":"0xccc3da02","bp":"e"},{"pid":27369,"tid":27407,"ts":326458587567,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1408087,"id":"0xaf8a672cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458588757,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1408240},
-{"pid":27369,"tid":27407,"ts":326458588788,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1408271},
-{"pid":27369,"tid":27407,"ts":326458588788,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408271,"id":"0xccc3dc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458588818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1408301,"id":"0xaf8a672efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458588879,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408362,"id":"0xaf8a6c2afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458588910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":1408393},
-{"pid":27369,"tid":27407,"ts":326458588910,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408393,"id":"0xba446d02"},
-{"pid":27369,"tid":27369,"ts":326458552346,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1821761},
-{"pid":27369,"tid":27369,"ts":326458552804,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1822066},
-{"pid":27369,"tid":27369,"ts":326458552835,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":183,"tts":1822096},
-{"pid":27369,"tid":27369,"ts":326458552865,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458550394},"dur":305,"tdur":122,"tts":1822127},
-{"pid":27369,"tid":27369,"ts":326458552865,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":305,"tdur":92,"tts":1822157},
-{"pid":27369,"tid":27369,"ts":326458552896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1822157,"id":"0xaf8a6c10febbc614"},
-{"pid":27369,"tid":27369,"ts":326458553231,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1822310},
-{"pid":27369,"tid":27369,"ts":326458553353,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1822432},
-{"pid":27369,"tid":27369,"ts":326458555826,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1822676},
-{"pid":27369,"tid":27369,"ts":326458555856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1822707,"id":"0xaf8a6717feb47934"},
-{"pid":27369,"tid":27369,"ts":326458555856,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":794,"tdur":213,"tts":1822707},
-{"pid":27369,"tid":27369,"ts":326458555887,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":763,"tdur":153,"tts":1822737},
-{"pid":27369,"tid":27369,"ts":326458555948,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1822798,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458555948,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1822798,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458555948,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":610,"tdur":0,"tts":1822798},
-{"pid":27369,"tid":27369,"ts":326458556558,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1822829},
-{"pid":27369,"tid":27369,"ts":326458556589,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1822859},
-{"pid":27369,"tid":27369,"ts":326458556619,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1822890,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458556711,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1822981},
-{"pid":27369,"tid":27369,"ts":326458557321,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1823195},
-{"pid":27369,"tid":27369,"ts":326458557321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1823195,"id":"0xaf8a6710feb47934"},
-{"pid":27369,"tid":27369,"ts":326458557321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":427,"tts":1823226},
-{"pid":27369,"tid":27369,"ts":326458557352,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":396,"tts":1823226},
-{"pid":27369,"tid":27369,"ts":326458557382,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1823256},
-{"pid":27369,"tid":27369,"ts":326458557565,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1823439},
-{"pid":27369,"tid":27369,"ts":326458557596,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1823470},
-{"pid":27369,"tid":27369,"ts":326458557596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1823470,"id":"0xaf8a6711feb47934"},
-{"pid":27369,"tid":27369,"ts":326458557687,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1823561},
-{"pid":27369,"tid":27369,"ts":326458557718,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1823592},
-{"pid":27369,"tid":27369,"ts":326458557809,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1823714},
-{"pid":27369,"tid":27369,"ts":326458557901,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1823775},
-{"pid":27369,"tid":27369,"ts":326458557931,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1823805,"id":"0xaf8a6711feb47934"},
-{"pid":27369,"tid":27369,"ts":326458557931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2137,"tdur":1832,"tts":1823805},
-{"pid":27369,"tid":27369,"ts":326458557962,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1823836},
-{"pid":27369,"tid":27369,"ts":326458557962,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2106,"tdur":1801,"tts":1823836},
-{"pid":27369,"tid":27369,"ts":326458557992,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":66},"dur":62,"tdur":61,"tts":1823866},
-{"pid":27369,"tid":27369,"ts":326458557992,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":62,"tdur":61,"tts":1823866},
-{"pid":27369,"tid":27369,"ts":326458558054,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":885,"tdur":580,"tts":1823927},
-{"pid":27369,"tid":27369,"ts":326458558054,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1823927,"id":"0x30000002c"},
-{"pid":27369,"tid":27369,"ts":326458558084,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1823958},
-{"pid":27369,"tid":27369,"ts":326458558084,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":1823958},
-{"pid":27369,"tid":27369,"ts":326458558115,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":793,"tdur":488,"tts":1823989},
-{"pid":27369,"tid":27369,"ts":326458558267,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":1824141},
-{"pid":27369,"tid":27369,"ts":326458558298,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":1824172},
-{"pid":27369,"tid":27369,"ts":326458558328,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1824202},
-{"pid":27369,"tid":27369,"ts":326458558328,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16156},"dur":92,"tdur":61,"tts":1824233},
-{"pid":27369,"tid":27369,"ts":326458558359,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1824233},
-{"pid":27369,"tid":27369,"ts":326458558389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1824263,"id":"0xaf8a6c11febbc614"},
-{"pid":27369,"tid":27369,"ts":326458558420,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":427,"tdur":92,"tts":1824324},
-{"pid":27369,"tid":27369,"ts":326458558450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1824324,"id":"0xaf8a6c12febbc614"},
-{"pid":27369,"tid":27369,"ts":326458558817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1824385,"id":"0xaf8a6c13febbc614"},
-{"pid":27369,"tid":27369,"ts":326458558939,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1824507},
-{"pid":27369,"tid":27369,"ts":326458558969,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1824538},
-{"pid":27369,"tid":27369,"ts":326458558969,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1824538},
-{"pid":27369,"tid":27369,"ts":326458558969,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":66},"dur":61,"tdur":30,"tts":1824538},
-{"pid":27369,"tid":27369,"ts":326458559030,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":66},"dur":0,"tdur":0,"tts":1824599},
-{"pid":27369,"tid":27369,"ts":326458559030,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":66},"tts":1824599},
-{"pid":27369,"tid":27369,"ts":326458559061,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1824629},
-{"pid":27369,"tid":27369,"ts":326458559061,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1824629},
-{"pid":27369,"tid":27369,"ts":326458559061,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":1824629},
-{"pid":27369,"tid":27369,"ts":326458559091,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":1824690},
-{"pid":27369,"tid":27369,"ts":326458559122,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1824690,"id":"0xaf8a6c2cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458559213,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":1824782},
-{"pid":27369,"tid":27369,"ts":326458559213,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":66},"dur":244,"tdur":244,"tts":1824782},
-{"pid":27369,"tid":27369,"ts":326458559244,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":1824813},
-{"pid":27369,"tid":27369,"ts":326458559244,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1824813},
-{"pid":27369,"tid":27369,"ts":326458559244,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1824813},
-{"pid":27369,"tid":27369,"ts":326458559274,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1824843,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458559305,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1824874},
-{"pid":27369,"tid":27369,"ts":326458559457,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1825026},
-{"pid":27369,"tid":27369,"ts":326458559488,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":274,"tts":1825057},
-{"pid":27369,"tid":27369,"ts":326458559488,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1825057},
-{"pid":27369,"tid":27369,"ts":326458559488,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":274,"tts":1825057},
-{"pid":27369,"tid":27369,"ts":326458559518,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1825087},
-{"pid":27369,"tid":27369,"ts":326458559549,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1825118},
-{"pid":27369,"tid":27369,"ts":326458559763,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1825331,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458559824,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1825392,"id":"0x30000002c"},
-{"pid":27369,"tid":27369,"ts":326458559824,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":1825392},
-{"pid":27369,"tid":27369,"ts":326458559854,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2134},"dur":92,"tdur":92,"tts":1825423},
-{"pid":27369,"tid":27369,"ts":326458559885,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":1825453},
-{"pid":27369,"tid":27369,"ts":326458559885,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1825453,"id":"0xaf8a6c2dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458559946,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1825515},
-{"pid":27369,"tid":27369,"ts":326458559946,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1825515},
-{"pid":27369,"tid":27369,"ts":326458560129,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1825728},
-{"pid":27369,"tid":27369,"ts":326458564066,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1825881},
-{"pid":27369,"tid":27369,"ts":326458564097,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1825911,"id":"0xaf8a6712feb47934"},
-{"pid":27369,"tid":27369,"ts":326458564097,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1825911},
-{"pid":27369,"tid":27369,"ts":326458564127,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":1825942},
-{"pid":27369,"tid":27369,"ts":326458564127,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1825942},
-{"pid":27369,"tid":27369,"ts":326458564219,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1826033},
-{"pid":27369,"tid":27369,"ts":326458567637,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1826400},
-{"pid":27369,"tid":27369,"ts":326458568034,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1826796},
-{"pid":27369,"tid":27369,"ts":326458568095,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1826857},
-{"pid":27369,"tid":27369,"ts":326458568217,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":488,"tdur":305,"tts":1826980},
-{"pid":27369,"tid":27369,"ts":326458562000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1827010,"id":"0x30000002e"},
-{"pid":27369,"tid":27369,"ts":326458568278,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901934},"tts":1827041,"id":"0x30000002e"},
-{"pid":27369,"tid":27369,"ts":326458568278,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":427,"tdur":244,"tts":1827041},
-{"pid":27369,"tid":27369,"ts":326458568308,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1827071,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458568308,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":397,"tdur":183,"tts":1827102},
-{"pid":27369,"tid":27369,"ts":326458568339,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":366,"tdur":183,"tts":1827102},
-{"pid":27369,"tid":27369,"ts":326458568369,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":92,"tts":1827132},
-{"pid":27369,"tid":27369,"ts":326458568400,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1827163,"id":"0xaf8a6c2efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458568675,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1827254,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458568675,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1827254,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458568736,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1827315},
-{"pid":27369,"tid":27369,"ts":326458568949,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1827559},
-{"pid":27369,"tid":27369,"ts":326458568949,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1827559},
-{"pid":27369,"tid":27369,"ts":326458569071,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":123,"tts":1827620},
-{"pid":27369,"tid":27369,"ts":326458569071,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458567070},"dur":92,"tdur":92,"tts":1827620},
-{"pid":27369,"tid":27369,"ts":326458569102,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1827651},
-{"pid":27369,"tid":27369,"ts":326458569132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1827681,"id":"0xaf8a6c2ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458569224,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1827773},
-{"pid":27369,"tid":27369,"ts":326458569316,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1827865},
-{"pid":27369,"tid":27369,"ts":326458571086,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1828048},
-{"pid":27369,"tid":27369,"ts":326458571086,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1828048,"id":"0xaf8a6713feb47934"},
-{"pid":27369,"tid":27369,"ts":326458571116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1828078},
-{"pid":27369,"tid":27369,"ts":326458571116,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1828078},
-{"pid":27369,"tid":27369,"ts":326458571177,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1828139,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458571177,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1828139,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458571177,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1828139},
-{"pid":27369,"tid":27369,"ts":326458571208,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":1828170},
-{"pid":27369,"tid":27369,"ts":326458571208,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1828170,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458571299,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1828261},
-{"pid":27369,"tid":27369,"ts":326458584209,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1828750},
-{"pid":27369,"tid":27369,"ts":326458584667,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1829177},
-{"pid":27369,"tid":27369,"ts":326458584728,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1829238},
-{"pid":27369,"tid":27369,"ts":326458584850,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":245,"tdur":244,"tts":1829360},
-{"pid":27369,"tid":27369,"ts":326458578000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1829391,"id":"0x30000002f"},
-{"pid":27369,"tid":27369,"ts":326458584881,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901935},"tts":1829391,"id":"0x30000002f"},
-{"pid":27369,"tid":27369,"ts":326458584911,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":184,"tdur":183,"tts":1829421},
-{"pid":27369,"tid":27369,"ts":326458584911,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1829421,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458584911,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":184,"tdur":122,"tts":1829452},
-{"pid":27369,"tid":27369,"ts":326458584942,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1829452},
-{"pid":27369,"tid":27369,"ts":326458584972,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":1829482},
-{"pid":27369,"tid":27369,"ts":326458585003,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1829513,"id":"0xaf8a6c28febbc614"},
-{"pid":27369,"tid":27369,"ts":326458585034,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1829574,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458585064,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1829574,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458585095,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1829604},
-{"pid":27369,"tid":27369,"ts":326458585247,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1829757},
-{"pid":27369,"tid":27369,"ts":326458585308,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":214,"tts":1829818},
-{"pid":27369,"tid":27369,"ts":326458585308,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458583747},"dur":92,"tdur":91,"tts":1829818},
-{"pid":27369,"tid":27369,"ts":326458585339,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1829848},
-{"pid":27369,"tid":27369,"ts":326458585369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1829879,"id":"0xaf8a6c29febbc614"},
-{"pid":27369,"tid":27369,"ts":326458585522,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1830032},
-{"pid":27369,"tid":27369,"ts":326458585613,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1830123},
-{"pid":27369,"tid":27369,"ts":326458587750,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1830398},
-{"pid":27369,"tid":27369,"ts":326458587750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1830428,"id":"0xaf8a672cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458587780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":428,"tts":1830428},
-{"pid":27369,"tid":27369,"ts":326458587780,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":428,"tts":1830428},
-{"pid":27369,"tid":27369,"ts":326458587811,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1830459},
-{"pid":27369,"tid":27369,"ts":326458587994,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":62,"tts":1830672},
-{"pid":27369,"tid":27369,"ts":326458588025,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":62,"tts":1830672},
-{"pid":27369,"tid":27369,"ts":326458588055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1830703,"id":"0xaf8a672dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458588116,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1830795},
-{"pid":27369,"tid":27369,"ts":326458588147,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1830825},
-{"pid":27369,"tid":27369,"ts":326458588269,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1830917},
-{"pid":27369,"tid":27369,"ts":326458588360,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1831008},
-{"pid":27369,"tid":27369,"ts":326458588360,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1831008,"id":"0xaf8a672dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458588360,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2259,"tdur":1739,"tts":1831039},
-{"pid":27369,"tid":27369,"ts":326458588391,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1831039},
-{"pid":27369,"tid":27369,"ts":326458588391,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2045,"tdur":1709,"tts":1831039},
-{"pid":27369,"tid":27369,"ts":326458588421,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":67},"dur":61,"tdur":61,"tts":1831069},
-{"pid":27369,"tid":27369,"ts":326458588421,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":1831100},
-{"pid":27369,"tid":27369,"ts":326458588482,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":916,"tdur":611,"tts":1831130},
-{"pid":27369,"tid":27369,"ts":326458588513,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1831161,"id":"0x30000002d"},
-{"pid":27369,"tid":27369,"ts":326458588513,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1831161,"id":"0x30000002e"},
-{"pid":27369,"tid":27369,"ts":326458588513,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":1831161},
-{"pid":27369,"tid":27369,"ts":326458588543,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1831191},
-{"pid":27369,"tid":27369,"ts":326458588574,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":793,"tdur":488,"tts":1831222},
-{"pid":27369,"tid":27369,"ts":326458588696,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":1831344},
-{"pid":27369,"tid":27369,"ts":326458588726,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":1831374},
-{"pid":27369,"tid":27369,"ts":326458588757,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":1831405},
-{"pid":27369,"tid":27369,"ts":326458588788,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1831435},
-{"pid":27369,"tid":27369,"ts":326458588788,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2190},"dur":61,"tdur":62,"tts":1831435},
-{"pid":27369,"tid":27369,"ts":326458588818,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":1831466},
-{"pid":27369,"tid":27369,"ts":326458588818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1831497,"id":"0xaf8a6c2afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458588879,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":397,"tdur":92,"tts":1831527},
-{"pid":27369,"tid":27369,"ts":326458588879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1831527,"id":"0xaf8a6c2bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458589245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1831588,"id":"0xaf8a6c24febbc614"},
-{"pid":27369,"tid":27369,"ts":326458589367,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1831710},
-{"pid":27369,"tid":27369,"ts":326458589398,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1831741},
-{"pid":27369,"tid":27369,"ts":326458589398,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1831741},
-{"pid":27369,"tid":27369,"ts":326458589428,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":67},"dur":31,"tdur":31,"tts":1831771},
-{"pid":27369,"tid":27369,"ts":326458589459,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":67},"dur":30,"tdur":30,"tts":1831802},
-{"pid":27369,"tid":27369,"ts":326458589489,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":67},"tts":1831832},
-{"pid":27369,"tid":27369,"ts":326458589489,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1831832},
-{"pid":27369,"tid":27369,"ts":326458589489,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1831832},
-{"pid":27369,"tid":27369,"ts":326458589520,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1831863},
-{"pid":27369,"tid":27369,"ts":326458589551,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1831893},
-{"pid":27369,"tid":27369,"ts":326458589581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1831924,"id":"0xaf8a6c25febbc614"},
-{"pid":27369,"tid":27369,"ts":326458589642,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":732,"tts":1831985},
-{"pid":27369,"tid":27369,"ts":326458589673,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":67},"dur":152,"tdur":153,"tts":1832015},
-{"pid":27369,"tid":27407,"ts":326458588971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408454,"id":"0xaf8a6c2bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458589001,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1408484},
-{"pid":27369,"tid":27407,"ts":326458589001,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408484,"id":"0xba446e06"},
-{"pid":27369,"tid":27407,"ts":326458589154,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":91,"tdur":91,"tts":1408576},
-{"pid":27369,"tid":27407,"ts":326458589184,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":31,"tts":1408606},
-{"pid":27369,"tid":27407,"ts":326458589184,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408606,"id":"0xc4c1200a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458589306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408698,"id":"0xaf8a6c24febbc614"},
-{"pid":27369,"tid":27407,"ts":326458589306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":31,"tdur":30,"tts":1408698},
-{"pid":27369,"tid":27407,"ts":326458589642,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408820,"id":"0xaf8a6c25febbc614"},
-{"pid":27369,"tid":27407,"ts":326458589642,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1408820},
-{"pid":27369,"tid":27407,"ts":326458589642,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408820,"id":"0xba446f02"},
-{"pid":27369,"tid":27407,"ts":326458590375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1408972,"id":"0xaf8a6c26febbc614"},
-{"pid":27369,"tid":27407,"ts":326458590405,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1408972},
-{"pid":27369,"tid":27407,"ts":326458590405,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1408972,"id":"0xba447002"},
-{"pid":27369,"tid":27407,"ts":326458594251,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":183,"tts":1409125},
-{"pid":27369,"tid":27407,"ts":326458594312,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1409156},
-{"pid":27369,"tid":27407,"ts":326458594312,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1409156,"id":"0xc4c12202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458594342,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1409186,"id":"0xaf8a672ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458601881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1409400,"id":"0xaf8a6c27febbc614"},
-{"pid":27369,"tid":27407,"ts":326458601881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1409400},
-{"pid":27369,"tid":27407,"ts":326458601911,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1409430,"id":"0xba447102"},
-{"pid":27369,"tid":27407,"ts":326458602613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1409522,"id":"0xaf8a6c20febbc614"},
-{"pid":27369,"tid":27407,"ts":326458602613,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1409522},
-{"pid":27369,"tid":27407,"ts":326458602644,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1409552,"id":"0xba447202"},
-{"pid":27369,"tid":27407,"ts":326458604292,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1409674},
-{"pid":27369,"tid":27407,"ts":326458604322,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1409705},
-{"pid":27369,"tid":27407,"ts":326458604322,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1409705,"id":"0xccc3de02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458604353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1409735,"id":"0xaf8a6728feb47934"},
-{"pid":27369,"tid":27407,"ts":326458610762,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":305,"tts":1409949},
-{"pid":27369,"tid":27407,"ts":326458610823,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":214,"tdur":214,"tts":1410010},
-{"pid":27369,"tid":27407,"ts":326458610823,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1410010,"id":"0xccc3e102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458610884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1410071,"id":"0xaf8a6729feb47934"},
-{"pid":27369,"tid":27407,"ts":326458612685,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1410346,"id":"0xaf8a6c21febbc614"},
-{"pid":27369,"tid":27407,"ts":326458612715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1410376},
-{"pid":27369,"tid":27407,"ts":326458612715,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1410376,"id":"0xba447302"},
-{"pid":27369,"tid":27407,"ts":326458613753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1410529,"id":"0xaf8a6c22febbc614"},
-{"pid":27369,"tid":27407,"ts":326458613784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1410560},
-{"pid":27369,"tid":27407,"ts":326458613784,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1410560,"id":"0xba447402"},
-{"pid":27369,"tid":27407,"ts":326458618240,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":153,"tts":1410712},
-{"pid":27369,"tid":27407,"ts":326458618270,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1410743},
-{"pid":27369,"tid":27407,"ts":326458618301,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1410773,"id":"0xc4c12502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458618301,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1410804,"id":"0xaf8a672bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458619430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1410956,"id":"0xaf8a6c23febbc614"},
-{"pid":27369,"tid":27407,"ts":326458619430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1410956},
-{"pid":27369,"tid":27407,"ts":326458619430,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1410987,"id":"0xba447502"},
-{"pid":27369,"tid":27407,"ts":326458620101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1411078,"id":"0xaf8a6c3cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458620132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1411109},
-{"pid":27369,"tid":27407,"ts":326458620132,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1411109,"id":"0xba447602"},
-{"pid":27369,"tid":27407,"ts":326458622696,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1411231},
-{"pid":27369,"tid":27407,"ts":326458622726,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1411262},
-{"pid":27369,"tid":27407,"ts":326458622757,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1411292,"id":"0xccc3e302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458622757,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1411292,"id":"0xaf8a6724feb47934"},
-{"pid":27369,"tid":27407,"ts":326458625595,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1411506},
-{"pid":27369,"tid":27407,"ts":326458625626,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1411536},
-{"pid":27369,"tid":27407,"ts":326458625656,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1411567,"id":"0xccc3e602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458625687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1411597,"id":"0xaf8a6725feb47934"},
-{"pid":27369,"tid":27407,"ts":326458627213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1411811,"id":"0xaf8a6c3dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458627213,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":1411811},
-{"pid":27369,"tid":27407,"ts":326458627213,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1411811},
-{"pid":27369,"tid":27407,"ts":326458627274,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1411841,"id":"0xba447702"},
-{"pid":27369,"tid":27407,"ts":326458628525,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1411933,"id":"0xaf8a6c3efebbc614"},
-{"pid":27369,"tid":27407,"ts":326458628525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1411933},
-{"pid":27369,"tid":27407,"ts":326458628556,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1411963,"id":"0xba447802"},
-{"pid":27369,"tid":27407,"ts":326458632310,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":213,"tts":1412086},
-{"pid":27369,"tid":27369,"ts":326458589673,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1832015},
-{"pid":27369,"tid":27369,"ts":326458589703,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1832046},
-{"pid":27369,"tid":27369,"ts":326458589703,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1832046},
-{"pid":27369,"tid":27369,"ts":326458589734,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1832076,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458589734,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1832076},
-{"pid":27369,"tid":27369,"ts":326458589825,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1832168},
-{"pid":27369,"tid":27369,"ts":326458589825,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":336,"tts":1832168},
-{"pid":27369,"tid":27369,"ts":326458589856,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1832198},
-{"pid":27369,"tid":27369,"ts":326458589856,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":275,"tts":1832198},
-{"pid":27369,"tid":27369,"ts":326458589856,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":62,"tts":1832198},
-{"pid":27369,"tid":27369,"ts":326458589917,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":183,"tts":1832260},
-{"pid":27369,"tid":27369,"ts":326458590191,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1832504,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458590253,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1832565,"id":"0x30000002d"},
-{"pid":27369,"tid":27369,"ts":326458590253,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1832565,"id":"0x30000002e"},
-{"pid":27369,"tid":27369,"ts":326458590253,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":1832565},
-{"pid":27369,"tid":27369,"ts":326458590283,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4352},"dur":92,"tdur":92,"tts":1832595},
-{"pid":27369,"tid":27369,"ts":326458590314,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":1832626},
-{"pid":27369,"tid":27369,"ts":326458590314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1832626,"id":"0xaf8a6c26febbc614"},
-{"pid":27369,"tid":27369,"ts":326458590375,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1832687},
-{"pid":27369,"tid":27369,"ts":326458590375,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1832687},
-{"pid":27369,"tid":27369,"ts":326458590680,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1832839},
-{"pid":27369,"tid":27369,"ts":326458590771,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1832931},
-{"pid":27369,"tid":27369,"ts":326458590802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1832962,"id":"0xaf8a672efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458590802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1832962},
-{"pid":27369,"tid":27369,"ts":326458590802,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1832962},
-{"pid":27369,"tid":27369,"ts":326458590863,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1833023,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458590863,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1833023,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458590863,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1833023},
-{"pid":27369,"tid":27369,"ts":326458590893,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":1833053},
-{"pid":27369,"tid":27369,"ts":326458590893,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1833053,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458590985,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1833145},
-{"pid":27369,"tid":27369,"ts":326458594525,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1833328},
-{"pid":27369,"tid":27369,"ts":326458594556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1833358,"id":"0xaf8a672ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458594556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1833358},
-{"pid":27369,"tid":27369,"ts":326458594586,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":1833419},
-{"pid":27369,"tid":27369,"ts":326458594617,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1833419},
-{"pid":27369,"tid":27369,"ts":326458594708,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1833511},
-{"pid":27369,"tid":27369,"ts":326458600904,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1833908},
-{"pid":27369,"tid":27369,"ts":326458601423,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1834426},
-{"pid":27369,"tid":27369,"ts":326458601515,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1834518},
-{"pid":27369,"tid":27369,"ts":326458601606,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":274,"tts":1834610},
-{"pid":27369,"tid":27369,"ts":326458595000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1834640,"id":"0x300000030"},
-{"pid":27369,"tid":27369,"ts":326458601667,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901936},"tts":1834671,"id":"0x300000030"},
-{"pid":27369,"tid":27369,"ts":326458601667,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":213,"tts":1834671},
-{"pid":27369,"tid":27369,"ts":326458601698,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1834701,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458601698,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":1834701},
-{"pid":27369,"tid":27369,"ts":326458601728,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":1834732},
-{"pid":27369,"tid":27369,"ts":326458601759,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1834762},
-{"pid":27369,"tid":27369,"ts":326458601789,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1834793,"id":"0xaf8a6c27febbc614"},
-{"pid":27369,"tid":27369,"ts":326458601850,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1834854,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458601850,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1834854,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458601911,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1834915},
-{"pid":27369,"tid":27369,"ts":326458602430,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1835251},
-{"pid":27369,"tid":27369,"ts":326458602491,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":152,"tts":1835312},
-{"pid":27369,"tid":27369,"ts":326458602491,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458600423},"dur":92,"tdur":91,"tts":1835312},
-{"pid":27369,"tid":27369,"ts":326458602522,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1835342},
-{"pid":27369,"tid":27369,"ts":326458602552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1835373,"id":"0xaf8a6c20febbc614"},
-{"pid":27369,"tid":27369,"ts":326458602644,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1835464},
-{"pid":27369,"tid":27369,"ts":326458602766,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1835586},
-{"pid":27369,"tid":27369,"ts":326458604597,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1835830},
-{"pid":27369,"tid":27369,"ts":326458604597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1835830,"id":"0xaf8a6728feb47934"},
-{"pid":27369,"tid":27369,"ts":326458604628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":1835861},
-{"pid":27369,"tid":27369,"ts":326458604628,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":1835861},
-{"pid":27369,"tid":27369,"ts":326458604689,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1835922,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458604719,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1835953,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458604750,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1835983},
-{"pid":27369,"tid":27369,"ts":326458604750,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1835983},
-{"pid":27369,"tid":27369,"ts":326458604780,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1836014,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458604902,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1836136},
-{"pid":27369,"tid":27369,"ts":326458611220,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1836410},
-{"pid":27369,"tid":27369,"ts":326458611220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1836410,"id":"0xaf8a6729feb47934"},
-{"pid":27369,"tid":27369,"ts":326458611251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":610,"tdur":610,"tts":1836441},
-{"pid":27369,"tid":27369,"ts":326458611251,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":610,"tdur":610,"tts":1836441},
-{"pid":27369,"tid":27369,"ts":326458611281,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":580,"tdur":580,"tts":1836471},
-{"pid":27369,"tid":27369,"ts":326458611647,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":61,"tts":1836868},
-{"pid":27369,"tid":27369,"ts":326458611678,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1836868},
-{"pid":27369,"tid":27369,"ts":326458611708,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1836899,"id":"0xaf8a672afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458611800,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1836990},
-{"pid":27369,"tid":27369,"ts":326458611830,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1837021},
-{"pid":27369,"tid":27369,"ts":326458611922,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1837112},
-{"pid":27369,"tid":27369,"ts":326458612014,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1837204},
-{"pid":27369,"tid":27369,"ts":326458612044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1837234,"id":"0xaf8a672afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458612044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1435,"tdur":1435,"tts":1837234},
-{"pid":27369,"tid":27369,"ts":326458612044,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":31,"tts":1837234},
-{"pid":27369,"tid":27369,"ts":326458612075,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1373,"tts":1837265},
-{"pid":27369,"tid":27369,"ts":326458612105,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":68},"dur":31,"tdur":31,"tts":1837295},
-{"pid":27369,"tid":27369,"ts":326458612105,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1837295},
-{"pid":27369,"tid":27369,"ts":326458612166,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":275,"tts":1837356},
-{"pid":27369,"tid":27369,"ts":326458612166,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1837356,"id":"0x30000002f"},
-{"pid":27369,"tid":27369,"ts":326458612197,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1837387},
-{"pid":27369,"tid":27369,"ts":326458612197,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1837387},
-{"pid":27369,"tid":27369,"ts":326458612227,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":184,"tts":1837417},
-{"pid":27369,"tid":27369,"ts":326458612410,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1837601},
-{"pid":27369,"tid":27369,"ts":326458612441,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1837631},
-{"pid":27369,"tid":27369,"ts":326458612471,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":91,"tts":1837662},
-{"pid":27369,"tid":27369,"ts":326458612471,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":68},"dur":31,"tdur":30,"tts":1837662},
-{"pid":27369,"tid":27369,"ts":326458612502,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":68},"dur":30,"tdur":31,"tts":1837692},
-{"pid":27369,"tid":27369,"ts":326458612532,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":68},"tts":1837723},
-{"pid":27369,"tid":27369,"ts":326458612532,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1837723},
-{"pid":27369,"tid":27369,"ts":326458612532,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":1837753},
-{"pid":27369,"tid":27369,"ts":326458612563,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1837753},
-{"pid":27369,"tid":27369,"ts":326458612593,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1837784},
-{"pid":27369,"tid":27369,"ts":326458612593,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1837814,"id":"0xaf8a6c21febbc614"},
-{"pid":27369,"tid":27369,"ts":326458612685,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":732,"tts":1837906},
-{"pid":27369,"tid":27369,"ts":326458612715,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":68},"dur":214,"tdur":213,"tts":1837906},
-{"pid":27369,"tid":27369,"ts":326458612715,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":62,"tdur":61,"tts":1837906},
-{"pid":27369,"tid":27369,"ts":326458612746,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1837936},
-{"pid":27369,"tid":27369,"ts":326458612746,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1837936},
-{"pid":27369,"tid":27369,"ts":326458612777,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1837967,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458612777,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1837967},
-{"pid":27369,"tid":27369,"ts":326458612929,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1838119},
-{"pid":27369,"tid":27369,"ts":326458612929,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":275,"tts":1838150},
-{"pid":27369,"tid":27369,"ts":326458612960,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1838150},
-{"pid":27369,"tid":27369,"ts":326458612960,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1838150},
-{"pid":27369,"tid":27369,"ts":326458612990,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1838180},
-{"pid":27369,"tid":27369,"ts":326458613021,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":153,"tts":1838211},
-{"pid":27369,"tid":27369,"ts":326458613204,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1838394,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458613265,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1838455,"id":"0x30000002f"},
-{"pid":27369,"tid":27369,"ts":326458613295,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":1838486},
-{"pid":27369,"tid":27369,"ts":326458613295,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6514},"dur":92,"tdur":91,"tts":1838486},
-{"pid":27369,"tid":27369,"ts":326458613326,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1838516},
-{"pid":27369,"tid":27369,"ts":326458613326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1838547,"id":"0xaf8a6c22febbc614"},
-{"pid":27369,"tid":27369,"ts":326458613387,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":1838577},
-{"pid":27369,"tid":27369,"ts":326458613417,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1838608},
-{"pid":27369,"tid":27369,"ts":326458613570,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1838760},
-{"pid":27369,"tid":27369,"ts":326458618514,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1839035},
-{"pid":27369,"tid":27369,"ts":326458619033,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1839523},
-{"pid":27369,"tid":27369,"ts":326458619125,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1839615},
-{"pid":27369,"tid":27369,"ts":326458619216,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":214,"tdur":213,"tts":1839707},
-{"pid":27369,"tid":27369,"ts":326458612000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1839737,"id":"0x300000031"},
-{"pid":27369,"tid":27369,"ts":326458619247,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901937},"tts":1839737,"id":"0x300000031"},
-{"pid":27369,"tid":27369,"ts":326458619277,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":153,"tdur":152,"tts":1839768},
-{"pid":27369,"tid":27369,"ts":326458619277,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1839768,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458619277,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1839768},
-{"pid":27369,"tid":27369,"ts":326458619308,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1839798},
-{"pid":27369,"tid":27369,"ts":326458619338,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1839829},
-{"pid":27369,"tid":27369,"ts":326458619338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1839859,"id":"0xaf8a6c23febbc614"},
-{"pid":27369,"tid":27369,"ts":326458619399,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1839890,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458619399,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1839920,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458619460,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1839951},
-{"pid":27369,"tid":27369,"ts":326458619918,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1840225},
-{"pid":27369,"tid":27369,"ts":326458619949,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":1840256},
-{"pid":27369,"tid":27369,"ts":326458619979,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458617099},"dur":122,"tdur":122,"tts":1840286},
-{"pid":27369,"tid":27369,"ts":326458619979,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":61,"tts":1840317},
-{"pid":27369,"tid":27369,"ts":326458619979,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1840317},
-{"pid":27369,"tid":27369,"ts":326458620040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1840347,"id":"0xaf8a6c3cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458620132,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1840439},
-{"pid":27369,"tid":27369,"ts":326458620224,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1840531},
-{"pid":27369,"tid":27369,"ts":326458620315,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1840653},
-{"pid":27369,"tid":27369,"ts":326458620346,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1840653,"id":"0xaf8a672bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458620346,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":152,"tdur":61,"tts":1840683},
-{"pid":27369,"tid":27369,"ts":326458620437,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1840683},
-{"pid":27369,"tid":27369,"ts":326458620468,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1840714},
-{"pid":27369,"tid":27369,"ts":326458620559,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1840805},
-{"pid":27369,"tid":27369,"ts":326458622940,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1840958},
-{"pid":27369,"tid":27369,"ts":326458622970,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1840958,"id":"0xaf8a6724feb47934"},
-{"pid":27369,"tid":27369,"ts":326458622970,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":1840958},
-{"pid":27369,"tid":27369,"ts":326458623001,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1840988},
-{"pid":27369,"tid":27369,"ts":326458623031,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1841019,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458623062,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1841049,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458623062,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":1841049},
-{"pid":27369,"tid":27369,"ts":326458623092,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":1841080},
-{"pid":27369,"tid":27369,"ts":326458623092,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1841080,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458623184,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1841171},
-{"pid":27369,"tid":27369,"ts":326458625870,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1841355},
-{"pid":27369,"tid":27369,"ts":326458625900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1841385,"id":"0xaf8a6725feb47934"},
-{"pid":27369,"tid":27369,"ts":326458625900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":427,"tts":1841385},
-{"pid":27369,"tid":27369,"ts":326458625900,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":397,"tts":1841385},
-{"pid":27369,"tid":27369,"ts":326458625931,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":336,"tts":1841446},
-{"pid":27369,"tid":27369,"ts":326458626114,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":1841599},
-{"pid":27369,"tid":27369,"ts":326458626114,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":1841629},
-{"pid":27369,"tid":27369,"ts":326458626144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1841629,"id":"0xaf8a6726feb47934"},
-{"pid":27369,"tid":27369,"ts":326458626236,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1841721},
-{"pid":27369,"tid":27369,"ts":326458626267,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1841751},
-{"pid":27369,"tid":27369,"ts":326458626358,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1841843},
-{"pid":27369,"tid":27369,"ts":326458626450,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1841934},
-{"pid":27369,"tid":27369,"ts":326458626480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1841965,"id":"0xaf8a6726feb47934"},
-{"pid":27369,"tid":27369,"ts":326458626480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1831,"tdur":1526,"tts":1841965},
-{"pid":27369,"tid":27369,"ts":326458626480,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":0,"tts":1841996},
-{"pid":27369,"tid":27369,"ts":326458626511,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1800,"tdur":1465,"tts":1841996},
-{"pid":27369,"tid":27369,"ts":326458626541,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":69},"dur":61,"tdur":61,"tts":1842026},
-{"pid":27369,"tid":27369,"ts":326458626541,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1842026},
-{"pid":27369,"tid":27369,"ts":326458626602,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":1842087},
-{"pid":27369,"tid":27369,"ts":326458626602,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1842087,"id":"0x300000030"},
-{"pid":27369,"tid":27369,"ts":326458626633,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1842118},
-{"pid":27369,"tid":27369,"ts":326458626633,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1842118},
-{"pid":27369,"tid":27369,"ts":326458626663,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":1842148},
-{"pid":27369,"tid":27369,"ts":326458626907,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1842392},
-{"pid":27369,"tid":27369,"ts":326458626938,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1842423},
-{"pid":27369,"tid":27369,"ts":326458626938,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":153,"tdur":122,"tts":1842453},
-{"pid":27369,"tid":27369,"ts":326458626969,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":69},"dur":61,"tdur":31,"tts":1842453},
-{"pid":27369,"tid":27369,"ts":326458627030,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":69},"dur":0,"tdur":0,"tts":1842514},
-{"pid":27369,"tid":27369,"ts":326458627030,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":69},"tts":1842545},
-{"pid":27369,"tid":27369,"ts":326458627060,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1842545},
-{"pid":27369,"tid":27369,"ts":326458627060,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":1842545},
-{"pid":27369,"tid":27369,"ts":326458627091,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1842575},
-{"pid":27369,"tid":27369,"ts":326458627121,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1842606},
-{"pid":27369,"tid":27369,"ts":326458627121,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1842606,"id":"0xaf8a6c3dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458627243,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1038,"tdur":733,"tts":1842728},
-{"pid":27369,"tid":27369,"ts":326458627243,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":69},"dur":458,"tdur":183,"tts":1842728},
-{"pid":27369,"tid":27369,"ts":326458627274,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":305,"tdur":91,"tts":1842759},
-{"pid":27369,"tid":27369,"ts":326458627274,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":1842759},
-{"pid":27369,"tid":27369,"ts":326458627274,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1842759},
-{"pid":27369,"tid":27369,"ts":326458627304,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1842789,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458627304,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":31,"tts":1842789},
-{"pid":27369,"tid":27369,"ts":326458627579,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1842850},
-{"pid":27369,"tid":27369,"ts":326458627670,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1842911},
-{"pid":27369,"tid":27369,"ts":326458627701,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":335,"tts":1842942},
-{"pid":27369,"tid":27369,"ts":326458627701,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":1842942},
-{"pid":27369,"tid":27369,"ts":326458627732,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":275,"tts":1842972},
-{"pid":27369,"tid":27369,"ts":326458627732,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":1842972},
-{"pid":27369,"tid":27369,"ts":326458627793,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1843033},
-{"pid":27369,"tid":27369,"ts":326458628037,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1843277,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458628067,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1843308,"id":"0x300000030"},
-{"pid":27369,"tid":27369,"ts":326458628067,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1843308},
-{"pid":27369,"tid":27369,"ts":326458628128,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1843308},
-{"pid":27369,"tid":27369,"ts":326458628159,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8676},"dur":91,"tdur":92,"tts":1843338},
-{"pid":27369,"tid":27369,"ts":326458628189,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1843369},
-{"pid":27369,"tid":27369,"ts":326458628189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1843369,"id":"0xaf8a6c3efebbc614"},
-{"pid":27369,"tid":27369,"ts":326458628250,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1843430},
-{"pid":27369,"tid":27369,"ts":326458628250,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1843430},
-{"pid":27369,"tid":27369,"ts":326458628372,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1843552},
-{"pid":27369,"tid":27369,"ts":326458632615,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1843827},
-{"pid":27369,"tid":27369,"ts":326458632615,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1843827,"id":"0xaf8a6727feb47934"},
-{"pid":27369,"tid":27369,"ts":326458632645,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1843857},
-{"pid":27369,"tid":27369,"ts":326458632676,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1843888},
-{"pid":27369,"tid":27369,"ts":326458632676,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":1843918},
-{"pid":27369,"tid":27369,"ts":326458632798,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1844010},
-{"pid":27369,"tid":27369,"ts":326458634232,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1844193},
-{"pid":27369,"tid":27369,"ts":326458634721,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1844681},
-{"pid":27369,"tid":27369,"ts":326458634782,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1844742},
-{"pid":27369,"tid":27369,"ts":326458634873,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":305,"tdur":275,"tts":1844864},
-{"pid":27369,"tid":27369,"ts":326458628000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1844895,"id":"0x300000032"},
-{"pid":27369,"tid":27369,"ts":326458634934,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901938},"tts":1844895,"id":"0x300000032"},
-{"pid":27369,"tid":27369,"ts":326458634934,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":1844895},
-{"pid":27369,"tid":27369,"ts":326458634965,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1844925,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458634995,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":1844956},
-{"pid":27369,"tid":27369,"ts":326458634995,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":1844956},
-{"pid":27369,"tid":27369,"ts":326458635026,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":1845017},
-{"pid":27369,"tid":27369,"ts":326458635056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1845017,"id":"0xaf8a6c3ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458635117,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1845078,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458635117,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1845109,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458635178,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1845139},
-{"pid":27369,"tid":27369,"ts":326458635575,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1845353},
-{"pid":27369,"tid":27369,"ts":326458635606,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":214,"tts":1845383},
-{"pid":27369,"tid":27369,"ts":326458635636,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458633776},"dur":61,"tdur":61,"tts":1845414},
-{"pid":27369,"tid":27369,"ts":326458635636,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1845414},
-{"pid":27369,"tid":27369,"ts":326458635667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1845444,"id":"0xaf8a6c38febbc614"},
-{"pid":27369,"tid":27369,"ts":326458636003,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1845627},
-{"pid":27369,"tid":27369,"ts":326458636094,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1845719},
-{"pid":27369,"tid":27369,"ts":326458652758,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1846329},
-{"pid":27369,"tid":27369,"ts":326458653247,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1846818},
-{"pid":27369,"tid":27369,"ts":326458653338,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1846909},
-{"pid":27369,"tid":27369,"ts":326458653430,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":1847001},
-{"pid":27369,"tid":27369,"ts":326458645000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1847031,"id":"0x300000033"},
-{"pid":27369,"tid":27369,"ts":326458653491,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901939},"tts":1847062,"id":"0x300000033"},
-{"pid":27369,"tid":27407,"ts":326458632340,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1412116},
-{"pid":27369,"tid":27407,"ts":326458632371,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1412147,"id":"0xc4c12802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458632401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1412177,"id":"0xaf8a6727feb47934"},
-{"pid":27369,"tid":27407,"ts":326458635148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412391,"id":"0xaf8a6c3ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458635148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1412391},
-{"pid":27369,"tid":27407,"ts":326458635178,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1412421,"id":"0xba447902"},
-{"pid":27369,"tid":27407,"ts":326458635728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412543,"id":"0xaf8a6c38febbc614"},
-{"pid":27369,"tid":27407,"ts":326458635758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1412574},
-{"pid":27369,"tid":27407,"ts":326458635758,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1412574,"id":"0xba447a02"},
-{"pid":27369,"tid":27407,"ts":326458654101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1412696,"id":"0xaf8a6c39febbc614"},
-{"pid":27369,"tid":27407,"ts":326458654132,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1412726},
-{"pid":27369,"tid":27407,"ts":326458654132,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1412726,"id":"0xba447b02"},
-{"pid":27369,"tid":27407,"ts":326458663990,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1412849},
-{"pid":27369,"tid":27407,"ts":326458664020,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1412879},
-{"pid":27369,"tid":27407,"ts":326458664051,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1412910,"id":"0xccc3e802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458664051,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1412910,"id":"0xaf8a6720feb47934"},
-{"pid":27369,"tid":27407,"ts":326458664570,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1413123,"id":"0xaf8a6c3afebbc614"},
-{"pid":27369,"tid":27407,"ts":326458664570,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1413123},
-{"pid":27369,"tid":27407,"ts":326458664600,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1413154,"id":"0xba447c02"},
-{"pid":27369,"tid":27407,"ts":326458667164,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1413276},
-{"pid":27369,"tid":27407,"ts":326458667194,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":184,"tts":1413306},
-{"pid":27369,"tid":27407,"ts":326458667225,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1413337,"id":"0xccc3ea02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458667255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1413367,"id":"0xaf8a6721feb47934"},
-{"pid":27369,"tid":27407,"ts":326458669728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1413581,"id":"0xaf8a6c3bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458669728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1413581},
-{"pid":27369,"tid":27407,"ts":326458669758,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1413612,"id":"0xba447d02"},
-{"pid":27369,"tid":27407,"ts":326458679250,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1413703},
-{"pid":27369,"tid":27407,"ts":326458679280,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":1413734},
-{"pid":27369,"tid":27407,"ts":326458679280,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1413734,"id":"0xccc3ec02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458679311,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1413764,"id":"0xaf8a673cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458679830,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1413917,"id":"0xaf8a6c34febbc614"},
-{"pid":27369,"tid":27407,"ts":326458679860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1413947},
-{"pid":27369,"tid":27407,"ts":326458679860,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1413947,"id":"0xba447e02"},
-{"pid":27369,"tid":27407,"ts":326458680593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1414069,"id":"0xaf8a6c35febbc614"},
-{"pid":27369,"tid":27407,"ts":326458680593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1414069},
-{"pid":27369,"tid":27407,"ts":326458680593,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1414069,"id":"0xba447f02"},
-{"pid":27369,"tid":27407,"ts":326458681295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1414191,"id":"0xaf8a6c36febbc614"},
-{"pid":27369,"tid":27407,"ts":326458681295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1414191},
-{"pid":27369,"tid":27407,"ts":326458681325,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1414222,"id":"0xba448002"},
-{"pid":27369,"tid":27407,"ts":326458685934,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":122,"tts":1414314},
-{"pid":27369,"tid":27407,"ts":326458685964,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1414344},
-{"pid":27369,"tid":27407,"ts":326458685995,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1414375,"id":"0xc4c12b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458685995,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1414375,"id":"0xaf8a673dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458687033,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1414497},
-{"pid":27369,"tid":27407,"ts":326458687063,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1414527},
-{"pid":27369,"tid":27407,"ts":326458687094,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1414558,"id":"0xccc3ee02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458687094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1414558,"id":"0xaf8a673efeb47934"},
-{"pid":27369,"tid":27407,"ts":326458687948,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1414710,"id":"0xaf8a6c37febbc614"},
-{"pid":27369,"tid":27407,"ts":326458687948,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1414710},
-{"pid":27369,"tid":27407,"ts":326458687979,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1414741,"id":"0xba448102"},
-{"pid":27369,"tid":27407,"ts":326458688833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1414893,"id":"0xaf8a6c30febbc614"},
-{"pid":27369,"tid":27407,"ts":326458688833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1414893},
-{"pid":27369,"tid":27407,"ts":326458688833,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1414893,"id":"0xba448202"},
-{"pid":27369,"tid":27407,"ts":326458690542,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1415046},
-{"pid":27369,"tid":27407,"ts":326458690603,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":122,"tts":1415077},
-{"pid":27369,"tid":27407,"ts":326458690603,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1415077,"id":"0xccc3f002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458690634,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1415107,"id":"0xaf8a673ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458692068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1415290,"id":"0xaf8a6c31febbc614"},
-{"pid":27369,"tid":27407,"ts":326458692099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1415321},
-{"pid":27369,"tid":27407,"ts":326458692099,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1415321,"id":"0xba448302"},
-{"pid":27369,"tid":27407,"ts":326458692984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1415473,"id":"0xaf8a6c32febbc614"},
-{"pid":27369,"tid":27407,"ts":326458692984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":214,"tdur":92,"tts":1415473},
-{"pid":27369,"tid":27407,"ts":326458693015,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1415504,"id":"0xba448402"},
-{"pid":27369,"tid":27407,"ts":326458693015,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":1415504},
-{"pid":27369,"tid":27369,"ts":326458653521,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1847092},
-{"pid":27369,"tid":27369,"ts":326458653552,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1847123,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458653582,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1847153},
-{"pid":27369,"tid":27369,"ts":326458653857,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1847428},
-{"pid":27369,"tid":27369,"ts":326458653918,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":183,"tts":1847489},
-{"pid":27369,"tid":27369,"ts":326458653918,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458650452},"dur":336,"tdur":122,"tts":1847520},
-{"pid":27369,"tid":27369,"ts":326458653949,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":305,"tdur":92,"tts":1847550},
-{"pid":27369,"tid":27369,"ts":326458653979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1847550,"id":"0xaf8a6c39febbc614"},
-{"pid":27369,"tid":27369,"ts":326458654315,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1847703},
-{"pid":27369,"tid":27369,"ts":326458654406,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1847794},
-{"pid":27369,"tid":27369,"ts":326458664264,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1848100},
-{"pid":27369,"tid":27369,"ts":326458664295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1848130,"id":"0xaf8a6720feb47934"},
-{"pid":27369,"tid":27369,"ts":326458664295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":1848130},
-{"pid":27369,"tid":27369,"ts":326458664295,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":305,"tts":1848130},
-{"pid":27369,"tid":27369,"ts":326458664356,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1848191,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458664386,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1848222,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458664386,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":183,"tts":1848222},
-{"pid":27369,"tid":27369,"ts":326458664386,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":184,"tdur":183,"tts":1848222},
-{"pid":27369,"tid":27369,"ts":326458664417,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1848252,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458664448,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1848283},
-{"pid":27369,"tid":27369,"ts":326458664448,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1848283},
-{"pid":27369,"tid":27369,"ts":326458664478,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1848313},
-{"pid":27369,"tid":27369,"ts":326458664509,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1848344,"id":"0xaf8a6c3afebbc614"},
-{"pid":27369,"tid":27369,"ts":326458664539,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1848374,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458664570,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1848405,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458664692,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1848527},
-{"pid":27369,"tid":27369,"ts":326458667744,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1848741},
-{"pid":27369,"tid":27369,"ts":326458667774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1848771,"id":"0xaf8a6721feb47934"},
-{"pid":27369,"tid":27369,"ts":326458667774,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":489,"tdur":488,"tts":1848771},
-{"pid":27369,"tid":27369,"ts":326458667805,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":457,"tts":1848802},{"pid":27369,"tid":27369,"ts":326458667835,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":428,"tdur":427,"tts":1848832},
-{"pid":27369,"tid":27369,"ts":326458668049,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":91,"tts":1849046},
-{"pid":27369,"tid":27369,"ts":326458668049,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":91,"tts":1849046},
-{"pid":27369,"tid":27369,"ts":326458668110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1849107,"id":"0xaf8a6722feb47934"},
-{"pid":27369,"tid":27369,"ts":326458668202,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1849198},
-{"pid":27369,"tid":27369,"ts":326458668232,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1849229},
-{"pid":27369,"tid":27369,"ts":326458668354,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1849351},
-{"pid":27369,"tid":27369,"ts":326458668537,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1849504},
-{"pid":27369,"tid":27369,"ts":326458668934,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1849931},
-{"pid":27369,"tid":27369,"ts":326458669056,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":91,"tts":1849992},
-{"pid":27369,"tid":27369,"ts":326458669178,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1850083},
-{"pid":27369,"tid":27369,"ts":326458662000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1850114,"id":"0x300000034"},
-{"pid":27369,"tid":27369,"ts":326458669239,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901940},"tts":1850144,"id":"0x300000034"},
-{"pid":27369,"tid":27369,"ts":326458669239,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1850144},
-{"pid":27369,"tid":27369,"ts":326458669239,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1850144,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458669270,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1850175},
-{"pid":27369,"tid":27369,"ts":326458669544,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1850450},
-{"pid":27369,"tid":27369,"ts":326458669575,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":1850480},
-{"pid":27369,"tid":27369,"ts":326458669605,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458667128},"dur":92,"tdur":91,"tts":1850511},
-{"pid":27369,"tid":27369,"ts":326458669605,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":1850511},
-{"pid":27369,"tid":27369,"ts":326458669636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1850541,"id":"0xaf8a6c3bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458669728,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":2,"delay":9.9},"dur":61,"tdur":61,"tts":1850633},
-{"pid":27369,"tid":27369,"ts":326458669758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1850663,"id":"0xaf8a6723feb47934"},
-{"pid":27369,"tid":27369,"ts":326458669819,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1850724},
-{"pid":27369,"tid":27369,"ts":326458669911,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1850816},
-{"pid":27369,"tid":27369,"ts":326458669972,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1850877},
-{"pid":27369,"tid":27369,"ts":326458669972,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1850877},
-{"pid":27369,"tid":27369,"ts":326458670033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1850938,"id":"0xaf8a6722feb47934"},
-{"pid":27369,"tid":27369,"ts":326458670033,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":30,"tdur":31,"tts":1850938},
-{"pid":27369,"tid":27369,"ts":326458670124,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1851030},
-{"pid":27369,"tid":27369,"ts":326458670216,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1851121},
-{"pid":27369,"tid":27369,"ts":326458670368,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1851274},
-{"pid":27369,"tid":27369,"ts":326458679525,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1851579},
-{"pid":27369,"tid":27369,"ts":326458679555,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1851609,"id":"0xaf8a673cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458679555,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":306,"tts":1851609},
-{"pid":27369,"tid":27369,"ts":326458679586,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":275,"tts":1851640},
-{"pid":27369,"tid":27369,"ts":326458679647,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1851701,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458679647,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1851701,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458679677,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":1851732},
-{"pid":27369,"tid":27369,"ts":326458679677,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1851732},
-{"pid":27369,"tid":27369,"ts":326458679708,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1851762,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458679708,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":153,"tts":1851762},
-{"pid":27369,"tid":27369,"ts":326458679708,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":91,"tts":1851793},
-{"pid":27369,"tid":27369,"ts":326458679738,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1851793},
-{"pid":27369,"tid":27369,"ts":326458679769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1851823,"id":"0xaf8a6c34febbc614"},
-{"pid":27369,"tid":27369,"ts":326458679830,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1851884,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458679830,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1851884,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458679891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458679},"tts":1851945,"id":"0xaf8a6723feb47934"},
-{"pid":27369,"tid":27369,"ts":326458679891,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1465,"tdur":1465,"tts":1851945},
-{"pid":27369,"tid":27369,"ts":326458679921,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1851976},
-{"pid":27369,"tid":27369,"ts":326458679921,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1404,"tdur":1404,"tts":1851976},
-{"pid":27369,"tid":27369,"ts":326458679952,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":70},"dur":91,"tdur":92,"tts":1852006},
-{"pid":27369,"tid":27369,"ts":326458679952,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":91,"tdur":92,"tts":1852006},
-{"pid":27369,"tid":27369,"ts":326458680074,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":275,"tts":1852128},
-{"pid":27369,"tid":27369,"ts":326458680074,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1852128,"id":"0x300000031"},
-{"pid":27369,"tid":27369,"ts":326458680104,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1852159},
-{"pid":27369,"tid":27369,"ts":326458680104,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1852159},
-{"pid":27369,"tid":27369,"ts":326458680135,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":1852189},
-{"pid":27369,"tid":27369,"ts":326458680318,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1852372},
-{"pid":27369,"tid":27369,"ts":326458680349,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1852403},
-{"pid":27369,"tid":27369,"ts":326458680349,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1852403},
-{"pid":27369,"tid":27369,"ts":326458680379,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":70},"dur":31,"tdur":30,"tts":1852434},
-{"pid":27369,"tid":27369,"ts":326458680410,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":70},"dur":30,"tdur":31,"tts":1852464},
-{"pid":27369,"tid":27369,"ts":326458680440,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":70},"tts":1852495},
-{"pid":27369,"tid":27369,"ts":326458680440,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1852495},
-{"pid":27369,"tid":27369,"ts":326458680440,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1852495},
-{"pid":27369,"tid":27369,"ts":326458680471,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1852525},
-{"pid":27369,"tid":27369,"ts":326458680501,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1852556},
-{"pid":27369,"tid":27369,"ts":326458680501,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852556,"id":"0xaf8a6c35febbc614"},
-{"pid":27369,"tid":27369,"ts":326458680593,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":733,"tts":1852647},
-{"pid":27369,"tid":27369,"ts":326458680623,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":70},"dur":183,"tdur":183,"tts":1852678},
-{"pid":27369,"tid":27369,"ts":326458680623,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":1852678},
-{"pid":27369,"tid":27369,"ts":326458680623,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1852678},
-{"pid":27369,"tid":27369,"ts":326458680654,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1852708},
-{"pid":27369,"tid":27369,"ts":326458680654,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1852708,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458680684,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1852739},
-{"pid":27369,"tid":27369,"ts":326458680806,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1852861},
-{"pid":27369,"tid":27369,"ts":326458680806,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":306,"tdur":275,"tts":1852891},
-{"pid":27369,"tid":27369,"ts":326458680837,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1852891},
-{"pid":27369,"tid":27369,"ts":326458680837,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1852891},
-{"pid":27369,"tid":27369,"ts":326458680867,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":1852922},
-{"pid":27369,"tid":27369,"ts":326458680898,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":153,"tts":1852952},
-{"pid":27369,"tid":27369,"ts":326458681081,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1853135,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458681142,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1853197,"id":"0x300000031"},
-{"pid":27369,"tid":27369,"ts":326458681173,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":1853227},
-{"pid":27369,"tid":27369,"ts":326458681173,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":10838},"dur":91,"tdur":92,"tts":1853227},
-{"pid":27369,"tid":27369,"ts":326458681203,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1853258},
-{"pid":27369,"tid":27369,"ts":326458681203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1853288,"id":"0xaf8a6c36febbc614"},
-{"pid":27369,"tid":27369,"ts":326458681264,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":0,"tts":1853349},
-{"pid":27369,"tid":27369,"ts":326458681295,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1853349},
-{"pid":27369,"tid":27369,"ts":326458681417,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1853471},
-{"pid":27369,"tid":27369,"ts":326458681508,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1853563},
-{"pid":27369,"tid":27369,"ts":326458681539,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458679},"tts":1853593,"id":"0xaf8a66b1feb47934"},
-{"pid":27369,"tid":27369,"ts":326458681539,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ui/events/gesture_detection/gesture_detector.cc","src_func":"StartTimeout"},"dur":30,"tdur":31,"tts":1853593},
-{"pid":27369,"tid":27369,"ts":326458681630,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1853685},
-{"pid":27369,"tid":27369,"ts":326458686727,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1854784},
-{"pid":27369,"tid":27369,"ts":326458687368,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1855211},
-{"pid":27369,"tid":27369,"ts":326458687429,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1855272},
-{"pid":27369,"tid":27369,"ts":326458687521,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":1855363},
-{"pid":27369,"tid":27369,"ts":326458678000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1855394,"id":"0x300000035"},
-{"pid":27369,"tid":27369,"ts":326458687582,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901941},"tts":1855424,"id":"0x300000035"},
-{"pid":27369,"tid":27369,"ts":326458687582,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":1855424},
-{"pid":27369,"tid":27369,"ts":326458687582,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1855424,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458687612,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1855455},
-{"pid":27369,"tid":27369,"ts":326458687765,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1855638},
-{"pid":27369,"tid":27369,"ts":326458687826,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":1855669},
-{"pid":27369,"tid":27369,"ts":326458687826,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458683805},"dur":92,"tdur":91,"tts":1855669},
-{"pid":27369,"tid":27369,"ts":326458687857,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1855699},
-{"pid":27369,"tid":27369,"ts":326458687887,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1855730,"id":"0xaf8a6c37febbc614"},
-{"pid":27369,"tid":27369,"ts":326458688040,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1855882},
-{"pid":27369,"tid":27369,"ts":326458688192,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1855974},
-{"pid":27369,"tid":27369,"ts":326458688284,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1856065},
-{"pid":27369,"tid":27369,"ts":326458688314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856096,"id":"0xaf8a673dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458688314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1856096},
-{"pid":27369,"tid":27369,"ts":326458688345,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":1856126},
-{"pid":27369,"tid":27369,"ts":326458688375,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1856157},
-{"pid":27369,"tid":27369,"ts":326458688467,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1856249},
-{"pid":27369,"tid":27369,"ts":326458688528,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1856310},
-{"pid":27369,"tid":27369,"ts":326458688559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856340,"id":"0xaf8a673efeb47934"},
-{"pid":27369,"tid":27369,"ts":326458688559,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":1856340},
-{"pid":27369,"tid":27369,"ts":326458688559,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":244,"tts":1856371},
-{"pid":27369,"tid":27369,"ts":326458688620,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1856401,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458688650,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1856432,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458688650,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":1856432},
-{"pid":27369,"tid":27369,"ts":326458688650,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1856432},
-{"pid":27369,"tid":27369,"ts":326458688681,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1856462,"id":"0xaf8a644cfa8dbc84"},
-{"pid":27369,"tid":27369,"ts":326458688681,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":122,"tts":1856493},
-{"pid":27369,"tid":27369,"ts":326458688711,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1856493},
-{"pid":27369,"tid":27369,"ts":326458688742,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1856523},
-{"pid":27369,"tid":27369,"ts":326458688742,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1856523,"id":"0xaf8a6c30febbc614"},
-{"pid":27369,"tid":27369,"ts":326458688803,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1856584,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458688803,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1856584,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458688925,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1856706},
-{"pid":27369,"tid":27369,"ts":326458690848,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1856859},
-{"pid":27369,"tid":27369,"ts":326458690848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856859,"id":"0xaf8a673ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458690878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":1856889},
-{"pid":27369,"tid":27369,"ts":326458690878,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":366,"tdur":367,"tts":1856889},
-{"pid":27369,"tid":27369,"ts":326458690909,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":335,"tdur":336,"tts":1856920},
-{"pid":27369,"tid":27369,"ts":326458691061,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":1857073},
-{"pid":27369,"tid":27369,"ts":326458691092,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1857103},
-{"pid":27369,"tid":27369,"ts":326458691092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1857103,"id":"0xaf8a6738feb47934"},
-{"pid":27369,"tid":27369,"ts":326458691183,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1857195},
-{"pid":27369,"tid":27369,"ts":326458691214,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1857225},
-{"pid":27369,"tid":27369,"ts":326458691336,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1857347},
-{"pid":27369,"tid":27369,"ts":326458691428,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1857439},
-{"pid":27369,"tid":27369,"ts":326458691428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1857439,"id":"0xaf8a6738feb47934"},
-{"pid":27369,"tid":27369,"ts":326458691458,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1648,"tdur":1374,"tts":1857469},
-{"pid":27369,"tid":27369,"ts":326458691458,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1857469},
-{"pid":27369,"tid":27369,"ts":326458691489,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1617,"tdur":1343,"tts":1857500},
-{"pid":27369,"tid":27369,"ts":326458691489,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":71},"dur":61,"tdur":61,"tts":1857500},
-{"pid":27369,"tid":27369,"ts":326458691519,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1857530},
-{"pid":27369,"tid":27369,"ts":326458691550,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":274,"tdur":275,"tts":1857561},
-{"pid":27369,"tid":27369,"ts":326458691580,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1857591,"id":"0x300000032"},
-{"pid":27369,"tid":27369,"ts":326458691580,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":1857591},
-{"pid":27369,"tid":27369,"ts":326458691611,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1857622},
-{"pid":27369,"tid":27369,"ts":326458691641,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":153,"tdur":153,"tts":1857652},
-{"pid":27369,"tid":27369,"ts":326458691824,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1857836},
-{"pid":27369,"tid":27369,"ts":326458691824,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":1857836},
-{"pid":27369,"tid":27369,"ts":326458691855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1857866},
-{"pid":27369,"tid":27369,"ts":326458691855,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":71},"dur":30,"tdur":31,"tts":1857866},
-{"pid":27369,"tid":27369,"ts":326458691885,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":71},"dur":31,"tdur":30,"tts":1857897},
-{"pid":27369,"tid":27369,"ts":326458691916,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":71},"tts":1857927},
-{"pid":27369,"tid":27369,"ts":326458691916,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1857927},
-{"pid":27369,"tid":27369,"ts":326458691946,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1857958},
-{"pid":27369,"tid":27369,"ts":326458691946,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":1857958},
-{"pid":27369,"tid":27369,"ts":326458691977,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1857988},
-{"pid":27369,"tid":27369,"ts":326458692007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1858019,"id":"0xaf8a6c31febbc614"},
-{"pid":27369,"tid":27369,"ts":326458692099,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":977,"tdur":702,"tts":1858110},
-{"pid":27369,"tid":27369,"ts":326458692099,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":71},"dur":397,"tdur":214,"tts":1858110},
-{"pid":27369,"tid":27369,"ts":326458692130,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":213,"tdur":30,"tts":1858141},
-{"pid":27369,"tid":27369,"ts":326458692130,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":213,"tdur":0,"tts":1858141},
-{"pid":27369,"tid":27369,"ts":326458692130,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":183,"tdur":0,"tts":1858141},
-{"pid":27369,"tid":27369,"ts":326458692130,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":1858141},
-{"pid":27369,"tid":27369,"ts":326458692343,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1858171,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458692343,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1858202},
-{"pid":27369,"tid":27369,"ts":326458692496,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1858324},
-{"pid":27369,"tid":27369,"ts":326458692526,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":275,"tdur":275,"tts":1858354},
-{"pid":27369,"tid":27369,"ts":326458692526,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1858354},
-{"pid":27369,"tid":27369,"ts":326458692526,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":245,"tts":1858354},
-{"pid":27369,"tid":27369,"ts":326458692557,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1858385},
-{"pid":27369,"tid":27369,"ts":326458692587,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":153,"tts":1858415},
-{"pid":27369,"tid":27369,"ts":326458692770,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1858629,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458692831,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1858660,"id":"0x300000032"},
-{"pid":27369,"tid":27369,"ts":326458692862,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":214,"tdur":122,"tts":1858690},
-{"pid":27369,"tid":27369,"ts":326458692862,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13000},"dur":92,"tdur":92,"tts":1858690},
-{"pid":27369,"tid":27369,"ts":326458692893,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1858721},
-{"pid":27369,"tid":27369,"ts":326458692923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1858751,"id":"0xaf8a6c32febbc614"},
-{"pid":27369,"tid":27369,"ts":326458692954,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":122,"tdur":30,"tts":1858782},
-{"pid":27369,"tid":27369,"ts":326458692954,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":1858782},
-{"pid":27369,"tid":27369,"ts":326458693045,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1858782},
-{"pid":27369,"tid":27369,"ts":326458693198,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1858934},
-{"pid":27369,"tid":27369,"ts":326458697135,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1859117},
-{"pid":27369,"tid":27369,"ts":326458697135,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1859148,"id":"0xaf8a6739feb47934"},
-{"pid":27369,"tid":27369,"ts":326458697165,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1859148},
-{"pid":27369,"tid":27369,"ts":326458697196,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1859179},
-{"pid":27369,"tid":27369,"ts":326458697226,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1859209},
-{"pid":27369,"tid":27369,"ts":326458697318,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1859301},
-{"pid":27369,"tid":27369,"ts":326458700950,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1859575},
-{"pid":27369,"tid":27369,"ts":326458700980,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1859606},
-{"pid":27369,"tid":27369,"ts":326458701041,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":489,"tdur":244,"tts":1859667},
-{"pid":27369,"tid":27369,"ts":326458701072,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458700481},"dur":244,"tdur":92,"tts":1859697},
-{"pid":27369,"tid":27369,"ts":326458701072,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":61,"tts":1859728},
-{"pid":27369,"tid":27369,"ts":326458701102,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1859728,"id":"0xaf8a6c33febbc614"},
-{"pid":27369,"tid":27369,"ts":326458701530,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1859942},
-{"pid":27369,"tid":27369,"ts":326458701652,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1860033},
-{"pid":27369,"tid":27369,"ts":326458703849,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1860247},
-{"pid":27369,"tid":27369,"ts":326458703880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860277,"id":"0xaf8a673afeb47934"},
-{"pid":27369,"tid":27369,"ts":326458703880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":1860277},
-{"pid":27369,"tid":27369,"ts":326458703880,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":1860277},
-{"pid":27369,"tid":27369,"ts":326458703941,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1860369,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458703971,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1860369,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458703971,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":92,"tdur":31,"tts":1860399},
-{"pid":27369,"tid":27369,"ts":326458704002,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":1860399},
-{"pid":27369,"tid":27369,"ts":326458704032,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1860430,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458704155,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1860552},
-{"pid":27369,"tid":27369,"ts":326458707481,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1860735},
-{"pid":27369,"tid":27369,"ts":326458707512,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860766,"id":"0xaf8a673bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458707512,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":488,"tdur":488,"tts":1860766},
-{"pid":27369,"tid":27369,"ts":326458707512,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":488,"tdur":488,"tts":1860766},
-{"pid":27369,"tid":27369,"ts":326458707573,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":396,"tts":1860827},
-{"pid":27369,"tid":27369,"ts":326458707756,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":92,"tts":1861040},
-{"pid":27369,"tid":27369,"ts":326458707786,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1861040},
-{"pid":27369,"tid":27369,"ts":326458707817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1861071,"id":"0xaf8a6734feb47934"},
-{"pid":27369,"tid":27369,"ts":326458707909,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1861162},
-{"pid":27369,"tid":27369,"ts":326458707939,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1861193},
-{"pid":27369,"tid":27369,"ts":326458708061,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1861315},
-{"pid":27369,"tid":27407,"ts":326458696830,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":183,"tts":1415626},
-{"pid":27369,"tid":27407,"ts":326458696891,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1415687},
-{"pid":27369,"tid":27407,"ts":326458696891,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1415687,"id":"0xc4c12e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458696921,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1415717,"id":"0xaf8a6739feb47934"},
-{"pid":27369,"tid":27407,"ts":326458701225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1415962,"id":"0xaf8a6c33febbc614"},
-{"pid":27369,"tid":27407,"ts":326458701225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1415962},
-{"pid":27369,"tid":27407,"ts":326458701255,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1415992,"id":"0xba448502"},
-{"pid":27369,"tid":27407,"ts":326458703575,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1416114},
-{"pid":27369,"tid":27407,"ts":326458703605,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1416145},
-{"pid":27369,"tid":27407,"ts":326458703605,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1416145,"id":"0xccc3f202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458703636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1416175,"id":"0xaf8a673afeb47934"},
-{"pid":27369,"tid":27407,"ts":326458707176,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1416328},
-{"pid":27369,"tid":27407,"ts":326458707237,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1416389},
-{"pid":27369,"tid":27407,"ts":326458707237,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1416389,"id":"0xccc3f402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458707268,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1416419,"id":"0xaf8a673bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458708977,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416664,"id":"0xaf8a6cccfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458708977,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1416664},
-{"pid":27369,"tid":27407,"ts":326458708977,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1416664,"id":"0xba448602"},
-{"pid":27369,"tid":27407,"ts":326458710137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1416816,"id":"0xaf8a6ccdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458710167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1416847},
-{"pid":27369,"tid":27407,"ts":326458710167,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1416847,"id":"0xba448702"},
-{"pid":27369,"tid":27407,"ts":326458714440,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":213,"tts":1416969},
-{"pid":27369,"tid":27407,"ts":326458714501,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":152,"tts":1417030},
-{"pid":27369,"tid":27407,"ts":326458714501,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1417030,"id":"0xc4c13102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458714531,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1417060,"id":"0xaf8a6735feb47934"},
-{"pid":27369,"tid":27407,"ts":326458718408,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1417305,"id":"0xaf8a6ccefebbc614"},
-{"pid":27369,"tid":27407,"ts":326458718408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1417305},
-{"pid":27369,"tid":27407,"ts":326458718438,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1417335,"id":"0xba448802"},
-{"pid":27369,"tid":27407,"ts":326458734675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1417457,"id":"0xaf8a6ccffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458734675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1417457},
-{"pid":27369,"tid":27407,"ts":326458734675,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1417457,"id":"0xba448902"},
-{"pid":27369,"tid":27407,"ts":326458735285,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1417640},
-{"pid":27369,"tid":27407,"ts":326458735316,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1417671},
-{"pid":27369,"tid":27407,"ts":326458735316,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1417671,"id":"0xccc3f502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458735346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1417701,"id":"0xaf8a6736feb47934"},
-{"pid":27369,"tid":27407,"ts":326458824069,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1417915},
-{"pid":27369,"tid":27407,"ts":326458824100,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":711},"dur":152,"tdur":123,"tts":1417945},
-{"pid":27369,"tid":27407,"ts":326458824100,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1417945,"id":"0xccc3f602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458824130,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1417976,"id":"0xaf8a6737feb47934"},
-{"pid":27369,"tid":27407,"ts":326458824557,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1418190,"id":"0xaf8a6cc8febbc614"},
-{"pid":27369,"tid":27407,"ts":326458824557,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":31,"tdur":0,"tts":1418190},
-{"pid":27369,"tid":27407,"ts":326458825198,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":885,"tdur":885,"tts":1418251},
-{"pid":27369,"tid":27407,"ts":326458825229,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":122,"tdur":122,"tts":1418281},
-{"pid":27369,"tid":27407,"ts":326458825259,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418312,"id":"0xccc3f702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825259,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418312,"id":"0xaf8a6730feb47934"},
-{"pid":27369,"tid":27407,"ts":326458825351,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":749},"dur":61,"tdur":61,"tts":1418403},
-{"pid":27369,"tid":27407,"ts":326458825351,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418403,"id":"0xccc3f802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418434,"id":"0xaf8a6731feb47934"},
-{"pid":27369,"tid":27407,"ts":326458825442,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1402},"dur":62,"tdur":61,"tts":1418495},
-{"pid":27369,"tid":27407,"ts":326458825442,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418495,"id":"0xccc3f902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418525,"id":"0xaf8a6732feb47934"},
-{"pid":27369,"tid":27407,"ts":326458825504,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":694},"dur":152,"tdur":152,"tts":1418556},
-{"pid":27369,"tid":27407,"ts":326458825504,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418586,"id":"0xccc3fa02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418647,"id":"0xaf8a6733feb47934"},
-{"pid":27369,"tid":27407,"ts":326458825656,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":61,"tdur":62,"tts":1418708},
-{"pid":27369,"tid":27407,"ts":326458825656,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418708,"id":"0xccc3fb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418739,"id":"0xaf8a67ccfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458825748,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":761},"dur":91,"tdur":92,"tts":1418800},
-{"pid":27369,"tid":27407,"ts":326458825778,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418831,"id":"0xccc3fc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418831,"id":"0xaf8a67cdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458825839,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":1418892},
-{"pid":27369,"tid":27407,"ts":326458825839,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418892,"id":"0xccc3fd02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825870,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1418922,"id":"0xaf8a67cefeb47934"},
-{"pid":27369,"tid":27407,"ts":326458825931,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1517},"dur":61,"tdur":61,"tts":1418983},
-{"pid":27369,"tid":27369,"ts":326458708183,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1861437},
-{"pid":27369,"tid":27369,"ts":326458708214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1861468,"id":"0xaf8a6734feb47934"},
-{"pid":27369,"tid":27369,"ts":326458708244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1618,"tdur":1618,"tts":1861498},
-{"pid":27369,"tid":27369,"ts":326458708244,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1861498},
-{"pid":27369,"tid":27369,"ts":326458708275,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1587,"tdur":1587,"tts":1861529},
-{"pid":27369,"tid":27369,"ts":326458708275,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":72},"dur":61,"tdur":61,"tts":1861529},
-{"pid":27369,"tid":27369,"ts":326458708305,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1861559},
-{"pid":27369,"tid":27369,"ts":326458708366,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":305,"tts":1861620},
-{"pid":27369,"tid":27369,"ts":326458708366,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1861620,"id":"0x300000033"},
-{"pid":27369,"tid":27369,"ts":326458708366,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1861651,"id":"0x300000034"},
-{"pid":27369,"tid":27369,"ts":326458708397,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1861651},
-{"pid":27369,"tid":27369,"ts":326458708427,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1861681},
-{"pid":27369,"tid":27369,"ts":326458708458,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":1861712},
-{"pid":27369,"tid":27369,"ts":326458708641,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1861895},
-{"pid":27369,"tid":27369,"ts":326458708672,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":1861925},
-{"pid":27369,"tid":27369,"ts":326458708702,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1861956},
-{"pid":27369,"tid":27369,"ts":326458708702,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":72},"dur":61,"tdur":61,"tts":1861956},
-{"pid":27369,"tid":27369,"ts":326458708763,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":72},"dur":31,"tdur":0,"tts":1862017},
-{"pid":27369,"tid":27369,"ts":326458708794,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":72},"tts":1862047},
-{"pid":27369,"tid":27369,"ts":326458708794,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1862047},
-{"pid":27369,"tid":27369,"ts":326458708794,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1862047},
-{"pid":27369,"tid":27369,"ts":326458708824,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1862078},
-{"pid":27369,"tid":27369,"ts":326458708855,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1862108},
-{"pid":27369,"tid":27369,"ts":326458708885,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1862139,"id":"0xaf8a6cccfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458708977,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":854,"tdur":854,"tts":1862231},
-{"pid":27369,"tid":27369,"ts":326458709007,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":72},"dur":214,"tdur":214,"tts":1862261},
-{"pid":27369,"tid":27369,"ts":326458709007,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1862261},
-{"pid":27369,"tid":27369,"ts":326458709007,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":0,"tts":1862292},
-{"pid":27369,"tid":27369,"ts":326458709038,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1862292},
-{"pid":27369,"tid":27369,"ts":326458709068,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1862322,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458709068,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1862353},
-{"pid":27369,"tid":27369,"ts":326458709221,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1862475},
-{"pid":27369,"tid":27369,"ts":326458709251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1862505},
-{"pid":27369,"tid":27369,"ts":326458709251,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1862505},
-{"pid":27369,"tid":27369,"ts":326458709251,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":306,"tdur":274,"tts":1862536},
-{"pid":27369,"tid":27369,"ts":326458709282,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1862536},
-{"pid":27369,"tid":27369,"ts":326458709343,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1862597},
-{"pid":27369,"tid":27369,"ts":326458709557,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1862810,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458709618,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1862902,"id":"0x300000033"},
-{"pid":27369,"tid":27369,"ts":326458709648,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1862902,"id":"0x300000034"},
-{"pid":27369,"tid":27369,"ts":326458709648,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":1862902},
-{"pid":27369,"tid":27369,"ts":326458709679,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15162},"dur":91,"tdur":91,"tts":1862933},
-{"pid":27369,"tid":27369,"ts":326458709709,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1862963},
-{"pid":27369,"tid":27369,"ts":326458709740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1862994,"id":"0xaf8a6ccdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458709801,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":1863055},
-{"pid":27369,"tid":27369,"ts":326458709801,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1863055},
-{"pid":27369,"tid":27369,"ts":326458709953,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1863207},
-{"pid":27369,"tid":27369,"ts":326458714745,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1863512},
-{"pid":27369,"tid":27369,"ts":326458714776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1863512,"id":"0xaf8a6735feb47934"},
-{"pid":27369,"tid":27369,"ts":326458714806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":1863543},
-{"pid":27369,"tid":27369,"ts":326458714837,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":1863573},
-{"pid":27369,"tid":27369,"ts":326458714837,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1863573},
-{"pid":27369,"tid":27369,"ts":326458714959,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1863696},
-{"pid":27369,"tid":27369,"ts":326458718133,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1864001},
-{"pid":27369,"tid":27369,"ts":326458718194,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1864031},
-{"pid":27369,"tid":27369,"ts":326458718255,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":1864092},
-{"pid":27369,"tid":27369,"ts":326458718285,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458717157},"dur":92,"tdur":91,"tts":1864123},
-{"pid":27369,"tid":27369,"ts":326458718316,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1864153},
-{"pid":27369,"tid":27369,"ts":326458718316,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1864184,"id":"0xaf8a6ccefebbc614"},
-{"pid":27369,"tid":27369,"ts":326458718499,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1864367},
-{"pid":27369,"tid":27369,"ts":326458718682,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1864489},
-{"pid":27369,"tid":27369,"ts":326458734400,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1864794},
-{"pid":27369,"tid":27369,"ts":326458734461,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1864855},
-{"pid":27369,"tid":27369,"ts":326458734492,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":213,"tts":1864886},
-{"pid":27369,"tid":27369,"ts":326458734522,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458733834},"dur":122,"tdur":92,"tts":1864916},
-{"pid":27369,"tid":27369,"ts":326458734553,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1864947},
-{"pid":27369,"tid":27369,"ts":326458734583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1864977,"id":"0xaf8a6ccffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458734736,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1865130},
-{"pid":27369,"tid":27369,"ts":326458734828,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1865222},
-{"pid":27369,"tid":27369,"ts":326458735560,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1865405},
-{"pid":27369,"tid":27369,"ts":326458735591,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1865435,"id":"0xaf8a6736feb47934"},
-{"pid":27369,"tid":27369,"ts":326458735591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":92,"tts":1865435},
-{"pid":27369,"tid":27369,"ts":326458735621,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":61,"tdur":61,"tts":1865466},
-{"pid":27369,"tid":27369,"ts":326458735682,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":0,"tdur":0,"tts":1865527},
-{"pid":27369,"tid":27369,"ts":326458735774,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1865618},
-{"pid":27369,"tid":27369,"ts":326458751125,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1865924},
-{"pid":27369,"tid":27369,"ts":326458751186,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1865985},
-{"pid":27369,"tid":27369,"ts":326458751247,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":0,"tdur":0,"tts":1866046},
-{"pid":27369,"tid":27369,"ts":326458751278,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1866076},
-{"pid":27369,"tid":27369,"ts":326458751400,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1866198},
-{"pid":27369,"tid":27369,"ts":326458824344,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1866778},
-{"pid":27369,"tid":27369,"ts":326458824374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1866809,"id":"0xaf8a6737feb47934"},
-{"pid":27369,"tid":27369,"ts":326458824374,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":457,"tts":1866809},
-{"pid":27369,"tid":27369,"ts":326458824405,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":711},"dur":427,"tdur":427,"tts":1866839},
-{"pid":27369,"tid":27369,"ts":326458824466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1866900,"id":"0xaf8a6cc8febbc614"},
-{"pid":27369,"tid":27369,"ts":326458824649,"ph":"S","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"NULL"},"tts":1867083,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326458824710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1867144,"id":"0xaf8a644ffeba2d64"},
-{"pid":27369,"tid":27369,"ts":326458824893,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1867327},
-{"pid":27369,"tid":27369,"ts":326458825748,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1867511},
-{"pid":27369,"tid":27369,"ts":326458825748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1867511,"id":"0xaf8a6730feb47934"},
-{"pid":27369,"tid":27369,"ts":326458825778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1867541},
-{"pid":27369,"tid":27369,"ts":326458825778,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":61,"tdur":61,"tts":1867541},
-{"pid":27369,"tid":27369,"ts":326458825931,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1867694},
-{"pid":27369,"tid":27369,"ts":326458826022,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1867785},
-{"pid":27369,"tid":27369,"ts":326458826053,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1867816,"id":"0xaf8a6731feb47934"},
-{"pid":27369,"tid":27369,"ts":326458826053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1867816},
-{"pid":27369,"tid":27369,"ts":326458826053,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":749},"dur":61,"tdur":30,"tts":1867816},
-{"pid":27369,"tid":27369,"ts":326458826175,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1867938},
-{"pid":27369,"tid":27369,"ts":326458826267,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1868029},
-{"pid":27369,"tid":27369,"ts":326458826267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868029,"id":"0xaf8a6732feb47934"},
-{"pid":27369,"tid":27369,"ts":326458826297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":1868060},
-{"pid":27369,"tid":27369,"ts":326458826297,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1402},"dur":31,"tdur":30,"tts":1868060},
-{"pid":27369,"tid":27369,"ts":326458826389,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1868151},
-{"pid":27369,"tid":27369,"ts":326458826480,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1868243},
-{"pid":27369,"tid":27369,"ts":326458826480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868243,"id":"0xaf8a6733feb47934"},
-{"pid":27369,"tid":27369,"ts":326458826511,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":2838,"tdur":2258,"tts":1868274},
-{"pid":27369,"tid":27369,"ts":326458826511,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":694},"dur":2838,"tdur":2258,"tts":1868274},
-{"pid":27369,"tid":27369,"ts":326458826602,"ph":"X","cat":"navigation","name":"RenderFrameHostImpl::OnDidCommitProvisionalLoad","args":{"url":"https://www.google.com/maps/@37.4118271,-122.072205,13z?hl=en"},"dur":2717,"tdur":2137,"tts":1868365},
-{"pid":27369,"tid":27369,"ts":326458827365,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":1869128},
-{"pid":27369,"tid":27369,"ts":326458827365,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":1869128},
-{"pid":27369,"tid":27369,"ts":326458827579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1869342,"id":"0xaf8a6455fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326458827640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1869403,"id":"0xaf8a6456fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326458827762,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":0,"tts":1869555},
-{"pid":27369,"tid":27369,"ts":326458827793,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":1869555},
-{"pid":27369,"tid":27369,"ts":326458827823,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":1869586},
-{"pid":27369,"tid":27369,"ts":326458827854,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":1869616},
-{"pid":27369,"tid":27369,"ts":326458827915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1869678,"id":"0xaf8a6405feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326458827945,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1869708,"id":"0xaf8a6406feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326458829044,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1870257,"id":"0xaf8a6407feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326458829227,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1870410,"id":"0xaf8a6400feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326458829258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1870441,"id":"0xaf8a6457fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326458829471,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1870654},
-{"pid":27369,"tid":27369,"ts":326458829593,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1870776},
-{"pid":27369,"tid":27369,"ts":326458829624,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1870807,"id":"0xaf8a67ccfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458829624,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":61,"tts":1870837},
-{"pid":27369,"tid":27369,"ts":326458829654,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":1870837},
-{"pid":27369,"tid":27369,"ts":326458829807,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1870990},
-{"pid":27369,"tid":27369,"ts":326458829929,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1871112},
-{"pid":27369,"tid":27410,"ts":326458824985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":457,"id":"0xaf8a644ffeba2d64"},
-{"pid":27369,"tid":27410,"ts":326458825015,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/metrics/thread_watcher.cc","src_func":"Observe"},"dur":0,"tdur":0,"tts":488},
-{"pid":27369,"tid":27410,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.015}},
-{"pid":27369,"tid":27407,"ts":326458825931,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1418983,"id":"0xccc3fe02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458825961,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1419014,"id":"0xaf8a67cffeb47934"},
-{"pid":27369,"tid":27407,"ts":326458825992,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":714},"dur":91,"tdur":61,"tts":1419075},
-{"pid":27369,"tid":27407,"ts":326458826022,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1419075,"id":"0xccc3ff02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458826022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1419075,"id":"0xaf8a67c8feb47934"},
-{"pid":27369,"tid":27407,"ts":326458835514,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419258,"id":"0xaf8a6cc9febbc614"},
-{"pid":27369,"tid":27407,"ts":326458835545,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":61,"tdur":61,"tts":1419288},
-{"pid":27369,"tid":27407,"ts":326458838902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419441,"id":"0xaf8a6ccafebbc614"},
-{"pid":27369,"tid":27407,"ts":326458838902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1419441},
-{"pid":27369,"tid":27407,"ts":326458838932,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1419471,"id":"0xba448a02"},
-{"pid":27369,"tid":27407,"ts":326458839940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419624,"id":"0xaf8a6ccbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458839940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":457,"tdur":61,"tts":1419655},
-{"pid":27369,"tid":27407,"ts":326458839970,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1419655,"id":"0xba448b02"},
-{"pid":27369,"tid":27407,"ts":326458854132,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1419807,"id":"0xaf8a6cc4febbc614"},
-{"pid":27369,"tid":27407,"ts":326458854162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1419838},
-{"pid":27369,"tid":27407,"ts":326458854162,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1419838,"id":"0xba448c02"},
-{"pid":27369,"tid":27407,"ts":326458870491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420021,"id":"0xaf8a6cc5febbc614"},
-{"pid":27369,"tid":27407,"ts":326458870521,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1420021},
-{"pid":27369,"tid":27407,"ts":326458870552,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420051,"id":"0xba448d02"},
-{"pid":27369,"tid":27407,"ts":326458876198,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":336,"tdur":336,"tts":1420143},
-{"pid":27369,"tid":27407,"ts":326458876228,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":123,"tts":1420173},
-{"pid":27369,"tid":27407,"ts":326458876259,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420204,"id":"0xccc40102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458876259,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1420235,"id":"0xaf8a67c4feb47934"},
-{"pid":27369,"tid":27407,"ts":326458876381,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":232},"dur":61,"tdur":61,"tts":1420326},
-{"pid":27369,"tid":27407,"ts":326458876381,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420326,"id":"0xccc40202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458876412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1420357,"id":"0xaf8a67c5feb47934"},
-{"pid":27369,"tid":27407,"ts":326458876473,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1420418},
-{"pid":27369,"tid":27407,"ts":326458876473,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420418,"id":"0xccc40302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458876473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1420418,"id":"0xaf8a67c6feb47934"},
-{"pid":27369,"tid":27407,"ts":326458876930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420570,"id":"0xaf8a6cc6febbc614"},
-{"pid":27369,"tid":27407,"ts":326458876930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1420570},
-{"pid":27369,"tid":27407,"ts":326458876930,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420601,"id":"0xba448e02"},
-{"pid":27369,"tid":27407,"ts":326458877510,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420692,"id":"0xaf8a6cc7febbc614"},
-{"pid":27369,"tid":27407,"ts":326458877541,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1420723},
-{"pid":27369,"tid":27407,"ts":326458877541,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420723,"id":"0xba448f02"},
-{"pid":27369,"tid":27407,"ts":326458889077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1420875,"id":"0xaf8a6cc0febbc614"},
-{"pid":27369,"tid":27407,"ts":326458889077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1420906},
-{"pid":27369,"tid":27407,"ts":326458889108,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1420906,"id":"0xba449002"},
-{"pid":27369,"tid":27407,"ts":326458905314,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1421028,"id":"0xaf8a6cc1febbc614"},
-{"pid":27369,"tid":27407,"ts":326458905345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1421059},
-{"pid":27369,"tid":27407,"ts":326458905345,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1421059,"id":"0xba449102"},
-{"pid":27369,"tid":27407,"ts":326458920452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1421211,"id":"0xaf8a6cc2febbc614"},
-{"pid":27369,"tid":27407,"ts":326458920483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1421242},
-{"pid":27369,"tid":27407,"ts":326458920513,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1421272,"id":"0xba449202"},
-{"pid":27369,"tid":27407,"ts":326458925122,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":153,"tts":1421394},
-{"pid":27369,"tid":27407,"ts":326458925153,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1421425},
-{"pid":27369,"tid":27407,"ts":326458925183,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1421455,"id":"0xccc40502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458925183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1421455,"id":"0xaf8a67c7feb47934"},
-{"pid":27369,"tid":27407,"ts":326458925671,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1421669,"id":"0xaf8a6cc3febbc614"},
-{"pid":27369,"tid":27407,"ts":326458925702,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1421669},
-{"pid":27369,"tid":27407,"ts":326458925702,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1421669,"id":"0xba449302"},
-{"pid":27369,"tid":27407,"ts":326458939161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1421822,"id":"0xaf8a6cdcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458939161,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1421822},
-{"pid":27369,"tid":27407,"ts":326458939192,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1421852,"id":"0xba449402"},
-{"pid":27369,"tid":27407,"ts":326458940260,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":122,"tts":1421974},
-{"pid":27369,"tid":27407,"ts":326458940291,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1421974},
-{"pid":27369,"tid":27407,"ts":326458940321,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1422005,"id":"0xccc40702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458940321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1422005,"id":"0xaf8a67c0feb47934"},
-{"pid":27369,"tid":27407,"ts":326458944502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1422188,"id":"0xaf8a6cddfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458944502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1422188},
-{"pid":27369,"tid":27407,"ts":326458944533,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1422218,"id":"0xba449502"},
-{"pid":27369,"tid":27407,"ts":326458950942,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":397,"tdur":397,"tts":1422371},
-{"pid":27369,"tid":27407,"ts":326458951034,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":305,"tdur":275,"tts":1422462},
-{"pid":27369,"tid":27407,"ts":326458951034,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1422462,"id":"0xccc40a02","bp":"e"},
-{"pid":27369,"tid":27422,"ts":326458827670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":75507,"id":"0xaf8a6455fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326458827670,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":75507},
-{"pid":27369,"tid":27422,"ts":326458827732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":915,"tdur":824,"tts":75568},
-{"pid":27369,"tid":27422,"ts":326458828556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76331,"id":"0xaf8a67c9feb47934"},
-{"pid":27369,"tid":27422,"ts":326458828678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":76423,"id":"0xaf8a6456fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326458828678,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":183,"tdur":183,"tts":76423},
-{"pid":27369,"tid":27422,"ts":326458828800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76545,"id":"0xaf8a67cafeb47934"},
-{"pid":27369,"tid":27422,"ts":326458832279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":76667,"id":"0xaf8a6457fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326458832279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"ScheduleTask"},"dur":1129,"tdur":1129,"tts":76667},
-{"pid":27369,"tid":27422,"ts":326458833256,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":77643,"id":"0xaf8a67cbfeb47934"},
-{"pid":27369,"tid":27422,"ts":326458833378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":77765,"id":"0xaf8a6450fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460142946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460142},"tts":77887,"id":"0xaf8a644efd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460142946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/expire_history_backend.cc","src_func":"ScheduleExpire"},"dur":366,"tdur":367,"tts":77887},
-{"pid":27369,"tid":27422,"ts":326460143282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78223,"id":"0xaf8a6451fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460312426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":78376,"id":"0xaf8a6452fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460312426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":183,"tdur":183,"tts":78376},
-{"pid":27369,"tid":27422,"ts":326460312548,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78498,"id":"0xaf8a6010feb47934"},
-{"pid":27369,"tid":27422,"ts":326460312609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":78559,"id":"0xaf8a6453fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460312639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":122,"tdur":123,"tts":78589},
-{"pid":27369,"tid":27422,"ts":326460312700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78651,"id":"0xaf8a6012feb47934"},
-{"pid":27369,"tid":27422,"ts":326460314043,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":78803,"id":"0xaf8a646cfd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460314043,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"ScheduleTask"},"dur":1343,"tdur":885,"tts":78803},
-{"pid":27369,"tid":27422,"ts":326460315264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79597,"id":"0xaf8a6013feb47934"},
-{"pid":27369,"tid":27422,"ts":326460318316,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":79749,"id":"0xaf8a646dfd55cb44"},
-{"pid":27369,"tid":27422,"ts":326460318347,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"UpdateFaviconMappingsAndFetch"},"dur":946,"tdur":915,"tts":79780},
-{"pid":27369,"tid":27422,"ts":326460318987,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":80421,"id":"0xaf8a602dfeb47934"},
-{"pid":27369,"tid":27422,"ts":326460319262,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":80665,"id":"0xaf8a602efeb47934"},
-{"pid":27369,"tid":27422,"ts":326461433195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":80756,"id":"0xaf8a646efd55cb44"},
-{"pid":27369,"tid":27422,"ts":326461433225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":153,"tdur":153,"tts":80787},
-{"pid":27369,"tid":27422,"ts":326461433317,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":80878,"id":"0xaf8a60b4feb47934"},
-{"pid":27369,"tid":27422,"ts":326461433378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":80970,"id":"0xaf8a646ffd55cb44"},
-{"pid":27369,"tid":27422,"ts":326461433408,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":122,"tdur":122,"tts":80970},
-{"pid":27369,"tid":27422,"ts":326461433469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":81031,"id":"0xaf8a60b6feb47934"},
-{"pid":27369,"tid":27422,"ts":326461434477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":81123,"id":"0xaf8a6468fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326461434477,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"ScheduleTask"},"dur":671,"tdur":671,"tts":81123},
-{"pid":27369,"tid":27422,"ts":326461435056,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":81703,"id":"0xaf8a60b7feb47934"},
-{"pid":27369,"tid":27422,"ts":326461436430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":81886,"id":"0xaf8a6469fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326461436430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"UpdateFaviconMappingsAndFetch"},"dur":580,"tdur":580,"tts":81886},
-{"pid":27369,"tid":27422,"ts":326461436705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82160,"id":"0xaf8a60b0feb47934"},
-{"pid":27369,"tid":27422,"ts":326461436949,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82405,"id":"0xaf8a60b1feb47934"},
-{"pid":27369,"tid":27422,"ts":326462927289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":82527,"id":"0xaf8a646afd55cb44"},
-{"pid":27369,"tid":27422,"ts":326462927289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":244,"tdur":244,"tts":82527},
-{"pid":27369,"tid":27422,"ts":326462927472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82710,"id":"0xaf8a618bfeb47934"},
-{"pid":27369,"tid":27422,"ts":326462927564,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":82801,"id":"0xaf8a646bfd55cb44"},
-{"pid":27369,"tid":27422,"ts":326462927564,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":519,"tdur":214,"tts":82801},
-{"pid":27369,"tid":27422,"ts":326462928021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":82954,"id":"0xaf8a6184feb47934"},
-{"pid":27369,"tid":27422,"ts":326462929181,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":83045,"id":"0xaf8a6464fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326462929181,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"ScheduleTask"},"dur":519,"tdur":519,"tts":83045},
-{"pid":27369,"tid":27422,"ts":326462929609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":83503,"id":"0xaf8a6185feb47934"},
-{"pid":27369,"tid":27422,"ts":326462930494,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":83625,"id":"0xaf8a6465fd55cb44"},
-{"pid":27369,"tid":27422,"ts":326462930524,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"UpdateFaviconMappingsAndFetch"},"dur":519,"tdur":519,"tts":83656},
-{"pid":27369,"tid":27422,"ts":326462930768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":83900,"id":"0xaf8a6186feb47934"},
-{"pid":27369,"tid":27422,"ts":326462930982,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":84144,"id":"0xaf8a6187feb47934"},
-{"pid":27369,"tid":27422,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.011076923076923076}},
-{"pid":27369,"tid":27568,"ts":326458828891,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1312,"id":"0xaf8a6405feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326458828922,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":152,"tdur":122,"tts":1373},
-{"pid":27369,"tid":27568,"ts":326458829166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1526,"id":"0xaf8a6406feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326458829196,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":62,"tdur":61,"tts":1556},
-{"pid":27369,"tid":27568,"ts":326458829258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1617,"id":"0xaf8a6407feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326458829258,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":2807,"tdur":977,"tts":1617},
-{"pid":27369,"tid":27568,"ts":326458832065,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2594,"id":"0xaf8a6400feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326458832096,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteFullTable"},"dur":91,"tdur":92,"tts":2624},
-{"pid":27369,"tid":27482,"ts":326460037071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":70044,"id":"0xaf8a653ffd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460037101,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":519,"tdur":488,"tts":70044},
-{"pid":27369,"tid":27482,"ts":326460037590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":70532,"id":"0xaf8a6d7dfebbc614"},
-{"pid":27369,"tid":27530,"ts":326460080990,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":26522,"id":"0xaf8a6538fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460080990,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":274,"tdur":274,"tts":26522},
-{"pid":27369,"tid":27530,"ts":326460081203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":26735,"id":"0xaf8a6d0ffebbc614"},
-{"pid":27369,"tid":27568,"ts":326460312731,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2777,"id":"0xaf8a6401feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326460312731,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":152,"tdur":152,"tts":2777},
-{"pid":27369,"tid":27399,"ts":326460313036,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":13215,"id":"0xaf8a6402feb5e97c"},
-{"pid":27369,"tid":27399,"ts":326460313066,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":31,"tdur":31,"tts":13245},
-{"pid":27369,"tid":27568,"ts":326460313677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2990,"id":"0xaf8a6403feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326460313677,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":1160,"tdur":886,"tts":2990},
-{"pid":27369,"tid":27568,"ts":326460314837,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":3876,"id":"0xaf8a641cfeb5e97c"},
-{"pid":27369,"tid":27568,"ts":326460314867,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteFullTable"},"dur":244,"tdur":92,"tts":3906},
-{"pid":27369,"tid":27400,"ts":326460354971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":51213,"id":"0xaf8a6454feb5e97c"},
-{"pid":27369,"tid":27400,"ts":326460354971,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/extras/sqlite/sqlite_channel_id_store.cc","src_func":"BatchOperation"},"dur":26003,"tdur":5952,"tts":51243},
-{"pid":27369,"tid":27482,"ts":326460573405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":70563,"id":"0xaf8a6539fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460573436,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":549,"tdur":519,"tts":70593},
-{"pid":27369,"tid":27482,"ts":326460573924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":71081,"id":"0xaf8a6dd7febbc614"},
-{"pid":27369,"tid":27530,"ts":326460579753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":26857,"id":"0xaf8a653afd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460579753,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":672,"tdur":458,"tts":26857},
-{"pid":27369,"tid":27530,"ts":326460580425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":27315,"id":"0xaf8a6dd2febbc614"},
-{"pid":27369,"tid":27482,"ts":326460585186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":71173,"id":"0xaf8a653bfd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460585217,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":763,"tdur":763,"tts":71204},
-{"pid":27369,"tid":27482,"ts":326460585949,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":71967,"id":"0xaf8a6decfebbc614"},
-{"pid":27369,"tid":27530,"ts":326460623337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":27407,"id":"0xaf8a6534fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460623367,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":977,"tdur":977,"tts":27437},
-{"pid":27369,"tid":27530,"ts":326460624283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":28383,"id":"0xaf8a6deafebbc614"},
-{"pid":27369,"tid":27568,"ts":326460625992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":4059,"id":"0xaf8a6451feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326460626022,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/extras/sqlite/sqlite_persistent_cookie_store.cc","src_func":"BatchOperation"},"dur":33939,"tdur":3510,"tts":4089},
-{"pid":27369,"tid":27482,"ts":326460639177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":72089,"id":"0xaf8a6535fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460639207,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":4548,"tdur":794,"tts":72119},
-{"pid":27369,"tid":27482,"ts":326460643694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72882,"id":"0xaf8a6de0febbc614"},
-{"pid":27369,"tid":27480,"ts":326460645922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":63818,"id":"0xaf8a6536fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460645952,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":11140,"tdur":488,"tts":63848},
-{"pid":27369,"tid":27482,"ts":326460650835,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":73035,"id":"0xaf8a6537fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460650866,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":6409,"tdur":488,"tts":73035},
-{"pid":27369,"tid":27530,"ts":326460652697,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":28597,"id":"0xaf8a6530fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460652728,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":4669,"tdur":427,"tts":28628},{"pid":27369,"tid":27643,"ts":326460654986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":183,"id":"0xaf8a6531fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460654986,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":2533,"tdur":366,"tts":183},
-{"pid":27369,"tid":27480,"ts":326460657092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":64336,"id":"0xaf8a6dfefebbc614"},
-{"pid":27369,"tid":27480,"ts":326460657153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":64397,"id":"0xaf8a6532fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460657153,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":397,"tdur":397,"tts":64397},
-{"pid":27369,"tid":27482,"ts":326460657214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":73462,"id":"0xaf8a6dfffebbc614"},
-{"pid":27369,"tid":27530,"ts":326460657367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":29024,"id":"0xaf8a6df8febbc614"},
-{"pid":27369,"tid":27643,"ts":326460657489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":549,"id":"0xaf8a6df9febbc614"},
-{"pid":27369,"tid":27480,"ts":326460657550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":64794,"id":"0xaf8a6dfbfebbc614"},
-{"pid":27369,"tid":27482,"ts":326460659381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":73554,"id":"0xaf8a6533fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460659381,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":794,"tdur":427,"tts":73554},
-{"pid":27369,"tid":27482,"ts":326460660144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":73950,"id":"0xaf8a6df5febbc614"},
-{"pid":27369,"tid":27643,"ts":326460661823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":610,"id":"0xaf8a65ccfd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460661823,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":397,"tdur":397,"tts":610},
-{"pid":27369,"tid":27643,"ts":326460662189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1007,"id":"0xaf8a6df7febbc614"},
-{"pid":27369,"tid":27530,"ts":326460663837,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":29146,"id":"0xaf8a65cdfd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460663868,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":10926,"tdur":397,"tts":29146},
-{"pid":27369,"tid":27369,"ts":326458829929,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1871142,"id":"0xaf8a67cdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458829960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":3692,"tdur":153,"tts":1871142},
-{"pid":27369,"tid":27369,"ts":326458829990,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":761},"dur":3632,"tdur":122,"tts":1871173},
-{"pid":27369,"tid":27369,"ts":326458833744,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1871417},
-{"pid":27369,"tid":27369,"ts":326458833836,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1871539},
-{"pid":27369,"tid":27369,"ts":326458833866,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1871539,"id":"0xaf8a67cefeb47934"},
-{"pid":27369,"tid":27369,"ts":326458833897,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":1871570},
-{"pid":27369,"tid":27369,"ts":326458833897,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":1871570},
-{"pid":27369,"tid":27369,"ts":326458834019,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1871692},
-{"pid":27369,"tid":27369,"ts":326458834141,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1871814},
-{"pid":27369,"tid":27369,"ts":326458834171,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1871844,"id":"0xaf8a67cffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458834171,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":153,"tts":1871844},
-{"pid":27369,"tid":27369,"ts":326458834171,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1517},"dur":214,"tdur":122,"tts":1871875},
-{"pid":27369,"tid":27369,"ts":326458834446,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1872089},
-{"pid":27369,"tid":27369,"ts":326458834721,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1872241},
-{"pid":27369,"tid":27369,"ts":326458834751,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1872241,"id":"0xaf8a67c8feb47934"},
-{"pid":27369,"tid":27369,"ts":326458834782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1373,"tdur":458,"tts":1872272},
-{"pid":27369,"tid":27369,"ts":326458834782,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":714},"dur":1373,"tdur":458,"tts":1872272},
-{"pid":27369,"tid":27369,"ts":326458835392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1872455,"id":"0xaf8a6cc9febbc614"},
-{"pid":27369,"tid":27369,"ts":326458836033,"ph":"F","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"https://www.google.com/maps/@37.4118271,-122.072205,13z?hl=en"},"tts":1872607,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326458836216,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1872821},
-{"pid":27369,"tid":27369,"ts":326458836399,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1872974},
-{"pid":27369,"tid":27369,"ts":326458836430,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1873004,"id":"0xaf8a67c9feb47934"},
-{"pid":27369,"tid":27369,"ts":326458836430,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":824,"tdur":824,"tts":1873004},
-{"pid":27369,"tid":27369,"ts":326458837315,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1873889},
-{"pid":27369,"tid":27369,"ts":326458837406,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1874011},
-{"pid":27369,"tid":27369,"ts":326458837437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1874011,"id":"0xaf8a67cafeb47934"},
-{"pid":27369,"tid":27369,"ts":326458837437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":61,"tdur":61,"tts":1874011},
-{"pid":27369,"tid":27369,"ts":326458837559,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1874133},
-{"pid":27369,"tid":27369,"ts":326458837651,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1874225},
-{"pid":27369,"tid":27369,"ts":326458837681,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1874256,"id":"0xaf8a67cbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458837681,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyURLVisited"},"dur":153,"tdur":152,"tts":1874256},
-{"pid":27369,"tid":27369,"ts":326458837956,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1874530},
-{"pid":27369,"tid":27369,"ts":326458838047,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1874622},
-{"pid":27369,"tid":27369,"ts":326458838475,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1875049},
-{"pid":27369,"tid":27369,"ts":326458838536,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1875110},
-{"pid":27369,"tid":27369,"ts":326458838658,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":1875232},
-{"pid":27369,"tid":27369,"ts":326458829030,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1875263,"id":"0x300000036"},
-{"pid":27369,"tid":27369,"ts":326458838688,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901942},"tts":1875263,"id":"0x300000036"},
-{"pid":27369,"tid":27369,"ts":326458838719,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":1875293},
-{"pid":27369,"tid":27369,"ts":326458838719,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1875293,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458838749,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1875324},
-{"pid":27369,"tid":27369,"ts":326458838749,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":1875324},
-{"pid":27369,"tid":27369,"ts":326458838780,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":1875354},
-{"pid":27369,"tid":27369,"ts":326458838810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1875385,"id":"0xaf8a6ccafebbc614"},
-{"pid":27369,"tid":27369,"ts":326458838871,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1875446,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458838871,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1875446,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458839177,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1875629},
-{"pid":27369,"tid":27369,"ts":326458839757,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1876239},
-{"pid":27369,"tid":27369,"ts":326458839818,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":91,"tts":1876270},
-{"pid":27369,"tid":27369,"ts":326458839818,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458834459},"dur":91,"tdur":91,"tts":1876270},
-{"pid":27369,"tid":27369,"ts":326458839848,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1876300},
-{"pid":27369,"tid":27369,"ts":326458839879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1876331,"id":"0xaf8a6ccbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458839940,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1876392},
-{"pid":27369,"tid":27369,"ts":326458848607,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1883259},
-{"pid":27369,"tid":27369,"ts":326458851598,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1883625},
-{"pid":27369,"tid":27369,"ts":326458852056,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1884083},
-{"pid":27369,"tid":27369,"ts":326458852148,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":1884175},
-{"pid":27369,"tid":27369,"ts":326458852270,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":885,"tdur":122,"tts":1884297},
-{"pid":27369,"tid":27369,"ts":326458845000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1884327,"id":"0x300000037"},
-{"pid":27369,"tid":27369,"ts":326458852331,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901943},"tts":1884358,"id":"0x300000037"},
-{"pid":27369,"tid":27369,"ts":326458852331,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":763,"tdur":0,"tts":1884358},
-{"pid":27369,"tid":27369,"ts":326458853124,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1884388},
-{"pid":27369,"tid":27369,"ts":326458853124,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1884388,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326458853369,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1884541},
-{"pid":27369,"tid":27369,"ts":326458853949,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1885151},
-{"pid":27369,"tid":27369,"ts":326458854010,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":91,"tts":1885182},
-{"pid":27369,"tid":27369,"ts":326458854010,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458851125},"dur":91,"tdur":91,"tts":1885182},
-{"pid":27369,"tid":27369,"ts":326458854040,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1885212},
-{"pid":27369,"tid":27369,"ts":326458854071,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1885243,"id":"0xaf8a6cc4febbc614"},
-{"pid":27369,"tid":27369,"ts":326458854132,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1885304},
-{"pid":27369,"tid":27369,"ts":326458856604,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1887410},
-{"pid":27369,"tid":27369,"ts":326458868354,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1887837},
-{"pid":27369,"tid":27369,"ts":326458868995,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1888325},
-{"pid":27369,"tid":27369,"ts":326458869056,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":92,"tts":1888417},
-{"pid":27369,"tid":27369,"ts":326458869209,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":1888539},
-{"pid":27369,"tid":27369,"ts":326458862000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1888570,"id":"0x300000038"},
-{"pid":27369,"tid":27369,"ts":326458869239,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901944},"tts":1888570,"id":"0x300000038"},
-{"pid":27369,"tid":27369,"ts":326458869270,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":61,"tdur":61,"tts":1888600},
-{"pid":27369,"tid":27369,"ts":326458869300,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1888631,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458869605,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1888814},
-{"pid":27369,"tid":27369,"ts":326458870246,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1889272},
-{"pid":27369,"tid":27369,"ts":326458870307,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":733,"tdur":152,"tts":1889333},
-{"pid":27369,"tid":27369,"ts":326458870307,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458867827},"dur":702,"tdur":92,"tts":1889363},
-{"pid":27369,"tid":27369,"ts":326458870338,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":671,"tdur":92,"tts":1889363},
-{"pid":27369,"tid":27369,"ts":326458870368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1889394,"id":"0xaf8a6cc5febbc614"},
-{"pid":27369,"tid":27369,"ts":326458871040,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1889485},
-{"pid":27369,"tid":27369,"ts":326458874641,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1891591},
-{"pid":27369,"tid":27369,"ts":326458876442,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1891805},
-{"pid":27369,"tid":27369,"ts":326458876473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1891835,"id":"0xaf8a67c4feb47934"},
-{"pid":27369,"tid":27369,"ts":326458876473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":1891835},
-{"pid":27369,"tid":27369,"ts":326458876473,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1891835},
-{"pid":27369,"tid":27369,"ts":326458876534,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":30,"tdur":31,"tts":1891896},
-{"pid":27369,"tid":27369,"ts":326458876656,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1892018},
-{"pid":27369,"tid":27369,"ts":326458876747,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1892110},
-{"pid":27369,"tid":27369,"ts":326458876778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1892141,"id":"0xaf8a67c5feb47934"},
-{"pid":27369,"tid":27369,"ts":326458876778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":1892141},
-{"pid":27369,"tid":27369,"ts":326458876778,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":232},"dur":122,"tdur":122,"tts":1892141},
-{"pid":27369,"tid":27369,"ts":326458876839,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1892202},
-{"pid":27369,"tid":27369,"ts":326458876839,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1892232,"id":"0xaf8a6cc6febbc614"},
-{"pid":27369,"tid":27369,"ts":326458876961,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1892324},
-{"pid":27369,"tid":27369,"ts":326458876961,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":1892324},
-{"pid":27369,"tid":27369,"ts":326458877236,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1892415},
-{"pid":27369,"tid":27369,"ts":326458877266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1892446,"id":"0xaf8a67c6feb47934"},
-{"pid":27369,"tid":27369,"ts":326458877266,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":274,"tts":1892446},
-{"pid":27369,"tid":27369,"ts":326458877266,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":274,"tts":1892446},
-{"pid":27369,"tid":27369,"ts":326458877297,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1892476,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458877327,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1892507,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458877327,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":213,"tts":1892507},
-{"pid":27369,"tid":27369,"ts":326458877358,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1892537},
-{"pid":27369,"tid":27369,"ts":326458877358,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1892537,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326458877388,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1892568},
-{"pid":27369,"tid":27369,"ts":326458877388,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":122,"tts":1892598},
-{"pid":27369,"tid":27369,"ts":326458877419,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":30,"tts":1892629},
-{"pid":27369,"tid":27369,"ts":326458877449,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1892629,"id":"0xaf8a6cc7febbc614"},
-{"pid":27369,"tid":27369,"ts":326458877510,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1892690,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458877510,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1892690,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458877785,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1892812},
-{"pid":27369,"tid":27369,"ts":326458887582,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1893148},
-{"pid":27369,"tid":27369,"ts":326458888040,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1893605},
-{"pid":27369,"tid":27369,"ts":326458888101,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1893667},
-{"pid":27369,"tid":27369,"ts":326458888192,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1893758},
-{"pid":27369,"tid":27369,"ts":326458879000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1893789,"id":"0x300000039"},
-{"pid":27369,"tid":27369,"ts":326458888223,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901945},"tts":1893789,"id":"0x300000039"},
-{"pid":27369,"tid":27369,"ts":326458888253,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1893819},
-{"pid":27369,"tid":27369,"ts":326458888253,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1893819,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326458888284,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1893850},
-{"pid":27369,"tid":27369,"ts":326458888864,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1894368},
-{"pid":27369,"tid":27369,"ts":326458888925,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":152,"tts":1894430},
-{"pid":27369,"tid":27369,"ts":326458888955,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458884511},"dur":92,"tdur":92,"tts":1894460},
-{"pid":27369,"tid":27369,"ts":326458888986,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1894491},
-{"pid":27369,"tid":27369,"ts":326458888986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1894491,"id":"0xaf8a6cc0febbc614"},
-{"pid":27369,"tid":27369,"ts":326458889077,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1894582},
-{"pid":27369,"tid":27369,"ts":326458891580,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1896535},
-{"pid":27369,"tid":27369,"ts":326458901866,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1897024},
-{"pid":27369,"tid":27369,"ts":326458902476,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1897604},
-{"pid":27369,"tid":27369,"ts":326458902476,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1897604},
-{"pid":27369,"tid":27369,"ts":326458902629,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":183,"tdur":153,"tts":1897695},
-{"pid":27369,"tid":27369,"ts":326458902629,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1897695},
-{"pid":27369,"tid":27369,"ts":326458902842,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":183,"tts":1897878},
-{"pid":27369,"tid":27369,"ts":326458896000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1897939,"id":"0x30000003a"},
-{"pid":27369,"tid":27369,"ts":326458902903,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901946},"tts":1897970,"id":"0x30000003a"},
-{"pid":27369,"tid":27369,"ts":326458902934,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":122,"tdur":61,"tts":1897970},
-{"pid":27369,"tid":27369,"ts":326458902964,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1898000,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458903086,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1898061},
-{"pid":27369,"tid":27369,"ts":326458905070,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1898733},
-{"pid":27369,"tid":27369,"ts":326458905131,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":214,"tts":1898763},
-{"pid":27369,"tid":27369,"ts":326458905162,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458901196},"dur":305,"tdur":153,"tts":1898794},
-{"pid":27369,"tid":27369,"ts":326458905192,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":123,"tts":1898824},
-{"pid":27369,"tid":27369,"ts":326458905223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1898855,"id":"0xaf8a6cc1febbc614"},
-{"pid":27369,"tid":27369,"ts":326458905497,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1898977},
-{"pid":27369,"tid":27369,"ts":326458907695,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1900808},
-{"pid":27369,"tid":27369,"ts":326458918530,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1901297},
-{"pid":27369,"tid":27369,"ts":326458919079,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1901785},
-{"pid":27369,"tid":27369,"ts":326458919171,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":1901846},
-{"pid":27369,"tid":27369,"ts":326458919262,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":183,"tdur":122,"tts":1901968},
-{"pid":27369,"tid":27369,"ts":326458912000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1901999,"id":"0x30000003b"},
-{"pid":27369,"tid":27369,"ts":326458919323,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901947},"tts":1901999,"id":"0x30000003b"},
-{"pid":27369,"tid":27369,"ts":326458919323,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1901999},
-{"pid":27369,"tid":27369,"ts":326458919384,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":61,"tdur":61,"tts":1902029},
-{"pid":27369,"tid":27369,"ts":326458919415,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1902060,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458919476,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1902121},
-{"pid":27369,"tid":27369,"ts":326458920239,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1902640},
-{"pid":27369,"tid":27369,"ts":326458920269,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":367,"tdur":153,"tts":1902670},
-{"pid":27369,"tid":27369,"ts":326458920300,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458917880},"dur":305,"tdur":91,"tts":1902701},
-{"pid":27369,"tid":27369,"ts":326458920330,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":61,"tts":1902731},
-{"pid":27369,"tid":27369,"ts":326458920361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1902762,"id":"0xaf8a6cc2febbc614"},
-{"pid":27369,"tid":27369,"ts":326458920666,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1902853},
-{"pid":27369,"tid":27369,"ts":326458922894,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1904715},
-{"pid":27369,"tid":27369,"ts":326458925366,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1905020},
-{"pid":27369,"tid":27369,"ts":326458925397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1905051,"id":"0xaf8a67c7feb47934"},
-{"pid":27369,"tid":27369,"ts":326458925397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":1905051},
-{"pid":27369,"tid":27369,"ts":326458925427,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":1905081},
-{"pid":27369,"tid":27369,"ts":326458925458,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1905142,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458925488,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1905142,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458925488,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":214,"tts":1905142},
-{"pid":27369,"tid":27369,"ts":326458925519,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1905173},
-{"pid":27369,"tid":27369,"ts":326458925549,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1905203,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326458925549,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":1905203},
-{"pid":27369,"tid":27369,"ts":326458925580,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":91,"tdur":91,"tts":1905234},
-{"pid":27369,"tid":27369,"ts":326458925610,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":1905264},
-{"pid":27369,"tid":27369,"ts":326458925610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1905264,"id":"0xaf8a6cc3febbc614"},
-{"pid":27369,"tid":27369,"ts":326458925671,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1905325,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458925671,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1905325,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458925977,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1905447},
-{"pid":27369,"tid":27369,"ts":326458937727,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1905814},
-{"pid":27369,"tid":27369,"ts":326458938124,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1906241},
-{"pid":27369,"tid":27369,"ts":326458938215,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1906302},
-{"pid":27369,"tid":27369,"ts":326458938307,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":1906394},
-{"pid":27369,"tid":27369,"ts":326458929000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1906424,"id":"0x30000003c"},
-{"pid":27369,"tid":27369,"ts":326458938337,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901948},"tts":1906424,"id":"0x30000003c"},
-{"pid":27369,"tid":27369,"ts":326458938368,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":0,"tts":1906455},
-{"pid":27369,"tid":27369,"ts":326458938368,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1906455,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326458938398,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1906485},
-{"pid":27369,"tid":27369,"ts":326458938978,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1906973},
-{"pid":27369,"tid":27369,"ts":326458939039,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":123,"tts":1907034},
-{"pid":27369,"tid":27369,"ts":326458939039,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458934564},"dur":92,"tdur":92,"tts":1907034},
-{"pid":27369,"tid":27369,"ts":326458939070,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1907065},
-{"pid":27369,"tid":27369,"ts":326458939070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1907065,"id":"0xaf8a6cdcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458939161,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1907157},
-{"pid":27369,"tid":27369,"ts":326458943648,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1909079},
-{"pid":27369,"tid":27369,"ts":326458943831,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1909232},
-{"pid":27369,"tid":27369,"ts":326458943862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1909262,"id":"0xaf8a67c0feb47934"},
-{"pid":27369,"tid":27369,"ts":326458943862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1312,"tdur":367,"tts":1909262},
-{"pid":27369,"tid":27369,"ts":326458943862,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":1281,"tdur":336,"tts":1909262},
-{"pid":27369,"tid":27369,"ts":326458943984,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1909354,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458943984,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1909354,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458944014,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":1129,"tdur":213,"tts":1909385},
-{"pid":27369,"tid":27369,"ts":326458944014,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":1129,"tdur":213,"tts":1909385},
-{"pid":27369,"tid":27369,"ts":326458944045,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1909415,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326458944075,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":1068,"tdur":152,"tts":1909446},
-{"pid":27369,"tid":27369,"ts":326458944075,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":1068,"tdur":152,"tts":1909446},
-{"pid":27369,"tid":27369,"ts":326458944106,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":1007,"tdur":92,"tts":1909476},
-{"pid":27369,"tid":27369,"ts":326458944136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1909507,"id":"0xaf8a6cddfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458945113,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1909568,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458945113,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1909568,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458945235,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1909690},
-{"pid":27369,"tid":27369,"ts":326458953414,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1910086},
-{"pid":27369,"tid":27369,"ts":326458953445,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1910148,"id":"0xaf8a67c1feb47934"},
-{"pid":27369,"tid":27369,"ts":326458953445,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":1910148},
-{"pid":27369,"tid":27369,"ts":326458953536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":702,"tdur":702,"tts":1910178},
-{"pid":27369,"tid":27369,"ts":326458953536,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":702,"tdur":702,"tts":1910178},
-{"pid":27369,"tid":27369,"ts":326458953598,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":640,"tdur":579,"tts":1910270},
-{"pid":27369,"tid":27369,"ts":326458953903,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":152,"tdur":153,"tts":1910544},
-{"pid":27369,"tid":27369,"ts":326458953933,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":91,"tts":1910575},
-{"pid":27369,"tid":27369,"ts":326458953964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1910605,"id":"0xaf8a67c2feb47934"},
-{"pid":27369,"tid":27369,"ts":326458954116,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1910758},
-{"pid":27369,"tid":27369,"ts":326458954177,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1910819},
-{"pid":27369,"tid":27369,"ts":326458954422,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1911002},
-{"pid":27369,"tid":27369,"ts":326458954910,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1911216},
-{"pid":27369,"tid":27369,"ts":326458958267,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1911704},
-{"pid":27369,"tid":27369,"ts":326458958328,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1911765},
-{"pid":27369,"tid":27369,"ts":326458958420,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":1911857},
-{"pid":27369,"tid":27369,"ts":326458946000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1911887,"id":"0x30000003d"},
-{"pid":27369,"tid":27369,"ts":326458958450,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901949},"tts":1911887,"id":"0x30000003d"},
-{"pid":27369,"tid":27369,"ts":326458958481,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":1911918},
-{"pid":27369,"tid":27369,"ts":326458958481,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1911918,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326458958511,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1911948},
-{"pid":27369,"tid":27369,"ts":326458959366,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1912498},
-{"pid":27369,"tid":27369,"ts":326458959427,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1912559},
-{"pid":27369,"tid":27369,"ts":326458959427,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458951249},"dur":91,"tdur":91,"tts":1912559},
-{"pid":27369,"tid":27369,"ts":326458959457,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1912589},
-{"pid":27369,"tid":27369,"ts":326458959457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1912589,"id":"0xaf8a6cdefebbc614"},
-{"pid":27369,"tid":27369,"ts":326458959549,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":2,"delay":4.2},"dur":92,"tdur":91,"tts":1912681},
-{"pid":27369,"tid":27369,"ts":326458959580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1912711,"id":"0xaf8a67c3feb47934"},
-{"pid":27369,"tid":27369,"ts":326458959641,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1912772},
-{"pid":27369,"tid":27369,"ts":326458961869,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1914481},
-{"pid":27369,"tid":27369,"ts":326458961960,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1914603},
-{"pid":27369,"tid":27369,"ts":326458961991,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1914603,"id":"0xaf8a67c2feb47934"},
-{"pid":27369,"tid":27369,"ts":326458961991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":30,"tdur":0,"tts":1914634},
-{"pid":27369,"tid":27369,"ts":326458962082,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1914695},
-{"pid":27369,"tid":27369,"ts":326458962143,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1914756},
-{"pid":27369,"tid":27369,"ts":326458962265,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1914909},
-{"pid":27369,"tid":27369,"ts":326458964493,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1915031},
-{"pid":27369,"tid":27369,"ts":326458964524,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326458963},"tts":1915061,"id":"0xaf8a67c3feb47934"},
-{"pid":27369,"tid":27369,"ts":326458964524,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2503,"tdur":1557,"tts":1915061},
-{"pid":27369,"tid":27407,"ts":326458951095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1422524,"id":"0xaf8a67c1feb47934"},
-{"pid":27369,"tid":27407,"ts":326458951095,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":91,"tts":1422524},
-{"pid":27369,"tid":27407,"ts":326458959549,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1422920,"id":"0xaf8a6cdefebbc614"},
-{"pid":27369,"tid":27407,"ts":326458959549,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1422920},
-{"pid":27369,"tid":27407,"ts":326458959580,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1422951,"id":"0xba449602"},
-{"pid":27369,"tid":27407,"ts":326458966202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423103,"id":"0xaf8a6cdffebbc614"},
-{"pid":27369,"tid":27407,"ts":326458966202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1423103},
-{"pid":27369,"tid":27407,"ts":326458966233,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1423134,"id":"0xba449702"},
-{"pid":27369,"tid":27407,"ts":326458966965,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423226,"id":"0xaf8a6cd8febbc614"},
-{"pid":27369,"tid":27407,"ts":326458966996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1423256},
-{"pid":27369,"tid":27407,"ts":326458966996,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1423256,"id":"0xba449802"},
-{"pid":27369,"tid":27407,"ts":326458971635,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1423348},
-{"pid":27369,"tid":27407,"ts":326458971666,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1423378},
-{"pid":27369,"tid":27407,"ts":326458971666,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1423378,"id":"0xc4c13402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458971696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1423409,"id":"0xaf8a67dcfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458973100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423592,"id":"0xaf8a6cd9febbc614"},
-{"pid":27369,"tid":27407,"ts":326458973100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1423592},
-{"pid":27369,"tid":27407,"ts":326458973131,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1423622,"id":"0xba449902"},
-{"pid":27369,"tid":27407,"ts":326458976396,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1423714},
-{"pid":27369,"tid":27407,"ts":326458976427,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1423744},
-{"pid":27369,"tid":27407,"ts":326458976427,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1423744,"id":"0xccc40b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458976457,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1423775,"id":"0xaf8a67ddfeb47934"},
-{"pid":27369,"tid":27407,"ts":326458977007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1423989,"id":"0xaf8a6cdafebbc614"},
-{"pid":27369,"tid":27407,"ts":326458977007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1423989},
-{"pid":27369,"tid":27407,"ts":326458977007,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1424019,"id":"0xba449a02"},
-{"pid":27369,"tid":27407,"ts":326458978838,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1424111},
-{"pid":27369,"tid":27407,"ts":326458978899,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1424172},
-{"pid":27369,"tid":27407,"ts":326458978899,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1424172,"id":"0xccc40d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458978929,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1424202,"id":"0xaf8a67defeb47934"},
-{"pid":27369,"tid":27407,"ts":326458980486,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1424446,"id":"0xaf8a6cdbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326458980486,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1424446},
-{"pid":27369,"tid":27407,"ts":326458980486,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1424477,"id":"0xba449b02"},
-{"pid":27369,"tid":27407,"ts":326458981432,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1424599,"id":"0xaf8a6cd4febbc614"},
-{"pid":27369,"tid":27407,"ts":326458981432,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1424599},
-{"pid":27369,"tid":27407,"ts":326458981432,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1424599,"id":"0xba449c02"},
-{"pid":27369,"tid":27407,"ts":326458987780,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":122,"tts":1424721},
-{"pid":27369,"tid":27407,"ts":326458987811,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":61,"tts":1424752},
-{"pid":27369,"tid":27407,"ts":326458987811,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1424752,"id":"0xc4c13702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326458987841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1424782,"id":"0xaf8a67d8feb47934"},
-{"pid":27369,"tid":27407,"ts":326458989001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1424935,"id":"0xaf8a6cd5febbc614"},
-{"pid":27369,"tid":27407,"ts":326458989032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1424935},
-{"pid":27369,"tid":27407,"ts":326458989032,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1424935,"id":"0xba449d02"},
-{"pid":27369,"tid":27407,"ts":326459006672,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":122,"tts":1425087},
-{"pid":27369,"tid":27407,"ts":326459006734,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1425118},
-{"pid":27369,"tid":27407,"ts":326459006734,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1425118,"id":"0xccc40f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459006764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1425148,"id":"0xaf8a67d9feb47934"},
-{"pid":27369,"tid":27407,"ts":326459007435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1425270,"id":"0xaf8a6cd6febbc614"},
-{"pid":27369,"tid":27407,"ts":326459007466,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1425301},
-{"pid":27369,"tid":27407,"ts":326459007466,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1425301,"id":"0xba449e02"},
-{"pid":27369,"tid":27407,"ts":326459010121,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1425392},
-{"pid":27369,"tid":27407,"ts":326459010182,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":92,"tdur":92,"tts":1425453},
-{"pid":27369,"tid":27407,"ts":326459010182,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1425453,"id":"0xccc41102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459010213,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1425484,"id":"0xaf8a67dafeb47934"},
-{"pid":27369,"tid":27407,"ts":326459010365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1425606,"id":"0xaf8a6cd7febbc614"},
-{"pid":27369,"tid":27407,"ts":326459010396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1425606},
-{"pid":27369,"tid":27407,"ts":326459010396,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1425606,"id":"0xba449f02"},
-{"pid":27369,"tid":27407,"ts":326459012258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1425759,"id":"0xaf8a6cd0febbc614"},
-{"pid":27369,"tid":27407,"ts":326459012258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1425759},
-{"pid":27369,"tid":27407,"ts":326459012258,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1425789,"id":"0xba44a002"},
-{"pid":27369,"tid":27407,"ts":326459013326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1425911,"id":"0xaf8a6cd1febbc614"},
-{"pid":27369,"tid":27407,"ts":326459013326,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1425911},
-{"pid":27369,"tid":27407,"ts":326459013356,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1425942,"id":"0xba44a102"},
-{"pid":27369,"tid":27407,"ts":326459019247,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1426033},
-{"pid":27369,"tid":27407,"ts":326459019277,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1426064},
-{"pid":27369,"tid":27369,"ts":326458964554,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1915092},
-{"pid":27369,"tid":27369,"ts":326458964554,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2473,"tdur":1496,"tts":1915122},
-{"pid":27369,"tid":27369,"ts":326458964585,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":73},"dur":1038,"tdur":92,"tts":1915122},
-{"pid":27369,"tid":27369,"ts":326458964615,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":1008,"tdur":61,"tts":1915153},
-{"pid":27369,"tid":27369,"ts":326458965623,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1915214},
-{"pid":27369,"tid":27369,"ts":326458965653,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1915244,"id":"0x300000036"},
-{"pid":27369,"tid":27369,"ts":326458965653,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1915244,"id":"0x300000037"},
-{"pid":27369,"tid":27369,"ts":326458965684,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1915275},
-{"pid":27369,"tid":27369,"ts":326458965684,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1915275},
-{"pid":27369,"tid":27369,"ts":326458965714,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":184,"tts":1915305},
-{"pid":27369,"tid":27369,"ts":326458965928,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1915519},
-{"pid":27369,"tid":27369,"ts":326458965958,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1915550},
-{"pid":27369,"tid":27369,"ts":326458965958,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1915550},
-{"pid":27369,"tid":27369,"ts":326458965958,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":73},"dur":61,"tdur":61,"tts":1915550},
-{"pid":27369,"tid":27369,"ts":326458966019,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":73},"dur":0,"tdur":0,"tts":1915611},
-{"pid":27369,"tid":27369,"ts":326458966050,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":73},"tts":1915641},
-{"pid":27369,"tid":27369,"ts":326458966050,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1915641},
-{"pid":27369,"tid":27369,"ts":326458966050,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1915641},
-{"pid":27369,"tid":27369,"ts":326458966050,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":1915672},
-{"pid":27369,"tid":27369,"ts":326458966080,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":1915702},
-{"pid":27369,"tid":27369,"ts":326458966111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1915702,"id":"0xaf8a6cdffebbc614"},
-{"pid":27369,"tid":27369,"ts":326458966202,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":793,"tts":1915794},
-{"pid":27369,"tid":27369,"ts":326458966233,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":73},"dur":244,"tdur":244,"tts":1915824},
-{"pid":27369,"tid":27369,"ts":326458966233,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1915824},
-{"pid":27369,"tid":27369,"ts":326458966233,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1915855},
-{"pid":27369,"tid":27369,"ts":326458966263,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1915855},
-{"pid":27369,"tid":27369,"ts":326458966263,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1915855,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458966294,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1915885},
-{"pid":27369,"tid":27369,"ts":326458966447,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1916038},
-{"pid":27369,"tid":27369,"ts":326458966477,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":306,"tts":1916068},
-{"pid":27369,"tid":27369,"ts":326458966477,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":1916068},
-{"pid":27369,"tid":27369,"ts":326458966508,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1916099},
-{"pid":27369,"tid":27369,"ts":326458966508,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1916099},
-{"pid":27369,"tid":27369,"ts":326458966569,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":153,"tts":1916160},
-{"pid":27369,"tid":27369,"ts":326458966752,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1916343,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458966813,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1916404,"id":"0x300000036"},
-{"pid":27369,"tid":27369,"ts":326458966843,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1916435,"id":"0x300000037"},
-{"pid":27369,"tid":27369,"ts":326458966843,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":1916435},
-{"pid":27369,"tid":27369,"ts":326458966874,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":942},"dur":91,"tdur":92,"tts":1916465},
-{"pid":27369,"tid":27369,"ts":326458966904,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":30,"tts":1916496},
-{"pid":27369,"tid":27369,"ts":326458966904,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1916496,"id":"0xaf8a6cd8febbc614"},
-{"pid":27369,"tid":27369,"ts":326458966965,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":1916557},
-{"pid":27369,"tid":27369,"ts":326458966965,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1916557},
-{"pid":27369,"tid":27369,"ts":326458967149,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1916740},
-{"pid":27369,"tid":27369,"ts":326458971757,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1917015},
-{"pid":27369,"tid":27369,"ts":326458972184,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1917442},
-{"pid":27369,"tid":27369,"ts":326458972245,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":62,"tdur":61,"tts":1917503},
-{"pid":27369,"tid":27369,"ts":326458972337,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1917594},
-{"pid":27369,"tid":27369,"ts":326458962000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1917625,"id":"0x30000003e"},
-{"pid":27369,"tid":27369,"ts":326458972368,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901950},"tts":1917625,"id":"0x30000003e"},
-{"pid":27369,"tid":27369,"ts":326458972398,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":1917656},
-{"pid":27369,"tid":27369,"ts":326458972398,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1917656,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458972429,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1917686},
-{"pid":27369,"tid":27369,"ts":326458972886,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1917930},
-{"pid":27369,"tid":27369,"ts":326458972947,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":306,"tdur":122,"tts":1917991},
-{"pid":27369,"tid":27369,"ts":326458972947,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458967933},"dur":275,"tdur":92,"tts":1917991},
-{"pid":27369,"tid":27369,"ts":326458972978,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":61,"tts":1918022},
-{"pid":27369,"tid":27369,"ts":326458972978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1918022,"id":"0xaf8a6cd9febbc614"},
-{"pid":27369,"tid":27369,"ts":326458973253,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1918113},
-{"pid":27369,"tid":27369,"ts":326458973253,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1918113},
-{"pid":27369,"tid":27369,"ts":326458973466,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1918205},
-{"pid":27369,"tid":27369,"ts":326458973588,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1918327},
-{"pid":27369,"tid":27369,"ts":326458973588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1918327,"id":"0xaf8a67dcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458973619,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1918358},
-{"pid":27369,"tid":27369,"ts":326458973649,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1918388},
-{"pid":27369,"tid":27369,"ts":326458973680,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1918419},
-{"pid":27369,"tid":27369,"ts":326458973772,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1918510},
-{"pid":27369,"tid":27369,"ts":326458976701,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1918754},
-{"pid":27369,"tid":27369,"ts":326458976701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1918754,"id":"0xaf8a67ddfeb47934"},
-{"pid":27369,"tid":27369,"ts":326458976701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":275,"tts":1918754},
-{"pid":27369,"tid":27369,"ts":326458976732,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":427,"tdur":244,"tts":1918785},
-{"pid":27369,"tid":27369,"ts":326458976762,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1918846,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458976793,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1918846,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458976793,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":366,"tdur":183,"tts":1918846},
-{"pid":27369,"tid":27369,"ts":326458976824,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":335,"tdur":153,"tts":1918876},
-{"pid":27369,"tid":27369,"ts":326458976824,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1918876,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326458976854,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":275,"tdur":91,"tts":1918907},
-{"pid":27369,"tid":27369,"ts":326458976854,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":275,"tdur":91,"tts":1918907},
-{"pid":27369,"tid":27369,"ts":326458976885,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":213,"tdur":31,"tts":1918937},
-{"pid":27369,"tid":27369,"ts":326458976915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1918968,"id":"0xaf8a6cdafebbc614"},
-{"pid":27369,"tid":27369,"ts":326458977129,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1918998,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326458977129,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1918998,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458977220,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1919090},
-{"pid":27369,"tid":27369,"ts":326458979174,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1919243},
-{"pid":27369,"tid":27369,"ts":326458979204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1919273,"id":"0xaf8a67defeb47934"},
-{"pid":27369,"tid":27369,"ts":326458979204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":1919273},
-{"pid":27369,"tid":27369,"ts":326458979204,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":397,"tts":1919273},
-{"pid":27369,"tid":27369,"ts":326458979235,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":1919304},
-{"pid":27369,"tid":27369,"ts":326458979418,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":1919487},
-{"pid":27369,"tid":27369,"ts":326458979418,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1919487},
-{"pid":27369,"tid":27369,"ts":326458979448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1919517,"id":"0xaf8a67dffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458979509,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1919609},
-{"pid":27369,"tid":27369,"ts":326458979570,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1919639},
-{"pid":27369,"tid":27369,"ts":326458979662,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1919731},
-{"pid":27369,"tid":27369,"ts":326458979753,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1919822},
-{"pid":27369,"tid":27369,"ts":326458979753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1919853,"id":"0xaf8a67dffeb47934"},
-{"pid":27369,"tid":27369,"ts":326458979784,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":4242,"tdur":1526,"tts":1919853},
-{"pid":27369,"tid":27369,"ts":326458979784,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1919853},
-{"pid":27369,"tid":27369,"ts":326458979815,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":4181,"tdur":1465,"tts":1919884},
-{"pid":27369,"tid":27369,"ts":326458979815,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":74},"dur":61,"tdur":61,"tts":1919884},
-{"pid":27369,"tid":27369,"ts":326458979845,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":1919914},
-{"pid":27369,"tid":27369,"ts":326458979876,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":335,"tts":1919945},
-{"pid":27369,"tid":27369,"ts":326458979906,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1919975,"id":"0x300000039"},
-{"pid":27369,"tid":27369,"ts":326458979906,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":1919975},
-{"pid":27369,"tid":27369,"ts":326458979937,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1920006},
-{"pid":27369,"tid":27369,"ts":326458979967,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":1920036},
-{"pid":27369,"tid":27369,"ts":326458980181,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1920250},
-{"pid":27369,"tid":27369,"ts":326458980211,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1920280},
-{"pid":27369,"tid":27369,"ts":326458980242,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1920311},
-{"pid":27369,"tid":27369,"ts":326458980242,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":74},"dur":30,"tdur":30,"tts":1920311},
-{"pid":27369,"tid":27369,"ts":326458980272,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":74},"dur":31,"tdur":31,"tts":1920341},
-{"pid":27369,"tid":27369,"ts":326458980303,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":74},"tts":1920372},
-{"pid":27369,"tid":27369,"ts":326458980303,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1920402},
-{"pid":27369,"tid":27369,"ts":326458980333,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1920402},
-{"pid":27369,"tid":27369,"ts":326458980333,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1920402},
-{"pid":27369,"tid":27369,"ts":326458980364,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":30,"tts":1920433},
-{"pid":27369,"tid":27369,"ts":326458980394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1920463,"id":"0xaf8a6cdbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326458980639,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":3326,"tdur":794,"tts":1920524},
-{"pid":27369,"tid":27369,"ts":326458980639,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":74},"dur":244,"tdur":245,"tts":1920524},
-{"pid":27369,"tid":27369,"ts":326458980669,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":1920555},
-{"pid":27369,"tid":27369,"ts":326458980669,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1920555},
-{"pid":27369,"tid":27369,"ts":326458980669,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1920555},
-{"pid":27369,"tid":27369,"ts":326458980700,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1920585,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458980700,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1920616},
-{"pid":27369,"tid":27369,"ts":326458980883,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1920769},
-{"pid":27369,"tid":27369,"ts":326458980883,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":335,"tts":1920769},
-{"pid":27369,"tid":27369,"ts":326458980913,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1920799},
-{"pid":27369,"tid":27369,"ts":326458980913,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1920799},
-{"pid":27369,"tid":27369,"ts":326458980944,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1920830},
-{"pid":27369,"tid":27369,"ts":326458980974,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1920860},
-{"pid":27369,"tid":27369,"ts":326458981188,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1921074,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326458981249,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1921135,"id":"0x300000039"},
-{"pid":27369,"tid":27369,"ts":326458981280,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":305,"tdur":153,"tts":1921165},
-{"pid":27369,"tid":27369,"ts":326458981280,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3420},"dur":274,"tdur":122,"tts":1921165},
-{"pid":27369,"tid":27369,"ts":326458981310,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":214,"tdur":61,"tts":1921196},
-{"pid":27369,"tid":27369,"ts":326458981310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1921196,"id":"0xaf8a6cd4febbc614"},
-{"pid":27369,"tid":27369,"ts":326458981554,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1921287},
-{"pid":27369,"tid":27369,"ts":326458981554,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1921287},
-{"pid":27369,"tid":27369,"ts":326458984118,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1921471},
-{"pid":27369,"tid":27369,"ts":326458987231,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1921806},
-{"pid":27369,"tid":27369,"ts":326458987689,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1922234},
-{"pid":27369,"tid":27369,"ts":326458988055,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1922325},
-{"pid":27369,"tid":27369,"ts":326458988177,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1922447},
-{"pid":27369,"tid":27369,"ts":326458979000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1922478,"id":"0x30000003f"},
-{"pid":27369,"tid":27369,"ts":326458988208,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901951},"tts":1922478,"id":"0x30000003f"},
-{"pid":27369,"tid":27369,"ts":326458988238,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":1922508},
-{"pid":27369,"tid":27369,"ts":326458988238,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1922508,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326458988269,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1922539},
-{"pid":27369,"tid":27369,"ts":326458988818,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1922783},
-{"pid":27369,"tid":27369,"ts":326458988879,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":122,"tts":1922844},
-{"pid":27369,"tid":27369,"ts":326458988879,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326458984618},"dur":244,"tdur":92,"tts":1922844},
-{"pid":27369,"tid":27369,"ts":326458988910,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":213,"tdur":61,"tts":1922875},
-{"pid":27369,"tid":27369,"ts":326458988910,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1922875,"id":"0xaf8a6cd5febbc614"},
-{"pid":27369,"tid":27369,"ts":326458989184,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1922997},
-{"pid":27369,"tid":27369,"ts":326458989276,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1923088},
-{"pid":27369,"tid":27369,"ts":326458989367,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1923180},
-{"pid":27369,"tid":27369,"ts":326458989398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1923210,"id":"0xaf8a67d8feb47934"},
-{"pid":27369,"tid":27369,"ts":326458989398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1923210},
-{"pid":27369,"tid":27369,"ts":326458989428,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":1923271},
-{"pid":27369,"tid":27369,"ts":326458989459,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":1923271},
-{"pid":27369,"tid":27369,"ts":326458989551,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1923363},
-{"pid":27369,"tid":27369,"ts":326459004231,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1923729},
-{"pid":27369,"tid":27369,"ts":326459004689,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1924156},
-{"pid":27369,"tid":27369,"ts":326459004689,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":1924156},
-{"pid":27369,"tid":27369,"ts":326459004811,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":61,"tts":1924217},
-{"pid":27369,"tid":27369,"ts":326459004963,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":153,"tdur":122,"tts":1924309},
-{"pid":27369,"tid":27369,"ts":326458996000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1924339,"id":"0x300000040"},
-{"pid":27369,"tid":27369,"ts":326459004994,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901952},"tts":1924339,"id":"0x300000040"},
-{"pid":27369,"tid":27369,"ts":326459005024,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":92,"tdur":61,"tts":1924370},
-{"pid":27369,"tid":27369,"ts":326459005024,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1924370},
-{"pid":27369,"tid":27369,"ts":326459005085,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1924401,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459005116,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1924431},
-{"pid":27369,"tid":27369,"ts":326459007283,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1924797},
-{"pid":27369,"tid":27369,"ts":326459007313,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1924828},
-{"pid":27369,"tid":27369,"ts":326459007344,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459001302},"dur":61,"tdur":61,"tts":1924858},
-{"pid":27369,"tid":27369,"ts":326459007344,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1924858},
-{"pid":27369,"tid":27369,"ts":326459007374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1924889,"id":"0xaf8a6cd6febbc614"},
-{"pid":27369,"tid":27369,"ts":326459007466,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1924980},
-{"pid":27369,"tid":27369,"ts":326459007558,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1925072},
-{"pid":27369,"tid":27369,"ts":326459007649,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1925164},
-{"pid":27369,"tid":27369,"ts":326459007649,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1465,"tdur":30,"tts":1925164},
-{"pid":27369,"tid":27369,"ts":326459009114,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1925194,"id":"0xaf8a67d9feb47934"},
-{"pid":27369,"tid":27369,"ts":326459009145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1587,"tdur":427,"tts":1925225},
-{"pid":27369,"tid":27369,"ts":326459009145,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":1587,"tdur":427,"tts":1925225},
-{"pid":27369,"tid":27369,"ts":326459009206,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1925286,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459009206,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1925286,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459009236,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":1496,"tdur":336,"tts":1925316},
-{"pid":27369,"tid":27369,"ts":326459009236,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":1496,"tdur":305,"tts":1925316},
-{"pid":27369,"tid":27369,"ts":326459009267,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1925347,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459009267,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":1434,"tdur":274,"tts":1925347},
-{"pid":27369,"tid":27369,"ts":326459009297,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":1404,"tdur":244,"tts":1925377},
-{"pid":27369,"tid":27369,"ts":326459009328,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":1343,"tdur":183,"tts":1925408},
-{"pid":27369,"tid":27369,"ts":326459009328,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1925408,"id":"0xaf8a6cd7febbc614"},
-{"pid":27369,"tid":27369,"ts":326459009328,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1007,"tdur":122,"tts":1925408},
-{"pid":27369,"tid":27369,"ts":326459010671,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1925591,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459010701,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1925621,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459010823,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1925743},
-{"pid":27369,"tid":27369,"ts":326459010915,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1925835},
-{"pid":27369,"tid":27369,"ts":326459010945,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1925866,"id":"0xaf8a67dafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459010945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":427,"tts":1925866},
-{"pid":27369,"tid":27369,"ts":326459010945,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":1925866},
-{"pid":27369,"tid":27369,"ts":326459010976,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":366,"tts":1925896},
-{"pid":27369,"tid":27369,"ts":326459011159,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1926079},
-{"pid":27369,"tid":27369,"ts":326459011159,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":1926110},
-{"pid":27369,"tid":27369,"ts":326459011189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1926110,"id":"0xaf8a67dbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459011281,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1926201},
-{"pid":27369,"tid":27369,"ts":326459011312,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1926232},
-{"pid":27369,"tid":27369,"ts":326459011434,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1926354},
-{"pid":27369,"tid":27369,"ts":326459011525,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1926445},
-{"pid":27369,"tid":27369,"ts":326459011556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1926476,"id":"0xaf8a67dbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459011556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2136,"tdur":1526,"tts":1926476},
-{"pid":27369,"tid":27369,"ts":326459011556,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":1926476},
-{"pid":27369,"tid":27369,"ts":326459011586,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2076,"tdur":1465,"tts":1926506},
-{"pid":27369,"tid":27369,"ts":326459011617,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":75},"dur":61,"tdur":61,"tts":1926537},
-{"pid":27369,"tid":27369,"ts":326459011617,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":1926537},
-{"pid":27369,"tid":27369,"ts":326459011678,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":274,"tdur":275,"tts":1926598},
-{"pid":27369,"tid":27369,"ts":326459011678,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1926598,"id":"0x30000003c"},
-{"pid":27369,"tid":27369,"ts":326459011708,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1926629},
-{"pid":27369,"tid":27369,"ts":326459011708,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1926629},
-{"pid":27369,"tid":27369,"ts":326459011739,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":1926659},
-{"pid":27369,"tid":27369,"ts":326459011952,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1926873},
-{"pid":27369,"tid":27369,"ts":326459011983,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1926903},
-{"pid":27369,"tid":27369,"ts":326459011983,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1926903},
-{"pid":27369,"tid":27369,"ts":326459011983,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":75},"dur":61,"tdur":31,"tts":1926903},
-{"pid":27369,"tid":27369,"ts":326459012044,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":75},"dur":0,"tdur":0,"tts":1926964},
-{"pid":27369,"tid":27369,"ts":326459012044,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":75},"tts":1926964},
-{"pid":27369,"tid":27369,"ts":326459012075,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1926995},
-{"pid":27369,"tid":27369,"ts":326459012075,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1926995},
-{"pid":27369,"tid":27369,"ts":326459012075,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":1926995},
-{"pid":27369,"tid":27369,"ts":326459012105,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":92,"tts":1927025},
-{"pid":27369,"tid":27369,"ts":326459012136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1927056,"id":"0xaf8a6cd0febbc614"},
-{"pid":27369,"tid":27369,"ts":326459012563,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1099,"tdur":793,"tts":1927178},
-{"pid":27369,"tid":27369,"ts":326459012563,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":75},"dur":244,"tdur":244,"tts":1927178},
-{"pid":27369,"tid":27369,"ts":326459012593,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":1927208},
-{"pid":27369,"tid":27369,"ts":326459012593,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1927208},
-{"pid":27369,"tid":27369,"ts":326459012593,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":1927208},
-{"pid":27369,"tid":27369,"ts":326459012624,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1927239,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459012624,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1927269},
-{"pid":27369,"tid":27369,"ts":326459012777,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1927392},
-{"pid":27369,"tid":27369,"ts":326459012807,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":1927422},
-{"pid":27369,"tid":27369,"ts":326459012807,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":1927422},
-{"pid":27369,"tid":27369,"ts":326459012838,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1927453},
-{"pid":27369,"tid":27369,"ts":326459012838,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":1927453},
-{"pid":27369,"tid":27369,"ts":326459012899,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1927514},
-{"pid":27369,"tid":27369,"ts":326459013112,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1927727,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459013173,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1927788,"id":"0x30000003c"},
-{"pid":27369,"tid":27369,"ts":326459013173,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":458,"tdur":153,"tts":1927788},
-{"pid":27369,"tid":27369,"ts":326459013204,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6019},"dur":397,"tdur":91,"tts":1927819},
-{"pid":27369,"tid":27369,"ts":326459013204,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":397,"tdur":91,"tts":1927819},
-{"pid":27369,"tid":27369,"ts":326459013234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1927849,"id":"0xaf8a6cd1febbc614"},
-{"pid":27369,"tid":27369,"ts":326459013601,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":1927910},
-{"pid":27369,"tid":27369,"ts":326459013631,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1927941},
-{"pid":27369,"tid":27369,"ts":326459013753,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1928063},
-{"pid":27369,"tid":27369,"ts":326459019277,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1928460},
-{"pid":27369,"tid":27369,"ts":326459019674,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1928887},
-{"pid":27369,"tid":27369,"ts":326459019766,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1928948},
-{"pid":27369,"tid":27407,"ts":326459019277,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1426064,"id":"0xc4c13a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459019308,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1426094,"id":"0xaf8a67d4feb47934"},
-{"pid":27369,"tid":27407,"ts":326459020590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1426278,"id":"0xaf8a6cd2febbc614"},
-{"pid":27369,"tid":27407,"ts":326459020620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1426278},
-{"pid":27369,"tid":27407,"ts":326459020620,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1426278,"id":"0xba44a202"},
-{"pid":27369,"tid":27407,"ts":326459032401,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":244,"tts":1426400},
-{"pid":27369,"tid":27407,"ts":326459032462,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1426461},
-{"pid":27369,"tid":27407,"ts":326459032462,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1426461,"id":"0xccc41402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459032493,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1426491,"id":"0xaf8a67d5feb47934"},
-{"pid":27369,"tid":27407,"ts":326459033103,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1426705,"id":"0xaf8a6cd3febbc614"},
-{"pid":27369,"tid":27407,"ts":326459033134,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1426735},
-{"pid":27369,"tid":27407,"ts":326459033134,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1426735,"id":"0xba44a302"},
-{"pid":27369,"tid":27407,"ts":326459034934,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":123,"tts":1426857},
-{"pid":27369,"tid":27407,"ts":326459034965,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1426888},
-{"pid":27369,"tid":27407,"ts":326459034965,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1426888,"id":"0xccc41602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459034965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1426918,"id":"0xaf8a67d6feb47934"},
-{"pid":27369,"tid":27407,"ts":326459038810,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427041,"id":"0xaf8a6cecfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459038841,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1427071},
-{"pid":27369,"tid":27407,"ts":326459038841,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1427071,"id":"0xba44a402"},
-{"pid":27369,"tid":27407,"ts":326459038902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427132,"id":"0xaf8a6cedfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459038902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1427132},
-{"pid":27369,"tid":27407,"ts":326459038932,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1427163,"id":"0xba44a502"},
-{"pid":27369,"tid":27407,"ts":326459041893,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1427254},
-{"pid":27369,"tid":27407,"ts":326459041954,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1427315},
-{"pid":27369,"tid":27407,"ts":326459041954,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1427315,"id":"0xccc41902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459041985,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1427346,"id":"0xaf8a67d7feb47934"},
-{"pid":27369,"tid":27407,"ts":326459043755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427559,"id":"0xaf8a6ceefebbc614"},
-{"pid":27369,"tid":27407,"ts":326459043755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1427559},
-{"pid":27369,"tid":27407,"ts":326459043785,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1427590,"id":"0xba44a602"},
-{"pid":27369,"tid":27407,"ts":326459044792,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1427712,"id":"0xaf8a6ceffebbc614"},{"pid":27369,"tid":27407,"ts":326459044792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1427712},
-{"pid":27369,"tid":27407,"ts":326459044792,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1427743,"id":"0xba44a702"},
-{"pid":27369,"tid":27407,"ts":326459050408,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1427834},
-{"pid":27369,"tid":27407,"ts":326459050439,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1427865},
-{"pid":27369,"tid":27407,"ts":326459050439,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1427865,"id":"0xc4c13d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459050469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1427895,"id":"0xaf8a67d1feb47934"},
-{"pid":27369,"tid":27407,"ts":326459054071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1428109,"id":"0xaf8a6ce8febbc614"},
-{"pid":27369,"tid":27407,"ts":326459054071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1428109},
-{"pid":27369,"tid":27407,"ts":326459054101,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1428139,"id":"0xba44a802"},
-{"pid":27369,"tid":27407,"ts":326459058923,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1428231},
-{"pid":27369,"tid":27407,"ts":326459058954,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1428261},
-{"pid":27369,"tid":27407,"ts":326459058984,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1428292,"id":"0xccc41b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459058984,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1428292,"id":"0xaf8a67d2feb47934"},
-{"pid":27369,"tid":27407,"ts":326459059747,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1428536,"id":"0xaf8a6ce9febbc614"},
-{"pid":27369,"tid":27407,"ts":326459059747,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1428536},
-{"pid":27369,"tid":27407,"ts":326459059747,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1428536,"id":"0xba44a902"},
-{"pid":27369,"tid":27407,"ts":326459062708,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1428689},
-{"pid":27369,"tid":27407,"ts":326459062769,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1428719},
-{"pid":27369,"tid":27407,"ts":326459062799,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1428750,"id":"0xccc41e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459062830,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1428780,"id":"0xaf8a67d3feb47934"},
-{"pid":27369,"tid":27407,"ts":326459064295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1428963,"id":"0xaf8a6ceafebbc614"},
-{"pid":27369,"tid":27407,"ts":326459064295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1428963},
-{"pid":27369,"tid":27407,"ts":326459064325,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1428994,"id":"0xba44aa02"},
-{"pid":27369,"tid":27407,"ts":326459064997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1429116,"id":"0xaf8a6cebfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459064997,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1429116},
-{"pid":27369,"tid":27407,"ts":326459064997,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1429116,"id":"0xba44ab02"},
-{"pid":27369,"tid":27407,"ts":326459069850,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":153,"tts":1429238},
-{"pid":27369,"tid":27407,"ts":326459069911,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1429269},
-{"pid":27369,"tid":27407,"ts":326459069911,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1429269,"id":"0xc4c14002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459069941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1429299,"id":"0xaf8a67edfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459070216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1429482,"id":"0xaf8a6ce4febbc614"},
-{"pid":27369,"tid":27407,"ts":326459070216,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1429482},
-{"pid":27369,"tid":27407,"ts":326459070216,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1429513,"id":"0xba44ac02"},
-{"pid":27369,"tid":27407,"ts":326459081600,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1429604},
-{"pid":27369,"tid":27369,"ts":326459019827,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":61,"tts":1929040},
-{"pid":27369,"tid":27369,"ts":326459012000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1929070,"id":"0x300000041"},
-{"pid":27369,"tid":27369,"ts":326459019888,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901953},"tts":1929070,"id":"0x300000041"},
-{"pid":27369,"tid":27369,"ts":326459019918,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":1929101},
-{"pid":27369,"tid":27369,"ts":326459019918,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1929101,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459019949,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1929131},
-{"pid":27369,"tid":27369,"ts":326459020437,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1929467},
-{"pid":27369,"tid":27369,"ts":326459020498,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1929528},
-{"pid":27369,"tid":27369,"ts":326459020498,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459017960},"dur":92,"tdur":92,"tts":1929528},
-{"pid":27369,"tid":27369,"ts":326459020529,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":1929558},
-{"pid":27369,"tid":27369,"ts":326459020529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1929558,"id":"0xaf8a6cd2febbc614"},
-{"pid":27369,"tid":27369,"ts":326459020620,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1929650},
-{"pid":27369,"tid":27369,"ts":326459020712,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1929742},
-{"pid":27369,"tid":27369,"ts":326459020834,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1929864},
-{"pid":27369,"tid":27369,"ts":326459020834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1929864,"id":"0xaf8a67d4feb47934"},
-{"pid":27369,"tid":27369,"ts":326459020834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":427,"tdur":92,"tts":1929894},
-{"pid":27369,"tid":27369,"ts":326459020834,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":336,"tdur":0,"tts":1929894},
-{"pid":27369,"tid":27369,"ts":326459021231,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":1929955},
-{"pid":27369,"tid":27369,"ts":326459021231,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1929955},
-{"pid":27369,"tid":27369,"ts":326459021322,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1930077},
-{"pid":27369,"tid":27369,"ts":326459032798,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1930291},
-{"pid":27369,"tid":27369,"ts":326459032828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1930321,"id":"0xaf8a67d5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459032828,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":1930321},
-{"pid":27369,"tid":27369,"ts":326459032859,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":1930352},
-{"pid":27369,"tid":27369,"ts":326459032889,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1930413,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459032920,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1930413,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459032920,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":214,"tts":1930413},
-{"pid":27369,"tid":27369,"ts":326459032951,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1930444},
-{"pid":27369,"tid":27369,"ts":326459032981,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1930474,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459032981,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":1930474},
-{"pid":27369,"tid":27369,"ts":326459033012,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1930505},
-{"pid":27369,"tid":27369,"ts":326459033042,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1930535},
-{"pid":27369,"tid":27369,"ts":326459033042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1930535,"id":"0xaf8a6cd3febbc614"},
-{"pid":27369,"tid":27369,"ts":326459033103,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1930596,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459033103,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1930596,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459033225,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1930718},
-{"pid":27369,"tid":27369,"ts":326459035606,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1930962},
-{"pid":27369,"tid":27369,"ts":326459035606,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1930962},
-{"pid":27369,"tid":27369,"ts":326459037437,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1931420},
-{"pid":27369,"tid":27369,"ts":326459037529,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1931481},
-{"pid":27369,"tid":27369,"ts":326459037620,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":153,"tdur":91,"tts":1931573},
-{"pid":27369,"tid":27369,"ts":326459029000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1931634,"id":"0x300000042"},
-{"pid":27369,"tid":27369,"ts":326459037681,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901954},"tts":1931634,"id":"0x300000042"},
-{"pid":27369,"tid":27369,"ts":326459037681,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":61,"tdur":30,"tts":1931634},
-{"pid":27369,"tid":27369,"ts":326459037712,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1931664,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459037773,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1931695},
-{"pid":27369,"tid":27369,"ts":326459038047,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1931970},
-{"pid":27369,"tid":27369,"ts":326459038078,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":122,"tts":1932000},
-{"pid":27369,"tid":27369,"ts":326459038108,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459034652},"dur":92,"tdur":61,"tts":1932031},
-{"pid":27369,"tid":27369,"ts":326459038108,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1932031},
-{"pid":27369,"tid":27369,"ts":326459038139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1932061,"id":"0xaf8a6cecfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459038231,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1932153},
-{"pid":27369,"tid":27369,"ts":326459038353,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1932275},
-{"pid":27369,"tid":27369,"ts":326459038444,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1932366},
-{"pid":27369,"tid":27369,"ts":326459038475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1932397,"id":"0xaf8a67d6feb47934"},
-{"pid":27369,"tid":27369,"ts":326459038475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":275,"tts":1932427},
-{"pid":27369,"tid":27369,"ts":326459038505,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":1932427},
-{"pid":27369,"tid":27369,"ts":326459038566,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1932488,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459038566,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1932488,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459038566,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":184,"tts":1932488},
-{"pid":27369,"tid":27369,"ts":326459038597,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":152,"tdur":153,"tts":1932519},
-{"pid":27369,"tid":27369,"ts":326459038627,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1932549,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459038627,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":123,"tts":1932549},
-{"pid":27369,"tid":27369,"ts":326459038658,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":91,"tdur":92,"tts":1932580},
-{"pid":27369,"tid":27369,"ts":326459038688,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":1932611},
-{"pid":27369,"tid":27369,"ts":326459038719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1932641,"id":"0xaf8a6cedfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459038719,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1932641,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459038719,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1932641,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459038841,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1932763},
-{"pid":27369,"tid":27369,"ts":326459040214,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1932885},
-{"pid":27369,"tid":27369,"ts":326459040275,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1932946},
-{"pid":27369,"tid":27369,"ts":326459042442,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1933129},
-{"pid":27369,"tid":27369,"ts":326459042442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1933129,"id":"0xaf8a67d7feb47934"},
-{"pid":27369,"tid":27369,"ts":326459042473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1933160},
-{"pid":27369,"tid":27369,"ts":326459042473,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":1933160},
-{"pid":27369,"tid":27369,"ts":326459042503,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":1933190},
-{"pid":27369,"tid":27369,"ts":326459042717,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1933404},
-{"pid":27369,"tid":27369,"ts":326459042717,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":1933404},
-{"pid":27369,"tid":27369,"ts":326459042748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1933435,"id":"0xaf8a67d0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459042839,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1933526},
-{"pid":27369,"tid":27369,"ts":326459042870,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1933557},
-{"pid":27369,"tid":27369,"ts":326459042992,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1933679},
-{"pid":27369,"tid":27369,"ts":326459043083,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1933770},
-{"pid":27369,"tid":27369,"ts":326459043083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1933770,"id":"0xaf8a67d0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459043083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":6867,"tdur":1434,"tts":1933801},
-{"pid":27369,"tid":27369,"ts":326459043114,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1933801},
-{"pid":27369,"tid":27369,"ts":326459043114,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1709,"tdur":1434,"tts":1933801},
-{"pid":27369,"tid":27369,"ts":326459043144,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":76},"dur":61,"tdur":61,"tts":1933831},
-{"pid":27369,"tid":27369,"ts":326459043175,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":1933862},
-{"pid":27369,"tid":27369,"ts":326459043205,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":306,"tts":1933892},
-{"pid":27369,"tid":27369,"ts":326459043236,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1933923,"id":"0x30000003d"},
-{"pid":27369,"tid":27369,"ts":326459043236,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":1933923},
-{"pid":27369,"tid":27369,"ts":326459043266,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1933953},
-{"pid":27369,"tid":27369,"ts":326459043266,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":183,"tts":1933984},
-{"pid":27369,"tid":27369,"ts":326459043480,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1934167},
-{"pid":27369,"tid":27369,"ts":326459043511,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1934198},
-{"pid":27369,"tid":27369,"ts":326459043541,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":1934228},
-{"pid":27369,"tid":27369,"ts":326459043541,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":76},"dur":31,"tdur":31,"tts":1934228},
-{"pid":27369,"tid":27369,"ts":326459043572,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":76},"dur":30,"tdur":30,"tts":1934259},
-{"pid":27369,"tid":27369,"ts":326459043602,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":76},"tts":1934289},
-{"pid":27369,"tid":27369,"ts":326459043602,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1934289},
-{"pid":27369,"tid":27369,"ts":326459043602,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":1934320},
-{"pid":27369,"tid":27369,"ts":326459043633,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1934320},
-{"pid":27369,"tid":27369,"ts":326459043663,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1934350},
-{"pid":27369,"tid":27369,"ts":326459043663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1934350,"id":"0xaf8a6ceefebbc614"},
-{"pid":27369,"tid":27369,"ts":326459043755,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1068,"tdur":793,"tts":1934442},
-{"pid":27369,"tid":27369,"ts":326459043785,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":76},"dur":489,"tdur":214,"tts":1934472},
-{"pid":27369,"tid":27369,"ts":326459043785,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":366,"tdur":92,"tts":1934472},
-{"pid":27369,"tid":27369,"ts":326459043816,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":305,"tdur":30,"tts":1934503},
-{"pid":27369,"tid":27369,"ts":326459043816,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":1934503},
-{"pid":27369,"tid":27369,"ts":326459044121,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1934533},
-{"pid":27369,"tid":27369,"ts":326459044121,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1934533,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459044151,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1934564},
-{"pid":27369,"tid":27369,"ts":326459044274,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1934686},
-{"pid":27369,"tid":27369,"ts":326459044274,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":306,"tts":1934716},
-{"pid":27369,"tid":27369,"ts":326459044304,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1934716},
-{"pid":27369,"tid":27369,"ts":326459044304,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1934716},
-{"pid":27369,"tid":27369,"ts":326459044335,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1934747},
-{"pid":27369,"tid":27369,"ts":326459044365,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":184,"tts":1934777},
-{"pid":27369,"tid":27369,"ts":326459044579,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1935022,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459044640,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1935052,"id":"0x30000003d"},
-{"pid":27369,"tid":27369,"ts":326459044670,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":1935083},
-{"pid":27369,"tid":27369,"ts":326459044670,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8531},"dur":92,"tdur":91,"tts":1935083},
-{"pid":27369,"tid":27369,"ts":326459044701,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1935113},
-{"pid":27369,"tid":27369,"ts":326459044731,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1935144,"id":"0xaf8a6ceffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459044762,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":0,"tts":1935205},
-{"pid":27369,"tid":27369,"ts":326459044792,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1935205},
-{"pid":27369,"tid":27369,"ts":326459050164,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1935418},
-{"pid":27369,"tid":27369,"ts":326459050652,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1935632},
-{"pid":27369,"tid":27369,"ts":326459050683,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1935663,"id":"0xaf8a67d1feb47934"},
-{"pid":27369,"tid":27369,"ts":326459050683,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1935663},
-{"pid":27369,"tid":27369,"ts":326459050744,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1935724},
-{"pid":27369,"tid":27369,"ts":326459050744,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1935724},
-{"pid":27369,"tid":27369,"ts":326459050835,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1935815},
-{"pid":27369,"tid":27369,"ts":326459052758,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1935998},
-{"pid":27369,"tid":27369,"ts":326459053277,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1936548},
-{"pid":27369,"tid":27369,"ts":326459053369,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1936609},
-{"pid":27369,"tid":27369,"ts":326459053460,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":1936700},
-{"pid":27369,"tid":27369,"ts":326459046000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1936731,"id":"0x300000043"},
-{"pid":27369,"tid":27369,"ts":326459053491,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901955},"tts":1936731,"id":"0x300000043"},
-{"pid":27369,"tid":27369,"ts":326459053491,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":1936731},
-{"pid":27369,"tid":27369,"ts":326459053521,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1936761,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459053552,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1936792},
-{"pid":27369,"tid":27369,"ts":326459053887,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1937005},
-{"pid":27369,"tid":27369,"ts":326459053918,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":1937036},
-{"pid":27369,"tid":27369,"ts":326459053949,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459051324},"dur":91,"tdur":92,"tts":1937066},
-{"pid":27369,"tid":27369,"ts":326459053949,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":1937066},
-{"pid":27369,"tid":27369,"ts":326459053979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1937097,"id":"0xaf8a6ce8febbc614"},
-{"pid":27369,"tid":27369,"ts":326459054071,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1937189},
-{"pid":27369,"tid":27369,"ts":326459055047,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1937402},
-{"pid":27369,"tid":27369,"ts":326459059412,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1937646},
-{"pid":27369,"tid":27369,"ts":326459059442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1937677,"id":"0xaf8a67d2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459059442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":275,"tts":1937677},
-{"pid":27369,"tid":27369,"ts":326459059442,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":458,"tdur":275,"tts":1937677},
-{"pid":27369,"tid":27369,"ts":326459059503,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1937738,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459059534,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1937768,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459059534,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":366,"tdur":184,"tts":1937768},
-{"pid":27369,"tid":27369,"ts":326459059534,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":366,"tdur":153,"tts":1937768},
-{"pid":27369,"tid":27369,"ts":326459059564,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1937799,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459059564,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":305,"tdur":91,"tts":1937830},
-{"pid":27369,"tid":27369,"ts":326459059595,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":274,"tdur":91,"tts":1937830},
-{"pid":27369,"tid":27369,"ts":326459059625,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":214,"tdur":31,"tts":1937860},
-{"pid":27369,"tid":27369,"ts":326459059656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1937891,"id":"0xaf8a6ce9febbc614"},
-{"pid":27369,"tid":27369,"ts":326459059869,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1937921,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459059869,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1937921,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459059961,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1938013},
-{"pid":27369,"tid":27369,"ts":326459063013,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1938226},
-{"pid":27369,"tid":27369,"ts":326459063044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1938257,"id":"0xaf8a67d3feb47934"},
-{"pid":27369,"tid":27369,"ts":326459063044,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":1938257},
-{"pid":27369,"tid":27369,"ts":326459063044,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":397,"tts":1938257},
-{"pid":27369,"tid":27369,"ts":326459063074,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":367,"tts":1938287},
-{"pid":27369,"tid":27369,"ts":326459063257,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1938470},
-{"pid":27369,"tid":27369,"ts":326459063288,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1938501},
-{"pid":27369,"tid":27369,"ts":326459063288,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1938501,"id":"0xaf8a67ecfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459063379,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1938593},
-{"pid":27369,"tid":27369,"ts":326459063410,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1938623},
-{"pid":27369,"tid":27369,"ts":326459063532,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1938745},
-{"pid":27369,"tid":27369,"ts":326459063593,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1938806},
-{"pid":27369,"tid":27369,"ts":326459063623,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1938837,"id":"0xaf8a67ecfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459063623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1435,"tdur":1434,"tts":1938837},
-{"pid":27369,"tid":27369,"ts":326459063654,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1938867},
-{"pid":27369,"tid":27369,"ts":326459063654,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1374,"tts":1938867},
-{"pid":27369,"tid":27369,"ts":326459063685,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":77},"dur":61,"tdur":61,"tts":1938898},
-{"pid":27369,"tid":27369,"ts":326459063685,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1938898},
-{"pid":27369,"tid":27369,"ts":326459063746,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1938959},
-{"pid":27369,"tid":27369,"ts":326459063746,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1938959,"id":"0x30000003f"},
-{"pid":27369,"tid":27369,"ts":326459063776,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1938989,"id":"0x300000041"},
-{"pid":27369,"tid":27369,"ts":326459063776,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":1938989},
-{"pid":27369,"tid":27369,"ts":326459063807,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1939020},
-{"pid":27369,"tid":27369,"ts":326459063837,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":1939050},
-{"pid":27369,"tid":27369,"ts":326459064020,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1939233},
-{"pid":27369,"tid":27369,"ts":326459064051,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1939264},
-{"pid":27369,"tid":27369,"ts":326459064081,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":1939294},
-{"pid":27369,"tid":27369,"ts":326459064081,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":77},"dur":31,"tdur":31,"tts":1939294},
-{"pid":27369,"tid":27369,"ts":326459064112,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":77},"dur":30,"tdur":31,"tts":1939325},
-{"pid":27369,"tid":27369,"ts":326459064142,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":77},"tts":1939356},
-{"pid":27369,"tid":27369,"ts":326459064142,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1939356},
-{"pid":27369,"tid":27369,"ts":326459064173,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1939386},
-{"pid":27369,"tid":27369,"ts":326459064173,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1939386},
-{"pid":27369,"tid":27369,"ts":326459064203,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1939417},
-{"pid":27369,"tid":27369,"ts":326459064203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1939447,"id":"0xaf8a6ceafebbc614"},
-{"pid":27369,"tid":27369,"ts":326459064295,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":733,"tts":1939508},
-{"pid":27369,"tid":27369,"ts":326459064325,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":77},"dur":153,"tdur":152,"tts":1939539},
-{"pid":27369,"tid":27369,"ts":326459064325,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":1939539},
-{"pid":27369,"tid":27369,"ts":326459064325,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1939539},
-{"pid":27369,"tid":27369,"ts":326459064356,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1939569},
-{"pid":27369,"tid":27369,"ts":326459064356,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1939569,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459064386,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1939600},
-{"pid":27369,"tid":27369,"ts":326459064478,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1939691},
-{"pid":27369,"tid":27369,"ts":326459064509,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":274,"tdur":274,"tts":1939722},
-{"pid":27369,"tid":27369,"ts":326459064509,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1939722},
-{"pid":27369,"tid":27369,"ts":326459064509,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":1939722},
-{"pid":27369,"tid":27369,"ts":326459064539,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1939752},
-{"pid":27369,"tid":27369,"ts":326459064570,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":1939783},
-{"pid":27369,"tid":27369,"ts":326459064783,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1939996,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459064844,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1940057,"id":"0x30000003f"},
-{"pid":27369,"tid":27369,"ts":326459064844,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1940057,"id":"0x300000041"},
-{"pid":27369,"tid":27369,"ts":326459064844,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1940057},
-{"pid":27369,"tid":27369,"ts":326459064875,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11043},"dur":91,"tdur":92,"tts":1940088},
-{"pid":27369,"tid":27369,"ts":326459064905,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1940119},
-{"pid":27369,"tid":27369,"ts":326459064905,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1940149,"id":"0xaf8a6cebfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459064966,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":1940180},
-{"pid":27369,"tid":27369,"ts":326459064997,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1940210},
-{"pid":27369,"tid":27369,"ts":326459065119,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1940332},
-{"pid":27369,"tid":27369,"ts":326459068720,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1940668},
-{"pid":27369,"tid":27369,"ts":326459068720,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1940668},
-{"pid":27369,"tid":27369,"ts":326459069331,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1941126},
-{"pid":27369,"tid":27369,"ts":326459069422,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":1941217},
-{"pid":27369,"tid":27369,"ts":326459069514,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":1941309},
-{"pid":27369,"tid":27369,"ts":326459063000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1941339,"id":"0x300000044"},
-{"pid":27369,"tid":27369,"ts":326459069575,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901956},"tts":1941370,"id":"0x300000044"},
-{"pid":27369,"tid":27369,"ts":326459069575,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":1941370},
-{"pid":27369,"tid":27369,"ts":326459069575,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1941370,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459069605,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1941400},
-{"pid":27369,"tid":27369,"ts":326459070063,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1941675},
-{"pid":27369,"tid":27369,"ts":326459070094,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1941706},
-{"pid":27369,"tid":27369,"ts":326459070124,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459068013},"dur":61,"tdur":61,"tts":1941736},
-{"pid":27369,"tid":27369,"ts":326459070124,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1941736},
-{"pid":27369,"tid":27369,"ts":326459070155,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1941767,"id":"0xaf8a6ce4febbc614"},
-{"pid":27369,"tid":27369,"ts":326459070246,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1941858},
-{"pid":27369,"tid":27369,"ts":326459073512,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1944300},
-{"pid":27369,"tid":27369,"ts":326459073634,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1944422},
-{"pid":27369,"tid":27369,"ts":326459073665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1944452,"id":"0xaf8a67edfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459073665,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":1944452},
-{"pid":27369,"tid":27369,"ts":326459073695,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":1944513},
-{"pid":27369,"tid":27369,"ts":326459073726,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":1944513},
-{"pid":27369,"tid":27369,"ts":326459073817,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1944605},
-{"pid":27369,"tid":27369,"ts":326459082332,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1944849},
-{"pid":27369,"tid":27369,"ts":326459082332,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1944849,"id":"0xaf8a67eefeb47934"},
-{"pid":27369,"tid":27369,"ts":326459082363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":641,"tdur":305,"tts":1944880},
-{"pid":27369,"tid":27369,"ts":326459082363,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":610,"tdur":274,"tts":1944880},
-{"pid":27369,"tid":27369,"ts":326459082424,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1944941,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459082424,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1944941,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459082455,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":518,"tdur":183,"tts":1944971},
-{"pid":27369,"tid":27369,"ts":326459082455,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":518,"tdur":183,"tts":1944971},
-{"pid":27369,"tid":27369,"ts":326459082485,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1945002,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27407,"ts":326459081630,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":1429665},
-{"pid":27369,"tid":27407,"ts":326459081661,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1429665,"id":"0xccc41f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459081692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1429696,"id":"0xaf8a67eefeb47934"},
-{"pid":27369,"tid":27407,"ts":326459082668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1429940,"id":"0xaf8a6ce5febbc614"},
-{"pid":27369,"tid":27407,"ts":326459082668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1429940},
-{"pid":27369,"tid":27407,"ts":326459082699,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1429971,"id":"0xba44ad02"},
-{"pid":27369,"tid":27407,"ts":326459084560,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1430062},
-{"pid":27369,"tid":27407,"ts":326459084621,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":123,"tdur":122,"tts":1430123},
-{"pid":27369,"tid":27407,"ts":326459084621,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1430123,"id":"0xccc42102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459084652,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1430154,"id":"0xaf8a67effeb47934"},
-{"pid":27369,"tid":27407,"ts":326459092160,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1430337,"id":"0xaf8a6ce6febbc614"},
-{"pid":27369,"tid":27407,"ts":326459092160,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1430337},
-{"pid":27369,"tid":27407,"ts":326459092160,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1430367,"id":"0xba44ae02"},
-{"pid":27369,"tid":27407,"ts":326459099668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1430520,"id":"0xaf8a6ce7febbc614"},
-{"pid":27369,"tid":27407,"ts":326459099668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1430550},
-{"pid":27369,"tid":27407,"ts":326459099699,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1430550,"id":"0xba44af02"},
-{"pid":27369,"tid":27407,"ts":326459100065,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":92,"tts":1430672},
-{"pid":27369,"tid":27407,"ts":326459100095,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1430672},
-{"pid":27369,"tid":27407,"ts":326459100126,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1430703,"id":"0xccc42302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459100126,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1430703,"id":"0xaf8a67eafeb47934"},
-{"pid":27369,"tid":27407,"ts":326459101133,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1430856,"id":"0xaf8a6ce0febbc614"},
-{"pid":27369,"tid":27407,"ts":326459101133,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1430856},
-{"pid":27369,"tid":27407,"ts":326459101164,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1430886,"id":"0xba44b002"},
-{"pid":27369,"tid":27407,"ts":326459105436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431039,"id":"0xaf8a6ce1febbc614"},
-{"pid":27369,"tid":27407,"ts":326459105436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1431069},
-{"pid":27369,"tid":27407,"ts":326459105467,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1431069,"id":"0xba44b102"},
-{"pid":27369,"tid":27407,"ts":326459105925,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1431191},
-{"pid":27369,"tid":27407,"ts":326459105955,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1431222},
-{"pid":27369,"tid":27407,"ts":326459105955,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1431222,"id":"0xc4c14302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459105986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1431252,"id":"0xaf8a67ebfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459109465,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431405,"id":"0xaf8a6ce2febbc614"},
-{"pid":27369,"tid":27407,"ts":326459109465,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1431405},
-{"pid":27369,"tid":27407,"ts":326459109496,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1431435,"id":"0xba44b202"},
-{"pid":27369,"tid":27407,"ts":326459109831,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1431497},
-{"pid":27369,"tid":27407,"ts":326459109892,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":92,"tdur":91,"tts":1431558},
-{"pid":27369,"tid":27407,"ts":326459109892,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1431558,"id":"0xccc42602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459109923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1431588,"id":"0xaf8a67e4feb47934"},
-{"pid":27369,"tid":27407,"ts":326459115020,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431802,"id":"0xaf8a6ce3febbc614"},
-{"pid":27369,"tid":27407,"ts":326459115050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1431832},
-{"pid":27369,"tid":27407,"ts":326459115050,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1431832,"id":"0xba44b302"},
-{"pid":27369,"tid":27407,"ts":326459116149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1431954,"id":"0xaf8a6cfcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459116180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":1431985},
-{"pid":27369,"tid":27407,"ts":326459116180,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1431985,"id":"0xba44b402"},
-{"pid":27369,"tid":27407,"ts":326459121948,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":184,"tts":1432076},
-{"pid":27369,"tid":27407,"ts":326459121978,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":123,"tdur":122,"tts":1432107},
-{"pid":27369,"tid":27407,"ts":326459121978,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1432137,"id":"0xc4c14602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459122009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1432137,"id":"0xaf8a67e6feb47934"},
-{"pid":27369,"tid":27407,"ts":326459124603,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1432351,"id":"0xaf8a6cfdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459124603,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1432382},
-{"pid":27369,"tid":27407,"ts":326459124634,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1432382,"id":"0xba44b502"},
-{"pid":27369,"tid":27407,"ts":326459132477,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1432473},
-{"pid":27369,"tid":27407,"ts":326459132538,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":123,"tdur":92,"tts":1432534},
-{"pid":27369,"tid":27407,"ts":326459132538,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1432565,"id":"0xccc42802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459132600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1432595,"id":"0xaf8a67e7feb47934"},
-{"pid":27369,"tid":27407,"ts":326459133851,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":92,"tts":1432717},
-{"pid":27369,"tid":27407,"ts":326459133881,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1432748},
-{"pid":27369,"tid":27407,"ts":326459133881,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1432748,"id":"0xccc42902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459133912,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1432778,"id":"0xaf8a67e1feb47934"},
-{"pid":27369,"tid":27407,"ts":326459134400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1432870,"id":"0xaf8a6cfefebbc614"},
-{"pid":27369,"tid":27407,"ts":326459134431,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1432900},
-{"pid":27369,"tid":27407,"ts":326459134431,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1432900,"id":"0xba44b602"},
-{"pid":27369,"tid":27407,"ts":326459135774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1432992,"id":"0xaf8a6cfffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459135804,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1433023},
-{"pid":27369,"tid":27407,"ts":326459135804,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433023,"id":"0xba44b702"},
-{"pid":27369,"tid":27369,"ts":326459082485,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":488,"tdur":152,"tts":1945002},
-{"pid":27369,"tid":27369,"ts":326459082516,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":457,"tdur":122,"tts":1945032},
-{"pid":27369,"tid":27369,"ts":326459082546,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":61,"tts":1945063},
-{"pid":27369,"tid":27369,"ts":326459082577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1945093,"id":"0xaf8a6ce5febbc614"},
-{"pid":27369,"tid":27369,"ts":326459082943,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1945124,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459082943,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1945124,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459083065,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1945246},
-{"pid":27369,"tid":27369,"ts":326459089657,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1945521},
-{"pid":27369,"tid":27369,"ts":326459089688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1945551,"id":"0xaf8a67effeb47934"},
-{"pid":27369,"tid":27369,"ts":326459089688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":977,"tdur":550,"tts":1945551},
-{"pid":27369,"tid":27369,"ts":326459089718,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":947,"tdur":519,"tts":1945582},
-{"pid":27369,"tid":27369,"ts":326459089749,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":916,"tdur":458,"tts":1945612},
-{"pid":27369,"tid":27369,"ts":326459089963,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":579,"tdur":152,"tts":1945826},
-{"pid":27369,"tid":27369,"ts":326459089993,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":549,"tdur":122,"tts":1945856},
-{"pid":27369,"tid":27369,"ts":326459090481,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1945917,"id":"0xaf8a67e8feb47934"},
-{"pid":27369,"tid":27369,"ts":326459090573,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1946039},
-{"pid":27369,"tid":27369,"ts":326459090634,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1946070},
-{"pid":27369,"tid":27369,"ts":326459090726,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1946162},
-{"pid":27369,"tid":27369,"ts":326459090817,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1946253},
-{"pid":27369,"tid":27369,"ts":326459091214,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1946650},
-{"pid":27369,"tid":27369,"ts":326459091275,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":1946711},
-{"pid":27369,"tid":27369,"ts":326459091366,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":1946802},
-{"pid":27369,"tid":27369,"ts":326459079000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1946833,"id":"0x300000045"},
-{"pid":27369,"tid":27369,"ts":326459091397,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901957},"tts":1946833,"id":"0x300000045"},
-{"pid":27369,"tid":27369,"ts":326459091428,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":1946864},
-{"pid":27369,"tid":27369,"ts":326459091428,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1946864,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459091458,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1946894},
-{"pid":27369,"tid":27369,"ts":326459091916,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1947138},
-{"pid":27369,"tid":27369,"ts":326459092007,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":1947199},
-{"pid":27369,"tid":27369,"ts":326459092038,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459084704},"dur":92,"tdur":91,"tts":1947230},
-{"pid":27369,"tid":27369,"ts":326459092038,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":1947230},
-{"pid":27369,"tid":27369,"ts":326459092068,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1947260,"id":"0xaf8a6ce6febbc614"},
-{"pid":27369,"tid":27369,"ts":326459092160,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":2,"delay":5.044},"dur":61,"tdur":61,"tts":1947352},
-{"pid":27369,"tid":27369,"ts":326459092191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1947382,"id":"0xaf8a67e9feb47934"},
-{"pid":27369,"tid":27369,"ts":326459092252,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1947443},
-{"pid":27369,"tid":27369,"ts":326459095121,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1949702},
-{"pid":27369,"tid":27369,"ts":326459095243,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1949793},
-{"pid":27369,"tid":27369,"ts":326459095243,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1949824,"id":"0xaf8a67e8feb47934"},
-{"pid":27369,"tid":27369,"ts":326459095273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":0,"tdur":0,"tts":1949824},
-{"pid":27369,"tid":27369,"ts":326459095334,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1949885},
-{"pid":27369,"tid":27369,"ts":326459095426,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1949977},
-{"pid":27369,"tid":27369,"ts":326459095548,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1950099},
-{"pid":27369,"tid":27369,"ts":326459098905,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1950282},
-{"pid":27369,"tid":27369,"ts":326459098936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459097},"tts":1950312,"id":"0xaf8a67e9feb47934"},
-{"pid":27369,"tid":27369,"ts":326459098936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":5585,"tdur":1587,"tts":1950312},
-{"pid":27369,"tid":27369,"ts":326459098966,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1950343},
-{"pid":27369,"tid":27369,"ts":326459098966,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2198,"tdur":1495,"tts":1950343},
-{"pid":27369,"tid":27369,"ts":326459098997,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":78},"dur":61,"tdur":61,"tts":1950373},
-{"pid":27369,"tid":27369,"ts":326459098997,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1950373},
-{"pid":27369,"tid":27369,"ts":326459099058,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":1950434},
-{"pid":27369,"tid":27369,"ts":326459099088,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1950465,"id":"0x300000042"},
-{"pid":27369,"tid":27369,"ts":326459099088,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":1950465},
-{"pid":27369,"tid":27369,"ts":326459099119,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1950495},
-{"pid":27369,"tid":27369,"ts":326459099119,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":214,"tts":1950526},
-{"pid":27369,"tid":27369,"ts":326459099363,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1950740},
-{"pid":27369,"tid":27369,"ts":326459099393,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":1950770},
-{"pid":27369,"tid":27369,"ts":326459099424,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":91,"tts":1950801},
-{"pid":27369,"tid":27369,"ts":326459099424,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":78},"dur":30,"tdur":30,"tts":1950801},
-{"pid":27369,"tid":27369,"ts":326459099454,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":78},"dur":31,"tdur":0,"tts":1950831},
-{"pid":27369,"tid":27369,"ts":326459099485,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":78},"tts":1950862},
-{"pid":27369,"tid":27369,"ts":326459099485,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1950862},
-{"pid":27369,"tid":27369,"ts":326459099485,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":1950862},
-{"pid":27369,"tid":27369,"ts":326459099515,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1950892},
-{"pid":27369,"tid":27369,"ts":326459099546,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":763,"tdur":61,"tts":1950923},
-{"pid":27369,"tid":27369,"ts":326459099546,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1950923,"id":"0xaf8a6ce7febbc614"},
-{"pid":27369,"tid":27369,"ts":326459100339,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":825,"tdur":824,"tts":1951014},
-{"pid":27369,"tid":27369,"ts":326459100370,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":78},"dur":214,"tdur":213,"tts":1951045},
-{"pid":27369,"tid":27369,"ts":326459100370,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1951045},
-{"pid":27369,"tid":27369,"ts":326459100401,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1951075},
-{"pid":27369,"tid":27369,"ts":326459100401,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1951075},
-{"pid":27369,"tid":27369,"ts":326459100401,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1951106,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459100431,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1951106},
-{"pid":27369,"tid":27369,"ts":326459100584,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1951258},
-{"pid":27369,"tid":27369,"ts":326459100584,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":336,"tts":1951289},
-{"pid":27369,"tid":27369,"ts":326459100614,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1951289},
-{"pid":27369,"tid":27369,"ts":326459100614,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":1951289},
-{"pid":27369,"tid":27369,"ts":326459100645,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":1951320},
-{"pid":27369,"tid":27369,"ts":326459100675,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":183,"tts":1951381},
-{"pid":27369,"tid":27369,"ts":326459100919,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1951594,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459100980,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1951655,"id":"0x300000042"},
-{"pid":27369,"tid":27369,"ts":326459101011,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":1951686},
-{"pid":27369,"tid":27369,"ts":326459101011,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13950},"dur":91,"tdur":91,"tts":1951686},
-{"pid":27369,"tid":27369,"ts":326459101041,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1951716},
-{"pid":27369,"tid":27369,"ts":326459101072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1951747,"id":"0xaf8a6ce0febbc614"},
-{"pid":27369,"tid":27369,"ts":326459101133,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":0,"tts":1951808},
-{"pid":27369,"tid":27369,"ts":326459101133,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1951808},
-{"pid":27369,"tid":27369,"ts":326459104704,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1952083},
-{"pid":27369,"tid":27369,"ts":326459104948,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1952266},
-{"pid":27369,"tid":27369,"ts":326459105009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1952296,"id":"0xaf8a67eafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459105009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1099,"tdur":366,"tts":1952296},
-{"pid":27369,"tid":27369,"ts":326459105009,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":1099,"tdur":366,"tts":1952296},
-{"pid":27369,"tid":27369,"ts":326459105101,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1952388,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459105131,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1952418,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459105131,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":977,"tdur":244,"tts":1952418},
-{"pid":27369,"tid":27369,"ts":326459105162,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":946,"tdur":213,"tts":1952449},
-{"pid":27369,"tid":27369,"ts":326459105223,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1952479,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459105253,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":855,"tdur":152,"tts":1952510},
-{"pid":27369,"tid":27369,"ts":326459105253,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":824,"tdur":122,"tts":1952510},
-{"pid":27369,"tid":27369,"ts":326459105284,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":488,"tdur":92,"tts":1952540},
-{"pid":27369,"tid":27369,"ts":326459105314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1952571,"id":"0xaf8a6ce1febbc614"},
-{"pid":27369,"tid":27369,"ts":326459105772,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1952632,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459105772,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1952632,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459105772,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":305,"tdur":0,"tts":1952632},
-{"pid":27369,"tid":27369,"ts":326459106169,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1952723},
-{"pid":27369,"tid":27369,"ts":326459106291,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1952846},
-{"pid":27369,"tid":27369,"ts":326459106718,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1953273},
-{"pid":27369,"tid":27369,"ts":326459106779,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":61,"tts":1953334},
-{"pid":27369,"tid":27369,"ts":326459106932,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":152,"tdur":92,"tts":1953425},
-{"pid":27369,"tid":27369,"ts":326459096000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1953456,"id":"0x300000046"},
-{"pid":27369,"tid":27369,"ts":326459106962,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1953456},
-{"pid":27369,"tid":27369,"ts":326459107023,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901958},"tts":1953456,"id":"0x300000046"},
-{"pid":27369,"tid":27369,"ts":326459107054,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":1953486},
-{"pid":27369,"tid":27369,"ts":326459107054,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1953486,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459107084,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1953517},
-{"pid":27369,"tid":27369,"ts":326459107573,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1953792},
-{"pid":27369,"tid":27369,"ts":326459107756,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":2381,"tdur":183,"tts":1953853},
-{"pid":27369,"tid":27369,"ts":326459107756,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459101377},"dur":2350,"tdur":152,"tts":1953853},
-{"pid":27369,"tid":27369,"ts":326459107756,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1953853},
-{"pid":27369,"tid":27369,"ts":326459107817,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":2289,"tdur":92,"tts":1953883},
-{"pid":27369,"tid":27369,"ts":326459107847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1953914,"id":"0xaf8a6ce2febbc614"},
-{"pid":27369,"tid":27369,"ts":326459110137,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1954036},
-{"pid":27369,"tid":27369,"ts":326459113280,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1956447},
-{"pid":27369,"tid":27369,"ts":326459113402,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1956569},
-{"pid":27369,"tid":27369,"ts":326459113433,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1956600,"id":"0xaf8a67ebfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459113433,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":92,"tts":1956630},
-{"pid":27369,"tid":27369,"ts":326459113494,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1956661},
-{"pid":27369,"tid":27369,"ts":326459113494,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1956661},
-{"pid":27369,"tid":27369,"ts":326459113616,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1956783},
-{"pid":27369,"tid":27369,"ts":326459113677,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1956844},
-{"pid":27369,"tid":27369,"ts":326459113707,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1956874,"id":"0xaf8a67e4feb47934"},
-{"pid":27369,"tid":27369,"ts":326459113707,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":1956874},
-{"pid":27369,"tid":27369,"ts":326459113738,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":1956905},
-{"pid":27369,"tid":27369,"ts":326459113768,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":367,"tdur":366,"tts":1956935},
-{"pid":27369,"tid":27369,"ts":326459113952,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":1957118},
-{"pid":27369,"tid":27369,"ts":326459113982,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1957149},
-{"pid":27369,"tid":27369,"ts":326459113982,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1957149,"id":"0xaf8a67e5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459114074,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1957240},
-{"pid":27369,"tid":27369,"ts":326459114104,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1957301},
-{"pid":27369,"tid":27369,"ts":326459114226,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1957393},
-{"pid":27369,"tid":27369,"ts":326459114287,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1957454},
-{"pid":27369,"tid":27369,"ts":326459114318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1957485,"id":"0xaf8a67e5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459114318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2197,"tdur":1526,"tts":1957485},
-{"pid":27369,"tid":27369,"ts":326459114318,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":1957485},
-{"pid":27369,"tid":27369,"ts":326459114348,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2167,"tdur":1465,"tts":1957515},
-{"pid":27369,"tid":27369,"ts":326459114379,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":79},"dur":61,"tdur":61,"tts":1957546},
-{"pid":27369,"tid":27369,"ts":326459114379,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":1957546},
-{"pid":27369,"tid":27369,"ts":326459114440,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1957607},
-{"pid":27369,"tid":27369,"ts":326459114440,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1957607,"id":"0x300000043"},
-{"pid":27369,"tid":27369,"ts":326459114470,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1957637},
-{"pid":27369,"tid":27369,"ts":326459114470,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1957637},
-{"pid":27369,"tid":27369,"ts":326459114501,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":1957668},
-{"pid":27369,"tid":27369,"ts":326459114715,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1957881},
-{"pid":27369,"tid":27369,"ts":326459114745,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1957912},
-{"pid":27369,"tid":27369,"ts":326459114776,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":92,"tts":1957942},
-{"pid":27369,"tid":27369,"ts":326459114776,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":79},"dur":30,"tdur":31,"tts":1957942},
-{"pid":27369,"tid":27369,"ts":326459114806,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":79},"dur":31,"tdur":30,"tts":1957973},
-{"pid":27369,"tid":27369,"ts":326459114837,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":79},"tts":1958003},
-{"pid":27369,"tid":27369,"ts":326459114837,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1958003},
-{"pid":27369,"tid":27369,"ts":326459114837,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":1958003},
-{"pid":27369,"tid":27369,"ts":326459114867,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1958034},
-{"pid":27369,"tid":27369,"ts":326459114898,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":427,"tdur":61,"tts":1958065},
-{"pid":27369,"tid":27369,"ts":326459114898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1958065,"id":"0xaf8a6ce3febbc614"},
-{"pid":27369,"tid":27369,"ts":326459115386,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1099,"tdur":793,"tts":1958187},
-{"pid":27369,"tid":27369,"ts":326459115386,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":79},"dur":214,"tdur":213,"tts":1958187},
-{"pid":27369,"tid":27369,"ts":326459115417,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":1958217},
-{"pid":27369,"tid":27369,"ts":326459115417,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":1958217},
-{"pid":27369,"tid":27369,"ts":326459115417,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1958217},
-{"pid":27369,"tid":27369,"ts":326459115447,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1958248,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459115447,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1958248},
-{"pid":27369,"tid":27369,"ts":326459115600,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1958400},
-{"pid":27369,"tid":27369,"ts":326459115630,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":305,"tts":1958431},
-{"pid":27369,"tid":27369,"ts":326459115630,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1958431},
-{"pid":27369,"tid":27369,"ts":326459115630,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":244,"tts":1958461},
-{"pid":27369,"tid":27369,"ts":326459115661,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":1958461},
-{"pid":27369,"tid":27369,"ts":326459115691,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":1958492},
-{"pid":27369,"tid":27369,"ts":326459115935,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1958736,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459115996,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1958797,"id":"0x300000043"},
-{"pid":27369,"tid":27369,"ts":326459115996,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":489,"tdur":183,"tts":1958797},
-{"pid":27369,"tid":27369,"ts":326459116027,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":333},"dur":427,"tdur":122,"tts":1958828},
-{"pid":27369,"tid":27369,"ts":326459116057,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":367,"tdur":61,"tts":1958858},
-{"pid":27369,"tid":27369,"ts":326459116057,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1958858,"id":"0xaf8a6cfcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459116454,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":1958950},
-{"pid":27369,"tid":27369,"ts":326459116454,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1958950},
-{"pid":27369,"tid":27369,"ts":326459116576,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1959072},
-{"pid":27369,"tid":27369,"ts":326459123077,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1959377},
-{"pid":27369,"tid":27369,"ts":326459123474,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1959804},
-{"pid":27369,"tid":27369,"ts":326459123688,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1959865},
-{"pid":27369,"tid":27369,"ts":326459123779,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":61,"tts":1959987},
-{"pid":27369,"tid":27369,"ts":326459113000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1959987,"id":"0x300000047"},
-{"pid":27369,"tid":27369,"ts":326459123840,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901959},"tts":1960018,"id":"0x300000047"},
-{"pid":27369,"tid":27369,"ts":326459123840,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":1960018},
-{"pid":27369,"tid":27369,"ts":326459123840,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1960048,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459123901,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1960079},
-{"pid":27369,"tid":27369,"ts":326459124359,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1960354},
-{"pid":27369,"tid":27369,"ts":326459124451,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":488,"tdur":153,"tts":1960384},
-{"pid":27369,"tid":27369,"ts":326459124451,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459118059},"dur":457,"tdur":122,"tts":1960384},
-{"pid":27369,"tid":27369,"ts":326459124481,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":427,"tdur":91,"tts":1960415},
-{"pid":27369,"tid":27369,"ts":326459124512,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1960445,"id":"0xaf8a6cfdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459124939,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1960537},
-{"pid":27369,"tid":27369,"ts":326459132630,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1963161},
-{"pid":27369,"tid":27369,"ts":326459132783,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1963283},
-{"pid":27369,"tid":27369,"ts":326459132813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1963314,"id":"0xaf8a67e6feb47934"},
-{"pid":27369,"tid":27369,"ts":326459132813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1963314},
-{"pid":27369,"tid":27369,"ts":326459132844,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":1963345},
-{"pid":27369,"tid":27369,"ts":326459132874,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1963375},
-{"pid":27369,"tid":27369,"ts":326459132935,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1963467},
-{"pid":27369,"tid":27369,"ts":326459133027,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1963528},
-{"pid":27369,"tid":27369,"ts":326459133057,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1963558,"id":"0xaf8a67e7feb47934"},
-{"pid":27369,"tid":27369,"ts":326459133057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":427,"tts":1963558},
-{"pid":27369,"tid":27369,"ts":326459133057,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":1963558},
-{"pid":27369,"tid":27369,"ts":326459133118,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":336,"tdur":336,"tts":1963619},
-{"pid":27369,"tid":27369,"ts":326459133271,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":61,"tts":1963802},
-{"pid":27369,"tid":27369,"ts":326459133301,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":62,"tdur":61,"tts":1963802},
-{"pid":27369,"tid":27369,"ts":326459133301,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1963833,"id":"0xaf8a67e0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459133393,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1963894},
-{"pid":27369,"tid":27369,"ts":326459133424,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1963955},
-{"pid":27369,"tid":27369,"ts":326459133637,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1964046},
-{"pid":27369,"tid":27369,"ts":326459133729,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1964138},
-{"pid":27369,"tid":27369,"ts":326459133729,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1964138,"id":"0xaf8a67e0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459133759,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1679,"tdur":1526,"tts":1964169},
-{"pid":27369,"tid":27369,"ts":326459133759,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1964169},
-{"pid":27369,"tid":27369,"ts":326459133759,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1679,"tdur":1496,"tts":1964199},
-{"pid":27369,"tid":27369,"ts":326459133790,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":80},"dur":61,"tdur":61,"tts":1964199},
-{"pid":27369,"tid":27369,"ts":326459133820,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":1964230},
-{"pid":27369,"tid":27369,"ts":326459133851,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":1964260},
-{"pid":27369,"tid":27369,"ts":326459133881,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1964291,"id":"0x300000044"},
-{"pid":27369,"tid":27369,"ts":326459133881,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":1964291},
-{"pid":27369,"tid":27369,"ts":326459133912,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1964321},
-{"pid":27369,"tid":27369,"ts":326459133912,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":183,"tts":1964352},
-{"pid":27369,"tid":27369,"ts":326459134156,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1964565},
-{"pid":27369,"tid":27369,"ts":326459134187,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1964596},
-{"pid":27369,"tid":27369,"ts":326459134187,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1964596},
-{"pid":27369,"tid":27369,"ts":326459134187,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":80},"dur":30,"tdur":30,"tts":1964596},
-{"pid":27369,"tid":27369,"ts":326459134248,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":80},"dur":0,"tdur":0,"tts":1964657},
-{"pid":27369,"tid":27369,"ts":326459134248,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":80},"tts":1964657},
-{"pid":27369,"tid":27369,"ts":326459134278,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1964687},
-{"pid":27369,"tid":27369,"ts":326459134278,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1964687},
-{"pid":27369,"tid":27369,"ts":326459134278,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":1964687},
-{"pid":27369,"tid":27369,"ts":326459134309,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1964718},
-{"pid":27369,"tid":27369,"ts":326459134339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1964748,"id":"0xaf8a6cfefebbc614"},
-{"pid":27369,"tid":27369,"ts":326459134431,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":976,"tdur":824,"tts":1964840},
-{"pid":27369,"tid":27369,"ts":326459134431,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":80},"dur":366,"tdur":214,"tts":1964840},
-{"pid":27369,"tid":27369,"ts":326459134461,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":1964871},
-{"pid":27369,"tid":27369,"ts":326459134461,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1964871},
-{"pid":27369,"tid":27369,"ts":326459134461,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1964871},
-{"pid":27369,"tid":27369,"ts":326459134492,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1964901,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459134492,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1964901},
-{"pid":27369,"tid":27369,"ts":326459134614,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1965023},
-{"pid":27369,"tid":27369,"ts":326459134614,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":1965023},
-{"pid":27369,"tid":27369,"ts":326459134797,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":335,"tts":1965054},
-{"pid":27369,"tid":27369,"ts":326459134828,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1965084},
-{"pid":27369,"tid":27369,"ts":326459134828,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":275,"tts":1965084},
-{"pid":27369,"tid":27369,"ts":326459134858,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":1965115},
-{"pid":27369,"tid":27369,"ts":326459134889,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":214,"tts":1965145},
-{"pid":27369,"tid":27369,"ts":326459135133,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1965389,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459135194,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1965450,"id":"0x300000044"},
-{"pid":27369,"tid":27369,"ts":326459135194,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":213,"tdur":183,"tts":1965481},
-{"pid":27369,"tid":27369,"ts":326459135255,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3095},"dur":91,"tdur":92,"tts":1965511},
-{"pid":27369,"tid":27369,"ts":326459135285,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1965542},
-{"pid":27369,"tid":27369,"ts":326459135285,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1965542,"id":"0xaf8a6cfffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459135346,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1965603},
-{"pid":27369,"tid":27369,"ts":326459135377,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1965634},{"pid":27369,"tid":27369,"ts":326459135529,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1965786},
-{"pid":27369,"tid":27369,"ts":326459135682,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1965939},
-{"pid":27369,"tid":27369,"ts":326459135682,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1965939,"id":"0xaf8a67e1feb47934"},
-{"pid":27369,"tid":27369,"ts":326459135713,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":5768,"tdur":305,"tts":1965969},
-{"pid":27369,"tid":27369,"ts":326459135713,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":5768,"tdur":305,"tts":1965969},
-{"pid":27369,"tid":27369,"ts":326459135743,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1966000,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459135774,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1966030,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459135774,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":5676,"tdur":214,"tts":1966030},
-{"pid":27369,"tid":27369,"ts":326459135774,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":5676,"tdur":214,"tts":1966030},
-{"pid":27369,"tid":27369,"ts":326459135804,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1966061,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459135835,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":5615,"tdur":153,"tts":1966091},
-{"pid":27369,"tid":27369,"ts":326459135835,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":5615,"tdur":153,"tts":1966091},
-{"pid":27369,"tid":27369,"ts":326459135865,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":5555,"tdur":91,"tts":1966122},
-{"pid":27369,"tid":27369,"ts":326459135896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1966152,"id":"0xaf8a6cf8febbc614"},
-{"pid":27369,"tid":27369,"ts":326459141420,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1966213,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459141450,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1966244,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459141573,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1966366},
-{"pid":27369,"tid":27369,"ts":326459141817,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1966610},
-{"pid":27369,"tid":27369,"ts":326459142366,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1967190},
-{"pid":27369,"tid":27369,"ts":326459142549,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":91,"tts":1967282},
-{"pid":27369,"tid":27369,"ts":326459142702,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":61,"tts":1967404},
-{"pid":27369,"tid":27369,"ts":326459129000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1967404,"id":"0x300000048"},
-{"pid":27369,"tid":27369,"ts":326459142763,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901960},"tts":1967434,"id":"0x300000048"},
-{"pid":27369,"tid":27369,"ts":326459142763,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":1967434},
-{"pid":27369,"tid":27369,"ts":326459142793,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1967465,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459142793,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1967465},
-{"pid":27369,"tid":27369,"ts":326459143465,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1967770},
-{"pid":27369,"tid":27369,"ts":326459143495,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":458,"tdur":183,"tts":1967801},
-{"pid":27369,"tid":27369,"ts":326459143526,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459134740},"dur":397,"tdur":122,"tts":1967831},
-{"pid":27369,"tid":27369,"ts":326459143526,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":122,"tts":1967831},
-{"pid":27369,"tid":27369,"ts":326459143556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1967862,"id":"0xaf8a6cf9febbc614"},
-{"pid":27369,"tid":27369,"ts":326459143953,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1967984},
-{"pid":27369,"tid":27369,"ts":326459146761,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1970334},
-{"pid":27369,"tid":27369,"ts":326459146883,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1970425},
-{"pid":27369,"tid":27369,"ts":326459146914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1970456,"id":"0xaf8a67e2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459146914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":1970456},
-{"pid":27369,"tid":27369,"ts":326459146944,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1970486},
-{"pid":27369,"tid":27369,"ts":326459146975,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":1970517},
-{"pid":27369,"tid":27369,"ts":326459147066,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1970608},
-{"pid":27369,"tid":27369,"ts":326459147158,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1970700},
-{"pid":27369,"tid":27369,"ts":326459147158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1970700,"id":"0xaf8a67e3feb47934"},
-{"pid":27369,"tid":27369,"ts":326459147158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":335,"tdur":336,"tts":1970700},
-{"pid":27369,"tid":27369,"ts":326459147188,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":275,"tts":1970730},
-{"pid":27369,"tid":27369,"ts":326459147219,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1970791,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459147249,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1970791,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459147249,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":214,"tts":1970791},
-{"pid":27369,"tid":27369,"ts":326459147280,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1970822},
-{"pid":27369,"tid":27369,"ts":326459147310,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1970853,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459147310,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":1970853},
-{"pid":27369,"tid":27369,"ts":326459147341,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1970883},
-{"pid":27369,"tid":27369,"ts":326459147371,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1970914},
-{"pid":27369,"tid":27369,"ts":326459147371,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1970914,"id":"0xaf8a6cfafebbc614"},
-{"pid":27369,"tid":27369,"ts":326459147432,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1970975,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459147432,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1970975,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459147524,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1971097},
-{"pid":27369,"tid":27369,"ts":326459151919,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1971432},
-{"pid":27369,"tid":27369,"ts":326459152316,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1971860},
-{"pid":27369,"tid":27369,"ts":326459152316,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":1971860},
-{"pid":27369,"tid":27407,"ts":326459135957,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1433145,"id":"0xaf8a6cf8febbc614"},
-{"pid":27369,"tid":27407,"ts":326459135987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1433145},
-{"pid":27369,"tid":27407,"ts":326459136018,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433175,"id":"0xba44b802"},
-{"pid":27369,"tid":27407,"ts":326459141145,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":122,"tts":1433267},
-{"pid":27369,"tid":27407,"ts":326459141176,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1433297},
-{"pid":27369,"tid":27407,"ts":326459141176,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433297,"id":"0xc4c14902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459141206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1433328,"id":"0xaf8a67e2feb47934"},
-{"pid":27369,"tid":27407,"ts":326459143648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1433511,"id":"0xaf8a6cf9febbc614"},
-{"pid":27369,"tid":27407,"ts":326459143678,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1433511},
-{"pid":27369,"tid":27407,"ts":326459143678,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433541,"id":"0xba44b902"},
-{"pid":27369,"tid":27407,"ts":326459143770,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":92,"tts":1433602},
-{"pid":27369,"tid":27407,"ts":326459143770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1433602},
-{"pid":27369,"tid":27407,"ts":326459143800,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433633,"id":"0xccc42b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459143800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1433633,"id":"0xaf8a67e3feb47934"},
-{"pid":27369,"tid":27407,"ts":326459147463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1433786,"id":"0xaf8a6cfafebbc614"},
-{"pid":27369,"tid":27407,"ts":326459147463,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1433786},
-{"pid":27369,"tid":27407,"ts":326459147493,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433816,"id":"0xba44ba02"},
-{"pid":27369,"tid":27407,"ts":326459153414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1433969,"id":"0xaf8a6cfbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459153445,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1433999},
-{"pid":27369,"tid":27407,"ts":326459153445,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1433999,"id":"0xba44bb02"},
-{"pid":27369,"tid":27407,"ts":326459162357,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1434152},
-{"pid":27369,"tid":27407,"ts":326459162418,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1434213},
-{"pid":27369,"tid":27407,"ts":326459162418,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1434213,"id":"0xccc42d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459162448,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1434243,"id":"0xaf8a67fcfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459162937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1434426,"id":"0xaf8a6cf4febbc614"},
-{"pid":27369,"tid":27407,"ts":326459162937,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1434426},
-{"pid":27369,"tid":27407,"ts":326459162967,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1434457,"id":"0xba44bc02"},
-{"pid":27369,"tid":27407,"ts":326459166660,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1434579},
-{"pid":27369,"tid":27407,"ts":326459166721,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1434640},
-{"pid":27369,"tid":27407,"ts":326459166721,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1434640,"id":"0xccc43102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459166752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1434671,"id":"0xaf8a67fdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459168369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1434884,"id":"0xaf8a6cf5febbc614"},
-{"pid":27369,"tid":27407,"ts":326459168369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1434915},
-{"pid":27369,"tid":27407,"ts":326459168400,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1434915,"id":"0xba44bd02"},
-{"pid":27369,"tid":27407,"ts":326459169956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1435037,"id":"0xaf8a6cf6febbc614"},
-{"pid":27369,"tid":27407,"ts":326459169987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1435067},
-{"pid":27369,"tid":27407,"ts":326459169987,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1435067,"id":"0xba44be02"},
-{"pid":27369,"tid":27407,"ts":326459175755,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1435220},
-{"pid":27369,"tid":27407,"ts":326459175786,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":152,"tts":1435251},
-{"pid":27369,"tid":27407,"ts":326459175786,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1435251,"id":"0xc4c14c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459175816,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1435281,"id":"0xaf8a67fffeb47934"},
-{"pid":27369,"tid":27407,"ts":326459177098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1435495,"id":"0xaf8a6cf7febbc614"},
-{"pid":27369,"tid":27407,"ts":326459177098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1435495},
-{"pid":27369,"tid":27407,"ts":326459177129,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1435525,"id":"0xba44bf02"},
-{"pid":27369,"tid":27407,"ts":326459178594,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1435617},
-{"pid":27369,"tid":27407,"ts":326459178624,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1435647},
-{"pid":27369,"tid":27407,"ts":326459178655,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1435678,"id":"0xccc43202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459178655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1435678,"id":"0xaf8a67f8feb47934"},
-{"pid":27369,"tid":27407,"ts":326459182073,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1435830,"id":"0xaf8a6cf0febbc614"},
-{"pid":27369,"tid":27407,"ts":326459182104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1435861},
-{"pid":27369,"tid":27407,"ts":326459182104,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1435861,"id":"0xba44c002"},
-{"pid":27369,"tid":27407,"ts":326459184881,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":3723,"tdur":275,"tts":1435983},
-{"pid":27369,"tid":27407,"ts":326459184942,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":3601,"tdur":183,"tts":1436044},
-{"pid":27369,"tid":27407,"ts":326459184972,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1436075,"id":"0xccc43402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459185034,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1436136,"id":"0xaf8a67f9feb47934"},
-{"pid":27369,"tid":27407,"ts":326459195899,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1436349,"id":"0xaf8a6cf1febbc614"},
-{"pid":27369,"tid":27407,"ts":326459195929,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1436380},
-{"pid":27369,"tid":27407,"ts":326459195929,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1436380,"id":"0xba44c102"},
-{"pid":27369,"tid":27407,"ts":326459197822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1436532,"id":"0xaf8a6cf2febbc614"},
-{"pid":27369,"tid":27407,"ts":326459197822,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1436532},
-{"pid":27369,"tid":27407,"ts":326459197852,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1436563,"id":"0xba44c202"},
-{"pid":27369,"tid":27407,"ts":326459198737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1436685,"id":"0xaf8a6cf3febbc614"},
-{"pid":27369,"tid":27407,"ts":326459198737,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":30,"tts":1436716},
-{"pid":27369,"tid":27407,"ts":326459198768,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1436716,"id":"0xba44c302"},
-{"pid":27369,"tid":27369,"ts":326459152560,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1971951},
-{"pid":27369,"tid":27369,"ts":326459152682,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":1972073},
-{"pid":27369,"tid":27369,"ts":326459146000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1972073,"id":"0x300000049"},
-{"pid":27369,"tid":27369,"ts":326459152712,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901961},"tts":1972104,"id":"0x300000049"},
-{"pid":27369,"tid":27369,"ts":326459152712,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":61,"tdur":31,"tts":1972134},
-{"pid":27369,"tid":27369,"ts":326459152743,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1972134,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459152773,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1972165},
-{"pid":27369,"tid":27369,"ts":326459153201,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1972470},
-{"pid":27369,"tid":27369,"ts":326459153262,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":1972531},
-{"pid":27369,"tid":27369,"ts":326459153262,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459151422},"dur":122,"tdur":122,"tts":1972531},
-{"pid":27369,"tid":27369,"ts":326459153292,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":1972562},
-{"pid":27369,"tid":27369,"ts":326459153323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1972592,"id":"0xaf8a6cfbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459153414,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1972684},
-{"pid":27369,"tid":27369,"ts":326459158603,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1975278},
-{"pid":27369,"tid":27369,"ts":326459162632,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1975614},
-{"pid":27369,"tid":27369,"ts":326459162662,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1975644,"id":"0xaf8a67fcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459162662,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":1975644},
-{"pid":27369,"tid":27369,"ts":326459162662,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":305,"tts":1975644},
-{"pid":27369,"tid":27369,"ts":326459162723,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1975705,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459162723,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1975705,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459162754,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":1975736},
-{"pid":27369,"tid":27369,"ts":326459162754,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":1975736},
-{"pid":27369,"tid":27369,"ts":326459162784,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1975766,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459162784,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":1975766},
-{"pid":27369,"tid":27369,"ts":326459162815,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1975797},
-{"pid":27369,"tid":27369,"ts":326459162845,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1975827},
-{"pid":27369,"tid":27369,"ts":326459162876,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1975858,"id":"0xaf8a6cf4febbc614"},
-{"pid":27369,"tid":27369,"ts":326459162906,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1975888,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459162906,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1975888,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459163181,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1976010},
-{"pid":27369,"tid":27369,"ts":326459166965,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1976194},
-{"pid":27369,"tid":27369,"ts":326459166996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1976194,"id":"0xaf8a67fdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459166996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":488,"tdur":458,"tts":1976224},
-{"pid":27369,"tid":27369,"ts":326459167026,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":1976224},
-{"pid":27369,"tid":27369,"ts":326459167057,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":396,"tts":1976255},
-{"pid":27369,"tid":27369,"ts":326459167271,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":1976468},
-{"pid":27369,"tid":27369,"ts":326459167271,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1976468},
-{"pid":27369,"tid":27369,"ts":326459167301,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1976499,"id":"0xaf8a67fefeb47934"},
-{"pid":27369,"tid":27369,"ts":326459167393,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1976590},
-{"pid":27369,"tid":27369,"ts":326459167423,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1976621},
-{"pid":27369,"tid":27369,"ts":326459167515,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1976712},
-{"pid":27369,"tid":27369,"ts":326459167606,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1976804},
-{"pid":27369,"tid":27369,"ts":326459167637,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1976835,"id":"0xaf8a67fefeb47934"},
-{"pid":27369,"tid":27369,"ts":326459167637,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":5463,"tdur":1831,"tts":1976835},
-{"pid":27369,"tid":27369,"ts":326459167637,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":1976865},
-{"pid":27369,"tid":27369,"ts":326459167667,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":5403,"tdur":1770,"tts":1976865},
-{"pid":27369,"tid":27369,"ts":326459167698,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":81},"dur":61,"tdur":61,"tts":1976896},
-{"pid":27369,"tid":27369,"ts":326459167698,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1976896},
-{"pid":27369,"tid":27369,"ts":326459167759,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":1976957},
-{"pid":27369,"tid":27369,"ts":326459167759,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1976957,"id":"0x300000045"},
-{"pid":27369,"tid":27369,"ts":326459167790,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1976987,"id":"0x300000046"},
-{"pid":27369,"tid":27369,"ts":326459167790,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":1976987},
-{"pid":27369,"tid":27369,"ts":326459167820,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1977018},
-{"pid":27369,"tid":27369,"ts":326459167851,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":1977048},
-{"pid":27369,"tid":27369,"ts":326459168064,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":1977262},
-{"pid":27369,"tid":27369,"ts":326459168095,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":1977292},
-{"pid":27369,"tid":27369,"ts":326459168125,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":91,"tts":1977323},
-{"pid":27369,"tid":27369,"ts":326459168125,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":81},"dur":31,"tdur":30,"tts":1977323},
-{"pid":27369,"tid":27369,"ts":326459168156,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":81},"dur":30,"tdur":31,"tts":1977353},
-{"pid":27369,"tid":27369,"ts":326459168186,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":81},"tts":1977384},
-{"pid":27369,"tid":27369,"ts":326459168186,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1977384},
-{"pid":27369,"tid":27369,"ts":326459168217,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1977414},
-{"pid":27369,"tid":27369,"ts":326459168217,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1977414},
-{"pid":27369,"tid":27369,"ts":326459168247,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":306,"tdur":92,"tts":1977445},
-{"pid":27369,"tid":27369,"ts":326459168278,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1977475,"id":"0xaf8a6cf5febbc614"},
-{"pid":27369,"tid":27369,"ts":326459168583,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":4487,"tdur":1038,"tts":1977567},
-{"pid":27369,"tid":27369,"ts":326459168614,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":81},"dur":305,"tdur":305,"tts":1977598},
-{"pid":27369,"tid":27369,"ts":326459168614,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":1977598},
-{"pid":27369,"tid":27369,"ts":326459168644,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1977628},
-{"pid":27369,"tid":27369,"ts":326459168644,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1977628},
-{"pid":27369,"tid":27369,"ts":326459168675,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1977659,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459168705,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1977689},
-{"pid":27369,"tid":27369,"ts":326459168919,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1977903},
-{"pid":27369,"tid":27369,"ts":326459168949,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":428,"tdur":397,"tts":1977933},
-{"pid":27369,"tid":27369,"ts":326459168949,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":1977933},
-{"pid":27369,"tid":27369,"ts":326459168980,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":366,"tdur":336,"tts":1977964},
-{"pid":27369,"tid":27369,"ts":326459168980,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":122,"tdur":91,"tts":1977964},
-{"pid":27369,"tid":27369,"ts":326459169102,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":214,"tts":1978055},
-{"pid":27369,"tid":27369,"ts":326459169377,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1978330,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459169438,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1978391,"id":"0x300000045"},
-{"pid":27369,"tid":27369,"ts":326459169438,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1978391,"id":"0x300000046"},
-{"pid":27369,"tid":27369,"ts":326459169468,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":702,"tdur":183,"tts":1978422},
-{"pid":27369,"tid":27369,"ts":326459169468,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6094},"dur":672,"tdur":122,"tts":1978422},
-{"pid":27369,"tid":27369,"ts":326459169529,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":580,"tdur":61,"tts":1978483},
-{"pid":27369,"tid":27369,"ts":326459169529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1978513,"id":"0xaf8a6cf6febbc614"},
-{"pid":27369,"tid":27369,"ts":326459170140,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":0,"tts":1978574},
-{"pid":27369,"tid":27369,"ts":326459170140,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1978574},
-{"pid":27369,"tid":27369,"ts":326459173222,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1978788},
-{"pid":27369,"tid":27369,"ts":326459173222,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1526,"tdur":0,"tts":1978788},
-{"pid":27369,"tid":27369,"ts":326459175969,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1979093},
-{"pid":27369,"tid":27369,"ts":326459176427,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1979520},
-{"pid":27369,"tid":27369,"ts":326459176488,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1979581},
-{"pid":27369,"tid":27369,"ts":326459176579,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":61,"tts":1979673},
-{"pid":27369,"tid":27369,"ts":326459163000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1979703,"id":"0x30000004a"},
-{"pid":27369,"tid":27369,"ts":326459176610,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901962},"tts":1979703,"id":"0x30000004a"},
-{"pid":27369,"tid":27369,"ts":326459176640,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":1979734},
-{"pid":27369,"tid":27369,"ts":326459176640,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1979734,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459176671,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1979764},
-{"pid":27369,"tid":27369,"ts":326459176946,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1980039},
-{"pid":27369,"tid":27369,"ts":326459176976,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1980070},
-{"pid":27369,"tid":27369,"ts":326459176976,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459168103},"dur":92,"tdur":61,"tts":1980100},
-{"pid":27369,"tid":27369,"ts":326459177007,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1980100},
-{"pid":27369,"tid":27369,"ts":326459177037,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1980131,"id":"0xaf8a6cf7febbc614"},
-{"pid":27369,"tid":27369,"ts":326459177129,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1980222},
-{"pid":27369,"tid":27369,"ts":326459181402,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1983488},
-{"pid":27369,"tid":27369,"ts":326459181524,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1983610},
-{"pid":27369,"tid":27369,"ts":326459181524,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1983641,"id":"0xaf8a67fffeb47934"},
-{"pid":27369,"tid":27369,"ts":326459181554,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":1983641},
-{"pid":27369,"tid":27369,"ts":326459181585,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1983671},
-{"pid":27369,"tid":27369,"ts":326459181615,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":1983702},
-{"pid":27369,"tid":27369,"ts":326459181707,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1983793},
-{"pid":27369,"tid":27369,"ts":326459181768,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1983885},
-{"pid":27369,"tid":27369,"ts":326459181798,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1983885,"id":"0xaf8a67f8feb47934"},
-{"pid":27369,"tid":27369,"ts":326459181798,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":305,"tts":1983885},
-{"pid":27369,"tid":27369,"ts":326459181829,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":1983915},
-{"pid":27369,"tid":27369,"ts":326459181859,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1983946,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459181890,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1983976,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459181890,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":214,"tts":1983976},
-{"pid":27369,"tid":27369,"ts":326459181890,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":214,"tdur":214,"tts":1983976},
-{"pid":27369,"tid":27369,"ts":326459181920,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1984007,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459181951,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":1984037},
-{"pid":27369,"tid":27369,"ts":326459181951,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1984037},
-{"pid":27369,"tid":27369,"ts":326459181981,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":1984068},
-{"pid":27369,"tid":27369,"ts":326459182012,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1984098,"id":"0xaf8a6cf0febbc614"},
-{"pid":27369,"tid":27369,"ts":326459182073,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1984159,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459182073,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1984159,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459182165,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1984251},
-{"pid":27369,"tid":27369,"ts":326459184148,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1984434},
-{"pid":27369,"tid":27369,"ts":326459189276,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1984648},
-{"pid":27369,"tid":27369,"ts":326459189520,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1984800},
-{"pid":27369,"tid":27369,"ts":326459194586,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1985502},
-{"pid":27369,"tid":27369,"ts":326459194708,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1985655},
-{"pid":27369,"tid":27369,"ts":326459195136,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1986021},
-{"pid":27369,"tid":27369,"ts":326459195197,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":1986113},
-{"pid":27369,"tid":27369,"ts":326459195319,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":1986204},
-{"pid":27369,"tid":27369,"ts":326459179000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1986235,"id":"0x30000004b"},
-{"pid":27369,"tid":27369,"ts":326459195349,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901963},"tts":1986235,"id":"0x30000004b"},
-{"pid":27369,"tid":27369,"ts":326459195349,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":1986235},
-{"pid":27369,"tid":27369,"ts":326459195380,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1986265,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459195410,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1986296},
-{"pid":27369,"tid":27369,"ts":326459195624,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1986540},
-{"pid":27369,"tid":27369,"ts":326459195685,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":580,"tdur":183,"tts":1986571},
-{"pid":27369,"tid":27369,"ts":326459195716,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459184785},"dur":518,"tdur":122,"tts":1986601},
-{"pid":27369,"tid":27369,"ts":326459195716,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":488,"tdur":92,"tts":1986601},
-{"pid":27369,"tid":27369,"ts":326459195716,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1986601},
-{"pid":27369,"tid":27369,"ts":326459195807,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1986632,"id":"0xaf8a6cf1febbc614"},
-{"pid":27369,"tid":27369,"ts":326459196265,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1986754},
-{"pid":27369,"tid":27369,"ts":326459196357,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1986845},
-{"pid":27369,"tid":27369,"ts":326459196448,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1986937},
-{"pid":27369,"tid":27369,"ts":326459196479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1986967,"id":"0xaf8a67f9feb47934"},
-{"pid":27369,"tid":27369,"ts":326459196479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":457,"tdur":458,"tts":1986967},
-{"pid":27369,"tid":27369,"ts":326459196509,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":1986998},
-{"pid":27369,"tid":27369,"ts":326459196540,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":396,"tdur":397,"tts":1987028},
-{"pid":27369,"tid":27369,"ts":326459196753,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1987242},
-{"pid":27369,"tid":27369,"ts":326459196784,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":62,"tts":1987272},
-{"pid":27369,"tid":27369,"ts":326459196784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1987272,"id":"0xaf8a67fafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459196875,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1987364},
-{"pid":27369,"tid":27369,"ts":326459196906,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1987395},
-{"pid":27369,"tid":27369,"ts":326459196998,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1987486},
-{"pid":27369,"tid":27369,"ts":326459197089,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1987578},
-{"pid":27369,"tid":27369,"ts":326459197120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1987608,"id":"0xaf8a67fafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459197120,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1709,"tdur":1526,"tts":1987608},
-{"pid":27369,"tid":27369,"ts":326459197120,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":1987608},
-{"pid":27369,"tid":27369,"ts":326459197150,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1618,"tdur":1434,"tts":1987639},
-{"pid":27369,"tid":27369,"ts":326459197181,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":82},"dur":61,"tdur":61,"tts":1987669},
-{"pid":27369,"tid":27369,"ts":326459197181,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1987669},
-{"pid":27369,"tid":27369,"ts":326459197242,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":1987730},
-{"pid":27369,"tid":27369,"ts":326459197272,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1987761,"id":"0x300000048"},
-{"pid":27369,"tid":27369,"ts":326459197272,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1987761},
-{"pid":27369,"tid":27369,"ts":326459197272,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":1987761},
-{"pid":27369,"tid":27369,"ts":326459197303,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":245,"tts":1987791},
-{"pid":27369,"tid":27369,"ts":326459197547,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":1988036},
-{"pid":27369,"tid":27369,"ts":326459197577,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":1988066},
-{"pid":27369,"tid":27369,"ts":326459197608,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":91,"tts":1988097},
-{"pid":27369,"tid":27369,"ts":326459197608,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":82},"dur":30,"tdur":30,"tts":1988097},
-{"pid":27369,"tid":27369,"ts":326459197638,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":82},"dur":31,"tdur":31,"tts":1988127},
-{"pid":27369,"tid":27369,"ts":326459197669,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":82},"tts":1988158},
-{"pid":27369,"tid":27369,"ts":326459197669,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1988158},
-{"pid":27369,"tid":27369,"ts":326459197699,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1988188},
-{"pid":27369,"tid":27369,"ts":326459197699,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":1988188},
-{"pid":27369,"tid":27369,"ts":326459197730,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1988219},
-{"pid":27369,"tid":27369,"ts":326459197730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1988219,"id":"0xaf8a6cf2febbc614"},
-{"pid":27369,"tid":27369,"ts":326459197822,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":946,"tdur":763,"tts":1988310},
-{"pid":27369,"tid":27369,"ts":326459197852,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":82},"dur":366,"tdur":183,"tts":1988341},
-{"pid":27369,"tid":27369,"ts":326459197852,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":214,"tdur":30,"tts":1988341},
-{"pid":27369,"tid":27369,"ts":326459197852,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":214,"tdur":30,"tts":1988341},
-{"pid":27369,"tid":27369,"ts":326459197852,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":1988341},
-{"pid":27369,"tid":27369,"ts":326459198035,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":1988341},
-{"pid":27369,"tid":27369,"ts":326459198066,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1988371,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459198096,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1988402},
-{"pid":27369,"tid":27369,"ts":326459198188,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1988493},
-{"pid":27369,"tid":27369,"ts":326459198218,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":1988524},
-{"pid":27369,"tid":27369,"ts":326459198218,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":1988524},
-{"pid":27369,"tid":27369,"ts":326459198249,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":1988554},
-{"pid":27369,"tid":27369,"ts":326459198249,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":1988554},
-{"pid":27369,"tid":27369,"ts":326459198310,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":184,"tts":1988615},
-{"pid":27369,"tid":27369,"ts":326459198524,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1988829,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459198585,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1988890,"id":"0x300000048"},
-{"pid":27369,"tid":27369,"ts":326459198615,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":1988921},
-{"pid":27369,"tid":27369,"ts":326459198615,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9006},"dur":92,"tdur":91,"tts":1988921},
-{"pid":27369,"tid":27369,"ts":326459198646,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1988951},
-{"pid":27369,"tid":27369,"ts":326459198676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1988982,"id":"0xaf8a6cf3febbc614"},
-{"pid":27369,"tid":27369,"ts":326459198707,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":1989012},
-{"pid":27369,"tid":27369,"ts":326459198737,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1989043},
-{"pid":27369,"tid":27369,"ts":326459198920,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1989226},
-{"pid":27369,"tid":27369,"ts":326459204048,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1989592},
-{"pid":27369,"tid":27369,"ts":326459204719,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1990050},
-{"pid":27369,"tid":27369,"ts":326459204780,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":1990111},
-{"pid":27369,"tid":27369,"ts":326459204872,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":1990202},
-{"pid":27369,"tid":27369,"ts":326459196000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1990233,"id":"0x30000004c"},
-{"pid":27369,"tid":27369,"ts":326459204902,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901964},"tts":1990233,"id":"0x30000004c"},
-{"pid":27369,"tid":27369,"ts":326459204933,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":1990263},
-{"pid":27369,"tid":27369,"ts":326459204933,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":1990263,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459204963,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1990294},
-{"pid":27369,"tid":27369,"ts":326459205207,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1990538},
-{"pid":27369,"tid":27369,"ts":326459205269,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":1990599},
-{"pid":27369,"tid":27369,"ts":326459205269,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459201467},"dur":91,"tdur":92,"tts":1990599},
-{"pid":27369,"tid":27369,"ts":326459205299,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1990630},
-{"pid":27369,"tid":27369,"ts":326459205299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1990630,"id":"0xaf8a6c8cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459205391,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1990721},
-{"pid":27369,"tid":27369,"ts":326459205665,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1990813},
-{"pid":27369,"tid":27369,"ts":326459205757,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1990935},
-{"pid":27369,"tid":27369,"ts":326459205787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1990935,"id":"0xaf8a67fbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459205787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1990935},
-{"pid":27369,"tid":27369,"ts":326459205848,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":1990996},
-{"pid":27369,"tid":27369,"ts":326459205848,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1990996},
-{"pid":27369,"tid":27369,"ts":326459205940,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1991088},
-{"pid":27369,"tid":27369,"ts":326459207313,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1991240},
-{"pid":27369,"tid":27369,"ts":326459207344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1991240,"id":"0xaf8a67f4feb47934"},
-{"pid":27369,"tid":27369,"ts":326459207344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":1991240},
-{"pid":27369,"tid":27369,"ts":326459207374,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":245,"tdur":244,"tts":1991271},
-{"pid":27369,"tid":27369,"ts":326459207405,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1991301,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459207435,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1991332,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459207435,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":184,"tdur":183,"tts":1991332},
-{"pid":27369,"tid":27369,"ts":326459207435,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":184,"tdur":183,"tts":1991332},
-{"pid":27369,"tid":27369,"ts":326459207466,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1991362,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459207497,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":1991393},
-{"pid":27369,"tid":27369,"ts":326459207497,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":1991393},
-{"pid":27369,"tid":27369,"ts":326459207527,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1991423},
-{"pid":27369,"tid":27369,"ts":326459207527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1991454,"id":"0xaf8a6c8dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459207588,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1991484,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459207588,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1991484,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459207863,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1991576},
-{"pid":27369,"tid":27369,"ts":326459215432,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1991820},
-{"pid":27369,"tid":27369,"ts":326459215462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1991851,"id":"0xaf8a67f5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459215462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":672,"tdur":671,"tts":1991851},
-{"pid":27369,"tid":27369,"ts":326459215462,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":672,"tdur":641,"tts":1991881},
-{"pid":27369,"tid":27369,"ts":326459215523,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":611,"tdur":610,"tts":1991912},
-{"pid":27369,"tid":27369,"ts":326459215920,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":1992308},
-{"pid":27369,"tid":27369,"ts":326459215920,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":1992308},
-{"pid":27369,"tid":27369,"ts":326459215951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1992339,"id":"0xaf8a67f6feb47934"},
-{"pid":27369,"tid":27369,"ts":326459216073,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1992461},
-{"pid":27369,"tid":27369,"ts":326459216103,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1992491},
-{"pid":27369,"tid":27369,"ts":326459216195,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1992583},
-{"pid":27369,"tid":27369,"ts":326459216286,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1992675},
-{"pid":27369,"tid":27369,"ts":326459216317,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1992705,"id":"0xaf8a67f6feb47934"},
-{"pid":27369,"tid":27407,"ts":326459204078,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1436807},
-{"pid":27369,"tid":27407,"ts":326459204139,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1436868},
-{"pid":27369,"tid":27407,"ts":326459204139,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1436868,"id":"0xc4c14f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459204170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1436899,"id":"0xaf8a67fbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459205391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1437082,"id":"0xaf8a6c8cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459205391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1437082},
-{"pid":27369,"tid":27407,"ts":326459205391,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1437112,"id":"0xba44c402"},
-{"pid":27369,"tid":27407,"ts":326459207069,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":152,"tts":1437204},
-{"pid":27369,"tid":27407,"ts":326459207100,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":152,"tdur":122,"tts":1437234},
-{"pid":27369,"tid":27407,"ts":326459207130,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1437265,"id":"0xccc43602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459207130,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1437265,"id":"0xaf8a67f4feb47934"},
-{"pid":27369,"tid":27407,"ts":326459207619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1437448,"id":"0xaf8a6c8dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459207619,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1437448},
-{"pid":27369,"tid":27407,"ts":326459207619,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1437448,"id":"0xba44c502"},
-{"pid":27369,"tid":27407,"ts":326459211952,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1437601},
-{"pid":27369,"tid":27407,"ts":326459212014,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":152,"tts":1437662},
-{"pid":27369,"tid":27407,"ts":326459212014,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1437662,"id":"0xccc43a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459212075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1437723,"id":"0xaf8a67f5feb47934"},
-{"pid":27369,"tid":27407,"ts":326459217049,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1437906,"id":"0xaf8a6c8efebbc614"},
-{"pid":27369,"tid":27407,"ts":326459217049,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1437906},
-{"pid":27369,"tid":27407,"ts":326459217080,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1437936,"id":"0xba44c602"},
-{"pid":27369,"tid":27407,"ts":326459218362,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1438058,"id":"0xaf8a6c8ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459218362,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1438058},
-{"pid":27369,"tid":27407,"ts":326459218392,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1438089,"id":"0xba44c702"},
-{"pid":27369,"tid":27407,"ts":326459222543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1438211,"id":"0xaf8a6c88febbc614"},
-{"pid":27369,"tid":27407,"ts":326459222543,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1438211},
-{"pid":27369,"tid":27407,"ts":326459222543,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1438242,"id":"0xba44c802"},
-{"pid":27369,"tid":27407,"ts":326459227487,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":213,"tts":1438364},
-{"pid":27369,"tid":27407,"ts":326459227548,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":152,"tts":1438425},
-{"pid":27369,"tid":27407,"ts":326459227548,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1438425,"id":"0xc4c15202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459227579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1438455,"id":"0xaf8a67f7feb47934"},
-{"pid":27369,"tid":27407,"ts":326459228952,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1438638},
-{"pid":27369,"tid":27407,"ts":326459228983,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1438669},
-{"pid":27369,"tid":27407,"ts":326459228983,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1438669,"id":"0xccc43b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459229013,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1438699,"id":"0xaf8a67f0feb47934"},
-{"pid":27369,"tid":27407,"ts":326459229471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1438882,"id":"0xaf8a6c89febbc614"},
-{"pid":27369,"tid":27407,"ts":326459229471,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1438882},
-{"pid":27369,"tid":27407,"ts":326459229502,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1438913,"id":"0xba44c902"},
-{"pid":27369,"tid":27407,"ts":326459231913,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1439035},
-{"pid":27369,"tid":27407,"ts":326459231974,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":152,"tts":1439066},
-{"pid":27369,"tid":27407,"ts":326459232004,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439096,"id":"0xccc43d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459232035,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1439127,"id":"0xaf8a67f1feb47934"},
-{"pid":27369,"tid":27407,"ts":326459233561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1439310,"id":"0xaf8a6c8afebbc614"},
-{"pid":27369,"tid":27407,"ts":326459233561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1439310},
-{"pid":27369,"tid":27407,"ts":326459233561,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439310,"id":"0xba44ca02"},
-{"pid":27369,"tid":27407,"ts":326459233622,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1439371,"id":"0xaf8a6c8bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459233652,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1439401},
-{"pid":27369,"tid":27407,"ts":326459233652,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439401,"id":"0xba44cb06"},
-{"pid":27369,"tid":27407,"ts":326459233836,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":61,"tdur":61,"tts":1439493},
-{"pid":27369,"tid":27407,"ts":326459233866,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":1439523},
-{"pid":27369,"tid":27407,"ts":326459233866,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439523,"id":"0xc4c1550a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459233958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1439615,"id":"0xaf8a6c84febbc614"},
-{"pid":27369,"tid":27407,"ts":326459233988,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1439615},
-{"pid":27369,"tid":27407,"ts":326459234415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1439707,"id":"0xaf8a6c85febbc614"},
-{"pid":27369,"tid":27407,"ts":326459234415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1439707},
-{"pid":27369,"tid":27407,"ts":326459234415,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439707,"id":"0xba44cc02"},
-{"pid":27369,"tid":27407,"ts":326459237834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1439859,"id":"0xaf8a6c86febbc614"},
-{"pid":27369,"tid":27407,"ts":326459237834,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1439859},
-{"pid":27369,"tid":27407,"ts":326459237864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439890,"id":"0xba44cd02"},
-{"pid":27369,"tid":27407,"ts":326459237925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1439951,"id":"0xaf8a6c87febbc614"},
-{"pid":27369,"tid":27407,"ts":326459237925,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1439951},
-{"pid":27369,"tid":27407,"ts":326459237925,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1439951,"id":"0xba44ce02"},
-{"pid":27369,"tid":27407,"ts":326459244670,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1440103},
-{"pid":27369,"tid":27407,"ts":326459244701,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1440134},
-{"pid":27369,"tid":27369,"ts":326459216317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2075,"tdur":1587,"tts":1992705},
-{"pid":27369,"tid":27369,"ts":326459216347,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":1992736},
-{"pid":27369,"tid":27369,"ts":326459216347,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2045,"tdur":1556,"tts":1992736},
-{"pid":27369,"tid":27369,"ts":326459216378,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":83},"dur":61,"tdur":61,"tts":1992766},
-{"pid":27369,"tid":27369,"ts":326459216378,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":1992766},
-{"pid":27369,"tid":27369,"ts":326459216439,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":1992827},
-{"pid":27369,"tid":27369,"ts":326459216439,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1992827,"id":"0x300000049"},
-{"pid":27369,"tid":27369,"ts":326459216470,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1992858},
-{"pid":27369,"tid":27369,"ts":326459216470,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":1992858},
-{"pid":27369,"tid":27369,"ts":326459216500,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":1992888},
-{"pid":27369,"tid":27369,"ts":326459216775,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1993163},
-{"pid":27369,"tid":27369,"ts":326459216775,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":1993163},
-{"pid":27369,"tid":27369,"ts":326459216805,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":1993193},
-{"pid":27369,"tid":27369,"ts":326459216805,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":83},"dur":31,"tdur":31,"tts":1993193},
-{"pid":27369,"tid":27369,"ts":326459216836,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":83},"dur":30,"tdur":0,"tts":1993254},
-{"pid":27369,"tid":27369,"ts":326459216866,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":83},"tts":1993254},
-{"pid":27369,"tid":27369,"ts":326459216897,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1993285},
-{"pid":27369,"tid":27369,"ts":326459216897,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1993285},
-{"pid":27369,"tid":27369,"ts":326459216897,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":1993285},
-{"pid":27369,"tid":27369,"ts":326459216927,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1993316},
-{"pid":27369,"tid":27369,"ts":326459216958,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1993346,"id":"0xaf8a6c8efebbc614"},
-{"pid":27369,"tid":27369,"ts":326459217049,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1313,"tdur":824,"tts":1993438},
-{"pid":27369,"tid":27369,"ts":326459217049,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":83},"dur":397,"tdur":213,"tts":1993438},
-{"pid":27369,"tid":27369,"ts":326459217080,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":1993468},
-{"pid":27369,"tid":27369,"ts":326459217080,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":214,"tdur":31,"tts":1993468},
-{"pid":27369,"tid":27369,"ts":326459217080,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":1993468},
-{"pid":27369,"tid":27369,"ts":326459217324,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1993529,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459217355,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1993560},
-{"pid":27369,"tid":27369,"ts":326459217446,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1993651},
-{"pid":27369,"tid":27369,"ts":326459217446,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":702,"tdur":397,"tts":1993651},
-{"pid":27369,"tid":27369,"ts":326459217477,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":1993682},
-{"pid":27369,"tid":27369,"ts":326459217477,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":641,"tdur":336,"tts":1993682},
-{"pid":27369,"tid":27369,"ts":326459217507,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":366,"tdur":31,"tts":1993712},
-{"pid":27369,"tid":27369,"ts":326459217873,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":1993773},
-{"pid":27369,"tid":27369,"ts":326459218148,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1994048,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459218209,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1994109,"id":"0x300000049"},
-{"pid":27369,"tid":27369,"ts":326459218209,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":1994109},
-{"pid":27369,"tid":27369,"ts":326459218240,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12313},"dur":91,"tdur":91,"tts":1994140},
-{"pid":27369,"tid":27369,"ts":326459218240,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":1994170},
-{"pid":27369,"tid":27369,"ts":326459218270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1994170,"id":"0xaf8a6c8ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459218331,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1994231},
-{"pid":27369,"tid":27369,"ts":326459218331,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1994231},
-{"pid":27369,"tid":27369,"ts":326459221048,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1994445},
-{"pid":27369,"tid":27369,"ts":326459221261,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1994628},
-{"pid":27369,"tid":27369,"ts":326459221688,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":1995055},
-{"pid":27369,"tid":27369,"ts":326459221750,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":1995116},
-{"pid":27369,"tid":27369,"ts":326459221841,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":61,"tts":1995238},
-{"pid":27369,"tid":27369,"ts":326459213000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":1995269,"id":"0x30000004d"},
-{"pid":27369,"tid":27369,"ts":326459221902,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901965},"tts":1995269,"id":"0x30000004d"},
-{"pid":27369,"tid":27369,"ts":326459221902,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":1995269},
-{"pid":27369,"tid":27369,"ts":326459221933,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1995299,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459221963,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":1995330},
-{"pid":27369,"tid":27369,"ts":326459222329,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":1995574},
-{"pid":27369,"tid":27369,"ts":326459222360,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":763,"tdur":183,"tts":1995605},
-{"pid":27369,"tid":27369,"ts":326459222390,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459218148},"dur":702,"tdur":122,"tts":1995635},
-{"pid":27369,"tid":27369,"ts":326459222390,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":702,"tdur":122,"tts":1995635},
-{"pid":27369,"tid":27369,"ts":326459222421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1995666,"id":"0xaf8a6c88febbc614"},
-{"pid":27369,"tid":27369,"ts":326459223153,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":1995818},
-{"pid":27369,"tid":27369,"ts":326459223245,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1995910},
-{"pid":27369,"tid":27369,"ts":326459227793,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1996093},
-{"pid":27369,"tid":27369,"ts":326459227823,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1996123,"id":"0xaf8a67f7feb47934"},
-{"pid":27369,"tid":27369,"ts":326459227823,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":1996123},
-{"pid":27369,"tid":27369,"ts":326459227854,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":1996154},
-{"pid":27369,"tid":27369,"ts":326459227884,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":1996184},
-{"pid":27369,"tid":27369,"ts":326459227976,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1996276},
-{"pid":27369,"tid":27369,"ts":326459229166,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1996429},
-{"pid":27369,"tid":27369,"ts":326459229166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1996429,"id":"0xaf8a67f0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459229196,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":367,"tdur":305,"tts":1996459},
-{"pid":27369,"tid":27369,"ts":326459229196,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":336,"tdur":275,"tts":1996459},
-{"pid":27369,"tid":27369,"ts":326459229258,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":1996520,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459229258,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":1996520,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459229288,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":244,"tdur":183,"tts":1996551},
-{"pid":27369,"tid":27369,"ts":326459229288,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":244,"tdur":183,"tts":1996551},
-{"pid":27369,"tid":27369,"ts":326459229319,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":1996581,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459229349,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":122,"tts":1996612},
-{"pid":27369,"tid":27369,"ts":326459229349,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":183,"tdur":122,"tts":1996612},
-{"pid":27369,"tid":27369,"ts":326459229380,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1996642},
-{"pid":27369,"tid":27369,"ts":326459229410,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1996673,"id":"0xaf8a6c89febbc614"},
-{"pid":27369,"tid":27369,"ts":326459229441,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":1996703,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459229441,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1996703},
-{"pid":27369,"tid":27369,"ts":326459229502,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":1996703,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459229654,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1996825},
-{"pid":27369,"tid":27369,"ts":326459232218,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1997070},
-{"pid":27369,"tid":27369,"ts":326459232249,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1997100,"id":"0xaf8a67f1feb47934"},
-{"pid":27369,"tid":27369,"ts":326459232249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":1997100},
-{"pid":27369,"tid":27369,"ts":326459232249,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":1997100},
-{"pid":27369,"tid":27369,"ts":326459232279,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":396,"tts":1997131},
-{"pid":27369,"tid":27369,"ts":326459232493,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":1997344},
-{"pid":27369,"tid":27369,"ts":326459232493,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":1997344},
-{"pid":27369,"tid":27369,"ts":326459232523,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1997375,"id":"0xaf8a67f2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459232615,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1997466},
-{"pid":27369,"tid":27369,"ts":326459232645,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":1997497},
-{"pid":27369,"tid":27369,"ts":326459232737,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1997588},
-{"pid":27369,"tid":27369,"ts":326459232828,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1997680},
-{"pid":27369,"tid":27369,"ts":326459232859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1997710,"id":"0xaf8a67f2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459232859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2930,"tdur":2198,"tts":1997710},
-{"pid":27369,"tid":27369,"ts":326459232859,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":1997710},
-{"pid":27369,"tid":27369,"ts":326459232889,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2869,"tdur":2136,"tts":1997741},
-{"pid":27369,"tid":27369,"ts":326459232920,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":84},"dur":61,"tdur":61,"tts":1997772},
-{"pid":27369,"tid":27369,"ts":326459232920,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":1997772},
-{"pid":27369,"tid":27369,"ts":326459232981,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1160,"tdur":763,"tts":1997833},
-{"pid":27369,"tid":27369,"ts":326459232981,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":1997833,"id":"0x30000004a"},
-{"pid":27369,"tid":27369,"ts":326459233012,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":1997863},
-{"pid":27369,"tid":27369,"ts":326459233012,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":1997863},
-{"pid":27369,"tid":27369,"ts":326459233042,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1068,"tdur":671,"tts":1997894},
-{"pid":27369,"tid":27369,"ts":326459233225,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1998077},
-{"pid":27369,"tid":27369,"ts":326459233256,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1998107},
-{"pid":27369,"tid":27369,"ts":326459233256,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":1998107},
-{"pid":27369,"tid":27369,"ts":326459233286,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":1998138},
-{"pid":27369,"tid":27369,"ts":326459233317,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1998168},
-{"pid":27369,"tid":27369,"ts":326459233317,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":1998199},
-{"pid":27369,"tid":27369,"ts":326459233347,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":1998199},
-{"pid":27369,"tid":27369,"ts":326459233378,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":1998229},
-{"pid":27369,"tid":27369,"ts":326459233378,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":1998260},
-{"pid":27369,"tid":27369,"ts":326459233408,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":1998260},
-{"pid":27369,"tid":27369,"ts":326459233439,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12453},"dur":91,"tdur":92,"tts":1998290},
-{"pid":27369,"tid":27369,"ts":326459233439,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1998290},
-{"pid":27369,"tid":27369,"ts":326459233469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1998321,"id":"0xaf8a6c8afebbc614"},
-{"pid":27369,"tid":27369,"ts":326459233530,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":519,"tdur":122,"tts":1998382},
-{"pid":27369,"tid":27369,"ts":326459233561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1998412,"id":"0xaf8a6c8bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459233927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1998443,"id":"0xaf8a6c84febbc614"},
-{"pid":27369,"tid":27369,"ts":326459234110,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":1998565},
-{"pid":27369,"tid":27369,"ts":326459234141,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":1998596},
-{"pid":27369,"tid":27369,"ts":326459234171,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":1998626},
-{"pid":27369,"tid":27369,"ts":326459234171,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":84},"dur":31,"tdur":31,"tts":1998626},
-{"pid":27369,"tid":27369,"ts":326459234202,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":84},"dur":30,"tdur":30,"tts":1998657},
-{"pid":27369,"tid":27369,"ts":326459234232,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":84},"tts":1998687},
-{"pid":27369,"tid":27369,"ts":326459234232,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":1998687},
-{"pid":27369,"tid":27369,"ts":326459234263,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":1998718},
-{"pid":27369,"tid":27369,"ts":326459234263,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":1998718},
-{"pid":27369,"tid":27369,"ts":326459234324,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":1998779},
-{"pid":27369,"tid":27369,"ts":326459234324,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1998779,"id":"0xaf8a6c85febbc614"},
-{"pid":27369,"tid":27369,"ts":326459234415,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1343,"tdur":1007,"tts":1998870},
-{"pid":27369,"tid":27369,"ts":326459234446,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":84},"dur":641,"tdur":305,"tts":1998901},
-{"pid":27369,"tid":27369,"ts":326459234446,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":427,"tdur":91,"tts":1998901},
-{"pid":27369,"tid":27369,"ts":326459234446,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":30,"tts":1998901},
-{"pid":27369,"tid":27369,"ts":326459234812,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":1998931},
-{"pid":27369,"tid":27369,"ts":326459234843,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":1998962},
-{"pid":27369,"tid":27369,"ts":326459234843,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":1998962,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459234873,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":1998992},
-{"pid":27369,"tid":27369,"ts":326459235056,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":1999175},
-{"pid":27369,"tid":27369,"ts":326459235087,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":397,"tts":1999206},
-{"pid":27369,"tid":27369,"ts":326459235087,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":1999206},
-{"pid":27369,"tid":27369,"ts":326459235117,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":336,"tts":1999236},
-{"pid":27369,"tid":27369,"ts":326459235117,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":1999236},
-{"pid":27369,"tid":27369,"ts":326459235148,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":275,"tdur":244,"tts":1999298},
-{"pid":27369,"tid":27369,"ts":326459235453,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":1999572,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459235545,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":1999664,"id":"0x30000004a"},
-{"pid":27369,"tid":27369,"ts":326459235545,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":1999664},
-{"pid":27369,"tid":27369,"ts":326459235575,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15115},"dur":122,"tdur":122,"tts":1999694},
-{"pid":27369,"tid":27369,"ts":326459235606,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":1999725},
-{"pid":27369,"tid":27369,"ts":326459235636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1999755,"id":"0xaf8a6c86febbc614"},
-{"pid":27369,"tid":27369,"ts":326459235697,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":1999816},
-{"pid":27369,"tid":27369,"ts":326459235697,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":1999816},
-{"pid":27369,"tid":27369,"ts":326459235850,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":1999969},
-{"pid":27369,"tid":27369,"ts":326459236155,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2000183},
-{"pid":27369,"tid":27369,"ts":326459236582,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2000610},
-{"pid":27369,"tid":27369,"ts":326459236643,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":62,"tdur":61,"tts":2000671},
-{"pid":27369,"tid":27369,"ts":326459236735,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":2000763},
-{"pid":27369,"tid":27369,"ts":326459229000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2000793,"id":"0x30000004e"},
-{"pid":27369,"tid":27369,"ts":326459236766,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901966},"tts":2000793,"id":"0x30000004e"},
-{"pid":27369,"tid":27369,"ts":326459236766,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2000793},
-{"pid":27369,"tid":27369,"ts":326459236796,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2000824,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459236827,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2000854},
-{"pid":27369,"tid":27369,"ts":326459237223,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2001129},
-{"pid":27369,"tid":27369,"ts":326459237254,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":2001159},
-{"pid":27369,"tid":27369,"ts":326459237254,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459234830},"dur":61,"tdur":30,"tts":2001190},
-{"pid":27369,"tid":27369,"ts":326459237284,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2001190},
-{"pid":27369,"tid":27369,"ts":326459237315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2001220,"id":"0xaf8a6c87febbc614"},
-{"pid":27369,"tid":27369,"ts":326459237345,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2001251},
-{"pid":27369,"tid":27369,"ts":326459237437,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2001342},
-{"pid":27369,"tid":27369,"ts":326459244914,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2001617},
-{"pid":27369,"tid":27369,"ts":326459244945,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2001617,"id":"0xaf8a67f3feb47934"},
-{"pid":27369,"tid":27369,"ts":326459244945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2001617},{"pid":27369,"tid":27369,"ts":326459245006,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2001678},
-{"pid":27369,"tid":27369,"ts":326459245006,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2001678},
-{"pid":27369,"tid":27369,"ts":326459245098,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2001770},
-{"pid":27369,"tid":27369,"ts":326459254376,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2002136},
-{"pid":27369,"tid":27369,"ts":326459254803,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2002563},
-{"pid":27369,"tid":27369,"ts":326459254864,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2002624},
-{"pid":27369,"tid":27369,"ts":326459255017,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":152,"tdur":152,"tts":2002777},
-{"pid":27369,"tid":27369,"ts":326459246000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2002807,"id":"0x30000004f"},
-{"pid":27369,"tid":27369,"ts":326459255078,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901967},"tts":2002838,"id":"0x30000004f"},
-{"pid":27369,"tid":27369,"ts":326459255108,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":2002868},
-{"pid":27369,"tid":27369,"ts":326459255139,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":2002899,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459255169,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2002929},
-{"pid":27369,"tid":27369,"ts":326459255810,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2003326},
-{"pid":27369,"tid":27369,"ts":326459255871,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2003387},
-{"pid":27369,"tid":27369,"ts":326459255871,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459251511},"dur":92,"tdur":92,"tts":2003387},
-{"pid":27369,"tid":27369,"ts":326459255902,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2003418},
-{"pid":27369,"tid":27369,"ts":326459255902,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2003418,"id":"0xaf8a6c80febbc614"},
-{"pid":27369,"tid":27369,"ts":326459255993,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2003540},
-{"pid":27369,"tid":27407,"ts":326459244701,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1440134,"id":"0xc4c15702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459244731,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1440164,"id":"0xaf8a67f3feb47934"},
-{"pid":27369,"tid":27407,"ts":326459255993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1440378,"id":"0xaf8a6c80febbc614"},
-{"pid":27369,"tid":27407,"ts":326459255993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1440378},
-{"pid":27369,"tid":27407,"ts":326459256024,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1440408,"id":"0xba44cf02"},
-{"pid":27369,"tid":27407,"ts":326459259534,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1440531},
-{"pid":27369,"tid":27407,"ts":326459259564,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1440561},
-{"pid":27369,"tid":27407,"ts":326459259595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1440592,"id":"0xccc43f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459259595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1440592,"id":"0xaf8a678cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459260327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1440775,"id":"0xaf8a6c81febbc614"},
-{"pid":27369,"tid":27407,"ts":326459260327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1440775},
-{"pid":27369,"tid":27407,"ts":326459260358,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1440805,"id":"0xba44d002"},
-{"pid":27369,"tid":27407,"ts":326459264020,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1440897},
-{"pid":27369,"tid":27407,"ts":326459264081,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1440958},
-{"pid":27369,"tid":27407,"ts":326459264081,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1440958,"id":"0xccc44202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459264112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1440988,"id":"0xaf8a678dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459265882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441202,"id":"0xaf8a6c82febbc614"},
-{"pid":27369,"tid":27407,"ts":326459265882,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1441202},
-{"pid":27369,"tid":27407,"ts":326459265882,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1441233,"id":"0xba44d102"},
-{"pid":27369,"tid":27407,"ts":326459266584,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441385,"id":"0xaf8a6c83febbc614"},
-{"pid":27369,"tid":27407,"ts":326459266584,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1441385},
-{"pid":27369,"tid":27407,"ts":326459266584,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1441385,"id":"0xba44d202"},
-{"pid":27369,"tid":27407,"ts":326459271437,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":153,"tts":1441507},
-{"pid":27369,"tid":27407,"ts":326459271467,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1441538},
-{"pid":27369,"tid":27407,"ts":326459271498,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1441568,"id":"0xc4c15a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459271528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1441599,"id":"0xaf8a678ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326459273848,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1441782,"id":"0xaf8a6c9cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459273848,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1441782},
-{"pid":27369,"tid":27407,"ts":326459273878,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1441812,"id":"0xba44d302"},
-{"pid":27369,"tid":27407,"ts":326459282607,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1441934},
-{"pid":27369,"tid":27407,"ts":326459282638,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1441965},
-{"pid":27369,"tid":27407,"ts":326459282668,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1441996,"id":"0xccc44402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459282668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1441996,"id":"0xaf8a6788feb47934"},
-{"pid":27369,"tid":27407,"ts":326459283187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1442179,"id":"0xaf8a6c9dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459283187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1442209},
-{"pid":27369,"tid":27407,"ts":326459283218,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1442209,"id":"0xba44d402"},
-{"pid":27369,"tid":27407,"ts":326459285232,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1442301},
-{"pid":27369,"tid":27407,"ts":326459285293,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":122,"tts":1442362},
-{"pid":27369,"tid":27407,"ts":326459285323,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1442362,"id":"0xccc44602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459285354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1442392,"id":"0xaf8a6789feb47934"},
-{"pid":27369,"tid":27407,"ts":326459287918,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1442606,"id":"0xaf8a6c9efebbc614"},
-{"pid":27369,"tid":27407,"ts":326459287918,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1442606},
-{"pid":27369,"tid":27407,"ts":326459287948,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1442636,"id":"0xba44d502"},
-{"pid":27369,"tid":27407,"ts":326459289627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1442759,"id":"0xaf8a6c9ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459289627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1442759},
-{"pid":27369,"tid":27407,"ts":326459289657,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1442789,"id":"0xba44d602"},
-{"pid":27369,"tid":27407,"ts":326459290756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1442911,"id":"0xaf8a6c98febbc614"},
-{"pid":27369,"tid":27407,"ts":326459290756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1442911},
-{"pid":27369,"tid":27407,"ts":326459290756,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1442911,"id":"0xba44d702"},
-{"pid":27369,"tid":27407,"ts":326459295853,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1443033},
-{"pid":27369,"tid":27407,"ts":326459295884,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":122,"tts":1443064},
-{"pid":27369,"tid":27407,"ts":326459295914,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1443094,"id":"0xc4c15d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459295914,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1443094,"id":"0xaf8a678bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459303605,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1443277,"id":"0xaf8a6c99febbc614"},
-{"pid":27369,"tid":27407,"ts":326459303636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1443308},
-{"pid":27369,"tid":27407,"ts":326459303666,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1443338,"id":"0xba44d802"},
-{"pid":27369,"tid":27407,"ts":326459306749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":213,"tts":1443461},
-{"pid":27369,"tid":27407,"ts":326459306779,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1443491},
-{"pid":27369,"tid":27407,"ts":326459306810,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1443522,"id":"0xccc44802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459306840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1443552,"id":"0xaf8a6784feb47934"},
-{"pid":27369,"tid":27407,"ts":326459307390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1443766,"id":"0xaf8a6c9afebbc614"},
-{"pid":27369,"tid":27407,"ts":326459307390,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1443766},
-{"pid":27369,"tid":27407,"ts":326459307390,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1443766,"id":"0xba44d902"},
-{"pid":27369,"tid":27407,"ts":326459310381,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1443918},
-{"pid":27369,"tid":27369,"ts":326459256115,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2003631},
-{"pid":27369,"tid":27369,"ts":326459259869,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2003815},
-{"pid":27369,"tid":27369,"ts":326459259900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2003845,"id":"0xaf8a678cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459259900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":610,"tdur":336,"tts":2003845},
-{"pid":27369,"tid":27369,"ts":326459259900,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":610,"tdur":336,"tts":2003845},
-{"pid":27369,"tid":27369,"ts":326459259961,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2003906,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459259961,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2003937,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459259992,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":518,"tdur":244,"tts":2003937},
-{"pid":27369,"tid":27369,"ts":326459259992,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":488,"tdur":213,"tts":2003937},
-{"pid":27369,"tid":27369,"ts":326459260053,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2003998,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459260083,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":397,"tdur":122,"tts":2004028},
-{"pid":27369,"tid":27369,"ts":326459260083,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":397,"tdur":122,"tts":2004028},
-{"pid":27369,"tid":27369,"ts":326459260083,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2004028},
-{"pid":27369,"tid":27369,"ts":326459260175,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2004059},
-{"pid":27369,"tid":27369,"ts":326459260205,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2004089,"id":"0xaf8a6c81febbc614"},
-{"pid":27369,"tid":27369,"ts":326459260236,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2004120,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459260236,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":2004120},
-{"pid":27369,"tid":27369,"ts":326459260480,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2004150,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459260571,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2004242},
-{"pid":27369,"tid":27369,"ts":326459264386,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2004486},
-{"pid":27369,"tid":27369,"ts":326459264417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2004517,"id":"0xaf8a678dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459264417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":641,"tdur":610,"tts":2004517},
-{"pid":27369,"tid":27369,"ts":326459264417,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":610,"tdur":610,"tts":2004517},
-{"pid":27369,"tid":27369,"ts":326459264478,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":549,"tdur":549,"tts":2004578},
-{"pid":27369,"tid":27369,"ts":326459264844,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2004944},
-{"pid":27369,"tid":27369,"ts":326459264844,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":2004944},
-{"pid":27369,"tid":27369,"ts":326459264875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2004974,"id":"0xaf8a678efeb47934"},
-{"pid":27369,"tid":27369,"ts":326459264966,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2005066},
-{"pid":27369,"tid":27369,"ts":326459264997,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2005096},
-{"pid":27369,"tid":27369,"ts":326459265088,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2005188},
-{"pid":27369,"tid":27369,"ts":326459265180,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2005280},
-{"pid":27369,"tid":27369,"ts":326459265211,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005310,"id":"0xaf8a678efeb47934"},
-{"pid":27369,"tid":27369,"ts":326459265211,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1404,"tts":2005310},
-{"pid":27369,"tid":27369,"ts":326459265211,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2005310},
-{"pid":27369,"tid":27369,"ts":326459265241,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1373,"tts":2005341},
-{"pid":27369,"tid":27369,"ts":326459265241,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":85},"dur":61,"tdur":31,"tts":2005371},
-{"pid":27369,"tid":27369,"ts":326459265272,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":2005371},
-{"pid":27369,"tid":27369,"ts":326459265333,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2005432},
-{"pid":27369,"tid":27369,"ts":326459265333,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2005432,"id":"0x30000004b"},
-{"pid":27369,"tid":27369,"ts":326459265363,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2005463},
-{"pid":27369,"tid":27369,"ts":326459265363,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2005463},
-{"pid":27369,"tid":27369,"ts":326459265394,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":183,"tts":2005493},
-{"pid":27369,"tid":27369,"ts":326459265607,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2005707},
-{"pid":27369,"tid":27369,"ts":326459265638,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2005737},
-{"pid":27369,"tid":27369,"ts":326459265638,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2005737},
-{"pid":27369,"tid":27369,"ts":326459265668,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":85},"dur":31,"tdur":30,"tts":2005768},
-{"pid":27369,"tid":27369,"ts":326459265699,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":85},"dur":30,"tdur":31,"tts":2005798},
-{"pid":27369,"tid":27369,"ts":326459265729,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":85},"tts":2005829},
-{"pid":27369,"tid":27369,"ts":326459265729,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2005829},
-{"pid":27369,"tid":27369,"ts":326459265729,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2005829},
-{"pid":27369,"tid":27369,"ts":326459265760,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2005859},
-{"pid":27369,"tid":27369,"ts":326459265790,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2005890},
-{"pid":27369,"tid":27369,"ts":326459265790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2005890,"id":"0xaf8a6c82febbc614"},
-{"pid":27369,"tid":27369,"ts":326459265882,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":733,"tts":2005981},
-{"pid":27369,"tid":27369,"ts":326459265913,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":85},"dur":152,"tdur":153,"tts":2006012},
-{"pid":27369,"tid":27369,"ts":326459265913,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2006012},
-{"pid":27369,"tid":27369,"ts":326459265913,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2006012},
-{"pid":27369,"tid":27369,"ts":326459265913,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2006043},
-{"pid":27369,"tid":27369,"ts":326459265943,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2006043,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459265974,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2006073},
-{"pid":27369,"tid":27369,"ts":326459266065,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2006165},
-{"pid":27369,"tid":27369,"ts":326459266065,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":335,"tts":2006165},
-{"pid":27369,"tid":27369,"ts":326459266096,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2006195},
-{"pid":27369,"tid":27369,"ts":326459266096,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":275,"tts":2006195},
-{"pid":27369,"tid":27369,"ts":326459266096,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2006195},
-{"pid":27369,"tid":27369,"ts":326459266157,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2006256},
-{"pid":27369,"tid":27369,"ts":326459266370,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2006500,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459266431,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2006531,"id":"0x30000004b"},
-{"pid":27369,"tid":27369,"ts":326459266462,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2006561},
-{"pid":27369,"tid":27369,"ts":326459266462,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":1395},"dur":91,"tdur":92,"tts":2006561},
-{"pid":27369,"tid":27369,"ts":326459266492,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2006592},
-{"pid":27369,"tid":27369,"ts":326459266523,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2006622,"id":"0xaf8a6c83febbc614"},
-{"pid":27369,"tid":27369,"ts":326459266553,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2006653},
-{"pid":27369,"tid":27369,"ts":326459266584,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2006683},
-{"pid":27369,"tid":27369,"ts":326459266859,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2006775},
-{"pid":27369,"tid":27369,"ts":326459270460,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2007080},
-{"pid":27369,"tid":27369,"ts":326459270460,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2007080},
-{"pid":27369,"tid":27369,"ts":326459271498,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2007569},
-{"pid":27369,"tid":27369,"ts":326459271589,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2007660},
-{"pid":27369,"tid":27369,"ts":326459271711,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":367,"tdur":122,"tts":2007782},
-{"pid":27369,"tid":27369,"ts":326459263000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2007813,"id":"0x300000050"},
-{"pid":27369,"tid":27369,"ts":326459271711,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":306,"tdur":30,"tts":2007813},
-{"pid":27369,"tid":27369,"ts":326459272017,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901968},"tts":2007843,"id":"0x300000050"},
-{"pid":27369,"tid":27369,"ts":326459272047,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2007874},
-{"pid":27369,"tid":27369,"ts":326459272047,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2007874,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459272078,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2007904},
-{"pid":27369,"tid":27369,"ts":326459272352,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2008179},
-{"pid":27369,"tid":27369,"ts":326459272383,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":2008209},
-{"pid":27369,"tid":27369,"ts":326459272413,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459268193},"dur":92,"tdur":92,"tts":2008240},
-{"pid":27369,"tid":27369,"ts":326459272444,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2008271},
-{"pid":27369,"tid":27369,"ts":326459272474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008301,"id":"0xaf8a6c9cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459272566,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2008393},
-{"pid":27369,"tid":27369,"ts":326459272688,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2008484},
-{"pid":27369,"tid":27369,"ts":326459272841,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2008606},
-{"pid":27369,"tid":27369,"ts":326459272871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2008637,"id":"0xaf8a678ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326459272871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":92,"tts":2008667},
-{"pid":27369,"tid":27369,"ts":326459272932,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2008698},
-{"pid":27369,"tid":27369,"ts":326459272963,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2008728},
-{"pid":27369,"tid":27369,"ts":326459273085,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2008850},
-{"pid":27369,"tid":27369,"ts":326459282882,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2009156},
-{"pid":27369,"tid":27369,"ts":326459282882,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2009156,"id":"0xaf8a6788feb47934"},
-{"pid":27369,"tid":27369,"ts":326459282912,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":305,"tts":2009186},
-{"pid":27369,"tid":27369,"ts":326459282912,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":306,"tdur":305,"tts":2009186},
-{"pid":27369,"tid":27369,"ts":326459282973,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2009247,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459282973,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2009247,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459283004,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":213,"tts":2009278},
-{"pid":27369,"tid":27369,"ts":326459283004,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2009278},
-{"pid":27369,"tid":27369,"ts":326459283034,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2009308,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459283065,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2009339},
-{"pid":27369,"tid":27369,"ts":326459283065,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2009339},
-{"pid":27369,"tid":27369,"ts":326459283095,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":2009369},
-{"pid":27369,"tid":27369,"ts":326459283126,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2009400,"id":"0xaf8a6c9dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459283157,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2009430,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459283187,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2009461,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459283279,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2009552},
-{"pid":27369,"tid":27369,"ts":326459286788,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2009858},
-{"pid":27369,"tid":27369,"ts":326459287216,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2010254},
-{"pid":27369,"tid":27369,"ts":326459287307,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2010346},
-{"pid":27369,"tid":27369,"ts":326459287399,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":62,"tts":2010437},
-{"pid":27369,"tid":27369,"ts":326459279000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2010468,"id":"0x300000051"},
-{"pid":27369,"tid":27369,"ts":326459287429,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901969},"tts":2010468,"id":"0x300000051"},
-{"pid":27369,"tid":27369,"ts":326459287429,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":0,"tts":2010499},
-{"pid":27369,"tid":27369,"ts":326459287460,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2010499,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459287490,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2010529},
-{"pid":27369,"tid":27369,"ts":326459287704,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2010743},
-{"pid":27369,"tid":27369,"ts":326459287765,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":152,"tts":2010804},
-{"pid":27369,"tid":27369,"ts":326459287765,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459284874},"dur":122,"tdur":122,"tts":2010804},
-{"pid":27369,"tid":27369,"ts":326459287796,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2010834},
-{"pid":27369,"tid":27369,"ts":326459287826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2010865,"id":"0xaf8a6c9efebbc614"},
-{"pid":27369,"tid":27369,"ts":326459287918,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2010987},
-{"pid":27369,"tid":27369,"ts":326459288040,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2011078},
-{"pid":27369,"tid":27369,"ts":326459288131,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2011170},
-{"pid":27369,"tid":27369,"ts":326459288162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2011200,"id":"0xaf8a6789feb47934"},
-{"pid":27369,"tid":27369,"ts":326459288162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2011200},
-{"pid":27369,"tid":27369,"ts":326459288192,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":2011231},
-{"pid":27369,"tid":27369,"ts":326459288223,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":366,"tts":2011262},
-{"pid":27369,"tid":27369,"ts":326459288437,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2011475},
-{"pid":27369,"tid":27369,"ts":326459288437,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2011475},
-{"pid":27369,"tid":27369,"ts":326459288467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2011506,"id":"0xaf8a678afeb47934"},
-{"pid":27369,"tid":27369,"ts":326459288528,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2011597},
-{"pid":27369,"tid":27369,"ts":326459288589,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2011628},
-{"pid":27369,"tid":27369,"ts":326459288681,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2011719},
-{"pid":27369,"tid":27369,"ts":326459288803,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2011841},
-{"pid":27369,"tid":27369,"ts":326459288833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2011872,"id":"0xaf8a678afeb47934"},
-{"pid":27369,"tid":27369,"ts":326459288833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1984,"tdur":1709,"tts":2011872},
-{"pid":27369,"tid":27369,"ts":326459288864,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2011902},
-{"pid":27369,"tid":27369,"ts":326459288894,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1923,"tdur":1648,"tts":2011933},
-{"pid":27369,"tid":27369,"ts":326459288925,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":86},"dur":61,"tdur":62,"tts":2011963},
-{"pid":27369,"tid":27369,"ts":326459288925,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":62,"tts":2011963},
-{"pid":27369,"tid":27369,"ts":326459289016,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2012055},
-{"pid":27369,"tid":27369,"ts":326459289016,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2012055,"id":"0x30000004d"},
-{"pid":27369,"tid":27369,"ts":326459289047,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":2012086},
-{"pid":27369,"tid":27369,"ts":326459289077,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2012116},
-{"pid":27369,"tid":27369,"ts":326459289108,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":2012147},
-{"pid":27369,"tid":27369,"ts":326459289322,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2012360},
-{"pid":27369,"tid":27369,"ts":326459289352,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2012391},
-{"pid":27369,"tid":27369,"ts":326459289352,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":153,"tdur":122,"tts":2012421},
-{"pid":27369,"tid":27369,"ts":326459289383,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":86},"dur":30,"tdur":31,"tts":2012421},
-{"pid":27369,"tid":27369,"ts":326459289413,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":86},"dur":31,"tdur":30,"tts":2012452},
-{"pid":27369,"tid":27369,"ts":326459289444,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":86},"tts":2012482},
-{"pid":27369,"tid":27369,"ts":326459289474,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2012513},
-{"pid":27369,"tid":27369,"ts":326459289474,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2012513},
-{"pid":27369,"tid":27369,"ts":326459289474,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":2012513},
-{"pid":27369,"tid":27369,"ts":326459289535,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2012574},
-{"pid":27369,"tid":27369,"ts":326459289535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2012574,"id":"0xaf8a6c9ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459289627,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1160,"tdur":886,"tts":2012665},
-{"pid":27369,"tid":27369,"ts":326459289657,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":86},"dur":245,"tdur":244,"tts":2012696},
-{"pid":27369,"tid":27369,"ts":326459289657,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2012696},
-{"pid":27369,"tid":27369,"ts":326459289657,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2012696},
-{"pid":27369,"tid":27369,"ts":326459289688,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2012726},
-{"pid":27369,"tid":27369,"ts":326459289718,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2012757,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459289718,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2012757},
-{"pid":27369,"tid":27369,"ts":326459289902,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2012940},
-{"pid":27369,"tid":27369,"ts":326459289932,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":335,"tts":2012971},
-{"pid":27369,"tid":27369,"ts":326459289932,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2012971},
-{"pid":27369,"tid":27369,"ts":326459289932,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2012971},
-{"pid":27369,"tid":27369,"ts":326459289963,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2013001},
-{"pid":27369,"tid":27369,"ts":326459289993,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2013032},
-{"pid":27369,"tid":27369,"ts":326459290268,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2013306,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459290329,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2013367,"id":"0x30000004d"},
-{"pid":27369,"tid":27369,"ts":326459290329,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":397,"tdur":153,"tts":2013367},
-{"pid":27369,"tid":27369,"ts":326459290329,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":2013367},
-{"pid":27369,"tid":27369,"ts":326459290603,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4057},"dur":92,"tdur":91,"tts":2013398},
-{"pid":27369,"tid":27369,"ts":326459290634,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2013428},
-{"pid":27369,"tid":27369,"ts":326459290665,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2013459,"id":"0xaf8a6c98febbc614"},
-{"pid":27369,"tid":27369,"ts":326459290695,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2013489},
-{"pid":27369,"tid":27369,"ts":326459290726,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2013520},
-{"pid":27369,"tid":27369,"ts":326459290939,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2013642},
-{"pid":27369,"tid":27369,"ts":326459296128,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2013978},
-{"pid":27369,"tid":27369,"ts":326459296158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2014008,"id":"0xaf8a678bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459296158,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2014008},
-{"pid":27369,"tid":27369,"ts":326459296219,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2014069},
-{"pid":27369,"tid":27369,"ts":326459296219,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2014069},
-{"pid":27369,"tid":27369,"ts":326459296341,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2014191},
-{"pid":27369,"tid":27369,"ts":326459302140,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2014436},
-{"pid":27369,"tid":27369,"ts":326459302629,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2014924},
-{"pid":27369,"tid":27369,"ts":326459302690,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":92,"tts":2014985},
-{"pid":27369,"tid":27369,"ts":326459302812,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":2015107},
-{"pid":27369,"tid":27369,"ts":326459296000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2015168,"id":"0x300000052"},
-{"pid":27369,"tid":27369,"ts":326459302873,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901970},"tts":2015168,"id":"0x300000052"},
-{"pid":27369,"tid":27369,"ts":326459302903,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2015199},
-{"pid":27369,"tid":27369,"ts":326459302903,"ph":"I","cat":"input","name":"TouchEventQueue::MoveCoalesced","args":{},"tts":2015199,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459302964,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2015260},
-{"pid":27369,"tid":27369,"ts":326459303239,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2015534},
-{"pid":27369,"tid":27369,"ts":326459303300,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":336,"tdur":214,"tts":2015595},
-{"pid":27369,"tid":27369,"ts":326459303300,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459301556},"dur":305,"tdur":153,"tts":2015595},
-{"pid":27369,"tid":27369,"ts":326459303330,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":245,"tdur":122,"tts":2015626},
-{"pid":27369,"tid":27369,"ts":326459303544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2015717,"id":"0xaf8a6c99febbc614"},
-{"pid":27369,"tid":27369,"ts":326459303636,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2015809},
-{"pid":27369,"tid":27369,"ts":326459303788,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2015962},
-{"pid":27369,"tid":27369,"ts":326459307054,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2016175},
-{"pid":27369,"tid":27369,"ts":326459307084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2016206,"id":"0xaf8a6784feb47934"},
-{"pid":27369,"tid":27369,"ts":326459307084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":305,"tts":2016206},
-{"pid":27369,"tid":27369,"ts":326459307115,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":2016236},
-{"pid":27369,"tid":27369,"ts":326459307146,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2016297,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459307176,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2016297,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459307207,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2016328},
-{"pid":27369,"tid":27369,"ts":326459307207,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2016328},
-{"pid":27369,"tid":27369,"ts":326459307237,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2016358,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459307237,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2016358},
-{"pid":27369,"tid":27369,"ts":326459307268,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":91,"tts":2016389},
-{"pid":27369,"tid":27369,"ts":326459307298,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2016419},
-{"pid":27369,"tid":27369,"ts":326459307298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2016419,"id":"0xaf8a6c9afebbc614"},
-{"pid":27369,"tid":27369,"ts":326459307359,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2016480,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459307359,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2016480,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459307451,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2016572},
-{"pid":27369,"tid":27369,"ts":326459310686,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2016755},
-{"pid":27369,"tid":27369,"ts":326459310716,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2016786,"id":"0xaf8a6785feb47934"},
-{"pid":27369,"tid":27369,"ts":326459310716,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":489,"tdur":488,"tts":2016786},
-{"pid":27369,"tid":27369,"ts":326459310716,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":489,"tdur":488,"tts":2016786},
-{"pid":27369,"tid":27369,"ts":326459310777,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":428,"tdur":427,"tts":2016847},
-{"pid":27369,"tid":27369,"ts":326459310991,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2017060},
-{"pid":27369,"tid":27369,"ts":326459310991,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2017060},
-{"pid":27369,"tid":27369,"ts":326459311022,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2017091,"id":"0xaf8a6786feb47934"},
-{"pid":27369,"tid":27369,"ts":326459311113,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2017182},
-{"pid":27369,"tid":27369,"ts":326459311144,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2017213},
-{"pid":27369,"tid":27369,"ts":326459311266,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2017366},
-{"pid":27369,"tid":27369,"ts":326459311388,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2017457},
-{"pid":27369,"tid":27369,"ts":326459311388,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2017457,"id":"0xaf8a6786feb47934"},
-{"pid":27369,"tid":27369,"ts":326459311418,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1954,"tdur":1648,"tts":2017488},
-{"pid":27369,"tid":27369,"ts":326459311418,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2017488},
-{"pid":27369,"tid":27369,"ts":326459311449,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1892,"tdur":1587,"tts":2017518},
-{"pid":27369,"tid":27369,"ts":326459311479,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":87},"dur":61,"tdur":61,"tts":2017549},
-{"pid":27369,"tid":27369,"ts":326459311479,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2017549},
-{"pid":27369,"tid":27369,"ts":326459311540,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":2017610},
-{"pid":27369,"tid":27369,"ts":326459311571,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2017640,"id":"0x30000004e"},
-{"pid":27369,"tid":27369,"ts":326459311571,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2017640},
-{"pid":27369,"tid":27369,"ts":326459311602,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2017671},
-{"pid":27369,"tid":27369,"ts":326459311632,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":2017701},
-{"pid":27369,"tid":27369,"ts":326459311876,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2017945},
-{"pid":27369,"tid":27369,"ts":326459311876,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2017945},
-{"pid":27369,"tid":27369,"ts":326459311907,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":274,"tdur":153,"tts":2017976},
-{"pid":27369,"tid":27369,"ts":326459311907,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":87},"dur":30,"tdur":31,"tts":2017976},
-{"pid":27369,"tid":27369,"ts":326459311937,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":87},"dur":61,"tdur":61,"tts":2018007},
-{"pid":27369,"tid":27369,"ts":326459311998,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":87},"tts":2018068},
-{"pid":27369,"tid":27369,"ts":326459311998,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2018068},
-{"pid":27369,"tid":27407,"ts":326459310442,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1443979},
-{"pid":27369,"tid":27407,"ts":326459310442,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1443979,"id":"0xccc44b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459310503,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1444040,"id":"0xaf8a6785feb47934"},
-{"pid":27369,"tid":27407,"ts":326459312273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1444193,"id":"0xaf8a6c9bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459312303,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1444224},
-{"pid":27369,"tid":27407,"ts":326459312303,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1444224,"id":"0xba44da02"},
-{"pid":27369,"tid":27407,"ts":326459313311,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1444376,"id":"0xaf8a6c94febbc614"},
-{"pid":27369,"tid":27407,"ts":326459313311,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1444376},
-{"pid":27369,"tid":27407,"ts":326459313311,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1444376,"id":"0xba44db02"},
-{"pid":27369,"tid":27407,"ts":326459317370,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1444529},
-{"pid":27369,"tid":27407,"ts":326459317400,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":122,"tts":1444559},
-{"pid":27369,"tid":27407,"ts":326459317400,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1444559,"id":"0xc4c16002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459317431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1444590,"id":"0xaf8a6787feb47934"},
-{"pid":27369,"tid":27407,"ts":326459319964,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1444803,"id":"0xaf8a6c95febbc614"},
-{"pid":27369,"tid":27407,"ts":326459319964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1444803},
-{"pid":27369,"tid":27407,"ts":326459319995,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1444834,"id":"0xba44dc02"},
-{"pid":27369,"tid":27407,"ts":326459321673,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1444987},
-{"pid":27369,"tid":27407,"ts":326459321704,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":1445017},
-{"pid":27369,"tid":27407,"ts":326459321734,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1445048,"id":"0xccc44c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459321734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1445048,"id":"0xaf8a6780feb47934"},
-{"pid":27369,"tid":27407,"ts":326459322497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1445261,"id":"0xaf8a6c96febbc614"},
-{"pid":27369,"tid":27407,"ts":326459322528,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1445292},
-{"pid":27369,"tid":27407,"ts":326459322528,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1445292,"id":"0xba44dd02"},
-{"pid":27369,"tid":27407,"ts":326459325610,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1445414},
-{"pid":27369,"tid":27407,"ts":326459325671,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1445475},
-{"pid":27369,"tid":27407,"ts":326459325671,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1445475,"id":"0xccc44f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459325702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1445536,"id":"0xaf8a6781feb47934"},
-{"pid":27369,"tid":27407,"ts":326459327228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1445719,"id":"0xaf8a6c97febbc614"},
-{"pid":27369,"tid":27407,"ts":326459327228,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1445719},
-{"pid":27369,"tid":27407,"ts":326459327258,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1445750,"id":"0xba44de02"},
-{"pid":27369,"tid":27407,"ts":326459327930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1445872,"id":"0xaf8a6c90febbc614"},
-{"pid":27369,"tid":27407,"ts":326459327930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1445872},
-{"pid":27369,"tid":27407,"ts":326459327960,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1445902,"id":"0xba44df02"},
-{"pid":27369,"tid":27407,"ts":326459332020,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1445994},
-{"pid":27369,"tid":27407,"ts":326459332050,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1446024},
-{"pid":27369,"tid":27407,"ts":326459332081,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1446055,"id":"0xc4c16302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459332081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1446085,"id":"0xaf8a6783feb47934"},
-{"pid":27369,"tid":27407,"ts":326459337544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1446238,"id":"0xaf8a6c91febbc614"},
-{"pid":27369,"tid":27407,"ts":326459337574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1446268},
-{"pid":27369,"tid":27407,"ts":326459337605,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1446299,"id":"0xba44e002"},
-{"pid":27369,"tid":27407,"ts":326459337910,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":519,"tdur":519,"tts":1446390},
-{"pid":27369,"tid":27407,"ts":326459337941,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":28,"line":144},"dur":305,"tdur":274,"tts":1446452},
-{"pid":27369,"tid":27407,"ts":326459337941,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":61,"tts":1446452},
-{"pid":27369,"tid":27407,"ts":326459338032,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1446513,"id":"0xccc45202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459338124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1446604,"id":"0xaf8a679cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459338276,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":85,"line":61},"dur":92,"tdur":61,"tts":1446757},
-{"pid":27369,"tid":27407,"ts":326459338276,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1446757,"id":"0xccc45002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459338307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1446787,"id":"0xaf8a679dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459338368,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1446848},
-{"pid":27369,"tid":27407,"ts":326459338368,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1446848,"id":"0xccc45102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459338368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1446879,"id":"0xaf8a679efeb47934"},
-{"pid":27369,"tid":27407,"ts":326459339467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1447001,"id":"0xaf8a6c92febbc614"},
-{"pid":27369,"tid":27407,"ts":326459339467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1447001},
-{"pid":27369,"tid":27407,"ts":326459339467,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1447031,"id":"0xba44e102"},
-{"pid":27369,"tid":27407,"ts":326459341328,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":275,"tdur":275,"tts":1447123},
-{"pid":27369,"tid":27407,"ts":326459341389,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":214,"tdur":183,"tts":1447184},
-{"pid":27369,"tid":27407,"ts":326459341389,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1447215,"id":"0xccc45402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459341450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1447245,"id":"0xaf8a679ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326459344441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1447489,"id":"0xaf8a6c93febbc614"},
-{"pid":27369,"tid":27407,"ts":326459344441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1447489},
-{"pid":27369,"tid":27407,"ts":326459344441,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1447489,"id":"0xba44e202"},
-{"pid":27369,"tid":27407,"ts":326459345174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1447611,"id":"0xaf8a6cacfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459345204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1447642},
-{"pid":27369,"tid":27407,"ts":326459345204,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1447642,"id":"0xba44e302"},
-{"pid":27369,"tid":27369,"ts":326459311998,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":61,"tdur":30,"tts":2018068},
-{"pid":27369,"tid":27369,"ts":326459312059,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":92,"tdur":0,"tts":2018098},
-{"pid":27369,"tid":27369,"ts":326459312181,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2018129},
-{"pid":27369,"tid":27369,"ts":326459312212,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2018159,"id":"0xaf8a6c9bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459312303,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1038,"tdur":854,"tts":2018251},
-{"pid":27369,"tid":27369,"ts":326459312303,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":87},"dur":458,"tdur":274,"tts":2018251},
-{"pid":27369,"tid":27369,"ts":326459312334,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":2018281},
-{"pid":27369,"tid":27369,"ts":326459312334,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":244,"tdur":61,"tts":2018281},
-{"pid":27369,"tid":27369,"ts":326459312334,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":2018281},
-{"pid":27369,"tid":27369,"ts":326459312548,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2018312},
-{"pid":27369,"tid":27369,"ts":326459312578,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2018342,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459312609,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2018373},
-{"pid":27369,"tid":27369,"ts":326459312761,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2018525},
-{"pid":27369,"tid":27369,"ts":326459312792,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2018556},
-{"pid":27369,"tid":27369,"ts":326459312792,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2018556},
-{"pid":27369,"tid":27369,"ts":326459312792,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":275,"tts":2018556},
-{"pid":27369,"tid":27369,"ts":326459312822,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2018586},
-{"pid":27369,"tid":27369,"ts":326459312853,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":214,"tts":2018617},
-{"pid":27369,"tid":27369,"ts":326459313097,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2018861,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459313158,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2018922,"id":"0x30000004e"},
-{"pid":27369,"tid":27369,"ts":326459313158,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2018922},
-{"pid":27369,"tid":27369,"ts":326459313189,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6719},"dur":91,"tdur":91,"tts":2018953},
-{"pid":27369,"tid":27369,"ts":326459313219,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2018983},
-{"pid":27369,"tid":27369,"ts":326459313219,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2018983,"id":"0xaf8a6c94febbc614"},
-{"pid":27369,"tid":27369,"ts":326459313280,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2019044},
-{"pid":27369,"tid":27369,"ts":326459313311,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2019075},
-{"pid":27369,"tid":27369,"ts":326459313433,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2019197},
-{"pid":27369,"tid":27369,"ts":326459317645,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2019410},
-{"pid":27369,"tid":27369,"ts":326459317675,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2019441,"id":"0xaf8a6787feb47934"},
-{"pid":27369,"tid":27369,"ts":326459317675,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2019441},
-{"pid":27369,"tid":27369,"ts":326459317706,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2019471},
-{"pid":27369,"tid":27369,"ts":326459317736,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2019502},
-{"pid":27369,"tid":27369,"ts":326459317797,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2019563},
-{"pid":27369,"tid":27369,"ts":326459318682,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2019807},
-{"pid":27369,"tid":27369,"ts":326459319140,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2020265},
-{"pid":27369,"tid":27369,"ts":326459319201,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2020326},
-{"pid":27369,"tid":27369,"ts":326459319323,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":153,"tdur":122,"tts":2020448},
-{"pid":27369,"tid":27369,"ts":326459319323,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2020448},
-{"pid":27369,"tid":27369,"ts":326459313000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2020509,"id":"0x300000053"},
-{"pid":27369,"tid":27369,"ts":326459319415,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901971},"tts":2020509,"id":"0x300000053"},
-{"pid":27369,"tid":27369,"ts":326459319445,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2020540},
-{"pid":27369,"tid":27369,"ts":326459319445,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2020540,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459319506,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2020601},
-{"pid":27369,"tid":27369,"ts":326459319750,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2020875},
-{"pid":27369,"tid":27369,"ts":326459319811,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":519,"tdur":244,"tts":2020906},
-{"pid":27369,"tid":27369,"ts":326459319842,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459318237},"dur":92,"tdur":92,"tts":2020936},
-{"pid":27369,"tid":27369,"ts":326459319842,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2020936},
-{"pid":27369,"tid":27369,"ts":326459319873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2020967,"id":"0xaf8a6c95febbc614"},
-{"pid":27369,"tid":27369,"ts":326459320330,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2021150},
-{"pid":27369,"tid":27369,"ts":326459320452,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2021272},
-{"pid":27369,"tid":27369,"ts":326459321978,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2021486},
-{"pid":27369,"tid":27369,"ts":326459322009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2021486,"id":"0xaf8a6780feb47934"},
-{"pid":27369,"tid":27369,"ts":326459322009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":549,"tdur":428,"tts":2021516},
-{"pid":27369,"tid":27369,"ts":326459322039,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":489,"tdur":397,"tts":2021516},
-{"pid":27369,"tid":27369,"ts":326459322101,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2021577,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459322101,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2021577,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459322131,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":397,"tdur":305,"tts":2021608},
-{"pid":27369,"tid":27369,"ts":326459322131,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":397,"tdur":305,"tts":2021608},
-{"pid":27369,"tid":27369,"ts":326459322162,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2021638,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459322223,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":305,"tdur":214,"tts":2021699},
-{"pid":27369,"tid":27369,"ts":326459322223,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":305,"tdur":214,"tts":2021699},
-{"pid":27369,"tid":27369,"ts":326459322314,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":183,"tdur":91,"tts":2021761},
-{"pid":27369,"tid":27369,"ts":326459322314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2021761,"id":"0xaf8a6c96febbc614"},
-{"pid":27369,"tid":27369,"ts":326459322314,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2021761},
-{"pid":27369,"tid":27369,"ts":326459322497,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2021883,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459322497,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2021883,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459322802,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2022005},
-{"pid":27369,"tid":27369,"ts":326459325916,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2022249},
-{"pid":27369,"tid":27369,"ts":326459325946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2022279,"id":"0xaf8a6781feb47934"},
-{"pid":27369,"tid":27369,"ts":326459325946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":428,"tts":2022279},
-{"pid":27369,"tid":27369,"ts":326459325977,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":397,"tts":2022310},
-{"pid":27369,"tid":27369,"ts":326459326007,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":367,"tts":2022340},
-{"pid":27369,"tid":27369,"ts":326459326190,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2022524},
-{"pid":27369,"tid":27369,"ts":326459326190,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2022524},
-{"pid":27369,"tid":27369,"ts":326459326221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2022554,"id":"0xaf8a6782feb47934"},
-{"pid":27369,"tid":27369,"ts":326459326312,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2022646},
-{"pid":27369,"tid":27369,"ts":326459326343,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2022676},
-{"pid":27369,"tid":27369,"ts":326459326434,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2022768},
-{"pid":27369,"tid":27369,"ts":326459326526,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2022859},
-{"pid":27369,"tid":27369,"ts":326459326526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2022890,"id":"0xaf8a6782feb47934"},
-{"pid":27369,"tid":27369,"ts":326459326556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1435,"tdur":1434,"tts":2022890},
-{"pid":27369,"tid":27369,"ts":326459326556,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2022890},
-{"pid":27369,"tid":27369,"ts":326459326587,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1374,"tts":2022920},
-{"pid":27369,"tid":27369,"ts":326459326587,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":88},"dur":61,"tdur":30,"tts":2022951},
-{"pid":27369,"tid":27369,"ts":326459326618,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2022951},
-{"pid":27369,"tid":27369,"ts":326459326679,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2023012},
-{"pid":27369,"tid":27369,"ts":326459326679,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2023012,"id":"0x300000050"},
-{"pid":27369,"tid":27369,"ts":326459326709,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2023042},
-{"pid":27369,"tid":27369,"ts":326459326709,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2023042},
-{"pid":27369,"tid":27369,"ts":326459326740,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":2023073},
-{"pid":27369,"tid":27369,"ts":326459326953,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2023287},
-{"pid":27369,"tid":27369,"ts":326459326984,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2023317},
-{"pid":27369,"tid":27369,"ts":326459326984,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2023317},
-{"pid":27369,"tid":27369,"ts":326459327014,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":88},"dur":31,"tdur":30,"tts":2023348},
-{"pid":27369,"tid":27369,"ts":326459327045,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":88},"dur":30,"tdur":0,"tts":2023378},
-{"pid":27369,"tid":27369,"ts":326459327075,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":88},"tts":2023409},
-{"pid":27369,"tid":27369,"ts":326459327075,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2023409},
-{"pid":27369,"tid":27369,"ts":326459327075,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2023409},
-{"pid":27369,"tid":27369,"ts":326459327106,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2023439},
-{"pid":27369,"tid":27369,"ts":326459327106,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":30,"tts":2023470},
-{"pid":27369,"tid":27369,"ts":326459327136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2023470,"id":"0xaf8a6c97febbc614"},
-{"pid":27369,"tid":27369,"ts":326459327228,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":733,"tts":2023561},
-{"pid":27369,"tid":27369,"ts":326459327228,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":88},"dur":183,"tdur":152,"tts":2023592},
-{"pid":27369,"tid":27369,"ts":326459327258,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2023592},
-{"pid":27369,"tid":27369,"ts":326459327258,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2023592},
-{"pid":27369,"tid":27369,"ts":326459327258,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2023592},
-{"pid":27369,"tid":27369,"ts":326459327289,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2023622,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459327319,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2023653},
-{"pid":27369,"tid":27369,"ts":326459327411,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2023744},
-{"pid":27369,"tid":27369,"ts":326459327442,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2023775},
-{"pid":27369,"tid":27369,"ts":326459327442,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2023775},
-{"pid":27369,"tid":27369,"ts":326459327442,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":275,"tts":2023775},
-{"pid":27369,"tid":27369,"ts":326459327472,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2023805},
-{"pid":27369,"tid":27369,"ts":326459327503,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2023836},
-{"pid":27369,"tid":27369,"ts":326459327747,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2024080,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459327777,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2024141,"id":"0x300000050"},
-{"pid":27369,"tid":27369,"ts":326459327808,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":2024141},
-{"pid":27369,"tid":27369,"ts":326459327808,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9381},"dur":91,"tdur":61,"tts":2024172},
-{"pid":27369,"tid":27369,"ts":326459327838,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2024172},
-{"pid":27369,"tid":27369,"ts":326459327869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2024202,"id":"0xaf8a6c90febbc614"},
-{"pid":27369,"tid":27369,"ts":326459327899,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":0,"tts":2024263},
-{"pid":27369,"tid":27369,"ts":326459327930,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2024263},
-{"pid":27369,"tid":27369,"ts":326459328052,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2024385},
-{"pid":27369,"tid":27369,"ts":326459332294,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2024568},
-{"pid":27369,"tid":27369,"ts":326459332325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2024599,"id":"0xaf8a6783feb47934"},
-{"pid":27369,"tid":27369,"ts":326459332325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2024599},
-{"pid":27369,"tid":27369,"ts":326459332386,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2024660},
-{"pid":27369,"tid":27369,"ts":326459332386,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2024660},
-{"pid":27369,"tid":27369,"ts":326459332477,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2024752},
-{"pid":27369,"tid":27369,"ts":326459332477,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":30,"tts":2024752},
-{"pid":27369,"tid":27369,"ts":326459335377,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2025087},
-{"pid":27369,"tid":27369,"ts":326459335865,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2025515},
-{"pid":27369,"tid":27369,"ts":326459335926,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2025576},
-{"pid":27369,"tid":27369,"ts":326459336018,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":2025667},
-{"pid":27369,"tid":27369,"ts":326459329000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2025698,"id":"0x300000054"},
-{"pid":27369,"tid":27369,"ts":326459336048,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901972},"tts":2025698,"id":"0x300000054"},
-{"pid":27369,"tid":27369,"ts":326459336079,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2025728},
-{"pid":27369,"tid":27369,"ts":326459336079,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2025728,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459336109,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2025759},
-{"pid":27369,"tid":27369,"ts":326459336994,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2026064},
-{"pid":27369,"tid":27369,"ts":326459337147,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":2026125},
-{"pid":27369,"tid":27369,"ts":326459337147,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459334919},"dur":122,"tdur":122,"tts":2026125},
-{"pid":27369,"tid":27369,"ts":326459337178,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2026155},
-{"pid":27369,"tid":27369,"ts":326459337208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2026186,"id":"0xaf8a6c91febbc614"},
-{"pid":27369,"tid":27369,"ts":326459337300,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2026278},
-{"pid":27369,"tid":27369,"ts":326459337452,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2026430},
-{"pid":27369,"tid":27369,"ts":326459338276,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2026613},
-{"pid":27369,"tid":27369,"ts":326459338368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2026644,"id":"0xaf8a679cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459338368,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/histogram_controller.cc","src_func":"OnHistogramDataCollected"},"dur":336,"tdur":305,"tts":2026674},
-{"pid":27369,"tid":27369,"ts":326459338795,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2027071},
-{"pid":27369,"tid":27369,"ts":326459338887,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2027193},
-{"pid":27369,"tid":27369,"ts":326459338917,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2027193,"id":"0xaf8a679dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459338917,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":92,"tts":2027193},
-{"pid":27369,"tid":27369,"ts":326459338948,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":85,"line":61},"dur":61,"tdur":61,"tts":2027224},
-{"pid":27369,"tid":27369,"ts":326459339070,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2027346},
-{"pid":27369,"tid":27369,"ts":326459339161,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2027437},
-{"pid":27369,"tid":27369,"ts":326459339192,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2027468,"id":"0xaf8a679efeb47934"},
-{"pid":27369,"tid":27369,"ts":326459339192,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":2027468},
-{"pid":27369,"tid":27369,"ts":326459339192,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":275,"tts":2027468},
-{"pid":27369,"tid":27369,"ts":326459339253,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2027529,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459339253,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2027529,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459339253,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":214,"tts":2027529},
-{"pid":27369,"tid":27369,"ts":326459339283,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":184,"tdur":184,"tts":2027559},
-{"pid":27369,"tid":27369,"ts":326459339283,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2027590,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459339314,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2027590},
-{"pid":27369,"tid":27369,"ts":326459339314,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2027590},
-{"pid":27369,"tid":27369,"ts":326459339345,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2027620},
-{"pid":27369,"tid":27369,"ts":326459339375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2027651,"id":"0xaf8a6c92febbc614"},
-{"pid":27369,"tid":27369,"ts":326459339436,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2027712,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459339436,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2027712,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459339741,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2027865},
-{"pid":27369,"tid":27369,"ts":326459341725,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2028048},
-{"pid":27369,"tid":27369,"ts":326459341756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2028078,"id":"0xaf8a679ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326459341756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":428,"tts":2028078},
-{"pid":27369,"tid":27369,"ts":326459341756,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":428,"tts":2028078},
-{"pid":27369,"tid":27369,"ts":326459341817,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":367,"tts":2028139},
-{"pid":27369,"tid":27369,"ts":326459342000,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":2028322},
-{"pid":27369,"tid":27369,"ts":326459342000,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2028322},
-{"pid":27369,"tid":27369,"ts":326459342030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2028353,"id":"0xaf8a6798feb47934"},
-{"pid":27369,"tid":27369,"ts":326459342122,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2028444},
-{"pid":27369,"tid":27369,"ts":326459342152,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2028475},
-{"pid":27369,"tid":27369,"ts":326459342244,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2028567},
-{"pid":27369,"tid":27369,"ts":326459343709,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2028719},
-{"pid":27369,"tid":27369,"ts":326459343739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2028750,"id":"0xaf8a6798feb47934"},
-{"pid":27369,"tid":27369,"ts":326459343739,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1740,"tdur":1495,"tts":2028750},
-{"pid":27369,"tid":27369,"ts":326459343739,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2028750},
-{"pid":27369,"tid":27369,"ts":326459343770,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1465,"tdur":1465,"tts":2028780},
-{"pid":27369,"tid":27369,"ts":326459343800,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":89},"dur":62,"tdur":61,"tts":2028811},
-{"pid":27369,"tid":27369,"ts":326459343800,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":62,"tdur":61,"tts":2028811},
-{"pid":27369,"tid":27369,"ts":326459343862,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2028872},
-{"pid":27369,"tid":27369,"ts":326459343862,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2028872,"id":"0x300000051"},
-{"pid":27369,"tid":27369,"ts":326459343892,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2028902},
-{"pid":27369,"tid":27369,"ts":326459343892,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2028902},
-{"pid":27369,"tid":27369,"ts":326459343923,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":183,"tts":2028963},
-{"pid":27369,"tid":27369,"ts":326459344136,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2029177},
-{"pid":27369,"tid":27369,"ts":326459344167,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":2029207},
-{"pid":27369,"tid":27369,"ts":326459344197,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":2029207},
-{"pid":27369,"tid":27369,"ts":326459344197,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":89},"dur":31,"tdur":31,"tts":2029207},
-{"pid":27369,"tid":27369,"ts":326459344258,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":89},"dur":0,"tdur":0,"tts":2029269},
-{"pid":27369,"tid":27369,"ts":326459344258,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":89},"tts":2029269},
-{"pid":27369,"tid":27369,"ts":326459344289,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2029299},
-{"pid":27369,"tid":27369,"ts":326459344289,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2029299},
-{"pid":27369,"tid":27369,"ts":326459344289,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":2029299},
-{"pid":27369,"tid":27369,"ts":326459344319,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2029330},
-{"pid":27369,"tid":27369,"ts":326459344350,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2029360,"id":"0xaf8a6c93febbc614"},
-{"pid":27369,"tid":27369,"ts":326459344441,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":2029452},
-{"pid":27369,"tid":27369,"ts":326459344441,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":89},"dur":214,"tdur":213,"tts":2029452},
-{"pid":27369,"tid":27369,"ts":326459344472,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":2029482},
-{"pid":27369,"tid":27369,"ts":326459344472,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2029482},
-{"pid":27369,"tid":27369,"ts":326459344472,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2029482},
-{"pid":27369,"tid":27369,"ts":326459344502,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2029513,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459344502,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2029543},{"pid":27369,"tid":27369,"ts":326459344655,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2029665},
-{"pid":27369,"tid":27369,"ts":326459344686,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2029696},
-{"pid":27369,"tid":27369,"ts":326459344686,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2029696},
-{"pid":27369,"tid":27369,"ts":326459344716,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2029726},
-{"pid":27369,"tid":27369,"ts":326459344716,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2029726},
-{"pid":27369,"tid":27369,"ts":326459344777,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":153,"tts":2029787},
-{"pid":27369,"tid":27369,"ts":326459344991,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2030001,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459345052,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2030062,"id":"0x300000051"},
-{"pid":27369,"tid":27369,"ts":326459345052,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":2030062},
-{"pid":27369,"tid":27369,"ts":326459345082,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12043},"dur":92,"tdur":91,"tts":2030093},
-{"pid":27369,"tid":27369,"ts":326459345082,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":2030123},
-{"pid":27369,"tid":27369,"ts":326459345113,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2030123,"id":"0xaf8a6cacfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459345174,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2030184},
-{"pid":27369,"tid":27369,"ts":326459345174,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2030184},
-{"pid":27369,"tid":27369,"ts":326459345540,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2030337},
-{"pid":27369,"tid":27369,"ts":326459349752,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2030550},
-{"pid":27369,"tid":27369,"ts":326459349782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2030550,"id":"0xaf8a6799feb47934"},
-{"pid":27369,"tid":27369,"ts":326459349782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":2030581},
-{"pid":27369,"tid":27369,"ts":326459349844,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2030611},
-{"pid":27369,"tid":27369,"ts":326459349844,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2030611},
-{"pid":27369,"tid":27369,"ts":326459349935,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2030703},
-{"pid":27369,"tid":27369,"ts":326459352255,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2030947},
-{"pid":27369,"tid":27369,"ts":326459353781,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2031435},
-{"pid":27369,"tid":27369,"ts":326459353781,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":2031435},
-{"pid":27369,"tid":27369,"ts":326459353933,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":61,"tts":2031527},
-{"pid":27369,"tid":27369,"ts":326459354055,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":2031619},
-{"pid":27369,"tid":27369,"ts":326459337000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2031649,"id":"0x300000055"},
-{"pid":27369,"tid":27369,"ts":326459354086,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901973},"tts":2031649,"id":"0x300000055"},
-{"pid":27369,"tid":27369,"ts":326459354086,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2031649},
-{"pid":27369,"tid":27369,"ts":326459354116,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2031680,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459354147,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2031710},
-{"pid":27369,"tid":27369,"ts":326459354727,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2032076},
-{"pid":27369,"tid":27369,"ts":326459354757,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":153,"tts":2032137},
-{"pid":27369,"tid":27369,"ts":326459354788,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459351601},"dur":122,"tdur":123,"tts":2032137},
-{"pid":27369,"tid":27369,"ts":326459354818,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2032168},
-{"pid":27369,"tid":27369,"ts":326459354849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2032198,"id":"0xaf8a6cadfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459354940,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2032290},
-{"pid":27369,"tid":27369,"ts":326459355124,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2032473},
-{"pid":27369,"tid":27369,"ts":326459355246,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2032595},
-{"pid":27369,"tid":27369,"ts":326459355246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2032595,"id":"0xaf8a679afeb47934"},
-{"pid":27369,"tid":27369,"ts":326459355276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":2032626},
-{"pid":27369,"tid":27369,"ts":326459355276,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":274,"tts":2032626},
-{"pid":27369,"tid":27369,"ts":326459355337,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2032687,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459355337,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2032687,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27407,"ts":326459349477,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":184,"tts":1447794},
-{"pid":27369,"tid":27407,"ts":326459349508,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":153,"tts":1447825},
-{"pid":27369,"tid":27407,"ts":326459349538,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1447855,"id":"0xc4c16602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459349538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1447855,"id":"0xaf8a6799feb47934"},
-{"pid":27369,"tid":27407,"ts":326459353170,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1448100},
-{"pid":27369,"tid":27407,"ts":326459353201,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1448130},
-{"pid":27369,"tid":27407,"ts":326459353201,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1448161,"id":"0xccc45602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459353231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1448161,"id":"0xaf8a679afeb47934"},
-{"pid":27369,"tid":27407,"ts":326459354910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448313,"id":"0xaf8a6cadfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459354940,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1448344},
-{"pid":27369,"tid":27407,"ts":326459354940,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1448344,"id":"0xba44e402"},
-{"pid":27369,"tid":27407,"ts":326459355520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448466,"id":"0xaf8a6caefebbc614"},
-{"pid":27369,"tid":27407,"ts":326459355551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1448496},
-{"pid":27369,"tid":27407,"ts":326459355551,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1448496,"id":"0xba44e502"},
-{"pid":27369,"tid":27407,"ts":326459358939,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":274,"tdur":244,"tts":1448649},
-{"pid":27369,"tid":27407,"ts":326459359000,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":153,"tts":1448710},
-{"pid":27369,"tid":27407,"ts":326459359000,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1448710,"id":"0xccc45902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459359061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1448771,"id":"0xaf8a679bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459363272,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1448985,"id":"0xaf8a6caffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459363272,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1448985},
-{"pid":27369,"tid":27407,"ts":326459363272,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1448985,"id":"0xba44e602"},
-{"pid":27369,"tid":27407,"ts":326459364005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1449107,"id":"0xaf8a6ca8febbc614"},
-{"pid":27369,"tid":27407,"ts":326459364036,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1449137},
-{"pid":27369,"tid":27407,"ts":326459364036,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1449137,"id":"0xba44e702"},
-{"pid":27369,"tid":27407,"ts":326459366477,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1449290},
-{"pid":27369,"tid":27407,"ts":326459366508,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":1449320},
-{"pid":27369,"tid":27407,"ts":326459366508,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1449320,"id":"0xccc45a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459366538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1449351,"id":"0xaf8a6795feb47934"},
-{"pid":27369,"tid":27407,"ts":326459368369,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1449504},
-{"pid":27369,"tid":27407,"ts":326459368400,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1449534},
-{"pid":27369,"tid":27407,"ts":326459368400,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1449534,"id":"0xc4c16902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459368430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1449565,"id":"0xaf8a6796feb47934"},
-{"pid":27369,"tid":27407,"ts":326459370414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1449748,"id":"0xaf8a6ca9febbc614"},
-{"pid":27369,"tid":27407,"ts":326459370414,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1449748},
-{"pid":27369,"tid":27407,"ts":326459370414,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1449748,"id":"0xba44e802"},
-{"pid":27369,"tid":27407,"ts":326459370781,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1449900,"id":"0xaf8a6caafebbc614"},
-{"pid":27369,"tid":27407,"ts":326459370811,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1449931},
-{"pid":27369,"tid":27407,"ts":326459370811,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1449931,"id":"0xba44e902"},
-{"pid":27369,"tid":27407,"ts":326459373161,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":275,"tdur":153,"tts":1450053},
-{"pid":27369,"tid":27407,"ts":326459373192,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":244,"tdur":123,"tts":1450083},
-{"pid":27369,"tid":27407,"ts":326459373192,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1450083,"id":"0xccc45c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459373222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1450114,"id":"0xaf8a6797feb47934"},
-{"pid":27369,"tid":27407,"ts":326459374626,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1450297,"id":"0xaf8a6cabfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459374626,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1450297},
-{"pid":27369,"tid":27407,"ts":326459374657,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1450328,"id":"0xba44ea02"},
-{"pid":27369,"tid":27407,"ts":326459385827,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1450419,"id":"0xaf8a6ca4febbc614"},
-{"pid":27369,"tid":27407,"ts":326459385858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1450450},
-{"pid":27369,"tid":27407,"ts":326459385858,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1450450,"id":"0xba44eb02"},
-{"pid":27369,"tid":27407,"ts":326459402613,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1450602,"id":"0xaf8a6ca5febbc614"},
-{"pid":27369,"tid":27407,"ts":326459402644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1450633},
-{"pid":27369,"tid":27407,"ts":326459402644,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1450633,"id":"0xba44ec02"},
-{"pid":27369,"tid":27407,"ts":326459419674,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1450816,"id":"0xaf8a6ca6febbc614"},
-{"pid":27369,"tid":27407,"ts":326459419674,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1450816},
-{"pid":27369,"tid":27407,"ts":326459419705,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1450846,"id":"0xba44ed02"},
-{"pid":27369,"tid":27407,"ts":326459427518,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":427,"tdur":427,"tts":1450999},
-{"pid":27369,"tid":27407,"ts":326459427579,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":214,"tdur":183,"tts":1451060},
-{"pid":27369,"tid":27407,"ts":326459427609,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1451091,"id":"0xccc45e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459427640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1451121,"id":"0xaf8a6790feb47934"},
-{"pid":27369,"tid":27407,"ts":326459427793,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1382},"dur":122,"tdur":122,"tts":1451274},
-{"pid":27369,"tid":27407,"ts":326459427793,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1451304,"id":"0xccc45f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459427854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1451335,"id":"0xaf8a6791feb47934"},
-{"pid":27369,"tid":27407,"ts":326459428708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1451548,"id":"0xaf8a6ca7febbc614"},
-{"pid":27369,"tid":27407,"ts":326459428708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1451548},
-{"pid":27369,"tid":27407,"ts":326459428739,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1451579,"id":"0xba44ee02"},
-{"pid":27369,"tid":27369,"ts":326459355368,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2032717},
-{"pid":27369,"tid":27369,"ts":326459355368,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2032717},
-{"pid":27369,"tid":27369,"ts":326459355398,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2032748,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459355398,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":2032748},
-{"pid":27369,"tid":27369,"ts":326459355429,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2032778},
-{"pid":27369,"tid":27369,"ts":326459355459,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2032809},
-{"pid":27369,"tid":27369,"ts":326459355459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2032809,"id":"0xaf8a6caefebbc614"},
-{"pid":27369,"tid":27369,"ts":326459355520,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2032870,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459355520,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2032870,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459355642,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2032992},
-{"pid":27369,"tid":27369,"ts":326459359274,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2033175},
-{"pid":27369,"tid":27369,"ts":326459359305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2033206,"id":"0xaf8a679bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459359305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1770,"tdur":519,"tts":2033206},
-{"pid":27369,"tid":27369,"ts":326459359335,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":1740,"tdur":489,"tts":2033236},
-{"pid":27369,"tid":27369,"ts":326459359366,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":1709,"tdur":458,"tts":2033267},
-{"pid":27369,"tid":27369,"ts":326459359580,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":1373,"tdur":122,"tts":2033480},
-{"pid":27369,"tid":27369,"ts":326459359580,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":1373,"tdur":122,"tts":2033480},
-{"pid":27369,"tid":27369,"ts":326459359610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2033511,"id":"0xaf8a6794feb47934"},
-{"pid":27369,"tid":27369,"ts":326459360983,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2033633},
-{"pid":27369,"tid":27369,"ts":326459361045,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2033694},
-{"pid":27369,"tid":27369,"ts":326459362357,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2034640},
-{"pid":27369,"tid":27369,"ts":326459362540,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2034793},
-{"pid":27369,"tid":27369,"ts":326459362540,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2034823,"id":"0xaf8a6794feb47934"},
-{"pid":27369,"tid":27369,"ts":326459362571,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2034823},
-{"pid":27369,"tid":27369,"ts":326459362571,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2034823},
-{"pid":27369,"tid":27369,"ts":326459362601,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1465,"tdur":1465,"tts":2034854},
-{"pid":27369,"tid":27369,"ts":326459362632,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":90},"dur":61,"tdur":61,"tts":2034884},
-{"pid":27369,"tid":27369,"ts":326459362632,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":31,"tts":2034884},
-{"pid":27369,"tid":27369,"ts":326459362693,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":306,"tts":2034945},
-{"pid":27369,"tid":27369,"ts":326459362693,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2034945,"id":"0x300000053"},
-{"pid":27369,"tid":27369,"ts":326459362723,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2034976},
-{"pid":27369,"tid":27369,"ts":326459362723,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":2034976},
-{"pid":27369,"tid":27369,"ts":326459362754,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":2035006},
-{"pid":27369,"tid":27369,"ts":326459362967,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2035251},
-{"pid":27369,"tid":27369,"ts":326459362998,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":2035251},
-{"pid":27369,"tid":27369,"ts":326459363028,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2035281},
-{"pid":27369,"tid":27369,"ts":326459363028,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":90},"dur":31,"tdur":31,"tts":2035281},
-{"pid":27369,"tid":27369,"ts":326459363059,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":90},"dur":30,"tdur":0,"tts":2035342},
-{"pid":27369,"tid":27369,"ts":326459363089,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":90},"tts":2035342},
-{"pid":27369,"tid":27369,"ts":326459363120,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2035373},
-{"pid":27369,"tid":27369,"ts":326459363120,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2035373},
-{"pid":27369,"tid":27369,"ts":326459363120,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":2035373},
-{"pid":27369,"tid":27369,"ts":326459363150,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2035403},
-{"pid":27369,"tid":27369,"ts":326459363181,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2035434,"id":"0xaf8a6caffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459363272,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":794,"tts":2035525},
-{"pid":27369,"tid":27369,"ts":326459363272,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":90},"dur":245,"tdur":244,"tts":2035525},
-{"pid":27369,"tid":27369,"ts":326459363303,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2035556},
-{"pid":27369,"tid":27369,"ts":326459363303,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2035556},
-{"pid":27369,"tid":27369,"ts":326459363303,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":2035586},
-{"pid":27369,"tid":27369,"ts":326459363334,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2035586,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459363364,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2035617},
-{"pid":27369,"tid":27369,"ts":326459363486,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2035739},
-{"pid":27369,"tid":27369,"ts":326459363517,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":306,"tts":2035769},
-{"pid":27369,"tid":27369,"ts":326459363517,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2035769},
-{"pid":27369,"tid":27369,"ts":326459363547,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2035800},
-{"pid":27369,"tid":27369,"ts":326459363547,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2035800},
-{"pid":27369,"tid":27369,"ts":326459363608,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2035861},
-{"pid":27369,"tid":27369,"ts":326459363822,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2036075,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459363883,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2036136,"id":"0x300000053"},
-{"pid":27369,"tid":27369,"ts":326459363883,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2036136},
-{"pid":27369,"tid":27369,"ts":326459363913,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14705},"dur":92,"tdur":92,"tts":2036166},
-{"pid":27369,"tid":27369,"ts":326459363944,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":2036197},
-{"pid":27369,"tid":27369,"ts":326459363944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2036197,"id":"0xaf8a6ca8febbc614"},
-{"pid":27369,"tid":27369,"ts":326459364005,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2036258},
-{"pid":27369,"tid":27369,"ts":326459364005,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2036288},
-{"pid":27369,"tid":27369,"ts":326459364158,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2036410},
-{"pid":27369,"tid":27369,"ts":326459366782,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2036593},
-{"pid":27369,"tid":27369,"ts":326459366813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2036624,"id":"0xaf8a6795feb47934"},
-{"pid":27369,"tid":27369,"ts":326459366813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2036624},
-{"pid":27369,"tid":27369,"ts":326459366843,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2036654},
-{"pid":27369,"tid":27369,"ts":326459366904,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2036715,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459366904,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2036715,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459366904,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":31,"tts":2036746},
-{"pid":27369,"tid":27369,"ts":326459366935,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2036746},
-{"pid":27369,"tid":27369,"ts":326459366965,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2036777,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459367057,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2036868},
-{"pid":27369,"tid":27369,"ts":326459368614,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2037051},
-{"pid":27369,"tid":27369,"ts":326459368614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2037051,"id":"0xaf8a6796feb47934"},
-{"pid":27369,"tid":27369,"ts":326459368644,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2037082},
-{"pid":27369,"tid":27369,"ts":326459368675,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2037112},
-{"pid":27369,"tid":27369,"ts":326459368705,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2037143},
-{"pid":27369,"tid":27369,"ts":326459368827,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2037265},
-{"pid":27369,"tid":27369,"ts":326459369010,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2037448},
-{"pid":27369,"tid":27369,"ts":326459369529,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2037997},
-{"pid":27369,"tid":27369,"ts":326459369651,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2038089},
-{"pid":27369,"tid":27369,"ts":326459369773,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":641,"tdur":305,"tts":2038211},
-{"pid":27369,"tid":27369,"ts":326459360000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2038242,"id":"0x300000056"},
-{"pid":27369,"tid":27369,"ts":326459369834,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901974},"tts":2038272,"id":"0x300000056"},
-{"pid":27369,"tid":27369,"ts":326459369834,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":580,"tdur":244,"tts":2038272},
-{"pid":27369,"tid":27369,"ts":326459370231,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2038333,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459370231,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2038333},
-{"pid":27369,"tid":27369,"ts":326459370262,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":152,"tts":2038364},
-{"pid":27369,"tid":27369,"ts":326459370292,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2038394},
-{"pid":27369,"tid":27369,"ts":326459370323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2038425,"id":"0xaf8a6ca9febbc614"},
-{"pid":27369,"tid":27369,"ts":326459370384,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2038486,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459370384,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2038486,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459370445,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2038547},
-{"pid":27369,"tid":27369,"ts":326459370628,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2038730},
-{"pid":27369,"tid":27369,"ts":326459370689,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2038791},
-{"pid":27369,"tid":27369,"ts":326459370689,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459368282},"dur":61,"tdur":61,"tts":2038791},
-{"pid":27369,"tid":27369,"ts":326459370719,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":2038821},
-{"pid":27369,"tid":27369,"ts":326459370719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2038821,"id":"0xaf8a6caafebbc614"},
-{"pid":27369,"tid":27369,"ts":326459370872,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2038974},
-{"pid":27369,"tid":27369,"ts":326459370994,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2039096},
-{"pid":27369,"tid":27369,"ts":326459373833,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2039645},
-{"pid":27369,"tid":27369,"ts":326459373924,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_UP"},"dur":61,"tdur":61,"tts":2039737},
-{"pid":27369,"tid":27369,"ts":326459374016,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":2039829},
-{"pid":27369,"tid":27369,"ts":326459373000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{},"tts":2039859,"id":"0x300000057"},
-{"pid":27369,"tid":27369,"ts":326459374046,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901975},"tts":2039859,"id":"0x300000057"},
-{"pid":27369,"tid":27369,"ts":326459374077,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":2039890},
-{"pid":27369,"tid":27369,"ts":326459374077,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2039890,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459374107,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2039920},
-{"pid":27369,"tid":27369,"ts":326459374321,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2040134},
-{"pid":27369,"tid":27369,"ts":326459374351,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2040164,"id":"0xaf8a6797feb47934"},
-{"pid":27369,"tid":27369,"ts":326459374351,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":306,"tts":2040164},
-{"pid":27369,"tid":27369,"ts":326459374382,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":2040195},
-{"pid":27369,"tid":27369,"ts":326459374412,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2040225,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459374443,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2040256,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459374443,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2040256},
-{"pid":27369,"tid":27369,"ts":326459374443,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2040256},
-{"pid":27369,"tid":27369,"ts":326459374473,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2040286,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459374504,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2040317},
-{"pid":27369,"tid":27369,"ts":326459374504,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchEnd"},"dur":122,"tdur":122,"tts":2040317},
-{"pid":27369,"tid":27369,"ts":326459374535,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2040347},
-{"pid":27369,"tid":27369,"ts":326459374535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2040378,"id":"0xaf8a6cabfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459374596,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2040408,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459374596,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2040408,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459374718,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2040531},
-{"pid":27369,"tid":27395,"ts":326459370231,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":63},"dur":61,"tdur":62,"tts":4455},
-{"pid":27369,"tid":27395,"ts":326462851446,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":63},"dur":458,"tdur":122,"tts":4669},
-{"pid":27369,"tid":27395,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.0305}},
-{"pid":27369,"tid":27369,"ts":326459385552,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2040836},
-{"pid":27369,"tid":27369,"ts":326459385613,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2040897},
-{"pid":27369,"tid":27369,"ts":326459385674,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":244,"tts":2040958},
-{"pid":27369,"tid":27369,"ts":326459385705,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459384964},"dur":92,"tdur":92,"tts":2040988},
-{"pid":27369,"tid":27369,"ts":326459385735,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":2041019},
-{"pid":27369,"tid":27369,"ts":326459385766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2041049,"id":"0xaf8a6ca4febbc614"},
-{"pid":27369,"tid":27369,"ts":326459385949,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2041233},
-{"pid":27369,"tid":27369,"ts":326459386071,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2041385},
-{"pid":27369,"tid":27369,"ts":326459402308,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2041751},
-{"pid":27369,"tid":27369,"ts":326459402369,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2041812},
-{"pid":27369,"tid":27369,"ts":326459402430,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":305,"tdur":306,"tts":2041873},
-{"pid":27369,"tid":27369,"ts":326459402461,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459401645},"dur":122,"tdur":122,"tts":2041904},
-{"pid":27369,"tid":27369,"ts":326459402491,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2041934},
-{"pid":27369,"tid":27369,"ts":326459402522,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2041965,"id":"0xaf8a6ca5febbc614"},
-{"pid":27369,"tid":27369,"ts":326459402766,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2042209},
-{"pid":27369,"tid":27369,"ts":326459402918,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2042362},
-{"pid":27369,"tid":27369,"ts":326459419338,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2043003},
-{"pid":27369,"tid":27369,"ts":326459419430,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2043094},
-{"pid":27369,"tid":27369,"ts":326459419491,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":580,"tdur":336,"tts":2043155},
-{"pid":27369,"tid":27369,"ts":326459419491,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459418327},"dur":153,"tdur":122,"tts":2043186},
-{"pid":27369,"tid":27369,"ts":326459419552,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2043216},
-{"pid":27369,"tid":27369,"ts":326459419583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2043247,"id":"0xaf8a6ca6febbc614"},
-{"pid":27369,"tid":27369,"ts":326459420071,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2043491},
-{"pid":27369,"tid":27369,"ts":326459420193,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2043613},
-{"pid":27369,"tid":27369,"ts":326459427884,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2043888},
-{"pid":27369,"tid":27369,"ts":326459427915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2043888,"id":"0xaf8a6790feb47934"},
-{"pid":27369,"tid":27369,"ts":326459427945,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2043918},
-{"pid":27369,"tid":27369,"ts":326459427945,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":2043918},
-{"pid":27369,"tid":27369,"ts":326459428006,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2043979,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459428037,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2044010,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459428037,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchEnd","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2044010},
-{"pid":27369,"tid":27369,"ts":326459428067,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2044040},
-{"pid":27369,"tid":27369,"ts":326459428098,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2044071,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459428189,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2044193},
-{"pid":27369,"tid":27369,"ts":326459428311,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2044285},
-{"pid":27369,"tid":27369,"ts":326459428342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2044315,"id":"0xaf8a6791feb47934"},
-{"pid":27369,"tid":27369,"ts":326459428342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2044315},
-{"pid":27369,"tid":27369,"ts":326459428372,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1382},"dur":275,"tdur":274,"tts":2044346},
-{"pid":27369,"tid":27369,"ts":326459428433,"ph":"B","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2044407},
-{"pid":27369,"tid":27369,"ts":326459428525,"ph":"E","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2044498},
-{"pid":27369,"tid":27369,"ts":326459428556,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2044559},
-{"pid":27369,"tid":27369,"ts":326459428586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2044559,"id":"0xaf8a6ca7febbc614"},
-{"pid":27369,"tid":27369,"ts":326459428739,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2044712},
-{"pid":27369,"tid":27369,"ts":326459435758,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2045109},
-{"pid":27369,"tid":27369,"ts":326459435850,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2045200},
-{"pid":27369,"tid":27369,"ts":326459435911,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":305,"tdur":305,"tts":2045261},
-{"pid":27369,"tid":27369,"ts":326459435911,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459435008},"dur":153,"tdur":122,"tts":2045292},
-{"pid":27369,"tid":27369,"ts":326459435941,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2045322},
-{"pid":27369,"tid":27369,"ts":326459435972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2045322,"id":"0xaf8a6ca0febbc614"},
-{"pid":27369,"tid":27369,"ts":326459436216,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2045566},
-{"pid":27369,"tid":27369,"ts":326459436460,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2045719},
-{"pid":27369,"tid":27369,"ts":326459443175,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2045963},
-{"pid":27369,"tid":27369,"ts":326459443205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2045994,"id":"0xaf8a6792feb47934"},
-{"pid":27369,"tid":27369,"ts":326459443205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":489,"tdur":488,"tts":2045994},
-{"pid":27369,"tid":27369,"ts":326459443205,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":457,"tts":2045994},
-{"pid":27369,"tid":27369,"ts":326459443266,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":396,"tts":2046055},
-{"pid":27369,"tid":27369,"ts":326459443480,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2046268},
-{"pid":27369,"tid":27369,"ts":326459443511,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2046299},
-{"pid":27369,"tid":27369,"ts":326459443511,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2046299,"id":"0xaf8a6793feb47934"},
-{"pid":27369,"tid":27369,"ts":326459443602,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2046390},
-{"pid":27369,"tid":27369,"ts":326459443633,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2046421},
-{"pid":27369,"tid":27369,"ts":326459443755,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2046543},
-{"pid":27369,"tid":27369,"ts":326459443877,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2046665},
-{"pid":27369,"tid":27369,"ts":326459443877,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2046665,"id":"0xaf8a6793feb47934"},
-{"pid":27369,"tid":27407,"ts":326459436094,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1451732,"id":"0xaf8a6ca0febbc614"},
-{"pid":27369,"tid":27407,"ts":326459436125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":1451793},
-{"pid":27369,"tid":27407,"ts":326459436155,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1451823,"id":"0xba44ef02"},
-{"pid":27369,"tid":27407,"ts":326459442748,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":335,"tdur":336,"tts":1452006},
-{"pid":27369,"tid":27407,"ts":326459442839,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":244,"tdur":244,"tts":1452098},
-{"pid":27369,"tid":27407,"ts":326459442839,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1452098,"id":"0xccc46102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459442931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1452189,"id":"0xaf8a6792feb47934"},
-{"pid":27369,"tid":27407,"ts":326459444609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1452525,"id":"0xaf8a6ca1febbc614"},
-{"pid":27369,"tid":27407,"ts":326459444609,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":153,"tts":1452525},
-{"pid":27369,"tid":27407,"ts":326459444640,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1452556,"id":"0xba44f002"},
-{"pid":27369,"tid":27407,"ts":326459445372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1452769,"id":"0xaf8a6ca2febbc614"},
-{"pid":27369,"tid":27407,"ts":326459445372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1452800},
-{"pid":27369,"tid":27407,"ts":326459445403,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1452800,"id":"0xba44f102"},
-{"pid":27369,"tid":27407,"ts":326459451904,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":214,"tts":1452952},
-{"pid":27369,"tid":27407,"ts":326459451934,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":122,"tts":1453013},
-{"pid":27369,"tid":27407,"ts":326459451965,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1453013,"id":"0xc4c16c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459451995,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1453044,"id":"0xaf8a67acfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459452789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1453288,"id":"0xaf8a6ca3febbc614"},
-{"pid":27369,"tid":27407,"ts":326459452789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1453319},
-{"pid":27369,"tid":27407,"ts":326459452819,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1453319,"id":"0xba44f202"},
-{"pid":27369,"tid":27407,"ts":326459468904,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1453502},
-{"pid":27369,"tid":27407,"ts":326459468934,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1453532},
-{"pid":27369,"tid":27407,"ts":326459468934,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1453563,"id":"0xccc46202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459468995,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1453593,"id":"0xaf8a67adfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459469239,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1453776,"id":"0xaf8a6cbcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459469270,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1453776},
-{"pid":27369,"tid":27407,"ts":326459469300,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1453807,"id":"0xba44f302"},
-{"pid":27369,"tid":27407,"ts":326459481051,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1453960},
-{"pid":27369,"tid":27407,"ts":326459481081,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":153,"tdur":153,"tts":1453990},
-{"pid":27369,"tid":27407,"ts":326459481081,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1453990,"id":"0xccc46302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459481112,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1454021,"id":"0xaf8a67aefeb47934"},
-{"pid":27369,"tid":27407,"ts":326459485995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1454265,"id":"0xaf8a6cbdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459486025,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":184,"tdur":153,"tts":1454295},
-{"pid":27369,"tid":27407,"ts":326459486086,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1454356,"id":"0xba44f402"},
-{"pid":27369,"tid":27407,"ts":326459502629,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1454661,"id":"0xaf8a6cbefebbc614"},
-{"pid":27369,"tid":27407,"ts":326459502690,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":153,"tts":1454692},
-{"pid":27369,"tid":27407,"ts":326459502720,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1454723,"id":"0xba44f502"},
-{"pid":27369,"tid":27407,"ts":326459519232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1454997,"id":"0xaf8a6cbffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459519262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":152,"tts":1455028},
-{"pid":27369,"tid":27407,"ts":326459519293,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1455058,"id":"0xba44f602"},
-{"pid":27369,"tid":27407,"ts":326459520269,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":275,"tts":1455302},
-{"pid":27369,"tid":27407,"ts":326459520330,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":214,"tdur":214,"tts":1455333},
-{"pid":27369,"tid":27407,"ts":326459520361,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1455363,"id":"0xccc46402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459520422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1455424,"id":"0xaf8a67affeb47934"},
-{"pid":27369,"tid":27407,"ts":326459625656,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1455699},
-{"pid":27369,"tid":27407,"ts":326459625717,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":153,"tdur":152,"tts":1455730},
-{"pid":27369,"tid":27407,"ts":326459625717,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1455730,"id":"0xccc46502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459625748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1455760,"id":"0xaf8a67a8feb47934"},
-{"pid":27369,"tid":27407,"ts":326459626999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1456004,"id":"0xaf8a6cb8febbc614"},
-{"pid":27369,"tid":27407,"ts":326459627030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1456035},
-{"pid":27369,"tid":27407,"ts":326459627030,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1456035,"id":"0xba44f702"},
-{"pid":27369,"tid":27407,"ts":326459636460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1456218,"id":"0xaf8a6cb9febbc614"},
-{"pid":27369,"tid":27407,"ts":326459636460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1456218},
-{"pid":27369,"tid":27407,"ts":326459636491,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1456249,"id":"0xba44f802"},
-{"pid":27369,"tid":27407,"ts":326459652209,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1456371},
-{"pid":27369,"tid":27407,"ts":326459652239,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1456401},
-{"pid":27369,"tid":27407,"ts":326459652270,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1456432,"id":"0xccc46602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459652300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1456462,"id":"0xaf8a67a9feb47934"},
-{"pid":27369,"tid":27407,"ts":326459652850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1456645,"id":"0xaf8a6cbafebbc614"},
-{"pid":27369,"tid":27407,"ts":326459652850,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1456676},
-{"pid":27369,"tid":27407,"ts":326459652880,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1456676,"id":"0xba44f902"},
-{"pid":27369,"tid":27407,"ts":326459723260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1456828,"id":"0xaf8a6cbbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459723260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/gpu/gpu_process_host_ui_shim.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1456859},
-{"pid":27369,"tid":27407,"ts":326459723291,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1456859,"id":"0xba44fa02"},
-{"pid":27369,"tid":27369,"ts":326459443907,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1496,"tdur":1495,"tts":2046696},
-{"pid":27369,"tid":27369,"ts":326459443907,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2046696},
-{"pid":27369,"tid":27369,"ts":326459443938,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1465,"tdur":1435,"tts":2046726},
-{"pid":27369,"tid":27369,"ts":326459443938,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":91},"dur":61,"tdur":61,"tts":2046726},
-{"pid":27369,"tid":27369,"ts":326459443968,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2046757},
-{"pid":27369,"tid":27369,"ts":326459444029,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":305,"tts":2046818},
-{"pid":27369,"tid":27369,"ts":326459444029,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2046818,"id":"0x300000057"},
-{"pid":27369,"tid":27369,"ts":326459444029,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2046818},
-{"pid":27369,"tid":27369,"ts":326459444060,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2046848},
-{"pid":27369,"tid":27369,"ts":326459444090,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":2046879},
-{"pid":27369,"tid":27369,"ts":326459444304,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2047092},
-{"pid":27369,"tid":27369,"ts":326459444335,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":2047123},
-{"pid":27369,"tid":27369,"ts":326459444365,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2047153},
-{"pid":27369,"tid":27369,"ts":326459444365,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":91},"dur":31,"tdur":31,"tts":2047153},
-{"pid":27369,"tid":27369,"ts":326459444396,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":91},"dur":30,"tdur":31,"tts":2047184},
-{"pid":27369,"tid":27369,"ts":326459444426,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":91},"tts":2047215},
-{"pid":27369,"tid":27369,"ts":326459444426,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2047215},
-{"pid":27369,"tid":27369,"ts":326459444457,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2047245},
-{"pid":27369,"tid":27369,"ts":326459444457,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2047245},
-{"pid":27369,"tid":27369,"ts":326459444487,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2047276},
-{"pid":27369,"tid":27369,"ts":326459444518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2047306,"id":"0xaf8a6ca1febbc614"},
-{"pid":27369,"tid":27369,"ts":326459444579,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":793,"tdur":794,"tts":2047367},
-{"pid":27369,"tid":27369,"ts":326459444609,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":91},"dur":244,"tdur":244,"tts":2047398},
-{"pid":27369,"tid":27369,"ts":326459444609,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2047398},
-{"pid":27369,"tid":27369,"ts":326459444640,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2047428},
-{"pid":27369,"tid":27369,"ts":326459444640,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2047428},
-{"pid":27369,"tid":27369,"ts":326459444670,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2047459,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459444670,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2047459},
-{"pid":27369,"tid":27369,"ts":326459444823,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2047642},
-{"pid":27369,"tid":27369,"ts":326459444853,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":2047642},
-{"pid":27369,"tid":27369,"ts":326459444884,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2047672},
-{"pid":27369,"tid":27369,"ts":326459444884,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":2047672},
-{"pid":27369,"tid":27369,"ts":326459444884,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2047672},
-{"pid":27369,"tid":27369,"ts":326459444945,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2047733},
-{"pid":27369,"tid":27369,"ts":326459445159,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2047947,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459445220,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2048008,"id":"0x300000057"},
-{"pid":27369,"tid":27369,"ts":326459445220,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":2048008},
-{"pid":27369,"tid":27369,"ts":326459445250,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":983},"dur":92,"tdur":91,"tts":2048039},
-{"pid":27369,"tid":27369,"ts":326459445281,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":31,"tts":2048069},
-{"pid":27369,"tid":27369,"ts":326459445281,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2048069,"id":"0xaf8a6ca2febbc614"},
-{"pid":27369,"tid":27369,"ts":326459445342,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2048130},
-{"pid":27369,"tid":27369,"ts":326459445342,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2048130},
-{"pid":27369,"tid":27369,"ts":326459445464,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2048252},
-{"pid":27369,"tid":27369,"ts":326459452484,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2048741},
-{"pid":27369,"tid":27369,"ts":326459452545,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2048832},
-{"pid":27369,"tid":27369,"ts":326459452606,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":244,"tts":2048863},
-{"pid":27369,"tid":27369,"ts":326459452636,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459451690},"dur":122,"tdur":122,"tts":2048893},
-{"pid":27369,"tid":27369,"ts":326459452667,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2048924},
-{"pid":27369,"tid":27369,"ts":326459452697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2048954,"id":"0xaf8a6ca3febbc614"},
-{"pid":27369,"tid":27369,"ts":326459452880,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2049168},
-{"pid":27369,"tid":27369,"ts":326459453186,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2049442},
-{"pid":27369,"tid":27369,"ts":326459453338,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2049595},
-{"pid":27369,"tid":27369,"ts":326459453369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2049626,"id":"0xaf8a67acfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459453369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2049626},
-{"pid":27369,"tid":27369,"ts":326459453430,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2049687},
-{"pid":27369,"tid":27369,"ts":326459453460,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2049717},
-{"pid":27369,"tid":27369,"ts":326459453613,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2049870},
-{"pid":27369,"tid":27369,"ts":326459468965,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2050206},
-{"pid":27369,"tid":27369,"ts":326459469026,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2050267},
-{"pid":27369,"tid":27369,"ts":326459469087,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":274,"tts":2050328},
-{"pid":27369,"tid":27369,"ts":326459469087,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459468372},"dur":152,"tdur":152,"tts":2050328},
-{"pid":27369,"tid":27369,"ts":326459469117,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2050358},
-{"pid":27369,"tid":27369,"ts":326459469148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2050419,"id":"0xaf8a6cbcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459469361,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2050633},
-{"pid":27369,"tid":27369,"ts":326459469514,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2050755},
-{"pid":27369,"tid":27369,"ts":326459469636,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2050877},
-{"pid":27369,"tid":27369,"ts":326459469667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2050907,"id":"0xaf8a67adfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459469667,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":92,"tts":2050907},
-{"pid":27369,"tid":27369,"ts":326459469697,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":61,"tdur":61,"tts":2050938},
-{"pid":27369,"tid":27369,"ts":326459469728,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":30,"tdur":30,"tts":2050969},
-{"pid":27369,"tid":27369,"ts":326459469850,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2051091},
-{"pid":27369,"tid":27369,"ts":326459481356,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2051304},
-{"pid":27369,"tid":27369,"ts":326459481386,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2051335,"id":"0xaf8a67aefeb47934"},
-{"pid":27369,"tid":27369,"ts":326459481417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":92,"tts":2051365},
-{"pid":27369,"tid":27369,"ts":326459481417,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":92,"tts":2051365},
-{"pid":27369,"tid":27369,"ts":326459481478,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":30,"tdur":31,"tts":2051426},
-{"pid":27369,"tid":27369,"ts":326459481600,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2051548},
-{"pid":27369,"tid":27369,"ts":326459485659,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2051854},
-{"pid":27369,"tid":27369,"ts":326459485720,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2051915},
-{"pid":27369,"tid":27369,"ts":326459485781,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":489,"tdur":305,"tts":2051976},
-{"pid":27369,"tid":27369,"ts":326459485812,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459485053},"dur":122,"tdur":122,"tts":2052006},
-{"pid":27369,"tid":27369,"ts":326459485842,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2052037},
-{"pid":27369,"tid":27369,"ts":326459485873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2052067,"id":"0xaf8a6cbdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459486300,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2052311},
-{"pid":27369,"tid":27369,"ts":326459486422,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2052433},
-{"pid":27369,"tid":27369,"ts":326459502323,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2052800},
-{"pid":27369,"tid":27369,"ts":326459502384,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2052861},
-{"pid":27369,"tid":27369,"ts":326459502415,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":2052891},
-{"pid":27369,"tid":27369,"ts":326459502445,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459501735},"dur":122,"tdur":122,"tts":2052922},
-{"pid":27369,"tid":27369,"ts":326459502476,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2052952},
-{"pid":27369,"tid":27369,"ts":326459502506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2052983,"id":"0xaf8a6cbefebbc614"},
-{"pid":27369,"tid":27369,"ts":326459502690,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2053166},
-{"pid":27369,"tid":27369,"ts":326459502842,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2053319},
-{"pid":27369,"tid":27369,"ts":326459518957,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2053593},
-{"pid":27369,"tid":27369,"ts":326459519018,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2053654},
-{"pid":27369,"tid":27369,"ts":326459519048,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2053685},
-{"pid":27369,"tid":27369,"ts":326459519079,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459518416},"dur":92,"tdur":92,"tts":2053715},
-{"pid":27369,"tid":27369,"ts":326459519079,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2053715},
-{"pid":27369,"tid":27369,"ts":326459519110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2053746,"id":"0xaf8a6cbffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459519293,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2053929},
-{"pid":27369,"tid":27369,"ts":326459519415,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2054051},
-{"pid":27369,"tid":27369,"ts":326459520666,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2054295},
-{"pid":27369,"tid":27369,"ts":326459520697,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2054326,"id":"0xaf8a67affeb47934"},
-{"pid":27369,"tid":27369,"ts":326459520697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":2054326},
-{"pid":27369,"tid":27369,"ts":326459520697,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":91,"tts":2054326},
-{"pid":27369,"tid":27369,"ts":326459520758,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":30,"tdur":30,"tts":2054387},
-{"pid":27369,"tid":27369,"ts":326459520880,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2054509},
-{"pid":27369,"tid":27369,"ts":326459535743,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2054875},
-{"pid":27369,"tid":27369,"ts":326459535835,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2054936},
-{"pid":27369,"tid":27369,"ts":326459535896,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":30,"tdur":31,"tts":2054997},
-{"pid":27369,"tid":27369,"ts":326459535926,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2055028},
-{"pid":27369,"tid":27369,"ts":326459536109,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2055211},
-{"pid":27369,"tid":27369,"ts":326459626206,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2055608},
-{"pid":27369,"tid":27369,"ts":326459626236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2055638,"id":"0xaf8a67a8feb47934"},
-{"pid":27369,"tid":27369,"ts":326459626267,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":244,"tdur":244,"tts":2055669},
-{"pid":27369,"tid":27369,"ts":326459626267,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":244,"tdur":213,"tts":2055669},
-{"pid":27369,"tid":27369,"ts":326459626328,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":152,"tdur":152,"tts":2055730},
-{"pid":27369,"tid":27369,"ts":326459626633,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2055974},
-{"pid":27369,"tid":27369,"ts":326459626785,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2056126},
-{"pid":27369,"tid":27369,"ts":326459626816,"ph":"B","cat":"Java","name":"VSyncSynthetic","args":{},"tts":2056157},
-{"pid":27369,"tid":27369,"ts":326459626846,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":122,"tts":2056218},
-{"pid":27369,"tid":27369,"ts":326459626877,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459618431},"dur":92,"tdur":92,"tts":2056218},
-{"pid":27369,"tid":27369,"ts":326459626907,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":2056249},
-{"pid":27369,"tid":27369,"ts":326459626907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2056279,"id":"0xaf8a6cb8febbc614"},
-{"pid":27369,"tid":27369,"ts":326459627030,"ph":"E","cat":"Java","name":"VSyncSynthetic","args":{},"tts":2056371},
-{"pid":27369,"tid":27369,"ts":326459627457,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2056584},
-{"pid":27369,"tid":27369,"ts":326459635850,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2056920},
-{"pid":27369,"tid":27369,"ts":326459635911,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2056981},
-{"pid":27369,"tid":27369,"ts":326459635972,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":733,"tdur":275,"tts":2057042},
-{"pid":27369,"tid":27369,"ts":326459636003,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459635187},"dur":610,"tdur":152,"tts":2057073},
-{"pid":27369,"tid":27369,"ts":326459636033,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":580,"tdur":122,"tts":2057103},
-{"pid":27369,"tid":27369,"ts":326459636064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2057134,"id":"0xaf8a6cb9febbc614"},
-{"pid":27369,"tid":27369,"ts":326459636735,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2057347},
-{"pid":27369,"tid":27369,"ts":326459636888,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2057530},
-{"pid":27369,"tid":27369,"ts":326459652514,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2057897},
-{"pid":27369,"tid":27369,"ts":326459652606,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2057958},
-{"pid":27369,"tid":27369,"ts":326459652667,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":274,"tts":2058019},
-{"pid":27369,"tid":27369,"ts":326459652667,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459651869},"dur":152,"tdur":152,"tts":2058019},
-{"pid":27369,"tid":27369,"ts":326459652697,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":91,"tts":2058080},
-{"pid":27369,"tid":27369,"ts":326459652758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2058110,"id":"0xaf8a6cbafebbc614"},
-{"pid":27369,"tid":27369,"ts":326459652972,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2058324},
-{"pid":27369,"tid":27369,"ts":326459653186,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2058538},
-{"pid":27369,"tid":27369,"ts":326459653338,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2058690},
-{"pid":27369,"tid":27369,"ts":326459653369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2058721,"id":"0xaf8a67a9feb47934"},
-{"pid":27369,"tid":27369,"ts":326459653369,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":2058721},
-{"pid":27369,"tid":27369,"ts":326459653369,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":91,"tts":2058721},
-{"pid":27369,"tid":27369,"ts":326459653430,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":30,"tdur":30,"tts":2058782},
-{"pid":27369,"tid":27369,"ts":326459653521,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2058904},
-{"pid":27369,"tid":27369,"ts":326459669148,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2059209},
-{"pid":27369,"tid":27369,"ts":326459669209,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2059270},
-{"pid":27369,"tid":27369,"ts":326459669270,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":30,"tdur":31,"tts":2059331},
-{"pid":27369,"tid":27369,"ts":326459669300,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2059362},
-{"pid":27369,"tid":27369,"ts":326459669483,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2059545},
-{"pid":27369,"tid":27369,"ts":326459722711,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2060186},
-{"pid":27369,"tid":27369,"ts":326459722802,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_DOWN"},"dur":214,"tdur":214,"tts":2060277},
-{"pid":27369,"tid":27369,"ts":326459722864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2060338,"id":"0xaf8a67aafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459722955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2060430,"id":"0xaf8a67abfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459723047,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":274,"tdur":275,"tts":2060521},
-{"pid":27369,"tid":27369,"ts":326459720000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{},"tts":2060552,"id":"0x300000058"},
-{"pid":27369,"tid":27369,"ts":326459723108,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901976},"tts":2060582,"id":"0x300000058"},
-{"pid":27369,"tid":27369,"ts":326459723108,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":214,"tts":2060582},
-{"pid":27369,"tid":27369,"ts":326459723138,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2060613,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459723138,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2060613},
-{"pid":27369,"tid":27369,"ts":326459723138,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchStart"},"dur":183,"tdur":153,"tts":2060613},
-{"pid":27369,"tid":27369,"ts":326459723169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2060643,"id":"0xaf8a6cbbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459723230,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2060705},
-{"pid":27369,"tid":27369,"ts":326459723260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2060735,"id":"0xaf8a6cb4febbc614"},
-{"pid":27369,"tid":27369,"ts":326459723291,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2060766,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459723291,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2060766,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459723352,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2060796},
-{"pid":27369,"tid":27369,"ts":326459723352,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":2060796},
-{"pid":27369,"tid":27369,"ts":326459723901,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2061193},
-{"pid":27369,"tid":27369,"ts":326459724054,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2061345},
-{"pid":27369,"tid":27369,"ts":326459724145,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2061437},
-{"pid":27369,"tid":27369,"ts":326459724206,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2061498},
-{"pid":27369,"tid":27369,"ts":326459732538,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2062169},
-{"pid":27369,"tid":27369,"ts":326459732600,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":30,"tdur":30,"tts":2062231},
-{"pid":27369,"tid":27369,"ts":326459732661,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":2062292},
-{"pid":27369,"tid":27369,"ts":326459731000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2062322,"id":"0x300000059"},
-{"pid":27369,"tid":27369,"ts":326459732722,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901977},"tts":2062353,"id":"0x300000059"},
-{"pid":27369,"tid":27369,"ts":326459732722,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":2062353},
-{"pid":27369,"tid":27369,"ts":326459732722,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2062353,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459732752,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2062383},
-{"pid":27369,"tid":27369,"ts":326459733210,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2062841},
-{"pid":27369,"tid":27369,"ts":326459733240,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_POINTER_DOWN"},"dur":31,"tdur":0,"tts":2062902},
-{"pid":27369,"tid":27369,"ts":326459733301,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":62,"tdur":62,"tts":2062932},
-{"pid":27369,"tid":27369,"ts":326459731000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{},"tts":2062963,"id":"0x30000005a"},
-{"pid":27369,"tid":27369,"ts":326459733332,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901978},"tts":2062963,"id":"0x30000005a"},
-{"pid":27369,"tid":27369,"ts":326459733332,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":2062963},
-{"pid":27369,"tid":27369,"ts":326459733363,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2062994,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326459733363,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2063024},
-{"pid":27369,"tid":27369,"ts":326459735774,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2063360},
-{"pid":27369,"tid":27407,"ts":326459723352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1456951,"id":"0xaf8a6cb4febbc614"},
-{"pid":27369,"tid":27407,"ts":326459723382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1456951},
-{"pid":27369,"tid":27407,"ts":326459723382,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1456981,"id":"0xba44fb02"},
-{"pid":27369,"tid":27407,"ts":326459742336,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1457103},
-{"pid":27369,"tid":27407,"ts":326459742366,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1457134},
-{"pid":27369,"tid":27407,"ts":326459742366,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1457134,"id":"0xccc46802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459742397,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1457164,"id":"0xaf8a67a4feb47934"},
-{"pid":27369,"tid":27407,"ts":326459743007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1457347,"id":"0xaf8a6cb5febbc614"},
-{"pid":27369,"tid":27407,"ts":326459743007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1457347},
-{"pid":27369,"tid":27407,"ts":326459743007,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1457378,"id":"0xba44fc02"},
-{"pid":27369,"tid":27407,"ts":326459744716,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1457469},
-{"pid":27369,"tid":27407,"ts":326459744747,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":91,"tts":1457500},
-{"pid":27369,"tid":27407,"ts":326459744747,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1457500,"id":"0xccc46a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459744777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1457530,"id":"0xaf8a67a5feb47934"},
-{"pid":27369,"tid":27407,"ts":326459744869,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1457622},
-{"pid":27369,"tid":27407,"ts":326459744869,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1457622,"id":"0xccc46b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459744899,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1457652,"id":"0xaf8a67a6feb47934"},
-{"pid":27369,"tid":27407,"ts":326459745449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1457775,"id":"0xaf8a6cb6febbc614"},
-{"pid":27369,"tid":27407,"ts":326459745449,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/gpu/gpu_process_host_ui_shim.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1457775},
-{"pid":27369,"tid":27407,"ts":326459745479,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1457805,"id":"0xba44fd02"},
-{"pid":27369,"tid":27407,"ts":326459745540,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1457866,"id":"0xaf8a6cb7febbc614"},
-{"pid":27369,"tid":27407,"ts":326459745540,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1457866},
-{"pid":27369,"tid":27407,"ts":326459745571,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1457897,"id":"0xba44fe02"},
-{"pid":27369,"tid":27407,"ts":326459754025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1458019,"id":"0xaf8a6cb0febbc614"},
-{"pid":27369,"tid":27407,"ts":326459754055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1458019},
-{"pid":27369,"tid":27407,"ts":326459754086,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1458049,"id":"0xba44ff02"},
-{"pid":27369,"tid":27407,"ts":326459764615,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":152,"tts":1458202},
-{"pid":27369,"tid":27407,"ts":326459764646,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1458232},
-{"pid":27369,"tid":27407,"ts":326459764646,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1458232,"id":"0xccc46d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459764676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1458263,"id":"0xaf8a67a7feb47934"},
-{"pid":27369,"tid":27407,"ts":326459765378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1458477,"id":"0xaf8a6cb1febbc614"},
-{"pid":27369,"tid":27407,"ts":326459765378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1458477},
-{"pid":27369,"tid":27407,"ts":326459765378,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1458477,"id":"0xba450002"},
-{"pid":27369,"tid":27407,"ts":326459767026,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":122,"tts":1458629},
-{"pid":27369,"tid":27407,"ts":326459767057,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":91,"tts":1458660},
-{"pid":27369,"tid":27407,"ts":326459767088,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1458660,"id":"0xccc46f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459767088,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1458660,"id":"0xaf8a67a0feb47934"},
-{"pid":27369,"tid":27407,"ts":326459769956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1458843,"id":"0xaf8a6cb2febbc614"},
-{"pid":27369,"tid":27407,"ts":326459769956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":123,"tdur":122,"tts":1458843},
-{"pid":27369,"tid":27407,"ts":326459769987,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1458873,"id":"0xba450102"},
-{"pid":27369,"tid":27407,"ts":326459770719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1459026,"id":"0xaf8a6cb3febbc614"},
-{"pid":27369,"tid":27407,"ts":326459770719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1459026},
-{"pid":27369,"tid":27407,"ts":326459770750,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1459056,"id":"0xba450202"},
-{"pid":27369,"tid":27407,"ts":326459772856,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":488,"tdur":183,"tts":1459148},
-{"pid":27369,"tid":27407,"ts":326459772886,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":428,"tdur":123,"tts":1459178},
-{"pid":27369,"tid":27407,"ts":326459772886,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1459178,"id":"0xccc47102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459772917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1459209,"id":"0xaf8a67a1feb47934"},
-{"pid":27369,"tid":27407,"ts":326459786895,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1459392,"id":"0xaf8a6d4cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459786926,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1459423},
-{"pid":27369,"tid":27407,"ts":326459786926,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1459423,"id":"0xba450302"},
-{"pid":27369,"tid":27407,"ts":326459787536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1459575,"id":"0xaf8a6d4dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459787536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1459606},
-{"pid":27369,"tid":27407,"ts":326459787567,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1459606,"id":"0xba450402"},
-{"pid":27369,"tid":27407,"ts":326459794068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1459728},
-{"pid":27369,"tid":27407,"ts":326459794098,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1459758},
-{"pid":27369,"tid":27407,"ts":326459794098,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1459758,"id":"0xccc47302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459794129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1459789,"id":"0xaf8a67a2feb47934"},
-{"pid":27369,"tid":27407,"ts":326459804963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1459972,"id":"0xaf8a6d4efebbc614"},
-{"pid":27369,"tid":27407,"ts":326459804994,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1460003},
-{"pid":27369,"tid":27407,"ts":326459805024,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1460033,"id":"0xba450502"},
-{"pid":27369,"tid":27407,"ts":326459806245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1460155,"id":"0xaf8a6d4ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459806245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1460155},{"pid":27369,"tid":27407,"ts":326459806245,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1460155,"id":"0xba450602"},
-{"pid":27369,"tid":27407,"ts":326459807497,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":122,"tts":1460277},
-{"pid":27369,"tid":27369,"ts":326459735896,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2063482},
-{"pid":27369,"tid":27369,"ts":326459742580,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2063970},
-{"pid":27369,"tid":27369,"ts":326459742610,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2063970,"id":"0xaf8a67a4feb47934"},
-{"pid":27369,"tid":27369,"ts":326459742610,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2063970},
-{"pid":27369,"tid":27369,"ts":326459742641,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":366,"tdur":366,"tts":2064001},
-{"pid":27369,"tid":27369,"ts":326459742702,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2064062,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459742702,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2064062,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459742702,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchStart","ack":"CONSUMED"},"dur":305,"tdur":305,"tts":2064062},
-{"pid":27369,"tid":27369,"ts":326459742732,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":275,"tdur":275,"tts":2064092},
-{"pid":27369,"tid":27369,"ts":326459742793,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459742732.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901976.0,"time":326459723077.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459720000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459742732.0},"coordinates":[{"x":134.5,"y":773.5}],"trace_id":12884901976.0}},"tts":2064153,"id":"0x300000058"},
-{"pid":27369,"tid":27369,"ts":326459742824,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":2064184,"id":"0x300000058","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326459742854,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2064214,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459742854,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2064214},
-{"pid":27369,"tid":27369,"ts":326459742885,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2064245},
-{"pid":27369,"tid":27369,"ts":326459742915,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2064275},
-{"pid":27369,"tid":27369,"ts":326459742915,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2064275,"id":"0xaf8a6cb5febbc614"},
-{"pid":27369,"tid":27369,"ts":326459742976,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2064336,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459742976,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2064336,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459743099,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2064459},
-{"pid":27369,"tid":27369,"ts":326459744960,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2064611},
-{"pid":27369,"tid":27369,"ts":326459744960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2064611,"id":"0xaf8a67a5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459744960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2064611},
-{"pid":27369,"tid":27369,"ts":326459744991,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":61,"tts":2064642},
-{"pid":27369,"tid":27369,"ts":326459745021,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":31,"tdur":31,"tts":2064672},
-{"pid":27369,"tid":27369,"ts":326459745143,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2064794},
-{"pid":27369,"tid":27369,"ts":326459745204,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2064886},
-{"pid":27369,"tid":27369,"ts":326459745235,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2064886,"id":"0xaf8a67a6feb47934"},
-{"pid":27369,"tid":27369,"ts":326459745235,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":274,"tts":2064886},
-{"pid":27369,"tid":27369,"ts":326459745235,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":244,"tts":2064916},
-{"pid":27369,"tid":27369,"ts":326459745296,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2064947,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459745296,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2064947,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459745296,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":213,"tts":2064947},
-{"pid":27369,"tid":27369,"ts":326459745327,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2064977},
-{"pid":27369,"tid":27369,"ts":326459745327,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2064977,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459745357,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2065008},
-{"pid":27369,"tid":27369,"ts":326459745357,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchStart"},"dur":122,"tdur":122,"tts":2065008},
-{"pid":27369,"tid":27369,"ts":326459745388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2065038,"id":"0xaf8a6cb6febbc614"},
-{"pid":27369,"tid":27369,"ts":326459745418,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":0,"tts":2065099},
-{"pid":27369,"tid":27369,"ts":326459745449,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2065099,"id":"0xaf8a6cb7febbc614"},
-{"pid":27369,"tid":27369,"ts":326459745479,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2065130,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459745479,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2065130,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459745571,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2065222},
-{"pid":27369,"tid":27369,"ts":326459752529,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2065557},
-{"pid":27369,"tid":27369,"ts":326459753140,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2066137},
-{"pid":27369,"tid":27369,"ts":326459753201,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":2066198},
-{"pid":27369,"tid":27369,"ts":326459753323,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":2066320},
-{"pid":27369,"tid":27369,"ts":326459746000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2066351,"id":"0x30000005b"},
-{"pid":27369,"tid":27369,"ts":326459753384,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901979},"tts":2066381,"id":"0x30000005b"},
-{"pid":27369,"tid":27369,"ts":326459753384,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2066381},
-{"pid":27369,"tid":27369,"ts":326459753384,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2066412,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459753445,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2066442},
-{"pid":27369,"tid":27369,"ts":326459753598,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2066595},
-{"pid":27369,"tid":27369,"ts":326459753659,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2066656},
-{"pid":27369,"tid":27369,"ts":326459753659,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459751958},"dur":122,"tdur":92,"tts":2066656},
-{"pid":27369,"tid":27369,"ts":326459753689,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2066687},
-{"pid":27369,"tid":27369,"ts":326459753720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2066717,"id":"0xaf8a6cb0febbc614"},
-{"pid":27369,"tid":27369,"ts":326459753872,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2066870},
-{"pid":27369,"tid":27369,"ts":326459754025,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2067022},
-{"pid":27369,"tid":27369,"ts":326459764951,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2067511},
-{"pid":27369,"tid":27369,"ts":326459764982,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2067511,"id":"0xaf8a67a7feb47934"},
-{"pid":27369,"tid":27369,"ts":326459764982,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2067511},
-{"pid":27369,"tid":27369,"ts":326459765012,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":397,"tdur":366,"tts":2067541},
-{"pid":27369,"tid":27369,"ts":326459765043,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2067602,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459765073,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2067602,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459765073,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchStart","ack":"CONSUMED"},"dur":305,"tdur":305,"tts":2067602},
-{"pid":27369,"tid":27369,"ts":326459765104,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":274,"tdur":274,"tts":2067633},
-{"pid":27369,"tid":27369,"ts":326459765165,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459765104.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884901978.0,"time":326459733301.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459731000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326459765104.0},"coordinates":[{"x":135.0,"y":772.5},{"x":654.0,"y":341.0}],"trace_id":12884901978.0}},"tts":2067724,"id":"0x30000005a"},
-{"pid":27369,"tid":27369,"ts":326459765195,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":2067724,"id":"0x30000005a","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326459765195,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2067755,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326459765226,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2067755},
-{"pid":27369,"tid":27369,"ts":326459765226,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":92,"tts":2067785},
-{"pid":27369,"tid":27369,"ts":326459765256,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2067785},
-{"pid":27369,"tid":27369,"ts":326459765287,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2067816,"id":"0xaf8a6cb1febbc614"},
-{"pid":27369,"tid":27369,"ts":326459765348,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2067877,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459765348,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2067877,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459765470,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2067999},
-{"pid":27369,"tid":27369,"ts":326459767271,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2068151},
-{"pid":27369,"tid":27369,"ts":326459767301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2068182,"id":"0xaf8a67a0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459767301,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2068182},
-{"pid":27369,"tid":27369,"ts":326459767332,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":2068213},
-{"pid":27369,"tid":27369,"ts":326459767362,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2068243,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459767362,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2068243,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459767393,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":30,"tts":2068274},
-{"pid":27369,"tid":27369,"ts":326459767393,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2068274},
-{"pid":27369,"tid":27369,"ts":326459767423,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2068304,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459767637,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2068518},
-{"pid":27369,"tid":27369,"ts":326459769132,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2068731},
-{"pid":27369,"tid":27369,"ts":326459769529,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2069159},
-{"pid":27369,"tid":27369,"ts":326459769621,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2069220},
-{"pid":27369,"tid":27369,"ts":326459769712,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2069311},
-{"pid":27369,"tid":27369,"ts":326459763000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2069342,"id":"0x30000005c"},
-{"pid":27369,"tid":27369,"ts":326459769743,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901980},"tts":2069342,"id":"0x30000005c"},
-{"pid":27369,"tid":27369,"ts":326459769773,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2069372},
-{"pid":27369,"tid":27369,"ts":326459769773,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2069372,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459769804,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2069403},
-{"pid":27369,"tid":27369,"ts":326459769804,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":152,"tts":2069403},
-{"pid":27369,"tid":27369,"ts":326459769834,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2069433},
-{"pid":27369,"tid":27369,"ts":326459769865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2069464,"id":"0xaf8a6cb2febbc614"},
-{"pid":27369,"tid":27369,"ts":326459769926,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2069525,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459769926,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2069525,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459769987,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2069586},
-{"pid":27369,"tid":27369,"ts":326459770567,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2069800},
-{"pid":27369,"tid":27369,"ts":326459770597,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":184,"tdur":183,"tts":2069830},
-{"pid":27369,"tid":27369,"ts":326459770628,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459768640},"dur":61,"tdur":61,"tts":2069861},
-{"pid":27369,"tid":27369,"ts":326459770628,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2069861},
-{"pid":27369,"tid":27369,"ts":326459770658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2069891,"id":"0xaf8a6cb3febbc614"},
-{"pid":27369,"tid":27369,"ts":326459770811,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2070044},
-{"pid":27369,"tid":27369,"ts":326459770903,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2070135},
-{"pid":27369,"tid":27369,"ts":326459773558,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2070410},
-{"pid":27369,"tid":27369,"ts":326459773588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2070441,"id":"0xaf8a67a1feb47934"},
-{"pid":27369,"tid":27369,"ts":326459773588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":184,"tdur":152,"tts":2070441},
-{"pid":27369,"tid":27369,"ts":326459773588,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":184,"tdur":152,"tts":2070441},
-{"pid":27369,"tid":27369,"ts":326459773680,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2070502,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459773710,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2070532,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459773710,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":62,"tdur":61,"tts":2070532},
-{"pid":27369,"tid":27369,"ts":326459773710,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2070532},
-{"pid":27369,"tid":27369,"ts":326459773741,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2070563,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459773833,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2070654},
-{"pid":27369,"tid":27369,"ts":326459785888,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2071051},
-{"pid":27369,"tid":27369,"ts":326459786376,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2071539},
-{"pid":27369,"tid":27369,"ts":326459786468,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":91,"tts":2071631},
-{"pid":27369,"tid":27369,"ts":326459786468,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2071631},
-{"pid":27369,"tid":27369,"ts":326459786621,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2071753},
-{"pid":27369,"tid":27369,"ts":326459780030,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2071783,"id":"0x30000005d"},
-{"pid":27369,"tid":27369,"ts":326459786651,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901981},"tts":2071783,"id":"0x30000005d"},
-{"pid":27369,"tid":27369,"ts":326459786682,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2071814},
-{"pid":27369,"tid":27369,"ts":326459786682,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2071814,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459786712,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2071844},
-{"pid":27369,"tid":27369,"ts":326459786712,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2071844},
-{"pid":27369,"tid":27369,"ts":326459786743,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2071875},
-{"pid":27369,"tid":27369,"ts":326459786773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2071905,"id":"0xaf8a6d4cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459786834,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2071967,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459786834,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2071997,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459786895,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2072028},
-{"pid":27369,"tid":27369,"ts":326459787109,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2072241},
-{"pid":27369,"tid":27369,"ts":326459787170,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":397,"tdur":153,"tts":2072302},
-{"pid":27369,"tid":27369,"ts":326459787170,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459785321},"dur":336,"tdur":92,"tts":2072302},
-{"pid":27369,"tid":27369,"ts":326459787170,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":275,"tdur":31,"tts":2072302},
-{"pid":27369,"tid":27369,"ts":326459787445,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2072333},
-{"pid":27369,"tid":27369,"ts":326459787475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2072363,"id":"0xaf8a6d4dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459787567,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2072455},
-{"pid":27369,"tid":27369,"ts":326459787658,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2072577},
-{"pid":27369,"tid":27369,"ts":326459794312,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2072852},
-{"pid":27369,"tid":27369,"ts":326459794342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2072882,"id":"0xaf8a67a2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459794342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2072882},
-{"pid":27369,"tid":27369,"ts":326459794373,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2072913},
-{"pid":27369,"tid":27369,"ts":326459794403,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2072943,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459794434,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2072974,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459794434,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2072974},
-{"pid":27369,"tid":27369,"ts":326459794434,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":31,"tts":2073004},
-{"pid":27369,"tid":27369,"ts":326459794464,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2073004,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459794556,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2073126},
-{"pid":27369,"tid":27369,"ts":326459802583,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2073401},
-{"pid":27369,"tid":27369,"ts":326459804139,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2074011},
-{"pid":27369,"tid":27369,"ts":326459804567,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":123,"tts":2074072},
-{"pid":27369,"tid":27369,"ts":326459804719,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":427,"tdur":244,"tts":2074225},
-{"pid":27369,"tid":27369,"ts":326459797000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2074256,"id":"0x30000005e"},
-{"pid":27369,"tid":27369,"ts":326459804750,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901982},"tts":2074256,"id":"0x30000005e"},
-{"pid":27369,"tid":27369,"ts":326459804750,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":396,"tdur":183,"tts":2074286},
-{"pid":27369,"tid":27369,"ts":326459804780,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2074286,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459804780,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":366,"tdur":183,"tts":2074286},
-{"pid":27369,"tid":27369,"ts":326459804811,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":335,"tdur":152,"tts":2074317},
-{"pid":27369,"tid":27369,"ts":326459804841,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":92,"tts":2074347},
-{"pid":27369,"tid":27369,"ts":326459804872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2074378,"id":"0xaf8a6d4efebbc614"},
-{"pid":27369,"tid":27369,"ts":326459805116,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2074439,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459805116,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2074439,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459805177,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2074500},
-{"pid":27369,"tid":27369,"ts":326459805970,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2074805},
-{"pid":27369,"tid":27369,"ts":326459806093,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":1037,"tdur":184,"tts":2074835},
-{"pid":27369,"tid":27369,"ts":326459806093,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459802003},"dur":1007,"tdur":123,"tts":2074835},
-{"pid":27369,"tid":27369,"ts":326459806123,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":946,"tdur":92,"tts":2074866},
-{"pid":27369,"tid":27369,"ts":326459806123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2074866,"id":"0xaf8a6d4ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459807130,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2075049},
-{"pid":27369,"tid":27369,"ts":326459807466,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2075171},
-{"pid":27369,"tid":27369,"ts":326459807466,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":2075171},
-{"pid":27369,"tid":27369,"ts":326459807771,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2075324},
-{"pid":27369,"tid":27369,"ts":326459807802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2075324,"id":"0xaf8a67a3feb47934"},
-{"pid":27369,"tid":27369,"ts":326459807802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":2075324},
-{"pid":27369,"tid":27369,"ts":326459807832,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2075354},
-{"pid":27369,"tid":27369,"ts":326459807863,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2075385,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459807893,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2075415,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459807893,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2075415},
-{"pid":27369,"tid":27369,"ts":326459807893,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":31,"tts":2075415},
-{"pid":27369,"tid":27369,"ts":326459807924,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2075446,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459808015,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2075537},
-{"pid":27369,"tid":27369,"ts":326459819186,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2075904},
-{"pid":27369,"tid":27369,"ts":326459819674,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2076422},
-{"pid":27369,"tid":27369,"ts":326459819766,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2076484},
-{"pid":27369,"tid":27369,"ts":326459819918,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2076636},
-{"pid":27369,"tid":27369,"ts":326459813000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2076667,"id":"0x30000005f"},
-{"pid":27369,"tid":27369,"ts":326459819949,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901983},"tts":2076667,"id":"0x30000005f"},
-{"pid":27369,"tid":27369,"ts":326459819979,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2076697},
-{"pid":27369,"tid":27407,"ts":326459807527,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":91,"tts":1460308},
-{"pid":27369,"tid":27407,"ts":326459807558,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1460338,"id":"0xccc47502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459807558,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1460369,"id":"0xaf8a67a3feb47934"},
-{"pid":27369,"tid":27407,"ts":326459820193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1460491,"id":"0xaf8a6d48febbc614"},
-{"pid":27369,"tid":27407,"ts":326459820224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1460521},
-{"pid":27369,"tid":27407,"ts":326459820224,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1460521,"id":"0xba450702"},
-{"pid":27369,"tid":27407,"ts":326459820529,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1460643,"id":"0xaf8a6d49febbc614"},
-{"pid":27369,"tid":27407,"ts":326459820559,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1460674},
-{"pid":27369,"tid":27407,"ts":326459820559,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1460674,"id":"0xba450802"},
-{"pid":27369,"tid":27407,"ts":326459821994,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":122,"tts":1460796},
-{"pid":27369,"tid":27407,"ts":326459822024,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":91,"tts":1460827},
-{"pid":27369,"tid":27407,"ts":326459822055,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1460827,"id":"0xccc47702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459822055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1460827,"id":"0xaf8a67bcfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459836766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1461010,"id":"0xaf8a6d4afebbc614"},
-{"pid":27369,"tid":27407,"ts":326459836796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1461040},
-{"pid":27369,"tid":27407,"ts":326459836796,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1461040,"id":"0xba450902"},
-{"pid":27369,"tid":27407,"ts":326459837406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1461193,"id":"0xaf8a6d4bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459837406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1461193},
-{"pid":27369,"tid":27407,"ts":326459837406,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1461223,"id":"0xba450a02"},
-{"pid":27369,"tid":27407,"ts":326459837925,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1461315},
-{"pid":27369,"tid":27407,"ts":326459837956,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":122,"tdur":123,"tts":1461345},
-{"pid":27369,"tid":27407,"ts":326459837956,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1461345,"id":"0xccc47802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459837986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1461376,"id":"0xaf8a67bdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459839726,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1461529},
-{"pid":27369,"tid":27407,"ts":326459839757,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1461559},
-{"pid":27369,"tid":27407,"ts":326459839757,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1461559,"id":"0xccc47a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459839787,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1461590,"id":"0xaf8a67befeb47934"},
-{"pid":27369,"tid":27407,"ts":326459845494,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":245,"tdur":244,"tts":1461742},
-{"pid":27369,"tid":27407,"ts":326459845555,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1461803},
-{"pid":27369,"tid":27407,"ts":326459845555,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1461803,"id":"0xccc47c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459845616,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1461864,"id":"0xaf8a67bffeb47934"},
-{"pid":27369,"tid":27407,"ts":326459849798,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1462078,"id":"0xaf8a6d44febbc614"},
-{"pid":27369,"tid":27407,"ts":326459849798,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1462078},
-{"pid":27369,"tid":27407,"ts":326459849828,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1462108,"id":"0xba450b02"},
-{"pid":27369,"tid":27407,"ts":326459850958,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1462261,"id":"0xaf8a6d45febbc614"},
-{"pid":27369,"tid":27407,"ts":326459850958,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1462261},
-{"pid":27369,"tid":27407,"ts":326459850988,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1462292,"id":"0xba450c02"},
-{"pid":27369,"tid":27407,"ts":326459853491,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1462444,"id":"0xaf8a6d46febbc614"},
-{"pid":27369,"tid":27407,"ts":326459853491,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":91,"tts":1462475},
-{"pid":27369,"tid":27407,"ts":326459853521,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1462475,"id":"0xba450d02"},
-{"pid":27369,"tid":27407,"ts":326459854376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1462627,"id":"0xaf8a6d47febbc614"},
-{"pid":27369,"tid":27407,"ts":326459854406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1462658},
-{"pid":27369,"tid":27407,"ts":326459854406,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1462658,"id":"0xba450e02"},
-{"pid":27369,"tid":27407,"ts":326459857123,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":153,"tts":1462780},
-{"pid":27369,"tid":27407,"ts":326459857184,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":123,"tts":1462810},
-{"pid":27369,"tid":27407,"ts":326459857184,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1462810,"id":"0xc4c16f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459857214,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1462841,"id":"0xaf8a67b9feb47934"},
-{"pid":27369,"tid":27407,"ts":326459867133,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1462994},
-{"pid":27369,"tid":27407,"ts":326459867194,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1463055},
-{"pid":27369,"tid":27407,"ts":326459867194,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1463055,"id":"0xccc47f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459867225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1463085,"id":"0xaf8a67bafeb47934"},
-{"pid":27369,"tid":27407,"ts":326459868781,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1463238},
-{"pid":27369,"tid":27407,"ts":326459868842,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":123,"tdur":122,"tts":1463299},
-{"pid":27369,"tid":27407,"ts":326459868842,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1463299,"id":"0xccc48102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459868873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1463329,"id":"0xaf8a67bbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459872413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1463543,"id":"0xaf8a6d40febbc614"},
-{"pid":27369,"tid":27407,"ts":326459872413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1463543},
-{"pid":27369,"tid":27407,"ts":326459872444,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1463573,"id":"0xba450f02"},
-{"pid":27369,"tid":27407,"ts":326459872505,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1463634,"id":"0xaf8a6d41febbc614"},
-{"pid":27369,"tid":27407,"ts":326459872505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1463634},
-{"pid":27369,"tid":27407,"ts":326459872535,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1463665,"id":"0xba451002"},
-{"pid":27369,"tid":27407,"ts":326459875649,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1463757},
-{"pid":27369,"tid":27407,"ts":326459875679,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":1463787},
-{"pid":27369,"tid":27407,"ts":326459875679,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1463787,"id":"0xccc48302","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326459819979,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2076697,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459819979,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2076697},
-{"pid":27369,"tid":27369,"ts":326459820040,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2076758},
-{"pid":27369,"tid":27369,"ts":326459820071,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2076789},
-{"pid":27369,"tid":27369,"ts":326459820101,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2076819},
-{"pid":27369,"tid":27369,"ts":326459820101,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2076850,"id":"0xaf8a6d48febbc614"},
-{"pid":27369,"tid":27369,"ts":326459820162,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2076880,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459820162,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2076911,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459820224,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2076941},
-{"pid":27369,"tid":27369,"ts":326459820376,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2077094},
-{"pid":27369,"tid":27369,"ts":326459820437,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2077155},
-{"pid":27369,"tid":27369,"ts":326459820437,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459818684},"dur":92,"tdur":61,"tts":2077155},
-{"pid":27369,"tid":27369,"ts":326459820468,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2077186},
-{"pid":27369,"tid":27369,"ts":326459820468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2077186,"id":"0xaf8a6d49febbc614"},
-{"pid":27369,"tid":27369,"ts":326459820620,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2077338},
-{"pid":27369,"tid":27369,"ts":326459820712,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2077460},
-{"pid":27369,"tid":27369,"ts":326459822360,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2077735},
-{"pid":27369,"tid":27369,"ts":326459822390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2077765,"id":"0xaf8a67bcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459822390,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2077765},
-{"pid":27369,"tid":27369,"ts":326459822390,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2077765},
-{"pid":27369,"tid":27369,"ts":326459822451,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2077826,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459822451,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2077826,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459822482,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":2077857},
-{"pid":27369,"tid":27369,"ts":326459822482,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2077857},
-{"pid":27369,"tid":27369,"ts":326459822513,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2077887,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459822604,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2077979},
-{"pid":27369,"tid":27369,"ts":326459835880,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2078589},
-{"pid":27369,"tid":27369,"ts":326459836369,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2079078},
-{"pid":27369,"tid":27369,"ts":326459836430,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":2079139},
-{"pid":27369,"tid":27369,"ts":326459836552,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":214,"tdur":214,"tts":2079261},
-{"pid":27369,"tid":27369,"ts":326459830000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2079291,"id":"0x300000060"},
-{"pid":27369,"tid":27369,"ts":326459836582,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901984},"tts":2079291,"id":"0x300000060"},
-{"pid":27369,"tid":27369,"ts":326459836613,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":153,"tdur":153,"tts":2079322},
-{"pid":27369,"tid":27369,"ts":326459836613,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2079322,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459836613,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2079322},
-{"pid":27369,"tid":27369,"ts":326459836643,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":123,"tdur":123,"tts":2079352},
-{"pid":27369,"tid":27369,"ts":326459836674,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2079383},
-{"pid":27369,"tid":27369,"ts":326459836674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2079413,"id":"0xaf8a6d4afebbc614"},
-{"pid":27369,"tid":27369,"ts":326459836735,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2079444,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459836735,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2079475,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459836796,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2079505},
-{"pid":27369,"tid":27369,"ts":326459837254,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2079749},
-{"pid":27369,"tid":27369,"ts":326459837284,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2079780},
-{"pid":27369,"tid":27369,"ts":326459837284,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459835366},"dur":92,"tdur":91,"tts":2079780},
-{"pid":27369,"tid":27369,"ts":326459837315,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2079810},
-{"pid":27369,"tid":27369,"ts":326459837315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2079810,"id":"0xaf8a6d4bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459837406,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2079902},
-{"pid":27369,"tid":27369,"ts":326459837712,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2080054},
-{"pid":27369,"tid":27369,"ts":326459838169,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2080268},
-{"pid":27369,"tid":27369,"ts":326459838169,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2080268,"id":"0xaf8a67bdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459838169,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":123,"tdur":91,"tts":2080299},
-{"pid":27369,"tid":27369,"ts":326459838200,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":92,"tdur":61,"tts":2080299},
-{"pid":27369,"tid":27369,"ts":326459838353,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2080451},
-{"pid":27369,"tid":27369,"ts":326459839940,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2080604},
-{"pid":27369,"tid":27369,"ts":326459839970,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2080634,"id":"0xaf8a67befeb47934"},
-{"pid":27369,"tid":27369,"ts":326459839970,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2080634},
-{"pid":27369,"tid":27369,"ts":326459839970,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":2080634},
-{"pid":27369,"tid":27369,"ts":326459839970,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2080634},
-{"pid":27369,"tid":27369,"ts":326459840062,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2080726,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459840062,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2080726,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459840092,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":31,"tts":2080756},
-{"pid":27369,"tid":27369,"ts":326459840092,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2080756},
-{"pid":27369,"tid":27369,"ts":326459840123,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2080787,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459840214,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2080878},
-{"pid":27369,"tid":27369,"ts":326459848272,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2081153},
-{"pid":27369,"tid":27369,"ts":326459848272,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":61,"tts":2081153},
-{"pid":27369,"tid":27369,"ts":326459848363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2081245,"id":"0xaf8a67bffeb47934"},
-{"pid":27369,"tid":27369,"ts":326459848394,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":519,"tts":2081245},
-{"pid":27369,"tid":27369,"ts":326459848394,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":519,"tts":2081245},
-{"pid":27369,"tid":27369,"ts":326459848424,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":489,"tdur":458,"tts":2081306},
-{"pid":27369,"tid":27369,"ts":326459848699,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2081550},
-{"pid":27369,"tid":27369,"ts":326459848730,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2081580},
-{"pid":27369,"tid":27369,"ts":326459848730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2081580,"id":"0xaf8a67b8feb47934"},
-{"pid":27369,"tid":27369,"ts":326459848852,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2081703},
-{"pid":27369,"tid":27369,"ts":326459848882,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2081733},
-{"pid":27369,"tid":27369,"ts":326459848974,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2081825},
-{"pid":27369,"tid":27369,"ts":326459849065,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2081916},
-{"pid":27369,"tid":27369,"ts":326459849096,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2081947,"id":"0xaf8a67b8feb47934"},
-{"pid":27369,"tid":27369,"ts":326459849096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1923,"tdur":1587,"tts":2081947},
-{"pid":27369,"tid":27369,"ts":326459849126,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2081977},
-{"pid":27369,"tid":27369,"ts":326459849126,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1862,"tdur":1526,"tts":2081977},
-{"pid":27369,"tid":27369,"ts":326459849157,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":92},"dur":61,"tdur":61,"tts":2082008},
-{"pid":27369,"tid":27369,"ts":326459849157,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2082008},
-{"pid":27369,"tid":27369,"ts":326459849218,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":2082069},
-{"pid":27369,"tid":27369,"ts":326459849248,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2082099,"id":"0x30000005f"},
-{"pid":27369,"tid":27369,"ts":326459849248,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2082099},
-{"pid":27369,"tid":27369,"ts":326459849248,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":2082130},
-{"pid":27369,"tid":27369,"ts":326459849279,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2082130},
-{"pid":27369,"tid":27369,"ts":326459849523,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2082374},
-{"pid":27369,"tid":27369,"ts":326459849554,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2082404},
-{"pid":27369,"tid":27369,"ts":326459849554,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":2082404},
-{"pid":27369,"tid":27369,"ts":326459849584,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":92},"dur":31,"tdur":31,"tts":2082435},
-{"pid":27369,"tid":27369,"ts":326459849615,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":92},"dur":30,"tdur":30,"tts":2082466},
-{"pid":27369,"tid":27369,"ts":326459849645,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":92},"tts":2082496},
-{"pid":27369,"tid":27369,"ts":326459849645,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2082496},
-{"pid":27369,"tid":27369,"ts":326459849645,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2082496},
-{"pid":27369,"tid":27369,"ts":326459849676,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2082527},
-{"pid":27369,"tid":27369,"ts":326459849706,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2082557},
-{"pid":27369,"tid":27369,"ts":326459849706,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2082557,"id":"0xaf8a6d44febbc614"},
-{"pid":27369,"tid":27369,"ts":326459849798,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1190,"tdur":854,"tts":2082649},
-{"pid":27369,"tid":27369,"ts":326459849828,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":92},"dur":580,"tdur":214,"tts":2082679},
-{"pid":27369,"tid":27369,"ts":326459849828,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2082679},
-{"pid":27369,"tid":27369,"ts":326459849828,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2082679},
-{"pid":27369,"tid":27369,"ts":326459849859,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2082710},
-{"pid":27369,"tid":27369,"ts":326459849859,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2082710,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459849889,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2082740},
-{"pid":27369,"tid":27369,"ts":326459849889,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":367,"tdur":31,"tts":2082740},
-{"pid":27369,"tid":27369,"ts":326459850378,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2082893},
-{"pid":27369,"tid":27369,"ts":326459850408,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":367,"tts":2082923},
-{"pid":27369,"tid":27369,"ts":326459850408,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2082923},
-{"pid":27369,"tid":27369,"ts":326459850439,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2082954},
-{"pid":27369,"tid":27369,"ts":326459850439,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2082954},
-{"pid":27369,"tid":27369,"ts":326459850500,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":214,"tts":2083015},
-{"pid":27369,"tid":27369,"ts":326459850744,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2083290,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459850805,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2083320,"id":"0x30000005f"},
-{"pid":27369,"tid":27369,"ts":326459850835,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":2083351},
-{"pid":27369,"tid":27369,"ts":326459850835,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4256},"dur":92,"tdur":91,"tts":2083351},
-{"pid":27369,"tid":27369,"ts":326459850866,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2083381},
-{"pid":27369,"tid":27369,"ts":326459850896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2083412,"id":"0xaf8a6d45febbc614"},
-{"pid":27369,"tid":27369,"ts":326459850927,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2083442},
-{"pid":27369,"tid":27369,"ts":326459850958,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2083473},
-{"pid":27369,"tid":27369,"ts":326459851263,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2083625},
-{"pid":27369,"tid":27369,"ts":326459852575,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2083869},
-{"pid":27369,"tid":27369,"ts":326459853063,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2084358},
-{"pid":27369,"tid":27369,"ts":326459853124,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2084419},
-{"pid":27369,"tid":27369,"ts":326459853247,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2084541},
-{"pid":27369,"tid":27369,"ts":326459847000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2084571,"id":"0x300000061"},
-{"pid":27369,"tid":27369,"ts":326459853308,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901985},"tts":2084602,"id":"0x300000061"},
-{"pid":27369,"tid":27369,"ts":326459853308,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2084602},
-{"pid":27369,"tid":27369,"ts":326459853338,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2084632,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459853338,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2084632},
-{"pid":27369,"tid":27369,"ts":326459853369,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2084663},
-{"pid":27369,"tid":27369,"ts":326459853399,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2084694},
-{"pid":27369,"tid":27369,"ts":326459853399,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2084694,"id":"0xaf8a6d46febbc614"},
-{"pid":27369,"tid":27369,"ts":326459853460,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2084755,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459853460,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2084755,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459853521,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2084816},
-{"pid":27369,"tid":27369,"ts":326459853674,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2084968},
-{"pid":27369,"tid":27369,"ts":326459853704,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2084999},
-{"pid":27369,"tid":27369,"ts":326459853735,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459852048},"dur":61,"tdur":61,"tts":2085029},
-{"pid":27369,"tid":27369,"ts":326459853735,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2085029},
-{"pid":27369,"tid":27369,"ts":326459853765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2085060,"id":"0xaf8a6d47febbc614"},
-{"pid":27369,"tid":27369,"ts":326459853918,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2085212},
-{"pid":27369,"tid":27369,"ts":326459854010,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2085304},
-{"pid":27369,"tid":27369,"ts":326459857458,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2085640},
-{"pid":27369,"tid":27369,"ts":326459857489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2085670,"id":"0xaf8a67b9feb47934"},
-{"pid":27369,"tid":27369,"ts":326459857489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2085670},
-{"pid":27369,"tid":27369,"ts":326459857550,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2085731},
-{"pid":27369,"tid":27369,"ts":326459857550,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2085731},
-{"pid":27369,"tid":27369,"ts":326459857641,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2085823},
-{"pid":27369,"tid":27369,"ts":326459867408,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2086097},
-{"pid":27369,"tid":27369,"ts":326459867439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2086128,"id":"0xaf8a67bafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459867439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2086128},
-{"pid":27369,"tid":27369,"ts":326459867469,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":2086158},
-{"pid":27369,"tid":27369,"ts":326459867530,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2086220,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459867530,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2086220,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459867530,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2086220},
-{"pid":27369,"tid":27369,"ts":326459867561,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2086250},
-{"pid":27369,"tid":27369,"ts":326459867561,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2086281,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459867683,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2086372},
-{"pid":27369,"tid":27369,"ts":326459869117,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2086555},
-{"pid":27369,"tid":27369,"ts":326459869117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2086555,"id":"0xaf8a67bbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459869148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":457,"tdur":458,"tts":2086586},
-{"pid":27369,"tid":27369,"ts":326459869148,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":457,"tdur":458,"tts":2086586},
-{"pid":27369,"tid":27369,"ts":326459869178,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":428,"tts":2086616},
-{"pid":27369,"tid":27369,"ts":326459869422,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2086860},
-{"pid":27369,"tid":27369,"ts":326459869422,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2086860},
-{"pid":27369,"tid":27369,"ts":326459869453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2086891,"id":"0xaf8a67b4feb47934"},
-{"pid":27369,"tid":27369,"ts":326459869544,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2086983},
-{"pid":27369,"tid":27369,"ts":326459869575,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2087013},
-{"pid":27369,"tid":27369,"ts":326459869850,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2087135},
-{"pid":27369,"tid":27369,"ts":326459870124,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2087440},
-{"pid":27369,"tid":27369,"ts":326459870643,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2087929},
-{"pid":27369,"tid":27369,"ts":326459870704,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2087990},
-{"pid":27369,"tid":27369,"ts":326459870796,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":274,"tdur":244,"tts":2088081},
-{"pid":27369,"tid":27369,"ts":326459863000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2088112,"id":"0x300000062"},
-{"pid":27369,"tid":27369,"ts":326459870857,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901986},"tts":2088142,"id":"0x300000062"},
-{"pid":27369,"tid":27369,"ts":326459870857,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2088142},
-{"pid":27369,"tid":27369,"ts":326459870857,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2088173,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459870887,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":2088173},
-{"pid":27369,"tid":27369,"ts":326459870887,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":2088173},
-{"pid":27369,"tid":27369,"ts":326459870918,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2088234},
-{"pid":27369,"tid":27369,"ts":326459870948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2088234,"id":"0xaf8a6d40febbc614"},
-{"pid":27369,"tid":27369,"ts":326459871009,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2088295,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459871009,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2088295,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459871070,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2088356},
-{"pid":27369,"tid":27369,"ts":326459871620,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2088631},
-{"pid":27369,"tid":27369,"ts":326459871650,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":92,"tdur":92,"tts":2088661},
-{"pid":27369,"tid":27369,"ts":326459871681,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459868729},"dur":30,"tdur":30,"tts":2088692},
-{"pid":27369,"tid":27369,"ts":326459871681,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2088692},
-{"pid":27369,"tid":27369,"ts":326459871711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2088722,"id":"0xaf8a6d41febbc614"},
-{"pid":27369,"tid":27369,"ts":326459871772,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":2,"delay":9.457},"dur":92,"tdur":61,"tts":2088783},
-{"pid":27369,"tid":27369,"ts":326459871772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2088783,"id":"0xaf8a67b5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459871894,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2088875},
-{"pid":27369,"tid":27369,"ts":326459872108,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2089119},
-{"pid":27369,"tid":27369,"ts":326459872230,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2089211},
-{"pid":27369,"tid":27369,"ts":326459872261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2089241,"id":"0xaf8a67b4feb47934"},
-{"pid":27369,"tid":27369,"ts":326459872261,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":30,"tdur":31,"tts":2089241},
-{"pid":27369,"tid":27369,"ts":326459872322,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2089302},
-{"pid":27369,"tid":27369,"ts":326459872322,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":458,"tdur":31,"tts":2089302},
-{"pid":27369,"tid":27369,"ts":326459872871,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2089424},
-{"pid":27369,"tid":27369,"ts":326459872993,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2089546},
-{"pid":27369,"tid":27369,"ts":326459875893,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2089790},
-{"pid":27369,"tid":27369,"ts":326459875893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2089790,"id":"0xaf8a67b6feb47934"},
-{"pid":27369,"tid":27369,"ts":326459875923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":122,"tts":2089821},
-{"pid":27369,"tid":27369,"ts":326459875923,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2089821},
-{"pid":27369,"tid":27369,"ts":326459875984,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2089882,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459875984,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2089882,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459875984,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2089882},
-{"pid":27369,"tid":27369,"ts":326459876015,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2089912},
-{"pid":27369,"tid":27369,"ts":326459876015,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2089912,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459876106,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2090004},
-{"pid":27369,"tid":27369,"ts":326459881295,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2090126},
-{"pid":27369,"tid":27369,"ts":326459881325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459881},"tts":2090157,"id":"0xaf8a67b5feb47934"},
-{"pid":27369,"tid":27369,"ts":326459881325,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1740,"tdur":1587,"tts":2090157},
-{"pid":27369,"tid":27369,"ts":326459881356,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2090187},
-{"pid":27369,"tid":27369,"ts":326459881356,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1678,"tdur":1526,"tts":2090187},
-{"pid":27369,"tid":27369,"ts":326459881386,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":93},"dur":61,"tdur":61,"tts":2090218},
-{"pid":27369,"tid":27369,"ts":326459881386,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2090218},
-{"pid":27369,"tid":27369,"ts":326459881478,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2090309},
-{"pid":27369,"tid":27369,"ts":326459881478,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2090309,"id":"0x300000060"},
-{"pid":27369,"tid":27369,"ts":326459881508,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2090340},
-{"pid":27369,"tid":27369,"ts":326459881508,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2090340},
-{"pid":27369,"tid":27369,"ts":326459881539,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2090370},
-{"pid":27369,"tid":27369,"ts":326459881783,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2090645},
-{"pid":27369,"tid":27369,"ts":326459881814,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":2090645},
-{"pid":27369,"tid":27369,"ts":326459881844,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2090676},
-{"pid":27369,"tid":27369,"ts":326459881844,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":93},"dur":31,"tdur":30,"tts":2090676},
-{"pid":27369,"tid":27369,"ts":326459881875,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":93},"dur":30,"tdur":0,"tts":2090737},
-{"pid":27369,"tid":27369,"ts":326459881905,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":93},"tts":2090737},
-{"pid":27369,"tid":27369,"ts":326459881905,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2090767},
-{"pid":27369,"tid":27369,"ts":326459881936,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2090767},
-{"pid":27369,"tid":27369,"ts":326459881936,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2090767},
-{"pid":27369,"tid":27369,"ts":326459881966,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2090798},
-{"pid":27369,"tid":27369,"ts":326459881997,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2090828,"id":"0xaf8a6d42febbc614"},
-{"pid":27369,"tid":27369,"ts":326459882058,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":976,"tdur":824,"tts":2090889},
-{"pid":27369,"tid":27369,"ts":326459882088,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":93},"dur":367,"tdur":213,"tts":2090920},
-{"pid":27369,"tid":27369,"ts":326459882088,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2090920},
-{"pid":27369,"tid":27369,"ts":326459882119,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2090950},
-{"pid":27369,"tid":27369,"ts":326459882119,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2090950},
-{"pid":27369,"tid":27369,"ts":326459882119,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2090950,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459882149,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2090981},
-{"pid":27369,"tid":27369,"ts":326459882455,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2091133},
-{"pid":27369,"tid":27369,"ts":326459882485,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":2091164},
-{"pid":27369,"tid":27369,"ts":326459882485,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2091164},
-{"pid":27369,"tid":27369,"ts":326459882485,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2091164},
-{"pid":27369,"tid":27369,"ts":326459882516,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2091194},
-{"pid":27369,"tid":27369,"ts":326459882546,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":244,"tts":2091225},
-{"pid":27369,"tid":27369,"ts":326459882821,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2091500,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459882882,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2091561,"id":"0x300000060"},
-{"pid":27369,"tid":27369,"ts":326459882882,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2091561},
-{"pid":27369,"tid":27369,"ts":326459882912,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":7523},"dur":61,"tdur":61,"tts":2091591},
-{"pid":27369,"tid":27369,"ts":326459882912,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2091591},
-{"pid":27369,"tid":27369,"ts":326459882943,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2091622,"id":"0xaf8a6d43febbc614"},
-{"pid":27369,"tid":27369,"ts":326459883004,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2091683},
-{"pid":27369,"tid":27369,"ts":326459883004,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2091683},
-{"pid":27369,"tid":27407,"ts":326459875679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1463818,"id":"0xaf8a67b6feb47934"},
-{"pid":27369,"tid":27407,"ts":326459882058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1464001,"id":"0xaf8a6d42febbc614"},
-{"pid":27369,"tid":27407,"ts":326459882058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":91,"tts":1464001},
-{"pid":27369,"tid":27407,"ts":326459882058,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":61,"tts":1464001},
-{"pid":27369,"tid":27407,"ts":326459882210,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1464062,"id":"0xba451102"},
-{"pid":27369,"tid":27407,"ts":326459883004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1464153,"id":"0xaf8a6d43febbc614"},
-{"pid":27369,"tid":27407,"ts":326459883004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1464153},
-{"pid":27369,"tid":27407,"ts":326459883034,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1464184,"id":"0xba451202"},
-{"pid":27369,"tid":27407,"ts":326459889840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1464306,"id":"0xaf8a6d5cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459889871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1464336},
-{"pid":27369,"tid":27407,"ts":326459889871,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1464336,"id":"0xba451302"},
-{"pid":27369,"tid":27407,"ts":326459891214,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1464459},
-{"pid":27369,"tid":27407,"ts":326459891244,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":61,"tts":1464489},
-{"pid":27369,"tid":27407,"ts":326459891244,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1464489,"id":"0xc4c17202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459891275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1464520,"id":"0xaf8a67b7feb47934"},
-{"pid":27369,"tid":27407,"ts":326459891946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1464672,"id":"0xaf8a6d5dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459891977,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1464672},
-{"pid":27369,"tid":27407,"ts":326459891977,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1464672,"id":"0xba451402"},
-{"pid":27369,"tid":27407,"ts":326459899210,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1464764},
-{"pid":27369,"tid":27407,"ts":326459899241,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1464794},
-{"pid":27369,"tid":27407,"ts":326459899271,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1464825,"id":"0xccc48502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459899271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1464825,"id":"0xaf8a67b0feb47934"},
-{"pid":27369,"tid":27407,"ts":326459903117,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":336,"tdur":214,"tts":1465038},
-{"pid":27369,"tid":27407,"ts":326459903300,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":123,"tts":1465099},
-{"pid":27369,"tid":27407,"ts":326459903300,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1465099,"id":"0xccc48702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459903361,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1465160,"id":"0xaf8a67b1feb47934"},
-{"pid":27369,"tid":27407,"ts":326459906199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1465374,"id":"0xaf8a6d5efebbc614"},
-{"pid":27369,"tid":27407,"ts":326459906199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1465374},
-{"pid":27369,"tid":27407,"ts":326459906230,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1465405,"id":"0xba451502"},
-{"pid":27369,"tid":27407,"ts":326459907176,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1465527,"id":"0xaf8a6d5ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459907176,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1465527},
-{"pid":27369,"tid":27407,"ts":326459907176,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1465527,"id":"0xba451602"},
-{"pid":27369,"tid":27407,"ts":326459909740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1465710,"id":"0xaf8a6d58febbc614"},
-{"pid":27369,"tid":27407,"ts":326459909770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1465740},
-{"pid":27369,"tid":27407,"ts":326459909770,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1465740,"id":"0xba451702"},
-{"pid":27369,"tid":27407,"ts":326459910838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1465893,"id":"0xaf8a6d59febbc614"},
-{"pid":27369,"tid":27407,"ts":326459910838,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1465893},
-{"pid":27369,"tid":27407,"ts":326459910869,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1465923,"id":"0xba451802"},
-{"pid":27369,"tid":27407,"ts":326459917492,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":153,"tts":1466015},
-{"pid":27369,"tid":27407,"ts":326459917553,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1466046},
-{"pid":27369,"tid":27407,"ts":326459917553,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1466046,"id":"0xc4c17502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459917583,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1466076,"id":"0xaf8a67b3feb47934"},
-{"pid":27369,"tid":27407,"ts":326459920849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1466259,"id":"0xaf8a6d5afebbc614"},
-{"pid":27369,"tid":27407,"ts":326459920880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1466290},
-{"pid":27369,"tid":27407,"ts":326459920880,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1466290,"id":"0xba451902"},
-{"pid":27369,"tid":27407,"ts":326459922375,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1466442},
-{"pid":27369,"tid":27407,"ts":326459922406,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1466473},
-{"pid":27369,"tid":27407,"ts":326459922406,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1466473,"id":"0xccc48902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459922436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1466503,"id":"0xaf8a604cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459923321,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1466656},
-{"pid":27369,"tid":27407,"ts":326459923382,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":92,"tdur":92,"tts":1466717},
-{"pid":27369,"tid":27407,"ts":326459923382,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1466717,"id":"0xccc48b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459923413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1466748,"id":"0xaf8a604dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326459923535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1466870,"id":"0xaf8a6d5bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459923535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1466870},
-{"pid":27369,"tid":27407,"ts":326459923565,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1466900,"id":"0xba451a02"},
-{"pid":27369,"tid":27407,"ts":326459925214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1467022,"id":"0xaf8a6d54febbc614"},
-{"pid":27369,"tid":27407,"ts":326459925214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1467053},
-{"pid":27369,"tid":27407,"ts":326459925244,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1467053,"id":"0xba451b02"},
-{"pid":27369,"tid":27407,"ts":326459926648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1467175,"id":"0xaf8a6d55febbc614"},
-{"pid":27369,"tid":27407,"ts":326459926648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1467175},
-{"pid":27369,"tid":27407,"ts":326459926679,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1467205,"id":"0xba451c02"},
-{"pid":27369,"tid":27407,"ts":326459928662,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1467297},
-{"pid":27369,"tid":27407,"ts":326459928693,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":1467327},
-{"pid":27369,"tid":27369,"ts":326459883157,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2091835},
-{"pid":27369,"tid":27369,"ts":326459888772,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2092171},
-{"pid":27369,"tid":27369,"ts":326459889413,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2092812},
-{"pid":27369,"tid":27369,"ts":326459889474,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":92,"tts":2092903},
-{"pid":27369,"tid":27369,"ts":326459889627,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":213,"tdur":213,"tts":2093026},
-{"pid":27369,"tid":27369,"ts":326459880000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2093056,"id":"0x300000063"},
-{"pid":27369,"tid":27369,"ts":326459889657,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901987},"tts":2093056,"id":"0x300000063"},
-{"pid":27369,"tid":27369,"ts":326459889657,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2093056},
-{"pid":27369,"tid":27369,"ts":326459889688,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2093087,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459889688,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2093087},
-{"pid":27369,"tid":27369,"ts":326459889718,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2093117},
-{"pid":27369,"tid":27369,"ts":326459889749,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2093148},
-{"pid":27369,"tid":27369,"ts":326459889749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2093148,"id":"0xaf8a6d5cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459889810,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2093209,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459889810,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2093239,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459889871,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2093270},
-{"pid":27369,"tid":27369,"ts":326459891794,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2093514},
-{"pid":27369,"tid":27369,"ts":326459891855,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2093575},
-{"pid":27369,"tid":27369,"ts":326459891855,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459885411},"dur":91,"tdur":92,"tts":2093575},
-{"pid":27369,"tid":27369,"ts":326459891885,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":2093605},
-{"pid":27369,"tid":27369,"ts":326459891885,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2093605,"id":"0xaf8a6d5dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459891977,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2093697},
-{"pid":27369,"tid":27369,"ts":326459892557,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2093819},
-{"pid":27369,"tid":27369,"ts":326459892648,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2093911},
-{"pid":27369,"tid":27369,"ts":326459892679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2093941,"id":"0xaf8a67b7feb47934"},
-{"pid":27369,"tid":27369,"ts":326459892679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2093941},
-{"pid":27369,"tid":27369,"ts":326459892740,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2094002},
-{"pid":27369,"tid":27369,"ts":326459892740,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2094002},
-{"pid":27369,"tid":27369,"ts":326459892831,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2094094},
-{"pid":27369,"tid":27369,"ts":326459899546,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2094338},
-{"pid":27369,"tid":27369,"ts":326459899576,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2094368,"id":"0xaf8a67b0feb47934"},
-{"pid":27369,"tid":27369,"ts":326459899576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2094368},
-{"pid":27369,"tid":27369,"ts":326459899576,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2094368},
-{"pid":27369,"tid":27369,"ts":326459899638,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2094430,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459899668,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2094460,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459899668,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2094460},
-{"pid":27369,"tid":27369,"ts":326459899668,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2094460},
-{"pid":27369,"tid":27369,"ts":326459899699,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2094491,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459899790,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2094582},{"pid":27369,"tid":27369,"ts":326459903758,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2094887},
-{"pid":27369,"tid":27369,"ts":326459904277,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2095345},
-{"pid":27369,"tid":27369,"ts":326459904277,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":31,"tts":2095345},
-{"pid":27369,"tid":27369,"ts":326459904612,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":122,"tts":2095467},
-{"pid":27369,"tid":27369,"ts":326459904795,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":1557,"tdur":275,"tts":2095650},
-{"pid":27369,"tid":27369,"ts":326459897000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2095681,"id":"0x300000064"},
-{"pid":27369,"tid":27369,"ts":326459904857,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901988},"tts":2095681,"id":"0x300000064"},
-{"pid":27369,"tid":27369,"ts":326459904887,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":1465,"tdur":214,"tts":2095711},
-{"pid":27369,"tid":27369,"ts":326459904887,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2095711,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459904887,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":1465,"tdur":183,"tts":2095742},
-{"pid":27369,"tid":27369,"ts":326459904918,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":1434,"tdur":183,"tts":2095742},
-{"pid":27369,"tid":27369,"ts":326459904948,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":1373,"tdur":122,"tts":2095772},
-{"pid":27369,"tid":27369,"ts":326459904979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2095803,"id":"0xaf8a6d5efebbc614"},
-{"pid":27369,"tid":27369,"ts":326459906321,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2095894,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459906352,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2095925,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459906383,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2095956},
-{"pid":27369,"tid":27369,"ts":326459906840,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2096230},
-{"pid":27369,"tid":27369,"ts":326459906901,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":397,"tdur":122,"tts":2096291},
-{"pid":27369,"tid":27369,"ts":326459906901,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459902092},"dur":367,"tdur":92,"tts":2096291},
-{"pid":27369,"tid":27369,"ts":326459906932,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":336,"tdur":61,"tts":2096322},
-{"pid":27369,"tid":27369,"ts":326459906932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2096322,"id":"0xaf8a6d5ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459907329,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2096444},
-{"pid":27369,"tid":27369,"ts":326459907542,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2096657},
-{"pid":27369,"tid":27369,"ts":326459907634,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2096749},
-{"pid":27369,"tid":27369,"ts":326459907664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2096780,"id":"0xaf8a67b1feb47934"},
-{"pid":27369,"tid":27369,"ts":326459907664,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":489,"tdur":488,"tts":2096780},
-{"pid":27369,"tid":27369,"ts":326459907695,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2096810},
-{"pid":27369,"tid":27369,"ts":326459907725,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":428,"tdur":427,"tts":2096841},
-{"pid":27369,"tid":27369,"ts":326459907970,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":91,"tts":2097085},
-{"pid":27369,"tid":27369,"ts":326459907970,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2097085},
-{"pid":27369,"tid":27369,"ts":326459908000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2097115,"id":"0xaf8a67b2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459908092,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2097207},
-{"pid":27369,"tid":27369,"ts":326459908122,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2097237},
-{"pid":27369,"tid":27369,"ts":326459908183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459902},"tts":2097298,"id":"0xaf8a67aafeb47934"},
-{"pid":27369,"tid":27369,"ts":326459908183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ui/events/gesture_detection/gesture_detector.cc","src_func":"StartTimeout"},"dur":0,"tdur":0,"tts":2097298},
-{"pid":27369,"tid":27369,"ts":326459908275,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2097390},
-{"pid":27369,"tid":27369,"ts":326459908427,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2097543},
-{"pid":27369,"tid":27369,"ts":326459908458,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2097573,"id":"0xaf8a67b2feb47934"},
-{"pid":27369,"tid":27369,"ts":326459908458,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":5524,"tdur":1587,"tts":2097573},
-{"pid":27369,"tid":27369,"ts":326459908458,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2097573},
-{"pid":27369,"tid":27369,"ts":326459908488,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":5464,"tdur":1526,"tts":2097604},
-{"pid":27369,"tid":27369,"ts":326459908488,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":94},"dur":61,"tdur":61,"tts":2097604},
-{"pid":27369,"tid":27369,"ts":326459908519,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":2097634},
-{"pid":27369,"tid":27369,"ts":326459908580,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2097695},
-{"pid":27369,"tid":27369,"ts":326459908580,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2097695,"id":"0x300000061"},
-{"pid":27369,"tid":27369,"ts":326459908580,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2097695,"id":"0x300000062"},
-{"pid":27369,"tid":27369,"ts":326459908611,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2097726},
-{"pid":27369,"tid":27369,"ts":326459908611,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":2097726},
-{"pid":27369,"tid":27369,"ts":326459908641,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2097756},
-{"pid":27369,"tid":27369,"ts":326459908885,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2098000},
-{"pid":27369,"tid":27369,"ts":326459908916,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2098031},
-{"pid":27369,"tid":27369,"ts":326459908946,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2098061},
-{"pid":27369,"tid":27369,"ts":326459908946,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":94},"dur":31,"tdur":31,"tts":2098061},
-{"pid":27369,"tid":27369,"ts":326459908977,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":94},"dur":30,"tdur":30,"tts":2098092},
-{"pid":27369,"tid":27369,"ts":326459909007,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":94},"tts":2098122},
-{"pid":27369,"tid":27369,"ts":326459909007,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2098122},
-{"pid":27369,"tid":27369,"ts":326459909038,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2098153},
-{"pid":27369,"tid":27369,"ts":326459909038,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2098153},
-{"pid":27369,"tid":27369,"ts":326459909068,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":794,"tdur":61,"tts":2098184},
-{"pid":27369,"tid":27369,"ts":326459909068,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2098184,"id":"0xaf8a6d58febbc614"},
-{"pid":27369,"tid":27369,"ts":326459909892,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":4060,"tdur":855,"tts":2098275},
-{"pid":27369,"tid":27369,"ts":326459909923,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":94},"dur":214,"tdur":213,"tts":2098306},
-{"pid":27369,"tid":27369,"ts":326459909923,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2098306},
-{"pid":27369,"tid":27369,"ts":326459909953,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2098336},
-{"pid":27369,"tid":27369,"ts":326459909953,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2098336},
-{"pid":27369,"tid":27369,"ts":326459909953,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2098367,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459909984,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2098367},
-{"pid":27369,"tid":27369,"ts":326459910106,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2098489},
-{"pid":27369,"tid":27369,"ts":326459910137,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":336,"tts":2098519},
-{"pid":27369,"tid":27369,"ts":326459910137,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2098519},
-{"pid":27369,"tid":27369,"ts":326459910167,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":274,"tts":2098550},
-{"pid":27369,"tid":27369,"ts":326459910167,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2098550},
-{"pid":27369,"tid":27369,"ts":326459910228,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2098611},
-{"pid":27369,"tid":27369,"ts":326459910472,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2098855,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459910533,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2098916,"id":"0x300000061"},
-{"pid":27369,"tid":27369,"ts":326459910533,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2098916,"id":"0x300000062"},
-{"pid":27369,"tid":27369,"ts":326459910564,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":3357,"tdur":152,"tts":2098947},
-{"pid":27369,"tid":27369,"ts":326459910564,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":10685},"dur":3327,"tdur":122,"tts":2098947},
-{"pid":27369,"tid":27369,"ts":326459910594,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":3266,"tdur":61,"tts":2098977},
-{"pid":27369,"tid":27369,"ts":326459910625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2099008,"id":"0xaf8a6d59febbc614"},
-{"pid":27369,"tid":27369,"ts":326459913891,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2099069},
-{"pid":27369,"tid":27369,"ts":326459913891,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2099069},
-{"pid":27369,"tid":27369,"ts":326459914196,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2099374},
-{"pid":27369,"tid":27369,"ts":326459914318,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2099496},
-{"pid":27369,"tid":27369,"ts":326459916424,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2099557},
-{"pid":27369,"tid":27369,"ts":326459917797,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2099740},
-{"pid":27369,"tid":27369,"ts":326459917828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2099771,"id":"0xaf8a67b3feb47934"},
-{"pid":27369,"tid":27369,"ts":326459917828,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2099771},
-{"pid":27369,"tid":27369,"ts":326459917858,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":2099832},
-{"pid":27369,"tid":27369,"ts":326459917889,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2099832},
-{"pid":27369,"tid":27369,"ts":326459917980,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2099923},
-{"pid":27369,"tid":27369,"ts":326459919323,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2100137},
-{"pid":27369,"tid":27369,"ts":326459919811,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2100595},
-{"pid":27369,"tid":27369,"ts":326459919903,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2100686},
-{"pid":27369,"tid":27369,"ts":326459920056,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":91,"tts":2100839},
-{"pid":27369,"tid":27369,"ts":326459913000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2100869,"id":"0x300000065"},
-{"pid":27369,"tid":27369,"ts":326459920117,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901989},"tts":2100900,"id":"0x300000065"},
-{"pid":27369,"tid":27369,"ts":326459920117,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":30,"tts":2100900},
-{"pid":27369,"tid":27369,"ts":326459920147,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2100930,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459920178,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2100961},
-{"pid":27369,"tid":27369,"ts":326459920544,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2101236},
-{"pid":27369,"tid":27369,"ts":326459920574,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":458,"tdur":153,"tts":2101266},
-{"pid":27369,"tid":27369,"ts":326459920574,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459918774},"dur":428,"tdur":122,"tts":2101266},
-{"pid":27369,"tid":27369,"ts":326459920605,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":91,"tts":2101297},
-{"pid":27369,"tid":27369,"ts":326459920636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2101327,"id":"0xaf8a6d5afebbc614"},
-{"pid":27369,"tid":27369,"ts":326459921063,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2101449},
-{"pid":27369,"tid":27369,"ts":326459921276,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2101663},
-{"pid":27369,"tid":27369,"ts":326459922680,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2101876},
-{"pid":27369,"tid":27369,"ts":326459922680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2101876,"id":"0xaf8a604cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459922680,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":31,"tts":2101876},
-{"pid":27369,"tid":27369,"ts":326459923077,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":611,"tdur":275,"tts":2101907},
-{"pid":27369,"tid":27369,"ts":326459923077,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":611,"tdur":275,"tts":2101907},
-{"pid":27369,"tid":27369,"ts":326459923138,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2101968,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459923138,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2101968,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459923169,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":519,"tdur":183,"tts":2101999},
-{"pid":27369,"tid":27369,"ts":326459923169,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":519,"tdur":183,"tts":2101999},
-{"pid":27369,"tid":27369,"ts":326459923199,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2102029,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459923230,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":458,"tdur":122,"tts":2102060},
-{"pid":27369,"tid":27369,"ts":326459923230,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":427,"tdur":91,"tts":2102060},
-{"pid":27369,"tid":27369,"ts":326459923260,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":61,"tts":2102090},
-{"pid":27369,"tid":27369,"ts":326459923291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2102121,"id":"0xaf8a6d5bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459923657,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2102151,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459923657,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2102151,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459923749,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2102273},
-{"pid":27369,"tid":27369,"ts":326459923840,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2102334},
-{"pid":27369,"tid":27369,"ts":326459923871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2102365,"id":"0xaf8a604dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459923871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":519,"tts":2102365},
-{"pid":27369,"tid":27369,"ts":326459923871,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":488,"tdur":458,"tts":2102395},
-{"pid":27369,"tid":27369,"ts":326459923901,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":458,"tdur":458,"tts":2102395},
-{"pid":27369,"tid":27369,"ts":326459924176,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":2102670},
-{"pid":27369,"tid":27369,"ts":326459924206,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2102701},
-{"pid":27369,"tid":27369,"ts":326459924206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2102701,"id":"0xaf8a604efeb47934"},
-{"pid":27369,"tid":27369,"ts":326459924298,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2102792},
-{"pid":27369,"tid":27369,"ts":326459924328,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2102823},
-{"pid":27369,"tid":27369,"ts":326459924420,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2102914},
-{"pid":27369,"tid":27369,"ts":326459924512,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2103006},
-{"pid":27369,"tid":27369,"ts":326459924512,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2103006,"id":"0xaf8a604efeb47934"},
-{"pid":27369,"tid":27369,"ts":326459924542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2320,"tdur":1435,"tts":2103036},
-{"pid":27369,"tid":27369,"ts":326459924542,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2103036},
-{"pid":27369,"tid":27369,"ts":326459924573,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2106,"tdur":1404,"tts":2103067},
-{"pid":27369,"tid":27369,"ts":326459924573,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":95},"dur":61,"tdur":61,"tts":2103067},
-{"pid":27369,"tid":27369,"ts":326459924603,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2103097},
-{"pid":27369,"tid":27369,"ts":326459924634,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":2103128},
-{"pid":27369,"tid":27369,"ts":326459924664,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2103158,"id":"0x300000063"},
-{"pid":27369,"tid":27369,"ts":326459924664,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2103158},
-{"pid":27369,"tid":27369,"ts":326459924695,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2103189},
-{"pid":27369,"tid":27369,"ts":326459924725,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":2103219},
-{"pid":27369,"tid":27369,"ts":326459924939,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2103433},
-{"pid":27369,"tid":27369,"ts":326459924969,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2103464},
-{"pid":27369,"tid":27369,"ts":326459925000,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2103494},
-{"pid":27369,"tid":27369,"ts":326459925000,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":95},"dur":30,"tdur":31,"tts":2103494},
-{"pid":27369,"tid":27369,"ts":326459925030,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":95},"dur":31,"tdur":30,"tts":2103525},
-{"pid":27369,"tid":27369,"ts":326459925061,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":95},"tts":2103555},
-{"pid":27369,"tid":27369,"ts":326459925061,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2103555},
-{"pid":27369,"tid":27369,"ts":326459925092,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2103586},
-{"pid":27369,"tid":27369,"ts":326459925092,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2103586},
-{"pid":27369,"tid":27369,"ts":326459925122,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2103616},
-{"pid":27369,"tid":27369,"ts":326459925153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2103647,"id":"0xaf8a6d54febbc614"},
-{"pid":27369,"tid":27369,"ts":326459925214,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1465,"tdur":763,"tts":2103708},
-{"pid":27369,"tid":27369,"ts":326459925244,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":95},"dur":153,"tdur":153,"tts":2103738},
-{"pid":27369,"tid":27369,"ts":326459925244,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2103738},
-{"pid":27369,"tid":27369,"ts":326459925244,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2103738},
-{"pid":27369,"tid":27369,"ts":326459925275,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2103769},
-{"pid":27369,"tid":27369,"ts":326459925275,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2103769,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459925305,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2103799},
-{"pid":27369,"tid":27369,"ts":326459925397,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2103891},
-{"pid":27369,"tid":27369,"ts":326459925397,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1068,"tdur":366,"tts":2103891},
-{"pid":27369,"tid":27369,"ts":326459925427,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2103921},
-{"pid":27369,"tid":27369,"ts":326459925427,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":1007,"tdur":306,"tts":2103921},
-{"pid":27369,"tid":27369,"ts":326459925427,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2103921},
-{"pid":27369,"tid":27369,"ts":326459925488,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":916,"tdur":214,"tts":2103982},
-{"pid":27369,"tid":27369,"ts":326459926465,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2104257,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459926495,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2104288,"id":"0x300000063"},
-{"pid":27369,"tid":27369,"ts":326459926526,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2104318},
-{"pid":27369,"tid":27369,"ts":326459926526,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13847},"dur":92,"tdur":92,"tts":2104318},
-{"pid":27369,"tid":27369,"ts":326459926556,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":2104349},
-{"pid":27369,"tid":27369,"ts":326459926587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2104379,"id":"0xaf8a6d55febbc614"},
-{"pid":27369,"tid":27369,"ts":326459926618,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2104410},
-{"pid":27369,"tid":27369,"ts":326459926648,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2104440},
-{"pid":27369,"tid":27369,"ts":326459926953,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2104562},
-{"pid":27369,"tid":27369,"ts":326459928907,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2104715},
-{"pid":27369,"tid":27369,"ts":326459928937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2104745,"id":"0xaf8a604ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326459928937,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2104745},
-{"pid":27369,"tid":27369,"ts":326459928968,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2104776},
-{"pid":27369,"tid":27369,"ts":326459928998,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2104806,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459928998,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2104806,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459929029,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":30,"tts":2104837},
-{"pid":27369,"tid":27369,"ts":326459929029,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2104837},
-{"pid":27369,"tid":27369,"ts":326459929059,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2104867,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459929151,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2104959},
-{"pid":27369,"tid":27369,"ts":326459931989,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2105234},
-{"pid":27369,"tid":27369,"ts":326459932020,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2105264,"id":"0xaf8a6048feb47934"},
-{"pid":27369,"tid":27369,"ts":326459932020,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2105264},
-{"pid":27369,"tid":27369,"ts":326459932081,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2105325},
-{"pid":27369,"tid":27369,"ts":326459932081,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2105325},
-{"pid":27369,"tid":27369,"ts":326459932172,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2105417},
-{"pid":27369,"tid":27369,"ts":326459936689,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2105753},
-{"pid":27369,"tid":27369,"ts":326459938063,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2106271},
-{"pid":27369,"tid":27369,"ts":326459938124,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":122,"tts":2106363},
-{"pid":27369,"tid":27369,"ts":326459938307,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":274,"tts":2106516},
-{"pid":27369,"tid":27369,"ts":326459930000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2106546,"id":"0x300000066"},
-{"pid":27369,"tid":27369,"ts":326459938337,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901990},"tts":2106546,"id":"0x300000066"},
-{"pid":27369,"tid":27369,"ts":326459938368,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":213,"tts":2106577},
-{"pid":27369,"tid":27369,"ts":326459938368,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2106577,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459938398,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2106607},
-{"pid":27369,"tid":27369,"ts":326459938398,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2106607},
-{"pid":27369,"tid":27369,"ts":326459938429,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2106638},
-{"pid":27369,"tid":27369,"ts":326459938459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2106668,"id":"0xaf8a6d56febbc614"},
-{"pid":27369,"tid":27369,"ts":326459938520,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2106729,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459938551,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2106760,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459938582,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2106790},
-{"pid":27369,"tid":27369,"ts":326459938856,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2107065},
-{"pid":27369,"tid":27369,"ts":326459938887,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":123,"tts":2107095},
-{"pid":27369,"tid":27369,"ts":326459938917,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459935455},"dur":61,"tdur":61,"tts":2107126},
-{"pid":27369,"tid":27369,"ts":326459938917,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2107126},
-{"pid":27369,"tid":27369,"ts":326459938948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2107157,"id":"0xaf8a6d57febbc614"},
-{"pid":27369,"tid":27369,"ts":326459939192,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2107248},
-{"pid":27369,"tid":27407,"ts":326459928723,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1467358,"id":"0xccc48d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459928723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1467388,"id":"0xaf8a604ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326459931623,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1467541},
-{"pid":27369,"tid":27407,"ts":326459931653,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1467572},
-{"pid":27369,"tid":27407,"ts":326459931653,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1467572,"id":"0xc4c17802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459931684,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1467602,"id":"0xaf8a6048feb47934"},
-{"pid":27369,"tid":27407,"ts":326459938826,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1467816,"id":"0xaf8a6d56febbc614"},
-{"pid":27369,"tid":27407,"ts":326459938826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1467816},
-{"pid":27369,"tid":27407,"ts":326459938856,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1467846,"id":"0xba451d02"},
-{"pid":27369,"tid":27407,"ts":326459939253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1467938,"id":"0xaf8a6d57febbc614"},
-{"pid":27369,"tid":27407,"ts":326459939253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1467938},
-{"pid":27369,"tid":27407,"ts":326459939253,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1467968,"id":"0xba451e02"},
-{"pid":27369,"tid":27407,"ts":326459949508,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1468060},
-{"pid":27369,"tid":27407,"ts":326459949538,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":1468090},
-{"pid":27369,"tid":27407,"ts":326459949569,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1468121,"id":"0xccc48f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459949569,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1468121,"id":"0xaf8a6049feb47934"},
-{"pid":27369,"tid":27407,"ts":326459953506,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1468335},
-{"pid":27369,"tid":27407,"ts":326459953567,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1468396},
-{"pid":27369,"tid":27407,"ts":326459953567,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1468396,"id":"0xccc49102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459953628,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1468457,"id":"0xaf8a604afeb47934"},
-{"pid":27369,"tid":27407,"ts":326459953720,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1468548,"id":"0xaf8a6d50febbc614"},
-{"pid":27369,"tid":27407,"ts":326459953750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1468579},
-{"pid":27369,"tid":27407,"ts":326459953750,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1468579,"id":"0xba451f02"},
-{"pid":27369,"tid":27407,"ts":326459954116,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1468731,"id":"0xaf8a6d51febbc614"},
-{"pid":27369,"tid":27407,"ts":326459954116,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1468731},
-{"pid":27369,"tid":27407,"ts":326459954147,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1468762,"id":"0xba452002"},
-{"pid":27369,"tid":27407,"ts":326459955795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1468853,"id":"0xaf8a6d52febbc614"},
-{"pid":27369,"tid":27407,"ts":326459955795,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1468853},
-{"pid":27369,"tid":27407,"ts":326459955826,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1468884,"id":"0xba452102"},
-{"pid":27369,"tid":27407,"ts":326459957168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1468976,"id":"0xaf8a6d53febbc614"},
-{"pid":27369,"tid":27407,"ts":326459957168,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":245,"tdur":91,"tts":1468976},
-{"pid":27369,"tid":27407,"ts":326459957199,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1469006,"id":"0xba452202"},
-{"pid":27369,"tid":27407,"ts":326459962021,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1469159},
-{"pid":27369,"tid":27407,"ts":326459962052,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":153,"tts":1469189},
-{"pid":27369,"tid":27407,"ts":326459962052,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1469189,"id":"0xc4c17b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459962082,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1469220,"id":"0xaf8a6044feb47934"},
-{"pid":27369,"tid":27407,"ts":326459970506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1469433,"id":"0xaf8a6d6cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459970506,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":366,"tdur":122,"tts":1469433},
-{"pid":27369,"tid":27407,"ts":326459970536,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1469464,"id":"0xba452302"},
-{"pid":27369,"tid":27407,"ts":326459970872,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":153,"tts":1469586},
-{"pid":27369,"tid":27407,"ts":326459970903,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":1469586},
-{"pid":27369,"tid":27407,"ts":326459970933,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1469616,"id":"0xccc49302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459970933,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1469616,"id":"0xaf8a6045feb47934"},
-{"pid":27369,"tid":27407,"ts":326459971421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1469830,"id":"0xaf8a6d6dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459971421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1469830},
-{"pid":27369,"tid":27407,"ts":326459971452,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1469861,"id":"0xba452402"},
-{"pid":27369,"tid":27407,"ts":326459974718,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1469952},
-{"pid":27369,"tid":27407,"ts":326459974779,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1470013},
-{"pid":27369,"tid":27407,"ts":326459974779,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1470013,"id":"0xccc49602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459974840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1470074,"id":"0xaf8a6046feb47934"},
-{"pid":27369,"tid":27407,"ts":326459976366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1470257,"id":"0xaf8a6d6efebbc614"},
-{"pid":27369,"tid":27407,"ts":326459976396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":397,"tdur":30,"tts":1470288},
-{"pid":27369,"tid":27407,"ts":326459976396,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1470288,"id":"0xba452502"},
-{"pid":27369,"tid":27407,"ts":326459978166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1470410,"id":"0xaf8a6d6ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326459978166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1470410},
-{"pid":27369,"tid":27407,"ts":326459978197,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1470441,"id":"0xba452602"},
-{"pid":27369,"tid":27407,"ts":326459982653,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1470563},
-{"pid":27369,"tid":27407,"ts":326459982683,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":123,"tdur":122,"tts":1470593},
-{"pid":27369,"tid":27407,"ts":326459982683,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1470593,"id":"0xc4c17e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459982714,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1470624,"id":"0xaf8a6040feb47934"},
-{"pid":27369,"tid":27407,"ts":326459989123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1470837,"id":"0xaf8a6d68febbc614"},
-{"pid":27369,"tid":27407,"ts":326459989154,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":244,"tdur":91,"tts":1470868},
-{"pid":27369,"tid":27407,"ts":326459989184,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1470898,"id":"0xba452702"},
-{"pid":27369,"tid":27407,"ts":326459990954,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1470990},
-{"pid":27369,"tid":27369,"ts":326459939375,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2107462},
-{"pid":27369,"tid":27369,"ts":326459949782,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2107767},
-{"pid":27369,"tid":27369,"ts":326459949813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2107797,"id":"0xaf8a6049feb47934"},
-{"pid":27369,"tid":27369,"ts":326459949813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":184,"tts":2107797},
-{"pid":27369,"tid":27369,"ts":326459949844,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":2107828},
-{"pid":27369,"tid":27369,"ts":326459949905,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2107889,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459949905,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2107889,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459949935,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":2107920},
-{"pid":27369,"tid":27369,"ts":326459949935,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2107920},
-{"pid":27369,"tid":27369,"ts":326459949966,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2107950,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459950149,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2108072},
-{"pid":27369,"tid":27369,"ts":326459952865,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2108438},
-{"pid":27369,"tid":27369,"ts":326459953292,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2108866},
-{"pid":27369,"tid":27369,"ts":326459953384,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":2108957},
-{"pid":27369,"tid":27369,"ts":326459953506,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2109079},
-{"pid":27369,"tid":27369,"ts":326459947030,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2109110,"id":"0x300000067"},
-{"pid":27369,"tid":27369,"ts":326459953536,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901991},"tts":2109110,"id":"0x300000067"},
-{"pid":27369,"tid":27369,"ts":326459953567,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2109140},
-{"pid":27369,"tid":27369,"ts":326459953567,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2109171,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459953598,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2109171},
-{"pid":27369,"tid":27369,"ts":326459953628,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2109201},
-{"pid":27369,"tid":27369,"ts":326459953659,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2109232},
-{"pid":27369,"tid":27369,"ts":326459953689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2109262,"id":"0xaf8a6d50febbc614"},
-{"pid":27369,"tid":27369,"ts":326459953750,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2109323,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459953750,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2109323,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459953781,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2109354},
-{"pid":27369,"tid":27369,"ts":326459953933,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2109507},
-{"pid":27369,"tid":27369,"ts":326459953994,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2109568},
-{"pid":27369,"tid":27369,"ts":326459953994,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459952137},"dur":92,"tdur":91,"tts":2109568},
-{"pid":27369,"tid":27369,"ts":326459954025,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2109598},
-{"pid":27369,"tid":27369,"ts":326459954025,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2109598,"id":"0xaf8a6d51febbc614"},
-{"pid":27369,"tid":27369,"ts":326459954208,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2109781},
-{"pid":27369,"tid":27369,"ts":326459954300,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2109873},
-{"pid":27369,"tid":27369,"ts":326459954391,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2109964},
-{"pid":27369,"tid":27369,"ts":326459954422,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2109995,"id":"0xaf8a604afeb47934"},
-{"pid":27369,"tid":27369,"ts":326459954422,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":488,"tdur":458,"tts":2109995},
-{"pid":27369,"tid":27369,"ts":326459954422,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":457,"tdur":458,"tts":2109995},
-{"pid":27369,"tid":27369,"ts":326459954452,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":428,"tts":2110025},
-{"pid":27369,"tid":27369,"ts":326459954696,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2110270},
-{"pid":27369,"tid":27369,"ts":326459954727,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2110300},
-{"pid":27369,"tid":27369,"ts":326459954727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2110300,"id":"0xaf8a604bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459954818,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2110392},
-{"pid":27369,"tid":27369,"ts":326459954849,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2110422},
-{"pid":27369,"tid":27369,"ts":326459954940,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2110514},
-{"pid":27369,"tid":27369,"ts":326459955032,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2110605},
-{"pid":27369,"tid":27369,"ts":326459955063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2110636,"id":"0xaf8a604bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326459955063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1983,"tdur":1678,"tts":2110636},
-{"pid":27369,"tid":27369,"ts":326459955093,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2110666},
-{"pid":27369,"tid":27369,"ts":326459955093,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1923,"tdur":1618,"tts":2110666},
-{"pid":27369,"tid":27369,"ts":326459955124,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":96},"dur":61,"tdur":61,"tts":2110697},
-{"pid":27369,"tid":27369,"ts":326459955124,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":2110697},
-{"pid":27369,"tid":27369,"ts":326459955185,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":2110758},
-{"pid":27369,"tid":27369,"ts":326459955185,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2110758,"id":"0x300000064"},
-{"pid":27369,"tid":27369,"ts":326459955215,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2110788,"id":"0x300000065"},
-{"pid":27369,"tid":27369,"ts":326459955215,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2110788},
-{"pid":27369,"tid":27369,"ts":326459955215,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2110788},
-{"pid":27369,"tid":27369,"ts":326459955246,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2110819},
-{"pid":27369,"tid":27369,"ts":326459955490,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2111063},
-{"pid":27369,"tid":27369,"ts":326459955520,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2111094},
-{"pid":27369,"tid":27369,"ts":326459955551,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2111124},
-{"pid":27369,"tid":27369,"ts":326459955551,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":96},"dur":30,"tdur":31,"tts":2111124},
-{"pid":27369,"tid":27369,"ts":326459955581,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":96},"dur":31,"tdur":30,"tts":2111155},
-{"pid":27369,"tid":27369,"ts":326459955612,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":96},"tts":2111185},
-{"pid":27369,"tid":27369,"ts":326459955612,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2111185},
-{"pid":27369,"tid":27369,"ts":326459955642,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2111216},
-{"pid":27369,"tid":27369,"ts":326459955642,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2111216},
-{"pid":27369,"tid":27369,"ts":326459955673,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2111246},
-{"pid":27369,"tid":27369,"ts":326459955703,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2111277,"id":"0xaf8a6d52febbc614"},
-{"pid":27369,"tid":27369,"ts":326459955764,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1252,"tdur":916,"tts":2111368},
-{"pid":27369,"tid":27369,"ts":326459955795,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":96},"dur":214,"tdur":214,"tts":2111368},
-{"pid":27369,"tid":27369,"ts":326459955795,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2111368},
-{"pid":27369,"tid":27369,"ts":326459955826,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2111399},
-{"pid":27369,"tid":27369,"ts":326459955826,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2111399},
-{"pid":27369,"tid":27369,"ts":326459955856,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2111429,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459955856,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2111429},
-{"pid":27369,"tid":27369,"ts":326459955978,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2111551},
-{"pid":27369,"tid":27369,"ts":326459956009,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":458,"tts":2111582},
-{"pid":27369,"tid":27369,"ts":326459956009,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":2111582},
-{"pid":27369,"tid":27369,"ts":326459956039,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":702,"tdur":397,"tts":2111612},
-{"pid":27369,"tid":27369,"ts":326459956039,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":427,"tdur":123,"tts":2111612},
-{"pid":27369,"tid":27369,"ts":326459956039,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":62,"tts":2111612},
-{"pid":27369,"tid":27369,"ts":326459956466,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":275,"tdur":244,"tts":2111735},
-{"pid":27369,"tid":27369,"ts":326459956772,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2112040,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459956833,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2112101,"id":"0x300000064"},
-{"pid":27369,"tid":27369,"ts":326459956833,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2112101,"id":"0x300000065"},
-{"pid":27369,"tid":27369,"ts":326459956863,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2112131},
-{"pid":27369,"tid":27369,"ts":326459956863,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":633},"dur":92,"tdur":92,"tts":2112131},
-{"pid":27369,"tid":27369,"ts":326459956894,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2112162},
-{"pid":27369,"tid":27369,"ts":326459956924,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2112192,"id":"0xaf8a6d53febbc614"},
-{"pid":27369,"tid":27369,"ts":326459956955,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2112223},
-{"pid":27369,"tid":27369,"ts":326459956985,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2112253},
-{"pid":27369,"tid":27369,"ts":326459957107,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2112375},
-{"pid":27369,"tid":27369,"ts":326459962296,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2112620},
-{"pid":27369,"tid":27369,"ts":326459962326,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2112650,"id":"0xaf8a6044feb47934"},
-{"pid":27369,"tid":27369,"ts":326459962326,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2112650},
-{"pid":27369,"tid":27369,"ts":326459962387,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2112711},
-{"pid":27369,"tid":27369,"ts":326459962418,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2112742},
-{"pid":27369,"tid":27369,"ts":326459962479,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2112833},
-{"pid":27369,"tid":27369,"ts":326459969193,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2113169},
-{"pid":27369,"tid":27369,"ts":326459969590,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2113566},
-{"pid":27369,"tid":27369,"ts":326459969682,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2113627},
-{"pid":27369,"tid":27369,"ts":326459969773,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":2113718},
-{"pid":27369,"tid":27369,"ts":326459963000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2113749,"id":"0x300000068"},
-{"pid":27369,"tid":27369,"ts":326459969804,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901992},"tts":2113749,"id":"0x300000068"},
-{"pid":27369,"tid":27369,"ts":326459969834,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":2113779},
-{"pid":27369,"tid":27369,"ts":326459969834,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2113779,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459969865,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2113810},
-{"pid":27369,"tid":27369,"ts":326459970292,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2114054},
-{"pid":27369,"tid":27369,"ts":326459970323,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2114085},
-{"pid":27369,"tid":27369,"ts":326459970323,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459968818},"dur":91,"tdur":91,"tts":2114085},
-{"pid":27369,"tid":27369,"ts":326459970353,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2114115},
-{"pid":27369,"tid":27369,"ts":326459970384,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2114146,"id":"0xaf8a6d6cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459970475,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2114237},
-{"pid":27369,"tid":27369,"ts":326459970567,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2114329},
-{"pid":27369,"tid":27369,"ts":326459971147,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2114542},
-{"pid":27369,"tid":27369,"ts":326459971147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2114542,"id":"0xaf8a6045feb47934"},
-{"pid":27369,"tid":27369,"ts":326459971177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":275,"tts":2114573},
-{"pid":27369,"tid":27369,"ts":326459971177,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":2114573},
-{"pid":27369,"tid":27369,"ts":326459971238,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2114634,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459971238,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2114634,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459971238,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":214,"tts":2114634},
-{"pid":27369,"tid":27369,"ts":326459971269,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2114665},
-{"pid":27369,"tid":27369,"ts":326459971269,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2114695,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459971299,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2114695},
-{"pid":27369,"tid":27369,"ts":326459971299,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2114695},
-{"pid":27369,"tid":27369,"ts":326459971330,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2114726},
-{"pid":27369,"tid":27369,"ts":326459971360,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2114756,"id":"0xaf8a6d6dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459971391,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2114787,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27409,"ts":326459956039,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326459955},"tts":6104,"id":"0xaf8a6449feba37ac"},
-{"pid":27369,"tid":27409,"ts":326459956100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../media/audio/audio_manager.cc","src_func":"UpdateLastAudioThreadTimeTick"},"dur":733,"tdur":61,"tts":6165},
-{"pid":27369,"tid":27409,"ts":326459956100,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":702,"tdur":30,"tts":6165},
-{"pid":27369,"tid":27409,"ts":326459956802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6195,"id":"0xaf8a644afeba37ac"},
-{"pid":27369,"tid":27409,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.25466666666666665}},
-{"pid":27369,"tid":27369,"ts":326459971421,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2114817,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459971513,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2114909},
-{"pid":27369,"tid":27369,"ts":326459975084,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2115153},
-{"pid":27369,"tid":27369,"ts":326459975084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2115153,"id":"0xaf8a6046feb47934"},
-{"pid":27369,"tid":27369,"ts":326459975114,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":428,"tts":2115183},
-{"pid":27369,"tid":27369,"ts":326459975114,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":428,"tts":2115183},
-{"pid":27369,"tid":27369,"ts":326459975145,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":366,"tts":2115214},
-{"pid":27369,"tid":27369,"ts":326459975328,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":61,"tts":2115428},
-{"pid":27369,"tid":27369,"ts":326459975359,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2115428},
-{"pid":27369,"tid":27369,"ts":326459975389,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2115458,"id":"0xaf8a6047feb47934"},
-{"pid":27369,"tid":27369,"ts":326459975450,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2115519},
-{"pid":27369,"tid":27369,"ts":326459975511,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2115580},
-{"pid":27369,"tid":27369,"ts":326459975603,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2115672},
-{"pid":27369,"tid":27369,"ts":326459975664,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2115763},
-{"pid":27369,"tid":27369,"ts":326459975694,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2115763,"id":"0xaf8a6047feb47934"},
-{"pid":27369,"tid":27369,"ts":326459975694,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2533,"tdur":1465,"tts":2115794},
-{"pid":27369,"tid":27369,"ts":326459975725,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2115794},
-{"pid":27369,"tid":27369,"ts":326459975725,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2472,"tdur":1465,"tts":2115794},
-{"pid":27369,"tid":27369,"ts":326459975755,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":97},"dur":61,"tdur":61,"tts":2115824},
-{"pid":27369,"tid":27369,"ts":326459975786,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2115855},
-{"pid":27369,"tid":27369,"ts":326459975816,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2115885},
-{"pid":27369,"tid":27369,"ts":326459975847,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2115916,"id":"0x300000066"},
-{"pid":27369,"tid":27369,"ts":326459975847,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2115916},
-{"pid":27369,"tid":27369,"ts":326459975877,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2115946},
-{"pid":27369,"tid":27369,"ts":326459975877,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":245,"tdur":245,"tts":2115946},
-{"pid":27369,"tid":27369,"ts":326459976122,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2116191},
-{"pid":27369,"tid":27369,"ts":326459976152,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2116221},
-{"pid":27369,"tid":27369,"ts":326459976152,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2116221},
-{"pid":27369,"tid":27369,"ts":326459976183,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":97},"dur":30,"tdur":30,"tts":2116252},
-{"pid":27369,"tid":27369,"ts":326459976213,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":97},"dur":31,"tdur":31,"tts":2116282},
-{"pid":27369,"tid":27369,"ts":326459976244,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":97},"tts":2116313},
-{"pid":27369,"tid":27369,"ts":326459976244,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2116313},
-{"pid":27369,"tid":27369,"ts":326459976244,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2116313},
-{"pid":27369,"tid":27369,"ts":326459976274,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2116343},
-{"pid":27369,"tid":27369,"ts":326459976274,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":30,"tts":2116374},
-{"pid":27369,"tid":27369,"ts":326459976305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2116374,"id":"0xaf8a6d6efebbc614"},
-{"pid":27369,"tid":27369,"ts":326459976396,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1801,"tdur":794,"tts":2116465},
-{"pid":27369,"tid":27369,"ts":326459976396,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":97},"dur":153,"tdur":153,"tts":2116465},
-{"pid":27369,"tid":27369,"ts":326459976427,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2116496},
-{"pid":27369,"tid":27369,"ts":326459976427,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2116496},
-{"pid":27369,"tid":27369,"ts":326459976427,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2116496},
-{"pid":27369,"tid":27369,"ts":326459976457,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2116526,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459976488,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2116557},
-{"pid":27369,"tid":27369,"ts":326459976549,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2116618},
-{"pid":27369,"tid":27369,"ts":326459976579,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1374,"tdur":367,"tts":2116648},
-{"pid":27369,"tid":27369,"ts":326459976579,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":794,"tdur":0,"tts":2116648},
-{"pid":27369,"tid":27369,"ts":326459976579,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":2116648},
-{"pid":27369,"tid":27369,"ts":326459977373,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":549,"tdur":305,"tts":2116679},
-{"pid":27369,"tid":27369,"ts":326459977373,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":2116679},
-{"pid":27369,"tid":27369,"ts":326459977648,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2116709},
-{"pid":27369,"tid":27369,"ts":326459977678,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":214,"tts":2116740},
-{"pid":27369,"tid":27369,"ts":326459977953,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2117015,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459978014,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2117076,"id":"0x300000066"},
-{"pid":27369,"tid":27369,"ts":326459978014,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2117076},
-{"pid":27369,"tid":27369,"ts":326459978044,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3795},"dur":92,"tdur":92,"tts":2117106},
-{"pid":27369,"tid":27369,"ts":326459978075,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":2117137},
-{"pid":27369,"tid":27369,"ts":326459978075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2117137,"id":"0xaf8a6d6ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326459978136,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2117198},
-{"pid":27369,"tid":27369,"ts":326459978136,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2117228},
-{"pid":27369,"tid":27369,"ts":326459978441,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2117350},
-{"pid":27369,"tid":27369,"ts":326459982897,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2117564},
-{"pid":27369,"tid":27369,"ts":326459982928,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2117564,"id":"0xaf8a6040feb47934"},
-{"pid":27369,"tid":27369,"ts":326459982928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2117564},
-{"pid":27369,"tid":27369,"ts":326459982989,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2117625},
-{"pid":27369,"tid":27369,"ts":326459982989,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2117625},
-{"pid":27369,"tid":27369,"ts":326459983080,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2117747},
-{"pid":27369,"tid":27369,"ts":326459986102,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2118022},
-{"pid":27369,"tid":27369,"ts":326459987719,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2118571},
-{"pid":27369,"tid":27369,"ts":326459987780,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2118632},
-{"pid":27369,"tid":27369,"ts":326459987933,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":91,"tts":2118785},
-{"pid":27369,"tid":27369,"ts":326459980000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2118815,"id":"0x300000069"},
-{"pid":27369,"tid":27369,"ts":326459987994,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901993},"tts":2118846,"id":"0x300000069"},
-{"pid":27369,"tid":27369,"ts":326459987994,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2118846},
-{"pid":27369,"tid":27369,"ts":326459988025,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2118876,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326459988055,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2118907},
-{"pid":27369,"tid":27369,"ts":326459988849,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2119243},
-{"pid":27369,"tid":27369,"ts":326459988971,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":2119273},
-{"pid":27369,"tid":27369,"ts":326459989001,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326459985500},"dur":92,"tdur":91,"tts":2119304},
-{"pid":27369,"tid":27369,"ts":326459989032,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2119334},
-{"pid":27369,"tid":27369,"ts":326459989062,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2119365,"id":"0xaf8a6d68febbc614"},
-{"pid":27369,"tid":27369,"ts":326459989154,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2119456},
-{"pid":27369,"tid":27369,"ts":326459989245,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2119548},
-{"pid":27369,"tid":27369,"ts":326459991199,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2119761},
-{"pid":27369,"tid":27369,"ts":326459991229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2119761,"id":"0xaf8a6041feb47934"},
-{"pid":27369,"tid":27369,"ts":326459991229,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":306,"tts":2119761},
-{"pid":27369,"tid":27369,"ts":326459991260,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":275,"tts":2119792},
-{"pid":27369,"tid":27369,"ts":326459991290,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2119853,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459991321,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2119853,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459991321,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":213,"tdur":183,"tts":2119853},
-{"pid":27369,"tid":27369,"ts":326459991351,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":153,"tdur":152,"tts":2119884},
-{"pid":27369,"tid":27369,"ts":326459991351,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2119884,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326459991382,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2119914},
-{"pid":27369,"tid":27369,"ts":326459991382,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2119914},
-{"pid":27369,"tid":27369,"ts":326459991412,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2119945},
-{"pid":27369,"tid":27369,"ts":326459991443,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2119975,"id":"0xaf8a6d69febbc614"},
-{"pid":27369,"tid":27369,"ts":326459991473,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2120006,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326459991473,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2120036,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459991595,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2120128},
-{"pid":27369,"tid":27369,"ts":326459994403,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2120311},
-{"pid":27369,"tid":27369,"ts":326459994434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2120311,"id":"0xaf8a6042feb47934"},
-{"pid":27369,"tid":27369,"ts":326459994464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2120341},
-{"pid":27369,"tid":27369,"ts":326459994464,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2120341},
-{"pid":27369,"tid":27369,"ts":326459994495,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2120372},
-{"pid":27369,"tid":27369,"ts":326459994708,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2120585},
-{"pid":27369,"tid":27369,"ts":326459994708,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2120585},
-{"pid":27369,"tid":27369,"ts":326459994739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2120616,"id":"0xaf8a6043feb47934"},
-{"pid":27369,"tid":27369,"ts":326459994831,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2120708},
-{"pid":27369,"tid":27369,"ts":326459994861,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2120738},
-{"pid":27369,"tid":27369,"ts":326459994983,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2120860},
-{"pid":27369,"tid":27369,"ts":326459995075,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2120952},
-{"pid":27369,"tid":27369,"ts":326459995075,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2120952,"id":"0xaf8a6043feb47934"},
-{"pid":27369,"tid":27369,"ts":326459995105,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1465,"tdur":1465,"tts":2120982},
-{"pid":27369,"tid":27369,"ts":326459995105,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2120982},
-{"pid":27369,"tid":27369,"ts":326459995136,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1434,"tdur":1434,"tts":2121013},
-{"pid":27369,"tid":27369,"ts":326459995136,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":98},"dur":61,"tdur":61,"tts":2121013},
-{"pid":27369,"tid":27369,"ts":326459995166,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2121043},
-{"pid":27369,"tid":27369,"ts":326459995227,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":306,"tts":2121104},
-{"pid":27369,"tid":27369,"ts":326459995227,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2121104,"id":"0x300000067"},
-{"pid":27369,"tid":27369,"ts":326459995258,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2121135},
-{"pid":27369,"tid":27369,"ts":326459995258,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2121135},
-{"pid":27369,"tid":27369,"ts":326459995288,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":2121165},
-{"pid":27369,"tid":27369,"ts":326459995533,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2121410},
-{"pid":27369,"tid":27369,"ts":326459995563,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2121440},
-{"pid":27369,"tid":27369,"ts":326459995563,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2121440},
-{"pid":27369,"tid":27369,"ts":326459995563,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":98},"dur":61,"tdur":31,"tts":2121440},
-{"pid":27369,"tid":27369,"ts":326459995624,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":98},"dur":0,"tdur":0,"tts":2121501},
-{"pid":27369,"tid":27369,"ts":326459995624,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":98},"tts":2121532},
-{"pid":27369,"tid":27369,"ts":326459995655,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2121532},
-{"pid":27369,"tid":27407,"ts":326459990985,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":1471020},
-{"pid":27369,"tid":27407,"ts":326459991016,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1471051,"id":"0xccc49702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459991016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1471051,"id":"0xaf8a6041feb47934"},
-{"pid":27369,"tid":27407,"ts":326459991504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1471265,"id":"0xaf8a6d69febbc614"},
-{"pid":27369,"tid":27407,"ts":326459991504,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":213,"tdur":61,"tts":1471265},
-{"pid":27369,"tid":27407,"ts":326459991534,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1471295,"id":"0xba452802"},
-{"pid":27369,"tid":27407,"ts":326459994098,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1471387},
-{"pid":27369,"tid":27407,"ts":326459994159,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1471448},
-{"pid":27369,"tid":27407,"ts":326459994190,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1471478,"id":"0xccc49a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326459994220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1471509,"id":"0xaf8a6042feb47934"},
-{"pid":27369,"tid":27407,"ts":326459996753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1471692,"id":"0xaf8a6d6afebbc614"},
-{"pid":27369,"tid":27407,"ts":326459996753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1471692},
-{"pid":27369,"tid":27407,"ts":326459996753,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1471722,"id":"0xba452902"},
-{"pid":27369,"tid":27407,"ts":326459996845,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1471783,"id":"0xaf8a6d6bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326459996845,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1471783},
-{"pid":27369,"tid":27407,"ts":326459996845,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1471783,"id":"0xba452a02"},
-{"pid":27369,"tid":27407,"ts":326460001789,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":183,"tts":1471936},
-{"pid":27369,"tid":27407,"ts":326460001850,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1471967},
-{"pid":27369,"tid":27407,"ts":326460001850,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1471967,"id":"0xc4c18102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460001881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1471997,"id":"0xaf8a605cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460004261,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1472180,"id":"0xaf8a6d64febbc614"},
-{"pid":27369,"tid":27407,"ts":326460004292,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1472211},
-{"pid":27369,"tid":27407,"ts":326460004292,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1472211,"id":"0xba452b02"},
-{"pid":27369,"tid":27407,"ts":326460009724,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1472333},
-{"pid":27369,"tid":27407,"ts":326460009755,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":1472363},
-{"pid":27369,"tid":27407,"ts":326460009786,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1472394,"id":"0xccc49b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460009786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1472394,"id":"0xaf8a605dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460010365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1472607,"id":"0xaf8a6d65febbc614"},
-{"pid":27369,"tid":27407,"ts":326460010365,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1472607},
-{"pid":27369,"tid":27407,"ts":326460010396,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1472638,"id":"0xba452c02"},
-{"pid":27369,"tid":27407,"ts":326460012746,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1472730},
-{"pid":27369,"tid":27407,"ts":326460012807,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1472791},
-{"pid":27369,"tid":27407,"ts":326460012807,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1472791,"id":"0xccc49d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460012838,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1472821,"id":"0xaf8a605efeb47934"},
-{"pid":27369,"tid":27407,"ts":326460014333,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1473004,"id":"0xaf8a6d66febbc614"},
-{"pid":27369,"tid":27407,"ts":326460014364,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1473035},
-{"pid":27369,"tid":27407,"ts":326460014364,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1473035,"id":"0xba452d02"},
-{"pid":27369,"tid":27407,"ts":326460015127,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1473187,"id":"0xaf8a6d67febbc614"},
-{"pid":27369,"tid":27407,"ts":326460015157,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1473218},
-{"pid":27369,"tid":27407,"ts":326460015157,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1473218,"id":"0xba452e02"},
-{"pid":27369,"tid":27407,"ts":326460020834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1473309,"id":"0xaf8a6d60febbc614"},
-{"pid":27369,"tid":27407,"ts":326460020864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1473340},
-{"pid":27369,"tid":27407,"ts":326460020864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1473340,"id":"0xba452f02"},
-{"pid":27369,"tid":27407,"ts":326460022451,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1473462},
-{"pid":27369,"tid":27407,"ts":326460022482,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1473493},
-{"pid":27369,"tid":27407,"ts":326460022482,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1473493,"id":"0xccc49f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460022513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1473523,"id":"0xaf8a6058feb47934"},
-{"pid":27369,"tid":27407,"ts":326460022879,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1473676},
-{"pid":27369,"tid":27407,"ts":326460022909,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1473706},
-{"pid":27369,"tid":27407,"ts":326460022909,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1473706,"id":"0xc4c18402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460022940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1473737,"id":"0xaf8a6059feb47934"},
-{"pid":27369,"tid":27407,"ts":326460023031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1473828,"id":"0xaf8a6d61febbc614"},
-{"pid":27369,"tid":27407,"ts":326460023062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1473859},
-{"pid":27369,"tid":27407,"ts":326460023062,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1473859,"id":"0xba453002"},
-{"pid":27369,"tid":27407,"ts":326460025015,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1473981},
-{"pid":27369,"tid":27407,"ts":326460025076,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1474042},
-{"pid":27369,"tid":27407,"ts":326460025107,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1474072,"id":"0xccc4a102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460025137,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1474103,"id":"0xaf8a605afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460026663,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1474286,"id":"0xaf8a6d62febbc614"},
-{"pid":27369,"tid":27407,"ts":326460026663,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1474286},
-{"pid":27369,"tid":27407,"ts":326460026663,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1474286,"id":"0xba453102"},
-{"pid":27369,"tid":27407,"ts":326460027884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1474530,"id":"0xaf8a6d63febbc614"},
-{"pid":27369,"tid":27407,"ts":326460027915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1474530},
-{"pid":27369,"tid":27407,"ts":326460027915,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1474530,"id":"0xba453202"},
-{"pid":27369,"tid":27369,"ts":326459995655,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2121532},
-{"pid":27369,"tid":27369,"ts":326459995685,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2121562},
-{"pid":27369,"tid":27369,"ts":326459995716,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2121593},
-{"pid":27369,"tid":27369,"ts":326459995716,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2121593,"id":"0xaf8a6d6afebbc614"},
-{"pid":27369,"tid":27369,"ts":326459995807,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":733,"tdur":733,"tts":2121684},
-{"pid":27369,"tid":27369,"ts":326459995807,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":98},"dur":214,"tdur":214,"tts":2121684},
-{"pid":27369,"tid":27369,"ts":326459995838,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2121715},{"pid":27369,"tid":27369,"ts":326459995838,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2121715},
-{"pid":27369,"tid":27369,"ts":326459995838,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2121715},
-{"pid":27369,"tid":27369,"ts":326459995868,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2121745,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459995899,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2121776},
-{"pid":27369,"tid":27369,"ts":326459996021,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2121898},
-{"pid":27369,"tid":27369,"ts":326459996021,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2121898},
-{"pid":27369,"tid":27369,"ts":326459996051,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2121928},
-{"pid":27369,"tid":27369,"ts":326459996051,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":306,"tdur":306,"tts":2121928},
-{"pid":27369,"tid":27369,"ts":326459996051,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2121959},
-{"pid":27369,"tid":27369,"ts":326459996112,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":2121989},
-{"pid":27369,"tid":27369,"ts":326459996357,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2122234,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326459996418,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2122295,"id":"0x300000067"},
-{"pid":27369,"tid":27369,"ts":326459996418,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2122295},
-{"pid":27369,"tid":27369,"ts":326459996448,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6957},"dur":61,"tdur":61,"tts":2122325},
-{"pid":27369,"tid":27369,"ts":326459996479,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":2122356},
-{"pid":27369,"tid":27369,"ts":326459996479,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2122356,"id":"0xaf8a6d6bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326459996509,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2122386},
-{"pid":27369,"tid":27369,"ts":326459996509,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2122386},
-{"pid":27369,"tid":27369,"ts":326459996662,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2122539},
-{"pid":27369,"tid":27369,"ts":326460002094,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2122783},
-{"pid":27369,"tid":27369,"ts":326460002125,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2122813,"id":"0xaf8a605cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460002125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":123,"tts":2122813},
-{"pid":27369,"tid":27369,"ts":326460002186,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2122875},
-{"pid":27369,"tid":27369,"ts":326460002186,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":61,"tdur":61,"tts":2122875},
-{"pid":27369,"tid":27369,"ts":326460002583,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2123027},
-{"pid":27369,"tid":27369,"ts":326460002796,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2123241},
-{"pid":27369,"tid":27369,"ts":326460003315,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2123760},
-{"pid":27369,"tid":27369,"ts":326460003407,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":153,"tts":2123851},
-{"pid":27369,"tid":27369,"ts":326460003590,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":2124034},
-{"pid":27369,"tid":27369,"ts":326459997000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2124065,"id":"0x30000006a"},
-{"pid":27369,"tid":27369,"ts":326460003651,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901994},"tts":2124095,"id":"0x30000006a"},
-{"pid":27369,"tid":27369,"ts":326460003651,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":61,"tdur":31,"tts":2124095},
-{"pid":27369,"tid":27369,"ts":326460003681,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2124126,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326460003712,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2124156},
-{"pid":27369,"tid":27369,"ts":326460004078,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2124401},
-{"pid":27369,"tid":27369,"ts":326460004139,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":336,"tdur":213,"tts":2124462},
-{"pid":27369,"tid":27369,"ts":326460004139,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460002182},"dur":122,"tdur":91,"tts":2124462},
-{"pid":27369,"tid":27369,"ts":326460004170,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2124492},
-{"pid":27369,"tid":27369,"ts":326460004200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2124523,"id":"0xaf8a6d64febbc614"},
-{"pid":27369,"tid":27369,"ts":326460004506,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2124706},
-{"pid":27369,"tid":27369,"ts":326460004628,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2124828},
-{"pid":27369,"tid":27369,"ts":326460009999,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2125164},
-{"pid":27369,"tid":27369,"ts":326460009999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2125164},
-{"pid":27369,"tid":27369,"ts":326460010060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2125225,"id":"0xaf8a605dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460010091,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":2125255},
-{"pid":27369,"tid":27369,"ts":326460010091,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":275,"tts":2125255},
-{"pid":27369,"tid":27369,"ts":326460010152,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2125316,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460010152,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2125316,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460010182,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2125347},
-{"pid":27369,"tid":27369,"ts":326460010182,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2125347},
-{"pid":27369,"tid":27369,"ts":326460010213,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2125377,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326460010213,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":153,"tts":2125377},
-{"pid":27369,"tid":27369,"ts":326460010243,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2125408},
-{"pid":27369,"tid":27369,"ts":326460010274,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2125438},
-{"pid":27369,"tid":27369,"ts":326460010274,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2125438,"id":"0xaf8a6d65febbc614"},
-{"pid":27369,"tid":27369,"ts":326460010335,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2125499,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460010335,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2125499,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460010457,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2125621},
-{"pid":27369,"tid":27369,"ts":326460013021,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2125774},
-{"pid":27369,"tid":27369,"ts":326460013051,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2125804,"id":"0xaf8a605efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460013051,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":428,"tts":2125804},
-{"pid":27369,"tid":27369,"ts":326460013051,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":397,"tts":2125835},
-{"pid":27369,"tid":27369,"ts":326460013112,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":367,"tdur":367,"tts":2125865},
-{"pid":27369,"tid":27369,"ts":326460013295,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2126049},
-{"pid":27369,"tid":27369,"ts":326460013295,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2126049},
-{"pid":27369,"tid":27369,"ts":326460013326,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2126079,"id":"0xaf8a605ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460013417,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2126171},
-{"pid":27369,"tid":27369,"ts":326460013448,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2126201},
-{"pid":27369,"tid":27369,"ts":326460013540,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2126293},
-{"pid":27369,"tid":27369,"ts":326460013631,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2126384},
-{"pid":27369,"tid":27369,"ts":326460013662,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2126415,"id":"0xaf8a605ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460013662,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2126415},
-{"pid":27369,"tid":27369,"ts":326460013662,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2126415},
-{"pid":27369,"tid":27369,"ts":326460013692,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1496,"tdur":1496,"tts":2126445},
-{"pid":27369,"tid":27369,"ts":326460013692,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":99},"dur":92,"tdur":30,"tts":2126476},
-{"pid":27369,"tid":27369,"ts":326460013723,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2126476},
-{"pid":27369,"tid":27369,"ts":326460013784,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2126537},
-{"pid":27369,"tid":27369,"ts":326460013784,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2126537,"id":"0x300000068"},
-{"pid":27369,"tid":27369,"ts":326460013814,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2126567},
-{"pid":27369,"tid":27369,"ts":326460013814,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2126567},
-{"pid":27369,"tid":27369,"ts":326460013845,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":214,"tts":2126598},
-{"pid":27369,"tid":27369,"ts":326460014058,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2126842},
-{"pid":27369,"tid":27369,"ts":326460014089,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":2126842},
-{"pid":27369,"tid":27369,"ts":326460014119,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":123,"tdur":122,"tts":2126873},
-{"pid":27369,"tid":27369,"ts":326460014119,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":99},"dur":31,"tdur":30,"tts":2126873},
-{"pid":27369,"tid":27369,"ts":326460014150,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":99},"dur":30,"tdur":0,"tts":2126934},
-{"pid":27369,"tid":27369,"ts":326460014180,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":99},"tts":2126934},
-{"pid":27369,"tid":27369,"ts":326460014211,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2126964},
-{"pid":27369,"tid":27369,"ts":326460014211,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2126964},
-{"pid":27369,"tid":27369,"ts":326460014211,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":2126964},
-{"pid":27369,"tid":27369,"ts":326460014242,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2126995},
-{"pid":27369,"tid":27369,"ts":326460014272,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2127025,"id":"0xaf8a6d66febbc614"},
-{"pid":27369,"tid":27369,"ts":326460014364,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":793,"tdur":793,"tts":2127117},
-{"pid":27369,"tid":27369,"ts":326460014364,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":99},"dur":244,"tdur":244,"tts":2127117},
-{"pid":27369,"tid":27369,"ts":326460014394,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":2127147},
-{"pid":27369,"tid":27369,"ts":326460014394,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2127147},
-{"pid":27369,"tid":27369,"ts":326460014394,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2127147},
-{"pid":27369,"tid":27369,"ts":326460014425,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2127178,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460014455,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2127208},
-{"pid":27369,"tid":27369,"ts":326460014577,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2127330},
-{"pid":27369,"tid":27369,"ts":326460014608,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":336,"tts":2127361},
-{"pid":27369,"tid":27369,"ts":326460014608,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2127361},
-{"pid":27369,"tid":27369,"ts":326460014638,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":274,"tts":2127392},
-{"pid":27369,"tid":27369,"ts":326460014638,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2127392},
-{"pid":27369,"tid":27369,"ts":326460014699,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2127453},
-{"pid":27369,"tid":27369,"ts":326460014943,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2127697,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460015005,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2127758,"id":"0x300000068"},
-{"pid":27369,"tid":27369,"ts":326460015005,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2127758},
-{"pid":27369,"tid":27369,"ts":326460015035,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":10119},"dur":92,"tdur":92,"tts":2127788},
-{"pid":27369,"tid":27369,"ts":326460015035,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2127788},
-{"pid":27369,"tid":27369,"ts":326460015066,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2127819,"id":"0xaf8a6d67febbc614"},
-{"pid":27369,"tid":27369,"ts":326460015127,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2127880},
-{"pid":27369,"tid":27369,"ts":326460015127,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2127880},
-{"pid":27369,"tid":27369,"ts":326460015279,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2128032},
-{"pid":27369,"tid":27369,"ts":326460019430,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2128429},
-{"pid":27369,"tid":27369,"ts":326460020071,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2128887},
-{"pid":27369,"tid":27369,"ts":326460020162,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2128979},
-{"pid":27369,"tid":27369,"ts":326460020285,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":2129101},
-{"pid":27369,"tid":27369,"ts":326460013000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2129131,"id":"0x30000006b"},
-{"pid":27369,"tid":27369,"ts":326460020346,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901995},"tts":2129162,"id":"0x30000006b"},
-{"pid":27369,"tid":27369,"ts":326460020346,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":61,"tdur":61,"tts":2129162},
-{"pid":27369,"tid":27369,"ts":326460020376,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2129192,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326460020407,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2129253},
-{"pid":27369,"tid":27369,"ts":326460020681,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2129497},
-{"pid":27369,"tid":27369,"ts":326460020712,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2129528},
-{"pid":27369,"tid":27369,"ts":326460020712,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460018863},"dur":91,"tdur":92,"tts":2129528},
-{"pid":27369,"tid":27369,"ts":326460020742,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":2129558},
-{"pid":27369,"tid":27369,"ts":326460020773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2129589,"id":"0xaf8a6d60febbc614"},
-{"pid":27369,"tid":27369,"ts":326460020864,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2129681},
-{"pid":27369,"tid":27369,"ts":326460020956,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2129772},
-{"pid":27369,"tid":27369,"ts":326460022696,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2129955},
-{"pid":27369,"tid":27369,"ts":326460022726,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2129986,"id":"0xaf8a6058feb47934"},
-{"pid":27369,"tid":27369,"ts":326460022726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":2129986},
-{"pid":27369,"tid":27369,"ts":326460022726,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":274,"tts":2129986},
-{"pid":27369,"tid":27369,"ts":326460022787,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2130047,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460022818,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2130077,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460022818,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2130077},
-{"pid":27369,"tid":27369,"ts":326460022818,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2130077},
-{"pid":27369,"tid":27369,"ts":326460022848,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2130108,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326460022879,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2130138},
-{"pid":27369,"tid":27369,"ts":326460022879,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":91,"tdur":92,"tts":2130138},
-{"pid":27369,"tid":27369,"ts":326460022909,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2130169},
-{"pid":27369,"tid":27369,"ts":326460022909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2130199,"id":"0xaf8a6d61febbc614"},
-{"pid":27369,"tid":27369,"ts":326460022940,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2130230,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460022970,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2130230,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460023062,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2130321},
-{"pid":27369,"tid":27369,"ts":326460023337,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2130413},
-{"pid":27369,"tid":27369,"ts":326460023367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2130444,"id":"0xaf8a6059feb47934"},
-{"pid":27369,"tid":27369,"ts":326460023367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2130444},
-{"pid":27369,"tid":27369,"ts":326460023398,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2130474},
-{"pid":27369,"tid":27369,"ts":326460023428,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2130505},
-{"pid":27369,"tid":27369,"ts":326460023520,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2130596},
-{"pid":27369,"tid":27369,"ts":326460025320,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2130749},
-{"pid":27369,"tid":27369,"ts":326460025320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2130749,"id":"0xaf8a605afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460025351,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":428,"tts":2130779},
-{"pid":27369,"tid":27369,"ts":326460025351,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":428,"tts":2130779},
-{"pid":27369,"tid":27369,"ts":326460025381,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2130810},
-{"pid":27369,"tid":27369,"ts":326460025595,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2131023},
-{"pid":27369,"tid":27369,"ts":326460025595,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2131023},
-{"pid":27369,"tid":27369,"ts":326460025626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2131054,"id":"0xaf8a605bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460025717,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2131146},
-{"pid":27369,"tid":27369,"ts":326460025748,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2131176},
-{"pid":27369,"tid":27369,"ts":326460025839,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2131268},
-{"pid":27369,"tid":27369,"ts":326460025931,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2131359},
-{"pid":27369,"tid":27369,"ts":326460025961,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2131390,"id":"0xaf8a605bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460025961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1832,"tdur":1495,"tts":2131390},
-{"pid":27369,"tid":27369,"ts":326460025961,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2131390},
-{"pid":27369,"tid":27369,"ts":326460025992,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1709,"tdur":1435,"tts":2131420},
-{"pid":27369,"tid":27369,"ts":326460025992,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":100},"dur":61,"tdur":61,"tts":2131420},
-{"pid":27369,"tid":27369,"ts":326460026022,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2131451},
-{"pid":27369,"tid":27369,"ts":326460026083,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":305,"tts":2131512},
-{"pid":27369,"tid":27369,"ts":326460026083,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2131512,"id":"0x300000069"},
-{"pid":27369,"tid":27369,"ts":326460026083,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":0,"tts":2131542},
-{"pid":27369,"tid":27369,"ts":326460026114,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2131542},
-{"pid":27369,"tid":27369,"ts":326460026144,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":2131573},
-{"pid":27369,"tid":27369,"ts":326460026358,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2131817},
-{"pid":27369,"tid":27369,"ts":326460026389,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":2131817},
-{"pid":27369,"tid":27369,"ts":326460026419,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2131847},
-{"pid":27369,"tid":27369,"ts":326460026419,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":100},"dur":31,"tdur":31,"tts":2131847},
-{"pid":27369,"tid":27369,"ts":326460026450,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":100},"dur":30,"tdur":31,"tts":2131878},
-{"pid":27369,"tid":27369,"ts":326460026480,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":100},"tts":2131909},
-{"pid":27369,"tid":27369,"ts":326460026480,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2131909},
-{"pid":27369,"tid":27369,"ts":326460026511,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2131939},
-{"pid":27369,"tid":27369,"ts":326460026511,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2131939},
-{"pid":27369,"tid":27369,"ts":326460026541,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2131970},
-{"pid":27369,"tid":27369,"ts":326460026541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2132000,"id":"0xaf8a6d62febbc614"},
-{"pid":27369,"tid":27369,"ts":326460026663,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1038,"tdur":763,"tts":2132092},
-{"pid":27369,"tid":27369,"ts":326460026663,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":100},"dur":458,"tdur":183,"tts":2132092},
-{"pid":27369,"tid":27369,"ts":326460026694,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":2132122},
-{"pid":27369,"tid":27369,"ts":326460026694,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2132122},
-{"pid":27369,"tid":27369,"ts":326460026694,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2132122},
-{"pid":27369,"tid":27369,"ts":326460026724,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2132153,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460026724,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2132183},
-{"pid":27369,"tid":27369,"ts":326460027091,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2132275},
-{"pid":27369,"tid":27369,"ts":326460027152,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":335,"tdur":336,"tts":2132305},
-{"pid":27369,"tid":27369,"ts":326460027152,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2132305},
-{"pid":27369,"tid":27369,"ts":326460027152,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":274,"tts":2132336},
-{"pid":27369,"tid":27369,"ts":326460027182,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2132336},
-{"pid":27369,"tid":27369,"ts":326460027213,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":183,"tts":2132397},
-{"pid":27369,"tid":27369,"ts":326460027457,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2132641,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460027518,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2132672,"id":"0x300000069"},
-{"pid":27369,"tid":27369,"ts":326460027548,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2132702},
-{"pid":27369,"tid":27369,"ts":326460027548,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13281},"dur":92,"tdur":92,"tts":2132702},
-{"pid":27369,"tid":27369,"ts":326460027579,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2132733},
-{"pid":27369,"tid":27369,"ts":326460027609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2132763,"id":"0xaf8a6d63febbc614"},
-{"pid":27369,"tid":27369,"ts":326460027640,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2132794},
-{"pid":27369,"tid":27369,"ts":326460027670,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2132824},
-{"pid":27369,"tid":27369,"ts":326460027945,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2132977},
-{"pid":27369,"tid":27369,"ts":326460032981,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2133221},
-{"pid":27369,"tid":27369,"ts":326460032981,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2133221,"id":"0xaf8a6054feb47934"},
-{"pid":27369,"tid":27369,"ts":326460033012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2133251},
-{"pid":27369,"tid":27369,"ts":326460033042,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2133282},
-{"pid":27369,"tid":27369,"ts":326460033073,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2133312},
-{"pid":27369,"tid":27369,"ts":326460033164,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2133404},
-{"pid":27369,"tid":27369,"ts":326460039055,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2133709},
-{"pid":27369,"tid":27369,"ts":326460039543,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2134198},
-{"pid":27369,"tid":27369,"ts":326460039604,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2134259},
-{"pid":27369,"tid":27369,"ts":326460039726,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":91,"tts":2134381},
-{"pid":27369,"tid":27369,"ts":326460030000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2134411,"id":"0x30000006c"},
-{"pid":27369,"tid":27369,"ts":326460039757,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901996},"tts":2134411,"id":"0x30000006c"},
-{"pid":27369,"tid":27369,"ts":326460039787,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":0,"tts":2134442},
-{"pid":27369,"tid":27369,"ts":326460039787,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2134442,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326460039818,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2134472},
-{"pid":27369,"tid":27369,"ts":326460040397,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2134777},
-{"pid":27369,"tid":27369,"ts":326460040459,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":123,"tts":2134838},
-{"pid":27369,"tid":27369,"ts":326460040459,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460035545},"dur":91,"tdur":92,"tts":2134838},
-{"pid":27369,"tid":27369,"ts":326460040489,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2134869},
-{"pid":27369,"tid":27369,"ts":326460040489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2134869,"id":"0xaf8a6d78febbc614"},
-{"pid":27369,"tid":27369,"ts":326460040581,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2134961},
-{"pid":27369,"tid":27369,"ts":326460040672,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2135052},
-{"pid":27369,"tid":27369,"ts":326460040764,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2135144},
-{"pid":27369,"tid":27369,"ts":326460040794,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2135174,"id":"0xaf8a6055feb47934"},
-{"pid":27369,"tid":27369,"ts":326460040794,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":31,"tts":2135174},
-{"pid":27369,"tid":27369,"ts":326460040855,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2135266},
-{"pid":27369,"tid":27369,"ts":326460040977,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2135357},
-{"pid":27369,"tid":27369,"ts":326460040977,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2135357,"id":"0xaf8a6056feb47934"},
-{"pid":27369,"tid":27369,"ts":326460040977,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":275,"tts":2135388},
-{"pid":27369,"tid":27369,"ts":326460041008,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":2135388},
-{"pid":27369,"tid":27369,"ts":326460041038,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2135449,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460041069,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2135449,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460041069,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2135449},
-{"pid":27369,"tid":27369,"ts":326460041099,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":153,"tdur":153,"tts":2135479},
-{"pid":27369,"tid":27369,"ts":326460041099,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2135479,"id":"0xaf8a644cff740fac"},
-{"pid":27369,"tid":27369,"ts":326460041130,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2135510},
-{"pid":27369,"tid":27369,"ts":326460041130,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2135510},
-{"pid":27369,"tid":27369,"ts":326460041160,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":2135540},
-{"pid":27369,"tid":27369,"ts":326460041191,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2135571,"id":"0xaf8a6d79febbc614"},
-{"pid":27369,"tid":27369,"ts":326460041222,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2135601,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460041252,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2135632,"s":"t"},
-{"pid":27369,"tid":27407,"ts":326460032676,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":214,"tts":1474652},
-{"pid":27369,"tid":27407,"ts":326460032737,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":153,"tts":1474713},
-{"pid":27369,"tid":27407,"ts":326460032737,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1474713,"id":"0xc4c18702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460032767,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1474744,"id":"0xaf8a6054feb47934"},
-{"pid":27369,"tid":27407,"ts":326460035209,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":2533,"tdur":2411,"tts":1474958},
-{"pid":27369,"tid":27407,"ts":326460035240,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2380,"tdur":2259,"tts":1474988},
-{"pid":27369,"tid":27407,"ts":326460035240,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1474988,"id":"0xccc4a302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460035423,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1475171,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460035850,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1475476,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460035941,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1475568,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036064,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":131328,"method":"GET","priority":"IDLE","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas"}},"tts":1475721,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036399,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1476026,"id":"0xaf8a6055feb47934"},
-{"pid":27369,"tid":27407,"ts":326460036521,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1476148,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036552,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1476178,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036582,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1476209,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036582,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1476209,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036643,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1476270,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036674,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x6fe3a1c8aea2411f"}},"tts":1476300,"id":"0x1db"},
-{"pid":27369,"tid":27407,"ts":326460036705,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas"}},"tts":1476331,"id":"0x1db"},
-{"pid":27369,"tid":27407,"ts":326460036735,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1476361,"id":"0x1db"},
-{"pid":27369,"tid":27407,"ts":326460036766,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1476392,"id":"0x1db"},
-{"pid":27369,"tid":27407,"ts":326460036766,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1476423,"id":"0x1db"},
-{"pid":27369,"tid":27407,"ts":326460036827,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1476453,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036827,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1476453,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460036888,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x6fe3a1c8aea2411f"}},"tts":1476514,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460036918,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas"}},"tts":1476545,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460036949,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1476575,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460036949,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1476606,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460037010,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1476636,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460037040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1476667,"id":"0xaf8a653ffd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460037101,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1476728,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037101,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1476758,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037132,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1476758,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037193,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1476819,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037223,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1476850,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037254,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1476880,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037345,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"IDLE","url":"https://maps.googleapis.com/"}},"tts":1476972,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460037376,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1477002,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460037437,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1477063,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460037468,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1477094,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460037498,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1477124,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460037559,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1477186,"id":"0xaf8a6d7cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460037651,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1477277},
-{"pid":27369,"tid":27407,"ts":326460037651,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1477308,"id":"0xccc4a402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460037681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1477308,"id":"0xaf8a6056feb47934"},
-{"pid":27369,"tid":27407,"ts":326460037773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1477399,"id":"0xaf8a6d7cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460037773,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":1037,"tdur":427,"tts":1477399},
-{"pid":27369,"tid":27407,"ts":326460037803,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":477,"type":10}}},"tts":1477430,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037834,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":474,"type":1}}},"tts":1477460,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460037864,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1477491,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460037864,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1477491,"id":"0x1dd"},
-{"pid":27369,"tid":27407,"ts":326460038017,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1477582,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460038200,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1477735,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460038780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1477796,"id":"0xaf8a6d7efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460038871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1477887,"id":"0xaf8a6d7dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460038871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":153,"tdur":62,"tts":1477887},
-{"pid":27369,"tid":27407,"ts":326460038902,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1477918,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460039024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1477949,"id":"0xaf8a6d7efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460039055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":763,"tdur":763,"tts":1477979},
-{"pid":27369,"tid":27407,"ts":326460039085,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"sent","unique_id":1}},"tts":1478040,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460039146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1478071,"id":"0xaf8a6d7ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460039329,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:19238,smni:1,src:apiv3,token:1riog8e75d,ts:87zdas",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":13,"unidirectional":false}},"tts":1478284,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460039421,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":137}},"tts":1478345,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460039573,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":158}},"tts":1478528,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460039634,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1478559,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460039634,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1478589,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460039696,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1478620,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460039787,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1478742,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460040581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1478864,"id":"0xaf8a6d78febbc614"},
-{"pid":27369,"tid":27407,"ts":326460040581,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1478864},
-{"pid":27369,"tid":27407,"ts":326460040581,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1478864,"id":"0xba453302"},
-{"pid":27369,"tid":27407,"ts":326460041252,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1479017,"id":"0xaf8a6d79febbc614"},
-{"pid":27369,"tid":27407,"ts":326460041252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1479017},
-{"pid":27369,"tid":27407,"ts":326460041252,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1479017,"id":"0xba453402"},
-{"pid":27369,"tid":27407,"ts":326460043236,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":1479139},
-{"pid":27369,"tid":27407,"ts":326460043297,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":152,"tts":1479200},
-{"pid":27369,"tid":27407,"ts":326460043297,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1479200,"id":"0xccc4a602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460043358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1479261,"id":"0xaf8a6057feb47934"},
-{"pid":27369,"tid":27407,"ts":326460044914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1479475,"id":"0xaf8a6d7afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460044914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1479475},
-{"pid":27369,"tid":27407,"ts":326460044945,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1479505,"id":"0xba453502"},
-{"pid":27369,"tid":27407,"ts":326460045922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1479597,"id":"0xaf8a6d7bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460045952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":214,"tdur":61,"tts":1479627},
-{"pid":27369,"tid":27407,"ts":326460045952,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1479627,"id":"0xba453602"},
-{"pid":27369,"tid":27407,"ts":326460050835,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":275,"tdur":152,"tts":1479780},
-{"pid":27369,"tid":27407,"ts":326460050866,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":244,"tdur":122,"tts":1479810},
-{"pid":27369,"tid":27407,"ts":326460050866,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1479810,"id":"0xccc4a802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460050896,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1479841,"id":"0xaf8a6051feb47934"},
-{"pid":27369,"tid":27407,"ts":326460051141,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1479963},
-{"pid":27369,"tid":27407,"ts":326460051171,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1479993},
-{"pid":27369,"tid":27407,"ts":326460051171,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1479993,"id":"0xc4c18a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460051202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1480024,"id":"0xaf8a6052feb47934"},
-{"pid":27369,"tid":27407,"ts":326460053796,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1480177,"id":"0xaf8a6d74febbc614"},
-{"pid":27369,"tid":27407,"ts":326460053826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1480207},
-{"pid":27369,"tid":27407,"ts":326460053826,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1480207,"id":"0xba453702"},
-{"pid":27369,"tid":27407,"ts":326460054773,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1480360,"id":"0xaf8a6d75febbc614"},
-{"pid":27369,"tid":27407,"ts":326460054773,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1480360},
-{"pid":27369,"tid":27407,"ts":326460054803,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1480390,"id":"0xba453802"},
-{"pid":27369,"tid":27407,"ts":326460055780,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":152,"tts":1480482},
-{"pid":27369,"tid":27407,"ts":326460055810,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1480512},
-{"pid":27369,"tid":27407,"ts":326460055841,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1480543,"id":"0xccc4aa02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460055841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1480543,"id":"0xaf8a6053feb47934"},
-{"pid":27369,"tid":27407,"ts":326460057062,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1480726},
-{"pid":27369,"tid":27407,"ts":326460057123,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1480787},
-{"pid":27369,"tid":27407,"ts":326460057123,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1480787,"id":"0xccc4ac02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460057153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1480817,"id":"0xaf8a606cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460059808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1481031,"id":"0xaf8a6d76febbc614"},
-{"pid":27369,"tid":27407,"ts":326460059808,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1481031},
-{"pid":27369,"tid":27407,"ts":326460059839,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1481062,"id":"0xba453902"},
-{"pid":27369,"tid":27407,"ts":326460060785,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1481184,"id":"0xaf8a6d77febbc614"},
-{"pid":27369,"tid":27407,"ts":326460060785,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":31,"tts":1481214},
-{"pid":27369,"tid":27407,"ts":326460060816,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1481214,"id":"0xba453a02"},
-{"pid":27369,"tid":27407,"ts":326460065180,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1481306},
-{"pid":27369,"tid":27407,"ts":326460065211,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":122,"tts":1481367},
-{"pid":27369,"tid":27407,"ts":326460065241,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1481367,"id":"0xc4c18d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460065241,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1481397,"id":"0xaf8a606efeb47934"},
-{"pid":27369,"tid":27407,"ts":326460066065,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":336,"tdur":305,"tts":1481550},
-{"pid":27369,"tid":27407,"ts":326460066126,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1481641,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460066187,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1481672,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460066279,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"received","unique_id":1}},"tts":1481764,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460070460,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1481947,"id":"0xaf8a6d70febbc614"},
-{"pid":27369,"tid":27407,"ts":326460070460,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1481947},
-{"pid":27369,"tid":27407,"ts":326460070491,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1481977,"id":"0xba453b02"},
-{"pid":27369,"tid":27407,"ts":326460071009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1482099,"id":"0xaf8a6d71febbc614"},
-{"pid":27369,"tid":27407,"ts":326460071040,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1482130},
-{"pid":27369,"tid":27407,"ts":326460071040,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1482130,"id":"0xba453c02"},
-{"pid":27369,"tid":27407,"ts":326460073939,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1482221},
-{"pid":27369,"tid":27407,"ts":326460073970,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":152,"tdur":152,"tts":1482252},
-{"pid":27369,"tid":27369,"ts":326460041344,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2135724},
-{"pid":27369,"tid":27369,"ts":326460043541,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2135876},
-{"pid":27369,"tid":27369,"ts":326460043572,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2135876,"id":"0xaf8a6057feb47934"},
-{"pid":27369,"tid":27369,"ts":326460043572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":488,"tdur":458,"tts":2135907},
-{"pid":27369,"tid":27369,"ts":326460043602,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2135907},
-{"pid":27369,"tid":27369,"ts":326460043633,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":428,"tts":2135937},
-{"pid":27369,"tid":27369,"ts":326460043877,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":61,"tts":2136181},
-{"pid":27369,"tid":27369,"ts":326460043877,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2136181},
-{"pid":27369,"tid":27369,"ts":326460043907,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2136212,"id":"0xaf8a6050feb47934"},
-{"pid":27369,"tid":27369,"ts":326460043999,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2136303},
-{"pid":27369,"tid":27369,"ts":326460044029,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2136334},
-{"pid":27369,"tid":27369,"ts":326460044121,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2136426},
-{"pid":27369,"tid":27369,"ts":326460044213,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2136517},
-{"pid":27369,"tid":27369,"ts":326460044213,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2136517,"id":"0xaf8a6050feb47934"},
-{"pid":27369,"tid":27369,"ts":326460044243,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1740,"tdur":1526,"tts":2136548},
-{"pid":27369,"tid":27369,"ts":326460044243,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2136548},
-{"pid":27369,"tid":27369,"ts":326460044243,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1740,"tdur":1496,"tts":2136578},
-{"pid":27369,"tid":27369,"ts":326460044274,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":101},"dur":61,"tdur":61,"tts":2136578},
-{"pid":27369,"tid":27369,"ts":326460044304,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2136609},
-{"pid":27369,"tid":27369,"ts":326460044335,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":305,"tts":2136670},
-{"pid":27369,"tid":27369,"ts":326460044365,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2136670,"id":"0x30000006a"},
-{"pid":27369,"tid":27369,"ts":326460044365,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2136670},
-{"pid":27369,"tid":27369,"ts":326460044396,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2136700},
-{"pid":27369,"tid":27369,"ts":326460044426,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":2136731},
-{"pid":27369,"tid":27369,"ts":326460044640,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2136975},
-{"pid":27369,"tid":27369,"ts":326460044670,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2136975},
-{"pid":27369,"tid":27369,"ts":326460044701,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":92,"tts":2137005},
-{"pid":27369,"tid":27369,"ts":326460044701,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":101},"dur":30,"tdur":31,"tts":2137005},
-{"pid":27369,"tid":27369,"ts":326460044731,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":101},"dur":31,"tdur":30,"tts":2137036},
-{"pid":27369,"tid":27369,"ts":326460044762,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":101},"tts":2137066},
-{"pid":27369,"tid":27369,"ts":326460044762,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2137066},
-{"pid":27369,"tid":27369,"ts":326460044792,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2137097},
-{"pid":27369,"tid":27369,"ts":326460044792,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2137097},
-{"pid":27369,"tid":27369,"ts":326460044823,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2137128},
-{"pid":27369,"tid":27369,"ts":326460044823,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2137158,"id":"0xaf8a6d7afebbc614"},
-{"pid":27369,"tid":27369,"ts":326460044914,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1038,"tdur":824,"tts":2137219},
-{"pid":27369,"tid":27369,"ts":326460044945,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":101},"dur":458,"tdur":244,"tts":2137250},
-{"pid":27369,"tid":27369,"ts":326460044945,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":275,"tdur":61,"tts":2137250},
-{"pid":27369,"tid":27369,"ts":326460044945,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":275,"tdur":31,"tts":2137280},
-{"pid":27369,"tid":27369,"ts":326460044976,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":244,"tdur":31,"tts":2137280},
-{"pid":27369,"tid":27369,"ts":326460044976,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":0,"tts":2137280},
-{"pid":27369,"tid":27369,"ts":326460045220,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2137311,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460045250,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2137341},
-{"pid":27369,"tid":27369,"ts":326460045372,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2137463},
-{"pid":27369,"tid":27369,"ts":326460045403,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":335,"tts":2137494},
-{"pid":27369,"tid":27369,"ts":326460045403,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2137494},
-{"pid":27369,"tid":27369,"ts":326460045433,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":2137524},
-{"pid":27369,"tid":27369,"ts":326460045433,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2137524},
-{"pid":27369,"tid":27369,"ts":326460045494,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2137585},
-{"pid":27369,"tid":27369,"ts":326460045739,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2137829,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460045769,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2137891,"id":"0x30000006a"},
-{"pid":27369,"tid":27369,"ts":326460045800,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2137891},
-{"pid":27369,"tid":27369,"ts":326460045830,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":72},"dur":92,"tdur":61,"tts":2137921},
-{"pid":27369,"tid":27369,"ts":326460045830,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2137921},
-{"pid":27369,"tid":27369,"ts":326460045861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2137952,"id":"0xaf8a6d7bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460045922,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2138013},
-{"pid":27369,"tid":27369,"ts":326460045922,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2138013},
-{"pid":27369,"tid":27369,"ts":326460046074,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2138165},
-{"pid":27369,"tid":27369,"ts":326460051232,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2138440},
-{"pid":27369,"tid":27369,"ts":326460051263,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2138470,"id":"0xaf8a6051feb47934"},
-{"pid":27369,"tid":27369,"ts":326460051263,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":153,"tts":2138470},
-{"pid":27369,"tid":27369,"ts":326460051263,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":2138470},
-{"pid":27369,"tid":27369,"ts":326460051324,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2138531,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460051324,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2138531,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460051354,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2138562},
-{"pid":27369,"tid":27369,"ts":326460051354,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":31,"tts":2138592},
-{"pid":27369,"tid":27369,"ts":326460051385,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2138592,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326460051476,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2138715},
-{"pid":27369,"tid":27369,"ts":326460051568,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2138776},
-{"pid":27369,"tid":27369,"ts":326460051598,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2138806,"id":"0xaf8a6052feb47934"},
-{"pid":27369,"tid":27369,"ts":326460051598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2138806},
-{"pid":27369,"tid":27369,"ts":326460051659,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2138867},
-{"pid":27369,"tid":27369,"ts":326460051659,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2138867},
-{"pid":27369,"tid":27369,"ts":326460051751,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2138959},
-{"pid":27369,"tid":27369,"ts":326460052789,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2139294},
-{"pid":27369,"tid":27369,"ts":326460053338,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2139813},
-{"pid":27369,"tid":27369,"ts":326460053399,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2139874},
-{"pid":27369,"tid":27369,"ts":326460053552,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":274,"tdur":275,"tts":2140027},
-{"pid":27369,"tid":27369,"ts":326460047000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2140057,"id":"0x30000006d"},
-{"pid":27369,"tid":27369,"ts":326460053582,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901997},"tts":2140057,"id":"0x30000006d"},
-{"pid":27369,"tid":27369,"ts":326460053613,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":183,"tts":2140088},
-{"pid":27369,"tid":27369,"ts":326460053643,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2140119,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326460053643,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":2140119},
-{"pid":27369,"tid":27369,"ts":326460053674,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2140149},
-{"pid":27369,"tid":27369,"ts":326460053704,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2140180},
-{"pid":27369,"tid":27369,"ts":326460053735,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2140210,"id":"0xaf8a6d74febbc614"},
-{"pid":27369,"tid":27369,"ts":326460053765,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2140241,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460053796,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2140271,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460053826,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2140302},
-{"pid":27369,"tid":27369,"ts":326460054589,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2140576},
-{"pid":27369,"tid":27369,"ts":326460054620,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":122,"tts":2140637},
-{"pid":27369,"tid":27369,"ts":326460054650,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460052226},"dur":92,"tdur":92,"tts":2140637},
-{"pid":27369,"tid":27369,"ts":326460054681,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2140668},
-{"pid":27369,"tid":27369,"ts":326460054681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2140698,"id":"0xaf8a6d75febbc614"},
-{"pid":27369,"tid":27369,"ts":326460054773,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2140790},
-{"pid":27369,"tid":27369,"ts":326460055047,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2140882},
-{"pid":27369,"tid":27369,"ts":326460056024,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2141065},
-{"pid":27369,"tid":27369,"ts":326460056054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2141095,"id":"0xaf8a6053feb47934"},
-{"pid":27369,"tid":27369,"ts":326460056054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2141095},
-{"pid":27369,"tid":27369,"ts":326460056054,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2141095},
-{"pid":27369,"tid":27369,"ts":326460056115,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2141156,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460056115,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2141156,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460056146,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":2141187},
-{"pid":27369,"tid":27369,"ts":326460056146,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2141187},
-{"pid":27369,"tid":27369,"ts":326460056177,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2141217,"id":"0xaf8a644cfadc9db4"},
-{"pid":27369,"tid":27369,"ts":326460056268,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2141309},
-{"pid":27369,"tid":27369,"ts":326460057336,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2141461},
-{"pid":27369,"tid":27369,"ts":326460057336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2141492,"id":"0xaf8a606cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460057367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2141492},
-{"pid":27369,"tid":27369,"ts":326460057367,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2141492},
-{"pid":27369,"tid":27369,"ts":326460057397,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2141522},
-{"pid":27369,"tid":27369,"ts":326460057580,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2141706},
-{"pid":27369,"tid":27369,"ts":326460057611,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2141736},
-{"pid":27369,"tid":27369,"ts":326460057611,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2141767,"id":"0xaf8a606dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460057703,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2141858},
-{"pid":27369,"tid":27369,"ts":326460057764,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2141889},
-{"pid":27369,"tid":27369,"ts":326460057855,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2141980},
-{"pid":27369,"tid":27369,"ts":326460057947,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2142072},
-{"pid":27369,"tid":27369,"ts":326460057947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2142102,"id":"0xaf8a606dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460057977,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2869,"tdur":1587,"tts":2142102},
-{"pid":27369,"tid":27369,"ts":326460057977,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":0,"tts":2142102},
-{"pid":27369,"tid":27369,"ts":326460058008,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2808,"tdur":1526,"tts":2142133},
-{"pid":27369,"tid":27369,"ts":326460058008,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":102},"dur":61,"tdur":61,"tts":2142133},
-{"pid":27369,"tid":27369,"ts":326460058038,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2142163},
-{"pid":27369,"tid":27369,"ts":326460058099,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":794,"tdur":367,"tts":2142224},
-{"pid":27369,"tid":27369,"ts":326460058099,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2142224,"id":"0x30000006b"},
-{"pid":27369,"tid":27369,"ts":326460058130,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2142255},
-{"pid":27369,"tid":27369,"ts":326460058130,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2142255},
-{"pid":27369,"tid":27369,"ts":326460058160,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":672,"tdur":245,"tts":2142285},
-{"pid":27369,"tid":27369,"ts":326460058862,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2142560},
-{"pid":27369,"tid":27369,"ts":326460058893,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2142591},
-{"pid":27369,"tid":27369,"ts":326460058893,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":793,"tdur":152,"tts":2142591},
-{"pid":27369,"tid":27369,"ts":326460058923,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":102},"dur":31,"tdur":31,"tts":2142621},
-{"pid":27369,"tid":27369,"ts":326460058954,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":102},"dur":30,"tdur":30,"tts":2142652},
-{"pid":27369,"tid":27369,"ts":326460058984,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":102},"tts":2142682},
-{"pid":27369,"tid":27369,"ts":326460059015,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2142713},
-{"pid":27369,"tid":27369,"ts":326460059015,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":671,"tdur":0,"tts":2142713},
-{"pid":27369,"tid":27369,"ts":326460059015,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":641,"tdur":0,"tts":2142713},
-{"pid":27369,"tid":27369,"ts":326460059686,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2142743},
-{"pid":27369,"tid":27369,"ts":326460059717,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2142774},
-{"pid":27369,"tid":27369,"ts":326460059717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2142774,"id":"0xaf8a6d76febbc614"},
-{"pid":27369,"tid":27369,"ts":326460059808,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1008,"tdur":794,"tts":2142865},
-{"pid":27369,"tid":27369,"ts":326460059839,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":102},"dur":397,"tdur":183,"tts":2142896},
-{"pid":27369,"tid":27369,"ts":326460059839,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":275,"tdur":61,"tts":2142896},
-{"pid":27369,"tid":27369,"ts":326460059869,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":245,"tdur":31,"tts":2142926},
-{"pid":27369,"tid":27369,"ts":326460059869,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":2142926},
-{"pid":27369,"tid":27369,"ts":326460060083,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2142926},
-{"pid":27369,"tid":27369,"ts":326460060114,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2142957,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460060144,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2142987},
-{"pid":27369,"tid":27369,"ts":326460060236,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2143079},
-{"pid":27369,"tid":27369,"ts":326460060236,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":335,"tts":2143110},
-{"pid":27369,"tid":27369,"ts":326460060266,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2143110},
-{"pid":27369,"tid":27369,"ts":326460060266,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2143110},
-{"pid":27369,"tid":27369,"ts":326460060297,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2143140},
-{"pid":27369,"tid":27369,"ts":326460060327,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2143171},
-{"pid":27369,"tid":27369,"ts":326460060571,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2143415,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460060632,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2143476,"id":"0x30000006b"},
-{"pid":27369,"tid":27369,"ts":326460060663,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2143506},
-{"pid":27369,"tid":27369,"ts":326460060663,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3234},"dur":92,"tdur":92,"tts":2143506},
-{"pid":27369,"tid":27369,"ts":326460060694,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2143537},
-{"pid":27369,"tid":27369,"ts":326460060724,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2143567,"id":"0xaf8a6d77febbc614"},
-{"pid":27369,"tid":27369,"ts":326460060785,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2143628},
-{"pid":27369,"tid":27369,"ts":326460060785,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2143628},
-{"pid":27369,"tid":27369,"ts":326460060938,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2143781},
-{"pid":27369,"tid":27369,"ts":326460065516,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2143995},
-{"pid":27369,"tid":27369,"ts":326460065516,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2143995,"id":"0xaf8a606efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460065546,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2144025},
-{"pid":27369,"tid":27369,"ts":326460065577,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2144056},
-{"pid":27369,"tid":27369,"ts":326460065577,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2144056},
-{"pid":27369,"tid":27369,"ts":326460065699,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2144178},
-{"pid":27369,"tid":27369,"ts":326460069392,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2144422},
-{"pid":27369,"tid":27369,"ts":326460069972,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2145002},
-{"pid":27369,"tid":27369,"ts":326460070094,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":2145124},
-{"pid":27369,"tid":27369,"ts":326460070216,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2145246},
-{"pid":27369,"tid":27369,"ts":326460063000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2145276,"id":"0x30000006e"},
-{"pid":27369,"tid":27369,"ts":326460070246,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901998},"tts":2145276,"id":"0x30000006e"},
-{"pid":27369,"tid":27369,"ts":326460070277,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2145307},
-{"pid":27369,"tid":27369,"ts":326460070277,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2145307,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326460070277,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":153,"tts":2145337},
-{"pid":27369,"tid":27369,"ts":326460070307,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2145337},
-{"pid":27369,"tid":27369,"ts":326460070338,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2145368},
-{"pid":27369,"tid":27369,"ts":326460070368,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2145399,"id":"0xaf8a6d70febbc614"},
-{"pid":27369,"tid":27369,"ts":326460070430,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2145460,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460070430,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2145490,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460070491,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2145521},
-{"pid":27369,"tid":27369,"ts":326460070491,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2145521},
-{"pid":27369,"tid":27369,"ts":326460070857,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2145856},
-{"pid":27369,"tid":27369,"ts":326460070918,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":2145917},
-{"pid":27369,"tid":27369,"ts":326460070918,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460068908},"dur":61,"tdur":61,"tts":2145917},
-{"pid":27369,"tid":27369,"ts":326460070948,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2145948},
-{"pid":27369,"tid":27369,"ts":326460070948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2145948,"id":"0xaf8a6d71febbc614"},
-{"pid":27369,"tid":27369,"ts":326460071040,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2146039},
-{"pid":27369,"tid":27369,"ts":326460071131,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2146131},
-{"pid":27369,"tid":27369,"ts":326460074214,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2146345},
-{"pid":27369,"tid":27369,"ts":326460074245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2146375,"id":"0xaf8a606ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460074245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2146375},
-{"pid":27369,"tid":27369,"ts":326460074245,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":2146375},
-{"pid":27369,"tid":27369,"ts":326460074306,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2146436,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460074336,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2146467,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460074336,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2146467},
-{"pid":27369,"tid":27369,"ts":326460074336,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2146467},
-{"pid":27369,"tid":27369,"ts":326460074367,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2146497,"id":"0xaf8a644cff4a6b2c"},
-{"pid":27369,"tid":27369,"ts":326460074458,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2146589},
-{"pid":27369,"tid":27369,"ts":326460075618,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2146741},
-{"pid":27369,"tid":27369,"ts":326460075618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2146741,"id":"0xaf8a6068feb47934"},
-{"pid":27369,"tid":27369,"ts":326460075649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2146772},
-{"pid":27369,"tid":27369,"ts":326460075649,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2146772},
-{"pid":27369,"tid":27369,"ts":326460075679,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2146802},
-{"pid":27369,"tid":27369,"ts":326460075893,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":2147016},
-{"pid":27369,"tid":27369,"ts":326460075893,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":61,"tts":2147047},
-{"pid":27369,"tid":27369,"ts":326460075923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2147047,"id":"0xaf8a6069feb47934"},
-{"pid":27369,"tid":27369,"ts":326460076015,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2147138},
-{"pid":27369,"tid":27369,"ts":326460076045,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2147169},
-{"pid":27369,"tid":27369,"ts":326460076137,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2147260},
-{"pid":27369,"tid":27369,"ts":326460076228,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2147352},
-{"pid":27369,"tid":27369,"ts":326460076228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2147382,"id":"0xaf8a6069feb47934"},
-{"pid":27369,"tid":27369,"ts":326460076259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1801,"tdur":1618,"tts":2147382},{"pid":27369,"tid":27369,"ts":326460076259,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2147382},
-{"pid":27369,"tid":27369,"ts":326460076289,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1740,"tdur":1556,"tts":2147413},
-{"pid":27369,"tid":27369,"ts":326460076289,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":103},"dur":92,"tdur":31,"tts":2147443},
-{"pid":27369,"tid":27369,"ts":326460076320,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":2147443},
-{"pid":27369,"tid":27369,"ts":326460076381,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2147504},
-{"pid":27369,"tid":27369,"ts":326460076381,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2147504,"id":"0x30000006c"},
-{"pid":27369,"tid":27369,"ts":326460076381,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2147504,"id":"0x30000006d"},
-{"pid":27369,"tid":27369,"ts":326460076412,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2147535},
-{"pid":27369,"tid":27369,"ts":326460076412,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":2147535},
-{"pid":27369,"tid":27369,"ts":326460076442,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":245,"tts":2147565},
-{"pid":27369,"tid":27369,"ts":326460076686,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2147810},
-{"pid":27369,"tid":27369,"ts":326460076717,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2147840},
-{"pid":27369,"tid":27369,"ts":326460076717,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2147840},
-{"pid":27369,"tid":27369,"ts":326460076747,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":103},"dur":31,"tdur":30,"tts":2147871},
-{"pid":27369,"tid":27369,"ts":326460076778,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":103},"dur":30,"tdur":31,"tts":2147901},
-{"pid":27369,"tid":27369,"ts":326460076808,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":103},"tts":2147932},
-{"pid":27369,"tid":27369,"ts":326460076808,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2147932},
-{"pid":27369,"tid":27369,"ts":326460076808,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2147932},
-{"pid":27369,"tid":27369,"ts":326460076839,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2147962},
-{"pid":27369,"tid":27369,"ts":326460076839,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2147993},
-{"pid":27369,"tid":27369,"ts":326460076869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2147993,"id":"0xaf8a6d72febbc614"},
-{"pid":27369,"tid":27369,"ts":326460076961,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1068,"tdur":885,"tts":2148084},
-{"pid":27369,"tid":27369,"ts":326460076961,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":103},"dur":214,"tdur":214,"tts":2148084},
-{"pid":27369,"tid":27369,"ts":326460076961,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2148084},
-{"pid":27369,"tid":27369,"ts":326460076991,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2148115},
-{"pid":27369,"tid":27369,"ts":326460076991,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2148115},
-{"pid":27369,"tid":27369,"ts":326460077022,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2148145,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460077022,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2148145},
-{"pid":27369,"tid":27369,"ts":326460077175,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2148298},
-{"pid":27369,"tid":27369,"ts":326460077205,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":2148328},
-{"pid":27369,"tid":27369,"ts":326460077205,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2148328},
-{"pid":27369,"tid":27369,"ts":326460077205,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2148328},
-{"pid":27369,"tid":27369,"ts":326460077236,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2148359},
-{"pid":27369,"tid":27369,"ts":326460077266,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":183,"tts":2148420},
-{"pid":27369,"tid":27369,"ts":326460077541,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2148664,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460077815,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2148756,"id":"0x30000006c"},
-{"pid":27369,"tid":27369,"ts":326460077815,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2148756,"id":"0x30000006d"},
-{"pid":27369,"tid":27369,"ts":326460077846,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2148786},
-{"pid":27369,"tid":27369,"ts":326460077876,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6396},"dur":92,"tdur":91,"tts":2148817},
-{"pid":27369,"tid":27407,"ts":326460074000,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1482282,"id":"0xccc4ae02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460074031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1482313,"id":"0xaf8a606ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460075374,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1482496},
-{"pid":27369,"tid":27407,"ts":326460075404,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1482527},
-{"pid":27369,"tid":27407,"ts":326460075435,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1482557,"id":"0xccc4b002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460075465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1482588,"id":"0xaf8a6068feb47934"},
-{"pid":27369,"tid":27407,"ts":326460076930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1482710,"id":"0xaf8a6d72febbc614"},
-{"pid":27369,"tid":27407,"ts":326460076961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1482740},
-{"pid":27369,"tid":27407,"ts":326460076961,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1482740,"id":"0xba453d02"},
-{"pid":27369,"tid":27407,"ts":326460077022,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1953,"tdur":1862,"tts":1482801},
-{"pid":27369,"tid":27407,"ts":326460077175,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":64}},"tts":1482954,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460077236,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":43}},"tts":1483015,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460077419,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":13}},"tts":1483229,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460077663,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 204 OK","status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1483442,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460077724,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1483503,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460077754,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1483534,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460077907,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3552,"index":0,"offset":0,"truncate":true}},"tts":1483686,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460077968,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1483747,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460077968,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1483747,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460077999,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1483778,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460078029,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1483808,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460078060,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1483839,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460078060,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1483839,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078090,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1483869,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078090,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1483869,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460078121,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1483900,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460078151,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1483931,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460078151,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1483961,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078182,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1483961,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078212,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1483992,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078273,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1484053,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078334,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1484114,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1484175,"id":"0xaf8a606afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460078548,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1484358,"id":"0xba453f02"},
-{"pid":27369,"tid":27407,"ts":326460078792,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1484571,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078884,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1484571,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460078975,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1068,"tdur":1007,"tts":1484663},
-{"pid":27369,"tid":27407,"ts":326460079097,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":68}},"tts":1484785,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460079158,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":26}},"tts":1484846,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460079219,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":13}},"tts":1484907,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460079250,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1484938,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460079280,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1484968,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460079311,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1484999,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460079341,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1485029,"id":"0xaf8a6d0cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460079372,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1485060,"id":"0xaf8a6d0dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460079555,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1485182,"id":"0xba454002"},
-{"pid":27369,"tid":27407,"ts":326460079647,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1485273,"id":"0xaf8a606bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460079830,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1485487,"id":"0x1da"},
-{"pid":27369,"tid":27407,"ts":326460079952,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":12}},"tts":1485579,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460079952,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1485579,"id":"0xaf8a6d0efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460079982,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":12}},"tts":1485609,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460080074,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1485701,"id":"0xaf8a6d73febbc614"},
-{"pid":27369,"tid":27407,"ts":326460080104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1485731},
-{"pid":27369,"tid":27407,"ts":326460080104,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1485731,"id":"0xba453e02"},
-{"pid":27369,"tid":27407,"ts":326460080166,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1485792,"id":"0xaf8a6d0cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460080166,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":122,"tts":1485792},
-{"pid":27369,"tid":27407,"ts":326460080196,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1485823,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460080227,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1485853,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460080227,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1485853,"id":"0xaf8a6538fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460080288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1485914,"id":"0xaf8a6d0dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460080318,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1485945},
-{"pid":27369,"tid":27407,"ts":326460080349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1485975,"id":"0xaf8a6d0efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460080349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":213,"tdur":214,"tts":1485975},
-{"pid":27369,"tid":27407,"ts":326460080379,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1486036,"id":"0x136"},
-{"pid":27369,"tid":27369,"ts":326460077907,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2148847},
-{"pid":27369,"tid":27369,"ts":326460077938,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2148878,"id":"0xaf8a6d73febbc614"},
-{"pid":27369,"tid":27369,"ts":326460077968,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2148908},
-{"pid":27369,"tid":27369,"ts":326460077999,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2148939},
-{"pid":27369,"tid":27369,"ts":326460078121,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2149061},
-{"pid":27369,"tid":27369,"ts":326460078548,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2149214},
-{"pid":27369,"tid":27369,"ts":326460078578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2149244,"id":"0xaf8a606afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460078578,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":153,"tdur":153,"tts":2149244},
-{"pid":27369,"tid":27369,"ts":326460078792,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2149458},
-{"pid":27369,"tid":27369,"ts":326460080684,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2149671},
-{"pid":27369,"tid":27369,"ts":326460080715,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2149702,"id":"0xaf8a606bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460080715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":122,"tdur":122,"tts":2149702},
-{"pid":27369,"tid":27369,"ts":326460080745,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2149732},
-{"pid":27369,"tid":27369,"ts":326460080745,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":2149732},
-{"pid":27369,"tid":27369,"ts":326460080776,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2149763},
-{"pid":27369,"tid":27369,"ts":326460080776,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":30,"tts":2149763},
-{"pid":27369,"tid":27369,"ts":326460080867,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2149885},
-{"pid":27369,"tid":27369,"ts":326460084896,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2150099},
-{"pid":27369,"tid":27369,"ts":326460084896,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2150099,"id":"0xaf8a6064feb47934"},
-{"pid":27369,"tid":27369,"ts":326460084927,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2150129},
-{"pid":27369,"tid":27369,"ts":326460084957,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2150160},
-{"pid":27369,"tid":27369,"ts":326460084988,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2150190},
-{"pid":27369,"tid":27369,"ts":326460085079,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2150282},
-{"pid":27369,"tid":27369,"ts":326460086086,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2150526},
-{"pid":27369,"tid":27369,"ts":326460086544,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2150984},
-{"pid":27369,"tid":27369,"ts":326460086605,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":152,"tts":2151045},
-{"pid":27369,"tid":27369,"ts":326460086788,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2151228},
-{"pid":27369,"tid":27369,"ts":326460080000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2151258,"id":"0x30000006f"},
-{"pid":27369,"tid":27369,"ts":326460086819,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884901999},"tts":2151258,"id":"0x30000006f"},
-{"pid":27369,"tid":27369,"ts":326460086849,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2151289},
-{"pid":27369,"tid":27369,"ts":326460086849,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2151289,"id":"0xaf8a644cff493284"},
-{"pid":27369,"tid":27369,"ts":326460086880,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":184,"tts":2151319},
-{"pid":27369,"tid":27369,"ts":326460086911,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":122,"tts":2151350},
-{"pid":27369,"tid":27369,"ts":326460086941,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2151381},
-{"pid":27369,"tid":27369,"ts":326460086972,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2151411,"id":"0xaf8a6d08febbc614"},
-{"pid":27369,"tid":27369,"ts":326460087002,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2151442,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460087033,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2151472,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460087094,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2151533},
-{"pid":27369,"tid":27369,"ts":326460087246,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2151686},
-{"pid":27369,"tid":27369,"ts":326460087277,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":305,"tdur":152,"tts":2151747},
-{"pid":27369,"tid":27369,"ts":326460087307,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460085589},"dur":61,"tdur":61,"tts":2151747},
-{"pid":27369,"tid":27369,"ts":326460087338,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":2151777},
-{"pid":27369,"tid":27369,"ts":326460087338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2151777,"id":"0xaf8a6d09febbc614"},
-{"pid":27369,"tid":27369,"ts":326460087612,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2151930},
-{"pid":27369,"tid":27369,"ts":326460088009,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2152144},
-{"pid":27369,"tid":27369,"ts":326460089840,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2152418},
-{"pid":27369,"tid":27369,"ts":326460089871,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2152449,"id":"0xaf8a6065feb47934"},
-{"pid":27369,"tid":27369,"ts":326460089871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2152449},
-{"pid":27369,"tid":27369,"ts":326460089871,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":2152449},
-{"pid":27369,"tid":27369,"ts":326460089932,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2152510,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460089932,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2152510,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460089963,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":91,"tdur":92,"tts":2152540},
-{"pid":27369,"tid":27369,"ts":326460089963,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2152540},
-{"pid":27369,"tid":27369,"ts":326460089993,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2152571,"id":"0xaf8a644cff493284"},
-{"pid":27369,"tid":27369,"ts":326460090115,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2152693},
-{"pid":27369,"tid":27369,"ts":326460102842,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2153181},
-{"pid":27369,"tid":27369,"ts":326460103544,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2153700},
-{"pid":27369,"tid":27369,"ts":326460103636,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":2153792},
-{"pid":27369,"tid":27369,"ts":326460103758,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":335,"tdur":335,"tts":2153914},
-{"pid":27369,"tid":27369,"ts":326460097000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2153975,"id":"0x300000070"},
-{"pid":27369,"tid":27369,"ts":326460103819,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902000},"tts":2153975,"id":"0x300000070"},
-{"pid":27369,"tid":27369,"ts":326460103849,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":244,"tdur":244,"tts":2154005},
-{"pid":27369,"tid":27369,"ts":326460103849,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2154036,"id":"0xaf8a644cff493284"},
-{"pid":27369,"tid":27369,"ts":326460103880,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":213,"tdur":213,"tts":2154036},
-{"pid":27369,"tid":27407,"ts":326460080501,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1486159,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460081295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1486281,"id":"0xaf8a6d0ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460081295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1486281},
-{"pid":27369,"tid":27407,"ts":326460081295,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1486311,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460081325,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1486311,"id":"0x1dc"},
-{"pid":27369,"tid":27407,"ts":326460082088,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":92,"tts":1486372},
-{"pid":27369,"tid":27407,"ts":326460082119,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":30,"tts":1486403},
-{"pid":27369,"tid":27407,"ts":326460082149,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1486433,"id":"0xccc4b102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460084621,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":184,"tdur":153,"tts":1486555},
-{"pid":27369,"tid":27407,"ts":326460084652,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1486586},
-{"pid":27369,"tid":27407,"ts":326460084652,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1486586,"id":"0xc4c19002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460084683,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1486616,"id":"0xaf8a6064feb47934"},
-{"pid":27369,"tid":27407,"ts":326460087033,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1486799,"id":"0xaf8a6d08febbc614"},
-{"pid":27369,"tid":27407,"ts":326460087063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":458,"tdur":61,"tts":1486830},
-{"pid":27369,"tid":27407,"ts":326460087063,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1486830,"id":"0xba454102"},
-{"pid":27369,"tid":27407,"ts":326460087521,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1486922,"id":"0xaf8a6d09febbc614"},
-{"pid":27369,"tid":27407,"ts":326460087521,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1486922},
-{"pid":27369,"tid":27407,"ts":326460087582,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":214,"tdur":61,"tts":1486952},
-{"pid":27369,"tid":27407,"ts":326460087582,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1486952,"id":"0xba454202"},
-{"pid":27369,"tid":27407,"ts":326460089566,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1487074},
-{"pid":27369,"tid":27407,"ts":326460089596,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1487105},
-{"pid":27369,"tid":27407,"ts":326460089596,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1487105,"id":"0xccc4b302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460089627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1487135,"id":"0xaf8a6065feb47934"},
-{"pid":27369,"tid":27407,"ts":326460104093,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1487318,"id":"0xaf8a6d0afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460104093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":336,"tdur":92,"tts":1487318},
-{"pid":27369,"tid":27407,"ts":326460104124,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1487349,"id":"0xba454302"},
-{"pid":27369,"tid":27407,"ts":326460104704,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1487532,"id":"0xaf8a6d0bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460104704,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":275,"tdur":91,"tts":1487532},
-{"pid":27369,"tid":27407,"ts":326460104734,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1487562,"id":"0xba454402"},
-{"pid":27369,"tid":27407,"ts":326460107390,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1487715},
-{"pid":27369,"tid":27407,"ts":326460107420,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":1487746},
-{"pid":27369,"tid":27407,"ts":326460107451,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1487776,"id":"0xccc4b502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460107451,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1487807,"id":"0xaf8a6066feb47934"},
-{"pid":27369,"tid":27407,"ts":326460109892,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":794,"tdur":244,"tts":1487990},
-{"pid":27369,"tid":27407,"ts":326460110503,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":183,"tts":1488051},
-{"pid":27369,"tid":27407,"ts":326460110533,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1488081,"id":"0xccc4b802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460110594,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1488142,"id":"0xaf8a6067feb47934"},
-{"pid":27369,"tid":27407,"ts":326460112120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1488325,"id":"0xaf8a6d04febbc614"},
-{"pid":27369,"tid":27407,"ts":326460112120,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1488325},
-{"pid":27369,"tid":27407,"ts":326460112151,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1488356,"id":"0xba454502"},
-{"pid":27369,"tid":27407,"ts":326460112944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1488478,"id":"0xaf8a6d05febbc614"},
-{"pid":27369,"tid":27407,"ts":326460112944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":245,"tdur":92,"tts":1488478},
-{"pid":27369,"tid":27407,"ts":326460112975,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1488509,"id":"0xba454602"},
-{"pid":27369,"tid":27407,"ts":326460118163,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1488631},
-{"pid":27369,"tid":27407,"ts":326460118194,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1488661},
-{"pid":27369,"tid":27407,"ts":326460118194,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1488661,"id":"0xc4c19302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460118224,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1488692,"id":"0xaf8a6061feb47934"},
-{"pid":27369,"tid":27407,"ts":326460121582,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1488875,"id":"0xaf8a6d06febbc614"},
-{"pid":27369,"tid":27407,"ts":326460121612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1488905},
-{"pid":27369,"tid":27407,"ts":326460121643,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1488936,"id":"0xba454702"},
-{"pid":27369,"tid":27407,"ts":326460122284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1489058,"id":"0xaf8a6d07febbc614"},
-{"pid":27369,"tid":27407,"ts":326460122284,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1489058},
-{"pid":27369,"tid":27407,"ts":326460122314,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1489088,"id":"0xba454802"},
-{"pid":27369,"tid":27407,"ts":326460123749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":122,"tts":1489211},
-{"pid":27369,"tid":27407,"ts":326460123779,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1489211},
-{"pid":27369,"tid":27407,"ts":326460123810,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1489241,"id":"0xccc4ba02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460123810,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1489241,"id":"0xaf8a6062feb47934"},
-{"pid":27369,"tid":27407,"ts":326460137025,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1489424,"id":"0xaf8a6d00febbc614"},
-{"pid":27369,"tid":27407,"ts":326460137055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1489424},
-{"pid":27369,"tid":27407,"ts":326460137055,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1489424,"id":"0xba454902"},
-{"pid":27369,"tid":27407,"ts":326460137483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1489546,"id":"0xaf8a6d01febbc614"},
-{"pid":27369,"tid":27407,"ts":326460137513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1489577},
-{"pid":27369,"tid":27407,"ts":326460137513,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1489577,"id":"0xba454a02"},
-{"pid":27369,"tid":27407,"ts":326460138337,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1489668},
-{"pid":27369,"tid":27369,"ts":326460103910,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":183,"tdur":183,"tts":2154066},
-{"pid":27369,"tid":27369,"ts":326460103941,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2154097},
-{"pid":27369,"tid":27369,"ts":326460103971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2154127,"id":"0xaf8a6d0afebbc614"},
-{"pid":27369,"tid":27369,"ts":326460104063,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2154219,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460104063,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2154219,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460104124,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2154280},
-{"pid":27369,"tid":27369,"ts":326460104521,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2154585},
-{"pid":27369,"tid":27369,"ts":326460104551,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":122,"tts":2154646},
-{"pid":27369,"tid":27369,"ts":326460104582,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460102271},"dur":91,"tdur":92,"tts":2154646},
-{"pid":27369,"tid":27369,"ts":326460104612,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2154677},
-{"pid":27369,"tid":27369,"ts":326460104612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2154677,"id":"0xaf8a6d0bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460104704,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2154768},
-{"pid":27369,"tid":27369,"ts":326460104826,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2154890},
-{"pid":27369,"tid":27369,"ts":326460107664,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2155104},
-{"pid":27369,"tid":27369,"ts":326460107695,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2155135,"id":"0xaf8a6066feb47934"},
-{"pid":27369,"tid":27369,"ts":326460107695,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2155135},
-{"pid":27369,"tid":27369,"ts":326460107725,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2155165},
-{"pid":27369,"tid":27369,"ts":326460107756,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2155226,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460107786,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2155226,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460107786,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2155226},
-{"pid":27369,"tid":27369,"ts":326460107817,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2155257},
-{"pid":27369,"tid":27369,"ts":326460107847,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2155287,"id":"0xaf8a644cff493284"},
-{"pid":27369,"tid":27369,"ts":326460107939,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2155379},
-{"pid":27369,"tid":27369,"ts":326460110747,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2155592},
-{"pid":27369,"tid":27369,"ts":326460110777,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2155623,"id":"0xaf8a6067feb47934"},
-{"pid":27369,"tid":27369,"ts":326460110777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2155623},
-{"pid":27369,"tid":27369,"ts":326460110808,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":428,"tts":2155653},
-{"pid":27369,"tid":27369,"ts":326460110838,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2155684},
-{"pid":27369,"tid":27369,"ts":326460111052,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2155898},
-{"pid":27369,"tid":27369,"ts":326460111052,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2155898},
-{"pid":27369,"tid":27369,"ts":326460111083,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2155928,"id":"0xaf8a6060feb47934"},
-{"pid":27369,"tid":27369,"ts":326460111174,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2156020},
-{"pid":27369,"tid":27369,"ts":326460111205,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2156050},
-{"pid":27369,"tid":27369,"ts":326460111296,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2156142},
-{"pid":27369,"tid":27369,"ts":326460111388,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2156233},
-{"pid":27369,"tid":27369,"ts":326460111388,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2156233,"id":"0xaf8a6060feb47934"},
-{"pid":27369,"tid":27369,"ts":326460111418,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1587,"tts":2156264},
-{"pid":27369,"tid":27369,"ts":326460111418,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2156264},
-{"pid":27369,"tid":27369,"ts":326460111418,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1587,"tdur":1556,"tts":2156264},
-{"pid":27369,"tid":27369,"ts":326460111449,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":104},"dur":61,"tdur":61,"tts":2156294},
-{"pid":27369,"tid":27369,"ts":326460111479,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2156325},
-{"pid":27369,"tid":27369,"ts":326460111510,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":366,"tdur":367,"tts":2156355},
-{"pid":27369,"tid":27369,"ts":326460111540,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2156386,"id":"0x30000006e"},
-{"pid":27369,"tid":27369,"ts":326460111540,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2156386,"id":"0x30000006f"},
-{"pid":27369,"tid":27369,"ts":326460111571,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2156416},
-{"pid":27369,"tid":27369,"ts":326460111571,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2156416},
-{"pid":27369,"tid":27369,"ts":326460111602,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2156447},
-{"pid":27369,"tid":27369,"ts":326460111876,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2156722},
-{"pid":27369,"tid":27369,"ts":326460111876,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2156722},
-{"pid":27369,"tid":27369,"ts":326460111907,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2156752},
-{"pid":27369,"tid":27369,"ts":326460111907,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":104},"dur":30,"tdur":31,"tts":2156752},
-{"pid":27369,"tid":27369,"ts":326460111937,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":104},"dur":31,"tdur":30,"tts":2156783},
-{"pid":27369,"tid":27369,"ts":326460111968,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":104},"tts":2156813},
-{"pid":27369,"tid":27369,"ts":326460111968,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2156844},
-{"pid":27369,"tid":27369,"ts":326460111998,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2156844},
-{"pid":27369,"tid":27369,"ts":326460111998,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2156844},
-{"pid":27369,"tid":27369,"ts":326460112029,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2156874},
-{"pid":27369,"tid":27369,"ts":326460112059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2156905,"id":"0xaf8a6d04febbc614"},
-{"pid":27369,"tid":27369,"ts":326460112151,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":2156996},
-{"pid":27369,"tid":27369,"ts":326460112151,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":104},"dur":214,"tdur":214,"tts":2156996},
-{"pid":27369,"tid":27369,"ts":326460112151,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":2157027},
-{"pid":27369,"tid":27369,"ts":326460112181,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2157027},
-{"pid":27369,"tid":27369,"ts":326460112181,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2157027},
-{"pid":27369,"tid":27369,"ts":326460112212,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2157057,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460112212,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2157057},
-{"pid":27369,"tid":27369,"ts":326460112365,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2157210},
-{"pid":27369,"tid":27369,"ts":326460112365,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":396,"tdur":397,"tts":2157210},
-{"pid":27369,"tid":27369,"ts":326460112395,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2157240},
-{"pid":27369,"tid":27369,"ts":326460112395,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":336,"tts":2157240},
-{"pid":27369,"tid":27369,"ts":326460112395,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2157271},
-{"pid":27369,"tid":27369,"ts":326460112456,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":245,"tts":2157301},
-{"pid":27369,"tid":27369,"ts":326460112731,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2157576,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460112792,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2157637,"id":"0x30000006e"},
-{"pid":27369,"tid":27369,"ts":326460112822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2157668,"id":"0x30000006f"},
-{"pid":27369,"tid":27369,"ts":326460112822,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2157668},
-{"pid":27369,"tid":27369,"ts":326460112822,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9984},"dur":92,"tdur":61,"tts":2157698},
-{"pid":27369,"tid":27369,"ts":326460112853,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2157698},
-{"pid":27369,"tid":27369,"ts":326460112883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2157729,"id":"0xaf8a6d05febbc614"},
-{"pid":27369,"tid":27369,"ts":326460112944,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2157790},
-{"pid":27369,"tid":27369,"ts":326460112944,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2157790},
-{"pid":27369,"tid":27369,"ts":326460113066,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2157912},
-{"pid":27369,"tid":27369,"ts":326460118408,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2158095},
-{"pid":27369,"tid":27369,"ts":326460118438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2158126,"id":"0xaf8a6061feb47934"},
-{"pid":27369,"tid":27369,"ts":326460118438,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2158126},
-{"pid":27369,"tid":27369,"ts":326460118469,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2158156},
-{"pid":27369,"tid":27369,"ts":326460118499,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2158187},
-{"pid":27369,"tid":27369,"ts":326460118621,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2158309},
-{"pid":27369,"tid":27369,"ts":326460120636,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2158522},
-{"pid":27369,"tid":27369,"ts":326460121093,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2158950},
-{"pid":27369,"tid":27369,"ts":326460121185,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2159041},
-{"pid":27369,"tid":27369,"ts":326460121338,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":274,"tdur":274,"tts":2159194},
-{"pid":27369,"tid":27369,"ts":326460113000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2159224,"id":"0x300000071"},
-{"pid":27369,"tid":27369,"ts":326460121399,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902001},"tts":2159255,"id":"0x300000071"},
-{"pid":27369,"tid":27369,"ts":326460121399,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":213,"tts":2159255},
-{"pid":27369,"tid":27369,"ts":326460121429,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2159285,"id":"0xaf8a644cf87c7aa4"},
-{"pid":27369,"tid":27369,"ts":326460121429,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":153,"tts":2159285},
-{"pid":27369,"tid":27369,"ts":326460121460,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2159316},
-{"pid":27369,"tid":27369,"ts":326460121490,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2159346},
-{"pid":27369,"tid":27369,"ts":326460121521,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2159377,"id":"0xaf8a6d06febbc614"},
-{"pid":27369,"tid":27369,"ts":326460121551,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2159407,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460121582,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2159438,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460121612,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2159468},
-{"pid":27369,"tid":27369,"ts":326460122131,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2159743},
-{"pid":27369,"tid":27369,"ts":326460122162,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2159774},
-{"pid":27369,"tid":27369,"ts":326460122192,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460118953},"dur":61,"tdur":61,"tts":2159804},
-{"pid":27369,"tid":27369,"ts":326460122192,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2159804},
-{"pid":27369,"tid":27369,"ts":326460122223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2159835,"id":"0xaf8a6d07febbc614"},
-{"pid":27369,"tid":27369,"ts":326460122314,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2159926},
-{"pid":27369,"tid":27369,"ts":326460122375,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2160018},
-{"pid":27369,"tid":27369,"ts":326460123993,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2160170},
-{"pid":27369,"tid":27369,"ts":326460124023,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2160201,"id":"0xaf8a6062feb47934"},
-{"pid":27369,"tid":27369,"ts":326460124023,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2160201},
-{"pid":27369,"tid":27369,"ts":326460124023,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2160201},
-{"pid":27369,"tid":27369,"ts":326460124084,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2160262,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460124115,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2160292,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460124115,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":62,"tts":2160292},
-{"pid":27369,"tid":27369,"ts":326460124115,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":31,"tts":2160292},
-{"pid":27369,"tid":27369,"ts":326460124145,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2160323,"id":"0xaf8a644cf87c7aa4"},
-{"pid":27369,"tid":27369,"ts":326460124237,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2160415},
-{"pid":27369,"tid":27369,"ts":326460136170,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2160781},
-{"pid":27369,"tid":27369,"ts":326460136598,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2161208},
-{"pid":27369,"tid":27369,"ts":326460136689,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2161300},
-{"pid":27369,"tid":27369,"ts":326460136811,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2161422},
-{"pid":27369,"tid":27369,"ts":326460130000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2161452,"id":"0x300000072"},
-{"pid":27369,"tid":27369,"ts":326460136842,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902002},"tts":2161452,"id":"0x300000072"},
-{"pid":27369,"tid":27369,"ts":326460136872,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2161483},
-{"pid":27369,"tid":27369,"ts":326460136872,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2161483,"id":"0xaf8a644cf87c7aa4"},
-{"pid":27369,"tid":27369,"ts":326460136903,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":122,"tts":2161513},
-{"pid":27369,"tid":27369,"ts":326460136903,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2161513},
-{"pid":27369,"tid":27369,"ts":326460136933,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2161544},
-{"pid":27369,"tid":27369,"ts":326460136964,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2161574,"id":"0xaf8a6d00febbc614"},
-{"pid":27369,"tid":27369,"ts":326460137025,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2161635,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460137025,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2161635,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460137055,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2161666},
-{"pid":27369,"tid":27369,"ts":326460137239,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2161849},
-{"pid":27369,"tid":27369,"ts":326460137269,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":336,"tdur":213,"tts":2161880},
-{"pid":27369,"tid":27369,"ts":326460137300,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460135634},"dur":61,"tdur":61,"tts":2161910},
-{"pid":27369,"tid":27369,"ts":326460137300,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2161910},
-{"pid":27369,"tid":27369,"ts":326460137330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2161941,"id":"0xaf8a6d01febbc614"},
-{"pid":27369,"tid":27369,"ts":326460137605,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2162093},
-{"pid":27369,"tid":27369,"ts":326460137696,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2162185},
-{"pid":27369,"tid":27369,"ts":326460138612,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2162337},
-{"pid":27369,"tid":27369,"ts":326460138612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2162368,"id":"0xaf8a6063feb47934"},
-{"pid":27369,"tid":27369,"ts":326460138643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":457,"tdur":458,"tts":2162368},
-{"pid":27369,"tid":27369,"ts":326460138643,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2162368},
-{"pid":27369,"tid":27369,"ts":326460138673,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2162398},
-{"pid":27369,"tid":27369,"ts":326460138887,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":2162612},
-{"pid":27369,"tid":27369,"ts":326460138917,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2162643},
-{"pid":27369,"tid":27369,"ts":326460138917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2162643,"id":"0xaf8a607cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460139009,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2162734},
-{"pid":27369,"tid":27369,"ts":326460139039,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2162765},
-{"pid":27369,"tid":27369,"ts":326460139131,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2162856},
-{"pid":27369,"tid":27369,"ts":326460139222,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2162948},
-{"pid":27369,"tid":27369,"ts":326460139253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2162978,"id":"0xaf8a607cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460139253,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2106,"tdur":1557,"tts":2162978},
-{"pid":27369,"tid":27369,"ts":326460139253,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2162978},
-{"pid":27369,"tid":27369,"ts":326460139283,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2076,"tdur":1526,"tts":2163009},
-{"pid":27369,"tid":27369,"ts":326460139283,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":105},"dur":62,"tdur":31,"tts":2163039},
-{"pid":27369,"tid":27369,"ts":326460139314,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2163039},
-{"pid":27369,"tid":27369,"ts":326460139375,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2163100},
-{"pid":27369,"tid":27369,"ts":326460139375,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2163100,"id":"0x300000070"},
-{"pid":27369,"tid":27369,"ts":326460139375,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2163100,"id":"0x300000071"},
-{"pid":27369,"tid":27369,"ts":326460139406,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2163131},
-{"pid":27369,"tid":27369,"ts":326460139406,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2163131},
-{"pid":27369,"tid":27369,"ts":326460139436,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":245,"tts":2163161},
-{"pid":27369,"tid":27369,"ts":326460139680,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2163406},
-{"pid":27369,"tid":27369,"ts":326460139711,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":2163436},
-{"pid":27369,"tid":27369,"ts":326460139741,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":91,"tts":2163467},
-{"pid":27369,"tid":27369,"ts":326460139741,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":105},"dur":31,"tdur":30,"tts":2163467},
-{"pid":27369,"tid":27369,"ts":326460139772,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":105},"dur":30,"tdur":31,"tts":2163497},
-{"pid":27369,"tid":27369,"ts":326460139802,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":105},"tts":2163528},
-{"pid":27369,"tid":27369,"ts":326460139802,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2163528},
-{"pid":27369,"tid":27369,"ts":326460139833,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2163558},
-{"pid":27369,"tid":27369,"ts":326460139833,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2163558},
-{"pid":27369,"tid":27369,"ts":326460139863,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2163589},
-{"pid":27369,"tid":27369,"ts":326460139863,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2163589,"id":"0xaf8a6d02febbc614"},
-{"pid":27369,"tid":27369,"ts":326460139955,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1373,"tdur":824,"tts":2163680},
-{"pid":27369,"tid":27369,"ts":326460139985,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":105},"dur":245,"tdur":152,"tts":2163711},
-{"pid":27369,"tid":27369,"ts":326460139985,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2163711},
-{"pid":27369,"tid":27369,"ts":326460139985,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":2163711},
-{"pid":27369,"tid":27369,"ts":326460139985,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":61,"tdur":61,"tts":2163711},
-{"pid":27369,"tid":27369,"ts":326460139985,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2163711},
-{"pid":27369,"tid":27369,"ts":326460140046,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2163772,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460140077,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2163802},
-{"pid":27369,"tid":27369,"ts":326460140199,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2163863},
-{"pid":27369,"tid":27369,"ts":326460140260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":824,"tdur":397,"tts":2163863},
-{"pid":27369,"tid":27369,"ts":326460140291,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2163894},
-{"pid":27369,"tid":27369,"ts":326460140291,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":763,"tdur":336,"tts":2163894},
-{"pid":27369,"tid":27369,"ts":326460140291,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2163894},
-{"pid":27369,"tid":27369,"ts":326460140352,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":671,"tdur":244,"tts":2163955},
-{"pid":27369,"tid":27369,"ts":326460141084,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2164260,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460141145,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2164321,"id":"0x300000070"},
-{"pid":27369,"tid":27407,"ts":326460138398,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1489729},
-{"pid":27369,"tid":27407,"ts":326460138429,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1489760,"id":"0xccc4bc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460138459,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1489790,"id":"0xaf8a6063feb47934"},
-{"pid":27369,"tid":27407,"ts":326460139955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1489974,"id":"0xaf8a6d02febbc614"},
-{"pid":27369,"tid":27407,"ts":326460139955,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":1489974},
-{"pid":27369,"tid":27407,"ts":326460139955,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1489974,"id":"0xba454b02"},
-{"pid":27369,"tid":27407,"ts":326460141298,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1490126,"id":"0xaf8a6d03febbc614"},
-{"pid":27369,"tid":27407,"ts":326460141328,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1490157},
-{"pid":27369,"tid":27407,"ts":326460141328,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1490157,"id":"0xba454c02"},
-{"pid":27369,"tid":27407,"ts":326460144594,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1490248},
-{"pid":27369,"tid":27407,"ts":326460144625,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":152,"tdur":122,"tts":1490309},
-{"pid":27369,"tid":27407,"ts":326460144655,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1490309,"id":"0xccc4be02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460144686,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1490340,"id":"0xaf8a607dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460146364,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":123,"tts":1490553},
-{"pid":27369,"tid":27407,"ts":326460146395,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1490584},
-{"pid":27369,"tid":27407,"ts":326460146395,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1490584,"id":"0xc4c19602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460146425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1490614,"id":"0xaf8a607efeb47934"},
-{"pid":27369,"tid":27407,"ts":326460153750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1490798,"id":"0xaf8a6d1cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460153781,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1490828},
-{"pid":27369,"tid":27407,"ts":326460153781,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1490828,"id":"0xba454d02"},
-{"pid":27369,"tid":27407,"ts":326460154361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1490981,"id":"0xaf8a6d1dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460154361,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1490981},
-{"pid":27369,"tid":27407,"ts":326460154361,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1490981,"id":"0xba454e02"},
-{"pid":27369,"tid":27407,"ts":326460155612,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1491103},
-{"pid":27369,"tid":27407,"ts":326460155642,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1491133},
-{"pid":27369,"tid":27407,"ts":326460155642,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1491164,"id":"0xccc4c002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460155673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1491164,"id":"0xaf8a607ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460156558,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1491316},
-{"pid":27369,"tid":27407,"ts":326460156619,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":92,"tts":1491377},
-{"pid":27369,"tid":27407,"ts":326460156619,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1491377,"id":"0xccc4c202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460156650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1491408,"id":"0xaf8a6078feb47934"},
-{"pid":27369,"tid":27407,"ts":326460158145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1491591,"id":"0xaf8a6d1efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460158145,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1491591},
-{"pid":27369,"tid":27407,"ts":326460158176,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1491622,"id":"0xba454f02"},
-{"pid":27369,"tid":27407,"ts":326460158939,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1491744,"id":"0xaf8a6d1ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460158939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1491744},
-{"pid":27369,"tid":27407,"ts":326460158939,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1491744,"id":"0xba455002"},
-{"pid":27369,"tid":27407,"ts":326460163608,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1491866},
-{"pid":27369,"tid":27407,"ts":326460163639,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1491896},
-{"pid":27369,"tid":27407,"ts":326460163669,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1491927,"id":"0xc4c19902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460163669,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1491927,"id":"0xaf8a607afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460170506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1492110,"id":"0xaf8a6d18febbc614"},
-{"pid":27369,"tid":27407,"ts":326460170536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":30,"tts":1492141},
-{"pid":27369,"tid":27407,"ts":326460170536,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1492141,"id":"0xba455102"},
-{"pid":27369,"tid":27407,"ts":326460172001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1492232,"id":"0xaf8a6d19febbc614"},
-{"pid":27369,"tid":27407,"ts":326460172032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1492263},
-{"pid":27369,"tid":27407,"ts":326460172032,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1492263,"id":"0xba455202"},
-{"pid":27369,"tid":27407,"ts":326460173131,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":122,"tts":1492385},
-{"pid":27369,"tid":27407,"ts":326460173161,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":1492415},
-{"pid":27369,"tid":27407,"ts":326460173192,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1492415,"id":"0xccc4c402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460173192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1492415,"id":"0xaf8a607bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460187963,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":62,"tdur":61,"tts":1492568},
-{"pid":27369,"tid":27407,"ts":326460188116,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":549,"tdur":184,"tts":1492720},
-{"pid":27369,"tid":27407,"ts":326460188147,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":518,"tdur":122,"tts":1492751},
-{"pid":27369,"tid":27407,"ts":326460188147,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1492781,"id":"0xccc4c602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460188208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1492812,"id":"0xaf8a6074feb47934"},
-{"pid":27369,"tid":27407,"ts":326460189489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1492995,"id":"0xaf8a6d1afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460189489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1492995},
-{"pid":27369,"tid":27407,"ts":326460189520,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1493026,"id":"0xba455302"},
-{"pid":27369,"tid":27407,"ts":326460190069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1493117,"id":"0xaf8a6d1bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460190069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1493117},
-{"pid":27369,"tid":27407,"ts":326460190100,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1493148,"id":"0xba455402"},
-{"pid":27369,"tid":27407,"ts":326460193121,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1493270},
-{"pid":27369,"tid":27407,"ts":326460193152,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1493300},
-{"pid":27369,"tid":27369,"ts":326460141145,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2164321,"id":"0x300000071"},
-{"pid":27369,"tid":27369,"ts":326460141176,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2164352},
-{"pid":27369,"tid":27369,"ts":326460141206,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13446},"dur":92,"tdur":61,"tts":2164382},
-{"pid":27369,"tid":27369,"ts":326460141206,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2164382},
-{"pid":27369,"tid":27369,"ts":326460141237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2164413,"id":"0xaf8a6d03febbc614"},
-{"pid":27369,"tid":27369,"ts":326460141298,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2164474},
-{"pid":27369,"tid":27369,"ts":326460141298,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2164474},
-{"pid":27369,"tid":27369,"ts":326460141450,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2164626},
-{"pid":27369,"tid":27369,"ts":326460144899,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2164809},
-{"pid":27369,"tid":27369,"ts":326460144930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2164840,"id":"0xaf8a607dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460144930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2164840},
-{"pid":27369,"tid":27369,"ts":326460144930,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":122,"tts":2164871},
-{"pid":27369,"tid":27369,"ts":326460144991,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2164901,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460145021,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2164932,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460145021,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2164932},
-{"pid":27369,"tid":27369,"ts":326460145021,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2164932},
-{"pid":27369,"tid":27369,"ts":326460145052,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2164962,"id":"0xaf8a644cf87c7aa4"},
-{"pid":27369,"tid":27369,"ts":326460145143,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2165054},
-{"pid":27369,"tid":27369,"ts":326460146578,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2165237},
-{"pid":27369,"tid":27369,"ts":326460146578,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2165267,"id":"0xaf8a607efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460146608,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2165267},
-{"pid":27369,"tid":27369,"ts":326460146669,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2165328},
-{"pid":27369,"tid":27369,"ts":326460146669,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2165328},
-{"pid":27369,"tid":27369,"ts":326460146822,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2165481},
-{"pid":27369,"tid":27369,"ts":326460152926,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2165847},
-{"pid":27369,"tid":27369,"ts":326460153353,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2166274},
-{"pid":27369,"tid":27369,"ts":326460153414,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2166336},
-{"pid":27369,"tid":27369,"ts":326460153506,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2166427},
-{"pid":27369,"tid":27369,"ts":326460147000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2166458,"id":"0x300000073"},
-{"pid":27369,"tid":27369,"ts":326460153567,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902003},"tts":2166488,"id":"0x300000073"},
-{"pid":27369,"tid":27369,"ts":326460153567,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2166488},
-{"pid":27369,"tid":27369,"ts":326460153598,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2166519,"id":"0xaf8a644cf87c7aa4"},
-{"pid":27369,"tid":27369,"ts":326460153598,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2166519},
-{"pid":27369,"tid":27369,"ts":326460153598,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":152,"tts":2166519},
-{"pid":27369,"tid":27369,"ts":326460153628,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2166549},
-{"pid":27369,"tid":27369,"ts":326460153659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2166580,"id":"0xaf8a6d1cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460153720,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2166641,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460153720,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2166641,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460153781,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2166702},
-{"pid":27369,"tid":27369,"ts":326460154177,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2166946},
-{"pid":27369,"tid":27369,"ts":326460154238,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":123,"tdur":123,"tts":2166976},
-{"pid":27369,"tid":27369,"ts":326460154238,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460152316},"dur":92,"tdur":92,"tts":2166976},
-{"pid":27369,"tid":27369,"ts":326460154269,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2167007},
-{"pid":27369,"tid":27369,"ts":326460154269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2167007,"id":"0xaf8a6d1dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460154361,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2167099},
-{"pid":27369,"tid":27369,"ts":326460154605,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2167221},
-{"pid":27369,"tid":27369,"ts":326460155856,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2167404},
-{"pid":27369,"tid":27369,"ts":326460155887,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2167434,"id":"0xaf8a607ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460155887,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2167434},
-{"pid":27369,"tid":27369,"ts":326460155887,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2167434},
-{"pid":27369,"tid":27369,"ts":326460155948,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2167495,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460155948,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2167495,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460155978,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":2167526},
-{"pid":27369,"tid":27369,"ts":326460155978,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2167526},
-{"pid":27369,"tid":27369,"ts":326460156009,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2167556,"id":"0xaf8a644cf87c7aa4"},
-{"pid":27369,"tid":27369,"ts":326460156070,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2167648},
-{"pid":27369,"tid":27369,"ts":326460156802,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2167770},
-{"pid":27369,"tid":27369,"ts":326460156833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2167800,"id":"0xaf8a6078feb47934"},
-{"pid":27369,"tid":27369,"ts":326460156833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2167800},
-{"pid":27369,"tid":27369,"ts":326460156833,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2167800},
-{"pid":27369,"tid":27369,"ts":326460156863,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":428,"tdur":427,"tts":2167831},
-{"pid":27369,"tid":27369,"ts":326460157107,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2168075},
-{"pid":27369,"tid":27369,"ts":326460157107,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2168075},
-{"pid":27369,"tid":27369,"ts":326460157138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2168106,"id":"0xaf8a6079feb47934"},
-{"pid":27369,"tid":27369,"ts":326460157199,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2168167},
-{"pid":27369,"tid":27369,"ts":326460157260,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2168228},
-{"pid":27369,"tid":27369,"ts":326460157352,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2168319},
-{"pid":27369,"tid":27369,"ts":326460157413,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2168380},
-{"pid":27369,"tid":27369,"ts":326460157443,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2168411,"id":"0xaf8a6079feb47934"},
-{"pid":27369,"tid":27369,"ts":326460157443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1557,"tdur":1556,"tts":2168411},
-{"pid":27369,"tid":27369,"ts":326460157474,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2168441},
-{"pid":27369,"tid":27369,"ts":326460157474,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1495,"tdur":1496,"tts":2168441},
-{"pid":27369,"tid":27369,"ts":326460157504,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":106},"dur":61,"tdur":61,"tts":2168472},
-{"pid":27369,"tid":27369,"ts":326460157504,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2168472},
-{"pid":27369,"tid":27369,"ts":326460157565,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2168533},
-{"pid":27369,"tid":27369,"ts":326460157565,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2168533,"id":"0x300000072"},
-{"pid":27369,"tid":27369,"ts":326460157596,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2168563},
-{"pid":27369,"tid":27369,"ts":326460157596,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":31,"tts":2168563},
-{"pid":27369,"tid":27369,"ts":326460157626,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2168594},
-{"pid":27369,"tid":27369,"ts":326460157870,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2168838},
-{"pid":27369,"tid":27369,"ts":326460157901,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":2168869},
-{"pid":27369,"tid":27369,"ts":326460157931,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2168899},
-{"pid":27369,"tid":27369,"ts":326460157931,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":106},"dur":31,"tdur":31,"tts":2168899},
-{"pid":27369,"tid":27369,"ts":326460157962,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":106},"dur":30,"tdur":30,"tts":2168930},
-{"pid":27369,"tid":27369,"ts":326460157992,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":106},"tts":2168960},
-{"pid":27369,"tid":27369,"ts":326460157992,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2168960},
-{"pid":27369,"tid":27369,"ts":326460158023,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2168991},
-{"pid":27369,"tid":27369,"ts":326460158023,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2168991},
-{"pid":27369,"tid":27369,"ts":326460158054,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2169021},
-{"pid":27369,"tid":27369,"ts":326460158054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2169021,"id":"0xaf8a6d1efebbc614"},
-{"pid":27369,"tid":27369,"ts":326460158145,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":2169113},
-{"pid":27369,"tid":27369,"ts":326460158176,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":106},"dur":213,"tdur":214,"tts":2169143},
-{"pid":27369,"tid":27369,"ts":326460158176,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2169143},
-{"pid":27369,"tid":27369,"ts":326460158176,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2169174},
-{"pid":27369,"tid":27369,"ts":326460158206,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2169174},
-{"pid":27369,"tid":27369,"ts":326460158206,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2169174,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460158237,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2169204},
-{"pid":27369,"tid":27369,"ts":326460158359,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2169326},
-{"pid":27369,"tid":27369,"ts":326460158389,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2169357},
-{"pid":27369,"tid":27369,"ts":326460158389,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":2169357},
-{"pid":27369,"tid":27369,"ts":326460158420,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2169388},
-{"pid":27369,"tid":27369,"ts":326460158420,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2169388},
-{"pid":27369,"tid":27369,"ts":326460158481,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":213,"tts":2169449},
-{"pid":27369,"tid":27369,"ts":326460158755,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2169723,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460158786,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2169754,"id":"0x300000072"},
-{"pid":27369,"tid":27369,"ts":326460158817,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2169784},
-{"pid":27369,"tid":27369,"ts":326460158817,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":533},"dur":91,"tdur":92,"tts":2169784},
-{"pid":27369,"tid":27369,"ts":326460158847,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2169815},
-{"pid":27369,"tid":27369,"ts":326460158878,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2169845,"id":"0xaf8a6d1ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460158908,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2169876},
-{"pid":27369,"tid":27369,"ts":326460158939,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2169906},{"pid":27369,"tid":27369,"ts":326460159061,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2170028},
-{"pid":27369,"tid":27369,"ts":326460163883,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2170273},
-{"pid":27369,"tid":27369,"ts":326460163883,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2170273,"id":"0xaf8a607afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460163913,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2170303},
-{"pid":27369,"tid":27369,"ts":326460163944,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2170334},
-{"pid":27369,"tid":27369,"ts":326460163944,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2170334},
-{"pid":27369,"tid":27369,"ts":326460164036,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2170425},
-{"pid":27369,"tid":27369,"ts":326460169468,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2170669},
-{"pid":27369,"tid":27369,"ts":326460169895,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2171097},
-{"pid":27369,"tid":27369,"ts":326460169956,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":184,"tdur":183,"tts":2171158},
-{"pid":27369,"tid":27369,"ts":326460170170,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":305,"tdur":275,"tts":2171371},
-{"pid":27369,"tid":27369,"ts":326460163000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2171402,"id":"0x300000074"},
-{"pid":27369,"tid":27369,"ts":326460170201,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902004},"tts":2171402,"id":"0x300000074"},
-{"pid":27369,"tid":27369,"ts":326460170231,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":244,"tdur":214,"tts":2171432},
-{"pid":27369,"tid":27369,"ts":326460170231,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2171432,"id":"0xaf8a644cfa8ef5ac"},
-{"pid":27369,"tid":27369,"ts":326460170262,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":213,"tdur":183,"tts":2171463},
-{"pid":27369,"tid":27369,"ts":326460170262,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":213,"tdur":183,"tts":2171463},
-{"pid":27369,"tid":27369,"ts":326460170292,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":153,"tdur":92,"tts":2171524},
-{"pid":27369,"tid":27369,"ts":326460170353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2171554,"id":"0xaf8a6d18febbc614"},
-{"pid":27369,"tid":27369,"ts":326460170445,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2171616,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460170445,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2171616,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460170506,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2171677},
-{"pid":27369,"tid":27369,"ts":326460171849,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2172012},
-{"pid":27369,"tid":27369,"ts":326460171879,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":92,"tts":2172073},
-{"pid":27369,"tid":27369,"ts":326460171910,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460168997},"dur":61,"tdur":61,"tts":2172073},
-{"pid":27369,"tid":27369,"ts":326460171910,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2172073},
-{"pid":27369,"tid":27369,"ts":326460171940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2172104,"id":"0xaf8a6d19febbc614"},
-{"pid":27369,"tid":27369,"ts":326460172032,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2172195},
-{"pid":27369,"tid":27369,"ts":326460172276,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2172287},
-{"pid":27369,"tid":27369,"ts":326460173375,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2172501},
-{"pid":27369,"tid":27369,"ts":326460173405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2172531,"id":"0xaf8a607bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460173405,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2172531},
-{"pid":27369,"tid":27369,"ts":326460173405,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":2172531},
-{"pid":27369,"tid":27369,"ts":326460173466,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2172592,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460173466,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2172592,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460173497,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":30,"tts":2172623},
-{"pid":27369,"tid":27369,"ts":326460173497,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2172623},
-{"pid":27369,"tid":27369,"ts":326460173527,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2172653,"id":"0xaf8a644cfa8ef5ac"},
-{"pid":27369,"tid":27369,"ts":326460173588,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2172714},
-{"pid":27369,"tid":27369,"ts":326460188665,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2173203},
-{"pid":27369,"tid":27369,"ts":326460189123,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2173660},
-{"pid":27369,"tid":27369,"ts":326460189184,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2173721},
-{"pid":27369,"tid":27369,"ts":326460189276,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2173813},
-{"pid":27369,"tid":27369,"ts":326460180000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2173844,"id":"0x300000075"},
-{"pid":27369,"tid":27369,"ts":326460189306,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902005},"tts":2173844,"id":"0x300000075"},
-{"pid":27369,"tid":27369,"ts":326460189337,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":152,"tdur":153,"tts":2173874},
-{"pid":27369,"tid":27369,"ts":326460189337,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2173874,"id":"0xaf8a644cfa8ef5ac"},
-{"pid":27369,"tid":27369,"ts":326460189367,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2173905},
-{"pid":27369,"tid":27369,"ts":326460189367,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2173905},
-{"pid":27369,"tid":27369,"ts":326460189398,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2173935},
-{"pid":27369,"tid":27369,"ts":326460189428,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2173966,"id":"0xaf8a6d1afebbc614"},
-{"pid":27369,"tid":27369,"ts":326460189459,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2173996,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460189489,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2174027,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460189520,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2174057},
-{"pid":27369,"tid":27369,"ts":326460189886,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2174301},
-{"pid":27369,"tid":27369,"ts":326460189917,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":122,"tts":2174362},
-{"pid":27369,"tid":27369,"ts":326460189947,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460185679},"dur":92,"tdur":92,"tts":2174362},
-{"pid":27369,"tid":27369,"ts":326460189947,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2174393},
-{"pid":27369,"tid":27369,"ts":326460189978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2174393,"id":"0xaf8a6d1bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460190100,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2174515},
-{"pid":27369,"tid":27369,"ts":326460190253,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2174637},
-{"pid":27369,"tid":27369,"ts":326460190405,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2174759},
-{"pid":27369,"tid":27369,"ts":326460190405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2174759,"id":"0xaf8a6074feb47934"},
-{"pid":27369,"tid":27369,"ts":326460190436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":610,"tdur":457,"tts":2174790},
-{"pid":27369,"tid":27369,"ts":326460190436,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":610,"tdur":457,"tts":2174790},
-{"pid":27369,"tid":27369,"ts":326460190466,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":580,"tdur":427,"tts":2174820},
-{"pid":27369,"tid":27369,"ts":326460190466,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2174820},
-{"pid":27369,"tid":27369,"ts":326460190863,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":2175064},
-{"pid":27369,"tid":27369,"ts":326460190863,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":92,"tts":2175064},
-{"pid":27369,"tid":27369,"ts":326460190893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2175095,"id":"0xaf8a6075feb47934"},
-{"pid":27369,"tid":27369,"ts":326460190985,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2175186},
-{"pid":27369,"tid":27369,"ts":326460191016,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2175217},
-{"pid":27369,"tid":27369,"ts":326460192175,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2175370},
-{"pid":27369,"tid":27369,"ts":326460192389,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2175553},
-{"pid":27369,"tid":27369,"ts":326460192419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2175553,"id":"0xaf8a6075feb47934"},
-{"pid":27369,"tid":27369,"ts":326460192419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1832,"tdur":1617,"tts":2175553},
-{"pid":27369,"tid":27369,"ts":326460192450,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":214,"tdur":31,"tts":2175583},
-{"pid":27369,"tid":27369,"ts":326460192450,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":2175583},
-{"pid":27369,"tid":27369,"ts":326460192664,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1556,"tdur":1556,"tts":2175614},
-{"pid":27369,"tid":27369,"ts":326460192694,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":107},"dur":61,"tdur":61,"tts":2175644},
-{"pid":27369,"tid":27369,"ts":326460192694,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2175644},
-{"pid":27369,"tid":27369,"ts":326460192786,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":366,"tdur":366,"tts":2175736},
-{"pid":27369,"tid":27369,"ts":326460192786,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2175736,"id":"0x300000073"},
-{"pid":27369,"tid":27369,"ts":326460192816,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2175766,"id":"0x300000074"},
-{"pid":27369,"tid":27369,"ts":326460192816,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2175766},
-{"pid":27369,"tid":27369,"ts":326460192816,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2175766},
-{"pid":27369,"tid":27369,"ts":326460192847,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":274,"tdur":275,"tts":2175797},
-{"pid":27369,"tid":27369,"ts":326460193121,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2176072},
-{"pid":27369,"tid":27369,"ts":326460193152,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":2176102},
-{"pid":27369,"tid":27369,"ts":326460193182,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":91,"tts":2176133},
-{"pid":27369,"tid":27369,"ts":326460193182,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":107},"dur":31,"tdur":30,"tts":2176133},
-{"pid":27369,"tid":27369,"ts":326460193213,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":107},"dur":30,"tdur":31,"tts":2176163},
-{"pid":27369,"tid":27369,"ts":326460193243,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":107},"tts":2176194},
-{"pid":27369,"tid":27369,"ts":326460193243,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2176194},
-{"pid":27369,"tid":27369,"ts":326460193274,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2176224},
-{"pid":27369,"tid":27369,"ts":326460193274,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2176224},
-{"pid":27369,"tid":27369,"ts":326460193305,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2176255},
-{"pid":27369,"tid":27369,"ts":326460193335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2176285,"id":"0xaf8a6d14febbc614"},
-{"pid":27369,"tid":27369,"ts":326460193396,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":763,"tts":2176377},
-{"pid":27369,"tid":27369,"ts":326460193427,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":107},"dur":183,"tdur":183,"tts":2176377},
-{"pid":27369,"tid":27369,"ts":326460193427,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2176377},
-{"pid":27369,"tid":27369,"ts":326460193457,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2176407},
-{"pid":27369,"tid":27369,"ts":326460193457,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2176407},
-{"pid":27369,"tid":27369,"ts":326460193488,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2176438,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460193488,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2176438},
-{"pid":27369,"tid":27369,"ts":326460193579,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2176560},
-{"pid":27369,"tid":27369,"ts":326460193610,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2176560},
-{"pid":27369,"tid":27369,"ts":326460193610,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2176590},
-{"pid":27369,"tid":27369,"ts":326460193640,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2176590},
-{"pid":27369,"tid":27369,"ts":326460193640,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2176590},
-{"pid":27369,"tid":27369,"ts":326460193701,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":2176651},
-{"pid":27369,"tid":27369,"ts":326460193945,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2176896,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460194007,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2176957,"id":"0x300000073"},
-{"pid":27369,"tid":27369,"ts":326460194037,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2176987,"id":"0x300000074"},
-{"pid":27369,"tid":27369,"ts":326460194037,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2176987},
-{"pid":27369,"tid":27369,"ts":326460194037,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3995},"dur":122,"tdur":91,"tts":2177018},
-{"pid":27369,"tid":27369,"ts":326460194068,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2177018},
-{"pid":27369,"tid":27369,"ts":326460194098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2177048,"id":"0xaf8a6d15febbc614"},
-{"pid":27369,"tid":27369,"ts":326460194159,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2177109},
-{"pid":27369,"tid":27369,"ts":326460194159,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2177109},
-{"pid":27369,"tid":27369,"ts":326460194312,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2177262},
-{"pid":27369,"tid":27369,"ts":326460194434,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2177384},
-{"pid":27369,"tid":27369,"ts":326460194464,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2177414,"id":"0xaf8a6076feb47934"},
-{"pid":27369,"tid":27369,"ts":326460194464,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2177414},
-{"pid":27369,"tid":27369,"ts":326460194464,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2177414},
-{"pid":27369,"tid":27369,"ts":326460194525,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2177475,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460194556,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2177506,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460194556,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2177506},
-{"pid":27369,"tid":27369,"ts":326460194556,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":30,"tts":2177506},
-{"pid":27369,"tid":27369,"ts":326460194586,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2177536,"id":"0xaf8a644cfa8ef5ac"},
-{"pid":27369,"tid":27369,"ts":326460194678,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2177628},
-{"pid":27369,"tid":27369,"ts":326460199378,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2177811},
-{"pid":27369,"tid":27369,"ts":326460199409,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2177842,"id":"0xaf8a6077feb47934"},
-{"pid":27369,"tid":27369,"ts":326460199409,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2177842},
-{"pid":27369,"tid":27369,"ts":326460199470,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2177903},
-{"pid":27369,"tid":27369,"ts":326460199470,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2177903},
-{"pid":27369,"tid":27369,"ts":326460199592,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2178025},
-{"pid":27369,"tid":27369,"ts":326460207497,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2179490},
-{"pid":27369,"tid":27369,"ts":326460207954,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2179978},
-{"pid":27369,"tid":27369,"ts":326460208046,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2180039},
-{"pid":27369,"tid":27369,"ts":326460208168,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":244,"tts":2180192},
-{"pid":27369,"tid":27369,"ts":326460197000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2180222,"id":"0x300000076"},
-{"pid":27369,"tid":27369,"ts":326460208229,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902006},"tts":2180222,"id":"0x300000076"},
-{"pid":27369,"tid":27369,"ts":326460208229,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2180222},
-{"pid":27369,"tid":27369,"ts":326460208260,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2180253,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27407,"ts":326460193152,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1493300,"id":"0xccc4c802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460193182,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1493331,"id":"0xaf8a6076feb47934"},
-{"pid":27369,"tid":27407,"ts":326460193396,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1493483,"id":"0xaf8a6d14febbc614"},
-{"pid":27369,"tid":27407,"ts":326460193396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1493483},
-{"pid":27369,"tid":27407,"ts":326460193427,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1493514,"id":"0xba455502"},
-{"pid":27369,"tid":27407,"ts":326460194159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1493605,"id":"0xaf8a6d15febbc614"},
-{"pid":27369,"tid":27407,"ts":326460194190,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1493636},
-{"pid":27369,"tid":27407,"ts":326460194190,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1493636,"id":"0xba455602"},
-{"pid":27369,"tid":27407,"ts":326460199073,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":213,"tts":1493789},
-{"pid":27369,"tid":27407,"ts":326460199103,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":184,"tdur":183,"tts":1493819},
-{"pid":27369,"tid":27407,"ts":326460199134,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1493850,"id":"0xc4c19c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460199164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1493880,"id":"0xaf8a6077feb47934"},
-{"pid":27369,"tid":27407,"ts":326460208412,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1494094,"id":"0xaf8a6d16febbc614"},
-{"pid":27369,"tid":27407,"ts":326460208443,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1494124},
-{"pid":27369,"tid":27407,"ts":326460208443,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1494124,"id":"0xba455702"},
-{"pid":27369,"tid":27407,"ts":326460208870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1494277,"id":"0xaf8a6d17febbc614"},
-{"pid":27369,"tid":27407,"ts":326460208870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1494277},
-{"pid":27369,"tid":27407,"ts":326460208870,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1494277,"id":"0xba455802"},
-{"pid":27369,"tid":27407,"ts":326460210365,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1494430},
-{"pid":27369,"tid":27407,"ts":326460210396,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":1494460},
-{"pid":27369,"tid":27407,"ts":326460210396,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1494460,"id":"0xccc4ca02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460210426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1494491,"id":"0xaf8a6070feb47934"},
-{"pid":27369,"tid":27407,"ts":326460211067,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":245,"tdur":213,"tts":1494674},
-{"pid":27369,"tid":27407,"ts":326460211159,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1494735},
-{"pid":27369,"tid":27407,"ts":326460211189,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1494765,"id":"0xccc4cc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460211220,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1494796,"id":"0xaf8a6071feb47934"},
-{"pid":27369,"tid":27407,"ts":326460212960,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1494979,"id":"0xaf8a6d10febbc614"},
-{"pid":27369,"tid":27407,"ts":326460212960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1494979},
-{"pid":27369,"tid":27407,"ts":326460212960,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1495009,"id":"0xba455902"},
-{"pid":27369,"tid":27407,"ts":326460213753,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495131,"id":"0xaf8a6d11febbc614"},
-{"pid":27369,"tid":27407,"ts":326460213753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1495131},
-{"pid":27369,"tid":27407,"ts":326460213753,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1495162,"id":"0xba455a02"},
-{"pid":27369,"tid":27407,"ts":326460218514,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1495284},
-{"pid":27369,"tid":27407,"ts":326460218545,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1495315},
-{"pid":27369,"tid":27407,"ts":326460218545,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1495315,"id":"0xc4c19f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460218575,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1495345,"id":"0xaf8a6073feb47934"},
-{"pid":27369,"tid":27407,"ts":326460220590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495528,"id":"0xaf8a6d12febbc614"},
-{"pid":27369,"tid":27407,"ts":326460220590,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1495528},
-{"pid":27369,"tid":27407,"ts":326460220620,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1495559,"id":"0xba455b02"},
-{"pid":27369,"tid":27407,"ts":326460220956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1495650,"id":"0xaf8a6d13febbc614"},
-{"pid":27369,"tid":27407,"ts":326460220987,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1495681},
-{"pid":27369,"tid":27407,"ts":326460220987,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1495711,"id":"0xba455c02"},
-{"pid":27369,"tid":27407,"ts":326460220987,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1495711},
-{"pid":27369,"tid":27407,"ts":326460223184,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1495833},
-{"pid":27369,"tid":27407,"ts":326460223215,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1495864},
-{"pid":27369,"tid":27407,"ts":326460223215,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1495864,"id":"0xccc4ce02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460223245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1495895,"id":"0xaf8a600cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460236857,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1496078},
-{"pid":27369,"tid":27407,"ts":326460236918,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1496139},
-{"pid":27369,"tid":27407,"ts":326460236918,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1496139,"id":"0xccc4d002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460236979,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1496200,"id":"0xaf8a600dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460237071,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496291,"id":"0xaf8a6d2cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460237071,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1496291},
-{"pid":27369,"tid":27407,"ts":326460237101,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1496322,"id":"0xba455d02"},
-{"pid":27369,"tid":27407,"ts":326460237590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496413,"id":"0xaf8a6d2dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460237620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1496444},
-{"pid":27369,"tid":27407,"ts":326460237620,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1496444,"id":"0xba455e02"},
-{"pid":27369,"tid":27407,"ts":326460238688,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":123,"tts":1496535},
-{"pid":27369,"tid":27407,"ts":326460238719,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1496566},
-{"pid":27369,"tid":27407,"ts":326460238719,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1496566,"id":"0xccc4d202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460238749,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1496596,"id":"0xaf8a600ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460239177,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496719,"id":"0xaf8a6d2efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460239177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1496719},
-{"pid":27369,"tid":27407,"ts":326460239207,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1496749,"id":"0xba455f02"},
-{"pid":27369,"tid":27402,"ts":326460199378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460199},"tts":42820,"id":"0xaf8a6447febb2f1c"},
-{"pid":27369,"tid":27402,"ts":326460199439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/password_manager/core/browser/password_store.cc","src_func":"ReportMetrics"},"dur":1343,"tdur":1220,"tts":42881},
-{"pid":27369,"tid":27402,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.0155}},
-{"pid":27369,"tid":27369,"ts":326460208260,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2180253},
-{"pid":27369,"tid":27369,"ts":326460208290,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2180283},
-{"pid":27369,"tid":27369,"ts":326460208321,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2180314},
-{"pid":27369,"tid":27369,"ts":326460208351,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2180344,"id":"0xaf8a6d16febbc614"},
-{"pid":27369,"tid":27369,"ts":326460208382,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2180375,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460208412,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2180405,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460208443,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2180436},
-{"pid":27369,"tid":27369,"ts":326460208717,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2180711},
-{"pid":27369,"tid":27369,"ts":326460208748,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2180741},
-{"pid":27369,"tid":27369,"ts":326460208748,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460202360},"dur":91,"tdur":92,"tts":2180741},
-{"pid":27369,"tid":27369,"ts":326460208778,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2180772},
-{"pid":27369,"tid":27369,"ts":326460208778,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2180772,"id":"0xaf8a6d17febbc614"},
-{"pid":27369,"tid":27369,"ts":326460208870,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2180863},
-{"pid":27369,"tid":27369,"ts":326460208992,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2180985},
-{"pid":27369,"tid":27369,"ts":326460210610,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2181168},
-{"pid":27369,"tid":27369,"ts":326460210640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2181199,"id":"0xaf8a6070feb47934"},
-{"pid":27369,"tid":27369,"ts":326460210640,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2181199},
-{"pid":27369,"tid":27369,"ts":326460210640,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":2181199},
-{"pid":27369,"tid":27369,"ts":326460210701,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2181260,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460210701,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2181260,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460210732,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":31,"tts":2181290},
-{"pid":27369,"tid":27369,"ts":326460210732,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2181290},
-{"pid":27369,"tid":27369,"ts":326460210762,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2181321,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460210854,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2181413},
-{"pid":27369,"tid":27369,"ts":326460211373,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2181565},
-{"pid":27369,"tid":27369,"ts":326460211403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2181596,"id":"0xaf8a6071feb47934"},
-{"pid":27369,"tid":27369,"ts":326460211403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":580,"tdur":488,"tts":2181596},
-{"pid":27369,"tid":27369,"ts":326460211403,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":580,"tdur":488,"tts":2181596},
-{"pid":27369,"tid":27369,"ts":326460211434,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":518,"tdur":427,"tts":2181626},
-{"pid":27369,"tid":27369,"ts":326460211739,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":122,"tts":2181840},
-{"pid":27369,"tid":27369,"ts":326460211769,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2181870},
-{"pid":27369,"tid":27369,"ts":326460211800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2181901,"id":"0xaf8a6072feb47934"},
-{"pid":27369,"tid":27369,"ts":326460211891,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2181992},
-{"pid":27369,"tid":27369,"ts":326460211922,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2182023},
-{"pid":27369,"tid":27369,"ts":326460212044,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2182145},
-{"pid":27369,"tid":27369,"ts":326460212197,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2182298},
-{"pid":27369,"tid":27369,"ts":326460212197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2182298,"id":"0xaf8a6072feb47934"},
-{"pid":27369,"tid":27369,"ts":326460212197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1617,"tdur":1557,"tts":2182328},
-{"pid":27369,"tid":27369,"ts":326460212227,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2182328},
-{"pid":27369,"tid":27369,"ts":326460212227,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1557,"tdur":1526,"tts":2182328},
-{"pid":27369,"tid":27369,"ts":326460212258,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":108},"dur":91,"tdur":61,"tts":2182359},
-{"pid":27369,"tid":27369,"ts":326460212258,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":91,"tdur":61,"tts":2182359},
-{"pid":27369,"tid":27369,"ts":326460212380,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":2182450},
-{"pid":27369,"tid":27369,"ts":326460212380,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2182450,"id":"0x300000075"},
-{"pid":27369,"tid":27369,"ts":326460212380,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":2182481},
-{"pid":27369,"tid":27369,"ts":326460212410,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2182481},
-{"pid":27369,"tid":27369,"ts":326460212441,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2182511},
-{"pid":27369,"tid":27369,"ts":326460212685,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2182755},
-{"pid":27369,"tid":27369,"ts":326460212715,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2182786},
-{"pid":27369,"tid":27369,"ts":326460212746,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2182816},
-{"pid":27369,"tid":27369,"ts":326460212746,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":108},"dur":31,"tdur":31,"tts":2182816},
-{"pid":27369,"tid":27369,"ts":326460212777,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":108},"dur":30,"tdur":31,"tts":2182847},
-{"pid":27369,"tid":27369,"ts":326460212807,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":108},"tts":2182878},
-{"pid":27369,"tid":27369,"ts":326460212807,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2182878},
-{"pid":27369,"tid":27369,"ts":326460212807,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2182878},
-{"pid":27369,"tid":27369,"ts":326460212838,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2182908},
-{"pid":27369,"tid":27369,"ts":326460212868,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2182939},
-{"pid":27369,"tid":27369,"ts":326460212868,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2182939,"id":"0xaf8a6d10febbc614"},
-{"pid":27369,"tid":27369,"ts":326460212960,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":2183030},
-{"pid":27369,"tid":27369,"ts":326460212990,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":108},"dur":214,"tdur":183,"tts":2183061},
-{"pid":27369,"tid":27369,"ts":326460212990,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2183061},
-{"pid":27369,"tid":27369,"ts":326460212990,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2183061},
-{"pid":27369,"tid":27369,"ts":326460213021,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2183091},
-{"pid":27369,"tid":27369,"ts":326460213021,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2183091,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460213051,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2183122},
-{"pid":27369,"tid":27369,"ts":326460213173,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2183244},
-{"pid":27369,"tid":27369,"ts":326460213204,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":367,"tts":2183274},
-{"pid":27369,"tid":27369,"ts":326460213204,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2183274},
-{"pid":27369,"tid":27369,"ts":326460213204,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":305,"tts":2183305},
-{"pid":27369,"tid":27369,"ts":326460213234,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2183305},
-{"pid":27369,"tid":27369,"ts":326460213295,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":2183366},
-{"pid":27369,"tid":27369,"ts":326460213540,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2183641,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460213601,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2183671,"id":"0x300000075"},
-{"pid":27369,"tid":27369,"ts":326460213631,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2183702},
-{"pid":27369,"tid":27369,"ts":326460213631,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":7457},"dur":92,"tdur":91,"tts":2183702},
-{"pid":27369,"tid":27369,"ts":326460213662,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2183732},
-{"pid":27369,"tid":27369,"ts":326460213692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2183763,"id":"0xaf8a6d11febbc614"},
-{"pid":27369,"tid":27369,"ts":326460213723,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2183793},
-{"pid":27369,"tid":27369,"ts":326460213753,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2183824},
-{"pid":27369,"tid":27369,"ts":326460213875,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2183946},
-{"pid":27369,"tid":27369,"ts":326460218759,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2184129},
-{"pid":27369,"tid":27369,"ts":326460218789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2184159,"id":"0xaf8a6073feb47934"},
-{"pid":27369,"tid":27369,"ts":326460218789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2184159},
-{"pid":27369,"tid":27369,"ts":326460218820,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2184190},
-{"pid":27369,"tid":27369,"ts":326460218850,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2184220},
-{"pid":27369,"tid":27369,"ts":326460218942,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2184312},
-{"pid":27369,"tid":27369,"ts":326460219522,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2184556},
-{"pid":27369,"tid":27369,"ts":326460220071,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2185075},
-{"pid":27369,"tid":27369,"ts":326460220132,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":153,"tts":2185136},
-{"pid":27369,"tid":27369,"ts":326460220315,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2185319},
-{"pid":27369,"tid":27369,"ts":326460214000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2185350,"id":"0x300000077"},
-{"pid":27369,"tid":27369,"ts":326460220376,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902007},"tts":2185380,"id":"0x300000077"},
-{"pid":27369,"tid":27369,"ts":326460220407,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2185411},
-{"pid":27369,"tid":27369,"ts":326460220407,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2185411,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460220437,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2185441},
-{"pid":27369,"tid":27369,"ts":326460220437,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2185441},
-{"pid":27369,"tid":27369,"ts":326460220468,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2185502},
-{"pid":27369,"tid":27369,"ts":326460220498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2185502,"id":"0xaf8a6d12febbc614"},
-{"pid":27369,"tid":27369,"ts":326460220559,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2185563,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460220559,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2185563,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460220620,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2185624},
-{"pid":27369,"tid":27369,"ts":326460220773,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2185777},
-{"pid":27369,"tid":27369,"ts":326460220803,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":2185807},
-{"pid":27369,"tid":27369,"ts":326460220803,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":62,"tts":2185807},
-{"pid":27369,"tid":27369,"ts":326460220864,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460219042},"dur":92,"tdur":91,"tts":2185869},
-{"pid":27369,"tid":27369,"ts":326460220895,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2185899},
-{"pid":27369,"tid":27369,"ts":326460220895,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2185899,"id":"0xaf8a6d13febbc614"},
-{"pid":27369,"tid":27369,"ts":326460221109,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2186113},
-{"pid":27369,"tid":27369,"ts":326460221261,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2186265},
-{"pid":27369,"tid":27369,"ts":326460223672,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2186571},
-{"pid":27369,"tid":27369,"ts":326460223672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2186571,"id":"0xaf8a600cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460223703,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2186601},
-{"pid":27369,"tid":27369,"ts":326460223703,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":2186601},
-{"pid":27369,"tid":27369,"ts":326460223764,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2186662,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460223794,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2186693,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460223794,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2186693},
-{"pid":27369,"tid":27369,"ts":326460223794,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2186693},
-{"pid":27369,"tid":27369,"ts":326460223825,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2186723,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460223916,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2186845},
-{"pid":27369,"tid":27369,"ts":326460236247,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2187181},
-{"pid":27369,"tid":27369,"ts":326460236674,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2187608},
-{"pid":27369,"tid":27369,"ts":326460236735,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2187669},
-{"pid":27369,"tid":27369,"ts":326460236857,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":214,"tdur":214,"tts":2187791},
-{"pid":27369,"tid":27369,"ts":326460230000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2187822,"id":"0x300000078"},
-{"pid":27369,"tid":27369,"ts":326460236888,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902008},"tts":2187822,"id":"0x300000078"},
-{"pid":27369,"tid":27369,"ts":326460236888,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2187822},
-{"pid":27369,"tid":27369,"ts":326460236918,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2187852,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460236918,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2187852},
-{"pid":27369,"tid":27369,"ts":326460236918,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":122,"tts":2187883},
-{"pid":27369,"tid":27369,"ts":326460236979,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2187944},
-{"pid":27369,"tid":27369,"ts":326460237010,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2187944,"id":"0xaf8a6d2cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460237040,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2187974,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460237071,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2188005,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460237101,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2188035},
-{"pid":27369,"tid":27369,"ts":326460237437,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2188249},
-{"pid":27369,"tid":27369,"ts":326460237498,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":92,"tts":2188310},
-{"pid":27369,"tid":27369,"ts":326460237498,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460235723},"dur":92,"tdur":92,"tts":2188310},
-{"pid":27369,"tid":27369,"ts":326460237529,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2188341},
-{"pid":27369,"tid":27369,"ts":326460237529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2188341,"id":"0xaf8a6d2dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460237620,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2188432},
-{"pid":27369,"tid":27369,"ts":326460237712,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2188524},
-{"pid":27369,"tid":27369,"ts":326460237834,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2188646},
-{"pid":27369,"tid":27369,"ts":326460237864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2188676,"id":"0xaf8a600dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460237864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":428,"tts":2188676},
-{"pid":27369,"tid":27369,"ts":326460237864,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":428,"tts":2188676},
-{"pid":27369,"tid":27369,"ts":326460237895,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2188707},
-{"pid":27369,"tid":27369,"ts":326460238108,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2188921},
-{"pid":27369,"tid":27369,"ts":326460238108,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2188921},
-{"pid":27369,"tid":27369,"ts":326460238139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2188951,"id":"0xaf8a600efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460238231,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2189043},
-{"pid":27369,"tid":27369,"ts":326460238261,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2189073},
-{"pid":27369,"tid":27369,"ts":326460238353,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2189165},
-{"pid":27369,"tid":27369,"ts":326460238444,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2189256},
-{"pid":27369,"tid":27369,"ts":326460238444,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2189287,"id":"0xaf8a600efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460238475,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1556,"tdur":1556,"tts":2189287},
-{"pid":27369,"tid":27369,"ts":326460238475,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":2189287},
-{"pid":27369,"tid":27369,"ts":326460238505,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1526,"tdur":1526,"tts":2189317},
-{"pid":27369,"tid":27369,"ts":326460238505,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":109},"dur":61,"tdur":61,"tts":2189317},
-{"pid":27369,"tid":27369,"ts":326460238536,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2189348},
-{"pid":27369,"tid":27369,"ts":326460238597,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":2189409},
-{"pid":27369,"tid":27369,"ts":326460238597,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2189409,"id":"0x300000076"},
-{"pid":27369,"tid":27369,"ts":326460238597,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2189409,"id":"0x300000077"},
-{"pid":27369,"tid":27369,"ts":326460238627,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2189439},
-{"pid":27369,"tid":27369,"ts":326460238627,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2189439},
-{"pid":27369,"tid":27369,"ts":326460238658,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2189470},
-{"pid":27369,"tid":27369,"ts":326460238932,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2189745},
-{"pid":27369,"tid":27369,"ts":326460238963,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2189775},
-{"pid":27369,"tid":27369,"ts":326460238963,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2189775},
-{"pid":27369,"tid":27369,"ts":326460238963,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":109},"dur":61,"tdur":61,"tts":2189775},
-{"pid":27369,"tid":27369,"ts":326460239024,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":109},"dur":0,"tdur":0,"tts":2189836},
-{"pid":27369,"tid":27369,"ts":326460239024,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":109},"tts":2189867},
-{"pid":27369,"tid":27369,"ts":326460239055,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2189867},
-{"pid":27369,"tid":27369,"ts":326460239055,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2189867},
-{"pid":27369,"tid":27369,"ts":326460239055,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2189867},
-{"pid":27369,"tid":27369,"ts":326460239085,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2189897},
-{"pid":27369,"tid":27369,"ts":326460239116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2189928,"id":"0xaf8a6d2efebbc614"},
-{"pid":27369,"tid":27369,"ts":326460239207,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":2190019},
-{"pid":27369,"tid":27369,"ts":326460239207,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":109},"dur":183,"tdur":183,"tts":2190019},
-{"pid":27369,"tid":27369,"ts":326460239207,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":2190050},
-{"pid":27369,"tid":27369,"ts":326460239238,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2190050},
-{"pid":27369,"tid":27369,"ts":326460239238,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2190050},
-{"pid":27369,"tid":27369,"ts":326460239268,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2190080,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460239268,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2190080},
-{"pid":27369,"tid":27369,"ts":326460239360,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2190172},
-{"pid":27369,"tid":27369,"ts":326460239390,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":367,"tdur":367,"tts":2190202},
-{"pid":27369,"tid":27369,"ts":326460239390,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":2190202},
-{"pid":27369,"tid":27369,"ts":326460239421,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2190233},
-{"pid":27369,"tid":27369,"ts":326460239421,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2190233},
-{"pid":27369,"tid":27369,"ts":326460239482,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":2190294},
-{"pid":27369,"tid":27369,"ts":326460239726,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2190538,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460239787,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2190599,"id":"0x300000076"},
-{"pid":27369,"tid":27369,"ts":326460239818,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2190630,"id":"0x300000077"},
-{"pid":27369,"tid":27369,"ts":326460239818,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2190630},
-{"pid":27369,"tid":27369,"ts":326460239848,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":10919},"dur":92,"tdur":92,"tts":2190660},
-{"pid":27369,"tid":27369,"ts":326460239879,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":2190691},
-{"pid":27369,"tid":27369,"ts":326460239879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2190691,"id":"0xaf8a6d2ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460239940,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2190752},
-{"pid":27369,"tid":27369,"ts":326460239940,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2190752},
-{"pid":27369,"tid":27369,"ts":326460240123,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2190935},
-{"pid":27369,"tid":27369,"ts":326460240214,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2191026},
-{"pid":27369,"tid":27369,"ts":326460240245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2191057,"id":"0xaf8a600ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460240245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2191057},
-{"pid":27369,"tid":27369,"ts":326460240245,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2191057},
-{"pid":27369,"tid":27369,"ts":326460240306,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2191118,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460240306,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2191118,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460240306,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2191118},
-{"pid":27369,"tid":27369,"ts":326460240336,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2191149},
-{"pid":27369,"tid":27369,"ts":326460240336,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2191149,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460240428,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2191240},
-{"pid":27369,"tid":27369,"ts":326460245342,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2191515},
-{"pid":27369,"tid":27369,"ts":326460245372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2191545,"id":"0xaf8a6008feb47934"},
-{"pid":27369,"tid":27369,"ts":326460245372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":92,"tts":2191545},
-{"pid":27369,"tid":27369,"ts":326460245433,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2191606},
-{"pid":27369,"tid":27369,"ts":326460245433,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2191606},
-{"pid":27369,"tid":27369,"ts":326460245525,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2191728},
-{"pid":27369,"tid":27369,"ts":326460253491,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2192034},
-{"pid":27369,"tid":27369,"ts":326460254010,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2192552},
-{"pid":27369,"tid":27369,"ts":326460254101,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2192644},
-{"pid":27369,"tid":27369,"ts":326460254223,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2192766},
-{"pid":27369,"tid":27369,"ts":326460247000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2192797,"id":"0x300000079"},
-{"pid":27369,"tid":27369,"ts":326460254284,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902009},"tts":2192827,"id":"0x300000079"},
-{"pid":27369,"tid":27369,"ts":326460254284,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2192827},
-{"pid":27369,"tid":27369,"ts":326460254284,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2192827,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460254315,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2192858},
-{"pid":27369,"tid":27369,"ts":326460254315,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2192858},
-{"pid":27369,"tid":27369,"ts":326460254345,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2192888},
-{"pid":27369,"tid":27369,"ts":326460254376,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2192919,"id":"0xaf8a6d28febbc614"},
-{"pid":27369,"tid":27369,"ts":326460254437,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2192980,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460254437,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2192980,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460254467,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2193010},
-{"pid":27369,"tid":27369,"ts":326460254712,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2193254},
-{"pid":27369,"tid":27369,"ts":326460254742,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2193285},
-{"pid":27369,"tid":27369,"ts":326460254773,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460252405},"dur":61,"tdur":61,"tts":2193316},
-{"pid":27369,"tid":27369,"ts":326460254773,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2193316},
-{"pid":27369,"tid":27369,"ts":326460254803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2193346,"id":"0xaf8a6d29febbc614"},
-{"pid":27369,"tid":27369,"ts":326460254895,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2193438},
-{"pid":27369,"tid":27369,"ts":326460255078,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2193621},
-{"pid":27369,"tid":27369,"ts":326460256024,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2193834},
-{"pid":27369,"tid":27369,"ts":326460256024,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2193834,"id":"0xaf8a6009feb47934"},
-{"pid":27369,"tid":27369,"ts":326460256054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":519,"tts":2193865},
-{"pid":27369,"tid":27369,"ts":326460256054,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":519,"tts":2193865},
-{"pid":27369,"tid":27369,"ts":326460256085,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":488,"tdur":489,"tts":2193895},
-{"pid":27369,"tid":27369,"ts":326460256390,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2194201},
-{"pid":27369,"tid":27369,"ts":326460256390,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":2194201},
-{"pid":27369,"tid":27369,"ts":326460256421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2194231,"id":"0xaf8a600afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460256512,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2194323},
-{"pid":27369,"tid":27369,"ts":326460256543,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2194353},
-{"pid":27369,"tid":27369,"ts":326460256634,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2194445},
-{"pid":27369,"tid":27369,"ts":326460256726,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2194536},
-{"pid":27369,"tid":27369,"ts":326460256756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2194567,"id":"0xaf8a600afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460256756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1557,"tdur":1526,"tts":2194567},
-{"pid":27369,"tid":27369,"ts":326460256756,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2194567},
-{"pid":27369,"tid":27369,"ts":326460256787,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1495,"tdur":1496,"tts":2194597},
-{"pid":27369,"tid":27369,"ts":326460256787,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":110},"dur":91,"tdur":61,"tts":2194628},
-{"pid":27369,"tid":27369,"ts":326460256817,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2194628},
-{"pid":27369,"tid":27369,"ts":326460256878,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2194689},
-{"pid":27369,"tid":27407,"ts":326460239940,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1496841,"id":"0xaf8a6d2ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460239970,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1496871},
-{"pid":27369,"tid":27407,"ts":326460239970,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1496871,"id":"0xba456002"},
-{"pid":27369,"tid":27407,"ts":326460239970,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1496871},
-{"pid":27369,"tid":27407,"ts":326460245067,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1497024},
-{"pid":27369,"tid":27407,"ts":326460245098,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":122,"tts":1497085},
-{"pid":27369,"tid":27407,"ts":326460245128,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1497085,"id":"0xc4c1a202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460245159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1497115,"id":"0xaf8a6008feb47934"},
-{"pid":27369,"tid":27407,"ts":326460254467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1497298,"id":"0xaf8a6d28febbc614"},
-{"pid":27369,"tid":27407,"ts":326460254467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1497298},
-{"pid":27369,"tid":27407,"ts":326460254498,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1497329,"id":"0xba456102"},
-{"pid":27369,"tid":27407,"ts":326460254864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1497482,"id":"0xaf8a6d29febbc614"},
-{"pid":27369,"tid":27407,"ts":326460254864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1497482},
-{"pid":27369,"tid":27407,"ts":326460254895,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1497512,"id":"0xba456202"},
-{"pid":27369,"tid":27407,"ts":326460255749,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1497604},
-{"pid":27369,"tid":27407,"ts":326460255810,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1497665},
-{"pid":27369,"tid":27407,"ts":326460255810,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1497665,"id":"0xccc4d402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460255841,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1497695,"id":"0xaf8a6009feb47934"},
-{"pid":27369,"tid":27407,"ts":326460257245,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1497848},
-{"pid":27369,"tid":27407,"ts":326460257275,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1497878},
-{"pid":27369,"tid":27407,"ts":326460257306,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1497909,"id":"0xccc4d602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460257306,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1497909,"id":"0xaf8a600bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460257428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1498031,"id":"0xaf8a6d2afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460257428,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1498031},
-{"pid":27369,"tid":27407,"ts":326460257458,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1498061,"id":"0xba456302"},
-{"pid":27369,"tid":27407,"ts":326460258252,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1498214,"id":"0xaf8a6d2bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460258252,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1498214},
-{"pid":27369,"tid":27407,"ts":326460258252,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1498214,"id":"0xba456402"},
-{"pid":27369,"tid":27407,"ts":326460263166,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":183,"tts":1498367},
-{"pid":27369,"tid":27407,"ts":326460263196,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1498397},
-{"pid":27369,"tid":27407,"ts":326460263227,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1498428,"id":"0xc4c1a502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460263257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1498458,"id":"0xaf8a6004feb47934"},
-{"pid":27369,"tid":27407,"ts":326460270857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1498672,"id":"0xaf8a6d24febbc614"},
-{"pid":27369,"tid":27407,"ts":326460270857,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":274,"tdur":91,"tts":1498672},
-{"pid":27369,"tid":27407,"ts":326460270887,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1498702,"id":"0xba456502"},
-{"pid":27369,"tid":27407,"ts":326460271437,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1498855,"id":"0xaf8a6d25febbc614"},
-{"pid":27369,"tid":27407,"ts":326460271437,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1498886},
-{"pid":27369,"tid":27407,"ts":326460271467,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1498886,"id":"0xba456602"},
-{"pid":27369,"tid":27407,"ts":326460273390,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1499038},
-{"pid":27369,"tid":27407,"ts":326460273421,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1499069},
-{"pid":27369,"tid":27407,"ts":326460273421,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1499069,"id":"0xccc4d902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460273451,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1499099,"id":"0xaf8a6005feb47934"},
-{"pid":27369,"tid":27407,"ts":326460274000,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1499252},
-{"pid":27369,"tid":27407,"ts":326460274061,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":92,"tdur":61,"tts":1499313},
-{"pid":27369,"tid":27407,"ts":326460274061,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1499313,"id":"0xccc4da02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460274092,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1499343,"id":"0xaf8a6006feb47934"},
-{"pid":27369,"tid":27407,"ts":326460275649,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1499496,"id":"0xaf8a6d26febbc614"},
-{"pid":27369,"tid":27407,"ts":326460275679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1499496},
-{"pid":27369,"tid":27407,"ts":326460275679,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1499496,"id":"0xba456702"},
-{"pid":27369,"tid":27407,"ts":326460276442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1499649,"id":"0xaf8a6d27febbc614"},
-{"pid":27369,"tid":27407,"ts":326460276442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1499649},
-{"pid":27369,"tid":27407,"ts":326460276442,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1499649,"id":"0xba456802"},
-{"pid":27369,"tid":27407,"ts":326460281020,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1499801},
-{"pid":27369,"tid":27407,"ts":326460281051,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1499832},
-{"pid":27369,"tid":27407,"ts":326460281051,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1499832,"id":"0xc4c1a802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460281081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1499862,"id":"0xaf8a6000feb47934"},
-{"pid":27369,"tid":27407,"ts":326460287216,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1500045,"id":"0xaf8a6d20febbc614"},
-{"pid":27369,"tid":27407,"ts":326460287246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1500076},
-{"pid":27369,"tid":27407,"ts":326460287246,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1500076,"id":"0xba456902"},
-{"pid":27369,"tid":27407,"ts":326460287765,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1500198,"id":"0xaf8a6d21febbc614"},
-{"pid":27369,"tid":27407,"ts":326460287796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1500228},
-{"pid":27369,"tid":27407,"ts":326460287796,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1500228,"id":"0xba456a02"},
-{"pid":27369,"tid":27407,"ts":326460288955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460287},"tts":1500381,"id":"0xaf8a6431febbc614"},
-{"pid":27369,"tid":27407,"ts":326460288986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/socket/client_socket_pool_base.cc","src_func":"ResetTimer"},"dur":0,"tdur":0,"tts":1500381},
-{"pid":27369,"tid":27369,"ts":326460256878,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2194689,"id":"0x300000078"},
-{"pid":27369,"tid":27369,"ts":326460256909,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2194719},
-{"pid":27369,"tid":27369,"ts":326460256909,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2194719},
-{"pid":27369,"tid":27369,"ts":326460256940,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2194750},
-{"pid":27369,"tid":27369,"ts":326460257184,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2194994},
-{"pid":27369,"tid":27369,"ts":326460257214,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2195025},
-{"pid":27369,"tid":27369,"ts":326460257245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":92,"tts":2195055},
-{"pid":27369,"tid":27369,"ts":326460257245,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":110},"dur":30,"tdur":31,"tts":2195055},
-{"pid":27369,"tid":27369,"ts":326460257275,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":110},"dur":31,"tdur":30,"tts":2195086},
-{"pid":27369,"tid":27369,"ts":326460257306,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":110},"tts":2195116},
-{"pid":27369,"tid":27369,"ts":326460257306,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2195116},
-{"pid":27369,"tid":27369,"ts":326460257336,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2195147},
-{"pid":27369,"tid":27369,"ts":326460257336,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2195147},
-{"pid":27369,"tid":27369,"ts":326460257367,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2195177},
-{"pid":27369,"tid":27369,"ts":326460257367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2195177,"id":"0xaf8a6d2afebbc614"},
-{"pid":27369,"tid":27369,"ts":326460257458,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":793,"tts":2195269},
-{"pid":27369,"tid":27369,"ts":326460257458,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":110},"dur":245,"tdur":244,"tts":2195269},
-{"pid":27369,"tid":27369,"ts":326460257489,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":2195299},
-{"pid":27369,"tid":27369,"ts":326460257489,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2195299},
-{"pid":27369,"tid":27369,"ts":326460257489,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2195299},
-{"pid":27369,"tid":27369,"ts":326460257519,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2195330,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460257550,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2195360},
-{"pid":27369,"tid":27369,"ts":326460257672,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2195482},
-{"pid":27369,"tid":27369,"ts":326460257703,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2195513},
-{"pid":27369,"tid":27369,"ts":326460257703,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2195513},
-{"pid":27369,"tid":27369,"ts":326460257733,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2195543},
-{"pid":27369,"tid":27369,"ts":326460257733,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2195543},
-{"pid":27369,"tid":27369,"ts":326460257794,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2195605},
-{"pid":27369,"tid":27369,"ts":326460258038,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2195849,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460258099,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2195910,"id":"0x300000078"},
-{"pid":27369,"tid":27369,"ts":326460258099,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":2195940},
-{"pid":27369,"tid":27369,"ts":326460258130,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14381},"dur":91,"tdur":92,"tts":2195940},
-{"pid":27369,"tid":27369,"ts":326460258160,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":2195971},
-{"pid":27369,"tid":27369,"ts":326460258160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2195971,"id":"0xaf8a6d2bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460258221,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2196032},
-{"pid":27369,"tid":27369,"ts":326460258221,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2196062},
-{"pid":27369,"tid":27369,"ts":326460258374,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2196184},
-{"pid":27369,"tid":27369,"ts":326460258496,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2196307},
-{"pid":27369,"tid":27369,"ts":326460258496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2196307,"id":"0xaf8a600bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460258527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2196337},
-{"pid":27369,"tid":27369,"ts":326460258527,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":122,"tts":2196337},
-{"pid":27369,"tid":27369,"ts":326460258557,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2196368,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460258588,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2196398,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460258588,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2196398},
-{"pid":27369,"tid":27369,"ts":326460258618,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2196429},
-{"pid":27369,"tid":27369,"ts":326460258649,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2196459,"id":"0xaf8a644cff44f87c"},
-{"pid":27369,"tid":27369,"ts":326460258740,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2196551},
-{"pid":27369,"tid":27369,"ts":326460263471,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2196825},
-{"pid":27369,"tid":27369,"ts":326460263471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2196825,"id":"0xaf8a6004feb47934"},
-{"pid":27369,"tid":27369,"ts":326460263501,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2196856},
-{"pid":27369,"tid":27369,"ts":326460263532,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2196886},
-{"pid":27369,"tid":27369,"ts":326460263562,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2196917},
-{"pid":27369,"tid":27369,"ts":326460263654,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2197008},
-{"pid":27369,"tid":27369,"ts":326460269789,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2197314},
-{"pid":27369,"tid":27369,"ts":326460270338,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2197833},
-{"pid":27369,"tid":27369,"ts":326460270430,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2197924},
-{"pid":27369,"tid":27369,"ts":326460270582,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":274,"tts":2198077},
-{"pid":27369,"tid":27369,"ts":326460264000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2198138,"id":"0x30000007a"},
-{"pid":27369,"tid":27369,"ts":326460270643,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902010},"tts":2198138,"id":"0x30000007a"},
-{"pid":27369,"tid":27369,"ts":326460270674,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2198168},
-{"pid":27369,"tid":27369,"ts":326460270674,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2198199,"id":"0xaf8a644cf8038924"},
-{"pid":27369,"tid":27369,"ts":326460270704,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":2198199},
-{"pid":27369,"tid":27369,"ts":326460270704,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":2198199},
-{"pid":27369,"tid":27369,"ts":326460270735,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2198229},
-{"pid":27369,"tid":27369,"ts":326460270765,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2198260,"id":"0xaf8a6d24febbc614"},
-{"pid":27369,"tid":27369,"ts":326460270826,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2198321,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460270826,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2198321,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460270887,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2198382},
-{"pid":27369,"tid":27369,"ts":326460271254,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2198565},
-{"pid":27369,"tid":27369,"ts":326460271315,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2198626},
-{"pid":27369,"tid":27369,"ts":326460271315,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460269087},"dur":91,"tdur":92,"tts":2198626},
-{"pid":27369,"tid":27369,"ts":326460271345,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2198657},
-{"pid":27369,"tid":27369,"ts":326460271376,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2198687,"id":"0xaf8a6d25febbc614"},
-{"pid":27369,"tid":27369,"ts":326460271528,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2198870},
-{"pid":27369,"tid":27369,"ts":326460271650,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2198962},
-{"pid":27369,"tid":27369,"ts":326460274000,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2199206},
-{"pid":27369,"tid":27369,"ts":326460274031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2199236,"id":"0xaf8a6005feb47934"},
-{"pid":27369,"tid":27369,"ts":326460274031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2199236},
-{"pid":27369,"tid":27369,"ts":326460274031,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2199236},
-{"pid":27369,"tid":27369,"ts":326460274092,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2199298,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460274122,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2199328,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460274122,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":62,"tdur":61,"tts":2199328},{"pid":27369,"tid":27369,"ts":326460274122,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2199328},
-{"pid":27369,"tid":27369,"ts":326460274153,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2199359,"id":"0xaf8a644cf8038924"},
-{"pid":27369,"tid":27369,"ts":326460274245,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2199450},
-{"pid":27369,"tid":27369,"ts":326460274336,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2199542},
-{"pid":27369,"tid":27369,"ts":326460274367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2199572,"id":"0xaf8a6006feb47934"},
-{"pid":27369,"tid":27369,"ts":326460274367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2199572},
-{"pid":27369,"tid":27369,"ts":326460274367,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2199572},
-{"pid":27369,"tid":27369,"ts":326460274397,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":366,"tts":2199603},
-{"pid":27369,"tid":27369,"ts":326460274580,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":61,"tts":2199816},
-{"pid":27369,"tid":27369,"ts":326460274611,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2199816},
-{"pid":27369,"tid":27369,"ts":326460274641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2199847,"id":"0xaf8a6007feb47934"},
-{"pid":27369,"tid":27369,"ts":326460274702,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2199938},
-{"pid":27369,"tid":27369,"ts":326460274763,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2199969},
-{"pid":27369,"tid":27369,"ts":326460274855,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2200061},
-{"pid":27369,"tid":27369,"ts":326460274916,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2200152},
-{"pid":27369,"tid":27369,"ts":326460274947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2200152,"id":"0xaf8a6007feb47934"},
-{"pid":27369,"tid":27369,"ts":326460274947,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2200152},
-{"pid":27369,"tid":27369,"ts":326460274977,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2200183},
-{"pid":27369,"tid":27369,"ts":326460274977,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1496,"tdur":1495,"tts":2200183},
-{"pid":27369,"tid":27369,"ts":326460275008,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":111},"dur":61,"tdur":61,"tts":2200213},
-{"pid":27369,"tid":27369,"ts":326460275008,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2200213},
-{"pid":27369,"tid":27369,"ts":326460275069,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":2200274},
-{"pid":27369,"tid":27369,"ts":326460275069,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2200305,"id":"0x300000079"},
-{"pid":27369,"tid":27369,"ts":326460275099,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2200305},
-{"pid":27369,"tid":27369,"ts":326460275099,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":2200305},
-{"pid":27369,"tid":27369,"ts":326460275130,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2200335},
-{"pid":27369,"tid":27369,"ts":326460275404,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2200610},
-{"pid":27369,"tid":27369,"ts":326460275435,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2200640},
-{"pid":27369,"tid":27369,"ts":326460275435,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2200640},
-{"pid":27369,"tid":27369,"ts":326460275435,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":111},"dur":61,"tdur":31,"tts":2200640},
-{"pid":27369,"tid":27369,"ts":326460275496,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":111},"dur":0,"tdur":0,"tts":2200701},
-{"pid":27369,"tid":27369,"ts":326460275526,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":111},"tts":2200732},
-{"pid":27369,"tid":27369,"ts":326460275526,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2200732},
-{"pid":27369,"tid":27369,"ts":326460275526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2200732},
-{"pid":27369,"tid":27369,"ts":326460275526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":2200762},
-{"pid":27369,"tid":27369,"ts":326460275557,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":2200762},
-{"pid":27369,"tid":27369,"ts":326460275587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2200793,"id":"0xaf8a6d26febbc614"},
-{"pid":27369,"tid":27369,"ts":326460275679,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":763,"tts":2200885},
-{"pid":27369,"tid":27369,"ts":326460275679,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":111},"dur":183,"tdur":153,"tts":2200915},
-{"pid":27369,"tid":27369,"ts":326460275710,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":2200915},
-{"pid":27369,"tid":27369,"ts":326460275710,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2200915},
-{"pid":27369,"tid":27369,"ts":326460275710,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2200915},
-{"pid":27369,"tid":27369,"ts":326460275740,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2200946,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460275771,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2200976},
-{"pid":27369,"tid":27369,"ts":326460275862,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2201068},
-{"pid":27369,"tid":27369,"ts":326460275862,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":396,"tts":2201068},
-{"pid":27369,"tid":27369,"ts":326460275893,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2201098},
-{"pid":27369,"tid":27369,"ts":326460275893,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":335,"tdur":336,"tts":2201098},
-{"pid":27369,"tid":27369,"ts":326460275923,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2201129},
-{"pid":27369,"tid":27369,"ts":326460275954,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":213,"tts":2201190},
-{"pid":27369,"tid":27369,"ts":326460276228,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2201434,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460276289,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2201495,"id":"0x300000079"},
-{"pid":27369,"tid":27369,"ts":326460276289,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":123,"tts":2201525},
-{"pid":27369,"tid":27369,"ts":326460276320,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":1472},"dur":92,"tdur":92,"tts":2201525},
-{"pid":27369,"tid":27369,"ts":326460276350,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":2201556},
-{"pid":27369,"tid":27369,"ts":326460276350,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2201556,"id":"0xaf8a6d27febbc614"},
-{"pid":27369,"tid":27369,"ts":326460276412,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2201617},
-{"pid":27369,"tid":27369,"ts":326460276412,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2201648},
-{"pid":27369,"tid":27369,"ts":326460276564,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2201770},
-{"pid":27369,"tid":27369,"ts":326460281264,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2201922},
-{"pid":27369,"tid":27369,"ts":326460281295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2201953,"id":"0xaf8a6000feb47934"},
-{"pid":27369,"tid":27369,"ts":326460281295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2201953},
-{"pid":27369,"tid":27369,"ts":326460281325,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2201983},
-{"pid":27369,"tid":27369,"ts":326460281356,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2202014},
-{"pid":27369,"tid":27369,"ts":326460281447,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2202105},
-{"pid":27369,"tid":27369,"ts":326460286331,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2202472},
-{"pid":27369,"tid":27369,"ts":326460286758,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2202899},
-{"pid":27369,"tid":27369,"ts":326460286849,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2202990},
-{"pid":27369,"tid":27369,"ts":326460286972,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":274,"tdur":274,"tts":2203113},
-{"pid":27369,"tid":27369,"ts":326460280000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2203143,"id":"0x30000007b"},
-{"pid":27369,"tid":27369,"ts":326460287002,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902011},"tts":2203143,"id":"0x30000007b"},
-{"pid":27369,"tid":27369,"ts":326460287033,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":213,"tts":2203174},
-{"pid":27369,"tid":27369,"ts":326460287033,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2203204,"id":"0xaf8a644cf8038924"},
-{"pid":27369,"tid":27369,"ts":326460287063,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2203204},
-{"pid":27369,"tid":27369,"ts":326460287063,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":122,"tts":2203235},
-{"pid":27369,"tid":27369,"ts":326460287124,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2203265},
-{"pid":27369,"tid":27369,"ts":326460287124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2203296,"id":"0xaf8a6d20febbc614"},
-{"pid":27369,"tid":27369,"ts":326460287185,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2203326,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460287216,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2203357,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460287246,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2203387},
-{"pid":27369,"tid":27369,"ts":326460287612,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2203692},
-{"pid":27369,"tid":27369,"ts":326460287643,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":2203723},
-{"pid":27369,"tid":27369,"ts":326460287674,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460285768},"dur":91,"tdur":92,"tts":2203753},
-{"pid":27369,"tid":27369,"ts":326460287674,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":2203753},
-{"pid":27369,"tid":27369,"ts":326460287704,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2203784,"id":"0xaf8a6d21febbc614"},
-{"pid":27369,"tid":27369,"ts":326460287796,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2203876},
-{"pid":27369,"tid":27369,"ts":326460287979,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2204059},
-{"pid":27369,"tid":27369,"ts":326460289505,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2204242},
-{"pid":27369,"tid":27369,"ts":326460289535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2204272,"id":"0xaf8a6001feb47934"},
-{"pid":27369,"tid":27369,"ts":326460289535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2204272},
-{"pid":27369,"tid":27369,"ts":326460289535,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2204272},
-{"pid":27369,"tid":27369,"ts":326460289596,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2204333,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460289627,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2204364,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460289627,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2204364},
-{"pid":27369,"tid":27369,"ts":326460289627,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2204364},
-{"pid":27369,"tid":27369,"ts":326460289657,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2204394,"id":"0xaf8a644cf8038924"},
-{"pid":27369,"tid":27369,"ts":326460289749,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2204486},
-{"pid":27369,"tid":27369,"ts":326460303514,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2205096},
-{"pid":27369,"tid":27369,"ts":326460304673,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2205890},
-{"pid":27369,"tid":27369,"ts":326460304826,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":183,"tdur":183,"tts":2206043},
-{"pid":27369,"tid":27369,"ts":326460305040,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":427,"tdur":397,"tts":2206256},
-{"pid":27369,"tid":27369,"ts":326460297000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2206287,"id":"0x30000007c"},
-{"pid":27369,"tid":27369,"ts":326460305101,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902012},"tts":2206317,"id":"0x30000007c"},
-{"pid":27369,"tid":27369,"ts":326460305101,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":335,"tdur":336,"tts":2206317},
-{"pid":27369,"tid":27369,"ts":326460305131,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2206348,"id":"0xaf8a644cf8038924"},
-{"pid":27369,"tid":27369,"ts":326460305192,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":244,"tdur":244,"tts":2206409},
-{"pid":27369,"tid":27369,"ts":326460305223,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":183,"tdur":183,"tts":2206439},
-{"pid":27369,"tid":27369,"ts":326460305253,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2206470},
-{"pid":27369,"tid":27369,"ts":326460305284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2206500,"id":"0xaf8a6d22febbc614"},
-{"pid":27369,"tid":27369,"ts":326460305345,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2206592,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27407,"ts":326460289261,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":153,"tts":1500442},
-{"pid":27369,"tid":27407,"ts":326460289291,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1500473},
-{"pid":27369,"tid":27407,"ts":326460289322,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1500503,"id":"0xccc4dc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460289322,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1500503,"id":"0xaf8a6001feb47934"},
-{"pid":27369,"tid":27407,"ts":326460305101,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":1953,"tdur":275,"tts":1500686},
-{"pid":27369,"tid":27407,"ts":326460306901,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1500808},
-{"pid":27369,"tid":27407,"ts":326460306932,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1500839,"id":"0xccc4de02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460306962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1500869,"id":"0xaf8a6002feb47934"},
-{"pid":27369,"tid":27407,"ts":326460307054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1500961,"id":"0xaf8a6d22febbc614"},
-{"pid":27369,"tid":27407,"ts":326460307084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":306,"tdur":31,"tts":1500991},
-{"pid":27369,"tid":27407,"ts":326460307084,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1500991,"id":"0xba456b02"},
-{"pid":27369,"tid":27407,"ts":326460307390,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":123,"tts":1501052},
-{"pid":27369,"tid":27407,"ts":326460307420,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":711},"dur":61,"tdur":61,"tts":1501083},
-{"pid":27369,"tid":27407,"ts":326460307420,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1501083,"id":"0xccc4df02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460307451,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1501113,"id":"0xaf8a6003feb47934"},
-{"pid":27369,"tid":27407,"ts":326460307512,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1501205,"id":"0xaf8a6d23febbc614"},
-{"pid":27369,"tid":27407,"ts":326460307542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1501205},
-{"pid":27369,"tid":27407,"ts":326460307542,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1501205,"id":"0xba456c02"},
-{"pid":27369,"tid":27407,"ts":326460307603,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1501266},
-{"pid":27369,"tid":27407,"ts":326460307634,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":91,"tdur":91,"tts":1501297},
-{"pid":27369,"tid":27407,"ts":326460307634,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1501297,"id":"0xccc4e002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460307664,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1501327,"id":"0xaf8a601cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460307970,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":91,"tts":1501480},
-{"pid":27369,"tid":27407,"ts":326460308000,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":749},"dur":92,"tdur":91,"tts":1501480},
-{"pid":27369,"tid":27407,"ts":326460308031,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1501510,"id":"0xccc4e102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460308031,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1501541,"id":"0xaf8a601efeb47934"},
-{"pid":27369,"tid":27407,"ts":326460308366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1501693,"id":"0xaf8a6d3cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460308366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":0,"tdur":0,"tts":1501693},
-{"pid":27369,"tid":27407,"ts":326460308397,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1501724},
-{"pid":27369,"tid":27407,"ts":326460308427,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1402},"dur":92,"tdur":92,"tts":1501754},
-{"pid":27369,"tid":27407,"ts":326460308427,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1501754,"id":"0xccc4e302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460308458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1501785,"id":"0xaf8a601ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460308549,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":489,"tdur":488,"tts":1501877},
-{"pid":27369,"tid":27407,"ts":326460308580,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":694},"dur":122,"tdur":122,"tts":1501907},
-{"pid":27369,"tid":27407,"ts":326460308580,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1501907,"id":"0xccc4e402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460308672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1501999,"id":"0xaf8a6018feb47934"},
-{"pid":27369,"tid":27407,"ts":326460308733,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":1502060},
-{"pid":27369,"tid":27407,"ts":326460308733,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502060,"id":"0xccc4e502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460308763,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502090,"id":"0xaf8a6019feb47934"},
-{"pid":27369,"tid":27407,"ts":326460308794,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":761},"dur":91,"tdur":91,"tts":1502121},
-{"pid":27369,"tid":27407,"ts":326460308824,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502151,"id":"0xccc4e602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460308824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502151,"id":"0xaf8a601afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460308885,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":1502212},
-{"pid":27369,"tid":27407,"ts":326460308885,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502212,"id":"0xccc4e702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460308916,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502243,"id":"0xaf8a601bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460308977,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1517},"dur":61,"tdur":61,"tts":1502304},
-{"pid":27369,"tid":27407,"ts":326460308977,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502304,"id":"0xccc4e802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460309007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502334,"id":"0xaf8a6014feb47934"},
-{"pid":27369,"tid":27407,"ts":326460309129,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1502426},
-{"pid":27369,"tid":27407,"ts":326460309160,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":714},"dur":61,"tdur":61,"tts":1502456},
-{"pid":27369,"tid":27407,"ts":326460309160,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502456,"id":"0xccc4e902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460309190,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502487,"id":"0xaf8a6015feb47934"},
-{"pid":27369,"tid":27407,"ts":326460309801,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1502609,"id":"0xaf8a6d3dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460309801,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1502609},
-{"pid":27369,"tid":27407,"ts":326460309801,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502640,"id":"0xba456d02"},
-{"pid":27369,"tid":27407,"ts":326460310533,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1502731},
-{"pid":27369,"tid":27407,"ts":326460310564,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":232},"dur":91,"tdur":91,"tts":1502762},
-{"pid":27369,"tid":27407,"ts":326460310564,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502792,"id":"0xccc4ea02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460310594,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502792,"id":"0xaf8a6016feb47934"},
-{"pid":27369,"tid":27407,"ts":326460310686,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1502884},
-{"pid":27369,"tid":27407,"ts":326460310686,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502884,"id":"0xccc4eb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460310716,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1502914,"id":"0xaf8a6017feb47934"},
-{"pid":27369,"tid":27407,"ts":326460310777,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1502975,"id":"0xaf8a6d3efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460310777,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1502975},
-{"pid":27369,"tid":27369,"ts":326460305375,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2206592,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460305467,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2206714},
-{"pid":27369,"tid":27369,"ts":326460305803,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2207019},
-{"pid":27369,"tid":27369,"ts":326460305925,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":2207080},
-{"pid":27369,"tid":27369,"ts":326460305925,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460302450},"dur":61,"tdur":61,"tts":2207080},
-{"pid":27369,"tid":27369,"ts":326460305955,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2207111},
-{"pid":27369,"tid":27369,"ts":326460305986,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2207141,"id":"0xaf8a6d23febbc614"},
-{"pid":27369,"tid":27369,"ts":326460306047,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2207233},
-{"pid":27369,"tid":27369,"ts":326460306047,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":2207233},
-{"pid":27369,"tid":27369,"ts":326460306321,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2207385},
-{"pid":27369,"tid":27369,"ts":326460307176,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2207630},
-{"pid":27369,"tid":27369,"ts":326460307176,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2207630,"id":"0xaf8a6002feb47934"},
-{"pid":27369,"tid":27369,"ts":326460307207,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":793,"tdur":580,"tts":2207660},
-{"pid":27369,"tid":27369,"ts":326460307207,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":793,"tdur":580,"tts":2207660},
-{"pid":27369,"tid":27369,"ts":326460307268,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":732,"tdur":519,"tts":2207721},
-{"pid":27369,"tid":27369,"ts":326460307756,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":92,"tts":2208026},
-{"pid":27369,"tid":27369,"ts":326460307786,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":2208026},
-{"pid":27369,"tid":27369,"ts":326460307817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2208057,"id":"0xaf8a601dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460307909,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2208148},
-{"pid":27369,"tid":27369,"ts":326460307939,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2208179},
-{"pid":27369,"tid":27369,"ts":326460308061,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2208301},
-{"pid":27369,"tid":27369,"ts":326460308183,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2208423},
-{"pid":27369,"tid":27369,"ts":326460308214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2208454,"id":"0xaf8a6003feb47934"},
-{"pid":27369,"tid":27369,"ts":326460308214,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2208454},
-{"pid":27369,"tid":27369,"ts":326460308214,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":711},"dur":397,"tdur":396,"tts":2208454},
-{"pid":27369,"tid":27369,"ts":326460308275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2208515,"id":"0xaf8a6d3cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460308458,"ph":"S","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"NULL"},"tts":2208698,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326460308733,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2208972},
-{"pid":27369,"tid":27369,"ts":326460308794,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2209033},
-{"pid":27369,"tid":27369,"ts":326460308824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2209064,"id":"0xaf8a601cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460308824,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":92,"tts":2209064},
-{"pid":27369,"tid":27369,"ts":326460308824,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":92,"tdur":92,"tts":2209064},
-{"pid":27369,"tid":27369,"ts":326460308977,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2209217},
-{"pid":27369,"tid":27369,"ts":326460309068,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2209308},
-{"pid":27369,"tid":27369,"ts":326460309068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2209308,"id":"0xaf8a601dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460309099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1587,"tts":2209339},
-{"pid":27369,"tid":27369,"ts":326460309099,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2209339},
-{"pid":27369,"tid":27369,"ts":326460309099,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1556,"tdur":1526,"tts":2209369},
-{"pid":27369,"tid":27369,"ts":326460309129,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":112},"dur":61,"tdur":61,"tts":2209369},
-{"pid":27369,"tid":27369,"ts":326460309160,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2209400},
-{"pid":27369,"tid":27369,"ts":326460309190,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":367,"tdur":336,"tts":2209461},
-{"pid":27369,"tid":27369,"ts":326460309221,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2209461,"id":"0x30000007a"},
-{"pid":27369,"tid":27369,"ts":326460309221,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2209461,"id":"0x30000007b"},
-{"pid":27369,"tid":27369,"ts":326460309251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2209491},
-{"pid":27369,"tid":27369,"ts":326460309251,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2209491},
-{"pid":27369,"tid":27369,"ts":326460309282,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2209522},
-{"pid":27369,"tid":27369,"ts":326460309526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2209766},
-{"pid":27369,"tid":27369,"ts":326460309557,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2209797},
-{"pid":27369,"tid":27369,"ts":326460309557,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2209797},
-{"pid":27369,"tid":27369,"ts":326460309587,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":112},"dur":31,"tdur":31,"tts":2209827},
-{"pid":27369,"tid":27369,"ts":326460309618,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":112},"dur":30,"tdur":30,"tts":2209858},
-{"pid":27369,"tid":27369,"ts":326460309648,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":112},"tts":2209888},
-{"pid":27369,"tid":27369,"ts":326460309648,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2209888},
-{"pid":27369,"tid":27369,"ts":326460309679,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2209919},
-{"pid":27369,"tid":27369,"ts":326460309679,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2209919},
-{"pid":27369,"tid":27369,"ts":326460309709,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2209949},
-{"pid":27369,"tid":27369,"ts":326460309709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2209949,"id":"0xaf8a6d3dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460309801,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":854,"tdur":854,"tts":2210041},
-{"pid":27369,"tid":27369,"ts":326460309831,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":112},"dur":244,"tdur":244,"tts":2210071},
-{"pid":27369,"tid":27369,"ts":326460309831,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":2210071},
-{"pid":27369,"tid":27369,"ts":326460309831,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2210071},
-{"pid":27369,"tid":27369,"ts":326460309862,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2210102},
-{"pid":27369,"tid":27369,"ts":326460309862,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2210102,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460309892,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2210132},
-{"pid":27369,"tid":27369,"ts":326460310045,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2210285},
-{"pid":27369,"tid":27369,"ts":326460310075,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":367,"tdur":367,"tts":2210315},
-{"pid":27369,"tid":27369,"ts":326460310106,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2210346},
-{"pid":27369,"tid":27369,"ts":326460310106,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2210346},
-{"pid":27369,"tid":27369,"ts":326460310106,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2210346},
-{"pid":27369,"tid":27369,"ts":326460310167,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":2210407},
-{"pid":27369,"tid":27369,"ts":326460310442,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2210682,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460310503,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2210743,"id":"0x30000007a"},
-{"pid":27369,"tid":27369,"ts":326460310503,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2210743,"id":"0x30000007b"},
-{"pid":27369,"tid":27369,"ts":326460310503,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2210743},
-{"pid":27369,"tid":27369,"ts":326460310533,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4934},"dur":61,"tdur":61,"tts":2210773},
-{"pid":27369,"tid":27369,"ts":326460310564,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":2210804},
-{"pid":27369,"tid":27369,"ts":326460310564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2210804,"id":"0xaf8a6d3efebbc614"},
-{"pid":27369,"tid":27369,"ts":326460310625,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2210865},
-{"pid":27369,"tid":27369,"ts":326460310625,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2210865},
-{"pid":27369,"tid":27369,"ts":326460310747,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2210987},
-{"pid":27369,"tid":27369,"ts":326460310838,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2211078},
-{"pid":27369,"tid":27369,"ts":326460310869,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2211109,"id":"0xaf8a601efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460310869,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2211109},
-{"pid":27369,"tid":27369,"ts":326460310869,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":749},"dur":61,"tdur":61,"tts":2211109},
-{"pid":27369,"tid":27369,"ts":326460310991,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2211231},
-{"pid":27369,"tid":27369,"ts":326460311083,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2211323},
-{"pid":27369,"tid":27369,"ts":326460311083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2211323,"id":"0xaf8a601ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460311113,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":2211353},
-{"pid":27369,"tid":27369,"ts":326460311113,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1402},"dur":31,"tdur":31,"tts":2211353},
-{"pid":27369,"tid":27369,"ts":326460311205,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2211445},
-{"pid":27369,"tid":27369,"ts":326460311296,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2211536},
-{"pid":27369,"tid":27369,"ts":326460311296,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2211536,"id":"0xaf8a6018feb47934"},
-{"pid":27369,"tid":27369,"ts":326460311327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":4334,"tdur":2289,"tts":2211567},
-{"pid":27369,"tid":27369,"ts":326460311327,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":694},"dur":4303,"tdur":2258,"tts":2211567},
-{"pid":27369,"tid":27369,"ts":326460311418,"ph":"X","cat":"navigation","name":"RenderFrameHostImpl::OnDidCommitProvisionalLoad","args":{"url":"https://www.google.com/maps/@37.3605424,-122.1099705,13z?hl=en"},"dur":4212,"tdur":2167,"tts":2211658},
-{"pid":27369,"tid":27369,"ts":326460312090,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2212330},
-{"pid":27369,"tid":27369,"ts":326460312120,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2212360},
-{"pid":27369,"tid":27369,"ts":326460312303,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2212543,"id":"0xaf8a6452fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326460312395,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2212635,"id":"0xaf8a6453fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326460312487,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2212726},
-{"pid":27369,"tid":27369,"ts":326460312517,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2212757},
-{"pid":27369,"tid":27369,"ts":326460312548,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2212788},
-{"pid":27369,"tid":27369,"ts":326460312578,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2212818},
-{"pid":27369,"tid":27369,"ts":326460312609,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2212849,"id":"0xaf8a6011feb47934"},
-{"pid":27369,"tid":27369,"ts":326460312670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2212910,"id":"0xaf8a6401feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326460312914,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2212971,"id":"0xaf8a6402feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326460313555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2213489,"id":"0xaf8a6403feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326460313707,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2213642,"id":"0xaf8a641cfeb5e97c"},
-{"pid":27369,"tid":27369,"ts":326460313829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2213703,"id":"0xaf8a646cfd55cb44"},
-{"pid":27369,"tid":27369,"ts":326460315783,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2213978},
-{"pid":27369,"tid":27369,"ts":326460315905,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214100},
-{"pid":27369,"tid":27369,"ts":326460315905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2214100,"id":"0xaf8a6019feb47934"},
-{"pid":27369,"tid":27369,"ts":326460315935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2214130},
-{"pid":27369,"tid":27369,"ts":326460315935,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":2214130},
-{"pid":27369,"tid":27369,"ts":326460316057,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214252},
-{"pid":27369,"tid":27369,"ts":326460316149,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214344},
-{"pid":27369,"tid":27369,"ts":326460316149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2214375,"id":"0xaf8a601afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460316180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2214375},
-{"pid":27369,"tid":27369,"ts":326460316180,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":761},"dur":61,"tdur":61,"tts":2214375},
-{"pid":27369,"tid":27369,"ts":326460316302,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214497},
-{"pid":27369,"tid":27369,"ts":326460316363,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214588},
-{"pid":27369,"tid":27369,"ts":326460316393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2214588,"id":"0xaf8a601bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460316393,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2214588},
-{"pid":27369,"tid":27369,"ts":326460316393,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":61,"tdur":0,"tts":2214619},
-{"pid":27369,"tid":27369,"ts":326460316485,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214680},
-{"pid":27369,"tid":27369,"ts":326460316576,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2214771},
-{"pid":27369,"tid":27369,"ts":326460316576,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2214802,"id":"0xaf8a6014feb47934"},
-{"pid":27369,"tid":27369,"ts":326460316607,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2214802},
-{"pid":27369,"tid":27407,"ts":326460310777,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1502975,"id":"0xba456e02"},
-{"pid":27369,"tid":27407,"ts":326460316302,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1503097},
-{"pid":27369,"tid":27407,"ts":326460316332,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1503128},
-{"pid":27369,"tid":27407,"ts":326460316363,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1503158,"id":"0xc4c1ab02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460316363,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1503158,"id":"0xaf8a602cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460317248,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503311,"id":"0xaf8a6d3ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460317248,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":61,"tdur":61,"tts":1503311},
-{"pid":27369,"tid":27407,"ts":326460317706,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503464,"id":"0xaf8a6d38febbc614"},
-{"pid":27369,"tid":27407,"ts":326460317736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1503464},
-{"pid":27369,"tid":27407,"ts":326460317736,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1503464,"id":"0xba456f02"},
-{"pid":27369,"tid":27407,"ts":326460321978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503616,"id":"0xaf8a6d39febbc614"},
-{"pid":27369,"tid":27407,"ts":326460321978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1503616},
-{"pid":27369,"tid":27407,"ts":326460322009,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1503647,"id":"0xba457002"},
-{"pid":27369,"tid":27407,"ts":326460322345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1503799,"id":"0xaf8a6d3afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460322345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1503799},
-{"pid":27369,"tid":27407,"ts":326460322345,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1503830,"id":"0xba457102"},
-{"pid":27369,"tid":27407,"ts":326460325641,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1503921},
-{"pid":27369,"tid":27407,"ts":326460325671,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":91,"tts":1503952},
-{"pid":27369,"tid":27407,"ts":326460325671,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1503952,"id":"0xccc4ed02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460325702,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1503982,"id":"0xaf8a602ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460327655,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":213,"tts":1504166},
-{"pid":27369,"tid":27407,"ts":326460327747,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1504227},
-{"pid":27369,"tid":27407,"ts":326460327747,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1504227,"id":"0xccc4ef02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460327777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1504257,"id":"0xaf8a6028feb47934"},
-{"pid":27369,"tid":27407,"ts":326460329364,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1504471,"id":"0xaf8a6d3bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460329364,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1504471},
-{"pid":27369,"tid":27407,"ts":326460329364,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1504471,"id":"0xba457202"},
-{"pid":27369,"tid":27407,"ts":326460330158,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1504623,"id":"0xaf8a6d34febbc614"},
-{"pid":27369,"tid":27407,"ts":326460330188,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1504623},
-{"pid":27369,"tid":27407,"ts":326460330188,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1504623,"id":"0xba457302"},
-{"pid":27369,"tid":27407,"ts":326460335468,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":184,"tdur":184,"tts":1504745},
-{"pid":27369,"tid":27407,"ts":326460335499,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1504776},
-{"pid":27369,"tid":27407,"ts":326460335529,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1504806,"id":"0xc4c1ae02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460335529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1504806,"id":"0xaf8a602afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460341328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1505020,"id":"0xaf8a6d35febbc614"},
-{"pid":27369,"tid":27407,"ts":326460341359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":61,"tts":1505051},
-{"pid":27369,"tid":27407,"ts":326460341359,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1505051,"id":"0xba457402"},
-{"pid":27369,"tid":27407,"ts":326460341908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1505173,"id":"0xaf8a6d36febbc614"},
-{"pid":27369,"tid":27407,"ts":326460341939,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":31,"tts":1505203},
-{"pid":27369,"tid":27407,"ts":326460341939,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1505203,"id":"0xba457502"},
-{"pid":27369,"tid":27407,"ts":326460343465,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1505295},
-{"pid":27369,"tid":27407,"ts":326460343495,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1505325},
-{"pid":27369,"tid":27407,"ts":326460343495,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1505325,"id":"0xccc4f102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460343526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1505356,"id":"0xaf8a602bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460344350,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":488,"tdur":153,"tts":1505478},
-{"pid":27369,"tid":27407,"ts":326460344411,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":427,"tdur":92,"tts":1505539},
-{"pid":27369,"tid":27407,"ts":326460344411,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1505539,"id":"0xccc4f302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460344441,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1505569,"id":"0xaf8a6024feb47934"},
-{"pid":27369,"tid":27407,"ts":326460344441,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1505569},
-{"pid":27369,"tid":27407,"ts":326460347616,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1505692,"id":"0xaf8a6d37febbc614"},
-{"pid":27369,"tid":27407,"ts":326460347646,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1505722},
-{"pid":27369,"tid":27407,"ts":326460347646,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1505722,"id":"0xba457602"},
-{"pid":27369,"tid":27407,"ts":326460348440,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1505875,"id":"0xaf8a6d30febbc614"},
-{"pid":27369,"tid":27407,"ts":326460348440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1505875},
-{"pid":27369,"tid":27407,"ts":326460348470,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1505905,"id":"0xba457702"},
-{"pid":27369,"tid":27407,"ts":326460353994,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1505997},
-{"pid":27369,"tid":27407,"ts":326460354025,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1506027},
-{"pid":27369,"tid":27407,"ts":326460354055,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1506058,"id":"0xc4c1b102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460354055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1506058,"id":"0xaf8a6026feb47934"},
-{"pid":27369,"tid":27407,"ts":326460354147,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1506180,"id":"0xaf8a6d31febbc614"},
-{"pid":27369,"tid":27407,"ts":326460354177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1506180},
-{"pid":27369,"tid":27407,"ts":326460354208,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1506210,"id":"0xba457802"},
-{"pid":27369,"tid":27407,"ts":326460354696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1506332,"id":"0xaf8a6d32febbc614"},
-{"pid":27369,"tid":27407,"ts":326460354696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1506332},
-{"pid":27369,"tid":27369,"ts":326460316607,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1517},"dur":122,"tdur":122,"tts":2214802},
-{"pid":27369,"tid":27369,"ts":326460316851,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2215077},
-{"pid":27369,"tid":27369,"ts":326460316943,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2215138},
-{"pid":27369,"tid":27369,"ts":326460316973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2215168,"id":"0xaf8a6015feb47934"},
-{"pid":27369,"tid":27369,"ts":326460316973,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2215168},
-{"pid":27369,"tid":27369,"ts":326460316973,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":714},"dur":458,"tdur":458,"tts":2215168},
-{"pid":27369,"tid":27369,"ts":326460317156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2215351,"id":"0xaf8a6d3ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460317309,"ph":"F","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"https://www.google.com/maps/@37.3605424,-122.1099705,13z?hl=en"},"tts":2215534,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326460317492,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2215687},
-{"pid":27369,"tid":27369,"ts":326460317553,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2215748},
-{"pid":27369,"tid":27369,"ts":326460317583,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2215779,"id":"0xaf8a6016feb47934"},
-{"pid":27369,"tid":27369,"ts":326460317583,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":123,"tdur":122,"tts":2215779},
-{"pid":27369,"tid":27369,"ts":326460317583,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":232},"dur":123,"tdur":122,"tts":2215779},
-{"pid":27369,"tid":27369,"ts":326460317645,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2215840},
-{"pid":27369,"tid":27369,"ts":326460317645,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2215840,"id":"0xaf8a6d38febbc614"},
-{"pid":27369,"tid":27369,"ts":326460317767,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2215992},
-{"pid":27369,"tid":27369,"ts":326460317858,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216053},
-{"pid":27369,"tid":27369,"ts":326460317889,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2216084,"id":"0xaf8a6017feb47934"},
-{"pid":27369,"tid":27369,"ts":326460317889,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2216084},
-{"pid":27369,"tid":27369,"ts":326460317889,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2216084},
-{"pid":27369,"tid":27369,"ts":326460317919,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2216145,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460317950,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2216145,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460317950,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2216145},
-{"pid":27369,"tid":27369,"ts":326460317980,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2216175},
-{"pid":27369,"tid":27369,"ts":326460317980,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2216175,"id":"0xaf8a644cf8038924"},
-{"pid":27369,"tid":27369,"ts":326460318072,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216267},
-{"pid":27369,"tid":27369,"ts":326460318163,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216358},
-{"pid":27369,"tid":27369,"ts":326460318163,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2216389,"id":"0xaf8a6010feb47934"},
-{"pid":27369,"tid":27369,"ts":326460318194,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":122,"tdur":122,"tts":2216389},
-{"pid":27369,"tid":27369,"ts":326460318255,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2216450,"id":"0xaf8a646dfd55cb44"},
-{"pid":27369,"tid":27369,"ts":326460318377,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216572},
-{"pid":27369,"tid":27369,"ts":326460318438,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216633},
-{"pid":27369,"tid":27369,"ts":326460318469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2216664,"id":"0xaf8a6012feb47934"},
-{"pid":27369,"tid":27369,"ts":326460318469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":91,"tdur":91,"tts":2216664},
-{"pid":27369,"tid":27369,"ts":326460318621,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216816},
-{"pid":27369,"tid":27369,"ts":326460318713,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2216908},
-{"pid":27369,"tid":27369,"ts":326460318713,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2216908,"id":"0xaf8a6013feb47934"},
-{"pid":27369,"tid":27369,"ts":326460318743,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyURLVisited"},"dur":122,"tdur":122,"tts":2216938},
-{"pid":27369,"tid":27369,"ts":326460318926,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2217121},
-{"pid":27369,"tid":27369,"ts":326460319018,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2217213},
-{"pid":27369,"tid":27369,"ts":326460319018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2217213,"id":"0xaf8a602cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460319048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2217243},
-{"pid":27369,"tid":27369,"ts":326460319079,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2217274},
-{"pid":27369,"tid":27369,"ts":326460319110,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2217305},
-{"pid":27369,"tid":27369,"ts":326460319262,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2217457},
-{"pid":27369,"tid":27369,"ts":326460319323,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2217518},
-{"pid":27369,"tid":27369,"ts":326460319354,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2217549,"id":"0xaf8a602dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460319354,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyFaviconChanged"},"dur":30,"tdur":30,"tts":2217549},
-{"pid":27369,"tid":27369,"ts":326460319506,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2217610},
-{"pid":27369,"tid":27369,"ts":326460319689,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2217793},
-{"pid":27369,"tid":27369,"ts":326460319689,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2217793,"id":"0xaf8a602efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460319720,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"UpdateFaviconMappingsAndFetch"},"dur":946,"tdur":946,"tts":2217823},
-{"pid":27369,"tid":27369,"ts":326460320758,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2218861},
-{"pid":27369,"tid":27369,"ts":326460320849,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2218953},
-{"pid":27369,"tid":27369,"ts":326460320910,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2219014},
-{"pid":27369,"tid":27369,"ts":326460321032,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2219136},
-{"pid":27369,"tid":27369,"ts":326460321521,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2219655},
-{"pid":27369,"tid":27369,"ts":326460321612,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2219716},
-{"pid":27369,"tid":27369,"ts":326460321765,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2219868},
-{"pid":27369,"tid":27369,"ts":326460314000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2219868,"id":"0x30000007d"},
-{"pid":27369,"tid":27369,"ts":326460321795,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902013},"tts":2219899,"id":"0x30000007d"},
-{"pid":27369,"tid":27369,"ts":326460321795,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":153,"tts":2219929},
-{"pid":27369,"tid":27369,"ts":326460321826,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2219929,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460321826,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":153,"tts":2219929},
-{"pid":27369,"tid":27369,"ts":326460321856,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2219960},
-{"pid":27369,"tid":27369,"ts":326460321887,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2219990},
-{"pid":27369,"tid":27369,"ts":326460321917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2220021,"id":"0xaf8a6d39febbc614"},
-{"pid":27369,"tid":27369,"ts":326460321948,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2220051,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460321978,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2220082,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460322009,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2220112},
-{"pid":27369,"tid":27369,"ts":326460322162,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2220265},
-{"pid":27369,"tid":27369,"ts":326460322223,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2220326},
-{"pid":27369,"tid":27369,"ts":326460322223,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460319131},"dur":91,"tdur":92,"tts":2220326},
-{"pid":27369,"tid":27369,"ts":326460322253,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2220357},
-{"pid":27369,"tid":27369,"ts":326460322284,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2220387,"id":"0xaf8a6d3afebbc614"},
-{"pid":27369,"tid":27369,"ts":326460322436,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2220540},
-{"pid":27369,"tid":27369,"ts":326460326282,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2223836},
-{"pid":27369,"tid":27369,"ts":326460326434,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2223988},
-{"pid":27369,"tid":27369,"ts":326460326465,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2223988,"id":"0xaf8a602ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460326465,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":153,"tts":2224019},
-{"pid":27369,"tid":27369,"ts":326460326495,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":2224019},
-{"pid":27369,"tid":27369,"ts":326460326556,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2224080,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460326556,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2224080,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460326556,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":62,"tdur":30,"tts":2224111},
-{"pid":27369,"tid":27369,"ts":326460326587,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2224111},
-{"pid":27369,"tid":27369,"ts":326460326618,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2224141,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460326679,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2224233},
-{"pid":27369,"tid":27369,"ts":326460327960,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2224385},
-{"pid":27369,"tid":27369,"ts":326460327991,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2224416,"id":"0xaf8a6028feb47934"},
-{"pid":27369,"tid":27369,"ts":326460327991,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2224416},
-{"pid":27369,"tid":27369,"ts":326460328021,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":428,"tts":2224446},
-{"pid":27369,"tid":27369,"ts":326460328052,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2224477},
-{"pid":27369,"tid":27369,"ts":326460328266,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2224690},
-{"pid":27369,"tid":27369,"ts":326460328266,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2224690},
-{"pid":27369,"tid":27369,"ts":326460328296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2224721,"id":"0xaf8a6029feb47934"},
-{"pid":27369,"tid":27369,"ts":326460328388,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2224813},
-{"pid":27369,"tid":27369,"ts":326460328418,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2224843},
-{"pid":27369,"tid":27369,"ts":326460328510,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2224935},
-{"pid":27369,"tid":27369,"ts":326460328601,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2225026},
-{"pid":27369,"tid":27369,"ts":326460328632,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2225057,"id":"0xaf8a6029feb47934"},
-{"pid":27369,"tid":27369,"ts":326460328632,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1617,"tdur":1617,"tts":2225057},
-{"pid":27369,"tid":27369,"ts":326460328632,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2225057},
-{"pid":27369,"tid":27369,"ts":326460328662,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1557,"tdur":1557,"tts":2225087},
-{"pid":27369,"tid":27369,"ts":326460328662,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":113},"dur":92,"tdur":61,"tts":2225118},
-{"pid":27369,"tid":27369,"ts":326460328693,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2225118},
-{"pid":27369,"tid":27369,"ts":326460328754,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2225179},
-{"pid":27369,"tid":27369,"ts":326460328754,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2225179,"id":"0x30000007c"},
-{"pid":27369,"tid":27369,"ts":326460328784,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2225209},
-{"pid":27369,"tid":27369,"ts":326460328784,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2225209},
-{"pid":27369,"tid":27369,"ts":326460328815,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2225240},
-{"pid":27369,"tid":27369,"ts":326460329090,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2225515},
-{"pid":27369,"tid":27369,"ts":326460329090,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":2225545},
-{"pid":27369,"tid":27369,"ts":326460329120,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2225545},
-{"pid":27369,"tid":27369,"ts":326460329120,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":113},"dur":31,"tdur":31,"tts":2225545},
-{"pid":27369,"tid":27369,"ts":326460329181,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":113},"dur":0,"tdur":0,"tts":2225606},
-{"pid":27369,"tid":27369,"ts":326460329181,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":113},"tts":2225606},
-{"pid":27369,"tid":27369,"ts":326460329212,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2225637},
-{"pid":27369,"tid":27369,"ts":326460329212,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2225637},
-{"pid":27369,"tid":27369,"ts":326460329212,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2225637},
-{"pid":27369,"tid":27369,"ts":326460329242,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2225667},
-{"pid":27369,"tid":27369,"ts":326460329273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2225698,"id":"0xaf8a6d3bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460329364,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":855,"tdur":824,"tts":2225789},
-{"pid":27369,"tid":27369,"ts":326460329364,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":113},"dur":214,"tdur":214,"tts":2225789},
-{"pid":27369,"tid":27369,"ts":326460329395,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2225820},
-{"pid":27369,"tid":27369,"ts":326460329395,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2225820},
-{"pid":27369,"tid":27369,"ts":326460329395,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2225850},
-{"pid":27369,"tid":27369,"ts":326460329425,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2225850,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460329456,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2225881},
-{"pid":27369,"tid":27369,"ts":326460329547,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2225972},
-{"pid":27369,"tid":27369,"ts":326460329578,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2226003},
-{"pid":27369,"tid":27369,"ts":326460329609,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2226033},
-{"pid":27369,"tid":27369,"ts":326460329609,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2226033},
-{"pid":27369,"tid":27369,"ts":326460329609,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2226033},
-{"pid":27369,"tid":27369,"ts":326460329670,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":214,"tts":2226094},
-{"pid":27369,"tid":27369,"ts":326460329944,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2226369,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460330036,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2226461,"id":"0x30000007c"},
-{"pid":27369,"tid":27369,"ts":326460330036,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2226461},
-{"pid":27369,"tid":27369,"ts":326460330066,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8396},"dur":92,"tdur":92,"tts":2226491},
-{"pid":27369,"tid":27369,"ts":326460330097,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":2226522},
-{"pid":27369,"tid":27369,"ts":326460330097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2226522,"id":"0xaf8a6d34febbc614"},
-{"pid":27369,"tid":27369,"ts":326460330158,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2226583},
-{"pid":27369,"tid":27369,"ts":326460330158,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2226613},
-{"pid":27369,"tid":27369,"ts":326460330310,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2226735},
-{"pid":27369,"tid":27369,"ts":326460335743,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2227010},
-{"pid":27369,"tid":27369,"ts":326460335774,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2227041,"id":"0xaf8a602afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460335774,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2227041},
-{"pid":27369,"tid":27369,"ts":326460335835,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2227102},
-{"pid":27369,"tid":27369,"ts":326460335835,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2227102},
-{"pid":27369,"tid":27369,"ts":326460335926,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2227193},
-{"pid":27369,"tid":27369,"ts":326460340504,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2227498},
-{"pid":27369,"tid":27369,"ts":326460340932,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2227926},
-{"pid":27369,"tid":27369,"ts":326460341023,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2228017},
-{"pid":27369,"tid":27369,"ts":326460341115,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":213,"tdur":213,"tts":2228109},
-{"pid":27369,"tid":27369,"ts":326460330000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2228139,"id":"0x30000007e"},
-{"pid":27369,"tid":27369,"ts":326460341145,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902014},"tts":2228139,"id":"0x30000007e"},
-{"pid":27369,"tid":27369,"ts":326460341176,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":152,"tdur":152,"tts":2228170},
-{"pid":27369,"tid":27369,"ts":326460341176,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2228170,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460341176,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":122,"tts":2228200},
-{"pid":27369,"tid":27369,"ts":326460341206,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2228200},
-{"pid":27369,"tid":27369,"ts":326460341237,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2228231},
-{"pid":27369,"tid":27369,"ts":326460341237,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2228261,"id":"0xaf8a6d35febbc614"},
-{"pid":27369,"tid":27369,"ts":326460341298,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2228292,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460341298,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2228322,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460341359,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2228353},
-{"pid":27369,"tid":27369,"ts":326460341756,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2228567},
-{"pid":27369,"tid":27369,"ts":326460341817,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":91,"tts":2228628},
-{"pid":27369,"tid":27369,"ts":326460341817,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460335813},"dur":91,"tdur":91,"tts":2228628},
-{"pid":27369,"tid":27369,"ts":326460341847,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":2228658},
-{"pid":27369,"tid":27369,"ts":326460341847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2228658,"id":"0xaf8a6d36febbc614"},
-{"pid":27369,"tid":27369,"ts":326460341939,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2228750},
-{"pid":27369,"tid":27369,"ts":326460345754,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2231558},
-{"pid":27369,"tid":27369,"ts":326460345906,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2231710},
-{"pid":27369,"tid":27369,"ts":326460345937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2231741,"id":"0xaf8a602bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460345937,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2231741},
-{"pid":27369,"tid":27369,"ts":326460345937,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":2231741},
-{"pid":27369,"tid":27369,"ts":326460345998,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2231802,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460346028,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2231832,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460346028,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":62,"tdur":61,"tts":2231832},
-{"pid":27369,"tid":27369,"ts":326460346028,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":62,"tdur":61,"tts":2231832},
-{"pid":27369,"tid":27369,"ts":326460346059,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2231863,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460346120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460345},"tts":2231924,"id":"0xaf8a647dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460346120,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/top_sites_impl.cc","src_func":"RestartQueryForTopSitesTimer"},"dur":0,"tdur":0,"tts":2231924},
-{"pid":27369,"tid":27369,"ts":326460346181,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2231985},
-{"pid":27369,"tid":27369,"ts":326460346273,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2232076},
-{"pid":27369,"tid":27369,"ts":326460346273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2232076,"id":"0xaf8a6024feb47934"},
-{"pid":27369,"tid":27369,"ts":326460346303,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":427,"tts":2232107},
-{"pid":27369,"tid":27369,"ts":326460346303,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2232107},
-{"pid":27369,"tid":27369,"ts":326460346334,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":396,"tdur":397,"tts":2232137},
-{"pid":27369,"tid":27369,"ts":326460346517,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":61,"tts":2232351},
-{"pid":27369,"tid":27369,"ts":326460346547,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2232351},
-{"pid":27369,"tid":27369,"ts":326460346578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2232382,"id":"0xaf8a6025feb47934"},
-{"pid":27369,"tid":27369,"ts":326460346669,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2232473},
-{"pid":27369,"tid":27369,"ts":326460346700,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2232504},
-{"pid":27369,"tid":27369,"ts":326460346791,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2232595},
-{"pid":27369,"tid":27369,"ts":326460346883,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2232687},
-{"pid":27369,"tid":27369,"ts":326460346883,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2232687,"id":"0xaf8a6025feb47934"},
-{"pid":27369,"tid":27369,"ts":326460346914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1587,"tts":2232717},
-{"pid":27369,"tid":27369,"ts":326460346914,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":2232717},
-{"pid":27369,"tid":27369,"ts":326460346944,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1526,"tdur":1526,"tts":2232748},
-{"pid":27369,"tid":27369,"ts":326460346944,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":114},"dur":92,"tdur":61,"tts":2232748},
-{"pid":27369,"tid":27369,"ts":326460346975,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":2232778},
-{"pid":27369,"tid":27369,"ts":326460347036,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":335,"tdur":336,"tts":2232839},
-{"pid":27369,"tid":27369,"ts":326460347036,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2232839,"id":"0x30000007d"},
-{"pid":27369,"tid":27369,"ts":326460347066,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2232870},
-{"pid":27369,"tid":27369,"ts":326460347066,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2232870},
-{"pid":27369,"tid":27369,"ts":326460347097,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":245,"tts":2232900},
-{"pid":27369,"tid":27369,"ts":326460347371,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2233175},
-{"pid":27369,"tid":27369,"ts":326460347371,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2233175},
-{"pid":27369,"tid":27369,"ts":326460347402,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2233206},
-{"pid":27369,"tid":27369,"ts":326460347402,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":114},"dur":30,"tdur":30,"tts":2233206},
-{"pid":27369,"tid":27369,"ts":326460347463,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":114},"dur":0,"tdur":0,"tts":2233267},
-{"pid":27369,"tid":27369,"ts":326460347463,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":114},"tts":2233267},
-{"pid":27369,"tid":27369,"ts":326460347493,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2233297},
-{"pid":27369,"tid":27369,"ts":326460347493,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2233297},
-{"pid":27369,"tid":27369,"ts":326460347493,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":2233297},
-{"pid":27369,"tid":27369,"ts":326460347524,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2233328},
-{"pid":27369,"tid":27369,"ts":326460347555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2233358,"id":"0xaf8a6d37febbc614"},
-{"pid":27369,"tid":27369,"ts":326460347646,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":2233450},
-{"pid":27369,"tid":27369,"ts":326460347646,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":114},"dur":244,"tdur":244,"tts":2233450},
-{"pid":27369,"tid":27369,"ts":326460347677,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":2233480},
-{"pid":27369,"tid":27369,"ts":326460347677,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2233480},
-{"pid":27369,"tid":27369,"ts":326460347677,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2233480},
-{"pid":27369,"tid":27369,"ts":326460347707,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2233511,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460347707,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2233541},
-{"pid":27369,"tid":27369,"ts":326460347860,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2233663},
-{"pid":27369,"tid":27369,"ts":326460347890,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2233694},
-{"pid":27369,"tid":27369,"ts":326460347890,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":2233694},
-{"pid":27369,"tid":27369,"ts":326460347921,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2233724},
-{"pid":27369,"tid":27369,"ts":326460347921,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":31,"tts":2233724},
-{"pid":27369,"tid":27369,"ts":326460347982,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":213,"tts":2233786},
-{"pid":27369,"tid":27369,"ts":326460348226,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2234030,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460348287,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2234091,"id":"0x30000007d"},
-{"pid":27369,"tid":27369,"ts":326460348318,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":122,"tts":2234121},
-{"pid":27369,"tid":27369,"ts":326460348318,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11858},"dur":91,"tdur":92,"tts":2234121},
-{"pid":27369,"tid":27369,"ts":326460348348,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2234152},
-{"pid":27369,"tid":27369,"ts":326460348379,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2234182,"id":"0xaf8a6d30febbc614"},
-{"pid":27369,"tid":27369,"ts":326460348409,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2234213},
-{"pid":27369,"tid":27369,"ts":326460348440,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2234243},
-{"pid":27369,"tid":27369,"ts":326460348592,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2234396},{"pid":27369,"tid":27369,"ts":326460348684,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2234487},
-{"pid":27369,"tid":27369,"ts":326460348745,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2234549},
-{"pid":27369,"tid":27369,"ts":326460353048,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2234854},
-{"pid":27369,"tid":27369,"ts":326460353598,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2235403},
-{"pid":27369,"tid":27369,"ts":326460353689,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":152,"tts":2235495},
-{"pid":27369,"tid":27369,"ts":326460353872,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2235678},
-{"pid":27369,"tid":27369,"ts":326460347000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2235739,"id":"0x30000007f"},
-{"pid":27369,"tid":27369,"ts":326460353933,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902015},"tts":2235739,"id":"0x30000007f"},
-{"pid":27369,"tid":27369,"ts":326460353964,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":152,"tdur":153,"tts":2235769},
-{"pid":27369,"tid":27369,"ts":326460353964,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2235769,"id":"0xaf8a644cfa8fd6cc"},
-{"pid":27369,"tid":27369,"ts":326460353994,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2235800},
-{"pid":27369,"tid":27369,"ts":326460353994,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":92,"tdur":91,"tts":2235800},
-{"pid":27369,"tid":27369,"ts":326460354025,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":2235830},
-{"pid":27369,"tid":27369,"ts":326460354025,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2235861,"id":"0xaf8a6d31febbc614"},
-{"pid":27369,"tid":27369,"ts":326460354086,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2235891,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460354086,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2235891,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460354147,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2235952},
-{"pid":27369,"tid":27369,"ts":326460354391,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2236136},
-{"pid":27369,"tid":27369,"ts":326460354483,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":335,"tdur":183,"tts":2236197},
-{"pid":27369,"tid":27369,"ts":326460354483,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460352494},"dur":61,"tdur":61,"tts":2236197},
-{"pid":27369,"tid":27369,"ts":326460354513,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":2236227},
-{"pid":27369,"tid":27369,"ts":326460354513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2236227,"id":"0xaf8a6d32febbc614"},
-{"pid":27369,"tid":27369,"ts":326460354818,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2236380},
-{"pid":27369,"tid":27369,"ts":326460357687,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2238791},
-{"pid":27369,"tid":27369,"ts":326460358115,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2239218},
-{"pid":27369,"tid":27369,"ts":326460358176,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_POINTER_UP"},"dur":61,"tdur":30,"tts":2239310},
-{"pid":27369,"tid":27369,"ts":326460358267,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":61,"tts":2239371},
-{"pid":27369,"tid":27369,"ts":326460354000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{},"tts":2239401,"id":"0x300000080"},
-{"pid":27369,"tid":27369,"ts":326460358298,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902016},"tts":2239401,"id":"0x300000080"},
-{"pid":27369,"tid":27369,"ts":326460358328,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":2239432},
-{"pid":27369,"tid":27369,"ts":326460358328,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2239432,"id":"0xaf8a644cfeb53f0c"},
-{"pid":27369,"tid":27369,"ts":326460358359,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2239462},
-{"pid":27369,"tid":27369,"ts":326460358603,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2239706},
-{"pid":27369,"tid":27369,"ts":326460358633,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2239737,"id":"0xaf8a6026feb47934"},
-{"pid":27369,"tid":27369,"ts":326460358633,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2239737},
-{"pid":27369,"tid":27369,"ts":326460358664,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2239798},
-{"pid":27369,"tid":27369,"ts":326460358694,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2239798},
-{"pid":27369,"tid":27369,"ts":326460358786,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2239890},
-{"pid":27369,"tid":27369,"ts":326460358878,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2239981},
-{"pid":27369,"tid":27369,"ts":326460358878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2239981,"id":"0xaf8a6027feb47934"},
-{"pid":27369,"tid":27369,"ts":326460358908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":2240012},
-{"pid":27369,"tid":27369,"ts":326460358908,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":274,"tts":2240012},
-{"pid":27369,"tid":27369,"ts":326460358969,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2240073,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460358969,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2240073,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460358969,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":183,"tts":2240103},
-{"pid":27369,"tid":27369,"ts":326460359000,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2240103},
-{"pid":27369,"tid":27369,"ts":326460359030,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2240134,"id":"0xaf8a644cfa8fd6cc"},
-{"pid":27369,"tid":27369,"ts":326460359030,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":2240134},
-{"pid":27369,"tid":27369,"ts":326460359030,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchEnd"},"dur":153,"tdur":152,"tts":2240134},
-{"pid":27369,"tid":27369,"ts":326460359061,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2240195},
-{"pid":27369,"tid":27369,"ts":326460359091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2240195,"id":"0xaf8a6d33febbc614"},
-{"pid":27369,"tid":27369,"ts":326460359152,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2240256,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460359152,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2240256,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460359274,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2240378},
-{"pid":27369,"tid":27369,"ts":326460369804,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2240805},
-{"pid":27369,"tid":27369,"ts":326460370262,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2241263},
-{"pid":27369,"tid":27369,"ts":326460370323,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":2241324},
-{"pid":27369,"tid":27369,"ts":326460370445,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":2241446},
-{"pid":27369,"tid":27369,"ts":326460364000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2241477,"id":"0x300000081"},
-{"pid":27369,"tid":27369,"ts":326460370475,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902017},"tts":2241477,"id":"0x300000081"},
-{"pid":27369,"tid":27369,"ts":326460370506,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2241507},
-{"pid":27369,"tid":27369,"ts":326460370506,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2241507,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460370536,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2241568},
-{"pid":27369,"tid":27369,"ts":326460371086,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2241873},
-{"pid":27369,"tid":27369,"ts":326460371116,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":2241904},
-{"pid":27369,"tid":27369,"ts":326460371147,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460369176},"dur":91,"tdur":92,"tts":2241934},
-{"pid":27369,"tid":27369,"ts":326460371147,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2241934},
-{"pid":27369,"tid":27369,"ts":326460371177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2241965,"id":"0xaf8a6dccfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460371269,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2242057},
-{"pid":27369,"tid":27369,"ts":326460373833,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2244223},
-{"pid":27369,"tid":27369,"ts":326460374657,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2244376},
-{"pid":27369,"tid":27369,"ts":326460374657,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2244376},
-{"pid":27369,"tid":27369,"ts":326460374718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2244407,"id":"0xaf8a6020feb47934"},
-{"pid":27369,"tid":27369,"ts":326460374718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":885,"tdur":518,"tts":2244407},
-{"pid":27369,"tid":27369,"ts":326460374718,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":854,"tdur":458,"tts":2244437},
-{"pid":27369,"tid":27369,"ts":326460374779,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":793,"tdur":427,"tts":2244468},
-{"pid":27369,"tid":27369,"ts":326460375389,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":91,"tts":2244712},
-{"pid":27369,"tid":27369,"ts":326460375389,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":91,"tts":2244712},
-{"pid":27369,"tid":27369,"ts":326460375420,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2244742,"id":"0xaf8a6023feb47934"},
-{"pid":27369,"tid":27369,"ts":326460375511,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2244834},
-{"pid":27369,"tid":27369,"ts":326460375542,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2244864},
-{"pid":27369,"tid":27407,"ts":326460354727,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1506363,"id":"0xba457902"},
-{"pid":27369,"tid":27407,"ts":326460357840,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1506455},
-{"pid":27369,"tid":27407,"ts":326460357870,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1506485},
-{"pid":27369,"tid":27407,"ts":326460357901,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1506516,"id":"0xccc4f502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460357901,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1506516,"id":"0xaf8a6027feb47934"},
-{"pid":27369,"tid":27407,"ts":326460359183,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1506699,"id":"0xaf8a6d33febbc614"},
-{"pid":27369,"tid":27407,"ts":326460359183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":274,"tdur":91,"tts":1506699},
-{"pid":27369,"tid":27407,"ts":326460359183,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1506729,"id":"0xba457a02"},
-{"pid":27369,"tid":27407,"ts":326460371269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1506851,"id":"0xaf8a6dccfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460371269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1506851},
-{"pid":27369,"tid":27407,"ts":326460371269,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1506882,"id":"0xba457b02"},
-{"pid":27369,"tid":27407,"ts":326460374168,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":611,"tdur":428,"tts":1506973},
-{"pid":27369,"tid":27407,"ts":326460374260,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1507065},
-{"pid":27369,"tid":27407,"ts":326460374260,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507065,"id":"0xccc4f802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460374290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1507095,"id":"0xaf8a6020feb47934"},
-{"pid":27369,"tid":27407,"ts":326460374412,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1507218},
-{"pid":27369,"tid":27407,"ts":326460374412,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507218,"id":"0xccc4f902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460374412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1507218,"id":"0xaf8a6021feb47934"},
-{"pid":27369,"tid":27407,"ts":326460374473,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1382},"dur":275,"tdur":91,"tts":1507279},
-{"pid":27369,"tid":27407,"ts":326460374504,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507309,"id":"0xccc4fa02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460374504,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":1507309},
-{"pid":27369,"tid":27407,"ts":326460374718,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1507340,"id":"0xaf8a6022feb47934"},
-{"pid":27369,"tid":27407,"ts":326460376152,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1507492,"id":"0xaf8a6dcdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460376152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1507492},
-{"pid":27369,"tid":27407,"ts":326460376152,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507492,"id":"0xba457c02"},
-{"pid":27369,"tid":27407,"ts":326460376579,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1507645,"id":"0xaf8a6dcefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460376579,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1507645},
-{"pid":27369,"tid":27407,"ts":326460376610,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507675,"id":"0xba457d02"},
-{"pid":27369,"tid":27407,"ts":326460377403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1507767,"id":"0xaf8a6dcffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460377434,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1507797},
-{"pid":27369,"tid":27407,"ts":326460377434,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507797,"id":"0xba457e02"},
-{"pid":27369,"tid":27407,"ts":326460377709,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1507920},
-{"pid":27369,"tid":27407,"ts":326460377739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1507950},
-{"pid":27369,"tid":27407,"ts":326460377739,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1507950,"id":"0xccc4fc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460377739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1507981,"id":"0xaf8a603cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460378197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1508164,"id":"0xaf8a6dc8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460378197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1508164},
-{"pid":27369,"tid":27407,"ts":326460378227,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1508194,"id":"0xba457f02"},
-{"pid":27369,"tid":27407,"ts":326460383416,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":244,"tdur":213,"tts":1508286},
-{"pid":27369,"tid":27407,"ts":326460383446,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":184,"tdur":183,"tts":1508316},
-{"pid":27369,"tid":27407,"ts":326460383446,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1508316,"id":"0xc4c1b402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460383446,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1508316},
-{"pid":27369,"tid":27407,"ts":326460383507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1508377,"id":"0xaf8a603dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460385186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1508560,"id":"0xaf8a6dc9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460385217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1508591},
-{"pid":27369,"tid":27407,"ts":326460385217,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1508591,"id":"0xba458002"},
-{"pid":27369,"tid":27407,"ts":326460386590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1508683,"id":"0xaf8a6dcafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460386621,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1508713},
-{"pid":27369,"tid":27407,"ts":326460386621,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1508713,"id":"0xba458102"},
-{"pid":27369,"tid":27407,"ts":326460387139,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1508805},
-{"pid":27369,"tid":27407,"ts":326460387170,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1508835},
-{"pid":27369,"tid":27407,"ts":326460387200,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1508866,"id":"0xccc4fe02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460387200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1508896,"id":"0xaf8a603efeb47934"},
-{"pid":27369,"tid":27407,"ts":326460389947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1509110,"id":"0xaf8a6dcbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460389978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":427,"tdur":92,"tts":1509140},
-{"pid":27369,"tid":27407,"ts":326460389978,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1509140,"id":"0xba458202"},
-{"pid":27369,"tid":27407,"ts":326460389978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1509140},
-{"pid":27369,"tid":27407,"ts":326460400690,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":306,"tdur":306,"tts":1509323},
-{"pid":27369,"tid":27407,"ts":326460400782,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":183,"tts":1509415},
-{"pid":27369,"tid":27407,"ts":326460400782,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1509415,"id":"0xccc50102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460400843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1509476,"id":"0xaf8a603ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460402857,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1509720,"id":"0xaf8a6dc4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460402888,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1509720},
-{"pid":27369,"tid":27407,"ts":326460402918,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1509751,"id":"0xba458302"},
-{"pid":27369,"tid":27369,"ts":326460375664,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2244987},
-{"pid":27369,"tid":27369,"ts":326460375786,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2245109},
-{"pid":27369,"tid":27369,"ts":326460375786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2245109,"id":"0xaf8a6021feb47934"},
-{"pid":27369,"tid":27369,"ts":326460375816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2245139},
-{"pid":27369,"tid":27369,"ts":326460375816,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":336,"tdur":336,"tts":2245139},
-{"pid":27369,"tid":27369,"ts":326460375847,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2245170,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460375847,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2245170,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460375877,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchEnd","ack":"CONSUMED"},"dur":275,"tdur":275,"tts":2245200},
-{"pid":27369,"tid":27369,"ts":326460375877,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":275,"tdur":275,"tts":2245200},
-{"pid":27369,"tid":27369,"ts":326460375969,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460375908.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902016.0,"time":326460358267.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460354000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326460375908.0},"coordinates":[{"x":294.64312744140625,"y":767.0},{"x":478.85687255859375,"y":544.7862548828125}],"trace_id":12884902016.0}},"tts":2245292,"id":"0x300000080"},
-{"pid":27369,"tid":27369,"ts":326460375969,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":2245292,"id":"0x300000080","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326460375999,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2245322,"id":"0xaf8a644cfeb53f0c"},
-{"pid":27369,"tid":27369,"ts":326460375999,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2245322},
-{"pid":27369,"tid":27369,"ts":326460376030,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":92,"tdur":91,"tts":2245353},
-{"pid":27369,"tid":27369,"ts":326460376030,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2245353},
-{"pid":27369,"tid":27369,"ts":326460376061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2245383,"id":"0xaf8a6dcdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460376122,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2245444,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460376122,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2245444,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460376213,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2245536},
-{"pid":27369,"tid":27369,"ts":326460376305,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2245627},
-{"pid":27369,"tid":27369,"ts":326460376305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2245627,"id":"0xaf8a6022feb47934"},
-{"pid":27369,"tid":27369,"ts":326460376335,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":214,"tts":2245658},
-{"pid":27369,"tid":27369,"ts":326460376335,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1382},"dur":214,"tdur":214,"tts":2245658},
-{"pid":27369,"tid":27369,"ts":326460376396,"ph":"B","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2245719},
-{"pid":27369,"tid":27369,"ts":326460376457,"ph":"E","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2245811},
-{"pid":27369,"tid":27369,"ts":326460376488,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2245811},
-{"pid":27369,"tid":27369,"ts":326460376518,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2245841,"id":"0xaf8a6dcefebbc614"},
-{"pid":27369,"tid":27369,"ts":326460376610,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2245933},
-{"pid":27369,"tid":27369,"ts":326460376701,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2246024},
-{"pid":27369,"tid":27369,"ts":326460376701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2246024,"id":"0xaf8a6023feb47934"},
-{"pid":27369,"tid":27369,"ts":326460376732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2246055},
-{"pid":27369,"tid":27369,"ts":326460376732,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2246055},
-{"pid":27369,"tid":27369,"ts":326460376762,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1465,"tdur":1465,"tts":2246085},
-{"pid":27369,"tid":27369,"ts":326460376762,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":115},"dur":62,"tdur":61,"tts":2246085},
-{"pid":27369,"tid":27369,"ts":326460376793,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2246116},
-{"pid":27369,"tid":27369,"ts":326460376824,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":366,"tdur":305,"tts":2246177},
-{"pid":27369,"tid":27369,"ts":326460376854,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2246177,"id":"0x30000007e"},
-{"pid":27369,"tid":27369,"ts":326460376854,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2246177,"id":"0x30000007f"},
-{"pid":27369,"tid":27369,"ts":326460376885,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2246207},
-{"pid":27369,"tid":27369,"ts":326460376885,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2246207},
-{"pid":27369,"tid":27369,"ts":326460376915,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":213,"tts":2246238},
-{"pid":27369,"tid":27369,"ts":326460377159,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2246482},
-{"pid":27369,"tid":27369,"ts":326460377190,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2246513},
-{"pid":27369,"tid":27369,"ts":326460377190,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2246513},
-{"pid":27369,"tid":27369,"ts":326460377190,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":115},"dur":61,"tdur":61,"tts":2246513},
-{"pid":27369,"tid":27369,"ts":326460377251,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":115},"dur":0,"tdur":0,"tts":2246574},
-{"pid":27369,"tid":27369,"ts":326460377281,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":115},"tts":2246604},
-{"pid":27369,"tid":27369,"ts":326460377281,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2246604},
-{"pid":27369,"tid":27369,"ts":326460377281,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2246604},
-{"pid":27369,"tid":27369,"ts":326460377281,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":2246635},
-{"pid":27369,"tid":27369,"ts":326460377312,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2246635},
-{"pid":27369,"tid":27369,"ts":326460377342,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2246665,"id":"0xaf8a6dcffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460377434,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":793,"tdur":793,"tts":2246757},
-{"pid":27369,"tid":27369,"ts":326460377434,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":115},"dur":183,"tdur":183,"tts":2246757},
-{"pid":27369,"tid":27369,"ts":326460377434,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":31,"tts":2246787},
-{"pid":27369,"tid":27369,"ts":326460377464,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2246787},
-{"pid":27369,"tid":27369,"ts":326460377464,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2246787},
-{"pid":27369,"tid":27369,"ts":326460377495,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2246818,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460377495,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2246818},
-{"pid":27369,"tid":27369,"ts":326460377617,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2246940},
-{"pid":27369,"tid":27369,"ts":326460377617,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":366,"tts":2246940},
-{"pid":27369,"tid":27369,"ts":326460377648,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2246970},
-{"pid":27369,"tid":27369,"ts":326460377648,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":335,"tdur":306,"tts":2246970},
-{"pid":27369,"tid":27369,"ts":326460377678,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2247001},
-{"pid":27369,"tid":27369,"ts":326460377709,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":245,"tts":2247031},
-{"pid":27369,"tid":27369,"ts":326460377983,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2247306,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460378044,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2247367,"id":"0x30000007e"},
-{"pid":27369,"tid":27369,"ts":326460378044,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2247367,"id":"0x30000007f"},
-{"pid":27369,"tid":27369,"ts":326460378075,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":122,"tts":2247398},
-{"pid":27369,"tid":27369,"ts":326460378075,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15320},"dur":91,"tdur":91,"tts":2247398},
-{"pid":27369,"tid":27369,"ts":326460378105,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2247428},
-{"pid":27369,"tid":27369,"ts":326460378136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2247459,"id":"0xaf8a6dc8febbc614"},
-{"pid":27369,"tid":27369,"ts":326460378166,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2247489},
-{"pid":27369,"tid":27369,"ts":326460378197,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2247520},
-{"pid":27369,"tid":27369,"ts":326460378319,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2247642},
-{"pid":27369,"tid":27369,"ts":326460378411,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2247733},
-{"pid":27369,"tid":27369,"ts":326460378441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2247764,"id":"0xaf8a603cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460378441,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":122,"tts":2247764},
-{"pid":27369,"tid":27369,"ts":326460378441,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2247764},
-{"pid":27369,"tid":27369,"ts":326460378502,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2247825,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460378502,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2247825,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460378533,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":31,"tts":2247855},
-{"pid":27369,"tid":27369,"ts":326460378533,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2247855},
-{"pid":27369,"tid":27369,"ts":326460378563,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2247886,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460378624,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2247977},
-{"pid":27369,"tid":27369,"ts":326460383721,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2248130},
-{"pid":27369,"tid":27369,"ts":326460383721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2248130,"id":"0xaf8a603dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460383752,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2248161},
-{"pid":27369,"tid":27369,"ts":326460383782,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2248191},
-{"pid":27369,"tid":27369,"ts":326460383813,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2248222},
-{"pid":27369,"tid":27369,"ts":326460383904,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2248313},
-{"pid":27369,"tid":27369,"ts":326460384820,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2248832},
-{"pid":27369,"tid":27369,"ts":326460384911,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":61,"tdur":61,"tts":2248893},
-{"pid":27369,"tid":27369,"ts":326460384972,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":245,"tdur":213,"tts":2248985},
-{"pid":27369,"tid":27369,"ts":326460374000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2248985,"id":"0x300000082"},
-{"pid":27369,"tid":27369,"ts":326460385034,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902018},"tts":2249015,"id":"0x300000082"},
-{"pid":27369,"tid":27369,"ts":326460385034,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2249015},
-{"pid":27369,"tid":27369,"ts":326460385064,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2249046,"id":"0xaf8a644cfa8fd6cc"},
-{"pid":27369,"tid":27369,"ts":326460385064,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":122,"tts":2249046},
-{"pid":27369,"tid":27369,"ts":326460385064,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2249046},
-{"pid":27369,"tid":27369,"ts":326460385095,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2249076},
-{"pid":27369,"tid":27369,"ts":326460385125,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2249107,"id":"0xaf8a6dc9febbc614"},
-{"pid":27369,"tid":27369,"ts":326460385186,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2249168,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460385186,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2249168,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460385217,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2249198},
-{"pid":27369,"tid":27369,"ts":326460385583,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2249595},
-{"pid":27369,"tid":27369,"ts":326460385644,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_UP"},"dur":61,"tdur":30,"tts":2249626},
-{"pid":27369,"tid":27369,"ts":326460385705,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":2249687},
-{"pid":27369,"tid":27369,"ts":326460384000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{},"tts":2249717,"id":"0x300000083"},
-{"pid":27369,"tid":27369,"ts":326460385735,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902019},"tts":2249717,"id":"0x300000083"},
-{"pid":27369,"tid":27369,"ts":326460385735,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":2249717},
-{"pid":27369,"tid":27369,"ts":326460385766,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2249748,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460385797,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2249778},
-{"pid":27369,"tid":27369,"ts":326460386315,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2250114},
-{"pid":27369,"tid":27369,"ts":326460386407,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2250205},
-{"pid":27369,"tid":27369,"ts":326460386468,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":336,"tdur":213,"tts":2250267},
-{"pid":27369,"tid":27369,"ts":326460386468,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460385858},"dur":92,"tdur":91,"tts":2250267},
-{"pid":27369,"tid":27369,"ts":326460386498,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":2250297},
-{"pid":27369,"tid":27369,"ts":326460386529,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2250328,"id":"0xaf8a6dcafebbc614"},
-{"pid":27369,"tid":27369,"ts":326460386804,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2250480},
-{"pid":27369,"tid":27369,"ts":326460389459,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2252769},
-{"pid":27369,"tid":27369,"ts":326460389581,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2252891},
-{"pid":27369,"tid":27369,"ts":326460389612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2252922,"id":"0xaf8a603efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460389612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":335,"tdur":336,"tts":2252922},
-{"pid":27369,"tid":27369,"ts":326460389642,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":305,"tdur":306,"tts":2252952},
-{"pid":27369,"tid":27369,"ts":326460389703,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2253013,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460389703,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2253013,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460389734,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2253044},
-{"pid":27369,"tid":27369,"ts":326460389734,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2253044},
-{"pid":27369,"tid":27369,"ts":326460389764,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2253074,"id":"0xaf8a644cfa8fd6cc"},
-{"pid":27369,"tid":27369,"ts":326460389764,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2253074},
-{"pid":27369,"tid":27369,"ts":326460389795,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchEnd"},"dur":122,"tdur":122,"tts":2253105},
-{"pid":27369,"tid":27369,"ts":326460389825,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2253135},
-{"pid":27369,"tid":27369,"ts":326460389825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2253135,"id":"0xaf8a6dcbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460389886,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2253196,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460389886,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2253196,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460390039,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2253349},
-{"pid":27369,"tid":27369,"ts":326460401087,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2253532},
-{"pid":27369,"tid":27369,"ts":326460401118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2253563,"id":"0xaf8a603ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460401148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":550,"tdur":550,"tts":2253593},
-{"pid":27369,"tid":27369,"ts":326460401148,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":519,"tts":2253593},
-{"pid":27369,"tid":27369,"ts":326460401179,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":488,"tdur":488,"tts":2253624},
-{"pid":27369,"tid":27369,"ts":326460401484,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2253929},
-{"pid":27369,"tid":27369,"ts":326460401484,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2253929},
-{"pid":27369,"tid":27369,"ts":326460401515,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2253959,"id":"0xaf8a6038feb47934"},
-{"pid":27369,"tid":27369,"ts":326460401606,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2254051},
-{"pid":27369,"tid":27369,"ts":326460401637,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2254082},
-{"pid":27369,"tid":27369,"ts":326460401759,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2254204},
-{"pid":27369,"tid":27369,"ts":326460401850,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2254295},
-{"pid":27369,"tid":27369,"ts":326460401850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2254295,"id":"0xaf8a6038feb47934"},
-{"pid":27369,"tid":27369,"ts":326460401881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2228,"tdur":2136,"tts":2254326},
-{"pid":27369,"tid":27369,"ts":326460401881,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2254326},
-{"pid":27369,"tid":27369,"ts":326460401911,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2167,"tdur":2076,"tts":2254356},
-{"pid":27369,"tid":27369,"ts":326460401942,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":116},"dur":61,"tdur":61,"tts":2254387},
-{"pid":27369,"tid":27369,"ts":326460401942,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":2254387},
-{"pid":27369,"tid":27369,"ts":326460402003,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":427,"tdur":427,"tts":2254448},
-{"pid":27369,"tid":27369,"ts":326460402003,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2254448,"id":"0x300000081"},
-{"pid":27369,"tid":27369,"ts":326460402033,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2254478,"id":"0x300000082"},
-{"pid":27369,"tid":27369,"ts":326460402033,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2254478},
-{"pid":27369,"tid":27369,"ts":326460402064,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2254509},
-{"pid":27369,"tid":27369,"ts":326460402094,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":306,"tdur":306,"tts":2254539},
-{"pid":27369,"tid":27369,"ts":326460402400,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2254845},
-{"pid":27369,"tid":27369,"ts":326460402430,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2254875},
-{"pid":27369,"tid":27369,"ts":326460402461,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2254906},
-{"pid":27369,"tid":27369,"ts":326460402461,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":116},"dur":30,"tdur":30,"tts":2254906},
-{"pid":27369,"tid":27369,"ts":326460402522,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":116},"dur":0,"tdur":0,"tts":2254967},
-{"pid":27369,"tid":27369,"ts":326460402522,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":116},"tts":2254967},
-{"pid":27369,"tid":27369,"ts":326460402552,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2254997},
-{"pid":27369,"tid":27369,"ts":326460402552,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2254997},
-{"pid":27369,"tid":27369,"ts":326460402552,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":2254997},
-{"pid":27369,"tid":27369,"ts":326460402583,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":122,"tts":2255028},
-{"pid":27369,"tid":27369,"ts":326460402583,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2255028},
-{"pid":27369,"tid":27369,"ts":326460402674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2255119,"id":"0xaf8a6dc4febbc614"},
-{"pid":27369,"tid":27369,"ts":326460402766,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1312,"tdur":1190,"tts":2255211},
-{"pid":27369,"tid":27369,"ts":326460402766,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":2255211},
-{"pid":27369,"tid":27369,"ts":326460402857,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":116},"dur":306,"tdur":275,"tts":2255241},
-{"pid":27369,"tid":27369,"ts":326460402888,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2255241},
-{"pid":27369,"tid":27369,"ts":326460402888,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2255241},
-{"pid":27369,"tid":27369,"ts":326460402918,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2255272},
-{"pid":27369,"tid":27369,"ts":326460402949,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2255302,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460402949,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2255333},
-{"pid":27369,"tid":27369,"ts":326460403163,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2255516},
-{"pid":27369,"tid":27369,"ts":326460403193,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":550,"tdur":549,"tts":2255547},
-{"pid":27369,"tid":27369,"ts":326460403193,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":30,"tts":2255547},
-{"pid":27369,"tid":27369,"ts":326460403224,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":488,"tdur":488,"tts":2255577},
-{"pid":27369,"tid":27369,"ts":326460403224,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":91,"tdur":30,"tts":2255608},
-{"pid":27369,"tid":27369,"ts":326460403315,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":366,"tdur":366,"tts":2255669},
-{"pid":27369,"tid":27369,"ts":326460403712,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2256065,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460403804,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2256157,"id":"0x300000081"},
-{"pid":27369,"tid":27369,"ts":326460403804,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2256157,"id":"0x300000082"},
-{"pid":27369,"tid":27369,"ts":326460403834,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":2256187},
-{"pid":27369,"tid":27369,"ts":326460403865,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2398},"dur":122,"tdur":122,"tts":2256218},
-{"pid":27369,"tid":27369,"ts":326460403895,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":92,"tdur":91,"tts":2256249},
-{"pid":27369,"tid":27369,"ts":326460403926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2256279,"id":"0xaf8a6dc5febbc614"},
-{"pid":27369,"tid":27369,"ts":326460403987,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":61,"tdur":61,"tts":2256340},
-{"pid":27369,"tid":27369,"ts":326460404017,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2256371},
-{"pid":27369,"tid":27369,"ts":326460404139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460402},"tts":2256493,"id":"0xaf8a67abfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460404139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ui/events/gesture_detection/gesture_detector.cc","src_func":"StartTimeout"},"dur":31,"tdur":30,"tts":2256493},
-{"pid":27369,"tid":27369,"ts":326460404261,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2256615},
-{"pid":27369,"tid":27369,"ts":326460407954,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2256859},
-{"pid":27369,"tid":27369,"ts":326460408046,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2256950},
-{"pid":27369,"tid":27369,"ts":326460408107,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2257012},
-{"pid":27369,"tid":27369,"ts":326460408107,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460402539},"dur":91,"tdur":91,"tts":2257012},
-{"pid":27369,"tid":27369,"ts":326460408137,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2257042},
-{"pid":27369,"tid":27369,"ts":326460408168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2257073,"id":"0xaf8a6dc6febbc614"},
-{"pid":27369,"tid":27369,"ts":326460408351,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2257256},
-{"pid":27369,"tid":27369,"ts":326460408351,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":2257256},
-{"pid":27369,"tid":27369,"ts":326460411128,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2259606},
-{"pid":27369,"tid":27369,"ts":326460411251,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2259728},
-{"pid":27369,"tid":27369,"ts":326460411281,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2259758,"id":"0xaf8a6039feb47934"},
-{"pid":27369,"tid":27369,"ts":326460411281,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2259758},
-{"pid":27369,"tid":27369,"ts":326460411342,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2259819},
-{"pid":27369,"tid":27369,"ts":326460411342,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2259819},
-{"pid":27369,"tid":27369,"ts":326460411495,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2259972},
-{"pid":27369,"tid":27369,"ts":326460411556,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2260064},
-{"pid":27369,"tid":27369,"ts":326460411647,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2260125},
-{"pid":27369,"tid":27369,"ts":326460413845,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2260277},
-{"pid":27369,"tid":27369,"ts":326460413875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460412},"tts":2260308,"id":"0xaf8a6011feb47934"},
-{"pid":27369,"tid":27369,"ts":326460413875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/visitedlink/browser/visitedlink_event_listener.cc","src_func":"Add"},"dur":122,"tdur":122,"tts":2260308},
-{"pid":27369,"tid":27369,"ts":326460413906,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2260338},
-{"pid":27369,"tid":27369,"ts":326460413936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2260369,"id":"0xaf8a6dc7febbc614"},
-{"pid":27369,"tid":27369,"ts":326460414089,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2260521},
-{"pid":27369,"tid":27369,"ts":326460419857,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2260857},
-{"pid":27369,"tid":27369,"ts":326460419949,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2260979},
-{"pid":27369,"tid":27369,"ts":326460420071,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":671,"tdur":244,"tts":2261071},
-{"pid":27369,"tid":27369,"ts":326460420101,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460419221},"dur":336,"tdur":92,"tts":2261101},
-{"pid":27369,"tid":27369,"ts":326460420101,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":306,"tdur":30,"tts":2261132},
-{"pid":27369,"tid":27369,"ts":326460420132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2261132,"id":"0xaf8a6dc0febbc614"},
-{"pid":27369,"tid":27369,"ts":326460420773,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2261345},
-{"pid":27369,"tid":27369,"ts":326460423916,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2263970},
-{"pid":27369,"tid":27369,"ts":326460436552,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2264336},
-{"pid":27369,"tid":27369,"ts":326460436674,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2264459},
-{"pid":27369,"tid":27369,"ts":326460436735,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":763,"tdur":244,"tts":2264520},
-{"pid":27369,"tid":27369,"ts":326460436766,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460435902},"dur":91,"tdur":92,"tts":2264550},
-{"pid":27369,"tid":27369,"ts":326460436796,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2264581},
-{"pid":27369,"tid":27369,"ts":326460436827,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2264611,"id":"0xaf8a6dc1febbc614"},
-{"pid":27369,"tid":27369,"ts":326460437498,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2264794},
-{"pid":27369,"tid":27369,"ts":326460440520,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2267419},
-{"pid":27369,"tid":27369,"ts":326460453216,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2267816},
-{"pid":27369,"tid":27369,"ts":326460453308,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2267907},
-{"pid":27369,"tid":27369,"ts":326460453369,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":824,"tdur":306,"tts":2267968},
-{"pid":27369,"tid":27369,"ts":326460453399,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460452584},"dur":122,"tdur":122,"tts":2267999},
-{"pid":27369,"tid":27369,"ts":326460453430,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2268029},
-{"pid":27369,"tid":27369,"ts":326460453460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2268060,"id":"0xaf8a6dc2febbc614"},
-{"pid":27369,"tid":27369,"ts":326460454223,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2268304},
-{"pid":27369,"tid":27369,"ts":326460454345,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2268426},
-{"pid":27369,"tid":27369,"ts":326460470033,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2268823},
-{"pid":27369,"tid":27369,"ts":326460470063,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2268853},
-{"pid":27369,"tid":27369,"ts":326460470124,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":794,"tdur":245,"tts":2268914},
-{"pid":27369,"tid":27369,"ts":326460470124,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460469265},"dur":122,"tdur":123,"tts":2268914},
-{"pid":27369,"tid":27369,"ts":326460470155,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2268945},
-{"pid":27369,"tid":27369,"ts":326460470185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2268976,"id":"0xaf8a6dc3febbc614"},
-{"pid":27369,"tid":27369,"ts":326460470918,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2269189},
-{"pid":27369,"tid":27369,"ts":326460471009,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2269311},
-{"pid":27369,"tid":27369,"ts":326460486605,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2269616},
-{"pid":27369,"tid":27369,"ts":326460486666,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2269677},
-{"pid":27369,"tid":27407,"ts":326460404017,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1509903,"id":"0xaf8a6dc5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460404048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1509934},
-{"pid":27369,"tid":27407,"ts":326460404048,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1509964,"id":"0xba458402"},
-{"pid":27369,"tid":27407,"ts":326460408229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1510117,"id":"0xaf8a6dc6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460408260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1510148},
-{"pid":27369,"tid":27407,"ts":326460408260,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1510148,"id":"0xba458502"},
-{"pid":27369,"tid":27407,"ts":326460409969,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":213,"tts":1510270},
-{"pid":27369,"tid":27407,"ts":326460409999,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":183,"tdur":183,"tts":1510300},
-{"pid":27369,"tid":27407,"ts":326460409999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1510300},
-{"pid":27369,"tid":27407,"ts":326460410060,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1510392,"id":"0xc4c1b702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460410091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1510392,"id":"0xaf8a6039feb47934"},
-{"pid":27369,"tid":27407,"ts":326460414028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1510575,"id":"0xaf8a6dc7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460414028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1510575},
-{"pid":27369,"tid":27407,"ts":326460414058,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1510605,"id":"0xba458602"},
-{"pid":27369,"tid":27407,"ts":326460420285,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1510788,"id":"0xaf8a6dc0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460420285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1510788},
-{"pid":27369,"tid":27407,"ts":326460420315,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1510819,"id":"0xba458702"},
-{"pid":27369,"tid":27407,"ts":326460436888,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1511002,"id":"0xaf8a6dc1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460436918,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1511002},
-{"pid":27369,"tid":27407,"ts":326460436949,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1511033,"id":"0xba458802"},
-{"pid":27369,"tid":27407,"ts":326460447173,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460446},"tts":1511185,"id":"0xaf8a63aafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460447204,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/socket/client_socket_pool_base.cc","src_func":"StartIdleSocketTimer"},"dur":0,"tdur":0,"tts":1511216},
-{"pid":27369,"tid":27407,"ts":326460453552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1511307,"id":"0xaf8a6dc2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460453552,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1511307},
-{"pid":27369,"tid":27407,"ts":326460453582,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1511338,"id":"0xba458902"},
-{"pid":27369,"tid":27407,"ts":326460470277,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1511490,"id":"0xaf8a6dc3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460470277,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1511490},
-{"pid":27369,"tid":27407,"ts":326460470307,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1511521,"id":"0xba458a02"},
-{"pid":27369,"tid":27407,"ts":326460486880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1511674,"id":"0xaf8a6ddcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460486911,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1511674},
-{"pid":27369,"tid":27407,"ts":326460486911,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1511674,"id":"0xba458b02"},
-{"pid":27369,"tid":27407,"ts":326460503880,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1511857,"id":"0xaf8a6dddfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460503910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1511887},
-{"pid":27369,"tid":27407,"ts":326460503941,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1511918,"id":"0xba458c02"},
-{"pid":27369,"tid":27407,"ts":326460508214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460507},"tts":1512162,"id":"0xaf8a64fdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460508244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/socket/client_socket_pool_base.cc","src_func":"ResetTimer"},"dur":31,"tdur":31,"tts":1512192},
-{"pid":27369,"tid":27407,"ts":326460519415,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":335,"tdur":336,"tts":1512345},
-{"pid":27369,"tid":27407,"ts":326460519445,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":1512406},
-{"pid":27369,"tid":27407,"ts":326460519476,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1512406,"id":"0xccc50202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460519506,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1512437,"id":"0xaf8a603afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460519628,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1382},"dur":92,"tdur":91,"tts":1512559},
-{"pid":27369,"tid":27407,"ts":326460519628,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1512589,"id":"0xccc50302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460519659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1512620,"id":"0xaf8a603bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460521368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1512803,"id":"0xaf8a6ddefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460521399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1512833},
-{"pid":27369,"tid":27407,"ts":326460521399,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1512833,"id":"0xba458d02"},
-{"pid":27369,"tid":27407,"ts":326460522406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1512986,"id":"0xaf8a6ddffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460522436,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1513016},
-{"pid":27369,"tid":27407,"ts":326460522436,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1513016,"id":"0xba458e02"},
-{"pid":27369,"tid":27407,"ts":326460535072,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":1513169},
-{"pid":27369,"tid":27407,"ts":326460535133,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":153,"tts":1513230},
-{"pid":27369,"tid":27407,"ts":326460535133,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1513261,"id":"0xccc50502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460535194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1513291,"id":"0xaf8a6034feb47934"},
-{"pid":27369,"tid":27407,"ts":326460537269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513505,"id":"0xaf8a6dd8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460537300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1513535},
-{"pid":27369,"tid":27407,"ts":326460537300,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1513535,"id":"0xba458f02"},
-{"pid":27369,"tid":27407,"ts":326460549905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513688,"id":"0xaf8a6dd9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460549935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1513688},
-{"pid":27369,"tid":27407,"ts":326460549935,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1513688,"id":"0xba459002"},
-{"pid":27369,"tid":27407,"ts":326460549996,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1513749,"id":"0xaf8a6ddafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460550057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1513810},
-{"pid":27369,"tid":27407,"ts":326460550057,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1513810,"id":"0xba459106"},
-{"pid":27369,"tid":27407,"ts":326460550668,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":92,"tts":1513932},
-{"pid":27369,"tid":27407,"ts":326460550698,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":1513963},
-{"pid":27369,"tid":27369,"ts":326460486697,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":824,"tdur":274,"tts":2269739},
-{"pid":27369,"tid":27369,"ts":326460486727,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460485947},"dur":306,"tdur":122,"tts":2269739},
-{"pid":27369,"tid":27369,"ts":326460486758,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":92,"tts":2269769},
-{"pid":27369,"tid":27369,"ts":326460486788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2269800,"id":"0xaf8a6ddcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460487521,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2270044},
-{"pid":27369,"tid":27369,"ts":326460487643,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2270135},
-{"pid":27369,"tid":27369,"ts":326460503575,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2270471},
-{"pid":27369,"tid":27369,"ts":326460503636,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2270532},
-{"pid":27369,"tid":27369,"ts":326460503697,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":396,"tdur":305,"tts":2270593},
-{"pid":27369,"tid":27369,"ts":326460503697,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460502628},"dur":122,"tdur":122,"tts":2270593},
-{"pid":27369,"tid":27369,"ts":326460503727,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2270624},
-{"pid":27369,"tid":27369,"ts":326460503758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2270654,"id":"0xaf8a6dddfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460504093,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2270898},
-{"pid":27369,"tid":27369,"ts":326460504216,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2271020},
-{"pid":27369,"tid":27369,"ts":326460519995,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2271326},
-{"pid":27369,"tid":27369,"ts":326460519995,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2271326},
-{"pid":27369,"tid":27369,"ts":326460520086,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2271417,"id":"0xaf8a603afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460520117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":274,"tdur":274,"tts":2271448},
-{"pid":27369,"tid":27369,"ts":326460520117,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":274,"tts":2271448},
-{"pid":27369,"tid":27369,"ts":326460520208,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2271539,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460520239,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2271570,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326460520269,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchEnd","ack":"CONSUMED"},"dur":92,"tdur":92,"tts":2271600},
-{"pid":27369,"tid":27369,"ts":326460520300,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2271631},
-{"pid":27369,"tid":27369,"ts":326460520330,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2271661,"id":"0xaf8a644cf803d694"},
-{"pid":27369,"tid":27369,"ts":326460520544,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2271875},
-{"pid":27369,"tid":27369,"ts":326460520819,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2272150},
-{"pid":27369,"tid":27369,"ts":326460520849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2272180,"id":"0xaf8a603bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460520880,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":488,"tdur":488,"tts":2272211},
-{"pid":27369,"tid":27369,"ts":326460520910,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1382},"dur":458,"tdur":458,"tts":2272241},
-{"pid":27369,"tid":27369,"ts":326460521002,"ph":"B","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2272333},
-{"pid":27369,"tid":27369,"ts":326460521154,"ph":"E","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2272516},
-{"pid":27369,"tid":27369,"ts":326460521215,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":123,"tdur":122,"tts":2272546},
-{"pid":27369,"tid":27369,"ts":326460521246,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2272577,"id":"0xaf8a6ddefebbc614"},
-{"pid":27369,"tid":27369,"ts":326460521826,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2272852},
-{"pid":27369,"tid":27369,"ts":326460522070,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2273065},
-{"pid":27369,"tid":27369,"ts":326460522131,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2273157},
-{"pid":27369,"tid":27369,"ts":326460522223,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":671,"tdur":366,"tts":2273218},
-{"pid":27369,"tid":27369,"ts":326460522253,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460519310},"dur":153,"tdur":153,"tts":2273248},
-{"pid":27369,"tid":27369,"ts":326460522284,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2273279},
-{"pid":27369,"tid":27369,"ts":326460522314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2273309,"id":"0xaf8a6ddffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460522925,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2273615},
-{"pid":27369,"tid":27369,"ts":326460523413,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2274103},
-{"pid":27369,"tid":27369,"ts":326460523596,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2274286},
-{"pid":27369,"tid":27369,"ts":326460523718,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2274408},
-{"pid":27369,"tid":27369,"ts":326460535529,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2274744},
-{"pid":27369,"tid":27369,"ts":326460535560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2274774,"id":"0xaf8a6034feb47934"},
-{"pid":27369,"tid":27369,"ts":326460535591,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":885,"tdur":885,"tts":2274805},
-{"pid":27369,"tid":27369,"ts":326460535591,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":854,"tdur":854,"tts":2274805},
-{"pid":27369,"tid":27369,"ts":326460535682,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":763,"tdur":763,"tts":2274896},
-{"pid":27369,"tid":27369,"ts":326460536079,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":183,"tdur":152,"tts":2275324},
-{"pid":27369,"tid":27369,"ts":326460536109,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":153,"tdur":92,"tts":2275354},
-{"pid":27369,"tid":27369,"ts":326460536170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2275385,"id":"0xaf8a6035feb47934"},
-{"pid":27369,"tid":27369,"ts":326460536323,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2275537},
-{"pid":27369,"tid":27369,"ts":326460536384,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2275598},
-{"pid":27369,"tid":27369,"ts":326460536598,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2275812},
-{"pid":27369,"tid":27369,"ts":326460536903,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2276117},
-{"pid":27369,"tid":27369,"ts":326460536994,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2276209},
-{"pid":27369,"tid":27369,"ts":326460537055,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":428,"tdur":366,"tts":2276270},
-{"pid":27369,"tid":27369,"ts":326460537086,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460535992},"dur":183,"tdur":153,"tts":2276300},
-{"pid":27369,"tid":27369,"ts":326460537117,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":92,"tts":2276361},
-{"pid":27369,"tid":27369,"ts":326460537178,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2276392,"id":"0xaf8a6dd8febbc614"},
-{"pid":27369,"tid":27369,"ts":326460537513,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":2,"delay":10.979},"dur":122,"tdur":122,"tts":2276667},
-{"pid":27369,"tid":27369,"ts":326460537574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2276728,"id":"0xaf8a6036feb47934"},
-{"pid":27369,"tid":27369,"ts":326460537666,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2276819},
-{"pid":27369,"tid":27369,"ts":326460542244,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2280909},
-{"pid":27369,"tid":27369,"ts":326460542366,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2281031},
-{"pid":27369,"tid":27369,"ts":326460542397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2281062,"id":"0xaf8a6035feb47934"},
-{"pid":27369,"tid":27369,"ts":326460542397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":30,"tdur":30,"tts":2281062},
-{"pid":27369,"tid":27369,"ts":326460542488,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2281153},
-{"pid":27369,"tid":27369,"ts":326460542580,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2281245},
-{"pid":27369,"tid":27369,"ts":326460542732,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2281397},
-{"pid":27369,"tid":27369,"ts":326460548958,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2281580},
-{"pid":27369,"tid":27369,"ts":326460548989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460548},"tts":2281580,"id":"0xaf8a6036feb47934"},
-{"pid":27369,"tid":27369,"ts":326460549019,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":6074,"tdur":4609,"tts":2281611},
-{"pid":27369,"tid":27369,"ts":326460549019,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2281611},
-{"pid":27369,"tid":27369,"ts":326460549050,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":5982,"tdur":4548,"tts":2281641},
-{"pid":27369,"tid":27369,"ts":326460549081,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":117},"dur":91,"tdur":92,"tts":2281672},
-{"pid":27369,"tid":27369,"ts":326460549081,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":91,"tdur":30,"tts":2281703},
-{"pid":27369,"tid":27369,"ts":326460549172,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":2075,"tdur":1220,"tts":2281764},
-{"pid":27369,"tid":27369,"ts":326460549172,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2281794,"id":"0x300000083"},
-{"pid":27369,"tid":27369,"ts":326460549203,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":2281794},
-{"pid":27369,"tid":27369,"ts":326460549233,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2281825},
-{"pid":27369,"tid":27369,"ts":326460549264,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1892,"tdur":1038,"tts":2281855},
-{"pid":27369,"tid":27369,"ts":326460549477,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2282069},
-{"pid":27369,"tid":27369,"ts":326460549508,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2282099},
-{"pid":27369,"tid":27369,"ts":326460549538,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2282130},
-{"pid":27369,"tid":27369,"ts":326460549569,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2282160},
-{"pid":27369,"tid":27369,"ts":326460549599,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2282191},
-{"pid":27369,"tid":27369,"ts":326460549630,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2282221},
-{"pid":27369,"tid":27369,"ts":326460549630,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2282221},
-{"pid":27369,"tid":27369,"ts":326460549660,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2282252},
-{"pid":27369,"tid":27369,"ts":326460549691,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2282282},
-{"pid":27369,"tid":27369,"ts":326460549721,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2282313},
-{"pid":27369,"tid":27369,"ts":326460549752,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2282343},
-{"pid":27369,"tid":27369,"ts":326460549752,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2282343},
-{"pid":27369,"tid":27369,"ts":326460549782,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2434},"dur":123,"tdur":122,"tts":2282374},
-{"pid":27369,"tid":27369,"ts":326460549813,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":62,"tts":2282404},
-{"pid":27369,"tid":27369,"ts":326460549844,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2282435,"id":"0xaf8a6dd9febbc614"},
-{"pid":27369,"tid":27369,"ts":326460549905,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":1068,"tdur":214,"tts":2282496},
-{"pid":27369,"tid":27369,"ts":326460549935,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2282527,"id":"0xaf8a6ddafebbc614"},
-{"pid":27369,"tid":27369,"ts":326460550881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2282618,"id":"0xaf8a6ddbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460551186,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2282923},
-{"pid":27369,"tid":27369,"ts":326460551247,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2282984},
-{"pid":27369,"tid":27369,"ts":326460551278,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":305,"tdur":275,"tts":2283045},
-{"pid":27369,"tid":27369,"ts":326460551309,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":117},"dur":91,"tdur":92,"tts":2283045},
-{"pid":27369,"tid":27369,"ts":326460551431,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":117},"dur":30,"tdur":31,"tts":2283167},
-{"pid":27369,"tid":27369,"ts":326460551461,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":117},"tts":2283229},
-{"pid":27369,"tid":27369,"ts":326460551492,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2283229},
-{"pid":27369,"tid":27369,"ts":326460551522,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2283259},
-{"pid":27369,"tid":27369,"ts":326460551553,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2283290},
-{"pid":27369,"tid":27369,"ts":326460551675,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":152,"tdur":92,"tts":2283442},
-{"pid":27369,"tid":27369,"ts":326460551736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2283473,"id":"0xaf8a6dd4febbc614"},
-{"pid":27369,"tid":27369,"ts":326460551919,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":3082,"tdur":2502,"tts":2283656},
-{"pid":27369,"tid":27369,"ts":326460551949,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":117},"dur":489,"tdur":489,"tts":2283686},
-{"pid":27369,"tid":27369,"ts":326460551980,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":122,"tdur":122,"tts":2283717},
-{"pid":27369,"tid":27369,"ts":326460552010,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":62,"tdur":61,"tts":2283747},
-{"pid":27369,"tid":27369,"ts":326460552041,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":2283778},
-{"pid":27369,"tid":27369,"ts":326460552072,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2283808,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460552133,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2283869},
-{"pid":27369,"tid":27369,"ts":326460552407,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2284144},
-{"pid":27369,"tid":27369,"ts":326460552438,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1526,"tdur":1282,"tts":2284205},
-{"pid":27369,"tid":27369,"ts":326460552499,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2284236},
-{"pid":27369,"tid":27369,"ts":326460552529,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":1343,"tdur":1129,"tts":2284266},
-{"pid":27369,"tid":27369,"ts":326460552560,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":91,"tdur":91,"tts":2284297},
-{"pid":27369,"tid":27369,"ts":326460552651,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":1038,"tdur":885,"tts":2284419},
-{"pid":27369,"tid":27369,"ts":326460553903,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2285457,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460554055,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2285609,"id":"0x300000083"},
-{"pid":27369,"tid":27369,"ts":326460554116,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":855,"tdur":488,"tts":2285640},
-{"pid":27369,"tid":27407,"ts":326460550729,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1513963,"id":"0xc4c1ba0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460551003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1514115,"id":"0xaf8a6ddbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460551003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":31,"tdur":0,"tts":1514146},
-{"pid":27369,"tid":27407,"ts":326460551827,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1514237,"id":"0xaf8a6dd4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460551858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1514268},
-{"pid":27369,"tid":27407,"ts":326460551858,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1514268,"id":"0xba459202"},
-{"pid":27369,"tid":27407,"ts":326460554452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1514420,"id":"0xaf8a6dd5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460554452,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1514420},
-{"pid":27369,"tid":27407,"ts":326460554483,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1514451,"id":"0xba459302"},
-{"pid":27369,"tid":27407,"ts":326460556680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1514542,"id":"0xaf8a6dd6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460556680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1514542},
-{"pid":27369,"tid":27407,"ts":326460556711,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1514573,"id":"0xba459402"},
-{"pid":27369,"tid":27407,"ts":326460556741,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":92,"tts":1514634},
-{"pid":27369,"tid":27407,"ts":326460556772,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":91,"tdur":92,"tts":1514634},
-{"pid":27369,"tid":27407,"ts":326460556802,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1514665,"id":"0xccc50602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460556802,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1514665,"id":"0xaf8a6037feb47934"},
-{"pid":27369,"tid":27407,"ts":326460559915,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1514817},
-{"pid":27369,"tid":27407,"ts":326460559946,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1514848},
-{"pid":27369,"tid":27407,"ts":326460559976,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1514878,"id":"0xc4c1bc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460559976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1514878,"id":"0xaf8a6030feb47934"},
-{"pid":27369,"tid":27407,"ts":326460567545,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":6959,"tdur":5921,"tts":1515092},
-{"pid":27369,"tid":27407,"ts":326460567637,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":6806,"tdur":5799,"tts":1515183},
-{"pid":27369,"tid":27407,"ts":326460567667,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1515214,"id":"0xccc50702","bp":"e"},{"pid":27369,"tid":27407,"ts":326460568095,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1515672,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460568430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1515977,"id":"0xaf8a6031feb47934"},
-{"pid":27369,"tid":27407,"ts":326460569041,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1516618,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460569224,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1516801,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460569438,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":131328,"method":"GET","priority":"IDLE","url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581"}},"tts":1516984,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460570719,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1517930,"id":"0xaf8a6032feb47934"},
-{"pid":27369,"tid":27407,"ts":326460570994,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1518174,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460571055,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1518266,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460571238,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1518358,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460571299,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1518419,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460571421,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1518541,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460571605,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x3c3ef45f7f39ad8e"}},"tts":1518724,"id":"0x1df"},
-{"pid":27369,"tid":27407,"ts":326460571696,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581"}},"tts":1518815,"id":"0x1df"},
-{"pid":27369,"tid":27407,"ts":326460571757,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1518876,"id":"0x1df"},
-{"pid":27369,"tid":27407,"ts":326460571818,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1518968,"id":"0x1df"},
-{"pid":27369,"tid":27407,"ts":326460571879,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1519029,"id":"0x1df"},
-{"pid":27369,"tid":27407,"ts":326460572368,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1519121,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460572673,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1519212,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460572825,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x3c3ef45f7f39ad8e"}},"tts":1519365,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326460572886,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581"}},"tts":1519456,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326460572978,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1519517,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326460573008,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1519578,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326460573131,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1519670,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326460573192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1519761,"id":"0xaf8a6539fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460573344,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1519884,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460573405,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1519945,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460573436,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1519975,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460573588,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1520128,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460573649,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1520189,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460573680,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1520250,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460573894,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"IDLE","url":"https://maps.googleapis.com/"}},"tts":1520463,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460573955,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1520524,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460574077,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1520647,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460574138,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1520677,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460574229,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1520769,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460574321,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1520860,"id":"0xaf8a6dd0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460574504,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1521043,"id":"0xaf8a6dd7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460574535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":122,"tdur":122,"tts":1521074},
-{"pid":27369,"tid":27407,"ts":326460574596,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1521135,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326460574718,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1521257,"id":"0xaf8a6dd0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460574748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":1007,"tdur":1008,"tts":1521287},
-{"pid":27369,"tid":27369,"ts":326460554177,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":5296},"dur":275,"tdur":274,"tts":2285701},
-{"pid":27369,"tid":27369,"ts":326460554177,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2285701},
-{"pid":27369,"tid":27369,"ts":326460554269,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":153,"tdur":153,"tts":2285792},
-{"pid":27369,"tid":27369,"ts":326460554330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2285853,"id":"0xaf8a6dd5febbc614"},
-{"pid":27369,"tid":27369,"ts":326460554483,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":457,"tdur":91,"tts":2286006},
-{"pid":27369,"tid":27369,"ts":326460554513,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":427,"tdur":61,"tts":2286036},
-{"pid":27369,"tid":27369,"ts":326460554513,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":61,"tts":2286036},
-{"pid":27369,"tid":27369,"ts":326460555368,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2286525},
-{"pid":27369,"tid":27369,"ts":326460555795,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2286983},
-{"pid":27369,"tid":27369,"ts":326460555948,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2287105},
-{"pid":27369,"tid":27369,"ts":326460556039,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":427,"tdur":427,"tts":2287196},
-{"pid":27369,"tid":27369,"ts":326460556070,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460552673},"dur":183,"tdur":183,"tts":2287227},
-{"pid":27369,"tid":27369,"ts":326460556100,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":153,"tdur":122,"tts":2287288},
-{"pid":27369,"tid":27369,"ts":326460556161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2287318,"id":"0xaf8a6dd6febbc614"},
-{"pid":27369,"tid":27369,"ts":326460556497,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2287654},
-{"pid":27369,"tid":27369,"ts":326460562143,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2292324},
-{"pid":27369,"tid":27369,"ts":326460562418,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2292598},
-{"pid":27369,"tid":27369,"ts":326460562448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2292629,"id":"0xaf8a6037feb47934"},
-{"pid":27369,"tid":27369,"ts":326460562479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2292659},
-{"pid":27369,"tid":27369,"ts":326460562509,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":153,"tdur":152,"tts":2292690},
-{"pid":27369,"tid":27369,"ts":326460562601,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":31,"tdur":31,"tts":2292781},
-{"pid":27369,"tid":27369,"ts":326460562815,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2293026},
-{"pid":27369,"tid":27369,"ts":326460563059,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2293239},
-{"pid":27369,"tid":27369,"ts":326460563120,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2293300,"id":"0xaf8a6030feb47934"},
-{"pid":27369,"tid":27369,"ts":326460563120,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":244,"tdur":213,"tts":2293331},
-{"pid":27369,"tid":27369,"ts":326460563242,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":92,"tdur":92,"tts":2293422},
-{"pid":27369,"tid":27369,"ts":326460563272,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":62,"tdur":30,"tts":2293453},
-{"pid":27369,"tid":27369,"ts":326460563486,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2293697},
-{"pid":27369,"tid":27369,"ts":326460568705,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2293941},
-{"pid":27369,"tid":27369,"ts":326460568736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2293972,"id":"0xaf8a6031feb47934"},
-{"pid":27369,"tid":27369,"ts":326460568736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":0,"tdur":0,"tts":2293972},
-{"pid":27369,"tid":27369,"ts":326460568797,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2294033},
-{"pid":27369,"tid":27369,"ts":326460569865,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2294277},
-{"pid":27369,"tid":27369,"ts":326460569956,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2294368},
-{"pid":27369,"tid":27369,"ts":326460570048,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":0,"tdur":0,"tts":2294460},
-{"pid":27369,"tid":27369,"ts":326460570079,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2294491},
-{"pid":27369,"tid":27369,"ts":326460575847,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297054},
-{"pid":27369,"tid":27369,"ts":326460575999,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297176},
-{"pid":27369,"tid":27369,"ts":326460576030,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2297207,"id":"0xaf8a6032feb47934"},
-{"pid":27369,"tid":27369,"ts":326460576030,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":30,"tts":2297207},
-{"pid":27369,"tid":27369,"ts":326460576122,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297298},
-{"pid":27369,"tid":27369,"ts":326460576854,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297543},
-{"pid":27369,"tid":27369,"ts":326460576885,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2297543,"id":"0xaf8a6033feb47934"},
-{"pid":27369,"tid":27369,"ts":326460576915,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":0,"tdur":0,"tts":2297573},
-{"pid":27369,"tid":27369,"ts":326460576976,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297634},
-{"pid":27369,"tid":27369,"ts":326460578472,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297817},
-{"pid":27369,"tid":27369,"ts":326460578502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2297848,"id":"0xaf8a60ccfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460578502,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":30,"tts":2297848},
-{"pid":27369,"tid":27369,"ts":326460578624,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2297970},
-{"pid":27369,"tid":27369,"ts":326460582226,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2298153},
-{"pid":27369,"tid":27369,"ts":326460582256,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2298184,"id":"0xaf8a60cdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460582287,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":0,"tdur":0,"tts":2298214},
-{"pid":27369,"tid":27369,"ts":326460582378,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2298306},
-{"pid":27369,"tid":27369,"ts":326460583843,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2298489},
-{"pid":27369,"tid":27369,"ts":326460583843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2298489,"id":"0xaf8a60cefeb47934"},
-{"pid":27369,"tid":27369,"ts":326460583874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":30,"tdur":31,"tts":2298519},
-{"pid":27369,"tid":27369,"ts":326460583996,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2298641},
-{"pid":27369,"tid":27369,"ts":326460589856,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2298947},
-{"pid":27369,"tid":27369,"ts":326460593549,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2301938},
-{"pid":27369,"tid":27369,"ts":326460603895,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2302273},
-{"pid":27369,"tid":27369,"ts":326460607466,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2304684},
-{"pid":27369,"tid":27369,"ts":326460607588,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2304806},
-{"pid":27369,"tid":27369,"ts":326460607588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2304806,"id":"0xaf8a60cffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460607619,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":152,"tdur":153,"tts":2304837},
-{"pid":27369,"tid":27407,"ts":326460574809,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":481,"type":10}}},"tts":1521379,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460574809,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1521379},
-{"pid":27369,"tid":27407,"ts":326460574962,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":478,"type":1}}},"tts":1521501,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460575023,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1521562,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460575084,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1521623,"id":"0x1e1"},
-{"pid":27369,"tid":27407,"ts":326460575298,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1521837,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460575633,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1522173,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460575694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1522234,"id":"0xaf8a6dd1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460575786,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":11598,"tdur":10560,"tts":1522325},
-{"pid":27369,"tid":27407,"ts":326460575847,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":5249,"tdur":5066,"tts":1522417},
-{"pid":27369,"tid":27407,"ts":326460575877,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1522417,"id":"0xccc50802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460576305,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1522844,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460576610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1523149,"id":"0xaf8a6033feb47934"},
-{"pid":27369,"tid":27407,"ts":326460577190,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1523760,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460577373,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1523912,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460577526,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1524095,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460578227,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1524767,"id":"0xaf8a60ccfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460578533,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1525072,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460578594,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1525133,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460578655,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1525194,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460578685,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1525255,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460578777,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1525316,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460578899,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x6bedb94205ef4b27"}},"tts":1525469,"id":"0x1e3"},
-{"pid":27369,"tid":27407,"ts":326460578960,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1525530,"id":"0x1e3"},
-{"pid":27369,"tid":27407,"ts":326460579021,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1525560,"id":"0x1e3"},
-{"pid":27369,"tid":27407,"ts":326460579082,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1525621,"id":"0x1e3"},
-{"pid":27369,"tid":27407,"ts":326460579113,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1525682,"id":"0x1e3"},
-{"pid":27369,"tid":27407,"ts":326460579204,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1525743,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579235,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1525804,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579357,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x6bedb94205ef4b27"}},"tts":1525927,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460579418,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1525988,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460579479,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1526018,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460579509,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1526049,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460579601,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1526140,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460579662,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1526201,"id":"0xaf8a653afd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460579784,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1526323,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579845,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1526384,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579876,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1526415,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579967,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1526506,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579998,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1526537,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460579998,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":92,"tts":1526537},
-{"pid":27369,"tid":27407,"ts":326460580364,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1526751,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460580578,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts0.google.com/","priority":"IDLE","url":"https://mts0.google.com/"}},"tts":1526964,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460580639,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1527025,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460580730,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1527117,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460580791,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1527178,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460580883,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":353,"type":5}}},"tts":1527269,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460580974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1527361,"id":"0xaf8a6dd3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460581096,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":6257,"tdur":5341,"tts":1527514},
-{"pid":27369,"tid":27407,"ts":326460581127,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1527514,"id":"0xccc50902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460581554,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1527941,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460581829,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1528246,"id":"0xaf8a60cdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460582439,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1528857,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460582622,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1529040,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460582806,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1529223,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460583569,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1529955,"id":"0xaf8a60cefeb47934"},
-{"pid":27369,"tid":27407,"ts":326460583874,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1530291,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460583935,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1530321,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460584026,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1530413,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460584057,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1530474,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460584148,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1530535,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460584301,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x6bed329d447adf3a"}},"tts":1530688,"id":"0x1e7"},
-{"pid":27369,"tid":27407,"ts":326460584362,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1530749,"id":"0x1e7"},
-{"pid":27369,"tid":27407,"ts":326460584423,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1530810,"id":"0x1e7"},
-{"pid":27369,"tid":27407,"ts":326460584484,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1530871,"id":"0x1e7"},
-{"pid":27369,"tid":27407,"ts":326460584545,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1530932,"id":"0x1e7"},
-{"pid":27369,"tid":27407,"ts":326460584606,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1531023,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460584667,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1531054,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460584820,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x6bed329d447adf3a"}},"tts":1531207,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460584850,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1531268,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460584911,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1531298,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460584942,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1531329,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460585034,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1531420,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460585095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1531481,"id":"0xaf8a653bfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460586102,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1531634,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460586102,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1531634},
-{"pid":27369,"tid":27407,"ts":326460586163,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1531695,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460586224,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1531725,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460586315,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1531817,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460586376,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1531878,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460586437,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1531939,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460586682,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts0.google.com/","priority":"IDLE","url":"https://mts0.google.com/"}},"tts":1532183,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460586773,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1532275,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460586895,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1532397,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460586956,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1532458,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460587078,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":353,"type":5}}},"tts":1532580,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460587170,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1532672,"id":"0xaf8a6dedfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460587658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1532946,"id":"0xaf8a6dd1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460587689,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":1526,"tdur":1282,"tts":1533007},
-{"pid":27369,"tid":27407,"ts":326460588269,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/api/js/StaticMapService.GetMapImage?1m2&1i83928&2i202744&2e1&3u10&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=94581",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":15,"unidirectional":false}},"tts":1533587,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460588452,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":129}},"tts":1533770,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460589001,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":150}},"tts":1534075,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460589093,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1534167,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460589154,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1534228,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326460589245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1534350,"id":"0xaf8a6dd2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460589306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":122,"tdur":122,"tts":1534381},
-{"pid":27369,"tid":27407,"ts":326460589367,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1534442,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460589459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1534564,"id":"0xaf8a6dd3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460589520,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":1129,"tdur":1038,"tts":1534594},
-{"pid":27369,"tid":27407,"ts":326460589581,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":485,"type":10}}},"tts":1534655,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460589673,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":482,"type":1}}},"tts":1534747,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460589734,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1534839,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460589795,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1534869,"id":"0x1e5"},
-{"pid":27369,"tid":27407,"ts":326460589978,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1535083,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460589978,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":91,"tts":1535083},
-{"pid":27369,"tid":27407,"ts":326460590527,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts0.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1535510,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460590588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1535571,"id":"0xaf8a6deefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460590680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1535663,"id":"0xaf8a6decfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460590710,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":122,"tdur":122,"tts":1535693},
-{"pid":27369,"tid":27407,"ts":326460590771,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1535754,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460590863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1535846,"id":"0xaf8a6dedfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460590893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":886,"tdur":885,"tts":1535876},
-{"pid":27369,"tid":27407,"ts":326460590954,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":489,"type":10}}},"tts":1535937,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460591016,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":486,"type":1}}},"tts":1535998,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460591107,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1536090,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460591138,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1536120,"id":"0x1e9"},
-{"pid":27369,"tid":27407,"ts":326460591321,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1536334,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460591717,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts0.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1536700,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460591809,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1536822,"id":"0xaf8a6deefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460591870,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":3388,"tdur":2686,"tts":1536853},
-{"pid":27369,"tid":27407,"ts":326460591962,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"sent","unique_id":1}},"tts":1536944,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460592023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1537005,"id":"0xaf8a6deffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460593030,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts0.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i164!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":21,"unidirectional":false}},"tts":1537524,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460593182,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1537677,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460593671,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1537952,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460593762,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1538043,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460593793,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1538074,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460593915,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1538196,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460594129,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1538440,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460594129,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1538440},
-{"pid":27369,"tid":27407,"ts":326460594708,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts0.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i164!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":23,"unidirectional":false}},"tts":1538989,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460594831,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1539142,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460595075,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1539356,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460595166,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1539447,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460595197,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1539478,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460599378,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":133},"dur":11842,"tdur":10407,"tts":1539722},
-{"pid":27369,"tid":27407,"ts":326460599622,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":136}},"tts":1539966,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460599775,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":94}},"tts":1540119,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460599897,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1540271,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460600172,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"received","unique_id":1}},"tts":1540454,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460600721,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7779","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 63431","content-type: image/png","date: Mon, 22 Jun 2015 16:01:50 GMT","expires: Sat, 05 Mar 2016 20:52:12 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":23}},"tts":1541004,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460601392,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7779","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 63431","content-type: image/png","date: Mon, 22 Jun 2015 16:01:50 GMT","expires: Sat, 05 Mar 2016 20:52:12 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1541675,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460601392,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1541675},
-{"pid":27369,"tid":27407,"ts":326460601545,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1541828,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460601637,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1541889,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460601911,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1542163,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602064,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1542316,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602125,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1542377,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602186,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1542438,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602247,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1542499,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602308,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1542560,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602369,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1542621,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602400,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1542652,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602461,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1542713,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602522,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1542774,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602583,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1542835,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460602644,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1542896,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602705,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1542957,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602735,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1542987,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460602918,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1543171,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460603010,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1543262,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460603163,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1543415,"id":"0xaf8a60cffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460603559,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1543842,"id":"0xba459502"},
-{"pid":27369,"tid":27407,"ts":326460603926,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1544178,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460603987,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1544239,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460604506,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1544574,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460605238,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1544971,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460605360,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2365,"stream_id":23}},"tts":1545093,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460605421,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2365,"window_size":15726275}},"tts":1545154,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460605513,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2365,"stream_id":23,"window_size":6289091}},"tts":1545276,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460605604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1545338,"id":"0xaf8a6de8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460606642,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1545826,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460606642,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":1545826},
-{"pid":27369,"tid":27407,"ts":326460606795,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1545917,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460607069,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15718083}},"tts":1546192,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460607161,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6280899}},"tts":1546284,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460607710,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1546833,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460607802,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5827,"stream_id":23}},"tts":1546925,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460607954,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5827,"window_size":15712256}},"tts":1547077,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460608015,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5827,"stream_id":23,"window_size":6275072}},"tts":1547169,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460608107,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2356,"stream_id":23}},"tts":1547230,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460608168,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2356,"window_size":15709900}},"tts":1547321,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460608260,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2356,"stream_id":23,"window_size":6272716}},"tts":1547413,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460608351,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1547504,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460609023,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1547932,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460609114,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":23}},"tts":1548023,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460609206,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15709666}},"tts":1548115,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460609297,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":23,"window_size":6272482}},"tts":1548206,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460609786,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1548695,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460609877,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1548786,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460609999,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15701474}},"tts":1548969,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460609999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":31,"tts":1548969},
-{"pid":27369,"tid":27369,"ts":326460607832,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2305051},
-{"pid":27369,"tid":27369,"ts":326460607832,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2305051},
-{"pid":27369,"tid":27369,"ts":326460627793,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2305417},
-{"pid":27369,"tid":27369,"ts":326460633073,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2308164},
-{"pid":27369,"tid":27369,"ts":326460633195,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2308286},
-{"pid":27369,"tid":27369,"ts":326460633195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2308286,"id":"0xaf8a60c8feb47934"},
-{"pid":27369,"tid":27369,"ts":326460633225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":153,"tdur":153,"tts":2308316},
-{"pid":27369,"tid":27369,"ts":326460633439,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2308530},
-{"pid":27369,"tid":27369,"ts":326460634690,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2308713},
-{"pid":27369,"tid":27369,"ts":326460634690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2308744,"id":"0xaf8a60c9feb47934"},
-{"pid":27369,"tid":27369,"ts":326460634721,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2308744},
-{"pid":27369,"tid":27369,"ts":326460634721,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":2308744},
-{"pid":27369,"tid":27369,"ts":326460634782,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":30,"tdur":30,"tts":2308805},
-{"pid":27369,"tid":27369,"ts":326460634904,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2308927},
-{"pid":27369,"tid":27369,"ts":326460635789,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2309110},
-{"pid":27369,"tid":27369,"ts":326460635789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2309110,"id":"0xaf8a60cafeb47934"},
-{"pid":27369,"tid":27369,"ts":326460635819,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":0,"tdur":0,"tts":2309140},
-{"pid":27369,"tid":27369,"ts":326460635880,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2309201},
-{"pid":27369,"tid":27369,"ts":326460639268,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2309354},
-{"pid":27369,"tid":27369,"ts":326460640214,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2310178},
-{"pid":27369,"tid":27369,"ts":326460640245,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":824,"tdur":183,"tts":2310209},
-{"pid":27369,"tid":27369,"ts":326460640275,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460636081},"dur":763,"tdur":122,"tts":2310239},
-{"pid":27369,"tid":27369,"ts":326460640275,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":763,"tdur":92,"tts":2310239},
-{"pid":27369,"tid":27369,"ts":326460640275,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":733,"tdur":61,"tts":2310239},
-{"pid":27369,"tid":27369,"ts":326460641008,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2310331,"id":"0xaf8a6de7febbc614"},
-{"pid":27369,"tid":27369,"ts":326460641069,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2310392},
-{"pid":27369,"tid":27369,"ts":326460644976,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2313413},
-{"pid":27369,"tid":27369,"ts":326460645128,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2313566},
-{"pid":27369,"tid":27369,"ts":326460645159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2313596,"id":"0xaf8a60cbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460645189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":30,"tts":2313627},
-{"pid":27369,"tid":27369,"ts":326460645311,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2313749},
-{"pid":27369,"tid":27369,"ts":326460645403,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2313840},
-{"pid":27369,"tid":27369,"ts":326460645403,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":62,"tts":2313840},
-{"pid":27369,"tid":27369,"ts":326460645494,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2313932,"id":"0xaf8a60c4feb47934"},
-{"pid":27369,"tid":27369,"ts":326460645494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":31,"tdur":31,"tts":2313932},
-{"pid":27369,"tid":27369,"ts":326460645586,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314024},
-{"pid":27369,"tid":27369,"ts":326460645677,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314115},
-{"pid":27369,"tid":27369,"ts":326460645708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2314146,"id":"0xaf8a60c5feb47934"},
-{"pid":27369,"tid":27369,"ts":326460645708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":30,"tts":2314146},
-{"pid":27369,"tid":27369,"ts":326460645830,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314268},
-{"pid":27369,"tid":27369,"ts":326460648058,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314451},
-{"pid":27369,"tid":27369,"ts":326460648089,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2314481,"id":"0xaf8a60c6feb47934"},
-{"pid":27369,"tid":27369,"ts":326460648089,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":30,"tdur":31,"tts":2314481},
-{"pid":27369,"tid":27369,"ts":326460648180,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314573},
-{"pid":27369,"tid":27369,"ts":326460649615,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314756},
-{"pid":27369,"tid":27369,"ts":326460649645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2314787,"id":"0xaf8a60c7feb47934"},
-{"pid":27369,"tid":27369,"ts":326460649645,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":30,"tts":2314787},
-{"pid":27369,"tid":27369,"ts":326460649767,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2314909},
-{"pid":27369,"tid":27369,"ts":326460651690,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2315092},
-{"pid":27369,"tid":27369,"ts":326460651690,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2315092,"id":"0xaf8a60c0feb47934"},
-{"pid":27369,"tid":27369,"ts":326460651721,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":0,"tdur":0,"tts":2315122},
-{"pid":27369,"tid":27369,"ts":326460651782,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2315214},
-{"pid":27369,"tid":27369,"ts":326460651782,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2315214},
-{"pid":27369,"tid":27369,"ts":326460652270,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2315428},
-{"pid":27369,"tid":27369,"ts":326460652300,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2315458,"id":"0xaf8a60c1feb47934"},
-{"pid":27369,"tid":27369,"ts":326460652300,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":61,"tdur":61,"tts":2315458},
-{"pid":27369,"tid":27369,"ts":326460652453,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2315611},
-{"pid":27369,"tid":27369,"ts":326460653369,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2315916},
-{"pid":27369,"tid":27369,"ts":326460653460,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2316007},
-{"pid":27369,"tid":27369,"ts":326460653521,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":428,"tdur":245,"tts":2316068},
-{"pid":27369,"tid":27369,"ts":326460653552,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460652763},"dur":91,"tdur":92,"tts":2316099},
-{"pid":27369,"tid":27369,"ts":326460653582,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":2316129},
-{"pid":27369,"tid":27369,"ts":326460653613,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2316160,"id":"0xaf8a6dfcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460653949,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2316343},
-{"pid":27369,"tid":27407,"ts":326460610152,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6264290}},"tts":1549061,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460610152,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1549061},
-{"pid":27369,"tid":27407,"ts":326460610671,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1549580,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460610762,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5602,"stream_id":23}},"tts":1549671,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460610823,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5602,"window_size":15695872}},"tts":1549732,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460610884,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5602,"stream_id":23,"window_size":6258688}},"tts":1549824,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460610976,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2581,"stream_id":23}},"tts":1549885,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460611037,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2581,"window_size":15693291}},"tts":1549977,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460611128,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2581,"stream_id":23,"window_size":6256107}},"tts":1550038,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460611159,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1550099,"id":"0xaf8a6de9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460611251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1550160,"id":"0xaf8a6de9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460611281,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":22890,"tdur":13918,"tts":1550190},
-{"pid":27369,"tid":27407,"ts":326460611373,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":971}},"tts":1550282,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460611708,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1550618,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460611800,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":971,"stream_id":23}},"tts":1550709,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460611861,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-971,"window_size":15692320}},"tts":1550770,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460611922,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-971,"stream_id":23,"window_size":6255136}},"tts":1550831,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460612349,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1551258,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460612441,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1551350,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460612563,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15684128}},"tts":1551503,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460612654,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6246944}},"tts":1551564,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460613082,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1551991,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460613173,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4640,"stream_id":23}},"tts":1552083,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460613234,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4640,"window_size":15679488}},"tts":1552144,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460613295,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4640,"stream_id":23,"window_size":6242304}},"tts":1552235,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460613387,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3543,"stream_id":23}},"tts":1552296,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460613448,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3543,"window_size":15675945}},"tts":1552388,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460613509,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3543,"stream_id":23,"window_size":6238761}},"tts":1552449,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460613601,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1552540,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460613936,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1552846,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460614028,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":23}},"tts":1552937,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460614089,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15675711}},"tts":1552998,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460614150,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":23,"window_size":6238527}},"tts":1553090,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460614608,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1553517,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460614669,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1553609,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460614821,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15667519}},"tts":1553731,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460614913,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6230335}},"tts":1553822,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460615371,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1554280,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460615462,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2310,"stream_id":23}},"tts":1554372,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460615523,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2310,"window_size":15665209}},"tts":1554433,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460615584,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2310,"stream_id":23,"window_size":6228025}},"tts":1554494,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460615676,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":23}},"tts":1554585,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460615798,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2365,"window_size":15667574}},"tts":1554738,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460615798,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":5524,"tdur":30,"tts":1554738},
-{"pid":27369,"tid":27407,"ts":326460621505,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15675766}},"tts":1554951,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460621627,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5827,"window_size":15681593}},"tts":1555074,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460621750,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2356,"window_size":15683949}},"tts":1555226,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460621841,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15684183}},"tts":1555318,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460622024,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15692375}},"tts":1555470,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460622146,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5602,"window_size":15697977}},"tts":1555592,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460622238,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1555684,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460622299,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1555745,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460622390,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1555837,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460622635,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1556081,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460622726,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1556172,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460623215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1556661,"id":"0xaf8a6534fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460624496,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1556813,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460624588,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1556905,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460624771,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1557088,"id":"0xba459602"},
-{"pid":27369,"tid":27407,"ts":326460625381,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1557271,"id":"0xba459702"},
-{"pid":27369,"tid":27407,"ts":326460625961,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1557546,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460626144,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2581,"window_size":15700558}},"tts":1557698,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460626267,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":971,"window_size":15701529}},"tts":1557820,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460626419,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15709721}},"tts":1557973,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460626541,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4640,"window_size":15714361}},"tts":1558095,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460626541,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1558095},
-{"pid":27369,"tid":27407,"ts":326460626694,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3543,"window_size":15717904}},"tts":1558248,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460626785,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15718138}},"tts":1558339,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460626938,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15726330}},"tts":1558492,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460627060,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2310,"window_size":15728640}},"tts":1558614,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460627121,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1558675,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460627182,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1558766,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460627274,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":30663,"index":1,"offset":32768,"truncate":true}},"tts":1558828,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460627487,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":20}},"tts":1559041,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460627548,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1559102,"id":"0xaf8a6debfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460627640,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":20}},"tts":1559194,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460628128,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7779","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 82788","content-type: image/png","date: Mon, 22 Jun 2015 16:01:50 GMT","expires: Sat, 05 Mar 2016 20:52:12 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":21}},"tts":1559682,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460628922,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7779","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 82788","content-type: image/png","date: Mon, 22 Jun 2015 16:01:50 GMT","expires: Sat, 05 Mar 2016 20:52:12 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1560506,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460629319,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1560903,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460629441,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1560994,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460629868,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1561422,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630082,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1561635,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630143,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1561696,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630204,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1561757,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630265,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1561819,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630326,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1561880,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630387,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1561941,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630417,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1561971,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630478,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1562032,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630509,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1562093,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630600,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1562154,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460630631,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1562185,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630692,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1562246,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630753,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1562307,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460630936,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1562490,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460631028,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1562582,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460632371,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1562826,"id":"0xaf8a60c8feb47934"},
-{"pid":27369,"tid":27407,"ts":326460632798,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1563222,"id":"0xba459802"},
-{"pid":27369,"tid":27407,"ts":326460633622,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1563558,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460633683,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1563619,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460633836,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5829,"stream_id":21}},"tts":1563772,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460633897,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5829,"window_size":15722811}},"tts":1563833,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460633988,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5829,"stream_id":21,"window_size":6285627}},"tts":1563924,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460634049,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1564016,"id":"0xaf8a6de4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460634110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1564046,"id":"0xaf8a6de5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460634232,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":38090,"tdur":36258,"tts":1564169},
-{"pid":27369,"tid":27407,"ts":326460634354,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":275,"tdur":244,"tts":1564291},
-{"pid":27369,"tid":27407,"ts":326460634385,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1564321,"id":"0xccc51602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460634446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1564382,"id":"0xaf8a60c9feb47934"},
-{"pid":27369,"tid":27407,"ts":326460634629,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":6287,"tdur":5799,"tts":1564565},
-{"pid":27369,"tid":27407,"ts":326460634660,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1564596,"id":"0xccc50a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460635148,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1565084,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460635545,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1565481,"id":"0xaf8a60cafeb47934"},
-{"pid":27369,"tid":27407,"ts":326460636094,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1566030,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460636277,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1566213,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460636460,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1566397,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460637315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1567251,"id":"0xaf8a60cbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460637651,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1567617,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460637742,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1567678,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460637834,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1567770,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460637895,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1567862,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460638017,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1567953,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460638139,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x3aeeed98e204de68"}},"tts":1568106,"id":"0x1eb"},
-{"pid":27369,"tid":27407,"ts":326460638231,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1568167,"id":"0x1eb"},
-{"pid":27369,"tid":27407,"ts":326460638292,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1568228,"id":"0x1eb"},
-{"pid":27369,"tid":27407,"ts":326460638353,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1568289,"id":"0x1eb"},
-{"pid":27369,"tid":27407,"ts":326460638383,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1568319,"id":"0x1eb"},
-{"pid":27369,"tid":27407,"ts":326460638475,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1568411,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460638505,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1568472,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460638505,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1568472},
-{"pid":27369,"tid":27407,"ts":326460638688,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x3aeeed98e204de68"}},"tts":1568625,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460638749,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1568716,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460638810,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1568777,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460638871,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1568838,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460638963,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1568930,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460639055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1568991,"id":"0xaf8a6535fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460639665,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1569143,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460639726,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1569174,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460639757,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1569235,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460639848,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1569327,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460639848,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1569327},
-{"pid":27369,"tid":27407,"ts":326460639909,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1569388,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460639970,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1569418,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460639970,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":92,"tts":1569418},
-{"pid":27369,"tid":27407,"ts":326460640275,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1569723,"id":"0x1ed"},
-{"pid":27369,"tid":27407,"ts":326460640275,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1569723},
-{"pid":27369,"tid":27407,"ts":326460640367,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1569815,"id":"0x1ed"},
-{"pid":27369,"tid":27407,"ts":326460640489,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1569937,"id":"0x1ed"},
-{"pid":27369,"tid":27407,"ts":326460640550,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1569998,"id":"0x1ed"},
-{"pid":27369,"tid":27407,"ts":326460640642,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1570090,"id":"0x1ed"},{"pid":27369,"tid":27407,"ts":326460640764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1570212,"id":"0xaf8a6de6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460640947,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":6073,"tdur":5432,"tts":1570395},
-{"pid":27369,"tid":27407,"ts":326460640977,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1570425,"id":"0xccc50b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460641405,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1570853,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460641740,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1571188,"id":"0xaf8a60c4feb47934"},
-{"pid":27369,"tid":27407,"ts":326460642381,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1571829,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460642778,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1572104,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460642931,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1572287,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460644335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1573142,"id":"0xaf8a60c5feb47934"},
-{"pid":27369,"tid":27407,"ts":326460644640,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1573477,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460644640,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1573477},
-{"pid":27369,"tid":27407,"ts":326460644731,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1573538,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460644792,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1573630,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460644853,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1573660,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460644945,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1573752,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460645098,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0xf9fea0e629d82551"}},"tts":1573905,"id":"0x1ef"},
-{"pid":27369,"tid":27407,"ts":326460645128,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1573966,"id":"0x1ef"},
-{"pid":27369,"tid":27407,"ts":326460645189,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1573996,"id":"0x1ef"},
-{"pid":27369,"tid":27407,"ts":326460645250,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1574057,"id":"0x1ef"},
-{"pid":27369,"tid":27407,"ts":326460645311,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1574118,"id":"0x1ef"},
-{"pid":27369,"tid":27407,"ts":326460645372,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1574210,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460645433,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1574240,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460645555,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0xf9fea0e629d82551"}},"tts":1574362,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460645616,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1574423,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460645647,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1574454,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460645677,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1574515,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460645769,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1574576,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460645830,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1574637,"id":"0xaf8a6536fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460645952,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1574790,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460646013,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1574820,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460646074,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1574881,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460646166,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1574973,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460646196,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1575034,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460646257,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1575064,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460646471,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1575278,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460646532,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1575339,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460646654,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1575461,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460646685,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1575522,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460646776,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1575614,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460646868,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1575705,"id":"0xaf8a6de1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460647051,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":4212,"tdur":3754,"tts":1575858},
-{"pid":27369,"tid":27407,"ts":326460647081,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1575888,"id":"0xccc50c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460647478,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1576316,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460647478,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1576316},
-{"pid":27369,"tid":27407,"ts":326460647814,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1576621,"id":"0xaf8a60c6feb47934"},
-{"pid":27369,"tid":27407,"ts":326460648363,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1577170,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460648516,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1577353,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460648699,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1577506,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460649370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1578177,"id":"0xaf8a60c7feb47934"},
-{"pid":27369,"tid":27407,"ts":326460649676,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1578483,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460649737,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1578544,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460649798,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1578605,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460649828,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1578666,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460649920,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1578727,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650530,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0xcd13e07934b361cf"}},"tts":1578879,"id":"0x1f3"},
-{"pid":27369,"tid":27407,"ts":326460650561,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1578910,"id":"0x1f3"},
-{"pid":27369,"tid":27407,"ts":326460650591,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1578940,"id":"0x1f3"},
-{"pid":27369,"tid":27407,"ts":326460650591,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1578940,"id":"0x1f3"},
-{"pid":27369,"tid":27407,"ts":326460650622,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1578971,"id":"0x1f3"},
-{"pid":27369,"tid":27407,"ts":326460650652,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1579001,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650652,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1579001,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650683,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0xcd13e07934b361cf"}},"tts":1579063,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460650713,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1579063,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460650744,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1579093,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460650744,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1579093,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460650774,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1579124,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460650805,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1579154,"id":"0xaf8a6537fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460650835,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1579185,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650866,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1579215,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650866,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1579215,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650927,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1579276,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650927,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1579276,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460650958,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1579307,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460651049,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1579398,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460651080,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1579429,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460651110,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1579459,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460651141,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1579490,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460651171,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1579520,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460651202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1579551,"id":"0xaf8a6de2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460651263,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":1861,"tdur":1862,"tts":1579612},
-{"pid":27369,"tid":27407,"ts":326460651263,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1579612,"id":"0xccc50d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460651415,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1579764,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460651507,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1579856,"id":"0xaf8a60c0feb47934"},
-{"pid":27369,"tid":27407,"ts":326460651721,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1580070,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460651782,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1580131,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460651843,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1580192,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652087,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1580436,"id":"0xaf8a60c1feb47934"},
-{"pid":27369,"tid":27407,"ts":326460652209,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1580558,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652239,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1580589,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652239,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1580619,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652270,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1580619,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652300,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1580650,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652392,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x68e9757826a589d3"}},"tts":1580741,"id":"0x1f7"},
-{"pid":27369,"tid":27407,"ts":326460652423,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1580772,"id":"0x1f7"},
-{"pid":27369,"tid":27407,"ts":326460652423,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1580772,"id":"0x1f7"},
-{"pid":27369,"tid":27407,"ts":326460652453,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1580802,"id":"0x1f7"},
-{"pid":27369,"tid":27407,"ts":326460652484,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1580833,"id":"0x1f7"},
-{"pid":27369,"tid":27407,"ts":326460652514,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1580863,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652514,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1580863,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652545,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x68e9757826a589d3"}},"tts":1580894,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460652575,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1580924,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460652606,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1580955,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460652606,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1580955,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460652636,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1580985,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460652667,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1581016,"id":"0xaf8a6530fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460652697,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1581046,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652728,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1581077,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652758,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1581107,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652789,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1581168,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652819,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1581168,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652850,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1581199,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460652911,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1581260,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460652941,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1581291,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460652972,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1581321,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460653002,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1581352,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460653033,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1581382,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460653063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1581413,"id":"0xaf8a6de3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460653124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2381,"tdur":2289,"tts":1581474},
-{"pid":27369,"tid":27407,"ts":326460653155,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1581504,"id":"0xccc50e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460653308,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1581687,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460653460,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1581809,"id":"0xaf8a60c2feb47934"},
-{"pid":27369,"tid":27407,"ts":326460653704,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1582054,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460653765,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1582115,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460653826,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1582176,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654132,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1582481,"id":"0xaf8a60c3feb47934"},
-{"pid":27369,"tid":27407,"ts":326460654223,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1582603,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654254,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1582603,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654315,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1582664,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654315,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1582664,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654376,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1582725,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654406,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x337fbc09222a1431"}},"tts":1582755,"id":"0x1fb"},
-{"pid":27369,"tid":27407,"ts":326460654437,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1582786,"id":"0x1fb"},
-{"pid":27369,"tid":27407,"ts":326460654467,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1582817,"id":"0x1fb"},
-{"pid":27369,"tid":27407,"ts":326460654498,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1582847,"id":"0x1fb"},
-{"pid":27369,"tid":27407,"ts":326460654498,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1582847,"id":"0x1fb"},
-{"pid":27369,"tid":27407,"ts":326460654528,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1582878,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654559,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1582908,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460654589,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x337fbc09222a1431"}},"tts":1582939,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460654620,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1582969,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460654650,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1583000,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460654681,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1583030,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460654712,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1583061,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460654712,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1583061,"id":"0xaf8a6531fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460655017,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1583274,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460655047,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1583305,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460655078,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1583335,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460655108,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1583366,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460655139,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1583396,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460655169,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1583427,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460655261,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts0.google.com/","priority":"IDLE","url":"https://mts0.google.com/"}},"tts":1583518,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460655291,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1583549,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460655352,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1583610,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460655352,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1583610,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460655413,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":353,"type":5}}},"tts":1583671,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460655444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1583702,"id":"0xaf8a6dfdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460655536,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2044,"tdur":2045,"tts":1583793},
-{"pid":27369,"tid":27407,"ts":326460655536,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1583793,"id":"0xccc50f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460655658,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1583946,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460655780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1584037,"id":"0xaf8a60dcfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460656024,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1584282,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656115,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1584373,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656177,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1584434,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1584678,"id":"0xaf8a60ddfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460656543,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1584800,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656573,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1584831,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656573,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1584831,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656604,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1584861,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656634,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1584892,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656695,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x30f1e2a42a10171b"}},"tts":1584953,"id":"0x1ff"},
-{"pid":27369,"tid":27407,"ts":326460656726,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1584983,"id":"0x1ff"},
-{"pid":27369,"tid":27369,"ts":326460654101,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2316496},
-{"pid":27369,"tid":27369,"ts":326460654101,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2316496},
-{"pid":27369,"tid":27369,"ts":326460654284,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2316709},
-{"pid":27369,"tid":27369,"ts":326460654315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2316709,"id":"0xaf8a60c2feb47934"},
-{"pid":27369,"tid":27369,"ts":326460654345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":31,"tdur":30,"tts":2316740},
-{"pid":27369,"tid":27369,"ts":326460654437,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2316831},
-{"pid":27369,"tid":27369,"ts":326460654528,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2316923},
-{"pid":27369,"tid":27369,"ts":326460654559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2316954,"id":"0xaf8a60c3feb47934"},
-{"pid":27369,"tid":27369,"ts":326460654589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":61,"tdur":31,"tts":2316984},
-{"pid":27369,"tid":27369,"ts":326460654712,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2317106},
-{"pid":27369,"tid":27369,"ts":326460655963,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2317289},
-{"pid":27369,"tid":27369,"ts":326460655993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2317320,"id":"0xaf8a60dcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460655993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":31,"tdur":30,"tts":2317320},
-{"pid":27369,"tid":27369,"ts":326460656085,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2317411},
-{"pid":27369,"tid":27369,"ts":326460656573,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2317594},
-{"pid":27369,"tid":27369,"ts":326460656604,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2317625,"id":"0xaf8a60ddfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460656604,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":61,"tdur":61,"tts":2317625},
-{"pid":27369,"tid":27369,"ts":326460656756,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2317778},
-{"pid":27369,"tid":27369,"ts":326460658038,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2317930},
-{"pid":27369,"tid":27369,"ts":326460658069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2317930,"id":"0xaf8a60defeb47934"},
-{"pid":27369,"tid":27369,"ts":326460658069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":30,"tdur":31,"tts":2317930},
-{"pid":27369,"tid":27369,"ts":326460658160,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318022},
-{"pid":27369,"tid":27369,"ts":326460658832,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318144},
-{"pid":27369,"tid":27369,"ts":326460658832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2318144,"id":"0xaf8a60dffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460658862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":31,"tts":2318174},
-{"pid":27369,"tid":27369,"ts":326460658984,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318296},
-{"pid":27369,"tid":27369,"ts":326460660419,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318419},
-{"pid":27369,"tid":27369,"ts":326460660449,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2318449,"id":"0xaf8a60d8feb47934"},
-{"pid":27369,"tid":27369,"ts":326460660449,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":31,"tdur":31,"tts":2318449},
-{"pid":27369,"tid":27369,"ts":326460660510,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318541},
-{"pid":27369,"tid":27369,"ts":326460661243,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318724},
-{"pid":27369,"tid":27369,"ts":326460661273,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2318754,"id":"0xaf8a60d9feb47934"},
-{"pid":27369,"tid":27369,"ts":326460661273,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":61,"tdur":61,"tts":2318754},
-{"pid":27369,"tid":27369,"ts":326460661426,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2318907},
-{"pid":27369,"tid":27369,"ts":326460662708,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2319090},
-{"pid":27369,"tid":27369,"ts":326460662738,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2319120,"id":"0xaf8a60dafeb47934"},
-{"pid":27369,"tid":27369,"ts":326460662738,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":31,"tdur":31,"tts":2319120},
-{"pid":27369,"tid":27369,"ts":326460662830,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2319212},
-{"pid":27369,"tid":27369,"ts":326460663379,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2319456},
-{"pid":27369,"tid":27369,"ts":326460663410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2319487,"id":"0xaf8a60dbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460663410,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":91,"tdur":91,"tts":2319487},
-{"pid":27369,"tid":27369,"ts":326460663562,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2319639},
-{"pid":27369,"tid":27369,"ts":326460664692,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2319822},
-{"pid":27369,"tid":27369,"ts":326460664722,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2319822,"id":"0xaf8a60d4feb47934"},
-{"pid":27369,"tid":27369,"ts":326460664753,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":0,"tdur":0,"tts":2319853},
-{"pid":27369,"tid":27369,"ts":326460664814,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2319914},
-{"pid":27369,"tid":27369,"ts":326460665333,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2320128},
-{"pid":27369,"tid":27369,"ts":326460665363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2320158,"id":"0xaf8a60d5feb47934"},
-{"pid":27369,"tid":27369,"ts":326460665363,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":61,"tdur":61,"tts":2320158},
-{"pid":27369,"tid":27369,"ts":326460665485,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2320280},
-{"pid":27369,"tid":27369,"ts":326460666645,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2320433},
-{"pid":27369,"tid":27369,"ts":326460666676,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2320463,"id":"0xaf8a60d6feb47934"},
-{"pid":27369,"tid":27369,"ts":326460666676,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":30,"tdur":31,"tts":2320463},
-{"pid":27369,"tid":27369,"ts":326460666767,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2320555},
-{"pid":27369,"tid":27369,"ts":326460667194,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2320738},
-{"pid":27369,"tid":27369,"ts":326460667225,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2320769,"id":"0xaf8a60d7feb47934"},
-{"pid":27369,"tid":27369,"ts":326460667225,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":30,"tdur":30,"tts":2320769},
-{"pid":27369,"tid":27369,"ts":326460667347,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2320891},
-{"pid":27369,"tid":27369,"ts":326460668568,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2321074},
-{"pid":27369,"tid":27369,"ts":326460668598,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2321104,"id":"0xaf8a60d0feb47934"},
-{"pid":27369,"tid":27369,"ts":326460668598,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/navigation_interception/intercept_navigation_delegate.cc","src_func":"UpdateUserGestureCarryoverInfo"},"dur":31,"tdur":31,"tts":2321104},
-{"pid":27369,"tid":27369,"ts":326460668720,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2321226},
-{"pid":27369,"tid":27369,"ts":326460669117,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2321410},
-{"pid":27369,"tid":27369,"ts":326460669148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2321440,"id":"0xaf8a60d1feb47934"},
-{"pid":27369,"tid":27407,"ts":326460656726,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1584983,"id":"0x1ff"},
-{"pid":27369,"tid":27407,"ts":326460656726,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":123,"tts":1584983},
-{"pid":27369,"tid":27407,"ts":326460656848,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1585106,"id":"0x1ff"},
-{"pid":27369,"tid":27407,"ts":326460656878,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1585136,"id":"0x1ff"},
-{"pid":27369,"tid":27407,"ts":326460656909,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1585167,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656909,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1585167,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460656970,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x30f1e2a42a10171b"}},"tts":1585228,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460656970,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts0.google.com/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1585228,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460657001,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1585258,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460657001,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1585258,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460657092,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1585350,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460657123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1585380,"id":"0xaf8a6532fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460657153,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1585411,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460657184,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1585441,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460657184,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1585441,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460657214,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1585472,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460657245,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1585502,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460657275,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1585533,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460657336,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts0.google.com/","priority":"IDLE","url":"https://mts0.google.com/"}},"tts":1585624,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460657367,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1585624,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460657428,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1585685,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460657428,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1585685,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460657458,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":353,"type":5}}},"tts":1585716,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460657519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1585777,"id":"0xaf8a6dfafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460657611,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2258,"tdur":2258,"tts":1585869},
-{"pid":27369,"tid":27407,"ts":326460657641,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1585899,"id":"0xccc51002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460657764,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1586021,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460657886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1586143,"id":"0xaf8a60defeb47934"},
-{"pid":27369,"tid":27407,"ts":326460658099,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1586357,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658160,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1586418,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658221,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1586479,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1586906,"id":"0xaf8a60dffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460658771,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1587028,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658801,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1587059,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658832,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1587089,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658832,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1587089,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658893,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1587150,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460658923,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x44c56b5956742b26"}},"tts":1587211,"id":"0x203"},
-{"pid":27369,"tid":27407,"ts":326460658954,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1587211,"id":"0x203"},
-{"pid":27369,"tid":27407,"ts":326460658984,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1587242,"id":"0x203"},
-{"pid":27369,"tid":27407,"ts":326460658984,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1587242,"id":"0x203"},
-{"pid":27369,"tid":27407,"ts":326460659015,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1587273,"id":"0x203"},
-{"pid":27369,"tid":27407,"ts":326460659045,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1587303,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659076,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1587334,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659106,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x44c56b5956742b26"}},"tts":1587364,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460659137,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1587395,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460659168,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1587425,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460659198,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1587456,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460659290,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1587547,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460659320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1587578,"id":"0xaf8a6533fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460659381,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1587639,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659381,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1587639,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659412,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1587669,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659442,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1587700,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659442,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1587730,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659473,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1587730,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460659656,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1587913,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460659656,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1587913,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460659717,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1587974,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460659747,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1588005,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460659778,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1588036,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460659808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1588066,"id":"0xaf8a6df4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460659869,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2351,"tdur":2350,"tts":1588127},
-{"pid":27369,"tid":27407,"ts":326460659900,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1588158,"id":"0xccc51102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460660083,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1588341,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460660083,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1588341},
-{"pid":27369,"tid":27407,"ts":326460660266,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1588524,"id":"0xaf8a60d8feb47934"},
-{"pid":27369,"tid":27407,"ts":326460660480,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1588737,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460660541,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1588799,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460660632,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1588890,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1589317,"id":"0xaf8a60d9feb47934"},
-{"pid":27369,"tid":27407,"ts":326460661182,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1589439,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661212,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1589470,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661243,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1589500,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661243,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1589500,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661273,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1589531,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661365,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x294b8a05d88ddbb0"}},"tts":1589623,"id":"0x207"},
-{"pid":27369,"tid":27407,"ts":326460661395,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1589653,"id":"0x207"},
-{"pid":27369,"tid":27407,"ts":326460661395,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1589653,"id":"0x207"},
-{"pid":27369,"tid":27407,"ts":326460661426,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1589684,"id":"0x207"},
-{"pid":27369,"tid":27407,"ts":326460661457,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1589714,"id":"0x207"},
-{"pid":27369,"tid":27407,"ts":326460661487,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1589745,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661518,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1589775,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661548,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x294b8a05d88ddbb0"}},"tts":1589806,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460661609,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1589867,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460661640,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1589897,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460661670,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1589928,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460661731,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1589989,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460661762,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1590019,"id":"0xaf8a65ccfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460661823,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1590080,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661823,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1590080,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661853,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1590111,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661884,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1590141,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661914,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1590172,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460661914,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1590172,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460662006,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1590263,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460662036,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1590294,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460662067,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1590325,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460662097,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1590355,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460662128,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1590386,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460662158,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1590416,"id":"0xaf8a6df6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460662250,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2045,"tdur":1983,"tts":1590508},
-{"pid":27369,"tid":27407,"ts":326460662250,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1590508,"id":"0xccc51202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460662403,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1590660,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460662525,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1590782,"id":"0xaf8a60dafeb47934"},
-{"pid":27369,"tid":27407,"ts":326460662738,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1590996,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460662799,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1591057,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460662860,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1591118,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663166,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1591393,"id":"0xaf8a60dbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460663318,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1591545,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663318,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1591576,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663349,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1591576,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663379,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1591606,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663410,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1591637,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663501,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x902ca8bd673e66d7"}},"tts":1591728,"id":"0x20b"},
-{"pid":27369,"tid":27407,"ts":326460663501,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1591759,"id":"0x20b"},
-{"pid":27369,"tid":27407,"ts":326460663532,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1591759,"id":"0x20b"},
-{"pid":27369,"tid":27407,"ts":326460663562,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1591790,"id":"0x20b"},
-{"pid":27369,"tid":27407,"ts":326460663562,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1591790,"id":"0x20b"},
-{"pid":27369,"tid":27407,"ts":326460663593,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1591851,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663623,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1591851,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663654,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x902ca8bd673e66d7"}},"tts":1591912,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460663685,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1591912,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460663715,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1591942,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460663715,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1591942,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460663776,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1592003,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460663807,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1592034,"id":"0xaf8a65cdfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460663837,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1592095,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663868,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1592095,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663929,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1592156,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663959,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1592186,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460663990,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1592217,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460664020,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1592247,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460664081,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1592308,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460664112,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1592339,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460664142,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1592369,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460664173,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1592400,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460664203,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1592430,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460664234,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1592461,"id":"0xaf8a6df0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460664295,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":1953,"tdur":1923,"tts":1592522},
-{"pid":27369,"tid":27407,"ts":326460664295,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1592522,"id":"0xccc51302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460664448,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1592675,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460664539,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1592766,"id":"0xaf8a60d4feb47934"},
-{"pid":27369,"tid":27407,"ts":326460664722,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1592980,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460664814,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1593041,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460664936,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":256,"method":"GET","priority":"IDLE","url":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1593132,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665180,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1593377,"id":"0xaf8a60d5feb47934"},
-{"pid":27369,"tid":27407,"ts":326460665302,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1593499,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665302,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1593499,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665333,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1593529,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665363,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1593560,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665394,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1593590,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665455,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x5202255a56efb8c2"}},"tts":1593651,"id":"0x20f"},
-{"pid":27369,"tid":27407,"ts":326460665455,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1593651,"id":"0x20f"},
-{"pid":27369,"tid":27407,"ts":326460665485,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1593682,"id":"0x20f"},
-{"pid":27369,"tid":27407,"ts":326460665516,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1593712,"id":"0x20f"},
-{"pid":27369,"tid":27407,"ts":326460665516,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1593712,"id":"0x20f"},
-{"pid":27369,"tid":27407,"ts":326460665546,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1593743,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665577,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1593773,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665607,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x5202255a56efb8c2"}},"tts":1593804,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460665638,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://mts1.google.com/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2"}},"tts":1593834,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460665638,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1593834,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460665668,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1593865,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460665729,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1593926,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460665729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1593926,"id":"0xaf8a65cefd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460665790,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1593987,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665851,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1594048,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665882,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1594079,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665913,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1594109,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665943,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1594140,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460665943,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1594170,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460666035,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://mts1.google.com/","priority":"IDLE","url":"https://mts1.google.com/"}},"tts":1594231,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460666035,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1594231,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460666096,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1594292,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460666096,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1594292,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460666126,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":437,"type":5}}},"tts":1594323,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460666187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1594384,"id":"0xaf8a6df1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460666248,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":1923,"tdur":1892,"tts":1594445},
-{"pid":27369,"tid":27407,"ts":326460666248,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1594445,"id":"0xccc51402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460666401,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1594597,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460666492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1594689,"id":"0xaf8a60d6feb47934"},
-{"pid":27369,"tid":27407,"ts":326460666676,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1594903,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460666737,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1594964,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460666828,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":131328,"method":"GET","priority":"IDLE","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8"}},"tts":1595025,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667042,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1595238,"id":"0xaf8a60d7feb47934"},
-{"pid":27369,"tid":27407,"ts":326460667164,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1595360,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667164,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1595391,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667194,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1595391,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667225,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1595421,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667255,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1595452,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667286,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0xcd231fea70ad7324"}},"tts":1595513,"id":"0x213"},
-{"pid":27369,"tid":27407,"ts":326460667316,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8"}},"tts":1595513,"id":"0x213"},
-{"pid":27369,"tid":27480,"ts":326460665790,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":64886,"id":"0xaf8a65cefd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460665851,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":9096,"tdur":366,"tts":64947},
-{"pid":27369,"tid":27482,"ts":326460667744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":74011,"id":"0xaf8a65cffd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460667774,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":7325,"tdur":367,"tts":74011},
-{"pid":27369,"tid":27643,"ts":326460669667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1129,"id":"0xaf8a65c8fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460669667,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":5768,"tdur":458,"tts":1129},
-{"pid":27369,"tid":27644,"ts":326460671742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":152,"id":"0xaf8a65c9fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460671772,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":3663,"tdur":427,"tts":183},
-{"pid":27369,"tid":27530,"ts":326460674794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":29543,"id":"0xaf8a6d8ffebbc614"},
-{"pid":27369,"tid":27530,"ts":326460674824,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":29574,"id":"0xaf8a65cafd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460674824,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":367,"tdur":366,"tts":29574},
-{"pid":27369,"tid":27480,"ts":326460674947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":65313,"id":"0xaf8a6d88febbc614"},
-{"pid":27369,"tid":27482,"ts":326460675069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":74378,"id":"0xaf8a6d89febbc614"},
-{"pid":27369,"tid":27530,"ts":326460675160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":29909,"id":"0xaf8a6d8afebbc614"},
-{"pid":27369,"tid":27643,"ts":326460675282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1556,"id":"0xaf8a6d8bfebbc614"},
-{"pid":27369,"tid":27644,"ts":326460675435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":610,"id":"0xaf8a6d84febbc614"},
-{"pid":27369,"tid":27480,"ts":326460675496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":65405,"id":"0xaf8a65cbfd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460675526,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":428,"tdur":396,"tts":65405},
-{"pid":27369,"tid":27480,"ts":326460675923,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":65801,"id":"0xaf8a6d85febbc614"},
-{"pid":27369,"tid":27530,"ts":326460683462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":29971,"id":"0xaf8a65c4fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460683492,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":275,"tdur":275,"tts":30001},
-{"pid":27369,"tid":27530,"ts":326460683736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":30245,"id":"0xaf8a6d9dfebbc614"},
-{"pid":27369,"tid":27644,"ts":326460694266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":671,"id":"0xaf8a65c5fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460694296,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":397,"tdur":214,"tts":701},
-{"pid":27369,"tid":27644,"ts":326460694693,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":915,"id":"0xaf8a6d96febbc614"},
-{"pid":27369,"tid":27480,"ts":326460695395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":65893,"id":"0xaf8a65c6fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460695395,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":580,"tdur":397,"tts":65893},
-{"pid":27369,"tid":27480,"ts":326460695975,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":66290,"id":"0xaf8a6d90febbc614"},
-{"pid":27369,"tid":27530,"ts":326460698020,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":30306,"id":"0xaf8a65c7fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460698050,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":397,"tdur":397,"tts":30337},
-{"pid":27369,"tid":27530,"ts":326460698417,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":30734,"id":"0xaf8a6d91febbc614"},
-{"pid":27369,"tid":27644,"ts":326460702018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":976,"id":"0xaf8a65c0fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460702049,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":824,"tdur":427,"tts":1037},
-{"pid":27369,"tid":27643,"ts":326460702232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1739,"id":"0xaf8a65c1fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460702262,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":946,"tdur":427,"tts":1770},
-{"pid":27369,"tid":27644,"ts":326460702812,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1434,"id":"0xaf8a6dacfebbc614"},
-{"pid":27369,"tid":27643,"ts":326460703147,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2136,"id":"0xaf8a6dadfebbc614"},
-{"pid":27369,"tid":27530,"ts":326460705436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":30764,"id":"0xaf8a65c2fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460705467,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":305,"tdur":305,"tts":30795},
-{"pid":27369,"tid":27530,"ts":326460705742,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":31100,"id":"0xaf8a6dabfebbc614"},
-{"pid":27369,"tid":27482,"ts":326460706657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":74591,"id":"0xaf8a65c3fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460706688,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":244,"tdur":244,"tts":74591},
-{"pid":27369,"tid":27482,"ts":326460706932,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":74835,"id":"0xaf8a6da6febbc614"},
-{"pid":27369,"tid":27482,"ts":326460706962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":74866,"id":"0xaf8a65dcfd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460706962,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":275,"tdur":275,"tts":74866},
-{"pid":27369,"tid":27482,"ts":326460707176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75080,"id":"0xaf8a6da7febbc614"},
-{"pid":27369,"tid":27530,"ts":326460708092,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":31130,"id":"0xaf8a65ddfd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460708092,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":213,"tdur":214,"tts":31130},
-{"pid":27369,"tid":27530,"ts":326460708275,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":31344,"id":"0xaf8a6da1febbc614"},
-{"pid":27369,"tid":27480,"ts":326460716088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":66442,"id":"0xaf8a65defd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460716180,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":732,"tdur":397,"tts":66473},
-{"pid":27369,"tid":27480,"ts":326460716820,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":66778,"id":"0xaf8a6db9febbc614"},
-{"pid":27369,"tid":27643,"ts":326460719689,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2289,"id":"0xaf8a65dffd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460719689,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":1099,"tdur":335,"tts":2289},
-{"pid":27369,"tid":27643,"ts":326460720758,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2624,"id":"0xaf8a6dbbfebbc614"},
-{"pid":27369,"tid":27643,"ts":326460720819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2655,"id":"0xaf8a65d8fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460720819,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":305,"tdur":244,"tts":2655},
-{"pid":27369,"tid":27643,"ts":326460721093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2899,"id":"0xaf8a6db4febbc614"},
-{"pid":27369,"tid":27644,"ts":326460735987,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1587,"id":"0xaf8a65d9fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460735987,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":1587,"tdur":518,"tts":1587},
-{"pid":27369,"tid":27644,"ts":326460737544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2075,"id":"0xaf8a6e4efebbc614"},
-{"pid":27369,"tid":27530,"ts":326460739894,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":31435,"id":"0xaf8a65dafd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460739894,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":488,"tdur":489,"tts":31435},
-{"pid":27369,"tid":27530,"ts":326460740382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":31924,"id":"0xaf8a6e49febbc614"},
-{"pid":27369,"tid":27407,"ts":326460667347,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1595544,"id":"0x213"},
-{"pid":27369,"tid":27407,"ts":326460667408,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1595605,"id":"0x213"},
-{"pid":27369,"tid":27407,"ts":326460667408,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1595605,"id":"0x213"},
-{"pid":27369,"tid":27407,"ts":326460667439,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1595635,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667469,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1595666,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667500,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0xcd231fea70ad7324"}},"tts":1595696,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460667530,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8"}},"tts":1595727,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460667530,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1595727,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460667561,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1595757,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460667683,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1595849,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460667713,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1595879,"id":"0xaf8a65cffd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460667774,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1595940,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667774,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1595940,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667805,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1595971,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667835,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1596001,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667866,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1596032,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667866,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1596032,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460667957,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"IDLE","url":"https://maps.googleapis.com/"}},"tts":1596123,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460667957,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1596123,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460668049,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1596215,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460668049,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1596215,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460668079,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1596245,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460668110,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1596276,"id":"0xaf8a6df2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460668171,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":1953,"tdur":1923,"tts":1596337},
-{"pid":27369,"tid":27407,"ts":326460668171,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1596337,"id":"0xccc51502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460668324,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1596490,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460668385,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1596581,"id":"0xaf8a60d0feb47934"},
-{"pid":27369,"tid":27407,"ts":326460668568,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1596734,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460668629,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1596795,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460668690,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":262400,"method":"GET","priority":"LOW","url":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3"}},"tts":1596856,"id":"0x216"},{"pid":27369,"tid":27407,"ts":326460668965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1597131,"id":"0xaf8a60d1feb47934"},
-{"pid":27369,"tid":27407,"ts":326460669087,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1597253,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669117,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1597283,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669148,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1597314,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669209,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1597344,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669270,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1597405,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669300,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x2c7e7302f019b760"}},"tts":1597466,"id":"0x217"},
-{"pid":27369,"tid":27407,"ts":326460669331,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3"}},"tts":1597466,"id":"0x217"},
-{"pid":27369,"tid":27407,"ts":326460669361,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1597497,"id":"0x217"},
-{"pid":27369,"tid":27407,"ts":326460669361,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1597497,"id":"0x217"},
-{"pid":27369,"tid":27407,"ts":326460669392,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1597527,"id":"0x217"},
-{"pid":27369,"tid":27407,"ts":326460669422,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1597558,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669422,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1597558,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669483,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x2c7e7302f019b760"}},"tts":1597619,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460669514,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://www.google.com/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3"}},"tts":1597649,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460669514,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1597649,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460669544,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1597680,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460669575,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1597710,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460669605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1597741,"id":"0xaf8a65c8fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460669667,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1597802,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669697,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1597833,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669697,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1597833,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669728,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1597894,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669758,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1597894,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669789,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1597924,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460669880,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://www.google.com/","priority":"LOW","url":"https://www.google.com/"}},"tts":1598016,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460669911,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1598046,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460669941,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1598107,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460669972,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1598107,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460670033,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":21,"type":5}}},"tts":1598168,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460670063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1598229,"id":"0xaf8a6df3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460670124,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2137,"tdur":2106,"tts":1598260},
-{"pid":27369,"tid":27407,"ts":326460670155,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1598290,"id":"0xccc51702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460670277,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1598412,"id":"0x21a"},
-{"pid":27369,"tid":27369,"ts":326460669148,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":91,"tdur":92,"tts":2321440},
-{"pid":27369,"tid":27369,"ts":326460669148,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2321440},
-{"pid":27369,"tid":27369,"ts":326460669300,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2321623},
-{"pid":27369,"tid":27369,"ts":326460670033,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2321898},
-{"pid":27369,"tid":27369,"ts":326460670063,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2321928},
-{"pid":27369,"tid":27369,"ts":326460670124,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":214,"tts":2321989},
-{"pid":27369,"tid":27369,"ts":326460670124,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460669444},"dur":92,"tdur":92,"tts":2321989},
-{"pid":27369,"tid":27369,"ts":326460670155,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2322020},
-{"pid":27369,"tid":27369,"ts":326460670185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2322050,"id":"0xaf8a6d8cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460670338,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2322203},
-{"pid":27369,"tid":27369,"ts":326460670460,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2322325},
-{"pid":27369,"tid":27369,"ts":326460671101,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2322539},
-{"pid":27369,"tid":27369,"ts":326460671131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2322539,"id":"0xaf8a60d2feb47934"},
-{"pid":27369,"tid":27369,"ts":326460671162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":0,"tdur":0,"tts":2322569},
-{"pid":27369,"tid":27369,"ts":326460671223,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2322630},
-{"pid":27369,"tid":27369,"ts":326460686666,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2322936},
-{"pid":27369,"tid":27369,"ts":326460686697,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2322997},
-{"pid":27369,"tid":27369,"ts":326460686758,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":214,"tts":2323027},
-{"pid":27369,"tid":27369,"ts":326460686758,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460686126},"dur":91,"tdur":92,"tts":2323027},
-{"pid":27369,"tid":27369,"ts":326460686788,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2323058},
-{"pid":27369,"tid":27369,"ts":326460686819,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2323088,"id":"0xaf8a6d9efebbc614"},
-{"pid":27369,"tid":27369,"ts":326460687002,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2323271},
-{"pid":27369,"tid":27369,"ts":326460687094,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2323363},
-{"pid":27369,"tid":27369,"ts":326460687460,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2323576},
-{"pid":27369,"tid":27369,"ts":326460687490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2323607,"id":"0xaf8a60d3feb47934"},
-{"pid":27369,"tid":27369,"ts":326460687490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2323607},
-{"pid":27369,"tid":27369,"ts":326460687521,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":91,"tts":2323638},
-{"pid":27369,"tid":27369,"ts":326460687582,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":0,"tdur":0,"tts":2323699},
-{"pid":27369,"tid":27369,"ts":326460687674,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2323790},
-{"pid":27369,"tid":27369,"ts":326460691000,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2324004},
-{"pid":27369,"tid":27369,"ts":326460691000,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2324004,"id":"0xaf8a60ecfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460691031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":183,"tdur":183,"tts":2324034},
-{"pid":27369,"tid":27369,"ts":326460691275,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2324278},
-{"pid":27369,"tid":27369,"ts":326460693350,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2324492},
-{"pid":27369,"tid":27369,"ts":326460693381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2324523,"id":"0xaf8a60edfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460693381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":580,"tdur":579,"tts":2324523},
-{"pid":27369,"tid":27369,"ts":326460693472,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2324614,"id":"0xaf8a60effeb47934"},
-{"pid":27369,"tid":27369,"ts":326460694052,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2325194},
-{"pid":27369,"tid":27369,"ts":326460694266,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2325347},
-{"pid":27369,"tid":27369,"ts":326460694296,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2325347,"id":"0xaf8a60eefeb47934"},
-{"pid":27369,"tid":27369,"ts":326460694296,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":245,"tdur":0,"tts":2325347},
-{"pid":27369,"tid":27369,"ts":326460694571,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":305,"tdur":213,"tts":2325408},
-{"pid":27369,"tid":27369,"ts":326460694724,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":61,"tdur":61,"tts":2325469},
-{"pid":27369,"tid":27369,"ts":326460694754,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":2325499},
-{"pid":27369,"tid":27369,"ts":326460694815,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2325560},
-{"pid":27369,"tid":27369,"ts":326460694815,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":0,"tts":2325560},
-{"pid":27369,"tid":27369,"ts":326460694968,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2325743},
-{"pid":27369,"tid":27369,"ts":326460695182,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2325896},
-{"pid":27369,"tid":27369,"ts":326460695243,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2325957},
-{"pid":27369,"tid":27369,"ts":326460700370,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2326323},
-{"pid":27369,"tid":27369,"ts":326460700401,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2326354,"id":"0xaf8a60e8feb47934"},
-{"pid":27369,"tid":27369,"ts":326460700401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":305,"tdur":305,"tts":2326354},
-{"pid":27369,"tid":27369,"ts":326460700797,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2326751},
-{"pid":27369,"tid":27369,"ts":326460703483,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2327056},
-{"pid":27369,"tid":27369,"ts":326460703544,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2327117},
-{"pid":27369,"tid":27369,"ts":326460703575,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":30,"tdur":31,"tts":2327147},
-{"pid":27369,"tid":27369,"ts":326460703605,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2327178},
-{"pid":27369,"tid":27369,"ts":326460703849,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2327422},
-{"pid":27369,"tid":27369,"ts":326460704277,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2327697},
-{"pid":27369,"tid":27369,"ts":326460704307,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2327697,"id":"0xaf8a60e9feb47934"},
-{"pid":27369,"tid":27369,"ts":326460704338,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":549,"tdur":550,"tts":2327727},
-{"pid":27369,"tid":27369,"ts":326460704948,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2328338},
-{"pid":27369,"tid":27369,"ts":326460705101,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2328490},
-{"pid":27369,"tid":27369,"ts":326460705131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2328521,"id":"0xaf8a60eafeb47934"},
-{"pid":27369,"tid":27407,"ts":326460670521,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1598657,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460670521,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1598657},
-{"pid":27369,"tid":27407,"ts":326460670643,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1598779,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460670704,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":262400,"method":"GET","priority":"LOWEST","url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"}},"tts":1598840,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460670948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1599084,"id":"0xaf8a60d2feb47934"},
-{"pid":27369,"tid":27407,"ts":326460671040,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1599206,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671070,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1599206,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671101,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1599236,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671101,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1599267,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671131,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1599298,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671193,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x211225ac1a157234"}},"tts":1599328,"id":"0x21b"},
-{"pid":27369,"tid":27407,"ts":326460671223,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"}},"tts":1599359,"id":"0x21b"},
-{"pid":27369,"tid":27407,"ts":326460671254,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1599389,"id":"0x21b"},
-{"pid":27369,"tid":27407,"ts":326460671254,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1599389,"id":"0x21b"},
-{"pid":27369,"tid":27407,"ts":326460671284,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1599420,"id":"0x21b"},
-{"pid":27369,"tid":27407,"ts":326460671315,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1599450,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671315,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1599450,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671376,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x211225ac1a157234"}},"tts":1599511,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460671406,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"}},"tts":1599542,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460671406,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1599542,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460671437,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1599572,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460671467,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1599603,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460671498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1599633,"id":"0xaf8a65c9fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460671864,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1599969,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671894,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1599999,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671894,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1599999,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671925,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1600061,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671956,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1600061,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460671986,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1600091,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460672078,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"LOWEST","url":"https://maps.googleapis.com/"}},"tts":1600183,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460672108,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1600213,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460672139,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1600244,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460672169,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1600274,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460672200,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1600305,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460672230,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1600335,"id":"0xaf8a6d8dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460672291,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1600396},
-{"pid":27369,"tid":27407,"ts":326460672291,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1600396,"id":"0xccc51802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460672352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460606},"tts":1600457,"id":"0xaf8a6de8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460672383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1600488},
-{"pid":27369,"tid":27407,"ts":326460672383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1600488,"id":"0xaf8a6deafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460672413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":245,"tdur":245,"tts":1600518},
-{"pid":27369,"tid":27407,"ts":326460672444,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1600549,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460672474,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":30663,"index":1,"offset":32768,"truncate":true}},"tts":1600579,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460672627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1600732,"id":"0xaf8a65cafd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460672688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460667},"tts":1600793,"id":"0xaf8a64aafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460672688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/socket/client_socket_pool_base.cc","src_func":"ResetTimer"},"dur":0,"tdur":0,"tts":1600793},
-{"pid":27369,"tid":27407,"ts":326460672719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1600824,"id":"0xaf8a6debfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460672719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":244,"tdur":244,"tts":1600824},
-{"pid":27369,"tid":27407,"ts":326460672780,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1600885,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460672932,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1601037,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460672993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1601098,"id":"0xaf8a6de5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460672993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":1587,"tdur":1587,"tts":1601098},
-{"pid":27369,"tid":27407,"ts":326460673054,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1284}},"tts":1601159,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460673146,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1601281,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460673207,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1284,"stream_id":21}},"tts":1601312,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673237,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1284,"window_size":15721527}},"tts":1601342,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673268,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1284,"stream_id":21,"window_size":6284343}},"tts":1601373,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460673390,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1601495,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460673421,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":21}},"tts":1601526,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673451,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15713335}},"tts":1601556,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673451,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":21,"window_size":6276151}},"tts":1601587,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460673604,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1601709,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460673634,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1079,"stream_id":21}},"tts":1601739,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673634,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1079,"window_size":15712256}},"tts":1601739,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673665,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1079,"stream_id":21,"window_size":6275072}},"tts":1601770,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460673695,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7104,"stream_id":21}},"tts":1601831,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673726,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7104,"window_size":15705152}},"tts":1601831,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673756,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7104,"stream_id":21,"window_size":6267968}},"tts":1601861,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460673787,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1601892,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460673878,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1601983,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460673909,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":21}},"tts":1602014,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673939,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15704918}},"tts":1602044,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460673970,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":21,"window_size":6267734}},"tts":1602075,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674092,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1602197,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460674122,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":21}},"tts":1602227,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674184,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15696726}},"tts":1602289,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674214,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":21,"window_size":6259542}},"tts":1602319,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674367,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1602472,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460674397,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":854,"stream_id":21}},"tts":1602502,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674397,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-854,"window_size":15695872}},"tts":1602502,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674428,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-854,"stream_id":21,"window_size":6258688}},"tts":1602533,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674458,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7329,"stream_id":21}},"tts":1602563,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674519,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7329,"window_size":15688543}},"tts":1602624,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674550,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7329,"stream_id":21,"window_size":6251359}},"tts":1602655,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1602685,"id":"0xaf8a6d8efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460674611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460635},"tts":1602716,"id":"0xaf8a6de4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460674611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1251,"tdur":1251,"tts":1602716},
-{"pid":27369,"tid":27407,"ts":326460674672,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5829,"window_size":15694372}},"tts":1602777,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674702,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":5829,"stream_id":21,"window_size":6257188}},"tts":1602807,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674733,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1284,"window_size":15695656}},"tts":1602838,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674733,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1284,"stream_id":21,"window_size":6258472}},"tts":1602838,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674794,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15703848}},"tts":1602899,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674824,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":21,"window_size":6266664}},"tts":1602929,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674855,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1079,"window_size":15704927}},"tts":1602960,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674885,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1079,"stream_id":21,"window_size":6267743}},"tts":1602990,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674947,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7104,"window_size":15712031}},"tts":1603052,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460674977,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":7104,"stream_id":21,"window_size":6274847}},"tts":1603082,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460674977,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15712265}},"tts":1603113,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460675008,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":234,"stream_id":21,"window_size":6275081}},"tts":1603113,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675069,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15720457}},"tts":1603174,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460675099,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":21,"window_size":6283273}},"tts":1603204,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675099,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":854,"window_size":15721311}},"tts":1603235,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460675130,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":854,"stream_id":21,"window_size":6284127}},"tts":1603235,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675160,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1603265,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675191,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1603296,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675191,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1603296,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460675313,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1603418,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460675343,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1603448,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460675465,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1603570,"id":"0xaf8a65cbfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460675496,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1603601,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675526,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1603631,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675587,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1603692,"id":"0xba459c02"},
-{"pid":27369,"tid":27407,"ts":326460675649,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1603754,"id":"0xba459d02"},
-{"pid":27369,"tid":27407,"ts":326460675710,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1603815,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675771,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7329,"window_size":15728640}},"tts":1603876,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460675801,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":7329,"stream_id":21,"window_size":6291456}},"tts":1603906,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675801,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1603906,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675832,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1603937,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460675832,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":7329,"index":1,"offset":32768,"truncate":true}},"tts":1603937,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460675893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1603998,"id":"0xaf8a6de6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460675893,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":366,"tdur":366,"tts":1603998},
-{"pid":27369,"tid":27407,"ts":326460675923,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":493,"type":10}}},"tts":1604028,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460675954,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":490,"type":1}}},"tts":1604059,"id":"0x1ed"},
-{"pid":27369,"tid":27407,"ts":326460675984,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1604089,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460675984,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1604089,"id":"0x1ed"},
-{"pid":27369,"tid":27407,"ts":326460676076,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1604181,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460676228,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1604333,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460676259,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1604364,"id":"0xaf8a6d86febbc614"},
-{"pid":27369,"tid":27407,"ts":326460676289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1604394,"id":"0xaf8a6de7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460676289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1604394},
-{"pid":27369,"tid":27407,"ts":326460676320,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1604425,"id":"0xba459902"},
-{"pid":27369,"tid":27407,"ts":326460676381,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1604486,"id":"0xaf8a6de0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460676412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1604517},
-{"pid":27369,"tid":27407,"ts":326460676442,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1604547,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460676473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1604578,"id":"0xaf8a6de1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460676473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":305,"tts":1604578},
-{"pid":27369,"tid":27407,"ts":326460676503,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":497,"type":10}}},"tts":1604608,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460676503,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":494,"type":1}}},"tts":1604639,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460676534,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1604669,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460676564,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1604669,"id":"0x1f1"},
-{"pid":27369,"tid":27407,"ts":326460676625,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1604730,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460676747,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1604852,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460676778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1604883,"id":"0xaf8a6de2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460676778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":305,"tts":1604883},
-{"pid":27369,"tid":27407,"ts":326460676808,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":501,"type":10}}},"tts":1604913,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460676839,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":498,"type":1}}},"tts":1604944,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460676869,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1604974,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460676869,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1604974,"id":"0x1f5"},
-{"pid":27369,"tid":27407,"ts":326460676930,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1605035,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460677052,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1605157,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460677083,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1605188,"id":"0xaf8a6de3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460677083,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":305,"tts":1605188},
-{"pid":27369,"tid":27407,"ts":326460677113,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":505,"type":10}}},"tts":1605218,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460677144,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":502,"type":1}}},"tts":1605249,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460677175,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1605280,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460677175,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1605280,"id":"0x1f9"},
-{"pid":27369,"tid":27407,"ts":326460677236,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1605371,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460677358,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1605463,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460677388,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1605493,"id":"0xaf8a6dfcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460677419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":1605524},
-{"pid":27369,"tid":27407,"ts":326460677419,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1605524,"id":"0xba459a02"},
-{"pid":27369,"tid":27407,"ts":326460677480,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1605585,"id":"0xaf8a6dfdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460677480,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":335,"tdur":335,"tts":1605585},
-{"pid":27369,"tid":27407,"ts":326460677510,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":509,"type":10}}},"tts":1605615,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460677510,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":506,"type":1}}},"tts":1605646,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460677541,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1605646,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460677571,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1605676,"id":"0x1fd"},
-{"pid":27369,"tid":27407,"ts":326460677663,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1605768,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460677785,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts0.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1605890,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460677785,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1605890,"id":"0xaf8a6d87febbc614"},
-{"pid":27369,"tid":27407,"ts":326460677815,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1605920,"id":"0xaf8a6dfefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460677846,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1605951},
-{"pid":27369,"tid":27407,"ts":326460677876,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1605981,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460677907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1606012,"id":"0xaf8a6dfffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460677907,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":31,"tdur":31,"tts":1606012},
-{"pid":27369,"tid":27407,"ts":326460677938,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1606043,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460677968,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1606073,"id":"0xaf8a6df8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460677968,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":31,"tts":1606073},
-{"pid":27369,"tid":27407,"ts":326460677999,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1606104,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460678029,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1606134,"id":"0xaf8a6df9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460678029,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":61,"tts":1606134},
-{"pid":27369,"tid":27407,"ts":326460678060,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1606165,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460678090,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1606195,"id":"0xaf8a6dfafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460678090,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":336,"tdur":336,"tts":1606195},
-{"pid":27369,"tid":27407,"ts":326460678121,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":513,"type":10}}},"tts":1606226,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460678151,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":510,"type":1}}},"tts":1606256,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460678182,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1606287,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460678182,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1606287,"id":"0x201"},
-{"pid":27369,"tid":27407,"ts":326460678273,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1606378,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460678395,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts0.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1606500,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460678426,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":1606531},
-{"pid":27369,"tid":27407,"ts":326460678456,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1606561},
-{"pid":27369,"tid":27407,"ts":326460678487,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1606592,"id":"0xccc51902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460678517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1606653,"id":"0xaf8a6dfbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460678548,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1606653},
-{"pid":27369,"tid":27407,"ts":326460678578,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1606683,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460678609,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1606714,"id":"0xaf8a6df4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460678609,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":275,"tdur":275,"tts":1606714},
-{"pid":27369,"tid":27407,"ts":326460678640,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":517,"type":10}}},"tts":1606744,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460678640,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":514,"type":1}}},"tts":1606744,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460678670,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1606775,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460678701,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1606806,"id":"0x205"},
-{"pid":27369,"tid":27407,"ts":326460678762,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1606867,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460678884,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1606989,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460678914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1607019,"id":"0xaf8a6df5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460678914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":61,"tts":1607019},
-{"pid":27369,"tid":27407,"ts":326460678945,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1607080,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460678975,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1607111,"id":"0xaf8a6df6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460679006,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":274,"tdur":274,"tts":1607111},
-{"pid":27369,"tid":27407,"ts":326460679006,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":521,"type":10}}},"tts":1607141,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460679036,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":518,"type":1}}},"tts":1607141,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460679067,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1607172,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460679097,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1607202,"id":"0x209"},
-{"pid":27369,"tid":27407,"ts":326460679158,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1607263,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460679280,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1607385,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460679311,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1607416,"id":"0xaf8a6df7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460679311,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":30,"tts":1607416},
-{"pid":27369,"tid":27407,"ts":326460679341,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1607446,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460679372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1607477,"id":"0xaf8a6df0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460679372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":275,"tts":1607477},
-{"pid":27369,"tid":27407,"ts":326460679403,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":525,"type":10}}},"tts":1607508,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460679433,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":522,"type":1}}},"tts":1607538,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460679464,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1607569,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460679464,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1607569,"id":"0x20d"},
-{"pid":27369,"tid":27407,"ts":326460679525,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1607630,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460679647,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1607752,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460679677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1607782,"id":"0xaf8a6df1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460679677,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":305,"tts":1607782},
-{"pid":27369,"tid":27407,"ts":326460679708,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":529,"type":10}}},"tts":1607813,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460679738,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":526,"type":1}}},"tts":1607843,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460679769,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1607874,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460679769,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1607874,"id":"0x211"},
-{"pid":27369,"tid":27407,"ts":326460679830,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1607935,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460679952,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"mts1.google.com",":method":"GET",":path":"/vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1608057,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460679982,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1608087,"id":"0xaf8a6df2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460680043,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":306,"tdur":306,"tts":1608148},
-{"pid":27369,"tid":27407,"ts":326460680074,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":533,"type":10}}},"tts":1608179,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460680104,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":530,"type":1}}},"tts":1608209,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460680135,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1608240,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460680135,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1608240,"id":"0x215"},
-{"pid":27369,"tid":27407,"ts":326460680196,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1608301,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460680318,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1608423,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460680318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1608454,"id":"0xaf8a6d80febbc614"},
-{"pid":27369,"tid":27407,"ts":326460680349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1608484,"id":"0xaf8a6df3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460680379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":305,"tts":1608484},
-{"pid":27369,"tid":27407,"ts":326460680410,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":537,"type":10}}},"tts":1608515,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460680410,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":534,"type":1}}},"tts":1608515,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460680440,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1608545,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460680471,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1608576,"id":"0x219"},
-{"pid":27369,"tid":27407,"ts":326460680532,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1608637,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460680654,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"www.google.com",":method":"GET",":path":"/maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","cookie":"[217 bytes were stripped]","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1608759,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460680654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1608759,"id":"0xaf8a6d81febbc614"},
-{"pid":27369,"tid":27407,"ts":326460680684,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1608789,"id":"0xaf8a6d8cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460680715,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1608820},
-{"pid":27369,"tid":27407,"ts":326460680715,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1608820,"id":"0xba459b02"},
-{"pid":27369,"tid":27407,"ts":326460680776,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1608881,"id":"0xaf8a6d8dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460680776,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":305,"tdur":305,"tts":1608881},
-{"pid":27369,"tid":27407,"ts":326460680837,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":541,"type":10}}},"tts":1608942,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460680837,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":538,"type":1}}},"tts":1608942,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460680867,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1608972,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460680898,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1609003,"id":"0x21d"},
-{"pid":27369,"tid":27407,"ts":326460680959,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1609064,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460681051,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1609156,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460681081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1609186,"id":"0xaf8a6d8efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460681112,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":1709,"tdur":1709,"tts":1609217},
-{"pid":27369,"tid":27407,"ts":326460681142,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":971}},"tts":1609247,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460681234,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1609339,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460681295,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":971,"stream_id":21}},"tts":1609400,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681325,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-971,"window_size":15727669}},"tts":1609430,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681356,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-971,"stream_id":21,"window_size":6290485}},"tts":1609461,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460681478,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1609583,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460681508,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8084,"stream_id":21}},"tts":1609613,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681569,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8084,"window_size":15719585}},"tts":1609705,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681600,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8084,"stream_id":21,"window_size":6282401}},"tts":1609705,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460681661,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":99,"stream_id":21}},"tts":1609766,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681661,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-99,"window_size":15719486}},"tts":1609766,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681692,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-99,"stream_id":21,"window_size":6282302}},"tts":1609797,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460681844,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1609949,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460681905,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":21}},"tts":1610010,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681966,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15711294}},"tts":1610071,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460681997,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":21,"window_size":6274110}},"tts":1610102,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460682027,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1610132,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460682119,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1610224,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460682149,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":21}},"tts":1610254,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682180,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15711060}},"tts":1610285,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682210,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":21,"window_size":6273876}},"tts":1610315,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460682332,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1610468,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460682363,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7859,"stream_id":21}},"tts":1610499,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682424,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7859,"window_size":15703201}},"tts":1610529,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682455,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7859,"stream_id":21,"window_size":6266017}},"tts":1610560,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460682485,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":324,"stream_id":21}},"tts":1610590,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682516,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-324,"window_size":15702877}},"tts":1610621,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682546,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-324,"stream_id":21,"window_size":6265693}},"tts":1610651,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460682668,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1610773,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460682699,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":21}},"tts":1610804,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682760,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15694685}},"tts":1610865,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460682790,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":21,"window_size":6257501}},"tts":1610895,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460682821,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1610926,"id":"0xaf8a6d82febbc614"},
-{"pid":27369,"tid":27407,"ts":326460682851,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1610956,"id":"0xaf8a6d8ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460682851,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":61,"tts":1610956},
-{"pid":27369,"tid":27407,"ts":326460682882,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1610987,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460682912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611017,"id":"0xaf8a6d88febbc614"},
-{"pid":27369,"tid":27407,"ts":326460682943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1611048},
-{"pid":27369,"tid":27407,"ts":326460682943,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1611048,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460682973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611078,"id":"0xaf8a6d89febbc614"},
-{"pid":27369,"tid":27407,"ts":326460683004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1611109},
-{"pid":27369,"tid":27407,"ts":326460683004,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1611109,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460683034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611139,"id":"0xaf8a6d8afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460683065,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1611170},
-{"pid":27369,"tid":27407,"ts":326460683095,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":30663}},"tts":1611200,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460683095,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1611200,"id":"0xaf8a6d83febbc614"},
-{"pid":27369,"tid":27407,"ts":326460683126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611231,"id":"0xaf8a6d8bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460683157,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1611262},
-{"pid":27369,"tid":27407,"ts":326460683157,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1611262,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460683187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611292,"id":"0xaf8a6d84febbc614"},
-{"pid":27369,"tid":27407,"ts":326460683218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":30,"tts":1611323},
-{"pid":27369,"tid":27407,"ts":326460683218,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1611353,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460683279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611384,"id":"0xaf8a6d85febbc614"},
-{"pid":27369,"tid":27407,"ts":326460683279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":183,"tdur":183,"tts":1611384},
-{"pid":27369,"tid":27407,"ts":326460683309,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1611414,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460683340,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":7329,"index":1,"offset":32768,"truncate":true}},"tts":1611445,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460683401,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1611506,"id":"0xaf8a65c4fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460683462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1611567,"id":"0xaf8a6d86febbc614"},
-{"pid":27369,"tid":27407,"ts":326460683492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":2961,"tdur":2960,"tts":1611567},
-{"pid":27369,"tid":27407,"ts":326460683553,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"sent","unique_id":1}},"tts":1611628,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460683584,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1611658,"id":"0xaf8a6d9cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460683736,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i163!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":9,"unidirectional":false}},"tts":1611811,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460683797,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1611872,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460683950,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1612025,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460683981,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1612055,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460683981,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1612086,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460684042,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1612116,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460684133,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1612208,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460684286,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i163!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":11,"unidirectional":false}},"tts":1612360,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460684347,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1612421,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460684408,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1612513,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460684469,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1612543,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460684469,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1612543,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460684621,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i165!3i396!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":13,"unidirectional":false}},"tts":1612696,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460684652,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1612726,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460684744,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1612818,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460684774,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1612849,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460684805,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1612879,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460684927,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i165!3i397!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":15,"unidirectional":false}},"tts":1613001,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460684988,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1613062,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460685079,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1613154,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460685110,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1613184,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460685110,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1613184,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460685262,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i165!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":17,"unidirectional":false}},"tts":1613337,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460685323,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1613428,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460685415,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1613490,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460685446,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1613520,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460685476,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1613551,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460685629,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i163!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":19,"unidirectional":false}},"tts":1613703,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460685659,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1613734,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460685751,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1613825,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460685781,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1613856,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460685781,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1613856,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460685934,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i163!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":21,"unidirectional":false}},"tts":1614008,"id":"0x1b5"},{"pid":27369,"tid":27407,"ts":326460685995,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1614069,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460686056,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1614130,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460686086,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1614161,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460686117,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1614191,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460686270,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts1.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":23,"unidirectional":false}},"tts":1614344,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460686300,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1614375,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460686392,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1614466,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460686422,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1614497,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460686453,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1614527,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460686483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1614558,"id":"0xaf8a6d87febbc614"},
-{"pid":27369,"tid":27407,"ts":326460686483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":733,"tdur":732,"tts":1614558},
-{"pid":27369,"tid":27407,"ts":326460686636,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts0.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i164!3i395!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":25,"unidirectional":false}},"tts":1614710,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460686697,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1614771,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460686788,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1614863,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460686819,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1614893,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460686819,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1614893,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460687002,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: mts0.google.com",":method: GET",":path: /vt?pb=!1m4!1m3!1i10!2i164!3i398!2m3!1e0!2sm!3i306263486!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":27,"unidirectional":false}},"tts":1615077,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460687033,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":132}},"tts":1615138,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460687155,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":153}},"tts":1615229,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460687185,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1615260,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460687185,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1615260,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460687246,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1615321},
-{"pid":27369,"tid":27407,"ts":326460687246,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1615321},
-{"pid":27369,"tid":27407,"ts":326460687277,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1615351,"id":"0xccc51a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460687307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1615382,"id":"0xaf8a60d3feb47934"},
-{"pid":27369,"tid":27407,"ts":326460687399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1615473,"id":"0xaf8a6d80febbc614"},
-{"pid":27369,"tid":27407,"ts":326460687399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":732,"tdur":733,"tts":1615473},
-{"pid":27369,"tid":27407,"ts":326460687582,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999",":scheme: https","accept: */*","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":3,"stream_id":17,"unidirectional":false}},"tts":1615656,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460687643,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":183}},"tts":1615717,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460687735,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":204}},"tts":1615809,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460687765,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1615840,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460687765,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1615870,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460687918,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.439736%2C-122.107266,sp:0.56699x0.52734,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zdq8",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":19,"unidirectional":false}},"tts":1615992,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460687979,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":185}},"tts":1616053,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460688040,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":206}},"tts":1616114,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460688101,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1616175,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460688101,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1616175,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460688131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1616206,"id":"0xaf8a6d81febbc614"},
-{"pid":27369,"tid":27407,"ts":326460688131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":580,"tdur":580,"tts":1616206},
-{"pid":27369,"tid":27407,"ts":326460688192,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"sent","unique_id":1}},"tts":1616267,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460688192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1616267,"id":"0xaf8a6d9ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460688375,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: www.google.com",":method: GET",":path: /maps/vt?pb=!1m4!1m3!1i10!2i163!3i395!1m4!1m3!1i10!2i163!3i396!1m4!1m3!1i10!2i163!3i397!1m4!1m3!1i10!2i163!3i398!1m4!1m3!1i10!2i164!3i395!1m4!1m3!1i10!2i165!3i395!1m4!1m3!1i10!2i164!3i396!1m4!1m3!1i10!2i164!3i397!1m4!1m3!1i10!2i165!3i396!1m4!1m3!1i10!2i165!3i397!1m4!1m3!1i10!2i164!3i398!1m4!1m3!1i10!2i165!3i398!2m3!1e0!2sm!3i306264207!3m9!2sen-US!3sUS!5e78!12m1!1e47!12m3!1e37!2m1!1ssmartmaps!4e3",":scheme: https","accept: */*","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","cookie: [217 bytes were stripped]","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":2,"stream_id":27,"unidirectional":false}},"tts":1616450,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460688437,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":351}},"tts":1616511,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460688528,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":372}},"tts":1616603,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460688559,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1616633,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460688559,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1616633,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460688620,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1616694,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460688681,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1616755,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460688742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1616816,"id":"0xaf8a6d82febbc614"},
-{"pid":27369,"tid":27407,"ts":326460688742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":702,"tdur":672,"tts":1616816},
-{"pid":27369,"tid":27407,"ts":326460688772,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":971}},"tts":1616847,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460688833,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7378}},"tts":1616908,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460688864,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":971,"stream_id":21}},"tts":1616938,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460688894,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-971,"window_size":15693714}},"tts":1616969,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460688925,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-971,"stream_id":21,"window_size":6256530}},"tts":1616999,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460689077,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7791}},"tts":1617152,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460689139,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":6897,"stream_id":21}},"tts":1617213,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689139,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-6897,"window_size":15686817}},"tts":1617244,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689169,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-6897,"stream_id":21,"window_size":6249633}},"tts":1617244,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460689200,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":868,"stream_id":21}},"tts":1617274,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689230,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-868,"window_size":15685949}},"tts":1617305,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689261,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-868,"stream_id":21,"window_size":6248765}},"tts":1617335,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460689291,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":21}},"tts":1617366,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689352,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":22}},"tts":1617427,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689383,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1617457,"id":"0xaf8a6d98febbc614"},
-{"pid":27369,"tid":27407,"ts":326460689413,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":22}},"tts":1617488,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460689444,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":3387,"tdur":3388,"tts":1617518},
-{"pid":27369,"tid":27407,"ts":326460689535,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1344}},"tts":1617610,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460689627,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1281}},"tts":1617701,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460689657,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1617732,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460689718,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"received","unique_id":1}},"tts":1617793,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460689902,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7536","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 42783","content-type: image/png","date: Mon, 22 Jun 2015 16:05:53 GMT","expires: Sat, 05 Mar 2016 20:56:15 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":11}},"tts":1617976,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460690146,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7536","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 42783","content-type: image/png","date: Mon, 22 Jun 2015 16:05:53 GMT","expires: Sat, 05 Mar 2016 20:56:15 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1618220,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690176,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1618251,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690207,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1618312,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690298,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1618403,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690359,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1618434,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690390,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1618464,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690420,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1618495,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690420,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1618495,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690451,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1618525,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690481,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1618556,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690481,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1618556,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690512,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1618586,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690512,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1618617,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690542,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1618617,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460690573,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1618647,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690603,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1618678,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690603,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1618678,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690695,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1618770,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690726,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1618831,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460690817,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1618892,"id":"0xaf8a60ecfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460690970,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1619044,"id":"0xba459f02"},
-{"pid":27369,"tid":27407,"ts":326460691122,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1619197,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460691153,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1619227,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460691214,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":11}},"tts":1619288,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460691244,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1619319,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460691275,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":11,"window_size":6290278}},"tts":1619349,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460691305,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1619380,"id":"0xaf8a6d99febbc614"},
-{"pid":27369,"tid":27407,"ts":326460691428,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1619502,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460691580,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":15704}},"tts":1619655,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460691611,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":11}},"tts":1619685,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460691641,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726275}},"tts":1619716,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460691672,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":11,"window_size":6289091}},"tts":1619746,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460691794,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1619868,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460691824,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":11}},"tts":1619899,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460691885,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15718083}},"tts":1619960,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460691916,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":11,"window_size":6280899}},"tts":1619990,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460692038,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7239}},"tts":1620112,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460692130,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4832}},"tts":1620204,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460692160,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5827,"stream_id":11}},"tts":1620235,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692191,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5827,"window_size":15712256}},"tts":1620296,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692221,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5827,"stream_id":11,"window_size":6275072}},"tts":1620296,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460692252,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1403,"stream_id":11}},"tts":1620326,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692282,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1403,"window_size":15710853}},"tts":1620357,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692313,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1403,"stream_id":11,"window_size":6273669}},"tts":1620387,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460692435,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4748}},"tts":1620509,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460692526,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1620601,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460692557,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4748,"stream_id":11}},"tts":1620631,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692587,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4748,"window_size":15706105}},"tts":1620662,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692618,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4748,"stream_id":11,"window_size":6268921}},"tts":1620692,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460692679,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1620753,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460692740,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":11}},"tts":1620814,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692770,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15703731}},"tts":1620845,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460692770,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":11,"window_size":6266547}},"tts":1620845,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460692831,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1620906,"id":"0xaf8a6d83febbc614"},
-{"pid":27369,"tid":27407,"ts":326460692831,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":825,"tdur":824,"tts":1620906},
-{"pid":27369,"tid":27407,"ts":326460692862,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1620936,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460692893,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":30663}},"tts":1620967,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460692954,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1621028,"id":"0xba45a002"},
-{"pid":27369,"tid":27407,"ts":326460693015,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1621089,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460693015,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1621089,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460693045,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1621120,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460693045,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1621120,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460693076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1621150,"id":"0xaf8a6d9afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460693106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1621181,"id":"0xaf8a6d9bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460693167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1621242,"id":"0xaf8a60edfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460693320,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1621394,"id":"0xba45a102"},
-{"pid":27369,"tid":27407,"ts":326460693381,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1621455,"id":"0xaf8a60eefeb47934"},
-{"pid":27369,"tid":27407,"ts":326460693594,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1621669,"id":"0x1e6"},
-{"pid":27369,"tid":27407,"ts":326460693686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1621761,"id":"0xaf8a6d9dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460693686,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1621761},
-{"pid":27369,"tid":27407,"ts":326460693717,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":7329}},"tts":1621791,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460693747,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1621822,"id":"0xaf8a6d94febbc614"},
-{"pid":27369,"tid":27407,"ts":326460693778,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1621852},
-{"pid":27369,"tid":27407,"ts":326460693808,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1621883},
-{"pid":27369,"tid":27407,"ts":326460693808,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1621883,"id":"0xccc51b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460693839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1621913,"id":"0xaf8a6d9efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460693839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1621913},
-{"pid":27369,"tid":27407,"ts":326460693869,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1621944,"id":"0xba459e02"},
-{"pid":27369,"tid":27407,"ts":326460693930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1622005,"id":"0xaf8a6d98febbc614"},
-{"pid":27369,"tid":27407,"ts":326460693930,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":214,"tdur":213,"tts":1622005},
-{"pid":27369,"tid":27407,"ts":326460693991,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1622066,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460694083,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1622157,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460694144,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1622218,"id":"0xaf8a6d9afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460694144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":91,"tts":1622249},
-{"pid":27369,"tid":27407,"ts":326460694174,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1622249,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460694205,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1622279,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460694235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1622310,"id":"0xaf8a65c5fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460694266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460692},"tts":1622340,"id":"0xaf8a6d99febbc614"},
-{"pid":27369,"tid":27407,"ts":326460694296,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":30,"tts":1622371},
-{"pid":27369,"tid":27407,"ts":326460694296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1622371,"id":"0xaf8a6d95febbc614"},
-{"pid":27369,"tid":27407,"ts":326460694327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1622401,"id":"0xaf8a6d9bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460694327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":31,"tts":1622401},
-{"pid":27369,"tid":27407,"ts":326460694357,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1622432,"id":"0xaf8a6d94febbc614"},
-{"pid":27369,"tid":27407,"ts":326460694357,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":1008,"tdur":1007,"tts":1622432},
-{"pid":27369,"tid":27407,"ts":326460694388,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1622462,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460694419,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":7329}},"tts":1622493,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460694449,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1622524,"id":"0xba45a202"},
-{"pid":27369,"tid":27407,"ts":326460694510,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1622585,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460694571,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":971,"window_size":15686920}},"tts":1622646,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694632,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8084,"window_size":15695004}},"tts":1622707,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694663,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":99,"window_size":15695103}},"tts":1622737,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694724,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15703295}},"tts":1622798,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694754,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15703529}},"tts":1622829,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694815,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7859,"window_size":15711388}},"tts":1622890,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694846,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":324,"window_size":15711712}},"tts":1622920,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694876,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7005,"window_size":15718717}},"tts":1622951,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460694907,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1622981,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460694907,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1622981,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460694937,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":40097,"truncate":true}},"tts":1623012,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460695090,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1623164,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460695121,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":40097,"truncate":true}},"tts":1623195,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460695243,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1623317,"id":"0xaf8a65c6fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460695273,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1623378,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460695304,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1623409,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460695365,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1623439,"id":"0xaf8a6d97febbc614"},
-{"pid":27369,"tid":27407,"ts":326460695395,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":5830,"tdur":5615,"tts":1623470},
-{"pid":27369,"tid":27407,"ts":326460695517,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9214}},"tts":1623622,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460695700,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1623775,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460695731,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7859,"stream_id":11}},"tts":1623805,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460695761,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7859,"window_size":15695872}},"tts":1623836,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460695792,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7859,"stream_id":11,"window_size":6258688}},"tts":1623866,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460695853,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":324,"stream_id":11}},"tts":1623927,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460695884,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-324,"window_size":15695548}},"tts":1623958,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460695884,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-324,"stream_id":11,"window_size":6258364}},"tts":1623958,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460695945,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":854}},"tts":1624019,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696036,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1624111,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696067,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":854,"stream_id":11}},"tts":1624141,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696097,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-854,"window_size":15694694}},"tts":1624172,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696128,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-854,"stream_id":11,"window_size":6257510}},"tts":1624202,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460696219,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1624294,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696311,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1624385,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696341,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":11}},"tts":1624416,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696372,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15691133}},"tts":1624446,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696402,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":11,"window_size":6253949}},"tts":1624477,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460696463,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1624538,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696555,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1624629,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696585,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":11}},"tts":1624660,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696616,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15688759}},"tts":1624690,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696647,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":11,"window_size":6251575}},"tts":1624721,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460696708,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1624782,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696799,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1843}},"tts":1624874,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460696830,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":11}},"tts":1624904,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696860,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15686385}},"tts":1624935,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460696891,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":11,"window_size":6249201}},"tts":1624965,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460696952,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1759}},"tts":1625026,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460697043,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1625118,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460697074,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":528,"stream_id":11}},"tts":1625179,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697104,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-528,"window_size":15685857}},"tts":1625179,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697135,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-528,"stream_id":11,"window_size":6248673}},"tts":1625240,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460697165,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":11}},"tts":1625270,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697226,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15687035}},"tts":1625301,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697287,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15688222}},"tts":1625362,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697348,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15696414}},"tts":1625423,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697379,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5827,"window_size":15702241}},"tts":1625484,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697440,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1403,"window_size":15703644}},"tts":1625515,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697501,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4748,"window_size":15708392}},"tts":1625576,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697532,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15710766}},"tts":1625606,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697593,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7859,"window_size":15718625}},"tts":1625667,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460697623,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1625698,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460697654,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1625728,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460697654,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1625759,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460697776,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1625850,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460697806,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1625911,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460697959,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1626033,"id":"0xaf8a65c7fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460698020,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1626094,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460698050,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1626125,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460698142,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1626216,"id":"0xba45a302"},
-{"pid":27369,"tid":27407,"ts":326460698203,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1626278,"id":"0xba45a402"},
-{"pid":27369,"tid":27407,"ts":326460698264,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1626339,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460698295,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":324,"window_size":15718949}},"tts":1626369,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698356,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":854,"window_size":15719803}},"tts":1626430,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698386,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15723364}},"tts":1626461,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698417,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15725738}},"tts":1626491,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698447,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15728112}},"tts":1626522,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698478,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":528,"window_size":15728640}},"tts":1626552,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698508,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1626583,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460698539,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1626613,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460698569,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":10015,"index":1,"offset":32768,"truncate":true}},"tts":1626644,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460698661,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":8}},"tts":1626735,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698691,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1626766,"id":"0xaf8a6d92febbc614"},
-{"pid":27369,"tid":27407,"ts":326460698722,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":8}},"tts":1626796,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460698905,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7536","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 14614","content-type: image/png","date: Mon, 22 Jun 2015 16:05:53 GMT","expires: Sat, 05 Mar 2016 20:56:15 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":9}},"tts":1626980,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460699119,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7536","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 14614","content-type: image/png","date: Mon, 22 Jun 2015 16:05:53 GMT","expires: Sat, 05 Mar 2016 20:56:15 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1627193,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699180,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1627254,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699210,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1627285,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699302,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1627407,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699363,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1627437,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699393,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1627468,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699424,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1627498,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699424,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1627498,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699454,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1627529,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699485,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1627559,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699485,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1627559,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699515,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1627590,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699515,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1627590,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699546,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1627620,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460699576,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1627651,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699607,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1627681,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699607,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1627681,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699699,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1627773,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699729,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1627804,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460699790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1627865,"id":"0xaf8a60e8feb47934"},
-{"pid":27369,"tid":27407,"ts":326460700034,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1628109,"id":"0xba45a502"},
-{"pid":27369,"tid":27407,"ts":326460700401,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1628292,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460700431,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1628322,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460700553,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":9}},"tts":1628414,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460700584,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1628444,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460700614,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":9,"window_size":6290278}},"tts":1628475,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460700645,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1628506,"id":"0xaf8a6d93febbc614"},
-{"pid":27369,"tid":27407,"ts":326460700736,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1628597,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460700889,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1628750,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460700919,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":9}},"tts":1628780,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460700950,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15725088}},"tts":1628811,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460700980,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":9,"window_size":6287904}},"tts":1628841,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460701072,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1628933,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460701133,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":9}},"tts":1628994,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460701133,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15721527}},"tts":1629024,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460701164,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":9,"window_size":6284343}},"tts":1629024,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460701225,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":92,"tts":1629085},
-{"pid":27369,"tid":27407,"ts":326460701255,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":30,"tts":1629116},
-{"pid":27369,"tid":27407,"ts":326460701255,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1629116,"id":"0xccc51c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460701286,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":1629146},
-{"pid":27369,"tid":27407,"ts":326460701286,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1629146,"id":"0xccc51d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460701347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1629207,"id":"0xaf8a6d96febbc614"},
-{"pid":27369,"tid":27407,"ts":326460701377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1629238},
-{"pid":27369,"tid":27407,"ts":326460701377,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1629238,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460701408,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1629269,"id":"0x1e8"},
-{"pid":27369,"tid":27407,"ts":326460701438,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460695},"tts":1629299,"id":"0xaf8a6d95febbc614"},
-{"pid":27369,"tid":27407,"ts":326460701469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1629330},
-{"pid":27369,"tid":27407,"ts":326460701469,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1629330,"id":"0xaf8a6d97febbc614"},
-{"pid":27369,"tid":27407,"ts":326460701469,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":366,"tdur":336,"tts":1629360},
-{"pid":27369,"tid":27407,"ts":326460701499,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1629360,"id":"0xba45a602"},
-{"pid":27369,"tid":27407,"ts":326460701560,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1629421,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460701621,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15719904}},"tts":1629482,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460701652,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":971,"window_size":15720875}},"tts":1629513,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460701713,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":6897,"window_size":15727772}},"tts":1629574,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460701743,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":868,"window_size":15728640}},"tts":1629604,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460701743,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1629635,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460701774,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1629635,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460701804,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9923,"index":1,"offset":72865,"truncate":true}},"tts":1629665,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460701835,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1629696,"id":"0xaf8a6d90febbc614"},
-{"pid":27369,"tid":27407,"ts":326460701835,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":183,"tdur":183,"tts":1629696},
-{"pid":27369,"tid":27407,"ts":326460701866,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1629726,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460701896,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9923,"index":1,"offset":72865,"truncate":true}},"tts":1629757,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460701957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1629818,"id":"0xaf8a65c0fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460702018,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1629879,"id":"0xaf8a6d91febbc614"},
-{"pid":27369,"tid":27407,"ts":326460702049,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":183,"tdur":184,"tts":1629909},
-{"pid":27369,"tid":27407,"ts":326460702079,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1629971,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460702110,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":10015,"index":1,"offset":32768,"truncate":true}},"tts":1630001,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460702201,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1630062,"id":"0xaf8a65c1fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460702232,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1630093,"id":"0xaf8a6d92febbc614"},
-{"pid":27369,"tid":27407,"ts":326460702262,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":183,"tdur":183,"tts":1630123},
-{"pid":27369,"tid":27407,"ts":326460702293,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1630154,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702415,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1630276,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702476,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":946,"tdur":946,"tts":1630337},
-{"pid":27369,"tid":27407,"ts":326460702506,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1630367,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702567,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1630428,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702659,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1630520,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702690,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":9}},"tts":1630550,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460702720,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15720340}},"tts":1630581,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460702751,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":9,"window_size":6283156}},"tts":1630611,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460702812,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1630672,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702873,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1630734,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460702903,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":9}},"tts":1630764,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460702934,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15719153}},"tts":1630795,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460702934,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":9,"window_size":6281969}},"tts":1630795,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460702995,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1630856,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460703086,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1630978,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460703147,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":9}},"tts":1631008,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460703147,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15717966}},"tts":1631039,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460703178,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":9,"window_size":6280782}},"tts":1631039,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460703269,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1631130,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460703300,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":9}},"tts":1631161,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460703330,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15715592}},"tts":1631191,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460703361,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":9,"window_size":6278408}},"tts":1631222,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460703453,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460701},"tts":1631313,"id":"0xaf8a6d93febbc614"},
-{"pid":27369,"tid":27407,"ts":326460703453,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":31,"tts":1631313},
-{"pid":27369,"tid":27407,"ts":326460703483,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1631344,"id":"0xaf8a6daefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460703483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1631344,"id":"0xaf8a6dacfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460703483,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":92,"tdur":61,"tts":1631374},
-{"pid":27369,"tid":27407,"ts":326460703514,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9923}},"tts":1631374,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460703544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1631405,"id":"0xaf8a6daffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460703575,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":62,"tts":1631435},
-{"pid":27369,"tid":27407,"ts":326460703605,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1631466},
-{"pid":27369,"tid":27407,"ts":326460703605,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1631466,"id":"0xccc51e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460703666,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1631527,"id":"0xaf8a6dadfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460703666,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1631527},
-{"pid":27369,"tid":27407,"ts":326460703697,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":10015}},"tts":1631558,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460703697,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1631558,"id":"0xaf8a6da8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460703758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1631619,"id":"0xaf8a6daffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460703758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":824,"tdur":824,"tts":1631619},
-{"pid":27369,"tid":27407,"ts":326460703788,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1631649,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460703819,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":9923}},"tts":1631680,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460703880,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1631741,"id":"0xba45a702"},
-{"pid":27369,"tid":27407,"ts":326460703941,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1631802,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460703971,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1631832,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460704002,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1631863,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460704002,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1631863,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460704032,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1631893,"id":"0xaf8a6da9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460704063,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1631924,"id":"0xaf8a6daafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460704093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1631985,"id":"0xaf8a60e9feb47934"},
-{"pid":27369,"tid":27407,"ts":326460704277,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1632137,"id":"0xba45a802"},
-{"pid":27369,"tid":27407,"ts":326460704338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1632198,"id":"0xaf8a60eafeb47934"},
-{"pid":27369,"tid":27407,"ts":326460704521,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1632382,"id":"0x1e2"},
-{"pid":27369,"tid":27407,"ts":326460704612,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460704},"tts":1632473,"id":"0xaf8a6daefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460704612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1038,"tdur":1038,"tts":1632473},
-{"pid":27369,"tid":27407,"ts":326460704673,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15716770}},"tts":1632534,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460704704,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":9,"window_size":6279586}},"tts":1632565,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460704765,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15719144}},"tts":1632626,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460704795,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":9,"window_size":6281960}},"tts":1632656,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460704857,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15722705}},"tts":1632717,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460704887,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3561,"stream_id":9,"window_size":6285521}},"tts":1632748,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460704918,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15723892}},"tts":1632778,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460704948,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":9,"window_size":6286708}},"tts":1632809,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460704979,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725079}},"tts":1632839,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460705040,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":9,"window_size":6287895}},"tts":1632900,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705070,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15726266}},"tts":1632931,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460705101,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":9,"window_size":6289082}},"tts":1632961,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705131,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15728640}},"tts":1632992,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460705162,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":9,"window_size":6291456}},"tts":1633023,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705192,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1633053,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705192,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1633053,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705223,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13048,"index":1,"offset":0,"truncate":true}},"tts":1633084,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460705284,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13048}},"tts":1633145,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460705314,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13048,"index":1,"offset":0,"truncate":true}},"tts":1633175,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460705375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1633236,"id":"0xaf8a65c2fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460705406,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1633297,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705436,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":13048}},"tts":1633328,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705497,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1633358,"id":"0xba45a902"},
-{"pid":27369,"tid":27407,"ts":326460705558,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1633419,"id":"0xba45aa02"},
-{"pid":27369,"tid":27407,"ts":326460705620,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1633480,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460705650,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1633511,"id":"0xaf8a6da8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460705650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":733,"tdur":732,"tts":1633511},
-{"pid":27369,"tid":27407,"ts":326460705681,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1633541,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460705711,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":10015}},"tts":1633572,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460705742,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1633602,"id":"0xba45ab02"},
-{"pid":27369,"tid":27407,"ts":326460705803,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1633663,"id":"0x1ee"},
-{"pid":27369,"tid":27369,"ts":326460705131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":122,"tdur":122,"tts":2328521},
-{"pid":27369,"tid":27369,"ts":326460705162,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2328551},
-{"pid":27369,"tid":27369,"ts":326460705162,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":31,"tts":2328551},
-{"pid":27369,"tid":27369,"ts":326460705192,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":30,"tts":2328582},
-{"pid":27369,"tid":27369,"ts":326460705223,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2328612},
-{"pid":27369,"tid":27369,"ts":326460705345,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2328734},
-{"pid":27369,"tid":27369,"ts":326460706138,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2328887},
-{"pid":27369,"tid":27369,"ts":326460706138,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":306,"tdur":31,"tts":2328887},
-{"pid":27369,"tid":27369,"ts":326460706535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2328979,"id":"0xaf8a60ebfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460706535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":3174,"tdur":579,"tts":2328979},
-{"pid":27369,"tid":27369,"ts":326460709801,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2329650},
-{"pid":27369,"tid":27369,"ts":326460709923,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2329772},
-{"pid":27369,"tid":27369,"ts":326460709953,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2329803,"id":"0xaf8a60e4feb47934"},
-{"pid":27369,"tid":27369,"ts":326460709953,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":153,"tdur":152,"tts":2329803},
-{"pid":27369,"tid":27369,"ts":326460709984,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":61,"tdur":61,"tts":2329833},
-{"pid":27369,"tid":27369,"ts":326460709984,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":61,"tdur":61,"tts":2329833},
-{"pid":27369,"tid":27369,"ts":326460710045,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2329894},
-{"pid":27369,"tid":27369,"ts":326460710075,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2329925},
-{"pid":27369,"tid":27369,"ts":326460710198,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2330047},
-{"pid":27369,"tid":27369,"ts":326460710289,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2330138},
-{"pid":27369,"tid":27369,"ts":326460710289,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2330169,"id":"0xaf8a60e5feb47934"},
-{"pid":27369,"tid":27369,"ts":326460710320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":244,"tdur":244,"tts":2330169},
-{"pid":27369,"tid":27369,"ts":326460710320,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":244,"tdur":244,"tts":2330169},
-{"pid":27369,"tid":27369,"ts":326460710381,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":152,"tdur":153,"tts":2330230},
-{"pid":27369,"tid":27369,"ts":326460710686,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2330474},
-{"pid":27369,"tid":27369,"ts":326460710777,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2330596},
-{"pid":27369,"tid":27369,"ts":326460710808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2330596,"id":"0xaf8a60e6feb47934"},
-{"pid":27369,"tid":27369,"ts":326460710838,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":580,"tdur":549,"tts":2330627},
-{"pid":27369,"tid":27369,"ts":326460711510,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2331268},
-{"pid":27369,"tid":27369,"ts":326460718438,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2331481},
-{"pid":27369,"tid":27369,"ts":326460718438,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2331481},
-{"pid":27369,"tid":27369,"ts":326460718499,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2331481,"id":"0xaf8a60e7feb47934"},
-{"pid":27369,"tid":27369,"ts":326460718530,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":152,"tdur":122,"tts":2331512},
-{"pid":27369,"tid":27369,"ts":326460718530,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2331512},
-{"pid":27369,"tid":27369,"ts":326460718560,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2331542},
-{"pid":27369,"tid":27369,"ts":326460718560,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":92,"tdur":61,"tts":2331542},
-{"pid":27369,"tid":27369,"ts":326460718591,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":61,"tdur":30,"tts":2331573},
-{"pid":27369,"tid":27369,"ts":326460718591,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2331573},
-{"pid":27369,"tid":27369,"ts":326460718774,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2331725},
-{"pid":27369,"tid":27369,"ts":326460718865,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2331817},
-{"pid":27369,"tid":27369,"ts":326460718865,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2331817,"id":"0xaf8a60e0feb47934"},
-{"pid":27369,"tid":27369,"ts":326460718896,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":152,"tdur":153,"tts":2331847},
-{"pid":27369,"tid":27369,"ts":326460719110,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2332061},
-{"pid":27369,"tid":27369,"ts":326460719384,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2332214},
-{"pid":27369,"tid":27369,"ts":326460719415,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2332244,"id":"0xaf8a60e1feb47934"},
-{"pid":27369,"tid":27369,"ts":326460719415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":122,"tdur":92,"tts":2332244},
-{"pid":27369,"tid":27369,"ts":326460719598,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2332427},
-{"pid":27369,"tid":27369,"ts":326460719995,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2332702},
-{"pid":27369,"tid":27369,"ts":326460719995,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2332702},
-{"pid":27369,"tid":27369,"ts":326460720086,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2332733},
-{"pid":27369,"tid":27369,"ts":326460720147,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2332794},
-{"pid":27369,"tid":27369,"ts":326460720147,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460719489},"dur":122,"tdur":122,"tts":2332794},
-{"pid":27369,"tid":27369,"ts":326460720208,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2332855},
-{"pid":27369,"tid":27369,"ts":326460720239,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2332885,"id":"0xaf8a6dbafebbc614"},
-{"pid":27369,"tid":27369,"ts":326460720391,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2333038},
-{"pid":27369,"tid":27369,"ts":326460720483,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2333129},
-{"pid":27369,"tid":27369,"ts":326460726801,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2333312},
-{"pid":27369,"tid":27369,"ts":326460726862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2333374,"id":"0xaf8a60e2feb47934"},
-{"pid":27369,"tid":27369,"ts":326460726862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":152,"tdur":152,"tts":2333374},
-{"pid":27369,"tid":27369,"ts":326460727075,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2333587},
-{"pid":27369,"tid":27369,"ts":326460733088,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2333770},
-{"pid":27369,"tid":27369,"ts":326460733118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2333801,"id":"0xaf8a60e3feb47934"},
-{"pid":27369,"tid":27369,"ts":326460733118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":183,"tdur":183,"tts":2333801},
-{"pid":27369,"tid":27369,"ts":326460733363,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2334045},
-{"pid":27369,"tid":27407,"ts":326460705803,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1633694,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460705833,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1633694,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460705864,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1633725,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460705894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1633755,"id":"0xaf8a6da4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460705894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1633786,"id":"0xaf8a6da5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460705955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1633816,"id":"0xaf8a60ebfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460706108,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1633969,"id":"0xba45ac02"},
-{"pid":27369,"tid":27407,"ts":326460706169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1634030,"id":"0xaf8a60e4feb47934"},
-{"pid":27369,"tid":27407,"ts":326460706321,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1634182,"id":"0x1ee"},
-{"pid":27369,"tid":27407,"ts":326460706383,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1634243},
-{"pid":27369,"tid":27407,"ts":326460706413,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":92,"tdur":91,"tts":1634274},
-{"pid":27369,"tid":27407,"ts":326460706444,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1634304,"id":"0xccc51f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460706444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1634304,"id":"0xaf8a60e5feb47934"},
-{"pid":27369,"tid":27407,"ts":326460706535,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1634396,"id":"0xaf8a6da9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460706535,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":122,"tts":1634396},
-{"pid":27369,"tid":27407,"ts":326460706566,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1634426,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460706596,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1634457,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460706627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1634488,"id":"0xaf8a65c3fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460706657,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1634518,"id":"0xaf8a6daafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460706688,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1634549},
-{"pid":27369,"tid":27407,"ts":326460706688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1634579,"id":"0xaf8a6dabfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460706718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":31,"tdur":31,"tts":1634579},{"pid":27369,"tid":27407,"ts":326460706749,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13048}},"tts":1634610,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460706779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1634640,"id":"0xaf8a6da4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460706779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":183,"tdur":153,"tts":1634640},
-{"pid":27369,"tid":27407,"ts":326460706810,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1634671,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460706840,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1634701,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460706871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1634732,"id":"0xaf8a65dcfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460706962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1634823,"id":"0xaf8a6da5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460706962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":31,"tdur":31,"tts":1634823},
-{"pid":27369,"tid":27407,"ts":326460706993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1634854,"id":"0xaf8a6da6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460706993,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":91,"tdur":91,"tts":1634854},
-{"pid":27369,"tid":27407,"ts":326460707023,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1634884,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460707054,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1634915,"id":"0x1e4"},
-{"pid":27369,"tid":27407,"ts":326460707329,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1635006,"id":"0xaf8a6da7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460707329,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1635006},
-{"pid":27369,"tid":27407,"ts":326460707359,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1635037,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460707359,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1635067,"id":"0x1f0"},
-{"pid":27369,"tid":27407,"ts":326460707420,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":2167,"tdur":1587,"tts":1635098},
-{"pid":27369,"tid":27407,"ts":326460707542,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1646}},"tts":1635251,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460707634,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1583}},"tts":1635312,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460707695,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1566,"stream_id":9}},"tts":1635403,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460707725,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1566,"window_size":15727074}},"tts":1635434,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460707786,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1566,"stream_id":9,"window_size":6289890}},"tts":1635464,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460707786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1635464,"id":"0xaf8a6da0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460707817,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":9}},"tts":1635495,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460707878,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1566,"window_size":15728640}},"tts":1635556,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460707909,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1635586,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460707939,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1635617,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460707939,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1566,"index":1,"offset":13048,"truncate":true}},"tts":1635617,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460707970,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1566}},"tts":1635647,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460708000,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1566,"index":1,"offset":13048,"truncate":true}},"tts":1635678,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460708061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1635739,"id":"0xaf8a65ddfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460708336,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1635769,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460708366,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1566}},"tts":1635800,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460708427,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1635861,"id":"0xba45ad02"},
-{"pid":27369,"tid":27407,"ts":326460708702,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1635922,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460708733,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1635952,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460708733,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1635983,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460708763,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1635983,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460708794,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1636014,"id":"0xaf8a6da2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460708824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1636044,"id":"0xaf8a6da3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460708855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1636075,"id":"0xaf8a60e6feb47934"},
-{"pid":27369,"tid":27407,"ts":326460709007,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1636227,"id":"0xba45ae02"},
-{"pid":27369,"tid":27407,"ts":326460709221,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1636319,"id":"0xaf8a60e7feb47934"},
-{"pid":27369,"tid":27407,"ts":326460709374,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1636471,"id":"0x1ea"},
-{"pid":27369,"tid":27407,"ts":326460709496,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":10}},"tts":1636593,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460709526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1636624,"id":"0xaf8a6dbcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460709526,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":10}},"tts":1636624,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460709587,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1636685},
-{"pid":27369,"tid":27407,"ts":326460709618,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1636716},
-{"pid":27369,"tid":27407,"ts":326460709618,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1636716,"id":"0xccc52002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460709648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1636746},
-{"pid":27369,"tid":27407,"ts":326460709648,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1636746,"id":"0xccc52102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460709648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":0,"tts":1636777},
-{"pid":27369,"tid":27407,"ts":326460709679,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1636777,"id":"0xccc52202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460709709,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":122},"dur":214,"tdur":183,"tts":1636807},
-{"pid":27369,"tid":27407,"ts":326460709770,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1636868,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460709801,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1636899,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460709862,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"received","unique_id":1}},"tts":1636960,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460709923,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":133},"dur":3052,"tdur":3052,"tts":1637021},
-{"pid":27369,"tid":27407,"ts":326460710106,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1637204,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460710259,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1637356,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460710472,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7804","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 78746","content-type: image/png","date: Mon, 22 Jun 2015 16:01:25 GMT","expires: Sat, 05 Mar 2016 20:51:47 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":25}},"tts":1637570,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460710716,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7804","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 78746","content-type: image/png","date: Mon, 22 Jun 2015 16:01:25 GMT","expires: Sat, 05 Mar 2016 20:51:47 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1637814,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460710747,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1637845,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460710808,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1637906,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460710961,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1638058,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711022,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1638119,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711022,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1638119,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711052,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1638150,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711083,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1638180,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711113,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1638211,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711144,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1638242,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711144,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1638242,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711174,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1638272,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711205,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1638303,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711235,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1638333,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460711266,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1638364,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711296,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1638394,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711296,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1638425,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711418,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1638516,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711449,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1638547,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711510,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1638608,"id":"0xaf8a60e0feb47934"},
-{"pid":27369,"tid":27407,"ts":326460711663,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1638760,"id":"0xba45af02"},
-{"pid":27369,"tid":27407,"ts":326460711785,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1638882,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711815,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1638913,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711876,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8106,"stream_id":25}},"tts":1638974,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460711907,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8106,"window_size":15720534}},"tts":1639005,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460711937,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8106,"stream_id":25,"window_size":6283350}},"tts":1639035,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460711968,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1639066,"id":"0xaf8a6dbdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460712090,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1639188,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460712120,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":25}},"tts":1639218,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712151,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15712342}},"tts":1639249,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712181,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":25,"window_size":6275158}},"tts":1639279,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460712212,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":311}},"tts":1639310,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460712365,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":10474}},"tts":1639462,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460712395,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":86,"stream_id":25}},"tts":1639493,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712426,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-86,"window_size":15712256}},"tts":1639523,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712456,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-86,"stream_id":25,"window_size":6275072}},"tts":1639554,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460712487,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":216,"stream_id":25}},"tts":1639584,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712487,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-216,"window_size":15712040}},"tts":1639584,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712517,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-216,"stream_id":25,"window_size":6274856}},"tts":1639615,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460712670,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1639768,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460712700,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":25}},"tts":1639798,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712731,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15703848}},"tts":1639829,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712761,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":25,"window_size":6266664}},"tts":1639859,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460712822,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2491}},"tts":1639920,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460712883,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2491,"stream_id":25}},"tts":1639981,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712914,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2491,"window_size":15701357}},"tts":1640012,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460712944,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2491,"stream_id":25,"window_size":6264173}},"tts":1640042,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460713005,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":123,"tdur":92,"tts":1640103},
-{"pid":27369,"tid":27407,"ts":326460713036,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1640134},
-{"pid":27369,"tid":27407,"ts":326460713036,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1640134,"id":"0xccc52302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460713066,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1640164},
-{"pid":27369,"tid":27407,"ts":326460713097,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1640195,"id":"0xccc52402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460713128,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":2594,"tdur":2595,"tts":1640225},
-{"pid":27369,"tid":27407,"ts":326460713250,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8504}},"tts":1640347,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460713372,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1640470,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460713555,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7536","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 63498","content-type: image/png","date: Mon, 22 Jun 2015 16:05:53 GMT","expires: Sat, 05 Mar 2016 20:56:15 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":19}},"tts":1640653,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460713768,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7536","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 63498","content-type: image/png","date: Mon, 22 Jun 2015 16:05:53 GMT","expires: Sat, 05 Mar 2016 20:56:15 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1640866,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460713829,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1640927,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460713860,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1640958,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460713952,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1641049,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714013,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1641110,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714043,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1641141,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714074,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1641171,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714074,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1641171,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714104,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1641202,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714135,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1641233,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714135,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1641233,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714165,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1641263,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714165,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1641263,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714196,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1641294,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460714226,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1641324,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714257,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1641355,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714257,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1641355,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714318,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1641416,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714348,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1641446,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1641538,"id":"0xaf8a60e1feb47934"},
-{"pid":27369,"tid":27407,"ts":326460714562,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1641660,"id":"0xba45b002"},
-{"pid":27369,"tid":27407,"ts":326460714715,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1641843,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714745,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1641843,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714806,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8156,"stream_id":19}},"tts":1641904,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460714837,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8156,"window_size":15720484}},"tts":1641934,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460714867,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8156,"stream_id":19,"window_size":6283300}},"tts":1641965,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460714898,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1641996,"id":"0xaf8a6dbefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460714928,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":144}},"tts":1642026,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460715081,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":12080}},"tts":1642179,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460715111,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":144,"stream_id":19}},"tts":1642209,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715142,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-144,"window_size":15720340}},"tts":1642240,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715172,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-144,"stream_id":19,"window_size":6283156}},"tts":1642270,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460715325,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1642423,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460715356,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8084,"stream_id":19}},"tts":1642453,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715386,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8084,"window_size":15712256}},"tts":1642484,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715386,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8084,"stream_id":19,"window_size":6275072}},"tts":1642514,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460715447,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":99,"stream_id":19}},"tts":1642545,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715447,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-99,"window_size":15712157}},"tts":1642545,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715478,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-99,"stream_id":19,"window_size":6274973}},"tts":1642575,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460715569,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3678}},"tts":1642667,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460715630,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3678,"stream_id":19}},"tts":1642728,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715630,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3678,"window_size":15708479}},"tts":1642759,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460715661,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3678,"stream_id":19,"window_size":6271295}},"tts":1642759,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460715722,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1642820},
-{"pid":27369,"tid":27407,"ts":326460715752,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":31,"tts":1642850},
-{"pid":27369,"tid":27407,"ts":326460715752,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1642850,"id":"0xccc52502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460715783,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1642881},
-{"pid":27369,"tid":27407,"ts":326460715783,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1642911,"id":"0xccc52602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460715813,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":31,"tts":1642911},
-{"pid":27369,"tid":27407,"ts":326460715813,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1642911,"id":"0xccc52702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460715874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1642972,"id":"0xaf8a6da1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460715874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1642972},
-{"pid":27369,"tid":27407,"ts":326460715905,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1566}},"tts":1643003,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460715935,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460708},"tts":1643064,"id":"0xaf8a6da0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460715966,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1643064},
-{"pid":27369,"tid":27407,"ts":326460715966,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1643064,"id":"0xaf8a6da2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460715996,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":92,"tdur":92,"tts":1643094},
-{"pid":27369,"tid":27407,"ts":326460715996,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1643094,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460716027,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1643125,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460716057,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1643155,"id":"0xaf8a65defd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460716088,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1643186,"id":"0xaf8a6da3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460716119,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1643216},
-{"pid":27369,"tid":27407,"ts":326460716119,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1643216,"id":"0xaf8a6dbcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460716149,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":183,"tdur":183,"tts":1643247},
-{"pid":27369,"tid":27407,"ts":326460716180,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1643277,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460716302,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1643399,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460716363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460712},"tts":1643461,"id":"0xaf8a6dbdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460716393,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":31,"tts":1643491},
-{"pid":27369,"tid":27407,"ts":326460716393,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1643491,"id":"0xaf8a6dbffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460716454,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460715},"tts":1643552,"id":"0xaf8a6dbefebbc614"},
-{"pid":27369,"tid":27407,"ts":326460716485,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":30,"tts":1643583},
-{"pid":27369,"tid":27407,"ts":326460716485,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1643583,"id":"0xaf8a6db8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460716973,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1643674,"id":"0xaf8a6db9febbc614"},
-{"pid":27369,"tid":27407,"ts":326460717034,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":92,"tdur":92,"tts":1643735},
-{"pid":27369,"tid":27407,"ts":326460717034,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1643735,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460717065,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1643766,"id":"0x1ec"},
-{"pid":27369,"tid":27407,"ts":326460718255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460717},"tts":1643888,"id":"0xaf8a6dbffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460718285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1618,"tdur":1587,"tts":1643949},
-{"pid":27369,"tid":27407,"ts":326460718408,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8106,"window_size":15709463}},"tts":1644040,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460718469,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8106,"stream_id":25,"window_size":6272279}},"tts":1644101,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460718530,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15717655}},"tts":1644162,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460718591,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":25,"window_size":6280471}},"tts":1644254,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460718652,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":86,"window_size":15717741}},"tts":1644285,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460718682,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":86,"stream_id":25,"window_size":6280557}},"tts":1644315,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460718743,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":216,"window_size":15717957}},"tts":1644376,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460718774,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":216,"stream_id":25,"window_size":6280773}},"tts":1644407,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460718835,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15726149}},"tts":1644468,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460718865,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":25,"window_size":6288965}},"tts":1644498,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460718926,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2491,"window_size":15728640}},"tts":1644559,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460718957,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2491,"stream_id":25,"window_size":6291456}},"tts":1644590,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460718987,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1644620,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460719018,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1644651,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460719048,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":27283,"index":1,"offset":0,"truncate":true}},"tts":1644712,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460719323,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":27283}},"tts":1644956,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460719354,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":27283,"index":1,"offset":0,"truncate":true}},"tts":1644987,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460719537,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1645170,"id":"0xaf8a65dffd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460719598,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1645231,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460719628,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":27283}},"tts":1645261,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460719720,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1645353,"id":"0xba45b102"},
-{"pid":27369,"tid":27407,"ts":326460719811,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1645444,"id":"0xba45b202"},
-{"pid":27369,"tid":27407,"ts":326460719873,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1645505,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460719934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460717},"tts":1645566,"id":"0xaf8a6db8febbc614"},
-{"pid":27369,"tid":27407,"ts":326460719934,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1098,"tdur":1099,"tts":1645566},
-{"pid":27369,"tid":27407,"ts":326460719995,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8156,"window_size":15716635}},"tts":1645658,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460719995,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1645658},
-{"pid":27369,"tid":27407,"ts":326460720086,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8156,"stream_id":19,"window_size":6279451}},"tts":1645719,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720147,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":144,"window_size":15716779}},"tts":1645780,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460720208,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":144,"stream_id":19,"window_size":6279595}},"tts":1645841,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720269,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8084,"window_size":15724863}},"tts":1645902,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460720300,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8084,"stream_id":19,"window_size":6287679}},"tts":1645933,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720361,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":99,"window_size":15724962}},"tts":1645994,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460720391,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":99,"stream_id":19,"window_size":6287778}},"tts":1646024,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720422,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3678,"window_size":15728640}},"tts":1646055,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460720452,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3678,"stream_id":19,"window_size":6291456}},"tts":1646085,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720483,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1646116,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720483,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1646116,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720513,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":20161,"index":1,"offset":0,"truncate":true}},"tts":1646177,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460720574,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":20161}},"tts":1646207,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460720605,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":20161,"index":1,"offset":0,"truncate":true}},"tts":1646238,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460720727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1646390,"id":"0xaf8a65d8fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460720788,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1646421,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720819,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":20161}},"tts":1646452,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460720880,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1646513,"id":"0xba45b402"},
-{"pid":27369,"tid":27407,"ts":326460720971,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1646604,"id":"0xba45b502"},
-{"pid":27369,"tid":27407,"ts":326460721002,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1646665,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460721063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1646696,"id":"0xaf8a6dbafebbc614"},
-{"pid":27369,"tid":27407,"ts":326460721063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1646696},
-{"pid":27369,"tid":27407,"ts":326460721093,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1646726,"id":"0xba45b302"},
-{"pid":27369,"tid":27407,"ts":326460721154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1646787,"id":"0xaf8a6dbbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460721154,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1646787},
-{"pid":27369,"tid":27407,"ts":326460721185,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":27283}},"tts":1646818,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460721246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1646879,"id":"0xaf8a6db4febbc614"},
-{"pid":27369,"tid":27407,"ts":326460721246,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1646879},
-{"pid":27369,"tid":27407,"ts":326460721276,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":20161}},"tts":1646909,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460724390,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":4120,"tdur":3693,"tts":1647031},
-{"pid":27369,"tid":27407,"ts":326460724542,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1647184,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460724634,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1647276,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460724725,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7248}},"tts":1647367,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460724786,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":19}},"tts":1647428,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460724817,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15726266}},"tts":1647459,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460724847,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":19,"window_size":6289082}},"tts":1647489,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460724847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1647520,"id":"0xaf8a6db5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460725000,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7122}},"tts":1647642,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460725092,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8104}},"tts":1647733,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460725122,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7122,"stream_id":19}},"tts":1647764,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460725153,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7122,"window_size":15719144}},"tts":1647794,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460725183,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7122,"stream_id":19,"window_size":6281960}},"tts":1647825,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460725305,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7936}},"tts":1647947,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460725397,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6040}},"tts":1648039,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460725427,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3111,"stream_id":19}},"tts":1648069,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460725458,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3111,"window_size":15716033}},"tts":1648100,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460725488,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3111,"stream_id":19,"window_size":6278849}},"tts":1648130,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460725671,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7534","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 47703","content-type: image/png","date: Mon, 22 Jun 2015 16:05:55 GMT","expires: Sat, 05 Mar 2016 20:56:17 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":17}},"tts":1648313,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460725885,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7534","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 47703","content-type: image/png","date: Mon, 22 Jun 2015 16:05:55 GMT","expires: Sat, 05 Mar 2016 20:56:17 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1648527,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460725946,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1648588,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460725977,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1648618,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726068,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1648710,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726129,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1648771,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726160,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1648802,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726160,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1648802,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726190,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1648832,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726221,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1648863,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726221,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1648893,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726251,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1648893,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726282,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1648924,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726282,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1648924,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726312,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1648954,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460726343,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1648985,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726343,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1649015,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726373,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1649015,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726434,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1649076,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726495,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1649137,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460726556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1649198,"id":"0xaf8a60e2feb47934"},
-{"pid":27369,"tid":27407,"ts":326460727228,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1649442,"id":"0xba45b602"},
-{"pid":27369,"tid":27407,"ts":326460727381,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1649626,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460727411,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1649626,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460727472,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4739,"stream_id":17}},"tts":1649687,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460727503,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4739,"window_size":15711294}},"tts":1649717,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460727533,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4739,"stream_id":17,"window_size":6286717}},"tts":1649748,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460727564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1649778,"id":"0xaf8a6db6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460727686,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":5935}},"tts":1649900,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460727838,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1650053,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460727869,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5935,"stream_id":17}},"tts":1650083,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460727899,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5935,"window_size":15705359}},"tts":1650114,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460727930,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5935,"stream_id":17,"window_size":6280782}},"tts":1650144,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460728083,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1650297,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460728113,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5710,"stream_id":17}},"tts":1650328,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728113,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5710,"window_size":15699649}},"tts":1650358,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728144,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5710,"stream_id":17,"window_size":6275072}},"tts":1650358,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460728174,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2473,"stream_id":17}},"tts":1650389,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728205,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2473,"window_size":15697176}},"tts":1650419,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728235,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2473,"stream_id":17,"window_size":6272599}},"tts":1650450,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460728357,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1650572,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460728388,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":17}},"tts":1650602,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728418,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15688984}},"tts":1650633,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728449,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":17,"window_size":6264407}},"tts":1650663,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460728479,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1650694,"id":"0xaf8a6db7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460728510,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1650724,"id":"0xaf8a6db7febbc614"},
-{"pid":27369,"tid":27407,"ts":326460728540,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":397,"tdur":397,"tts":1650755},
-{"pid":27369,"tid":27407,"ts":326460728571,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1650785,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460728601,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4336}},"tts":1650816,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460728632,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":17}},"tts":1650877,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728662,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15688750}},"tts":1650877,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728693,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":17,"window_size":6264173}},"tts":1650907,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460728784,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4748}},"tts":1650999,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460728846,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4748,"stream_id":17}},"tts":1651060,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728876,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4748,"window_size":15684002}},"tts":1651091,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460728907,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4748,"stream_id":17,"window_size":6259425}},"tts":1651121,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460728968,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460725},"tts":1651182,"id":"0xaf8a6db5febbc614"},
-{"pid":27369,"tid":27407,"ts":326460728968,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":31,"tts":1651182},
-{"pid":27369,"tid":27407,"ts":326460728998,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1651213,"id":"0xaf8a6db0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460729029,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":61,"tts":1651243},
-{"pid":27369,"tid":27407,"ts":326460729059,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":30,"tts":1651274},
-{"pid":27369,"tid":27407,"ts":326460729059,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1651274,"id":"0xccc52802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460729120,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":133},"dur":1984,"tdur":1648,"tts":1651335},
-{"pid":27369,"tid":27407,"ts":326460729334,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":16912}},"tts":1651487,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460729334,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1651487},
-{"pid":27369,"tid":27407,"ts":326460729517,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1651640,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460729578,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5485,"stream_id":25}},"tts":1651701,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460729578,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5485,"window_size":15723155}},"tts":1651701,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460729609,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5485,"stream_id":25,"window_size":6285971}},"tts":1651732,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460729639,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1651762,"id":"0xaf8a6db1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460729700,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2698,"stream_id":25}},"tts":1651823,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460729700,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2698,"window_size":15720457}},"tts":1651823,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460729731,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2698,"stream_id":25,"window_size":6283273}},"tts":1651854,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460729853,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7976}},"tts":1651976,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460730097,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6040}},"tts":1652098,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460730127,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7976,"stream_id":25}},"tts":1652128,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730158,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7976,"window_size":15712481}},"tts":1652159,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730188,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7976,"stream_id":25,"window_size":6275297}},"tts":1652189,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460730280,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":5935}},"tts":1652281,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460730341,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1652342,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460730341,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1652342},
-{"pid":27369,"tid":27407,"ts":326460730494,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5710,"stream_id":25}},"tts":1652372,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730524,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5710,"window_size":15706771}},"tts":1652403,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730555,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5710,"stream_id":25,"window_size":6269587}},"tts":1652433,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460730585,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":216,"stream_id":25}},"tts":1652464,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730616,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-216,"window_size":15706555}},"tts":1652495,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730646,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-216,"stream_id":25,"window_size":6269371}},"tts":1652525,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460730707,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1652586,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460730799,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1652678,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460730829,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":25}},"tts":1652708,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730860,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15705368}},"tts":1652739,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460730860,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":25,"window_size":6268184}},"tts":1652769,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460730951,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1652830,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460731012,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":25}},"tts":1652891,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460731043,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15702994}},"tts":1652922,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460731074,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":25,"window_size":6265810}},"tts":1652952,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460731135,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1653013},
-{"pid":27369,"tid":27407,"ts":326460731165,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":30,"tts":1653044},
-{"pid":27369,"tid":27407,"ts":326460731165,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1653044,"id":"0xccc52902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460731226,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460728},"tts":1653105,"id":"0xaf8a6db6febbc614"},
-{"pid":27369,"tid":27407,"ts":326460731226,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":30,"tts":1653105},
-{"pid":27369,"tid":27407,"ts":326460731257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1653135,"id":"0xaf8a6db2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460731287,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":2442,"tdur":2197,"tts":1653166},
-{"pid":27369,"tid":27407,"ts":326460731318,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1653227,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460731562,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1951}},"tts":1653441,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460731623,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":737,"stream_id":17}},"tts":1653532,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460731653,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-737,"window_size":15683265}},"tts":1653532,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460731684,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-737,"stream_id":17,"window_size":6258688}},"tts":1653563,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460731867,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7534","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 61344","content-type: image/png","date: Mon, 22 Jun 2015 16:05:55 GMT","expires: Sat, 05 Mar 2016 20:56:17 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":13}},"tts":1653746,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460732081,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7534","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 61344","content-type: image/png","date: Mon, 22 Jun 2015 16:05:55 GMT","expires: Sat, 05 Mar 2016 20:56:17 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1653960,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732142,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1654021,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732172,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1654051,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732294,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1654173,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732386,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1654265,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732386,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1654295,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732416,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1654295,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732447,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1654326,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732477,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1654356,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732477,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1654387,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732508,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1654387,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732538,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1654417,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732538,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1654417,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732569,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1654448,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460732569,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1654448},
-{"pid":27369,"tid":27407,"ts":326460732661,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1654478,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732691,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1654509,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732691,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1654509,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732783,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1654600,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732813,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1654631,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460732874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1654692,"id":"0xaf8a60e3feb47934"},
-{"pid":27369,"tid":27407,"ts":326460733057,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1654875,"id":"0xba45b702"},
-{"pid":27369,"tid":27407,"ts":326460733424,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1655058,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460733424,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1655058,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460733485,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":13}},"tts":1655119,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460733515,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15682087}},"tts":1655150,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460733546,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":13,"window_size":6290278}},"tts":1655180,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460733698,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1655333,"id":"0xaf8a6db3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460733759,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":133},"dur":5555,"tdur":5158,"tts":1655394},
-{"pid":27369,"tid":27407,"ts":326460733912,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1655547,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734064,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1655699,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734095,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":25}},"tts":1655730,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734156,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15694802}},"tts":1655791,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734187,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":25,"window_size":6257618}},"tts":1655821,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460734339,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1655974,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734370,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4415,"stream_id":25}},"tts":1656004,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734400,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4415,"window_size":15690387}},"tts":1656035,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734431,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4415,"stream_id":25,"window_size":6253203}},"tts":1656065,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460734461,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3768,"stream_id":25}},"tts":1656096,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734492,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3768,"window_size":15686619}},"tts":1656126,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734492,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3768,"stream_id":25,"window_size":6249435}},"tts":1656126,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460734522,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":971}},"tts":1656187,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734583,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7960}},"tts":1656218,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734614,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":971,"stream_id":25}},"tts":1656249,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734644,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-971,"window_size":15685648}},"tts":1656279,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734675,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-971,"stream_id":25,"window_size":6248464}},"tts":1656310,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460734797,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7122}},"tts":1656432,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734828,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1656462,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460734828,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1656462},
-{"pid":27369,"tid":27407,"ts":326460734889,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7122,"stream_id":25}},"tts":1656554,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734950,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7122,"window_size":15678526}},"tts":1656584,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460734980,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7122,"stream_id":25,"window_size":6241342}},"tts":1656615,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460735072,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2631}},"tts":1656706,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460735102,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1656737,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460735133,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1349,"stream_id":25}},"tts":1656767,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735194,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1349,"window_size":15677177}},"tts":1656828,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735224,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1349,"stream_id":25,"window_size":6239993}},"tts":1656859,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460735255,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":25}},"tts":1656889,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735316,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5485,"window_size":15682662}},"tts":1656951,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735346,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2698,"window_size":15685360}},"tts":1656981,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735407,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7976,"window_size":15693336}},"tts":1657042,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735468,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5710,"window_size":15699046}},"tts":1657103,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735468,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":216,"window_size":15699262}},"tts":1657134,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735499,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15700449}},"tts":1657134,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735560,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15702823}},"tts":1657195,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735591,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7122,"window_size":15709945}},"tts":1657225,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460735621,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1657256,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460735652,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1657286,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460735652,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":27283,"truncate":true}},"tts":1657286,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460735743,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1657378,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460735774,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":27283,"truncate":true}},"tts":1657408,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460735926,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1657561,"id":"0xaf8a65d9fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460735957,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1657591,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460735987,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1657622,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460736048,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1657683,"id":"0xba45b802"},
-{"pid":27369,"tid":27407,"ts":326460736384,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1657775,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460736415,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1070,"window_size":15711015}},"tts":1657805,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736476,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4415,"window_size":15715430}},"tts":1657866,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736506,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3768,"window_size":15719198}},"tts":1657897,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736537,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":971,"window_size":15720169}},"tts":1657927,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736598,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7122,"window_size":15727291}},"tts":1657988,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736628,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1349,"window_size":15728640}},"tts":1658019,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736628,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1658019,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460736659,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1658049,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460736689,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":18695,"index":1,"offset":60051,"truncate":true}},"tts":1658080,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460736750,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":24}},"tts":1658141,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1658171,"id":"0xaf8a6e4cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460736811,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":24}},"tts":1658202,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460736994,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 12604","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 46725","content-type: image/png","date: Mon, 22 Jun 2015 14:41:25 GMT","expires: Sat, 05 Mar 2016 19:31:47 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":27}},"tts":1658385,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460737239,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 12604","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 46725","content-type: image/png","date: Mon, 22 Jun 2015 14:41:25 GMT","expires: Sat, 05 Mar 2016 19:31:47 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1658629,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737300,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1658690,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737330,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1658721,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737422,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1658812,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737452,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1658873,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737483,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1658873,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737513,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1658904,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737513,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1658904,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737544,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1658934,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737574,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1658965,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737574,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1658965,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737605,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1658995,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737635,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1659026,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737666,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1659056,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460737696,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1659087,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737727,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1659117,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737727,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1659117,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737788,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1659209,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737819,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1659240,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460737880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1659270,"id":"0xaf8a60fcfeb47934"},{"pid":27369,"tid":27407,"ts":326460738063,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1659453,"id":"0xba45ba02"},
-{"pid":27369,"tid":27407,"ts":326460738398,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1659636,"id":"0x1fe"},
-{"pid":27369,"tid":27369,"ts":326460736872,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2334320},
-{"pid":27369,"tid":27369,"ts":326460736933,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2334381},
-{"pid":27369,"tid":27369,"ts":326460736994,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":245,"tdur":244,"tts":2334442},
-{"pid":27369,"tid":27369,"ts":326460737025,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460736170},"dur":61,"tdur":61,"tts":2334472},
-{"pid":27369,"tid":27369,"ts":326460737055,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2334503},
-{"pid":27369,"tid":27369,"ts":326460737055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2334503,"id":"0xaf8a6e4dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460737239,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2334686},
-{"pid":27369,"tid":27369,"ts":326460737361,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2334808},
-{"pid":27369,"tid":27369,"ts":326460738093,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2335052},
-{"pid":27369,"tid":27369,"ts":326460738124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2335083,"id":"0xaf8a60fcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460738154,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":183,"tdur":183,"tts":2335113},
-{"pid":27369,"tid":27369,"ts":326460738429,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2335388},
-{"pid":27369,"tid":27369,"ts":326460743526,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2335632},
-{"pid":27369,"tid":27369,"ts":326460743556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2335663,"id":"0xaf8a60fdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460743587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":183,"tdur":183,"tts":2335693},
-{"pid":27369,"tid":27369,"ts":326460743862,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2335998},
-{"pid":27369,"tid":27369,"ts":326460746395,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2336242},
-{"pid":27369,"tid":27369,"ts":326460746425,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2336242,"id":"0xaf8a60fefeb47934"},
-{"pid":27369,"tid":27369,"ts":326460746456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":641,"tdur":641,"tts":2336273},
-{"pid":27369,"tid":27369,"ts":326460747188,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2337005},
-{"pid":27369,"tid":27369,"ts":326460747341,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2337158},
-{"pid":27369,"tid":27369,"ts":326460747341,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2337189,"id":"0xaf8a60fffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460747371,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":153,"tdur":152,"tts":2337189},
-{"pid":27369,"tid":27369,"ts":326460747402,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2337219},
-{"pid":27369,"tid":27369,"ts":326460747402,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":31,"tts":2337219},
-{"pid":27369,"tid":27369,"ts":326460747432,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":61,"tdur":30,"tts":2337250},
-{"pid":27369,"tid":27369,"ts":326460747463,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2337280},
-{"pid":27369,"tid":27369,"ts":326460747616,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2337433},
-{"pid":27369,"tid":27369,"ts":326460751339,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2337738},
-{"pid":27369,"tid":27369,"ts":326460751431,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2337799,"id":"0xaf8a60f8feb47934"},
-{"pid":27369,"tid":27369,"ts":326460751431,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":183,"tdur":153,"tts":2337799},
-{"pid":27369,"tid":27369,"ts":326460751675,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2338043},
-{"pid":27369,"tid":27369,"ts":326460753048,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2338287},
-{"pid":27369,"tid":27369,"ts":326460753109,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2338318,"id":"0xaf8a60f9feb47934"},
-{"pid":27369,"tid":27369,"ts":326460753109,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":92,"tdur":91,"tts":2338318},
-{"pid":27369,"tid":27369,"ts":326460753140,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":0,"tdur":0,"tts":2338348},
-{"pid":27369,"tid":27369,"ts":326460753140,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2338348},
-{"pid":27369,"tid":27369,"ts":326460753170,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":0,"tts":2338379},
-{"pid":27369,"tid":27369,"ts":326460753170,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2338379},
-{"pid":27369,"tid":27369,"ts":326460753353,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2338562},
-{"pid":27369,"tid":27369,"ts":326460753567,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2338776},
-{"pid":27369,"tid":27369,"ts":326460753598,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2338806},
-{"pid":27369,"tid":27369,"ts":326460753659,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2338867},
-{"pid":27369,"tid":27369,"ts":326460753689,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460752852},"dur":61,"tdur":61,"tts":2338898},
-{"pid":27369,"tid":27369,"ts":326460753720,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":2338928},
-{"pid":27369,"tid":27369,"ts":326460753720,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2338959,"id":"0xaf8a6e42febbc614"},
-{"pid":27369,"tid":27369,"ts":326460753903,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2339111},
-{"pid":27369,"tid":27369,"ts":326460754238,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2339294},
-{"pid":27369,"tid":27369,"ts":326460770079,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2339630},
-{"pid":27369,"tid":27369,"ts":326460770140,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2339661},
-{"pid":27369,"tid":27369,"ts":326460770170,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2339691},
-{"pid":27369,"tid":27369,"ts":326460770201,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460769533},"dur":61,"tdur":30,"tts":2339722},
-{"pid":27369,"tid":27369,"ts":326460770201,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2339722},
-{"pid":27369,"tid":27369,"ts":326460770231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2339752,"id":"0xaf8a6e50febbc614"},
-{"pid":27369,"tid":27369,"ts":326460770384,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2339905},
-{"pid":27369,"tid":27369,"ts":326460770475,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2339996},
-{"pid":27369,"tid":27369,"ts":326460772093,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2340180},
-{"pid":27369,"tid":27369,"ts":326460772154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2340210,"id":"0xaf8a60fafeb47934"},
-{"pid":27369,"tid":27369,"ts":326460772184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":123,"tdur":122,"tts":2340241},
-{"pid":27369,"tid":27369,"ts":326460772368,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2340424},
-{"pid":27369,"tid":27369,"ts":326460777098,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2340668},
-{"pid":27369,"tid":27369,"ts":326460777159,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2340729,"id":"0xaf8a60fbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460777159,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":153,"tdur":153,"tts":2340729},
-{"pid":27369,"tid":27369,"ts":326460777373,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2340943},
-{"pid":27369,"tid":27407,"ts":326460738398,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1659667,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460738520,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":27}},"tts":1659758,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460738551,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1659789,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460738582,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":27,"window_size":6290278}},"tts":1659819,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460738582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1659850,"id":"0xaf8a6e4ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460738643,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1659911,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460738826,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":14496}},"tts":1660064,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460738856,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":27}},"tts":1660094,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460738887,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726275}},"tts":1660125,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460738887,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":27,"window_size":6289091}},"tts":1660125,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460739039,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1660277,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460739070,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":27}},"tts":1660308,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460739253,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15718083}},"tts":1660491,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460739283,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":27,"window_size":6280899}},"tts":1660521,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460739283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1660552,"id":"0xaf8a6e48febbc614"},
-{"pid":27369,"tid":27407,"ts":326460739375,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460729},"tts":1660613,"id":"0xaf8a6db0febbc614"},
-{"pid":27369,"tid":27407,"ts":326460739375,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":855,"tdur":671,"tts":1660613},
-{"pid":27369,"tid":27407,"ts":326460739436,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15684461}},"tts":1660674,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460739467,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":19,"window_size":6281223}},"tts":1660705,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739528,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7122,"window_size":15691583}},"tts":1660766,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460739528,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":7122,"stream_id":19,"window_size":6288345}},"tts":1660766,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739589,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3111,"window_size":15694694}},"tts":1660827,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460739619,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3111,"stream_id":19,"window_size":6291456}},"tts":1660857,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739619,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1660857,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739650,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1660888,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739680,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":12607,"index":1,"offset":20161,"truncate":true}},"tts":1660918,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460739741,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":12607}},"tts":1660979,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460739772,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":12607,"index":1,"offset":20161,"truncate":true}},"tts":1661010,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460739833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1661071,"id":"0xaf8a65dafd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460739863,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1661101,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739894,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":12607}},"tts":1661132,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460739955,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1661193,"id":"0xba45bb02"},
-{"pid":27369,"tid":27407,"ts":326460740199,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1661254,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460740230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1661284,"id":"0xaf8a6e4cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460740260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":214,"tdur":214,"tts":1661315},
-{"pid":27369,"tid":27407,"ts":326460740321,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1661376,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460740443,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1661498,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460740474,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":1434,"tdur":1434,"tts":1661529},
-{"pid":27369,"tid":27407,"ts":326460740596,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9664}},"tts":1661651,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460740718,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1661773,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460740748,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":13}},"tts":1661834,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460740809,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15686502}},"tts":1661864,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460740840,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":13,"window_size":6282086}},"tts":1661895,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460740901,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1304}},"tts":1661956,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460740993,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6040}},"tts":1662047,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460741023,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1304,"stream_id":13}},"tts":1662078,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741054,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1304,"window_size":15685198}},"tts":1662108,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741084,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1304,"stream_id":13,"window_size":6280782}},"tts":1662139,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460741176,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":5935}},"tts":1662231,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460741267,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1662322,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460741298,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5710,"stream_id":13}},"tts":1662353,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741328,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5710,"window_size":15679488}},"tts":1662383,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741359,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5710,"stream_id":13,"window_size":6275072}},"tts":1662414,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460741389,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":216,"stream_id":13}},"tts":1662444,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741420,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-216,"window_size":15679272}},"tts":1662475,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741450,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-216,"stream_id":13,"window_size":6274856}},"tts":1662505,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460741511,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1662566,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460741603,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1662658,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460741634,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":13}},"tts":1662688,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741664,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15675711}},"tts":1662719,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741695,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":13,"window_size":6271295}},"tts":1662749,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460741756,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1662810,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460741817,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":13}},"tts":1662871,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741847,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15673337}},"tts":1662902,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460741878,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":13,"window_size":6268921}},"tts":1662933,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460741908,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":122},"dur":4426,"tdur":3784,"tts":1662994},
-{"pid":27369,"tid":27407,"ts":326460741969,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":588}},"tts":1663024,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460742030,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":546}},"tts":1663085,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460742091,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1663146,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460742305,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 465","content-type: application/json; charset=UTF-8","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Sat, 05 Mar 2016 23:01:51 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":27}},"tts":1663360,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460742519,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 465","content-type: application/json; charset=UTF-8","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Sat, 05 Mar 2016 23:01:51 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1663573,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742580,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1663634,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742610,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1663665,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742732,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3572,"index":0,"offset":0,"truncate":true}},"tts":1663787,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742793,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1663848,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742793,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1663879,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742824,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1663879,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742854,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1663909,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742885,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1663940,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742885,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1663940,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742915,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1663970,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460742915,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1663970,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742946,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1664001,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742976,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1664031,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460742976,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1664062,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460743007,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1664062,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460743037,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1664092,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460743160,"ph":"n","cat":"netlog","name":"URL_REQUEST_FILTERS_SET","args":{"source_type":"URL_REQUEST","params":{"filters":"FILTER_TYPE_GZIP"}},"tts":1664214,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460743190,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1664245,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460743221,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1664275,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460743282,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1664336,"id":"0xaf8a60fdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460743495,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1664550,"id":"0xba45bc02"},
-{"pid":27369,"tid":27407,"ts":326460744075,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1664916,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744106,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1664947,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744167,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":465,"stream_id":27}},"tts":1665008,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460744197,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-465,"window_size":15728175}},"tts":1665038,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460744258,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-465,"stream_id":27,"window_size":6290991}},"tts":1665099,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1665130,"id":"0xaf8a6e4afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460744319,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":27}},"tts":1665160,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460744350,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":465,"window_size":15728640}},"tts":1665191,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460744380,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1665222,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744411,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1665252,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744441,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":465,"index":1,"offset":0,"truncate":true}},"tts":1665283,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460744472,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":465}},"tts":1665313,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460744502,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":465,"index":1,"offset":0,"truncate":true}},"tts":1665374,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460744564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1665405,"id":"0xaf8a65dbfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460744625,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1665466,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744838,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_FILTERED_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1677}},"tts":1665618,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460744869,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1665649,"id":"0xba45bd02"},
-{"pid":27369,"tid":27407,"ts":326460745113,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1665710,"id":"0xba45be02"},
-{"pid":27369,"tid":27407,"ts":326460745235,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1665801,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460745235,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1665801},
-{"pid":27369,"tid":27407,"ts":326460745296,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1665832,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460745327,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1665862,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460745327,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1665862,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460745357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1665893,"id":"0xaf8a6e44febbc614"},
-{"pid":27369,"tid":27407,"ts":326460745357,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":1665893},
-{"pid":27369,"tid":27407,"ts":326460745479,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1665924,"id":"0xaf8a6e45febbc614"},
-{"pid":27369,"tid":27407,"ts":326460745540,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1665985,"id":"0xaf8a60fefeb47934"},
-{"pid":27369,"tid":27407,"ts":326460745754,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1666198,"id":"0xba45bf02"},
-{"pid":27369,"tid":27407,"ts":326460745845,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1666290,"id":"0xaf8a60fffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460745967,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1666412,"id":"0x216"},
-{"pid":27369,"tid":27407,"ts":326460746151,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1666595,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460746242,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":26}},"tts":1666687,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460746273,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1666717,"id":"0xaf8a6e46febbc614"},
-{"pid":27369,"tid":27407,"ts":326460746303,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":26}},"tts":1666748,"id":"0x15"},
-{"pid":27369,"tid":27407,"ts":326460746334,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":3082,"tdur":3083,"tts":1666778},
-{"pid":27369,"tid":27407,"ts":326460746486,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1666931,"id":"0x1ae"},
-{"pid":27369,"tid":27643,"ts":326460744625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2929,"id":"0xaf8a65dbfd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460744716,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":580,"tdur":305,"tts":3021},
-{"pid":27369,"tid":27643,"ts":326460745235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3296,"id":"0xaf8a6e4bfebbc614"},
-{"pid":27369,"tid":27644,"ts":326460759610,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2136,"id":"0xaf8a65d4fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460759610,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":1068,"tdur":488,"tts":2136},
-{"pid":27369,"tid":27644,"ts":326460760526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2594,"id":"0xaf8a6e5dfebbc614"},
-{"pid":27369,"tid":27480,"ts":326460761228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":66961,"id":"0xaf8a65d5fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460761228,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":336,"tts":66961},
-{"pid":27369,"tid":27480,"ts":326460761655,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67297,"id":"0xaf8a6e5ffebbc614"},
-{"pid":27369,"tid":27643,"ts":326460762357,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":3357,"id":"0xaf8a65d6fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460762357,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":397,"tdur":397,"tts":3357},
-{"pid":27369,"tid":27643,"ts":326460762723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3723,"id":"0xaf8a6e58febbc614"},
-{"pid":27369,"tid":27644,"ts":326460765195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2655,"id":"0xaf8a65d7fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460765226,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":428,"tts":2685},
-{"pid":27369,"tid":27644,"ts":326460765623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3113,"id":"0xaf8a6e59febbc614"},
-{"pid":27369,"tid":27480,"ts":326460766477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":67327,"id":"0xaf8a65d0fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460766477,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":397,"tts":67358},
-{"pid":27369,"tid":27480,"ts":326460766874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67724,"id":"0xaf8a6e54febbc614"},
-{"pid":27369,"tid":27480,"ts":326460766904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":67755,"id":"0xaf8a65d1fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460766935,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":366,"tdur":183,"tts":67785},
-{"pid":27369,"tid":27480,"ts":326460767271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":67938,"id":"0xaf8a6e55febbc614"},
-{"pid":27369,"tid":27480,"ts":326460767301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":67968,"id":"0xaf8a65d2fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460767301,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":183,"tdur":183,"tts":67968},
-{"pid":27369,"tid":27480,"ts":326460767454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68151,"id":"0xaf8a6e56febbc614"},
-{"pid":27369,"tid":27643,"ts":326460768186,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":3815,"id":"0xaf8a65d3fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460768217,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":275,"tts":3845},
-{"pid":27369,"tid":27643,"ts":326460768614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":4089,"id":"0xaf8a6e57febbc614"},
-{"pid":27369,"tid":27480,"ts":326460773283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":68182,"id":"0xaf8a65ecfd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460773283,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":275,"tdur":244,"tts":68213},
-{"pid":27369,"tid":27480,"ts":326460773527,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68426,"id":"0xaf8a6e6dfebbc614"},
-{"pid":27369,"tid":27480,"ts":326460773558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":68457,"id":"0xaf8a65edfd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460773558,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":458,"tdur":274,"tts":68457},
-{"pid":27369,"tid":27480,"ts":326460774016,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":68731,"id":"0xaf8a6e6ffebbc614"},
-{"pid":27369,"tid":27643,"ts":326460779204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":4150,"id":"0xaf8a65eefd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460779204,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":397,"tdur":397,"tts":4150},
-{"pid":27369,"tid":27643,"ts":326460779601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":4547,"id":"0xaf8a6e6bfebbc614"},
-{"pid":27369,"tid":27482,"ts":326460787963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":75415,"id":"0xaf8a65effd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460787994,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":214,"tdur":214,"tts":75446},
-{"pid":27369,"tid":27482,"ts":326460788177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75629,"id":"0xaf8a6e7efebbc614"},
-{"pid":27369,"tid":27480,"ts":326460790436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":68762,"id":"0xaf8a65e8fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326460790466,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":3083,"tdur":397,"tts":68792},
-{"pid":27369,"tid":27480,"ts":326460790832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":69159,"id":"0xaf8a6e74febbc614"},
-{"pid":27369,"tid":27643,"ts":326460790863,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":4608,"id":"0xaf8a65e9fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460790893,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":641,"tdur":244,"tts":4608},
-{"pid":27369,"tid":27643,"ts":326460791504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":4822,"id":"0xaf8a6e75febbc614"},
-{"pid":27369,"tid":27530,"ts":326460791748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":32107,"id":"0xaf8a65eafd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460791748,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":397,"tdur":397,"tts":32107},
-{"pid":27369,"tid":27530,"ts":326460792145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":32504,"id":"0xaf8a6e76febbc614"},
-{"pid":27369,"tid":27643,"ts":326460792542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":4883,"id":"0xaf8a65ebfd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460792542,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":1342,"tdur":244,"tts":4883},
-{"pid":27369,"tid":27530,"ts":326460793427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":32534,"id":"0xaf8a65e4fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460793427,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":213,"tdur":214,"tts":32534},
-{"pid":27369,"tid":27530,"ts":326460793610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":32717,"id":"0xaf8a6e72febbc614"},
-{"pid":27369,"tid":27643,"ts":326460793854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5127,"id":"0xaf8a6e73febbc614"},
-{"pid":27369,"tid":27482,"ts":326460794464,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":75690,"id":"0xaf8a65e5fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460794495,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":336,"tdur":213,"tts":75721},
-{"pid":27369,"tid":27482,"ts":326460794831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":75934,"id":"0xaf8a6e0cfebbc614"},
-{"pid":27369,"tid":27530,"ts":326460797181,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":32778,"id":"0xaf8a65e6fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460797211,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":458,"tdur":458,"tts":32809},
-{"pid":27369,"tid":27530,"ts":326460797669,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":33267,"id":"0xaf8a6e0dfebbc614"},
-{"pid":27369,"tid":27643,"ts":326460800477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":5157,"id":"0xaf8a65e7fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460800477,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":275,"tdur":244,"tts":5188},
-{"pid":27369,"tid":27643,"ts":326460800721,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5402,"id":"0xaf8a6e05febbc614"},
-{"pid":27369,"tid":27480,"ts":326460801392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":69250,"id":"0xaf8a65e0fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460746578,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1667022,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460746700,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1667144,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460746730,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":13}},"tts":1667175,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460746791,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15669776}},"tts":1667236,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460746822,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":13,"window_size":6265360}},"tts":1667266,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460746914,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1667388,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747005,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1667450,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747036,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":13}},"tts":1667480,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747127,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15667402}},"tts":1667572,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747158,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":13,"window_size":6262986}},"tts":1667602,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460747219,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1667663,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747310,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1667755,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747371,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":13}},"tts":1667816,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747402,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15666215}},"tts":1667846,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747432,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":13,"window_size":6261799}},"tts":1667877,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460747524,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1667968,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747616,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1668060,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747646,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":13}},"tts":1668090,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747677,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15663841}},"tts":1668121,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747707,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":13,"window_size":6259425}},"tts":1668151,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460747799,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1924}},"tts":1668243,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747890,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1668335,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460747921,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":737,"stream_id":13}},"tts":1668365,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747951,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-737,"window_size":15663104}},"tts":1668396,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460747982,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-737,"stream_id":13,"window_size":6258688}},"tts":1668426,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460748043,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":19}},"tts":1668487,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460748073,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15661926}},"tts":1668518,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460748104,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":19,"window_size":6290278}},"tts":1668548,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460748134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1668579,"id":"0xaf8a6e47febbc614"},
-{"pid":27369,"tid":27407,"ts":326460748226,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1668670,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460748318,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1668762,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460748379,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":19}},"tts":1668823,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460748409,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15659552}},"tts":1668853,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460748440,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":19,"window_size":6287904}},"tts":1668884,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460748531,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1669006,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460748653,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1669098,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460748684,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":19}},"tts":1669159,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460748745,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15655991}},"tts":1669189,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460748775,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":19,"window_size":6284343}},"tts":1669220,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460748867,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1669311,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460748989,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1669433,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460749019,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":19}},"tts":1669464,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460749050,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15652430}},"tts":1669494,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460749081,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":19,"window_size":6280782}},"tts":1669525,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460749172,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1669616,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460749264,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":19}},"tts":1669708,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460749325,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15650056}},"tts":1669769,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460749386,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":19,"window_size":6278408}},"tts":1669830,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460749447,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":5554,"tdur":3113,"tts":1669891},
-{"pid":27369,"tid":27407,"ts":326460749599,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":109}},"tts":1670044,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460749691,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":46}},"tts":1670135,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460749966,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":19}},"tts":1670441,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460750240,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 204 OK","status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1670685,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750332,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1670776,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750362,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1670807,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750454,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3552,"index":0,"offset":0,"truncate":true}},"tts":1670898,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750515,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1670959,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750545,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1670990,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750576,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1671020,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750607,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1671051,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750637,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1671081,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750637,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1671081,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750668,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1671112,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750668,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1671112,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750698,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1671142,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750729,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1671173,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460750759,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1671204,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750759,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1671204,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750790,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1671234,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750851,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1671295,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460750881,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1671326,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460751003,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1671448,"id":"0xaf8a60f8feb47934"},
-{"pid":27369,"tid":27407,"ts":326460751827,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1671692,"id":"0xba45c002"},
-{"pid":27369,"tid":27407,"ts":326460752377,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1671875,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460752407,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1671905,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460752468,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":19}},"tts":1671967,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460752499,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1671997,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460752529,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1672028,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460752529,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1672028,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460752560,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1672058,"id":"0xaf8a6e40febbc614"},
-{"pid":27369,"tid":27407,"ts":326460752590,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1672119,"id":"0xaf8a6e41febbc614"},
-{"pid":27369,"tid":27407,"ts":326460752712,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1672211,"id":"0xba45c102"},
-{"pid":27369,"tid":27407,"ts":326460752804,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1672302,"id":"0xaf8a60f9feb47934"},
-{"pid":27369,"tid":27407,"ts":326460754513,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1672546,"id":"0x212"},
-{"pid":27369,"tid":27407,"ts":326460754635,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":14}},"tts":1672669,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460754696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1672730,"id":"0xaf8a6e43febbc614"},
-{"pid":27369,"tid":27407,"ts":326460754727,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":14}},"tts":1672760,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460755001,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":134},"dur":5616,"tdur":5585,"tts":1673065},
-{"pid":27369,"tid":27407,"ts":326460755215,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":16912}},"tts":1673248,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460755490,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1673523,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460755551,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3336,"stream_id":19}},"tts":1673584,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460755581,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3336,"window_size":15646720}},"tts":1673645,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460755642,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3336,"stream_id":19,"window_size":6275072}},"tts":1673676,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460755673,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4847,"stream_id":19}},"tts":1673737,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460755734,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4847,"window_size":15641873}},"tts":1673767,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460755795,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4847,"stream_id":19,"window_size":6270225}},"tts":1673828,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460755978,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1674011,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460756039,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":19}},"tts":1674072,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756070,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15633681}},"tts":1674133,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756131,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":19,"window_size":6262033}},"tts":1674164,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460756192,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1674225,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460756344,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9664}},"tts":1674378,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460756405,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":19}},"tts":1674439,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756436,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15633447}},"tts":1674469,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756466,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":19,"window_size":6261799}},"tts":1674500,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460756711,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1674774,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460756772,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1073,"stream_id":19}},"tts":1674835,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756833,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1073,"window_size":15632374}},"tts":1674866,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756863,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1073,"stream_id":19,"window_size":6260726}},"tts":1674896,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460756894,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":19}},"tts":1674927,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756924,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15633552}},"tts":1674988,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460756985,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15635926}},"tts":1675019,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757016,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15639487}},"tts":1675049,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757077,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15643048}},"tts":1675110,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757138,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15645422}},"tts":1675171,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757168,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3336,"window_size":15648758}},"tts":1675202,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757229,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4847,"window_size":15653605}},"tts":1675263,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757321,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15661797}},"tts":1675354,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757321,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15662031}},"tts":1675385,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757352,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1073,"window_size":15663104}},"tts":1675385,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757382,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1675446,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460757413,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1675476,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460757443,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":30730,"index":1,"offset":32768,"truncate":true}},"tts":1675476,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460757535,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":12}},"tts":1675568,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1675598,"id":"0xaf8a6e5cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460757565,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":12}},"tts":1675629,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757596,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7093,"stream_id":17}},"tts":1675629,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757626,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7093,"window_size":15656011}},"tts":1675659,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757657,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7093,"stream_id":17,"window_size":6251595}},"tts":1675690,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460757718,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1207}},"tts":1675782,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460757840,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1675873,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460757870,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1207,"stream_id":17}},"tts":1675904,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757901,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1207,"window_size":15654804}},"tts":1675934,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460757931,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1207,"stream_id":17,"window_size":6250388}},"tts":1675965,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460758023,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1676056,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460758054,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1676117,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460758084,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":17}},"tts":1676117,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758115,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15651243}},"tts":1676148,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758145,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":17,"window_size":6246827}},"tts":1676178,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460758206,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1676239,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460758298,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1676331,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460758328,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":17}},"tts":1676361,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758359,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15650056}},"tts":1676392,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758389,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":17,"window_size":6245640}},"tts":1676423,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460758481,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3091}},"tts":1676514,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460758572,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1676606,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460758603,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1887,"stream_id":17}},"tts":1676636,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758633,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1887,"window_size":15648169}},"tts":1676667,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758664,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1887,"stream_id":17,"window_size":6243753}},"tts":1676697,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460758694,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":17}},"tts":1676728,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758786,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4739,"window_size":15652908}},"tts":1676819,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758847,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5935,"window_size":15658843}},"tts":1676880,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758878,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5710,"window_size":15664553}},"tts":1676911,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460758939,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2473,"window_size":15667026}},"tts":1676972,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460759030,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15675218}},"tts":1677063,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460759091,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15675452}},"tts":1677124,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460759152,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4748,"window_size":15680200}},"tts":1677186,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460759183,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":737,"window_size":15680937}},"tts":1677216,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460759183,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1677247,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460759213,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1677247,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460759244,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1677277,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460759335,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1677369,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460759396,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1677430,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460759549,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1677582,"id":"0xaf8a65d4fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460759610,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1677643,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460759641,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1677674,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460759702,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1677735,"id":"0xba45c302"},
-{"pid":27369,"tid":27407,"ts":326460759763,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1677796,"id":"0xba45c402"},
-{"pid":27369,"tid":27407,"ts":326460759824,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1677887,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460759915,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7093,"window_size":15688030}},"tts":1677949,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760037,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1207,"window_size":15689237}},"tts":1678071,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760068,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15692798}},"tts":1678101,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760129,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15693985}},"tts":1678162,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760190,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1887,"window_size":15695872}},"tts":1678223,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760220,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1678254,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460760251,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1678284,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460760281,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":14935,"index":1,"offset":32768,"truncate":true}},"tts":1678315,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460760373,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":14}},"tts":1678406,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760404,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":14}},"tts":1678437,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760434,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":13}},"tts":1678467,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760465,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15694694}},"tts":1678498,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460760495,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":13,"window_size":6257510}},"tts":1678559,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460760587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1678620,"id":"0xaf8a6e5efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460760617,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":61,"tts":1678681},
-{"pid":27369,"tid":27407,"ts":326460760648,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1678681},
-{"pid":27369,"tid":27407,"ts":326460760678,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1678712,"id":"0xccc52a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460760739,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460730},"tts":1678773,"id":"0xaf8a6db1febbc614"},
-{"pid":27369,"tid":27407,"ts":326460760770,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":31,"tts":1678803},
-{"pid":27369,"tid":27407,"ts":326460760800,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1678834,"id":"0xaf8a6e4dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460760831,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1678864},
-{"pid":27369,"tid":27407,"ts":326460760861,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1678895,"id":"0xba45b902"},
-{"pid":27369,"tid":27407,"ts":326460760892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460732},"tts":1678925,"id":"0xaf8a6db2febbc614"},
-{"pid":27369,"tid":27407,"ts":326460760892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":31,"tts":1678925},
-{"pid":27369,"tid":27407,"ts":326460760922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1678956,"id":"0xaf8a6e4efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460760922,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":214,"tdur":213,"tts":1678956},
-{"pid":27369,"tid":27407,"ts":326460760953,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1678986,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460760983,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":18695,"index":1,"offset":60051,"truncate":true}},"tts":1679017,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460761106,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1679139,"id":"0xaf8a65d5fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460761167,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1679200},
-{"pid":27369,"tid":27407,"ts":326460761167,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1679200},
-{"pid":27369,"tid":27407,"ts":326460761197,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1679230,"id":"0xccc52b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460761228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460734},"tts":1679261,"id":"0xaf8a6db3febbc614"},
-{"pid":27369,"tid":27407,"ts":326460761258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1465,"tdur":1465,"tts":1679291},
-{"pid":27369,"tid":27407,"ts":326460761289,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15695872}},"tts":1679322,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761319,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":13,"window_size":6258688}},"tts":1679352,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761380,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15704064}},"tts":1679414,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761411,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":13,"window_size":6266880}},"tts":1679444,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761441,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1304,"window_size":15705368}},"tts":1679475,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761472,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1304,"stream_id":13,"window_size":6268184}},"tts":1679505,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761502,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5710,"window_size":15711078}},"tts":1679566,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761563,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":5710,"stream_id":13,"window_size":6273894}},"tts":1679597,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761594,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":216,"window_size":15711294}},"tts":1679627,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761624,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":216,"stream_id":13,"window_size":6274110}},"tts":1679658,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761655,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15714855}},"tts":1679688,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761685,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3561,"stream_id":13,"window_size":6277671}},"tts":1679719,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761716,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15717229}},"tts":1679749,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761746,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":13,"window_size":6280045}},"tts":1679780,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761808,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15720790}},"tts":1679841,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761838,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3561,"stream_id":13,"window_size":6283606}},"tts":1679871,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761838,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15723164}},"tts":1679902,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761869,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":13,"window_size":6285980}},"tts":1679902,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761930,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15724351}},"tts":1679963,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761960,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":13,"window_size":6287167}},"tts":1679993,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460761991,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15726725}},"tts":1680024,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460761991,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":13,"window_size":6289541}},"tts":1680024,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762021,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":737,"window_size":15727462}},"tts":1680054,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460762052,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":737,"stream_id":13,"window_size":6290278}},"tts":1680085,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762082,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1680115,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762082,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1680115,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762113,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1680146,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460762143,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1680177,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460762174,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1680207,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460762296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1680329,"id":"0xaf8a65d6fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460762357,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1680390,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762387,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1680421,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762418,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1680451,"id":"0xba45c502"},
-{"pid":27369,"tid":27407,"ts":326460762479,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1680512,"id":"0xba45c602"},
-{"pid":27369,"tid":27407,"ts":326460762540,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1680573,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762601,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15728640}},"tts":1680634,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460762632,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":13,"window_size":6291456}},"tts":1680665,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762662,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1680695,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762693,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1680726,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460762693,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1178,"index":1,"offset":32768,"truncate":true}},"tts":1680726,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460762754,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1680787,"id":"0xaf8a6e48febbc614"},
-{"pid":27369,"tid":27407,"ts":326460762754,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":3296,"tdur":3296,"tts":1680787},
-{"pid":27369,"tid":27407,"ts":326460762876,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6052}},"tts":1680909,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460763028,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1681062,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460763059,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5827,"stream_id":27}},"tts":1681092,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763089,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5827,"window_size":15712256}},"tts":1681123,"id":"0x161"},{"pid":27369,"tid":27407,"ts":326460763120,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5827,"stream_id":27,"window_size":6275072}},"tts":1681153,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460763150,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":216,"stream_id":27}},"tts":1681184,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763181,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-216,"window_size":15712040}},"tts":1681214,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763211,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-216,"stream_id":27,"window_size":6274856}},"tts":1681245,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460763334,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1681367,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460763364,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":27}},"tts":1681397,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763395,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15703848}},"tts":1681428,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763425,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":27,"window_size":6266664}},"tts":1681458,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460763547,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1681611,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460763578,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7976,"stream_id":27}},"tts":1681641,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763608,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7976,"window_size":15695872}},"tts":1681641,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763639,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7976,"stream_id":27,"window_size":6258688}},"tts":1681672,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460763669,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":207,"stream_id":27}},"tts":1681703,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763700,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-207,"window_size":15695665}},"tts":1681733,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763730,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-207,"stream_id":27,"window_size":6258481}},"tts":1681764,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460763761,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":971}},"tts":1681794,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460763852,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":12730}},"tts":1681886,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460763883,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":971,"stream_id":27}},"tts":1681947,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763913,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-971,"window_size":15694694}},"tts":1681947,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460763944,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-971,"stream_id":27,"window_size":6257510}},"tts":1681977,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460764066,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1682130,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460764097,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":27}},"tts":1682160,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764127,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15686502}},"tts":1682160,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764158,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":27,"window_size":6249318}},"tts":1682191,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460764280,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4604}},"tts":1682313,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460764341,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4587,"stream_id":27}},"tts":1682374,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764371,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4587,"window_size":15681915}},"tts":1682405,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764402,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4587,"stream_id":27,"window_size":6244731}},"tts":1682435,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460764432,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":27}},"tts":1682466,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764493,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15683093}},"tts":1682527,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764524,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15684280}},"tts":1682557,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764585,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15692472}},"tts":1682618,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764615,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5827,"window_size":15698299}},"tts":1682679,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764676,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":216,"window_size":15698515}},"tts":1682710,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764737,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15706707}},"tts":1682771,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764799,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7976,"window_size":15714683}},"tts":1682832,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460764829,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1682862,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460764829,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1682862,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460764860,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1682893,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460764982,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1683015,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460765012,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1683045,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460765134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1683168,"id":"0xaf8a65d7fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460765195,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1683229,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460765226,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1683259,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460765287,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1683320,"id":"0xba45c702"},
-{"pid":27369,"tid":27407,"ts":326460765348,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1683381,"id":"0xba45c802"},
-{"pid":27369,"tid":27407,"ts":326460765409,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1683442,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460765500,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":207,"window_size":15714890}},"tts":1683534,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460765531,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":971,"window_size":15715861}},"tts":1683564,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460765623,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15724053}},"tts":1683656,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460765684,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4587,"window_size":15728640}},"tts":1683717,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460765745,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1683778,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460765775,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1683808,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460765806,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13957,"index":1,"offset":32768,"truncate":true}},"tts":1683839,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460765897,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":26}},"tts":1683961,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460765958,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1683992,"id":"0xaf8a6e5afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460765989,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":26}},"tts":1684022,"id":"0x161"},
-{"pid":27369,"tid":27407,"ts":326460766019,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1684053,"id":"0xaf8a6e5bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460766080,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460739},"tts":1684114,"id":"0xaf8a6e4ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460766111,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1684144},
-{"pid":27369,"tid":27407,"ts":326460766141,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1684175,"id":"0xaf8a6e49febbc614"},
-{"pid":27369,"tid":27407,"ts":326460766141,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":336,"tdur":335,"tts":1684175},
-{"pid":27369,"tid":27407,"ts":326460766202,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":12607}},"tts":1684236,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460766263,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":30730,"index":1,"offset":32768,"truncate":true}},"tts":1684297,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460766416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1684449,"id":"0xaf8a65d0fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460766477,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460755},"tts":1684541,"id":"0xaf8a6291febbc614"},
-{"pid":27369,"tid":27407,"ts":326460766508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache_transaction.cc","src_func":"DoAddToEntry"},"dur":0,"tdur":0,"tts":1684541},
-{"pid":27369,"tid":27407,"ts":326460766538,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1684571,"id":"0xaf8a6e4bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460766538,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1684571},
-{"pid":27369,"tid":27407,"ts":326460766569,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":465}},"tts":1684602,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460766599,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460745},"tts":1684632,"id":"0xaf8a6e4afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460766630,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1684663},
-{"pid":27369,"tid":27407,"ts":326460766660,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1684694,"id":"0xaf8a6e44febbc614"},
-{"pid":27369,"tid":27407,"ts":326460766660,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":153,"tdur":122,"tts":1684694},
-{"pid":27369,"tid":27407,"ts":326460766691,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1684724,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460766721,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1684755,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460766752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1684785,"id":"0xaf8a65d1fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460766813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1684846,"id":"0xaf8a6e45febbc614"},
-{"pid":27369,"tid":27407,"ts":326460766813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":31,"tts":1684846},
-{"pid":27369,"tid":27407,"ts":326460766843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1684877,"id":"0xaf8a6e46febbc614"},
-{"pid":27369,"tid":27407,"ts":326460766843,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":245,"tdur":244,"tts":1684877},
-{"pid":27369,"tid":27407,"ts":326460766904,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1684968,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460767057,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1685090,"id":"0x7"},
-{"pid":27369,"tid":27407,"ts":326460767118,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1685151,"id":"0xaf8a6e40febbc614"},
-{"pid":27369,"tid":27407,"ts":326460767118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":122,"tts":1685151},
-{"pid":27369,"tid":27407,"ts":326460767149,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1685182,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460767149,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1685182,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460767179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1685212,"id":"0xaf8a65d2fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460767240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460749},"tts":1685273,"id":"0xaf8a6e47febbc614"},
-{"pid":27369,"tid":27407,"ts":326460767271,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1685304},
-{"pid":27369,"tid":27407,"ts":326460767271,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1685304,"id":"0xaf8a6e41febbc614"},
-{"pid":27369,"tid":27407,"ts":326460767271,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":30,"tts":1685304},
-{"pid":27369,"tid":27407,"ts":326460767301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1685334,"id":"0xaf8a6e42febbc614"},
-{"pid":27369,"tid":27407,"ts":326460767301,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1685334},
-{"pid":27369,"tid":27407,"ts":326460767332,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1685365,"id":"0xba45c202"},
-{"pid":27369,"tid":27407,"ts":326460767393,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1685426,"id":"0xaf8a6e43febbc614"},
-{"pid":27369,"tid":27407,"ts":326460767423,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":183,"tdur":183,"tts":1685457},
-{"pid":27369,"tid":27407,"ts":326460767454,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1685487,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460767576,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1685609,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460767606,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1685640,"id":"0xaf8a6e5cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460767637,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":336,"tdur":336,"tts":1685670},
-{"pid":27369,"tid":27407,"ts":326460767667,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1685731,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460767790,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1685823,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460767851,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1685884,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460767942,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1685975,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460768003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1686036,"id":"0xaf8a6e5dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460768003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":183,"tdur":184,"tts":1686036},
-{"pid":27369,"tid":27407,"ts":326460768034,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1686067,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460768064,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":14935,"index":1,"offset":32768,"truncate":true}},"tts":1686097,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460768156,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1686189,"id":"0xaf8a65d3fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460768217,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1686250,"id":"0xaf8a6e5efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460768217,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":4700,"tdur":3479,"tts":1686250},
-{"pid":27369,"tid":27407,"ts":326460768278,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1686311,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460768430,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1686494,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460768491,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":13}},"tts":1686525,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460768491,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15726266}},"tts":1686555,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460768522,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":13,"window_size":6289082}},"tts":1686586,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460768675,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1686708,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460768705,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":13}},"tts":1686738,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460768736,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15718074}},"tts":1686769,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460768766,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":13,"window_size":6280890}},"tts":1686799,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460768888,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1686922,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460768919,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4640,"stream_id":13}},"tts":1686983,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460768949,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4640,"window_size":15713434}},"tts":1686983,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460768980,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4640,"stream_id":13,"window_size":6276250}},"tts":1687013,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460769010,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3543,"stream_id":13}},"tts":1687044,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769041,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3543,"window_size":15709891}},"tts":1687074,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769071,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3543,"stream_id":13,"window_size":6272707}},"tts":1687105,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460769102,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1687135,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460769224,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1687257,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460769254,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":13}},"tts":1687288,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769285,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15709657}},"tts":1687318,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769316,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":13,"window_size":6272473}},"tts":1687349,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460769438,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1687471,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460769468,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":13}},"tts":1687501,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769499,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15701465}},"tts":1687532,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769529,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":13,"window_size":6264281}},"tts":1687562,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460769712,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1687746,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460769743,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":223,"stream_id":13}},"tts":1687776,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769773,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-223,"window_size":15701242}},"tts":1687807,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460769773,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-223,"stream_id":13,"window_size":6264058}},"tts":1687837,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460769804,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":13}},"tts":1687837,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460770719,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":16}},"tts":1687959,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460770750,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1687990,"id":"0xaf8a6e51febbc614"},
-{"pid":27369,"tid":27407,"ts":326460770750,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":16}},"tts":1688020,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460770964,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 12455","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 60652","content-type: image/png","date: Mon, 22 Jun 2015 14:43:54 GMT","expires: Sat, 05 Mar 2016 19:34:16 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":23}},"tts":1688203,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460771177,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 12455","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 60652","content-type: image/png","date: Mon, 22 Jun 2015 14:43:54 GMT","expires: Sat, 05 Mar 2016 19:34:16 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1688417,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771238,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1688478,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771299,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1688539,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771391,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1688631,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771452,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1688692,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771452,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1688692,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771482,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1688722,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771513,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1688753,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771513,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1688753,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771544,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1688783,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771544,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1688814,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771574,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1688814,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771605,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1688844,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771635,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1688875,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460771635,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1688875,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771666,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1688905,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771696,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1688936,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771757,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1688997,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771788,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1689058,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460771879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1689119,"id":"0xaf8a60fafeb47934"},
-{"pid":27369,"tid":27407,"ts":326460772551,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1689363,"id":"0xba45ca02"},
-{"pid":27369,"tid":27407,"ts":326460772703,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1689516,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460772734,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1689546,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460772795,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7865,"stream_id":23}},"tts":1689607,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460772825,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7865,"window_size":15693377}},"tts":1689638,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460772856,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7865,"stream_id":23,"window_size":6283591}},"tts":1689668,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460772886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1689699,"id":"0xaf8a6e52febbc614"},
-{"pid":27369,"tid":27407,"ts":326460772917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1689729,"id":"0xaf8a6e53febbc614"},
-{"pid":27369,"tid":27407,"ts":326460772947,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1689760},
-{"pid":27369,"tid":27407,"ts":326460772978,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1689790},
-{"pid":27369,"tid":27407,"ts":326460772978,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1689790,"id":"0xccc52c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460773008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1689821,"id":"0xaf8a6e5ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460773008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":92,"tdur":62,"tts":1689851},
-{"pid":27369,"tid":27407,"ts":326460773039,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":18695}},"tts":1689851,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460773070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1689882,"id":"0xaf8a6e6cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460773100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1689913,"id":"0xaf8a6e58febbc614"},
-{"pid":27369,"tid":27407,"ts":326460773131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":152,"tdur":153,"tts":1689943},
-{"pid":27369,"tid":27407,"ts":326460773161,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1689974,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460773192,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1178,"index":1,"offset":32768,"truncate":true}},"tts":1690004,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460773222,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1690035,"id":"0xaf8a65ecfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460773283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690096,"id":"0xaf8a6e59febbc614"},
-{"pid":27369,"tid":27407,"ts":326460773314,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":183,"tdur":183,"tts":1690126},
-{"pid":27369,"tid":27407,"ts":326460773344,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1690157,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460773375,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13957,"index":1,"offset":32768,"truncate":true}},"tts":1690187,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460773466,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1690279,"id":"0xaf8a65edfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460773497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690340,"id":"0xaf8a6e5afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460773527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":214,"tdur":213,"tts":1690340},
-{"pid":27369,"tid":27407,"ts":326460773588,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1690401,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460773710,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1690523,"id":"0x15a"},
-{"pid":27369,"tid":27407,"ts":326460773772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690584,"id":"0xaf8a6e5bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460773772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":30,"tdur":30,"tts":1690584},
-{"pid":27369,"tid":27407,"ts":326460773833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690645,"id":"0xaf8a6e54febbc614"},
-{"pid":27369,"tid":27407,"ts":326460773833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1690645},
-{"pid":27369,"tid":27407,"ts":326460773863,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":30730}},"tts":1690676,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460773894,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1690706,"id":"0xaf8a6e6efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460773924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690737,"id":"0xaf8a6e55febbc614"},
-{"pid":27369,"tid":27407,"ts":326460773924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":92,"tdur":61,"tts":1690767},
-{"pid":27369,"tid":27407,"ts":326460773955,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1690767,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460773985,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1690798,"id":"0x218"},
-{"pid":27369,"tid":27407,"ts":326460774016,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690828,"id":"0xaf8a6e56febbc614"},
-{"pid":27369,"tid":27407,"ts":326460774016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1690828},
-{"pid":27369,"tid":27407,"ts":326460774046,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1690859,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460774046,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1690859,"id":"0x214"},
-{"pid":27369,"tid":27407,"ts":326460774077,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690920,"id":"0xaf8a6e57febbc614"},
-{"pid":27369,"tid":27407,"ts":326460774107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1690920},
-{"pid":27369,"tid":27407,"ts":326460774138,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":14935}},"tts":1690950,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460774138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1690950,"id":"0xaf8a6e68febbc614"},
-{"pid":27369,"tid":27407,"ts":326460774168,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1690981,"id":"0xaf8a6e50febbc614"},
-{"pid":27369,"tid":27407,"ts":326460774199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1691011},
-{"pid":27369,"tid":27407,"ts":326460774199,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1691011,"id":"0xba45c902"},
-{"pid":27369,"tid":27407,"ts":326460774260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1691072,"id":"0xaf8a6e51febbc614"},
-{"pid":27369,"tid":27407,"ts":326460774260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":183,"tdur":183,"tts":1691072},
-{"pid":27369,"tid":27407,"ts":326460774321,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1691133,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460774412,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1691225,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460774473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1691286,"id":"0xaf8a6e53febbc614"},
-{"pid":27369,"tid":27407,"ts":326460774473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":3816,"tdur":3327,"tts":1691286},
-{"pid":27369,"tid":27407,"ts":326460774504,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":435}},"tts":1691316,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460774657,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1691469,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460774687,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":435,"stream_id":23}},"tts":1691500,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460774718,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-435,"window_size":15692942}},"tts":1691530,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460774718,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-435,"stream_id":23,"window_size":6283156}},"tts":1691530,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460774870,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1691683,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460774901,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8084,"stream_id":23}},"tts":1691713,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460774931,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8084,"window_size":15684858}},"tts":1691744,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460774962,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8084,"stream_id":23,"window_size":6275072}},"tts":1691774,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460774992,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":99,"stream_id":23}},"tts":1691805,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775023,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-99,"window_size":15684759}},"tts":1691835,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775023,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-99,"stream_id":23,"window_size":6274973}},"tts":1691835,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460775175,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1691988,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460775206,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1692018,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775236,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15676567}},"tts":1692049,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775267,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6266781}},"tts":1692079,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460775298,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1421}},"tts":1692110,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460775450,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1692263,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460775481,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1421,"stream_id":23}},"tts":1692293,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775511,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1421,"window_size":15675146}},"tts":1692324,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775542,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1421,"stream_id":23,"window_size":6265360}},"tts":1692354,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460775694,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1692507,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460775725,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":6672,"stream_id":23}},"tts":1692537,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775755,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-6672,"window_size":15668474}},"tts":1692568,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460775755,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-6672,"stream_id":23,"window_size":6258688}},"tts":1692568,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460775938,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 7483","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 75154","content-type: image/png","date: Mon, 22 Jun 2015 16:06:46 GMT","expires: Sat, 05 Mar 2016 20:57:08 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":15}},"tts":1692751,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460776183,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 7483","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 75154","content-type: image/png","date: Mon, 22 Jun 2015 16:06:46 GMT","expires: Sat, 05 Mar 2016 20:57:08 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1692995,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776213,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1693026,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776244,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1693087,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776366,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1693178,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776396,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1693209,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776427,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1693239,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776457,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1693270,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776457,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1693270,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776488,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1693300,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776518,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1693331,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776518,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1693331,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776549,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1693361,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776579,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1693392,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776579,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1693392,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460776610,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1693422,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776640,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1693453,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776671,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1693483,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776732,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1693544,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776762,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1693575,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460776824,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1693636,"id":"0xaf8a60fbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460777526,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1693850,"id":"0xba45cb02"},
-{"pid":27369,"tid":27407,"ts":326460777678,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1694002,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460777709,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1694033,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460777770,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1434,"stream_id":15}},"tts":1694094,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460777800,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1434,"window_size":15667040}},"tts":1694124,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460777831,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1434,"stream_id":15,"window_size":6290022}},"tts":1694155,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460777861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1694185,"id":"0xaf8a6e69febbc614"},
-{"pid":27369,"tid":27407,"ts":326460777983,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8053}},"tts":1694307,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460778136,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1694491,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460778197,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8053,"stream_id":15}},"tts":1694521,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778227,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8053,"window_size":15658987}},"tts":1694552,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778227,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8053,"stream_id":15,"window_size":6281969}},"tts":1694582,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460778258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1694582,"id":"0xaf8a6e6afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460778319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460773},"tts":1694643,"id":"0xaf8a6e52febbc614"},
-{"pid":27369,"tid":27407,"ts":326460778319,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1099,"tdur":1099,"tts":1694643},
-{"pid":27369,"tid":27407,"ts":326460778411,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7865,"window_size":15666852}},"tts":1694735,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778441,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":7865,"stream_id":23,"window_size":6266553}},"tts":1694765,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778472,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":435,"window_size":15667287}},"tts":1694796,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778502,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":435,"stream_id":23,"window_size":6266988}},"tts":1694826,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778563,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8084,"window_size":15675371}},"tts":1694887,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778594,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8084,"stream_id":23,"window_size":6275072}},"tts":1694918,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778624,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":99,"window_size":15675470}},"tts":1694948,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778655,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":99,"stream_id":23,"window_size":6275171}},"tts":1694979,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778716,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15683662}},"tts":1695040,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778746,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":23,"window_size":6283363}},"tts":1695070,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778777,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1421,"window_size":15685083}},"tts":1695101,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778807,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1421,"stream_id":23,"window_size":6284784}},"tts":1695131,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778838,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":6672,"window_size":15691755}},"tts":1695162,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460778868,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":6672,"stream_id":23,"window_size":6291456}},"tts":1695193,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778899,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1695223,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778899,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1695254,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460778929,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1695254,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460778960,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1695284,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460778990,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1695345,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460779143,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1695467,"id":"0xaf8a65eefd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460779174,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1695498,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460779204,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1695559,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460779265,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1695589,"id":"0xba45cc02"},
-{"pid":27369,"tid":27407,"ts":326460779357,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1695681,"id":"0xba45cd02"},
-{"pid":27369,"tid":27407,"ts":326460779387,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1695742,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460779448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1695772,"id":"0xaf8a6e6cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460779448,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":2533,"tdur":1008,"tts":1695772},
-{"pid":27369,"tid":27407,"ts":326460779479,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1695803,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460779509,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":18695}},"tts":1695833,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460779570,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1695895,"id":"0xba45ce02"},
-{"pid":27369,"tid":27407,"ts":326460779601,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1695925,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460779631,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1695956,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460779662,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1695986,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460779662,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1695986,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460779692,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1696017,"id":"0xaf8a6e64febbc614"},
-{"pid":27369,"tid":27407,"ts":326460779723,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1696047,"id":"0xaf8a6e65febbc614"},
-{"pid":27369,"tid":27407,"ts":326460779784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1696108,"id":"0xaf8a60f4feb47934"},
-{"pid":27369,"tid":27407,"ts":326460780944,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1696383,"id":"0xba45cf02"},
-{"pid":27369,"tid":27407,"ts":326460781035,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1696474,"id":"0xaf8a60f5feb47934"},
-{"pid":27369,"tid":27407,"ts":326460781920,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1696719,"id":"0x1fa"},
-{"pid":27369,"tid":27407,"ts":326460782012,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1696810,"id":"0xaf8a6e6dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460782012,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1696810},
-{"pid":27369,"tid":27407,"ts":326460782043,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1178}},"tts":1696841,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460782073,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1696871,"id":"0xaf8a6e66febbc614"},
-{"pid":27369,"tid":27369,"ts":326460780089,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2341156},
-{"pid":27369,"tid":27369,"ts":326460780303,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2341217,"id":"0xaf8a60f4feb47934"},
-{"pid":27369,"tid":27369,"ts":326460780303,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":366,"tdur":366,"tts":2341217},
-{"pid":27369,"tid":27369,"ts":326460780761,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2341675},
-{"pid":27369,"tid":27369,"ts":326460781280,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2341919},
-{"pid":27369,"tid":27369,"ts":326460781493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2341980,"id":"0xaf8a60f5feb47934"},
-{"pid":27369,"tid":27369,"ts":326460781524,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":91,"tdur":91,"tts":2342011},
-{"pid":27369,"tid":27369,"ts":326460781524,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2342011},
-{"pid":27369,"tid":27369,"ts":326460781554,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2342041},
-{"pid":27369,"tid":27369,"ts":326460781554,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":0,"tts":2342072},
-{"pid":27369,"tid":27369,"ts":326460781585,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2342072},
-{"pid":27369,"tid":27369,"ts":326460781707,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2342194},
-{"pid":27369,"tid":27369,"ts":326460782714,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2342408},
-{"pid":27369,"tid":27369,"ts":326460782775,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2342438,"id":"0xaf8a60f6feb47934"},
-{"pid":27369,"tid":27369,"ts":326460782775,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":336,"tdur":336,"tts":2342438},
-{"pid":27369,"tid":27369,"ts":326460783172,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2342835},
-{"pid":27369,"tid":27369,"ts":326460783599,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2343018},
-{"pid":27369,"tid":27369,"ts":326460783691,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2343048,"id":"0xaf8a60f7feb47934"},
-{"pid":27369,"tid":27369,"ts":326460783691,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":91,"tdur":92,"tts":2343048},
-{"pid":27369,"tid":27369,"ts":326460783721,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2343079},
-{"pid":27369,"tid":27369,"ts":326460783721,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2343079},
-{"pid":27369,"tid":27369,"ts":326460783752,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":0,"tts":2343110},
-{"pid":27369,"tid":27369,"ts":326460783752,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2343110},
-{"pid":27369,"tid":27369,"ts":326460783843,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2343201},
-{"pid":27369,"tid":27369,"ts":326460784454,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2343415},
-{"pid":27369,"tid":27369,"ts":326460784881,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2343445,"id":"0xaf8a60f0feb47934"},
-{"pid":27369,"tid":27369,"ts":326460784911,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":367,"tdur":366,"tts":2343476},
-{"pid":27369,"tid":27369,"ts":326460785461,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2344025},
-{"pid":27369,"tid":27369,"ts":326460785552,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2344117},
-{"pid":27369,"tid":27369,"ts":326460785858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2344178,"id":"0xaf8a60f1feb47934"},
-{"pid":27369,"tid":27369,"ts":326460785858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":91,"tdur":91,"tts":2344178},
-{"pid":27369,"tid":27369,"ts":326460785888,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":0,"tts":2344208},
-{"pid":27369,"tid":27369,"ts":326460785888,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2344208},
-{"pid":27369,"tid":27369,"ts":326460785919,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":0,"tdur":0,"tts":2344239},
-{"pid":27369,"tid":27369,"ts":326460785919,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2344239},
-{"pid":27369,"tid":27369,"ts":326460786102,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2344422},
-{"pid":27369,"tid":27369,"ts":326460786743,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2344666},
-{"pid":27369,"tid":27369,"ts":326460786804,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2344697},
-{"pid":27369,"tid":27369,"ts":326460786834,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2344727},
-{"pid":27369,"tid":27369,"ts":326460786865,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460786215},"dur":61,"tdur":61,"tts":2344758},
-{"pid":27369,"tid":27369,"ts":326460786865,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2344758},
-{"pid":27369,"tid":27369,"ts":326460786895,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2344788,"id":"0xaf8a6e7cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460787048,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2344941},
-{"pid":27369,"tid":27369,"ts":326460787170,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2345002},
-{"pid":27369,"tid":27369,"ts":326460787292,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2345124},
-{"pid":27369,"tid":27369,"ts":326460787292,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2345154,"id":"0xaf8a60f2feb47934"},
-{"pid":27369,"tid":27369,"ts":326460787323,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":152,"tdur":122,"tts":2345154},
-{"pid":27369,"tid":27369,"ts":326460787536,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2345368},
-{"pid":27369,"tid":27369,"ts":326460788513,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2345521},
-{"pid":27369,"tid":27369,"ts":326460788696,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2345551,"id":"0xaf8a60f3feb47934"},
-{"pid":27369,"tid":27369,"ts":326460788726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":397,"tdur":396,"tts":2345582},
-{"pid":27369,"tid":27369,"ts":326460789184,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2346039},
-{"pid":27369,"tid":27369,"ts":326460789276,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2346131},
-{"pid":27369,"tid":27369,"ts":326460789306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2346162,"id":"0xaf8a608cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460789306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":122,"tdur":91,"tts":2346162},
-{"pid":27369,"tid":27369,"ts":326460789337,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2346192},
-{"pid":27369,"tid":27369,"ts":326460789337,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2346192},
-{"pid":27369,"tid":27369,"ts":326460789367,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":0,"tdur":0,"tts":2346223},
-{"pid":27369,"tid":27369,"ts":326460789367,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2346223},
-{"pid":27369,"tid":27369,"ts":326460789459,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2346345},
-{"pid":27369,"tid":27369,"ts":326460794342,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2346497},
-{"pid":27369,"tid":27369,"ts":326460794373,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2346497,"id":"0xaf8a608dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460794403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":855,"tdur":427,"tts":2346528},
-{"pid":27369,"tid":27369,"ts":326460795319,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2347016},
-{"pid":27369,"tid":27407,"ts":326460782104,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1696902,"id":"0xaf8a6e6efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460782104,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":1739,"tdur":946,"tts":1696902},
-{"pid":27369,"tid":27407,"ts":326460782134,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1696932,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460782165,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":30730}},"tts":1696963,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460782226,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1697024,"id":"0xba45d002"},
-{"pid":27369,"tid":27407,"ts":326460782287,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1697085,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460782317,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1697115,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460782348,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1697146,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460782378,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1697176,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460782409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697207,"id":"0xaf8a6e67febbc614"},
-{"pid":27369,"tid":27407,"ts":326460782439,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697237,"id":"0xaf8a6e60febbc614"},
-{"pid":27369,"tid":27407,"ts":326460782470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697268,"id":"0xaf8a60f6feb47934"},
-{"pid":27369,"tid":27407,"ts":326460783355,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1697482,"id":"0xba45d102"},
-{"pid":27369,"tid":27407,"ts":326460783416,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697543,"id":"0xaf8a60f7feb47934"},
-{"pid":27369,"tid":27407,"ts":326460783782,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1697787,"id":"0x206"},
-{"pid":27369,"tid":27407,"ts":326460783843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1697878,"id":"0xaf8a6e6ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460783874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1697878},
-{"pid":27369,"tid":27407,"ts":326460783904,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13957}},"tts":1697909,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460783904,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1697909,"id":"0xaf8a6e61febbc614"},
-{"pid":27369,"tid":27407,"ts":326460783935,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1697939,"id":"0xaf8a6e68febbc614"},
-{"pid":27369,"tid":27407,"ts":326460783965,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":733,"tdur":732,"tts":1697970},
-{"pid":27369,"tid":27407,"ts":326460783965,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1697970,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460783996,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":14935}},"tts":1698000,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460784057,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1698061,"id":"0xba45d202"},
-{"pid":27369,"tid":27407,"ts":326460784118,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1698122,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460784148,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1698153,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460784148,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1698153,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460784179,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1698184,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460784179,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1698184,"id":"0xaf8a6e62febbc614"},
-{"pid":27369,"tid":27407,"ts":326460784209,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1698214,"id":"0xaf8a6e63febbc614"},
-{"pid":27369,"tid":27407,"ts":326460784271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1698275,"id":"0xaf8a60f0feb47934"},
-{"pid":27369,"tid":27407,"ts":326460784423,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1698428,"id":"0xba45d302"},
-{"pid":27369,"tid":27407,"ts":326460784484,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1698489,"id":"0xaf8a60f1feb47934"},
-{"pid":27369,"tid":27407,"ts":326460784637,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1698641,"id":"0x202"},
-{"pid":27369,"tid":27407,"ts":326460784728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1698733,"id":"0xaf8a6e6afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460784728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":4548,"tdur":4547,"tts":1698733},
-{"pid":27369,"tid":27407,"ts":326460784881,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1698885,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460784911,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":6897,"stream_id":15}},"tts":1698916,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460784972,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-6897,"window_size":15684858}},"tts":1698977,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785003,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-6897,"stream_id":15,"window_size":6275072}},"tts":1699008,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460785034,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1286,"stream_id":15}},"tts":1699038,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785064,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1286,"window_size":15683572}},"tts":1699069,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785095,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1286,"stream_id":15,"window_size":6273786}},"tts":1699099,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460785247,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1699252,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460785278,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":15}},"tts":1699282,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785308,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15675380}},"tts":1699313,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785339,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":15,"window_size":6265594}},"tts":1699343,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460785430,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1421}},"tts":1699435,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460785613,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1699618,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460785644,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1421,"stream_id":15}},"tts":1699649,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785674,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1421,"window_size":15673959}},"tts":1699679,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785705,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1421,"stream_id":15,"window_size":6264173}},"tts":1699710,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460785888,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1699893,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460785919,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5485,"stream_id":15}},"tts":1699923,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460785949,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5485,"window_size":15668474}},"tts":1699954,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460786010,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5485,"stream_id":15,"window_size":6258688}},"tts":1700015,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460786224,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","access-control-allow-origin: *","age: 11937","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 2494","content-type: image/png","date: Mon, 22 Jun 2015 14:52:32 GMT","expires: Sat, 05 Mar 2016 19:42:54 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":21}},"tts":1700228,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460786437,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","access-control-allow-origin: *","age: 11937","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=22222222","content-length: 2494","content-type: image/png","date: Mon, 22 Jun 2015 14:52:32 GMT","expires: Sat, 05 Mar 2016 19:42:54 GMT","server: paintfe","x-content-type-options: nosniff","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1700442,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786498,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1700503,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786529,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1700564,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786651,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4112,"index":0,"offset":0,"truncate":true}},"tts":1700656,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786712,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1700717,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786712,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1700717,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786743,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1700747,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786773,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1700778,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786804,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1700808,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786834,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1700839,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786834,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1700839,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786865,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1700869,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786895,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1700900,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786926,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1700930,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460786926,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1700930,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786956,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1700961,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460786987,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1700991,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787048,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1701052,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787078,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1701083,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787139,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1701144,"id":"0xaf8a60f2feb47934"},
-{"pid":27369,"tid":27407,"ts":326460787292,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1701297,"id":"0xba45d502"},
-{"pid":27369,"tid":27407,"ts":326460787445,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1701449,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787475,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1701480,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787536,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2494,"stream_id":21}},"tts":1701541,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460787567,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2494,"window_size":15665980}},"tts":1701571,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460787597,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2494,"stream_id":21,"window_size":6288962}},"tts":1701602,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787628,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1701632,"id":"0xaf8a6e7dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460787628,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":21}},"tts":1701632,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460787689,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2494,"window_size":15668474}},"tts":1701724,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460787719,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1701724,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787750,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1701754,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787780,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":2494,"index":1,"offset":0,"truncate":true}},"tts":1701785,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460787780,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":2494}},"tts":1701815,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460787811,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":2494,"index":1,"offset":0,"truncate":true}},"tts":1701815,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460787872,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1701876,"id":"0xaf8a65effd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460787902,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1701938,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460787963,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":2494}},"tts":1701968,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460788025,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1702029,"id":"0xba45d602"},
-{"pid":27369,"tid":27407,"ts":326460788086,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1702090,"id":"0xba45d702"},
-{"pid":27369,"tid":27407,"ts":326460788116,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1702121,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460788147,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1702151,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460788147,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1702151,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460788177,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1702182,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460788208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702212,"id":"0xaf8a6e7ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460788238,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702243,"id":"0xaf8a6e78febbc614"},
-{"pid":27369,"tid":27407,"ts":326460788269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702273,"id":"0xaf8a60f3feb47934"},
-{"pid":27369,"tid":27407,"ts":326460788452,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1702456,"id":"0xba45d802"},
-{"pid":27369,"tid":27407,"ts":326460788513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702517,"id":"0xaf8a608cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460788665,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1702670,"id":"0x20a"},
-{"pid":27369,"tid":27407,"ts":326460788788,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":18}},"tts":1702823,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460788849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702853,"id":"0xaf8a6e79febbc614"},
-{"pid":27369,"tid":27407,"ts":326460788849,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":18}},"tts":1702853,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460788879,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":101,"stream_id":23}},"tts":1702884,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460788910,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-101,"window_size":15668373}},"tts":1702914,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460788940,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-101,"stream_id":23,"window_size":6291355}},"tts":1702945,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460788971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1702975,"id":"0xaf8a6e7afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460789123,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1703128,"id":"0x1ae"},{"pid":27369,"tid":27407,"ts":326460789154,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1703158,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789184,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15660181}},"tts":1703189,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789215,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6283163}},"tts":1703219,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460789245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1703250,"id":"0xaf8a6e7bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460789276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460778},"tts":1703280,"id":"0xaf8a6e69febbc614"},
-{"pid":27369,"tid":27407,"ts":326460789306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1374,"tdur":1373,"tts":1703311},
-{"pid":27369,"tid":27407,"ts":326460789337,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1434,"window_size":15661615}},"tts":1703341,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789367,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1434,"stream_id":15,"window_size":6260122}},"tts":1703372,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789459,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8053,"window_size":15669668}},"tts":1703464,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789459,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8053,"stream_id":15,"window_size":6268175}},"tts":1703464,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789520,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":6897,"window_size":15676565}},"tts":1703525,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789551,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":6897,"stream_id":15,"window_size":6275072}},"tts":1703555,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789612,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1286,"window_size":15677851}},"tts":1703616,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789612,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1286,"stream_id":15,"window_size":6276358}},"tts":1703647,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789703,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15686043}},"tts":1703708,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789734,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":15,"window_size":6284550}},"tts":1703738,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789764,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1421,"window_size":15687464}},"tts":1703769,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789764,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1421,"stream_id":15,"window_size":6285971}},"tts":1703769,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789825,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5485,"window_size":15692949}},"tts":1703830,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460789856,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":5485,"stream_id":15,"window_size":6291456}},"tts":1703860,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789886,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1703891,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789886,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1703891,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460789917,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1703921,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460790222,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1704227,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460790253,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1704257,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460790375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1704410,"id":"0xaf8a65e8fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460790436,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1704440,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460790466,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1704471,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460790527,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1704532,"id":"0xba45d902"},
-{"pid":27369,"tid":27407,"ts":326460790588,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1704593,"id":"0xba45da02"},
-{"pid":27369,"tid":27407,"ts":326460790649,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1704654,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460790680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1704684,"id":"0xaf8a6e6bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460790680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":91,"tdur":61,"tts":1704684},
-{"pid":27369,"tid":27407,"ts":326460790710,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1704715,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460790771,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1704776,"id":"0xaf8a6e64febbc614"},
-{"pid":27369,"tid":27407,"ts":326460790771,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":122,"tts":1704776},
-{"pid":27369,"tid":27407,"ts":326460790802,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1704806,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460790832,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1704837,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460790832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1704867,"id":"0xaf8a65e9fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460790893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1704898,"id":"0xaf8a6e65febbc614"},
-{"pid":27369,"tid":27407,"ts":326460790924,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1704929},
-{"pid":27369,"tid":27407,"ts":326460790924,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1704959,"id":"0xaf8a6e66febbc614"},
-{"pid":27369,"tid":27407,"ts":326460790954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":1313,"tdur":855,"tts":1704959},
-{"pid":27369,"tid":27407,"ts":326460790985,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1704990,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460791016,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1178}},"tts":1705020,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460791046,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1705051,"id":"0xba45db02"},
-{"pid":27369,"tid":27407,"ts":326460791107,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1705112,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460791138,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15695323}},"tts":1705142,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791229,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15703515}},"tts":1705234,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791260,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4640,"window_size":15708155}},"tts":1705264,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791321,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3543,"window_size":15711698}},"tts":1705325,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791351,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15711932}},"tts":1705356,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791412,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15720124}},"tts":1705447,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791443,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":223,"window_size":15720347}},"tts":1705447,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460791473,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1705478,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460791504,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1705508,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460791534,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":27398,"index":1,"offset":33946,"truncate":true}},"tts":1705539,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460791565,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":27398}},"tts":1705569,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460791595,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":27398,"index":1,"offset":33946,"truncate":true}},"tts":1705600,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460791687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1705692,"id":"0xaf8a65eafd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460792206,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1705753,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460792236,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":27398}},"tts":1705783,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460792267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1705814,"id":"0xaf8a6e77febbc614"},
-{"pid":27369,"tid":27407,"ts":326460792297,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1705844,"id":"0xaf8a6e67febbc614"},
-{"pid":27369,"tid":27407,"ts":326460792297,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":92,"tdur":92,"tts":1705844},
-{"pid":27369,"tid":27407,"ts":326460792328,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1705875,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460792328,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1705905,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460792358,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1705905,"id":"0xaf8a65ebfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460792419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1705966,"id":"0xaf8a6e60febbc614"},
-{"pid":27369,"tid":27407,"ts":326460792419,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1705966},
-{"pid":27369,"tid":27407,"ts":326460792450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1705997,"id":"0xaf8a6e61febbc614"},
-{"pid":27369,"tid":27407,"ts":326460792450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":763,"tdur":763,"tts":1705997},
-{"pid":27369,"tid":27407,"ts":326460792450,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1706027,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460792480,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":13957}},"tts":1706027,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460792542,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1706088,"id":"0xba45dc02"},
-{"pid":27369,"tid":27407,"ts":326460792572,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1706149,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460792603,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1706149,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460792633,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1706180,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460792633,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1706180,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460792664,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1706210,"id":"0xaf8a6e70febbc614"},
-{"pid":27369,"tid":27407,"ts":326460792694,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1706241,"id":"0xaf8a6e71febbc614"},
-{"pid":27369,"tid":27407,"ts":326460792755,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1706302,"id":"0xaf8a608dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460792938,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1706485,"id":"0xba45dd02"},
-{"pid":27369,"tid":27407,"ts":326460792999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1706546,"id":"0xaf8a608efeb47934"},
-{"pid":27369,"tid":27407,"ts":326460793152,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1706699,"id":"0x1fe"},
-{"pid":27369,"tid":27407,"ts":326460793243,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":62,"tdur":61,"tts":1706790},
-{"pid":27369,"tid":27407,"ts":326460793243,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":31,"tts":1706790},
-{"pid":27369,"tid":27407,"ts":326460793274,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1706821,"id":"0xccc52d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460793305,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1706851,"id":"0xaf8a6e62febbc614"},
-{"pid":27369,"tid":27407,"ts":326460793305,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":366,"tdur":92,"tts":1706851},
-{"pid":27369,"tid":27407,"ts":326460793335,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1706882,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460793366,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1706912,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460793396,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1706943,"id":"0xaf8a65e4fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460793701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1706973,"id":"0xaf8a6e63febbc614"},
-{"pid":27369,"tid":27407,"ts":326460793701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":31,"tdur":31,"tts":1706973},
-{"pid":27369,"tid":27407,"ts":326460793732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1707004,"id":"0xaf8a6e7cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460793732,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":305,"tdur":61,"tts":1707034},
-{"pid":27369,"tid":27407,"ts":326460793762,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1707034,"id":"0xba45d402"},
-{"pid":27369,"tid":27407,"ts":326460794068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":31,"tts":1707126},
-{"pid":27369,"tid":27407,"ts":326460794068,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":31,"tts":1707126},
-{"pid":27369,"tid":27407,"ts":326460794098,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1707157,"id":"0xccc52e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460794129,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1707187,"id":"0xaf8a6e7efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460794129,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1707187},
-{"pid":27369,"tid":27407,"ts":326460794159,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":2494}},"tts":1707218,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460794220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460788},"tts":1707279,"id":"0xaf8a6e7dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460794220,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1707279},
-{"pid":27369,"tid":27407,"ts":326460794251,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1707309,"id":"0xaf8a6e7ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460794251,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":91,"tdur":92,"tts":1707309},
-{"pid":27369,"tid":27407,"ts":326460794281,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1707340,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460794281,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1707340,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460794312,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1707370,"id":"0xaf8a65e5fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460794342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1707431,"id":"0xaf8a6e78febbc614"},
-{"pid":27369,"tid":27407,"ts":326460794373,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1707431},
-{"pid":27369,"tid":27407,"ts":326460794403,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1707462,"id":"0xaf8a6e79febbc614"},
-{"pid":27369,"tid":27407,"ts":326460794403,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":275,"tdur":274,"tts":1707462},
-{"pid":27369,"tid":27407,"ts":326460794495,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1707553,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460794647,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1707706,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460794708,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1707767,"id":"0xaf8a6e7bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460794708,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":4456,"tdur":3662,"tts":1707767},
-{"pid":27369,"tid":27407,"ts":326460794739,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7}},"tts":1707797,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460794861,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1707920,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460794892,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7,"stream_id":23}},"tts":1707950,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460794922,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7,"window_size":15720340}},"tts":1707981,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460794953,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7,"stream_id":23,"window_size":6283156}},"tts":1708042,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460795258,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1708194,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460795288,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8084,"stream_id":23}},"tts":1708225,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795319,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8084,"window_size":15712256}},"tts":1708255,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795349,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8084,"stream_id":23,"window_size":6275072}},"tts":1708286,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460795380,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":99,"stream_id":23}},"tts":1708316,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795410,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-99,"window_size":15712157}},"tts":1708347,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795441,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-99,"stream_id":23,"window_size":6274973}},"tts":1708377,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460795594,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1708560,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460795624,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1708591,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795655,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15703965}},"tts":1708621,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795685,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6266781}},"tts":1708621,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460795746,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1421}},"tts":1708683,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460795838,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1708774,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460795868,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1421,"stream_id":23}},"tts":1708805,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795899,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1421,"window_size":15702544}},"tts":1708835,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460795929,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1421,"stream_id":23,"window_size":6265360}},"tts":1708866,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460796234,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1709049,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460796296,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1788,"stream_id":23}},"tts":1709110,"id":"0x1b5"},
-{"pid":27369,"tid":27369,"ts":326460795410,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2347108},
-{"pid":27369,"tid":27369,"ts":326460795441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2347138,"id":"0xaf8a608efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460795471,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":123,"tdur":122,"tts":2347169},
-{"pid":27369,"tid":27369,"ts":326460795471,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":62,"tdur":61,"tts":2347169},
-{"pid":27369,"tid":27369,"ts":326460795502,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2347199},
-{"pid":27369,"tid":27369,"ts":326460795533,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2347230},
-{"pid":27369,"tid":27369,"ts":326460795533,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":30,"tts":2347230},
-{"pid":27369,"tid":27369,"ts":326460795655,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2347352},
-{"pid":27369,"tid":27369,"ts":326460798249,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2347535},
-{"pid":27369,"tid":27369,"ts":326460798279,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2347535,"id":"0xaf8a608ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460798279,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":519,"tdur":489,"tts":2347565},
-{"pid":27369,"tid":27369,"ts":326460798859,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2348115},
-{"pid":27369,"tid":27369,"ts":326460798951,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2348206},
-{"pid":27369,"tid":27369,"ts":326460798951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2348237,"id":"0xaf8a6088feb47934"},
-{"pid":27369,"tid":27369,"ts":326460798981,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":92,"tdur":91,"tts":2348237},
-{"pid":27369,"tid":27369,"ts":326460798981,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":30,"tts":2348237},
-{"pid":27369,"tid":27369,"ts":326460799012,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2348267},
-{"pid":27369,"tid":27369,"ts":326460799012,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2348267},
-{"pid":27369,"tid":27369,"ts":326460799042,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2348298},
-{"pid":27369,"tid":27369,"ts":326460799134,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2348390},
-{"pid":27369,"tid":27369,"ts":326460799989,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2348512},
-{"pid":27369,"tid":27369,"ts":326460799989,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":61,"tts":2348512},
-{"pid":27369,"tid":27369,"ts":326460800111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2348603,"id":"0xaf8a6089feb47934"},
-{"pid":27369,"tid":27369,"ts":326460800111,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":488,"tdur":366,"tts":2348603},
-{"pid":27369,"tid":27369,"ts":326460800690,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2349061},
-{"pid":27369,"tid":27369,"ts":326460800843,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2349214},
-{"pid":27369,"tid":27369,"ts":326460800843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2349244,"id":"0xaf8a608afeb47934"},
-{"pid":27369,"tid":27369,"ts":326460800874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":91,"tdur":92,"tts":2349244},
-{"pid":27369,"tid":27369,"ts":326460800874,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2349244},
-{"pid":27369,"tid":27369,"ts":326460800904,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2349275},
-{"pid":27369,"tid":27369,"ts":326460800935,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":0,"tdur":0,"tts":2349305},
-{"pid":27369,"tid":27369,"ts":326460800935,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2349305},
-{"pid":27369,"tid":27369,"ts":326460801026,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2349397},
-{"pid":27369,"tid":27369,"ts":326460804048,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2349671},
-{"pid":27369,"tid":27369,"ts":326460804109,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2349702},
-{"pid":27369,"tid":27369,"ts":326460804139,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":184,"tts":2349732},
-{"pid":27369,"tid":27369,"ts":326460804170,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460802897},"dur":30,"tdur":30,"tts":2349763},
-{"pid":27369,"tid":27369,"ts":326460804170,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2349763},
-{"pid":27369,"tid":27369,"ts":326460804200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2349793,"id":"0xaf8a6e07febbc614"},
-{"pid":27369,"tid":27369,"ts":326460804353,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2349946},
-{"pid":27369,"tid":27369,"ts":326460804506,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2350099},
-{"pid":27369,"tid":27369,"ts":326460807252,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2350343},
-{"pid":27369,"tid":27369,"ts":326460807283,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2350373,"id":"0xaf8a608bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460807283,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":458,"tdur":183,"tts":2350373},
-{"pid":27369,"tid":27369,"ts":326460807802,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2350618},
-{"pid":27369,"tid":27369,"ts":326460809419,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2350801},
-{"pid":27369,"tid":27369,"ts":326460809450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2350831,"id":"0xaf8a6084feb47934"},
-{"pid":27369,"tid":27369,"ts":326460809450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":793,"tdur":763,"tts":2350831},
-{"pid":27369,"tid":27369,"ts":326460809480,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":763,"tdur":732,"tts":2350862},
-{"pid":27369,"tid":27369,"ts":326460809511,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":732,"tdur":672,"tts":2350892},
-{"pid":27369,"tid":27369,"ts":326460809999,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":122,"tts":2351350},
-{"pid":27369,"tid":27369,"ts":326460809999,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":122,"tdur":122,"tts":2351350},
-{"pid":27369,"tid":27369,"ts":326460809999,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2351350},
-{"pid":27369,"tid":27369,"ts":326460810060,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2351411,"id":"0xaf8a6085feb47934"},
-{"pid":27369,"tid":27369,"ts":326460810152,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2351503},
-{"pid":27369,"tid":27369,"ts":326460810213,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2351564},
-{"pid":27369,"tid":27369,"ts":326460810335,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2351686},
-{"pid":27369,"tid":27369,"ts":326460810426,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2351777},
-{"pid":27369,"tid":27369,"ts":326460810457,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2351808,"id":"0xaf8a6085feb47934"},
-{"pid":27369,"tid":27369,"ts":326460810457,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1557,"tdur":1526,"tts":2351808},
-{"pid":27369,"tid":27369,"ts":326460810488,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2351838},
-{"pid":27369,"tid":27369,"ts":326460810518,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1496,"tdur":1434,"tts":2351869},
-{"pid":27369,"tid":27369,"ts":326460810549,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":118},"dur":61,"tdur":61,"tts":2351899},
-{"pid":27369,"tid":27369,"ts":326460810549,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2351899},
-{"pid":27369,"tid":27407,"ts":326460796296,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1788,"window_size":15700756}},"tts":1709110,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796326,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1788,"stream_id":23,"window_size":6263572}},"tts":1709171,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460796357,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":23}},"tts":1709171,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796448,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":101,"window_size":15700857}},"tts":1709262,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796509,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15709049}},"tts":1709323,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796540,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7,"window_size":15709056}},"tts":1709354,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796601,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8084,"window_size":15717140}},"tts":1709415,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796662,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":99,"window_size":15717239}},"tts":1709476,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796723,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15725431}},"tts":1709537,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796753,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1421,"window_size":15726852}},"tts":1709568,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796784,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1788,"window_size":15728640}},"tts":1709598,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460796784,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1709629,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460796814,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1709629,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460796845,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":27884,"index":1,"offset":32768,"truncate":true}},"tts":1709659,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460796967,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":27884}},"tts":1709781,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460796998,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":27884,"index":1,"offset":32768,"truncate":true}},"tts":1709812,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460797150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1709964,"id":"0xaf8a65e6fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460797730,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1709995,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460797761,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":27884}},"tts":1710056,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460797822,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1710117,"id":"0xba45de02"},
-{"pid":27369,"tid":27407,"ts":326460797883,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1710148,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460797913,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1710178,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460797944,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1710209,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460797944,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1710209,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460797974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1710239,"id":"0xaf8a6e0efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460798005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1710270,"id":"0xaf8a6e0ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460798066,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1710331,"id":"0xaf8a608ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460798249,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1710514,"id":"0xba45df02"},
-{"pid":27369,"tid":27407,"ts":326460798310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1710575,"id":"0xaf8a6088feb47934"},
-{"pid":27369,"tid":27407,"ts":326460798524,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1710788,"id":"0x20e"},
-{"pid":27369,"tid":27407,"ts":326460798707,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":20}},"tts":1711002,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460798768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1711033,"id":"0xaf8a6e08febbc614"},
-{"pid":27369,"tid":27407,"ts":326460798768,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":20}},"tts":1711063,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460798829,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":6378,"stream_id":15}},"tts":1711094,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460798859,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-6378,"window_size":15722262}},"tts":1711124,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460798890,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-6378,"stream_id":15,"window_size":6285078}},"tts":1711155,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460798890,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1711155,"id":"0xaf8a6e09febbc614"},
-{"pid":27369,"tid":27407,"ts":326460799042,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1711307,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460799073,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":15}},"tts":1711338,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460799103,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15714070}},"tts":1711368,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460799134,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":15,"window_size":6276886}},"tts":1711399,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460799164,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1711429,"id":"0xaf8a6e0afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460799195,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1711460},
-{"pid":27369,"tid":27407,"ts":326460799225,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1711490},
-{"pid":27369,"tid":27407,"ts":326460799225,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1711490,"id":"0xccc52f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460799256,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":30,"tts":1711521},
-{"pid":27369,"tid":27407,"ts":326460799256,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1711521,"id":"0xccc53002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460799287,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":1711551},
-{"pid":27369,"tid":27407,"ts":326460799287,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1711551,"id":"0xccc53102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460799348,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460789},"tts":1711612,"id":"0xaf8a6e7afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460799348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":0,"tdur":0,"tts":1711612},
-{"pid":27369,"tid":27407,"ts":326460799378,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1711643,"id":"0xaf8a6e74febbc614"},
-{"pid":27369,"tid":27407,"ts":326460799378,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1711643},
-{"pid":27369,"tid":27407,"ts":326460799409,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1711674,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460799439,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1711704,"id":"0xaf8a6e75febbc614"},
-{"pid":27369,"tid":27407,"ts":326460799439,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1711704},
-{"pid":27369,"tid":27407,"ts":326460799470,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1711735,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460799470,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1711765,"id":"0x1fc"},
-{"pid":27369,"tid":27407,"ts":326460799531,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1711796,"id":"0xaf8a6e76febbc614"},
-{"pid":27369,"tid":27407,"ts":326460799531,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1711796},
-{"pid":27369,"tid":27407,"ts":326460799561,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":27398}},"tts":1711826,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460799592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1711857,"id":"0xaf8a6e77febbc614"},
-{"pid":27369,"tid":27407,"ts":326460799592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":763,"tdur":732,"tts":1711857},
-{"pid":27369,"tid":27407,"ts":326460799622,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1711887,"id":"0xba45e002"},
-{"pid":27369,"tid":27407,"ts":326460799683,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1711948,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460799714,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1711979,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460799714,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1711979,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460799744,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1712009,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460799775,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1712040,"id":"0xaf8a6e0bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460799805,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1712070,"id":"0xaf8a6e04febbc614"},
-{"pid":27369,"tid":27407,"ts":326460799836,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1712101,"id":"0xaf8a6089feb47934"},
-{"pid":27369,"tid":27407,"ts":326460799989,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1712253,"id":"0xba45e102"},
-{"pid":27369,"tid":27407,"ts":326460800141,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1712376,"id":"0xaf8a608afeb47934"},
-{"pid":27369,"tid":27407,"ts":326460800294,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1712528,"id":"0x1f2"},
-{"pid":27369,"tid":27407,"ts":326460800355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1712589,"id":"0xaf8a6e70febbc614"},
-{"pid":27369,"tid":27407,"ts":326460800385,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":397,"tdur":91,"tts":1712620},
-{"pid":27369,"tid":27407,"ts":326460800385,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1712620,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460800416,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1712650,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460800446,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1712681,"id":"0xaf8a65e7fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460800813,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1712742,"id":"0xaf8a6e71febbc614"},
-{"pid":27369,"tid":27407,"ts":326460800813,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":30,"tts":1712742},
-{"pid":27369,"tid":27407,"ts":326460800843,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1712772,"id":"0xaf8a6e72febbc614"},
-{"pid":27369,"tid":27407,"ts":326460800843,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":92,"tdur":92,"tts":1712772},
-{"pid":27369,"tid":27407,"ts":326460800874,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1712803,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460800904,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1712833,"id":"0x204"},
-{"pid":27369,"tid":27407,"ts":326460800935,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1712864,"id":"0xaf8a6e73febbc614"},
-{"pid":27369,"tid":27407,"ts":326460800935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1712864},
-{"pid":27369,"tid":27407,"ts":326460800965,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1712894,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460800965,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1712894,"id":"0x208"},
-{"pid":27369,"tid":27407,"ts":326460801026,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":31,"tts":1712955},
-{"pid":27369,"tid":27407,"ts":326460801026,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":0,"tts":1712986},
-{"pid":27369,"tid":27407,"ts":326460801057,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1712986,"id":"0xccc53202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460801087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1713016,"id":"0xaf8a6e0cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460801087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1713016},
-{"pid":27369,"tid":27407,"ts":326460801118,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1713047,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460801118,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1713047,"id":"0x20c"},
-{"pid":27369,"tid":27407,"ts":326460801148,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1713108,"id":"0xaf8a6e0dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460801179,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":30,"tdur":31,"tts":1713108},
-{"pid":27369,"tid":27407,"ts":326460801209,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":27884}},"tts":1713139,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460801240,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1713169,"id":"0xaf8a6e0efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460801240,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":122,"tts":1713169},
-{"pid":27369,"tid":27407,"ts":326460801270,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1713200,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460801301,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1713230,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460801331,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1713261,"id":"0xaf8a65e0fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460801392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1713322,"id":"0xaf8a6e0ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460801392,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":31,"tdur":30,"tts":1713322},
-{"pid":27369,"tid":27407,"ts":326460801423,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1713352,"id":"0xaf8a6e08febbc614"},
-{"pid":27369,"tid":27407,"ts":326460801453,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":245,"tdur":244,"tts":1713383},
-{"pid":27369,"tid":27407,"ts":326460801515,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1713444,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460801667,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1713596,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460801728,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1713657},
-{"pid":27369,"tid":27407,"ts":326460801759,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1713688},
-{"pid":27369,"tid":27407,"ts":326460801759,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1713688,"id":"0xccc53302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460801789,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1713718,"id":"0xaf8a6e0afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460801789,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"DoReadLoop"},"dur":3480,"tdur":2960,"tts":1713749},
-{"pid":27369,"tid":27407,"ts":326460801850,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":852}},"tts":1713779,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460801942,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1713871,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460801972,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":852,"stream_id":15}},"tts":1713902,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802003,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-852,"window_size":15713218}},"tts":1713932,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802033,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-852,"stream_id":15,"window_size":6276034}},"tts":1713963,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460802155,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1714115,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460802216,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":962,"stream_id":15}},"tts":1714146,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802216,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-962,"window_size":15712256}},"tts":1714146,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802247,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-962,"stream_id":15,"window_size":6275072}},"tts":1714176,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460802278,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7221,"stream_id":15}},"tts":1714207,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802308,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7221,"window_size":15705035}},"tts":1714268,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802369,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7221,"stream_id":15,"window_size":6267851}},"tts":1714298,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460802491,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1714420,"id":"0x1ae"},
-{"pid":27369,"tid":27480,"ts":326460801392,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":245,"tdur":244,"tts":69250},
-{"pid":27369,"tid":27480,"ts":326460801606,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":69464,"id":"0xaf8a6e06febbc614"},
-{"pid":27369,"tid":27644,"ts":326460804139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":3296,"id":"0xaf8a65e1fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460804170,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":428,"tts":3326},
-{"pid":27369,"tid":27644,"ts":326460804597,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3754,"id":"0xaf8a6e00febbc614"},
-{"pid":27369,"tid":27482,"ts":326460808107,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":76026,"id":"0xaf8a65e2fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460808137,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":245,"tdur":244,"tts":76056},
-{"pid":27369,"tid":27482,"ts":326460808382,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76300,"id":"0xaf8a6e03febbc614"},
-{"pid":27369,"tid":27530,"ts":326460809786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":33419,"id":"0xaf8a65e3fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460809786,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":274,"tdur":275,"tts":33419},
-{"pid":27369,"tid":27530,"ts":326460810030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":33663,"id":"0xaf8a6e1efebbc614"},
-{"pid":27369,"tid":27643,"ts":326460810335,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":5493,"id":"0xaf8a65fcfd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460810365,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":275,"tdur":274,"tts":5524},
-{"pid":27369,"tid":27643,"ts":326460810640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5798,"id":"0xaf8a6e1ffebbc614"},
-{"pid":27369,"tid":27482,"ts":326460812593,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":76361,"id":"0xaf8a65fdfd4cca54"},
-{"pid":27369,"tid":27482,"ts":326460812593,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":245,"tdur":245,"tts":76361},
-{"pid":27369,"tid":27482,"ts":326460812838,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":76606,"id":"0xaf8a6e15febbc614"},
-{"pid":27369,"tid":27530,"ts":326460813631,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":33725,"id":"0xaf8a65fefd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460813662,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":183,"tdur":183,"tts":33755},
-{"pid":27369,"tid":27530,"ts":326460813845,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":33938,"id":"0xaf8a6e10febbc614"},
-{"pid":27369,"tid":27643,"ts":326460875862,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":5859,"id":"0xaf8a65fffd4cca54"},
-{"pid":27369,"tid":27643,"ts":326460875862,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"OpenEntryInternal"},"dur":458,"tdur":458,"tts":5859},
-{"pid":27369,"tid":27643,"ts":326460876289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6287,"id":"0xaf8a6e28febbc614"},
-{"pid":27369,"tid":27644,"ts":326460877815,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":3845,"id":"0xaf8a65f8fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326460877815,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":519,"tdur":488,"tts":3876},
-{"pid":27369,"tid":27644,"ts":326460878304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":4333,"id":"0xaf8a6e24febbc614"},
-{"pid":27369,"tid":27530,"ts":326460878517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":33969,"id":"0xaf8a65f9fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326460878517,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":184,"tdur":152,"tts":33969},
-{"pid":27369,"tid":27530,"ts":326460878640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":34091,"id":"0xaf8a6e25febbc614"},
-{"pid":27369,"tid":27643,"ts":326461116363,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":6439,"id":"0xaf8a65fafd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461116393,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":580,"tdur":549,"tts":6470},
-{"pid":27369,"tid":27643,"ts":326461116882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6928,"id":"0xaf8a6e37febbc614"},
-{"pid":27369,"tid":27644,"ts":326461128266,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":4455,"id":"0xaf8a65fbfd4cca54"},
-{"pid":27369,"tid":27644,"ts":326461128266,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":641,"tdur":611,"tts":4455},
-{"pid":27369,"tid":27644,"ts":326461128846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":5035,"id":"0xaf8a6e33febbc614"},
-{"pid":27369,"tid":27530,"ts":326461138398,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":34243,"id":"0xaf8a65f4fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326461138429,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":641,"tdur":610,"tts":34274},
-{"pid":27369,"tid":27530,"ts":326461138948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":34793,"id":"0xaf8a6ecdfebbc614"},
-{"pid":27369,"tid":27643,"ts":326461148134,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":7111,"id":"0xaf8a65f5fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461148165,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":549,"tdur":489,"tts":7141},
-{"pid":27369,"tid":27643,"ts":326461148653,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7569,"id":"0xaf8a6ecffebbc614"},
-{"pid":27369,"tid":27644,"ts":326461160831,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":5188,"id":"0xaf8a65f6fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326461160861,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":916,"tdur":916,"tts":5218},
-{"pid":27369,"tid":27644,"ts":326461161716,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6073,"id":"0xaf8a6ec4febbc614"},
-{"pid":27369,"tid":27530,"ts":326461164860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":35006,"id":"0xaf8a65f7fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326461164890,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":610,"tdur":580,"tts":35037},
-{"pid":27369,"tid":27530,"ts":326461165378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":35556,"id":"0xaf8a6ec7febbc614"},
-{"pid":27369,"tid":27643,"ts":326461168339,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":7691,"id":"0xaf8a65f0fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461168339,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":397,"tdur":396,"tts":7691},
-{"pid":27369,"tid":27643,"ts":326461168675,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8026,"id":"0xaf8a6ec1febbc614"},
-{"pid":27369,"tid":27644,"ts":326461171269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":6226,"id":"0xaf8a65f1fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326461171299,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":306,"tdur":305,"tts":6226},
-{"pid":27369,"tid":27644,"ts":326461171574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":6500,"id":"0xaf8a6ec3febbc614"},
-{"pid":27369,"tid":27530,"ts":326461174229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":35739,"id":"0xaf8a65f2fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326461174260,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":976,"tdur":702,"tts":35739},
-{"pid":27369,"tid":27530,"ts":326461175114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":36349,"id":"0xaf8a6edefebbc614"},
-{"pid":27369,"tid":27643,"ts":326461183111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":8179,"id":"0xaf8a65f3fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461183111,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":427,"tts":8179},
-{"pid":27369,"tid":27643,"ts":326461183477,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8545,"id":"0xaf8a6edbfebbc614"},
-{"pid":27369,"tid":27644,"ts":326461191748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":6622,"id":"0xaf8a658cfd4cca54"},
-{"pid":27369,"tid":27644,"ts":326461191779,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":518,"tdur":519,"tts":6622},
-{"pid":27369,"tid":27644,"ts":326461192267,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7111,"id":"0xaf8a6ed7febbc614"},
-{"pid":27369,"tid":27530,"ts":326461201545,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":36593,"id":"0xaf8a658dfd4cca54"},
-{"pid":27369,"tid":27530,"ts":326461201576,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":2746,"tdur":1221,"tts":36624},
-{"pid":27369,"tid":27407,"ts":326460802522,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":15}},"tts":1714451,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802552,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15696843}},"tts":1714512,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802613,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":15,"window_size":6259659}},"tts":1714542,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460802644,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":234}},"tts":1714573,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460802735,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":10011}},"tts":1714665,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460802796,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":234,"stream_id":15}},"tts":1714726,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802827,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-234,"window_size":15696609}},"tts":1714756,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460802857,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-234,"stream_id":15,"window_size":6259425}},"tts":1714787,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460803010,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1714939,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460803041,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":737,"stream_id":15}},"tts":1714970,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803071,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-737,"window_size":15695872}},"tts":1715000,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803102,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-737,"stream_id":15,"window_size":6258688}},"tts":1715031,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460803132,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7446,"stream_id":15}},"tts":1715061,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803163,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7446,"window_size":15688426}},"tts":1715092,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803193,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7446,"stream_id":15,"window_size":6251242}},"tts":1715122,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460803254,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2189}},"tts":1715183,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460803315,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2172,"stream_id":15}},"tts":1715244,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803346,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2172,"window_size":15686254}},"tts":1715275,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803376,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2172,"stream_id":15,"window_size":6249070}},"tts":1715305,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460803407,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":15}},"tts":1715336,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803468,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":6378,"window_size":15692632}},"tts":1715397,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803559,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15700824}},"tts":1715489,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803590,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":852,"window_size":15701676}},"tts":1715519,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803590,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":962,"window_size":15702638}},"tts":1715550,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803681,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7221,"window_size":15709859}},"tts":1715611,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803743,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15718051}},"tts":1715672,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803773,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":234,"window_size":15718285}},"tts":1715702,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803804,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":737,"window_size":15719022}},"tts":1715733,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460803834,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1715763,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460803865,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1715794,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460803895,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":32768,"truncate":true}},"tts":1715824,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460803926,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1715855,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460803956,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":32768,"truncate":true}},"tts":1715885,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460804109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1716038,"id":"0xaf8a65e1fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460804658,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1716099,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460804689,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1716130,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460804750,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1716191,"id":"0xba45e302"},
-{"pid":27369,"tid":27407,"ts":326460804841,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1716282,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460804933,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7446,"window_size":15726468}},"tts":1716374,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460804994,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2172,"window_size":15728640}},"tts":1716435,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460805024,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1716465,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460805055,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1716496,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460805085,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9618,"index":1,"offset":65536,"truncate":true}},"tts":1716526,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460805177,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":22}},"tts":1716618,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460805207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1716648,"id":"0xaf8a6e01febbc614"},
-{"pid":27369,"tid":27407,"ts":326460805238,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":22}},"tts":1716679,"id":"0x1b5"},
-{"pid":27369,"tid":27407,"ts":326460805299,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1716740},
-{"pid":27369,"tid":27407,"ts":326460805360,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":0,"tts":1716801},
-{"pid":27369,"tid":27407,"ts":326460805360,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1716801,"id":"0xccc53402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460805391,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1716831},
-{"pid":27369,"tid":27407,"ts":326460805391,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1716831,"id":"0xccc53502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460805391,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":31,"tts":1716831},
-{"pid":27369,"tid":27407,"ts":326460805421,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1716862,"id":"0xccc53802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460805421,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1716862},
-{"pid":27369,"tid":27407,"ts":326460805452,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1716893,"id":"0xccc53902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460805482,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":3510,"tdur":3510,"tts":1716923},
-{"pid":27369,"tid":27407,"ts":326460805543,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":5707}},"tts":1716984,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460805696,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":5560}},"tts":1717137,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460805909,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-disposition: attachment","content-encoding: gzip","content-length: 5503","content-type: text/javascript; charset=UTF-8","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":17}},"tts":1717381,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460806184,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-disposition: attachment","content-encoding: gzip","content-length: 5503","content-type: text/javascript; charset=UTF-8","date: Mon, 22 Jun 2015 18:11:29 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1717625,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806245,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1717686,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806276,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1717717,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806398,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3628,"index":0,"offset":0,"truncate":true}},"tts":1717839,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806459,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1717900,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806489,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1717930,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806520,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1717961,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806520,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1717961,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806550,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1717991,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806581,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1718022,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806611,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1718052,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806611,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1718052,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806642,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1718083,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806672,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1718113,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460806703,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1718144,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806734,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1718174,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806734,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1718205,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806856,"ph":"n","cat":"netlog","name":"URL_REQUEST_FILTERS_SET","args":{"source_type":"URL_REQUEST","params":{"filters":"FILTER_TYPE_GZIP"}},"tts":1718296,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806856,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1718296,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806886,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1718327,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460806978,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1718419,"id":"0xaf8a608bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460807222,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1718663,"id":"0xba45e402"},
-{"pid":27369,"tid":27407,"ts":326460807466,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1718907,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807497,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1718937,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807558,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1,"window_size":15728639}},"tts":1718998,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807588,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1,"window_size":15728640}},"tts":1719029,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807588,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1,"stream_id":17,"window_size":6291455}},"tts":1719029,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807619,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1,"stream_id":17,"window_size":6291456}},"tts":1719059,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807649,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5503,"stream_id":17}},"tts":1719090,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807680,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5503,"window_size":15723137}},"tts":1719121,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807710,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5503,"stream_id":17,"window_size":6285953}},"tts":1719151,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807741,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1719182,"id":"0xaf8a6e02febbc614"},
-{"pid":27369,"tid":27407,"ts":326460807771,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4,"window_size":15723133}},"tts":1719212,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807771,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4,"window_size":15723137}},"tts":1719212,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807802,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4,"stream_id":17,"window_size":6285949}},"tts":1719243,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807832,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4,"stream_id":17,"window_size":6285953}},"tts":1719273,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807863,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":17}},"tts":1719304,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807893,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5503,"window_size":15728640}},"tts":1719334,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460807924,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1719365,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807924,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1719365,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460807954,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":5503,"index":1,"offset":0,"truncate":true}},"tts":1719395,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460807985,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":5503}},"tts":1719426,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460808015,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":5503,"index":1,"offset":0,"truncate":true}},"tts":1719456,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460808076,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1719517,"id":"0xaf8a65e2fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460808107,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1719548,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460808565,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_FILTERED_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1720006,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460808626,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1720067,"id":"0xba45e502"},
-{"pid":27369,"tid":27407,"ts":326460808687,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1720128,"id":"0xba45e602"},
-{"pid":27369,"tid":27407,"ts":326460808809,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_FILTERED_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":4153}},"tts":1720250,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460808809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1720250,"id":"0xaf8a6e1cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460808900,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":16}},"tts":1720341,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460808931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1720372,"id":"0xaf8a6e1dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460808931,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":16}},"tts":1720372,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326460809023,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":306,"tts":1720463},
-{"pid":27369,"tid":27407,"ts":326460809053,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":30,"tts":1720494},
-{"pid":27369,"tid":27407,"ts":326460809053,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1720494,"id":"0xccc53a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460809084,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":1720524},
-{"pid":27369,"tid":27407,"ts":326460809084,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1720524,"id":"0xccc53b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460809114,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":0,"tdur":0,"tts":1720555},
-{"pid":27369,"tid":27407,"ts":326460809114,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1720555,"id":"0xccc53c02","bp":"e"},{"pid":27369,"tid":27407,"ts":326460809175,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1720616},
-{"pid":27369,"tid":27407,"ts":326460809175,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1720616,"id":"0xccc53d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460809206,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1720677,"id":"0xaf8a6084feb47934"},
-{"pid":27369,"tid":27407,"ts":326460809358,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460799},"tts":1720799,"id":"0xaf8a6e09febbc614"},
-{"pid":27369,"tid":27407,"ts":326460809358,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":31,"tts":1720799},
-{"pid":27369,"tid":27407,"ts":326460809389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1720830,"id":"0xaf8a6e0bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460809389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":152,"tdur":152,"tts":1720830},
-{"pid":27369,"tid":27407,"ts":326460809419,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1720860,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460809450,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1720891,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460809450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1720921,"id":"0xaf8a65e3fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460809450,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1720921},
-{"pid":27369,"tid":27407,"ts":326460809541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1720982,"id":"0xaf8a6e04febbc614"},
-{"pid":27369,"tid":27407,"ts":326460809572,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1721013},
-{"pid":27369,"tid":27407,"ts":326460809816,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721074,"id":"0xaf8a6e05febbc614"},
-{"pid":27369,"tid":27407,"ts":326460809816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":92,"tdur":91,"tts":1721074},
-{"pid":27369,"tid":27407,"ts":326460809847,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1721104,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460809877,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1721135,"id":"0x200"},
-{"pid":27369,"tid":27407,"ts":326460809938,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721196,"id":"0xaf8a6e06febbc614"},
-{"pid":27369,"tid":27407,"ts":326460809938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1721196},
-{"pid":27369,"tid":27407,"ts":326460809969,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1721226,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460809969,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1721257,"id":"0x210"},
-{"pid":27369,"tid":27407,"ts":326460810060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721318,"id":"0xaf8a6e07febbc614"},
-{"pid":27369,"tid":27407,"ts":326460810060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1721318},
-{"pid":27369,"tid":27407,"ts":326460810091,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1721348,"id":"0xba45e202"},
-{"pid":27369,"tid":27407,"ts":326460810152,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721410,"id":"0xaf8a6e00febbc614"},
-{"pid":27369,"tid":27407,"ts":326460810152,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":549,"tdur":152,"tts":1721410},
-{"pid":27369,"tid":27407,"ts":326460810182,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1721440,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460810213,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9618,"index":1,"offset":65536,"truncate":true}},"tts":1721471,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460810304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1721562,"id":"0xaf8a65fcfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460810701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721593,"id":"0xaf8a6e01febbc614"},
-{"pid":27369,"tid":27407,"ts":326460810701,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":305,"tdur":305,"tts":1721593},
-{"pid":27369,"tid":27407,"ts":326460810793,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1721684,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460810976,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1721867,"id":"0x1ae"},
-{"pid":27369,"tid":27407,"ts":326460811006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1721898,"id":"0xaf8a6e03febbc614"},
-{"pid":27369,"tid":27407,"ts":326460811037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":31,"tts":1721928},
-{"pid":27369,"tid":27407,"ts":326460811067,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":5503}},"tts":1721959,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460811098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326460808},"tts":1721989,"id":"0xaf8a6e02febbc614"},
-{"pid":27369,"tid":27407,"ts":326460811098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":31,"tts":1721989},
-{"pid":27369,"tid":27407,"ts":326460811128,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1722020,"id":"0xaf8a6e1cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460811128,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":702,"tdur":702,"tts":1722020},
-{"pid":27369,"tid":27407,"ts":326460811159,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1722050,"id":"0xba45e802"},
-{"pid":27369,"tid":27407,"ts":326460811220,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1722112,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460811251,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1722142,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460811281,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1722173,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460811281,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1722173,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460811312,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1722203,"id":"0xaf8a6e19febbc614"},
-{"pid":27369,"tid":27407,"ts":326460811373,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1722264,"id":"0xaf8a6e1afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460811434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1722325,"id":"0xaf8a6086feb47934"},
-{"pid":27369,"tid":27407,"ts":326460811556,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1722447,"id":"0xba45e902"},
-{"pid":27369,"tid":27407,"ts":326460811617,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1722508,"id":"0xaf8a6087feb47934"},
-{"pid":27369,"tid":27407,"ts":326460811800,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1722691,"id":"0x21a"},
-{"pid":27369,"tid":27407,"ts":326460811861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1722752,"id":"0xaf8a6e1dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460811861,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":214,"tdur":214,"tts":1722752},
-{"pid":27369,"tid":27407,"ts":326460811922,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1722813,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460812044,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1722936,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326460812105,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1722997,"id":"0xaf8a6e1efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460812105,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":92,"tdur":91,"tts":1722997},
-{"pid":27369,"tid":27407,"ts":326460812136,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1723027,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460812166,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1723058,"id":"0x1f4"},
-{"pid":27369,"tid":27407,"ts":326460812197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1723088,"id":"0xaf8a6e1ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460812197,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1723088},
-{"pid":27369,"tid":27407,"ts":326460812227,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9618}},"tts":1723119,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460812258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1723149,"id":"0xaf8a6e14febbc614"},
-{"pid":27369,"tid":27407,"ts":326460812288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1723180,"id":"0xaf8a6e18febbc614"},
-{"pid":27369,"tid":27407,"ts":326460812288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1723180},
-{"pid":27369,"tid":27407,"ts":326460812288,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1723180,"id":"0xba45e702"},
-{"pid":27369,"tid":27407,"ts":326460812349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1723241,"id":"0xaf8a6e19febbc614"},
-{"pid":27369,"tid":27407,"ts":326460812349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":153,"tdur":152,"tts":1723241},
-{"pid":27369,"tid":27407,"ts":326460812380,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1723271,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460812410,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1723302,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460812441,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1723332,"id":"0xaf8a65fdfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460812502,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1723393,"id":"0xaf8a6e1afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460812532,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":0,"tdur":0,"tts":1723424},
-{"pid":27369,"tid":27369,"ts":326460810610,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":396,"tdur":367,"tts":2351960},
-{"pid":27369,"tid":27369,"ts":326460810640,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2351991},
-{"pid":27369,"tid":27369,"ts":326460810671,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2352021},
-{"pid":27369,"tid":27369,"ts":326460810671,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":305,"tdur":275,"tts":2352021},
-{"pid":27369,"tid":27369,"ts":326460810976,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2352296},
-{"pid":27369,"tid":27369,"ts":326460811006,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2352327},
-{"pid":27369,"tid":27369,"ts":326460811006,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":92,"tts":2352357},
-{"pid":27369,"tid":27369,"ts":326460811037,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":118},"dur":30,"tdur":31,"tts":2352357},
-{"pid":27369,"tid":27369,"ts":326460811067,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":118},"dur":31,"tdur":30,"tts":2352388},
-{"pid":27369,"tid":27369,"ts":326460811098,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":118},"tts":2352418},
-{"pid":27369,"tid":27369,"ts":326460811098,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2352418},
-{"pid":27369,"tid":27369,"ts":326460811128,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2352449},
-{"pid":27369,"tid":27369,"ts":326460811128,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2352449},
-{"pid":27369,"tid":27369,"ts":326460811159,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":2352479},
-{"pid":27369,"tid":27369,"ts":326460811189,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2352510,"id":"0xaf8a6e18febbc614"},
-{"pid":27369,"tid":27369,"ts":326460811220,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":2352540},
-{"pid":27369,"tid":27369,"ts":326460811251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":118},"dur":183,"tdur":183,"tts":2352571},
-{"pid":27369,"tid":27369,"ts":326460811251,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2352571},
-{"pid":27369,"tid":27369,"ts":326460811251,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2352571},
-{"pid":27369,"tid":27369,"ts":326460811281,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2352601},
-{"pid":27369,"tid":27369,"ts":326460811281,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2352601,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460811312,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2352632},
-{"pid":27369,"tid":27369,"ts":326460811403,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2352754},
-{"pid":27369,"tid":27369,"ts":326460811434,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":396,"tdur":366,"tts":2352754},
-{"pid":27369,"tid":27369,"ts":326460811434,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":2352754},
-{"pid":27369,"tid":27369,"ts":326460811464,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2352784},
-{"pid":27369,"tid":27369,"ts":326460811464,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":62,"tts":2352784},
-{"pid":27369,"tid":27369,"ts":326460811525,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2352846},
-{"pid":27369,"tid":27369,"ts":326460811800,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2353120,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460811861,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2353181},
-{"pid":27369,"tid":27369,"ts":326460811891,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8790},"dur":61,"tdur":61,"tts":2353212},
-{"pid":27369,"tid":27369,"ts":326460811922,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":0,"tts":2353242},
-{"pid":27369,"tid":27369,"ts":326460811922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2353242,"id":"0xaf8a6e1bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460811952,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2353273},
-{"pid":27369,"tid":27369,"ts":326460811952,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2353273},
-{"pid":27369,"tid":27369,"ts":326460812105,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2353425},
-{"pid":27369,"tid":27369,"ts":326460812227,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2353547},
-{"pid":27369,"tid":27369,"ts":326460812227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2353578,"id":"0xaf8a6086feb47934"},
-{"pid":27369,"tid":27369,"ts":326460812258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":732,"tdur":427,"tts":2353578},
-{"pid":27369,"tid":27369,"ts":326460813082,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2354097},
-{"pid":27369,"tid":27369,"ts":326460813173,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2354219},
-{"pid":27369,"tid":27369,"ts":326460813204,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2354219,"id":"0xaf8a6087feb47934"},
-{"pid":27369,"tid":27369,"ts":326460813234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":92,"tdur":92,"tts":2354249},
-{"pid":27369,"tid":27369,"ts":326460813234,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2354249},
-{"pid":27369,"tid":27369,"ts":326460813234,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":2354249},
-{"pid":27369,"tid":27369,"ts":326460813265,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2354280},
-{"pid":27369,"tid":27369,"ts":326460813265,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":30,"tts":2354280},
-{"pid":27369,"tid":27369,"ts":326460813387,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2354402},
-{"pid":27369,"tid":27369,"ts":326460813448,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2354463},
-{"pid":27369,"tid":27369,"ts":326460813479,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2354494,"id":"0xaf8a6080feb47934"},
-{"pid":27369,"tid":27369,"ts":326460813479,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":518,"tdur":396,"tts":2354494},
-{"pid":27369,"tid":27369,"ts":326460814058,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2354951},
-{"pid":27369,"tid":27369,"ts":326460814150,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2355043},
-{"pid":27369,"tid":27369,"ts":326460814180,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2355073,"id":"0xaf8a6081feb47934"},
-{"pid":27369,"tid":27369,"ts":326460814180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":92,"tdur":62,"tts":2355073},
-{"pid":27369,"tid":27369,"ts":326460814180,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2355073},
-{"pid":27369,"tid":27369,"ts":326460814211,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2355104},
-{"pid":27369,"tid":27369,"ts":326460814211,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2355104},
-{"pid":27369,"tid":27369,"ts":326460814211,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":2355104},
-{"pid":27369,"tid":27369,"ts":326460814303,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2355196},
-{"pid":27369,"tid":27369,"ts":326460820285,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2355562},
-{"pid":27369,"tid":27369,"ts":326460820315,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2355592,"id":"0xaf8a6082feb47934"},
-{"pid":27369,"tid":27369,"ts":326460820315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/histogram_controller.cc","src_func":"OnHistogramDataCollected"},"dur":1343,"tdur":1343,"tts":2355592},
-{"pid":27369,"tid":27369,"ts":326460821750,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2357027},
-{"pid":27369,"tid":27407,"ts":326460812563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1723454,"id":"0xaf8a6e1bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460812593,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1723485},
-{"pid":27369,"tid":27407,"ts":326460812593,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1723485,"id":"0xba45ea02"},
-{"pid":27369,"tid":27407,"ts":326460812654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1723546,"id":"0xaf8a6e14febbc614"},
-{"pid":27369,"tid":27407,"ts":326460812654,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":763,"tdur":733,"tts":1723576},
-{"pid":27369,"tid":27407,"ts":326460812685,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1723576,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460812715,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":9618}},"tts":1723607,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460812777,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1723668,"id":"0xba45eb02"},
-{"pid":27369,"tid":27407,"ts":326460812838,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1723729,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460812868,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1723760,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460812868,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1723760,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460812929,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1723821,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460812960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1723851,"id":"0xaf8a6e16febbc614"},
-{"pid":27369,"tid":27407,"ts":326460812990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1723882,"id":"0xaf8a6e17febbc614"},
-{"pid":27369,"tid":27407,"ts":326460813021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1723912,"id":"0xaf8a6080feb47934"},
-{"pid":27369,"tid":27407,"ts":326460813173,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1724065,"id":"0xba45ec02"},
-{"pid":27369,"tid":27407,"ts":326460813204,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1724126,"id":"0xaf8a6081feb47934"},
-{"pid":27369,"tid":27407,"ts":326460813356,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1724248,"id":"0x1f6"},
-{"pid":27369,"tid":27407,"ts":326460813448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1724339,"id":"0xaf8a6e15febbc614"},
-{"pid":27369,"tid":27407,"ts":326460813448,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":62,"tts":1724339},
-{"pid":27369,"tid":27407,"ts":326460813448,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1724370,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460813479,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1724370,"id":"0x21c"},
-{"pid":27369,"tid":27407,"ts":326460813509,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1724431,"id":"0xaf8a6e16febbc614"},
-{"pid":27369,"tid":27407,"ts":326460813540,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":335,"tdur":92,"tts":1724431},
-{"pid":27369,"tid":27407,"ts":326460813570,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1724462,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460813570,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1724462,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460813601,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1724492,"id":"0xaf8a65fefd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460813906,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1724553,"id":"0xaf8a6e17febbc614"},
-{"pid":27369,"tid":27407,"ts":326460813906,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":31,"tts":1724553},
-{"pid":27369,"tid":27407,"ts":326460813936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1724584,"id":"0xaf8a6e10febbc614"},
-{"pid":27369,"tid":27407,"ts":326460813936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":92,"tdur":31,"tts":1724614},
-{"pid":27369,"tid":27407,"ts":326460813967,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1724614,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460813997,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1724645,"id":"0x1f8"},
-{"pid":27369,"tid":27407,"ts":326460819522,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":396,"tdur":397,"tts":1724736},
-{"pid":27369,"tid":27407,"ts":326460819552,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":28,"line":144},"dur":275,"tdur":274,"tts":1724767},
-{"pid":27369,"tid":27407,"ts":326460819552,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1724767,"id":"0xccc54702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460819674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1724889,"id":"0xaf8a6082feb47934"},
-{"pid":27369,"tid":27407,"ts":326460819827,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":85,"line":61},"dur":91,"tdur":92,"tts":1725041},
-{"pid":27369,"tid":27407,"ts":326460819857,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725072,"id":"0xccc53e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460819857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1725072,"id":"0xaf8a6083feb47934"},
-{"pid":27369,"tid":27407,"ts":326460820224,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":274,"tdur":274,"tts":1725225},
-{"pid":27369,"tid":27407,"ts":326460820254,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1725255},
-{"pid":27369,"tid":27407,"ts":326460820254,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725255,"id":"0xccc53f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820285,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1725286},
-{"pid":27369,"tid":27407,"ts":326460820285,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725286,"id":"0xccc54002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820315,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1725316},
-{"pid":27369,"tid":27407,"ts":326460820315,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725316,"id":"0xccc54102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820315,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":0,"tts":1725347},
-{"pid":27369,"tid":27407,"ts":326460820346,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725347,"id":"0xccc54202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820376,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1725377},
-{"pid":27369,"tid":27407,"ts":326460820376,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725408,"id":"0xccc54302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820407,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":30,"tts":1725408},
-{"pid":27369,"tid":27407,"ts":326460820407,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725408,"id":"0xccc54402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820437,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1725438},
-{"pid":27369,"tid":27407,"ts":326460820437,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725438,"id":"0xccc54502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460820468,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":30,"tts":1725469},
-{"pid":27369,"tid":27407,"ts":326460820468,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725499,"id":"0xccc54602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460822390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1725621,"id":"0xaf8a6e11febbc614"},
-{"pid":27369,"tid":27407,"ts":326460822421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":305,"tdur":122,"tts":1725621},
-{"pid":27369,"tid":27407,"ts":326460822451,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725652,"id":"0xba45ed02"},
-{"pid":27369,"tid":27407,"ts":326460824893,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1725804},
-{"pid":27369,"tid":27407,"ts":326460824954,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":28,"line":211},"dur":92,"tdur":91,"tts":1725866},
-{"pid":27369,"tid":27407,"ts":326460824954,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1725866,"id":"0xccc54826","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460825015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1725927,"id":"0xaf8a6443febb03fc"},
-{"pid":27369,"tid":27369,"ts":326460821872,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2357149},
-{"pid":27369,"tid":27369,"ts":326460821902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2357179,"id":"0xaf8a6083feb47934"},
-{"pid":27369,"tid":27369,"ts":326460821902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":92,"tts":2357179},
-{"pid":27369,"tid":27369,"ts":326460821933,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":85,"line":61},"dur":61,"tdur":61,"tts":2357210},
-{"pid":27369,"tid":27369,"ts":326460822055,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2357332},
-{"pid":27369,"tid":27369,"ts":326460822177,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2357454},
-{"pid":27369,"tid":27369,"ts":326460822207,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2357485},
-{"pid":27369,"tid":27369,"ts":326460822238,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":549,"tdur":183,"tts":2357515},
-{"pid":27369,"tid":27369,"ts":326460822268,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460819578},"dur":367,"tdur":61,"tts":2357546},
-{"pid":27369,"tid":27369,"ts":326460822268,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":367,"tdur":31,"tts":2357576},
-{"pid":27369,"tid":27369,"ts":326460822299,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2357576,"id":"0xaf8a6e11febbc614"},
-{"pid":27369,"tid":27369,"ts":326460822818,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2357729},
-{"pid":27369,"tid":27369,"ts":326460822909,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2357820},
-{"pid":27369,"tid":27369,"ts":326460825839,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2357973},
-{"pid":27369,"tid":27369,"ts":326460825870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2358003,"id":"0xaf8a609cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460825900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2358034},
-{"pid":27369,"tid":27369,"ts":326460825931,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":62,"tts":2358064},
-{"pid":27369,"tid":27369,"ts":326460825931,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2358064},
-{"pid":27369,"tid":27369,"ts":326460826053,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2358187},
-{"pid":27369,"tid":27369,"ts":326460842503,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2358736},
-{"pid":27369,"tid":27369,"ts":326460842564,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2358797},
-{"pid":27369,"tid":27369,"ts":326460842625,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":397,"tdur":397,"tts":2358858},
-{"pid":27369,"tid":27369,"ts":326460842625,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460836260},"dur":184,"tdur":183,"tts":2358858},
-{"pid":27369,"tid":27369,"ts":326460842656,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":153,"tdur":152,"tts":2358889},
-{"pid":27369,"tid":27369,"ts":326460842717,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2358950,"id":"0xaf8a6e13febbc614"},
-{"pid":27369,"tid":27369,"ts":326460843053,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2359285},
-{"pid":27369,"tid":27369,"ts":326460843266,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2359499},
-{"pid":27369,"tid":27369,"ts":326460853643,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2359865},
-{"pid":27369,"tid":27369,"ts":326460853674,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2359896},
-{"pid":27369,"tid":27369,"ts":326460853765,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2359957},
-{"pid":27369,"tid":27369,"ts":326460853765,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460852941},"dur":92,"tdur":61,"tts":2359987},
-{"pid":27369,"tid":27369,"ts":326460853796,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2359987},
-{"pid":27369,"tid":27369,"ts":326460853826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2360018,"id":"0xaf8a6e2cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460853979,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2360170},
-{"pid":27369,"tid":27369,"ts":326460854071,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2360262},
-{"pid":27369,"tid":27369,"ts":326460854559,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2360476},
-{"pid":27369,"tid":27369,"ts":326460854559,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2360476,"id":"0xaf8a609dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326460854589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":489,"tdur":488,"tts":2360506},
-{"pid":27369,"tid":27369,"ts":326460854589,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":489,"tdur":488,"tts":2360506},
-{"pid":27369,"tid":27369,"ts":326460854650,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":428,"tdur":427,"tts":2360567},
-{"pid":27369,"tid":27369,"ts":326460854864,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":92,"tts":2360811},
-{"pid":27369,"tid":27369,"ts":326460854895,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2360811},
-{"pid":27369,"tid":27369,"ts":326460854925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2360842,"id":"0xaf8a609efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460855017,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2360933},
-{"pid":27369,"tid":27369,"ts":326460855047,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2360964},
-{"pid":27369,"tid":27369,"ts":326460855169,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2361086},
-{"pid":27369,"tid":27369,"ts":326460855291,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2361208},
-{"pid":27369,"tid":27369,"ts":326460855291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2361208,"id":"0xaf8a609efeb47934"},
-{"pid":27369,"tid":27369,"ts":326460855291,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1587,"tdur":1556,"tts":2361239},
-{"pid":27369,"tid":27369,"ts":326460855322,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2361239},
-{"pid":27369,"tid":27369,"ts":326460855322,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1526,"tdur":1526,"tts":2361239},
-{"pid":27369,"tid":27369,"ts":326460855383,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":119},"dur":61,"tdur":61,"tts":2361300},
-{"pid":27369,"tid":27369,"ts":326460855383,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":31,"tts":2361330},
-{"pid":27369,"tid":27369,"ts":326460855444,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":2361361},
-{"pid":27369,"tid":27369,"ts":326460855475,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2361391},
-{"pid":27369,"tid":27369,"ts":326460855475,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":31,"tts":2361391},
-{"pid":27369,"tid":27369,"ts":326460855505,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2361422},
-{"pid":27369,"tid":27369,"ts":326460855780,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2361696},
-{"pid":27369,"tid":27369,"ts":326460855810,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2361727},
-{"pid":27369,"tid":27369,"ts":326460855810,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2361727},
-{"pid":27369,"tid":27369,"ts":326460855810,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":119},"dur":61,"tdur":61,"tts":2361727},
-{"pid":27369,"tid":27369,"ts":326460855871,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":119},"dur":0,"tdur":0,"tts":2361788},
-{"pid":27369,"tid":27369,"ts":326460855902,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":119},"tts":2361818},
-{"pid":27369,"tid":27369,"ts":326460855902,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2361818},
-{"pid":27369,"tid":27404,"ts":326460825076,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":3357,"id":"0xaf8a6443febb03fc"},
-{"pid":27369,"tid":27404,"ts":326460825107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_message_filter.cc","src_func":"OnAllocateLockedDiscardableSharedMemory"},"dur":244,"tdur":214,"tts":3387},
-{"pid":27369,"tid":27404,"ts":326460825259,"ph":"C","cat":"renderer_host","name":"TotalDiscardableMemoryUsage","args":{"value":29360128},"tts":3540},
-{"pid":27369,"tid":27404,"ts":326460825290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3570,"id":"0xaf8a6e12febbc614"},
-{"pid":27369,"tid":27404,"ts":326460961319,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":3662,"id":"0xaf8a645cfebb03fc"},
-{"pid":27369,"tid":27404,"ts":326460961350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_message_filter.cc","src_func":"OnAllocateLockedDiscardableSharedMemory"},"dur":244,"tdur":245,"tts":3692},
-{"pid":27369,"tid":27404,"ts":326460961472,"ph":"C","cat":"renderer_host","name":"TotalDiscardableMemoryUsage","args":{"value":33554432},"tts":3815},
-{"pid":27369,"tid":27404,"ts":326460961533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":3876,"id":"0xaf8a6e23febbc614"},
-{"pid":27369,"tid":27404,"ts":326461300462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":3998,"id":"0xaf8a645dfebb03fc"},
-{"pid":27369,"tid":27404,"ts":326461300492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_message_filter.cc","src_func":"OnAllocateLockedDiscardableSharedMemory"},"dur":458,"tdur":458,"tts":4028},
-{"pid":27369,"tid":27404,"ts":326461300767,"ph":"C","cat":"renderer_host","name":"TotalDiscardableMemoryUsage","args":{"value":37748736},"tts":4303},
-{"pid":27369,"tid":27404,"ts":326461300858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":4394,"id":"0xaf8a6ef5febbc614"},
-{"pid":27369,"tid":27404,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.01775}},
-{"pid":27369,"tid":27407,"ts":326460825473,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1726079,"id":"0xaf8a6e12febbc614"},
-{"pid":27369,"tid":27407,"ts":326460825473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/public/browser/browser_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1726079},
-{"pid":27369,"tid":27407,"ts":326460825504,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1726110,"id":"0xba45ee0a"},
-{"pid":27369,"tid":27407,"ts":326460825565,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1726171},
-{"pid":27369,"tid":27407,"ts":326460825595,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1726201},
-{"pid":27369,"tid":27407,"ts":326460825595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1726201,"id":"0xc4c1bf02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460825626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1726232,"id":"0xaf8a609cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460830814,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1726445},
-{"pid":27369,"tid":27407,"ts":326460830845,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":31,"tts":1726506},
-{"pid":27369,"tid":27407,"ts":326460830875,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1726506,"id":"0xccc54902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460842900,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1726659,"id":"0xaf8a6e13febbc614"},
-{"pid":27369,"tid":27407,"ts":326460842931,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1726659},
-{"pid":27369,"tid":27407,"ts":326460842961,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1726690,"id":"0xba45ef02"},
-{"pid":27369,"tid":27407,"ts":326460845800,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1726903},
-{"pid":27369,"tid":27407,"ts":326460845830,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":30,"tts":1726934},
-{"pid":27369,"tid":27407,"ts":326460845830,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1726934,"id":"0xccc54a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460846166,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1727056},
-{"pid":27369,"tid":27407,"ts":326460846196,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":0,"tdur":0,"tts":1727086},
-{"pid":27369,"tid":27407,"ts":326460846196,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1727086,"id":"0xccc54b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460847387,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":1727178},
-{"pid":27369,"tid":27407,"ts":326460847417,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":31,"tts":1727208},
-{"pid":27369,"tid":27407,"ts":326460847448,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1727239,"id":"0xccc54c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460850408,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":62,"tts":1727330},
-{"pid":27369,"tid":27407,"ts":326460850439,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":1727361},
-{"pid":27369,"tid":27407,"ts":326460850439,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1727361,"id":"0xccc54d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460851049,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1727453},
-{"pid":27369,"tid":27407,"ts":326460851080,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":31,"tts":1727483},
-{"pid":27369,"tid":27407,"ts":326460851080,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1727483,"id":"0xccc54f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460854162,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":336,"tdur":244,"tts":1727605},
-{"pid":27369,"tid":27407,"ts":326460854254,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":244,"tdur":183,"tts":1727666},
-{"pid":27369,"tid":27407,"ts":326460854284,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1727697,"id":"0xccc55202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460854315,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1727727,"id":"0xaf8a609dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326460854528,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1727880,"id":"0xaf8a6e2cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460854528,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1727880},
-{"pid":27369,"tid":27407,"ts":326460854559,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1727910,"id":"0xba45f002"},
-{"pid":27369,"tid":27407,"ts":326460856054,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1728063,"id":"0xaf8a6e2dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460856054,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1728063},
-{"pid":27369,"tid":27407,"ts":326460856054,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1728093,"id":"0xba45f102"},
-{"pid":27369,"tid":27407,"ts":326460856817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1728216,"id":"0xaf8a6e2efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460856817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1728216},
-{"pid":27369,"tid":27407,"ts":326460856817,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1728246,"id":"0xba45f202"},
-{"pid":27369,"tid":27407,"ts":326460861609,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1728368},
-{"pid":27369,"tid":27407,"ts":326460861640,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1728399},
-{"pid":27369,"tid":27407,"ts":326460861640,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1728399,"id":"0xc4c1c202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460861670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1728429,"id":"0xaf8a609ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326460870399,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1728643,"id":"0xaf8a6e2ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460870399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1728643},
-{"pid":27369,"tid":27407,"ts":326460870430,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1728673,"id":"0xba45f302"},
-{"pid":27369,"tid":27407,"ts":326460875496,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":366,"tdur":367,"tts":1728795},
-{"pid":27369,"tid":27407,"ts":326460875526,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1434},"dur":306,"tdur":305,"tts":1728826},
-{"pid":27369,"tid":27407,"ts":326460875557,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1728857,"id":"0xccc55302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460875679,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x211225ac1a157234"}},"tts":1729009,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460875710,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.544921875&2d-122.923828125&2m2&1d38.337890625&2d-121.2890625&2u10&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._hye8co&token=65999"}},"tts":1729009,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460875740,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1729040,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460875771,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1729070,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460875801,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1729101,"id":"0xaf8a65fffd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460876350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1729223,"id":"0xaf8a6e28febbc614"},
-{"pid":27369,"tid":27407,"ts":326460876381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"OpenEntryInternal"},"dur":61,"tdur":61,"tts":1729253},
-{"pid":27369,"tid":27407,"ts":326460876412,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1729284,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460876412,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1729284,"id":"0xaf8a6e29febbc614"},
-{"pid":27369,"tid":27407,"ts":326460876442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1729314,"id":"0xaf8a6e29febbc614"},
-{"pid":27369,"tid":27407,"ts":326460876442,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"PostClientCallback"},"dur":153,"tdur":153,"tts":1729314},
-{"pid":27369,"tid":27407,"ts":326460876503,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_READ_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3628,"index":0,"offset":0}},"tts":1729375,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460876534,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_READ_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3628,"index":0,"offset":0}},"tts":1729406,"id":"0x21e"},
-{"pid":27369,"tid":27369,"ts":326460855902,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2361818},
-{"pid":27369,"tid":27369,"ts":326460855932,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2361849},
-{"pid":27369,"tid":27369,"ts":326460855963,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2361880},
-{"pid":27369,"tid":27369,"ts":326460855963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2361880,"id":"0xaf8a6e2dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460856054,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":794,"tts":2361971},
-{"pid":27369,"tid":27369,"ts":326460856085,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":119},"dur":153,"tdur":152,"tts":2362002},
-{"pid":27369,"tid":27369,"ts":326460856085,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2362002},
-{"pid":27369,"tid":27369,"ts":326460856085,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2362002},
-{"pid":27369,"tid":27369,"ts":326460856115,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2362032},
-{"pid":27369,"tid":27369,"ts":326460856115,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2362032,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460856146,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2362063},
-{"pid":27369,"tid":27369,"ts":326460856238,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2362154},
-{"pid":27369,"tid":27369,"ts":326460856268,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2362185},
-{"pid":27369,"tid":27369,"ts":326460856268,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2362185},
-{"pid":27369,"tid":27369,"ts":326460856268,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":335,"tts":2362185},
-{"pid":27369,"tid":27369,"ts":326460856299,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2362215},
-{"pid":27369,"tid":27369,"ts":326460856360,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":214,"tts":2362276},
-{"pid":27369,"tid":27369,"ts":326460856634,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2362551,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460856695,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2362612},
-{"pid":27369,"tid":27369,"ts":326460856695,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12368},"dur":92,"tdur":92,"tts":2362612},
-{"pid":27369,"tid":27369,"ts":326460856726,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2362643},
-{"pid":27369,"tid":27369,"ts":326460856726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2362643,"id":"0xaf8a6e2efebbc614"},
-{"pid":27369,"tid":27369,"ts":326460856787,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2362704},
-{"pid":27369,"tid":27369,"ts":326460856817,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2362734},
-{"pid":27369,"tid":27369,"ts":326460856940,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2362856},
-{"pid":27369,"tid":27369,"ts":326460861884,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2363039},
-{"pid":27369,"tid":27369,"ts":326460861884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2363039,"id":"0xaf8a609ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326460861914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2363070},
-{"pid":27369,"tid":27369,"ts":326460861914,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2363070},
-{"pid":27369,"tid":27369,"ts":326460861945,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2363100},
-{"pid":27369,"tid":27369,"ts":326460862036,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2363192},
-{"pid":27369,"tid":27369,"ts":326460870124,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2363467},
-{"pid":27369,"tid":27369,"ts":326460870185,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2363528},
-{"pid":27369,"tid":27369,"ts":326460870216,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":2363558},
-{"pid":27369,"tid":27369,"ts":326460870246,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460869623},"dur":122,"tdur":122,"tts":2363589},
-{"pid":27369,"tid":27369,"ts":326460870277,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2363619},
-{"pid":27369,"tid":27369,"ts":326460870307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2363650,"id":"0xaf8a6e2ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460870521,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2363863},
-{"pid":27369,"tid":27369,"ts":326460870643,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2363985},
-{"pid":27369,"tid":27369,"ts":326460886880,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2364260},
-{"pid":27369,"tid":27369,"ts":326460886941,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2364321},
-{"pid":27369,"tid":27369,"ts":326460886972,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":213,"tts":2364352},
-{"pid":27369,"tid":27369,"ts":326460886972,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460886304},"dur":122,"tdur":92,"tts":2364382},
-{"pid":27369,"tid":27369,"ts":326460887002,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2364382},
-{"pid":27369,"tid":27369,"ts":326460887033,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2364413,"id":"0xaf8a6e26febbc614"},
-{"pid":27369,"tid":27369,"ts":326460887216,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2364596},
-{"pid":27369,"tid":27369,"ts":326460887307,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2364687},
-{"pid":27369,"tid":27369,"ts":326460903392,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2364993},
-{"pid":27369,"tid":27369,"ts":326460903453,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2365023},
-{"pid":27369,"tid":27369,"ts":326460903483,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2365054},
-{"pid":27369,"tid":27369,"ts":326460903514,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460902986},"dur":91,"tdur":92,"tts":2365084},
-{"pid":27369,"tid":27369,"ts":326460903514,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2365084},
-{"pid":27369,"tid":27369,"ts":326460903544,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2365115,"id":"0xaf8a6e27febbc614"},
-{"pid":27369,"tid":27369,"ts":326460903697,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2365267},
-{"pid":27369,"tid":27369,"ts":326460903788,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2365389},
-{"pid":27369,"tid":27369,"ts":326460920269,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2365695},
-{"pid":27369,"tid":27369,"ts":326460920300,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2365756},
-{"pid":27369,"tid":27369,"ts":326460920361,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2365786},
-{"pid":27369,"tid":27369,"ts":326460920361,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460919668},"dur":91,"tdur":92,"tts":2365786},
-{"pid":27369,"tid":27369,"ts":326460920391,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2365817},
-{"pid":27369,"tid":27369,"ts":326460920422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2365847,"id":"0xaf8a6e20febbc614"},
-{"pid":27369,"tid":27369,"ts":326460920574,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2366000},
-{"pid":27369,"tid":27369,"ts":326460920666,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2366091},
-{"pid":27369,"tid":27369,"ts":326460936842,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2366397},
-{"pid":27369,"tid":27407,"ts":326460876564,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1729436,"id":"0xaf8a6e2afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460876625,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1729497,"id":"0xaf8a6e2afebbc614"},
-{"pid":27369,"tid":27407,"ts":326460876656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"ReadDataInternal"},"dur":1251,"tdur":1251,"tts":1729528},
-{"pid":27369,"tid":27407,"ts":326460877663,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":12,"index":2,"offset":0,"truncate":true}},"tts":1730535,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460877693,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":12}},"tts":1730566,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460877724,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":12,"index":2,"offset":0,"truncate":true}},"tts":1730596,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460877754,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1730627,"id":"0xaf8a65f8fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460877815,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1730688,"id":"0xaf8a6e2bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460877938,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1730810,"id":"0xaf8a6e2bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460877938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":61,"tdur":61,"tts":1730810},
-{"pid":27369,"tid":27407,"ts":326460877968,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1730840,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460878365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1730932,"id":"0xaf8a6e24febbc614"},
-{"pid":27369,"tid":27407,"ts":326460878395,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":92,"tdur":92,"tts":1730962},
-{"pid":27369,"tid":27407,"ts":326460878426,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":12}},"tts":1730993,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460878426,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1730993,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460878456,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1731023,"id":"0xaf8a65f9fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326460878701,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731115,"id":"0xaf8a6e25febbc614"},
-{"pid":27369,"tid":27407,"ts":326460878731,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1731146},
-{"pid":27369,"tid":27407,"ts":326460878731,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1731146,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460878762,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1731176,"id":"0x21e"},
-{"pid":27369,"tid":27407,"ts":326460887124,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731298,"id":"0xaf8a6e26febbc614"},
-{"pid":27369,"tid":27407,"ts":326460887124,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1731298},
-{"pid":27369,"tid":27407,"ts":326460887155,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1731329,"id":"0xba45f402"},
-{"pid":27369,"tid":27407,"ts":326460903636,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731481,"id":"0xaf8a6e27febbc614"},
-{"pid":27369,"tid":27407,"ts":326460903636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1731481},
-{"pid":27369,"tid":27407,"ts":326460903666,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1731512,"id":"0xba45f502"},
-{"pid":27369,"tid":27407,"ts":326460920483,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731664,"id":"0xaf8a6e20febbc614"},
-{"pid":27369,"tid":27407,"ts":326460920513,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1731695},
-{"pid":27369,"tid":27407,"ts":326460920513,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1731695,"id":"0xba45f602"},
-{"pid":27369,"tid":27407,"ts":326460937086,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1731848,"id":"0xaf8a6e21febbc614"},
-{"pid":27369,"tid":27407,"ts":326460937086,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1731848},
-{"pid":27369,"tid":27407,"ts":326460937117,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1731878,"id":"0xba45f702"},
-{"pid":27369,"tid":27407,"ts":326460953872,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1732031,"id":"0xaf8a6e22febbc614"},
-{"pid":27369,"tid":27407,"ts":326460953903,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1732031},
-{"pid":27369,"tid":27407,"ts":326460953903,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1732031,"id":"0xba45f802"},
-{"pid":27369,"tid":27407,"ts":326460961136,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1732214},
-{"pid":27369,"tid":27407,"ts":326460961167,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":28,"line":211},"dur":152,"tdur":91,"tts":1732275},
-{"pid":27369,"tid":27407,"ts":326460961197,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1732275,"id":"0xccc55426","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460961258,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1732336,"id":"0xaf8a645cfebb03fc"},
-{"pid":27369,"tid":27407,"ts":326460961624,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1732488,"id":"0xaf8a6e23febbc614"},
-{"pid":27369,"tid":27407,"ts":326460961624,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/public/browser/browser_message_filter.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1732488},
-{"pid":27369,"tid":27407,"ts":326460961655,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1732519,"id":"0xba45f90a"},
-{"pid":27369,"tid":27407,"ts":326460973008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1732672,"id":"0xaf8a6e3cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460973039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":366,"tdur":92,"tts":1732702},
-{"pid":27369,"tid":27407,"ts":326460973070,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1732733,"id":"0xba45fa02"},
-{"pid":27369,"tid":27407,"ts":326460986773,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":70},"dur":122,"tdur":122,"tts":1732855},
-{"pid":27369,"tid":27407,"ts":326460986834,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":434},"dur":61,"tdur":30,"tts":1732916},
-{"pid":27369,"tid":27407,"ts":326460986834,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1732916,"id":"0xc4c1c302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460986865,"ph":"X","cat":"gpu","name":"GpuProcessHost::OnGpuMemoryUmaStatsReceived","args":{},"dur":0,"tdur":0,"tts":1732946},
-{"pid":27369,"tid":27407,"ts":326460988543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1733068,"id":"0xaf8a6e3dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326460988543,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1733068},
-{"pid":27369,"tid":27407,"ts":326460988574,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1733099,"id":"0xba45fb02"},
-{"pid":27369,"tid":27407,"ts":326460996845,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":1733221},
-{"pid":27369,"tid":27407,"ts":326460996906,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":183,"tts":1733282},
-{"pid":27369,"tid":27407,"ts":326460996936,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1733312,"id":"0xccc55802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326460996967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1733343,"id":"0xaf8a6098feb47934"},
-{"pid":27369,"tid":27407,"ts":326460998859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1733587,"id":"0xaf8a6e3efebbc614"},
-{"pid":27369,"tid":27407,"ts":326460998859,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1733587},
-{"pid":27369,"tid":27407,"ts":326460998890,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1733618,"id":"0xba45fc02"},
-{"pid":27369,"tid":27407,"ts":326460999927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1733740,"id":"0xaf8a6e3ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326460999958,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1733770},
-{"pid":27369,"tid":27407,"ts":326460999958,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1733770,"id":"0xba45fd02"},
-{"pid":27369,"tid":27407,"ts":326461003834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1733953,"id":"0xaf8a6e38febbc614"},
-{"pid":27369,"tid":27407,"ts":326461003865,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1733953},
-{"pid":27369,"tid":27369,"ts":326460936903,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2366458},
-{"pid":27369,"tid":27369,"ts":326460936933,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":214,"tts":2366488},
-{"pid":27369,"tid":27369,"ts":326460936964,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460936349},"dur":91,"tdur":61,"tts":2366519},
-{"pid":27369,"tid":27369,"ts":326460936964,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2366519},
-{"pid":27369,"tid":27369,"ts":326460936994,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2366549,"id":"0xaf8a6e21febbc614"},
-{"pid":27369,"tid":27369,"ts":326460937178,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2366732},
-{"pid":27369,"tid":27369,"ts":326460937239,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2366824},
-{"pid":27369,"tid":27369,"ts":326460953659,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2367129},
-{"pid":27369,"tid":27369,"ts":326460953689,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2367160},
-{"pid":27369,"tid":27369,"ts":326460953750,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2367221},
-{"pid":27369,"tid":27369,"ts":326460953750,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460953031},"dur":92,"tdur":91,"tts":2367221},
-{"pid":27369,"tid":27369,"ts":326460953781,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2367251},
-{"pid":27369,"tid":27369,"ts":326460953811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2367282,"id":"0xaf8a6e22febbc614"},
-{"pid":27369,"tid":27369,"ts":326460953964,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2367434},
-{"pid":27369,"tid":27369,"ts":326460954055,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2367526},
-{"pid":27369,"tid":27369,"ts":326460971849,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2367923},
-{"pid":27369,"tid":27369,"ts":326460971879,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2367953},
-{"pid":27369,"tid":27369,"ts":326460971940,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":397,"tdur":305,"tts":2368014},
-{"pid":27369,"tid":27369,"ts":326460971940,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460969712},"dur":183,"tdur":153,"tts":2368014},
-{"pid":27369,"tid":27369,"ts":326460971940,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2368014},
-{"pid":27369,"tid":27369,"ts":326460972032,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2368075},
-{"pid":27369,"tid":27369,"ts":326460972062,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2368106,"id":"0xaf8a6e3cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460972368,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2368350},
-{"pid":27369,"tid":27369,"ts":326460972612,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2368594},
-{"pid":27369,"tid":27369,"ts":326460988299,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2368991},
-{"pid":27369,"tid":27369,"ts":326460988330,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2369021},
-{"pid":27369,"tid":27369,"ts":326460988391,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2369082},
-{"pid":27369,"tid":27369,"ts":326460988391,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326460986394},"dur":122,"tdur":122,"tts":2369082},
-{"pid":27369,"tid":27369,"ts":326460988421,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2369113},
-{"pid":27369,"tid":27369,"ts":326460988452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2369143,"id":"0xaf8a6e3dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326460988635,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2369327},
-{"pid":27369,"tid":27369,"ts":326460988726,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2369418},
-{"pid":27369,"tid":27369,"ts":326460997333,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2369754},
-{"pid":27369,"tid":27369,"ts":326460997364,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2369784,"id":"0xaf8a6098feb47934"},
-{"pid":27369,"tid":27369,"ts":326460997364,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":519,"tts":2369784},
-{"pid":27369,"tid":27369,"ts":326460997364,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":519,"tts":2369784},
-{"pid":27369,"tid":27369,"ts":326460997425,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":458,"tdur":458,"tts":2369845},
-{"pid":27369,"tid":27369,"ts":326460997699,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2370120},
-{"pid":27369,"tid":27369,"ts":326460997699,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":62,"tdur":61,"tts":2370120},
-{"pid":27369,"tid":27369,"ts":326460997730,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2370151,"id":"0xaf8a6099feb47934"},
-{"pid":27369,"tid":27369,"ts":326460997822,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2370242},
-{"pid":27369,"tid":27369,"ts":326460997852,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2370273},
-{"pid":27369,"tid":27369,"ts":326460997944,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2370395},
-{"pid":27369,"tid":27369,"ts":326460998035,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2370486},
-{"pid":27369,"tid":27369,"ts":326460998066,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2370486,"id":"0xaf8a6099feb47934"},
-{"pid":27369,"tid":27369,"ts":326460998066,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2441,"tdur":1984,"tts":2370486},
-{"pid":27369,"tid":27369,"ts":326460998096,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2370517},
-{"pid":27369,"tid":27369,"ts":326460998096,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2381,"tdur":1892,"tts":2370517},
-{"pid":27369,"tid":27369,"ts":326460998127,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":120},"dur":61,"tdur":61,"tts":2370547},
-{"pid":27369,"tid":27369,"ts":326460998127,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":2370578},
-{"pid":27369,"tid":27369,"ts":326460998188,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":397,"tdur":366,"tts":2370639},
-{"pid":27369,"tid":27369,"ts":326460998218,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2370639},
-{"pid":27369,"tid":27369,"ts":326460998249,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2370669},
-{"pid":27369,"tid":27369,"ts":326460998249,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":305,"tdur":306,"tts":2370669},
-{"pid":27369,"tid":27369,"ts":326460998554,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2370975},
-{"pid":27369,"tid":27369,"ts":326460998615,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2371036},
-{"pid":27369,"tid":27369,"ts":326460998615,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2371036},
-{"pid":27369,"tid":27369,"ts":326460998615,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":120},"dur":61,"tdur":31,"tts":2371066},
-{"pid":27369,"tid":27369,"ts":326460998676,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":120},"dur":31,"tdur":0,"tts":2371097},
-{"pid":27369,"tid":27369,"ts":326460998707,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":120},"tts":2371127},
-{"pid":27369,"tid":27369,"ts":326460998707,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2371127},
-{"pid":27369,"tid":27369,"ts":326460998707,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2371127},
-{"pid":27369,"tid":27369,"ts":326460998737,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2371158},
-{"pid":27369,"tid":27369,"ts":326460998737,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2371158},
-{"pid":27369,"tid":27369,"ts":326460998768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2371188,"id":"0xaf8a6e3efebbc614"},
-{"pid":27369,"tid":27369,"ts":326460998859,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1587,"tdur":1099,"tts":2371310},
-{"pid":27369,"tid":27369,"ts":326460998890,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":120},"dur":427,"tdur":428,"tts":2371310},
-{"pid":27369,"tid":27369,"ts":326460998890,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":2371341},
-{"pid":27369,"tid":27369,"ts":326460998920,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2371341},
-{"pid":27369,"tid":27369,"ts":326460998920,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2371341},
-{"pid":27369,"tid":27369,"ts":326460998951,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2371371,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460998981,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2371402},
-{"pid":27369,"tid":27369,"ts":326460999317,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2371738},
-{"pid":27369,"tid":27369,"ts":326460999348,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":427,"tdur":427,"tts":2371768},
-{"pid":27369,"tid":27369,"ts":326460999348,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2371768},
-{"pid":27369,"tid":27369,"ts":326460999348,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":396,"tdur":366,"tts":2371799},
-{"pid":27369,"tid":27369,"ts":326460999378,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2371799},
-{"pid":27369,"tid":27369,"ts":326460999439,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":275,"tdur":274,"tts":2371860},
-{"pid":27369,"tid":27369,"ts":326460999775,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2372195,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326460999805,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":641,"tdur":183,"tts":2372226},
-{"pid":27369,"tid":27369,"ts":326460999836,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":236},"dur":153,"tdur":62,"tts":2372256},
-{"pid":27369,"tid":27369,"ts":326460999866,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":2372287},
-{"pid":27369,"tid":27369,"ts":326460999866,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2372287,"id":"0xaf8a6e3ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326460999989,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":427,"tdur":61,"tts":2372318},
-{"pid":27369,"tid":27369,"ts":326460999989,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":427,"tdur":61,"tts":2372318},
-{"pid":27369,"tid":27369,"ts":326461000416,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2372379},
-{"pid":27369,"tid":27369,"ts":326461000752,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2372592},
-{"pid":27369,"tid":27369,"ts":326461003590,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2372928},
-{"pid":27369,"tid":27369,"ts":326461003651,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2372989},
-{"pid":27369,"tid":27369,"ts":326461003712,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":214,"tts":2373050},
-{"pid":27369,"tid":27369,"ts":326461003712,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461003075},"dur":92,"tdur":92,"tts":2373050},
-{"pid":27369,"tid":27369,"ts":326461003743,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2373081},
-{"pid":27369,"tid":27369,"ts":326461003773,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2373111,"id":"0xaf8a6e38febbc614"},
-{"pid":27369,"tid":27369,"ts":326461003956,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2373294},
-{"pid":27369,"tid":27369,"ts":326461004078,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2373416},
-{"pid":27369,"tid":27369,"ts":326461012197,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2373660},
-{"pid":27369,"tid":27369,"ts":326461012197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2373691,"id":"0xaf8a609afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461012227,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2373691},
-{"pid":27369,"tid":27369,"ts":326461012258,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2373721},
-{"pid":27369,"tid":27369,"ts":326461012258,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2373721},
-{"pid":27369,"tid":27369,"ts":326461012380,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2373844},
-{"pid":27369,"tid":27369,"ts":326461020285,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2374179},
-{"pid":27369,"tid":27369,"ts":326461020346,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2374240},
-{"pid":27369,"tid":27369,"ts":326461020407,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":275,"tts":2374301},
-{"pid":27369,"tid":27369,"ts":326461020437,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461019757},"dur":122,"tdur":122,"tts":2374332},
-{"pid":27369,"tid":27369,"ts":326461020468,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2374362},
-{"pid":27369,"tid":27369,"ts":326461020498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2374393,"id":"0xaf8a6e39febbc614"},
-{"pid":27369,"tid":27369,"ts":326461020712,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2374607},
-{"pid":27369,"tid":27369,"ts":326461020834,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2374729},
-{"pid":27369,"tid":27369,"ts":326461035514,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2374942},
-{"pid":27369,"tid":27369,"ts":326461035606,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2375034,"id":"0xaf8a609bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461035636,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":702,"tdur":702,"tts":2375064},
-{"pid":27369,"tid":27369,"ts":326461035636,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":672,"tdur":672,"tts":2375064},
-{"pid":27369,"tid":27369,"ts":326461035697,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":611,"tdur":611,"tts":2375125},
-{"pid":27369,"tid":27369,"ts":326461036094,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2375522},
-{"pid":27369,"tid":27369,"ts":326461036094,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":2375553},
-{"pid":27369,"tid":27369,"ts":326461036125,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2375553,"id":"0xaf8a6094feb47934"},
-{"pid":27369,"tid":27369,"ts":326461036247,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2375675},
-{"pid":27369,"tid":27369,"ts":326461036277,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2375705},{"pid":27369,"tid":27369,"ts":326461036460,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2375888},
-{"pid":27369,"tid":27369,"ts":326461036582,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2376010},
-{"pid":27369,"tid":27369,"ts":326461036643,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2376072,"id":"0xaf8a6094feb47934"},
-{"pid":27369,"tid":27369,"ts":326461036643,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2106,"tdur":2075,"tts":2376072},
-{"pid":27369,"tid":27369,"ts":326461036674,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2376102},
-{"pid":27369,"tid":27369,"ts":326461036674,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2045,"tdur":2045,"tts":2376102},
-{"pid":27369,"tid":27369,"ts":326461036705,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":121},"dur":91,"tdur":91,"tts":2376133},
-{"pid":27369,"tid":27369,"ts":326461036735,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2376163},
-{"pid":27369,"tid":27369,"ts":326461036796,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":488,"tdur":488,"tts":2376224},
-{"pid":27369,"tid":27407,"ts":326461003865,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1733953,"id":"0xba45fe02"},
-{"pid":27369,"tid":27407,"ts":326461011800,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":244,"tdur":244,"tts":1734106},
-{"pid":27369,"tid":27407,"ts":326461011861,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":183,"tdur":183,"tts":1734167},
-{"pid":27369,"tid":27407,"ts":326461011861,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1734198,"id":"0xc4c1c602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461011891,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1734198,"id":"0xaf8a609afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461020590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1734472,"id":"0xaf8a6e39febbc614"},
-{"pid":27369,"tid":27407,"ts":326461020620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1734503},
-{"pid":27369,"tid":27407,"ts":326461020620,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1734503,"id":"0xba45ff02"},
-{"pid":27369,"tid":27407,"ts":326461035087,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":336,"tdur":336,"tts":1734625},
-{"pid":27369,"tid":27407,"ts":326461035209,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":183,"tts":1734747},
-{"pid":27369,"tid":27407,"ts":326461035209,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1734747,"id":"0xccc55b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461035270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1734808,"id":"0xaf8a609bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461037590,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1735052,"id":"0xaf8a6e3afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461037620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1735052},
-{"pid":27369,"tid":27407,"ts":326461037620,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1735083,"id":"0xba460002"},
-{"pid":27369,"tid":27407,"ts":326461038658,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1735205,"id":"0xaf8a6e3bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461038658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1735205},
-{"pid":27369,"tid":27407,"ts":326461038688,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1735235,"id":"0xba460102"},
-{"pid":27369,"tid":27407,"ts":326461039299,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1735388,"id":"0xaf8a6e34febbc614"},
-{"pid":27369,"tid":27407,"ts":326461039329,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1735418},
-{"pid":27369,"tid":27407,"ts":326461039329,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1735418,"id":"0xba460202"},
-{"pid":27369,"tid":27407,"ts":326461045006,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":214,"tts":1735540},
-{"pid":27369,"tid":27407,"ts":326461045067,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1735602},
-{"pid":27369,"tid":27407,"ts":326461045067,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1735602,"id":"0xc4c1c902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461045098,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1735632,"id":"0xaf8a6095feb47934"},
-{"pid":27369,"tid":27407,"ts":326461053491,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1735846},
-{"pid":27369,"tid":27407,"ts":326461053521,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":1735876},
-{"pid":27369,"tid":27407,"ts":326461053552,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1735907,"id":"0xccc55c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461053582,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1735937,"id":"0xaf8a6096feb47934"},
-{"pid":27369,"tid":27407,"ts":326461054345,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1736120,"id":"0xaf8a6e35febbc614"},
-{"pid":27369,"tid":27407,"ts":326461054345,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1736120},
-{"pid":27369,"tid":27407,"ts":326461054376,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1736151,"id":"0xba460302"},
-{"pid":27369,"tid":27407,"ts":326461111632,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2594,"tdur":2594,"tts":1736334},
-{"pid":27369,"tid":27407,"ts":326461111754,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":91}},"tts":1736456,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461111846,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":70}},"tts":1736548,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461112181,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=86400","content-length: 219040","content-type: image/png","date: Mon, 22 Jun 2015 18:11:30 GMT","expires: Tue, 23 Jun 2015 18:11:30 GMT","server: staticmap","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":15}},"tts":1736914,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461112517,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=86400","content-length: 219040","content-type: image/png","date: Mon, 22 Jun 2015 18:11:30 GMT","expires: Tue, 23 Jun 2015 18:11:30 GMT","server: staticmap","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1737219,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461112609,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1737311,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461112670,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1737372,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461112822,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3544,"index":0,"offset":0,"truncate":true}},"tts":1737524,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461112914,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1737616,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461112944,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1737646,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461112975,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1737677,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461113005,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1737707,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461113036,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1737738,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461113066,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1737768,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113097,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1737799,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113128,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1737829,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461113158,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1737860,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461113189,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1737891,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461113219,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1737921,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113250,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1737952,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113280,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1737982,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113402,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1738104,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113463,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1738165,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461113555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1738257,"id":"0xaf8a6097feb47934"},
-{"pid":27369,"tid":27407,"ts":326461113860,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1738562,"id":"0xba460402"},
-{"pid":27369,"tid":27407,"ts":326461114104,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1738806,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461114135,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1738837,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461114257,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":458,"tdur":458,"tts":1738959},
-{"pid":27369,"tid":27407,"ts":326461114318,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1739020,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461114409,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1739111,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461114501,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":15}},"tts":1739203,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461114531,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1739264,"id":"0x139"},
-{"pid":27369,"tid":27369,"ts":326461036827,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":2376255},
-{"pid":27369,"tid":27369,"ts":326461036857,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2376285},
-{"pid":27369,"tid":27369,"ts":326461036888,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":335,"tdur":335,"tts":2376316},
-{"pid":27369,"tid":27369,"ts":326461037254,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2376682},
-{"pid":27369,"tid":27369,"ts":326461037284,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2376712},
-{"pid":27369,"tid":27369,"ts":326461037315,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2376743},
-{"pid":27369,"tid":27369,"ts":326461037315,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":121},"dur":30,"tdur":30,"tts":2376743},
-{"pid":27369,"tid":27369,"ts":326461037376,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":121},"dur":0,"tdur":0,"tts":2376804},
-{"pid":27369,"tid":27369,"ts":326461037376,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":121},"tts":2376835},
-{"pid":27369,"tid":27369,"ts":326461037406,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2376835},
-{"pid":27369,"tid":27369,"ts":326461037406,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2376835},
-{"pid":27369,"tid":27369,"ts":326461037437,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2376865},
-{"pid":27369,"tid":27369,"ts":326461037468,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2376896},
-{"pid":27369,"tid":27369,"ts":326461037498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2376926,"id":"0xaf8a6e3afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461037620,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1068,"tdur":1068,"tts":2377048},
-{"pid":27369,"tid":27369,"ts":326461037651,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":121},"dur":213,"tdur":213,"tts":2377079},
-{"pid":27369,"tid":27369,"ts":326461037651,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2377079},
-{"pid":27369,"tid":27369,"ts":326461037681,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2377109},
-{"pid":27369,"tid":27369,"ts":326461037681,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2377109},
-{"pid":27369,"tid":27369,"ts":326461037712,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2377140,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461037742,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2377170},
-{"pid":27369,"tid":27369,"ts":326461037864,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2377292},
-{"pid":27369,"tid":27369,"ts":326461037864,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":580,"tdur":580,"tts":2377292},
-{"pid":27369,"tid":27369,"ts":326461037895,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2377323},
-{"pid":27369,"tid":27369,"ts":326461037925,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":458,"tdur":458,"tts":2377353},
-{"pid":27369,"tid":27369,"ts":326461037925,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2377353},
-{"pid":27369,"tid":27369,"ts":326461037986,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":367,"tdur":367,"tts":2377414},
-{"pid":27369,"tid":27369,"ts":326461038414,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2377842,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461038475,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":213,"tdur":213,"tts":2377903},
-{"pid":27369,"tid":27369,"ts":326461038505,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4356},"dur":122,"tdur":122,"tts":2377933},
-{"pid":27369,"tid":27369,"ts":326461038536,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":91,"tdur":91,"tts":2377964},
-{"pid":27369,"tid":27369,"ts":326461038536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2377994,"id":"0xaf8a6e3bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461038627,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":61,"tdur":30,"tts":2378086},
-{"pid":27369,"tid":27369,"ts":326461038658,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2378086},
-{"pid":27369,"tid":27369,"ts":326461038841,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2378269},
-{"pid":27369,"tid":27369,"ts":326461039055,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2378483},
-{"pid":27369,"tid":27369,"ts":326461039116,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2378544},
-{"pid":27369,"tid":27369,"ts":326461039146,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2378574},
-{"pid":27369,"tid":27369,"ts":326461039177,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461036438},"dur":91,"tdur":91,"tts":2378605},
-{"pid":27369,"tid":27369,"ts":326461039177,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2378635},
-{"pid":27369,"tid":27369,"ts":326461039207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2378635,"id":"0xaf8a6e34febbc614"},
-{"pid":27369,"tid":27369,"ts":326461039421,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2378849},
-{"pid":27369,"tid":27369,"ts":326461039543,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2378971},
-{"pid":27369,"tid":27369,"ts":326461045311,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2379185},
-{"pid":27369,"tid":27369,"ts":326461045342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2379215,"id":"0xaf8a6095feb47934"},
-{"pid":27369,"tid":27369,"ts":326461045342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2379215},
-{"pid":27369,"tid":27369,"ts":326461045372,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":2379246},
-{"pid":27369,"tid":27369,"ts":326461045372,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2379276},
-{"pid":27369,"tid":27369,"ts":326461045494,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2379368},
-{"pid":27369,"tid":27369,"ts":326461053918,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2379917},
-{"pid":27369,"tid":27369,"ts":326461054010,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2380009},
-{"pid":27369,"tid":27369,"ts":326461054071,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":488,"tdur":458,"tts":2380100},
-{"pid":27369,"tid":27369,"ts":326461054101,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461053120},"dur":244,"tdur":213,"tts":2380131},
-{"pid":27369,"tid":27369,"ts":326461054162,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":153,"tdur":153,"tts":2380161},
-{"pid":27369,"tid":27369,"ts":326461054223,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2380222,"id":"0xaf8a6e35febbc614"},
-{"pid":27369,"tid":27369,"ts":326461054681,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2380619},
-{"pid":27369,"tid":27369,"ts":326461054956,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2380894},
-{"pid":27369,"tid":27369,"ts":326461055230,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2381138},
-{"pid":27369,"tid":27369,"ts":326461055291,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2381199,"id":"0xaf8a6096feb47934"},
-{"pid":27369,"tid":27369,"ts":326461055322,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":214,"tts":2381229},
-{"pid":27369,"tid":27369,"ts":326461055352,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":184,"tdur":153,"tts":2381260},
-{"pid":27369,"tid":27369,"ts":326461055444,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":61,"tdur":31,"tts":2381382},
-{"pid":27369,"tid":27369,"ts":326461055719,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2381626},
-{"pid":27369,"tid":27369,"ts":326461070338,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2381931},
-{"pid":27369,"tid":27369,"ts":326461070399,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2381992},
-{"pid":27369,"tid":27369,"ts":326461070430,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":30,"tdur":31,"tts":2382023},
-{"pid":27369,"tid":27369,"ts":326461070460,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2382054},
-{"pid":27369,"tid":27369,"ts":326461070552,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2382145},
-{"pid":27369,"tid":27369,"ts":326461113891,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2382420},
-{"pid":27369,"tid":27369,"ts":326461113921,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2382450,"id":"0xaf8a6097feb47934"},
-{"pid":27369,"tid":27369,"ts":326461113952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":213,"tdur":213,"tts":2382481},
-{"pid":27369,"tid":27369,"ts":326461114257,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2382786},
-{"pid":27369,"tid":27369,"ts":326461274214,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2383091},
-{"pid":27369,"tid":27369,"ts":326461274245,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2383122,"id":"0xaf8a6090feb47934"},
-{"pid":27369,"tid":27369,"ts":326461274245,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":488,"tdur":488,"tts":2383122},
-{"pid":27369,"tid":27369,"ts":326461274794,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2383671},
-{"pid":27369,"tid":27369,"ts":326461275130,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2383854},
-{"pid":27369,"tid":27369,"ts":326461275160,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2383885,"id":"0xaf8a6091feb47934"},
-{"pid":27369,"tid":27369,"ts":326461275160,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":214,"tdur":213,"tts":2383885},
-{"pid":27369,"tid":27369,"ts":326461275191,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2383915},
-{"pid":27369,"tid":27369,"ts":326461275221,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2383946},
-{"pid":27369,"tid":27369,"ts":326461275252,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2383976},
-{"pid":27369,"tid":27369,"ts":326461275252,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2383976},
-{"pid":27369,"tid":27369,"ts":326461275435,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2384159},
-{"pid":27369,"tid":27369,"ts":326461281875,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2384404},
-{"pid":27369,"tid":27369,"ts":326461281875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2384434,"id":"0xaf8a6092feb47934"},
-{"pid":27369,"tid":27369,"ts":326461281905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":244,"tts":2384434},
-{"pid":27369,"tid":27369,"ts":326461281936,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":213,"tdur":213,"tts":2384465},
-{"pid":27369,"tid":27369,"ts":326461281997,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":152,"tdur":152,"tts":2384526},
-{"pid":27369,"tid":27369,"ts":326461282241,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2384770},
-{"pid":27369,"tid":27369,"ts":326461287429,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2385014},
-{"pid":27369,"tid":27369,"ts":326461287460,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2385075},
-{"pid":27369,"tid":27369,"ts":326461287521,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":274,"tts":2385106},
-{"pid":27369,"tid":27369,"ts":326461287551,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461286662},"dur":123,"tdur":122,"tts":2385136},
-{"pid":27369,"tid":27369,"ts":326461287582,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2385167},
-{"pid":27369,"tid":27369,"ts":326461287612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2385197,"id":"0xaf8a6ef4febbc614"},
-{"pid":27369,"tid":27369,"ts":326461287826,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2385411},
-{"pid":27369,"tid":27369,"ts":326461287948,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2385533},
-{"pid":27369,"tid":27369,"ts":326461304155,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2385869},
-{"pid":27369,"tid":27369,"ts":326461304216,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2385930},
-{"pid":27369,"tid":27369,"ts":326461304277,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":274,"tts":2385991},
-{"pid":27369,"tid":27369,"ts":326461304307,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461303343},"dur":122,"tdur":122,"tts":2386021},
-{"pid":27369,"tid":27369,"ts":326461304338,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2386052},
-{"pid":27369,"tid":27369,"ts":326461304338,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2386082,"id":"0xaf8a6ef6febbc614"},
-{"pid":27369,"tid":27369,"ts":326461304551,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2386265},
-{"pid":27369,"tid":27369,"ts":326461304795,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2386509},
-{"pid":27369,"tid":27369,"ts":326461307970,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2386784},
-{"pid":27369,"tid":27369,"ts":326461308031,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2386845,"id":"0xaf8a6093feb47934"},
-{"pid":27369,"tid":27369,"ts":326461308031,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2386845},
-{"pid":27369,"tid":27369,"ts":326461308061,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":153,"tdur":152,"tts":2386876},
-{"pid":27369,"tid":27369,"ts":326461308336,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2387181},
-{"pid":27369,"tid":27369,"ts":326461320513,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2387547},
-{"pid":27369,"tid":27369,"ts":326461320544,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2387578,"id":"0xaf8a60acfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461320574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":31,"tdur":31,"tts":2387608},
-{"pid":27369,"tid":27369,"ts":326461320697,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2387730},
-{"pid":27369,"tid":27369,"ts":326461323138,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2388158},
-{"pid":27369,"tid":27369,"ts":326461323230,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2388219},
-{"pid":27369,"tid":27369,"ts":326461323291,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":793,"tdur":396,"tts":2388280},
-{"pid":27369,"tid":27369,"ts":326461323321,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461320025},"dur":214,"tdur":214,"tts":2388310},
-{"pid":27369,"tid":27369,"ts":326461323443,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2388432},
-{"pid":27369,"tid":27369,"ts":326461323474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2388463,"id":"0xaf8a6ef1febbc614"},
-{"pid":27369,"tid":27369,"ts":326461324115,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2388707},
-{"pid":27369,"tid":27369,"ts":326461324328,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2388921},
-{"pid":27369,"tid":27369,"ts":326461337513,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2389317},
-{"pid":27369,"tid":27369,"ts":326461337605,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2389378},
-{"pid":27369,"tid":27369,"ts":326461337666,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":305,"tdur":306,"tts":2389439},
-{"pid":27369,"tid":27369,"ts":326461337666,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461336707},"dur":153,"tdur":153,"tts":2389439},
-{"pid":27369,"tid":27369,"ts":326461337696,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":123,"tdur":122,"tts":2389470},
-{"pid":27369,"tid":27407,"ts":326461114592,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":15,"window_size":6290278}},"tts":1739294,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461114623,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1739356,"id":"0xaf8a6e36febbc614"},
-{"pid":27369,"tid":27407,"ts":326461115905,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461115},"tts":1739539,"id":"0xaf8a6e36febbc614"},
-{"pid":27369,"tid":27407,"ts":326461115905,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":732,"tdur":732,"tts":1739539},
-{"pid":27369,"tid":27407,"ts":326461115996,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15728640}},"tts":1739630,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461116027,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":15,"window_size":6291456}},"tts":1739661,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461116057,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1739722,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461116088,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1739722,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461116119,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1178,"index":1,"offset":0,"truncate":true}},"tts":1739783,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461116180,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1178}},"tts":1739813,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461116210,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1178,"index":1,"offset":0,"truncate":true}},"tts":1739844,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461116271,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1739905,"id":"0xaf8a65fafd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461116332,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1739966,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461116363,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1178}},"tts":1739996,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461116454,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1740088,"id":"0xba460502"},
-{"pid":27369,"tid":27407,"ts":326461116515,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1740180,"id":"0xba460602"},
-{"pid":27369,"tid":27407,"ts":326461116607,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1740241,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461117004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1740363,"id":"0xaf8a6e37febbc614"},
-{"pid":27369,"tid":27407,"ts":326461117034,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1740393},
-{"pid":27369,"tid":27407,"ts":326461117065,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1178}},"tts":1740424,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461118316,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":92,"tts":1740576},
-{"pid":27369,"tid":27407,"ts":326461118347,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":30,"tts":1740607},
-{"pid":27369,"tid":27407,"ts":326461118347,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1740607,"id":"0xccc55d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461118469,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":4791,"tdur":4792,"tts":1740729},
-{"pid":27369,"tid":27407,"ts":326461118530,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1740820,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461118621,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1740882,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461118804,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1741065,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461118865,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1741126,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461118865,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1741126},
-{"pid":27369,"tid":27407,"ts":326461118987,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1741248,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461119048,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1741309,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461119079,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1741339,"id":"0xaf8a6e30febbc614"},
-{"pid":27369,"tid":27407,"ts":326461119171,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1741431,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461119323,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1741584,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461119415,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1741675,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461119445,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726266}},"tts":1741706,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461119476,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6289082}},"tts":1741767,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461119598,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1741858,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461119689,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1741950,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461119720,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1742041,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461119720,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1742041},
-{"pid":27369,"tid":27407,"ts":326461119842,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15723892}},"tts":1742102,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461119903,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6286708}},"tts":1742163,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461119995,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1742255,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461120239,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1742499,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461120269,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1742530,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461120361,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15721518}},"tts":1742621,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461120391,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6284334}},"tts":1742652,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461120483,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1742774,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461120636,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1742896,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461120727,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1742987,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461120758,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15719144}},"tts":1743018,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461120819,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6281960}},"tts":1743079,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461120910,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1743171,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461121002,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1743293,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461121093,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1743354,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121185,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15716770}},"tts":1743445,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121215,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6279586}},"tts":1743476,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461121338,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1743598,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461121399,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1743659,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461121429,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1743689,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121490,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15714396}},"tts":1743750,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121521,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6277212}},"tts":1743781,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461121612,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1743873,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461121704,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1743964,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461121765,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":962,"stream_id":15}},"tts":1744025,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121795,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-962,"window_size":15713434}},"tts":1744056,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121826,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-962,"stream_id":15,"window_size":6276250}},"tts":1744086,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461121887,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":216,"stream_id":15}},"tts":1744147,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121917,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-216,"window_size":15713218}},"tts":1744178,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461121948,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-216,"stream_id":15,"window_size":6276034}},"tts":1744208,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461122070,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1744361,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461122162,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1744422,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461122192,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1744452,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461122253,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15710844}},"tts":1744513,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461122284,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6273660}},"tts":1744544,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461122406,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1744697,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461122497,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1744758,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461122528,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1744788,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461122589,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15708470}},"tts":1744849,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461122619,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6271286}},"tts":1744880,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461122741,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1745002,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461122802,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1745093,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461122864,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1745124,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461122894,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15706096}},"tts":1745154,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461122955,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6268912}},"tts":1745215,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461123047,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1745307,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461123138,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1745399,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461123169,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15703722}},"tts":1745429,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461123199,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6266538}},"tts":1745460,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461123352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461120},"tts":1745643,"id":"0xaf8a6e30febbc614"},
-{"pid":27369,"tid":27407,"ts":326461123382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1745643},
-{"pid":27369,"tid":27407,"ts":326461123413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1745673,"id":"0xaf8a6e31febbc614"},
-{"pid":27369,"tid":27407,"ts":326461123779,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":946,"tdur":946,"tts":1745887},
-{"pid":27369,"tid":27407,"ts":326461123840,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1745948,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461123932,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1746039,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461123993,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1746101,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461124054,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1746162,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461124084,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15702535}},"tts":1746192,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461124115,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6265351}},"tts":1746223,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461124206,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1746314,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461124298,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1746406,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461124328,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1746467,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461124390,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15701348}},"tts":1746497,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461124420,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6264164}},"tts":1746528,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461124512,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1746619,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461124573,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1746680,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461124634,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15700161}},"tts":1746741,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461124664,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6262977}},"tts":1746772,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461124756,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461124},"tts":1746864,"id":"0xaf8a6e31febbc614"},
-{"pid":27369,"tid":27407,"ts":326461124756,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1746864},
-{"pid":27369,"tid":27407,"ts":326461124786,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1746894,"id":"0xaf8a6e32febbc614"},
-{"pid":27369,"tid":27407,"ts":326461126007,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461125},"tts":1747047,"id":"0xaf8a6e32febbc614"},
-{"pid":27369,"tid":27407,"ts":326461126007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":2808,"tdur":2502,"tts":1747047},
-{"pid":27369,"tid":27407,"ts":326461126099,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15701348}},"tts":1747138,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126129,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6264164}},"tts":1747169,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126160,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15702535}},"tts":1747199,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126190,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6265351}},"tts":1747230,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126282,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15704909}},"tts":1747321,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126312,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6267725}},"tts":1747352,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126343,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15707283}},"tts":1747382,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126373,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6270099}},"tts":1747443,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126465,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15709657}},"tts":1747504,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126495,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6272473}},"tts":1747535,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126526,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15712031}},"tts":1747596,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126587,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6274847}},"tts":1747627,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126648,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15714405}},"tts":1747688,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126679,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6277221}},"tts":1747718,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126740,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":962,"window_size":15715367}},"tts":1747779,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126770,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":962,"stream_id":15,"window_size":6278183}},"tts":1747810,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126801,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":216,"window_size":15715583}},"tts":1747871,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126862,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":216,"stream_id":15,"window_size":6278399}},"tts":1747901,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461126923,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15717957}},"tts":1747962,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461126953,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6280773}},"tts":1747993,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127014,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15720331}},"tts":1748054,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461127045,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6283147}},"tts":1748084,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127106,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15722705}},"tts":1748145,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461127136,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6285521}},"tts":1748206,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127228,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15725079}},"tts":1748267,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461127258,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6287895}},"tts":1748298,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127319,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15726266}},"tts":1748359,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461127350,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6289082}},"tts":1748390,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127381,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15727453}},"tts":1748420,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461127411,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6290269}},"tts":1748451,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127442,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1748481,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461127472,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6291456}},"tts":1748542,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127533,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1748573,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127564,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1748603,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461127594,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":28479,"index":1,"offset":1178,"truncate":true}},"tts":1748634,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461127930,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":28479}},"tts":1748969,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461127991,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":28479,"index":1,"offset":1178,"truncate":true}},"tts":1749030,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461128174,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1749214,"id":"0xaf8a65fbfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461128235,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1749275,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461128296,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":28479}},"tts":1749336,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461128357,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1749397,"id":"0xba460702"},
-{"pid":27369,"tid":27407,"ts":326461128784,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1749519,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461128907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1749641,"id":"0xaf8a6e33febbc614"},
-{"pid":27369,"tid":27407,"ts":326461128937,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1749671},
-{"pid":27369,"tid":27407,"ts":326461128968,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":28479}},"tts":1749702,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461129944,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":458,"tdur":458,"tts":1749793},
-{"pid":27369,"tid":27407,"ts":326461130341,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1750190},
-{"pid":27369,"tid":27407,"ts":326461130341,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1750190,"id":"0xccc55e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461136292,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":458,"tdur":458,"tts":1750343},
-{"pid":27369,"tid":27407,"ts":326461136384,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1750434,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461136476,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1750526,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461136567,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1750618,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461136598,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1750648,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461136659,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1750709,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461136689,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1750740,"id":"0xaf8a6eccfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461137941,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461137},"tts":1750923,"id":"0xaf8a6eccfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461137941,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":641,"tdur":641,"tts":1750923},
-{"pid":27369,"tid":27407,"ts":326461138032,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1751014,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461138063,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6291456}},"tts":1751045,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461138093,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1751075,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461138124,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1751106,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461138154,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1187,"index":1,"offset":29657,"truncate":true}},"tts":1751136,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461138185,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1187}},"tts":1751167,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461138246,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1187,"index":1,"offset":29657,"truncate":true}},"tts":1751228,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461138276,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1751289,"id":"0xaf8a65f4fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461138337,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1751320,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461138398,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1187}},"tts":1751381,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461138459,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1751442,"id":"0xba460802"},
-{"pid":27369,"tid":27407,"ts":326461138551,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1751533,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461139070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1751686,"id":"0xaf8a6ecdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461139100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":92,"tdur":91,"tts":1751686},
-{"pid":27369,"tid":27407,"ts":326461139131,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1187}},"tts":1751747,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461139406,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":1751869},
-{"pid":27369,"tid":27407,"ts":326461139436,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1751899},
-{"pid":27369,"tid":27407,"ts":326461139467,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1751930,"id":"0xccc55f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461145235,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":855,"tdur":855,"tts":1752113},
-{"pid":27369,"tid":27407,"ts":326461145388,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1752296,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461145571,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":900}},"tts":1752449,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461145723,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":900,"stream_id":15}},"tts":1752601,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461145815,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-900,"window_size":15727740}},"tts":1752693,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461145906,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-900,"stream_id":15,"window_size":6290556}},"tts":1752784,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461145967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1752846,"id":"0xaf8a6ecefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461147402,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461146},"tts":1753212,"id":"0xaf8a6ecefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461147432,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1679,"tdur":1221,"tts":1753242},
-{"pid":27369,"tid":27407,"ts":326461147555,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":900,"window_size":15728640}},"tts":1753364,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461147616,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":900,"stream_id":15,"window_size":6291456}},"tts":1753425,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461147677,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1753486,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461147738,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1753547,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461147799,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":900,"index":1,"offset":30844,"truncate":true}},"tts":1753609,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461147860,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":900}},"tts":1753670,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461147951,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":900,"index":1,"offset":30844,"truncate":true}},"tts":1753761,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461148043,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1753853,"id":"0xaf8a65f5fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461148134,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1753975,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461148134,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1753975},
-{"pid":27369,"tid":27407,"ts":326461148256,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":900}},"tts":1754097,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461148379,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1754219,"id":"0xba460902"},
-{"pid":27369,"tid":27407,"ts":326461149050,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1754402,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461149111,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1754494,"id":"0xaf8a6ecffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461149142,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":152,"tdur":122,"tts":1754524},
-{"pid":27369,"tid":27407,"ts":326461149233,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":900}},"tts":1754585,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461149355,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":885,"tdur":794,"tts":1754707},
-{"pid":27369,"tid":27407,"ts":326461149477,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1754829,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461149630,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1754982,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461149782,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":15}},"tts":1755135,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461149874,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1755226,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461149935,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":15,"window_size":6290278}},"tts":1755287,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461149996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1755348,"id":"0xaf8a6ec8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461149996,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":92,"tts":1755348},
-{"pid":27369,"tid":27407,"ts":326461150332,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1755592},
-{"pid":27369,"tid":27407,"ts":326461150393,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":91,"tdur":92,"tts":1755653},
-{"pid":27369,"tid":27407,"ts":326461150423,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1755684,"id":"0xccc56002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461151858,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":3143,"tdur":2655,"tts":1755928},
-{"pid":27369,"tid":27407,"ts":326461152041,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9664}},"tts":1756111,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461152499,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1756569,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461152590,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":15}},"tts":1756661,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461152651,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15719270}},"tts":1756722,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461152743,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":15,"window_size":6282086}},"tts":1756813,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461152743,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":61,"tts":1756813},
-{"pid":27369,"tid":27407,"ts":326461153475,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1304}},"tts":1757057,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461153598,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1757179,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461153689,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1304,"stream_id":15}},"tts":1757271,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461153750,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1304,"window_size":15717966}},"tts":1757363,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461153842,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1304,"stream_id":15,"window_size":6280782}},"tts":1757424,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461154086,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1757698,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461154238,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1757820,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461154300,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":15}},"tts":1757912,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461154391,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15714405}},"tts":1757973,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461154452,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":15,"window_size":6277221}},"tts":1758034,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461154605,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1758187,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461154757,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1758339,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461154818,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15713218}},"tts":1758431,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461154910,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6276034}},"tts":1758492,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461155032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461150},"tts":1758614,"id":"0xaf8a6ec8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461155063,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":122,"tdur":122,"tts":1758644},
-{"pid":27369,"tid":27407,"ts":326461155124,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1758705,"id":"0xaf8a6ec9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461156192,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":366,"tdur":366,"tts":1758919},
-{"pid":27369,"tid":27407,"ts":326461156283,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1759011,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461156344,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":962}},"tts":1759072,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461156436,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":962,"stream_id":15}},"tts":1759163,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461156466,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-962,"window_size":15712256}},"tts":1759194,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461156527,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-962,"stream_id":15,"window_size":6275072}},"tts":1759255,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461156589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461156},"tts":1759316,"id":"0xaf8a6ec9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461156589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":91,"tdur":61,"tts":1759346},
-{"pid":27369,"tid":27407,"ts":326461156619,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1759377,"id":"0xaf8a6ecafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461156711,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":457,"tdur":458,"tts":1759438},
-{"pid":27369,"tid":27407,"ts":326461156833,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1759560,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461156924,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1759682,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461157016,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2365,"stream_id":15}},"tts":1759743,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461157077,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2365,"window_size":15709891}},"tts":1759804,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461157107,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2365,"stream_id":15,"window_size":6272707}},"tts":1759835,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461158328,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461157},"tts":1759987,"id":"0xaf8a6ecafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461158328,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1759987},
-{"pid":27369,"tid":27407,"ts":326461158359,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1760018,"id":"0xaf8a6ecbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461159580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461159},"tts":1760170,"id":"0xaf8a6ecbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461159580,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1465,"tdur":1465,"tts":1760170},
-{"pid":27369,"tid":27407,"ts":326461159671,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15711069}},"tts":1760262,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461159702,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":15,"window_size":6273885}},"tts":1760292,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461159793,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15719261}},"tts":1760384,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461159824,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":15,"window_size":6282077}},"tts":1760445,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461159885,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1304,"window_size":15720565}},"tts":1760476,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461159915,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1304,"stream_id":15,"window_size":6283381}},"tts":1760506,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461159976,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15724126}},"tts":1760567,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461159976,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1760567},
-{"pid":27369,"tid":27407,"ts":326461160068,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3561,"stream_id":15,"window_size":6286942}},"tts":1760659,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160098,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725313}},"tts":1760689,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461160129,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6288129}},"tts":1760720,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160159,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":962,"window_size":15726275}},"tts":1760750,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461160220,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":962,"stream_id":15,"window_size":6289091}},"tts":1760811,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160281,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2365,"window_size":15728640}},"tts":1760872,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461160312,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2365,"stream_id":15,"window_size":6291456}},"tts":1760903,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160343,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1760933,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160373,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1760964,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160404,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":18749,"index":1,"offset":31744,"truncate":true}},"tts":1761025,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461160526,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":18749}},"tts":1761117,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461160587,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":18749,"index":1,"offset":31744,"truncate":true}},"tts":1761178,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461160709,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1761300,"id":"0xaf8a65f6fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461160770,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1761361,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160831,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":18749}},"tts":1761422,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461160892,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1761483,"id":"0xba460a02"},
-{"pid":27369,"tid":27407,"ts":326461160983,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1761605,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461161411,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":427,"tdur":427,"tts":1761727},
-{"pid":27369,"tid":27407,"ts":326461161502,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1761819,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461161563,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1761910,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461161655,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1761971,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461161716,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1762032,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461161746,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1762063,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461161777,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1762093,"id":"0xaf8a6ec5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461161838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1762154,"id":"0xaf8a6ec4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461161869,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1762185},
-{"pid":27369,"tid":27407,"ts":326461161899,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":18749}},"tts":1762215,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461162540,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":366,"tdur":366,"tts":1762368},
-{"pid":27369,"tid":27407,"ts":326461162601,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1762429,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461162693,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1762520,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461162784,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1762612,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461162815,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726266}},"tts":1762643,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461162845,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6289082}},"tts":1762704,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461162937,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":1762765},
-{"pid":27369,"tid":27407,"ts":326461162967,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1762795},
-{"pid":27369,"tid":27407,"ts":326461162967,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1762826,"id":"0xccc56102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461163059,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461162},"tts":1762887,"id":"0xaf8a6ec5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461163059,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":91,"tdur":31,"tts":1762917},
-{"pid":27369,"tid":27407,"ts":326461163089,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1762917,"id":"0xaf8a6ec6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461164310,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461164},"tts":1763100,"id":"0xaf8a6ec6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461164310,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":733,"tdur":733,"tts":1763100},
-{"pid":27369,"tid":27407,"ts":326461164402,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15727453}},"tts":1763192,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461164432,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6290269}},"tts":1763222,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461164463,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1763253,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461164524,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6291456}},"tts":1763314,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461164554,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1763345,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461164585,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1763375,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461164615,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":2374,"index":1,"offset":50493,"truncate":true}},"tts":1763406,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461164646,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":2374}},"tts":1763436,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461164676,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":2374,"index":1,"offset":50493,"truncate":true}},"tts":1763467,"id":"0x1e0"},{"pid":27369,"tid":27407,"ts":326461164737,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1763528,"id":"0xaf8a65f7fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461164799,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1763589,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461164860,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":2374}},"tts":1763650,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461164921,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1763711,"id":"0xba460b02"},
-{"pid":27369,"tid":27407,"ts":326461165012,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1763802,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461165500,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1763985,"id":"0xaf8a6ec7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461165500,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":550,"tdur":0,"tts":1763985},
-{"pid":27369,"tid":27407,"ts":326461166050,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1764016},
-{"pid":27369,"tid":27407,"ts":326461166080,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":2374}},"tts":1764046,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461166141,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":458,"tdur":457,"tts":1764108},
-{"pid":27369,"tid":27407,"ts":326461166233,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1764199,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461166325,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1764291,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461166416,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1764382,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461166477,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15726266}},"tts":1764443,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461166508,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6289082}},"tts":1764474,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461166538,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1764504,"id":"0xaf8a6ec0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461166599,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":91,"tts":1764596},
-{"pid":27369,"tid":27407,"ts":326461166660,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1764626},
-{"pid":27369,"tid":27407,"ts":326461166660,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1764626,"id":"0xccc56202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461167912,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461167},"tts":1764810,"id":"0xaf8a6ec0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461167912,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":641,"tdur":640,"tts":1764810},
-{"pid":27369,"tid":27407,"ts":326461167973,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15728640}},"tts":1764901,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461168034,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6291456}},"tts":1764932,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461168064,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1764962,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461168095,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1764993,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461168125,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":2374,"index":1,"offset":52867,"truncate":true}},"tts":1765023,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461168156,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":2374}},"tts":1765054,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461168186,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":2374,"index":1,"offset":52867,"truncate":true}},"tts":1765115,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461168247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1765145,"id":"0xaf8a65f0fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461168308,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1765206,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461168369,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":2374}},"tts":1765267,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461168430,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1765328,"id":"0xba460c02"},
-{"pid":27369,"tid":27407,"ts":326461168522,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1765420,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461168766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1765573,"id":"0xaf8a6ec1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461168797,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":244,"tdur":122,"tts":1765603},
-{"pid":27369,"tid":27407,"ts":326461169010,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":2374}},"tts":1765695,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461169071,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":428,"tdur":427,"tts":1765756},
-{"pid":27369,"tid":27407,"ts":326461169132,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1765817,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461169224,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1765908,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461169316,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1766000,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461169346,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1766061,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461169407,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1766091,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461169438,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1766122,"id":"0xaf8a6ec2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461169560,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":92,"tts":1766244},
-{"pid":27369,"tid":27407,"ts":326461169590,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1766274},
-{"pid":27369,"tid":27407,"ts":326461169590,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1766274,"id":"0xccc56302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461170842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461170},"tts":1766458,"id":"0xaf8a6ec2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461170842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":671,"tdur":671,"tts":1766458},
-{"pid":27369,"tid":27407,"ts":326461170933,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1766549,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461170964,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6291456}},"tts":1766580,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461170994,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1766610,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461171025,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1766641,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461171055,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1187,"index":1,"offset":55241,"truncate":true}},"tts":1766671,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461171086,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1187}},"tts":1766702,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461171116,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1187,"index":1,"offset":55241,"truncate":true}},"tts":1766763,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461171208,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1766824,"id":"0xaf8a65f1fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461171269,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1766885,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461171299,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1187}},"tts":1766946,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461171391,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1767007,"id":"0xba460d02"},
-{"pid":27369,"tid":27407,"ts":326461171482,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1767099,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461171544,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":396,"tdur":396,"tts":1767160},
-{"pid":27369,"tid":27407,"ts":326461171605,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1767251,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461171696,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1767312,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461171788,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1767404,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461171818,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1767434,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461171849,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1767465,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461171879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1767526,"id":"0xaf8a6edcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461171971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1767587,"id":"0xaf8a6ec3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461172001,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1767617},
-{"pid":27369,"tid":27407,"ts":326461172032,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1187}},"tts":1767648,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461172459,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":91,"tts":1767801},
-{"pid":27369,"tid":27407,"ts":326461172490,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":30,"tts":1767862},
-{"pid":27369,"tid":27407,"ts":326461172520,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1767862,"id":"0xccc56402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461173710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461172},"tts":1768014,"id":"0xaf8a6edcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461173710,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":733,"tdur":733,"tts":1768014},
-{"pid":27369,"tid":27407,"ts":326461173802,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1768106,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461173833,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6291456}},"tts":1768136,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461173863,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1768197,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461173863,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1768197},
-{"pid":27369,"tid":27407,"ts":326461173924,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1768258,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461173985,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1187,"index":1,"offset":56428,"truncate":true}},"tts":1768289,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461174016,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1187}},"tts":1768319,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461174077,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":1187,"index":1,"offset":56428,"truncate":true}},"tts":1768411,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461174138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1768441,"id":"0xaf8a65f2fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461174199,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1768502,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461174229,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":1187}},"tts":1768533,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461174290,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1768594,"id":"0xba460e02"},
-{"pid":27369,"tid":27407,"ts":326461174382,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1768686,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461174443,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":610,"tdur":580,"tts":1768777},
-{"pid":27369,"tid":27407,"ts":326461174596,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1768930,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461174718,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1769052,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461174840,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1769143,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461174870,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15726266}},"tts":1769174,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461174931,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6289082}},"tts":1769235,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461174962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1769265,"id":"0xaf8a6eddfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461175389,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1769479,"id":"0xaf8a6edefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461175389,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":92,"tdur":92,"tts":1769479},
-{"pid":27369,"tid":27407,"ts":326461175420,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":1187}},"tts":1769540,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461175481,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1769571},
-{"pid":27369,"tid":27407,"ts":326461175542,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1769632},
-{"pid":27369,"tid":27407,"ts":326461175542,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1769632,"id":"0xccc56502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461175603,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":366,"tdur":366,"tts":1769693},
-{"pid":27369,"tid":27407,"ts":326461175664,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1769754,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461175755,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1769845,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461175816,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1769906,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461175877,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15725079}},"tts":1769967,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461175908,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6287895}},"tts":1769998,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461175999,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461175},"tts":1770090,"id":"0xaf8a6eddfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461175999,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":30,"tts":1770090},
-{"pid":27369,"tid":27407,"ts":326461176030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1770120,"id":"0xaf8a6edffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461177068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":427,"tdur":427,"tts":1770242},
-{"pid":27369,"tid":27407,"ts":326461177190,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1770364,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461177281,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1770456,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461177373,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1770547,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461177403,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15723892}},"tts":1770578,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461177434,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6286708}},"tts":1770608,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461177526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461177},"tts":1770700,"id":"0xaf8a6edffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461177526,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1770700},
-{"pid":27369,"tid":27407,"ts":326461177556,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1770730,"id":"0xaf8a6ed8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461177617,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":610,"tdur":611,"tts":1770791},
-{"pid":27369,"tid":27407,"ts":326461177770,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1770944,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461177892,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2760}},"tts":1771066,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461177953,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":15}},"tts":1771158,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461178014,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15721743}},"tts":1771188,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461178044,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":15,"window_size":6284559}},"tts":1771219,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461178105,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":602,"stream_id":15}},"tts":1771280,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461178136,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-602,"window_size":15721141}},"tts":1771310,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461178166,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-602,"stream_id":15,"window_size":6283957}},"tts":1771341,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461179387,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461178},"tts":1771524,"id":"0xaf8a6ed8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461179387,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1771524},
-{"pid":27369,"tid":27407,"ts":326461179418,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1771555,"id":"0xaf8a6ed9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461180547,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":366,"tdur":336,"tts":1771707},
-{"pid":27369,"tid":27407,"ts":326461180608,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1771768,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461180669,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1771829,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461180761,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":15}},"tts":1771921,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461180822,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15719963}},"tts":1771982,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461180852,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":15,"window_size":6282779}},"tts":1772012,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461180913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461180},"tts":1772073,"id":"0xaf8a6ed9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461180944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1772104},
-{"pid":27369,"tid":27407,"ts":326461180944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1772104,"id":"0xaf8a6edafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461182195,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461181},"tts":1772287,"id":"0xaf8a6edafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461182195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1160,"tdur":1160,"tts":1772287},
-{"pid":27369,"tid":27407,"ts":326461182287,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15722337}},"tts":1772379,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461182317,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6285153}},"tts":1772409,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182348,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15723524}},"tts":1772440,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461182378,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6286340}},"tts":1772470,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182470,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15724711}},"tts":1772562,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461182500,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6287527}},"tts":1772592,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182531,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2149,"window_size":15726860}},"tts":1772623,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461182561,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2149,"stream_id":15,"window_size":6289676}},"tts":1772653,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182592,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":602,"window_size":15727462}},"tts":1772684,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461182622,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":602,"stream_id":15,"window_size":6290278}},"tts":1772714,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182714,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15728640}},"tts":1772806,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461182744,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":15,"window_size":6291456}},"tts":1772836,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182775,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1772867,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182806,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1772897,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461182836,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":8677,"index":1,"offset":57615,"truncate":true}},"tts":1772928,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461182897,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":8677}},"tts":1772989,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461182958,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":8677,"index":1,"offset":57615,"truncate":true}},"tts":1773050,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461183019,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1773142,"id":"0xaf8a65f3fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461183080,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1773203,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461183141,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":8677}},"tts":1773233,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461183202,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1773294,"id":"0xba460f02"},
-{"pid":27369,"tid":27407,"ts":326461183324,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1773416,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461183385,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":489,"tdur":489,"tts":1773477},
-{"pid":27369,"tid":27407,"ts":326461183538,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1773630,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461183630,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1773721,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461183721,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1773813,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461183752,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1773844,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461183782,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1773874,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461183813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1773905,"id":"0xaf8a6ed4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461183904,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1773996,"id":"0xaf8a6edbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461183935,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1774027},
-{"pid":27369,"tid":27407,"ts":326461183965,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":8677}},"tts":1774057,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461184026,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":458,"tdur":458,"tts":1774118},
-{"pid":27369,"tid":27407,"ts":326461184148,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1774240,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461184271,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1774362,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461184362,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1774454,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461184393,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15725079}},"tts":1774484,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461184423,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6287895}},"tts":1774515,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461184728,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":92,"tts":1774698},
-{"pid":27369,"tid":27407,"ts":326461184759,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1774729},
-{"pid":27369,"tid":27407,"ts":326461184759,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1774729,"id":"0xccc56602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461184850,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461184},"tts":1774820,"id":"0xaf8a6ed4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461184881,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1774851},
-{"pid":27369,"tid":27407,"ts":326461184881,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1774851,"id":"0xaf8a6ed5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461186621,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1770,"tdur":1221,"tts":1775003},
-{"pid":27369,"tid":27407,"ts":326461186834,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4832}},"tts":1775186,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461186834,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":1775186},
-{"pid":27369,"tid":27407,"ts":326461187170,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4748}},"tts":1775400,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461187170,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":1775400},
-{"pid":27369,"tid":27407,"ts":326461187750,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4832}},"tts":1775583,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461187811,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4748,"stream_id":15}},"tts":1775644,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461187902,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4748,"window_size":15720331}},"tts":1775736,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461187933,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4748,"stream_id":15,"window_size":6283147}},"tts":1775797,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461188147,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4748}},"tts":1775980,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461188238,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4748,"stream_id":15}},"tts":1776072,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461188269,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4748,"window_size":15715583}},"tts":1776102,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461188330,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4748,"stream_id":15,"window_size":6278399}},"tts":1776163,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461188421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461185},"tts":1776255,"id":"0xaf8a6ed5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461188452,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1776285},
-{"pid":27369,"tid":27407,"ts":326461188482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1776316,"id":"0xaf8a6ed6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461189734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461189},"tts":1776529,"id":"0xaf8a6ed6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461189764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":2930,"tdur":1434,"tts":1776560},
-{"pid":27369,"tid":27407,"ts":326461189856,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15716770}},"tts":1776651,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461189886,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6279586}},"tts":1776682,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461189947,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15719144}},"tts":1776743,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461190008,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6281960}},"tts":1776804,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461191077,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4748,"window_size":15723892}},"tts":1777018,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461191107,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4748,"stream_id":15,"window_size":6286708}},"tts":1777048,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461191199,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4748,"window_size":15728640}},"tts":1777140,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461191260,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4748,"stream_id":15,"window_size":6291456}},"tts":1777201,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461191290,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1777231,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461191321,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1777262,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461191412,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13057,"index":1,"offset":66292,"truncate":true}},"tts":1777353,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461191473,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13057}},"tts":1777445,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461191534,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13057,"index":1,"offset":66292,"truncate":true}},"tts":1777475,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461191656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1777598,"id":"0xaf8a658cfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461191656,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1777598},
-{"pid":27369,"tid":27407,"ts":326461192389,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1777689,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461192450,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":13057}},"tts":1777750,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461192542,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1777842,"id":"0xba461002"},
-{"pid":27369,"tid":27407,"ts":326461192664,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1777964,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461192725,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1778025,"id":"0xaf8a6ed7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461192725,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":91,"tdur":61,"tts":1778025},
-{"pid":27369,"tid":27407,"ts":326461192755,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13057}},"tts":1778055,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461192816,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":885,"tdur":885,"tts":1778116},
-{"pid":27369,"tid":27407,"ts":326461193030,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4832}},"tts":1778330,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461193213,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3921}},"tts":1778513,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461193305,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1547,"stream_id":15}},"tts":1778605,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461193366,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1547,"window_size":15727093}},"tts":1778666,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461193396,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1547,"stream_id":15,"window_size":6289909}},"tts":1778696,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461193427,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1778727,"id":"0xaf8a6ed0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461193457,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2365,"stream_id":15}},"tts":1778788,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461193518,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2365,"window_size":15724728}},"tts":1778818,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461193579,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2365,"stream_id":15,"window_size":6287544}},"tts":1778879,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461193579,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":1778879},
-{"pid":27369,"tid":27407,"ts":326461193793,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":946,"tdur":946,"tts":1779093},
-{"pid":27369,"tid":27407,"ts":326461193884,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1779185,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461194037,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1779337,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461194190,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1779490,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461194251,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1779551,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461194281,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15723541}},"tts":1779581,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461194342,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6286357}},"tts":1779673,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461194434,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1779734,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461194556,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1779856,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461194586,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15722354}},"tts":1779917,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461194678,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6285170}},"tts":1779978,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461194739,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":519,"tdur":488,"tts":1780070},
-{"pid":27369,"tid":27407,"ts":326461194892,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1780192,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461195044,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1780344,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461195136,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1780436,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461195166,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15719980}},"tts":1780466,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461195197,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6282796}},"tts":1780497,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461195288,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461194},"tts":1780589,"id":"0xaf8a6ed0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461195288,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1780589},
-{"pid":27369,"tid":27407,"ts":326461195319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1780619,"id":"0xaf8a6ed1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461197181,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":92,"tts":1780802},
-{"pid":27369,"tid":27407,"ts":326461197242,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1780833},
-{"pid":27369,"tid":27407,"ts":326461197242,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1780833,"id":"0xccc56702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461197333,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":458,"tdur":458,"tts":1780924},
-{"pid":27369,"tid":27407,"ts":326461197394,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1781046,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461197394,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1781046},
-{"pid":27369,"tid":27407,"ts":326461197547,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1781138,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461197638,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1781229,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461197669,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15718793}},"tts":1781260,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461197699,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6281609}},"tts":1781291,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461197822,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461196},"tts":1781413,"id":"0xaf8a6ed1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461197852,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1781443},
-{"pid":27369,"tid":27407,"ts":326461197852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1781474,"id":"0xaf8a6ed2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461197944,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":854,"tdur":854,"tts":1781535},
-{"pid":27369,"tid":27407,"ts":326461198127,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1781718,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461198218,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1781809,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461198340,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1781931,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461198401,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1781992,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461198462,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15717606}},"tts":1782054,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461198493,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6280422}},"tts":1782084,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461198585,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1782176,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461198676,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1782267,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461198707,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15715232}},"tts":1782328,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461198768,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6278048}},"tts":1782359,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461198859,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461198},"tts":1782450,"id":"0xaf8a6ed2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461198890,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":30,"tts":1782481},
-{"pid":27369,"tid":27407,"ts":326461198890,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1782481,"id":"0xaf8a6ed3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461200141,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461199},"tts":1782633,"id":"0xaf8a6ed3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461200172,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1617,"tdur":1618,"tts":1782664},
-{"pid":27369,"tid":27407,"ts":326461200233,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1547,"window_size":15716779}},"tts":1782725,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200294,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1547,"stream_id":15,"window_size":6279595}},"tts":1782786,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200324,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2365,"window_size":15719144}},"tts":1782817,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200385,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2365,"stream_id":15,"window_size":6281960}},"tts":1782908,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200477,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15720331}},"tts":1782969,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200507,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6283147}},"tts":1783000,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200538,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15721518}},"tts":1783030,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200568,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6284334}},"tts":1783091,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200660,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15723892}},"tts":1783152,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200690,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6286708}},"tts":1783183,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200782,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725079}},"tts":1783274,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200813,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6287895}},"tts":1783305,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200843,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15726266}},"tts":1783335,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200874,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6289082}},"tts":1783396,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461200965,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15728640}},"tts":1783457,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461200996,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6291456}},"tts":1783488,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461201026,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1783518,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461201087,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1783580,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461201118,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13408,"index":1,"offset":79349,"truncate":true}},"tts":1783641,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461201240,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13408}},"tts":1783732,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461201301,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":13408,"index":1,"offset":79349,"truncate":true}},"tts":1783793,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461201392,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1783915,"id":"0xaf8a658dfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461201484,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1783976,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461201545,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":13408}},"tts":1784037,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461201606,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1784098,"id":"0xba461102"},
-{"pid":27369,"tid":27407,"ts":326461201728,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1784251,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461201820,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1404,"tdur":1068,"tts":1784312},
-{"pid":27369,"tid":27407,"ts":326461202216,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1784526,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461202216,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":61,"tts":1784526},
-{"pid":27369,"tid":27407,"ts":326461202369,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1784678,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461202705,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1784861,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461202766,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1784922,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461202796,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15726266}},"tts":1784953,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461202857,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6289082}},"tts":1785014,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461202888,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1785045,"id":"0xaf8a6eecfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461203010,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2149}},"tts":1785167,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461203102,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":15}},"tts":1785258,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461203132,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15724117}},"tts":1785289,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461203193,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":15,"window_size":6286933}},"tts":1785350,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461204414,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1785594,"id":"0xaf8a6eedfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461204444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":123,"tdur":122,"tts":1785624},
-{"pid":27369,"tid":27407,"ts":326461204475,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":13408}},"tts":1785655,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461204597,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1038,"tdur":855,"tts":1785777},
-{"pid":27369,"tid":27407,"ts":326461204933,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1785960,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461205085,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1786082,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461205177,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1786174,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461205238,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3552,"stream_id":15}},"tts":1786235,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461205269,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3552,"window_size":15720565}},"tts":1786265,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461205299,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3552,"stream_id":15,"window_size":6283381}},"tts":1786326,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461205391,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1786387,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461205482,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1786479,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461205543,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15719378}},"tts":1786540,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461205574,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6282194}},"tts":1786571,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461205635,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":91,"tts":1786632},
-{"pid":27369,"tid":27407,"ts":326461205665,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1786662},
-{"pid":27369,"tid":27407,"ts":326461205696,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1786693,"id":"0xccc56802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461205757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461203},"tts":1786784,"id":"0xaf8a6eecfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461205787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":31,"tts":1786784},
-{"pid":27369,"tid":27407,"ts":326461205818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1786815,"id":"0xaf8a6eeefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461206978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461206},"tts":1786937,"id":"0xaf8a6eeefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461206978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1739,"tdur":1190,"tts":1786937},
-{"pid":27369,"tid":27407,"ts":326461207100,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15721752}},"tts":1787089,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461207161,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6284568}},"tts":1787120,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461207222,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2149,"window_size":15723901}},"tts":1787181,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461207252,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2149,"stream_id":15,"window_size":6286717}},"tts":1787211,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461207313,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3552,"window_size":15727453}},"tts":1787272,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461207344,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3552,"stream_id":15,"window_size":6290269}},"tts":1787303,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461207405,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1787395,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461207497,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6291456}},"tts":1787456,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461207527,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1787486,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461207558,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1787517,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461207619,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9262,"index":1,"offset":92757,"truncate":true}},"tts":1787578,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461207649,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9262}},"tts":1787608,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461207741,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9262,"index":1,"offset":92757,"truncate":true}},"tts":1787700,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461207832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1787791,"id":"0xaf8a658efd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461208443,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1787852,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461208504,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":9262}},"tts":1787913,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461208595,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1788005,"id":"0xba461202"},
-{"pid":27369,"tid":27407,"ts":326461208687,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1788097,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461208748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1788158,"id":"0xaf8a6eeffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461208748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":91,"tdur":91,"tts":1788158},
-{"pid":27369,"tid":27407,"ts":326461208778,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9262}},"tts":1788219,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461208839,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":763,"tdur":610,"tts":1788280},
-{"pid":27369,"tid":27407,"ts":326461209175,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4832}},"tts":1788463,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461209328,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4748}},"tts":1788615,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461209419,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4748,"stream_id":15}},"tts":1788707,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461209480,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4748,"window_size":15723892}},"tts":1788768,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461209511,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4748,"stream_id":15,"window_size":6286708}},"tts":1788799,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461209541,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1788829,"id":"0xaf8a6ee8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461210579,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1789012},
-{"pid":27369,"tid":27407,"ts":326461210640,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1789073},
-{"pid":27369,"tid":27530,"ts":326461203346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":37417,"id":"0xaf8a6eedfebbc614"},
-{"pid":27369,"tid":27643,"ts":326461207893,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":8667,"id":"0xaf8a658efd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461207924,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":488,"tdur":489,"tts":8667},
-{"pid":27369,"tid":27643,"ts":326461208351,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":9095,"id":"0xaf8a6eeffebbc614"},
-{"pid":27369,"tid":27480,"ts":326461211220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":70135,"id":"0xaf8a658ffd4cca54"},
-{"pid":27369,"tid":27480,"ts":326461211251,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":793,"tdur":732,"tts":70166},
-{"pid":27369,"tid":27480,"ts":326461211922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":70807,"id":"0xaf8a6ee9febbc614"},
-{"pid":27369,"tid":27530,"ts":326461235392,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":38058,"id":"0xaf8a6588fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326461235423,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":1220,"tdur":1190,"tts":38089},
-{"pid":27369,"tid":27530,"ts":326461236552,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39218,"id":"0xaf8a6ee7febbc614"},
-{"pid":27369,"tid":27643,"ts":326461242259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":9186,"id":"0xaf8a6589fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461242259,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":428,"tdur":396,"tts":9217},
-{"pid":27369,"tid":27643,"ts":326461242656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":9583,"id":"0xaf8a6ee0febbc614"},
-{"pid":27369,"tid":27482,"ts":326461252361,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":77216,"id":"0xaf8a658afd4cca54"},
-{"pid":27369,"tid":27482,"ts":326461252392,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":885,"tdur":793,"tts":77247},
-{"pid":27369,"tid":27482,"ts":326461253247,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78010,"id":"0xaf8a6ee2febbc614"},
-{"pid":27369,"tid":27530,"ts":326461268568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":39371,"id":"0xaf8a658bfd4cca54"},
-{"pid":27369,"tid":27530,"ts":326461268598,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":550,"tdur":549,"tts":39371},
-{"pid":27369,"tid":27530,"ts":326461269148,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":39920,"id":"0xaf8a6efefebbc614"},
-{"pid":27369,"tid":27480,"ts":326461271894,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":71020,"id":"0xaf8a6584fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326461271894,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":672,"tdur":641,"tts":71051},
-{"pid":27369,"tid":27480,"ts":326461272535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":71661,"id":"0xaf8a6efffebbc614"},
-{"pid":27369,"tid":27482,"ts":326461276106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":78132,"id":"0xaf8a6585fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326461276137,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":488,"tdur":488,"tts":78162},
-{"pid":27369,"tid":27482,"ts":326461276595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":78620,"id":"0xaf8a6efbfebbc614"},
-{"pid":27369,"tid":27643,"ts":326461319323,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":9674,"id":"0xaf8a6586fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326461319354,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":1343,"tdur":1191,"tts":9735},
-{"pid":27369,"tid":27643,"ts":326461320636,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":10895,"id":"0xaf8a6ef0febbc614"},
-{"pid":27369,"tid":27644,"ts":326461363608,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":7385,"id":"0xaf8a6587fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326461363639,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":397,"tdur":244,"tts":7416},
-{"pid":27369,"tid":27644,"ts":326461363974,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7599,"id":"0xaf8a6e8afebbc614"},
-{"pid":27369,"tid":27400,"ts":326461433530,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":57317,"id":"0xaf8a641dfeb5e97c"},
-{"pid":27369,"tid":27400,"ts":326461433530,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":184,"tdur":122,"tts":57317},
-{"pid":27369,"tid":27400,"ts":326461433744,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":57469,"id":"0xaf8a641efeb5e97c"},
-{"pid":27369,"tid":27400,"ts":326461433744,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":61,"tdur":61,"tts":57469},
-{"pid":27369,"tid":27568,"ts":326461434293,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":7691,"id":"0xaf8a641ffeb5e97c"},
-{"pid":27369,"tid":27568,"ts":326461434324,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":885,"tdur":885,"tts":7721},
-{"pid":27369,"tid":27568,"ts":326461435209,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":8606,"id":"0xaf8a6418feb5e97c"},
-{"pid":27369,"tid":27568,"ts":326461435209,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteFullTable"},"dur":92,"tdur":92,"tts":8606},
-{"pid":27369,"tid":27482,"ts":326462132325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":78712,"id":"0xaf8a6580fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326462132325,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":397,"tdur":396,"tts":78712},
-{"pid":27369,"tid":27482,"ts":326462132691,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79078,"id":"0xaf8a6f32febbc614"},
-{"pid":27369,"tid":27643,"ts":326462167515,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":11017,"id":"0xaf8a6581fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326462167545,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":458,"tdur":458,"tts":11048},
-{"pid":27369,"tid":27643,"ts":326462167973,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":11475,"id":"0xaf8a6fc8febbc614"},
-{"pid":27369,"tid":27644,"ts":326462206276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":7691,"id":"0xaf8a6582fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326462206276,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":549,"tdur":335,"tts":7691},
-{"pid":27369,"tid":27644,"ts":326462206764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":7965,"id":"0xaf8a6fc0febbc614"},
-{"pid":27369,"tid":27480,"ts":326462214394,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":71844,"id":"0xaf8a6583fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326462214394,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":397,"tdur":397,"tts":71844},
-{"pid":27369,"tid":27480,"ts":326462214760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72241,"id":"0xaf8a6fc1febbc614"},
-{"pid":27369,"tid":27530,"ts":326462450652,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":40042,"id":"0xaf8a659cfd4cca54"},
-{"pid":27369,"tid":27530,"ts":326462450683,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":275,"tdur":274,"tts":40073},
-{"pid":27369,"tid":27530,"ts":326462450927,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40317,"id":"0xaf8a6ff5febbc614"},
-{"pid":27369,"tid":27644,"ts":326462458282,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":8087,"id":"0xaf8a659dfd4cca54"},
-{"pid":27369,"tid":27644,"ts":326462458313,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":549,"tdur":549,"tts":8118},
-{"pid":27369,"tid":27644,"ts":326462458832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":8637,"id":"0xaf8a6ff3febbc614"},
-{"pid":27369,"tid":27643,"ts":326462482851,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":11567,"id":"0xaf8a659efd4cca54"},
-{"pid":27369,"tid":27643,"ts":326462482851,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"OpenEntryInternal"},"dur":489,"tdur":488,"tts":11567},
-{"pid":27369,"tid":27643,"ts":326462483309,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":12025,"id":"0xaf8a6f8ffebbc614"},
-{"pid":27369,"tid":27530,"ts":326462484805,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":40378,"id":"0xaf8a659ffd4cca54"},
-{"pid":27369,"tid":27530,"ts":326462484805,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":549,"tdur":549,"tts":40378},
-{"pid":27369,"tid":27530,"ts":326462485323,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":40897,"id":"0xaf8a6f8bfebbc614"},
-{"pid":27369,"tid":27644,"ts":326462485568,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":8759,"id":"0xaf8a6598fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461210640,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1789073,"id":"0xccc56902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461210732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461210},"tts":1789165,"id":"0xaf8a6ee8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461210762,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":672,"tdur":672,"tts":1789195},
-{"pid":27369,"tid":27407,"ts":326461210854,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4748,"window_size":15728640}},"tts":1789287,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461210884,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4748,"stream_id":15,"window_size":6291456}},"tts":1789317,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461210915,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1789348,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461210945,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1789378,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461210976,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4748,"index":1,"offset":102019,"truncate":true}},"tts":1789409,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461211006,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":4748}},"tts":1789439,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461211067,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4748,"index":1,"offset":102019,"truncate":true}},"tts":1789500,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461211128,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1789562,"id":"0xaf8a658ffd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461211189,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1789623,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461211220,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":4748}},"tts":1789684,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461211312,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1789745,"id":"0xba461302"},
-{"pid":27369,"tid":27407,"ts":326461211403,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1789836,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461212044,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1789958,"id":"0xaf8a6ee9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461212075,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1789989},
-{"pid":27369,"tid":27407,"ts":326461212105,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":4748}},"tts":1790019,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461212899,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":427,"tdur":427,"tts":1790111},
-{"pid":27369,"tid":27407,"ts":326461212960,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1790172,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461213051,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1790263,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461213143,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1790355,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461213173,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1790386,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461213204,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6290269}},"tts":1790447,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461213265,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1790477,"id":"0xaf8a6eeafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461213631,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1343,"tdur":580,"tts":1790630},
-{"pid":27369,"tid":27407,"ts":326461213784,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1790782,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461213845,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1790843,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461213967,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1790965,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461214882,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726266}},"tts":1791118,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461214943,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6289082}},"tts":1791179,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461215005,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":732,"tdur":733,"tts":1791240},
-{"pid":27369,"tid":27407,"ts":326461215157,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7248}},"tts":1791393,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461215401,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8084}},"tts":1791637,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461215493,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4523,"stream_id":15}},"tts":1791728,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461215523,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4523,"window_size":15721743}},"tts":1791759,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461215554,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4523,"stream_id":15,"window_size":6284559}},"tts":1791790,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461215615,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3552,"stream_id":15}},"tts":1791851,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461215645,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3552,"window_size":15718191}},"tts":1791881,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461215676,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3552,"stream_id":15,"window_size":6281007}},"tts":1791942,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461215737,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":122,"tts":1792003},
-{"pid":27369,"tid":27407,"ts":326461215798,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":214,"tdur":61,"tts":1792034},
-{"pid":27369,"tid":27407,"ts":326461215798,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":30,"tts":1792034},
-{"pid":27369,"tid":27407,"ts":326461215981,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1792064,"id":"0xccc56a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461216042,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":550,"tdur":366,"tts":1792156},
-{"pid":27369,"tid":27407,"ts":326461216134,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1792217,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461216195,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1792278,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461216286,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1792369,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461216317,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15717004}},"tts":1792400,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461216347,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6279820}},"tts":1792430,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461216592,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1159,"tdur":916,"tts":1792522},
-{"pid":27369,"tid":27407,"ts":326461216744,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1792675,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461217110,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1792797,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461217263,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1792949,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461217324,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1793010,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461217355,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15715817}},"tts":1793041,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461217416,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6278633}},"tts":1793102,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461217538,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1793224,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461217599,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1793285,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461217660,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15713443}},"tts":1793346,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461217690,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6276259}},"tts":1793377,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461217782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461214},"tts":1793468,"id":"0xaf8a6eeafebbc614"},{"pid":27369,"tid":27407,"ts":326461217782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1793468},
-{"pid":27369,"tid":27407,"ts":326461217812,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1793499,"id":"0xaf8a6eebfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461218453,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2503,"tdur":2258,"tts":1793682},
-{"pid":27369,"tid":27407,"ts":326461218453,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1793682},
-{"pid":27369,"tid":27407,"ts":326461218606,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1793834,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461218759,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1793987,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461219033,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1794262,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461219125,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1794353,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461219216,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15712256}},"tts":1794445,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461219277,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6275072}},"tts":1794506,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461219430,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1794689,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461219705,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1794933,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461219796,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1795025,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461219888,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15711069}},"tts":1795116,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461219979,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6273885}},"tts":1795208,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461219979,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1795208},
-{"pid":27369,"tid":27407,"ts":326461220498,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1795544,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461220651,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1795696,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461220712,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15708695}},"tts":1795788,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461220803,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6271511}},"tts":1795849,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461221017,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461218},"tts":1796001,"id":"0xaf8a6eebfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461221048,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":579,"tdur":152,"tts":1796032},
-{"pid":27369,"tid":27407,"ts":326461221566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1796123,"id":"0xaf8a6ee4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461221688,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2259,"tdur":1893,"tts":1796245},
-{"pid":27369,"tid":27407,"ts":326461222360,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1796551,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461222574,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1796795,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461222848,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1797070,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461222970,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1797161,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461223031,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15706321}},"tts":1797222,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461223123,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6269137}},"tts":1797314,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461223337,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1797527,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461223459,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":962,"stream_id":15}},"tts":1797680,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461223550,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-962,"window_size":15705359}},"tts":1797741,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461223611,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-962,"stream_id":15,"window_size":6268175}},"tts":1797802,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461223703,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1403,"stream_id":15}},"tts":1797894,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461223794,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1403,"window_size":15703956}},"tts":1797985,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461223855,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1403,"stream_id":15,"window_size":6266772}},"tts":1798046,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461224008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461222},"tts":1798199,"id":"0xaf8a6ee4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461224039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":122,"tdur":122,"tts":1798229},
-{"pid":27369,"tid":27407,"ts":326461224100,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1798290,"id":"0xaf8a6ee5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461224252,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1465,"tdur":1435,"tts":1798473},
-{"pid":27369,"tid":27407,"ts":326461224527,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1798718,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461224802,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1798992,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461224924,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1799114,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461225015,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":15}},"tts":1799206,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461225076,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15700395}},"tts":1799267,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461225168,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":15,"window_size":6263211}},"tts":1799359,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461225320,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1799511,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461225473,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1799664,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461225534,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15699208}},"tts":1799725,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461225595,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6262024}},"tts":1799816,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461225748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461225},"tts":1799938,"id":"0xaf8a6ee5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461225778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":122,"tdur":92,"tts":1799969},
-{"pid":27369,"tid":27407,"ts":326461225809,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1799999,"id":"0xaf8a6ee6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461226206,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1342,"tdur":1343,"tts":1800305},
-{"pid":27369,"tid":27407,"ts":326461226450,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1800549,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461226602,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1800701,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461226724,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1800824,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461226816,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1800915,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461226907,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15698021}},"tts":1801007,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461226969,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6260837}},"tts":1801098,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461227121,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1801251,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461227274,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1801373,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461227365,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15696834}},"tts":1801464,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461227457,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6259650}},"tts":1801556,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461227579,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":977,"tdur":977,"tts":1801678},
-{"pid":27369,"tid":27407,"ts":326461227823,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1801953,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461227823,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":122,"tts":1801953},
-{"pid":27369,"tid":27407,"ts":326461228159,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1802258,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461228311,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1802411,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461228403,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15694460}},"tts":1802502,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461228464,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6257276}},"tts":1802563,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461228586,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2167,"tdur":2167,"tts":1802685},
-{"pid":27369,"tid":27407,"ts":326461228708,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1802807,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461228861,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1802960,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461229105,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1803204,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461229196,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1803326,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461229288,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15693273}},"tts":1803387,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461229349,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6256089}},"tts":1803479,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461229532,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1803631,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461229776,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1803876,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461229868,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1803998,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461229960,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15692086}},"tts":1804059,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461230143,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6254902}},"tts":1804242,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461230326,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1804455,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461230478,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":15}},"tts":1804578,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461230570,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15689712}},"tts":1804669,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461230661,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":15,"window_size":6252528}},"tts":1804761,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461230784,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461226},"tts":1804913,"id":"0xaf8a6ee6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461230814,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":11140,"tdur":5616,"tts":1804944},
-{"pid":27369,"tid":27407,"ts":326461230967,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15690899}},"tts":1805066,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461231058,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6253715}},"tts":1805157,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461231150,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15692086}},"tts":1805249,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461231211,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6254902}},"tts":1805310,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461231333,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4523,"window_size":15696609}},"tts":1805463,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461231424,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4523,"stream_id":15,"window_size":6259425}},"tts":1805524,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461231547,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3552,"window_size":15700161}},"tts":1805646,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461231638,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3552,"stream_id":15,"window_size":6262977}},"tts":1805737,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461231730,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15701348}},"tts":1805829,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461231791,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6264164}},"tts":1805890,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461231943,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15702535}},"tts":1806043,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461232004,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6265351}},"tts":1806134,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461232096,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15704909}},"tts":1806195,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461232187,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6267725}},"tts":1806287,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461232249,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15706096}},"tts":1806378,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461232310,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6268912}},"tts":1806439,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461232462,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15707283}},"tts":1806561,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461232523,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6270099}},"tts":1806622,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461232615,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15709657}},"tts":1806714,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461232676,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6272473}},"tts":1806775,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461232828,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15712031}},"tts":1806928,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461232889,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6274847}},"tts":1807019,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461232981,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":962,"window_size":15712993}},"tts":1807080,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461233073,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":962,"stream_id":15,"window_size":6275809}},"tts":1807172,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461233195,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1403,"window_size":15714396}},"tts":1807294,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461233286,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1403,"stream_id":15,"window_size":6277212}},"tts":1807385,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461233347,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15717957}},"tts":1807477,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461233439,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3561,"stream_id":15,"window_size":6280773}},"tts":1807538,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461233591,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15719144}},"tts":1807691,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461233652,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6281960}},"tts":1807752,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461233744,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15720331}},"tts":1807843,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461233805,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6283147}},"tts":1807935,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461233897,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15721518}},"tts":1807996,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461233988,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6284334}},"tts":1808087,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461234080,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":962,"window_size":15722480}},"tts":1808179,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461234141,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":962,"stream_id":15,"window_size":6285296}},"tts":1808240,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461234202,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1808301,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461234263,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1808362,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461234324,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":106767,"truncate":true}},"tts":1808423,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461234660,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1808759,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461234751,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":106767,"truncate":true}},"tts":1808881,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461234751,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":30,"tts":1808881},
-{"pid":27369,"tid":27407,"ts":326461235270,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1809400,"id":"0xaf8a6588fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461236735,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1809491,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461236827,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1809613,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461237223,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1809797,"id":"0xba461402"},
-{"pid":27369,"tid":27407,"ts":326461241191,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1809949,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241283,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1412,"window_size":15723892}},"tts":1810041,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461241313,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1412,"stream_id":15,"window_size":6286708}},"tts":1810102,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241374,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725079}},"tts":1810132,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461241405,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6287895}},"tts":1810163,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241435,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15726266}},"tts":1810193,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461241466,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6289082}},"tts":1810224,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241466,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":30,"tts":1810224},
-{"pid":27369,"tid":27407,"ts":326461241740,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15728640}},"tts":1810346,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461241771,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":15,"window_size":6291456}},"tts":1810376,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241862,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1810468,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241893,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1810499,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461241923,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":6160,"index":1,"offset":139535,"truncate":true}},"tts":1810529,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461241985,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1810590,"id":"0xaf8a6ee7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461241985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":793,"tdur":275,"tts":1810590},
-{"pid":27369,"tid":27407,"ts":326461242046,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1810651,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461242076,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":6160,"index":1,"offset":139535,"truncate":true}},"tts":1810682,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461242198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1810804,"id":"0xaf8a6589fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461242809,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2624,"tdur":2625,"tts":1810926},
-{"pid":27369,"tid":27407,"ts":326461243022,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17408}},"tts":1811170,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461243327,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1811475,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461243388,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":737,"stream_id":15}},"tts":1811536,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461243450,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-737,"window_size":15727903}},"tts":1811567,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461243480,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-737,"stream_id":15,"window_size":6290719}},"tts":1811597,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461243541,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":7446,"stream_id":15}},"tts":1811658,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461243602,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-7446,"window_size":15720457}},"tts":1811719,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461243663,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-7446,"stream_id":15,"window_size":6283273}},"tts":1811780,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461243846,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1811963,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461243907,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":15}},"tts":1812025,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461243938,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15712265}},"tts":1812055,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461243968,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":15,"window_size":6275081}},"tts":1812116,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461244029,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":746}},"tts":1812147,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461244243,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":14000}},"tts":1812391,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461244304,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":746,"stream_id":15}},"tts":1812421,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461244335,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-746,"window_size":15711519}},"tts":1812452,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461244365,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-746,"stream_id":15,"window_size":6274335}},"tts":1812513,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461244579,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1812696,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461244640,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8183,"stream_id":15}},"tts":1812757,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461244670,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8183,"window_size":15703336}},"tts":1812788,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461244701,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8183,"stream_id":15,"window_size":6266152}},"tts":1812818,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461244853,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4865}},"tts":1812971,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461244914,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1813032,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461244976,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4865,"stream_id":15}},"tts":1813093,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461245006,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4865,"window_size":15698471}},"tts":1813123,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461245098,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4865,"stream_id":15,"window_size":6261287}},"tts":1813215,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461245189,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1813306,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461245311,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1813428,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461245342,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15697284}},"tts":1813459,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461245372,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6260100}},"tts":1813489,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461245464,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1813581,"id":"0xaf8a6ee0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461245494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":122,"tdur":122,"tts":1813612},
-{"pid":27369,"tid":27407,"ts":326461245525,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":6160}},"tts":1813642,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461245586,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1813703,"id":"0xaf8a6ee1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461245647,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1813764},
-{"pid":27369,"tid":27407,"ts":326461245708,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1813825},
-{"pid":27369,"tid":27407,"ts":326461245708,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1813825,"id":"0xccc56b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461245769,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1404,"tdur":1404,"tts":1813886},
-{"pid":27369,"tid":27407,"ts":326461245983,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1814100,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461246135,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3336}},"tts":1814253,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461246257,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1814375,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461246288,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":15}},"tts":1814405,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461246318,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15695135}},"tts":1814466,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461246379,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":15,"window_size":6257951}},"tts":1814497,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461246410,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":15}},"tts":1814527,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461246471,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15693957}},"tts":1814588,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461246502,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":15,"window_size":6256773}},"tts":1814619,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461246563,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1814680,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461246715,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1814832,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461246746,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1814863,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461246807,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15692770}},"tts":1814924,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461246837,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6255586}},"tts":1814954,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461246959,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1815077,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461247051,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1815168,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461247081,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15691583}},"tts":1815199,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461247112,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6254399}},"tts":1815229,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461247204,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":366,"tdur":366,"tts":1815321},
-{"pid":27369,"tid":27407,"ts":326461247265,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1815382,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461247356,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1815473,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461247448,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1815565,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461247478,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15690396}},"tts":1815595,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461247509,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6253212}},"tts":1815656,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461247600,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1191,"tdur":1191,"tts":1815717},
-{"pid":27369,"tid":27407,"ts":326461247753,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1815870,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461247844,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1815962,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461247936,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1816084,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461247997,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1816114,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461248058,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15689209}},"tts":1816175,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461248119,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6252025}},"tts":1816236,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461248180,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1816297,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461248302,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1816419,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461248363,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1816480,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461248394,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15688022}},"tts":1816511,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461248455,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6250838}},"tts":1816603,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461248577,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1816694,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461248668,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1816786,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461248699,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15686835}},"tts":1816816,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461248730,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6249651}},"tts":1816847,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461248791,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":396,"tdur":367,"tts":1816938},
-{"pid":27369,"tid":27407,"ts":326461248882,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1816999,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461248943,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1817060,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461249065,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1817182,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461249096,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15685648}},"tts":1817213,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461249126,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6248464}},"tts":1817274,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461249218,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1817335,"id":"0xaf8a6ee1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461249218,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":4242,"tdur":2167,"tts":1817335},
-{"pid":27369,"tid":27407,"ts":326461249248,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1817366,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461249279,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":6160}},"tts":1817427,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461249401,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1817518,"id":"0xba461502"},
-{"pid":27369,"tid":27407,"ts":326461249859,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1817640,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461249950,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":737,"window_size":15686385}},"tts":1817732,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461249981,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":737,"stream_id":15,"window_size":6249201}},"tts":1817762,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461250896,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":7446,"window_size":15693831}},"tts":1817945,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461250988,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":7446,"stream_id":15,"window_size":6256647}},"tts":1818007,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251110,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15702023}},"tts":1818129,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461251141,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":15,"window_size":6264839}},"tts":1818159,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251232,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":746,"window_size":15702769}},"tts":1818281,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461251293,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":746,"stream_id":15,"window_size":6265585}},"tts":1818312,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251385,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8183,"window_size":15710952}},"tts":1818403,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461251446,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8183,"stream_id":15,"window_size":6273768}},"tts":1818464,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251507,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4865,"window_size":15715817}},"tts":1818525,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461251537,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4865,"stream_id":15,"window_size":6278633}},"tts":1818556,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251598,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15717004}},"tts":1818617,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461251629,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":15,"window_size":6279820}},"tts":1818647,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251659,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1412,"window_size":15718416}},"tts":1818678,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461251690,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1412,"stream_id":15,"window_size":6281232}},"tts":1818708,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251721,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1818739,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251751,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1818770,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461251782,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":145695,"truncate":true}},"tts":1818800,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461251965,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1819014,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461252026,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":145695,"truncate":true}},"tts":1819044,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461252026,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1819044},
-{"pid":27369,"tid":27407,"ts":326461252300,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1819319,"id":"0xaf8a658afd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461253308,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1819380,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461253338,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1819410,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461253430,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1819502,"id":"0xaf8a6ee3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461253460,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":10347,"tdur":3967,"tts":1819533},
-{"pid":27369,"tid":27407,"ts":326461257245,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":13288}},"tts":1819777,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461257580,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1820051,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461257641,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":6897,"stream_id":15}},"tts":1820082,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461257672,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-6897,"window_size":15711519}},"tts":1820143,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461257733,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-6897,"stream_id":15,"window_size":6274335}},"tts":1820173,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461257764,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1286,"stream_id":15}},"tts":1820204,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461257794,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1286,"window_size":15710233}},"tts":1820235,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461257825,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1286,"stream_id":15,"window_size":6273049}},"tts":1820296,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461258008,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4865}},"tts":1820448,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461260571,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8456}},"tts":1820784,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461260632,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4865,"stream_id":15}},"tts":1820875,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461260724,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4865,"window_size":15705368}},"tts":1820936,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461260816,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4865,"stream_id":15,"window_size":6268184}},"tts":1821028,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461261518,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1821608,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461261609,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":15}},"tts":1821699,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461261670,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15697176}},"tts":1821761,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461261670,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":30,"tts":1821761},
-{"pid":27369,"tid":27407,"ts":326461261914,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":15,"window_size":6259992}},"tts":1821883,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461262006,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":117}},"tts":1822005,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461262555,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6040}},"tts":1822310,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461262647,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":117,"stream_id":15}},"tts":1822371,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461262708,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-117,"window_size":15697059}},"tts":1822432,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461262799,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-117,"stream_id":15,"window_size":6259875}},"tts":1822524,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461263166,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6672}},"tts":1822890,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461263318,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1924,"stream_id":15}},"tts":1823042,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461263379,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1924,"window_size":15695135}},"tts":1823103,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461263471,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1924,"stream_id":15,"window_size":6257951}},"tts":1823195,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461263532,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4739,"stream_id":15}},"tts":1823287,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461263623,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4739,"window_size":15690396}},"tts":1823348,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461263685,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4739,"stream_id":15,"window_size":6253212}},"tts":1823439,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461263837,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1823561},
-{"pid":27369,"tid":27407,"ts":326461263898,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":92,"tdur":92,"tts":1823622},
-{"pid":27369,"tid":27407,"ts":326461263929,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1823653,"id":"0xccc56c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461264051,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1823775,"id":"0xaf8a6ee2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461264081,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":153,"tdur":153,"tts":1823805},
-{"pid":27369,"tid":27407,"ts":326461264142,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1823897,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461264264,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1618,"tdur":1617,"tts":1823989},
-{"pid":27369,"tid":27407,"ts":326461264356,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1824111,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461264509,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1824263,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461264753,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":889}},"tts":1824507,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461264844,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":15}},"tts":1824568,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461264905,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15689209}},"tts":1824660,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461264997,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":15,"window_size":6252025}},"tts":1824721,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461265149,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1163}},"tts":1824874,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461265272,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1146,"stream_id":15}},"tts":1825026,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461265363,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1146,"window_size":15688063}},"tts":1825087,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461265424,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1146,"stream_id":15,"window_size":6250879}},"tts":1825148,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461265485,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":15}},"tts":1825209,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461265668,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":18}},"tts":1825392,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461265729,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1825453,"id":"0xaf8a6efcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461265790,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":18}},"tts":1825515,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461265913,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1825637,"id":"0xaf8a6ee3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461265943,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":2838,"tdur":2839,"tts":1825667},
-{"pid":27369,"tid":27407,"ts":326461266004,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1825728,"id":"0xba461602"},
-{"pid":27369,"tid":27407,"ts":326461266157,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1825881,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461266279,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":737,"window_size":15688800}},"tts":1826003,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266370,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15689978}},"tts":1826094,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266431,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15691165}},"tts":1826155,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266553,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15692352}},"tts":1826278,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266614,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15693539}},"tts":1826339,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266706,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15694726}},"tts":1826461,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266706,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1826461},
-{"pid":27369,"tid":27407,"ts":326461266828,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15695913}},"tts":1826552,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461266950,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15697100}},"tts":1826674,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267011,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15698287}},"tts":1826766,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267194,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":6897,"window_size":15705184}},"tts":1826918,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267255,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1286,"window_size":15706470}},"tts":1826980,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267377,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4865,"window_size":15711335}},"tts":1827132,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267561,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15719527}},"tts":1827285,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267622,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":117,"window_size":15719644}},"tts":1827376,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267713,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15720831}},"tts":1827437,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461267774,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1827498,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461267805,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1827529,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461267866,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":178463,"truncate":true}},"tts":1827590,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461267957,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1827681,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461268049,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":178463,"truncate":true}},"tts":1827773,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461268476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1828200,"id":"0xaf8a658bfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461268568,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1828322,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461268659,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1828383,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461268751,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1828475,"id":"0xaf8a6efdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461268842,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1828567},
-{"pid":27369,"tid":27407,"ts":326461268904,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":91,"tdur":91,"tts":1828628},
-{"pid":27369,"tid":27407,"ts":326461268934,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1828658,"id":"0xccc56d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461269087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1828811,"id":"0xaf8a6efcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461269087,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":549,"tdur":519,"tts":1828841},
-{"pid":27369,"tid":27407,"ts":326461269300,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1829024,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461269575,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1829299,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461269667,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1829391,"id":"0xaf8a6efdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461269697,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":1526,"tdur":1129,"tts":1829421},
-{"pid":27369,"tid":27407,"ts":326461269758,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1829482,"id":"0xba461702"},
-{"pid":27369,"tid":27407,"ts":326461269880,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1829635,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461270094,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":737,"window_size":15721568}},"tts":1829818,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461270674,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4739,"window_size":15726307}},"tts":1830032,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461270796,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15727494}},"tts":1830123,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461270887,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1146,"window_size":15728640}},"tts":1830245,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461270887,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1830245},
-{"pid":27369,"tid":27407,"ts":326461271009,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1830337,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461271070,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1830398,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461271162,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":7809,"index":1,"offset":211231,"truncate":true}},"tts":1830489,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461271284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1830611,"id":"0xaf8a6efefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461271315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":1404,"tdur":488,"tts":1830642},
-{"pid":27369,"tid":27407,"ts":326461271406,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1830734,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461271589,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":7809,"index":1,"offset":211231,"truncate":true}},"tts":1830856,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461271772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1831039,"id":"0xaf8a6584fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461272749,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1831191,"id":"0xaf8a6efffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461272780,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":183,"tdur":183,"tts":1831222},
-{"pid":27369,"tid":27407,"ts":326461272841,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":7809}},"tts":1831283,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461272902,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1831344,"id":"0xaf8a6ef8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461272993,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1831435,"id":"0xaf8a6ef8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461273024,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":2625,"tdur":2228,"tts":1831466},
-{"pid":27369,"tid":27407,"ts":326461273085,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1831527,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461273146,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":7809}},"tts":1831619,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461273268,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1831741,"id":"0xba461802"},
-{"pid":27369,"tid":27407,"ts":326461273451,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1831893,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461273512,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1831954,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461273573,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1832015,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461273604,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1832046,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461273695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1832137,"id":"0xaf8a6ef9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461273787,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1832260,"id":"0xaf8a6efafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461273909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1832351,"id":"0xaf8a6090feb47934"},
-{"pid":27369,"tid":27407,"ts":326461274275,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1832748,"id":"0xba461902"},
-{"pid":27369,"tid":27407,"ts":326461274855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1832931,"id":"0xaf8a6091feb47934"},
-{"pid":27369,"tid":27407,"ts":326461275404,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1833480,"id":"0x1de"},
-{"pid":27369,"tid":27407,"ts":326461275679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1833786,"id":"0xaf8a6ef9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461275740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":1038,"tdur":336,"tts":1833816},
-{"pid":27369,"tid":27407,"ts":326461275801,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1833877,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461275893,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1833969,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461275954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1834060,"id":"0xaf8a6585fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461276808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1834182,"id":"0xaf8a6efafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461276839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":61,"tdur":30,"tts":1834213},
-{"pid":27369,"tid":27407,"ts":326461276930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1834304,"id":"0xaf8a6efbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461276961,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":214,"tdur":183,"tts":1834335},
-{"pid":27369,"tid":27407,"ts":326461277022,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1834396,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461277052,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1834457,"id":"0x1e0"},
-{"pid":27369,"tid":27407,"ts":326461277052,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1834457},
-{"pid":27369,"tid":27407,"ts":326461277754,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":152,"tts":1834671},
-{"pid":27369,"tid":27407,"ts":326461277846,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":61,"tts":1834732},
-{"pid":27369,"tid":27407,"ts":326461277876,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1834762,"id":"0xccc56e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461278640,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1834945},
-{"pid":27369,"tid":27407,"ts":326461278701,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":91,"tdur":61,"tts":1835006},
-{"pid":27369,"tid":27407,"ts":326461278731,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1835037,"id":"0xccc56f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461279738,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1835251},
-{"pid":27369,"tid":27407,"ts":326461279799,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":92,"tdur":61,"tts":1835342},
-{"pid":27369,"tid":27407,"ts":326461279830,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1835342,"id":"0xccc57002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461281356,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":427,"tdur":427,"tts":1835617},
-{"pid":27369,"tid":27407,"ts":326461281417,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":336,"tdur":306,"tts":1835708},
-{"pid":27369,"tid":27407,"ts":326461281478,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1835739,"id":"0xccc57102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461281539,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1835800,"id":"0xaf8a6092feb47934"},
-{"pid":27369,"tid":27407,"ts":326461288131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1836197,"id":"0xaf8a6ef4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461288162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":336,"tdur":91,"tts":1836197},
-{"pid":27369,"tid":27407,"ts":326461288192,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1836227,"id":"0xba461a02"},
-{"pid":27369,"tid":27407,"ts":326461300278,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1836410},
-{"pid":27369,"tid":27407,"ts":326461300309,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":28,"line":211},"dur":122,"tdur":122,"tts":1836441},
-{"pid":27369,"tid":27407,"ts":326461300339,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1836471,"id":"0xccc57226","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461300370,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1836502,"id":"0xaf8a645dfebb03fc"},
-{"pid":27369,"tid":27407,"ts":326461300980,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1836654,"id":"0xaf8a6ef5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461301011,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/public/browser/browser_message_filter.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1836685},
-{"pid":27369,"tid":27407,"ts":326461301011,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1836685,"id":"0xba461b0a"},
-{"pid":27369,"tid":27407,"ts":326461305101,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1836807,"id":"0xaf8a6ef6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461305131,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1836838},
-{"pid":27369,"tid":27407,"ts":326461305131,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1836838,"id":"0xba461c02"},
-{"pid":27369,"tid":27407,"ts":326461307420,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":305,"tts":1836990},
-{"pid":27369,"tid":27407,"ts":326461307481,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":214,"tdur":214,"tts":1837051},
-{"pid":27369,"tid":27407,"ts":326461307512,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1837082,"id":"0xccc57302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461307542,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1837143,"id":"0xaf8a6093feb47934"},
-{"pid":27369,"tid":27407,"ts":326461315905,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":4029,"tdur":4029,"tts":1837387},
-{"pid":27369,"tid":27407,"ts":326461315966,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":3937,"tdur":3937,"tts":1837448},
-{"pid":27369,"tid":27407,"ts":326461315996,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1837479,"id":"0xccc57402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461316332,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1837814,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461316820,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1838303,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461316973,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1838486,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461317095,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":131328,"method":"GET","priority":"IDLE","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac"}},"tts":1838577,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461317095,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1838577},
-{"pid":27369,"tid":27407,"ts":326461317706,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1839188,"id":"0xaf8a60acfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461317950,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1839432,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318011,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1839493,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318102,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1839584,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318133,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1839615,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318194,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1839676,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318285,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x4fb68eaac8513495"}},"tts":1839768,"id":"0x220"},
-{"pid":27369,"tid":27407,"ts":326461318316,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac"}},"tts":1839798,"id":"0x220"},
-{"pid":27369,"tid":27407,"ts":326461318316,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1839798,"id":"0x220"},
-{"pid":27369,"tid":27407,"ts":326461318347,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1839859,"id":"0x220"},
-{"pid":27369,"tid":27407,"ts":326461318408,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1839890,"id":"0x220"},
-{"pid":27369,"tid":27407,"ts":326461318499,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1839981,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318530,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1840012,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318652,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x4fb68eaac8513495"}},"tts":1840134,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461318713,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac"}},"tts":1840195,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461318743,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1840225,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461318804,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1840286,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461318835,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1840317,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461318865,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1840347,"id":"0xaf8a6586fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461318926,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1840408,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461318957,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1840439,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461319018,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1840500,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461319079,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1840592,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461319140,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1840622,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461319201,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1840683,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461319415,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"IDLE","url":"https://maps.googleapis.com/"}},"tts":1840897,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461319445,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1840927,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461319537,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1841019,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461319567,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1841049,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461319689,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1841171,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461319781,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1841263,"id":"0xaf8a6ef7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461319934,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1841416,"id":"0xaf8a6ef7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461319964,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":5311,"tdur":855,"tts":1841446},
-{"pid":27369,"tid":27407,"ts":326461319995,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":546,"type":10}}},"tts":1841477,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461319995,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":793,"tdur":91,"tts":1841477},
-{"pid":27369,"tid":27407,"ts":326461320819,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":543,"type":1}}},"tts":1841629,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461320910,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1841690,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461320910,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":3785,"tdur":31,"tts":1841690},
-{"pid":27369,"tid":27407,"ts":326461324725,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1841782,"id":"0x222"},
-{"pid":27369,"tid":27407,"ts":326461324908,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1841965,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461325183,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1842209,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461325244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1842270,"id":"0xaf8a6ef2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461325336,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1842362,"id":"0xaf8a6ef0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461325366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":92,"tdur":92,"tts":1842392},
-{"pid":27369,"tid":27407,"ts":326461325427,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1842453,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461325488,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1842514,"id":"0xaf8a6ef1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461325519,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":1434,"tdur":122,"tts":1842545},
-{"pid":27369,"tid":27407,"ts":326461325549,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1842575,"id":"0xba461d02"},
-{"pid":27369,"tid":27407,"ts":326461326984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1842697,"id":"0xaf8a6ef2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461327014,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":794,"tdur":671,"tts":1842728},
-{"pid":27369,"tid":27407,"ts":326461327289,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/gen_204?target=api&ev=api_maprft&cad=host:www.google.com,v:21,r:1,client:google-maps-lite,t:20518,smni:1,src:apiv3,token:1riog8e75d,ts:87zeac",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":21,"unidirectional":false}},"tts":1843003,"id":"0x139"},{"pid":27369,"tid":27407,"ts":326461327381,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":137}},"tts":1843094,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461327686,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":158}},"tts":1843277,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461327747,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1843338,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461327777,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1843369,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461339772,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1843491,"id":"0xaf8a6ef3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461339772,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":976,"tdur":92,"tts":1843491},
-{"pid":27369,"tid":27407,"ts":326461339802,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1843522,"id":"0xba461e02"},
-{"pid":27369,"tid":27407,"ts":326461347493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1843674,"id":"0xaf8a6e8cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461347493,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/gpu/gpu_process_host_ui_shim.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1843674},
-{"pid":27369,"tid":27407,"ts":326461347524,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1843705,"id":"0xba461f02"},
-{"pid":27369,"tid":27407,"ts":326461347585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1843766,"id":"0xaf8a6e8dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461347585,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1843766},
-{"pid":27369,"tid":27407,"ts":326461347616,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1843796,"id":"0xba462002"},
-{"pid":27369,"tid":27407,"ts":326461355978,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1843918,"id":"0xaf8a6e8efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461355978,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":61,"tts":1843918},
-{"pid":27369,"tid":27407,"ts":326461355978,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1843949,"id":"0xba462102"},
-{"pid":27369,"tid":27407,"ts":326461360617,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2869,"tdur":2869,"tts":1844040},
-{"pid":27369,"tid":27407,"ts":326461360709,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":41}},"tts":1844162,"id":"0x136"},
-{"pid":27369,"tid":27369,"ts":326461337727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2389500,"id":"0xaf8a6ef3febbc614"},
-{"pid":27369,"tid":27369,"ts":326461337971,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2389745},
-{"pid":27369,"tid":27369,"ts":326461337971,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1435,"tdur":0,"tts":2389745},
-{"pid":27369,"tid":27369,"ts":326461339497,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2389867},
-{"pid":27369,"tid":27369,"ts":326461346944,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2390660},
-{"pid":27369,"tid":27369,"ts":326461347036,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_DOWN"},"dur":213,"tdur":214,"tts":2390721},
-{"pid":27369,"tid":27369,"ts":326461347097,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2390782,"id":"0xaf8a60adfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461347188,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2390874,"id":"0xaf8a60aefeb47934"},
-{"pid":27369,"tid":27369,"ts":326461347280,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2390965},
-{"pid":27369,"tid":27369,"ts":326461345000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{},"tts":2390996,"id":"0x300000084"},
-{"pid":27369,"tid":27369,"ts":326461347310,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902020},"tts":2390996,"id":"0x300000084"},
-{"pid":27369,"tid":27369,"ts":326461347341,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2391026},
-{"pid":27369,"tid":27369,"ts":326461347341,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2391026,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461347371,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2391057},
-{"pid":27369,"tid":27369,"ts":326461347371,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchStart"},"dur":153,"tdur":122,"tts":2391088},
-{"pid":27369,"tid":27369,"ts":326461347402,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2391088,"id":"0xaf8a6e8cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461347463,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2391149},
-{"pid":27369,"tid":27369,"ts":326461347493,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2391179,"id":"0xaf8a6e8dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461347524,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2391210,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461347524,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2391210,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461347555,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2391240},
-{"pid":27369,"tid":27369,"ts":326461348012,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2391515},
-{"pid":27369,"tid":27369,"ts":326461348134,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2391637},
-{"pid":27369,"tid":27369,"ts":326461348226,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2391728},
-{"pid":27369,"tid":27369,"ts":326461348287,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2391790},
-{"pid":27369,"tid":27369,"ts":326461355001,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2392125},
-{"pid":27369,"tid":27369,"ts":326461355001,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":62,"tdur":0,"tts":2392125},
-{"pid":27369,"tid":27369,"ts":326461355124,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2392186},
-{"pid":27369,"tid":27369,"ts":326461355154,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":1526,"tdur":274,"tts":2392217},
-{"pid":27369,"tid":27369,"ts":326461355185,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461353388},"dur":1373,"tdur":153,"tts":2392247},
-{"pid":27369,"tid":27369,"ts":326461355215,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":1343,"tdur":122,"tts":2392278},
-{"pid":27369,"tid":27369,"ts":326461355734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2392308,"id":"0xaf8a6e8efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461356680,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2392522},
-{"pid":27369,"tid":27369,"ts":326461356772,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2392614},
-{"pid":27369,"tid":27369,"ts":326461362235,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2392888},
-{"pid":27369,"tid":27369,"ts":326461362265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2392919,"id":"0xaf8a60affeb47934"},
-{"pid":27369,"tid":27369,"ts":326461362265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":153,"tdur":152,"tts":2392919},
-{"pid":27369,"tid":27369,"ts":326461362479,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2393132},
-{"pid":27369,"tid":27369,"ts":326461363211,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2393285},
-{"pid":27369,"tid":27369,"ts":326461363242,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2393316,"id":"0xaf8a60a8feb47934"},
-{"pid":27369,"tid":27369,"ts":326461363242,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":92,"tdur":91,"tts":2393316},
-{"pid":27369,"tid":27369,"ts":326461363272,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":0,"tdur":0,"tts":2393346},
-{"pid":27369,"tid":27369,"ts":326461363272,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2393346},
-{"pid":27369,"tid":27369,"ts":326461363303,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":0,"tdur":0,"tts":2393377},
-{"pid":27369,"tid":27369,"ts":326461363303,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2393377},
-{"pid":27369,"tid":27369,"ts":326461363395,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2393468},
-{"pid":27369,"tid":27369,"ts":326461365104,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2393651},
-{"pid":27369,"tid":27369,"ts":326461365165,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2393712,"id":"0xaf8a60a9feb47934"},
-{"pid":27369,"tid":27369,"ts":326461365195,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":274,"tts":2393743},
-{"pid":27369,"tid":27369,"ts":326461365195,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":274,"tts":2393743},
-{"pid":27369,"tid":27369,"ts":326461365256,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2393804,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461365256,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2393804,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461365287,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchStart","ack":"CONSUMED"},"dur":152,"tdur":153,"tts":2393834},
-{"pid":27369,"tid":27369,"ts":326461365287,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":152,"tdur":153,"tts":2393834},
-{"pid":27369,"tid":27369,"ts":326461365378,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461365287.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902020.0,"time":326461347310.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461345000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461365287.0},"coordinates":[{"x":266.0,"y":722.0}],"trace_id":12884902020.0}},"tts":2393956,"id":"0x300000084"},
-{"pid":27369,"tid":27369,"ts":326461365409,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":2393956,"id":"0x300000084","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326461365439,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2393987,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461365592,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2394140},
-{"pid":27369,"tid":27369,"ts":326461366782,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2394628},
-{"pid":27369,"tid":27369,"ts":326461366843,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":31,"tdur":0,"tts":2394719},
-{"pid":27369,"tid":27369,"ts":326461366904,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":245,"tdur":244,"tts":2394750},
-{"pid":27369,"tid":27369,"ts":326461355000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2394780,"id":"0x300000085"},
-{"pid":27369,"tid":27369,"ts":326461366935,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902021},"tts":2394780,"id":"0x300000085"},
-{"pid":27369,"tid":27369,"ts":326461366965,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":184,"tdur":183,"tts":2394811},
-{"pid":27369,"tid":27407,"ts":326461360770,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":20}},"tts":1844193,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461360922,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":30}},"tts":1844346,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461361136,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:30 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":21}},"tts":1844559,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461361319,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 204 OK","status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:30 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1844742,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361380,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1844803,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361441,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1844864,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361533,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3552,"index":0,"offset":0,"truncate":true}},"tts":1844956,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361594,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1845017,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361594,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1845017,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361624,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1845048,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361655,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1845078,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361655,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1845109,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361685,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1845109,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361716,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1845139,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361716,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1845139,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361746,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1845170,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361777,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1845200,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461361777,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1845200,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361808,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1845231,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361838,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1845261,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361899,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1845322,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461361930,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1845353,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461362021,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1845444,"id":"0xaf8a60affeb47934"},
-{"pid":27369,"tid":27407,"ts":326461362204,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1845658,"id":"0xba462202"},
-{"pid":27369,"tid":27407,"ts":326461362509,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1845933,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461362540,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1845963,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461362632,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9}},"tts":1846055,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461362662,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1846085,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461362693,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":21}},"tts":1846146,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461362723,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1846177,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461362754,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1846177,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461362784,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1846207,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461362815,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1846238,"id":"0xaf8a6e8ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461362845,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1846268,"id":"0xaf8a6e88febbc614"},
-{"pid":27369,"tid":27407,"ts":326461362937,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1846360,"id":"0xba462302"},
-{"pid":27369,"tid":27407,"ts":326461363028,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1846451,"id":"0xaf8a60a8feb47934"},
-{"pid":27369,"tid":27407,"ts":326461363211,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1846635,"id":"0x21f"},
-{"pid":27369,"tid":27407,"ts":326461363334,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1846757,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461363395,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":20}},"tts":1846818,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461363425,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1846848,"id":"0xaf8a6e89febbc614"},
-{"pid":27369,"tid":27407,"ts":326461363456,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":20}},"tts":1846879,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326461363486,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1846909,"id":"0xaf8a6e8ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461363486,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":91,"tts":1846940},
-{"pid":27369,"tid":27407,"ts":326461363517,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1846940,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461363547,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1846970,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461363578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1847001,"id":"0xaf8a6587fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326461363639,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1847062,"id":"0xaf8a6e88febbc614"},
-{"pid":27369,"tid":27407,"ts":326461363639,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":30,"tts":1847062},
-{"pid":27369,"tid":27407,"ts":326461363669,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1847092,"id":"0xaf8a6e89febbc614"},
-{"pid":27369,"tid":27407,"ts":326461363669,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":214,"tdur":214,"tts":1847092},
-{"pid":27369,"tid":27407,"ts":326461363730,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1847153,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461363852,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1847276,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326461364036,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1847428,"id":"0xaf8a6e8afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461364066,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1847428},
-{"pid":27369,"tid":27407,"ts":326461364066,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1847428,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461364097,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1847459,"id":"0x221"},
-{"pid":27369,"tid":27407,"ts":326461364799,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1847550},
-{"pid":27369,"tid":27407,"ts":326461364829,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":1847581},
-{"pid":27369,"tid":27407,"ts":326461364860,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1847611,"id":"0xccc57602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461364860,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1847611,"id":"0xaf8a60a9feb47934"},
-{"pid":27369,"tid":27407,"ts":326461367149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1847855,"id":"0xaf8a6e8bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461367179,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":580,"tdur":61,"tts":1847886},
-{"pid":27369,"tid":27407,"ts":326461367179,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1847886,"id":"0xba462402"},
-{"pid":27369,"tid":27407,"ts":326461372520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1848008,"id":"0xaf8a6e84febbc614"},
-{"pid":27369,"tid":27369,"ts":326461366965,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2394811,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461366996,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":152,"tts":2394842},
-{"pid":27369,"tid":27369,"ts":326461367026,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":123,"tdur":122,"tts":2394872},
-{"pid":27369,"tid":27369,"ts":326461367026,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2394872},
-{"pid":27369,"tid":27369,"ts":326461367057,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2394903,"id":"0xaf8a6e8bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461367118,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2394964,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461367118,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2394964,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461367179,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2395025},
-{"pid":27369,"tid":27369,"ts":326461367606,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2395482},
-{"pid":27369,"tid":27369,"ts":326461367667,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_POINTER_DOWN"},"dur":31,"tdur":31,"tts":2395513},
-{"pid":27369,"tid":27369,"ts":326461367728,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":62,"tdur":61,"tts":2395574},
-{"pid":27369,"tid":27369,"ts":326461365000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{},"tts":2395605,"id":"0x300000086"},
-{"pid":27369,"tid":27369,"ts":326461367759,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902022},"tts":2395605,"id":"0x300000086"},
-{"pid":27369,"tid":27369,"ts":326461367759,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":0,"tts":2395635},
-{"pid":27369,"tid":27369,"ts":326461367790,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2395635,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461367820,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2395666},
-{"pid":27369,"tid":27369,"ts":326461371971,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2396062},
-{"pid":27369,"tid":27369,"ts":326461372062,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2396154},
-{"pid":27369,"tid":27369,"ts":326461372123,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":2396215},
-{"pid":27369,"tid":27369,"ts":326461372123,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461370070},"dur":122,"tdur":122,"tts":2396215},
-{"pid":27369,"tid":27369,"ts":326461372154,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2396245},
-{"pid":27369,"tid":27369,"ts":326461372184,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2396276,"id":"0xaf8a6e84febbc614"},
-{"pid":27369,"tid":27369,"ts":326461372398,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2396490},
-{"pid":27369,"tid":27369,"ts":326461372490,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2396581},
-{"pid":27369,"tid":27369,"ts":326461374290,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2396734},
-{"pid":27369,"tid":27369,"ts":326461374321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2396764,"id":"0xaf8a60aafeb47934"},
-{"pid":27369,"tid":27369,"ts":326461374321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":428,"tts":2396764},
-{"pid":27369,"tid":27369,"ts":326461374321,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":397,"tdur":397,"tts":2396764},
-{"pid":27369,"tid":27369,"ts":326461374382,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2396825,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461374412,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2396856,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461374412,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":275,"tdur":275,"tts":2396856},
-{"pid":27369,"tid":27369,"ts":326461374412,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":275,"tdur":244,"tts":2396856},
-{"pid":27369,"tid":27369,"ts":326461374443,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2396886,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461374473,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":184,"tdur":183,"tts":2396917},
-{"pid":27369,"tid":27369,"ts":326461374473,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchStart"},"dur":184,"tdur":153,"tts":2396947},
-{"pid":27369,"tid":27369,"ts":326461374504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2396978,"id":"0xaf8a6e85febbc614"},
-{"pid":27369,"tid":27369,"ts":326461374565,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":2397008},
-{"pid":27369,"tid":27369,"ts":326461374596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2397039,"id":"0xaf8a6e86febbc614"},
-{"pid":27369,"tid":27369,"ts":326461374626,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2397070,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461374626,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2397100,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461374870,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2397314},
-{"pid":27369,"tid":27369,"ts":326461382287,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2397619},
-{"pid":27369,"tid":27369,"ts":326461382317,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2397649,"id":"0xaf8a60abfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461382317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":733,"tdur":733,"tts":2397649},
-{"pid":27369,"tid":27369,"ts":326461382317,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":702,"tdur":702,"tts":2397649},
-{"pid":27369,"tid":27369,"ts":326461382378,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":641,"tdur":641,"tts":2397710},
-{"pid":27369,"tid":27369,"ts":326461382836,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2398168},
-{"pid":27369,"tid":27369,"ts":326461382867,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2398199},
-{"pid":27369,"tid":27369,"ts":326461382867,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2398199,"id":"0xaf8a60a4feb47934"},
-{"pid":27369,"tid":27369,"ts":326461382958,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2398290},
-{"pid":27369,"tid":27369,"ts":326461382989,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2398321},
-{"pid":27369,"tid":27369,"ts":326461383080,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2398443},
-{"pid":27369,"tid":27369,"ts":326461383172,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2398504},
-{"pid":27369,"tid":27369,"ts":326461383202,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2398535,"id":"0xaf8a60a4feb47934"},
-{"pid":27369,"tid":27369,"ts":326461383202,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1862,"tdur":1831,"tts":2398565},
-{"pid":27369,"tid":27369,"ts":326461383233,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2398565},
-{"pid":27369,"tid":27369,"ts":326461383233,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1801,"tdur":1801,"tts":2398565},
-{"pid":27369,"tid":27369,"ts":326461383263,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":122},"dur":92,"tdur":91,"tts":2398596},
-{"pid":27369,"tid":27369,"ts":326461383263,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":92,"tdur":91,"tts":2398596},
-{"pid":27369,"tid":27369,"ts":326461383355,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":427,"tdur":396,"tts":2398718},
-{"pid":27369,"tid":27369,"ts":326461383385,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2398718},
-{"pid":27369,"tid":27369,"ts":326461383385,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":2398718},
-{"pid":27369,"tid":27369,"ts":326461383416,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":336,"tdur":336,"tts":2398748},
-{"pid":27369,"tid":27369,"ts":326461383752,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2399084},
-{"pid":27369,"tid":27407,"ts":326461372551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1848039},
-{"pid":27369,"tid":27407,"ts":326461372551,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1848069,"id":"0xba462502"},
-{"pid":27369,"tid":27407,"ts":326461373985,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":152,"tts":1848161},
-{"pid":27369,"tid":27407,"ts":326461374046,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":1848191},
-{"pid":27369,"tid":27407,"ts":326461374046,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1848191,"id":"0xccc57902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461374077,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1848222,"id":"0xaf8a60aafeb47934"},
-{"pid":27369,"tid":27407,"ts":326461374992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1848405,"id":"0xaf8a6e85febbc614"},
-{"pid":27369,"tid":27407,"ts":326461374992,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/gpu/gpu_process_host_ui_shim.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1848405},
-{"pid":27369,"tid":27407,"ts":326461375023,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1848435,"id":"0xba462602"},
-{"pid":27369,"tid":27407,"ts":326461375084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1848527,"id":"0xaf8a6e86febbc614"},
-{"pid":27369,"tid":27407,"ts":326461375114,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1848527},
-{"pid":27369,"tid":27407,"ts":326461375114,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1848527,"id":"0xba462702"},
-{"pid":27369,"tid":27407,"ts":326461381920,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":275,"tdur":275,"tts":1848679},
-{"pid":27369,"tid":27407,"ts":326461381981,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":184,"tdur":183,"tts":1848741},
-{"pid":27369,"tid":27407,"ts":326461382012,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1848771,"id":"0xccc57d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461382043,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1848802,"id":"0xaf8a60abfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461384026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1849046,"id":"0xaf8a6e87febbc614"},
-{"pid":27369,"tid":27407,"ts":326461384057,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1849046},
-{"pid":27369,"tid":27407,"ts":326461384057,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1849046,"id":"0xba462802"},
-{"pid":27369,"tid":27407,"ts":326461385003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1849198,"id":"0xaf8a6e80febbc614"},
-{"pid":27369,"tid":27407,"ts":326461385003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1849198},
-{"pid":27369,"tid":27407,"ts":326461385034,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1849229,"id":"0xba462902"},
-{"pid":27369,"tid":27407,"ts":326461395349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1849351,"id":"0xaf8a6e81febbc614"},
-{"pid":27369,"tid":27407,"ts":326461395380,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1849351},
-{"pid":27369,"tid":27407,"ts":326461395380,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1849351,"id":"0xba462a02"},
-{"pid":27369,"tid":27407,"ts":326461397547,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":1849504},
-{"pid":27369,"tid":27407,"ts":326461397577,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":184,"tdur":183,"tts":1849534},
-{"pid":27369,"tid":27407,"ts":326461397577,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1849565,"id":"0xccc57e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461397638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1849595,"id":"0xaf8a60a5feb47934"},
-{"pid":27369,"tid":27407,"ts":326461398371,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1849809,"id":"0xaf8a6e82febbc614"},
-{"pid":27369,"tid":27407,"ts":326461398401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1849839},
-{"pid":27369,"tid":27407,"ts":326461398401,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1849839,"id":"0xba462b02"},
-{"pid":27369,"tid":27407,"ts":326461400813,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1849961},
-{"pid":27369,"tid":27407,"ts":326461400843,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1849992},
-{"pid":27369,"tid":27407,"ts":326461400874,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1850022,"id":"0xccc58002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461400874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1850022,"id":"0xaf8a60a6feb47934"},
-{"pid":27369,"tid":27407,"ts":326461403773,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1850206},
-{"pid":27369,"tid":27407,"ts":326461403804,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1850236},
-{"pid":27369,"tid":27407,"ts":326461403834,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1850267,"id":"0xc4c1cc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461403834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1850297,"id":"0xaf8a60a7feb47934"},
-{"pid":27369,"tid":27407,"ts":326461405238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1850419,"id":"0xaf8a6e83febbc614"},
-{"pid":27369,"tid":27407,"ts":326461405269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1850450},
-{"pid":27369,"tid":27407,"ts":326461405269,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1850450,"id":"0xba462c02"},
-{"pid":27369,"tid":27407,"ts":326461405665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1850572,"id":"0xaf8a6e9cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461405696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1850602},
-{"pid":27369,"tid":27407,"ts":326461405696,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1850602,"id":"0xba462d02"},
-{"pid":27369,"tid":27407,"ts":326461408443,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1850724},
-{"pid":27369,"tid":27407,"ts":326461408504,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1850755},
-{"pid":27369,"tid":27407,"ts":326461408504,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1850755,"id":"0xccc58202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461408534,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1850785,"id":"0xaf8a60a0feb47934"},
-{"pid":27369,"tid":27407,"ts":326461419064,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":1850969},
-{"pid":27369,"tid":27407,"ts":326461419094,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":31,"tdur":31,"tts":1850999},
-{"pid":27369,"tid":27407,"ts":326461419125,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1851030,"id":"0xccc58302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461421536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1851152,"id":"0xaf8a6e9dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461421536,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1851152},
-{"pid":27369,"tid":27407,"ts":326461421566,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1851182,"id":"0xba462e02"},
-{"pid":27369,"tid":27407,"ts":326461422055,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1851304,"id":"0xaf8a6e9efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461422055,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1851304},
-{"pid":27369,"tid":27407,"ts":326461422055,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1851304,"id":"0xba462f02"},
-{"pid":27369,"tid":27407,"ts":326461423245,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1851426},
-{"pid":27369,"tid":27407,"ts":326461423306,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1851487},
-{"pid":27369,"tid":27407,"ts":326461423306,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1851487,"id":"0xccc58502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461423337,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1851518,"id":"0xaf8a60a1feb47934"},
-{"pid":27369,"tid":27407,"ts":326461430509,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1851701},
-{"pid":27369,"tid":27369,"ts":326461383782,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2399114},
-{"pid":27369,"tid":27369,"ts":326461383813,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":91,"tts":2399145},
-{"pid":27369,"tid":27369,"ts":326461383813,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":122},"dur":30,"tdur":30,"tts":2399145},
-{"pid":27369,"tid":27369,"ts":326461383843,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":122},"dur":31,"tdur":31,"tts":2399175},
-{"pid":27369,"tid":27369,"ts":326461383874,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":122},"tts":2399206},
-{"pid":27369,"tid":27369,"ts":326461383874,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2399206},
-{"pid":27369,"tid":27369,"ts":326461383904,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2399236},
-{"pid":27369,"tid":27369,"ts":326461383904,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2399236},
-{"pid":27369,"tid":27369,"ts":326461383935,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2399267},
-{"pid":27369,"tid":27369,"ts":326461383965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2399298,"id":"0xaf8a6e87febbc614"},
-{"pid":27369,"tid":27369,"ts":326461384057,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":977,"tdur":977,"tts":2399389},
-{"pid":27369,"tid":27369,"ts":326461384057,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":122},"dur":305,"tdur":305,"tts":2399389},
-{"pid":27369,"tid":27369,"ts":326461384087,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2399420},
-{"pid":27369,"tid":27369,"ts":326461384087,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2399420},
-{"pid":27369,"tid":27369,"ts":326461384087,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2399420},
-{"pid":27369,"tid":27369,"ts":326461384118,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2399450,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461384148,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2399481},
-{"pid":27369,"tid":27369,"ts":326461384332,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2399664},
-{"pid":27369,"tid":27369,"ts":326461384362,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":488,"tdur":458,"tts":2399694},
-{"pid":27369,"tid":27369,"ts":326461384362,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":2399694},
-{"pid":27369,"tid":27369,"ts":326461384393,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":427,"tdur":427,"tts":2399725},
-{"pid":27369,"tid":27369,"ts":326461384393,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2399725},
-{"pid":27369,"tid":27369,"ts":326461384454,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":335,"tdur":336,"tts":2399786},
-{"pid":27369,"tid":27369,"ts":326461384820,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2400152,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461384881,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2400213},
-{"pid":27369,"tid":27369,"ts":326461384881,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9366},"dur":91,"tdur":92,"tts":2400213},
-{"pid":27369,"tid":27369,"ts":326461384911,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2400244},
-{"pid":27369,"tid":27369,"ts":326461384911,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2400244,"id":"0xaf8a6e80febbc614"},
-{"pid":27369,"tid":27369,"ts":326461384972,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2400305},
-{"pid":27369,"tid":27369,"ts":326461385003,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2400335},
-{"pid":27369,"tid":27369,"ts":326461385125,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2400488},
-{"pid":27369,"tid":27369,"ts":326461393579,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2400793},
-{"pid":27369,"tid":27369,"ts":326461394220,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2401434},
-{"pid":27369,"tid":27369,"ts":326461394312,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":152,"tts":2401526},
-{"pid":27369,"tid":27369,"ts":326461394495,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":2401709},
-{"pid":27369,"tid":27369,"ts":326461381000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2401770,"id":"0x300000087"},
-{"pid":27369,"tid":27369,"ts":326461394586,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902023},"tts":2401800,"id":"0x300000087"},
-{"pid":27369,"tid":27369,"ts":326461394586,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":2401800},
-{"pid":27369,"tid":27369,"ts":326461394617,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2401831,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461394617,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2401861},
-{"pid":27369,"tid":27369,"ts":326461394892,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2402105},
-{"pid":27369,"tid":27369,"ts":326461394953,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":123,"tts":2402166},
-{"pid":27369,"tid":27369,"ts":326461394953,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461386751},"dur":91,"tdur":92,"tts":2402166},
-{"pid":27369,"tid":27369,"ts":326461394983,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2402197},
-{"pid":27369,"tid":27369,"ts":326461395014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2402227,"id":"0xaf8a6e81febbc614"},
-{"pid":27369,"tid":27369,"ts":326461395075,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2402289},
-{"pid":27369,"tid":27369,"ts":326461395166,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2402380},
-{"pid":27369,"tid":27369,"ts":326461397913,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2402655},
-{"pid":27369,"tid":27369,"ts":326461397944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2402685,"id":"0xaf8a60a5feb47934"},
-{"pid":27369,"tid":27369,"ts":326461397944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":610,"tdur":458,"tts":2402685},
-{"pid":27369,"tid":27369,"ts":326461397974,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":580,"tdur":397,"tts":2402716},
-{"pid":27369,"tid":27369,"ts":326461398066,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2402777,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461398066,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2402777,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461398096,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchStart","ack":"CONSUMED"},"dur":428,"tdur":306,"tts":2402807},
-{"pid":27369,"tid":27369,"ts":326461398096,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":428,"tdur":306,"tts":2402807},
-{"pid":27369,"tid":27369,"ts":326461398188,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchStart","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461398096.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902022.0,"time":326461367728.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461365000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461398096.0},"coordinates":[{"x":266.0,"y":722.5},{"x":457.0,"y":585.0}],"trace_id":12884902022.0}},"tts":2402899,"id":"0x300000086"},
-{"pid":27369,"tid":27369,"ts":326461398188,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":2402899,"id":"0x300000086","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326461398218,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2402929,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461398218,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":306,"tdur":184,"tts":2402929},
-{"pid":27369,"tid":27369,"ts":326461398249,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":275,"tdur":122,"tts":2402960},
-{"pid":27369,"tid":27369,"ts":326461398279,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":62,"tts":2402990},
-{"pid":27369,"tid":27369,"ts":326461398310,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2403021,"id":"0xaf8a6e82febbc614"},
-{"pid":27369,"tid":27369,"ts":326461398371,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2403082,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461398371,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2403082,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461398615,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2403204},
-{"pid":27369,"tid":27369,"ts":326461401087,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2403418},
-{"pid":27369,"tid":27369,"ts":326461401087,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2403418,"id":"0xaf8a60a6feb47934"},
-{"pid":27369,"tid":27369,"ts":326461401118,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2403448},
-{"pid":27369,"tid":27369,"ts":326461401118,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2403448},
-{"pid":27369,"tid":27369,"ts":326461401148,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2403509,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461401179,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2403509,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461401179,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2403509},
-{"pid":27369,"tid":27369,"ts":326461401209,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2403540},
-{"pid":27369,"tid":27369,"ts":326461401209,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2403540,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461401301,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2403631},
-{"pid":27369,"tid":27369,"ts":326461403956,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2403906},
-{"pid":27369,"tid":27369,"ts":326461404536,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2404486},
-{"pid":27369,"tid":27369,"ts":326461404597,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2404547},
-{"pid":27369,"tid":27369,"ts":326461404750,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":519,"tdur":274,"tts":2404700},
-{"pid":27369,"tid":27369,"ts":326461398000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2404730,"id":"0x300000088"},
-{"pid":27369,"tid":27369,"ts":326461404780,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902024},"tts":2404730,"id":"0x300000088"},
-{"pid":27369,"tid":27369,"ts":326461404780,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":489,"tdur":213,"tts":2404761},
-{"pid":27369,"tid":27369,"ts":326461404811,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2404761,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461404841,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":428,"tdur":183,"tts":2404791},
-{"pid":27369,"tid":27369,"ts":326461404841,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":2404791},
-{"pid":27369,"tid":27369,"ts":326461405116,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":2404822},
-{"pid":27369,"tid":27369,"ts":326461405146,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2404852},
-{"pid":27369,"tid":27369,"ts":326461405177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2404883,"id":"0xaf8a6e83febbc614"},
-{"pid":27369,"tid":27369,"ts":326461405238,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2404944,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461405238,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2404944,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461405299,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2405005},
-{"pid":27369,"tid":27369,"ts":326461405482,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2405188},
-{"pid":27369,"tid":27369,"ts":326461405543,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":214,"tts":2405249},
-{"pid":27369,"tid":27369,"ts":326461405543,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461403433},"dur":92,"tdur":92,"tts":2405249},
-{"pid":27369,"tid":27369,"ts":326461405574,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2405280},
-{"pid":27369,"tid":27369,"ts":326461405604,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2405310,"id":"0xaf8a6e9cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461405757,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2405463},
-{"pid":27369,"tid":27369,"ts":326461405879,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2405585},
-{"pid":27369,"tid":27369,"ts":326461406001,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2405707},
-{"pid":27369,"tid":27369,"ts":326461406001,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2405707,"id":"0xaf8a60a7feb47934"},
-{"pid":27369,"tid":27369,"ts":326461406032,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2405737},
-{"pid":27369,"tid":27369,"ts":326461406032,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2405737},
-{"pid":27369,"tid":27369,"ts":326461406062,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2405768},
-{"pid":27369,"tid":27369,"ts":326461406154,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2405859},
-{"pid":27369,"tid":27369,"ts":326461408748,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2406134},
-{"pid":27369,"tid":27369,"ts":326461408778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2406165,"id":"0xaf8a60a0feb47934"},
-{"pid":27369,"tid":27369,"ts":326461408778,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":244,"tts":2406165},
-{"pid":27369,"tid":27369,"ts":326461408809,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":244,"tdur":183,"tts":2406195},
-{"pid":27369,"tid":27369,"ts":326461408870,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2406256,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461408870,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2406256,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461408900,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":153,"tdur":91,"tts":2406287},
-{"pid":27369,"tid":27369,"ts":326461408900,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":153,"tdur":91,"tts":2406287},
-{"pid":27369,"tid":27369,"ts":326461408961,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2406348,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461408961,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":2406348},
-{"pid":27369,"tid":27369,"ts":326461409145,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2406470},
-{"pid":27369,"tid":27369,"ts":326461420651,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2406867},
-{"pid":27369,"tid":27369,"ts":326461421139,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2407355},
-{"pid":27369,"tid":27369,"ts":326461421200,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2407416},
-{"pid":27369,"tid":27369,"ts":326461421322,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":214,"tts":2407538},
-{"pid":27369,"tid":27369,"ts":326461415000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2407569,"id":"0x300000089"},
-{"pid":27369,"tid":27369,"ts":326461421353,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902025},"tts":2407569,"id":"0x300000089"},
-{"pid":27369,"tid":27369,"ts":326461421353,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2407569},
-{"pid":27369,"tid":27369,"ts":326461421383,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2407599,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461421383,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":153,"tts":2407599},
-{"pid":27369,"tid":27369,"ts":326461421414,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2407630},
-{"pid":27369,"tid":27369,"ts":326461421444,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2407660},
-{"pid":27369,"tid":27369,"ts":326461421444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2407660,"id":"0xaf8a6e9dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461421505,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2407721,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461421505,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2407721,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461421566,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2407782},
-{"pid":27369,"tid":27369,"ts":326461421872,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2408026},
-{"pid":27369,"tid":27369,"ts":326461421933,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2408057},
-{"pid":27369,"tid":27369,"ts":326461421933,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461420114},"dur":91,"tdur":91,"tts":2408057},
-{"pid":27369,"tid":27369,"ts":326461421963,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2408087},
-{"pid":27369,"tid":27369,"ts":326461421963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2408087,"id":"0xaf8a6e9efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461422055,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2408179},
-{"pid":27369,"tid":27369,"ts":326461422146,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2408271},
-{"pid":27369,"tid":27369,"ts":326461423550,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2408484},
-{"pid":27369,"tid":27369,"ts":326461423581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2408515,"id":"0xaf8a60a1feb47934"},
-{"pid":27369,"tid":27369,"ts":326461423611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":183,"tts":2408545},
-{"pid":27369,"tid":27369,"ts":326461423611,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":183,"tdur":183,"tts":2408545},
-{"pid":27369,"tid":27369,"ts":326461423672,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2408606,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461423703,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2408637,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461423703,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":91,"tdur":61,"tts":2408667},
-{"pid":27369,"tid":27369,"ts":326461423733,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2408667},
-{"pid":27369,"tid":27369,"ts":326461423764,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2408698,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461423916,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2408820},
-{"pid":27369,"tid":27369,"ts":326461430784,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2409064},
-{"pid":27369,"tid":27369,"ts":326461430814,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2409095,"id":"0xaf8a60a2feb47934"},
-{"pid":27369,"tid":27369,"ts":326461430814,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2409095},
-{"pid":27369,"tid":27369,"ts":326461430845,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":711},"dur":396,"tdur":397,"tts":2409125},
-{"pid":27369,"tid":27369,"ts":326461430906,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2409186,"id":"0xaf8a6e9ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461431058,"ph":"S","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"NULL"},"tts":2409339,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326461431302,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2409583},
-{"pid":27369,"tid":27369,"ts":326461431363,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2409644},
-{"pid":27369,"tid":27369,"ts":326461431455,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2409705,"id":"0xaf8a60a3feb47934"},
-{"pid":27369,"tid":27369,"ts":326461431455,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2409705},
-{"pid":27369,"tid":27369,"ts":326461431486,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":61,"tdur":62,"tts":2409735},
-{"pid":27369,"tid":27369,"ts":326461431699,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2409949},
-{"pid":27369,"tid":27369,"ts":326461431760,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2410041},
-{"pid":27369,"tid":27369,"ts":326461431791,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2410041,"id":"0xaf8a60bcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461431791,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2410041},
-{"pid":27369,"tid":27369,"ts":326461431791,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":749},"dur":61,"tdur":31,"tts":2410071},
-{"pid":27369,"tid":27369,"ts":326461431913,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2410163},
-{"pid":27369,"tid":27369,"ts":326461431974,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2410224},
-{"pid":27369,"tid":27369,"ts":326461432004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2410254,"id":"0xaf8a60bdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461432004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":31,"tts":2410254},
-{"pid":27369,"tid":27369,"ts":326461432004,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1402},"dur":31,"tdur":31,"tts":2410254},
-{"pid":27369,"tid":27369,"ts":326461432096,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2410346},
-{"pid":27369,"tid":27369,"ts":326461432157,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2410437},
-{"pid":27369,"tid":27369,"ts":326461432187,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2410437,"id":"0xaf8a60befeb47934"},
-{"pid":27369,"tid":27369,"ts":326461432187,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":2320,"tdur":2289,"tts":2410437},
-{"pid":27369,"tid":27369,"ts":326461432218,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":694},"dur":2259,"tdur":2228,"tts":2410468},
-{"pid":27369,"tid":27369,"ts":326461432279,"ph":"X","cat":"navigation","name":"RenderFrameHostImpl::OnDidCommitProvisionalLoad","args":{"url":"https://www.google.com/maps/@37.4140995,-122.1072661,12z?hl=en"},"dur":2198,"tdur":2167,"tts":2410529},
-{"pid":27369,"tid":27369,"ts":326461432920,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":0,"tts":2411200},
-{"pid":27369,"tid":27369,"ts":326461432951,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2411200},
-{"pid":27369,"tid":27369,"ts":326461433134,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2411384,"id":"0xaf8a646efd55cb44"},
-{"pid":27369,"tid":27369,"ts":326461433195,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2411445,"id":"0xaf8a646ffd55cb44"},
-{"pid":27369,"tid":27369,"ts":326461433286,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2411536},
-{"pid":27369,"tid":27369,"ts":326461433317,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2411567},
-{"pid":27369,"tid":27369,"ts":326461433347,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2411597},
-{"pid":27369,"tid":27369,"ts":326461433378,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2411628},
-{"pid":27369,"tid":27369,"ts":326461433408,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2411658,"id":"0xaf8a60b5feb47934"},
-{"pid":27369,"tid":27369,"ts":326461433469,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2411719,"id":"0xaf8a641dfeb5e97c"},
-{"pid":27369,"tid":27369,"ts":326461433500,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2411750,"id":"0xaf8a641efeb5e97c"},
-{"pid":27369,"tid":27369,"ts":326461434171,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2412421,"id":"0xaf8a641ffeb5e97c"},
-{"pid":27369,"tid":27369,"ts":326461434354,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2412574,"id":"0xaf8a6418feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326461434415,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2412635,"id":"0xaf8a6468fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326461434599,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2412818},
-{"pid":27369,"tid":27369,"ts":326461434690,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2412940},
-{"pid":27369,"tid":27369,"ts":326461434721,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2412940,"id":"0xaf8a60bffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461434751,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2412971},
-{"pid":27369,"tid":27407,"ts":326461430539,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":711},"dur":153,"tdur":152,"tts":1851732},
-{"pid":27369,"tid":27407,"ts":326461430570,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1851762,"id":"0xccc58602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461430600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1851793,"id":"0xaf8a60a2feb47934"},
-{"pid":27369,"tid":27407,"ts":326461430814,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1851945},
-{"pid":27369,"tid":27407,"ts":326461430845,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":91,"tdur":91,"tts":1851976},
-{"pid":27369,"tid":27407,"ts":326461430845,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852006,"id":"0xccc58702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461430875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852006,"id":"0xaf8a60a3feb47934"},
-{"pid":27369,"tid":27407,"ts":326461430936,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":749},"dur":61,"tdur":61,"tts":1852067},
-{"pid":27369,"tid":27407,"ts":326461430967,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852098,"id":"0xccc58802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461430967,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852098,"id":"0xaf8a60bcfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461431028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1852159,"id":"0xaf8a6e9ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461431058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":0,"tdur":0,"tts":1852189},
-{"pid":27369,"tid":27407,"ts":326461431089,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1852220},
-{"pid":27369,"tid":27407,"ts":326461431119,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1402},"dur":61,"tdur":61,"tts":1852250},
-{"pid":27369,"tid":27407,"ts":326461431119,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852250,"id":"0xccc58902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431150,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852281,"id":"0xaf8a60bdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461431272,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":610,"tdur":611,"tts":1852372},
-{"pid":27369,"tid":27407,"ts":326461431302,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":694},"dur":153,"tdur":153,"tts":1852403},
-{"pid":27369,"tid":27407,"ts":326461431302,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852403,"id":"0xccc58a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852495,"id":"0xaf8a60befeb47934"},
-{"pid":27369,"tid":27407,"ts":326461431455,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":92,"tdur":91,"tts":1852556},
-{"pid":27369,"tid":27407,"ts":326461431486,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852586,"id":"0xccc58b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431486,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852586,"id":"0xaf8a60bffeb47934"},
-{"pid":27369,"tid":27407,"ts":326461431547,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":761},"dur":61,"tdur":61,"tts":1852647},
-{"pid":27369,"tid":27407,"ts":326461431547,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852647,"id":"0xccc58c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431577,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852678,"id":"0xaf8a60b8feb47934"},
-{"pid":27369,"tid":27407,"ts":326461431608,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":91,"tdur":61,"tts":1852739},
-{"pid":27369,"tid":27407,"ts":326461431638,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852739,"id":"0xccc58d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431669,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852769,"id":"0xaf8a60b9feb47934"},
-{"pid":27369,"tid":27407,"ts":326461431730,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1517},"dur":61,"tdur":61,"tts":1852830},
-{"pid":27369,"tid":27407,"ts":326461431730,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852830,"id":"0xccc58e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431760,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852861,"id":"0xaf8a60bafeb47934"},
-{"pid":27369,"tid":27407,"ts":326461431791,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":714},"dur":61,"tdur":61,"tts":1852891},
-{"pid":27369,"tid":27407,"ts":326461431791,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1852922,"id":"0xccc58f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461431821,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1852922,"id":"0xaf8a60bbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461435972,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1853074,"id":"0xaf8a6e98febbc614"},
-{"pid":27369,"tid":27407,"ts":326461435972,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":61,"tdur":61,"tts":1853074},
-{"pid":27369,"tid":27407,"ts":326461440184,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1853227,"id":"0xaf8a6e99febbc614"},
-{"pid":27369,"tid":27407,"ts":326461440184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1853227},
-{"pid":27369,"tid":27407,"ts":326461440214,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1853258,"id":"0xba463002"},
-{"pid":27369,"tid":27407,"ts":326461440611,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1853410,"id":"0xaf8a6e9afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461440611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1853410},
-{"pid":27369,"tid":27407,"ts":326461440642,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1853441,"id":"0xba463102"},
-{"pid":27369,"tid":27407,"ts":326461442656,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":274,"tts":1853563},
-{"pid":27369,"tid":27407,"ts":326461442717,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":23,"line":232},"dur":122,"tdur":122,"tts":1853593},
-{"pid":27369,"tid":27407,"ts":326461442717,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1853624,"id":"0xccc59102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461442748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1853624,"id":"0xaf8a60b2feb47934"},
-{"pid":27369,"tid":27407,"ts":326461442870,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1853746},
-{"pid":27369,"tid":27407,"ts":326461442870,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1853746,"id":"0xccc59202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461442900,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1853776,"id":"0xaf8a60b3feb47934"},
-{"pid":27369,"tid":27407,"ts":326461445342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1853898,"id":"0xaf8a6e9bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461445372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1853929},
-{"pid":27369,"tid":27407,"ts":326461445372,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1853929,"id":"0xba463202"},
-{"pid":27369,"tid":27407,"ts":326461454956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1854082,"id":"0xaf8a6e94febbc614"},
-{"pid":27369,"tid":27407,"ts":326461454986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1854112},
-{"pid":27369,"tid":27407,"ts":326461455017,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1854143,"id":"0xba463302"},
-{"pid":27369,"tid":27407,"ts":326461455352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1854326,"id":"0xaf8a6e95febbc614"},
-{"pid":27369,"tid":27407,"ts":326461455352,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":123,"tdur":92,"tts":1854356},
-{"pid":27369,"tid":27407,"ts":326461455383,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1854356,"id":"0xba463402"},
-{"pid":27369,"tid":27407,"ts":326461458649,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":152,"tts":1854509},
-{"pid":27369,"tid":27407,"ts":326461458649,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":30,"tts":1854509},
-{"pid":27369,"tid":27407,"ts":326461458801,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":91,"tts":1854570},
-{"pid":27369,"tid":27407,"ts":326461458832,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1854600,"id":"0xccc59402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461458832,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1854600,"id":"0xaf8a614cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461434751,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":2412971},
-{"pid":27369,"tid":27369,"ts":326461434904,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413123},
-{"pid":27369,"tid":27369,"ts":326461435026,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413245},
-{"pid":27369,"tid":27369,"ts":326461435026,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2413245,"id":"0xaf8a60b8feb47934"},
-{"pid":27369,"tid":27369,"ts":326461435056,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2413276},
-{"pid":27369,"tid":27369,"ts":326461435056,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":761},"dur":61,"tdur":61,"tts":2413276},
-{"pid":27369,"tid":27369,"ts":326461435178,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413398},
-{"pid":27369,"tid":27369,"ts":326461435270,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413489},
-{"pid":27369,"tid":27369,"ts":326461435270,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2413489,"id":"0xaf8a60b9feb47934"},
-{"pid":27369,"tid":27369,"ts":326461435301,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":30,"tdur":31,"tts":2413520},
-{"pid":27369,"tid":27369,"ts":326461435301,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":30,"tdur":31,"tts":2413520},
-{"pid":27369,"tid":27369,"ts":326461435392,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413612},
-{"pid":27369,"tid":27369,"ts":326461435453,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413673},
-{"pid":27369,"tid":27369,"ts":326461435484,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2413703,"id":"0xaf8a60bafeb47934"},
-{"pid":27369,"tid":27369,"ts":326461435484,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":92,"tts":2413703},
-{"pid":27369,"tid":27369,"ts":326461435484,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1517},"dur":91,"tdur":92,"tts":2413703},
-{"pid":27369,"tid":27369,"ts":326461435636,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413856},
-{"pid":27369,"tid":27369,"ts":326461435697,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2413917},
-{"pid":27369,"tid":27369,"ts":326461435728,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2413947,"id":"0xaf8a60bbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461435728,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":2413947},
-{"pid":27369,"tid":27369,"ts":326461435728,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":714},"dur":397,"tdur":397,"tts":2413947},
-{"pid":27369,"tid":27369,"ts":326461435880,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2414100,"id":"0xaf8a6e98febbc614"},
-{"pid":27369,"tid":27369,"ts":326461436033,"ph":"F","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"https://www.google.com/maps/@37.4140995,-122.1072661,12z?hl=en"},"tts":2414252,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326461436216,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2414436},
-{"pid":27369,"tid":27369,"ts":326461436277,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2414497},
-{"pid":27369,"tid":27369,"ts":326461436308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2414527,"id":"0xaf8a60b4feb47934"},
-{"pid":27369,"tid":27369,"ts":326461436308,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":122,"tdur":92,"tts":2414527},
-{"pid":27369,"tid":27369,"ts":326461436369,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2414588,"id":"0xaf8a6469fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326461436460,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2414680},
-{"pid":27369,"tid":27369,"ts":326461436552,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2414771},
-{"pid":27369,"tid":27369,"ts":326461436552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2414771,"id":"0xaf8a60b6feb47934"},
-{"pid":27369,"tid":27369,"ts":326461436582,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":31,"tdur":30,"tts":2414802},
-{"pid":27369,"tid":27369,"ts":326461436674,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2414893},
-{"pid":27369,"tid":27369,"ts":326461436766,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2414985},
-{"pid":27369,"tid":27369,"ts":326461436766,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2414985,"id":"0xaf8a60b7feb47934"},
-{"pid":27369,"tid":27369,"ts":326461436796,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyURLVisited"},"dur":122,"tdur":122,"tts":2415016},
-{"pid":27369,"tid":27369,"ts":326461437040,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2415229},
-{"pid":27369,"tid":27369,"ts":326461437132,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2415290},
-{"pid":27369,"tid":27369,"ts":326461437162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2415321,"id":"0xaf8a60b0feb47934"},
-{"pid":27369,"tid":27369,"ts":326461437162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyFaviconChanged"},"dur":31,"tdur":30,"tts":2415321},
-{"pid":27369,"tid":27369,"ts":326461437254,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2415412},
-{"pid":27369,"tid":27369,"ts":326461437376,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2415534},
-{"pid":27369,"tid":27369,"ts":326461437406,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2415565,"id":"0xaf8a60b1feb47934"},
-{"pid":27369,"tid":27369,"ts":326461437406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"UpdateFaviconMappingsAndFetch"},"dur":1526,"tdur":1190,"tts":2415565},
-{"pid":27369,"tid":27369,"ts":326461439024,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2416847},
-{"pid":27369,"tid":27369,"ts":326461439116,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2416938},
-{"pid":27369,"tid":27369,"ts":326461439207,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2417030},
-{"pid":27369,"tid":27369,"ts":326461439299,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2417121},
-{"pid":27369,"tid":27369,"ts":326461439696,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2417549},
-{"pid":27369,"tid":27369,"ts":326461439787,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2417610},
-{"pid":27369,"tid":27369,"ts":326461439909,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2417732},
-{"pid":27369,"tid":27369,"ts":326461431000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2417793,"id":"0x30000008a"},
-{"pid":27369,"tid":27369,"ts":326461439970,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902026},"tts":2417793,"id":"0x30000008a"},
-{"pid":27369,"tid":27369,"ts":326461440031,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":153,"tdur":153,"tts":2417854},
-{"pid":27369,"tid":27369,"ts":326461440031,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2417854,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461440031,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":123,"tts":2417884},
-{"pid":27369,"tid":27369,"ts":326461440062,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":123,"tts":2417884},
-{"pid":27369,"tid":27369,"ts":326461440092,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2417915},
-{"pid":27369,"tid":27369,"ts":326461440123,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2417945,"id":"0xaf8a6e99febbc614"},
-{"pid":27369,"tid":27369,"ts":326461440153,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2417976,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461440153,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2418007,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461440214,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2418037},
-{"pid":27369,"tid":27369,"ts":326461440459,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2418281},
-{"pid":27369,"tid":27369,"ts":326461440489,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2418312},
-{"pid":27369,"tid":27369,"ts":326461440489,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461436796},"dur":92,"tdur":91,"tts":2418312},{"pid":27369,"tid":27369,"ts":326461440520,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2418342},
-{"pid":27369,"tid":27369,"ts":326461440550,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2418373,"id":"0xaf8a6e9afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461440611,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2418464},
-{"pid":27369,"tid":27369,"ts":326461445037,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2422493},
-{"pid":27369,"tid":27369,"ts":326461445159,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2422615},
-{"pid":27369,"tid":27369,"ts":326461445189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2422646,"id":"0xaf8a60b2feb47934"},
-{"pid":27369,"tid":27369,"ts":326461445189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2422646},
-{"pid":27369,"tid":27369,"ts":326461445189,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":23,"line":232},"dur":153,"tdur":152,"tts":2422646},
-{"pid":27369,"tid":27369,"ts":326461445250,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2422707},
-{"pid":27369,"tid":27369,"ts":326461445281,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2422737,"id":"0xaf8a6e9bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461445403,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2422859},
-{"pid":27369,"tid":27369,"ts":326461445464,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2422920},
-{"pid":27369,"tid":27369,"ts":326461445494,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2422951,"id":"0xaf8a60b3feb47934"},
-{"pid":27369,"tid":27369,"ts":326461445494,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2422951},
-{"pid":27369,"tid":27369,"ts":326461445494,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":122,"tts":2422981},
-{"pid":27369,"tid":27369,"ts":326461445555,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2423012,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461445586,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2423042,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461445586,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2423042},
-{"pid":27369,"tid":27369,"ts":326461445586,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":31,"tts":2423042},
-{"pid":27369,"tid":27369,"ts":326461445616,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2423073,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461445708,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2423164},
-{"pid":27369,"tid":27369,"ts":326461454071,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2423561},
-{"pid":27369,"tid":27369,"ts":326461454498,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2423988},
-{"pid":27369,"tid":27369,"ts":326461454559,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":2424050},
-{"pid":27369,"tid":27369,"ts":326461454681,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":274,"tts":2424172},
-{"pid":27369,"tid":27369,"ts":326461448000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2424202,"id":"0x30000008b"},
-{"pid":27369,"tid":27369,"ts":326461454712,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902027},"tts":2424202,"id":"0x30000008b"},
-{"pid":27369,"tid":27369,"ts":326461454742,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2424233},
-{"pid":27369,"tid":27369,"ts":326461454742,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2424263,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461454773,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":153,"tts":2424263},
-{"pid":27369,"tid":27369,"ts":326461454773,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":153,"tts":2424263},
-{"pid":27369,"tid":27369,"ts":326461454803,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2424294},
-{"pid":27369,"tid":27369,"ts":326461454834,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2424324,"id":"0xaf8a6e94febbc614"},
-{"pid":27369,"tid":27369,"ts":326461454895,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2424385,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461454925,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2424416,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461454956,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2424446},
-{"pid":27369,"tid":27369,"ts":326461455169,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2424629},
-{"pid":27369,"tid":27369,"ts":326461455230,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":184,"tts":2424690},
-{"pid":27369,"tid":27369,"ts":326461455230,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461453478},"dur":92,"tdur":92,"tts":2424690},
-{"pid":27369,"tid":27369,"ts":326461455261,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2424721},
-{"pid":27369,"tid":27369,"ts":326461455261,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2424721,"id":"0xaf8a6e95febbc614"},
-{"pid":27369,"tid":27369,"ts":326461455413,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2424904},
-{"pid":27369,"tid":27369,"ts":326461458893,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2427498},
-{"pid":27369,"tid":27369,"ts":326461459076,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2427681},
-{"pid":27369,"tid":27369,"ts":326461459106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2427712,"id":"0xaf8a614cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461459106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":184,"tdur":183,"tts":2427712},
-{"pid":27369,"tid":27369,"ts":326461459106,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":184,"tdur":183,"tts":2427712},
-{"pid":27369,"tid":27369,"ts":326461459168,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2427773,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461459198,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2427804,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461459198,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2427804},
-{"pid":27369,"tid":27369,"ts":326461459229,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2427834},
-{"pid":27369,"tid":27369,"ts":326461459229,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2427834,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461459351,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2427956},
-{"pid":27369,"tid":27369,"ts":326461470674,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2428353},
-{"pid":27369,"tid":27369,"ts":326461471131,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2428811},
-{"pid":27369,"tid":27369,"ts":326461471193,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":91,"tts":2428872},
-{"pid":27369,"tid":27369,"ts":326461471315,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2428994},
-{"pid":27369,"tid":27369,"ts":326461465000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2429024,"id":"0x30000008c"},
-{"pid":27369,"tid":27369,"ts":326461471345,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902028},"tts":2429024,"id":"0x30000008c"},
-{"pid":27369,"tid":27369,"ts":326461471345,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2429024},
-{"pid":27369,"tid":27369,"ts":326461471376,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2429055,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461471376,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2429055},
-{"pid":27369,"tid":27369,"ts":326461471376,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":122,"tts":2429085},
-{"pid":27369,"tid":27369,"ts":326461471406,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2429085},
-{"pid":27369,"tid":27369,"ts":326461471467,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2429146,"id":"0xaf8a6e96febbc614"},
-{"pid":27369,"tid":27369,"ts":326461471528,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2429207,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461471528,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2429207,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461471589,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2429269},
-{"pid":27369,"tid":27369,"ts":326461471956,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2429574},
-{"pid":27369,"tid":27369,"ts":326461472017,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2429604},
-{"pid":27369,"tid":27369,"ts":326461472017,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461470159},"dur":91,"tdur":92,"tts":2429604},
-{"pid":27369,"tid":27369,"ts":326461472047,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2429635},
-{"pid":27369,"tid":27369,"ts":326461472047,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2429635,"id":"0xaf8a6e97febbc614"},
-{"pid":27369,"tid":27369,"ts":326461472139,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2429726},
-{"pid":27369,"tid":27369,"ts":326461474763,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2432015},
-{"pid":27369,"tid":27369,"ts":326461477419,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2432260},
-{"pid":27369,"tid":27369,"ts":326461477419,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2432260,"id":"0xaf8a614dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461477449,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2432290},
-{"pid":27369,"tid":27369,"ts":326461477449,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2432290},
-{"pid":27369,"tid":27369,"ts":326461477510,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2432351,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461477510,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2432351,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461477541,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":30,"tts":2432382},
-{"pid":27369,"tid":27369,"ts":326461477541,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2432382},
-{"pid":27369,"tid":27369,"ts":326461477571,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2432412,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461477663,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2432504},
-{"pid":27369,"tid":27369,"ts":326461481203,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2432748},
-{"pid":27369,"tid":27369,"ts":326461481234,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2432778,"id":"0xaf8a614efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461481234,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":549,"tdur":550,"tts":2432778},
-{"pid":27369,"tid":27369,"ts":326461481234,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":549,"tdur":519,"tts":2432809},
-{"pid":27369,"tid":27369,"ts":326461481295,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":458,"tdur":458,"tts":2432839},
-{"pid":27369,"tid":27369,"ts":326461481569,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2433114},
-{"pid":27369,"tid":27369,"ts":326461481600,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2433145},
-{"pid":27369,"tid":27369,"ts":326461481600,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2433145,"id":"0xaf8a614ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461481692,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2433236},
-{"pid":27369,"tid":27369,"ts":326461481753,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2433297},
-{"pid":27369,"tid":27369,"ts":326461481844,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2433389},
-{"pid":27369,"tid":27369,"ts":326461481905,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2433450},
-{"pid":27369,"tid":27369,"ts":326461481936,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2433480,"id":"0xaf8a614ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461481936,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2380,"tdur":2076,"tts":2433480},
-{"pid":27369,"tid":27369,"ts":326461481966,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2433511},
-{"pid":27369,"tid":27369,"ts":326461481966,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2320,"tdur":2014,"tts":2433511},
-{"pid":27369,"tid":27369,"ts":326461481997,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":123},"dur":61,"tdur":61,"tts":2433541},
-{"pid":27369,"tid":27369,"ts":326461481997,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2433541},
-{"pid":27369,"tid":27369,"ts":326461482058,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1160,"tdur":855,"tts":2433602},
-{"pid":27369,"tid":27369,"ts":326461482088,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2433633,"id":"0x30000008b"},
-{"pid":27369,"tid":27369,"ts":326461482088,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2433633},
-{"pid":27369,"tid":27369,"ts":326461482119,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2433663},
-{"pid":27369,"tid":27369,"ts":326461482119,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1068,"tdur":732,"tts":2433694},
-{"pid":27369,"tid":27369,"ts":326461482363,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2433908},
-{"pid":27369,"tid":27369,"ts":326461482394,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2433938},
-{"pid":27369,"tid":27369,"ts":326461482394,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2433938},
-{"pid":27369,"tid":27369,"ts":326461482424,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2433969},
-{"pid":27369,"tid":27369,"ts":326461482455,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2433999},
-{"pid":27369,"tid":27369,"ts":326461482455,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2433999},
-{"pid":27369,"tid":27369,"ts":326461482485,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2434030},
-{"pid":27369,"tid":27369,"ts":326461482485,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2434060},
-{"pid":27369,"tid":27369,"ts":326461482516,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2434060},
-{"pid":27369,"tid":27369,"ts":326461482546,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2434091},
-{"pid":27369,"tid":27369,"ts":326461482546,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2434091},
-{"pid":27369,"tid":27369,"ts":326461482577,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2434121},
-{"pid":27369,"tid":27369,"ts":326461482607,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9534},"dur":61,"tdur":61,"tts":2434152},
-{"pid":27369,"tid":27369,"ts":326461482607,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2434152},
-{"pid":27369,"tid":27369,"ts":326461482638,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2434182,"id":"0xaf8a6e90febbc614"},
-{"pid":27369,"tid":27369,"ts":326461482699,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":427,"tdur":122,"tts":2434243},
-{"pid":27369,"tid":27369,"ts":326461482699,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2434243,"id":"0xaf8a6e91febbc614"},
-{"pid":27369,"tid":27369,"ts":326461483065,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2434304,"id":"0xaf8a6e92febbc614"},
-{"pid":27369,"tid":27369,"ts":326461483218,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2434457},
-{"pid":27369,"tid":27407,"ts":326461471620,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1854723,"id":"0xaf8a6e96febbc614"},
-{"pid":27369,"tid":27407,"ts":326461471650,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":214,"tdur":92,"tts":1854753},
-{"pid":27369,"tid":27407,"ts":326461471650,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1854784,"id":"0xba463502"},
-{"pid":27369,"tid":27407,"ts":326461471650,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":0,"tts":1854784},
-{"pid":27369,"tid":27407,"ts":326461472139,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1854906,"id":"0xaf8a6e97febbc614"},
-{"pid":27369,"tid":27407,"ts":326461472139,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1854906},
-{"pid":27369,"tid":27407,"ts":326461472139,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1854906,"id":"0xba463602"},
-{"pid":27369,"tid":27407,"ts":326461477144,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1855028},
-{"pid":27369,"tid":27407,"ts":326461477175,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1855058},
-{"pid":27369,"tid":27407,"ts":326461477205,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1855089,"id":"0xccc59602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461477205,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1855089,"id":"0xaf8a614dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461480837,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":275,"tdur":245,"tts":1855302},
-{"pid":27369,"tid":27407,"ts":326461480929,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":184,"tts":1855363},
-{"pid":27369,"tid":27407,"ts":326461480929,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1855363,"id":"0xccc59902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461480990,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1855424,"id":"0xaf8a614efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461482699,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1855638,"id":"0xaf8a6e90febbc614"},
-{"pid":27369,"tid":27407,"ts":326461482729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1855669},
-{"pid":27369,"tid":27407,"ts":326461482729,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1855669,"id":"0xba463702"},
-{"pid":27369,"tid":27407,"ts":326461482790,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1855730,"id":"0xaf8a6e91febbc614"},
-{"pid":27369,"tid":27407,"ts":326461482790,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1855730},
-{"pid":27369,"tid":27407,"ts":326461482821,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1855760,"id":"0xba463806"},
-{"pid":27369,"tid":27407,"ts":326461482973,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":61,"tts":1855852},
-{"pid":27369,"tid":27407,"ts":326461483004,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":1855852},
-{"pid":27369,"tid":27407,"ts":326461483034,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1855882,"id":"0xc4c1cf0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461483126,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1855943,"id":"0xaf8a6e92febbc614"},
-{"pid":27369,"tid":27407,"ts":326461483126,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":31,"tdur":0,"tts":1855974},
-{"pid":27369,"tid":27407,"ts":326461483492,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856065,"id":"0xaf8a6e93febbc614"},
-{"pid":27369,"tid":27407,"ts":326461483492,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1856065},
-{"pid":27369,"tid":27407,"ts":326461483523,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1856096,"id":"0xba463902"},
-{"pid":27369,"tid":27407,"ts":326461484255,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856187,"id":"0xaf8a6eacfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461484286,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1856218},
-{"pid":27369,"tid":27407,"ts":326461484286,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1856218,"id":"0xba463a02"},
-{"pid":27369,"tid":27407,"ts":326461489474,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856310,"id":"0xaf8a6eadfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461489505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1856340},
-{"pid":27369,"tid":27407,"ts":326461489535,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1856371,"id":"0xba463b02"},
-{"pid":27369,"tid":27407,"ts":326461491489,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1856493},
-{"pid":27369,"tid":27407,"ts":326461491519,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":91,"tts":1856554},
-{"pid":27369,"tid":27407,"ts":326461491550,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1856554,"id":"0xc4c1d102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461491580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1856584,"id":"0xaf8a6148feb47934"},
-{"pid":27369,"tid":27407,"ts":326461492374,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1856767,"id":"0xaf8a6eaefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461492404,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1856767},
-{"pid":27369,"tid":27407,"ts":326461492435,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1856798,"id":"0xba463c02"},
-{"pid":27369,"tid":27407,"ts":326461497226,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":153,"tts":1856981},
-{"pid":27369,"tid":27407,"ts":326461497287,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1857042},
-{"pid":27369,"tid":27407,"ts":326461497287,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1857042,"id":"0xccc59b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461497318,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1857073,"id":"0xaf8a6149feb47934"},
-{"pid":27369,"tid":27407,"ts":326461501804,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":336,"tdur":336,"tts":1857225},
-{"pid":27369,"tid":27407,"ts":326461501896,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":214,"tdur":213,"tts":1857317},
-{"pid":27369,"tid":27407,"ts":326461501927,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1857347,"id":"0xccc59e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461501957,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1857378,"id":"0xaf8a614afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461511388,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1857652,"id":"0xaf8a6eaffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461511388,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1857652},
-{"pid":27369,"tid":27407,"ts":326461511418,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1857683,"id":"0xba463d02"},
-{"pid":27369,"tid":27407,"ts":326461511510,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1857775,"id":"0xaf8a6ea8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461511510,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":30,"tts":1857775},
-{"pid":27369,"tid":27407,"ts":326461511510,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1857775,"id":"0xba463e06"},
-{"pid":27369,"tid":27407,"ts":326461511693,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1857866},
-{"pid":27369,"tid":27407,"ts":326461511724,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":91,"tdur":61,"tts":1857927},
-{"pid":27369,"tid":27407,"ts":326461511754,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1857927,"id":"0xc4c1d30a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461511937,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1858080,"id":"0xaf8a6ea9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461511968,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":30,"tdur":31,"tts":1858110},
-{"pid":27369,"tid":27407,"ts":326461512517,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1858263,"id":"0xaf8a6eaafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461512517,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":92,"tts":1858293},
-{"pid":27369,"tid":27407,"ts":326461512548,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1858293,"id":"0xba463f02"},
-{"pid":27369,"tid":27369,"ts":326461483248,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2434488},
-{"pid":27369,"tid":27369,"ts":326461483248,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2434488},
-{"pid":27369,"tid":27369,"ts":326461483279,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":123},"dur":30,"tdur":31,"tts":2434518},
-{"pid":27369,"tid":27369,"ts":326461483309,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":123},"dur":31,"tdur":0,"tts":2434549},
-{"pid":27369,"tid":27369,"ts":326461483340,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":123},"tts":2434579},
-{"pid":27369,"tid":27369,"ts":326461483340,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2434579},
-{"pid":27369,"tid":27369,"ts":326461483340,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2434579},
-{"pid":27369,"tid":27369,"ts":326461483370,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2434610},
-{"pid":27369,"tid":27369,"ts":326461483401,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2434640},
-{"pid":27369,"tid":27369,"ts":326461483431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2434671,"id":"0xaf8a6e93febbc614"},
-{"pid":27369,"tid":27369,"ts":326461483492,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":793,"tts":2434732},
-{"pid":27369,"tid":27369,"ts":326461483523,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":123},"dur":152,"tdur":153,"tts":2434762},
-{"pid":27369,"tid":27369,"ts":326461483523,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2434762},
-{"pid":27369,"tid":27369,"ts":326461483553,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2434793},
-{"pid":27369,"tid":27369,"ts":326461483553,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2434793},
-{"pid":27369,"tid":27369,"ts":326461483553,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2434793,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461483584,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2434823},
-{"pid":27369,"tid":27369,"ts":326461483675,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2434915},
-{"pid":27369,"tid":27369,"ts":326461483675,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":397,"tts":2434915},
-{"pid":27369,"tid":27369,"ts":326461483706,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2434945},
-{"pid":27369,"tid":27369,"ts":326461483706,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":336,"tts":2434945},
-{"pid":27369,"tid":27369,"ts":326461483736,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2434976},
-{"pid":27369,"tid":27369,"ts":326461483767,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":275,"tdur":275,"tts":2435006},
-{"pid":27369,"tid":27369,"ts":326461484072,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2435312,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461484133,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2435373,"id":"0x30000008b"},
-{"pid":27369,"tid":27369,"ts":326461484133,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2435373},
-{"pid":27369,"tid":27369,"ts":326461484164,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13788},"dur":61,"tdur":61,"tts":2435403},
-{"pid":27369,"tid":27369,"ts":326461484164,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2435403},
-{"pid":27369,"tid":27369,"ts":326461484194,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2435434,"id":"0xaf8a6eacfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461484255,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2435495},
-{"pid":27369,"tid":27369,"ts":326461484255,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2435495},
-{"pid":27369,"tid":27369,"ts":326461484377,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2435617},
-{"pid":27369,"tid":27369,"ts":326461487368,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2435830},
-{"pid":27369,"tid":27369,"ts":326461488101,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2436410},
-{"pid":27369,"tid":27369,"ts":326461488192,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2436502},
-{"pid":27369,"tid":27369,"ts":326461488345,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":1526,"tdur":275,"tts":2436654},
-{"pid":27369,"tid":27369,"ts":326461481000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2436685,"id":"0x30000008d"},
-{"pid":27369,"tid":27369,"ts":326461488406,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902029},"tts":2436715,"id":"0x30000008d"},
-{"pid":27369,"tid":27369,"ts":326461488406,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":1465,"tdur":214,"tts":2436715},
-{"pid":27369,"tid":27369,"ts":326461488437,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2436746,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461488437,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":1434,"tdur":183,"tts":2436746},
-{"pid":27369,"tid":27369,"ts":326461488467,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":1404,"tdur":152,"tts":2436777},
-{"pid":27369,"tid":27369,"ts":326461488498,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":1342,"tdur":92,"tts":2436807},
-{"pid":27369,"tid":27369,"ts":326461488528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2436838,"id":"0xaf8a6eadfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461489840,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2436899,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461489840,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2436899,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461489902,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2436960},
-{"pid":27369,"tid":27369,"ts":326461492191,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2437479},
-{"pid":27369,"tid":27369,"ts":326461492252,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":2437509},
-{"pid":27369,"tid":27369,"ts":326461492282,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461486841},"dur":92,"tdur":91,"tts":2437540},
-{"pid":27369,"tid":27369,"ts":326461492313,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2437570},
-{"pid":27369,"tid":27369,"ts":326461492313,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2437570,"id":"0xaf8a6eaefebbc614"},
-{"pid":27369,"tid":27369,"ts":326461492435,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2437692},
-{"pid":27369,"tid":27369,"ts":326461497013,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2441141},
-{"pid":27369,"tid":27369,"ts":326461497135,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2441263},
-{"pid":27369,"tid":27369,"ts":326461497135,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2441263,"id":"0xaf8a6148feb47934"},
-{"pid":27369,"tid":27369,"ts":326461497165,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2441294},
-{"pid":27369,"tid":27369,"ts":326461497196,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2441324},
-{"pid":27369,"tid":27369,"ts":326461497196,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2441324},
-{"pid":27369,"tid":27369,"ts":326461497318,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2441446},
-{"pid":27369,"tid":27369,"ts":326461497440,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2441568},
-{"pid":27369,"tid":27369,"ts":326461497471,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2441599,"id":"0xaf8a6149feb47934"},
-{"pid":27369,"tid":27369,"ts":326461497471,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":2441599},
-{"pid":27369,"tid":27369,"ts":326461497471,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":152,"tts":2441599},
-{"pid":27369,"tid":27369,"ts":326461497532,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2441660,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461497562,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2441690,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461497562,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2441690},
-{"pid":27369,"tid":27369,"ts":326461497562,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":31,"tts":2441690},
-{"pid":27369,"tid":27369,"ts":326461497593,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2441721,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461497684,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2441812},
-{"pid":27369,"tid":27369,"ts":326461503086,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2442148},
-{"pid":27369,"tid":27369,"ts":326461503117,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2442179,"id":"0xaf8a614afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461503117,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":7264,"tdur":763,"tts":2442179},
-{"pid":27369,"tid":27369,"ts":326461503117,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":7264,"tdur":763,"tts":2442179},
-{"pid":27369,"tid":27369,"ts":326461503178,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":7203,"tdur":702,"tts":2442240},
-{"pid":27369,"tid":27369,"ts":326461503544,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":153,"tdur":153,"tts":2442606},
-{"pid":27369,"tid":27369,"ts":326461503575,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":122,"tdur":123,"tts":2442636},
-{"pid":27369,"tid":27369,"ts":326461503605,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2442667,"id":"0xaf8a614bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461503758,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2442820},
-{"pid":27369,"tid":27369,"ts":326461505436,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2442881},
-{"pid":27369,"tid":27369,"ts":326461505436,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":4914,"tdur":0,"tts":2442881},
-{"pid":27369,"tid":27369,"ts":326461510503,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2443064},
-{"pid":27369,"tid":27369,"ts":326461510655,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2443216},
-{"pid":27369,"tid":27369,"ts":326461510686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2443247,"id":"0xaf8a614bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461510686,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":4151,"tdur":3479,"tts":2443247},
-{"pid":27369,"tid":27369,"ts":326461510716,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2443277},
-{"pid":27369,"tid":27369,"ts":326461510716,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":4060,"tdur":3388,"tts":2443277},
-{"pid":27369,"tid":27369,"ts":326461510747,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":124},"dur":91,"tdur":91,"tts":2443308},
-{"pid":27369,"tid":27369,"ts":326461510777,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2443338},
-{"pid":27369,"tid":27369,"ts":326461510838,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1374,"tdur":1008,"tts":2443399},
-{"pid":27369,"tid":27369,"ts":326461510869,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2443430,"id":"0x30000008c"},
-{"pid":27369,"tid":27369,"ts":326461510869,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2443430},
-{"pid":27369,"tid":27369,"ts":326461510900,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2443460},
-{"pid":27369,"tid":27369,"ts":326461510930,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1190,"tdur":824,"tts":2443491},
-{"pid":27369,"tid":27369,"ts":326461511113,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2443705},
-{"pid":27369,"tid":27369,"ts":326461511174,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2443735},
-{"pid":27369,"tid":27369,"ts":326461511174,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2443735},
-{"pid":27369,"tid":27369,"ts":326461511205,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2443766},
-{"pid":27369,"tid":27369,"ts":326461511205,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":2443796},
-{"pid":27369,"tid":27369,"ts":326461511235,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2443796},
-{"pid":27369,"tid":27369,"ts":326461511266,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":13806},"dur":91,"tdur":91,"tts":2443827},
-{"pid":27369,"tid":27369,"ts":326461511266,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":91,"tdur":61,"tts":2443857},
-{"pid":27369,"tid":27369,"ts":326461511296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2443857,"id":"0xaf8a6eaffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461511357,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":580,"tdur":183,"tts":2443918},
-{"pid":27369,"tid":27369,"ts":326461511388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2443949,"id":"0xaf8a6ea8febbc614"},
-{"pid":27369,"tid":27369,"ts":326461511846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2444071,"id":"0xaf8a6ea9febbc614"},
-{"pid":27369,"tid":27369,"ts":326461512151,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2444346},
-{"pid":27369,"tid":27369,"ts":326461512212,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":2444407},
-{"pid":27369,"tid":27369,"ts":326461512242,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":123,"tdur":122,"tts":2444437},
-{"pid":27369,"tid":27369,"ts":326461512273,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":124},"dur":30,"tdur":30,"tts":2444468},
-{"pid":27369,"tid":27369,"ts":326461512303,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":124},"dur":31,"tdur":31,"tts":2444498},
-{"pid":27369,"tid":27369,"ts":326461512334,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":124},"tts":2444529},
-{"pid":27369,"tid":27369,"ts":326461512334,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2444529},
-{"pid":27369,"tid":27369,"ts":326461512334,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2444559},
-{"pid":27369,"tid":27369,"ts":326461512365,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2444559},
-{"pid":27369,"tid":27369,"ts":326461512395,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2444620},
-{"pid":27369,"tid":27369,"ts":326461512426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2444620,"id":"0xaf8a6eaafebbc614"},
-{"pid":27369,"tid":27369,"ts":326461512548,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":2228,"tdur":1893,"tts":2444742},
-{"pid":27369,"tid":27369,"ts":326461512578,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":124},"dur":733,"tdur":427,"tts":2444773},
-{"pid":27369,"tid":27369,"ts":326461512609,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":457,"tdur":122,"tts":2444834},
-{"pid":27369,"tid":27369,"ts":326461512609,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":335,"tdur":0,"tts":2444834},
-{"pid":27369,"tid":27369,"ts":326461512975,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":61,"tts":2444864},
-{"pid":27369,"tid":27369,"ts":326461512975,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2444895},
-{"pid":27369,"tid":27369,"ts":326461513036,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2444925,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461513097,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2444987},
-{"pid":27369,"tid":27369,"ts":326461513311,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2445200},
-{"pid":27369,"tid":27369,"ts":326461513311,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":1037,"tdur":1038,"tts":2445200},
-{"pid":27369,"tid":27369,"ts":326461513341,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2445231},
-{"pid":27369,"tid":27369,"ts":326461513341,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":977,"tdur":976,"tts":2445231},
-{"pid":27369,"tid":27369,"ts":326461513372,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2445261},
-{"pid":27369,"tid":27369,"ts":326461513463,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":824,"tdur":824,"tts":2445353},
-{"pid":27369,"tid":27369,"ts":326461514318,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2446207,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461514409,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2446299,"id":"0x30000008c"},
-{"pid":27369,"tid":27369,"ts":326461514440,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":305,"tdur":275,"tts":2446329},
-{"pid":27369,"tid":27369,"ts":326461514470,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":1186},"dur":184,"tdur":153,"tts":2446390},
-{"pid":27369,"tid":27369,"ts":326461514531,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":2446421},
-{"pid":27369,"tid":27369,"ts":326461514562,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2446451,"id":"0xaf8a6eabfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461514654,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":61,"tdur":61,"tts":2446543},
-{"pid":27369,"tid":27369,"ts":326461514684,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2446574},
-{"pid":27369,"tid":27369,"ts":326461515020,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2446940},
-{"pid":27369,"tid":27369,"ts":326461515233,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2447123},
-{"pid":27369,"tid":27369,"ts":326461516119,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2448008},
-{"pid":27369,"tid":27369,"ts":326461516210,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2448100},
-{"pid":27369,"tid":27369,"ts":326461516302,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":488,"tdur":458,"tts":2448191},
-{"pid":27369,"tid":27369,"ts":326461498000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2448252,"id":"0x30000008e"},
-{"pid":27369,"tid":27369,"ts":326461516363,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902030},"tts":2448283,"id":"0x30000008e"},
-{"pid":27369,"tid":27369,"ts":326461516393,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":366,"tdur":336,"tts":2448313},
-{"pid":27369,"tid":27369,"ts":326461516454,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2448344,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461516454,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":305,"tdur":275,"tts":2448374},
-{"pid":27369,"tid":27369,"ts":326461516485,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":244,"tdur":213,"tts":2448405},
-{"pid":27369,"tid":27369,"ts":326461516546,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":122,"tts":2448435},
-{"pid":27369,"tid":27369,"ts":326461516576,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2448496,"id":"0xaf8a6ea4febbc614"},
-{"pid":27369,"tid":27369,"ts":326461516668,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2448557,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461516698,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2448588,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461516790,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2448710},
-{"pid":27369,"tid":27369,"ts":326461517522,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2449046},
-{"pid":27369,"tid":27369,"ts":326461517614,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":214,"tts":2449137},
-{"pid":27369,"tid":27369,"ts":326461517645,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461503522},"dur":152,"tdur":152,"tts":2449168},
-{"pid":27369,"tid":27369,"ts":326461517675,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2449198},
-{"pid":27369,"tid":27369,"ts":326461517706,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2449259,"id":"0xaf8a6ea5febbc614"},
-{"pid":27369,"tid":27369,"ts":326461517858,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2449381},
-{"pid":27369,"tid":27369,"ts":326461525214,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2452403},
-{"pid":27369,"tid":27369,"ts":326461525427,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2452617},
-{"pid":27369,"tid":27369,"ts":326461525946,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2453135},
-{"pid":27369,"tid":27369,"ts":326461526007,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":123,"tts":2453196},
-{"pid":27369,"tid":27369,"ts":326461526160,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":2453349},
-{"pid":27369,"tid":27369,"ts":326461515000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2453380,"id":"0x30000008f"},
-{"pid":27369,"tid":27369,"ts":326461526190,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902031},"tts":2453380,"id":"0x30000008f"},
-{"pid":27369,"tid":27369,"ts":326461526190,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2453380},
-{"pid":27369,"tid":27369,"ts":326461526221,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2453410,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461526251,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2453441},
-{"pid":27369,"tid":27369,"ts":326461526526,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2453715},
-{"pid":27369,"tid":27369,"ts":326461526556,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":152,"tts":2453746},
-{"pid":27369,"tid":27369,"ts":326461526587,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461520204},"dur":92,"tdur":92,"tts":2453776},
-{"pid":27369,"tid":27369,"ts":326461526587,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2453776},
-{"pid":27369,"tid":27369,"ts":326461526618,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2453807,"id":"0xaf8a6ea6febbc614"},
-{"pid":27369,"tid":27369,"ts":326461526709,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2453898},
-{"pid":27369,"tid":27369,"ts":326461539161,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2456737},
-{"pid":27369,"tid":27369,"ts":326461539741,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2457164},
-{"pid":27369,"tid":27369,"ts":326461539833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2457195,"id":"0xaf8a6144feb47934"},
-{"pid":27369,"tid":27369,"ts":326461539863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2457225},
-{"pid":27369,"tid":27369,"ts":326461539924,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2457286},
-{"pid":27369,"tid":27369,"ts":326461539955,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2457317},
-{"pid":27369,"tid":27369,"ts":326461540046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461527},"tts":2457408,"id":"0xaf8a60adfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461540046,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ui/events/gesture_detection/gesture_detector.cc","src_func":"StartTimeout"},"dur":31,"tdur":0,"tts":2457408},
-{"pid":27369,"tid":27369,"ts":326461540108,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2457469},
-{"pid":27369,"tid":27369,"ts":326461540199,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2457561},
-{"pid":27369,"tid":27369,"ts":326461540230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2457591,"id":"0xaf8a6145feb47934"},
-{"pid":27369,"tid":27369,"ts":326461540230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1098,"tdur":458,"tts":2457591},
-{"pid":27369,"tid":27369,"ts":326461540230,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":1098,"tdur":428,"tts":2457591},
-{"pid":27369,"tid":27369,"ts":326461540291,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2457652,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461540291,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2457652,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27407,"ts":326461514654,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1858477,"id":"0xaf8a6eabfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461514684,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":1858538},
-{"pid":27369,"tid":27407,"ts":326461514715,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1858538,"id":"0xba464002"},
-{"pid":27369,"tid":27407,"ts":326461516698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1858721,"id":"0xaf8a6ea4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461516729,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1858751},
-{"pid":27369,"tid":27407,"ts":326461516759,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1858782,"id":"0xba464102"},
-{"pid":27369,"tid":27407,"ts":326461517828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1858995,"id":"0xaf8a6ea5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461517858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1859026},
-{"pid":27369,"tid":27407,"ts":326461517889,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1859056,"id":"0xba464202"},
-{"pid":27369,"tid":27407,"ts":326461526343,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":153,"tts":1859209},
-{"pid":27369,"tid":27407,"ts":326461526404,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1859270},
-{"pid":27369,"tid":27407,"ts":326461526404,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1859270,"id":"0xc4c1d602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461526434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1859301,"id":"0xaf8a6144feb47934"},
-{"pid":27369,"tid":27407,"ts":326461526679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1859484,"id":"0xaf8a6ea6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461526709,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1859484},
-{"pid":27369,"tid":27407,"ts":326461526709,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1859484,"id":"0xba464302"},
-{"pid":27369,"tid":27407,"ts":326461530799,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1859667},
-{"pid":27369,"tid":27407,"ts":326461530829,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1859697},
-{"pid":27369,"tid":27407,"ts":326461530829,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1859728,"id":"0xccc5a102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461530890,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1859758,"id":"0xaf8a6145feb47934"},
-{"pid":27369,"tid":27407,"ts":326461533759,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1859880},
-{"pid":27369,"tid":27407,"ts":326461533851,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1859972},
-{"pid":27369,"tid":27407,"ts":326461533851,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1859972,"id":"0xccc5a402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461533912,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1860033,"id":"0xaf8a6146feb47934"},
-{"pid":27369,"tid":27407,"ts":326461540840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860247,"id":"0xaf8a6ea7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461540871,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1860277},
-{"pid":27369,"tid":27407,"ts":326461540871,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1860308,"id":"0xba464402"},
-{"pid":27369,"tid":27407,"ts":326461541542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860491,"id":"0xaf8a6ea0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461541542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1860491},
-{"pid":27369,"tid":27407,"ts":326461541573,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1860521,"id":"0xba464502"},
-{"pid":27369,"tid":27407,"ts":326461544258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860643,"id":"0xaf8a6ea1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461544258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":62,"tts":1860643},
-{"pid":27369,"tid":27407,"ts":326461544289,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1860674,"id":"0xba464602"},
-{"pid":27369,"tid":27407,"ts":326461545021,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860766,"id":"0xaf8a6ea2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461545052,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1860796},
-{"pid":27369,"tid":27407,"ts":326461545052,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1860796,"id":"0xba464702"},
-{"pid":27369,"tid":27407,"ts":326461546425,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1860918,"id":"0xaf8a6ea3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461546456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1860949},
-{"pid":27369,"tid":27407,"ts":326461546456,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1860949,"id":"0xba464802"},
-{"pid":27369,"tid":27407,"ts":326461550607,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1861040},
-{"pid":27369,"tid":27407,"ts":326461550637,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":183,"tdur":152,"tts":1861071},
-{"pid":27369,"tid":27407,"ts":326461550668,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1861101,"id":"0xccc5a602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461550668,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1861101,"id":"0xaf8a6140feb47934"},
-{"pid":27369,"tid":27407,"ts":326461551003,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1861284},
-{"pid":27369,"tid":27407,"ts":326461551034,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":91,"tts":1861315},
-{"pid":27369,"tid":27407,"ts":326461551034,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1861345,"id":"0xc4c1d902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461551064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1861345,"id":"0xaf8a6141feb47934"},
-{"pid":27369,"tid":27407,"ts":326461551309,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1861498,"id":"0xaf8a6ebcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461551309,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1861498},
-{"pid":27369,"tid":27407,"ts":326461551339,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1861529,"id":"0xba464902"},
-{"pid":27369,"tid":27407,"ts":326461554025,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1861620},
-{"pid":27369,"tid":27407,"ts":326461554086,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1861681},
-{"pid":27369,"tid":27407,"ts":326461554086,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1861681,"id":"0xccc5a802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461554116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1861742,"id":"0xaf8a6142feb47934"},
-{"pid":27369,"tid":27407,"ts":326461555795,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1861956,"id":"0xaf8a6ebdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461555826,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1861986},
-{"pid":27369,"tid":27407,"ts":326461555826,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1861986,"id":"0xba464a02"},
-{"pid":27369,"tid":27407,"ts":326461560526,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1862139,"id":"0xaf8a6ebefebbc614"},
-{"pid":27369,"tid":27407,"ts":326461560526,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":62,"tts":1862169},
-{"pid":27369,"tid":27407,"ts":326461560556,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1862169,"id":"0xba464b02"},
-{"pid":27369,"tid":27407,"ts":326461561624,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1862292,"id":"0xaf8a6ebffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461561655,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1862322},
-{"pid":27369,"tid":27407,"ts":326461561655,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1862322,"id":"0xba464c02"},
-{"pid":27369,"tid":27407,"ts":326461565287,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":1862414},
-{"pid":27369,"tid":27369,"ts":326461540321,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":977,"tdur":336,"tts":2457683},
-{"pid":27369,"tid":27369,"ts":326461540321,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":977,"tdur":305,"tts":2457683},
-{"pid":27369,"tid":27369,"ts":326461540352,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2457714,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461540382,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":885,"tdur":244,"tts":2457744},
-{"pid":27369,"tid":27369,"ts":326461540413,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":854,"tdur":213,"tts":2457775},
-{"pid":27369,"tid":27369,"ts":326461540443,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":763,"tdur":122,"tts":2457805},
-{"pid":27369,"tid":27369,"ts":326461540504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2457866,"id":"0xaf8a6ea7febbc614"},
-{"pid":27369,"tid":27369,"ts":326461541206,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2457927,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461541237,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2457958,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461541359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326461533},"tts":2458080,"id":"0xaf8a60b5feb47934"},
-{"pid":27369,"tid":27369,"ts":326461541359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/visitedlink/browser/visitedlink_event_listener.cc","src_func":"Add"},"dur":305,"tdur":122,"tts":2458110},
-{"pid":27369,"tid":27369,"ts":326461541420,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":91,"tts":2458141},
-{"pid":27369,"tid":27369,"ts":326461541450,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2458171,"id":"0xaf8a6ea0febbc614"},
-{"pid":27369,"tid":27369,"ts":326461541786,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2458354},
-{"pid":27369,"tid":27369,"ts":326461541908,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2458477},
-{"pid":27369,"tid":27369,"ts":326461541908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2458477,"id":"0xaf8a6146feb47934"},
-{"pid":27369,"tid":27369,"ts":326461541908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":885,"tdur":885,"tts":2458477},
-{"pid":27369,"tid":27369,"ts":326461541939,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":824,"tdur":824,"tts":2458507},
-{"pid":27369,"tid":27369,"ts":326461541969,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":794,"tdur":793,"tts":2458538},
-{"pid":27369,"tid":27369,"ts":326461542397,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":183,"tdur":183,"tts":2458965},
-{"pid":27369,"tid":27369,"ts":326461542427,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":153,"tdur":122,"tts":2458995},
-{"pid":27369,"tid":27369,"ts":326461542458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2459056,"id":"0xaf8a6147feb47934"},
-{"pid":27369,"tid":27369,"ts":326461542641,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2459209},
-{"pid":27369,"tid":27369,"ts":326461542702,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2459270},
-{"pid":27369,"tid":27369,"ts":326461542946,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2459514},
-{"pid":27369,"tid":27369,"ts":326461543068,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2459636},
-{"pid":27369,"tid":27369,"ts":326461543099,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2459667,"id":"0xaf8a6147feb47934"},
-{"pid":27369,"tid":27369,"ts":326461543099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1983,"tdur":1953,"tts":2459667},
-{"pid":27369,"tid":27369,"ts":326461543099,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2459667},
-{"pid":27369,"tid":27369,"ts":326461543129,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1953,"tdur":1923,"tts":2459697},
-{"pid":27369,"tid":27369,"ts":326461543160,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":125},"dur":91,"tdur":92,"tts":2459697},
-{"pid":27369,"tid":27369,"ts":326461543190,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2459728},
-{"pid":27369,"tid":27369,"ts":326461543251,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":549,"tdur":549,"tts":2459789},
-{"pid":27369,"tid":27369,"ts":326461543282,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2459819,"id":"0x30000008d"},
-{"pid":27369,"tid":27369,"ts":326461543282,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2459819},
-{"pid":27369,"tid":27369,"ts":326461543312,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2459850},
-{"pid":27369,"tid":27369,"ts":326461543343,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":396,"tdur":397,"tts":2459880},
-{"pid":27369,"tid":27369,"ts":326461543739,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2460277},
-{"pid":27369,"tid":27369,"ts":326461543800,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2460338},
-{"pid":27369,"tid":27369,"ts":326461543831,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":275,"tdur":244,"tts":2460369},
-{"pid":27369,"tid":27369,"ts":326461543862,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":125},"dur":61,"tdur":61,"tts":2460399},
-{"pid":27369,"tid":27369,"ts":326461543923,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":125},"dur":61,"tdur":31,"tts":2460460},
-{"pid":27369,"tid":27369,"ts":326461543984,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":125},"tts":2460521},
-{"pid":27369,"tid":27369,"ts":326461544014,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2460552},
-{"pid":27369,"tid":27369,"ts":326461544014,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2460552},
-{"pid":27369,"tid":27369,"ts":326461544045,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":2460613},
-{"pid":27369,"tid":27369,"ts":326461544106,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":92,"tts":2460674},
-{"pid":27369,"tid":27369,"ts":326461544167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2460705,"id":"0xaf8a6ea1febbc614"},
-{"pid":27369,"tid":27369,"ts":326461544258,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":794,"tts":2460796},
-{"pid":27369,"tid":27369,"ts":326461544289,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":125},"dur":152,"tdur":152,"tts":2460827},
-{"pid":27369,"tid":27369,"ts":326461544289,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2460827},
-{"pid":27369,"tid":27369,"ts":326461544289,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2460827},
-{"pid":27369,"tid":27369,"ts":326461544319,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2460857},
-{"pid":27369,"tid":27369,"ts":326461544319,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2460857,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461544350,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2460888},
-{"pid":27369,"tid":27369,"ts":326461544441,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2460979},
-{"pid":27369,"tid":27369,"ts":326461544441,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":397,"tts":2460979},
-{"pid":27369,"tid":27369,"ts":326461544472,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2461010},
-{"pid":27369,"tid":27369,"ts":326461544472,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":335,"tts":2461010},
-{"pid":27369,"tid":27369,"ts":326461544502,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2461040},
-{"pid":27369,"tid":27369,"ts":326461544533,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":244,"tts":2461071},
-{"pid":27369,"tid":27369,"ts":326461544838,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2461376,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461544899,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2461437,"id":"0x30000008d"},
-{"pid":27369,"tid":27369,"ts":326461544899,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2461437},
-{"pid":27369,"tid":27369,"ts":326461544930,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4948},"dur":91,"tdur":91,"tts":2461468},
-{"pid":27369,"tid":27369,"ts":326461544960,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":2461498},
-{"pid":27369,"tid":27369,"ts":326461544960,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2461498,"id":"0xaf8a6ea2febbc614"},
-{"pid":27369,"tid":27369,"ts":326461545021,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2461559},
-{"pid":27369,"tid":27369,"ts":326461545021,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2461559},
-{"pid":27369,"tid":27369,"ts":326461545174,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2461712},
-{"pid":27369,"tid":27369,"ts":326461545265,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2461834},
-{"pid":27369,"tid":27369,"ts":326461545723,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2462261},
-{"pid":27369,"tid":27369,"ts":326461545784,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2462322},
-{"pid":27369,"tid":27369,"ts":326461545906,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":2462444},
-{"pid":27369,"tid":27369,"ts":326461531000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2462475,"id":"0x300000090"},
-{"pid":27369,"tid":27369,"ts":326461545937,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902032},"tts":2462475,"id":"0x300000090"},
-{"pid":27369,"tid":27369,"ts":326461545967,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":0,"tts":2462505},
-{"pid":27369,"tid":27369,"ts":326461545967,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2462505,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461545998,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2462536},
-{"pid":27369,"tid":27369,"ts":326461546273,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2462810},
-{"pid":27369,"tid":27369,"ts":326461546303,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2462841},
-{"pid":27369,"tid":27369,"ts":326461546334,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461536885},"dur":61,"tdur":61,"tts":2462871},
-{"pid":27369,"tid":27369,"ts":326461546334,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2462871},
-{"pid":27369,"tid":27369,"ts":326461546364,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2462902,"id":"0xaf8a6ea3febbc614"},
-{"pid":27369,"tid":27369,"ts":326461546456,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2462994},
-{"pid":27369,"tid":27369,"ts":326461548989,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2465069},
-{"pid":27369,"tid":27369,"ts":326461549111,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2465191},
-{"pid":27369,"tid":27369,"ts":326461549172,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2465252},
-{"pid":27369,"tid":27369,"ts":326461550973,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2465527},
-{"pid":27369,"tid":27369,"ts":326461551003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2465557,"id":"0xaf8a6140feb47934"},
-{"pid":27369,"tid":27369,"ts":326461551003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2465557},
-{"pid":27369,"tid":27369,"ts":326461551003,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":336,"tdur":305,"tts":2465588},
-{"pid":27369,"tid":27369,"ts":326461551095,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2465649,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461551095,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2465649,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461551125,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":184,"tdur":183,"tts":2465679},
-{"pid":27369,"tid":27369,"ts":326461551125,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":184,"tdur":183,"tts":2465679},
-{"pid":27369,"tid":27369,"ts":326461551156,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2465710,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461551156,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":153,"tdur":122,"tts":2465740},
-{"pid":27369,"tid":27369,"ts":326461551186,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":123,"tdur":122,"tts":2465740},
-{"pid":27369,"tid":27369,"ts":326461551217,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2465771},
-{"pid":27369,"tid":27369,"ts":326461551217,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2465801,"id":"0xaf8a6ebcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461551278,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2465832,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461551278,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2465832,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461551461,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2466015},
-{"pid":27369,"tid":27369,"ts":326461551553,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2466107},
-{"pid":27369,"tid":27369,"ts":326461551553,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2466107,"id":"0xaf8a6141feb47934"},
-{"pid":27369,"tid":27369,"ts":326461551553,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2466107},
-{"pid":27369,"tid":27369,"ts":326461551614,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2466168},
-{"pid":27369,"tid":27369,"ts":326461551614,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2466168},
-{"pid":27369,"tid":27369,"ts":326461551705,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2466259},
-{"pid":27369,"tid":27369,"ts":326461554513,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2466534},
-{"pid":27369,"tid":27369,"ts":326461554971,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2466961},
-{"pid":27369,"tid":27369,"ts":326461555063,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2467022},
-{"pid":27369,"tid":27369,"ts":326461555215,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":91,"tts":2467175},
-{"pid":27369,"tid":27369,"ts":326461548031,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2467205,"id":"0x300000091"},
-{"pid":27369,"tid":27369,"ts":326461555246,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902033},"tts":2467205,"id":"0x300000091"},
-{"pid":27369,"tid":27369,"ts":326461555276,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2467236},
-{"pid":27369,"tid":27369,"ts":326461555276,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2467236,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461555337,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2467297},
-{"pid":27369,"tid":27369,"ts":326461555612,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2467541},
-{"pid":27369,"tid":27369,"ts":326461555642,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":122,"tts":2467602},
-{"pid":27369,"tid":27369,"ts":326461555673,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461553567},"dur":91,"tdur":92,"tts":2467602},
-{"pid":27369,"tid":27369,"ts":326461555703,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2467633},
-{"pid":27369,"tid":27369,"ts":326461555734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2467663,"id":"0xaf8a6ebdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461555826,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2467755},
-{"pid":27369,"tid":27369,"ts":326461558633,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2469952},
-{"pid":27369,"tid":27369,"ts":326461558755,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2470074},
-{"pid":27369,"tid":27369,"ts":326461558786,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2470105,"id":"0xaf8a6142feb47934"},
-{"pid":27369,"tid":27369,"ts":326461558786,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":641,"tdur":611,"tts":2470135},
-{"pid":27369,"tid":27369,"ts":326461558817,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":610,"tdur":611,"tts":2470135},
-{"pid":27369,"tid":27369,"ts":326461558878,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":549,"tdur":550,"tts":2470196},
-{"pid":27369,"tid":27369,"ts":326461559213,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2470532},
-{"pid":27369,"tid":27369,"ts":326461559213,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2470532},
-{"pid":27369,"tid":27369,"ts":326461559244,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2470563,"id":"0xaf8a6143feb47934"},
-{"pid":27369,"tid":27369,"ts":326461559366,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2470685},
-{"pid":27369,"tid":27369,"ts":326461559396,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2470715},
-{"pid":27369,"tid":27369,"ts":326461559488,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2470807},
-{"pid":27369,"tid":27369,"ts":326461559580,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2470898},
-{"pid":27369,"tid":27369,"ts":326461559580,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2470898,"id":"0xaf8a6143feb47934"},
-{"pid":27369,"tid":27369,"ts":326461559610,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2075,"tdur":1709,"tts":2470929},
-{"pid":27369,"tid":27369,"ts":326461559610,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2470929},
-{"pid":27369,"tid":27369,"ts":326461559641,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2044,"tdur":1679,"tts":2470959},
-{"pid":27369,"tid":27369,"ts":326461559641,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":126},"dur":61,"tdur":61,"tts":2470959},
-{"pid":27369,"tid":27369,"ts":326461559671,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2470990},
-{"pid":27369,"tid":27369,"ts":326461559702,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":488,"tdur":366,"tts":2471051},
-{"pid":27369,"tid":27369,"ts":326461559732,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2471051,"id":"0x30000008e"},
-{"pid":27369,"tid":27369,"ts":326461559732,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2471051},
-{"pid":27369,"tid":27369,"ts":326461559763,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2471081},
-{"pid":27369,"tid":27369,"ts":326461559793,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":275,"tdur":275,"tts":2471112},
-{"pid":27369,"tid":27369,"ts":326461560068,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":91,"tdur":30,"tts":2471387},
-{"pid":27369,"tid":27369,"ts":326461560068,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2471387},
-{"pid":27369,"tid":27369,"ts":326461560220,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2471417},
-{"pid":27369,"tid":27369,"ts":326461560251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":153,"tdur":122,"tts":2471448},
-{"pid":27369,"tid":27369,"ts":326461560251,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":126},"dur":92,"tdur":30,"tts":2471448},
-{"pid":27369,"tid":27369,"ts":326461560343,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":126},"dur":0,"tdur":0,"tts":2471509},
-{"pid":27369,"tid":27369,"ts":326461560343,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":126},"tts":2471509},
-{"pid":27369,"tid":27369,"ts":326461560373,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2471539},
-{"pid":27369,"tid":27369,"ts":326461560373,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2471539},
-{"pid":27369,"tid":27369,"ts":326461560404,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2471570},
-{"pid":27369,"tid":27369,"ts":326461560434,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2471600},
-{"pid":27369,"tid":27369,"ts":326461560434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2471600,"id":"0xaf8a6ebefebbc614"},
-{"pid":27369,"tid":27369,"ts":326461560526,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1129,"tdur":915,"tts":2471692},
-{"pid":27369,"tid":27369,"ts":326461560556,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":126},"dur":489,"tdur":275,"tts":2471722},
-{"pid":27369,"tid":27369,"ts":326461560556,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":275,"tdur":61,"tts":2471722},
-{"pid":27369,"tid":27369,"ts":326461560587,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":244,"tdur":30,"tts":2471753},
-{"pid":27369,"tid":27369,"ts":326461560587,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":213,"tdur":0,"tts":2471753},
-{"pid":27369,"tid":27369,"ts":326461560800,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2471753},
-{"pid":27369,"tid":27369,"ts":326461560831,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2471783,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461560861,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2471814},{"pid":27369,"tid":27369,"ts":326461561014,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2471967},
-{"pid":27369,"tid":27369,"ts":326461561045,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":396,"tdur":397,"tts":2471997},
-{"pid":27369,"tid":27369,"ts":326461561075,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2472028},
-{"pid":27369,"tid":27369,"ts":326461561075,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":335,"tts":2472028},
-{"pid":27369,"tid":27369,"ts":326461561075,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2472028},
-{"pid":27369,"tid":27369,"ts":326461561136,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":244,"tts":2472089},
-{"pid":27369,"tid":27369,"ts":326461561441,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2472394,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461561472,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2472455,"id":"0x30000008e"},
-{"pid":27369,"tid":27369,"ts":326461561502,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2472455},
-{"pid":27369,"tid":27369,"ts":326461561533,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8710},"dur":91,"tdur":61,"tts":2472485},
-{"pid":27369,"tid":27369,"ts":326461561533,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2472485},
-{"pid":27369,"tid":27369,"ts":326461561563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2472516,"id":"0xaf8a6ebffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461561624,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2472577},
-{"pid":27369,"tid":27369,"ts":326461561624,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2472577},
-{"pid":27369,"tid":27369,"ts":326461561777,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2472730},
-{"pid":27369,"tid":27369,"ts":326461565562,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2472974},
-{"pid":27369,"tid":27369,"ts":326461565592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2472974,"id":"0xaf8a615cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461565592,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":305,"tts":2472974},
-{"pid":27369,"tid":27369,"ts":326461565623,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":275,"tts":2473004},
-{"pid":27369,"tid":27369,"ts":326461565653,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2473065,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461565684,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2473065,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461565684,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":213,"tdur":214,"tts":2473065},
-{"pid":27369,"tid":27369,"ts":326461565714,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2473096},
-{"pid":27369,"tid":27407,"ts":326461565348,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1862444},
-{"pid":27369,"tid":27407,"ts":326461565348,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1862444,"id":"0xccc5aa02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461565378,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1862475,"id":"0xaf8a615cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461565867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1862658,"id":"0xaf8a6eb8febbc614"},
-{"pid":27369,"tid":27407,"ts":326461565867,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1862658},
-{"pid":27369,"tid":27407,"ts":326461565897,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1862688,"id":"0xba464d02"},
-{"pid":27369,"tid":27407,"ts":326461566904,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1862780},
-{"pid":27369,"tid":27407,"ts":326461566935,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1862810},
-{"pid":27369,"tid":27407,"ts":326461566935,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1862810,"id":"0xc4c1dc02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461566965,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1862841,"id":"0xaf8a615dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461569102,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1863024},
-{"pid":27369,"tid":27407,"ts":326461569163,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1863085},
-{"pid":27369,"tid":27407,"ts":326461569163,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1863085,"id":"0xccc5ad02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461569193,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1863116,"id":"0xaf8a615efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461572581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1863329,"id":"0xaf8a6eb9febbc614"},
-{"pid":27369,"tid":27407,"ts":326461572612,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1863360},
-{"pid":27369,"tid":27407,"ts":326461572612,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1863360,"id":"0xba464e02"},
-{"pid":27369,"tid":27407,"ts":326461575145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1863482,"id":"0xaf8a6ebafebbc614"},
-{"pid":27369,"tid":27407,"ts":326461575175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1863512},
-{"pid":27369,"tid":27407,"ts":326461575206,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1863543,"id":"0xba464f02"},
-{"pid":27369,"tid":27407,"ts":326461575267,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1863604,"id":"0xaf8a6ebbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461575298,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1863634},
-{"pid":27369,"tid":27407,"ts":326461575298,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1863634,"id":"0xba465006"},
-{"pid":27369,"tid":27407,"ts":326461575542,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1863757},
-{"pid":27369,"tid":27407,"ts":326461575572,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":92,"tdur":61,"tts":1863787},
-{"pid":27369,"tid":27407,"ts":326461575603,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1863818,"id":"0xc4c1df0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461576274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1863970,"id":"0xaf8a6eb4febbc614"},
-{"pid":27369,"tid":27407,"ts":326461576274,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":31,"tdur":31,"tts":1863970},
-{"pid":27369,"tid":27407,"ts":326461576640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1864062,"id":"0xaf8a6eb5febbc614"},
-{"pid":27369,"tid":27407,"ts":326461576671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1864092},
-{"pid":27369,"tid":27407,"ts":326461576671,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1864092,"id":"0xba465102"},
-{"pid":27369,"tid":27407,"ts":326461577617,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1864245,"id":"0xaf8a6eb6febbc614"},
-{"pid":27369,"tid":27407,"ts":326461577617,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1864245},
-{"pid":27369,"tid":27407,"ts":326461577648,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1864275,"id":"0xba465202"},
-{"pid":27369,"tid":27407,"ts":326461579265,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1864367},
-{"pid":27369,"tid":27407,"ts":326461579326,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1864428},
-{"pid":27369,"tid":27407,"ts":326461579326,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1864428,"id":"0xccc5ae02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461579357,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1864459,"id":"0xaf8a6158feb47934"},
-{"pid":27369,"tid":27407,"ts":326461583111,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1864642},
-{"pid":27369,"tid":27407,"ts":326461583172,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1864703},
-{"pid":27369,"tid":27407,"ts":326461583172,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1864703,"id":"0xc4c1e102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461583202,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1864733,"id":"0xaf8a6159feb47934"},
-{"pid":27369,"tid":27407,"ts":326461584820,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1864886},
-{"pid":27369,"tid":27407,"ts":326461584881,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1864947},
-{"pid":27369,"tid":27407,"ts":326461584911,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1864977,"id":"0xccc5b102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461584942,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1865008,"id":"0xaf8a615afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461585034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1865099,"id":"0xaf8a6eb7febbc614"},
-{"pid":27369,"tid":27407,"ts":326461585034,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1865099},
-{"pid":27369,"tid":27407,"ts":326461585064,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1865130,"id":"0xba465302"},
-{"pid":27369,"tid":27407,"ts":326461593060,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1865283,"id":"0xaf8a6eb0febbc614"},
-{"pid":27369,"tid":27407,"ts":326461593091,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1865313},
-{"pid":27369,"tid":27407,"ts":326461593091,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1865313,"id":"0xba465402"},
-{"pid":27369,"tid":27407,"ts":326461594068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1865466,"id":"0xaf8a6eb1febbc614"},
-{"pid":27369,"tid":27407,"ts":326461594098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1865466},
-{"pid":27369,"tid":27407,"ts":326461594098,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1865466,"id":"0xba465502"},
-{"pid":27369,"tid":27407,"ts":326461594861,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1865588,"id":"0xaf8a6eb2febbc614"},
-{"pid":27369,"tid":27407,"ts":326461594892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1865618},
-{"pid":27369,"tid":27407,"ts":326461594892,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1865618,"id":"0xba465602"},
-{"pid":27369,"tid":27407,"ts":326461595105,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1865710},
-{"pid":27369,"tid":27407,"ts":326461595136,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":92,"tts":1865740},
-{"pid":27369,"tid":27407,"ts":326461595136,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1865740,"id":"0xccc5b302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461595166,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1865771,"id":"0xaf8a6154feb47934"},
-{"pid":27369,"tid":27407,"ts":326461595594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1865923,"id":"0xaf8a6eb3febbc614"},
-{"pid":27369,"tid":27407,"ts":326461595594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1865954},
-{"pid":27369,"tid":27369,"ts":326461565714,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2473096,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461565745,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2473126},
-{"pid":27369,"tid":27369,"ts":326461565745,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":91,"tts":2473157},
-{"pid":27369,"tid":27369,"ts":326461565775,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2473157},
-{"pid":27369,"tid":27369,"ts":326461565806,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2473187,"id":"0xaf8a6eb8febbc614"},
-{"pid":27369,"tid":27369,"ts":326461565836,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2473218,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461565867,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2473248,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461565958,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2473340},
-{"pid":27369,"tid":27369,"ts":326461567118,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2473493},
-{"pid":27369,"tid":27369,"ts":326461567149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2473523,"id":"0xaf8a615dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461567149,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2473523},
-{"pid":27369,"tid":27369,"ts":326461567179,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2473554},
-{"pid":27369,"tid":27369,"ts":326461567210,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2473584},
-{"pid":27369,"tid":27369,"ts":326461567271,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2473676},
-{"pid":27369,"tid":27369,"ts":326461569377,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2473828},
-{"pid":27369,"tid":27369,"ts":326461569407,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2473859,"id":"0xaf8a615efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461569407,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2473859},
-{"pid":27369,"tid":27369,"ts":326461569438,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":397,"tts":2473889},
-{"pid":27369,"tid":27369,"ts":326461569468,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":2473920},
-{"pid":27369,"tid":27369,"ts":326461569682,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2474133},
-{"pid":27369,"tid":27369,"ts":326461569773,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2474225},
-{"pid":27369,"tid":27369,"ts":326461569804,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2474256},
-{"pid":27369,"tid":27369,"ts":326461569895,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2474347},
-{"pid":27369,"tid":27369,"ts":326461570933,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2474622},
-{"pid":27369,"tid":27369,"ts":326461571666,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2475110},
-{"pid":27369,"tid":27369,"ts":326461571727,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":122,"tts":2475171},
-{"pid":27369,"tid":27369,"ts":326461571879,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":122,"tdur":122,"tts":2475324},
-{"pid":27369,"tid":27369,"ts":326461565000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2475354,"id":"0x300000092"},
-{"pid":27369,"tid":27369,"ts":326461571940,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902034},"tts":2475385,"id":"0x300000092"},
-{"pid":27369,"tid":27369,"ts":326461571971,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2475415},
-{"pid":27369,"tid":27369,"ts":326461571971,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2475415,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461572032,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2475476},
-{"pid":27369,"tid":27369,"ts":326461572398,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2475751},
-{"pid":27369,"tid":27369,"ts":326461572429,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":152,"tts":2475782},
-{"pid":27369,"tid":27369,"ts":326461572459,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461570249},"dur":92,"tdur":92,"tts":2475812},
-{"pid":27369,"tid":27369,"ts":326461572490,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2475843},
-{"pid":27369,"tid":27369,"ts":326461572520,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2475873,"id":"0xaf8a6eb9febbc614"},
-{"pid":27369,"tid":27369,"ts":326461572612,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2475965},
-{"pid":27369,"tid":27369,"ts":326461572612,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2475995,"id":"0xaf8a615ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461572673,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2476026},
-{"pid":27369,"tid":27369,"ts":326461574229,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2476239},
-{"pid":27369,"tid":27369,"ts":326461574382,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2476392},
-{"pid":27369,"tid":27369,"ts":326461574382,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2476423,"id":"0xaf8a615ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461574412,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":4701,"tdur":2227,"tts":2476423},
-{"pid":27369,"tid":27369,"ts":326461574443,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2476453},
-{"pid":27369,"tid":27369,"ts":326461574443,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":4639,"tdur":2167,"tts":2476453},
-{"pid":27369,"tid":27369,"ts":326461574473,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":127},"dur":123,"tdur":122,"tts":2476484},
-{"pid":27369,"tid":27369,"ts":326461574504,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2476514},
-{"pid":27369,"tid":27369,"ts":326461574596,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1770,"tdur":824,"tts":2476606},
-{"pid":27369,"tid":27369,"ts":326461574596,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2476606,"id":"0x30000008f"},
-{"pid":27369,"tid":27369,"ts":326461574626,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2476636},
-{"pid":27369,"tid":27369,"ts":326461574657,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2476667},
-{"pid":27369,"tid":27369,"ts":326461574687,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1648,"tdur":702,"tts":2476697},
-{"pid":27369,"tid":27369,"ts":326461574901,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2476911},
-{"pid":27369,"tid":27369,"ts":326461574931,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2476941},
-{"pid":27369,"tid":27369,"ts":326461574931,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2476941},
-{"pid":27369,"tid":27369,"ts":326461574962,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2476972},
-{"pid":27369,"tid":27369,"ts":326461574992,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2477002},
-{"pid":27369,"tid":27369,"ts":326461575023,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8725},"dur":122,"tdur":122,"tts":2477033},
-{"pid":27369,"tid":27369,"ts":326461575053,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2477063},
-{"pid":27369,"tid":27369,"ts":326461575084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2477094,"id":"0xaf8a6ebafebbc614"},
-{"pid":27369,"tid":27369,"ts":326461575145,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":1099,"tdur":153,"tts":2477155},
-{"pid":27369,"tid":27369,"ts":326461575175,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2477186,"id":"0xaf8a6ebbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461576183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2477277,"id":"0xaf8a6eb4febbc614"},
-{"pid":27369,"tid":27369,"ts":326461576335,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2477399},
-{"pid":27369,"tid":27369,"ts":326461576396,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2477460},
-{"pid":27369,"tid":27369,"ts":326461576396,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2477460},
-{"pid":27369,"tid":27369,"ts":326461576396,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":127},"dur":61,"tdur":61,"tts":2477460},
-{"pid":27369,"tid":27369,"ts":326461576457,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":127},"dur":31,"tdur":31,"tts":2477521},
-{"pid":27369,"tid":27369,"ts":326461576488,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":127},"tts":2477552},
-{"pid":27369,"tid":27369,"ts":326461576488,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2477552},
-{"pid":27369,"tid":27369,"ts":326461576488,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2477552},
-{"pid":27369,"tid":27369,"ts":326461576518,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2477582},
-{"pid":27369,"tid":27369,"ts":326461576549,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2477613},
-{"pid":27369,"tid":27369,"ts":326461576579,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2477643,"id":"0xaf8a6eb5febbc614"},
-{"pid":27369,"tid":27369,"ts":326461576671,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":2381,"tdur":854,"tts":2477735},
-{"pid":27369,"tid":27369,"ts":326461576671,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":127},"dur":183,"tdur":183,"tts":2477735},
-{"pid":27369,"tid":27369,"ts":326461576701,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":2477765},
-{"pid":27369,"tid":27369,"ts":326461576701,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2477765},
-{"pid":27369,"tid":27369,"ts":326461576701,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2477765},
-{"pid":27369,"tid":27369,"ts":326461576732,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2477796,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461576762,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2477826},
-{"pid":27369,"tid":27369,"ts":326461576854,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2477918},
-{"pid":27369,"tid":27369,"ts":326461576854,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":549,"tdur":397,"tts":2477918},
-{"pid":27369,"tid":27369,"ts":326461576885,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":183,"tdur":30,"tts":2477949},
-{"pid":27369,"tid":27369,"ts":326461576885,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":152,"tdur":0,"tts":2477949},
-{"pid":27369,"tid":27369,"ts":326461577068,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2477979},
-{"pid":27369,"tid":27369,"ts":326461577068,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2477979},
-{"pid":27369,"tid":27369,"ts":326461577129,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":214,"tts":2478040},
-{"pid":27369,"tid":27369,"ts":326461577403,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2478315,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461577464,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2478376,"id":"0x30000008f"},
-{"pid":27369,"tid":27369,"ts":326461577464,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":1588,"tdur":183,"tts":2478376},
-{"pid":27369,"tid":27369,"ts":326461577495,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12237},"dur":92,"tdur":92,"tts":2478406},
-{"pid":27369,"tid":27369,"ts":326461577526,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2478437},
-{"pid":27369,"tid":27369,"ts":326461577526,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2478437,"id":"0xaf8a6eb6febbc614"},
-{"pid":27369,"tid":27369,"ts":326461577587,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":1342,"tdur":30,"tts":2478498},
-{"pid":27369,"tid":27369,"ts":326461577587,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1342,"tdur":30,"tts":2478498},
-{"pid":27369,"tid":27369,"ts":326461578929,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2478528},
-{"pid":27369,"tid":27369,"ts":326461579204,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2478742},
-{"pid":27369,"tid":27369,"ts":326461583752,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2479017},
-{"pid":27369,"tid":27369,"ts":326461583782,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2479047,"id":"0xaf8a6158feb47934"},
-{"pid":27369,"tid":27369,"ts":326461583782,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1129,"tdur":336,"tts":2479047},
-{"pid":27369,"tid":27369,"ts":326461583782,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":1129,"tdur":305,"tts":2479078},
-{"pid":27369,"tid":27369,"ts":326461583874,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2479139,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461583904,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2479169,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461583904,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":977,"tdur":183,"tts":2479169},
-{"pid":27369,"tid":27369,"ts":326461583904,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":977,"tdur":183,"tts":2479169},
-{"pid":27369,"tid":27369,"ts":326461583935,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2479200,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461583965,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":916,"tdur":122,"tts":2479230},
-{"pid":27369,"tid":27369,"ts":326461583965,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":916,"tdur":122,"tts":2479230},
-{"pid":27369,"tid":27369,"ts":326461583996,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":854,"tdur":61,"tts":2479261},
-{"pid":27369,"tid":27369,"ts":326461584820,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2479291,"id":"0xaf8a6eb7febbc614"},
-{"pid":27369,"tid":27369,"ts":326461584850,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2479322,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461584850,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2479322,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461585003,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2479475},
-{"pid":27369,"tid":27369,"ts":326461585095,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2479566},
-{"pid":27369,"tid":27369,"ts":326461585095,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2479566,"id":"0xaf8a6159feb47934"},
-{"pid":27369,"tid":27369,"ts":326461585125,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2479597},
-{"pid":27369,"tid":27369,"ts":326461585156,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2479627},
-{"pid":27369,"tid":27369,"ts":326461585186,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2479658},
-{"pid":27369,"tid":27369,"ts":326461585247,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2479719},
-{"pid":27369,"tid":27369,"ts":326461585522,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2479810},
-{"pid":27369,"tid":27369,"ts":326461585552,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2479841,"id":"0xaf8a615afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461585552,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":428,"tdur":427,"tts":2479841},
-{"pid":27369,"tid":27369,"ts":326461585552,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":428,"tdur":427,"tts":2479841},
-{"pid":27369,"tid":27369,"ts":326461585583,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2479871},
-{"pid":27369,"tid":27369,"ts":326461585827,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":31,"tts":2480115},
-{"pid":27369,"tid":27369,"ts":326461585888,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2480207},
-{"pid":27369,"tid":27369,"ts":326461585949,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2480238},
-{"pid":27369,"tid":27369,"ts":326461586071,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2480360},
-{"pid":27369,"tid":27369,"ts":326461591565,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2481245},
-{"pid":27369,"tid":27369,"ts":326461592206,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2481733},
-{"pid":27369,"tid":27369,"ts":326461592358,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2481825},
-{"pid":27369,"tid":27369,"ts":326461592511,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":2481977},
-{"pid":27369,"tid":27369,"ts":326461581000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2482008,"id":"0x300000093"},
-{"pid":27369,"tid":27369,"ts":326461592542,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902035},"tts":2482008,"id":"0x300000093"},
-{"pid":27369,"tid":27369,"ts":326461592572,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":2482038},
-{"pid":27369,"tid":27369,"ts":326461592572,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2482038,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461592603,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2482069},
-{"pid":27369,"tid":27369,"ts":326461592877,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2482343},
-{"pid":27369,"tid":27369,"ts":326461592938,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":123,"tts":2482404},
-{"pid":27369,"tid":27369,"ts":326461592938,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461586930},"dur":92,"tdur":92,"tts":2482404},
-{"pid":27369,"tid":27369,"ts":326461592969,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2482435},
-{"pid":27369,"tid":27369,"ts":326461592999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2482466,"id":"0xaf8a6eb0febbc614"},
-{"pid":27369,"tid":27369,"ts":326461593091,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2482557},
-{"pid":27369,"tid":27369,"ts":326461593091,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2482557,"id":"0xaf8a615bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461593152,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2482618},
-{"pid":27369,"tid":27369,"ts":326461593243,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2482710},
-{"pid":27369,"tid":27369,"ts":326461593366,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2482832},
-{"pid":27369,"tid":27369,"ts":326461593366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2482832,"id":"0xaf8a615bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461593396,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2482862},
-{"pid":27369,"tid":27369,"ts":326461593396,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2482862},
-{"pid":27369,"tid":27369,"ts":326461593396,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1526,"tdur":1495,"tts":2482893},
-{"pid":27369,"tid":27369,"ts":326461593427,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":128},"dur":91,"tdur":61,"tts":2482893},
-{"pid":27369,"tid":27369,"ts":326461593457,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2482923},
-{"pid":27369,"tid":27369,"ts":326461593518,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2482984},
-{"pid":27369,"tid":27369,"ts":326461593518,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2482984,"id":"0x300000090"},
-{"pid":27369,"tid":27369,"ts":326461593549,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2483015},
-{"pid":27369,"tid":27369,"ts":326461593549,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2483015},
-{"pid":27369,"tid":27369,"ts":326461593579,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":245,"tts":2483045},
-{"pid":27369,"tid":27369,"ts":326461593823,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2483290},
-{"pid":27369,"tid":27369,"ts":326461593854,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2483320},
-{"pid":27369,"tid":27369,"ts":326461593884,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":91,"tts":2483351},
-{"pid":27369,"tid":27369,"ts":326461593884,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":128},"dur":31,"tdur":30,"tts":2483351},
-{"pid":27369,"tid":27369,"ts":326461593915,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":128},"dur":30,"tdur":0,"tts":2483381},
-{"pid":27369,"tid":27369,"ts":326461593945,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":128},"tts":2483412},
-{"pid":27369,"tid":27369,"ts":326461593945,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2483412},
-{"pid":27369,"tid":27369,"ts":326461593945,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2483412},
-{"pid":27369,"tid":27369,"ts":326461593976,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2483442},
-{"pid":27369,"tid":27369,"ts":326461593976,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2483442},
-{"pid":27369,"tid":27369,"ts":326461594007,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2483473,"id":"0xaf8a6eb1febbc614"},
-{"pid":27369,"tid":27369,"ts":326461594098,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":794,"tts":2483564},
-{"pid":27369,"tid":27369,"ts":326461594098,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":128},"dur":214,"tdur":214,"tts":2483564},
-{"pid":27369,"tid":27369,"ts":326461594129,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2483595},
-{"pid":27369,"tid":27369,"ts":326461594129,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2483595},
-{"pid":27369,"tid":27369,"ts":326461594129,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2483595},
-{"pid":27369,"tid":27369,"ts":326461594159,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2483625,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461594190,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2483656},
-{"pid":27369,"tid":27369,"ts":326461594312,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2483778},
-{"pid":27369,"tid":27369,"ts":326461594312,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2483778},
-{"pid":27369,"tid":27369,"ts":326461594342,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2483808},
-{"pid":27369,"tid":27369,"ts":326461594342,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":306,"tts":2483808},
-{"pid":27369,"tid":27369,"ts":326461594373,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":2483839},
-{"pid":27369,"tid":27369,"ts":326461594403,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":214,"tts":2483869},
-{"pid":27369,"tid":27369,"ts":326461594678,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2484144,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461594739,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2484205,"id":"0x300000090"},
-{"pid":27369,"tid":27369,"ts":326461594739,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2484205},
-{"pid":27369,"tid":27369,"ts":326461594770,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":15749},"dur":91,"tdur":61,"tts":2484236},
-{"pid":27369,"tid":27369,"ts":326461594770,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":2484266},
-{"pid":27369,"tid":27369,"ts":326461594800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2484266,"id":"0xaf8a6eb2febbc614"},
-{"pid":27369,"tid":27369,"ts":326461594861,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2484327},
-{"pid":27369,"tid":27369,"ts":326461594861,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2484327},
-{"pid":27369,"tid":27369,"ts":326461595014,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2484480},
-{"pid":27369,"tid":27369,"ts":326461595319,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2484632},
-{"pid":27369,"tid":27369,"ts":326461595349,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2484663,"id":"0xaf8a6154feb47934"},
-{"pid":27369,"tid":27369,"ts":326461595349,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":275,"tdur":275,"tts":2484663},
-{"pid":27369,"tid":27369,"ts":326461595349,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":275,"tdur":275,"tts":2484663},
-{"pid":27369,"tid":27369,"ts":326461595410,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2484724,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461595410,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2484724,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461595441,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":183,"tts":2484755},
-{"pid":27369,"tid":27369,"ts":326461595441,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":183,"tdur":183,"tts":2484755},
-{"pid":27369,"tid":27369,"ts":326461595471,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2484785,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461595471,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":123,"tdur":122,"tts":2484785},
-{"pid":27369,"tid":27369,"ts":326461595502,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":92,"tdur":91,"tts":2484816},
-{"pid":27369,"tid":27369,"ts":326461595502,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2484846},
-{"pid":27369,"tid":27369,"ts":326461595533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2484846,"id":"0xaf8a6eb3febbc614"},
-{"pid":27369,"tid":27369,"ts":326461595563,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2484877,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461595594,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2484907,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461595685,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2484999},
-{"pid":27369,"tid":27369,"ts":326461599439,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2485182},
-{"pid":27369,"tid":27369,"ts":326461599470,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2485182,"id":"0xaf8a6155feb47934"},
-{"pid":27369,"tid":27369,"ts":326461599470,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2485182},
-{"pid":27369,"tid":27369,"ts":326461599500,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":397,"tts":2485212},
-{"pid":27369,"tid":27369,"ts":326461599531,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":335,"tdur":336,"tts":2485243},
-{"pid":27369,"tid":27369,"ts":326461599744,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":30,"tts":2485457},
-{"pid":27369,"tid":27369,"ts":326461599805,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2485518},
-{"pid":27369,"tid":27369,"ts":326461599866,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2485579},
-{"pid":27369,"tid":27369,"ts":326461599958,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2485670},
-{"pid":27369,"tid":27369,"ts":326461605330,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2486097},
-{"pid":27369,"tid":27369,"ts":326461605787,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2486555},
-{"pid":27369,"tid":27369,"ts":326461605848,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2486616},
-{"pid":27369,"tid":27369,"ts":326461605970,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":92,"tts":2486738},
-{"pid":27369,"tid":27369,"ts":326461598000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2486769,"id":"0x300000094"},
-{"pid":27369,"tid":27369,"ts":326461606001,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902036},"tts":2486769,"id":"0x300000094"},
-{"pid":27369,"tid":27369,"ts":326461606032,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":0,"tdur":0,"tts":2486799},
-{"pid":27369,"tid":27369,"ts":326461606032,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2486799,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461606062,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2486830},
-{"pid":27369,"tid":27369,"ts":326461606550,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2487196},
-{"pid":27369,"tid":27369,"ts":326461606611,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":153,"tdur":153,"tts":2487257},
-{"pid":27369,"tid":27369,"ts":326461606611,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461603612},"dur":123,"tdur":92,"tts":2487257},
-{"pid":27369,"tid":27369,"ts":326461606642,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2487288},
-{"pid":27369,"tid":27369,"ts":326461606672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2487318,"id":"0xaf8a6f4cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461606764,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2487410},
-{"pid":27369,"tid":27369,"ts":326461606795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2487440,"id":"0xaf8a6157feb47934"},
-{"pid":27369,"tid":27369,"ts":326461606856,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2487501},
-{"pid":27369,"tid":27369,"ts":326461606947,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2487593},
-{"pid":27369,"tid":27369,"ts":326461607069,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2487746},
-{"pid":27369,"tid":27369,"ts":326461607100,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2487746,"id":"0xaf8a6156feb47934"},
-{"pid":27369,"tid":27369,"ts":326461607130,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2487776},
-{"pid":27369,"tid":27369,"ts":326461607161,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2487837},
-{"pid":27369,"tid":27369,"ts":326461607191,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2487837},
-{"pid":27369,"tid":27369,"ts":326461607283,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2487929},
-{"pid":27369,"tid":27369,"ts":326461607405,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2488020},
-{"pid":27369,"tid":27369,"ts":326461607435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2488051,"id":"0xaf8a6157feb47934"},
-{"pid":27369,"tid":27369,"ts":326461607435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1771,"tdur":1770,"tts":2488051},
-{"pid":27369,"tid":27369,"ts":326461607435,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2488051},
-{"pid":27369,"tid":27369,"ts":326461607466,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1740,"tdur":1740,"tts":2488081},
-{"pid":27369,"tid":27369,"ts":326461607497,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":129},"dur":91,"tdur":91,"tts":2488112},
-{"pid":27369,"tid":27369,"ts":326461607497,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":91,"tdur":91,"tts":2488112},
-{"pid":27369,"tid":27369,"ts":326461607588,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":458,"tdur":458,"tts":2488203},
-{"pid":27369,"tid":27369,"ts":326461607619,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2488234,"id":"0x300000091"},
-{"pid":27369,"tid":27369,"ts":326461607649,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2488264},
-{"pid":27369,"tid":27369,"ts":326461607649,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2488264},
-{"pid":27369,"tid":27369,"ts":326461607680,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":335,"tdur":306,"tts":2488325},
-{"pid":27369,"tid":27369,"ts":326461608015,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2488661},
-{"pid":27369,"tid":27369,"ts":326461608076,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2488692},
-{"pid":27369,"tid":27407,"ts":326461595624,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1865954,"id":"0xba465702"},
-{"pid":27369,"tid":27407,"ts":326461599134,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1866076},
-{"pid":27369,"tid":27407,"ts":326461599195,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1866137},
-{"pid":27369,"tid":27407,"ts":326461599195,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1866137,"id":"0xccc5b602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461599225,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1866198,"id":"0xaf8a6155feb47934"},
-{"pid":27369,"tid":27407,"ts":326461603926,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1866351},
-{"pid":27369,"tid":27407,"ts":326461603956,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1866381},
-{"pid":27369,"tid":27407,"ts":326461603987,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1866412,"id":"0xc4c1e502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461603987,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1866412,"id":"0xaf8a6156feb47934"},
-{"pid":27369,"tid":27407,"ts":326461606734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1866625,"id":"0xaf8a6f4cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461606764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1866625},
-{"pid":27369,"tid":27407,"ts":326461606764,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1866625,"id":"0xba465802"},
-{"pid":27369,"tid":27407,"ts":326461608321,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1866778,"id":"0xaf8a6f4dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461608321,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":396,"tdur":61,"tts":1866778},
-{"pid":27369,"tid":27407,"ts":326461608351,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1866809,"id":"0xba465902"},
-{"pid":27369,"tid":27407,"ts":326461609175,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1866961,"id":"0xaf8a6f4efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461609175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1866961},
-{"pid":27369,"tid":27407,"ts":326461609175,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1866961,"id":"0xba465a02"},
-{"pid":27369,"tid":27407,"ts":326461611098,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":702,"tdur":244,"tts":1867083},
-{"pid":27369,"tid":27407,"ts":326461611098,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1867083},
-{"pid":27369,"tid":27407,"ts":326461611251,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":549,"tdur":153,"tts":1867144},
-{"pid":27369,"tid":27407,"ts":326461611251,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1867144,"id":"0xccc5b702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461611312,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1867205,"id":"0xaf8a6150feb47934"},
-{"pid":27369,"tid":27407,"ts":326461611952,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1867388,"id":"0xaf8a6f4ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461611952,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":62,"tts":1867388},
-{"pid":27369,"tid":27407,"ts":326461611983,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1867419,"id":"0xba465b02"},
-{"pid":27369,"tid":27407,"ts":326461613570,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1867511},
-{"pid":27369,"tid":27407,"ts":326461613601,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":1867541},
-{"pid":27369,"tid":27407,"ts":326461613631,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1867572,"id":"0xccc5b902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461613631,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1867572,"id":"0xaf8a6151feb47934"},
-{"pid":27369,"tid":27407,"ts":326461614394,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1867755},
-{"pid":27369,"tid":27407,"ts":326461614425,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1867785},
-{"pid":27369,"tid":27407,"ts":326461614425,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1867785,"id":"0xc4c1e702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461614455,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1867816,"id":"0xaf8a6152feb47934"},
-{"pid":27369,"tid":27407,"ts":326461617141,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1867968},
-{"pid":27369,"tid":27407,"ts":326461617202,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":153,"tts":1868029},
-{"pid":27369,"tid":27407,"ts":326461617233,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1868060,"id":"0xccc5bb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461617263,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1868090,"id":"0xaf8a6153feb47934"},
-{"pid":27369,"tid":27407,"ts":326461622146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868274,"id":"0xaf8a6f48febbc614"},
-{"pid":27369,"tid":27407,"ts":326461622177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1868304},
-{"pid":27369,"tid":27407,"ts":326461622177,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1868304,"id":"0xba465c02"},
-{"pid":27369,"tid":27407,"ts":326461622757,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868426,"id":"0xaf8a6f49febbc614"},
-{"pid":27369,"tid":27407,"ts":326461622787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1868457},
-{"pid":27369,"tid":27407,"ts":326461622787,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1868457,"id":"0xba465d02"},
-{"pid":27369,"tid":27407,"ts":326461623947,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868579,"id":"0xaf8a6f4afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461623947,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":244,"tdur":91,"tts":1868579},
-{"pid":27369,"tid":27407,"ts":326461623978,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1868609,"id":"0xba465e02"},
-{"pid":27369,"tid":27407,"ts":326461624222,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868701,"id":"0xaf8a6f4bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461624222,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":213,"tdur":61,"tts":1868701},
-{"pid":27369,"tid":27407,"ts":326461624222,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1868701,"id":"0xba465f06"},
-{"pid":27369,"tid":27407,"ts":326461624466,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":61,"tdur":61,"tts":1868792},
-{"pid":27369,"tid":27407,"ts":326461624466,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":1868823},
-{"pid":27369,"tid":27407,"ts":326461624496,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1868823,"id":"0xc4c1ea0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461624588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1868945,"id":"0xaf8a6f44febbc614"},
-{"pid":27369,"tid":27407,"ts":326461624618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1868945},
-{"pid":27369,"tid":27407,"ts":326461624954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1869037,"id":"0xaf8a6f45febbc614"},
-{"pid":27369,"tid":27407,"ts":326461624985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1869067},
-{"pid":27369,"tid":27407,"ts":326461624985,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1869067,"id":"0xba466002"},
-{"pid":27369,"tid":27407,"ts":326461626206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1869189,"id":"0xaf8a6f46febbc614"},
-{"pid":27369,"tid":27407,"ts":326461626236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":397,"tdur":91,"tts":1869220},
-{"pid":27369,"tid":27407,"ts":326461626267,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1869250,"id":"0xba466102"},
-{"pid":27369,"tid":27407,"ts":326461627732,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1869372},
-{"pid":27369,"tid":27407,"ts":326461627762,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1869403},
-{"pid":27369,"tid":27407,"ts":326461627762,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1869403,"id":"0xccc5bd02","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326461608076,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2488692},
-{"pid":27369,"tid":27369,"ts":326461608076,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":129},"dur":61,"tdur":31,"tts":2488722},
-{"pid":27369,"tid":27369,"ts":326461608137,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":129},"dur":31,"tdur":30,"tts":2488753},
-{"pid":27369,"tid":27369,"ts":326461608168,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":129},"tts":2488783},
-{"pid":27369,"tid":27369,"ts":326461608168,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2488783},
-{"pid":27369,"tid":27369,"ts":326461608168,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2488783},
-{"pid":27369,"tid":27369,"ts":326461608198,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2488814},
-{"pid":27369,"tid":27369,"ts":326461608229,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2488844},
-{"pid":27369,"tid":27369,"ts":326461608229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2488844,"id":"0xaf8a6f4dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461608321,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":854,"tdur":854,"tts":2488936},
-{"pid":27369,"tid":27369,"ts":326461608351,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":129},"dur":214,"tdur":214,"tts":2488966},
-{"pid":27369,"tid":27369,"ts":326461608351,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2488966},
-{"pid":27369,"tid":27369,"ts":326461608382,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2488997},
-{"pid":27369,"tid":27369,"ts":326461608382,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2488997},
-{"pid":27369,"tid":27369,"ts":326461608412,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2489027,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461608412,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2489058},
-{"pid":27369,"tid":27369,"ts":326461608534,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2489149},
-{"pid":27369,"tid":27369,"ts":326461608565,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":396,"tdur":397,"tts":2489180},
-{"pid":27369,"tid":27369,"ts":326461608565,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2489180},
-{"pid":27369,"tid":27369,"ts":326461608595,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":335,"tts":2489211},
-{"pid":27369,"tid":27369,"ts":326461608595,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2489211},
-{"pid":27369,"tid":27369,"ts":326461608656,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":244,"tts":2489272},
-{"pid":27369,"tid":27369,"ts":326461608961,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2489577,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461609023,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2489638,"id":"0x300000091"},
-{"pid":27369,"tid":27369,"ts":326461609023,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2489638},
-{"pid":27369,"tid":27369,"ts":326461609053,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2883},"dur":92,"tdur":92,"tts":2489668},
-{"pid":27369,"tid":27369,"ts":326461609084,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":2489699},
-{"pid":27369,"tid":27369,"ts":326461609084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2489699,"id":"0xaf8a6f4efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461609145,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2489760},
-{"pid":27369,"tid":27369,"ts":326461609145,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2489760},
-{"pid":27369,"tid":27369,"ts":326461609297,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2489913},
-{"pid":27369,"tid":27369,"ts":326461611525,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2490126},
-{"pid":27369,"tid":27369,"ts":326461611556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2490157,"id":"0xaf8a6150feb47934"},
-{"pid":27369,"tid":27369,"ts":326461611556,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":396,"tdur":305,"tts":2490157},
-{"pid":27369,"tid":27369,"ts":326461611556,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":396,"tdur":305,"tts":2490157},
-{"pid":27369,"tid":27369,"ts":326461611617,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2490218,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461611647,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2490248,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461611647,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":275,"tdur":152,"tts":2490279},
-{"pid":27369,"tid":27369,"ts":326461611678,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":244,"tdur":152,"tts":2490279},
-{"pid":27369,"tid":27369,"ts":326461611708,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2490309,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461611708,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":214,"tdur":122,"tts":2490309},
-{"pid":27369,"tid":27369,"ts":326461611708,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":2490309},
-{"pid":27369,"tid":27369,"ts":326461611830,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":92,"tdur":91,"tts":2490340},
-{"pid":27369,"tid":27369,"ts":326461611830,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2490370},
-{"pid":27369,"tid":27369,"ts":326461611861,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2490370,"id":"0xaf8a6f4ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461611891,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2490401,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461611922,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2490431,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461612014,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2490523},
-{"pid":27369,"tid":27369,"ts":326461613845,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2490737},
-{"pid":27369,"tid":27369,"ts":326461613875,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2490767,"id":"0xaf8a6151feb47934"},
-{"pid":27369,"tid":27369,"ts":326461613875,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":183,"tts":2490767},
-{"pid":27369,"tid":27369,"ts":326461613906,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":152,"tts":2490798},
-{"pid":27369,"tid":27369,"ts":326461613967,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2490859,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461613997,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2490889,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461613997,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2490889},
-{"pid":27369,"tid":27369,"ts":326461614028,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":30,"tts":2490920},
-{"pid":27369,"tid":27369,"ts":326461614028,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2490920,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461614180,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2491042},
-{"pid":27369,"tid":27369,"ts":326461614730,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2491316},
-{"pid":27369,"tid":27369,"ts":326461614760,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2491347,"id":"0xaf8a6152feb47934"},
-{"pid":27369,"tid":27369,"ts":326461614760,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2491347},
-{"pid":27369,"tid":27369,"ts":326461614791,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2491408},
-{"pid":27369,"tid":27369,"ts":326461614821,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2491408},
-{"pid":27369,"tid":27369,"ts":326461614913,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2491500},
-{"pid":27369,"tid":27369,"ts":326461617477,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2491713},
-{"pid":27369,"tid":27369,"ts":326461617507,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2491744,"id":"0xaf8a6153feb47934"},
-{"pid":27369,"tid":27369,"ts":326461617507,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":458,"tdur":458,"tts":2491744},
-{"pid":27369,"tid":27369,"ts":326461617507,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2491744},
-{"pid":27369,"tid":27369,"ts":326461617568,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2491805},
-{"pid":27369,"tid":27369,"ts":326461617812,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":30,"tts":2492049},
-{"pid":27369,"tid":27369,"ts":326461617904,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2492140},
-{"pid":27369,"tid":27369,"ts":326461617934,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2492171},
-{"pid":27369,"tid":27369,"ts":326461618026,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2492263},
-{"pid":27369,"tid":27369,"ts":326461620834,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2492476},
-{"pid":27369,"tid":27369,"ts":326461621261,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2492904},
-{"pid":27369,"tid":27369,"ts":326461621383,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":397,"tdur":92,"tts":2492934},
-{"pid":27369,"tid":27369,"ts":326461621811,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":213,"tts":2493087},
-{"pid":27369,"tid":27369,"ts":326461615000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2493117,"id":"0x300000095"},
-{"pid":27369,"tid":27369,"ts":326461621872,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902037},"tts":2493117,"id":"0x300000095"},
-{"pid":27369,"tid":27369,"ts":326461621872,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2493117},
-{"pid":27369,"tid":27369,"ts":326461621902,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2493148,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461621933,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2493178},
-{"pid":27369,"tid":27369,"ts":326461621933,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2493178},
-{"pid":27369,"tid":27369,"ts":326461621963,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2493209},
-{"pid":27369,"tid":27369,"ts":326461621994,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2493239,"id":"0xaf8a6f48febbc614"},
-{"pid":27369,"tid":27369,"ts":326461622024,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2493270,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461622024,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2493270,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461622085,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2493331},
-{"pid":27369,"tid":27369,"ts":326461622604,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2493605},
-{"pid":27369,"tid":27369,"ts":326461622635,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":2493636},
-{"pid":27369,"tid":27369,"ts":326461622665,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461620293},"dur":92,"tdur":91,"tts":2493667},
-{"pid":27369,"tid":27369,"ts":326461622665,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2493697},
-{"pid":27369,"tid":27369,"ts":326461622696,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2493697,"id":"0xaf8a6f49febbc614"},
-{"pid":27369,"tid":27369,"ts":326461622787,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":214,"tdur":91,"tts":2493789},
-{"pid":27369,"tid":27369,"ts":326461622818,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2493819,"id":"0xaf8a616cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461623001,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2493880},
-{"pid":27369,"tid":27369,"ts":326461623153,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2494033},
-{"pid":27369,"tid":27369,"ts":326461623276,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2494155},
-{"pid":27369,"tid":27369,"ts":326461623306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2494185,"id":"0xaf8a616cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461623306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2991,"tdur":2320,"tts":2494185},
-{"pid":27369,"tid":27369,"ts":326461623337,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2494216},
-{"pid":27369,"tid":27369,"ts":326461623367,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2900,"tdur":2228,"tts":2494246},
-{"pid":27369,"tid":27369,"ts":326461623398,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":130},"dur":91,"tdur":91,"tts":2494277},
-{"pid":27369,"tid":27369,"ts":326461623398,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2494277},
-{"pid":27369,"tid":27369,"ts":326461623489,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1190,"tdur":702,"tts":2494368},
-{"pid":27369,"tid":27369,"ts":326461623520,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2494399,"id":"0x300000092"},
-{"pid":27369,"tid":27369,"ts":326461623520,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2494399},
-{"pid":27369,"tid":27369,"ts":326461623550,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2494430},
-{"pid":27369,"tid":27369,"ts":326461623581,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1068,"tdur":580,"tts":2494460},
-{"pid":27369,"tid":27369,"ts":326461623764,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2494643},
-{"pid":27369,"tid":27369,"ts":326461623794,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2494674},
-{"pid":27369,"tid":27369,"ts":326461623825,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2494704},
-{"pid":27369,"tid":27369,"ts":326461623825,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2892},"dur":91,"tdur":61,"tts":2494735},
-{"pid":27369,"tid":27369,"ts":326461623855,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2494735},
-{"pid":27369,"tid":27369,"ts":326461623886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2494765,"id":"0xaf8a6f4afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461623916,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":672,"tdur":153,"tts":2494826},
-{"pid":27369,"tid":27369,"ts":326461623947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2494826,"id":"0xaf8a6f4bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461624557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2494948,"id":"0xaf8a6f44febbc614"},
-{"pid":27369,"tid":27369,"ts":326461624679,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2495070},
-{"pid":27369,"tid":27369,"ts":326461624710,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2495101},
-{"pid":27369,"tid":27369,"ts":326461624710,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2495101},
-{"pid":27369,"tid":27369,"ts":326461624710,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":130},"dur":61,"tdur":61,"tts":2495101},
-{"pid":27369,"tid":27369,"ts":326461624771,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":130},"dur":31,"tdur":31,"tts":2495162},
-{"pid":27369,"tid":27369,"ts":326461624802,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":130},"tts":2495193},
-{"pid":27369,"tid":27369,"ts":326461624802,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2495193},
-{"pid":27369,"tid":27369,"ts":326461624802,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2495193},
-{"pid":27369,"tid":27369,"ts":326461624832,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2495223},
-{"pid":27369,"tid":27369,"ts":326461624863,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2495254},
-{"pid":27369,"tid":27369,"ts":326461624893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2495284,"id":"0xaf8a6f45febbc614"},
-{"pid":27369,"tid":27369,"ts":326461624985,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1282,"tdur":1098,"tts":2495376},
-{"pid":27369,"tid":27369,"ts":326461624985,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":130},"dur":457,"tdur":274,"tts":2495376},
-{"pid":27369,"tid":27369,"ts":326461625015,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":244,"tdur":61,"tts":2495406},
-{"pid":27369,"tid":27369,"ts":326461625015,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":2495406},
-{"pid":27369,"tid":27369,"ts":326461625198,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2495406},
-{"pid":27369,"tid":27369,"ts":326461625229,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2495437},
-{"pid":27369,"tid":27369,"ts":326461625229,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2495437,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461625259,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2495467},
-{"pid":27369,"tid":27369,"ts":326461625442,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2495650},
-{"pid":27369,"tid":27369,"ts":326461625473,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":549,"tdur":549,"tts":2495681},
-{"pid":27369,"tid":27369,"ts":326461625473,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2495681},
-{"pid":27369,"tid":27369,"ts":326461625504,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":488,"tdur":489,"tts":2495711},
-{"pid":27369,"tid":27369,"ts":326461625504,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2495711},
-{"pid":27369,"tid":27369,"ts":326461625565,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":396,"tdur":397,"tts":2495772},
-{"pid":27369,"tid":27369,"ts":326461625992,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2496230,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461626083,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2496291,"id":"0x300000092"},
-{"pid":27369,"tid":27369,"ts":326461626083,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2496291},
-{"pid":27369,"tid":27369,"ts":326461626114,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6254},"dur":61,"tdur":61,"tts":2496322},
-{"pid":27369,"tid":27369,"ts":326461626114,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2496322},
-{"pid":27369,"tid":27369,"ts":326461626144,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2496352,"id":"0xaf8a6f46febbc614"},
-{"pid":27369,"tid":27369,"ts":326461626206,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2496413},
-{"pid":27369,"tid":27369,"ts":326461626206,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2496413},
-{"pid":27369,"tid":27369,"ts":326461626419,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2496627},
-{"pid":27369,"tid":27369,"ts":326461628006,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2496780},
-{"pid":27369,"tid":27369,"ts":326461628006,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2496780,"id":"0xaf8a616dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461628037,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2496810},
-{"pid":27369,"tid":27369,"ts":326461628037,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":122,"tts":2496810},
-{"pid":27369,"tid":27369,"ts":326461628098,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2496871,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461628098,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2496871,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461628098,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":30,"tts":2496902},
-{"pid":27369,"tid":27369,"ts":326461628128,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2496902},
-{"pid":27369,"tid":27369,"ts":326461628159,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2496932,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461628250,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2497024},
-{"pid":27369,"tid":27369,"ts":326461631974,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2497207},
-{"pid":27369,"tid":27369,"ts":326461632004,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2497237,"id":"0xaf8a616efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461632004,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2497237},
-{"pid":27369,"tid":27369,"ts":326461632065,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2497298},
-{"pid":27369,"tid":27369,"ts":326461632065,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2497298},
-{"pid":27369,"tid":27369,"ts":326461632187,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2497421},
-{"pid":27369,"tid":27369,"ts":326461633530,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2497634},
-{"pid":27369,"tid":27369,"ts":326461633561,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2497665,"id":"0xaf8a616ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461633561,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2497665},
-{"pid":27369,"tid":27369,"ts":326461633561,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":397,"tts":2497695},
-{"pid":27369,"tid":27369,"ts":326461633622,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":2497726},
-{"pid":27369,"tid":27369,"ts":326461633836,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2497939},
-{"pid":27369,"tid":27369,"ts":326461633897,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2498000},
-{"pid":27369,"tid":27369,"ts":326461633958,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2498061},
-{"pid":27369,"tid":27369,"ts":326461634049,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2498153},
-{"pid":27369,"tid":27369,"ts":326461637529,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2498428},
-{"pid":27369,"tid":27369,"ts":326461637986,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2498885},
-{"pid":27369,"tid":27369,"ts":326461637986,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":31,"tts":2498885},
-{"pid":27369,"tid":27369,"ts":326461638261,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":153,"tts":2498977},
-{"pid":27369,"tid":27369,"ts":326461638444,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2499160},
-{"pid":27369,"tid":27369,"ts":326461631000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2499191,"id":"0x300000096"},
-{"pid":27369,"tid":27369,"ts":326461638505,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902038},"tts":2499221,"id":"0x300000096"},
-{"pid":27369,"tid":27369,"ts":326461638505,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2499221},
-{"pid":27369,"tid":27369,"ts":326461638536,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2499252,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461638536,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2499252},
-{"pid":27369,"tid":27369,"ts":326461638566,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2499282},
-{"pid":27369,"tid":27369,"ts":326461638597,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2499313},
-{"pid":27369,"tid":27369,"ts":326461638627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2499343,"id":"0xaf8a6f47febbc614"},
-{"pid":27369,"tid":27369,"ts":326461638688,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2499404,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461638688,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2499404,"s":"t"},
-{"pid":27369,"tid":27407,"ts":326461627793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1869433,"id":"0xaf8a616dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461631424,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":367,"tdur":214,"tts":1869616},
-{"pid":27369,"tid":27407,"ts":326461631455,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":305,"tdur":122,"tts":1869678},
-{"pid":27369,"tid":27407,"ts":326461631486,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1869678,"id":"0xc4c1ec02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461631516,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1869708,"id":"0xaf8a616efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461633256,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1869922},
-{"pid":27369,"tid":27407,"ts":326461633317,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1869983},
-{"pid":27369,"tid":27407,"ts":326461633317,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1869983,"id":"0xccc5c002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461633347,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1870013,"id":"0xaf8a616ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326461638719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1870227,"id":"0xaf8a6f47febbc614"},{"pid":27369,"tid":27407,"ts":326461638719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1870227},
-{"pid":27369,"tid":27407,"ts":326461638749,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1870257,"id":"0xba466202"},
-{"pid":27369,"tid":27407,"ts":326461639055,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1870379,"id":"0xaf8a6f40febbc614"},
-{"pid":27369,"tid":27407,"ts":326461639085,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1870410},
-{"pid":27369,"tid":27407,"ts":326461639085,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1870410,"id":"0xba466302"},
-{"pid":27369,"tid":27407,"ts":326461641313,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1870532,"id":"0xaf8a6f41febbc614"},
-{"pid":27369,"tid":27407,"ts":326461641344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":61,"tts":1870563},
-{"pid":27369,"tid":27407,"ts":326461641344,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1870563,"id":"0xba466402"},
-{"pid":27369,"tid":27407,"ts":326461641466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1870654,"id":"0xaf8a6f42febbc614"},
-{"pid":27369,"tid":27407,"ts":326461641496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1870685},
-{"pid":27369,"tid":27407,"ts":326461641496,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1870685,"id":"0xba466506"},
-{"pid":27369,"tid":27407,"ts":326461641862,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":123,"tdur":91,"tts":1870807},
-{"pid":27369,"tid":27407,"ts":326461641923,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":62,"tdur":61,"tts":1870837},
-{"pid":27369,"tid":27407,"ts":326461641954,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1870868,"id":"0xc4c1ef0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461642046,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1870959,"id":"0xaf8a6f43febbc614"},
-{"pid":27369,"tid":27407,"ts":326461642076,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1870990},
-{"pid":27369,"tid":27407,"ts":326461642656,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1871081,"id":"0xaf8a6f5cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461642656,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1871081},
-{"pid":27369,"tid":27407,"ts":326461642687,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1871112,"id":"0xba466602"},
-{"pid":27369,"tid":27407,"ts":326461643907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1871265,"id":"0xaf8a6f5dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461643938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1871295},
-{"pid":27369,"tid":27407,"ts":326461643938,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1871295,"id":"0xba466702"},
-{"pid":27369,"tid":27407,"ts":326461644487,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1871417},
-{"pid":27369,"tid":27407,"ts":326461644518,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1871448},
-{"pid":27369,"tid":27407,"ts":326461644548,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1871478,"id":"0xccc5c202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461644548,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1871478,"id":"0xaf8a6169feb47934"},
-{"pid":27369,"tid":27407,"ts":326461647692,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":1871661},
-{"pid":27369,"tid":27407,"ts":326461647753,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1871722},
-{"pid":27369,"tid":27407,"ts":326461647753,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1871722,"id":"0xccc5c502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461647783,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1871753,"id":"0xaf8a616afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461649370,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1871997},
-{"pid":27369,"tid":27407,"ts":326461649401,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1872028},
-{"pid":27369,"tid":27407,"ts":326461649401,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1872028,"id":"0xc4c1f202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461649432,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1872058,"id":"0xaf8a616bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461655902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1872211,"id":"0xaf8a6f5efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461655932,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":306,"tdur":92,"tts":1872241},
-{"pid":27369,"tid":27407,"ts":326461655963,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1872272,"id":"0xba466802"},
-{"pid":27369,"tid":27407,"ts":326461656878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1872424,"id":"0xaf8a6f5ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461656878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":245,"tdur":61,"tts":1872424},
-{"pid":27369,"tid":27407,"ts":326461656909,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1872455,"id":"0xba466902"},
-{"pid":27369,"tid":27407,"ts":326461657977,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1872577,"id":"0xaf8a6f58febbc614"},
-{"pid":27369,"tid":27407,"ts":326461658008,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1872607},
-{"pid":27369,"tid":27407,"ts":326461658008,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1872607,"id":"0xba466a02"},
-{"pid":27369,"tid":27407,"ts":326461658069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1872669,"id":"0xaf8a6f59febbc614"},
-{"pid":27369,"tid":27407,"ts":326461658099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1872699},
-{"pid":27369,"tid":27407,"ts":326461658099,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1872699,"id":"0xba466b06"},
-{"pid":27369,"tid":27407,"ts":326461658313,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":91,"tdur":91,"tts":1872791},
-{"pid":27369,"tid":27407,"ts":326461658343,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":1872821},
-{"pid":27369,"tid":27407,"ts":326461658343,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1872821,"id":"0xc4c1f40a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461658466,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1872943,"id":"0xaf8a6f5afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461658496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1872974},
-{"pid":27369,"tid":27407,"ts":326461658832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1873096,"id":"0xaf8a6f5bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461658862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":306,"tdur":61,"tts":1873126},
-{"pid":27369,"tid":27407,"ts":326461658862,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1873126,"id":"0xba466c02"},
-{"pid":27369,"tid":27369,"ts":326461638749,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2499465},
-{"pid":27369,"tid":27369,"ts":326461638902,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2499618},
-{"pid":27369,"tid":27369,"ts":326461638963,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":580,"tdur":214,"tts":2499679},
-{"pid":27369,"tid":27369,"ts":326461638963,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461636975},"dur":92,"tdur":61,"tts":2499679},
-{"pid":27369,"tid":27369,"ts":326461638994,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2499710},
-{"pid":27369,"tid":27369,"ts":326461638994,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2499710,"id":"0xaf8a6f40febbc614"},
-{"pid":27369,"tid":27369,"ts":326461639543,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":122,"tdur":61,"tts":2499893},
-{"pid":27369,"tid":27369,"ts":326461639573,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2499893,"id":"0xaf8a6168feb47934"},
-{"pid":27369,"tid":27369,"ts":326461639665,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2499954},
-{"pid":27369,"tid":27369,"ts":326461639787,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2500076},
-{"pid":27369,"tid":27369,"ts":326461639879,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2500198},
-{"pid":27369,"tid":27369,"ts":326461639909,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2500198,"id":"0xaf8a6168feb47934"},
-{"pid":27369,"tid":27369,"ts":326461639909,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":4059,"tdur":2777,"tts":2500198},
-{"pid":27369,"tid":27369,"ts":326461639940,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2500228},
-{"pid":27369,"tid":27369,"ts":326461639940,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":3998,"tdur":2717,"tts":2500228},
-{"pid":27369,"tid":27369,"ts":326461639970,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":131},"dur":489,"tdur":183,"tts":2500259},
-{"pid":27369,"tid":27369,"ts":326461639970,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":489,"tdur":183,"tts":2500259},
-{"pid":27369,"tid":27369,"ts":326461639970,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2500259},
-{"pid":27369,"tid":27369,"ts":326461640489,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1709,"tdur":1159,"tts":2500473},
-{"pid":27369,"tid":27369,"ts":326461640520,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2500503,"id":"0x300000093"},
-{"pid":27369,"tid":27369,"ts":326461640550,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2500534,"id":"0x300000094"},
-{"pid":27369,"tid":27369,"ts":326461640581,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2500564},
-{"pid":27369,"tid":27369,"ts":326461640611,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":2500595},
-{"pid":27369,"tid":27369,"ts":326461640672,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1465,"tdur":915,"tts":2500656},
-{"pid":27369,"tid":27369,"ts":326461641038,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2501022},
-{"pid":27369,"tid":27369,"ts":326461641069,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2501052},
-{"pid":27369,"tid":27369,"ts":326461641069,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2501052},
-{"pid":27369,"tid":27369,"ts":326461641099,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2501083},
-{"pid":27369,"tid":27369,"ts":326461641130,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2501113},
-{"pid":27369,"tid":27369,"ts":326461641130,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2501113},
-{"pid":27369,"tid":27369,"ts":326461641160,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2501144},
-{"pid":27369,"tid":27369,"ts":326461641191,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2501175},
-{"pid":27369,"tid":27369,"ts":326461641191,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6278},"dur":122,"tdur":91,"tts":2501175},
-{"pid":27369,"tid":27369,"ts":326461641222,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2501205},
-{"pid":27369,"tid":27369,"ts":326461641252,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2501236,"id":"0xaf8a6f41febbc614"},
-{"pid":27369,"tid":27369,"ts":326461641313,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":733,"tdur":183,"tts":2501297},
-{"pid":27369,"tid":27369,"ts":326461641344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2501327,"id":"0xaf8a6f42febbc614"},
-{"pid":27369,"tid":27369,"ts":326461642015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2501449,"id":"0xaf8a6f43febbc614"},
-{"pid":27369,"tid":27369,"ts":326461642137,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2501571},
-{"pid":27369,"tid":27369,"ts":326461642198,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2501632},
-{"pid":27369,"tid":27369,"ts":326461642229,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":305,"tdur":244,"tts":2501663},
-{"pid":27369,"tid":27369,"ts":326461642229,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":131},"dur":61,"tdur":30,"tts":2501663},
-{"pid":27369,"tid":27369,"ts":326461642320,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":131},"dur":92,"tdur":61,"tts":2501724},
-{"pid":27369,"tid":27369,"ts":326461642412,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":131},"tts":2501815},
-{"pid":27369,"tid":27369,"ts":326461642442,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2501846},
-{"pid":27369,"tid":27369,"ts":326461642503,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2501876},
-{"pid":27369,"tid":27369,"ts":326461642503,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":2501876},
-{"pid":27369,"tid":27369,"ts":326461642564,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2501938},
-{"pid":27369,"tid":27369,"ts":326461642595,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2501968,"id":"0xaf8a6f5cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461642687,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1251,"tdur":885,"tts":2502060},
-{"pid":27369,"tid":27369,"ts":326461642717,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":131},"dur":610,"tdur":244,"tts":2502090},
-{"pid":27369,"tid":27369,"ts":326461642717,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2502090},
-{"pid":27369,"tid":27369,"ts":326461642717,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2502090},
-{"pid":27369,"tid":27369,"ts":326461642748,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2502121},
-{"pid":27369,"tid":27369,"ts":326461642748,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2502121,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461642778,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2502151},
-{"pid":27369,"tid":27369,"ts":326461643327,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2502334},
-{"pid":27369,"tid":27369,"ts":326461643358,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":2502365},
-{"pid":27369,"tid":27369,"ts":326461643358,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2502365},
-{"pid":27369,"tid":27369,"ts":326461643388,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":2502395},
-{"pid":27369,"tid":27369,"ts":326461643388,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2502395},
-{"pid":27369,"tid":27369,"ts":326461643450,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":184,"tts":2502456},
-{"pid":27369,"tid":27369,"ts":326461643694,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2502701,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461643755,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2502762,"id":"0x300000093"},
-{"pid":27369,"tid":27369,"ts":326461643755,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2502762,"id":"0x300000094"},
-{"pid":27369,"tid":27369,"ts":326461643755,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":153,"tts":2502792},
-{"pid":27369,"tid":27369,"ts":326461643785,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9240},"dur":92,"tdur":92,"tts":2502792},
-{"pid":27369,"tid":27369,"ts":326461643816,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2502823},
-{"pid":27369,"tid":27369,"ts":326461643846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2502853,"id":"0xaf8a6f5dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461643907,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2502914},
-{"pid":27369,"tid":27369,"ts":326461643907,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2502914},
-{"pid":27369,"tid":27369,"ts":326461644060,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2503067},
-{"pid":27369,"tid":27369,"ts":326461644213,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2503250},
-{"pid":27369,"tid":27369,"ts":326461644304,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2503311},
-{"pid":27369,"tid":27369,"ts":326461644731,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2503464},
-{"pid":27369,"tid":27369,"ts":326461644731,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2503464,"id":"0xaf8a6169feb47934"},
-{"pid":27369,"tid":27369,"ts":326461644731,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":152,"tts":2503464},
-{"pid":27369,"tid":27369,"ts":326461644762,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2503494},
-{"pid":27369,"tid":27369,"ts":326461644792,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2503555,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461644823,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2503555,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461644823,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2503555},
-{"pid":27369,"tid":27369,"ts":326461644853,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2503586},
-{"pid":27369,"tid":27369,"ts":326461644853,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2503586,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461644945,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2503708},
-{"pid":27369,"tid":27369,"ts":326461648028,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2503860},
-{"pid":27369,"tid":27369,"ts":326461648058,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2503891,"id":"0xaf8a616afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461648058,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":488,"tdur":458,"tts":2503891},
-{"pid":27369,"tid":27369,"ts":326461648058,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2503891},
-{"pid":27369,"tid":27369,"ts":326461648119,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":397,"tdur":397,"tts":2503952},
-{"pid":27369,"tid":27369,"ts":326461648333,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":30,"tts":2504166},
-{"pid":27369,"tid":27369,"ts":326461648424,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2504257},
-{"pid":27369,"tid":27369,"ts":326461648485,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2504318},
-{"pid":27369,"tid":27369,"ts":326461648607,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2504440},
-{"pid":27369,"tid":27369,"ts":326461649615,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2504623},
-{"pid":27369,"tid":27369,"ts":326461649645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2504654,"id":"0xaf8a616bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461649645,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":91,"tts":2504654},
-{"pid":27369,"tid":27369,"ts":326461649706,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2504715},
-{"pid":27369,"tid":27369,"ts":326461649706,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2504715},
-{"pid":27369,"tid":27369,"ts":326461649798,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2504837},
-{"pid":27369,"tid":27369,"ts":326461654956,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2505173},
-{"pid":27369,"tid":27369,"ts":326461655413,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2505630},
-{"pid":27369,"tid":27369,"ts":326461655475,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":2505722},
-{"pid":27369,"tid":27369,"ts":326461655597,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":457,"tdur":305,"tts":2505814},
-{"pid":27369,"tid":27369,"ts":326461648000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2505875,"id":"0x300000097"},
-{"pid":27369,"tid":27369,"ts":326461655658,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902039},"tts":2505875,"id":"0x300000097"},
-{"pid":27369,"tid":27369,"ts":326461655688,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":366,"tdur":214,"tts":2505905},
-{"pid":27369,"tid":27369,"ts":326461655688,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2505905,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461655719,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":305,"tdur":152,"tts":2505936},
-{"pid":27369,"tid":27369,"ts":326461655719,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":305,"tdur":152,"tts":2505936},
-{"pid":27369,"tid":27369,"ts":326461655749,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":244,"tdur":92,"tts":2505966},
-{"pid":27369,"tid":27369,"ts":326461655780,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2506027,"id":"0xaf8a6f5efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461655993,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2506058,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461656024,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2506088,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461656054,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2506119},
-{"pid":27369,"tid":27369,"ts":326461656604,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2506394},
-{"pid":27369,"tid":27369,"ts":326461656604,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2506394},
-{"pid":27369,"tid":27369,"ts":326461656726,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":2506485},
-{"pid":27369,"tid":27369,"ts":326461656726,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461653656},"dur":122,"tdur":122,"tts":2506485},
-{"pid":27369,"tid":27369,"ts":326461656756,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2506516},
-{"pid":27369,"tid":27369,"ts":326461656787,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2506546,"id":"0xaf8a6f5ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461656878,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":91,"tts":2506638},
-{"pid":27369,"tid":27369,"ts":326461656909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2506668,"id":"0xaf8a6164feb47934"},
-{"pid":27369,"tid":27369,"ts":326461656970,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2506729},
-{"pid":27369,"tid":27369,"ts":326461657184,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2506943},
-{"pid":27369,"tid":27369,"ts":326461657275,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2507034},
-{"pid":27369,"tid":27369,"ts":326461657306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2507065,"id":"0xaf8a6164feb47934"},
-{"pid":27369,"tid":27369,"ts":326461657306,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2502,"tdur":2136,"tts":2507065},
-{"pid":27369,"tid":27369,"ts":326461657336,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2507095},
-{"pid":27369,"tid":27369,"ts":326461657336,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2442,"tdur":2076,"tts":2507095},
-{"pid":27369,"tid":27369,"ts":326461657367,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":132},"dur":91,"tdur":92,"tts":2507126},
-{"pid":27369,"tid":27369,"ts":326461657397,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2507157},
-{"pid":27369,"tid":27369,"ts":326461657458,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1130,"tdur":763,"tts":2507218},
-{"pid":27369,"tid":27369,"ts":326461657489,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2507248,"id":"0x300000095"},
-{"pid":27369,"tid":27369,"ts":326461657489,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2507248},
-{"pid":27369,"tid":27369,"ts":326461657489,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":31,"tts":2507248},
-{"pid":27369,"tid":27369,"ts":326461657519,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1038,"tdur":671,"tts":2507279},
-{"pid":27369,"tid":27369,"ts":326461657703,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2507462},
-{"pid":27369,"tid":27369,"ts":326461657733,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2507492},
-{"pid":27369,"tid":27369,"ts":326461657764,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2507523},
-{"pid":27369,"tid":27369,"ts":326461657764,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2507523},
-{"pid":27369,"tid":27369,"ts":326461657794,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2507553},
-{"pid":27369,"tid":27369,"ts":326461657825,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2507584},
-{"pid":27369,"tid":27369,"ts":326461657825,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2507584},
-{"pid":27369,"tid":27369,"ts":326461657855,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2507614},
-{"pid":27369,"tid":27369,"ts":326461657855,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9264},"dur":92,"tdur":92,"tts":2507614},
-{"pid":27369,"tid":27369,"ts":326461657886,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2507645},
-{"pid":27369,"tid":27369,"ts":326461657886,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2507675,"id":"0xaf8a6f58febbc614"},
-{"pid":27369,"tid":27369,"ts":326461657977,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":489,"tdur":122,"tts":2507736},
-{"pid":27369,"tid":27369,"ts":326461657977,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2507736,"id":"0xaf8a6f59febbc614"},
-{"pid":27369,"tid":27369,"ts":326461658404,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2507828,"id":"0xaf8a6f5afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461658557,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2507950},
-{"pid":27369,"tid":27369,"ts":326461658588,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2507981},
-{"pid":27369,"tid":27369,"ts":326461658588,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2507981},
-{"pid":27369,"tid":27369,"ts":326461658618,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":132},"dur":31,"tdur":31,"tts":2508011},
-{"pid":27369,"tid":27369,"ts":326461658649,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":132},"dur":30,"tdur":30,"tts":2508042},
-{"pid":27369,"tid":27369,"ts":326461658679,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":132},"tts":2508072},
-{"pid":27369,"tid":27369,"ts":326461658679,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2508072},
-{"pid":27369,"tid":27369,"ts":326461658679,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2508072},
-{"pid":27369,"tid":27369,"ts":326461658710,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2508103},
-{"pid":27369,"tid":27369,"ts":326461658740,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2508133},
-{"pid":27369,"tid":27369,"ts":326461658771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2508164,"id":"0xaf8a6f5bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461658862,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":916,"tdur":916,"tts":2508255},
-{"pid":27369,"tid":27369,"ts":326461658862,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":132},"dur":275,"tdur":244,"tts":2508286},
-{"pid":27369,"tid":27369,"ts":326461658893,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2508286},
-{"pid":27369,"tid":27369,"ts":326461658893,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2508286},
-{"pid":27369,"tid":27369,"ts":326461658893,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2508286},
-{"pid":27369,"tid":27369,"ts":326461658923,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2508316,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461658954,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2508347},
-{"pid":27369,"tid":27369,"ts":326461659106,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2508530},
-{"pid":27369,"tid":27369,"ts":326461659137,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":397,"tts":2508530},
-{"pid":27369,"tid":27369,"ts":326461659168,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2508560},
-{"pid":27369,"tid":27369,"ts":326461659198,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2508591},
-{"pid":27369,"tid":27369,"ts":326461659198,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2508591},
-{"pid":27369,"tid":27369,"ts":326461659259,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":183,"tts":2508683},
-{"pid":27369,"tid":27369,"ts":326461659534,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2508927,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461659595,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2508988,"id":"0x300000095"},
-{"pid":27369,"tid":27369,"ts":326461659595,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2508988},
-{"pid":27369,"tid":27369,"ts":326461659625,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11826},"dur":92,"tdur":92,"tts":2509018},
-{"pid":27369,"tid":27369,"ts":326461659625,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2509018},
-{"pid":27369,"tid":27369,"ts":326461659656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2509049,"id":"0xaf8a6f54febbc614"},
-{"pid":27369,"tid":27369,"ts":326461659717,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2509110},
-{"pid":27369,"tid":27369,"ts":326461659717,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2509110},
-{"pid":27369,"tid":27369,"ts":326461659900,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2509293},
-{"pid":27369,"tid":27369,"ts":326461664783,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2509568},
-{"pid":27369,"tid":27369,"ts":326461664814,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2509598,"id":"0xaf8a6165feb47934"},
-{"pid":27369,"tid":27369,"ts":326461664814,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2509598},
-{"pid":27369,"tid":27369,"ts":326461664875,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2509659},
-{"pid":27369,"tid":27369,"ts":326461664875,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2509659},
-{"pid":27369,"tid":27369,"ts":326461664997,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2509781},
-{"pid":27369,"tid":27369,"ts":326461665577,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2509964},
-{"pid":27369,"tid":27369,"ts":326461665577,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2509964,"id":"0xaf8a6166feb47934"},
-{"pid":27369,"tid":27369,"ts":326461665577,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":183,"tdur":153,"tts":2509995},
-{"pid":27369,"tid":27407,"ts":326461659717,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1873248,"id":"0xaf8a6f54febbc614"},
-{"pid":27369,"tid":27407,"ts":326461659747,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":214,"tdur":91,"tts":1873279},
-{"pid":27369,"tid":27407,"ts":326461659778,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1873309,"id":"0xba466d02"},
-{"pid":27369,"tid":27407,"ts":326461659778,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":122,"tdur":0,"tts":1873309},
-{"pid":27369,"tid":27407,"ts":326461664509,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1873493},
-{"pid":27369,"tid":27407,"ts":326461664539,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1873523},
-{"pid":27369,"tid":27407,"ts":326461664570,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1873554,"id":"0xc4c1f602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461664570,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1873554,"id":"0xaf8a6165feb47934"},
-{"pid":27369,"tid":27407,"ts":326461665333,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1873737},
-{"pid":27369,"tid":27407,"ts":326461665363,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1873767},
-{"pid":27369,"tid":27407,"ts":326461665363,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1873767,"id":"0xccc5c702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461665394,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1873798,"id":"0xaf8a6166feb47934"},
-{"pid":27369,"tid":27407,"ts":326461669331,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1873950},
-{"pid":27369,"tid":27407,"ts":326461669392,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":184,"tts":1874011},
-{"pid":27369,"tid":27407,"ts":326461669422,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1874042,"id":"0xccc5ca02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461669453,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1874072,"id":"0xaf8a6167feb47934"},
-{"pid":27369,"tid":27407,"ts":326461672627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1874286,"id":"0xaf8a6f55febbc614"},
-{"pid":27369,"tid":27407,"ts":326461672627,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1874286},
-{"pid":27369,"tid":27407,"ts":326461672719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1874347},
-{"pid":27369,"tid":27407,"ts":326461672719,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1874347,"id":"0xba466e02"},
-{"pid":27369,"tid":27407,"ts":326461673085,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1874469,"id":"0xaf8a6f56febbc614"},
-{"pid":27369,"tid":27407,"ts":326461673115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1874500},
-{"pid":27369,"tid":27407,"ts":326461673115,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1874500,"id":"0xba466f02"},
-{"pid":27369,"tid":27407,"ts":326461677541,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1874683,"id":"0xaf8a6f57febbc614"},
-{"pid":27369,"tid":27407,"ts":326461677541,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1874683},
-{"pid":27369,"tid":27407,"ts":326461677602,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":92,"tts":1874713},
-{"pid":27369,"tid":27407,"ts":326461677632,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1874713,"id":"0xba467002"},
-{"pid":27369,"tid":27407,"ts":326461678762,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1874896,"id":"0xaf8a6f50febbc614"},
-{"pid":27369,"tid":27407,"ts":326461678792,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1874896},
-{"pid":27369,"tid":27407,"ts":326461678792,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1874896,"id":"0xba467102"},
-{"pid":27369,"tid":27407,"ts":326461683492,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":152,"tts":1875019},
-{"pid":27369,"tid":27407,"ts":326461683523,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1875049},
-{"pid":27369,"tid":27407,"ts":326461683523,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1875049,"id":"0xccc5cd02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461683553,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1875080,"id":"0xaf8a6161feb47934"},
-{"pid":27369,"tid":27407,"ts":326461684011,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":92,"tts":1875232},
-{"pid":27369,"tid":27407,"ts":326461684042,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":61,"tdur":61,"tts":1875263},
-{"pid":27369,"tid":27407,"ts":326461684042,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1875263,"id":"0xc4c1f902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461684072,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1875293,"id":"0xaf8a6162feb47934"},
-{"pid":27369,"tid":27407,"ts":326461688711,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1875415,"id":"0xaf8a6f51febbc614"},
-{"pid":27369,"tid":27407,"ts":326461688711,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1875415},
-{"pid":27369,"tid":27407,"ts":326461688742,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1875446,"id":"0xba467202"},
-{"pid":27369,"tid":27407,"ts":326461689902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1875568,"id":"0xaf8a6f52febbc614"},
-{"pid":27369,"tid":27407,"ts":326461689902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1875568},
-{"pid":27369,"tid":27407,"ts":326461689932,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1875598,"id":"0xba467302"},
-{"pid":27369,"tid":27407,"ts":326461690603,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1875751},
-{"pid":27369,"tid":27407,"ts":326461690665,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":92,"tts":1875812},
-{"pid":27369,"tid":27407,"ts":326461690695,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1875812,"id":"0xccc5d002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461690726,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1875843,"id":"0xaf8a6163feb47934"},
-{"pid":27369,"tid":27407,"ts":326461696463,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1876026,"id":"0xaf8a6f53febbc614"},
-{"pid":27369,"tid":27407,"ts":326461696463,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":61,"tts":1876026},
-{"pid":27369,"tid":27407,"ts":326461696494,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1876056,"id":"0xba467402"},
-{"pid":27369,"tid":27407,"ts":326461696647,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1876117,"id":"0xaf8a6f6cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461696647,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1876117},
-{"pid":27369,"tid":27407,"ts":326461696647,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1876117,"id":"0xba467506"},
-{"pid":27369,"tid":27407,"ts":326461696799,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":92,"tts":1876239},
-{"pid":27369,"tid":27407,"ts":326461696830,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":1876270},
-{"pid":27369,"tid":27407,"ts":326461696860,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1876300,"id":"0xc4c1fc0a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461697013,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1876392,"id":"0xaf8a6f6dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461697013,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":30,"tdur":0,"tts":1876423},
-{"pid":27369,"tid":27407,"ts":326461697318,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1876484,"id":"0xaf8a6f6efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461697348,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":31,"tts":1876514},
-{"pid":27369,"tid":27407,"ts":326461697348,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1876514,"id":"0xba467602"},
-{"pid":27369,"tid":27407,"ts":326461698264,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1876636,"id":"0xaf8a6f6ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461698264,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1876636},
-{"pid":27369,"tid":27369,"ts":326461665607,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2509995},
-{"pid":27369,"tid":27369,"ts":326461665668,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2510056,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461665668,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2510056,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461665699,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":31,"tts":2510086},
-{"pid":27369,"tid":27369,"ts":326461665699,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2510086},
-{"pid":27369,"tid":27369,"ts":326461665729,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2510117,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461665821,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2510209},
-{"pid":27369,"tid":27369,"ts":326461669728,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2510483},
-{"pid":27369,"tid":27369,"ts":326461669758,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2510514,"id":"0xaf8a6167feb47934"},
-{"pid":27369,"tid":27369,"ts":326461669758,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":549,"tdur":549,"tts":2510514},
-{"pid":27369,"tid":27369,"ts":326461669758,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":519,"tts":2510514},
-{"pid":27369,"tid":27369,"ts":326461669819,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":458,"tdur":458,"tts":2510575},
-{"pid":27369,"tid":27369,"ts":326461670124,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":61,"tts":2510880},
-{"pid":27369,"tid":27369,"ts":326461670216,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2510972},
-{"pid":27369,"tid":27369,"ts":326461670246,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2511002},
-{"pid":27369,"tid":27369,"ts":326461670368,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2511124},
-{"pid":27369,"tid":27369,"ts":326461671681,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2511460},
-{"pid":27369,"tid":27369,"ts":326461672139,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2511918},
-{"pid":27369,"tid":27369,"ts":326461672200,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2511979},
-{"pid":27369,"tid":27369,"ts":326461672322,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":397,"tdur":244,"tts":2512101},
-{"pid":27369,"tid":27369,"ts":326461665000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2512131,"id":"0x300000098"},
-{"pid":27369,"tid":27369,"ts":326461672383,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902040},"tts":2512162,"id":"0x300000098"},
-{"pid":27369,"tid":27369,"ts":326461672383,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":336,"tdur":183,"tts":2512162},
-{"pid":27369,"tid":27369,"ts":326461672413,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2512192,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461672413,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":306,"tdur":153,"tts":2512192},
-{"pid":27369,"tid":27369,"ts":326461672413,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":306,"tdur":153,"tts":2512192},
-{"pid":27369,"tid":27369,"ts":326461672444,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":61,"tts":2512223},
-{"pid":27369,"tid":27369,"ts":326461672474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2512253,"id":"0xaf8a6f55febbc614"},
-{"pid":27369,"tid":27369,"ts":326461672566,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2512314,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461672566,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2512314},
-{"pid":27369,"tid":27369,"ts":326461672627,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2512314,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461672627,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":2512314},
-{"pid":27369,"tid":27369,"ts":326461672780,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2512376},
-{"pid":27369,"tid":27369,"ts":326461672932,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2512528},
-{"pid":27369,"tid":27369,"ts":326461672993,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2512589},
-{"pid":27369,"tid":27369,"ts":326461672993,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461670338},"dur":92,"tdur":92,"tts":2512589},
-{"pid":27369,"tid":27369,"ts":326461673024,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2512620},
-{"pid":27369,"tid":27369,"ts":326461673024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2512620,"id":"0xaf8a6f56febbc614"},
-{"pid":27369,"tid":27369,"ts":326461673207,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2512803},
-{"pid":27369,"tid":27369,"ts":326461673207,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2512833,"id":"0xaf8a6160feb47934"},
-{"pid":27369,"tid":27369,"ts":326461673298,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2512894},
-{"pid":27369,"tid":27369,"ts":326461676503,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2515763},
-{"pid":27369,"tid":27369,"ts":326461676686,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2515946},
-{"pid":27369,"tid":27369,"ts":326461676686,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2515946,"id":"0xaf8a6160feb47934"},
-{"pid":27369,"tid":27369,"ts":326461676717,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1984,"tdur":1740,"tts":2515977},
-{"pid":27369,"tid":27369,"ts":326461676717,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2515977},
-{"pid":27369,"tid":27369,"ts":326461676747,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1923,"tdur":1679,"tts":2516007},
-{"pid":27369,"tid":27369,"ts":326461676778,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":133},"dur":61,"tdur":61,"tts":2516038},
-{"pid":27369,"tid":27369,"ts":326461676778,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2516038},
-{"pid":27369,"tid":27369,"ts":326461676839,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":366,"tdur":366,"tts":2516099},
-{"pid":27369,"tid":27369,"ts":326461676869,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2516130,"id":"0x300000096"},
-{"pid":27369,"tid":27369,"ts":326461676869,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2516130},
-{"pid":27369,"tid":27369,"ts":326461676900,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2516160},
-{"pid":27369,"tid":27369,"ts":326461676930,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":245,"tdur":244,"tts":2516191},
-{"pid":27369,"tid":27369,"ts":326461677175,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2516435},
-{"pid":27369,"tid":27369,"ts":326461677205,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":0,"tts":2516496},
-{"pid":27369,"tid":27369,"ts":326461677236,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2516496},
-{"pid":27369,"tid":27369,"ts":326461677236,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":133},"dur":61,"tdur":31,"tts":2516526},
-{"pid":27369,"tid":27369,"ts":326461677297,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":133},"dur":0,"tdur":0,"tts":2516557},
-{"pid":27369,"tid":27369,"ts":326461677327,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":133},"tts":2516587},
-{"pid":27369,"tid":27369,"ts":326461677327,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2516587},
-{"pid":27369,"tid":27369,"ts":326461677327,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2516587},
-{"pid":27369,"tid":27369,"ts":326461677358,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2516618},
-{"pid":27369,"tid":27369,"ts":326461677358,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2516648},
-{"pid":27369,"tid":27369,"ts":326461677388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2516648,"id":"0xaf8a6f57febbc614"},
-{"pid":27369,"tid":27369,"ts":326461677480,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1190,"tdur":916,"tts":2516770},
-{"pid":27369,"tid":27369,"ts":326461677510,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":133},"dur":550,"tdur":306,"tts":2516770},
-{"pid":27369,"tid":27369,"ts":326461677510,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2516770},
-{"pid":27369,"tid":27369,"ts":326461677541,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2516801},
-{"pid":27369,"tid":27369,"ts":326461677541,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2516801},
-{"pid":27369,"tid":27369,"ts":326461677571,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2516831,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461677571,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2516831},
-{"pid":27369,"tid":27369,"ts":326461678029,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2517045},
-{"pid":27369,"tid":27369,"ts":326461678060,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2517076},
-{"pid":27369,"tid":27369,"ts":326461678060,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2517106},
-{"pid":27369,"tid":27369,"ts":326461678090,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2517106},
-{"pid":27369,"tid":27369,"ts":326461678121,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2517137},
-{"pid":27369,"tid":27369,"ts":326461678182,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":213,"tdur":183,"tts":2517198},
-{"pid":27369,"tid":27369,"ts":326461678426,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2517442,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461678487,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2517503,"id":"0x300000096"},
-{"pid":27369,"tid":27369,"ts":326461678487,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":2517503},
-{"pid":27369,"tid":27369,"ts":326461678517,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14388},"dur":92,"tdur":92,"tts":2517533},
-{"pid":27369,"tid":27369,"ts":326461678548,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2517564},
-{"pid":27369,"tid":27369,"ts":326461678578,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2517594,"id":"0xaf8a6f50febbc614"},
-{"pid":27369,"tid":27369,"ts":326461678640,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2517656},
-{"pid":27369,"tid":27369,"ts":326461678640,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2517656},
-{"pid":27369,"tid":27369,"ts":326461678792,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2517808},
-{"pid":27369,"tid":27369,"ts":326461683797,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2518144},
-{"pid":27369,"tid":27369,"ts":326461683828,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2518174,"id":"0xaf8a6161feb47934"},
-{"pid":27369,"tid":27369,"ts":326461683828,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":214,"tts":2518174},
-{"pid":27369,"tid":27369,"ts":326461683858,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":336,"tdur":183,"tts":2518205},
-{"pid":27369,"tid":27369,"ts":326461683920,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2518266,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461683920,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2518266,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461683950,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":214,"tdur":61,"tts":2518296},
-{"pid":27369,"tid":27369,"ts":326461683950,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":214,"tdur":61,"tts":2518296},
-{"pid":27369,"tid":27369,"ts":326461683981,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2518327,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461683981,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":30,"tts":2518327},
-{"pid":27369,"tid":27369,"ts":326461684255,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2518449},
-{"pid":27369,"tid":27369,"ts":326461684347,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2518541},
-{"pid":27369,"tid":27369,"ts":326461684347,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2518541,"id":"0xaf8a6162feb47934"},
-{"pid":27369,"tid":27369,"ts":326461684377,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":2518571},
-{"pid":27369,"tid":27369,"ts":326461684408,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":30,"tts":2518602},
-{"pid":27369,"tid":27369,"ts":326461684408,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2518602},
-{"pid":27369,"tid":27369,"ts":326461684499,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2518693},
-{"pid":27369,"tid":27369,"ts":326461687551,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2518968},
-{"pid":27369,"tid":27369,"ts":326461688101,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2519456},
-{"pid":27369,"tid":27369,"ts":326461688192,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2519517},
-{"pid":27369,"tid":27369,"ts":326461688314,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":580,"tdur":306,"tts":2519639},
-{"pid":27369,"tid":27369,"ts":326461682000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2519700,"id":"0x300000099"},
-{"pid":27369,"tid":27369,"ts":326461688375,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902041},"tts":2519700,"id":"0x300000099"},
-{"pid":27369,"tid":27369,"ts":326461688406,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":488,"tdur":214,"tts":2519731},
-{"pid":27369,"tid":27369,"ts":326461688406,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2519731,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461688437,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":457,"tdur":184,"tts":2519761},
-{"pid":27369,"tid":27369,"ts":326461688437,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":457,"tdur":184,"tts":2519761},
-{"pid":27369,"tid":27369,"ts":326461688467,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":397,"tdur":122,"tts":2519792},
-{"pid":27369,"tid":27369,"ts":326461688467,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":92,"tdur":0,"tts":2519792},
-{"pid":27369,"tid":27369,"ts":326461688589,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2519822,"id":"0xaf8a6f51febbc614"},
-{"pid":27369,"tid":27369,"ts":326461688864,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2519914,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461688864,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2519914,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461688925,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2519975},
-{"pid":27369,"tid":27369,"ts":326461688925,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":91,"tdur":0,"tts":2519975},
-{"pid":27369,"tid":27369,"ts":326461689352,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2520311},
-{"pid":27369,"tid":27369,"ts":326461689413,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":519,"tdur":183,"tts":2520372},
-{"pid":27369,"tid":27369,"ts":326461689413,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461687019},"dur":489,"tdur":152,"tts":2520372},
-{"pid":27369,"tid":27369,"ts":326461689627,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":122,"tts":2520402},
-{"pid":27369,"tid":27369,"ts":326461689657,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2520433,"id":"0xaf8a6f52febbc614"},
-{"pid":27369,"tid":27369,"ts":326461689963,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2520585},
-{"pid":27369,"tid":27369,"ts":326461694937,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2523271},
-{"pid":27369,"tid":27369,"ts":326461695121,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2523454},
-{"pid":27369,"tid":27369,"ts":326461695182,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2523485,"id":"0xaf8a6163feb47934"},
-{"pid":27369,"tid":27369,"ts":326461695182,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":518,"tdur":519,"tts":2523485},
-{"pid":27369,"tid":27369,"ts":326461695182,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":488,"tdur":488,"tts":2523485},
-{"pid":27369,"tid":27369,"ts":326461695243,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":427,"tts":2523546},
-{"pid":27369,"tid":27369,"ts":326461695456,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":92,"tts":2523790},
-{"pid":27369,"tid":27369,"ts":326461695487,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2523790},
-{"pid":27369,"tid":27369,"ts":326461695517,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2523821,"id":"0xaf8a617cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461695609,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2523912},
-{"pid":27369,"tid":27369,"ts":326461695639,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2523943},
-{"pid":27369,"tid":27369,"ts":326461695761,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2524065},
-{"pid":27369,"tid":27369,"ts":326461695853,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2524156},
-{"pid":27369,"tid":27369,"ts":326461695884,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2524187,"id":"0xaf8a617cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461695884,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2624,"tdur":1892,"tts":2524187},
-{"pid":27369,"tid":27369,"ts":326461695884,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2524187},
-{"pid":27369,"tid":27369,"ts":326461695914,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2381,"tdur":1801,"tts":2524217},
-{"pid":27369,"tid":27369,"ts":326461695914,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":134},"dur":61,"tdur":30,"tts":2524248},
-{"pid":27369,"tid":27369,"ts":326461695945,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":30,"tts":2524248},
-{"pid":27369,"tid":27369,"ts":326461696006,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1068,"tdur":641,"tts":2524309},
-{"pid":27369,"tid":27369,"ts":326461696006,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2524309,"id":"0x300000097"},
-{"pid":27369,"tid":27369,"ts":326461696006,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":2524309},
-{"pid":27369,"tid":27369,"ts":326461696036,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2524339},
-{"pid":27369,"tid":27369,"ts":326461696067,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1007,"tdur":549,"tts":2524370},
-{"pid":27369,"tid":27369,"ts":326461696189,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2524492},
-{"pid":27369,"tid":27369,"ts":326461696219,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2524523},
-{"pid":27369,"tid":27369,"ts":326461696250,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2524553},
-{"pid":27369,"tid":27369,"ts":326461696280,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2524584},
-{"pid":27369,"tid":27369,"ts":326461696280,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2524584},
-{"pid":27369,"tid":27369,"ts":326461696311,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14403},"dur":122,"tdur":122,"tts":2524614},
-{"pid":27369,"tid":27369,"ts":326461696341,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2524645},
-{"pid":27369,"tid":27369,"ts":326461696341,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2524645,"id":"0xaf8a6f53febbc614"},
-{"pid":27369,"tid":27369,"ts":326461696433,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":549,"tdur":122,"tts":2524736},
-{"pid":27369,"tid":27369,"ts":326461696463,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2524767,"id":"0xaf8a6f6cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461696952,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2524828,"id":"0xaf8a6f6dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461697074,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2524950},
-{"pid":27369,"tid":27369,"ts":326461697104,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2524980},
-{"pid":27369,"tid":27369,"ts":326461697104,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2524980},
-{"pid":27369,"tid":27369,"ts":326461697104,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":134},"dur":31,"tdur":31,"tts":2524980},
-{"pid":27369,"tid":27369,"ts":326461697165,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":134},"dur":0,"tdur":0,"tts":2525041},
-{"pid":27369,"tid":27369,"ts":326461697165,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":134},"tts":2525041},
-{"pid":27369,"tid":27369,"ts":326461697196,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2525072},
-{"pid":27369,"tid":27369,"ts":326461697196,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2525072},
-{"pid":27369,"tid":27369,"ts":326461697196,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2525072},
-{"pid":27369,"tid":27369,"ts":326461697257,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":31,"tts":2525133},
-{"pid":27369,"tid":27369,"ts":326461697257,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2525133,"id":"0xaf8a6f6efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461697348,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":947,"tdur":793,"tts":2525225},
-{"pid":27369,"tid":27369,"ts":326461697348,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":134},"dur":397,"tdur":244,"tts":2525225},
-{"pid":27369,"tid":27369,"ts":326461697379,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":214,"tdur":61,"tts":2525255},
-{"pid":27369,"tid":27369,"ts":326461697379,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":31,"tts":2525255},
-{"pid":27369,"tid":27369,"ts":326461697562,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2525286},
-{"pid":27369,"tid":27369,"ts":326461697562,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2525286},
-{"pid":27369,"tid":27369,"ts":326461697593,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2525316,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461697593,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2525316},
-{"pid":27369,"tid":27369,"ts":326461697745,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2525469},
-{"pid":27369,"tid":27369,"ts":326461697776,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2525499},
-{"pid":27369,"tid":27369,"ts":326461697776,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2525499},
-{"pid":27369,"tid":27369,"ts":326461697776,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":275,"tts":2525499},
-{"pid":27369,"tid":27369,"ts":326461697806,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2525530},
-{"pid":27369,"tid":27369,"ts":326461697837,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2525560},
-{"pid":27369,"tid":27369,"ts":326461698050,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2525774,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461698111,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2525835,"id":"0x300000097"},
-{"pid":27369,"tid":27369,"ts":326461698142,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":2525866},
-{"pid":27369,"tid":27369,"ts":326461698142,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":333},"dur":92,"tdur":91,"tts":2525866},
-{"pid":27369,"tid":27369,"ts":326461698173,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2525896},
-{"pid":27369,"tid":27369,"ts":326461698173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2525896,"id":"0xaf8a6f6ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461698234,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2525957},
-{"pid":27369,"tid":27369,"ts":326461698264,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2525988},
-{"pid":27369,"tid":27369,"ts":326461698600,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2526171},
-{"pid":27369,"tid":27369,"ts":326461698997,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2526323},
-{"pid":27369,"tid":27369,"ts":326461698997,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2526323,"id":"0xaf8a617dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461699027,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2526354},
-{"pid":27369,"tid":27369,"ts":326461699027,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2526354},
-{"pid":27369,"tid":27369,"ts":326461699088,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2526415,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461699088,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2526415,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461699088,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":31,"tts":2526445},
-{"pid":27369,"tid":27369,"ts":326461699119,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2526445},
-{"pid":27369,"tid":27369,"ts":326461699149,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2526476,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461699210,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2526567},
-{"pid":27369,"tid":27369,"ts":326461702812,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2526751},
-{"pid":27369,"tid":27369,"ts":326461702842,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2526781,"id":"0xaf8a617efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461702842,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":1221,"tdur":488,"tts":2526781},
-{"pid":27369,"tid":27369,"ts":326461702873,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":1190,"tdur":457,"tts":2526812},
-{"pid":27369,"tid":27369,"ts":326461702903,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":1160,"tdur":427,"tts":2526842},
-{"pid":27369,"tid":27369,"ts":326461703880,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2527086},
-{"pid":27369,"tid":27369,"ts":326461703941,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2527147},
-{"pid":27369,"tid":27369,"ts":326461703941,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2527147},
-{"pid":27369,"tid":27369,"ts":326461704032,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2527239},
-{"pid":27369,"tid":27369,"ts":326461704155,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2527361},
-{"pid":27369,"tid":27369,"ts":326461704368,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2527575},
-{"pid":27369,"tid":27369,"ts":326461704368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2527605,"id":"0xaf8a617ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461704399,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2527605},
-{"pid":27369,"tid":27369,"ts":326461704429,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2527666},
-{"pid":27369,"tid":27369,"ts":326461704460,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2527666},
-{"pid":27369,"tid":27369,"ts":326461704582,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2527788},
-{"pid":27369,"tid":27369,"ts":326461704856,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2527941},
-{"pid":27369,"tid":27369,"ts":326461705314,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2528399},
-{"pid":27369,"tid":27369,"ts":326461705406,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":153,"tts":2528490},
-{"pid":27369,"tid":27369,"ts":326461705589,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":275,"tdur":275,"tts":2528673},
-{"pid":27369,"tid":27369,"ts":326461698000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2528704,"id":"0x30000009a"},
-{"pid":27369,"tid":27369,"ts":326461705650,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902042},"tts":2528734,"id":"0x30000009a"},
-{"pid":27369,"tid":27369,"ts":326461705650,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2528734},
-{"pid":27369,"tid":27369,"ts":326461705681,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2528765,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461705681,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":153,"tts":2528765},
-{"pid":27369,"tid":27369,"ts":326461705711,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":123,"tts":2528795},
-{"pid":27369,"tid":27369,"ts":326461705742,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2528826},
-{"pid":27369,"tid":27369,"ts":326461705772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2528857,"id":"0xaf8a6f68febbc614"},
-{"pid":27369,"tid":27369,"ts":326461705833,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2528918,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461705833,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2528918,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461705864,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2528948},
-{"pid":27369,"tid":27369,"ts":326461706108,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2529192},
-{"pid":27369,"tid":27369,"ts":326461706138,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2529223},
-{"pid":27369,"tid":27369,"ts":326461706169,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461703701},"dur":61,"tdur":61,"tts":2529253},
-{"pid":27369,"tid":27369,"ts":326461706169,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2529284},
-{"pid":27369,"tid":27369,"ts":326461706199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2529284,"id":"0xaf8a6f69febbc614"},
-{"pid":27369,"tid":27369,"ts":326461706291,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2529375},
-{"pid":27369,"tid":27369,"ts":326461706291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2529375,"id":"0xaf8a6178feb47934"},
-{"pid":27369,"tid":27369,"ts":326461706352,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2529436},
-{"pid":27369,"tid":27369,"ts":326461708794,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2531512},
-{"pid":27369,"tid":27369,"ts":326461708885,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2531603},
-{"pid":27369,"tid":27369,"ts":326461708916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2531634,"id":"0xaf8a6178feb47934"},
-{"pid":27369,"tid":27369,"ts":326461708946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2531664},
-{"pid":27369,"tid":27369,"ts":326461708946,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":0,"tts":2531664},
-{"pid":27369,"tid":27369,"ts":326461708977,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1465,"tdur":1465,"tts":2531695},
-{"pid":27369,"tid":27369,"ts":326461709007,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":135},"dur":61,"tdur":61,"tts":2531725},
-{"pid":27369,"tid":27369,"ts":326461709007,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2531725},
-{"pid":27369,"tid":27369,"ts":326461709068,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":306,"tts":2531786},
-{"pid":27369,"tid":27369,"ts":326461709099,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2531817,"id":"0x300000098"},
-{"pid":27369,"tid":27369,"ts":326461709099,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2531817},
-{"pid":27369,"tid":27407,"ts":326461698295,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1876667,"id":"0xba467702"},
-{"pid":27369,"tid":27407,"ts":326461698783,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1876789},
-{"pid":27369,"tid":27407,"ts":326461698813,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1876819},
-{"pid":27369,"tid":27407,"ts":326461698813,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1876819,"id":"0xccc5d202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461698813,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1876819,"id":"0xaf8a617dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461702384,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":306,"tdur":244,"tts":1876972},
-{"pid":27369,"tid":27407,"ts":326461702384,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1876972},
-{"pid":27369,"tid":27407,"ts":326461702506,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":184,"tdur":153,"tts":1877063},
-{"pid":27369,"tid":27407,"ts":326461702506,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1877063,"id":"0xccc5d502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461702537,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1877094,"id":"0xaf8a617efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461702934,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":549,"tdur":183,"tts":1877277},
-{"pid":27369,"tid":27407,"ts":326461702964,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":489,"tdur":122,"tts":1877308},
-{"pid":27369,"tid":27407,"ts":326461702964,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1877308,"id":"0xc4c1ff02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461703422,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1877399,"id":"0xaf8a617ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326461705833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1877521,"id":"0xaf8a6f68febbc614"},
-{"pid":27369,"tid":27407,"ts":326461705864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1877552},
-{"pid":27369,"tid":27407,"ts":326461705864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1877552,"id":"0xba467802"},
-{"pid":27369,"tid":27407,"ts":326461706260,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1877674,"id":"0xaf8a6f69febbc614"},
-{"pid":27369,"tid":27407,"ts":326461706260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":31,"tts":1877704},
-{"pid":27369,"tid":27407,"ts":326461706291,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1877704,"id":"0xba467902"},
-{"pid":27369,"tid":27407,"ts":326461709618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1877826,"id":"0xaf8a6f6afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461709648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1877857},
-{"pid":27369,"tid":27407,"ts":326461709648,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1877857,"id":"0xba467a02"},
-{"pid":27369,"tid":27407,"ts":326461710411,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1878010,"id":"0xaf8a6f6bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461710411,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1878010},
-{"pid":27369,"tid":27407,"ts":326461710442,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1878040,"id":"0xba467b02"},
-{"pid":27369,"tid":27407,"ts":326461714592,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":184,"tdur":183,"tts":1878162},
-{"pid":27369,"tid":27407,"ts":326461714623,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1878193},
-{"pid":27369,"tid":27407,"ts":326461714654,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1878223,"id":"0xc4c20102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461714654,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1878223,"id":"0xaf8a6179feb47934"},
-{"pid":27369,"tid":27407,"ts":326461717126,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1878406},
-{"pid":27369,"tid":27407,"ts":326461717156,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1878437},
-{"pid":27369,"tid":27407,"ts":326461717187,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1878467,"id":"0xccc5d702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461717187,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1878467,"id":"0xaf8a617afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461721734,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1878620},
-{"pid":27369,"tid":27407,"ts":326461721795,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1878681},
-{"pid":27369,"tid":27407,"ts":326461721826,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1878712,"id":"0xccc5d902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461721856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1878742,"id":"0xaf8a617bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461722162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1878925,"id":"0xaf8a6f64febbc614"},
-{"pid":27369,"tid":27407,"ts":326461722162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1878956},
-{"pid":27369,"tid":27407,"ts":326461722192,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1878956,"id":"0xba467c02"},
-{"pid":27369,"tid":27407,"ts":326461722680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1879108,"id":"0xaf8a6f65febbc614"},
-{"pid":27369,"tid":27407,"ts":326461722680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1879108},
-{"pid":27369,"tid":27407,"ts":326461722711,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1879139,"id":"0xba467d02"},{"pid":27369,"tid":27407,"ts":326461727258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1879261,"id":"0xaf8a6f66febbc614"},
-{"pid":27369,"tid":27407,"ts":326461727289,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1879291},
-{"pid":27369,"tid":27407,"ts":326461727289,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1879291,"id":"0xba467e02"},
-{"pid":27369,"tid":27407,"ts":326461727930,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1879414,"id":"0xaf8a6f67febbc614"},
-{"pid":27369,"tid":27407,"ts":326461727960,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1879444},
-{"pid":27369,"tid":27407,"ts":326461727960,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1879444,"id":"0xba467f02"},
-{"pid":27369,"tid":27407,"ts":326461732020,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1879566},
-{"pid":27369,"tid":27407,"ts":326461732050,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":152,"tts":1879597},
-{"pid":27369,"tid":27407,"ts":326461732050,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1879627,"id":"0xc4c20402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461732081,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1879627,"id":"0xaf8a6175feb47934"},
-{"pid":27369,"tid":27407,"ts":326461732233,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":91,"tts":1879780},
-{"pid":27369,"tid":27407,"ts":326461732264,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":61,"tdur":61,"tts":1879810},
-{"pid":27369,"tid":27407,"ts":326461732264,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1879810,"id":"0xccc5db02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461732294,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1879841,"id":"0xaf8a6176feb47934"},
-{"pid":27369,"tid":27407,"ts":326461735255,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1879932},
-{"pid":27369,"tid":27407,"ts":326461735316,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1879993},
-{"pid":27369,"tid":27407,"ts":326461735316,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1879993,"id":"0xccc5dd02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461735346,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1880024,"id":"0xaf8a6177feb47934"},
-{"pid":27369,"tid":27407,"ts":326461738551,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1880238,"id":"0xaf8a6f60febbc614"},
-{"pid":27369,"tid":27407,"ts":326461738582,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1880268},
-{"pid":27369,"tid":27369,"ts":326461709099,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":2531847},
-{"pid":27369,"tid":27369,"ts":326461709160,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2531878},
-{"pid":27369,"tid":27369,"ts":326461709343,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2532061},
-{"pid":27369,"tid":27369,"ts":326461709374,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":30,"tts":2532092},
-{"pid":27369,"tid":27369,"ts":326461709404,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":92,"tts":2532122},
-{"pid":27369,"tid":27369,"ts":326461709404,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":135},"dur":31,"tdur":31,"tts":2532122},
-{"pid":27369,"tid":27369,"ts":326461709435,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":135},"dur":30,"tdur":30,"tts":2532153},
-{"pid":27369,"tid":27369,"ts":326461709465,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":135},"tts":2532183},
-{"pid":27369,"tid":27369,"ts":326461709465,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2532214},
-{"pid":27369,"tid":27369,"ts":326461709496,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2532214},
-{"pid":27369,"tid":27369,"ts":326461709496,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2532214},
-{"pid":27369,"tid":27369,"ts":326461709526,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2532244},
-{"pid":27369,"tid":27369,"ts":326461709557,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2532275,"id":"0xaf8a6f6afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461709648,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":794,"tts":2532366},
-{"pid":27369,"tid":27369,"ts":326461709648,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":135},"dur":244,"tdur":245,"tts":2532366},
-{"pid":27369,"tid":27369,"ts":326461709648,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":30,"tts":2532397},
-{"pid":27369,"tid":27369,"ts":326461709679,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2532397},
-{"pid":27369,"tid":27369,"ts":326461709679,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2532397},
-{"pid":27369,"tid":27369,"ts":326461709709,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2532427,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461709709,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2532427},
-{"pid":27369,"tid":27369,"ts":326461709862,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2532580},
-{"pid":27369,"tid":27369,"ts":326461709892,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":335,"tts":2532611},
-{"pid":27369,"tid":27369,"ts":326461709892,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2532611},
-{"pid":27369,"tid":27369,"ts":326461709923,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":275,"tdur":275,"tts":2532641},
-{"pid":27369,"tid":27369,"ts":326461709923,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2532641},
-{"pid":27369,"tid":27369,"ts":326461709953,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2532672},
-{"pid":27369,"tid":27369,"ts":326461710198,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2532916,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461710259,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2532977,"id":"0x300000098"},
-{"pid":27369,"tid":27369,"ts":326461710289,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2533007},
-{"pid":27369,"tid":27369,"ts":326461710289,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2645},"dur":92,"tdur":92,"tts":2533007},
-{"pid":27369,"tid":27369,"ts":326461710320,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2533038},
-{"pid":27369,"tid":27369,"ts":326461710350,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2533068,"id":"0xaf8a6f6bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461710381,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2533099},
-{"pid":27369,"tid":27369,"ts":326461710411,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2533129},
-{"pid":27369,"tid":27369,"ts":326461710533,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2533251},
-{"pid":27369,"tid":27369,"ts":326461714867,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2533557},
-{"pid":27369,"tid":27369,"ts":326461714867,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2533587,"id":"0xaf8a6179feb47934"},
-{"pid":27369,"tid":27369,"ts":326461714898,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2533587},
-{"pid":27369,"tid":27369,"ts":326461714928,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2533618},
-{"pid":27369,"tid":27369,"ts":326461714959,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2533648},
-{"pid":27369,"tid":27369,"ts":326461715050,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2533740},
-{"pid":27369,"tid":27369,"ts":326461717370,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2533892},
-{"pid":27369,"tid":27369,"ts":326461717400,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2533923,"id":"0xaf8a617afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461717400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2533923},
-{"pid":27369,"tid":27369,"ts":326461717400,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":2533923},
-{"pid":27369,"tid":27369,"ts":326461717461,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2533984,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461717492,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2534014,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461717492,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2534014},
-{"pid":27369,"tid":27369,"ts":326461717492,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2534014},
-{"pid":27369,"tid":27369,"ts":326461717522,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2534045,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461717614,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2534137},
-{"pid":27369,"tid":27369,"ts":326461720971,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2534442},
-{"pid":27369,"tid":27369,"ts":326461721429,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2534900},
-{"pid":27369,"tid":27369,"ts":326461721521,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":92,"tts":2534991},
-{"pid":27369,"tid":27369,"ts":326461721643,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":549,"tdur":275,"tts":2535113},
-{"pid":27369,"tid":27369,"ts":326461715000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2535144,"id":"0x30000009b"},
-{"pid":27369,"tid":27369,"ts":326461721704,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902043},"tts":2535174,"id":"0x30000009b"},
-{"pid":27369,"tid":27369,"ts":326461721704,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":274,"tdur":0,"tts":2535174},
-{"pid":27369,"tid":27369,"ts":326461721978,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":183,"tts":2535205},
-{"pid":27369,"tid":27369,"ts":326461722009,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2535205,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461722009,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2535205},
-{"pid":27369,"tid":27369,"ts":326461722039,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2535235},
-{"pid":27369,"tid":27369,"ts":326461722070,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2535266},
-{"pid":27369,"tid":27369,"ts":326461722070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2535296,"id":"0xaf8a6f64febbc614"},
-{"pid":27369,"tid":27369,"ts":326461722131,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2535327,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461722162,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2535357,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461722223,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2535418},
-{"pid":27369,"tid":27369,"ts":326461722406,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2535602},
-{"pid":27369,"tid":27369,"ts":326461722467,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2535663},
-{"pid":27369,"tid":27369,"ts":326461722467,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461720383},"dur":91,"tdur":91,"tts":2535663},
-{"pid":27369,"tid":27369,"ts":326461722497,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2535693},
-{"pid":27369,"tid":27369,"ts":326461722528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2535724,"id":"0xaf8a6f65febbc614"},
-{"pid":27369,"tid":27369,"ts":326461722680,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2535876},
-{"pid":27369,"tid":27369,"ts":326461725732,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2538379},
-{"pid":27369,"tid":27369,"ts":326461725916,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2538562},
-{"pid":27369,"tid":27369,"ts":326461725946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2538562,"id":"0xaf8a617bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461725946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":488,"tts":2538593},
-{"pid":27369,"tid":27369,"ts":326461725977,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":457,"tdur":457,"tts":2538593},
-{"pid":27369,"tid":27369,"ts":326461726007,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":427,"tdur":427,"tts":2538623},
-{"pid":27369,"tid":27369,"ts":326461726221,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":122,"tts":2538837},
-{"pid":27369,"tid":27369,"ts":326461726251,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":61,"tts":2538867},
-{"pid":27369,"tid":27369,"ts":326461726251,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2538898,"id":"0xaf8a6174feb47934"},
-{"pid":27369,"tid":27369,"ts":326461726373,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2538989},
-{"pid":27369,"tid":27369,"ts":326461726404,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2539020},
-{"pid":27369,"tid":27369,"ts":326461726526,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2539142},
-{"pid":27369,"tid":27369,"ts":326461726587,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2539233},
-{"pid":27369,"tid":27369,"ts":326461726618,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2539233,"id":"0xaf8a6174feb47934"},
-{"pid":27369,"tid":27369,"ts":326461726618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1403,"tdur":1404,"tts":2539233},
-{"pid":27369,"tid":27369,"ts":326461726648,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2539264},
-{"pid":27369,"tid":27369,"ts":326461726648,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1343,"tdur":1343,"tts":2539264},
-{"pid":27369,"tid":27369,"ts":326461726679,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":136},"dur":61,"tdur":62,"tts":2539294},
-{"pid":27369,"tid":27369,"ts":326461726679,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":62,"tts":2539294},
-{"pid":27369,"tid":27369,"ts":326461726740,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":274,"tdur":274,"tts":2539356},
-{"pid":27369,"tid":27369,"ts":326461726740,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2539356,"id":"0x300000099"},
-{"pid":27369,"tid":27369,"ts":326461726770,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2539386},
-{"pid":27369,"tid":27369,"ts":326461726770,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":31,"tts":2539386},
-{"pid":27369,"tid":27369,"ts":326461726801,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2539417},
-{"pid":27369,"tid":27369,"ts":326461726984,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2539600},
-{"pid":27369,"tid":27369,"ts":326461727014,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2539630},
-{"pid":27369,"tid":27369,"ts":326461727045,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":91,"tts":2539661},
-{"pid":27369,"tid":27369,"ts":326461727045,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":136},"dur":30,"tdur":30,"tts":2539661},
-{"pid":27369,"tid":27369,"ts":326461727075,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":136},"dur":31,"tdur":31,"tts":2539691},
-{"pid":27369,"tid":27369,"ts":326461727106,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":136},"tts":2539722},
-{"pid":27369,"tid":27369,"ts":326461727106,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2539722},
-{"pid":27369,"tid":27369,"ts":326461727136,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2539752},
-{"pid":27369,"tid":27369,"ts":326461727136,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2539752},
-{"pid":27369,"tid":27369,"ts":326461727167,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2539783},
-{"pid":27369,"tid":27369,"ts":326461727197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2539813,"id":"0xaf8a6f66febbc614"},
-{"pid":27369,"tid":27369,"ts":326461727258,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":733,"tdur":702,"tts":2539905},
-{"pid":27369,"tid":27369,"ts":326461727289,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":136},"dur":183,"tdur":183,"tts":2539905},
-{"pid":27369,"tid":27369,"ts":326461727319,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":2539935},
-{"pid":27369,"tid":27369,"ts":326461727319,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":2539935},
-{"pid":27369,"tid":27369,"ts":326461727319,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2539935},
-{"pid":27369,"tid":27369,"ts":326461727350,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2539966,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461727350,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2539966},
-{"pid":27369,"tid":27369,"ts":326461727442,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2540057},
-{"pid":27369,"tid":27369,"ts":326461727472,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":275,"tts":2540088},
-{"pid":27369,"tid":27369,"ts":326461727472,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":2540088},
-{"pid":27369,"tid":27369,"ts":326461727503,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2540119},
-{"pid":27369,"tid":27369,"ts":326461727503,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":2540119},
-{"pid":27369,"tid":27369,"ts":326461727564,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":152,"tts":2540180},
-{"pid":27369,"tid":27369,"ts":326461727747,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2540363,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461727808,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2540424,"id":"0x300000099"},
-{"pid":27369,"tid":27369,"ts":326461727808,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2540424},
-{"pid":27369,"tid":27369,"ts":326461727838,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4957},"dur":92,"tdur":92,"tts":2540454},
-{"pid":27369,"tid":27369,"ts":326461727869,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":2540485},
-{"pid":27369,"tid":27369,"ts":326461727869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2540485,"id":"0xaf8a6f67febbc614"},
-{"pid":27369,"tid":27369,"ts":326461727930,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2540546},
-{"pid":27369,"tid":27369,"ts":326461727930,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2540546},
-{"pid":27369,"tid":27369,"ts":326461728083,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2540698},
-{"pid":27369,"tid":27369,"ts":326461732325,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2540912},
-{"pid":27369,"tid":27369,"ts":326461732325,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2540912,"id":"0xaf8a6175feb47934"},
-{"pid":27369,"tid":27369,"ts":326461732355,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2540943},
-{"pid":27369,"tid":27369,"ts":326461732386,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2540973},
-{"pid":27369,"tid":27369,"ts":326461732386,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2541004},
-{"pid":27369,"tid":27369,"ts":326461732508,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2541095},
-{"pid":27369,"tid":27369,"ts":326461732600,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2541187},
-{"pid":27369,"tid":27369,"ts":326461732600,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2541187,"id":"0xaf8a6176feb47934"},
-{"pid":27369,"tid":27369,"ts":326461732600,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":2541187},
-{"pid":27369,"tid":27369,"ts":326461732630,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2541217},
-{"pid":27369,"tid":27369,"ts":326461732661,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2541248,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461732691,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2541278,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461732691,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2541278},
-{"pid":27369,"tid":27369,"ts":326461732691,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":30,"tts":2541309},
-{"pid":27369,"tid":27369,"ts":326461732722,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2541309,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461732813,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2541400},
-{"pid":27369,"tid":27369,"ts":326461735529,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2541675},
-{"pid":27369,"tid":27369,"ts":326461735560,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2541675,"id":"0xaf8a6177feb47934"},
-{"pid":27369,"tid":27369,"ts":326461735560,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":366,"tts":2541675},
-{"pid":27369,"tid":27369,"ts":326461735591,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":335,"tdur":335,"tts":2541706},
-{"pid":27369,"tid":27369,"ts":326461735621,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":275,"tts":2541736},
-{"pid":27369,"tid":27369,"ts":326461735774,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":30,"tts":2541889},
-{"pid":27369,"tid":27369,"ts":326461735835,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2541950},
-{"pid":27369,"tid":27369,"ts":326461735896,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2542011},
-{"pid":27369,"tid":27369,"ts":326461735987,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2542102},
-{"pid":27369,"tid":27369,"ts":326461737635,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2542377},
-{"pid":27369,"tid":27369,"ts":326461738063,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2542804},
-{"pid":27369,"tid":27369,"ts":326461738124,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":91,"tdur":61,"tts":2542896},
-{"pid":27369,"tid":27369,"ts":326461738246,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":336,"tdur":306,"tts":2542987},
-{"pid":27369,"tid":27369,"ts":326461732000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2543018,"id":"0x30000009c"},
-{"pid":27369,"tid":27369,"ts":326461738276,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2543018},
-{"pid":27369,"tid":27369,"ts":326461738337,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902044},"tts":2543048,"id":"0x30000009c"},
-{"pid":27369,"tid":27369,"ts":326461738368,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":214,"tts":2543079},
-{"pid":27369,"tid":27369,"ts":326461738398,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2543110,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461738398,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":184,"tdur":183,"tts":2543110},
-{"pid":27369,"tid":27369,"ts":326461738429,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2543140},
-{"pid":27369,"tid":27369,"ts":326461738459,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2543171},
-{"pid":27369,"tid":27369,"ts":326461738490,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2543201,"id":"0xaf8a6f60febbc614"},
-{"pid":27369,"tid":27369,"ts":326461738520,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2543232,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461738551,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2543262,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461738612,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2543323},
-{"pid":27369,"tid":27369,"ts":326461738856,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2543567},
-{"pid":27369,"tid":27369,"ts":326461738887,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":152,"tts":2543598},
-{"pid":27369,"tid":27369,"ts":326461738917,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461737064},"dur":92,"tdur":92,"tts":2543628},
-{"pid":27369,"tid":27369,"ts":326461738948,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2543659},
-{"pid":27369,"tid":27369,"ts":326461738948,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2543659,"id":"0xaf8a6f61febbc614"},
-{"pid":27369,"tid":27369,"ts":326461739039,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2543750},
-{"pid":27369,"tid":27369,"ts":326461739070,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2543781,"id":"0xaf8a6170feb47934"},
-{"pid":27369,"tid":27369,"ts":326461739131,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2543842},
-{"pid":27369,"tid":27369,"ts":326461743739,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2546253},
-{"pid":27369,"tid":27369,"ts":326461743862,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2546375},
-{"pid":27369,"tid":27369,"ts":326461743892,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2546406,"id":"0xaf8a6170feb47934"},
-{"pid":27369,"tid":27369,"ts":326461743892,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":3113,"tdur":1617,"tts":2546406},
-{"pid":27369,"tid":27369,"ts":326461743953,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":61,"tdur":61,"tts":2546467},
-{"pid":27369,"tid":27369,"ts":326461743953,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":2546467},
-{"pid":27369,"tid":27369,"ts":326461744014,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2991,"tdur":1465,"tts":2546528},
-{"pid":27369,"tid":27369,"ts":326461744106,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":137},"dur":91,"tdur":61,"tts":2546589},
-{"pid":27369,"tid":27369,"ts":326461744136,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2546589},
-{"pid":27369,"tid":27369,"ts":326461744197,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1770,"tdur":336,"tts":2546650},
-{"pid":27369,"tid":27369,"ts":326461744228,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2546680,"id":"0x30000009a"},
-{"pid":27369,"tid":27369,"ts":326461744228,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2546680},
-{"pid":27369,"tid":27369,"ts":326461744258,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2546711},
-{"pid":27369,"tid":27407,"ts":326461738582,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1880268,"id":"0xba468002"},
-{"pid":27369,"tid":27407,"ts":326461739009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1880421,"id":"0xaf8a6f61febbc614"},
-{"pid":27369,"tid":27407,"ts":326461739039,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1880451},
-{"pid":27369,"tid":27407,"ts":326461739039,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1880451,"id":"0xba468102"},
-{"pid":27369,"tid":27407,"ts":326461746212,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1880573,"id":"0xaf8a6f62febbc614"},
-{"pid":27369,"tid":27407,"ts":326461746212,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1880604},
-{"pid":27369,"tid":27407,"ts":326461746242,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1880604,"id":"0xba468202"},
-{"pid":27369,"tid":27407,"ts":326461746639,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":122,"tts":1880726},
-{"pid":27369,"tid":27407,"ts":326461746669,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1880756},
-{"pid":27369,"tid":27407,"ts":326461746669,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1880756,"id":"0xccc5df02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461746700,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1880787,"id":"0xaf8a6171feb47934"},
-{"pid":27369,"tid":27407,"ts":326461746944,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1880909,"id":"0xaf8a6f63febbc614"},
-{"pid":27369,"tid":27407,"ts":326461746944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1880909},
-{"pid":27369,"tid":27407,"ts":326461746975,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1880940,"id":"0xba468302"},
-{"pid":27369,"tid":27407,"ts":326461751278,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":214,"tts":1881031},
-{"pid":27369,"tid":27407,"ts":326461751309,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":152,"tts":1881062},
-{"pid":27369,"tid":27407,"ts":326461751339,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1881092,"id":"0xc4c20802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461751339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1881092,"id":"0xaf8a6172feb47934"},
-{"pid":27369,"tid":27407,"ts":326461751644,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1881306},
-{"pid":27369,"tid":27407,"ts":326461751705,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":92,"tdur":91,"tts":1881367},
-{"pid":27369,"tid":27407,"ts":326461751705,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1881367,"id":"0xccc5e102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461751736,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1881397,"id":"0xaf8a6173feb47934"},
-{"pid":27369,"tid":27407,"ts":326461755734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1881550,"id":"0xaf8a6f7cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461755764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1881580},
-{"pid":27369,"tid":27407,"ts":326461755764,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1881611,"id":"0xba468402"},
-{"pid":27369,"tid":27407,"ts":326461756405,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1881794,"id":"0xaf8a6f7dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461756405,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1881794},
-{"pid":27369,"tid":27407,"ts":326461756436,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1881825,"id":"0xba468502"},
-{"pid":27369,"tid":27407,"ts":326461759763,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1881916},
-{"pid":27369,"tid":27407,"ts":326461759824,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":92,"tts":1881977},
-{"pid":27369,"tid":27407,"ts":326461759824,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1881977,"id":"0xccc5e302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461759854,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1882008,"id":"0xaf8a610dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461761106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1882160,"id":"0xaf8a6f7efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461761106,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":30,"tts":1882191},
-{"pid":27369,"tid":27407,"ts":326461761136,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1882191,"id":"0xba468602"},
-{"pid":27369,"tid":27407,"ts":326461761838,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1882313,"id":"0xaf8a6f7ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461761838,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1882313},
-{"pid":27369,"tid":27407,"ts":326461761838,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1882313,"id":"0xba468702"},
-{"pid":27369,"tid":27407,"ts":326461765653,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1882466},
-{"pid":27369,"tid":27407,"ts":326461765714,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1882527},
-{"pid":27369,"tid":27407,"ts":326461765714,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1882527,"id":"0xccc5e502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461765745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1882588,"id":"0xaf8a610efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461768797,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1882771},
-{"pid":27369,"tid":27407,"ts":326461768827,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1882801},
-{"pid":27369,"tid":27407,"ts":326461768827,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1882801,"id":"0xc4c20b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461768858,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1882832,"id":"0xaf8a610ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326461771910,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1883045,"id":"0xaf8a6f78febbc614"},
-{"pid":27369,"tid":27407,"ts":326461771910,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1883045},
-{"pid":27369,"tid":27407,"ts":326461771940,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1883076,"id":"0xba468802"},
-{"pid":27369,"tid":27407,"ts":326461772490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1883229,"id":"0xaf8a6f79febbc614"},
-{"pid":27369,"tid":27407,"ts":326461772520,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1883229},
-{"pid":27369,"tid":27407,"ts":326461772520,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1883229,"id":"0xba468902"},
-{"pid":27369,"tid":27407,"ts":326461774931,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1883381},
-{"pid":27369,"tid":27407,"ts":326461774962,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1883412},
-{"pid":27369,"tid":27407,"ts":326461774962,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1883412,"id":"0xccc5e702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461774992,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1883442,"id":"0xaf8a6109feb47934"},
-{"pid":27369,"tid":27407,"ts":326461777678,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1883625,"id":"0xaf8a6f7afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461777678,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1883625},
-{"pid":27369,"tid":27407,"ts":326461777678,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1883625,"id":"0xba468a02"},
-{"pid":27369,"tid":27407,"ts":326461778350,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1883778,"id":"0xaf8a6f7bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461778350,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1883778},
-{"pid":27369,"tid":27407,"ts":326461778380,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1883808,"id":"0xba468b02"},
-{"pid":27369,"tid":27407,"ts":326461781798,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":306,"tdur":244,"tts":1883931},
-{"pid":27369,"tid":27407,"ts":326461781859,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":245,"tdur":214,"tts":1883961},
-{"pid":27369,"tid":27369,"ts":326461744289,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1648,"tdur":214,"tts":2546741},
-{"pid":27369,"tid":27369,"ts":326461744289,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":1434,"tdur":0,"tts":2546741},
-{"pid":27369,"tid":27369,"ts":326461745937,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2546986},
-{"pid":27369,"tid":27369,"ts":326461745967,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2546986},
-{"pid":27369,"tid":27369,"ts":326461745998,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2547016},
-{"pid":27369,"tid":27369,"ts":326461745998,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":137},"dur":30,"tdur":31,"tts":2547016},
-{"pid":27369,"tid":27369,"ts":326461746028,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":137},"dur":31,"tdur":30,"tts":2547047},
-{"pid":27369,"tid":27369,"ts":326461746059,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":137},"tts":2547077},
-{"pid":27369,"tid":27369,"ts":326461746059,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2547077},
-{"pid":27369,"tid":27369,"ts":326461746059,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2547108},
-{"pid":27369,"tid":27369,"ts":326461746090,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2547108},
-{"pid":27369,"tid":27369,"ts":326461746120,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2547138},
-{"pid":27369,"tid":27369,"ts":326461746120,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2547138,"id":"0xaf8a6f62febbc614"},
-{"pid":27369,"tid":27369,"ts":326461746212,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":2547230},
-{"pid":27369,"tid":27369,"ts":326461746242,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":137},"dur":244,"tdur":214,"tts":2547260},
-{"pid":27369,"tid":27369,"ts":326461746242,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2547260},
-{"pid":27369,"tid":27369,"ts":326461746273,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2547291},
-{"pid":27369,"tid":27369,"ts":326461746273,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2547291},
-{"pid":27369,"tid":27369,"ts":326461746303,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2547321,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461746303,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2547321},
-{"pid":27369,"tid":27369,"ts":326461746456,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2547474},
-{"pid":27369,"tid":27369,"ts":326461746486,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":275,"tts":2547504},
-{"pid":27369,"tid":27369,"ts":326461746486,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2547504},
-{"pid":27369,"tid":27369,"ts":326461746517,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2547535},
-{"pid":27369,"tid":27369,"ts":326461746517,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":30,"tts":2547535},
-{"pid":27369,"tid":27369,"ts":326461746578,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":153,"tts":2547596},
-{"pid":27369,"tid":27369,"ts":326461746761,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2547779,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461746822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2547840,"id":"0x30000009a"},
-{"pid":27369,"tid":27369,"ts":326461746822,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2547840},
-{"pid":27369,"tid":27369,"ts":326461746853,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":7269},"dur":91,"tdur":61,"tts":2547871},
-{"pid":27369,"tid":27369,"ts":326461746883,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":2547901},
-{"pid":27369,"tid":27369,"ts":326461746883,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2547901,"id":"0xaf8a6f63febbc614"},
-{"pid":27369,"tid":27369,"ts":326461746944,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2547962},
-{"pid":27369,"tid":27369,"ts":326461746944,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2547962},
-{"pid":27369,"tid":27369,"ts":326461747097,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2548115},
-{"pid":27369,"tid":27369,"ts":326461747219,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2548237},
-{"pid":27369,"tid":27369,"ts":326461747219,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2548237,"id":"0xaf8a6171feb47934"},
-{"pid":27369,"tid":27369,"ts":326461747249,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2548267},
-{"pid":27369,"tid":27369,"ts":326461747249,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":2548267},
-{"pid":27369,"tid":27369,"ts":326461747310,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2548328,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461747310,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2548328,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461747341,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":30,"tdur":31,"tts":2548359},
-{"pid":27369,"tid":27369,"ts":326461747341,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2548359},
-{"pid":27369,"tid":27369,"ts":326461747371,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2548390,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461747432,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2548481},
-{"pid":27369,"tid":27369,"ts":326461751583,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2548695},
-{"pid":27369,"tid":27369,"ts":326461751614,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2548725,"id":"0xaf8a6172feb47934"},
-{"pid":27369,"tid":27369,"ts":326461751614,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2548725},
-{"pid":27369,"tid":27369,"ts":326461751675,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2548786},
-{"pid":27369,"tid":27369,"ts":326461751675,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2548786},
-{"pid":27369,"tid":27369,"ts":326461751797,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2548908},
-{"pid":27369,"tid":27369,"ts":326461751888,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2549000},
-{"pid":27369,"tid":27369,"ts":326461751919,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2549030,"id":"0xaf8a6173feb47934"},
-{"pid":27369,"tid":27369,"ts":326461751919,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":2549030},
-{"pid":27369,"tid":27369,"ts":326461751919,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":397,"tdur":366,"tts":2549061},
-{"pid":27369,"tid":27369,"ts":326461751980,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":336,"tdur":335,"tts":2549092},
-{"pid":27369,"tid":27369,"ts":326461752163,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":30,"tts":2549275},
-{"pid":27369,"tid":27369,"ts":326461752255,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2549366},
-{"pid":27369,"tid":27369,"ts":326461752285,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2549397},
-{"pid":27369,"tid":27369,"ts":326461752377,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2549519},
-{"pid":27369,"tid":27369,"ts":326461754483,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2549793},
-{"pid":27369,"tid":27369,"ts":326461755276,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2550312},
-{"pid":27369,"tid":27369,"ts":326461755337,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":122,"tts":2550373},
-{"pid":27369,"tid":27369,"ts":326461755490,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":274,"tdur":275,"tts":2550526},
-{"pid":27369,"tid":27369,"ts":326461748000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2550556,"id":"0x30000009d"},
-{"pid":27369,"tid":27369,"ts":326461755520,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902045},"tts":2550556,"id":"0x30000009d"},
-{"pid":27369,"tid":27369,"ts":326461755551,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":214,"tts":2550587},
-{"pid":27369,"tid":27369,"ts":326461755551,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2550587,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461755551,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":152,"tts":2550618},
-{"pid":27369,"tid":27369,"ts":326461755581,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":122,"tts":2550648},
-{"pid":27369,"tid":27369,"ts":326461755642,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2550679},
-{"pid":27369,"tid":27369,"ts":326461755642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2550679,"id":"0xaf8a6f7cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461755703,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2550740,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461755734,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2550770,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461755764,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2550801},
-{"pid":27369,"tid":27369,"ts":326461756161,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2551106},
-{"pid":27369,"tid":27369,"ts":326461756222,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":336,"tdur":153,"tts":2551136},
-{"pid":27369,"tid":27369,"ts":326461756222,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461753746},"dur":305,"tdur":122,"tts":2551136},
-{"pid":27369,"tid":27369,"ts":326461756253,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":274,"tdur":61,"tts":2551167},
-{"pid":27369,"tid":27369,"ts":326461756283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2551197,"id":"0xaf8a6f7dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461756558,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2551289},
-{"pid":27369,"tid":27369,"ts":326461756589,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2551319,"id":"0xaf8a610cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461756650,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2551411},
-{"pid":27369,"tid":27369,"ts":326461760312,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2554005},
-{"pid":27369,"tid":27369,"ts":326461760404,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2554097},
-{"pid":27369,"tid":27369,"ts":326461760434,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2554127,"id":"0xaf8a610cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461760434,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1465,"tdur":1465,"tts":2554127},
-{"pid":27369,"tid":27369,"ts":326461760465,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2554158},
-{"pid":27369,"tid":27369,"ts":326461760465,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1404,"tdur":1404,"tts":2554158},
-{"pid":27369,"tid":27369,"ts":326461760495,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":138},"dur":61,"tdur":61,"tts":2554188},
-{"pid":27369,"tid":27369,"ts":326461760495,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":2554219},
-{"pid":27369,"tid":27369,"ts":326461760587,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":274,"tdur":275,"tts":2554280},
-{"pid":27369,"tid":27369,"ts":326461760587,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2554280,"id":"0x30000009b"},
-{"pid":27369,"tid":27369,"ts":326461760587,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":2554280},
-{"pid":27369,"tid":27369,"ts":326461760617,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2554310},
-{"pid":27369,"tid":27369,"ts":326461760648,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2554341},
-{"pid":27369,"tid":27369,"ts":326461760831,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2554555},
-{"pid":27369,"tid":27369,"ts":326461760861,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2554555},
-{"pid":27369,"tid":27369,"ts":326461760892,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":92,"tts":2554585},
-{"pid":27369,"tid":27369,"ts":326461760892,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":138},"dur":30,"tdur":31,"tts":2554585},
-{"pid":27369,"tid":27369,"ts":326461760922,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":138},"dur":31,"tdur":30,"tts":2554616},
-{"pid":27369,"tid":27369,"ts":326461760953,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":138},"tts":2554646},
-{"pid":27369,"tid":27369,"ts":326461760953,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2554646},
-{"pid":27369,"tid":27369,"ts":326461760983,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2554677},
-{"pid":27369,"tid":27369,"ts":326461760983,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2554677},
-{"pid":27369,"tid":27369,"ts":326461761014,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2554707},
-{"pid":27369,"tid":27369,"ts":326461761045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2554738,"id":"0xaf8a6f7efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461761106,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":732,"tts":2554799},
-{"pid":27369,"tid":27369,"ts":326461761136,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":138},"dur":214,"tdur":214,"tts":2554829},
-{"pid":27369,"tid":27369,"ts":326461761136,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2554829},
-{"pid":27369,"tid":27369,"ts":326461761167,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2554860},
-{"pid":27369,"tid":27369,"ts":326461761167,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2554860},
-{"pid":27369,"tid":27369,"ts":326461761197,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2554890,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461761197,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2554890},
-{"pid":27369,"tid":27369,"ts":326461761319,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2555012},
-{"pid":27369,"tid":27369,"ts":326461761350,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2555043},
-{"pid":27369,"tid":27369,"ts":326461761350,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2555043},
-{"pid":27369,"tid":27369,"ts":326461761380,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2555074},
-{"pid":27369,"tid":27369,"ts":326461761380,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2555074},
-{"pid":27369,"tid":27369,"ts":326461761441,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":2555135},
-{"pid":27369,"tid":27369,"ts":326461761624,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2555318,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461761685,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2555379,"id":"0x30000009b"},
-{"pid":27369,"tid":27369,"ts":326461761685,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2555379},
-{"pid":27369,"tid":27369,"ts":326461761716,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9581},"dur":92,"tdur":92,"tts":2555409},
-{"pid":27369,"tid":27369,"ts":326461761746,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":2555440},
-{"pid":27369,"tid":27369,"ts":326461761746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2555440,"id":"0xaf8a6f7ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461761808,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2555501},
-{"pid":27369,"tid":27369,"ts":326461761808,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2555531},
-{"pid":27369,"tid":27369,"ts":326461761960,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2555653},
-{"pid":27369,"tid":27369,"ts":326461762052,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2555745},
-{"pid":27369,"tid":27369,"ts":326461762052,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2555745,"id":"0xaf8a610dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461762082,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2555775},
-{"pid":27369,"tid":27369,"ts":326461762082,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":123,"tts":2555775},
-{"pid":27369,"tid":27369,"ts":326461762143,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2555837,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461762143,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2555837,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461762143,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":31,"tts":2555867},
-{"pid":27369,"tid":27369,"ts":326461762174,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2555867},
-{"pid":27369,"tid":27369,"ts":326461762204,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2555898,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461762265,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2555989},
-{"pid":27369,"tid":27369,"ts":326461765958,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2556233},
-{"pid":27369,"tid":27369,"ts":326461765989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2556264,"id":"0xaf8a610efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461765989,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":366,"tts":2556264},
-{"pid":27369,"tid":27369,"ts":326461765989,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":366,"tdur":336,"tts":2556294},
-{"pid":27369,"tid":27369,"ts":326461766050,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":305,"tts":2556325},
-{"pid":27369,"tid":27369,"ts":326461766233,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":30,"tts":2556508},
-{"pid":27369,"tid":27369,"ts":326461766294,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2556569},
-{"pid":27369,"tid":27369,"ts":326461766325,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2556600},
-{"pid":27369,"tid":27369,"ts":326461766416,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2556691},
-{"pid":27369,"tid":27369,"ts":326461769010,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2556844},
-{"pid":27369,"tid":27369,"ts":326461769041,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2556874,"id":"0xaf8a610ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461769041,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2556874},
-{"pid":27369,"tid":27369,"ts":326461769071,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2556935},
-{"pid":27369,"tid":27369,"ts":326461769102,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2556935},
-{"pid":27369,"tid":27369,"ts":326461769193,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2557027},
-{"pid":27369,"tid":27369,"ts":326461770994,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2557301},
-{"pid":27369,"tid":27369,"ts":326461771421,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2557729},
-{"pid":27369,"tid":27369,"ts":326461771482,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":123,"tdur":122,"tts":2557790},
-{"pid":27369,"tid":27369,"ts":326461771635,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":458,"tdur":245,"tts":2557942},
-{"pid":27369,"tid":27369,"ts":326461765000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2557973,"id":"0x30000009e"},
-{"pid":27369,"tid":27369,"ts":326461771666,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902046},"tts":2557973,"id":"0x30000009e"},
-{"pid":27369,"tid":27369,"ts":326461771696,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":397,"tdur":184,"tts":2558003},
-{"pid":27369,"tid":27369,"ts":326461771696,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2558003,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461771727,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":366,"tdur":153,"tts":2558034},
-{"pid":27369,"tid":27369,"ts":326461771727,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":366,"tdur":153,"tts":2558034},
-{"pid":27369,"tid":27369,"ts":326461771757,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":275,"tdur":62,"tts":2558064},
-{"pid":27369,"tid":27369,"ts":326461771788,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2558095,"id":"0xaf8a6f78febbc614"},
-{"pid":27369,"tid":27369,"ts":326461772062,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2558156,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461772062,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2558156,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461772123,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2558217},
-{"pid":27369,"tid":27369,"ts":326461772307,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2558400},
-{"pid":27369,"tid":27369,"ts":326461772368,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":214,"tts":2558461},
-{"pid":27369,"tid":27369,"ts":326461772368,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461770427},"dur":274,"tdur":122,"tts":2558461},
-{"pid":27369,"tid":27369,"ts":326461772398,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":214,"tdur":61,"tts":2558492},
-{"pid":27369,"tid":27369,"ts":326461772398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2558492,"id":"0xaf8a6f79febbc614"},
-{"pid":27369,"tid":27369,"ts":326461772734,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":91,"tts":2558675},
-{"pid":27369,"tid":27369,"ts":326461772764,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2558705,"id":"0xaf8a6108feb47934"},
-{"pid":27369,"tid":27369,"ts":326461772825,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2558766},
-{"pid":27369,"tid":27369,"ts":326461776762,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2561880},
-{"pid":27369,"tid":27369,"ts":326461776915,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2562032},
-{"pid":27369,"tid":27369,"ts":326461776946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2562063,"id":"0xaf8a6108feb47934"},
-{"pid":27369,"tid":27369,"ts":326461776946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1465,"tdur":1465,"tts":2562063},
-{"pid":27369,"tid":27369,"ts":326461776976,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2562093},
-{"pid":27369,"tid":27369,"ts":326461776976,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1404,"tdur":1373,"tts":2562124},
-{"pid":27369,"tid":27369,"ts":326461777007,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":139},"dur":91,"tdur":91,"tts":2562124},
-{"pid":27369,"tid":27369,"ts":326461777037,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2562154},
-{"pid":27369,"tid":27369,"ts":326461777098,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2562215},
-{"pid":27369,"tid":27369,"ts":326461777098,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2562215,"id":"0x30000009c"},
-{"pid":27369,"tid":27369,"ts":326461777129,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2562246},
-{"pid":27369,"tid":27369,"ts":326461777129,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":2562246},
-{"pid":27369,"tid":27369,"ts":326461777159,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":2562276},
-{"pid":27369,"tid":27369,"ts":326461777373,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2562520},
-{"pid":27369,"tid":27369,"ts":326461777403,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2562520},
-{"pid":27369,"tid":27369,"ts":326461777434,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2562551},
-{"pid":27369,"tid":27369,"ts":326461777434,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":139},"dur":61,"tdur":61,"tts":2562551},
-{"pid":27369,"tid":27369,"ts":326461777495,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":139},"dur":0,"tdur":0,"tts":2562612},
-{"pid":27369,"tid":27369,"ts":326461777526,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":139},"tts":2562643},
-{"pid":27369,"tid":27369,"ts":326461777526,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2562643},
-{"pid":27369,"tid":27369,"ts":326461777526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2562643},
-{"pid":27369,"tid":27369,"ts":326461777526,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":2562673},
-{"pid":27369,"tid":27369,"ts":326461777556,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2562704},
-{"pid":27369,"tid":27369,"ts":326461777587,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2562704,"id":"0xaf8a6f7afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461777678,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":2562795},
-{"pid":27369,"tid":27369,"ts":326461777709,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":139},"dur":152,"tdur":152,"tts":2562826},
-{"pid":27369,"tid":27369,"ts":326461777709,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2562826},
-{"pid":27369,"tid":27369,"ts":326461777709,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2562826},
-{"pid":27369,"tid":27369,"ts":326461777709,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2562856},
-{"pid":27369,"tid":27369,"ts":326461777739,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2562856,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461777770,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2562887},
-{"pid":27369,"tid":27369,"ts":326461777861,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2562978},
-{"pid":27369,"tid":27369,"ts":326461777861,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2562978},
-{"pid":27369,"tid":27369,"ts":326461777892,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2563009},
-{"pid":27369,"tid":27369,"ts":326461777892,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2563009},
-{"pid":27369,"tid":27369,"ts":326461777922,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2563039},
-{"pid":27369,"tid":27369,"ts":326461777953,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":152,"tts":2563070},
-{"pid":27369,"tid":27369,"ts":326461778136,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2563283,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461778197,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2563314,"id":"0x30000009c"},
-{"pid":27369,"tid":27369,"ts":326461778227,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":123,"tdur":122,"tts":2563345},
-{"pid":27369,"tid":27369,"ts":326461778227,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11893},"dur":92,"tdur":91,"tts":2563345},
-{"pid":27369,"tid":27369,"ts":326461778258,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2563375},
-{"pid":27369,"tid":27369,"ts":326461778289,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2563406,"id":"0xaf8a6f7bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461778319,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2563436},
-{"pid":27369,"tid":27369,"ts":326461778350,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2563467},
-{"pid":27369,"tid":27369,"ts":326461778472,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2563589},
-{"pid":27369,"tid":27369,"ts":326461778563,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2563680},
-{"pid":27369,"tid":27369,"ts":326461778594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2563711,"id":"0xaf8a6109feb47934"},
-{"pid":27369,"tid":27369,"ts":326461778594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":152,"tts":2563711},
-{"pid":27369,"tid":27369,"ts":326461778594,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":152,"tts":2563711},
-{"pid":27369,"tid":27369,"ts":326461778655,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2563772,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461778655,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2563772,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461778685,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":31,"tts":2563802},
-{"pid":27369,"tid":27369,"ts":326461778685,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2563802},
-{"pid":27369,"tid":27369,"ts":326461778716,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2563833,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461778807,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2563924},
-{"pid":27369,"tid":27369,"ts":326461782256,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2564108},
-{"pid":27369,"tid":27369,"ts":326461782287,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2564108,"id":"0xaf8a610afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461782317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":336,"tts":2564138},
-{"pid":27369,"tid":27369,"ts":326461782317,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":336,"tts":2564138},
-{"pid":27369,"tid":27369,"ts":326461782348,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":488,"tdur":305,"tts":2564169},
-{"pid":27369,"tid":27369,"ts":326461782714,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":30,"tts":2564352},
-{"pid":27369,"tid":27369,"ts":326461782775,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2564413},
-{"pid":27369,"tid":27369,"ts":326461782806,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2564443},
-{"pid":27369,"tid":27369,"ts":326461782928,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2564565},
-{"pid":27369,"tid":27369,"ts":326461782989,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2564626},
-{"pid":27369,"tid":27369,"ts":326461783019,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2564657,"id":"0xaf8a610bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461783019,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2564657},
-{"pid":27369,"tid":27369,"ts":326461783080,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2564718},
-{"pid":27369,"tid":27369,"ts":326461783080,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2564718},
-{"pid":27369,"tid":27369,"ts":326461783172,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2564809},
-{"pid":27369,"tid":27369,"ts":326461787628,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2565176},
-{"pid":27369,"tid":27369,"ts":326461788086,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2565634},
-{"pid":27369,"tid":27369,"ts":326461788177,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2565695},
-{"pid":27369,"tid":27369,"ts":326461788269,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":305,"tdur":305,"tts":2565786},
-{"pid":27369,"tid":27369,"ts":326461782000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2565847,"id":"0x30000009f"},
-{"pid":27369,"tid":27369,"ts":326461788330,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902047},"tts":2565847,"id":"0x30000009f"},
-{"pid":27369,"tid":27369,"ts":326461788360,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":213,"tts":2565878},
-{"pid":27369,"tid":27369,"ts":326461788360,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2565878,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27407,"ts":326461781890,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1883992,"id":"0xccc5e902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461781951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1884053,"id":"0xaf8a610afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461782409,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":91,"tts":1884297},
-{"pid":27369,"tid":27407,"ts":326461782439,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1884297},
-{"pid":27369,"tid":27407,"ts":326461782470,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1884327,"id":"0xc4c20e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461782470,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1884327,"id":"0xaf8a610bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461788543,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1884480,"id":"0xaf8a6f74febbc614"},
-{"pid":27369,"tid":27407,"ts":326461788574,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1884480},
-{"pid":27369,"tid":27407,"ts":326461788574,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1884480,"id":"0xba468c02"},
-{"pid":27369,"tid":27407,"ts":326461789154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1884602,"id":"0xaf8a6f75febbc614"},
-{"pid":27369,"tid":27407,"ts":326461789184,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1884632},
-{"pid":27369,"tid":27407,"ts":326461789184,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1884632,"id":"0xba468d02"},
-{"pid":27369,"tid":27407,"ts":326461790069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1884755,"id":"0xaf8a6f76febbc614"},
-{"pid":27369,"tid":27407,"ts":326461790069,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1884755},
-{"pid":27369,"tid":27407,"ts":326461790100,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1884785,"id":"0xba468e02"},
-{"pid":27369,"tid":27407,"ts":326461790161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1884846,"id":"0xaf8a6f77febbc614"},
-{"pid":27369,"tid":27407,"ts":326461790161,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1884846},
-{"pid":27369,"tid":27407,"ts":326461790191,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1884877,"id":"0xba468f06"},
-{"pid":27369,"tid":27407,"ts":326461790466,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":92,"tdur":61,"tts":1884999},
-{"pid":27369,"tid":27407,"ts":326461790497,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":1884999},
-{"pid":27369,"tid":27407,"ts":326461790527,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1885029,"id":"0xc4c2100a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461790619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1885121,"id":"0xaf8a6f70febbc614"},
-{"pid":27369,"tid":27407,"ts":326461790649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1885151},
-{"pid":27369,"tid":27407,"ts":326461790954,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1885243,"id":"0xaf8a6f71febbc614"},
-{"pid":27369,"tid":27407,"ts":326461790954,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1885243},
-{"pid":27369,"tid":27407,"ts":326461790985,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1885273,"id":"0xba469002"},
-{"pid":27369,"tid":27407,"ts":326461791229,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1885365},
-{"pid":27369,"tid":27407,"ts":326461791260,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":91,"tdur":91,"tts":1885396},
-{"pid":27369,"tid":27407,"ts":326461791290,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1885426,"id":"0xccc5eb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461791290,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1885426,"id":"0xaf8a6105feb47934"},
-{"pid":27369,"tid":27407,"ts":326461791748,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1885609,"id":"0xaf8a6f72febbc614"},
-{"pid":27369,"tid":27407,"ts":326461791748,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1885609},
-{"pid":27369,"tid":27407,"ts":326461791779,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1885640,"id":"0xba469102"},
-{"pid":27369,"tid":27407,"ts":326461793671,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":213,"tts":1885762},
-{"pid":27369,"tid":27407,"ts":326461793732,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":152,"tts":1885823},
-{"pid":27369,"tid":27407,"ts":326461793732,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1885823,"id":"0xccc5ee02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461793793,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1885884,"id":"0xaf8a6106feb47934"},
-{"pid":27369,"tid":27407,"ts":326461796326,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":184,"tts":1886036},
-{"pid":27369,"tid":27407,"ts":326461796357,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1886067},
-{"pid":27369,"tid":27407,"ts":326461796387,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1886097,"id":"0xc4c21302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461796387,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1886097,"id":"0xaf8a6107feb47934"},
-{"pid":27369,"tid":27407,"ts":326461806276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1886311,"id":"0xaf8a6f73febbc614"},
-{"pid":27369,"tid":27407,"ts":326461806276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1886311},
-{"pid":27369,"tid":27407,"ts":326461806306,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1886342,"id":"0xba469202"},
-{"pid":27369,"tid":27407,"ts":326461806703,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1886464,"id":"0xaf8a6f0cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461806703,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1886464},
-{"pid":27369,"tid":27407,"ts":326461806734,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1886494,"id":"0xba469302"},
-{"pid":27369,"tid":27407,"ts":326461807832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1886586,"id":"0xaf8a6f0dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461807863,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1886616},
-{"pid":27369,"tid":27407,"ts":326461807863,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1886616,"id":"0xba469402"},
-{"pid":27369,"tid":27407,"ts":326461808107,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":122,"tts":1886708},
-{"pid":27369,"tid":27407,"ts":326461808137,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1886738},
-{"pid":27369,"tid":27407,"ts":326461808137,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1886738,"id":"0xccc5f002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461808168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1886769,"id":"0xaf8a6101feb47934"},
-{"pid":27369,"tid":27407,"ts":326461808839,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1886922,"id":"0xaf8a6f0efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461808839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1886922},
-{"pid":27369,"tid":27407,"ts":326461808839,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1886952,"id":"0xba469502"},
-{"pid":27369,"tid":27407,"ts":326461810213,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":213,"tts":1887044},
-{"pid":27369,"tid":27407,"ts":326461810274,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1887105},
-{"pid":27369,"tid":27407,"ts":326461810274,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1887105,"id":"0xccc5f202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461810304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1887135,"id":"0xaf8a6102feb47934"},
-{"pid":27369,"tid":27407,"ts":326461813112,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1887349},
-{"pid":27369,"tid":27407,"ts":326461813143,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":122,"tts":1887379},
-{"pid":27369,"tid":27407,"ts":326461813143,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1887379,"id":"0xc4c21602","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326461788391,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2565908},
-{"pid":27369,"tid":27369,"ts":326461788421,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":152,"tts":2565939},
-{"pid":27369,"tid":27369,"ts":326461788452,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2565969},
-{"pid":27369,"tid":27369,"ts":326461788482,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2566000,"id":"0xaf8a6f74febbc614"},
-{"pid":27369,"tid":27369,"ts":326461788543,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2566061,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461788543,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2566061,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461788604,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2566122},
-{"pid":27369,"tid":27369,"ts":326461788971,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2566366},
-{"pid":27369,"tid":27369,"ts":326461789032,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":152,"tdur":153,"tts":2566427},
-{"pid":27369,"tid":27369,"ts":326461789032,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461787109},"dur":122,"tdur":122,"tts":2566427},
-{"pid":27369,"tid":27369,"ts":326461789062,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":31,"tts":2566488},
-{"pid":27369,"tid":27369,"ts":326461789093,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2566488,"id":"0xaf8a6f75febbc614"},{"pid":27369,"tid":27369,"ts":326461789184,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2566580},
-{"pid":27369,"tid":27369,"ts":326461789215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2566610,"id":"0xaf8a6104feb47934"},
-{"pid":27369,"tid":27369,"ts":326461789245,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2566671},
-{"pid":27369,"tid":27369,"ts":326461789367,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2566763},
-{"pid":27369,"tid":27369,"ts":326461789489,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2566885},
-{"pid":27369,"tid":27369,"ts":326461789489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2566885,"id":"0xaf8a6104feb47934"},
-{"pid":27369,"tid":27369,"ts":326461789520,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2442,"tdur":1862,"tts":2566915},
-{"pid":27369,"tid":27369,"ts":326461789520,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2566915},
-{"pid":27369,"tid":27369,"ts":326461789520,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2259,"tdur":1862,"tts":2566915},
-{"pid":27369,"tid":27369,"ts":326461789551,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":140},"dur":61,"tdur":61,"tts":2566946},
-{"pid":27369,"tid":27369,"ts":326461789581,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2566976},
-{"pid":27369,"tid":27369,"ts":326461789612,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1098,"tdur":702,"tts":2567007},
-{"pid":27369,"tid":27369,"ts":326461789642,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2567037,"id":"0x30000009d"},
-{"pid":27369,"tid":27369,"ts":326461789642,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2567037},
-{"pid":27369,"tid":27369,"ts":326461789673,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2567068},
-{"pid":27369,"tid":27369,"ts":326461789703,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":977,"tdur":579,"tts":2567099},
-{"pid":27369,"tid":27369,"ts":326461789856,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2567251},
-{"pid":27369,"tid":27369,"ts":326461789886,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2567282},
-{"pid":27369,"tid":27369,"ts":326461789917,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":11899},"dur":152,"tdur":153,"tts":2567312},
-{"pid":27369,"tid":27369,"ts":326461789947,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":122,"tdur":122,"tts":2567343},
-{"pid":27369,"tid":27369,"ts":326461789947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2567343,"id":"0xaf8a6f76febbc614"},
-{"pid":27369,"tid":27369,"ts":326461790069,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":550,"tdur":152,"tts":2567465},
-{"pid":27369,"tid":27369,"ts":326461790100,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2567495,"id":"0xaf8a6f77febbc614"},
-{"pid":27369,"tid":27369,"ts":326461790588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2567587,"id":"0xaf8a6f70febbc614"},
-{"pid":27369,"tid":27369,"ts":326461790680,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2567678},
-{"pid":27369,"tid":27369,"ts":326461790710,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2567709},
-{"pid":27369,"tid":27369,"ts":326461790741,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":2567739},
-{"pid":27369,"tid":27369,"ts":326461790741,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":140},"dur":30,"tdur":31,"tts":2567739},
-{"pid":27369,"tid":27369,"ts":326461790771,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":140},"dur":31,"tdur":0,"tts":2567800},
-{"pid":27369,"tid":27369,"ts":326461790802,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":140},"tts":2567800},
-{"pid":27369,"tid":27369,"ts":326461790832,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2567831},
-{"pid":27369,"tid":27369,"ts":326461790832,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2567831},
-{"pid":27369,"tid":27369,"ts":326461790832,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":2567831},
-{"pid":27369,"tid":27369,"ts":326461790863,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2567862},
-{"pid":27369,"tid":27369,"ts":326461790893,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2567892,"id":"0xaf8a6f71febbc614"},
-{"pid":27369,"tid":27369,"ts":326461790985,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":793,"tts":2567984},
-{"pid":27369,"tid":27369,"ts":326461790985,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":140},"dur":275,"tdur":274,"tts":2567984},
-{"pid":27369,"tid":27369,"ts":326461791016,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":31,"tts":2568014},
-{"pid":27369,"tid":27369,"ts":326461791016,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2568014},
-{"pid":27369,"tid":27369,"ts":326461791016,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2568014},
-{"pid":27369,"tid":27369,"ts":326461791046,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2568045,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461791077,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2568075},
-{"pid":27369,"tid":27369,"ts":326461791260,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2568258},
-{"pid":27369,"tid":27369,"ts":326461791260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":306,"tts":2568258},
-{"pid":27369,"tid":27369,"ts":326461791290,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2568289},
-{"pid":27369,"tid":27369,"ts":326461791290,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2568289},
-{"pid":27369,"tid":27369,"ts":326461791321,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2568319},
-{"pid":27369,"tid":27369,"ts":326461791351,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":2568350},
-{"pid":27369,"tid":27369,"ts":326461791534,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2568533,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461791595,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2568594,"id":"0x30000009d"},
-{"pid":27369,"tid":27369,"ts":326461791626,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":2568625},
-{"pid":27369,"tid":27369,"ts":326461791626,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14111},"dur":91,"tdur":91,"tts":2568625},
-{"pid":27369,"tid":27369,"ts":326461791656,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2568655},
-{"pid":27369,"tid":27369,"ts":326461791687,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2568686,"id":"0xaf8a6f72febbc614"},
-{"pid":27369,"tid":27369,"ts":326461791717,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2568716},
-{"pid":27369,"tid":27369,"ts":326461791748,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2568747},
-{"pid":27369,"tid":27369,"ts":326461792053,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2568869},
-{"pid":27369,"tid":27369,"ts":326461792145,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2568960},
-{"pid":27369,"tid":27369,"ts":326461792145,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2568960,"id":"0xaf8a6105feb47934"},
-{"pid":27369,"tid":27369,"ts":326461792175,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2568991},
-{"pid":27369,"tid":27369,"ts":326461792175,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2568991},
-{"pid":27369,"tid":27369,"ts":326461792236,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2569052,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461792236,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2569052,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461792236,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":31,"tts":2569082},
-{"pid":27369,"tid":27369,"ts":326461792267,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2569082},
-{"pid":27369,"tid":27369,"ts":326461792267,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2569113,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461792358,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2569204},
-{"pid":27369,"tid":27369,"ts":326461793976,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2569357},
-{"pid":27369,"tid":27369,"ts":326461793976,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2569388,"id":"0xaf8a6106feb47934"},
-{"pid":27369,"tid":27369,"ts":326461794007,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":335,"tdur":335,"tts":2569388},
-{"pid":27369,"tid":27369,"ts":326461794007,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":335,"tdur":335,"tts":2569388},
-{"pid":27369,"tid":27369,"ts":326461794037,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":305,"tts":2569418},
-{"pid":27369,"tid":27369,"ts":326461794190,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":61,"tdur":0,"tts":2569601},
-{"pid":27369,"tid":27369,"ts":326461794281,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2569662},
-{"pid":27369,"tid":27369,"ts":326461794312,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2569693},
-{"pid":27369,"tid":27369,"ts":326461794403,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2569784},
-{"pid":27369,"tid":27369,"ts":326461796601,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2570059},
-{"pid":27369,"tid":27369,"ts":326461796601,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2570059,"id":"0xaf8a6107feb47934"},
-{"pid":27369,"tid":27369,"ts":326461796631,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2570090},
-{"pid":27369,"tid":27369,"ts":326461796662,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2570120},
-{"pid":27369,"tid":27369,"ts":326461796662,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2570120},
-{"pid":27369,"tid":27369,"ts":326461796753,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2570212},
-{"pid":27369,"tid":27369,"ts":326461804383,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2570547},
-{"pid":27369,"tid":27369,"ts":326461804933,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2571066},
-{"pid":27369,"tid":27369,"ts":326461804994,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":122,"tts":2571127},
-{"pid":27369,"tid":27369,"ts":326461805146,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":855,"tdur":275,"tts":2571310},
-{"pid":27369,"tid":27369,"ts":326461798000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2571341,"id":"0x3000000a0"},
-{"pid":27369,"tid":27369,"ts":326461805207,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":550,"tdur":30,"tts":2571341},
-{"pid":27369,"tid":27369,"ts":326461805757,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902048},"tts":2571371,"id":"0x3000000a0"},
-{"pid":27369,"tid":27369,"ts":326461805757,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":213,"tdur":183,"tts":2571371},
-{"pid":27369,"tid":27369,"ts":326461805787,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2571402,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461805787,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":152,"tts":2571402},
-{"pid":27369,"tid":27369,"ts":326461805818,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":122,"tts":2571432},
-{"pid":27369,"tid":27369,"ts":326461805879,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2571463},
-{"pid":27369,"tid":27369,"ts":326461805879,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2571493,"id":"0xaf8a6f73febbc614"},
-{"pid":27369,"tid":27369,"ts":326461805940,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2571524,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461805970,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2571554,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461806001,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2571585},
-{"pid":27369,"tid":27369,"ts":326461806245,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2571860},
-{"pid":27369,"tid":27369,"ts":326461806245,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2571860},
-{"pid":27369,"tid":27369,"ts":326461806581,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2571951},
-{"pid":27369,"tid":27369,"ts":326461806581,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461803790},"dur":91,"tdur":92,"tts":2571951},
-{"pid":27369,"tid":27369,"ts":326461806611,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2571982},
-{"pid":27369,"tid":27369,"ts":326461806642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2572012,"id":"0xaf8a6f0cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461806734,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":213,"tdur":61,"tts":2572104},
-{"pid":27369,"tid":27369,"ts":326461806734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2572104,"id":"0xaf8a6100feb47934"},
-{"pid":27369,"tid":27369,"ts":326461806978,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2572195},
-{"pid":27369,"tid":27369,"ts":326461807069,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2572287},
-{"pid":27369,"tid":27369,"ts":326461807161,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2572379},
-{"pid":27369,"tid":27369,"ts":326461807191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2572409,"id":"0xaf8a6100feb47934"},
-{"pid":27369,"tid":27369,"ts":326461807191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1709,"tdur":1465,"tts":2572409},
-{"pid":27369,"tid":27369,"ts":326461807191,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":31,"tts":2572409},
-{"pid":27369,"tid":27369,"ts":326461807222,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1648,"tdur":1404,"tts":2572440},
-{"pid":27369,"tid":27369,"ts":326461807222,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":141},"dur":91,"tdur":61,"tts":2572470},
-{"pid":27369,"tid":27369,"ts":326461807252,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2572470},
-{"pid":27369,"tid":27369,"ts":326461807313,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":275,"tts":2572531},
-{"pid":27369,"tid":27369,"ts":326461807313,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2572562,"id":"0x30000009e"},
-{"pid":27369,"tid":27369,"ts":326461807344,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":2572562},
-{"pid":27369,"tid":27369,"ts":326461807374,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2572592},
-{"pid":27369,"tid":27369,"ts":326461807374,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":183,"tts":2572592},
-{"pid":27369,"tid":27369,"ts":326461807588,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2572806},
-{"pid":27369,"tid":27369,"ts":326461807619,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2572836},
-{"pid":27369,"tid":27369,"ts":326461807619,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2572836},
-{"pid":27369,"tid":27369,"ts":326461807619,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":141},"dur":30,"tdur":31,"tts":2572836},
-{"pid":27369,"tid":27369,"ts":326461807680,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":141},"dur":0,"tdur":0,"tts":2572897},
-{"pid":27369,"tid":27369,"ts":326461807680,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":141},"tts":2572897},
-{"pid":27369,"tid":27369,"ts":326461807710,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2572928},
-{"pid":27369,"tid":27369,"ts":326461807710,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2572928},
-{"pid":27369,"tid":27369,"ts":326461807710,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":30,"tts":2572928},
-{"pid":27369,"tid":27369,"ts":326461807741,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2572958},
-{"pid":27369,"tid":27369,"ts":326461807771,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2572989,"id":"0xaf8a6f0dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461807863,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1007,"tdur":763,"tts":2573081},
-{"pid":27369,"tid":27369,"ts":326461807863,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":141},"dur":488,"tdur":244,"tts":2573081},
-{"pid":27369,"tid":27369,"ts":326461807893,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":275,"tdur":31,"tts":2573111},
-{"pid":27369,"tid":27369,"ts":326461807893,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":275,"tdur":31,"tts":2573111},
-{"pid":27369,"tid":27369,"ts":326461807893,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":0,"tts":2573111},
-{"pid":27369,"tid":27369,"ts":326461808137,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2573111},
-{"pid":27369,"tid":27369,"ts":326461808168,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2573142,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461808198,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2573172},
-{"pid":27369,"tid":27369,"ts":326461808351,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2573325},
-{"pid":27369,"tid":27369,"ts":326461808351,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2573325},
-{"pid":27369,"tid":27369,"ts":326461808382,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2573355},
-{"pid":27369,"tid":27369,"ts":326461808382,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2573355},
-{"pid":27369,"tid":27369,"ts":326461808412,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2573386},
-{"pid":27369,"tid":27369,"ts":326461808443,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":153,"tts":2573416},
-{"pid":27369,"tid":27369,"ts":326461808626,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2573599,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461808687,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2573660,"id":"0x30000009e"},
-{"pid":27369,"tid":27369,"ts":326461808687,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":2573660},
-{"pid":27369,"tid":27369,"ts":326461808717,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16323},"dur":92,"tdur":91,"tts":2573691},
-{"pid":27369,"tid":27369,"ts":326461808748,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2573721},
-{"pid":27369,"tid":27369,"ts":326461808748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2573721,"id":"0xaf8a6f0efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461808809,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":31,"tts":2573782},
-{"pid":27369,"tid":27369,"ts":326461808839,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2573813},
-{"pid":27369,"tid":27369,"ts":326461808961,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2573935},
-{"pid":27369,"tid":27369,"ts":326461809053,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2574027},
-{"pid":27369,"tid":27369,"ts":326461809084,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2574057,"id":"0xaf8a6101feb47934"},
-{"pid":27369,"tid":27369,"ts":326461809084,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2574057},
-{"pid":27369,"tid":27369,"ts":326461809084,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":152,"tdur":153,"tts":2574057},
-{"pid":27369,"tid":27369,"ts":326461809145,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2574118,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461809145,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2574118,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461809175,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":2574149},
-{"pid":27369,"tid":27369,"ts":326461809175,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2574149},
-{"pid":27369,"tid":27369,"ts":326461809206,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2574179,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461809297,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2574271},
-{"pid":27369,"tid":27369,"ts":326461810488,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2574423},
-{"pid":27369,"tid":27369,"ts":326461810518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2574423,"id":"0xaf8a6102feb47934"},
-{"pid":27369,"tid":27369,"ts":326461810518,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2574423},
-{"pid":27369,"tid":27369,"ts":326461810549,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":305,"tdur":305,"tts":2574454},
-{"pid":27369,"tid":27369,"ts":326461810579,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":275,"tdur":275,"tts":2574484},
-{"pid":27369,"tid":27369,"ts":326461810732,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2574637},
-{"pid":27369,"tid":27369,"ts":326461810793,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2574698},
-{"pid":27369,"tid":27369,"ts":326461810823,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2574729},
-{"pid":27369,"tid":27369,"ts":326461810915,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2574820},
-{"pid":27369,"tid":27369,"ts":326461813387,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2575003},
-{"pid":27369,"tid":27369,"ts":326461813417,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2575034,"id":"0xaf8a6103feb47934"},
-{"pid":27369,"tid":27369,"ts":326461813417,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2575034},
-{"pid":27369,"tid":27369,"ts":326461813448,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2575064},
-{"pid":27369,"tid":27369,"ts":326461813479,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2575095},
-{"pid":27369,"tid":27369,"ts":326461813570,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2575186},
-{"pid":27369,"tid":27369,"ts":326461820987,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2575553},
-{"pid":27369,"tid":27407,"ts":326461813173,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1887410,"id":"0xaf8a6103feb47934"},
-{"pid":27369,"tid":27407,"ts":326461821902,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1887623,"id":"0xaf8a6f0ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461821902,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1887623},
-{"pid":27369,"tid":27407,"ts":326461821933,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1887654,"id":"0xba469602"},
-{"pid":27369,"tid":27407,"ts":326461822482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1887837,"id":"0xaf8a6f08febbc614"},
-{"pid":27369,"tid":27407,"ts":326461822482,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1887837},
-{"pid":27369,"tid":27407,"ts":326461822482,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1887837,"id":"0xba469702"},
-{"pid":27369,"tid":27407,"ts":326461823367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1887990,"id":"0xaf8a6f09febbc614"},
-{"pid":27369,"tid":27407,"ts":326461823398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1888020},
-{"pid":27369,"tid":27407,"ts":326461823398,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888020,"id":"0xba469802"},
-{"pid":27369,"tid":27407,"ts":326461823459,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1888081,"id":"0xaf8a6f0afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461823459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1888081},
-{"pid":27369,"tid":27407,"ts":326461823459,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888112,"id":"0xba469906"},
-{"pid":27369,"tid":27407,"ts":326461823642,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":91,"tdur":61,"tts":1888203},
-{"pid":27369,"tid":27407,"ts":326461823672,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":61,"tts":1888203},
-{"pid":27369,"tid":27407,"ts":326461823703,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888234,"id":"0xc4c2180a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461823886,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":123,"tts":1888325},
-{"pid":27369,"tid":27407,"ts":326461823916,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1888356},
-{"pid":27369,"tid":27407,"ts":326461823916,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888356,"id":"0xccc5f402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461823947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1888386,"id":"0xaf8a611dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461824161,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1888539,"id":"0xaf8a6f0bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461824191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1888539},
-{"pid":27369,"tid":27407,"ts":326461824496,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1888631,"id":"0xaf8a6f04febbc614"},
-{"pid":27369,"tid":27407,"ts":326461824496,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1888631},
-{"pid":27369,"tid":27407,"ts":326461824496,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888631,"id":"0xba469a02"},
-{"pid":27369,"tid":27407,"ts":326461825259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1888753,"id":"0xaf8a6f05febbc614"},
-{"pid":27369,"tid":27407,"ts":326461825259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1888783},
-{"pid":27369,"tid":27407,"ts":326461825290,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888783,"id":"0xba469b02"},
-{"pid":27369,"tid":27407,"ts":326461829502,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1888905},
-{"pid":27369,"tid":27407,"ts":326461829563,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1888966},
-{"pid":27369,"tid":27407,"ts":326461829563,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1888966,"id":"0xccc5f702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461829593,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1888997,"id":"0xaf8a611efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461829746,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1889150},
-{"pid":27369,"tid":27407,"ts":326461829776,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1889180},
-{"pid":27369,"tid":27407,"ts":326461829776,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1889180,"id":"0xc4c21b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461829807,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1889211,"id":"0xaf8a611ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326461840916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1889363,"id":"0xaf8a6f06febbc614"},
-{"pid":27369,"tid":27407,"ts":326461840947,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1889394},
-{"pid":27369,"tid":27407,"ts":326461840947,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1889394,"id":"0xba469c02"},
-{"pid":27369,"tid":27407,"ts":326461841344,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1889516,"id":"0xaf8a6f07febbc614"},
-{"pid":27369,"tid":27407,"ts":326461841344,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1889546},
-{"pid":27369,"tid":27407,"ts":326461841374,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1889546,"id":"0xba469d02"},
-{"pid":27369,"tid":27407,"ts":326461842320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1889668,"id":"0xaf8a6f00febbc614"},
-{"pid":27369,"tid":27407,"ts":326461842320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1889668},
-{"pid":27369,"tid":27407,"ts":326461842320,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1889699,"id":"0xba469e02"},
-{"pid":27369,"tid":27407,"ts":326461842687,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":123,"tts":1889790},
-{"pid":27369,"tid":27407,"ts":326461842717,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1889821},
-{"pid":27369,"tid":27407,"ts":326461842717,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1889821,"id":"0xccc5f902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461842748,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1889851,"id":"0xaf8a6119feb47934"},
-{"pid":27369,"tid":27407,"ts":326461842992,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1889974,"id":"0xaf8a6f01febbc614"},
-{"pid":27369,"tid":27407,"ts":326461842992,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":31,"tts":1890004},
-{"pid":27369,"tid":27407,"ts":326461843022,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1890004,"id":"0xba469f02"},
-{"pid":27369,"tid":27407,"ts":326461844914,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1890096},
-{"pid":27369,"tid":27407,"ts":326461844976,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1890157},
-{"pid":27369,"tid":27407,"ts":326461844976,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1890157,"id":"0xccc5fb02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461845006,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1890187,"id":"0xaf8a611afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461847844,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":184,"tdur":183,"tts":1890370},
-{"pid":27369,"tid":27407,"ts":326461847875,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":122,"tts":1890431},
-{"pid":27369,"tid":27407,"ts":326461847905,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1890431,"id":"0xc4c21e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461847936,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1890462,"id":"0xaf8a611bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461855688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1890614,"id":"0xaf8a6f02febbc614"},
-{"pid":27369,"tid":27407,"ts":326461855719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1890645},
-{"pid":27369,"tid":27407,"ts":326461855719,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1890676,"id":"0xba46a002"},
-{"pid":27369,"tid":27407,"ts":326461856146,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1890767,"id":"0xaf8a6f03febbc614"},
-{"pid":27369,"tid":27369,"ts":326461821444,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2576010},
-{"pid":27369,"tid":27369,"ts":326461821505,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":91,"tts":2576072},
-{"pid":27369,"tid":27369,"ts":326461821627,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":306,"tdur":274,"tts":2576194},
-{"pid":27369,"tid":27369,"ts":326461815000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2576224,"id":"0x3000000a1"},
-{"pid":27369,"tid":27369,"ts":326461821658,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902049},"tts":2576255,"id":"0x3000000a1"},
-{"pid":27369,"tid":27369,"ts":326461821688,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":213,"tts":2576255},
-{"pid":27369,"tid":27369,"ts":326461821719,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2576285,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461821719,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2576285},
-{"pid":27369,"tid":27369,"ts":326461821750,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":152,"tdur":152,"tts":2576316},
-{"pid":27369,"tid":27369,"ts":326461821780,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2576346},
-{"pid":27369,"tid":27369,"ts":326461821811,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2576377,"id":"0xaf8a6f0ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461821872,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2576438,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461821872,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2576438,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461821933,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2576499},
-{"pid":27369,"tid":27369,"ts":326461822329,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2576804},
-{"pid":27369,"tid":27369,"ts":326461822360,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2576835},
-{"pid":27369,"tid":27369,"ts":326461822360,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461820472},"dur":91,"tdur":91,"tts":2576835},
-{"pid":27369,"tid":27369,"ts":326461822390,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2576865},
-{"pid":27369,"tid":27369,"ts":326461822421,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2576896,"id":"0xaf8a6f08febbc614"},
-{"pid":27369,"tid":27369,"ts":326461822482,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":91,"tts":2576957},
-{"pid":27369,"tid":27369,"ts":326461822513,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2576987,"id":"0xaf8a611cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461822574,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2577048},
-{"pid":27369,"tid":27369,"ts":326461822696,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2577170},
-{"pid":27369,"tid":27369,"ts":326461822818,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2577292},
-{"pid":27369,"tid":27369,"ts":326461822818,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2577323,"id":"0xaf8a611cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461822848,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2472,"tdur":1801,"tts":2577323},
-{"pid":27369,"tid":27369,"ts":326461822848,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2577323},
-{"pid":27369,"tid":27369,"ts":326461822879,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2441,"tdur":1771,"tts":2577353},
-{"pid":27369,"tid":27369,"ts":326461822909,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":142},"dur":61,"tdur":61,"tts":2577384},
-{"pid":27369,"tid":27369,"ts":326461822909,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2577384},
-{"pid":27369,"tid":27369,"ts":326461822970,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1282,"tdur":610,"tts":2577445},
-{"pid":27369,"tid":27369,"ts":326461823001,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2577475,"id":"0x30000009f"},
-{"pid":27369,"tid":27369,"ts":326461823001,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2577475},
-{"pid":27369,"tid":27369,"ts":326461823031,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2577506},
-{"pid":27369,"tid":27369,"ts":326461823062,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1160,"tdur":489,"tts":2577536},
-{"pid":27369,"tid":27369,"ts":326461823184,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2577689},
-{"pid":27369,"tid":27369,"ts":326461823215,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":2577720},
-{"pid":27369,"tid":27369,"ts":326461823245,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2577720},
-{"pid":27369,"tid":27369,"ts":326461823276,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":16332},"dur":61,"tdur":61,"tts":2577750},
-{"pid":27369,"tid":27369,"ts":326461823276,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2577750},
-{"pid":27369,"tid":27369,"ts":326461823306,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2577781,"id":"0xaf8a6f09febbc614"},
-{"pid":27369,"tid":27369,"ts":326461823367,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":794,"tdur":122,"tts":2577842},
-{"pid":27369,"tid":27369,"ts":326461823367,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2577842,"id":"0xaf8a6f0afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461824100,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2577903,"id":"0xaf8a6f0bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461824222,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2578025},
-{"pid":27369,"tid":27369,"ts":326461824252,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2578055},
-{"pid":27369,"tid":27369,"ts":326461824283,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":91,"tts":2578086},
-{"pid":27369,"tid":27369,"ts":326461824283,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":142},"dur":30,"tdur":30,"tts":2578086},
-{"pid":27369,"tid":27369,"ts":326461824313,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":142},"dur":31,"tdur":31,"tts":2578116},
-{"pid":27369,"tid":27369,"ts":326461824344,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":142},"tts":2578147},
-{"pid":27369,"tid":27369,"ts":326461824344,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2578147},
-{"pid":27369,"tid":27369,"ts":326461824374,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2578177},
-{"pid":27369,"tid":27369,"ts":326461824374,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2578177},
-{"pid":27369,"tid":27369,"ts":326461824405,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2578208},
-{"pid":27369,"tid":27369,"ts":326461824435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2578238,"id":"0xaf8a6f04febbc614"},
-{"pid":27369,"tid":27369,"ts":326461824496,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":794,"tdur":793,"tts":2578300},
-{"pid":27369,"tid":27369,"ts":326461824527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":142},"dur":183,"tdur":183,"tts":2578330},
-{"pid":27369,"tid":27369,"ts":326461824527,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2578330},
-{"pid":27369,"tid":27369,"ts":326461824557,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2578361},
-{"pid":27369,"tid":27369,"ts":326461824557,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2578361},
-{"pid":27369,"tid":27369,"ts":326461824557,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2578361,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461824588,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2578391},
-{"pid":27369,"tid":27369,"ts":326461824679,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2578513},
-{"pid":27369,"tid":27369,"ts":326461824710,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2578513},
-{"pid":27369,"tid":27369,"ts":326461824710,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":2578544},
-{"pid":27369,"tid":27369,"ts":326461824741,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":274,"tts":2578544},
-{"pid":27369,"tid":27369,"ts":326461824771,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2578574},
-{"pid":27369,"tid":27369,"ts":326461824832,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2578635},
-{"pid":27369,"tid":27369,"ts":326461825046,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2578849,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461825107,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2578910,"id":"0x30000009f"},
-{"pid":27369,"tid":27369,"ts":326461825107,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":183,"tts":2578910},
-{"pid":27369,"tid":27369,"ts":326461825137,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2012},"dur":92,"tdur":92,"tts":2578940},
-{"pid":27369,"tid":27369,"ts":326461825168,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2578971},
-{"pid":27369,"tid":27369,"ts":326461825198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2579001,"id":"0xaf8a6f05febbc614"},
-{"pid":27369,"tid":27369,"ts":326461825259,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2579063},
-{"pid":27369,"tid":27369,"ts":326461825259,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2579063},
-{"pid":27369,"tid":27369,"ts":326461825412,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2579215},
-{"pid":27369,"tid":27369,"ts":326461825504,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2579307},
-{"pid":27369,"tid":27369,"ts":326461825534,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2579337,"id":"0xaf8a611dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461825534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":183,"tts":2579337},
-{"pid":27369,"tid":27369,"ts":326461825534,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":366,"tdur":183,"tts":2579337},
-{"pid":27369,"tid":27369,"ts":326461825626,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2579398,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461825626,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2579398},
-{"pid":27369,"tid":27369,"ts":326461825687,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2579398,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461825687,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2579398},
-{"pid":27369,"tid":27369,"ts":326461825778,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":122,"tdur":91,"tts":2579429},
-{"pid":27369,"tid":27369,"ts":326461825809,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2579429},
-{"pid":27369,"tid":27369,"ts":326461825870,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2579490,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461825961,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2579581},
-{"pid":27369,"tid":27369,"ts":326461829807,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2579887},
-{"pid":27369,"tid":27369,"ts":326461829868,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2579917,"id":"0xaf8a611efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461829868,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":366,"tts":2579948},
-{"pid":27369,"tid":27369,"ts":326461829898,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":367,"tdur":366,"tts":2579948},
-{"pid":27369,"tid":27369,"ts":326461829929,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":336,"tdur":336,"tts":2579978},
-{"pid":27369,"tid":27369,"ts":326461830143,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":30,"tts":2580192},
-{"pid":27369,"tid":27369,"ts":326461830204,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2580253},
-{"pid":27369,"tid":27369,"ts":326461830234,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2580283},
-{"pid":27369,"tid":27369,"ts":326461830326,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2580375},
-{"pid":27369,"tid":27369,"ts":326461830417,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2580466},
-{"pid":27369,"tid":27369,"ts":326461830448,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2580497,"id":"0xaf8a611ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461830448,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2580497},
-{"pid":27369,"tid":27369,"ts":326461830478,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2580527},
-{"pid":27369,"tid":27369,"ts":326461830509,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2580558},
-{"pid":27369,"tid":27369,"ts":326461830600,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2580650},
-{"pid":27369,"tid":27369,"ts":326461839909,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2581016},
-{"pid":27369,"tid":27369,"ts":326461840367,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2581443},
-{"pid":27369,"tid":27369,"ts":326461840428,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":153,"tdur":122,"tts":2581535},
-{"pid":27369,"tid":27369,"ts":326461840642,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":305,"tdur":305,"tts":2581718},
-{"pid":27369,"tid":27369,"ts":326461832000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2581748,"id":"0x3000000a2"},
-{"pid":27369,"tid":27369,"ts":326461840703,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902050},"tts":2581779,"id":"0x3000000a2"},
-{"pid":27369,"tid":27369,"ts":326461840733,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2581809},
-{"pid":27369,"tid":27369,"ts":326461840733,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2581840,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461840764,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":152,"tdur":152,"tts":2581840},
-{"pid":27369,"tid":27369,"ts":326461840794,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2581870},
-{"pid":27369,"tid":27369,"ts":326461840825,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2581901},
-{"pid":27369,"tid":27369,"ts":326461840825,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2581931,"id":"0xaf8a6f06febbc614"},
-{"pid":27369,"tid":27369,"ts":326461840886,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2581962,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461840916,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2581992,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461840947,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2582023},
-{"pid":27369,"tid":27369,"ts":326461841191,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2582267},
-{"pid":27369,"tid":27369,"ts":326461841222,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":92,"tts":2582328},
-{"pid":27369,"tid":27369,"ts":326461841252,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461837154},"dur":61,"tdur":61,"tts":2582328},
-{"pid":27369,"tid":27369,"ts":326461841283,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":30,"tdur":30,"tts":2582359},
-{"pid":27369,"tid":27369,"ts":326461841283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2582359,"id":"0xaf8a6f07febbc614"},
-{"pid":27369,"tid":27369,"ts":326461841374,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2582450},
-{"pid":27369,"tid":27369,"ts":326461841374,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2582450,"id":"0xaf8a6118feb47934"},
-{"pid":27369,"tid":27369,"ts":326461841435,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2582511},
-{"pid":27369,"tid":27369,"ts":326461841527,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2582603},
-{"pid":27369,"tid":27369,"ts":326461841649,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2582725},
-{"pid":27369,"tid":27369,"ts":326461841679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2582755,"id":"0xaf8a6118feb47934"},
-{"pid":27369,"tid":27369,"ts":326461841679,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1374,"tdur":1374,"tts":2582755},
-{"pid":27369,"tid":27369,"ts":326461841679,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":31,"tts":2582755},
-{"pid":27369,"tid":27369,"ts":326461841710,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1312,"tdur":1312,"tts":2582786},
-{"pid":27369,"tid":27369,"ts":326461841710,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":143},"dur":91,"tdur":61,"tts":2582817},
-{"pid":27369,"tid":27369,"ts":326461841740,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":2582817},
-{"pid":27369,"tid":27369,"ts":326461841801,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":274,"tts":2582878},
-{"pid":27369,"tid":27369,"ts":326461841801,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2582878,"id":"0x3000000a0"},
-{"pid":27369,"tid":27369,"ts":326461841832,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2582908},
-{"pid":27369,"tid":27369,"ts":326461841832,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":31,"tts":2582908},
-{"pid":27369,"tid":27369,"ts":326461841862,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":183,"tts":2582939},
-{"pid":27369,"tid":27369,"ts":326461842046,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2583122},
-{"pid":27369,"tid":27369,"ts":326461842076,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2583152},
-{"pid":27369,"tid":27369,"ts":326461842107,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":91,"tdur":91,"tts":2583183},
-{"pid":27369,"tid":27369,"ts":326461842107,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":143},"dur":30,"tdur":30,"tts":2583183},
-{"pid":27369,"tid":27369,"ts":326461842137,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":143},"dur":31,"tdur":31,"tts":2583213},
-{"pid":27369,"tid":27369,"ts":326461842168,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":143},"tts":2583244},
-{"pid":27369,"tid":27369,"ts":326461842168,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2583244},
-{"pid":27369,"tid":27369,"ts":326461842168,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2583274},
-{"pid":27369,"tid":27369,"ts":326461842198,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2583274},
-{"pid":27369,"tid":27369,"ts":326461842229,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2583305},
-{"pid":27369,"tid":27369,"ts":326461842229,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2583305,"id":"0xaf8a6f00febbc614"},
-{"pid":27369,"tid":27369,"ts":326461842320,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":2583396},
-{"pid":27369,"tid":27369,"ts":326461842351,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":143},"dur":183,"tdur":183,"tts":2583427},
-{"pid":27369,"tid":27369,"ts":326461842351,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2583427},
-{"pid":27369,"tid":27369,"ts":326461842351,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2583427},
-{"pid":27369,"tid":27369,"ts":326461842351,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2583457},
-{"pid":27369,"tid":27369,"ts":326461842381,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2583457,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461842412,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2583488},
-{"pid":27369,"tid":27369,"ts":326461842503,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2583580},
-{"pid":27369,"tid":27369,"ts":326461842534,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":275,"tdur":275,"tts":2583610},
-{"pid":27369,"tid":27369,"ts":326461842534,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2583610},
-{"pid":27369,"tid":27369,"ts":326461842564,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":214,"tdur":213,"tts":2583641},
-{"pid":27369,"tid":27369,"ts":326461842564,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2583641},
-{"pid":27369,"tid":27369,"ts":326461842625,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":122,"tts":2583702},
-{"pid":27369,"tid":27369,"ts":326461842809,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2583885,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461842870,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2583946,"id":"0x3000000a0"},
-{"pid":27369,"tid":27369,"ts":326461842870,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2583946},
-{"pid":27369,"tid":27369,"ts":326461842900,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4074},"dur":61,"tdur":61,"tts":2583976},
-{"pid":27369,"tid":27369,"ts":326461842900,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2583976},
-{"pid":27369,"tid":27369,"ts":326461842931,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2584007,"id":"0xaf8a6f01febbc614"},
-{"pid":27369,"tid":27369,"ts":326461842992,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":0,"tdur":0,"tts":2584068},
-{"pid":27369,"tid":27369,"ts":326461842992,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2584068},
-{"pid":27369,"tid":27369,"ts":326461843114,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2584190},
-{"pid":27369,"tid":27369,"ts":326461843205,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2584281},
-{"pid":27369,"tid":27369,"ts":326461843236,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2584312,"id":"0xaf8a6119feb47934"},
-{"pid":27369,"tid":27369,"ts":326461843236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2584312},
-{"pid":27369,"tid":27369,"ts":326461843266,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2584343},
-{"pid":27369,"tid":27369,"ts":326461843297,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2584373,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461843327,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2584404,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461843327,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":31,"tdur":30,"tts":2584404},
-{"pid":27369,"tid":27369,"ts":326461843327,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":30,"tts":2584404},
-{"pid":27369,"tid":27369,"ts":326461843358,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2584434,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461843450,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2584526},
-{"pid":27369,"tid":27369,"ts":326461845189,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2584678},
-{"pid":27369,"tid":27369,"ts":326461845220,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2584709,"id":"0xaf8a611afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461845220,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":335,"tdur":336,"tts":2584709},
-{"pid":27369,"tid":27369,"ts":326461845250,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":305,"tdur":306,"tts":2584739},
-{"pid":27369,"tid":27369,"ts":326461845281,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":274,"tdur":275,"tts":2584770},
-{"pid":27369,"tid":27369,"ts":326461845433,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":31,"tts":2584922},
-{"pid":27369,"tid":27369,"ts":326461845494,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2584983},
-{"pid":27369,"tid":27369,"ts":326461845525,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2585014},
-{"pid":27369,"tid":27369,"ts":326461845647,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2585136},
-{"pid":27369,"tid":27369,"ts":326461848119,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2585411},
-{"pid":27369,"tid":27369,"ts":326461848150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2585441,"id":"0xaf8a611bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461848180,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2585472},
-{"pid":27369,"tid":27369,"ts":326461848211,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2585502},
-{"pid":27369,"tid":27369,"ts":326461848211,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2585502},
-{"pid":27369,"tid":27369,"ts":326461848302,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2585594},
-{"pid":27369,"tid":27369,"ts":326461854467,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2585930},
-{"pid":27369,"tid":27369,"ts":326461855047,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2586479},
-{"pid":27369,"tid":27369,"ts":326461855139,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":183,"tdur":152,"tts":2586571},
-{"pid":27369,"tid":27369,"ts":326461855352,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":367,"tdur":366,"tts":2586784},
-{"pid":27369,"tid":27369,"ts":326461848000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2586815,"id":"0x3000000a3"},
-{"pid":27369,"tid":27369,"ts":326461855413,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902051},"tts":2586845,"id":"0x3000000a3"},
-{"pid":27369,"tid":27369,"ts":326461855413,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":275,"tdur":244,"tts":2586876},
-{"pid":27369,"tid":27369,"ts":326461855444,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2586876,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461855475,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":213,"tdur":214,"tts":2586906},
-{"pid":27369,"tid":27369,"ts":326461855505,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":183,"tdur":183,"tts":2586937},
-{"pid":27369,"tid":27369,"ts":326461855536,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2586967},
-{"pid":27369,"tid":27369,"ts":326461855566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2586998,"id":"0xaf8a6f02febbc614"},
-{"pid":27369,"tid":27369,"ts":326461855627,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2587089,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461855658,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2587089,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461855719,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2587150},
-{"pid":27369,"tid":27369,"ts":326461855932,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2587364},
-{"pid":27369,"tid":27369,"ts":326461855993,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":885,"tdur":275,"tts":2587425},
-{"pid":27369,"tid":27369,"ts":326461856024,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461853835},"dur":122,"tdur":91,"tts":2587456},
-{"pid":27369,"tid":27369,"ts":326461856054,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2587486},
-{"pid":27369,"tid":27369,"ts":326461856085,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2587517,"id":"0xaf8a6f03febbc614"},
-{"pid":27369,"tid":27369,"ts":326461856878,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":91,"tts":2587700},
-{"pid":27369,"tid":27369,"ts":326461856909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2587730,"id":"0xaf8a6114feb47934"},
-{"pid":27369,"tid":27369,"ts":326461856970,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2587822},
-{"pid":27369,"tid":27369,"ts":326461857092,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2587944},
-{"pid":27369,"tid":27369,"ts":326461857245,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2588066},
-{"pid":27369,"tid":27369,"ts":326461857275,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2588097,"id":"0xaf8a6114feb47934"},
-{"pid":27369,"tid":27369,"ts":326461857275,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1404,"tdur":1403,"tts":2588097},
-{"pid":27369,"tid":27369,"ts":326461857306,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2588127},
-{"pid":27369,"tid":27369,"ts":326461857306,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1373,"tts":2588127},
-{"pid":27369,"tid":27369,"ts":326461857336,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":144},"dur":61,"tdur":61,"tts":2588158},
-{"pid":27369,"tid":27369,"ts":326461857336,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2588158},
-{"pid":27369,"tid":27369,"ts":326461857397,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":274,"tts":2588219},
-{"pid":27369,"tid":27369,"ts":326461857428,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2588249,"id":"0x3000000a1"},
-{"pid":27369,"tid":27369,"ts":326461857428,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2588249},
-{"pid":27369,"tid":27369,"ts":326461857458,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2588280},
-{"pid":27369,"tid":27369,"ts":326461857458,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2588280},
-{"pid":27369,"tid":27369,"ts":326461857672,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2588493},
-{"pid":27369,"tid":27369,"ts":326461857703,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2588524},
-{"pid":27369,"tid":27369,"ts":326461857703,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2588524},
-{"pid":27369,"tid":27369,"ts":326461857703,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":144},"dur":61,"tdur":61,"tts":2588524},
-{"pid":27369,"tid":27369,"ts":326461857764,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":144},"dur":0,"tdur":0,"tts":2588585},
-{"pid":27369,"tid":27369,"ts":326461857794,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":144},"tts":2588615},
-{"pid":27369,"tid":27369,"ts":326461857794,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2588615},
-{"pid":27369,"tid":27369,"ts":326461857794,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2588615},
-{"pid":27369,"tid":27369,"ts":326461857825,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2588646},
-{"pid":27369,"tid":27369,"ts":326461857855,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":2588676},
-{"pid":27369,"tid":27369,"ts":326461857855,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2588676,"id":"0xaf8a6f1cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461857947,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":2588768},
-{"pid":27369,"tid":27369,"ts":326461857947,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":144},"dur":244,"tdur":244,"tts":2588768},
-{"pid":27369,"tid":27369,"ts":326461857977,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2588799},
-{"pid":27369,"tid":27369,"ts":326461857977,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2588799},
-{"pid":27369,"tid":27369,"ts":326461857977,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2588799},
-{"pid":27369,"tid":27369,"ts":326461858008,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2588829,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461858038,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2588860},
-{"pid":27369,"tid":27369,"ts":326461858160,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2588982},
-{"pid":27369,"tid":27369,"ts":326461858191,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":275,"tdur":275,"tts":2589012},
-{"pid":27369,"tid":27369,"ts":326461858191,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2589012},
-{"pid":27369,"tid":27369,"ts":326461858221,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":214,"tdur":213,"tts":2589043},
-{"pid":27369,"tid":27407,"ts":326461856177,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":701,"tdur":61,"tts":1890798},
-{"pid":27369,"tid":27407,"ts":326461856177,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1890798,"id":"0xba46a102"},
-{"pid":27369,"tid":27407,"ts":326461857916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1890950,"id":"0xaf8a6f1cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461857947,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1890981},
-{"pid":27369,"tid":27407,"ts":326461857947,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1890981,"id":"0xba46a202"},
-{"pid":27369,"tid":27407,"ts":326461858588,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":122,"tts":1891133},
-{"pid":27369,"tid":27407,"ts":326461858618,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":61,"tts":1891164},
-{"pid":27369,"tid":27407,"ts":326461858649,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1891164,"id":"0xccc5fd02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461858649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1891164,"id":"0xaf8a6115feb47934"},
-{"pid":27369,"tid":27407,"ts":326461858740,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1891255,"id":"0xaf8a6f1dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461858740,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1891255},
-{"pid":27369,"tid":27407,"ts":326461858771,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1891286,"id":"0xba46a302"},
-{"pid":27369,"tid":27407,"ts":326461860571,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":184,"tts":1891377},
-{"pid":27369,"tid":27407,"ts":326461860632,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":123,"tdur":122,"tts":1891439},
-{"pid":27369,"tid":27407,"ts":326461860632,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1891439,"id":"0xccc5ff02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461860663,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1891469,"id":"0xaf8a6116feb47934"},
-{"pid":27369,"tid":27407,"ts":326461862616,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1891652},
-{"pid":27369,"tid":27407,"ts":326461862647,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":91,"tts":1891683},
-{"pid":27369,"tid":27407,"ts":326461862647,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1891683,"id":"0xc4c22102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461862677,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1891713,"id":"0xaf8a6117feb47934"},
-{"pid":27369,"tid":27407,"ts":326461871925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1891896,"id":"0xaf8a6f1efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461871956,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1891927},
-{"pid":27369,"tid":27407,"ts":326461871956,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1891927,"id":"0xba46a402"},
-{"pid":27369,"tid":27407,"ts":326461872383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1892079,"id":"0xaf8a6f1ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461872383,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1892079},
-{"pid":27369,"tid":27407,"ts":326461872383,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1892079,"id":"0xba46a502"},
-{"pid":27369,"tid":27407,"ts":326461873390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1892232,"id":"0xaf8a6f18febbc614"},
-{"pid":27369,"tid":27407,"ts":326461873421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1892232},
-{"pid":27369,"tid":27407,"ts":326461873421,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1892232,"id":"0xba46a602"},
-{"pid":27369,"tid":27407,"ts":326461873848,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":153,"tts":1892354},
-{"pid":27369,"tid":27407,"ts":326461873878,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":91,"tts":1892385},
-{"pid":27369,"tid":27407,"ts":326461873909,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1892415,"id":"0xccc60102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461873909,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1892415,"id":"0xaf8a6111feb47934"},
-{"pid":27369,"tid":27407,"ts":326461874122,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1892568,"id":"0xaf8a6f19febbc614"},
-{"pid":27369,"tid":27407,"ts":326461874153,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":31,"tts":1892598},
-{"pid":27369,"tid":27407,"ts":326461874153,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1892598,"id":"0xba46a702"},
-{"pid":27369,"tid":27407,"ts":326461878060,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1892690},
-{"pid":27369,"tid":27407,"ts":326461878121,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1892751},
-{"pid":27369,"tid":27407,"ts":326461878121,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1892751,"id":"0xc4c22302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461878151,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1892781,"id":"0xaf8a6112feb47934"},
-{"pid":27369,"tid":27407,"ts":326461887307,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":1984,"tdur":244,"tts":1892934},
-{"pid":27369,"tid":27407,"ts":326461887368,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":1923,"tdur":183,"tts":1892995},
-{"pid":27369,"tid":27407,"ts":326461887399,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1893026,"id":"0xccc60302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461887429,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1893056,"id":"0xaf8a6113feb47934"},
-{"pid":27369,"tid":27407,"ts":326461891214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1893239,"id":"0xaf8a6f1afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461891244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1893270},
-{"pid":27369,"tid":27407,"ts":326461891244,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1893270,"id":"0xba46a802"},
-{"pid":27369,"tid":27407,"ts":326461891641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1893392,"id":"0xaf8a6f1bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461891672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":30,"tdur":31,"tts":1893422},
-{"pid":27369,"tid":27407,"ts":326461891672,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1893422,"id":"0xba46a902"},
-{"pid":27369,"tid":27407,"ts":326461892557,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1893544,"id":"0xaf8a6f14febbc614"},
-{"pid":27369,"tid":27407,"ts":326461892587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1893575},
-{"pid":27369,"tid":27407,"ts":326461892587,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1893575,"id":"0xba46aa02"},
-{"pid":27369,"tid":27407,"ts":326461892954,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1893667},
-{"pid":27369,"tid":27407,"ts":326461892984,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":92,"tdur":92,"tts":1893697},
-{"pid":27369,"tid":27407,"ts":326461893015,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1893728,"id":"0xccc60502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461893015,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1893728,"id":"0xaf8a612dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461893259,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1893911,"id":"0xaf8a6f15febbc614"},
-{"pid":27369,"tid":27407,"ts":326461893259,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1893911},
-{"pid":27369,"tid":27407,"ts":326461893289,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1893941,"id":"0xba46ab02"},
-{"pid":27369,"tid":27407,"ts":326461897501,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":213,"tts":1894033},
-{"pid":27369,"tid":27407,"ts":326461897562,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1894094},
-{"pid":27369,"tid":27407,"ts":326461897562,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1894094,"id":"0xc4c22602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461897593,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1894124,"id":"0xaf8a612efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461858221,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2589043},
-{"pid":27369,"tid":27369,"ts":326461858282,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":122,"tdur":122,"tts":2589104},
-{"pid":27369,"tid":27369,"ts":326461858466,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2589287,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461858496,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2589348,"id":"0x3000000a1"},
-{"pid":27369,"tid":27369,"ts":326461858527,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2589348},
-{"pid":27369,"tid":27369,"ts":326461858557,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":6136},"dur":61,"tdur":61,"tts":2589378},
-{"pid":27369,"tid":27369,"ts":326461858557,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":2589378},
-{"pid":27369,"tid":27369,"ts":326461858588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2589409,"id":"0xaf8a6f1dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461858618,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2589439},
-{"pid":27369,"tid":27369,"ts":326461858618,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2589439},
-{"pid":27369,"tid":27369,"ts":326461858771,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2589592},
-{"pid":27369,"tid":27369,"ts":326461858893,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2589714},
-{"pid":27369,"tid":27369,"ts":326461858923,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2589745,"id":"0xaf8a6115feb47934"},
-{"pid":27369,"tid":27369,"ts":326461858923,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":152,"tts":2589745},
-{"pid":27369,"tid":27369,"ts":326461858954,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2589775},
-{"pid":27369,"tid":27369,"ts":326461858984,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2589806,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461859015,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2589836,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461859015,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2589836},
-{"pid":27369,"tid":27369,"ts":326461859015,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2589836},
-{"pid":27369,"tid":27369,"ts":326461859045,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2589867,"id":"0xaf8a644cf8c115ac"},
-{"pid":27369,"tid":27369,"ts":326461859137,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2589958},
-{"pid":27369,"tid":27369,"ts":326461860846,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2590141},
-{"pid":27369,"tid":27369,"ts":326461860846,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2590141,"id":"0xaf8a6116feb47934"},
-{"pid":27369,"tid":27369,"ts":326461860877,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":366,"tts":2590172},
-{"pid":27369,"tid":27369,"ts":326461860877,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":335,"tdur":336,"tts":2590172},
-{"pid":27369,"tid":27369,"ts":326461860907,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":306,"tts":2590202},
-{"pid":27369,"tid":27369,"ts":326461861060,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":0,"tts":2590386},
-{"pid":27369,"tid":27369,"ts":326461861151,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2590447},
-{"pid":27369,"tid":27369,"ts":326461861182,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2590477},
-{"pid":27369,"tid":27369,"ts":326461861304,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2590599},
-{"pid":27369,"tid":27369,"ts":326461862830,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2590721},
-{"pid":27369,"tid":27369,"ts":326461862860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2590752,"id":"0xaf8a6117feb47934"},
-{"pid":27369,"tid":27369,"ts":326461862860,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2590752},
-{"pid":27369,"tid":27369,"ts":326461862891,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2590782},
-{"pid":27369,"tid":27369,"ts":326461862922,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2590813},
-{"pid":27369,"tid":27369,"ts":326461862983,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2590904},
-{"pid":27369,"tid":27369,"ts":326461871040,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2591210},
-{"pid":27369,"tid":27369,"ts":326461871467,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2591637},
-{"pid":27369,"tid":27369,"ts":326461871528,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2591698},
-{"pid":27369,"tid":27369,"ts":326461871650,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":306,"tdur":305,"tts":2591820},
-{"pid":27369,"tid":27369,"ts":326461865000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2591881,"id":"0x3000000a4"},
-{"pid":27369,"tid":27369,"ts":326461871711,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902052},"tts":2591881,"id":"0x3000000a4"},
-{"pid":27369,"tid":27369,"ts":326461871742,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":214,"tdur":213,"tts":2591912},
-{"pid":27369,"tid":27369,"ts":326461871742,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2591912,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461871742,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":214,"tdur":183,"tts":2591942},{"pid":27369,"tid":27369,"ts":326461871772,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2591942},
-{"pid":27369,"tid":27369,"ts":326461871803,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2592003},
-{"pid":27369,"tid":27369,"ts":326461871833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2592034,"id":"0xaf8a6f1efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461871894,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2592064,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461871925,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2592095,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461871956,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2592156},
-{"pid":27369,"tid":27369,"ts":326461872230,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2592400},
-{"pid":27369,"tid":27369,"ts":326461872261,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":123,"tts":2592430},
-{"pid":27369,"tid":27369,"ts":326461872261,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461870517},"dur":91,"tdur":92,"tts":2592430},
-{"pid":27369,"tid":27369,"ts":326461872291,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2592461},
-{"pid":27369,"tid":27369,"ts":326461872291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2592461,"id":"0xaf8a6f1ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461872383,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2592553},
-{"pid":27369,"tid":27369,"ts":326461872413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2592583,"id":"0xaf8a6110feb47934"},
-{"pid":27369,"tid":27369,"ts":326461872474,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2592644},
-{"pid":27369,"tid":27369,"ts":326461872566,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2592736},
-{"pid":27369,"tid":27369,"ts":326461872688,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2592858},
-{"pid":27369,"tid":27369,"ts":326461872719,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2592888,"id":"0xaf8a6110feb47934"},
-{"pid":27369,"tid":27369,"ts":326461872719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1465,"tdur":1465,"tts":2592888},
-{"pid":27369,"tid":27369,"ts":326461872749,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2592919},
-{"pid":27369,"tid":27369,"ts":326461872749,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1435,"tdur":1404,"tts":2592949},
-{"pid":27369,"tid":27369,"ts":326461872780,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":145},"dur":91,"tdur":61,"tts":2592980},
-{"pid":27369,"tid":27369,"ts":326461872810,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2592980},
-{"pid":27369,"tid":27369,"ts":326461872871,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2593041},
-{"pid":27369,"tid":27369,"ts":326461872902,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2593071,"id":"0x3000000a2"},
-{"pid":27369,"tid":27369,"ts":326461872902,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":2593071},
-{"pid":27369,"tid":27369,"ts":326461872932,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2593102},
-{"pid":27369,"tid":27369,"ts":326461872963,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":184,"tts":2593132},
-{"pid":27369,"tid":27369,"ts":326461873146,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2593316},
-{"pid":27369,"tid":27369,"ts":326461873176,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2593346},
-{"pid":27369,"tid":27369,"ts":326461873176,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":91,"tts":2593377},
-{"pid":27369,"tid":27369,"ts":326461873207,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":145},"dur":30,"tdur":30,"tts":2593377},
-{"pid":27369,"tid":27369,"ts":326461873237,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":145},"dur":31,"tdur":31,"tts":2593407},
-{"pid":27369,"tid":27369,"ts":326461873268,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":145},"tts":2593438},
-{"pid":27369,"tid":27369,"ts":326461873268,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2593438},
-{"pid":27369,"tid":27369,"ts":326461873268,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2593438},
-{"pid":27369,"tid":27369,"ts":326461873298,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2593468},
-{"pid":27369,"tid":27369,"ts":326461873329,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2593499},
-{"pid":27369,"tid":27369,"ts":326461873329,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2593499,"id":"0xaf8a6f18febbc614"},
-{"pid":27369,"tid":27369,"ts":326461873421,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":733,"tts":2593590},
-{"pid":27369,"tid":27369,"ts":326461873421,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":145},"dur":244,"tdur":244,"tts":2593590},
-{"pid":27369,"tid":27369,"ts":326461873451,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2593621},
-{"pid":27369,"tid":27369,"ts":326461873451,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2593621},
-{"pid":27369,"tid":27369,"ts":326461873451,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":0,"tts":2593621},
-{"pid":27369,"tid":27369,"ts":326461873482,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2593651,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461873482,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2593682},
-{"pid":27369,"tid":27369,"ts":326461873665,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2593834},
-{"pid":27369,"tid":27369,"ts":326461873665,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":275,"tts":2593834},
-{"pid":27369,"tid":27369,"ts":326461873695,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2593865},
-{"pid":27369,"tid":27369,"ts":326461873695,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2593865},
-{"pid":27369,"tid":27369,"ts":326461873695,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2593865},
-{"pid":27369,"tid":27369,"ts":326461873756,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":153,"tts":2593926},
-{"pid":27369,"tid":27369,"ts":326461873939,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2594109,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461874000,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2594170,"id":"0x3000000a2"},
-{"pid":27369,"tid":27369,"ts":326461874000,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2594170},
-{"pid":27369,"tid":27369,"ts":326461874031,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8198},"dur":91,"tdur":61,"tts":2594201},
-{"pid":27369,"tid":27369,"ts":326461874061,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":31,"tdur":31,"tts":2594231},
-{"pid":27369,"tid":27369,"ts":326461874061,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2594231,"id":"0xaf8a6f19febbc614"},
-{"pid":27369,"tid":27369,"ts":326461874122,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2594292},
-{"pid":27369,"tid":27369,"ts":326461874122,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2594292},
-{"pid":27369,"tid":27369,"ts":326461874245,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2594445},
-{"pid":27369,"tid":27369,"ts":326461874367,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2594536},
-{"pid":27369,"tid":27369,"ts":326461874367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2594536,"id":"0xaf8a6111feb47934"},
-{"pid":27369,"tid":27369,"ts":326461874367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2594536},
-{"pid":27369,"tid":27369,"ts":326461874397,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2594567},
-{"pid":27369,"tid":27369,"ts":326461874428,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2594597,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461874458,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2594628,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461874458,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2594628},
-{"pid":27369,"tid":27369,"ts":326461874458,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":30,"tts":2594628},
-{"pid":27369,"tid":27369,"ts":326461874489,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2594658,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461874580,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2594750},
-{"pid":27369,"tid":27369,"ts":326461878334,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2595025},
-{"pid":27369,"tid":27369,"ts":326461878365,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2595055,"id":"0xaf8a6112feb47934"},
-{"pid":27369,"tid":27369,"ts":326461878365,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":92,"tts":2595055},
-{"pid":27369,"tid":27369,"ts":326461878395,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":2595086},
-{"pid":27369,"tid":27369,"ts":326461878426,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2595116},
-{"pid":27369,"tid":27369,"ts":326461878517,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2595208},
-{"pid":27369,"tid":27369,"ts":326461889413,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2595605},
-{"pid":27369,"tid":27369,"ts":326461889413,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2595605,"id":"0xaf8a6113feb47934"},
-{"pid":27369,"tid":27369,"ts":326461889444,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2595635},
-{"pid":27369,"tid":27369,"ts":326461889444,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2595635},
-{"pid":27369,"tid":27369,"ts":326461889505,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":335,"tdur":336,"tts":2595696},
-{"pid":27369,"tid":27369,"ts":326461889688,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2595879},
-{"pid":27369,"tid":27369,"ts":326461889749,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2595971},
-{"pid":27369,"tid":27369,"ts":326461889810,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2596001},
-{"pid":27369,"tid":27369,"ts":326461889932,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2596123},
-{"pid":27369,"tid":27369,"ts":326461890390,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2596307},
-{"pid":27369,"tid":27369,"ts":326461890817,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2596734},
-{"pid":27369,"tid":27369,"ts":326461890878,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":122,"tdur":61,"tts":2596825},
-{"pid":27369,"tid":27369,"ts":326461891000,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":244,"tdur":244,"tts":2596917},
-{"pid":27369,"tid":27369,"ts":326461882000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2596947,"id":"0x3000000a5"},
-{"pid":27369,"tid":27369,"ts":326461891061,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902053},"tts":2596978,"id":"0x3000000a5"},
-{"pid":27369,"tid":27369,"ts":326461891061,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":183,"tdur":183,"tts":2596978},
-{"pid":27369,"tid":27369,"ts":326461891061,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2596978,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461891092,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":123,"tts":2597008},
-{"pid":27369,"tid":27369,"ts":326461891092,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":123,"tts":2597008},
-{"pid":27369,"tid":27369,"ts":326461891122,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2597039},
-{"pid":27369,"tid":27369,"ts":326461891153,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2597070,"id":"0xaf8a6f1afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461891183,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2597100,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461891214,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2597131,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461891244,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2597161},
-{"pid":27369,"tid":27369,"ts":326461891489,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2597436},
-{"pid":27369,"tid":27369,"ts":326461891550,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":2597466},
-{"pid":27369,"tid":27369,"ts":326461891550,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461887198},"dur":91,"tdur":61,"tts":2597466},
-{"pid":27369,"tid":27369,"ts":326461891580,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2597497},
-{"pid":27369,"tid":27369,"ts":326461891580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2597497,"id":"0xaf8a6f1bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461891672,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2597588},
-{"pid":27369,"tid":27369,"ts":326461891672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2597588,"id":"0xaf8a612cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461891733,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2597649},
-{"pid":27369,"tid":27369,"ts":326461891824,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2597741},
-{"pid":27369,"tid":27369,"ts":326461891885,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2597833},
-{"pid":27369,"tid":27369,"ts":326461891916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2597833,"id":"0xaf8a612cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461891916,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1404,"tdur":1403,"tts":2597833},
-{"pid":27369,"tid":27369,"ts":326461891946,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2597863},
-{"pid":27369,"tid":27369,"ts":326461891946,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1343,"tdur":1343,"tts":2597863},
-{"pid":27369,"tid":27369,"ts":326461891977,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":146},"dur":61,"tdur":61,"tts":2597894},
-{"pid":27369,"tid":27369,"ts":326461891977,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2597894},
-{"pid":27369,"tid":27369,"ts":326461892038,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":274,"tts":2597955},
-{"pid":27369,"tid":27369,"ts":326461892068,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2597985,"id":"0x3000000a3"},
-{"pid":27369,"tid":27369,"ts":326461892068,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2597985,"id":"0x3000000a4"},
-{"pid":27369,"tid":27369,"ts":326461892068,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2597985},
-{"pid":27369,"tid":27369,"ts":326461892099,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2598016},
-{"pid":27369,"tid":27369,"ts":326461892130,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":152,"tdur":153,"tts":2598046},
-{"pid":27369,"tid":27369,"ts":326461892313,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2598229},
-{"pid":27369,"tid":27369,"ts":326461892343,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2598260},
-{"pid":27369,"tid":27369,"ts":326461892343,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2598260},
-{"pid":27369,"tid":27369,"ts":326461892343,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":146},"dur":31,"tdur":30,"tts":2598260},
-{"pid":27369,"tid":27369,"ts":326461892404,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":146},"dur":0,"tdur":0,"tts":2598321},
-{"pid":27369,"tid":27369,"ts":326461892404,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":146},"tts":2598321},
-{"pid":27369,"tid":27369,"ts":326461892435,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2598351},
-{"pid":27369,"tid":27369,"ts":326461892435,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2598351},
-{"pid":27369,"tid":27369,"ts":326461892435,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":2598351},
-{"pid":27369,"tid":27369,"ts":326461892465,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2598382},
-{"pid":27369,"tid":27369,"ts":326461892496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2598412,"id":"0xaf8a6f14febbc614"},
-{"pid":27369,"tid":27369,"ts":326461892557,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":732,"tdur":702,"tts":2598504},
-{"pid":27369,"tid":27369,"ts":326461892587,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":146},"dur":183,"tdur":183,"tts":2598504},
-{"pid":27369,"tid":27369,"ts":326461892587,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2598504},
-{"pid":27369,"tid":27369,"ts":326461892618,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2598535},
-{"pid":27369,"tid":27369,"ts":326461892618,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2598535},
-{"pid":27369,"tid":27369,"ts":326461892618,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2598565,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461892648,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2598565},
-{"pid":27369,"tid":27369,"ts":326461892740,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2598657},
-{"pid":27369,"tid":27369,"ts":326461892770,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":275,"tdur":275,"tts":2598687},
-{"pid":27369,"tid":27369,"ts":326461892770,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":31,"tts":2598687},
-{"pid":27369,"tid":27369,"ts":326461892801,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":214,"tdur":213,"tts":2598718},
-{"pid":27369,"tid":27369,"ts":326461892801,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2598718},
-{"pid":27369,"tid":27369,"ts":326461892862,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":2598779},
-{"pid":27369,"tid":27369,"ts":326461893045,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2598962,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461893106,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2599023,"id":"0x3000000a3"},
-{"pid":27369,"tid":27369,"ts":326461893106,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2599023,"id":"0x3000000a4"},
-{"pid":27369,"tid":27369,"ts":326461893137,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":153,"tts":2599053},
-{"pid":27369,"tid":27369,"ts":326461893137,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":10260},"dur":91,"tdur":92,"tts":2599053},
-{"pid":27369,"tid":27369,"ts":326461893167,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2599084},
-{"pid":27369,"tid":27369,"ts":326461893198,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2599114,"id":"0xaf8a6f15febbc614"},
-{"pid":27369,"tid":27369,"ts":326461893228,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":0,"tts":2599175},
-{"pid":27369,"tid":27369,"ts":326461893259,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2599175},
-{"pid":27369,"tid":27369,"ts":326461893381,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2599298},
-{"pid":27369,"tid":27369,"ts":326461893472,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2599389},
-{"pid":27369,"tid":27369,"ts":326461893503,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2599420,"id":"0xaf8a612dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461893503,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2599420},
-{"pid":27369,"tid":27369,"ts":326461893503,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2599420},
-{"pid":27369,"tid":27369,"ts":326461893564,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2599481,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461893564,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2599481,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461893564,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2599481},
-{"pid":27369,"tid":27369,"ts":326461893594,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":31,"tdur":31,"tts":2599511},
-{"pid":27369,"tid":27369,"ts":326461893594,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2599511,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461893686,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2599603},
-{"pid":27369,"tid":27369,"ts":326461897776,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2599847},
-{"pid":27369,"tid":27369,"ts":326461897806,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2599877,"id":"0xaf8a612efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461897806,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":153,"tdur":122,"tts":2599877},
-{"pid":27369,"tid":27369,"ts":326461897898,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":2599969},
-{"pid":27369,"tid":27369,"ts":326461897928,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2599969},
-{"pid":27369,"tid":27369,"ts":326461898020,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2600061},
-{"pid":27369,"tid":27369,"ts":326461904521,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2600427},
-{"pid":27369,"tid":27369,"ts":326461905192,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2601098},
-{"pid":27369,"tid":27369,"ts":326461905345,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":152,"tdur":152,"tts":2601251},
-{"pid":27369,"tid":27369,"ts":326461905528,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":427,"tdur":397,"tts":2601464},
-{"pid":27369,"tid":27369,"ts":326461898031,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2601495,"id":"0x3000000a6"},
-{"pid":27369,"tid":27369,"ts":326461905620,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902054},"tts":2601525,"id":"0x3000000a6"},
-{"pid":27369,"tid":27369,"ts":326461905620,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":335,"tdur":336,"tts":2601525},
-{"pid":27369,"tid":27369,"ts":326461905650,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2601556,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461905681,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":274,"tdur":274,"tts":2601587},
-{"pid":27369,"tid":27369,"ts":326461905711,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":214,"tdur":214,"tts":2601617},
-{"pid":27369,"tid":27369,"ts":326461905742,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":92,"tts":2601678},
-{"pid":27369,"tid":27369,"ts":326461905803,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2601709,"id":"0xaf8a6f16febbc614"},
-{"pid":27369,"tid":27369,"ts":326461905894,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2601800,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461905894,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2601831,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461905986,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2601892},
-{"pid":27369,"tid":27369,"ts":326461906352,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2602227},
-{"pid":27369,"tid":27369,"ts":326461906352,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2602227},
-{"pid":27369,"tid":27369,"ts":326461906444,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":671,"tdur":457,"tts":2602289},
-{"pid":27369,"tid":27369,"ts":326461906474,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461903880},"dur":183,"tdur":152,"tts":2602350},
-{"pid":27369,"tid":27369,"ts":326461906566,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2602411},
-{"pid":27369,"tid":27369,"ts":326461906596,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2602441,"id":"0xaf8a6f17febbc614"},
-{"pid":27369,"tid":27369,"ts":326461907146,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2602777},
-{"pid":27369,"tid":27369,"ts":326461907329,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2602960},
-{"pid":27369,"tid":27369,"ts":326461910503,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2603418},
-{"pid":27369,"tid":27369,"ts":326461910533,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2603448,"id":"0xaf8a612ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326461910533,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":153,"tdur":153,"tts":2603448},
-{"pid":27369,"tid":27369,"ts":326461910533,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":153,"tts":2603448},
-{"pid":27369,"tid":27369,"ts":326461910594,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2603509,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461910625,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2603540,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461910625,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2603540},
-{"pid":27369,"tid":27369,"ts":326461910625,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":30,"tts":2603540},
-{"pid":27369,"tid":27369,"ts":326461910655,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2603570,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461910747,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2603662},
-{"pid":27369,"tid":27369,"ts":326461913250,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2603815},
-{"pid":27369,"tid":27369,"ts":326461913280,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2603845,"id":"0xaf8a6128feb47934"},
-{"pid":27369,"tid":27369,"ts":326461913280,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2603845},
-{"pid":27369,"tid":27369,"ts":326461913311,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":396,"tdur":396,"tts":2603876},
-{"pid":27369,"tid":27369,"ts":326461913341,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":366,"tts":2603906},
-{"pid":27369,"tid":27369,"ts":326461913494,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":91,"tts":2604059},
-{"pid":27369,"tid":27407,"ts":326461905925,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1894368,"id":"0xaf8a6f16febbc614"},
-{"pid":27369,"tid":27407,"ts":326461905925,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1894368},
-{"pid":27369,"tid":27407,"ts":326461905986,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":152,"tdur":152,"tts":1894430},
-{"pid":27369,"tid":27407,"ts":326461906016,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1894460,"id":"0xba46ac02"},
-{"pid":27369,"tid":27407,"ts":326461906688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1894704,"id":"0xaf8a6f17febbc614"},
-{"pid":27369,"tid":27407,"ts":326461906718,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":91,"tts":1894735},
-{"pid":27369,"tid":27407,"ts":326461906749,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1894765,"id":"0xba46ad02"},
-{"pid":27369,"tid":27407,"ts":326461910259,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1894918},
-{"pid":27369,"tid":27407,"ts":326461910289,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1894948},
-{"pid":27369,"tid":27407,"ts":326461910289,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1894948,"id":"0xccc60702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461910320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1894979,"id":"0xaf8a612ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326461912914,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1895162},
-{"pid":27369,"tid":27407,"ts":326461912944,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1895193},
-{"pid":27369,"tid":27407,"ts":326461912975,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1895223,"id":"0xccc60902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461913005,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1895254,"id":"0xaf8a6128feb47934"},
-{"pid":27369,"tid":27407,"ts":326461914501,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1895437,"id":"0xaf8a6f10febbc614"},
-{"pid":27369,"tid":27407,"ts":326461914501,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1895437},
-{"pid":27369,"tid":27407,"ts":326461914531,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1895467,"id":"0xba46ae02"},
-{"pid":27369,"tid":27407,"ts":326461915233,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1895620,"id":"0xaf8a6f11febbc614"},
-{"pid":27369,"tid":27407,"ts":326461915233,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1895620},
-{"pid":27369,"tid":27407,"ts":326461915233,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1895620,"id":"0xba46af02"},
-{"pid":27369,"tid":27407,"ts":326461919323,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":183,"tts":1895742},
-{"pid":27369,"tid":27407,"ts":326461919354,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":152,"tdur":153,"tts":1895772},
-{"pid":27369,"tid":27407,"ts":326461919384,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1895803,"id":"0xc4c22902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461919415,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1895833,"id":"0xaf8a612afeb47934"},
-{"pid":27369,"tid":27407,"ts":326461922009,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1896017,"id":"0xaf8a6f12febbc614"},
-{"pid":27369,"tid":27407,"ts":326461922009,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1896017},
-{"pid":27369,"tid":27407,"ts":326461922039,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1896047,"id":"0xba46b002"},
-{"pid":27369,"tid":27407,"ts":326461922558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1896200,"id":"0xaf8a6f13febbc614"},
-{"pid":27369,"tid":27407,"ts":326461922589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1896230},
-{"pid":27369,"tid":27407,"ts":326461922589,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1896230,"id":"0xba46b102"},
-{"pid":27369,"tid":27407,"ts":326461924115,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":152,"tdur":152,"tts":1896383},
-{"pid":27369,"tid":27407,"ts":326461924145,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":1896413},
-{"pid":27369,"tid":27407,"ts":326461924145,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1896413,"id":"0xccc60b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461924176,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1896444,"id":"0xaf8a612bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461925092,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1896596},
-{"pid":27369,"tid":27407,"ts":326461925153,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":91,"tdur":91,"tts":1896658},
-{"pid":27369,"tid":27407,"ts":326461925153,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1896658,"id":"0xccc60d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461925183,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1896688,"id":"0xaf8a6124feb47934"},
-{"pid":27369,"tid":27407,"ts":326461926556,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1896841,"id":"0xaf8a6f2cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461926587,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":31,"tts":1896871},
-{"pid":27369,"tid":27407,"ts":326461926587,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1896871,"id":"0xba46b202"},
-{"pid":27369,"tid":27407,"ts":326461927258,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1896993,"id":"0xaf8a6f2dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461927258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1896993},
-{"pid":27369,"tid":27407,"ts":326461927289,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1897024,"id":"0xba46b302"},
-{"pid":27369,"tid":27407,"ts":326461928601,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1897146,"id":"0xaf8a6f2efebbc614"},
-{"pid":27369,"tid":27407,"ts":326461928601,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1897146},
-{"pid":27369,"tid":27407,"ts":326461928632,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1897176,"id":"0xba46b402"},
-{"pid":27369,"tid":27407,"ts":326461930890,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1897268},
-{"pid":27369,"tid":27407,"ts":326461930951,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":123,"tdur":122,"tts":1897329},
-{"pid":27369,"tid":27407,"ts":326461930951,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1897329,"id":"0xccc60f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461930982,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1897359,"id":"0xaf8a6126feb47934"},
-{"pid":27369,"tid":27407,"ts":326461931592,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1897543,"id":"0xaf8a6f2ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326461931623,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1897573},
-{"pid":27369,"tid":27407,"ts":326461931623,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1897573,"id":"0xba46b502"},
-{"pid":27369,"tid":27407,"ts":326461931684,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1897634},
-{"pid":27369,"tid":27407,"ts":326461931714,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":91,"tts":1897665},
-{"pid":27369,"tid":27407,"ts":326461931714,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1897665,"id":"0xc4c22c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461931745,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1897695,"id":"0xaf8a6127feb47934"},
-{"pid":27369,"tid":27407,"ts":326461936323,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":397,"tdur":397,"tts":1897848},
-{"pid":27369,"tid":27407,"ts":326461936384,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":28,"line":144},"dur":214,"tdur":213,"tts":1897909},
-{"pid":27369,"tid":27407,"ts":326461936384,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1897909,"id":"0xccc61202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461936476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1898000,"id":"0xaf8a6120feb47934"},
-{"pid":27369,"tid":27407,"ts":326461936628,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":85,"line":61},"dur":61,"tdur":61,"tts":1898153},
-{"pid":27369,"tid":27369,"ts":326461913524,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2604089},
-{"pid":27369,"tid":27369,"ts":326461913555,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2604120,"id":"0xaf8a6129feb47934"},
-{"pid":27369,"tid":27369,"ts":326461913616,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2604211},
-{"pid":27369,"tid":27369,"ts":326461913677,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2604242},
-{"pid":27369,"tid":27369,"ts":326461913768,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2604333},
-{"pid":27369,"tid":27369,"ts":326461913860,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2604425},
-{"pid":27369,"tid":27369,"ts":326461913860,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2604425,"id":"0xaf8a6129feb47934"},
-{"pid":27369,"tid":27369,"ts":326461913891,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1403,"tdur":1404,"tts":2604455},
-{"pid":27369,"tid":27369,"ts":326461913891,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2604455},
-{"pid":27369,"tid":27369,"ts":326461913921,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1343,"tdur":1343,"tts":2604486},
-{"pid":27369,"tid":27369,"ts":326461913921,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":147},"dur":61,"tdur":61,"tts":2604486},
-{"pid":27369,"tid":27369,"ts":326461913952,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":30,"tdur":31,"tts":2604516},
-{"pid":27369,"tid":27369,"ts":326461913982,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":275,"tts":2604547},
-{"pid":27369,"tid":27369,"ts":326461914013,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2604578,"id":"0x3000000a5"},
-{"pid":27369,"tid":27369,"ts":326461914013,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":30,"tts":2604578},
-{"pid":27369,"tid":27369,"ts":326461914043,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2604608},
-{"pid":27369,"tid":27369,"ts":326461914043,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":152,"tts":2604639},
-{"pid":27369,"tid":27369,"ts":326461914226,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2604791},
-{"pid":27369,"tid":27369,"ts":326461914257,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2604822},
-{"pid":27369,"tid":27369,"ts":326461914287,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":92,"tdur":92,"tts":2604852},
-{"pid":27369,"tid":27369,"ts":326461914287,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":147},"dur":31,"tdur":31,"tts":2604852},
-{"pid":27369,"tid":27369,"ts":326461914318,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":147},"dur":30,"tdur":30,"tts":2604883},
-{"pid":27369,"tid":27369,"ts":326461914348,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":147},"tts":2604913},
-{"pid":27369,"tid":27369,"ts":326461914348,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2604913},
-{"pid":27369,"tid":27369,"ts":326461914348,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2604913},
-{"pid":27369,"tid":27369,"ts":326461914379,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2604944},
-{"pid":27369,"tid":27369,"ts":326461914409,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2604974},
-{"pid":27369,"tid":27369,"ts":326461914409,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2604974,"id":"0xaf8a6f10febbc614"},
-{"pid":27369,"tid":27369,"ts":326461914501,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":763,"tts":2605066},
-{"pid":27369,"tid":27369,"ts":326461914531,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":147},"dur":214,"tdur":214,"tts":2605096},
-{"pid":27369,"tid":27369,"ts":326461914531,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2605096},
-{"pid":27369,"tid":27369,"ts":326461914531,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":0,"tts":2605127},
-{"pid":27369,"tid":27369,"ts":326461914562,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2605127},
-{"pid":27369,"tid":27369,"ts":326461914562,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2605157,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461914592,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2605157},
-{"pid":27369,"tid":27369,"ts":326461914745,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2605310},
-{"pid":27369,"tid":27369,"ts":326461914745,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":274,"tts":2605341},
-{"pid":27369,"tid":27369,"ts":326461914776,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2605341},
-{"pid":27369,"tid":27369,"ts":326461914776,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2605341},
-{"pid":27369,"tid":27369,"ts":326461914806,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2605371},
-{"pid":27369,"tid":27369,"ts":326461914837,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":152,"tts":2605402},
-{"pid":27369,"tid":27369,"ts":326461915020,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2605585,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461915081,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2605646,"id":"0x3000000a5"},
-{"pid":27369,"tid":27369,"ts":326461915081,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":152,"tdur":152,"tts":2605646},
-{"pid":27369,"tid":27369,"ts":326461915111,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12322},"dur":92,"tdur":92,"tts":2605676},
-{"pid":27369,"tid":27369,"ts":326461915142,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2605707},
-{"pid":27369,"tid":27369,"ts":326461915142,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2605707,"id":"0xaf8a6f11febbc614"},
-{"pid":27369,"tid":27369,"ts":326461915203,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2605768},
-{"pid":27369,"tid":27369,"ts":326461915233,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2605798},
-{"pid":27369,"tid":27369,"ts":326461915356,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2605920},
-{"pid":27369,"tid":27369,"ts":326461919598,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2606195},
-{"pid":27369,"tid":27369,"ts":326461919628,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2606226,"id":"0xaf8a612afeb47934"},
-{"pid":27369,"tid":27369,"ts":326461919628,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":91,"tts":2606226},
-{"pid":27369,"tid":27369,"ts":326461919689,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2606287},
-{"pid":27369,"tid":27369,"ts":326461919689,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2606287},
-{"pid":27369,"tid":27369,"ts":326461919781,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2606378},
-{"pid":27369,"tid":27369,"ts":326461921093,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2606653},
-{"pid":27369,"tid":27369,"ts":326461921551,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2607080},
-{"pid":27369,"tid":27369,"ts":326461921612,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":92,"tdur":92,"tts":2607141},
-{"pid":27369,"tid":27369,"ts":326461921734,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":305,"tdur":306,"tts":2607263},
-{"pid":27369,"tid":27369,"ts":326461915000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2607294,"id":"0x3000000a7"},
-{"pid":27369,"tid":27369,"ts":326461921765,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902055},"tts":2607324,"id":"0x3000000a7"},
-{"pid":27369,"tid":27369,"ts":326461921795,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":244,"tdur":214,"tts":2607324},
-{"pid":27369,"tid":27369,"ts":326461921826,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2607355,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461921826,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2607355},
-{"pid":27369,"tid":27369,"ts":326461921856,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":153,"tdur":153,"tts":2607385},
-{"pid":27369,"tid":27369,"ts":326461921887,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2607416},
-{"pid":27369,"tid":27369,"ts":326461921917,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2607446,"id":"0xaf8a6f12febbc614"},
-{"pid":27369,"tid":27369,"ts":326461921978,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2607507,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461922009,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2607538,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461922039,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2607569},
-{"pid":27369,"tid":27369,"ts":326461922406,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2607843},
-{"pid":27369,"tid":27369,"ts":326461922467,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":91,"tdur":92,"tts":2607904},
-{"pid":27369,"tid":27369,"ts":326461922467,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461920561},"dur":61,"tdur":61,"tts":2607904},
-{"pid":27369,"tid":27369,"ts":326461922497,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2607935},
-{"pid":27369,"tid":27369,"ts":326461922497,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2607935,"id":"0xaf8a6f13febbc614"},
-{"pid":27369,"tid":27369,"ts":326461922589,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2608026},
-{"pid":27369,"tid":27369,"ts":326461922680,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2608148},
-{"pid":27369,"tid":27369,"ts":326461924359,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2608332},
-{"pid":27369,"tid":27369,"ts":326461924390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2608362,"id":"0xaf8a612bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461924390,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":152,"tdur":153,"tts":2608362},
-{"pid":27369,"tid":27369,"ts":326461924420,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":122,"tdur":122,"tts":2608393},
-{"pid":27369,"tid":27369,"ts":326461924451,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2608423,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461924481,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2608454,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461924481,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2608454},
-{"pid":27369,"tid":27369,"ts":326461924512,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":30,"tdur":31,"tts":2608484},
-{"pid":27369,"tid":27369,"ts":326461924512,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2608484,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461924603,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2608576},
-{"pid":27369,"tid":27369,"ts":326461925336,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2608728},
-{"pid":27369,"tid":27369,"ts":326461925366,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2608759,"id":"0xaf8a6124feb47934"},
-{"pid":27369,"tid":27369,"ts":326461925366,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":427,"tdur":427,"tts":2608759},
-{"pid":27369,"tid":27369,"ts":326461925366,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":427,"tdur":427,"tts":2608759},
-{"pid":27369,"tid":27369,"ts":326461925397,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":366,"tdur":367,"tts":2608789},
-{"pid":27369,"tid":27369,"ts":326461925580,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":91,"tdur":92,"tts":2608972},
-{"pid":27369,"tid":27369,"ts":326461925610,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2609003},
-{"pid":27369,"tid":27369,"ts":326461925610,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2609034,"id":"0xaf8a6125feb47934"},
-{"pid":27369,"tid":27369,"ts":326461925702,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2609095},
-{"pid":27369,"tid":27369,"ts":326461925732,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2609156},
-{"pid":27369,"tid":27369,"ts":326461925855,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2609247},
-{"pid":27369,"tid":27369,"ts":326461925916,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2609308},
-{"pid":27369,"tid":27369,"ts":326461925946,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2609339,"id":"0xaf8a6125feb47934"},
-{"pid":27369,"tid":27369,"ts":326461925946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1373,"tdur":1373,"tts":2609339},
-{"pid":27369,"tid":27369,"ts":326461925977,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2609369},
-{"pid":27369,"tid":27369,"ts":326461925977,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1312,"tdur":1313,"tts":2609369},
-{"pid":27369,"tid":27369,"ts":326461926007,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":148},"dur":61,"tdur":61,"tts":2609400},
-{"pid":27369,"tid":27369,"ts":326461926007,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2609400},
-{"pid":27369,"tid":27369,"ts":326461926068,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":274,"tts":2609461},
-{"pid":27369,"tid":27369,"ts":326461926068,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2609461,"id":"0x3000000a6"},
-{"pid":27369,"tid":27369,"ts":326461926099,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2609491},
-{"pid":27369,"tid":27369,"ts":326461926099,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2609491},
-{"pid":27369,"tid":27369,"ts":326461926129,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2609522},
-{"pid":27369,"tid":27369,"ts":326461926312,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2609705},
-{"pid":27369,"tid":27369,"ts":326461926343,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2609735},
-{"pid":27369,"tid":27369,"ts":326461926343,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":123,"tts":2609735},
-{"pid":27369,"tid":27369,"ts":326461926373,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":148},"dur":31,"tdur":31,"tts":2609766},
-{"pid":27369,"tid":27369,"ts":326461926404,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":148},"dur":0,"tdur":0,"tts":2609797},
-{"pid":27369,"tid":27369,"ts":326461926434,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":148},"tts":2609827},
-{"pid":27369,"tid":27369,"ts":326461926434,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2609827},
-{"pid":27369,"tid":27369,"ts":326461926434,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2609827},
-{"pid":27369,"tid":27369,"ts":326461926465,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2609858},
-{"pid":27369,"tid":27369,"ts":326461926465,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2609858},
-{"pid":27369,"tid":27369,"ts":326461926495,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2609888,"id":"0xaf8a6f2cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461926587,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":2609980},
-{"pid":27369,"tid":27369,"ts":326461926587,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":148},"dur":214,"tdur":213,"tts":2609980},
-{"pid":27369,"tid":27369,"ts":326461926587,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":31,"tts":2610010},
-{"pid":27369,"tid":27369,"ts":326461926618,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":0,"tts":2610010},
-{"pid":27369,"tid":27369,"ts":326461926618,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2610010},
-{"pid":27369,"tid":27369,"ts":326461926648,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2610041,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461926648,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2610041},
-{"pid":27369,"tid":27369,"ts":326461926770,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2610193},
-{"pid":27369,"tid":27369,"ts":326461926801,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":274,"tdur":275,"tts":2610193},
-{"pid":27369,"tid":27369,"ts":326461926801,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2610193},
-{"pid":27369,"tid":27369,"ts":326461926831,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":214,"tdur":213,"tts":2610224},
-{"pid":27369,"tid":27369,"ts":326461926831,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2610224},
-{"pid":27369,"tid":27369,"ts":326461926892,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":152,"tts":2610285},
-{"pid":27369,"tid":27369,"ts":326461927075,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2610468,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461927136,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2610529,"id":"0x3000000a6"},
-{"pid":27369,"tid":27369,"ts":326461927136,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2610529},
-{"pid":27369,"tid":27369,"ts":326461927167,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14384},"dur":61,"tdur":61,"tts":2610560},
-{"pid":27369,"tid":27369,"ts":326461927167,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2610560},
-{"pid":27369,"tid":27369,"ts":326461927197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2610590,"id":"0xaf8a6f2dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461927228,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2610621},
-{"pid":27369,"tid":27369,"ts":326461927258,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2610651},
-{"pid":27369,"tid":27369,"ts":326461927381,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2610773},
-{"pid":27369,"tid":27369,"ts":326461927381,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2610773},
-{"pid":27369,"tid":27369,"ts":326461928235,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2611292},
-{"pid":27369,"tid":27369,"ts":326461928327,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":30,"tdur":30,"tts":2611384},
-{"pid":27369,"tid":27369,"ts":326461928388,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":213,"tdur":213,"tts":2611445},
-{"pid":27369,"tid":27369,"ts":326461917000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2611475,"id":"0x3000000a8"},
-{"pid":27369,"tid":27369,"ts":326461928418,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902056},"tts":2611506,"id":"0x3000000a8"},
-{"pid":27369,"tid":27369,"ts":326461928449,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":152,"tdur":152,"tts":2611506},
-{"pid":27369,"tid":27369,"ts":326461928449,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2611506,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461928479,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2611536},
-{"pid":27369,"tid":27369,"ts":326461928479,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchMove"},"dur":122,"tdur":122,"tts":2611536},
-{"pid":27369,"tid":27369,"ts":326461928510,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2611567},
-{"pid":27369,"tid":27369,"ts":326461928540,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2611597,"id":"0xaf8a6f2efebbc614"},
-{"pid":27369,"tid":27369,"ts":326461928571,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2611628,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461928571,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2611628,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461928632,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2611689},
-{"pid":27369,"tid":27369,"ts":326461929181,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2612086},
-{"pid":27369,"tid":27369,"ts":326461929242,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_POINTER_UP"},"dur":61,"tdur":61,"tts":2612116},
-{"pid":27369,"tid":27369,"ts":326461929334,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":61,"tdur":61,"tts":2612208},
-{"pid":27369,"tid":27369,"ts":326461927000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{},"tts":2612208,"id":"0x3000000a9"},
-{"pid":27369,"tid":27369,"ts":326461929364,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902057},"tts":2612238,"id":"0x3000000a9"},
-{"pid":27369,"tid":27369,"ts":326461929364,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":31,"tts":2612238},
-{"pid":27369,"tid":27369,"ts":326461929364,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2612238,"id":"0xaf8a644cf811530c"},
-{"pid":27369,"tid":27369,"ts":326461929395,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2612269},
-{"pid":27369,"tid":27369,"ts":326461931196,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2612604},
-{"pid":27369,"tid":27369,"ts":326461931226,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2612635,"id":"0xaf8a6126feb47934"},
-{"pid":27369,"tid":27369,"ts":326461931226,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":305,"tdur":275,"tts":2612665},
-{"pid":27369,"tid":27369,"ts":326461931257,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":274,"tdur":275,"tts":2612665},
-{"pid":27369,"tid":27369,"ts":326461931318,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2612726,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461931318,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2612726,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461931318,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchMove","ack":"CONSUMED"},"dur":183,"tdur":184,"tts":2612726},
-{"pid":27369,"tid":27369,"ts":326461931348,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":153,"tdur":153,"tts":2612757},
-{"pid":27369,"tid":27369,"ts":326461931379,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2612788,"id":"0xaf8a644cf80f4c2c"},
-{"pid":27369,"tid":27369,"ts":326461931379,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":122,"tdur":122,"tts":2612788},
-{"pid":27369,"tid":27369,"ts":326461931379,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchEnd"},"dur":122,"tdur":122,"tts":2612788},
-{"pid":27369,"tid":27369,"ts":326461931409,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2612818},
-{"pid":27369,"tid":27369,"ts":326461931440,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2612849,"id":"0xaf8a6f2ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326461931470,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2612879,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461931501,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2612910,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461931623,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2613032},
-{"pid":27369,"tid":27369,"ts":326461931898,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2613184},
-{"pid":27369,"tid":27369,"ts":326461931898,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2613184,"id":"0xaf8a6127feb47934"},
-{"pid":27369,"tid":27369,"ts":326461931928,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2613215},
-{"pid":27369,"tid":27369,"ts":326461931959,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2613245},
-{"pid":27369,"tid":27369,"ts":326461931959,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2613245},
-{"pid":27369,"tid":27369,"ts":326461932050,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2613337},
-{"pid":27369,"tid":27369,"ts":326461936720,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2613489},
-{"pid":27369,"tid":27369,"ts":326461936750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2613520,"id":"0xaf8a6120feb47934"},
-{"pid":27369,"tid":27369,"ts":326461936750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/histogram_controller.cc","src_func":"OnHistogramDataCollected"},"dur":305,"tdur":244,"tts":2613520},
-{"pid":27369,"tid":27407,"ts":326461936628,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1898153,"id":"0xccc61102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461936659,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1898184,"id":"0xaf8a6121feb47934"},
-{"pid":27369,"tid":27407,"ts":326461939497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1898336,"id":"0xaf8a6f28febbc614"},
-{"pid":27369,"tid":27407,"ts":326461939497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1898336},
-{"pid":27369,"tid":27407,"ts":326461939497,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1898336,"id":"0xba46b602"},
-{"pid":27369,"tid":27407,"ts":326461949905,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":610,"tdur":366,"tts":1898489},
-{"pid":27369,"tid":27407,"ts":326461949966,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":427,"tdur":183,"tts":1898550},
-{"pid":27369,"tid":27407,"ts":326461949966,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1898550,"id":"0xccc61302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461949996,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1898580,"id":"0xaf8a6122feb47934"},
-{"pid":27369,"tid":27407,"ts":326461950393,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1382},"dur":91,"tdur":91,"tts":1898733},
-{"pid":27369,"tid":27407,"ts":326461950423,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1898763,"id":"0xccc61402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461950454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1898794,"id":"0xaf8a6123feb47934"},
-{"pid":27369,"tid":27407,"ts":326461951034,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1898916,"id":"0xaf8a6f29febbc614"},
-{"pid":27369,"tid":27407,"ts":326461951064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1898947},
-{"pid":27369,"tid":27407,"ts":326461951064,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1898947,"id":"0xba46b702"},
-{"pid":27369,"tid":27407,"ts":326461951858,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1899099,"id":"0xaf8a6f2afebbc614"},
-{"pid":27369,"tid":27407,"ts":326461951858,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1899099},
-{"pid":27369,"tid":27407,"ts":326461951888,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1899130,"id":"0xba46b802"},
-{"pid":27369,"tid":27407,"ts":326461954727,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1899252,"id":"0xaf8a6f2bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326461954727,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1899252},
-{"pid":27369,"tid":27407,"ts":326461954757,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1899282,"id":"0xba46b902"},
-{"pid":27369,"tid":27407,"ts":326461961289,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":274,"tdur":275,"tts":1899435},
-{"pid":27369,"tid":27407,"ts":326461961350,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":213,"tdur":214,"tts":1899496},
-{"pid":27369,"tid":27407,"ts":326461961380,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1899526,"id":"0xccc61702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461961441,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1899587,"id":"0xaf8a613cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326461963150,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1899801,"id":"0xaf8a6f24febbc614"},
-{"pid":27369,"tid":27407,"ts":326461963181,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1899832},
-{"pid":27369,"tid":27407,"ts":326461963181,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1899832,"id":"0xba46ba02"},
-{"pid":27369,"tid":27407,"ts":326461964005,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1899984,"id":"0xaf8a6f25febbc614"},
-{"pid":27369,"tid":27407,"ts":326461964005,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1899984},
-{"pid":27369,"tid":27407,"ts":326461964036,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1900015,"id":"0xba46bb02"},
-{"pid":27369,"tid":27407,"ts":326461968858,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":213,"tdur":183,"tts":1900167},
-{"pid":27369,"tid":27407,"ts":326461968919,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1900198},
-{"pid":27369,"tid":27407,"ts":326461968919,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1900198,"id":"0xc4c22f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326461968949,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1900228,"id":"0xaf8a613efeb47934"},
-{"pid":27369,"tid":27407,"ts":326461971269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1900442,"id":"0xaf8a6f26febbc614"},
-{"pid":27369,"tid":27407,"ts":326461971269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1900473},
-{"pid":27369,"tid":27407,"ts":326461971299,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1900473,"id":"0xba46bc02"},
-{"pid":27369,"tid":27407,"ts":326461988971,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1900595,"id":"0xaf8a6f27febbc614"},
-{"pid":27369,"tid":27407,"ts":326461989001,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1900625},
-{"pid":27369,"tid":27407,"ts":326461989001,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1900625,"id":"0xba46bd02"},
-{"pid":27369,"tid":27407,"ts":326462005269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1900839,"id":"0xaf8a6f20febbc614"},
-{"pid":27369,"tid":27407,"ts":326462005299,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1900869},
-{"pid":27369,"tid":27407,"ts":326462005299,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1900869,"id":"0xba46be02"},
-{"pid":27369,"tid":27407,"ts":326462021475,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1901022,"id":"0xaf8a6f21febbc614"},
-{"pid":27369,"tid":27407,"ts":326462021505,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1901052},
-{"pid":27369,"tid":27407,"ts":326462021505,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1901052,"id":"0xba46bf02"},
-{"pid":27369,"tid":27407,"ts":326462038536,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1901266,"id":"0xaf8a6f22febbc614"},
-{"pid":27369,"tid":27407,"ts":326462038566,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1901297},
-{"pid":27369,"tid":27407,"ts":326462038597,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1901327,"id":"0xba46c002"},
-{"pid":27369,"tid":27407,"ts":326462043266,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":489,"tdur":488,"tts":1901541},
-{"pid":27369,"tid":27407,"ts":326462043327,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":3,"line":243},"dur":214,"tdur":213,"tts":1901602},
-{"pid":27369,"tid":27407,"ts":326462043358,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1901632,"id":"0xccc61802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462043388,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1901663,"id":"0xaf8a613ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326462043572,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1382},"dur":152,"tdur":153,"tts":1901846},
-{"pid":27369,"tid":27407,"ts":326462043572,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1901877,"id":"0xccc61902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462043633,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1901907,"id":"0xaf8a6138feb47934"},
-{"pid":27369,"tid":27407,"ts":326462044518,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1902182,"id":"0xaf8a6f23febbc614"},
-{"pid":27369,"tid":27407,"ts":326462044548,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":122,"tdur":122,"tts":1902212},
-{"pid":27369,"tid":27407,"ts":326462044579,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1902243,"id":"0xba46c102"},
-{"pid":27369,"tid":27407,"ts":326462054834,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1902426,"id":"0xaf8a6f3cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462054864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1902456},
-{"pid":27369,"tid":27407,"ts":326462054864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1902456,"id":"0xba46c202"},
-{"pid":27369,"tid":27407,"ts":326462069453,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1902578},
-{"pid":27369,"tid":27369,"ts":326461937117,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2613825},
-{"pid":27369,"tid":27369,"ts":326461937666,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2614314},
-{"pid":27369,"tid":27369,"ts":326461937757,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_MOVE"},"dur":31,"tdur":31,"tts":2614405},
-{"pid":27369,"tid":27369,"ts":326461937819,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":91,"tdur":92,"tts":2614466},
-{"pid":27369,"tid":27369,"ts":326461927000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{},"tts":2614497,"id":"0x3000000aa"},
-{"pid":27369,"tid":27369,"ts":326461937849,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902058},"tts":2614527,"id":"0x3000000aa"},
-{"pid":27369,"tid":27369,"ts":326461937880,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":30,"tdur":31,"tts":2614527},
-{"pid":27369,"tid":27369,"ts":326461937910,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2614558,"id":"0xaf8a644cf8256e6c"},
-{"pid":27369,"tid":27369,"ts":326461937941,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2614588},
-{"pid":27369,"tid":27369,"ts":326461938398,"ph":"B","cat":"Java","name":"onTouchEvent","args":{},"tts":2615077},
-{"pid":27369,"tid":27369,"ts":326461938459,"ph":"X","cat":"input","name":"GestureProvider::OnTouchEvent","args":{"action":"ACTION_UP"},"dur":92,"tdur":61,"tts":2615107},
-{"pid":27369,"tid":27369,"ts":326461938551,"ph":"X","cat":"input","name":"RenderWidgetHostImpl::ForwardTouchEvent","args":{},"dur":92,"tdur":91,"tts":2615199},
-{"pid":27369,"tid":27369,"ts":326461936000,"ph":"S","cat":"benchmark,latencyInfo","name":"InputLatency::TouchEnd","args":{},"tts":2615229,"id":"0x3000000ab"},
-{"pid":27369,"tid":27369,"ts":326461938612,"ph":"s","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"trace_id":12884902059},"tts":2615260,"id":"0x3000000ab"},
-{"pid":27369,"tid":27369,"ts":326461938612,"ph":"X","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"dur":31,"tdur":30,"tts":2615260},
-{"pid":27369,"tid":27369,"ts":326461938643,"ph":"S","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2615290,"id":"0xaf8a644cf80cea54"},
-{"pid":27369,"tid":27369,"ts":326461938673,"ph":"E","cat":"Java","name":"onTouchEvent","args":{},"tts":2615321},
-{"pid":27369,"tid":27369,"ts":326461938887,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2615534},
-{"pid":27369,"tid":27369,"ts":326461938917,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2615565,"id":"0xaf8a6121feb47934"},
-{"pid":27369,"tid":27369,"ts":326461938917,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2615565},
-{"pid":27369,"tid":27369,"ts":326461938948,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":85,"line":61},"dur":61,"tdur":61,"tts":2615595},
-{"pid":27369,"tid":27369,"ts":326461939100,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2615748},
-{"pid":27369,"tid":27369,"ts":326461939253,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2615901},
-{"pid":27369,"tid":27369,"ts":326461939314,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2615962},
-{"pid":27369,"tid":27369,"ts":326461939345,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2615992},
-{"pid":27369,"tid":27369,"ts":326461939345,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461937243},"dur":122,"tdur":91,"tts":2616023},
-{"pid":27369,"tid":27369,"ts":326461939375,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2616023},
-{"pid":27369,"tid":27369,"ts":326461939406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2616053,"id":"0xaf8a6f28febbc614"},
-{"pid":27369,"tid":27369,"ts":326461939589,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2616236},
-{"pid":27369,"tid":27369,"ts":326461939711,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2616358},
-{"pid":27369,"tid":27369,"ts":326461950545,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2616542},
-{"pid":27369,"tid":27369,"ts":326461950576,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2616572,"id":"0xaf8a6122feb47934"},
-{"pid":27369,"tid":27369,"ts":326461950576,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":519,"tdur":519,"tts":2616572},
-{"pid":27369,"tid":27369,"ts":326461950576,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":519,"tdur":488,"tts":2616603},
-{"pid":27369,"tid":27369,"ts":326461950668,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2616664,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461950668,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2616664,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461950698,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchEnd","ack":"CONSUMED"},"dur":366,"tdur":366,"tts":2616694},
-{"pid":27369,"tid":27369,"ts":326461950698,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":366,"tdur":366,"tts":2616694},
-{"pid":27369,"tid":27369,"ts":326461950729,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2616725,"id":"0xaf8a644cf811530c"},
-{"pid":27369,"tid":27369,"ts":326461950851,"ph":"F","cat":"benchmark,latencyInfo","name":"InputLatency::TouchMove","args":{"data":{"INPUT_EVENT_LATENCY_ACK_RWH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461950759.0},"INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT":{"comp_id":12884901890.0,"count":1.0,"sequence_number":12884902058.0,"time":326461937819.0},"INPUT_EVENT_LATENCY_ORIGINAL_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461927000.0},"INPUT_EVENT_LATENCY_TERMINATED_TOUCH_COMPONENT":{"comp_id":0.0,"count":1.0,"sequence_number":0.0,"time":326461950759.0},"coordinates":[{"x":608.5,"y":397.0}],"trace_id":12884902058.0}},"tts":2616847,"id":"0x3000000aa"},
-{"pid":27369,"tid":27369,"ts":326461950851,"ph":"f","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{},"tts":2616847,"id":"0x3000000aa","bp":"e"},
-{"pid":27369,"tid":27369,"ts":326461950881,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2616877,"id":"0xaf8a644cf8256e6c"},
-{"pid":27369,"tid":27369,"ts":326461950881,"ph":"X","cat":"input","name":"TouchEventQueue::ForwardNextEventToRenderer","args":{},"dur":183,"tdur":183,"tts":2616877},
-{"pid":27369,"tid":27369,"ts":326461950912,"ph":"X","cat":"input","name":"InputRouterImpl::FilterAndSendWebInputEvent","args":{"type":"TouchEnd"},"dur":152,"tdur":152,"tts":2616908},
-{"pid":27369,"tid":27369,"ts":326461950942,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2616938},
-{"pid":27369,"tid":27369,"ts":326461950973,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2616969,"id":"0xaf8a6f29febbc614"},
-{"pid":27369,"tid":27369,"ts":326461951034,"ph":"S","cat":"renderer_host","name":"TimeoutMonitor","args":{},"tts":2617030,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326461951034,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Start","args":{},"tts":2617030,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461951400,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2617182},
-{"pid":27369,"tid":27369,"ts":326461951492,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2617274},
-{"pid":27369,"tid":27369,"ts":326461951522,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2617305,"id":"0xaf8a6123feb47934"},
-{"pid":27369,"tid":27369,"ts":326461951522,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":305,"tts":2617305},
-{"pid":27369,"tid":27369,"ts":326461951553,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1382},"dur":274,"tdur":275,"tts":2617335},
-{"pid":27369,"tid":27369,"ts":326461951614,"ph":"B","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2617396},
-{"pid":27369,"tid":27369,"ts":326461951736,"ph":"E","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2617518},
-{"pid":27369,"tid":27369,"ts":326461951766,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2617549},
-{"pid":27369,"tid":27369,"ts":326461951766,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2617549,"id":"0xaf8a6f2afebbc614"},
-{"pid":27369,"tid":27369,"ts":326461951919,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2617732},
-{"pid":27369,"tid":27369,"ts":326461951919,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":2617732},
-{"pid":27369,"tid":27369,"ts":326461954483,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2617976},
-{"pid":27369,"tid":27369,"ts":326461954544,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2618037},
-{"pid":27369,"tid":27369,"ts":326461954574,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2618068},
-{"pid":27369,"tid":27369,"ts":326461954605,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461953924},"dur":91,"tdur":92,"tts":2618098},
-{"pid":27369,"tid":27369,"ts":326461954605,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2618129},
-{"pid":27369,"tid":27369,"ts":326461954635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2618129,"id":"0xaf8a6f2bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326461954849,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2618342},
-{"pid":27369,"tid":27369,"ts":326461955124,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2618434},
-{"pid":27369,"tid":27369,"ts":326461961655,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2618647},
-{"pid":27369,"tid":27369,"ts":326461961685,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2618647,"id":"0xaf8a613cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461961685,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":489,"tdur":458,"tts":2618678},
-{"pid":27369,"tid":27369,"ts":326461961716,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":458,"tdur":458,"tts":2618678},
-{"pid":27369,"tid":27369,"ts":326461961746,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":428,"tdur":428,"tts":2618708},
-{"pid":27369,"tid":27369,"ts":326461961960,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":92,"tdur":92,"tts":2618922},
-{"pid":27369,"tid":27369,"ts":326461961991,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2618953},
-{"pid":27369,"tid":27369,"ts":326461961991,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2618953,"id":"0xaf8a613dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326461962082,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2619075},
-{"pid":27369,"tid":27369,"ts":326461962143,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2619105},
-{"pid":27369,"tid":27369,"ts":326461962265,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2619227},
-{"pid":27369,"tid":27369,"ts":326461962357,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2619319},
-{"pid":27369,"tid":27369,"ts":326461962357,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2619319,"id":"0xaf8a613dfeb47934"},{"pid":27369,"tid":27369,"ts":326461962387,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1679,"tdur":1679,"tts":2619349},
-{"pid":27369,"tid":27369,"ts":326461962387,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2619349},
-{"pid":27369,"tid":27369,"ts":326461962418,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1618,"tdur":1618,"tts":2619380},
-{"pid":27369,"tid":27369,"ts":326461962418,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":149},"dur":61,"tdur":61,"tts":2619380},
-{"pid":27369,"tid":27369,"ts":326461962448,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":31,"tts":2619410},
-{"pid":27369,"tid":27369,"ts":326461962509,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2619471},
-{"pid":27369,"tid":27369,"ts":326461962509,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2619471,"id":"0x3000000a7"},
-{"pid":27369,"tid":27369,"ts":326461962509,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2619471,"id":"0x3000000a8"},
-{"pid":27369,"tid":27369,"ts":326461962540,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2619502,"id":"0x3000000a9"},
-{"pid":27369,"tid":27369,"ts":326461962540,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2619502},
-{"pid":27369,"tid":27369,"ts":326461962571,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2619533},
-{"pid":27369,"tid":27369,"ts":326461962601,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2619563},
-{"pid":27369,"tid":27369,"ts":326461962815,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2619777},
-{"pid":27369,"tid":27369,"ts":326461962845,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":31,"tts":2619807},
-{"pid":27369,"tid":27369,"ts":326461962876,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":152,"tdur":152,"tts":2619838},
-{"pid":27369,"tid":27369,"ts":326461962906,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":149},"dur":31,"tdur":31,"tts":2619868},
-{"pid":27369,"tid":27369,"ts":326461962937,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":149},"dur":30,"tdur":30,"tts":2619899},
-{"pid":27369,"tid":27369,"ts":326461962998,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":149},"tts":2619960},
-{"pid":27369,"tid":27369,"ts":326461962998,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2619960},
-{"pid":27369,"tid":27369,"ts":326461962998,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2619960},
-{"pid":27369,"tid":27369,"ts":326461963028,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2619990},
-{"pid":27369,"tid":27369,"ts":326461963059,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2620021},
-{"pid":27369,"tid":27369,"ts":326461963059,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2620021,"id":"0xaf8a6f24febbc614"},
-{"pid":27369,"tid":27369,"ts":326461963181,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":855,"tdur":855,"tts":2620143},
-{"pid":27369,"tid":27369,"ts":326461963181,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":149},"dur":244,"tdur":244,"tts":2620143},
-{"pid":27369,"tid":27369,"ts":326461963211,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":31,"tts":2620173},
-{"pid":27369,"tid":27369,"ts":326461963211,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2620173},
-{"pid":27369,"tid":27369,"ts":326461963211,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2620173},
-{"pid":27369,"tid":27369,"ts":326461963242,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2620204,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461963272,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2620234},
-{"pid":27369,"tid":27369,"ts":326461963425,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2620387},
-{"pid":27369,"tid":27369,"ts":326461963425,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":336,"tdur":336,"tts":2620387},
-{"pid":27369,"tid":27369,"ts":326461963456,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2620418},
-{"pid":27369,"tid":27369,"ts":326461963456,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":274,"tdur":274,"tts":2620418},
-{"pid":27369,"tid":27369,"ts":326461963486,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2620448},
-{"pid":27369,"tid":27369,"ts":326461963517,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2620479},
-{"pid":27369,"tid":27369,"ts":326461963730,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2620692,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326461963822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2620784,"id":"0x3000000a7"},
-{"pid":27369,"tid":27369,"ts":326461963822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2620784,"id":"0x3000000a8"},
-{"pid":27369,"tid":27369,"ts":326461963822,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2620784,"id":"0x3000000a9"},
-{"pid":27369,"tid":27369,"ts":326461963852,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2620814},
-{"pid":27369,"tid":27369,"ts":326461963852,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":72},"dur":122,"tdur":122,"tts":2620814},
-{"pid":27369,"tid":27369,"ts":326461963883,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":2620875},
-{"pid":27369,"tid":27369,"ts":326461963913,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2620875,"id":"0xaf8a6f25febbc614"},
-{"pid":27369,"tid":27369,"ts":326461963974,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2620936},
-{"pid":27369,"tid":27369,"ts":326461963974,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2620967},
-{"pid":27369,"tid":27369,"ts":326461964310,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2621089},
-{"pid":27369,"tid":27369,"ts":326461969163,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2621272},
-{"pid":27369,"tid":27369,"ts":326461969193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2621303,"id":"0xaf8a613efeb47934"},
-{"pid":27369,"tid":27369,"ts":326461969224,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2621333},
-{"pid":27369,"tid":27369,"ts":326461969285,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2621394},
-{"pid":27369,"tid":27369,"ts":326461969285,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":61,"tdur":30,"tts":2621425},
-{"pid":27369,"tid":27369,"ts":326461969438,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2621547},
-{"pid":27369,"tid":27369,"ts":326461971025,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2621822},
-{"pid":27369,"tid":27369,"ts":326461971055,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2621883},
-{"pid":27369,"tid":27369,"ts":326461971116,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":580,"tdur":275,"tts":2621913},
-{"pid":27369,"tid":27369,"ts":326461971147,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461970606},"dur":91,"tdur":91,"tts":2621944},
-{"pid":27369,"tid":27369,"ts":326461971147,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2621974},
-{"pid":27369,"tid":27369,"ts":326461971177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2621974,"id":"0xaf8a6f26febbc614"},
-{"pid":27369,"tid":27369,"ts":326461971727,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2622218},
-{"pid":27369,"tid":27369,"ts":326461971849,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2622340},
-{"pid":27369,"tid":27369,"ts":326461987902,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2622676},
-{"pid":27369,"tid":27369,"ts":326461987963,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2622737},
-{"pid":27369,"tid":27369,"ts":326461988025,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":610,"tdur":275,"tts":2622798},
-{"pid":27369,"tid":27369,"ts":326461988055,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326461987288},"dur":122,"tdur":122,"tts":2622829},
-{"pid":27369,"tid":27369,"ts":326461988086,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2622859},
-{"pid":27369,"tid":27369,"ts":326461988116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2622890,"id":"0xaf8a6f27febbc614"},
-{"pid":27369,"tid":27369,"ts":326461988665,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2623103},
-{"pid":27369,"tid":27369,"ts":326461988818,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2623256},
-{"pid":27369,"tid":27369,"ts":326462004963,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2623653},
-{"pid":27369,"tid":27369,"ts":326462005024,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2623714},
-{"pid":27369,"tid":27369,"ts":326462005055,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":732,"tdur":306,"tts":2623744},
-{"pid":27369,"tid":27369,"ts":326462005085,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462003969},"dur":550,"tdur":122,"tts":2623775},
-{"pid":27369,"tid":27369,"ts":326462005116,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":519,"tdur":92,"tts":2623805},
-{"pid":27369,"tid":27369,"ts":326462005146,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2623836,"id":"0xaf8a6f20febbc614"},
-{"pid":27369,"tid":27369,"ts":326462005787,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2624050},
-{"pid":27369,"tid":27369,"ts":326462005909,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2624172},
-{"pid":27369,"tid":27369,"ts":326462021170,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2624507},
-{"pid":27369,"tid":27369,"ts":326462021231,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2624568},
-{"pid":27369,"tid":27369,"ts":326462021261,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":702,"tdur":306,"tts":2624629},
-{"pid":27369,"tid":27369,"ts":326462021292,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462020651},"dur":519,"tdur":153,"tts":2624629},
-{"pid":27369,"tid":27369,"ts":326462021322,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":489,"tdur":122,"tts":2624660},
-{"pid":27369,"tid":27369,"ts":326462021353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2624690,"id":"0xaf8a6f21febbc614"},
-{"pid":27369,"tid":27369,"ts":326462021963,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2624935},
-{"pid":27369,"tid":27369,"ts":326462022085,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2625057},
-{"pid":27369,"tid":27369,"ts":326462027365,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2625301},
-{"pid":27369,"tid":27369,"ts":326462027426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462027},"tts":2625362,"id":"0xaf8a60aefeb47934"},
-{"pid":27369,"tid":27369,"ts":326462027426,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ui/events/gesture_detection/gesture_detector.cc","src_func":"StartTimeout"},"dur":31,"tdur":30,"tts":2625362},
-{"pid":27369,"tid":27369,"ts":326462027548,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2625484},
-{"pid":27369,"tid":27369,"ts":326462038231,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2625820},
-{"pid":27369,"tid":27369,"ts":326462038292,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2625881},
-{"pid":27369,"tid":27369,"ts":326462038322,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":2625911},
-{"pid":27369,"tid":27369,"ts":326462038353,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462037332},"dur":91,"tdur":91,"tts":2625942},
-{"pid":27369,"tid":27369,"ts":326462038383,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2625972},
-{"pid":27369,"tid":27369,"ts":326462038414,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2626003,"id":"0xaf8a6f22febbc614"},
-{"pid":27369,"tid":27369,"ts":326462038597,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2626186},
-{"pid":27369,"tid":27369,"ts":326462038932,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2626339},
-{"pid":27369,"tid":27369,"ts":326462043663,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2626552},
-{"pid":27369,"tid":27369,"ts":326462043755,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2626613,"id":"0xaf8a613ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326462043755,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":213,"tdur":214,"tts":2626613},
-{"pid":27369,"tid":27369,"ts":326462043785,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":3,"line":243},"dur":153,"tdur":152,"tts":2626644},
-{"pid":27369,"tid":27369,"ts":326462043846,"ph":"I","cat":"renderer_host","name":"TimeoutMonitor::Stop","args":{},"tts":2626705,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462043846,"ph":"F","cat":"renderer_host","name":"TimeoutMonitor","args":{"result":"stopped"},"tts":2626705,"id":"0xaf8a644cfd4f71bc"},
-{"pid":27369,"tid":27369,"ts":326462043877,"ph":"X","cat":"input","name":"InputRouterImpl::ProcessInputEventAck","args":{"type":"TouchEnd","ack":"CONSUMED"},"dur":61,"tdur":61,"tts":2626735},
-{"pid":27369,"tid":27369,"ts":326462043877,"ph":"X","cat":"input","name":"TouchEventQueue::ProcessTouchAck","args":{},"dur":61,"tdur":61,"tts":2626735},
-{"pid":27369,"tid":27369,"ts":326462043907,"ph":"F","cat":"input","name":"TouchEventQueue::QueueEvent","args":{},"tts":2626766,"id":"0xaf8a644cf80cea54"},
-{"pid":27369,"tid":27369,"ts":326462044029,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2626888},
-{"pid":27369,"tid":27369,"ts":326462044121,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2627010},
-{"pid":27369,"tid":27369,"ts":326462044151,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2627010,"id":"0xaf8a6138feb47934"},
-{"pid":27369,"tid":27369,"ts":326462044151,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":305,"tts":2627041},
-{"pid":27369,"tid":27369,"ts":326462044182,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1382},"dur":305,"tdur":305,"tts":2627041},
-{"pid":27369,"tid":27369,"ts":326462044243,"ph":"B","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2627102},
-{"pid":27369,"tid":27369,"ts":326462044335,"ph":"E","cat":"Java","name":"ContentViewCore.updateImeAdapter","args":{},"tts":2627193},
-{"pid":27369,"tid":27369,"ts":326462044396,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2627254},
-{"pid":27369,"tid":27369,"ts":326462044396,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2627254,"id":"0xaf8a6f23febbc614"},
-{"pid":27369,"tid":27369,"ts":326462044548,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2627407},
-{"pid":27369,"tid":27369,"ts":326462054559,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2627743},
-{"pid":27369,"tid":27369,"ts":326462054620,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2627773},
-{"pid":27369,"tid":27369,"ts":326462054681,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":458,"tdur":275,"tts":2627834},
-{"pid":27369,"tid":27369,"ts":326462054681,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462054014},"dur":122,"tdur":91,"tts":2627865},
-{"pid":27369,"tid":27369,"ts":326462054712,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2627865},
-{"pid":27369,"tid":27369,"ts":326462054742,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2627895,"id":"0xaf8a6f3cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462055139,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2628139},
-{"pid":27369,"tid":27369,"ts":326462055261,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2628231},
-{"pid":27369,"tid":27369,"ts":326462069789,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2628475},
-{"pid":27369,"tid":27369,"ts":326462069819,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2628506,"id":"0xaf8a6139feb47934"},
-{"pid":27369,"tid":27369,"ts":326462069819,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":977,"tdur":610,"tts":2628506},
-{"pid":27369,"tid":27369,"ts":326462069819,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":977,"tdur":580,"tts":2628536},
-{"pid":27369,"tid":27369,"ts":326462069880,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":916,"tdur":549,"tts":2628567},
-{"pid":27369,"tid":27369,"ts":326462070552,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":122,"tts":2628872},
-{"pid":27369,"tid":27369,"ts":326462070582,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2628902},
-{"pid":27369,"tid":27369,"ts":326462070613,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2628933,"id":"0xaf8a613afeb47934"},
-{"pid":27369,"tid":27369,"ts":326462070704,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2629024},
-{"pid":27369,"tid":27369,"ts":326462070765,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2629085},
-{"pid":27369,"tid":27369,"ts":326462070918,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2629238},
-{"pid":27369,"tid":27369,"ts":326462071009,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2629360},
-{"pid":27369,"tid":27369,"ts":326462071040,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2629360,"id":"0xaf8a613afeb47934"},
-{"pid":27369,"tid":27369,"ts":326462071070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":3114,"tdur":2411,"tts":2629391},
-{"pid":27369,"tid":27369,"ts":326462071070,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":30,"tts":2629391},
-{"pid":27369,"tid":27369,"ts":326462071101,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":3052,"tdur":2320,"tts":2629421},
-{"pid":27369,"tid":27369,"ts":326462071131,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":150},"dur":62,"tdur":61,"tts":2629452},
-{"pid":27369,"tid":27369,"ts":326462071131,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":62,"tdur":61,"tts":2629452},
-{"pid":27369,"tid":27369,"ts":326462071193,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1129,"tdur":824,"tts":2629513},
-{"pid":27369,"tid":27369,"ts":326462071193,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"HanldeInputEventMainCommit"},"tts":2629543,"id":"0x3000000ab"},
-{"pid":27369,"tid":27369,"ts":326462071223,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2629543},
-{"pid":27369,"tid":27369,"ts":326462071254,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2629574},
-{"pid":27369,"tid":27369,"ts":326462071284,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1007,"tdur":702,"tts":2629604},
-{"pid":27369,"tid":27369,"ts":326462071498,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2629818},
-{"pid":27369,"tid":27369,"ts":326462071528,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2629848},
-{"pid":27369,"tid":27369,"ts":326462071559,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":2629879},
-{"pid":27369,"tid":27369,"ts":326462071589,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2629909},
-{"pid":27369,"tid":27369,"ts":326462071589,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":84},"dur":122,"tdur":92,"tts":2629940},
-{"pid":27369,"tid":27369,"ts":326462071620,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":91,"tdur":92,"tts":2629940},
-{"pid":27369,"tid":27369,"ts":326462071650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2629970,"id":"0xaf8a6f3dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462071711,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":489,"tdur":183,"tts":2630032},
-{"pid":27369,"tid":27369,"ts":326462071742,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2630062,"id":"0xaf8a6f3efebbc614"},
-{"pid":27369,"tid":27369,"ts":326462072169,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2630184,"id":"0xaf8a6f3ffebbc614"},
-{"pid":27369,"tid":27369,"ts":326462072291,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":31,"tts":2630306},
-{"pid":27369,"tid":27369,"ts":326462072322,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":2630367},
-{"pid":27369,"tid":27369,"ts":326462072352,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":153,"tdur":153,"tts":2630367},
-{"pid":27369,"tid":27369,"ts":326462072352,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":150},"dur":61,"tdur":30,"tts":2630398},
-{"pid":27369,"tid":27369,"ts":326462072413,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":150},"dur":31,"tdur":31,"tts":2630428},
-{"pid":27369,"tid":27369,"ts":326462072444,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":150},"tts":2630459},
-{"pid":27369,"tid":27369,"ts":326462072444,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2630489},
-{"pid":27369,"tid":27369,"ts":326462072474,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2630489},
-{"pid":27369,"tid":27369,"ts":326462072474,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":31,"tts":2630489},
-{"pid":27369,"tid":27369,"ts":326462072535,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2630550},
-{"pid":27369,"tid":27369,"ts":326462072566,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2630581,"id":"0xaf8a6f38febbc614"},
-{"pid":27369,"tid":27369,"ts":326462072658,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1251,"tdur":1069,"tts":2630672},
-{"pid":27369,"tid":27369,"ts":326462072688,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":150},"dur":519,"tdur":305,"tts":2630703},
-{"pid":27369,"tid":27369,"ts":326462072688,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":214,"tdur":0,"tts":2630703},
-{"pid":27369,"tid":27369,"ts":326462072902,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":62,"tts":2630733},
-{"pid":27369,"tid":27369,"ts":326462072902,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2630733},
-{"pid":27369,"tid":27369,"ts":326462072932,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2630764},
-{"pid":27369,"tid":27369,"ts":326462072963,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2630795,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462072963,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2630825},
-{"pid":27369,"tid":27407,"ts":326462069514,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1902640},
-{"pid":27369,"tid":27407,"ts":326462069544,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1902670,"id":"0xccc61b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462069575,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1902701,"id":"0xaf8a6139feb47934"},
-{"pid":27369,"tid":27407,"ts":326462071742,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1902914,"id":"0xaf8a6f3dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462071742,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1902914},
-{"pid":27369,"tid":27407,"ts":326462071742,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1902914,"id":"0xba46c302"},
-{"pid":27369,"tid":27407,"ts":326462071833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1903006,"id":"0xaf8a6f3efebbc614"},
-{"pid":27369,"tid":27407,"ts":326462071833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":31,"tdur":30,"tts":1903006},
-{"pid":27369,"tid":27407,"ts":326462071833,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1903006,"id":"0xba46c406"},
-{"pid":27369,"tid":27407,"ts":326462072078,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":61,"tdur":61,"tts":1903097},
-{"pid":27369,"tid":27407,"ts":326462072078,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":61,"tdur":30,"tts":1903128},
-{"pid":27369,"tid":27407,"ts":326462072108,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1903128,"id":"0xc4c2320a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462072230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1903219,"id":"0xaf8a6f3ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462072230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1903219},
-{"pid":27369,"tid":27407,"ts":326462072627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1903311,"id":"0xaf8a6f38febbc614"},
-{"pid":27369,"tid":27407,"ts":326462072658,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":1903341},
-{"pid":27369,"tid":27407,"ts":326462072658,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1903341,"id":"0xba46c502"},
-{"pid":27369,"tid":27407,"ts":326462073878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1903494,"id":"0xaf8a6f39febbc614"},
-{"pid":27369,"tid":27407,"ts":326462073878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1903494},
-{"pid":27369,"tid":27407,"ts":326462073878,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1903525,"id":"0xba46c602"},
-{"pid":27369,"tid":27407,"ts":326462074763,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1903647,"id":"0xaf8a6f3afebbc614"},
-{"pid":27369,"tid":27407,"ts":326462074763,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":31,"tts":1903677},
-{"pid":27369,"tid":27407,"ts":326462074794,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1903677,"id":"0xba46c702"},
-{"pid":27369,"tid":27407,"ts":326462082760,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":244,"tts":1903769},
-{"pid":27369,"tid":27407,"ts":326462082821,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":37,"line":352},"dur":244,"tdur":183,"tts":1903830},
-{"pid":27369,"tid":27407,"ts":326462082821,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1903830,"id":"0xccc61d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462082851,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1903860,"id":"0xaf8a613bfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462087765,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1904104},
-{"pid":27369,"tid":27407,"ts":326462087796,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":183,"tdur":122,"tts":1904166},
-{"pid":27369,"tid":27407,"ts":326462087826,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1904166,"id":"0xccc61f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462087857,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1904196,"id":"0xaf8a6134feb47934"},
-{"pid":27369,"tid":27407,"ts":326462088559,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":183,"tdur":152,"tts":1904410},
-{"pid":27369,"tid":27407,"ts":326462088620,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":91,"tdur":92,"tts":1904440},
-{"pid":27369,"tid":27407,"ts":326462088620,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1904440,"id":"0xc4c23402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462088650,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1904471,"id":"0xaf8a6135feb47934"},
-{"pid":27369,"tid":27407,"ts":326462098142,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":275,"tdur":275,"tts":1904623},
-{"pid":27369,"tid":27407,"ts":326462098203,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":183,"tdur":183,"tts":1904684},
-{"pid":27369,"tid":27407,"ts":326462098203,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1904684,"id":"0xccc62002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462098264,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1904745,"id":"0xaf8a6136feb47934"},
-{"pid":27369,"tid":27407,"ts":326462105467,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1904959,"id":"0xaf8a6f3bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462105467,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1904959},
-{"pid":27369,"tid":27407,"ts":326462105497,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1904990,"id":"0xba46c802"},
-{"pid":27369,"tid":27407,"ts":326462122223,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1905173,"id":"0xaf8a6f34febbc614"},
-{"pid":27369,"tid":27407,"ts":326462122223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1905173},
-{"pid":27369,"tid":27407,"ts":326462122253,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1905203,"id":"0xba46c902"},
-{"pid":27369,"tid":27407,"ts":326462123291,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":214,"tts":1905325},
-{"pid":27369,"tid":27407,"ts":326462123352,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":183,"tts":1905356},
-{"pid":27369,"tid":27407,"ts":326462123382,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1905386,"id":"0xccc62302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462123413,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1905417,"id":"0xaf8a6137feb47934"},
-{"pid":27369,"tid":27407,"ts":326462125732,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1905661,"id":"0xaf8a6f35febbc614"},
-{"pid":27369,"tid":27407,"ts":326462125763,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1905692},
-{"pid":27369,"tid":27407,"ts":326462125763,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1905692,"id":"0xba46ca02"},
-{"pid":27369,"tid":27407,"ts":326462126068,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1905875,"id":"0xaf8a6f36febbc614"},
-{"pid":27369,"tid":27407,"ts":326462126099,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1905905},
-{"pid":27369,"tid":27407,"ts":326462126099,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1905905,"id":"0xba46cb06"},
-{"pid":27369,"tid":27407,"ts":326462126282,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":91,"tdur":91,"tts":1906058},
-{"pid":27369,"tid":27407,"ts":326462126312,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":65535,"line":65520},"dur":31,"tdur":31,"tts":1906088},
-{"pid":27369,"tid":27407,"ts":326462126312,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1906088,"id":"0xc4c2370a","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462128174,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1906241,"id":"0xaf8a6f37febbc614"},
-{"pid":27369,"tid":27407,"ts":326462128205,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_sync_channel.cc","src_func":"Pop"},"dur":0,"tdur":0,"tts":1906271},
-{"pid":27369,"tid":27407,"ts":326462128205,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1906271,"id":"0xaf8a6f30febbc614"},
-{"pid":27369,"tid":27407,"ts":326462128235,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1906302},
-{"pid":27369,"tid":27407,"ts":326462128235,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1906302,"id":"0xba46cc02"},
-{"pid":27369,"tid":27407,"ts":326462128327,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1906394,"id":"0xaf8a6f31febbc614"},
-{"pid":27369,"tid":27369,"ts":326462073176,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2631008},
-{"pid":27369,"tid":27369,"ts":326462073207,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":427,"tdur":427,"tts":2631039},
-{"pid":27369,"tid":27369,"ts":326462073207,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":30,"tts":2631039},
-{"pid":27369,"tid":27369,"ts":326462073237,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":367,"tdur":366,"tts":2631069},
-{"pid":27369,"tid":27369,"ts":326462073237,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2631069},
-{"pid":27369,"tid":27369,"ts":326462073298,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":275,"tdur":244,"tts":2631130},
-{"pid":27369,"tid":27369,"ts":326462073604,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2631435,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462073695,"ph":"t","cat":"input,benchmark","name":"LatencyInfo.Flow","args":{"step":"SwapBuffers"},"tts":2631527,"id":"0x3000000ab"},
-{"pid":27369,"tid":27369,"ts":326462073695,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":214,"tdur":214,"tts":2631527},
-{"pid":27369,"tid":27369,"ts":326462073726,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2816},"dur":122,"tdur":122,"tts":2631558},
-{"pid":27369,"tid":27369,"ts":326462073756,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":92,"tdur":92,"tts":2631588},
-{"pid":27369,"tid":27369,"ts":326462073787,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2631619,"id":"0xaf8a6f39febbc614"},
-{"pid":27369,"tid":27369,"ts":326462073848,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2631680},
-{"pid":27369,"tid":27369,"ts":326462073878,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2631710},
-{"pid":27369,"tid":27369,"ts":326462074306,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2631924},
-{"pid":27369,"tid":27369,"ts":326462074519,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2632137},
-{"pid":27369,"tid":27369,"ts":326462074550,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2632198},
-{"pid":27369,"tid":27369,"ts":326462074611,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":610,"tdur":275,"tts":2632229},
-{"pid":27369,"tid":27369,"ts":326462074611,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462070695},"dur":122,"tdur":91,"tts":2632260},
-{"pid":27369,"tid":27369,"ts":326462074641,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2632260},
-{"pid":27369,"tid":27369,"ts":326462074672,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2632290,"id":"0xaf8a6f3afebbc614"},
-{"pid":27369,"tid":27369,"ts":326462075221,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2632504},
-{"pid":27369,"tid":27369,"ts":326462075343,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2632626},
-{"pid":27369,"tid":27369,"ts":326462083706,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2632839},
-{"pid":27369,"tid":27369,"ts":326462083736,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2632870,"id":"0xaf8a613bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462083736,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/public/browser/browser_message_filter.cc","src_func":"OnMessageReceived"},"dur":31,"tdur":30,"tts":2632870},
-{"pid":27369,"tid":27369,"ts":326462083828,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2632961},
-{"pid":27369,"tid":27369,"ts":326462088040,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2633206},
-{"pid":27369,"tid":27369,"ts":326462088070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2633206,"id":"0xaf8a6134feb47934"},
-{"pid":27369,"tid":27369,"ts":326462088070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":61,"tts":2633236},
-{"pid":27369,"tid":27369,"ts":326462088101,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":61,"tdur":61,"tts":2633236},
-{"pid":27369,"tid":27369,"ts":326462088131,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":31,"tdur":30,"tts":2633267},
-{"pid":27369,"tid":27369,"ts":326462088223,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2633358},
-{"pid":27369,"tid":27369,"ts":326462088345,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2633480},
-{"pid":27369,"tid":27369,"ts":326462088375,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2633541},
-{"pid":27369,"tid":27369,"ts":326462088437,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":0,"tdur":0,"tts":2633572},
-{"pid":27369,"tid":27369,"ts":326462088467,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2633602},
-{"pid":27369,"tid":27369,"ts":326462088528,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2633694},
-{"pid":27369,"tid":27369,"ts":326462088803,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2633847},
-{"pid":27369,"tid":27369,"ts":326462088803,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2633847,"id":"0xaf8a6135feb47934"},
-{"pid":27369,"tid":27369,"ts":326462088833,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":92,"tts":2633877},
-{"pid":27369,"tid":27369,"ts":326462088864,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2633938},
-{"pid":27369,"tid":27369,"ts":326462088894,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2633938},
-{"pid":27369,"tid":27369,"ts":326462088986,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2634030},
-{"pid":27369,"tid":27369,"ts":326462098478,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2634182},
-{"pid":27369,"tid":27369,"ts":326462098508,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2634213,"id":"0xaf8a6136feb47934"},
-{"pid":27369,"tid":27369,"ts":326462098508,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":214,"tdur":213,"tts":2634213},
-{"pid":27369,"tid":27369,"ts":326462098539,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":183,"tdur":183,"tts":2634243},
-{"pid":27369,"tid":27369,"ts":326462098569,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":153,"tdur":122,"tts":2634304},
-{"pid":27369,"tid":27369,"ts":326462098844,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2634518},
-{"pid":27369,"tid":27369,"ts":326462104612,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2634762},
-{"pid":27369,"tid":27369,"ts":326462104673,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2634823},
-{"pid":27369,"tid":27369,"ts":326462104704,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":366,"tdur":244,"tts":2634854},
-{"pid":27369,"tid":27369,"ts":326462104734,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462104059},"dur":123,"tdur":122,"tts":2634884},
-{"pid":27369,"tid":27369,"ts":326462104765,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2634915},
-{"pid":27369,"tid":27369,"ts":326462104795,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2634945,"id":"0xaf8a6f3bfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462105070,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2635128},
-{"pid":27369,"tid":27369,"ts":326462105162,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2635189},
-{"pid":27369,"tid":27369,"ts":326462105162,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":183,"tdur":0,"tts":2635189},
-{"pid":27369,"tid":27369,"ts":326462121551,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2635556},
-{"pid":27369,"tid":27369,"ts":326462121612,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2635617},
-{"pid":27369,"tid":27369,"ts":326462121643,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":275,"tts":2635647},
-{"pid":27369,"tid":27369,"ts":326462121673,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462120740},"dur":122,"tdur":122,"tts":2635678},
-{"pid":27369,"tid":27369,"ts":326462121704,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2635708},
-{"pid":27369,"tid":27369,"ts":326462121734,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2635739,"id":"0xaf8a6f34febbc614"},
-{"pid":27369,"tid":27369,"ts":326462121948,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2635952},
-{"pid":27369,"tid":27369,"ts":326462122039,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2636075},
-{"pid":27369,"tid":27369,"ts":326462123718,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2636319},
-{"pid":27369,"tid":27369,"ts":326462123779,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2636349,"id":"0xaf8a6137feb47934"},
-{"pid":27369,"tid":27369,"ts":326462123779,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":549,"tdur":550,"tts":2636349},
-{"pid":27369,"tid":27369,"ts":326462123810,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":518,"tdur":519,"tts":2636380},
-{"pid":27369,"tid":27369,"ts":326462123840,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":458,"tdur":458,"tts":2636410},
-{"pid":27369,"tid":27369,"ts":326462124023,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":91,"tts":2636624},
-{"pid":27369,"tid":27369,"ts":326462124054,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":91,"tts":2636624},
-{"pid":27369,"tid":27369,"ts":326462124084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2636654,"id":"0xaf8a6130feb47934"},
-{"pid":27369,"tid":27369,"ts":326462124206,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2636777},
-{"pid":27369,"tid":27369,"ts":326462124267,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2636838},
-{"pid":27369,"tid":27369,"ts":326462124390,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2636990},
-{"pid":27369,"tid":27369,"ts":326462124512,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2637082},
-{"pid":27369,"tid":27369,"ts":326462124542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2637112,"id":"0xaf8a6130feb47934"},
-{"pid":27369,"tid":27369,"ts":326462124542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":3388,"tdur":2778,"tts":2637112},
-{"pid":27369,"tid":27369,"ts":326462124573,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2637143},
-{"pid":27369,"tid":27369,"ts":326462124603,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":3296,"tdur":2686,"tts":2637173},
-{"pid":27369,"tid":27369,"ts":326462124603,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":151},"dur":92,"tdur":61,"tts":2637204},
-{"pid":27369,"tid":27369,"ts":326462124634,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2637204},
-{"pid":27369,"tid":27369,"ts":326462124695,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":1923,"tdur":1312,"tts":2637265},
-{"pid":27369,"tid":27369,"ts":326462124725,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2637295},
-{"pid":27369,"tid":27369,"ts":326462124786,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2637356},
-{"pid":27369,"tid":27369,"ts":326462124817,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":1770,"tdur":1129,"tts":2637387},
-{"pid":27369,"tid":27369,"ts":326462124969,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":30,"tts":2637540},
-{"pid":27369,"tid":27369,"ts":326462125000,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":31,"tts":2637570},
-{"pid":27369,"tid":27369,"ts":326462125030,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2637601},
-{"pid":27369,"tid":27369,"ts":326462125061,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2637631},
-{"pid":27369,"tid":27369,"ts":326462125092,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2637662},
-{"pid":27369,"tid":27369,"ts":326462125122,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2637692},
-{"pid":27369,"tid":27369,"ts":326462125122,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2637723},
-{"pid":27369,"tid":27369,"ts":326462125153,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2637723},
-{"pid":27369,"tid":27369,"ts":326462125183,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2637753},
-{"pid":27369,"tid":27369,"ts":326462125214,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2637784},
-{"pid":27369,"tid":27369,"ts":326462125244,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2637814},
-{"pid":27369,"tid":27369,"ts":326462125275,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2637845},
-{"pid":27369,"tid":27369,"ts":326462125305,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2637875},
-{"pid":27369,"tid":27369,"ts":326462125336,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":0,"tts":2637936},
-{"pid":27369,"tid":27369,"ts":326462125366,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":0,"tts":2637967},
-{"pid":27369,"tid":27369,"ts":326462125397,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2637967},
-{"pid":27369,"tid":27369,"ts":326462125427,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2637997},
-{"pid":27369,"tid":27369,"ts":326462125458,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":30,"tdur":30,"tts":2638028},
-{"pid":27369,"tid":27369,"ts":326462125488,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":31,"tdur":31,"tts":2638058},
-{"pid":27369,"tid":27369,"ts":326462125519,"ph":"X","cat":"cc","name":"ResourceProvider::DeleteResourceInternal","args":{},"dur":0,"tdur":0,"tts":2638089},
-{"pid":27369,"tid":27369,"ts":326462125549,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":3096},"dur":397,"tdur":123,"tts":2638119},
-{"pid":27369,"tid":27369,"ts":326462125549,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":367,"tdur":92,"tts":2638119},
-{"pid":27369,"tid":27369,"ts":326462125580,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2638150,"id":"0xaf8a6f35febbc614"},
-{"pid":27369,"tid":27369,"ts":326462125946,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":611},"dur":519,"tdur":183,"tts":2638242},
-{"pid":27369,"tid":27369,"ts":326462125977,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2638272,"id":"0xaf8a6f36febbc614"},
-{"pid":27369,"tid":27369,"ts":326462126434,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2638394,"id":"0xaf8a6f37febbc614"},
-{"pid":27369,"tid":27369,"ts":326462126587,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2638547},
-{"pid":27369,"tid":27369,"ts":326462126618,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2638577},
-{"pid":27369,"tid":27369,"ts":326462126648,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":183,"tdur":183,"tts":2638608},
-{"pid":27369,"tid":27369,"ts":326462126648,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":151},"dur":61,"tdur":61,"tts":2638608},
-{"pid":27369,"tid":27369,"ts":326462126709,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":151},"dur":61,"tdur":61,"tts":2638669},
-{"pid":27369,"tid":27369,"ts":326462126770,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":151},"tts":2638730},
-{"pid":27369,"tid":27369,"ts":326462126770,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2638730},
-{"pid":27369,"tid":27369,"ts":326462126801,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2638760},
-{"pid":27369,"tid":27369,"ts":326462126801,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2638760},
-{"pid":27369,"tid":27369,"ts":326462126892,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":30,"tts":2638852},
-{"pid":27369,"tid":27369,"ts":326462126892,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2638882,"id":"0xaf8a6f30febbc614"},
-{"pid":27369,"tid":27369,"ts":326462126984,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":915,"tdur":916,"tts":2638943},
-{"pid":27369,"tid":27369,"ts":326462127014,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":151},"dur":305,"tdur":305,"tts":2638974},
-{"pid":27369,"tid":27369,"ts":326462127014,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":92,"tdur":61,"tts":2638974},
-{"pid":27369,"tid":27369,"ts":326462127045,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2639005},
-{"pid":27369,"tid":27369,"ts":326462127045,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2639005},
-{"pid":27369,"tid":27369,"ts":326462127075,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2639035,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462127106,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2639066},
-{"pid":27369,"tid":27369,"ts":326462127319,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2639279},
-{"pid":27369,"tid":27369,"ts":326462127350,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2639310},
-{"pid":27369,"tid":27369,"ts":326462127350,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":2639310},
-{"pid":27369,"tid":27369,"ts":326462127381,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2639340},
-{"pid":27369,"tid":27369,"ts":326462127381,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2639340},
-{"pid":27369,"tid":27369,"ts":326462127442,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":152,"tdur":153,"tts":2639401},
-{"pid":27369,"tid":27369,"ts":326462127655,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2639615,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462127716,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2639676},
-{"pid":27369,"tid":27369,"ts":326462127777,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":4458},"dur":61,"tdur":61,"tts":2639737},
-{"pid":27369,"tid":27369,"ts":326462127808,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":2639768},
-{"pid":27369,"tid":27369,"ts":326462127808,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2639768,"id":"0xaf8a6f31febbc614"},
-{"pid":27369,"tid":27369,"ts":326462127838,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2639798},
-{"pid":27369,"tid":27369,"ts":326462127869,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2639829},
-{"pid":27369,"tid":27369,"ts":326462128052,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2640012},
-{"pid":27369,"tid":27369,"ts":326462131806,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2640256},
-{"pid":27369,"tid":27369,"ts":326462131837,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2640286,"id":"0xaf8a6131feb47934"},
-{"pid":27369,"tid":27369,"ts":326462131867,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":0,"tdur":0,"tts":2640317},
-{"pid":27369,"tid":27369,"ts":326462131959,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2640408},
-{"pid":27369,"tid":27369,"ts":326462133698,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2640592},
-{"pid":27369,"tid":27369,"ts":326462133698,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2640592,"id":"0xaf8a6132feb47934"},
-{"pid":27369,"tid":27369,"ts":326462133698,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":92,"tdur":61,"tts":2640622},
-{"pid":27369,"tid":27369,"ts":326462133729,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2640622},
-{"pid":27369,"tid":27369,"ts":326462133729,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":31,"tts":2640622},
-{"pid":27369,"tid":27369,"ts":326462133820,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2640714},
-{"pid":27369,"tid":27369,"ts":326462137788,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2640927},
-{"pid":27369,"tid":27369,"ts":326462137849,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2640988},
-{"pid":27369,"tid":27369,"ts":326462137880,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2641019},
-{"pid":27369,"tid":27369,"ts":326462137880,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462137422},"dur":91,"tdur":91,"tts":2641019},
-{"pid":27369,"tid":27369,"ts":326462137910,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2641049},
-{"pid":27369,"tid":27369,"ts":326462137941,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2641080,"id":"0xaf8a6fcdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462138093,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2641233},
-{"pid":27369,"tid":27369,"ts":326462138154,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2641294},
-{"pid":27369,"tid":27369,"ts":326462139009,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2641477},
-{"pid":27369,"tid":27369,"ts":326462139070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2641538,"id":"0xaf8a6133feb47934"},
-{"pid":27369,"tid":27369,"ts":326462139070,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":2641538},
-{"pid":27369,"tid":27369,"ts":326462139070,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":61,"tts":2641568},
-{"pid":27369,"tid":27369,"ts":326462139131,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":30,"tdur":30,"tts":2641599},
-{"pid":27369,"tid":27369,"ts":326462139192,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2641690},
-{"pid":27369,"tid":27369,"ts":326462143984,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2641843},
-{"pid":27369,"tid":27369,"ts":326462144045,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2641873,"id":"0xaf8a61ccfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462144045,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":92,"tts":2641873},
-{"pid":27369,"tid":27369,"ts":326462144045,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":91,"tdur":92,"tts":2641873},
-{"pid":27369,"tid":27369,"ts":326462144075,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":31,"tdur":0,"tts":2641934},
-{"pid":27369,"tid":27369,"ts":326462144167,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2641996},
-{"pid":27369,"tid":27369,"ts":326462154635,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2642301},
-{"pid":27369,"tid":27369,"ts":326462154727,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2642362},
-{"pid":27369,"tid":27369,"ts":326462154757,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2642392},
-{"pid":27369,"tid":27369,"ts":326462154788,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462154103},"dur":122,"tdur":91,"tts":2642423},
-{"pid":27369,"tid":27369,"ts":326462154818,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2642453},
-{"pid":27369,"tid":27369,"ts":326462154849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2642484,"id":"0xaf8a6fcefebbc614"},
-{"pid":27369,"tid":27369,"ts":326462155032,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2642667},
-{"pid":27369,"tid":27369,"ts":326462155124,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2642759},
-{"pid":27369,"tid":27369,"ts":326462167118,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2643003},
-{"pid":27369,"tid":27369,"ts":326462167149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2643033,"id":"0xaf8a61cdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462167149,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":30,"tdur":31,"tts":2643033},
-{"pid":27369,"tid":27369,"ts":326462167240,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2643125},
-{"pid":27369,"tid":27369,"ts":326462171391,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2643430},
-{"pid":27369,"tid":27369,"ts":326462171452,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2643491},
-{"pid":27369,"tid":27369,"ts":326462171482,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":244,"tts":2643522},
-{"pid":27369,"tid":27407,"ts":326462128327,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1906394},
-{"pid":27369,"tid":27407,"ts":326462128357,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1906424,"id":"0xba46cd02"},
-{"pid":27369,"tid":27407,"ts":326462129639,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":3235,"tdur":2716,"tts":1906546},
-{"pid":27369,"tid":27407,"ts":326462129700,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":3144,"tdur":2655,"tts":1906607},
-{"pid":27369,"tid":27407,"ts":326462129700,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1906607,"id":"0xccc62402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462129914,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1906821,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462130372,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1907279,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462130463,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1907370,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462130585,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":131328,"method":"GET","priority":"IDLE","url":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866"}},"tts":1907492,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462130951,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1907858,"id":"0xaf8a6131feb47934"},
-{"pid":27369,"tid":27407,"ts":326462131104,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1908011,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462131135,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1908042,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462131165,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1908072,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462131196,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1908103,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462131226,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1908133,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462131318,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x7267ab6efc3674bf"}},"tts":1908225,"id":"0x224"},
-{"pid":27369,"tid":27407,"ts":326462131348,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866"}},"tts":1908255,"id":"0x224"},
-{"pid":27369,"tid":27407,"ts":326462131379,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1908286,"id":"0x224"},
-{"pid":27369,"tid":27407,"ts":326462131409,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1908316,"id":"0x224"},
-{"pid":27369,"tid":27407,"ts":326462131409,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1908316,"id":"0x224"},
-{"pid":27369,"tid":27407,"ts":326462131470,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1908377,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462131501,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1908408,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132050,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x7267ab6efc3674bf"}},"tts":1908469,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462132081,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866"}},"tts":1908530,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462132111,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1908530,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462132142,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1908560,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462132172,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1908591,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462132203,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1908622,"id":"0xaf8a6580fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462132264,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1908683,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132294,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1908713,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132325,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1908744,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132386,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1908805,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132416,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1908835,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132447,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1908866,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462132538,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"IDLE","url":"https://maps.googleapis.com/"}},"tts":1908957,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462132569,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1908988,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462132630,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1909049,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462132661,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1909079,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462132722,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1909140,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462132752,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1909201,"id":"0xaf8a6f33febbc614"},
-{"pid":27369,"tid":27407,"ts":326462132874,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1909293,"id":"0xaf8a6f32febbc614"},
-{"pid":27369,"tid":27407,"ts":326462132874,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":61,"tts":1909293},
-{"pid":27369,"tid":27407,"ts":326462132905,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1909323,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462132966,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1909385},
-{"pid":27369,"tid":27407,"ts":326462132996,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1909415},
-{"pid":27369,"tid":27407,"ts":326462132996,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1909415,"id":"0xc4c23902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462133027,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1909446,"id":"0xaf8a6132feb47934"},
-{"pid":27369,"tid":27407,"ts":326462133149,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1909568,"id":"0xaf8a6f33febbc614"},
-{"pid":27369,"tid":27407,"ts":326462133179,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":458,"tdur":458,"tts":1909598},
-{"pid":27369,"tid":27407,"ts":326462133210,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":550,"type":10}}},"tts":1909629,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462133240,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":547,"type":1}}},"tts":1909659,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462133301,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1909720,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462133332,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1909751,"id":"0x226"},
-{"pid":27369,"tid":27407,"ts":326462133424,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1909842,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462133576,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1909995,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462133607,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1910025,"id":"0xaf8a6fccfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462133668,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1910086,"id":"0xaf8a6fccfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462133668,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":671,"tdur":550,"tts":1910086},
-{"pid":27369,"tid":27407,"ts":326462133881,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/api/js/StaticMapService.GetMapImage?1m2&1i168166&2i406250&2e1&3u11&4m3&1u768&2u1040&3e2&5m5&1e0&5sen-US&6sus&10b1&12b1&token=29866",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":23,"unidirectional":false}},"tts":1910300,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462133942,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":130}},"tts":1910361,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462134217,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":151}},"tts":1910544,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462134278,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1910575,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462134309,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1910605,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462138246,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1910697,"id":"0xaf8a6fcdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462138276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":244,"tdur":61,"tts":1910727},
-{"pid":27369,"tid":27407,"ts":326462138276,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1910727,"id":"0xba46ce02"},
-{"pid":27369,"tid":27407,"ts":326462138765,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":518,"tdur":153,"tts":1910849},
-{"pid":27369,"tid":27407,"ts":326462138795,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":488,"tdur":92,"tts":1910880},
-{"pid":27369,"tid":27407,"ts":326462138795,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1910880,"id":"0xccc62502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462138826,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1910911,"id":"0xaf8a6133feb47934"},
-{"pid":27369,"tid":27407,"ts":326462143678,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":580,"tdur":213,"tts":1911094},
-{"pid":27369,"tid":27407,"ts":326462143739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":519,"tdur":183,"tts":1911124},
-{"pid":27369,"tid":27407,"ts":326462143739,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1911124,"id":"0xccc62602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462143770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1911155,"id":"0xaf8a61ccfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462155490,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1911368,"id":"0xaf8a6fcefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462155490,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":641,"tdur":61,"tts":1911399},
-{"pid":27369,"tid":27407,"ts":326462155520,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1911399,"id":"0xba46cf02"},
-{"pid":27369,"tid":27407,"ts":326462165867,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":2136,"tdur":2136,"tts":1911521},
-{"pid":27369,"tid":27407,"ts":326462165928,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2045,"tdur":2045,"tts":1911582},
-{"pid":27369,"tid":27407,"ts":326462165928,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1911582,"id":"0xccc62702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462166111,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1911765,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462166416,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1912070,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462166508,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1912162,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462166599,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":131328,"method":"GET","priority":"IDLE","url":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz"}},"tts":1912253,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462166843,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1912498,"id":"0xaf8a61cdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462166996,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1912681,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167026,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1912681,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167057,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1912711,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167088,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1912742,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167118,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1912772,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167179,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x4b91cfe328a22c7"}},"tts":1912833,"id":"0x228"},
-{"pid":27369,"tid":27407,"ts":326462167179,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz"}},"tts":1912833,"id":"0x228"},
-{"pid":27369,"tid":27407,"ts":326462167210,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1912864,"id":"0x228"},
-{"pid":27369,"tid":27407,"ts":326462167240,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1912894,"id":"0x228"},
-{"pid":27369,"tid":27407,"ts":326462167240,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1912894,"id":"0x228"},
-{"pid":27369,"tid":27407,"ts":326462167301,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1912955,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167301,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1912955,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167362,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x4b91cfe328a22c7"}},"tts":1913016,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462167362,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz"}},"tts":1913016,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462167393,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1913047,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462167393,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1913047,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462167423,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1913077,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462167454,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1913108,"id":"0xaf8a6581fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462167515,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1913169,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167545,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1913200,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167545,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1913200,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167606,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1913261,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167606,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1913261,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167637,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1913291,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462167728,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"IDLE","url":"https://maps.googleapis.com/"}},"tts":1913383,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462167759,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1913413,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462167790,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1913444,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462167820,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1913474,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462167851,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1913505,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462167912,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1913566,"id":"0xaf8a6fcffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462168003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1913657,"id":"0xaf8a6fcffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462168003,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":336,"tdur":336,"tts":1913657},
-{"pid":27369,"tid":27407,"ts":326462168034,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":554,"type":10}}},"tts":1913688,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462168064,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":551,"type":1}}},"tts":1913718,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462168095,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1913749,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462168095,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1913749,"id":"0x22a"},
-{"pid":27369,"tid":27407,"ts":326462168186,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1913840,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462168308,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz",":scheme":"https","accept":"image/webp,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1913963,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462168339,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1913993,"id":"0xaf8a6fc9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462168369,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1914024,"id":"0xaf8a6fc8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462168400,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":30,"tdur":31,"tts":1914054},
-{"pid":27369,"tid":27407,"ts":326462168430,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1914085,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462168461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1914115,"id":"0xaf8a6fc9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462168461,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":458,"tdur":458,"tts":1914115},
-{"pid":27369,"tid":27407,"ts":326462168614,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/gen_204?target=api&ev=api_viewport&cad=host:www.google.com,v:21,r:1,mt:m,c:37.373599%2C-122.133234,sp:0.28375x0.26367,size:384x520,relsize:1.00,token:1riog8e75d,client:google-maps-lite,src:apiv3,ts:87zexz",":scheme: https","accept: image/webp,image/*,*/*;q=0.8","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":4,"stream_id":25,"unidirectional":false}},"tts":1914268,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462168675,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":185}},"tts":1914329,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462168858,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":206}},"tts":1914512,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462168888,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1914542,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462168888,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1914542,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462171635,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1914665,"id":"0xaf8a6fcafebbc614"},
-{"pid":27369,"tid":27407,"ts":326462171635,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1914665},
-{"pid":27369,"tid":27407,"ts":326462171666,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1914695,"id":"0xba46d002"},
-{"pid":27369,"tid":27407,"ts":326462188269,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1914848,"id":"0xaf8a6fcbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462188269,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":580,"tdur":61,"tts":1914848},
-{"pid":27369,"tid":27407,"ts":326462188299,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1914878,"id":"0xba46d102"},
-{"pid":27369,"tid":27407,"ts":326462198829,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":7233,"tdur":2717,"tts":1915000},
-{"pid":27369,"tid":27407,"ts":326462198920,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":64}},"tts":1915092,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462198981,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":43}},"tts":1915153,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462199103,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":30}},"tts":1915275,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462199287,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:31 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":25}},"tts":1915458,"id":"0x139"},{"pid":27369,"tid":27407,"ts":326462199500,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 204 OK","status: 204","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-length: 0","content-type: image/gif","date: Mon, 22 Jun 2015 18:11:31 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1915672,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199561,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1915733,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199592,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1915763,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199683,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3552,"index":0,"offset":0,"truncate":true}},"tts":1915855,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199744,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1915916,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199775,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1915946,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199775,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1915946,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199805,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1915977,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199836,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1916007,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199836,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1916007,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199866,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1916038,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199866,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1916038,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199897,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1916068,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199927,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1916099,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462199927,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1916099,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199958,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1916130,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462199989,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1916160,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462204628,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1916313,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462204658,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1916343,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462204750,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1916435,"id":"0xaf8a61cefeb47934"},
-{"pid":27369,"tid":27407,"ts":326462204902,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1916587,"id":"0xba46d202"},
-{"pid":27369,"tid":27407,"ts":326462205085,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1916770,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462205085,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1916770,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462205177,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9}},"tts":1916862,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462205238,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1916923,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462205299,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":25}},"tts":1916984,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462205330,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1917015,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462205360,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1917045,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462205360,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1917045,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462205391,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1917076,"id":"0xaf8a6fc5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462205452,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1917137,"id":"0xaf8a6fc6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462205574,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1917259,"id":"0xba46d402"},
-{"pid":27369,"tid":27407,"ts":326462205635,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1917320,"id":"0xaf8a61cffeb47934"},
-{"pid":27369,"tid":27407,"ts":326462205787,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1917472,"id":"0x227"},
-{"pid":27369,"tid":27407,"ts":326462205879,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1917594,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462205970,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":22}},"tts":1917656,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462206001,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1917686,"id":"0xaf8a6fc7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462206001,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":22}},"tts":1917686,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462206062,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1917747,"id":"0xaf8a6fc4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462206062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1917747},
-{"pid":27369,"tid":27407,"ts":326462206093,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1917778,"id":"0xba46d302"},
-{"pid":27369,"tid":27407,"ts":326462206154,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1917839,"id":"0xaf8a6fc5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462206154,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":91,"tdur":91,"tts":1917839},
-{"pid":27369,"tid":27407,"ts":326462206184,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1917869,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462206184,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1917869,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462206215,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1917900,"id":"0xaf8a6582fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462206276,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1917961,"id":"0xaf8a6fc6febbc614"},
-{"pid":27369,"tid":27369,"ts":326462171513,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462170785},"dur":92,"tdur":92,"tts":2643552},
-{"pid":27369,"tid":27369,"ts":326462171544,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2643583},
-{"pid":27369,"tid":27369,"ts":326462171574,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2643613,"id":"0xaf8a6fcafebbc614"},
-{"pid":27369,"tid":27369,"ts":326462171757,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2643796},
-{"pid":27369,"tid":27369,"ts":326462171849,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2643918},
-{"pid":27369,"tid":27369,"ts":326462187994,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2644315},
-{"pid":27369,"tid":27369,"ts":326462188055,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2644376},
-{"pid":27369,"tid":27369,"ts":326462188116,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2644437},
-{"pid":27369,"tid":27369,"ts":326462188116,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462187466},"dur":122,"tdur":122,"tts":2644437},
-{"pid":27369,"tid":27369,"ts":326462188147,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2644468},
-{"pid":27369,"tid":27369,"ts":326462188177,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2644498,"id":"0xaf8a6fcbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462188360,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2644712},
-{"pid":27369,"tid":27369,"ts":326462188513,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2644834},
-{"pid":27369,"tid":27369,"ts":326462204780,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2645200},
-{"pid":27369,"tid":27369,"ts":326462204811,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2645261},
-{"pid":27369,"tid":27369,"ts":326462204872,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":214,"tts":2645322},
-{"pid":27369,"tid":27369,"ts":326462204902,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462204148},"dur":92,"tdur":92,"tts":2645322},
-{"pid":27369,"tid":27369,"ts":326462204933,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2645353},
-{"pid":27369,"tid":27369,"ts":326462204963,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2645383,"id":"0xaf8a6fc4febbc614"},
-{"pid":27369,"tid":27369,"ts":326462205116,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2645566},
-{"pid":27369,"tid":27369,"ts":326462205238,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2645658},
-{"pid":27369,"tid":27369,"ts":326462205360,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2645780},
-{"pid":27369,"tid":27369,"ts":326462205391,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2645811,"id":"0xaf8a61cefeb47934"},
-{"pid":27369,"tid":27369,"ts":326462205391,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":213,"tdur":213,"tts":2645811},
-{"pid":27369,"tid":27369,"ts":326462205665,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2646116},
-{"pid":27369,"tid":27369,"ts":326462205787,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2646207},
-{"pid":27369,"tid":27369,"ts":326462205787,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2646207,"id":"0xaf8a61cffeb47934"},
-{"pid":27369,"tid":27369,"ts":326462205818,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":122,"tdur":122,"tts":2646238},
-{"pid":27369,"tid":27369,"ts":326462205818,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2646238},
-{"pid":27369,"tid":27369,"ts":326462205848,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2646268},
-{"pid":27369,"tid":27369,"ts":326462205879,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":0,"tts":2646299},
-{"pid":27369,"tid":27369,"ts":326462205879,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2646299},
-{"pid":27369,"tid":27369,"ts":326462206001,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2646421},
-{"pid":27369,"tid":27369,"ts":326462216256,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2646665},
-{"pid":27369,"tid":27369,"ts":326462216286,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2646665,"id":"0xaf8a61c8feb47934"},
-{"pid":27369,"tid":27369,"ts":326462216317,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/net/chrome_network_delegate.cc","src_func":"OnCanGetCookies"},"dur":0,"tdur":0,"tts":2646696},
-{"pid":27369,"tid":27369,"ts":326462216408,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2646818},
-{"pid":27369,"tid":27369,"ts":326462221505,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2647184},
-{"pid":27369,"tid":27369,"ts":326462221566,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2647245},
-{"pid":27369,"tid":27369,"ts":326462221597,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":244,"tts":2647306},
-{"pid":27369,"tid":27369,"ts":326462221627,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462220829},"dur":123,"tdur":122,"tts":2647306},
-{"pid":27369,"tid":27369,"ts":326462221658,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2647337},
-{"pid":27369,"tid":27369,"ts":326462221688,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2647367,"id":"0xaf8a6fdcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462221872,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2647550},
-{"pid":27369,"tid":27369,"ts":326462221994,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2647672},
-{"pid":27369,"tid":27369,"ts":326462238169,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2648069},
-{"pid":27369,"tid":27369,"ts":326462238231,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2648130},
-{"pid":27369,"tid":27369,"ts":326462238292,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":274,"tdur":275,"tts":2648191},
-{"pid":27369,"tid":27369,"ts":326462238292,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462237511},"dur":122,"tdur":122,"tts":2648191},
-{"pid":27369,"tid":27369,"ts":326462238322,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2648222},
-{"pid":27369,"tid":27369,"ts":326462238353,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2648252,"id":"0xaf8a6fddfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462238566,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2648466},
-{"pid":27369,"tid":27369,"ts":326462238719,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2648618},
-{"pid":27369,"tid":27369,"ts":326462242992,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2648924},
-{"pid":27369,"tid":27369,"ts":326462243022,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2648924,"id":"0xaf8a61c9feb47934"},
-{"pid":27369,"tid":27369,"ts":326462243053,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":641,"tdur":580,"tts":2648954},
-{"pid":27369,"tid":27369,"ts":326462243053,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":641,"tdur":580,"tts":2648954},
-{"pid":27369,"tid":27369,"ts":326462243114,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":549,"tdur":489,"tts":2649015},
-{"pid":27369,"tid":27369,"ts":326462243450,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":91,"tts":2649290},
-{"pid":27369,"tid":27369,"ts":326462243480,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2649320},
-{"pid":27369,"tid":27369,"ts":326462243480,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2649320,"id":"0xaf8a61cafeb47934"},
-{"pid":27369,"tid":27369,"ts":326462243602,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2649442},
-{"pid":27369,"tid":27369,"ts":326462243633,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2649504},
-{"pid":27369,"tid":27369,"ts":326462243755,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2649626},
-{"pid":27369,"tid":27407,"ts":326462206276,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":61,"tdur":61,"tts":1917961},
-{"pid":27369,"tid":27407,"ts":326462206276,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":30,"tts":1917961},
-{"pid":27369,"tid":27407,"ts":326462206337,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1918022,"id":"0xaf8a6fc7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462206367,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":214,"tdur":214,"tts":1918052},
-{"pid":27369,"tid":27407,"ts":326462206398,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1918083,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462206550,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1918235,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462206856,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1918327,"id":"0xaf8a6fc0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462206886,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":62,"tts":1918357},
-{"pid":27369,"tid":27407,"ts":326462206886,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1918388,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462206917,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1918388,"id":"0x229"},
-{"pid":27369,"tid":27407,"ts":326462212441,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":2502,"tdur":2503,"tts":1918510},
-{"pid":27369,"tid":27407,"ts":326462212502,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":358},"dur":2441,"tdur":2442,"tts":1918571},
-{"pid":27369,"tid":27407,"ts":326462212502,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1918571,"id":"0xccc62902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462212715,"ph":"b","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1918785,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213051,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1919121,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213143,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1919212,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213234,"ph":"b","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":{"load_flags":262400,"method":"GET","priority":"LOWEST","url":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"}},"tts":1919334,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213570,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1919639,"id":"0xaf8a61c8feb47934"},
-{"pid":27369,"tid":27407,"ts":326462213753,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1919822,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213784,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1919853,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213814,"ph":"b","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1919884,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213845,"ph":"e","cat":"netlog","name":"HTTP_CACHE_GET_BACKEND","args":{"source_type":"URL_REQUEST","params":""},"tts":1919914,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213875,"ph":"b","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1919975,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462213967,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x1d1846aa1fb0736c"}},"tts":1920036,"id":"0x22c"},
-{"pid":27369,"tid":27407,"ts":326462213997,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"}},"tts":1920067,"id":"0x22c"},
-{"pid":27369,"tid":27407,"ts":326462214028,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1920097,"id":"0x22c"},
-{"pid":27369,"tid":27407,"ts":326462214028,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"net_error":-2}},"tts":1920128,"id":"0x22c"},
-{"pid":27369,"tid":27407,"ts":326462214058,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1920128,"id":"0x22c"},
-{"pid":27369,"tid":27407,"ts":326462214089,"ph":"e","cat":"netlog","name":"HTTP_CACHE_OPEN_ENTRY","args":{"source_type":"URL_REQUEST","params":{"net_error":-2}},"tts":1920189,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214119,"ph":"b","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1920189,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214180,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x1d1846aa1fb0736c"}},"tts":1920250,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462214211,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"}},"tts":1920280,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462214242,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1920311,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462214242,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1920311,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462214303,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1920372,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462214333,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1920402,"id":"0xaf8a6583fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462214394,"ph":"e","cat":"netlog","name":"HTTP_CACHE_CREATE_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1920463,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214425,"ph":"b","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1920494,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214425,"ph":"e","cat":"netlog","name":"HTTP_CACHE_ADD_TO_ENTRY","args":{"source_type":"URL_REQUEST","params":""},"tts":1920494,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214486,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1920555,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214516,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1920585,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214547,"ph":"b","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1920616,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462214638,"ph":"b","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":{"alternative_service":"Uninitialized :0","original_url":"https://maps.googleapis.com/","priority":"LOWEST","url":"https://maps.googleapis.com/"}},"tts":1920708,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462214669,"ph":"b","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1920738,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462214730,"ph":"n","cat":"netlog","name":"PROXY_SERVICE_RESOLVED_PROXY_LIST","args":{"source_type":"HTTP_STREAM_JOB","params":{"pac_string":"DIRECT"}},"tts":1920799,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462214760,"ph":"e","cat":"netlog","name":"PROXY_SERVICE","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1920860,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462214821,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_POOL_FOUND_EXISTING_SESSION","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":313,"type":5}}},"tts":1920891,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462214882,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1920952,"id":"0xaf8a6fc2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462214974,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1921043,"id":"0xaf8a6fc1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462214974,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CreateEntryInternal"},"dur":61,"tdur":61,"tts":1921043},
-{"pid":27369,"tid":27407,"ts":326462215005,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CREATE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1921074,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462215066,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1921135,"id":"0xaf8a6fc2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462215096,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_stream_factory_impl_job.cc","src_func":"RunLoop"},"dur":397,"tdur":397,"tts":1921165},
-{"pid":27369,"tid":27407,"ts":326462215127,"ph":"n","cat":"netlog","name":"HTTP_STREAM_REQUEST_BOUND_TO_JOB","args":{"source_type":"URL_REQUEST","params":{"source_dependency":{"id":558,"type":10}}},"tts":1921196,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462215127,"ph":"n","cat":"netlog","name":"HTTP_STREAM_JOB_BOUND_TO_REQUEST","args":{"source_type":"HTTP_STREAM_JOB","params":{"source_dependency":{"id":555,"type":1}}},"tts":1921226,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462215188,"ph":"e","cat":"netlog","name":"HTTP_STREAM_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1921257,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462215188,"ph":"e","cat":"netlog","name":"HTTP_STREAM_JOB","args":{"source_type":"HTTP_STREAM_JOB","params":""},"tts":1921257,"id":"0x22e"},
-{"pid":27369,"tid":27407,"ts":326462215279,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1921348,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462215432,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_HTTP2_SEND_REQUEST_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":{":authority":"maps.googleapis.com",":method":"GET",":path":"/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, sdch","accept-language":"en-US,en;q=0.8","referer":"https://www.google.com/","user-agent":"Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"}}},"tts":1921501,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462215462,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1921532,"id":"0xaf8a6fc3febbc614"},
-{"pid":27369,"tid":27407,"ts":326462215493,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1921593,"id":"0xaf8a6fc3febbc614"},
-{"pid":27369,"tid":27407,"ts":326462215523,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":1130,"tdur":549,"tts":1921593},
-{"pid":27369,"tid":27407,"ts":326462215737,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_SEND_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"headers":[":authority: maps.googleapis.com",":method: GET",":path: /maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931",":scheme: https","accept: */*","accept-encoding: gzip, deflate, sdch","accept-language: en-US,en;q=0.8","referer: https://www.google.com/","user-agent: Mozilla/5.0 (Linux; Android 4.4; Nexus 4 Build/KRT16O) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2439.0 Mobile Safari/537.36"],"priority":3,"stream_id":27,"unidirectional":false}},"tts":1921806,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462215798,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":185}},"tts":1921867,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462216561,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":206}},"tts":1922050,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462216622,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_SEND_REQUEST","args":{"source_type":"URL_REQUEST","params":""},"tts":1922112,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462216653,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1922142,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462216683,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":91,"tts":1922173},
-{"pid":27369,"tid":27407,"ts":326462216714,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":61,"tdur":61,"tts":1922203},
-{"pid":27369,"tid":27407,"ts":326462216744,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1922234,"id":"0xccc62a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462222116,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1922325,"id":"0xaf8a6fdcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462222116,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":671,"tdur":92,"tts":1922325},
-{"pid":27369,"tid":27407,"ts":326462222787,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":91,"tts":1922417},
-{"pid":27369,"tid":27407,"ts":326462222818,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1922447,"id":"0xba46d502"},
-{"pid":27369,"tid":27407,"ts":326462239482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1922600,"id":"0xaf8a6fddfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462239512,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1922600},
-{"pid":27369,"tid":27407,"ts":326462239543,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1922630,"id":"0xba46d602"},
-{"pid":27369,"tid":27407,"ts":326462242473,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":305,"tdur":305,"tts":1922783},
-{"pid":27369,"tid":27407,"ts":326462242534,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":214,"tdur":214,"tts":1922844},
-{"pid":27369,"tid":27407,"ts":326462242534,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1922844,"id":"0xccc62e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462242625,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1922936,"id":"0xaf8a61c9feb47934"},
-{"pid":27369,"tid":27407,"ts":326462246135,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1923210,"id":"0xaf8a6fdefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462246135,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1923241},
-{"pid":27369,"tid":27407,"ts":326462246166,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1923241,"id":"0xba46d702"},
-{"pid":27369,"tid":27407,"ts":326462246257,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1923332,"id":"0xaf8a6fdffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462246257,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1923332},
-{"pid":27369,"tid":27407,"ts":326462246288,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1923363,"id":"0xba46d802"},
-{"pid":27369,"tid":27407,"ts":326462253949,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":245,"tts":1923515},
-{"pid":27369,"tid":27407,"ts":326462254010,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":183,"tdur":184,"tts":1923576},
-{"pid":27369,"tid":27407,"ts":326462254010,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1923576,"id":"0xccc63202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462254040,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1923607,"id":"0xaf8a61cbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462257123,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1923851,"id":"0xaf8a6fd8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462257123,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1923851},
-{"pid":27369,"tid":27407,"ts":326462257153,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1923882,"id":"0xba46d902"},
-{"pid":27369,"tid":27407,"ts":326462258008,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1924004,"id":"0xaf8a6fd9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462258038,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1924004},
-{"pid":27369,"tid":27407,"ts":326462258038,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1924004,"id":"0xba46da02"},
-{"pid":27369,"tid":27407,"ts":326462259778,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1924126,"id":"0xaf8a6fdafebbc614"},
-{"pid":27369,"tid":27407,"ts":326462259808,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1924156},
-{"pid":27369,"tid":27407,"ts":326462259808,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1924156,"id":"0xba46db02"},
-{"pid":27369,"tid":27407,"ts":326462261579,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":184,"tts":1924278},
-{"pid":27369,"tid":27407,"ts":326462261640,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":153,"tts":1924309},
-{"pid":27369,"tid":27407,"ts":326462261640,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1924309,"id":"0xccc63502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462261670,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1924370,"id":"0xaf8a61c5feb47934"},
-{"pid":27369,"tid":27407,"ts":326462263227,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1924523},
-{"pid":27369,"tid":27407,"ts":326462263257,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1924553},
-{"pid":27369,"tid":27407,"ts":326462263257,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1924553,"id":"0xc4c23e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462263288,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1924584,"id":"0xaf8a61c6feb47934"},
-{"pid":27369,"tid":27407,"ts":326462271589,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1924736,"id":"0xaf8a6fdbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462271589,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1924736},
-{"pid":27369,"tid":27407,"ts":326462271620,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1924767,"id":"0xba46dc02"},
-{"pid":27369,"tid":27407,"ts":326462272688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1924919,"id":"0xaf8a6fd4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462272719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1924919},
-{"pid":27369,"tid":27407,"ts":326462272719,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1924919,"id":"0xba46dd02"},
-{"pid":27369,"tid":27407,"ts":326462273359,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1925041,"id":"0xaf8a6fd5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462273359,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1925041},
-{"pid":27369,"tid":27407,"ts":326462273390,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1925072,"id":"0xba46de02"},
-{"pid":27369,"tid":27407,"ts":326462275862,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":183,"tts":1925164},
-{"pid":27369,"tid":27407,"ts":326462275923,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1925225},
-{"pid":27369,"tid":27407,"ts":326462275923,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1925225,"id":"0xccc63802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462275954,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1925255,"id":"0xaf8a61c0feb47934"},
-{"pid":27369,"tid":27407,"ts":326462277785,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":153,"tts":1925377},
-{"pid":27369,"tid":27407,"ts":326462277815,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":123,"tdur":122,"tts":1925408},
-{"pid":27369,"tid":27407,"ts":326462277846,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1925438,"id":"0xc4c24202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462277846,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1925438,"id":"0xaf8a61c1feb47934"},
-{"pid":27369,"tid":27407,"ts":326462293106,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1925652,"id":"0xaf8a6fd6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462293137,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":184,"tts":1925682},
-{"pid":27369,"tid":27407,"ts":326462293167,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1925743,"id":"0xba46df02"},
-{"pid":27369,"tid":27369,"ts":326462243877,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2649717},
-{"pid":27369,"tid":27369,"ts":326462243907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2649748,"id":"0xaf8a61cafeb47934"},
-{"pid":27369,"tid":27369,"ts":326462243938,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1953,"tdur":1954,"tts":2649778},
-{"pid":27369,"tid":27369,"ts":326462243938,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2649778},
-{"pid":27369,"tid":27369,"ts":326462243968,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1893,"tdur":1892,"tts":2649809},
-{"pid":27369,"tid":27369,"ts":326462243999,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":152},"dur":61,"tdur":61,"tts":2649839},
-{"pid":27369,"tid":27369,"ts":326462243999,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2649839},
-{"pid":27369,"tid":27369,"ts":326462244060,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":366,"tdur":367,"tts":2649900},
-{"pid":27369,"tid":27369,"ts":326462244090,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2649931},
-{"pid":27369,"tid":27369,"ts":326462244090,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":30,"tts":2649931},
-{"pid":27369,"tid":27369,"ts":326462244121,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":244,"tdur":244,"tts":2649961},
-{"pid":27369,"tid":27369,"ts":326462244396,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2650236},
-{"pid":27369,"tid":27369,"ts":326462244426,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2650267},
-{"pid":27369,"tid":27369,"ts":326462244457,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2650297},
-{"pid":27369,"tid":27369,"ts":326462244457,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":152},"dur":30,"tdur":31,"tts":2650297},
-{"pid":27369,"tid":27369,"ts":326462244518,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":152},"dur":0,"tdur":0,"tts":2650358},
-{"pid":27369,"tid":27369,"ts":326462244548,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":152},"tts":2650389},
-{"pid":27369,"tid":27369,"ts":326462244548,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2650389},
-{"pid":27369,"tid":27369,"ts":326462244548,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2650389},
-{"pid":27369,"tid":27369,"ts":326462244579,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2650419},
-{"pid":27369,"tid":27369,"ts":326462244609,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2650450},
-{"pid":27369,"tid":27369,"ts":326462244640,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2650480,"id":"0xaf8a6fdefebbc614"},
-{"pid":27369,"tid":27369,"ts":326462244731,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1099,"tdur":1098,"tts":2650572},
-{"pid":27369,"tid":27369,"ts":326462244762,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":152},"dur":427,"tdur":428,"tts":2650602},
-{"pid":27369,"tid":27369,"ts":326462244762,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2650602},
-{"pid":27369,"tid":27369,"ts":326462244792,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2650633},
-{"pid":27369,"tid":27369,"ts":326462244792,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2650633},
-{"pid":27369,"tid":27369,"ts":326462244823,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2650663,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462244853,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2650694},
-{"pid":27369,"tid":27369,"ts":326462245189,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2651030},
-{"pid":27369,"tid":27369,"ts":326462245220,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":427,"tdur":427,"tts":2651060},
-{"pid":27369,"tid":27369,"ts":326462245220,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2651060},
-{"pid":27369,"tid":27369,"ts":326462245250,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":366,"tdur":366,"tts":2651091},
-{"pid":27369,"tid":27369,"ts":326462245250,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2651091},
-{"pid":27369,"tid":27369,"ts":326462245311,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":275,"tdur":274,"tts":2651152},
-{"pid":27369,"tid":27369,"ts":326462245647,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2651487,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462245708,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2651548},
-{"pid":27369,"tid":27369,"ts":326462245739,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":7400},"dur":61,"tdur":61,"tts":2651579},
-{"pid":27369,"tid":27369,"ts":326462245739,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":30,"tdur":30,"tts":2651579},
-{"pid":27369,"tid":27369,"ts":326462245769,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2651609,"id":"0xaf8a6fdffebbc614"},
-{"pid":27369,"tid":27369,"ts":326462245800,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2651640},
-{"pid":27369,"tid":27369,"ts":326462245800,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2651640},
-{"pid":27369,"tid":27369,"ts":326462245983,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2651854},
-{"pid":27369,"tid":27369,"ts":326462254376,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2652067},
-{"pid":27369,"tid":27369,"ts":326462254376,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2652067,"id":"0xaf8a61cbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462254406,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":2652098},
-{"pid":27369,"tid":27369,"ts":326462254437,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":366,"tdur":367,"tts":2652128},
-{"pid":27369,"tid":27369,"ts":326462254467,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":336,"tdur":336,"tts":2652159},
-{"pid":27369,"tid":27369,"ts":326462254681,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":31,"tts":2652372},
-{"pid":27369,"tid":27369,"ts":326462254742,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2652433},
-{"pid":27369,"tid":27369,"ts":326462254773,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2652464},
-{"pid":27369,"tid":27369,"ts":326462254864,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2652586},
-{"pid":27369,"tid":27369,"ts":326462255169,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2652769},
-{"pid":27369,"tid":27369,"ts":326462255200,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2652830},
-{"pid":27369,"tid":27369,"ts":326462255261,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":183,"tdur":183,"tts":2652861},
-{"pid":27369,"tid":27369,"ts":326462255261,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462254193},"dur":91,"tdur":91,"tts":2652861},
-{"pid":27369,"tid":27369,"ts":326462255291,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2652891},
-{"pid":27369,"tid":27369,"ts":326462255291,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2652891,"id":"0xaf8a6fd8febbc614"},
-{"pid":27369,"tid":27369,"ts":326462255444,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":1679,"tdur":91,"tts":2653044},
-{"pid":27369,"tid":27369,"ts":326462255475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2653074,"id":"0xaf8a61c4feb47934"},
-{"pid":27369,"tid":27369,"ts":326462257123,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2653166},
-{"pid":27369,"tid":27369,"ts":326462257245,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2653258},
-{"pid":27369,"tid":27369,"ts":326462257367,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2653380},
-{"pid":27369,"tid":27369,"ts":326462257367,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2653380,"id":"0xaf8a61c4feb47934"},
-{"pid":27369,"tid":27369,"ts":326462257397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1404,"tdur":1404,"tts":2653410},
-{"pid":27369,"tid":27369,"ts":326462257397,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":31,"tdur":31,"tts":2653410},
-{"pid":27369,"tid":27369,"ts":326462257428,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1373,"tdur":1373,"tts":2653441},
-{"pid":27369,"tid":27369,"ts":326462257458,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":153},"dur":61,"tdur":61,"tts":2653471},
-{"pid":27369,"tid":27369,"ts":326462257458,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":31,"tts":2653471},
-{"pid":27369,"tid":27369,"ts":326462257519,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":275,"tts":2653532},
-{"pid":27369,"tid":27369,"ts":326462257519,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2653532},
-{"pid":27369,"tid":27369,"ts":326462257550,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2653563},
-{"pid":27369,"tid":27369,"ts":326462257580,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":183,"tts":2653593},
-{"pid":27369,"tid":27369,"ts":326462257764,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2653776},
-{"pid":27369,"tid":27369,"ts":326462257794,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2653807},
-{"pid":27369,"tid":27369,"ts":326462257794,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":92,"tts":2653837},
-{"pid":27369,"tid":27369,"ts":326462257825,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":153},"dur":30,"tdur":31,"tts":2653837},
-{"pid":27369,"tid":27369,"ts":326462257855,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":153},"dur":31,"tdur":30,"tts":2653868},
-{"pid":27369,"tid":27369,"ts":326462257886,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":153},"tts":2653898},
-{"pid":27369,"tid":27369,"ts":326462257886,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2653898},
-{"pid":27369,"tid":27369,"ts":326462257886,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2653898},
-{"pid":27369,"tid":27369,"ts":326462257916,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2653929},
-{"pid":27369,"tid":27369,"ts":326462257947,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2653960},
-{"pid":27369,"tid":27369,"ts":326462257947,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2653960,"id":"0xaf8a6fd9febbc614"},
-{"pid":27369,"tid":27369,"ts":326462258038,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":763,"tdur":733,"tts":2654051},
-{"pid":27369,"tid":27369,"ts":326462258069,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":153},"dur":244,"tdur":244,"tts":2654082},
-{"pid":27369,"tid":27369,"ts":326462258069,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":30,"tdur":30,"tts":2654082},
-{"pid":27369,"tid":27369,"ts":326462258069,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2654082},
-{"pid":27369,"tid":27369,"ts":326462258099,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2654112},
-{"pid":27369,"tid":27369,"ts":326462258099,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2654112,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462258130,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2654143},
-{"pid":27369,"tid":27369,"ts":326462258282,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2654295},
-{"pid":27369,"tid":27369,"ts":326462258313,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2654326},
-{"pid":27369,"tid":27369,"ts":326462258313,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2654326},
-{"pid":27369,"tid":27369,"ts":326462258343,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":245,"tdur":244,"tts":2654356},
-{"pid":27369,"tid":27369,"ts":326462258343,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2654356},
-{"pid":27369,"tid":27369,"ts":326462258374,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2654387},
-{"pid":27369,"tid":27369,"ts":326462258588,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2654600,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462258649,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":123,"tts":2654661},
-{"pid":27369,"tid":27369,"ts":326462258649,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9762},"dur":91,"tdur":61,"tts":2654692},
-{"pid":27369,"tid":27369,"ts":326462258679,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2654692},
-{"pid":27369,"tid":27369,"ts":326462258679,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2654723,"id":"0xaf8a6fdafebbc614"},
-{"pid":27369,"tid":27369,"ts":326462258740,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2654753},
-{"pid":27369,"tid":27369,"ts":326462258771,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2654784},
-{"pid":27369,"tid":27369,"ts":326462258893,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2654906},
-{"pid":27369,"tid":27369,"ts":326462261884,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2655089},
-{"pid":27369,"tid":27369,"ts":326462261914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2655119,"id":"0xaf8a61c5feb47934"},
-{"pid":27369,"tid":27369,"ts":326462261914,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2655119},
-{"pid":27369,"tid":27369,"ts":326462261914,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":336,"tdur":305,"tts":2655119},
-{"pid":27369,"tid":27369,"ts":326462261975,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":245,"tdur":244,"tts":2655180},
-{"pid":27369,"tid":27369,"ts":326462262097,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":31,"tts":2655302},
-{"pid":27369,"tid":27369,"ts":326462262158,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2655363},
-{"pid":27369,"tid":27369,"ts":326462262220,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2655424},
-{"pid":27369,"tid":27369,"ts":326462262311,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2655516},
-{"pid":27369,"tid":27369,"ts":326462264264,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2655699},
-{"pid":27369,"tid":27369,"ts":326462264295,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2655730,"id":"0xaf8a61c6feb47934"},
-{"pid":27369,"tid":27369,"ts":326462264295,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2655730},
-{"pid":27369,"tid":27369,"ts":326462264325,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2655760},
-{"pid":27369,"tid":27369,"ts":326462264325,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2655760},
-{"pid":27369,"tid":27369,"ts":326462264417,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2655852},
-{"pid":27369,"tid":27369,"ts":326462271315,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2656157},
-{"pid":27369,"tid":27369,"ts":326462271376,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2656218},
-{"pid":27369,"tid":27369,"ts":326462271406,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2656249},
-{"pid":27369,"tid":27369,"ts":326462271437,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462270874},"dur":91,"tdur":92,"tts":2656279},
-{"pid":27369,"tid":27369,"ts":326462271467,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2656310},
-{"pid":27369,"tid":27369,"ts":326462271498,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2656340,"id":"0xaf8a6fdbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462271650,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2656493},
-{"pid":27369,"tid":27369,"ts":326462271681,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2656523,"id":"0xaf8a61c7feb47934"},
-{"pid":27369,"tid":27369,"ts":326462271742,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2656584},
-{"pid":27369,"tid":27369,"ts":326462271742,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2656584},
-{"pid":27369,"tid":27369,"ts":326462271864,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2656706},
-{"pid":27369,"tid":27369,"ts":326462271986,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2656798},
-{"pid":27369,"tid":27369,"ts":326462271986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2656828,"id":"0xaf8a61c7feb47934"},
-{"pid":27369,"tid":27369,"ts":326462272017,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1404,"tdur":1404,"tts":2656828},
-{"pid":27369,"tid":27369,"ts":326462272017,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2656828},
-{"pid":27369,"tid":27369,"ts":326462272047,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1343,"tdur":1343,"tts":2656859},
-{"pid":27369,"tid":27369,"ts":326462272047,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":154},"dur":92,"tdur":92,"tts":2656859},
-{"pid":27369,"tid":27369,"ts":326462272078,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":62,"tts":2656889},
-{"pid":27369,"tid":27369,"ts":326462272139,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2656951},
-{"pid":27369,"tid":27369,"ts":326462272169,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2656981},
-{"pid":27369,"tid":27369,"ts":326462272169,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2656981},
-{"pid":27369,"tid":27369,"ts":326462272200,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":213,"tdur":213,"tts":2657012},
-{"pid":27369,"tid":27369,"ts":326462272413,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2657225},
-{"pid":27369,"tid":27369,"ts":326462272444,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2657256},
-{"pid":27369,"tid":27369,"ts":326462272444,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":152,"tdur":152,"tts":2657256},
-{"pid":27369,"tid":27369,"ts":326462272474,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":154},"dur":31,"tdur":31,"tts":2657286},
-{"pid":27369,"tid":27369,"ts":326462272505,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":154},"dur":30,"tdur":30,"tts":2657317},
-{"pid":27369,"tid":27369,"ts":326462272535,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":154},"tts":2657347},
-{"pid":27369,"tid":27369,"ts":326462272535,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2657347},
-{"pid":27369,"tid":27369,"ts":326462272566,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2657378},
-{"pid":27369,"tid":27369,"ts":326462272566,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2657378},
-{"pid":27369,"tid":27369,"ts":326462272596,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":62,"tdur":61,"tts":2657408},
-{"pid":27369,"tid":27369,"ts":326462272627,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2657439,"id":"0xaf8a6fd4febbc614"},
-{"pid":27369,"tid":27369,"ts":326462272719,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":671,"tdur":672,"tts":2657530},
-{"pid":27369,"tid":27369,"ts":326462272719,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":154},"dur":183,"tdur":184,"tts":2657530},
-{"pid":27369,"tid":27369,"ts":326462272749,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2657561},
-{"pid":27369,"tid":27369,"ts":326462272749,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2657561},
-{"pid":27369,"tid":27369,"ts":326462272749,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2657561},
-{"pid":27369,"tid":27369,"ts":326462272780,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2657591,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462272810,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2657622},
-{"pid":27369,"tid":27369,"ts":326462272902,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2657714},
-{"pid":27369,"tid":27369,"ts":326462272902,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":305,"tts":2657714},
-{"pid":27369,"tid":27369,"ts":326462272932,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2657744},
-{"pid":27369,"tid":27369,"ts":326462272932,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":244,"tts":2657744},
-{"pid":27369,"tid":27369,"ts":326462272932,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":30,"tts":2657775},
-{"pid":27369,"tid":27369,"ts":326462272993,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":153,"tts":2657805},
-{"pid":27369,"tid":27369,"ts":326462273176,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2658019,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462273237,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2658049},
-{"pid":27369,"tid":27369,"ts":326462273268,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12124},"dur":61,"tdur":61,"tts":2658080},
-{"pid":27369,"tid":27369,"ts":326462273268,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2658080},
-{"pid":27369,"tid":27369,"ts":326462273298,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2658110,"id":"0xaf8a6fd5febbc614"},
-{"pid":27369,"tid":27369,"ts":326462273329,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2658141},
-{"pid":27369,"tid":27369,"ts":326462273359,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2658171},
-{"pid":27369,"tid":27369,"ts":326462273482,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2658293},
-{"pid":27369,"tid":27369,"ts":326462276137,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2658446},
-{"pid":27369,"tid":27369,"ts":326462276137,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2658477,"id":"0xaf8a61c0feb47934"},
-{"pid":27369,"tid":27369,"ts":326462276167,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":306,"tdur":305,"tts":2658477},
-{"pid":27369,"tid":27369,"ts":326462276167,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":306,"tdur":305,"tts":2658477},
-{"pid":27369,"tid":27369,"ts":326462276198,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":275,"tdur":244,"tts":2658538},
-{"pid":27369,"tid":27369,"ts":326462276350,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":30,"tts":2658660},
-{"pid":27369,"tid":27369,"ts":326462276412,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2658721},
-{"pid":27369,"tid":27369,"ts":326462276442,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2658751},
-{"pid":27369,"tid":27369,"ts":326462276534,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2658843},
-{"pid":27369,"tid":27369,"ts":326462278029,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2659026},
-{"pid":27369,"tid":27369,"ts":326462278029,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2659026,"id":"0xaf8a61c1feb47934"},
-{"pid":27369,"tid":27369,"ts":326462278060,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2659056},
-{"pid":27369,"tid":27369,"ts":326462278060,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2659056},
-{"pid":27369,"tid":27369,"ts":326462278090,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2659087},
-{"pid":27369,"tid":27369,"ts":326462278151,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2659178},
-{"pid":27369,"tid":27369,"ts":326462288162,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2659484},
-{"pid":27369,"tid":27369,"ts":326462288223,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2659545},
-{"pid":27369,"tid":27369,"ts":326462288284,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2659606},
-{"pid":27369,"tid":27369,"ts":326462288284,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462287556},"dur":122,"tdur":122,"tts":2659606},
-{"pid":27369,"tid":27369,"ts":326462288345,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2659667},
-{"pid":27369,"tid":27369,"ts":326462288345,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2659697,"id":"0xaf8a6fd6febbc614"},
-{"pid":27369,"tid":27369,"ts":326462288528,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":91,"tts":2659850},
-{"pid":27369,"tid":27369,"ts":326462288528,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2659880,"id":"0xaf8a61c2feb47934"},
-{"pid":27369,"tid":27369,"ts":326462288620,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2659972},
-{"pid":27369,"tid":27369,"ts":326462288742,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2660064},
-{"pid":27369,"tid":27369,"ts":326462288833,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2660186},
-{"pid":27369,"tid":27369,"ts":326462288864,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2660186,"id":"0xaf8a61c2feb47934"},
-{"pid":27369,"tid":27369,"ts":326462288864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":6775,"tdur":2380,"tts":2660186},
-{"pid":27369,"tid":27369,"ts":326462288894,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2660216},
-{"pid":27369,"tid":27369,"ts":326462288894,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":6684,"tdur":2289,"tts":2660216},
-{"pid":27369,"tid":27369,"ts":326462288925,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":155},"dur":91,"tdur":91,"tts":2660247},
-{"pid":27369,"tid":27369,"ts":326462288955,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2660277},
-{"pid":27369,"tid":27369,"ts":326462289016,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":367,"tdur":367,"tts":2660338},
-{"pid":27369,"tid":27369,"ts":326462289047,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":0,"tts":2660369},
-{"pid":27369,"tid":27369,"ts":326462289077,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2660399},
-{"pid":27369,"tid":27369,"ts":326462289108,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":2660430},
-{"pid":27369,"tid":27369,"ts":326462289352,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2660674},
-{"pid":27369,"tid":27369,"ts":326462289383,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2660705},
-{"pid":27369,"tid":27369,"ts":326462289383,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2660705},
-{"pid":27369,"tid":27369,"ts":326462289413,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":155},"dur":31,"tdur":31,"tts":2660735},
-{"pid":27369,"tid":27369,"ts":326462289444,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":155},"dur":30,"tdur":30,"tts":2660766},
-{"pid":27369,"tid":27369,"ts":326462289474,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":155},"tts":2660796},
-{"pid":27369,"tid":27369,"ts":326462289474,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2660796},
-{"pid":27369,"tid":27369,"ts":326462289474,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":0,"tts":2660827},
-{"pid":27369,"tid":27369,"ts":326462289505,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2660827},
-{"pid":27369,"tid":27369,"ts":326462289535,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":31,"tdur":31,"tts":2660857},
-{"pid":27369,"tid":27369,"ts":326462289535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2660857,"id":"0xaf8a6fd7febbc614"},
-{"pid":27369,"tid":27369,"ts":326462289596,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":5952,"tdur":1557,"tts":2660918},
-{"pid":27369,"tid":27369,"ts":326462289627,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":155},"dur":213,"tdur":213,"tts":2660949},
-{"pid":27369,"tid":27369,"ts":326462289627,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2660949},
-{"pid":27369,"tid":27369,"ts":326462289657,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2660979},
-{"pid":27369,"tid":27369,"ts":326462289657,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2660979},
-{"pid":27369,"tid":27369,"ts":326462289657,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2660979,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462289688,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2661010},
-{"pid":27369,"tid":27369,"ts":326462289810,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2661162},
-{"pid":27369,"tid":27369,"ts":326462289840,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":5219,"tdur":824,"tts":2661162},
-{"pid":27369,"tid":27369,"ts":326462289871,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2661193},
-{"pid":27369,"tid":27369,"ts":326462289871,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":5097,"tdur":702,"tts":2661193},
-{"pid":27369,"tid":27369,"ts":326462289871,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2661193},
-{"pid":27369,"tid":27369,"ts":326462289932,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":4487,"tdur":549,"tts":2661254},
-{"pid":27369,"tid":27369,"ts":326462295029,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2661956,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462295151,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":366,"tdur":366,"tts":2662078},
-{"pid":27369,"tid":27369,"ts":326462295212,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14486},"dur":214,"tdur":214,"tts":2662139},
-{"pid":27369,"tid":27369,"ts":326462295243,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":152,"tdur":153,"tts":2662169},
-{"pid":27369,"tid":27369,"ts":326462295304,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2662231,"id":"0xaf8a6fd0febbc614"},
-{"pid":27369,"tid":27369,"ts":326462295426,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":91,"tdur":61,"tts":2662383},
-{"pid":27369,"tid":27369,"ts":326462295456,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2662383},
-{"pid":27369,"tid":27369,"ts":326462295853,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2662780},
-{"pid":27369,"tid":27369,"ts":326462296128,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2663055},
-{"pid":27369,"tid":27369,"ts":326462296189,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2663116,"id":"0xaf8a61c3feb47934"},
-{"pid":27369,"tid":27369,"ts":326462296189,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":183,"tdur":122,"tts":2663146},
-{"pid":27369,"tid":27369,"ts":326462296250,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":91,"tdur":91,"tts":2663177},
-{"pid":27369,"tid":27369,"ts":326462296280,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":61,"tdur":31,"tts":2663207},
-{"pid":27369,"tid":27369,"ts":326462296524,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2663451},
-{"pid":27369,"tid":27369,"ts":326462297410,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2663665},
-{"pid":27369,"tid":27369,"ts":326462297410,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2663665,"id":"0xaf8a61dcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462297440,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":366,"tts":2663696},
-{"pid":27369,"tid":27369,"ts":326462297440,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":336,"tdur":335,"tts":2663696},
-{"pid":27369,"tid":27369,"ts":326462297471,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":305,"tts":2663726},
-{"pid":27369,"tid":27369,"ts":326462297654,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2663909},
-{"pid":27369,"tid":27369,"ts":326462297715,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2663970},
-{"pid":27369,"tid":27369,"ts":326462297745,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2664001},
-{"pid":27369,"tid":27407,"ts":326462293320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1925896,"id":"0xaf8a6fd7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462293320,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1925896},
-{"pid":27369,"tid":27407,"ts":326462293381,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":91,"tts":1925927},
-{"pid":27369,"tid":27407,"ts":326462293411,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1925957,"id":"0xba46e002"},
-{"pid":27369,"tid":27407,"ts":326462293533,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":336,"tdur":305,"tts":1926079},
-{"pid":27369,"tid":27407,"ts":326462293594,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":214,"tdur":214,"tts":1926140},
-{"pid":27369,"tid":27407,"ts":326462293625,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1926171,"id":"0xc4c24402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462293656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1926201,"id":"0xaf8a61c3feb47934"},
-{"pid":27369,"tid":27407,"ts":326462295426,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1926598,"id":"0xaf8a6fd0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462295456,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1926629},
-{"pid":27369,"tid":27407,"ts":326462295456,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1926629,"id":"0xba46e102"},
-{"pid":27369,"tid":27407,"ts":326462297135,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1926842},
-{"pid":27369,"tid":27407,"ts":326462297165,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":152,"tts":1926873},
-{"pid":27369,"tid":27407,"ts":326462297196,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1926903,"id":"0xccc63b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462297226,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1926934,"id":"0xaf8a61dcfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462305131,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1927178,"id":"0xaf8a6fd1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462305162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1927208},
-{"pid":27369,"tid":27407,"ts":326462305162,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1927208,"id":"0xba46e202"},
-{"pid":27369,"tid":27407,"ts":326462306230,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1927422,"id":"0xaf8a6fd2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462306230,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":61,"tts":1927422},
-{"pid":27369,"tid":27407,"ts":326462306260,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1927453,"id":"0xba46e302"},
-{"pid":27369,"tid":27407,"ts":326462307115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1927575,"id":"0xaf8a6fd3febbc614"},
-{"pid":27369,"tid":27407,"ts":326462307115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":61,"tts":1927605},
-{"pid":27369,"tid":27407,"ts":326462307146,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1927605,"id":"0xba46e402"},
-{"pid":27369,"tid":27407,"ts":326462308397,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":153,"tts":1927727},
-{"pid":27369,"tid":27407,"ts":326462308427,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1927758},
-{"pid":27369,"tid":27407,"ts":326462308427,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1927758,"id":"0xc4c24602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462308458,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1927788,"id":"0xaf8a61defeb47934"},
-{"pid":27369,"tid":27407,"ts":326462309343,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":184,"tts":1927971},
-{"pid":27369,"tid":27407,"ts":326462309374,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":92,"tts":1928032},
-{"pid":27369,"tid":27407,"ts":326462309404,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1928032,"id":"0xccc63e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462309435,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1928063,"id":"0xaf8a61dffeb47934"},
-{"pid":27369,"tid":27407,"ts":326462321734,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1928185,"id":"0xaf8a6fecfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462321765,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1928216},
-{"pid":27369,"tid":27407,"ts":326462321765,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1928216,"id":"0xba46e502"},
-{"pid":27369,"tid":27407,"ts":326462322833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1928338,"id":"0xaf8a6fedfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462322864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1928368},
-{"pid":27369,"tid":27407,"ts":326462322864,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1928368,"id":"0xba46e602"},
-{"pid":27369,"tid":27407,"ts":326462323627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1928490,"id":"0xaf8a6feefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462323657,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1928521},
-{"pid":27369,"tid":27407,"ts":326462323657,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1928521,"id":"0xba46e702"},
-{"pid":27369,"tid":27407,"ts":326462324969,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":184,"tdur":153,"tts":1928673},
-{"pid":27369,"tid":27407,"ts":326462325000,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":91,"tts":1928704},
-{"pid":27369,"tid":27407,"ts":326462325030,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1928704,"id":"0xc4c24a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462325030,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1928704,"id":"0xaf8a61d9feb47934"},
-{"pid":27369,"tid":27407,"ts":326462327228,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1928918},
-{"pid":27369,"tid":27407,"ts":326462327258,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":122,"tts":1928979},
-{"pid":27369,"tid":27407,"ts":326462327289,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1928979,"id":"0xccc64002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462327319,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1929009,"id":"0xaf8a61dafeb47934"},
-{"pid":27369,"tid":27407,"ts":326462338368,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1929192,"id":"0xaf8a6feffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462338398,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1929192},
-{"pid":27369,"tid":27407,"ts":326462338398,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1929192,"id":"0xba46e802"},
-{"pid":27369,"tid":27407,"ts":326462339802,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1929345,"id":"0xaf8a6fe8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462339802,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1929345},
-{"pid":27369,"tid":27407,"ts":326462339833,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1929375,"id":"0xba46e902"},
-{"pid":27369,"tid":27407,"ts":326462341115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1929528,"id":"0xaf8a6fe9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462341115,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1929528},
-{"pid":27369,"tid":27407,"ts":326462341115,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1929528,"id":"0xba46ea02"},
-{"pid":27369,"tid":27407,"ts":326462341573,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":153,"tts":1929650},
-{"pid":27369,"tid":27407,"ts":326462341603,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":91,"tts":1929681},
-{"pid":27369,"tid":27407,"ts":326462341603,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1929681,"id":"0xc4c24c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462341634,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1929711,"id":"0xaf8a61d4feb47934"},
-{"pid":27369,"tid":27407,"ts":326462343892,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1929864},
-{"pid":27369,"tid":27407,"ts":326462343953,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1929925},
-{"pid":27369,"tid":27369,"ts":326462297867,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2664123},
-{"pid":27369,"tid":27369,"ts":326462304826,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2664397},
-{"pid":27369,"tid":27369,"ts":326462304887,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2664459},
-{"pid":27369,"tid":27369,"ts":326462304948,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2664520},
-{"pid":27369,"tid":27369,"ts":326462304948,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462304237},"dur":122,"tdur":122,"tts":2664520},
-{"pid":27369,"tid":27369,"ts":326462304979,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2664550},
-{"pid":27369,"tid":27369,"ts":326462305009,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2664581,"id":"0xaf8a6fd1febbc614"},
-{"pid":27369,"tid":27369,"ts":326462305162,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":61,"tts":2664764},
-{"pid":27369,"tid":27369,"ts":326462305192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2664764,"id":"0xaf8a61ddfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462305253,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2664825},
-{"pid":27369,"tid":27369,"ts":326462305345,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2664916},
-{"pid":27369,"tid":27369,"ts":326462305467,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2665038},
-{"pid":27369,"tid":27369,"ts":326462305497,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2665069,"id":"0xaf8a61ddfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462305497,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1710,"tdur":1679,"tts":2665069},
-{"pid":27369,"tid":27369,"ts":326462305528,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2665099},
-{"pid":27369,"tid":27369,"ts":326462305528,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1648,"tdur":1649,"tts":2665099},
-{"pid":27369,"tid":27369,"ts":326462305589,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":156},"dur":61,"tdur":62,"tts":2665160},
-{"pid":27369,"tid":27369,"ts":326462305589,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":62,"tts":2665160},
-{"pid":27369,"tid":27369,"ts":326462305650,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2665222},
-{"pid":27369,"tid":27369,"ts":326462305681,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2665252},
-{"pid":27369,"tid":27369,"ts":326462305711,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2665283},{"pid":27369,"tid":27369,"ts":326462305742,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2665313},
-{"pid":27369,"tid":27369,"ts":326462305955,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2665527},
-{"pid":27369,"tid":27369,"ts":326462305986,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2665557},
-{"pid":27369,"tid":27369,"ts":326462305986,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2665557},
-{"pid":27369,"tid":27369,"ts":326462306016,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":156},"dur":31,"tdur":30,"tts":2665588},
-{"pid":27369,"tid":27369,"ts":326462306047,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":156},"dur":30,"tdur":31,"tts":2665618},
-{"pid":27369,"tid":27369,"ts":326462306077,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":156},"tts":2665649},
-{"pid":27369,"tid":27369,"ts":326462306077,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2665649},
-{"pid":27369,"tid":27369,"ts":326462306108,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2665679},
-{"pid":27369,"tid":27369,"ts":326462306108,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2665679},
-{"pid":27369,"tid":27369,"ts":326462306138,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2665710},
-{"pid":27369,"tid":27369,"ts":326462306138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2665710,"id":"0xaf8a6fd2febbc614"},
-{"pid":27369,"tid":27369,"ts":326462306230,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":916,"tdur":885,"tts":2665832},
-{"pid":27369,"tid":27369,"ts":326462306260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":156},"dur":275,"tdur":275,"tts":2665832},
-{"pid":27369,"tid":27369,"ts":326462306260,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2665832},
-{"pid":27369,"tid":27369,"ts":326462306291,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2665862},
-{"pid":27369,"tid":27369,"ts":326462306291,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2665862},
-{"pid":27369,"tid":27369,"ts":326462306321,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2665893,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462306352,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2665923},
-{"pid":27369,"tid":27369,"ts":326462306505,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2666076},
-{"pid":27369,"tid":27369,"ts":326462306535,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":396,"tts":2666107},
-{"pid":27369,"tid":27369,"ts":326462306535,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":31,"tdur":0,"tts":2666137},
-{"pid":27369,"tid":27369,"ts":326462306566,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":335,"tdur":336,"tts":2666137},
-{"pid":27369,"tid":27369,"ts":326462306596,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":30,"tts":2666168},
-{"pid":27369,"tid":27369,"ts":326462306627,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":244,"tts":2666198},
-{"pid":27369,"tid":27369,"ts":326462306932,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2666503,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462306962,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":184,"tdur":153,"tts":2666564},
-{"pid":27369,"tid":27369,"ts":326462306993,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":472},"dur":91,"tdur":92,"tts":2666564},
-{"pid":27369,"tid":27369,"ts":326462307023,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2666595},
-{"pid":27369,"tid":27369,"ts":326462307054,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2666625,"id":"0xaf8a6fd3febbc614"},
-{"pid":27369,"tid":27369,"ts":326462307084,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":62,"tdur":31,"tts":2666686},
-{"pid":27369,"tid":27369,"ts":326462307115,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2666686},
-{"pid":27369,"tid":27369,"ts":326462307268,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2666839},
-{"pid":27369,"tid":27369,"ts":326462308641,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2667022},
-{"pid":27369,"tid":27369,"ts":326462308672,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2667053,"id":"0xaf8a61defeb47934"},
-{"pid":27369,"tid":27369,"ts":326462308672,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2667053},
-{"pid":27369,"tid":27369,"ts":326462308702,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2667083},
-{"pid":27369,"tid":27369,"ts":326462308702,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2667083},
-{"pid":27369,"tid":27369,"ts":326462308794,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2667175},
-{"pid":27369,"tid":27369,"ts":326462309648,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2667327},
-{"pid":27369,"tid":27369,"ts":326462309648,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2667327,"id":"0xaf8a61dffeb47934"},
-{"pid":27369,"tid":27369,"ts":326462309648,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":397,"tdur":397,"tts":2667327},
-{"pid":27369,"tid":27369,"ts":326462309679,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":366,"tdur":366,"tts":2667358},
-{"pid":27369,"tid":27369,"ts":326462309709,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":275,"tdur":275,"tts":2667388},
-{"pid":27369,"tid":27369,"ts":326462309862,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":0,"tts":2667572},
-{"pid":27369,"tid":27369,"ts":326462309923,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2667602},
-{"pid":27369,"tid":27369,"ts":326462309984,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2667663},
-{"pid":27369,"tid":27369,"ts":326462310106,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2667785},
-{"pid":27369,"tid":27369,"ts":326462321521,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2668121},
-{"pid":27369,"tid":27369,"ts":326462321551,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2668151},
-{"pid":27369,"tid":27369,"ts":326462321612,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":183,"tts":2668213},
-{"pid":27369,"tid":27369,"ts":326462321612,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462320919},"dur":92,"tdur":91,"tts":2668213},
-{"pid":27369,"tid":27369,"ts":326462321643,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2668243},
-{"pid":27369,"tid":27369,"ts":326462321673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2668274,"id":"0xaf8a6fecfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462321826,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2668426},
-{"pid":27369,"tid":27369,"ts":326462321856,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2668457,"id":"0xaf8a61d8feb47934"},
-{"pid":27369,"tid":27369,"ts":326462321917,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2668518},
-{"pid":27369,"tid":27369,"ts":326462322009,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2668640},
-{"pid":27369,"tid":27369,"ts":326462322131,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2668731},
-{"pid":27369,"tid":27369,"ts":326462322162,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2668762,"id":"0xaf8a61d8feb47934"},
-{"pid":27369,"tid":27369,"ts":326462322162,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1526,"tdur":1526,"tts":2668762},
-{"pid":27369,"tid":27369,"ts":326462322192,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2668792},
-{"pid":27369,"tid":27369,"ts":326462322192,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1496,"tdur":1496,"tts":2668792},
-{"pid":27369,"tid":27369,"ts":326462322223,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":157},"dur":91,"tdur":91,"tts":2668823},
-{"pid":27369,"tid":27369,"ts":326462322253,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2668853},
-{"pid":27369,"tid":27369,"ts":326462322314,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":275,"tdur":275,"tts":2668914},
-{"pid":27369,"tid":27369,"ts":326462322345,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2668945},
-{"pid":27369,"tid":27369,"ts":326462322345,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":2668976},
-{"pid":27369,"tid":27369,"ts":326462322375,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":183,"tdur":183,"tts":2668976},
-{"pid":27369,"tid":27369,"ts":326462322589,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2669189},
-{"pid":27369,"tid":27369,"ts":326462322619,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2669220},
-{"pid":27369,"tid":27369,"ts":326462322619,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2669220},
-{"pid":27369,"tid":27369,"ts":326462322619,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":157},"dur":61,"tdur":30,"tts":2669220},
-{"pid":27369,"tid":27369,"ts":326462322680,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":157},"dur":0,"tdur":0,"tts":2669281},
-{"pid":27369,"tid":27369,"ts":326462322680,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":157},"tts":2669311},
-{"pid":27369,"tid":27369,"ts":326462322711,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2669311},
-{"pid":27369,"tid":27369,"ts":326462322711,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2669311},
-{"pid":27369,"tid":27369,"ts":326462322711,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":0,"tts":2669342},
-{"pid":27369,"tid":27369,"ts":326462322741,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2669342},
-{"pid":27369,"tid":27369,"ts":326462322772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2669372,"id":"0xaf8a6fedfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462322833,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":2669433},
-{"pid":27369,"tid":27369,"ts":326462322864,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":157},"dur":244,"tdur":244,"tts":2669464},
-{"pid":27369,"tid":27369,"ts":326462322894,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2669494},
-{"pid":27369,"tid":27369,"ts":326462322894,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":0,"tts":2669525},
-{"pid":27369,"tid":27369,"ts":326462322925,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2669525},
-{"pid":27369,"tid":27369,"ts":326462322955,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2669555,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462322955,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2669586},
-{"pid":27369,"tid":27369,"ts":326462323077,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2669677},
-{"pid":27369,"tid":27369,"ts":326462323108,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":366,"tdur":366,"tts":2669708},
-{"pid":27369,"tid":27369,"ts":326462323138,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2669739},
-{"pid":27369,"tid":27369,"ts":326462323138,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2669739},
-{"pid":27369,"tid":27369,"ts":326462323169,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2669769},
-{"pid":27369,"tid":27369,"ts":326462323199,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":213,"tts":2669800},
-{"pid":27369,"tid":27369,"ts":326462323474,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2670074,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462323535,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2670135},
-{"pid":27369,"tid":27369,"ts":326462323535,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2834},"dur":92,"tdur":92,"tts":2670135},
-{"pid":27369,"tid":27369,"ts":326462323565,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":62,"tdur":61,"tts":2670166},
-{"pid":27369,"tid":27369,"ts":326462323565,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2670166,"id":"0xaf8a6feefebbc614"},
-{"pid":27369,"tid":27369,"ts":326462323627,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2670227},
-{"pid":27369,"tid":27369,"ts":326462323627,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2670257},
-{"pid":27369,"tid":27369,"ts":326462323779,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2670379},
-{"pid":27369,"tid":27369,"ts":326462325214,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2670563},
-{"pid":27369,"tid":27369,"ts":326462325214,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2670593,"id":"0xaf8a61d9feb47934"},
-{"pid":27369,"tid":27369,"ts":326462325244,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2670593},
-{"pid":27369,"tid":27369,"ts":326462325244,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2670593},
-{"pid":27369,"tid":27369,"ts":326462325275,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2670624},
-{"pid":27369,"tid":27369,"ts":326462325336,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2670685},
-{"pid":27369,"tid":27369,"ts":326462327564,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2670837},
-{"pid":27369,"tid":27369,"ts":326462327594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2670868,"id":"0xaf8a61dafeb47934"},
-{"pid":27369,"tid":27369,"ts":326462327594,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2670868},
-{"pid":27369,"tid":27369,"ts":326462327625,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":305,"tdur":306,"tts":2670898},
-{"pid":27369,"tid":27369,"ts":326462327655,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":275,"tdur":244,"tts":2670929},
-{"pid":27369,"tid":27369,"ts":326462327808,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":0,"tdur":0,"tts":2671081},
-{"pid":27369,"tid":27369,"ts":326462327838,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2671142},
-{"pid":27369,"tid":27369,"ts":326462327899,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2671173},
-{"pid":27369,"tid":27369,"ts":326462327991,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2671265},
-{"pid":27369,"tid":27369,"ts":326462338154,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2671600},
-{"pid":27369,"tid":27369,"ts":326462338185,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2671631},
-{"pid":27369,"tid":27369,"ts":326462338246,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":397,"tdur":213,"tts":2671692},
-{"pid":27369,"tid":27369,"ts":326462338246,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462337600},"dur":122,"tdur":122,"tts":2671692},
-{"pid":27369,"tid":27369,"ts":326462338276,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2671722},
-{"pid":27369,"tid":27369,"ts":326462338307,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2671753,"id":"0xaf8a6feffebbc614"},
-{"pid":27369,"tid":27369,"ts":326462338643,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":61,"tts":2671936},
-{"pid":27369,"tid":27369,"ts":326462338673,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2671936,"id":"0xaf8a61dbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462338734,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2671997},
-{"pid":27369,"tid":27369,"ts":326462338917,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2672150},
-{"pid":27369,"tid":27369,"ts":326462339039,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2672272},
-{"pid":27369,"tid":27369,"ts":326462339070,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2672302,"id":"0xaf8a61dbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462339100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2045,"tdur":1587,"tts":2672333},
-{"pid":27369,"tid":27369,"ts":326462339100,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2672333},
-{"pid":27369,"tid":27369,"ts":326462339131,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2014,"tdur":1557,"tts":2672363},
-{"pid":27369,"tid":27369,"ts":326462339131,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":158},"dur":61,"tdur":61,"tts":2672363},
-{"pid":27369,"tid":27369,"ts":326462339161,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":31,"tdur":30,"tts":2672394},
-{"pid":27369,"tid":27369,"ts":326462339192,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":306,"tts":2672424},
-{"pid":27369,"tid":27369,"ts":326462339222,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2672455},
-{"pid":27369,"tid":27369,"ts":326462339253,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2672485},
-{"pid":27369,"tid":27369,"ts":326462339283,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":183,"tts":2672516},
-{"pid":27369,"tid":27369,"ts":326462339467,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2672699},
-{"pid":27369,"tid":27369,"ts":326462339528,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2672760},
-{"pid":27369,"tid":27369,"ts":326462339528,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":152,"tdur":153,"tts":2672760},
-{"pid":27369,"tid":27369,"ts":326462339558,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":158},"dur":31,"tdur":30,"tts":2672791},
-{"pid":27369,"tid":27369,"ts":326462339589,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":158},"dur":30,"tdur":31,"tts":2672821},
-{"pid":27369,"tid":27369,"ts":326462339619,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":158},"tts":2672852},
-{"pid":27369,"tid":27369,"ts":326462339650,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2672882},
-{"pid":27369,"tid":27369,"ts":326462339650,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2672882},
-{"pid":27369,"tid":27369,"ts":326462339680,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2672913},
-{"pid":27369,"tid":27369,"ts":326462339711,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2672943},
-{"pid":27369,"tid":27369,"ts":326462339711,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2672943,"id":"0xaf8a6fe8febbc614"},
-{"pid":27369,"tid":27369,"ts":326462339802,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1313,"tdur":824,"tts":2673065},
-{"pid":27369,"tid":27369,"ts":326462339833,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":158},"dur":793,"tdur":336,"tts":2673065},
-{"pid":27369,"tid":27369,"ts":326462339863,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":31,"tdur":30,"tts":2673096},
-{"pid":27369,"tid":27369,"ts":326462339863,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2673096},
-{"pid":27369,"tid":27369,"ts":326462339863,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2673096},
-{"pid":27369,"tid":27369,"ts":326462339894,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2673126,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462339924,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2673157},
-{"pid":27369,"tid":27369,"ts":326462340626,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2673401},
-{"pid":27369,"tid":27369,"ts":326462340626,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":306,"tdur":305,"tts":2673401},
-{"pid":27369,"tid":27369,"ts":326462340657,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2673431},
-{"pid":27369,"tid":27369,"ts":326462340657,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":244,"tdur":245,"tts":2673431},
-{"pid":27369,"tid":27369,"ts":326462340687,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2673462},
-{"pid":27369,"tid":27369,"ts":326462340718,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":152,"tts":2673493},
-{"pid":27369,"tid":27369,"ts":326462340932,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2673706,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462340962,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":2673767},
-{"pid":27369,"tid":27369,"ts":326462340993,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":5196},"dur":91,"tdur":92,"tts":2673767},
-{"pid":27369,"tid":27369,"ts":326462341023,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":30,"tts":2673798},
-{"pid":27369,"tid":27369,"ts":326462341023,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2673798,"id":"0xaf8a6fe9febbc614"},
-{"pid":27369,"tid":27369,"ts":326462341084,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2673859},
-{"pid":27369,"tid":27369,"ts":326462341084,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2673859},
-{"pid":27369,"tid":27369,"ts":326462341298,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2674072},
-{"pid":27369,"tid":27369,"ts":326462341786,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2674256},
-{"pid":27369,"tid":27369,"ts":326462341817,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2674256,"id":"0xaf8a61d4feb47934"},
-{"pid":27369,"tid":27369,"ts":326462341817,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2674256},
-{"pid":27369,"tid":27369,"ts":326462341847,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2674286},
-{"pid":27369,"tid":27369,"ts":326462341878,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2674317},
-{"pid":27369,"tid":27369,"ts":326462341969,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2674408},
-{"pid":27369,"tid":27369,"ts":326462344228,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2674530},
-{"pid":27369,"tid":27369,"ts":326462344228,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2674561,"id":"0xaf8a61d5feb47934"},
-{"pid":27369,"tid":27369,"ts":326462344258,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":335,"tts":2674561},
-{"pid":27369,"tid":27369,"ts":326462344258,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":336,"tdur":335,"tts":2674561},
-{"pid":27369,"tid":27369,"ts":326462344289,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":275,"tdur":275,"tts":2674591},
-{"pid":27369,"tid":27369,"ts":326462344441,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":30,"tts":2674744},
-{"pid":27369,"tid":27369,"ts":326462344502,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2674805},
-{"pid":27369,"tid":27369,"ts":326462344564,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2674866},
-{"pid":27369,"tid":27369,"ts":326462344655,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2674958},
-{"pid":27369,"tid":27369,"ts":326462354788,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2675171},
-{"pid":27369,"tid":27369,"ts":326462354818,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2675232},
-{"pid":27369,"tid":27369,"ts":326462354879,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":244,"tts":2675263},
-{"pid":27369,"tid":27369,"ts":326462354910,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462354282},"dur":91,"tdur":92,"tts":2675293},
-{"pid":27369,"tid":27369,"ts":326462354940,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2675324},
-{"pid":27369,"tid":27369,"ts":326462354940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2675324,"id":"0xaf8a6feafebbc614"},
-{"pid":27369,"tid":27369,"ts":326462355154,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":30,"tts":2675507},
-{"pid":27369,"tid":27369,"ts":326462355185,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2675507,"id":"0xaf8a61d6feb47934"},
-{"pid":27369,"tid":27369,"ts":326462355276,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2675568},
-{"pid":27369,"tid":27369,"ts":326462355368,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2675659},
-{"pid":27369,"tid":27369,"ts":326462355490,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2675782},
-{"pid":27369,"tid":27369,"ts":326462355520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2675812,"id":"0xaf8a61d6feb47934"},
-{"pid":27369,"tid":27369,"ts":326462355551,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1617,"tdur":1617,"tts":2675843},
-{"pid":27369,"tid":27369,"ts":326462355551,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2675843},
-{"pid":27369,"tid":27369,"ts":326462355551,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1587,"tdur":1557,"tts":2675873},
-{"pid":27369,"tid":27369,"ts":326462355612,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":159},"dur":61,"tdur":61,"tts":2675904},
-{"pid":27369,"tid":27369,"ts":326462355612,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2675904},
-{"pid":27369,"tid":27369,"ts":326462355703,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":306,"tdur":305,"tts":2675995},
-{"pid":27369,"tid":27369,"ts":326462355703,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":31,"tts":2675995},
-{"pid":27369,"tid":27369,"ts":326462355734,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":0,"tts":2676026},
-{"pid":27369,"tid":27369,"ts":326462355764,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":184,"tdur":183,"tts":2676056},
-{"pid":27369,"tid":27369,"ts":326462355978,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2676270},
-{"pid":27369,"tid":27369,"ts":326462356009,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2676300},
-{"pid":27369,"tid":27369,"ts":326462356009,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":152,"tdur":122,"tts":2676331},
-{"pid":27369,"tid":27369,"ts":326462356039,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":159},"dur":31,"tdur":30,"tts":2676331},
-{"pid":27369,"tid":27369,"ts":326462356100,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":159},"dur":0,"tdur":0,"tts":2676392},
-{"pid":27369,"tid":27369,"ts":326462356100,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":159},"tts":2676392},
-{"pid":27369,"tid":27369,"ts":326462356131,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2676422},
-{"pid":27369,"tid":27369,"ts":326462356131,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2676422},
-{"pid":27369,"tid":27369,"ts":326462356131,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":31,"tts":2676422},
-{"pid":27369,"tid":27369,"ts":326462356161,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2676453},
-{"pid":27369,"tid":27369,"ts":326462356192,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2676484,"id":"0xaf8a6febfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462356283,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":855,"tdur":855,"tts":2676575},
-{"pid":27369,"tid":27369,"ts":326462356283,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":159},"dur":244,"tdur":244,"tts":2676575},
-{"pid":27369,"tid":27369,"ts":326462356314,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2676606},
-{"pid":27369,"tid":27369,"ts":326462356314,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2676606},
-{"pid":27369,"tid":27369,"ts":326462356344,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2676636},
-{"pid":27369,"tid":27369,"ts":326462356375,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2676667,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462356375,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2676697},
-{"pid":27369,"tid":27369,"ts":326462356527,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2676819},
-{"pid":27369,"tid":27369,"ts":326462356527,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":428,"tdur":397,"tts":2676850},
-{"pid":27369,"tid":27369,"ts":326462356558,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2676850},
-{"pid":27369,"tid":27369,"ts":326462356589,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":335,"tdur":336,"tts":2676880},
-{"pid":27369,"tid":27369,"ts":326462356589,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2676880},
-{"pid":27369,"tid":27369,"ts":326462356650,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":244,"tdur":245,"tts":2676941},
-{"pid":27369,"tid":27369,"ts":326462356924,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2677216,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462356985,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":122,"tts":2677277},
-{"pid":27369,"tid":27369,"ts":326462357016,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":7558},"dur":61,"tdur":61,"tts":2677308},
-{"pid":27369,"tid":27369,"ts":326462357016,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2677308},
-{"pid":27369,"tid":27369,"ts":326462357046,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2677338,"id":"0xaf8a6fe4febbc614"},
-{"pid":27369,"tid":27369,"ts":326462357077,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2677369},
-{"pid":27369,"tid":27407,"ts":326462343953,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1929925,"id":"0xccc64202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462344014,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1929986,"id":"0xaf8a61d5feb47934"},
-{"pid":27369,"tid":27407,"ts":326462355063,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1930199,"id":"0xaf8a6feafebbc614"},
-{"pid":27369,"tid":27407,"ts":326462355093,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":92,"tts":1930260},
-{"pid":27369,"tid":27407,"ts":326462355124,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1930291,"id":"0xba46eb02"},
-{"pid":27369,"tid":27407,"ts":326462356253,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1930444,"id":"0xaf8a6febfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462356283,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1930474},
-{"pid":27369,"tid":27407,"ts":326462356283,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1930474,"id":"0xba46ec02"},
-{"pid":27369,"tid":27407,"ts":326462357107,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1930627,"id":"0xaf8a6fe4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462357107,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1930627},
-{"pid":27369,"tid":27407,"ts":326462357107,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1930657,"id":"0xba46ed02"},
-{"pid":27369,"tid":27407,"ts":326462358298,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":152,"tdur":152,"tts":1930749},
-{"pid":27369,"tid":27407,"ts":326462358328,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1930779},
-{"pid":27369,"tid":27407,"ts":326462358328,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1930779,"id":"0xc4c24f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462358359,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1930810,"id":"0xaf8a61d7feb47934"},
-{"pid":27369,"tid":27407,"ts":326462360831,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1930993},
-{"pid":27369,"tid":27407,"ts":326462360892,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1931054},
-{"pid":27369,"tid":27407,"ts":326462360892,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1931054,"id":"0xccc64402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462360922,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1931084,"id":"0xaf8a61d0feb47934"},
-{"pid":27369,"tid":27407,"ts":326462372032,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1931268,"id":"0xaf8a6fe5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462372062,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1931298},
-{"pid":27369,"tid":27407,"ts":326462372062,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1931298,"id":"0xba46ee02"},
-{"pid":27369,"tid":27407,"ts":326462375023,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":122,"tdur":122,"tts":1931451},
-{"pid":27369,"tid":27407,"ts":326462375053,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1931481},
-{"pid":27369,"tid":27407,"ts":326462375053,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1931481,"id":"0xc4c25202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462375084,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1931512,"id":"0xaf8a61d2feb47934"},
-{"pid":27369,"tid":27407,"ts":326462375206,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1931664,"id":"0xaf8a6fe6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462375236,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":62,"tdur":61,"tts":1931664},
-{"pid":27369,"tid":27407,"ts":326462375236,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1931664,"id":"0xba46ef02"},
-{"pid":27369,"tid":27407,"ts":326462376793,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1931817,"id":"0xaf8a6fe7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462376793,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1931817},
-{"pid":27369,"tid":27407,"ts":326462376824,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1931847,"id":"0xba46f002"},
-{"pid":27369,"tid":27407,"ts":326462377709,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":183,"tts":1931939},
-{"pid":27369,"tid":27407,"ts":326462377770,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":122,"tts":1932000},
-{"pid":27369,"tid":27407,"ts":326462377770,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1932000,"id":"0xccc64602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462377800,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1932031,"id":"0xaf8a61d3feb47934"},
-{"pid":27369,"tid":27407,"ts":326462388452,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1932214,"id":"0xaf8a6fe0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462388452,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":31,"tts":1932244},
-{"pid":27369,"tid":27407,"ts":326462388482,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1932244,"id":"0xba46f102"},
-{"pid":27369,"tid":27407,"ts":326462390527,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1932366,"id":"0xaf8a6fe1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462390527,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1932366},
-{"pid":27369,"tid":27407,"ts":326462390558,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1932397,"id":"0xba46f202"},
-{"pid":27369,"tid":27407,"ts":326462391199,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1932519,"id":"0xaf8a6fe2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462391199,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1932519},
-{"pid":27369,"tid":27407,"ts":326462391229,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1932549,"id":"0xba46f302"},
-{"pid":27369,"tid":27407,"ts":326462391717,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1932672},
-{"pid":27369,"tid":27407,"ts":326462391748,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":92,"tdur":92,"tts":1932702},
-{"pid":27369,"tid":27407,"ts":326462391748,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1932702,"id":"0xc4c25502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462391779,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1932733,"id":"0xaf8a61edfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462394647,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":183,"tts":1932885},
-{"pid":27369,"tid":27407,"ts":326462394708,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":123,"tdur":122,"tts":1932946},
-{"pid":27369,"tid":27407,"ts":326462394708,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1932946,"id":"0xccc64802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462394739,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1932977,"id":"0xaf8a61eefeb47934"},
-{"pid":27369,"tid":27407,"ts":326462405207,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1933190,"id":"0xaf8a6fe3febbc614"},
-{"pid":27369,"tid":27407,"ts":326462405238,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":91,"tts":1933221},
-{"pid":27369,"tid":27407,"ts":326462405238,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1933251,"id":"0xba46f402"},
-{"pid":27369,"tid":27407,"ts":326462406520,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1933465,"id":"0xaf8a6ffcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462406520,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":91,"tdur":92,"tts":1933465},
-{"pid":27369,"tid":27407,"ts":326462406550,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1933496,"id":"0xba46f502"},
-{"pid":27369,"tid":27407,"ts":326462407710,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1933648,"id":"0xaf8a6ffdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462407741,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":1933679},
-{"pid":27369,"tid":27407,"ts":326462407741,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1933679,"id":"0xba46f602"},
-{"pid":27369,"tid":27407,"ts":326462408412,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":153,"tdur":152,"tts":1933801},
-{"pid":27369,"tid":27407,"ts":326462408443,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":122,"tdur":122,"tts":1933831},
-{"pid":27369,"tid":27369,"ts":326462357107,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2677399},
-{"pid":27369,"tid":27369,"ts":326462357229,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2677521},
-{"pid":27369,"tid":27369,"ts":326462358511,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2677674},
-{"pid":27369,"tid":27369,"ts":326462358542,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2677704,"id":"0xaf8a61d7feb47934"},
-{"pid":27369,"tid":27369,"ts":326462358542,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2677704},
-{"pid":27369,"tid":27369,"ts":326462358572,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2677735},
-{"pid":27369,"tid":27369,"ts":326462358572,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2677735},
-{"pid":27369,"tid":27369,"ts":326462358664,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2677826},
-{"pid":27369,"tid":27369,"ts":326462361106,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2677979},
-{"pid":27369,"tid":27369,"ts":326462361136,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2678010,"id":"0xaf8a61d0feb47934"},
-{"pid":27369,"tid":27369,"ts":326462361136,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":335,"tts":2678010},
-{"pid":27369,"tid":27369,"ts":326462361136,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":336,"tdur":335,"tts":2678010},
-{"pid":27369,"tid":27369,"ts":326462361197,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":275,"tdur":274,"tts":2678071},
-{"pid":27369,"tid":27369,"ts":326462361350,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":0,"tdur":0,"tts":2678223},
-{"pid":27369,"tid":27369,"ts":326462361411,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2678284},
-{"pid":27369,"tid":27369,"ts":326462361441,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2678315},
-{"pid":27369,"tid":27369,"ts":326462361533,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2678406},
-{"pid":27369,"tid":27369,"ts":326462371666,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2678925},
-{"pid":27369,"tid":27369,"ts":326462371757,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2679017},
-{"pid":27369,"tid":27369,"ts":326462371849,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":1343,"tdur":519,"tts":2679108},
-{"pid":27369,"tid":27369,"ts":326462371849,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462370964},"dur":183,"tdur":152,"tts":2679139},
-{"pid":27369,"tid":27369,"ts":326462371910,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":122,"tdur":122,"tts":2679169},
-{"pid":27369,"tid":27369,"ts":326462371940,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2679200,"id":"0xaf8a6fe5febbc614"},
-{"pid":27369,"tid":27369,"ts":326462373222,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":153,"tdur":152,"tts":2679658},
-{"pid":27369,"tid":27369,"ts":326462373283,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2679719,"id":"0xaf8a61d1feb47934"},
-{"pid":27369,"tid":27369,"ts":326462373405,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2679841},
-{"pid":27369,"tid":27369,"ts":326462373649,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2680085},
-{"pid":27369,"tid":27369,"ts":326462373894,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2680329},
-{"pid":27369,"tid":27369,"ts":326462373955,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2680390,"id":"0xaf8a61d1feb47934"},
-{"pid":27369,"tid":27369,"ts":326462373985,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2961,"tdur":2960,"tts":2680421},
-{"pid":27369,"tid":27369,"ts":326462374016,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2680451},
-{"pid":27369,"tid":27369,"ts":326462374046,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2839,"tdur":2838,"tts":2680482},
-{"pid":27369,"tid":27369,"ts":326462374077,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":160},"dur":122,"tdur":122,"tts":2680512},
-{"pid":27369,"tid":27369,"ts":326462374107,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":92,"tdur":91,"tts":2680543},
-{"pid":27369,"tid":27369,"ts":326462374229,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":519,"tdur":519,"tts":2680665},
-{"pid":27369,"tid":27369,"ts":326462374260,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":30,"tdur":31,"tts":2680695},
-{"pid":27369,"tid":27369,"ts":326462374290,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":31,"tdur":0,"tts":2680726},
-{"pid":27369,"tid":27369,"ts":326462374321,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":366,"tdur":336,"tts":2680787},
-{"pid":27369,"tid":27369,"ts":326462374718,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2681153},
-{"pid":27369,"tid":27369,"ts":326462374779,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":0,"tts":2681214},
-{"pid":27369,"tid":27369,"ts":326462374809,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":275,"tdur":244,"tts":2681245},
-{"pid":27369,"tid":27369,"ts":326462374840,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":160},"dur":61,"tdur":61,"tts":2681275},
-{"pid":27369,"tid":27369,"ts":326462374931,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":160},"dur":31,"tdur":30,"tts":2681367},
-{"pid":27369,"tid":27369,"ts":326462374962,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":160},"tts":2681397},
-{"pid":27369,"tid":27369,"ts":326462374992,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2681428},
-{"pid":27369,"tid":27369,"ts":326462375023,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2681458},
-{"pid":27369,"tid":27369,"ts":326462375053,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2681489},
-{"pid":27369,"tid":27369,"ts":326462375114,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":91,"tts":2681550},
-{"pid":27369,"tid":27369,"ts":326462375145,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2681580,"id":"0xaf8a6fe6febbc614"},
-{"pid":27369,"tid":27369,"ts":326462375267,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1618,"tdur":1587,"tts":2681733},
-{"pid":27369,"tid":27369,"ts":326462375328,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":160},"dur":488,"tdur":457,"tts":2681764},
-{"pid":27369,"tid":27369,"ts":326462375359,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":91,"tdur":92,"tts":2681794},
-{"pid":27369,"tid":27369,"ts":326462375359,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":30,"tts":2681825},
-{"pid":27369,"tid":27369,"ts":326462375389,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":31,"tdur":30,"tts":2681825},
-{"pid":27369,"tid":27369,"ts":326462375420,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2681886,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462375481,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2681916},
-{"pid":27369,"tid":27369,"ts":326462375786,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2682221},
-{"pid":27369,"tid":27369,"ts":326462375816,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":672,"tdur":671,"tts":2682252},
-{"pid":27369,"tid":27369,"ts":326462375847,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2682282},
-{"pid":27369,"tid":27369,"ts":326462375877,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":550,"tdur":549,"tts":2682313},
-{"pid":27369,"tid":27369,"ts":326462375908,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2682343},
-{"pid":27369,"tid":27369,"ts":326462375969,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":427,"tdur":428,"tts":2682404},
-{"pid":27369,"tid":27369,"ts":326462376457,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2682923,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462376579,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":275,"tdur":275,"tts":2683015},
-{"pid":27369,"tid":27369,"ts":326462376610,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":9920},"dur":152,"tdur":153,"tts":2683045},
-{"pid":27369,"tid":27369,"ts":326462376640,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":122,"tdur":122,"tts":2683076},
-{"pid":27369,"tid":27369,"ts":326462376671,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2683137,"id":"0xaf8a6fe7febbc614"},
-{"pid":27369,"tid":27369,"ts":326462376793,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":61,"tdur":61,"tts":2683229},
-{"pid":27369,"tid":27369,"ts":326462376824,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2683259},
-{"pid":27369,"tid":27369,"ts":326462377098,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2683534},
-{"pid":27369,"tid":27369,"ts":326462377281,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2683717},
-{"pid":27369,"tid":27369,"ts":326462377312,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2683747,"id":"0xaf8a61d2feb47934"},
-{"pid":27369,"tid":27369,"ts":326462377342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":122,"tdur":122,"tts":2683778},
-{"pid":27369,"tid":27369,"ts":326462377373,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2683808},
-{"pid":27369,"tid":27369,"ts":326462377403,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2683839},
-{"pid":27369,"tid":27369,"ts":326462377617,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2684053},
-{"pid":27369,"tid":27369,"ts":326462377953,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2684236},
-{"pid":27369,"tid":27369,"ts":326462377983,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2684266,"id":"0xaf8a61d3feb47934"},
-{"pid":27369,"tid":27369,"ts":326462377983,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":336,"tdur":336,"tts":2684266},
-{"pid":27369,"tid":27369,"ts":326462377983,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":336,"tdur":305,"tts":2684297},
-{"pid":27369,"tid":27369,"ts":326462378044,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":245,"tdur":244,"tts":2684327},
-{"pid":27369,"tid":27369,"ts":326462378166,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":0,"tts":2684480},
-{"pid":27369,"tid":27369,"ts":326462378227,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2684541},
-{"pid":27369,"tid":27369,"ts":326462378289,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2684571},
-{"pid":27369,"tid":27369,"ts":326462378380,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2684663},
-{"pid":27369,"tid":27369,"ts":326462388208,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2684968},
-{"pid":27369,"tid":27369,"ts":326462388238,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2685029},
-{"pid":27369,"tid":27369,"ts":326462388299,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":519,"tdur":213,"tts":2685060},
-{"pid":27369,"tid":27369,"ts":326462388330,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462387645},"dur":91,"tdur":92,"tts":2685090},
-{"pid":27369,"tid":27369,"ts":326462388360,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2685121},
-{"pid":27369,"tid":27369,"ts":326462388360,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2685121,"id":"0xaf8a6fe0febbc614"},
-{"pid":27369,"tid":27369,"ts":326462388818,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":92,"tdur":92,"tts":2685273},
-{"pid":27369,"tid":27369,"ts":326462388849,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2685304,"id":"0xaf8a61ecfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462388940,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2685395},
-{"pid":27369,"tid":27369,"ts":326462389062,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2685518},
-{"pid":27369,"tid":27369,"ts":326462389184,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2685640},
-{"pid":27369,"tid":27369,"ts":326462389215,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2685670,"id":"0xaf8a61ecfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462389215,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2045,"tdur":1526,"tts":2685670},
-{"pid":27369,"tid":27369,"ts":326462389215,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":31,"tts":2685670},
-{"pid":27369,"tid":27369,"ts":326462389245,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1984,"tdur":1465,"tts":2685701},
-{"pid":27369,"tid":27369,"ts":326462389276,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":161},"dur":61,"tdur":61,"tts":2685731},
-{"pid":27369,"tid":27369,"ts":326462389276,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2685731},
-{"pid":27369,"tid":27369,"ts":326462389337,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":549,"tdur":336,"tts":2685792},
-{"pid":27369,"tid":27369,"ts":326462389367,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2685823},
-{"pid":27369,"tid":27369,"ts":326462389367,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2685823},
-{"pid":27369,"tid":27369,"ts":326462389398,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":458,"tdur":244,"tts":2685853},
-{"pid":27369,"tid":27369,"ts":326462389856,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":0,"tts":2686128},
-{"pid":27369,"tid":27369,"ts":326462389917,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2686158},
-{"pid":27369,"tid":27369,"ts":326462389917,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":488,"tdur":184,"tts":2686158},
-{"pid":27369,"tid":27369,"ts":326462389917,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":161},"dur":61,"tdur":31,"tts":2686189},
-{"pid":27369,"tid":27369,"ts":326462389978,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":161},"dur":61,"tdur":61,"tts":2686220},
-{"pid":27369,"tid":27369,"ts":326462390069,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":161},"tts":2686281},
-{"pid":27369,"tid":27369,"ts":326462390069,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":306,"tdur":30,"tts":2686281},
-{"pid":27369,"tid":27369,"ts":326462390375,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2686311},
-{"pid":27369,"tid":27369,"ts":326462390375,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":31,"tts":2686311},
-{"pid":27369,"tid":27369,"ts":326462390405,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2686342},
-{"pid":27369,"tid":27369,"ts":326462390436,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2686372},
-{"pid":27369,"tid":27369,"ts":326462390436,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2686372,"id":"0xaf8a6fe1febbc614"},
-{"pid":27369,"tid":27369,"ts":326462390527,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":702,"tdur":702,"tts":2686464},
-{"pid":27369,"tid":27369,"ts":326462390558,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":161},"dur":183,"tdur":183,"tts":2686494},
-{"pid":27369,"tid":27369,"ts":326462390558,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2686494},
-{"pid":27369,"tid":27369,"ts":326462390558,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2686494},
-{"pid":27369,"tid":27369,"ts":326462390588,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2686525},
-{"pid":27369,"tid":27369,"ts":326462390588,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2686525,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462390619,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2686555},
-{"pid":27369,"tid":27369,"ts":326462390710,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2686647},
-{"pid":27369,"tid":27369,"ts":326462390741,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":305,"tdur":306,"tts":2686677},
-{"pid":27369,"tid":27369,"ts":326462390741,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2686677},
-{"pid":27369,"tid":27369,"ts":326462390771,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":245,"tdur":244,"tts":2686708},
-{"pid":27369,"tid":27369,"ts":326462390802,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2686738},
-{"pid":27369,"tid":27369,"ts":326462390832,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":153,"tdur":153,"tts":2686769},
-{"pid":27369,"tid":27369,"ts":326462391016,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2686952,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462391077,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":122,"tdur":122,"tts":2687013},
-{"pid":27369,"tid":27369,"ts":326462391107,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":12282},"dur":61,"tdur":61,"tts":2687044},
-{"pid":27369,"tid":27369,"ts":326462391107,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2687044},
-{"pid":27369,"tid":27369,"ts":326462391138,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2687074,"id":"0xaf8a6fe2febbc614"},
-{"pid":27369,"tid":27369,"ts":326462391168,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2687105},
-{"pid":27369,"tid":27369,"ts":326462391199,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2687135},
-{"pid":27369,"tid":27369,"ts":326462391412,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2687318},
-{"pid":27369,"tid":27369,"ts":326462391931,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2687471},
-{"pid":27369,"tid":27369,"ts":326462391962,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2687501,"id":"0xaf8a61edfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462391962,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2687501},
-{"pid":27369,"tid":27369,"ts":326462391962,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2687501},
-{"pid":27369,"tid":27369,"ts":326462391992,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2687532},
-{"pid":27369,"tid":27369,"ts":326462392084,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2687654},
-{"pid":27369,"tid":27369,"ts":326462394922,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2687807},
-{"pid":27369,"tid":27369,"ts":326462394922,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2687837,"id":"0xaf8a61eefeb47934"},
-{"pid":27369,"tid":27369,"ts":326462394953,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":335,"tdur":336,"tts":2687837},
-{"pid":27369,"tid":27369,"ts":326462394953,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":335,"tdur":336,"tts":2687837},
-{"pid":27369,"tid":27369,"ts":326462394983,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":275,"tts":2687898},
-{"pid":27369,"tid":27369,"ts":326462395136,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":31,"tts":2688020},
-{"pid":27369,"tid":27369,"ts":326462395197,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2688112},
-{"pid":27369,"tid":27369,"ts":326462395258,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2688142},
-{"pid":27369,"tid":27369,"ts":326462395349,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2688234},
-{"pid":27369,"tid":27369,"ts":326462404902,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2688631},
-{"pid":27369,"tid":27369,"ts":326462404963,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2688661},
-{"pid":27369,"tid":27369,"ts":326462405024,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":275,"tdur":275,"tts":2688722},
-{"pid":27369,"tid":27369,"ts":326462405055,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462404327},"dur":122,"tdur":122,"tts":2688753},
-{"pid":27369,"tid":27369,"ts":326462405085,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":61,"tts":2688783},
-{"pid":27369,"tid":27369,"ts":326462405116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2688814,"id":"0xaf8a6fe3febbc614"},
-{"pid":27369,"tid":27369,"ts":326462405299,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2688997},
-{"pid":27369,"tid":27369,"ts":326462405330,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2689027,"id":"0xaf8a61effeb47934"},
-{"pid":27369,"tid":27369,"ts":326462405391,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2689088},
-{"pid":27369,"tid":27369,"ts":326462405513,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2689211},
-{"pid":27369,"tid":27369,"ts":326462405635,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2689333},
-{"pid":27369,"tid":27369,"ts":326462405665,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2689363,"id":"0xaf8a61effeb47934"},
-{"pid":27369,"tid":27369,"ts":326462405696,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2106,"tdur":1861,"tts":2689394},
-{"pid":27369,"tid":27369,"ts":326462405696,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":30,"tts":2689394},
-{"pid":27369,"tid":27369,"ts":326462405726,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2045,"tdur":1770,"tts":2689455},
-{"pid":27369,"tid":27369,"ts":326462405787,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":162},"dur":92,"tdur":92,"tts":2689485},
-{"pid":27369,"tid":27369,"ts":326462405818,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":30,"tts":2689516},
-{"pid":27369,"tid":27369,"ts":326462405879,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":2689577},
-{"pid":27369,"tid":27369,"ts":326462405909,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2689607},
-{"pid":27369,"tid":27369,"ts":326462405940,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2689638},
-{"pid":27369,"tid":27369,"ts":326462405970,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":2689668},
-{"pid":27369,"tid":27369,"ts":326462406184,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2689882},
-{"pid":27369,"tid":27369,"ts":326462406215,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":2689912},
-{"pid":27369,"tid":27369,"ts":326462406245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":122,"tdur":122,"tts":2689943},
-{"pid":27369,"tid":27369,"ts":326462406245,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":162},"dur":61,"tdur":61,"tts":2689943},
-{"pid":27369,"tid":27369,"ts":326462406306,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":162},"dur":31,"tdur":0,"tts":2690004},
-{"pid":27369,"tid":27369,"ts":326462406337,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":162},"tts":2690035},
-{"pid":27369,"tid":27369,"ts":326462406337,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2690035},
-{"pid":27369,"tid":27369,"ts":326462406337,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":30,"tdur":30,"tts":2690035},
-{"pid":27369,"tid":27369,"ts":326462406367,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2690065},
-{"pid":27369,"tid":27369,"ts":326462406398,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2690096},
-{"pid":27369,"tid":27369,"ts":326462406398,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2690126,"id":"0xaf8a6ffcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462406520,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1221,"tdur":976,"tts":2690218},
-{"pid":27369,"tid":27369,"ts":326462406520,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":162},"dur":244,"tdur":214,"tts":2690248},
-{"pid":27369,"tid":27369,"ts":326462406550,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2690248},
-{"pid":27369,"tid":27369,"ts":326462406550,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":31,"tts":2690248},
-{"pid":27369,"tid":27369,"ts":326462406581,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2690279},
-{"pid":27369,"tid":27369,"ts":326462406611,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2690309,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462406642,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2690340},
-{"pid":27369,"tid":27369,"ts":326462406764,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2690462},
-{"pid":27369,"tid":27369,"ts":326462406795,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":763,"tdur":519,"tts":2690492},
-{"pid":27369,"tid":27369,"ts":326462406795,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":31,"tts":2690492},
-{"pid":27369,"tid":27369,"ts":326462406825,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":702,"tdur":458,"tts":2690523},
-{"pid":27369,"tid":27369,"ts":326462406856,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2690553},
-{"pid":27369,"tid":27369,"ts":326462406886,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":611,"tdur":366,"tts":2690584},
-{"pid":27369,"tid":27369,"ts":326462407527,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2690981,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462407588,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2691042},
-{"pid":27369,"tid":27369,"ts":326462407619,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":14644},"dur":91,"tdur":61,"tts":2691072},
-{"pid":27369,"tid":27369,"ts":326462407619,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2691072},
-{"pid":27369,"tid":27369,"ts":326462407649,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2691103,"id":"0xaf8a6ffdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462407710,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2691164},
-{"pid":27369,"tid":27369,"ts":326462407710,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2691164},
-{"pid":27369,"tid":27369,"ts":326462407893,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2691347},
-{"pid":27369,"tid":27369,"ts":326462408656,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2691530},
-{"pid":27369,"tid":27369,"ts":326462408687,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2691561,"id":"0xaf8a61e8feb47934"},
-{"pid":27369,"tid":27369,"ts":326462408687,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":61,"tts":2691561},
-{"pid":27369,"tid":27369,"ts":326462408717,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":31,"tts":2691591},
-{"pid":27369,"tid":27369,"ts":326462408717,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2691591},
-{"pid":27369,"tid":27369,"ts":326462408839,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2691713},
-{"pid":27369,"tid":27369,"ts":326462410640,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2691896},
-{"pid":27369,"tid":27369,"ts":326462410640,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2691896,"id":"0xaf8a61e9feb47934"},
-{"pid":27369,"tid":27369,"ts":326462410671,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":366,"tts":2691927},
-{"pid":27369,"tid":27369,"ts":326462410671,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":366,"tdur":366,"tts":2691927},
-{"pid":27369,"tid":27369,"ts":326462410732,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":305,"tts":2691988},
-{"pid":27369,"tid":27369,"ts":326462410884,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":31,"tts":2692140},
-{"pid":27369,"tid":27369,"ts":326462410945,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2692202},
-{"pid":27369,"tid":27369,"ts":326462411006,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2692263},
-{"pid":27369,"tid":27369,"ts":326462411098,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2692354},
-{"pid":27369,"tid":27369,"ts":326462421688,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2692751},
-{"pid":27369,"tid":27369,"ts":326462421750,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2692842},
-{"pid":27369,"tid":27369,"ts":326462421811,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":427,"tdur":305,"tts":2692873},
-{"pid":27369,"tid":27369,"ts":326462421841,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462421008},"dur":122,"tdur":123,"tts":2692903},
-{"pid":27369,"tid":27369,"ts":326462421872,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2692934},
-{"pid":27369,"tid":27369,"ts":326462421902,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2692965,"id":"0xaf8a6ffefebbc614"},
-{"pid":27369,"tid":27369,"ts":326462422238,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":91,"tdur":92,"tts":2693178},
-{"pid":27369,"tid":27369,"ts":326462422268,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2693209,"id":"0xaf8a61eafeb47934"},
-{"pid":27369,"tid":27369,"ts":326462422360,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2693300},
-{"pid":27369,"tid":27369,"ts":326462422360,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2693300},
-{"pid":27369,"tid":27369,"ts":326462422574,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2693483},
-{"pid":27369,"tid":27369,"ts":326462422696,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2693605},
-{"pid":27369,"tid":27369,"ts":326462422726,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2693636,"id":"0xaf8a61eafeb47934"},
-{"pid":27369,"tid":27369,"ts":326462422726,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1770,"tdur":1770,"tts":2693636},
-{"pid":27369,"tid":27369,"ts":326462422757,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2693667},
-{"pid":27369,"tid":27369,"ts":326462422757,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1709,"tdur":1709,"tts":2693667},
-{"pid":27369,"tid":27369,"ts":326462422787,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":163},"dur":92,"tdur":92,"tts":2693697},
-{"pid":27369,"tid":27369,"ts":326462422818,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2693728},
-{"pid":27369,"tid":27369,"ts":326462422879,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":335,"tts":2693789},
-{"pid":27369,"tid":27369,"ts":326462422909,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2693819},
-{"pid":27369,"tid":27369,"ts":326462422940,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2693850},
-{"pid":27369,"tid":27369,"ts":326462422970,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":214,"tts":2693880},
-{"pid":27369,"tid":27369,"ts":326462423184,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2694094},
-{"pid":27369,"tid":27369,"ts":326462423245,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2694155},
-{"pid":27369,"tid":27369,"ts":326462423245,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":183,"tdur":183,"tts":2694155},
-{"pid":27369,"tid":27369,"ts":326462423276,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":163},"dur":61,"tdur":31,"tts":2694185},
-{"pid":27369,"tid":27369,"ts":326462423337,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":163},"dur":30,"tdur":31,"tts":2694246},
-{"pid":27369,"tid":27369,"ts":326462423367,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":163},"tts":2694277},
-{"pid":27369,"tid":27369,"ts":326462423367,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2694307},
-{"pid":27369,"tid":27369,"ts":326462423398,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2694307},
-{"pid":27369,"tid":27369,"ts":326462423428,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2694338},
-{"pid":27369,"tid":27369,"ts":326462423459,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":62,"tts":2694368},
-{"pid":27369,"tid":27369,"ts":326462423489,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2694399,"id":"0xaf8a6ffffebbc614"},
-{"pid":27369,"tid":27369,"ts":326462423581,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":885,"tdur":885,"tts":2694491},
-{"pid":27369,"tid":27407,"ts":326462408443,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1933831,"id":"0xc4c25802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462408473,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1933862,"id":"0xaf8a61e8feb47934"},
-{"pid":27369,"tid":27407,"ts":326462410335,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":214,"tts":1934014},
-{"pid":27369,"tid":27407,"ts":326462410396,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":122,"tdur":123,"tts":1934075},
-{"pid":27369,"tid":27407,"ts":326462410396,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1934075,"id":"0xccc64a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462410426,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1934106,"id":"0xaf8a61e9feb47934"},
-{"pid":27369,"tid":27407,"ts":326462421994,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1934320,"id":"0xaf8a6ffefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462422024,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1934350},
-{"pid":27369,"tid":27407,"ts":326462422024,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1934381,"id":"0xba46f702"},
-{"pid":27369,"tid":27407,"ts":326462423581,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1934564,"id":"0xaf8a6ffffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462423611,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1934594},
-{"pid":27369,"tid":27407,"ts":326462423611,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1934594,"id":"0xba46f802"},
-{"pid":27369,"tid":27407,"ts":326462424435,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1934777,"id":"0xaf8a6ff8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462424435,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1934777},
-{"pid":27369,"tid":27407,"ts":326462424466,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1934808,"id":"0xba46f902"},
-{"pid":27369,"tid":27407,"ts":326462425534,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":214,"tdur":214,"tts":1934930},
-{"pid":27369,"tid":27407,"ts":326462425595,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":153,"tdur":153,"tts":1934991},
-{"pid":27369,"tid":27407,"ts":326462425595,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1934991,"id":"0xc4c25b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462425626,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1935022,"id":"0xaf8a61ebfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462429105,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":214,"tdur":213,"tts":1935266},
-{"pid":27369,"tid":27407,"ts":326462429166,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":153,"tdur":122,"tts":1935327},
-{"pid":27369,"tid":27407,"ts":326462429166,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1935327,"id":"0xccc64c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462429196,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1935357,"id":"0xaf8a61e4feb47934"},
-{"pid":27369,"tid":27407,"ts":326462430753,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":152,"tts":1935602},
-{"pid":27369,"tid":27407,"ts":326462430784,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":122,"tdur":122,"tts":1935632},
-{"pid":27369,"tid":27407,"ts":326462430784,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1935632,"id":"0xccc64d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462430814,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1935663,"id":"0xaf8a61e5feb47934"},
-{"pid":27369,"tid":27407,"ts":326462438627,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1935876,"id":"0xaf8a6ff9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462438627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":92,"tdur":92,"tts":1935876},
-{"pid":27369,"tid":27407,"ts":326462438658,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1935907,"id":"0xba46fa02"},
-{"pid":27369,"tid":27407,"ts":326462440733,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1936151,"id":"0xaf8a6ffafebbc614"},
-{"pid":27369,"tid":27407,"ts":326462440764,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":274,"tdur":214,"tts":1936212},
-{"pid":27369,"tid":27407,"ts":326462440794,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1936242,"id":"0xba46fb02"},
-{"pid":27369,"tid":27407,"ts":326462441832,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1936578,"id":"0xaf8a6ffbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462441862,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":123,"tdur":122,"tts":1936609},
-{"pid":27369,"tid":27407,"ts":326462441893,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1936639,"id":"0xba46fc02"},
-{"pid":27369,"tid":27407,"ts":326462442046,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":335,"tdur":336,"tts":1936792},
-{"pid":27369,"tid":27407,"ts":326462442107,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":244,"tdur":244,"tts":1936853},
-{"pid":27369,"tid":27407,"ts":326462442137,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1936883,"id":"0xc4c25e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462442168,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1936944,"id":"0xaf8a61e7feb47934"},
-{"pid":27369,"tid":27407,"ts":326462442717,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":10530,"tdur":10408,"tts":1937280},
-{"pid":27369,"tid":27407,"ts":326462442870,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":43}},"tts":1937402,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462443022,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":22}},"tts":1937555,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462443297,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1937829,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462443785,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-disposition: attachment","content-encoding: gzip","content-length: 5503","content-type: text/javascript; charset=UTF-8","date: Mon, 22 Jun 2015 18:11:31 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":27}},"tts":1938348,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462444487,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","alternate-protocol: 443:quic,p=1","cache-control: no-cache, must-revalidate","content-disposition: attachment","content-encoding: gzip","content-length: 5503","content-type: text/javascript; charset=UTF-8","date: Mon, 22 Jun 2015 18:11:31 GMT","expires: Fri, 01 Jan 1990 00:00:00 GMT","pragma: no-cache","server: mafe","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1939020,"id":"0x22b"},{"pid":27369,"tid":27407,"ts":326462444640,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1939172,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462444731,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1939264,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445006,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3628,"index":0,"offset":0,"truncate":true}},"tts":1939539,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445159,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1939691,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445189,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1939752,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445250,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1939813,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445311,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1939844,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445403,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1939935,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445433,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1939996,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445494,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1940027,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445555,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1940088,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445586,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1940149,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445677,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1940210,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462445708,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1940271,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445800,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1940332,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462445830,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1940363,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462446105,"ph":"n","cat":"netlog","name":"URL_REQUEST_FILTERS_SET","args":{"source_type":"URL_REQUEST","params":{"filters":"FILTER_TYPE_GZIP"}},"tts":1940668,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462446166,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1940698,"id":"0x22b"},
-{"pid":27369,"tid":27369,"ts":326462423611,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":163},"dur":244,"tdur":244,"tts":2694521},
-{"pid":27369,"tid":27369,"ts":326462423642,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2694552},
-{"pid":27369,"tid":27369,"ts":326462423642,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":30,"tts":2694552},
-{"pid":27369,"tid":27369,"ts":326462423672,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2694582},
-{"pid":27369,"tid":27369,"ts":326462423703,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2694613,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462423733,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2694643},
-{"pid":27369,"tid":27369,"ts":326462423855,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2694765},
-{"pid":27369,"tid":27369,"ts":326462423855,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":367,"tdur":366,"tts":2694765},
-{"pid":27369,"tid":27369,"ts":326462423886,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2694796},
-{"pid":27369,"tid":27369,"ts":326462423886,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2694796},
-{"pid":27369,"tid":27369,"ts":326462423916,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":31,"tdur":31,"tts":2694826},
-{"pid":27369,"tid":27369,"ts":326462423947,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":214,"tdur":183,"tts":2694887},
-{"pid":27369,"tid":27369,"ts":326462424222,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2695131,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462424283,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":183,"tdur":152,"tts":2695193},
-{"pid":27369,"tid":27369,"ts":326462424313,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":622},"dur":92,"tdur":92,"tts":2695223},
-{"pid":27369,"tid":27369,"ts":326462424344,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2695254},
-{"pid":27369,"tid":27369,"ts":326462424344,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2695254,"id":"0xaf8a6ff8febbc614"},
-{"pid":27369,"tid":27369,"ts":326462424405,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2695315},
-{"pid":27369,"tid":27369,"ts":326462424435,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2695345},
-{"pid":27369,"tid":27369,"ts":326462424588,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2695498},
-{"pid":27369,"tid":27369,"ts":326462425839,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2695711},
-{"pid":27369,"tid":27369,"ts":326462425870,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2695711,"id":"0xaf8a61ebfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462425900,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2695742},
-{"pid":27369,"tid":27369,"ts":326462425900,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":61,"tts":2695742},
-{"pid":27369,"tid":27369,"ts":326462425931,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2695772},
-{"pid":27369,"tid":27369,"ts":326462426022,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2695864},
-{"pid":27369,"tid":27369,"ts":326462429441,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2696078},
-{"pid":27369,"tid":27369,"ts":326462429441,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2696078,"id":"0xaf8a61e4feb47934"},
-{"pid":27369,"tid":27369,"ts":326462429471,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":366,"tdur":366,"tts":2696108},
-{"pid":27369,"tid":27369,"ts":326462429471,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":366,"tdur":366,"tts":2696108},
-{"pid":27369,"tid":27369,"ts":326462429532,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":305,"tdur":305,"tts":2696169},
-{"pid":27369,"tid":27369,"ts":326462429685,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":30,"tdur":30,"tts":2696322},
-{"pid":27369,"tid":27369,"ts":326462429776,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2696413},
-{"pid":27369,"tid":27369,"ts":326462429807,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2696444},
-{"pid":27369,"tid":27369,"ts":326462429929,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2696566},
-{"pid":27369,"tid":27369,"ts":326462430997,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2696749},
-{"pid":27369,"tid":27369,"ts":326462431028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2696780,"id":"0xaf8a61e5feb47934"},
-{"pid":27369,"tid":27369,"ts":326462431028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":91,"tdur":91,"tts":2696780},
-{"pid":27369,"tid":27369,"ts":326462431058,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":61,"tdur":61,"tts":2696810},
-{"pid":27369,"tid":27369,"ts":326462431211,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2696963},
-{"pid":27369,"tid":27369,"ts":326462438322,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2697298},
-{"pid":27369,"tid":27369,"ts":326462438383,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2697359},
-{"pid":27369,"tid":27369,"ts":326462438444,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2697421},
-{"pid":27369,"tid":27369,"ts":326462438475,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462437690},"dur":122,"tdur":92,"tts":2697451},
-{"pid":27369,"tid":27369,"ts":326462438475,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2697482},
-{"pid":27369,"tid":27369,"ts":326462438536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2697512,"id":"0xaf8a6ff9febbc614"},
-{"pid":27369,"tid":27369,"ts":326462438719,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":397,"tdur":122,"tts":2697665},
-{"pid":27369,"tid":27369,"ts":326462438719,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":244,"tdur":30,"tts":2697665},
-{"pid":27369,"tid":27369,"ts":326462438994,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2697726,"id":"0xaf8a61e6feb47934"},
-{"pid":27369,"tid":27369,"ts":326462439116,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2697817},
-{"pid":27369,"tid":27369,"ts":326462439268,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2697970},
-{"pid":27369,"tid":27369,"ts":326462439390,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2698092},
-{"pid":27369,"tid":27369,"ts":326462439390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2698092,"id":"0xaf8a61e6feb47934"},
-{"pid":27369,"tid":27369,"ts":326462439421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2441,"tdur":1984,"tts":2698122},
-{"pid":27369,"tid":27369,"ts":326462439451,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2698153},
-{"pid":27369,"tid":27369,"ts":326462439451,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2381,"tdur":1923,"tts":2698153},
-{"pid":27369,"tid":27369,"ts":326462439482,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":164},"dur":91,"tdur":91,"tts":2698184},
-{"pid":27369,"tid":27369,"ts":326462439512,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2698214},
-{"pid":27369,"tid":27369,"ts":326462439573,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":336,"tdur":336,"tts":2698275},
-{"pid":27369,"tid":27369,"ts":326462439604,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2698306},
-{"pid":27369,"tid":27369,"ts":326462439604,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":30,"tdur":30,"tts":2698306},
-{"pid":27369,"tid":27369,"ts":326462439634,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":245,"tdur":244,"tts":2698336},
-{"pid":27369,"tid":27369,"ts":326462439879,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2698580},
-{"pid":27369,"tid":27369,"ts":326462439909,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":31,"tdur":30,"tts":2698611},
-{"pid":27369,"tid":27369,"ts":326462439940,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":610,"tdur":214,"tts":2698641},
-{"pid":27369,"tid":27369,"ts":326462439970,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":164},"dur":61,"tdur":61,"tts":2698672},
-{"pid":27369,"tid":27369,"ts":326462440062,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":164},"dur":397,"tdur":31,"tts":2698763},
-{"pid":27369,"tid":27369,"ts":326462440062,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":0,"tts":2698763},
-{"pid":27369,"tid":27369,"ts":326462440459,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":164},"tts":2698794},
-{"pid":27369,"tid":27369,"ts":326462440459,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2698794},
-{"pid":27369,"tid":27369,"ts":326462440489,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2698824},
-{"pid":27369,"tid":27369,"ts":326462440489,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":31,"tdur":0,"tts":2698855},
-{"pid":27369,"tid":27369,"ts":326462440550,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2698885},
-{"pid":27369,"tid":27369,"ts":326462440581,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2698916,"id":"0xaf8a6ffafebbc614"},
-{"pid":27369,"tid":27369,"ts":326462440703,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1098,"tdur":1007,"tts":2699038},
-{"pid":27369,"tid":27369,"ts":326462440733,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":164},"dur":275,"tdur":274,"tts":2699069},
-{"pid":27369,"tid":27369,"ts":326462440733,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2699069},
-{"pid":27369,"tid":27369,"ts":326462440733,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":61,"tdur":31,"tts":2699099},
-{"pid":27369,"tid":27369,"ts":326462440764,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2699099},
-{"pid":27369,"tid":27369,"ts":326462440794,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2699130,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462440825,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2699160},
-{"pid":27369,"tid":27369,"ts":326462441008,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2699343},
-{"pid":27369,"tid":27369,"ts":326462441008,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":397,"tdur":397,"tts":2699343},
-{"pid":27369,"tid":27369,"ts":326462441038,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2699374},
-{"pid":27369,"tid":27369,"ts":326462441038,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":336,"tdur":336,"tts":2699374},
-{"pid":27369,"tid":27369,"ts":326462441069,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":30,"tdur":31,"tts":2699404},
-{"pid":27369,"tid":27369,"ts":326462441099,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":245,"tdur":244,"tts":2699435},
-{"pid":27369,"tid":27369,"ts":326462441405,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2699740,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462441588,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":213,"tdur":183,"tts":2699862},
-{"pid":27369,"tid":27369,"ts":326462441588,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2699862},
-{"pid":27369,"tid":27369,"ts":326462441679,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":2984},"dur":92,"tdur":92,"tts":2699923},
-{"pid":27369,"tid":27369,"ts":326462441679,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2699923},
-{"pid":27369,"tid":27369,"ts":326462441710,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2699954,"id":"0xaf8a6ffbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462441771,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":30,"tdur":30,"tts":2700015},
-{"pid":27369,"tid":27369,"ts":326462441771,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":30,"tdur":30,"tts":2700015},
-{"pid":27369,"tid":27369,"ts":326462441954,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2700198},
-{"pid":27369,"tid":27369,"ts":326462442442,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2700412},
-{"pid":27369,"tid":27369,"ts":326462442442,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2700412,"id":"0xaf8a61e7feb47934"},
-{"pid":27369,"tid":27369,"ts":326462442473,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2700442},
-{"pid":27369,"tid":27369,"ts":326462442473,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":30,"tdur":31,"tts":2700442},
-{"pid":27369,"tid":27369,"ts":326462442473,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":30,"tdur":0,"tts":2700473},
-{"pid":27369,"tid":27369,"ts":326462442748,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2700564},
-{"pid":27369,"tid":27369,"ts":326462447051,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2700778},
-{"pid":27369,"tid":27369,"ts":326462447081,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2700778,"id":"0xaf8a61e0feb47934"},
-{"pid":27369,"tid":27369,"ts":326462447081,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":336,"tdur":335,"tts":2700778},
-{"pid":27369,"tid":27369,"ts":326462447478,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2701175},
-{"pid":27369,"tid":27369,"ts":326462454162,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2701419},
-{"pid":27369,"tid":27369,"ts":326462454193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2701449,"id":"0xaf8a61e1feb47934"},
-{"pid":27369,"tid":27369,"ts":326462454193,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":824,"tdur":519,"tts":2701480},
-{"pid":27369,"tid":27369,"ts":326462454223,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":794,"tdur":519,"tts":2701480},
-{"pid":27369,"tid":27369,"ts":326462454284,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":702,"tdur":427,"tts":2701541},
-{"pid":27369,"tid":27369,"ts":326462454803,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":31,"tdur":30,"tts":2701785},
-{"pid":27369,"tid":27369,"ts":326462454895,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2701876},
-{"pid":27369,"tid":27369,"ts":326462454956,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2701938},
-{"pid":27369,"tid":27369,"ts":326462455230,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2702212},
-{"pid":27369,"tid":27369,"ts":326462455475,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2702456},
-{"pid":27369,"tid":27369,"ts":326462455536,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2702517},
-{"pid":27369,"tid":27369,"ts":326462455566,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":1923,"tdur":366,"tts":2702548},
-{"pid":27369,"tid":27369,"ts":326462455597,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462454371},"dur":91,"tdur":92,"tts":2702578},
-{"pid":27369,"tid":27369,"ts":326462455627,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2702609},
-{"pid":27369,"tid":27369,"ts":326462455658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2702639,"id":"0xaf8a6ff2febbc614"},
-{"pid":27369,"tid":27369,"ts":326462457489,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":122,"tdur":122,"tts":2702914},
-{"pid":27369,"tid":27369,"ts":326462457519,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2702945,"id":"0xaf8a61fcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462457611,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2703036},
-{"pid":27369,"tid":27369,"ts":326462457764,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2703189},
-{"pid":27369,"tid":27369,"ts":326462457886,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2703311},
-{"pid":27369,"tid":27369,"ts":326462457916,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2703341,"id":"0xaf8a61e2feb47934"},
-{"pid":27369,"tid":27369,"ts":326462457916,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":580,"tdur":519,"tts":2703341},
-{"pid":27369,"tid":27407,"ts":326462446227,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1940759,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462446227,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":366,"tdur":367,"tts":1940759},
-{"pid":27369,"tid":27407,"ts":326462446746,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1941309,"id":"0xaf8a61e0feb47934"},
-{"pid":27369,"tid":27407,"ts":326462447326,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1941858,"id":"0xba46fd02"},
-{"pid":27369,"tid":27407,"ts":326462447692,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1942224,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462447722,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1942285,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462448150,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1942682,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462448302,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4688}},"tts":1942835,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462448394,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1,"window_size":15728639}},"tts":1942926,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462448455,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1,"window_size":15728640}},"tts":1942987,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462448516,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1,"stream_id":27,"window_size":6291455}},"tts":1943079,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462448577,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1,"stream_id":27,"window_size":6291456}},"tts":1943140,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462448638,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1177,"stream_id":27}},"tts":1943201,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462448730,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1177,"window_size":15727463}},"tts":1943262,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462448791,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1177,"stream_id":27,"window_size":6290279}},"tts":1943323,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462448852,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1943384,"id":"0xaf8a6ff4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462449187,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4583}},"tts":1943720,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462449340,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4326,"stream_id":27}},"tts":1943873,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462449401,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4326,"window_size":15723137}},"tts":1943934,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462449462,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4326,"stream_id":27,"window_size":6285953}},"tts":1943995,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462449554,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-240,"window_size":15722897}},"tts":1944086,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462449615,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":240,"window_size":15723137}},"tts":1944147,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462449676,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-240,"stream_id":27,"window_size":6285713}},"tts":1944208,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462449737,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":240,"stream_id":27,"window_size":6285953}},"tts":1944269,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462449798,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":27}},"tts":1944330,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462449859,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1177,"window_size":15724314}},"tts":1944391,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462449950,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4326,"window_size":15728640}},"tts":1944483,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462450164,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1944605,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462450225,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1944666,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462450286,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":5503,"index":1,"offset":0,"truncate":true}},"tts":1944727,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462450347,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":5503}},"tts":1944788,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462450408,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":5503,"index":1,"offset":0,"truncate":true}},"tts":1944880,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462450561,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1945032,"id":"0xaf8a659cfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462450683,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1945124,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462452331,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_FILTERED_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1946772,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462452423,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1946894,"id":"0xba46fe02"},
-{"pid":27369,"tid":27407,"ts":326462452575,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1947016,"id":"0xba46ff02"},
-{"pid":27369,"tid":27407,"ts":326462452789,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_FILTERED_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":2670}},"tts":1947230,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462452850,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1947291,"id":"0xaf8a6ff6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462453002,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":24}},"tts":1947474,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462453094,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1947535,"id":"0xaf8a6ff7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462453155,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":24}},"tts":1947596,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462453308,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1947749,"id":"0xaf8a6ff5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462453338,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":122,"tdur":122,"tts":1947779},
-{"pid":27369,"tid":27407,"ts":326462453399,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":5503}},"tts":1947840,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462453521,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":641,"tdur":611,"tts":1947962},
-{"pid":27369,"tid":27407,"ts":326462453643,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":367,"tdur":367,"tts":1948084},
-{"pid":27369,"tid":27407,"ts":326462453674,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1948115,"id":"0xccc64f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462453796,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1948237,"id":"0xaf8a61e1feb47934"},
-{"pid":27369,"tid":27407,"ts":326462454040,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":92,"tdur":61,"tts":1948481},
-{"pid":27369,"tid":27407,"ts":326462454071,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1948512,"id":"0xccc65002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462454193,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462449},"tts":1948664,"id":"0xaf8a6ff4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462454223,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":31,"tts":1948664},
-{"pid":27369,"tid":27407,"ts":326462454284,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1948725,"id":"0xaf8a6ff6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462454315,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":2075,"tdur":1800,"tts":1948756},
-{"pid":27369,"tid":27407,"ts":326462454376,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1948817,"id":"0xba470002"},
-{"pid":27369,"tid":27407,"ts":326462454528,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1948969,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462454589,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1949030,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462454650,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1949092,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462454681,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1949122,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462454742,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1949183,"id":"0xaf8a6ff0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462454864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1949305,"id":"0xaf8a6ff1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462454956,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1949397,"id":"0xaf8a61e2feb47934"},
-{"pid":27369,"tid":27407,"ts":326462455322,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1949763,"id":"0xba470102"},
-{"pid":27369,"tid":27407,"ts":326462455475,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1949916,"id":"0xaf8a61e3feb47934"},
-{"pid":27369,"tid":27407,"ts":326462456268,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":1950465,"id":"0x22b"},
-{"pid":27369,"tid":27407,"ts":326462456421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1950618,"id":"0xaf8a6ff7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462456451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":550,"tdur":549,"tts":1950648},
-{"pid":27369,"tid":27407,"ts":326462456573,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":1950801,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462456909,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":1951136,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462457062,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":214,"tts":1951258},
-{"pid":27369,"tid":27407,"ts":326462457153,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":92,"tdur":61,"tts":1951350},
-{"pid":27369,"tid":27407,"ts":326462457184,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1951381,"id":"0xccc65102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462457306,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1951503,"id":"0xaf8a6ff0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462457336,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":1618,"tdur":397,"tts":1951533},
-{"pid":27369,"tid":27407,"ts":326462457397,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1951625,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462458038,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1951716,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462458038,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1951716},
-{"pid":27369,"tid":27407,"ts":326462458160,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1951808,"id":"0xaf8a659dfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462458984,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":184,"tdur":184,"tts":1951960},
-{"pid":27369,"tid":27407,"ts":326462459045,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":92,"tdur":92,"tts":1952021},
-{"pid":27369,"tid":27407,"ts":326462459076,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1952052,"id":"0xccc65202","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462459168,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":305,"tdur":275,"tts":1952174},
-{"pid":27369,"tid":27407,"ts":326462459229,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":213,"tdur":183,"tts":1952235},
-{"pid":27369,"tid":27407,"ts":326462459259,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1952266,"id":"0xc4c26102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462459320,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1952296,"id":"0xaf8a61fdfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462459503,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1952479,"id":"0xaf8a6ff1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462459534,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":30,"tts":1952510},
-{"pid":27369,"tid":27407,"ts":326462459595,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1952601,"id":"0xaf8a6ff2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462459625,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":153,"tts":1952601},
-{"pid":27369,"tid":27407,"ts":326462459656,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1952662,"id":"0xba470202"},
-{"pid":27369,"tid":27407,"ts":326462459808,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1952815,"id":"0xaf8a6ff3febbc614"},
-{"pid":27369,"tid":27407,"ts":326462459839,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":244,"tdur":213,"tts":1952846},
-{"pid":27369,"tid":27407,"ts":326462459900,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1952876,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462459961,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1952937,"id":"0x22d"},
-{"pid":27369,"tid":27407,"ts":326462460114,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1953090,"id":"0xaf8a6f8cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462460144,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":183,"tdur":183,"tts":1953120},
-{"pid":27369,"tid":27407,"ts":326462460175,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1953151,"id":"0xba470302"},
-{"pid":27369,"tid":27407,"ts":326462460571,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1953486,"id":"0xaf8a6f8dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462460602,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":153,"tdur":153,"tts":1953517},
-{"pid":27369,"tid":27407,"ts":326462460632,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1953547,"id":"0xba470402"},
-{"pid":27369,"tid":27407,"ts":326462472291,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":367,"tdur":366,"tts":1953792},
-{"pid":27369,"tid":27407,"ts":326462472352,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":275,"tdur":244,"tts":1953883},
-{"pid":27369,"tid":27407,"ts":326462472383,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1953914,"id":"0xccc65302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462472444,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1953975,"id":"0xaf8a61fefeb47934"},
-{"pid":27369,"tid":27407,"ts":326462473115,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1954372,"id":"0xaf8a6f8efebbc614"},
-{"pid":27369,"tid":27407,"ts":326462473115,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1954372},
-{"pid":27369,"tid":27407,"ts":326462473176,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":733,"tdur":183,"tts":1954402},
-{"pid":27369,"tid":27407,"ts":326462473237,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1954463,"id":"0xba470502"},
-{"pid":27369,"tid":27407,"ts":326462475862,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":397,"tdur":366,"tts":1954738},
-{"pid":27369,"tid":27407,"ts":326462475954,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":274,"tdur":275,"tts":1954799},
-{"pid":27369,"tid":27407,"ts":326462475984,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1954829,"id":"0xc4c26302","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462476045,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1954890,"id":"0xaf8a61fffeb47934"},
-{"pid":27369,"tid":27407,"ts":326462482485,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":366,"tdur":366,"tts":1955226},
-{"pid":27369,"tid":27407,"ts":326462482516,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1434},"dur":305,"tdur":305,"tts":1955257},
-{"pid":27369,"tid":27407,"ts":326462482516,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1955287,"id":"0xccc65402","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462482668,"ph":"b","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"entry_hash":"0x1d1846aa1fb0736c"}},"tts":1955409,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462482699,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_SET_KEY","args":{"source_type":"DISK_CACHE_ENTRY","params":{"key":"https://maps.googleapis.com/maps/api/js/ViewportInfoService.GetViewportInfo?1m6&1m2&1d36.9404296875&2d-122.5546875&2m2&1d37.810546875&2d-121.7373046875&2u11&4sen-US&5e0&6sm%40306000000&7b0&8e0&9b0&11e78&callback=_xdc_._crug5s&token=22931"}},"tts":1955440,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462482729,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1955470,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462482760,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1955501,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462482790,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1955531,"id":"0xaf8a659efd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462483370,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1955653,"id":"0xaf8a6f8ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462483401,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"OpenEntryInternal"},"dur":61,"tdur":61,"tts":1955684},
-{"pid":27369,"tid":27407,"ts":326462483431,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_OPEN_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1955714,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462483431,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1955714,"id":"0xaf8a6f88febbc614"},
-{"pid":27369,"tid":27407,"ts":326462483462,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1955745,"id":"0xaf8a6f88febbc614"},
-{"pid":27369,"tid":27407,"ts":326462483462,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"PostClientCallback"},"dur":152,"tdur":153,"tts":1955745},
-{"pid":27369,"tid":27407,"ts":326462483523,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_READ_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3628,"index":0,"offset":0}},"tts":1955806,"id":"0x22f"},
-{"pid":27369,"tid":27369,"ts":326462458557,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2703952},
-{"pid":27369,"tid":27369,"ts":326462458679,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2704074},
-{"pid":27369,"tid":27369,"ts":326462458679,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2704074,"id":"0xaf8a61e3feb47934"},
-{"pid":27369,"tid":27369,"ts":326462458710,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":122,"tdur":123,"tts":2704104},
-{"pid":27369,"tid":27369,"ts":326462458710,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":61,"tdur":31,"tts":2704104},
-{"pid":27369,"tid":27369,"ts":326462458740,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2704135},
-{"pid":27369,"tid":27369,"ts":326462458771,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":0,"tts":2704166},
-{"pid":27369,"tid":27369,"ts":326462458771,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2704166},
-{"pid":27369,"tid":27369,"ts":326462458893,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2704288},
-{"pid":27369,"tid":27369,"ts":326462458984,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2704379},
-{"pid":27369,"tid":27369,"ts":326462458984,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2704379,"id":"0xaf8a61fcfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462458984,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":1618,"tdur":1587,"tts":2704410},
-{"pid":27369,"tid":27369,"ts":326462459015,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":0,"tdur":0,"tts":2704410},
-{"pid":27369,"tid":27369,"ts":326462459045,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":1526,"tdur":1526,"tts":2704440},
-{"pid":27369,"tid":27369,"ts":326462459045,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":165},"dur":92,"tdur":61,"tts":2704471},
-{"pid":27369,"tid":27369,"ts":326462459076,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2704471},
-{"pid":27369,"tid":27369,"ts":326462459137,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":305,"tdur":305,"tts":2704532},
-{"pid":27369,"tid":27369,"ts":326462459168,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":0,"tdur":0,"tts":2704562},
-{"pid":27369,"tid":27369,"ts":326462459168,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2704562},
-{"pid":27369,"tid":27369,"ts":326462459198,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":214,"tdur":213,"tts":2704593},
-{"pid":27369,"tid":27369,"ts":326462459442,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2704837},
-{"pid":27369,"tid":27369,"ts":326462459473,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":0,"tdur":0,"tts":2704867},
-{"pid":27369,"tid":27369,"ts":326462459473,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":152,"tdur":153,"tts":2704867},
-{"pid":27369,"tid":27369,"ts":326462459503,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":165},"dur":31,"tdur":31,"tts":2704898},
-{"pid":27369,"tid":27369,"ts":326462459534,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":165},"dur":30,"tdur":30,"tts":2704929},
-{"pid":27369,"tid":27369,"ts":326462459564,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":165},"tts":2704959},
-{"pid":27369,"tid":27369,"ts":326462459564,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2704990},
-{"pid":27369,"tid":27369,"ts":326462459595,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2704990},
-{"pid":27369,"tid":27369,"ts":326462459595,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":30,"tdur":30,"tts":2704990},
-{"pid":27369,"tid":27369,"ts":326462459625,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2705020},
-{"pid":27369,"tid":27369,"ts":326462459656,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2705051,"id":"0xaf8a6f8cfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462459717,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":824,"tdur":824,"tts":2705112},
-{"pid":27369,"tid":27369,"ts":326462459717,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":165},"dur":183,"tdur":153,"tts":2705142},
-{"pid":27369,"tid":27369,"ts":326462459747,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":61,"tdur":61,"tts":2705142},
-{"pid":27369,"tid":27369,"ts":326462459747,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":31,"tdur":31,"tts":2705142},
-{"pid":27369,"tid":27369,"ts":326462459778,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":0,"tdur":0,"tts":2705173},
-{"pid":27369,"tid":27369,"ts":326462459778,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2705173,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462459808,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2705203},
-{"pid":27369,"tid":27369,"ts":326462459900,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2705295},
-{"pid":27369,"tid":27369,"ts":326462459931,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":427,"tdur":428,"tts":2705325},
-{"pid":27369,"tid":27369,"ts":326462459931,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":30,"tdur":0,"tts":2705325},
-{"pid":27369,"tid":27369,"ts":326462459961,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":305,"tdur":305,"tts":2705356},
-{"pid":27369,"tid":27369,"ts":326462459961,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":92,"tdur":30,"tts":2705356},
-{"pid":27369,"tid":27369,"ts":326462460053,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":183,"tdur":183,"tts":2705447},
-{"pid":27369,"tid":27369,"ts":326462460327,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2705722,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462460388,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":153,"tts":2705783},
-{"pid":27369,"tid":27369,"ts":326462460419,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":5346},"dur":91,"tdur":91,"tts":2705814},
-{"pid":27369,"tid":27369,"ts":326462460449,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":31,"tts":2705844},
-{"pid":27369,"tid":27369,"ts":326462460449,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2705844,"id":"0xaf8a6f8dfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462460510,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":31,"tts":2705905},
-{"pid":27369,"tid":27369,"ts":326462460510,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2705905},
-{"pid":27369,"tid":27369,"ts":326462460663,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2706058},
-{"pid":27369,"tid":27369,"ts":326462460785,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2706180},
-{"pid":27369,"tid":27369,"ts":326462460785,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2706180,"id":"0xaf8a61fdfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462460816,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2706210},
-{"pid":27369,"tid":27369,"ts":326462460816,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":30,"tts":2706241},
-{"pid":27369,"tid":27369,"ts":326462460846,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":0,"tts":2706241},
-{"pid":27369,"tid":27369,"ts":326462460938,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2706332},
-{"pid":27369,"tid":27369,"ts":326462472841,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2706607},
-{"pid":27369,"tid":27369,"ts":326462472902,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2706668},
-{"pid":27369,"tid":27369,"ts":326462472963,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":213,"tdur":214,"tts":2706729},
-{"pid":27369,"tid":27369,"ts":326462472963,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462471053},"dur":91,"tdur":92,"tts":2706729},
-{"pid":27369,"tid":27369,"ts":326462472993,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2706760},
-{"pid":27369,"tid":27369,"ts":326462473024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2706790,"id":"0xaf8a6f8efebbc614"},
-{"pid":27369,"tid":27369,"ts":326462473207,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2706973},
-{"pid":27369,"tid":27369,"ts":326462473298,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2707065},
-{"pid":27369,"tid":27369,"ts":326462473421,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2707187},
-{"pid":27369,"tid":27369,"ts":326462473421,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2707187,"id":"0xaf8a61fefeb47934"},
-{"pid":27369,"tid":27369,"ts":326462473451,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":91,"tts":2707218},
-{"pid":27369,"tid":27369,"ts":326462473451,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":92,"tdur":91,"tts":2707218},
-{"pid":27369,"tid":27369,"ts":326462473512,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":0,"tdur":0,"tts":2707279},
-{"pid":27369,"tid":27369,"ts":326462473604,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2707370},
-{"pid":27369,"tid":27369,"ts":326462476289,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2707523},
-{"pid":27369,"tid":27369,"ts":326462476320,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2707553,"id":"0xaf8a61fffeb47934"},
-{"pid":27369,"tid":27369,"ts":326462476320,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":61,"tdur":61,"tts":2707553},
-{"pid":27369,"tid":27369,"ts":326462476350,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":31,"tdur":30,"tts":2707584},
-{"pid":27369,"tid":27369,"ts":326462476350,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":30,"tts":2707584},
-{"pid":27369,"tid":27369,"ts":326462476442,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2707675},
-{"pid":27369,"tid":27369,"ts":326462488467,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2707950},
-{"pid":27369,"tid":27369,"ts":326462488498,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2708011},
-{"pid":27369,"tid":27369,"ts":326462488559,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":30,"tdur":30,"tts":2708042},
-{"pid":27369,"tid":27369,"ts":326462488589,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2708072},
-{"pid":27369,"tid":27369,"ts":326462488681,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2708164},
-{"pid":27369,"tid":27369,"ts":326462549325,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2708347},
-{"pid":27369,"tid":27369,"ts":326462549355,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2708377,"id":"0xaf8a61f8feb47934"},
-{"pid":27369,"tid":27369,"ts":326462549355,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_dispatcher_host_impl.cc","src_func":"DidReceiveResponse"},"dur":183,"tdur":153,"tts":2708377},
-{"pid":27369,"tid":27369,"ts":326462549599,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2708591},
-{"pid":27369,"tid":27369,"ts":326462622390,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2708805},
-{"pid":27369,"tid":27369,"ts":326462622482,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2708866,"id":"0xaf8a61f9feb47934"},
-{"pid":27369,"tid":27369,"ts":326462622482,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/data_reduction_proxy/core/browser/data_reduction_proxy_io_data.cc","src_func":"UpdateContentLengths"},"dur":427,"tdur":427,"tts":2708866},
-{"pid":27369,"tid":27369,"ts":326462622970,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2709354},
-{"pid":27369,"tid":27369,"ts":326462623428,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2709537},
-{"pid":27369,"tid":27369,"ts":326462623489,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2709568,"id":"0xaf8a61fafeb47934"},
-{"pid":27369,"tid":27369,"ts":326462623489,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc","src_func":"RequestComplete"},"dur":122,"tdur":122,"tts":2709568},
-{"pid":27369,"tid":27369,"ts":326462623520,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":31,"tts":2709598},
-{"pid":27369,"tid":27369,"ts":326462623520,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":31,"tts":2709598},
-{"pid":27369,"tid":27369,"ts":326462623550,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":30,"tts":2709629},
-{"pid":27369,"tid":27369,"ts":326462623550,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":30,"tts":2709629},
-{"pid":27369,"tid":27369,"ts":326462623672,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2709751},
-{"pid":27369,"tid":27369,"ts":326462626358,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2709934},
-{"pid":27369,"tid":27369,"ts":326462626450,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2709964,"id":"0xaf8a61fbfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462626450,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":244,"tdur":245,"tts":2709964},
-{"pid":27369,"tid":27369,"ts":326462626450,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":244,"tdur":245,"tts":2709964},
-{"pid":27369,"tid":27369,"ts":326462626511,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":true},"dur":152,"tdur":153,"tts":2710025},
-{"pid":27369,"tid":27369,"ts":326462626755,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2710270},
-{"pid":27369,"tid":27369,"ts":326462626877,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2710392},
-{"pid":27369,"tid":27369,"ts":326462626907,"ph":"B","cat":"Java","name":"VSyncSynthetic","args":{},"tts":2710422},
-{"pid":27369,"tid":27369,"ts":326462626938,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":122,"tdur":122,"tts":2710453},
-{"pid":27369,"tid":27369,"ts":326462626969,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462621068},"dur":61,"tdur":61,"tts":2710483},
-{"pid":27369,"tid":27369,"ts":326462626969,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":30,"tts":2710514},
-{"pid":27369,"tid":27369,"ts":326462626999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2710514,"id":"0xaf8a6fbcfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462627091,"ph":"E","cat":"Java","name":"VSyncSynthetic","args":{},"tts":2710605},
-{"pid":27369,"tid":27369,"ts":326462627213,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2710727},
-{"pid":27369,"tid":27369,"ts":326462640489,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2711124},
-{"pid":27369,"tid":27369,"ts":326462640520,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2711185},
-{"pid":27369,"tid":27369,"ts":326462640581,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2711216},
-{"pid":27369,"tid":27369,"ts":326462640581,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462638369},"dur":122,"tdur":122,"tts":2711216},
-{"pid":27369,"tid":27369,"ts":326462640611,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":92,"tdur":92,"tts":2711246},
-{"pid":27369,"tid":27369,"ts":326462640642,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2711277,"id":"0xaf8a6fbdfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462640855,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2711490},
-{"pid":27369,"tid":27369,"ts":326462640947,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2711582},
-{"pid":27369,"tid":27369,"ts":326462655688,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2711918},
-{"pid":27369,"tid":27369,"ts":326462655749,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2711948},
-{"pid":27369,"tid":27369,"ts":326462655810,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2712009},
-{"pid":27369,"tid":27369,"ts":326462655810,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462655049},"dur":122,"tdur":122,"tts":2712009},
-{"pid":27369,"tid":27369,"ts":326462655841,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":91,"tts":2712040},
-{"pid":27369,"tid":27369,"ts":326462655871,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2712070,"id":"0xaf8a6fbefebbc614"},
-{"pid":27369,"tid":27369,"ts":326462656054,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2712253},
-{"pid":27369,"tid":27407,"ts":326462483553,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_READ_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3628,"index":0,"offset":0}},"tts":1955867,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462483614,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1955898,"id":"0xaf8a6f89febbc614"},
-{"pid":27369,"tid":27407,"ts":326462483645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1955928,"id":"0xaf8a6f89febbc614"},
-{"pid":27369,"tid":27407,"ts":326462483645,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"ReadDataInternal"},"dur":1251,"tdur":1251,"tts":1955928},
-{"pid":27369,"tid":27407,"ts":326462484652,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":12,"index":2,"offset":0,"truncate":true}},"tts":1956935,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462484683,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":12}},"tts":1956966,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462484713,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":12,"index":2,"offset":0,"truncate":true}},"tts":1956996,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462484744,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1957027,"id":"0xaf8a659ffd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462484805,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1957088,"id":"0xaf8a6f8afebbc614"},
-{"pid":27369,"tid":27407,"ts":326462484927,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1957210,"id":"0xaf8a6f8afebbc614"},
-{"pid":27369,"tid":27407,"ts":326462484927,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":30,"tdur":30,"tts":1957210},
-{"pid":27369,"tid":27407,"ts":326462484957,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1957240,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462485385,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1957301,"id":"0xaf8a6f8bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462485415,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":122,"tdur":92,"tts":1957332},
-{"pid":27369,"tid":27407,"ts":326462485446,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":12}},"tts":1957363,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462485446,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1957393,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462485476,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1957393,"id":"0xaf8a6598fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462485995,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1957515,"id":"0xaf8a6f84febbc614"},
-{"pid":27369,"tid":27407,"ts":326462485995,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":61,"tts":1957515},
-{"pid":27369,"tid":27407,"ts":326462485995,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1957515,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462486025,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":1957546,"id":"0x22f"},
-{"pid":27369,"tid":27407,"ts":326462547524,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":3876,"tdur":3601,"tts":1957668},
-{"pid":27369,"tid":27407,"ts":326462547616,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":69}},"tts":1957759,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462547677,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":48}},"tts":1957820,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462547890,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1957942,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462547890,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":1957942},
-{"pid":27369,"tid":27407,"ts":326462548134,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_HEADERS","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"headers":[":status: 200","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=86400","content-length: 193622","content-type: image/png","date: Mon, 22 Jun 2015 18:11:31 GMT","expires: Tue, 23 Jun 2015 18:11:31 GMT","server: staticmap","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"],"stream_id":23}},"tts":1958187,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462548379,"ph":"n","cat":"netlog","name":"HTTP_TRANSACTION_READ_RESPONSE_HEADERS","args":{"source_type":"URL_REQUEST","params":{"headers":["HTTP/1.1 200 OK","status: 200","alternate-protocol: 443:quic,p=1","cache-control: public, max-age=86400","content-length: 193622","content-type: image/png","date: Mon, 22 Jun 2015 18:11:31 GMT","expires: Tue, 23 Jun 2015 18:11:31 GMT","server: staticmap","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]}},"tts":1958400,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548440,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_HEADERS","args":{"source_type":"URL_REQUEST","params":""},"tts":1958461,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548470,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1958492,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548592,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":3544,"index":0,"offset":0,"truncate":true}},"tts":1958614,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548653,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1958675,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548653,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1958675,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548684,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1958705,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548714,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1958736,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548745,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":1,"offset":0,"truncate":true}},"tts":1958766,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548775,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1958797,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548775,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1958797,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548806,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1958828,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548806,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":0}},"tts":1958858,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548836,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":0,"index":2,"offset":0,"truncate":true}},"tts":1958858,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462548867,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_INFO","args":{"source_type":"URL_REQUEST","params":""},"tts":1958889,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548897,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1958919,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548928,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1958950,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462548989,"ph":"e","cat":"netlog","name":"URL_REQUEST_START_JOB","args":{"source_type":"URL_REQUEST","params":""},"tts":1959011,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462549019,"ph":"b","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1959041,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462549111,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1959133,"id":"0xaf8a61f8feb47934"},
-{"pid":27369,"tid":27407,"ts":326462549294,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1959316,"id":"0xba470602"},
-{"pid":27369,"tid":27407,"ts":326462549508,"ph":"e","cat":"netlog","name":"URL_REQUEST_DELEGATE","args":{"source_type":"URL_REQUEST","params":""},"tts":1959529,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462549508,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1959529,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462549599,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1959621,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462549721,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":15642}},"tts":1959774,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462549782,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":23}},"tts":1959804,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462549813,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1959835,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462549844,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":23,"window_size":6290278}},"tts":1959865,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462549874,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1959896,"id":"0xaf8a6f85febbc614"},
-{"pid":27369,"tid":27407,"ts":326462550240,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1960109,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462550271,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1960140,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462550332,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15719270}},"tts":1960201,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462550362,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6282086}},"tts":1960231,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462550515,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7177}},"tts":1960384,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462550668,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8456}},"tts":1960537,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462550698,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5990,"stream_id":23}},"tts":1960567,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462550729,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5990,"window_size":15713280}},"tts":1960598,"id":"0x139"},
-{"pid":27369,"tid":27644,"ts":326462485598,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":366,"tdur":367,"tts":8789},
-{"pid":27369,"tid":27644,"ts":326462485873,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":9095,"id":"0xaf8a6f84febbc614"},
-{"pid":27369,"tid":27643,"ts":326462556436,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":12147,"id":"0xaf8a6599fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326462556436,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":427,"tdur":427,"tts":12147},
-{"pid":27369,"tid":27643,"ts":326462556833,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":12543,"id":"0xaf8a6f87febbc614"},
-{"pid":27369,"tid":27530,"ts":326462557596,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":40988,"id":"0xaf8a659afd4cca54"},
-{"pid":27369,"tid":27530,"ts":326462557596,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":274,"tdur":275,"tts":40988},
-{"pid":27369,"tid":27530,"ts":326462557840,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":41233,"id":"0xaf8a6f80febbc614"},
-{"pid":27369,"tid":27644,"ts":326462559702,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":9217,"id":"0xaf8a659bfd4cca54"},
-{"pid":27369,"tid":27644,"ts":326462559702,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":335,"tdur":335,"tts":9217},
-{"pid":27369,"tid":27644,"ts":326462559976,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":9522,"id":"0xaf8a6f83febbc614"},
-{"pid":27369,"tid":27643,"ts":326462580974,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":12635,"id":"0xaf8a6594fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326462580974,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":519,"tdur":336,"tts":12665},
-{"pid":27369,"tid":27643,"ts":326462581463,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":12971,"id":"0xaf8a6f99febbc614"},
-{"pid":27369,"tid":27530,"ts":326462587170,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":41294,"id":"0xaf8a6595fd4cca54"},
-{"pid":27369,"tid":27530,"ts":326462587170,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":397,"tdur":396,"tts":41294},
-{"pid":27369,"tid":27530,"ts":326462587536,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":41690,"id":"0xaf8a6f94febbc614"},
-{"pid":27369,"tid":27644,"ts":326462592664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":9583,"id":"0xaf8a6596fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326462592664,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":366,"tdur":366,"tts":9583},
-{"pid":27369,"tid":27644,"ts":326462592999,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":9919,"id":"0xaf8a6f97febbc614"},
-{"pid":27369,"tid":27643,"ts":326462601301,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":13032,"id":"0xaf8a6597fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326462601301,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":458,"tdur":458,"tts":13032},
-{"pid":27369,"tid":27643,"ts":326462601728,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":13459,"id":"0xaf8a6f93febbc614"},
-{"pid":27369,"tid":27480,"ts":326462607130,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":72485,"id":"0xaf8a6590fd4cca54"},
-{"pid":27369,"tid":27480,"ts":326462607161,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":305,"tdur":305,"tts":72516},
-{"pid":27369,"tid":27480,"ts":326462607405,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":72791,"id":"0xaf8a6faffebbc614"},
-{"pid":27369,"tid":27644,"ts":326462612227,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":9980,"id":"0xaf8a6591fd4cca54"},
-{"pid":27369,"tid":27644,"ts":326462612258,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":335,"tdur":336,"tts":10010},
-{"pid":27369,"tid":27644,"ts":326462612563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":10315,"id":"0xaf8a6faafebbc614"},
-{"pid":27369,"tid":27643,"ts":326462619735,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":13520,"id":"0xaf8a6592fd4cca54"},
-{"pid":27369,"tid":27643,"ts":326462619766,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":488,"tdur":488,"tts":13551},
-{"pid":27369,"tid":27643,"ts":326462620224,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":14008,"id":"0xaf8a6fa5febbc614"},
-{"pid":27369,"tid":27482,"ts":326462620956,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":79444,"id":"0xaf8a6593fd4cca54"},
-{"pid":27369,"tid":27482,"ts":326462620987,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":213,"tdur":213,"tts":79475},
-{"pid":27369,"tid":27482,"ts":326462621200,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":79688,"id":"0xaf8a6fa7febbc614"},
-{"pid":27369,"tid":27530,"ts":326462624222,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":41812,"id":"0xaf8a65acfd4cca54"},
-{"pid":27369,"tid":27530,"ts":326462624283,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":274,"tdur":275,"tts":41843},
-{"pid":27369,"tid":27530,"ts":326462624496,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":42057,"id":"0xaf8a6fa3febbc614"},
-{"pid":27369,"tid":27400,"ts":326462927197,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":57622,"id":"0xaf8a6419feb5e97c"},
-{"pid":27369,"tid":27400,"ts":326462927228,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":488,"tdur":153,"tts":57652},
-{"pid":27369,"tid":27400,"ts":326462927716,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":57805,"id":"0xaf8a641afeb5e97c"},
-{"pid":27369,"tid":27400,"ts":326462927747,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":30,"tdur":30,"tts":57836},
-{"pid":27369,"tid":27400,"ts":326462928113,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":57958,"id":"0xaf8a641bfeb5e97c"},
-{"pid":27369,"tid":27400,"ts":326462928113,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteToFile"},"dur":885,"tdur":885,"tts":57958},
-{"pid":27369,"tid":27400,"ts":326462928998,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":58843,"id":"0xaf8a6414feb5e97c"},
-{"pid":27369,"tid":27400,"ts":326462928998,"ph":"X","cat":"toplevel","name":"SequencedWorkerPool::ThreadLoop","args":{"src_file":"../../components/visitedlink/browser/visitedlink_master.cc","src_func":"WriteFullTable"},"dur":92,"tdur":91,"tts":58843},
-{"pid":27369,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":4}},
-{"pid":27369,"tid":27403,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-6}},
-{"pid":27369,"tid":27403,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"Browser"}},
-{"pid":27369,"tid":27404,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_FileUserBlockingThread"}},
-{"pid":27369,"tid":27644,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"SimpleCacheWorker5/27644"}},
-{"pid":27369,"tid":27643,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"SimpleCacheWorker4/27643"}},
-{"pid":27369,"tid":27480,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"SimpleCacheWorker1/27480"}},
-{"pid":27369,"tid":27400,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"BrowserBlockingWorker2/27400"}},
-{"pid":27369,"tid":27399,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"BrowserBlockingWorker1/27399"}},
-{"pid":27369,"tid":27402,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_DBThread"}},
-{"pid":27369,"tid":27530,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"SimpleCacheWorker3/27530"}},
-{"pid":27369,"tid":27482,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"SimpleCacheWorker2/27482"}},
-{"pid":27369,"tid":27409,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"AudioThread"}},
-{"pid":27369,"tid":27395,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"DnsConfigService"}},
-{"pid":27369,"tid":27568,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"BrowserBlockingWorker3/27568"}},
-{"pid":27369,"tid":27422,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_HistoryThread"}},
-{"pid":27369,"tid":27410,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"BrowserWatchdog"}},
-{"pid":27369,"tid":27407,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_IOThread"}},
-{"pid":27369,"tid":27407,"ts":326462550759,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5990,"stream_id":23,"window_size":6276096}},"tts":1960628,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462550820,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":23}},"tts":1960689,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462550851,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15712102}},"tts":1960720,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462550881,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":23,"window_size":6274918}},"tts":1960750,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462551064,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1960933,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462551095,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1960964,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462551156,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15703910}},"tts":1961025,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462551186,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6266726}},"tts":1961055,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462551217,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":117}},"tts":1961086,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462551278,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":117,"stream_id":23}},"tts":1961147,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462551309,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-117,"window_size":15703793}},"tts":1961178,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462551339,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-117,"stream_id":23,"window_size":6266609}},"tts":1961208,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462551461,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462550},"tts":1961330,"id":"0xaf8a6f85febbc614"},
-{"pid":27369,"tid":27407,"ts":326462551461,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1961330},
-{"pid":27369,"tid":27407,"ts":326462551492,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1961361,"id":"0xaf8a6f86febbc614"},
-{"pid":27369,"tid":27407,"ts":326462551614,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":3204,"tdur":3204,"tts":1961483},
-{"pid":27369,"tid":27407,"ts":326462551644,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1961544,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462551736,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1961605,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462551827,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1961727,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462551888,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1961757,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462551919,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15702606}},"tts":1961788,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462551949,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6265422}},"tts":1961819,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462552010,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1961880,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462552133,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1962002,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462552163,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1962032,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462552194,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15701419}},"tts":1962063,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462552224,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6264235}},"tts":1962093,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462552316,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1962185,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462552407,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1962307,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462552468,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1962337,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462552499,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15699045}},"tts":1962368,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462552529,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6261861}},"tts":1962398,"id":"0x223"},{"pid":27369,"tid":27407,"ts":326462552590,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2149}},"tts":1962490,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462552712,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1962582,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462552743,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":23}},"tts":1962612,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462552773,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15696896}},"tts":1962643,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462552804,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":23,"window_size":6259712}},"tts":1962673,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462552896,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1962765,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553018,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1962887,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553048,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2365,"stream_id":23}},"tts":1962917,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553079,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2365,"window_size":15694531}},"tts":1962948,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553109,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2365,"stream_id":23,"window_size":6257347}},"tts":1962978,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462553201,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1963070,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553292,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1963192,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553353,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1963222,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553384,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15692157}},"tts":1963253,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553414,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6254973}},"tts":1963283,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462553475,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1963375,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553598,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1963467,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553628,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1963497,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553659,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15689783}},"tts":1963528,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553689,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6252599}},"tts":1963558,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462553781,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1963650,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553903,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1963772,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462553933,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1963802,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553964,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15687409}},"tts":1963833,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462553994,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6250225}},"tts":1963863,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462554086,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1963955,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462554177,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1964046,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462554208,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1964077,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554238,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15685035}},"tts":1964108,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554269,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6247851}},"tts":1964138,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462554361,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1964230,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462554483,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1964352,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462554513,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1964382,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554544,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15682661}},"tts":1964413,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554574,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6245477}},"tts":1964443,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462554666,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2149}},"tts":1964535,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462554727,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":23}},"tts":1964596,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554757,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15680512}},"tts":1964626,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554788,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":23,"window_size":6243328}},"tts":1964657,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462554849,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462552},"tts":1964718,"id":"0xaf8a6f86febbc614"},
-{"pid":27369,"tid":27407,"ts":326462554879,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":2473,"tdur":2473,"tts":1964748},
-{"pid":27369,"tid":27407,"ts":326462554940,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15681690}},"tts":1964809,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462554971,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":23,"window_size":6244506}},"tts":1964840,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555032,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15689882}},"tts":1964932,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555093,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":23,"window_size":6252698}},"tts":1964962,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555154,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5990,"window_size":15695872}},"tts":1965023,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555185,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":5990,"stream_id":23,"window_size":6258688}},"tts":1965054,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555246,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15697050}},"tts":1965115,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555276,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":23,"window_size":6259866}},"tts":1965145,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555337,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15705242}},"tts":1965206,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555368,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":23,"window_size":6268058}},"tts":1965237,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555398,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":117,"window_size":15705359}},"tts":1965267,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555429,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":117,"stream_id":23,"window_size":6268175}},"tts":1965298,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555459,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15706546}},"tts":1965328,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555490,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6269362}},"tts":1965359,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555520,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15707733}},"tts":1965389,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555551,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6270549}},"tts":1965420,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555612,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15710107}},"tts":1965481,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555642,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6272923}},"tts":1965511,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555673,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2149,"window_size":15712256}},"tts":1965542,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555703,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2149,"stream_id":23,"window_size":6275072}},"tts":1965573,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555734,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1024,"window_size":15713280}},"tts":1965603,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462555764,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1024,"stream_id":23,"window_size":6276096}},"tts":1965634,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555795,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1965664,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555795,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1965664,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462555826,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1965695,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462556131,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1966000,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462556192,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":0,"truncate":true}},"tts":1966061,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462556375,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1966244,"id":"0xaf8a6599fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462556405,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1966274,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462556436,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":1966336,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462556527,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1966397,"id":"0xba470702"},
-{"pid":27369,"tid":27407,"ts":326462556589,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1966458,"id":"0xba470802"},
-{"pid":27369,"tid":27407,"ts":326462556650,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1966549,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462556741,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1341,"window_size":15714621}},"tts":1966610,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462556772,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1341,"stream_id":23,"window_size":6277437}},"tts":1966641,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462556833,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15716995}},"tts":1966702,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462556863,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6279811}},"tts":1966732,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462556924,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15719369}},"tts":1966793,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462556955,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6282185}},"tts":1966824,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557016,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15721743}},"tts":1966885,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462557046,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6284559}},"tts":1966915,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557077,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15724117}},"tts":1966946,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462557107,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6286933}},"tts":1966976,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557138,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15726491}},"tts":1967037,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462557168,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6289307}},"tts":1967037,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557199,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2149,"window_size":15728640}},"tts":1967099,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462557229,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2149,"stream_id":23,"window_size":6291456}},"tts":1967099,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557260,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1967129,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557291,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1967160,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462557321,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":15360,"index":1,"offset":32768,"truncate":true}},"tts":1967190,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462557352,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1967221,"id":"0xaf8a6f87febbc614"},
-{"pid":27369,"tid":27407,"ts":326462557382,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":214,"tdur":214,"tts":1967251},
-{"pid":27369,"tid":27407,"ts":326462557413,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":1967282,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462557443,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":15360,"index":1,"offset":32768,"truncate":true}},"tts":1967312,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462557535,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1967404,"id":"0xaf8a659afd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462557596,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1037,"tdur":1037,"tts":1967465},
-{"pid":27369,"tid":27407,"ts":326462557809,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":16237}},"tts":1967678,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462557992,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1967892,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462558054,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8183,"stream_id":23}},"tts":1967923,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462558084,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8183,"window_size":15720457}},"tts":1967953,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462558115,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8183,"stream_id":23,"window_size":6283273}},"tts":1968014,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462558298,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1968197,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462558359,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1968228,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462558389,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15712265}},"tts":1968258,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462558420,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6275081}},"tts":1968289,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462558481,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9}},"tts":1968350,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462558542,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":9,"stream_id":23}},"tts":1968411,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462558572,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-9,"window_size":15712256}},"tts":1968441,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462558603,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-9,"stream_id":23,"window_size":6275072}},"tts":1968472,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462558664,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1968533,"id":"0xaf8a6f80febbc614"},
-{"pid":27369,"tid":27407,"ts":326462558664,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":91,"tdur":92,"tts":1968533},
-{"pid":27369,"tid":27407,"ts":326462558694,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":15360}},"tts":1968564,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462558725,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1968594,"id":"0xaf8a6f81febbc614"},
-{"pid":27369,"tid":27407,"ts":326462558786,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":92,"tts":1968655},
-{"pid":27369,"tid":27407,"ts":326462558817,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":30,"tts":1968686},
-{"pid":27369,"tid":27407,"ts":326462558817,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1968686,"id":"0xccc65502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462558878,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1968747,"id":"0xaf8a6f81febbc614"},
-{"pid":27369,"tid":27407,"ts":326462558878,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":915,"tdur":885,"tts":1968777},
-{"pid":27369,"tid":27407,"ts":326462558908,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1968777,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462558939,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":15360}},"tts":1968808,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559000,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1968869,"id":"0xba470902"},
-{"pid":27369,"tid":27407,"ts":326462559091,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1968960,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559152,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8183,"window_size":15720439}},"tts":1969021,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462559183,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8183,"stream_id":23,"window_size":6283255}},"tts":1969052,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559274,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15728631}},"tts":1969143,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462559305,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":23,"window_size":6291447}},"tts":1969174,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559335,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":9,"window_size":15728640}},"tts":1969204,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462559366,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":9,"stream_id":23,"window_size":6291456}},"tts":1969235,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559396,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1969265,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559396,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1969265,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559427,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":16384,"index":1,"offset":48128,"truncate":true}},"tts":1969296,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462559488,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":16384}},"tts":1969357,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462559518,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":16384,"index":1,"offset":48128,"truncate":true}},"tts":1969388,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462559641,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1969510,"id":"0xaf8a659bfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462559702,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1969571,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559732,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":16384}},"tts":1969601,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462559763,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1969632,"id":"0xaf8a6f82febbc614"},
-{"pid":27369,"tid":27407,"ts":326462559793,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":122,"tdur":61,"tts":1969693},
-{"pid":27369,"tid":27407,"ts":326462559824,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":31,"tts":1969723},
-{"pid":27369,"tid":27407,"ts":326462559854,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1969723,"id":"0xccc65602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462559915,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1969784,"id":"0xaf8a6f82febbc614"},
-{"pid":27369,"tid":27407,"ts":326462559946,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/loader/resource_loader.cc","src_func":"StartReading"},"dur":152,"tdur":122,"tts":1969815},
-{"pid":27369,"tid":27407,"ts":326462559946,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1969845,"id":"0xba470a02"},
-{"pid":27369,"tid":27407,"ts":326462560068,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1969937,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462560098,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1969967,"id":"0xaf8a6f83febbc614"},
-{"pid":27369,"tid":27407,"ts":326462560098,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1969967},
-{"pid":27369,"tid":27407,"ts":326462560129,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":16384}},"tts":1969998,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462560709,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":1970120},
-{"pid":27369,"tid":27407,"ts":326462560739,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":30,"tts":1970151},
-{"pid":27369,"tid":27407,"ts":326462560739,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1970151,"id":"0xccc65702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462571727,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":305,"tdur":305,"tts":1970242},
-{"pid":27369,"tid":27407,"ts":326462571788,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":633}},"tts":1970303,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462571818,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":612}},"tts":1970364,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462571910,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":603,"stream_id":23}},"tts":1970425,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462571940,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-603,"window_size":15728037}},"tts":1970456,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462571940,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-603,"stream_id":23,"window_size":6290853}},"tts":1970456,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462571971,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1970486,"id":"0xaf8a6f9cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462572184,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":306,"tdur":306,"tts":1970608},
-{"pid":27369,"tid":27407,"ts":326462572276,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1970700,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572337,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1970761,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572398,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":23}},"tts":1970822,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462572429,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15726859}},"tts":1970853,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462572459,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":23,"window_size":6289675}},"tts":1970883,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462572520,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":214,"tdur":214,"tts":1970944},
-{"pid":27369,"tid":27407,"ts":326462572551,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1970975,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572612,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1971036,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572642,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1971066,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462572673,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15725672}},"tts":1971097,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462572703,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6288488}},"tts":1971127,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462572734,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1495,"tdur":1495,"tts":1971158},
-{"pid":27369,"tid":27407,"ts":326462572825,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1971249,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572886,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1971310,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572917,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1971371,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462572978,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1971402,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462572978,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15724485}},"tts":1971402,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573008,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6287301}},"tts":1971432,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462573070,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1971493,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573161,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1971585,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573192,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1971616,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573222,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15723298}},"tts":1971646,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573222,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6286114}},"tts":1971646,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462573283,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1971738,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573344,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1971768,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573375,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1971799,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573405,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15720924}},"tts":1971829,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573436,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6283740}},"tts":1971860,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462573466,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1971890,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573558,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1971982,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573588,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1972012,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573619,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15719737}},"tts":1972043,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573649,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6282553}},"tts":1972073,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462573680,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1972104,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573772,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1972195,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573802,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1972226,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573833,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15718550}},"tts":1972256,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462573863,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6281366}},"tts":1972287,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462573924,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1972348,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573955,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1972379,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462573985,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1972409,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462574016,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15716176}},"tts":1972440,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462574046,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6278992}},"tts":1972470,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462574077,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1972531,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462574138,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1972562,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462574168,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15714989}},"tts":1972592,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462574199,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6277805}},"tts":1972623,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462574229,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462572},"tts":1972653,"id":"0xaf8a6f9cfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462574260,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":30,"tts":1972684},
-{"pid":27369,"tid":27407,"ts":326462574260,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1972684,"id":"0xaf8a6f9dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462574748,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":275,"tdur":245,"tts":1972836},
-{"pid":27369,"tid":27407,"ts":326462574809,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1972897,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462574870,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1972958,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462574931,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1973019,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462574962,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15713802}},"tts":1973050,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462574962,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6276618}},"tts":1973050,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462575450,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":427,"tdur":427,"tts":1973142},
-{"pid":27369,"tid":27407,"ts":326462575481,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1973172,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462575542,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1973233,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462575633,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":380}},"tts":1973325,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462575664,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1973355,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462575664,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15712615}},"tts":1973386,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462575694,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6275431}},"tts":1973386,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462575755,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":359}},"tts":1973447,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462575786,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":359,"stream_id":23}},"tts":1973508,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462575816,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-359,"window_size":15712256}},"tts":1973508,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462575847,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-359,"stream_id":23,"window_size":6275072}},"tts":1973538,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462575908,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462575},"tts":1973599,"id":"0xaf8a6f9dfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462575908,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":30,"tdur":31,"tts":1973599},
-{"pid":27369,"tid":27407,"ts":326462575938,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1973630,"id":"0xaf8a6f9efebbc614"},
-{"pid":27369,"tid":27407,"ts":326462577098,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":214,"tdur":214,"tts":1973721},
-{"pid":27369,"tid":27407,"ts":326462577129,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1973752,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462577190,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1973813,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462577251,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":23}},"tts":1973874,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462577251,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15711078}},"tts":1973905,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462577281,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":23,"window_size":6273894}},"tts":1973905,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462577342,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462576},"tts":1973966,"id":"0xaf8a6f9efebbc614"},
-{"pid":27369,"tid":27407,"ts":326462577342,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":30,"tts":1973966},
-{"pid":27369,"tid":27407,"ts":326462577373,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1973996,"id":"0xaf8a6f9ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462577403,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":458,"tdur":457,"tts":1974027},
-{"pid":27369,"tid":27407,"ts":326462577495,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1974118,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462577556,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1974179,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462577587,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1974210,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462577617,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1974240,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462577648,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15708704}},"tts":1974271,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462577678,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6271520}},"tts":1974301,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462577739,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1974362,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462577770,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1974423,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462577800,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15707517}},"tts":1974423,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462577831,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6270333}},"tts":1974454,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462578258,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":275,"tdur":275,"tts":1974545},
-{"pid":27369,"tid":27407,"ts":326462578350,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1974637,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462578380,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1974698,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462578441,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1974729,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462578472,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15706330}},"tts":1974759,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462578502,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6269146}},"tts":1974790,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462578563,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462578},"tts":1974851,"id":"0xaf8a6f9ffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462578563,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":30,"tts":1974851},
-{"pid":27369,"tid":27407,"ts":326462578563,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1974851,"id":"0xaf8a6f98febbc614"},
-{"pid":27369,"tid":27407,"ts":326462579723,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462579},"tts":1974942,"id":"0xaf8a6f98febbc614"},
-{"pid":27369,"tid":27407,"ts":326462579723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1434,"tdur":1404,"tts":1974942},
-{"pid":27369,"tid":27407,"ts":326462579784,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":603,"window_size":15706933}},"tts":1975003,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462579815,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":603,"stream_id":23,"window_size":6269749}},"tts":1975034,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462579815,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15708111}},"tts":1975034,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462579845,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":23,"window_size":6270927}},"tts":1975064,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462579876,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15709298}},"tts":1975095,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462579906,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6272114}},"tts":1975125,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462579937,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15710485}},"tts":1975156,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462579967,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6273301}},"tts":1975186,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462579998,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15711672}},"tts":1975217,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580028,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6274488}},"tts":1975247,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580059,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15714046}},"tts":1975278,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580089,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6276862}},"tts":1975309,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580120,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15715233}},"tts":1975370,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580150,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6278049}},"tts":1975370,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580181,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15716420}},"tts":1975400,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580211,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6279236}},"tts":1975431,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580242,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15718794}},"tts":1975461,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580272,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6281610}},"tts":1975492,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580303,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15719981}},"tts":1975522,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580333,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6282797}},"tts":1975553,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580333,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15721168}},"tts":1975583,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580364,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6283984}},"tts":1975583,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580394,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15722355}},"tts":1975614,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580425,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6285171}},"tts":1975644,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580425,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":359,"window_size":15722714}},"tts":1975675,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580455,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":359,"stream_id":23,"window_size":6285530}},"tts":1975675,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580517,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15723892}},"tts":1975736,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580547,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":23,"window_size":6286708}},"tts":1975766,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580547,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15726266}},"tts":1975766,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580578,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6289082}},"tts":1975797,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580639,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15727453}},"tts":1975858,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580669,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6290269}},"tts":1975888,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580669,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1975888,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462580700,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6291456}},"tts":1975919,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580730,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1975949,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580730,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1975949,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462580761,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":22310,"index":1,"offset":64512,"truncate":true}},"tts":1975980,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462580791,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":22310}},"tts":1976010,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462580822,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":22310,"index":1,"offset":64512,"truncate":true}},"tts":1976041,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462580944,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1976163,"id":"0xaf8a6594fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462580974,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1976194,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462581005,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":22310}},"tts":1976224,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462581035,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1976255,"id":"0xba470b02"},
-{"pid":27369,"tid":27407,"ts":326462581127,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1976346,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462581157,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":397,"tdur":396,"tts":1976377},
-{"pid":27369,"tid":27407,"ts":326462581280,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1976499,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462581402,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1976621,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462581463,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":23}},"tts":1976682,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462581493,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15725079}},"tts":1976712,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462581524,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":23,"window_size":6287895}},"tts":1976743,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462581524,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1976743,"id":"0xaf8a6f9afebbc614"},
-{"pid":27369,"tid":27407,"ts":326462581585,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1976804,"id":"0xaf8a6f99febbc614"},
-{"pid":27369,"tid":27407,"ts":326462581615,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":31,"tdur":30,"tts":1976835},
-{"pid":27369,"tid":27407,"ts":326462581615,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":22310}},"tts":1976865,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462581890,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":153,"tdur":153,"tts":1976926},
-{"pid":27369,"tid":27407,"ts":326462581920,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":92,"tdur":91,"tts":1976957},
-{"pid":27369,"tid":27407,"ts":326462581951,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1976987,"id":"0xccc65802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462581951,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":1976987},
-{"pid":27369,"tid":27407,"ts":326462582043,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2228,"tdur":1434,"tts":1977079},
-{"pid":27369,"tid":27407,"ts":326462582134,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1977170,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583019,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1977262,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583172,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6040}},"tts":1977414,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583233,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1977475,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462583263,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15723892}},"tts":1977506,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462583294,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6286708}},"tts":1977536,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462583446,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":5710}},"tts":1977689,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583599,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1977842,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583630,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":5710,"stream_id":23}},"tts":1977872,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462583660,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-5710,"window_size":15718182}},"tts":1977903,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462583691,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-5710,"stream_id":23,"window_size":6280998}},"tts":1977933,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462583782,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1978025,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583843,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1978086,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462583904,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2365,"stream_id":23}},"tts":1978147,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462583935,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2365,"window_size":15715817}},"tts":1978177,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462583965,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2365,"stream_id":23,"window_size":6278633}},"tts":1978238,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462584057,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1978300,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462584118,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1978391,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462584179,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15714630}},"tts":1978422,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462584209,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6277446}},"tts":1978452,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462584271,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":701,"tdur":671,"tts":1978544},
-{"pid":27369,"tid":27407,"ts":326462584393,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1978635,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462584484,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1978757,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462584576,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1978818,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462584606,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1978849,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462584667,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15712256}},"tts":1978910,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462584698,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6275072}},"tts":1978940,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462584759,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1979001,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462584820,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1979093,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462584881,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15711069}},"tts":1979124,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462584911,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6273885}},"tts":1979154,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462585003,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462582},"tts":1979246,"id":"0xaf8a6f9afebbc614"},
-{"pid":27369,"tid":27407,"ts":326462585034,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":91,"tdur":61,"tts":1979276},
-{"pid":27369,"tid":27407,"ts":326462585064,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1979307,"id":"0xaf8a6f9bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462586254,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462586},"tts":1979490,"id":"0xaf8a6f9bfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462586285,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1434,"tdur":1068,"tts":1979490},
-{"pid":27369,"tid":27407,"ts":326462586346,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15714630}},"tts":1979551,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586376,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":3561,"stream_id":23,"window_size":6277446}},"tts":1979581,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586437,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15715817}},"tts":1979642,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586468,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6278633}},"tts":1979673,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586498,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":5710,"window_size":15721527}},"tts":1979703,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586560,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":5710,"stream_id":23,"window_size":6284343}},"tts":1979764,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586590,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2365,"window_size":15723892}},"tts":1979795,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586621,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2365,"stream_id":23,"window_size":6286708}},"tts":1979826,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586651,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725079}},"tts":1979856,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586682,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6287895}},"tts":1979887,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586712,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15727453}},"tts":1979917,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586743,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6290269}},"tts":1979948,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586804,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15728640}},"tts":1980009,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462586834,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6291456}},"tts":1980039,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586865,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1980070,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586895,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1980100,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462586926,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":17571,"index":1,"offset":86822,"truncate":true}},"tts":1980131,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462586956,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":17571}},"tts":1980161,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462587017,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":17571,"index":1,"offset":86822,"truncate":true}},"tts":1980222,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462587109,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1980314,"id":"0xaf8a6595fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462587139,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1980344,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462587170,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":17571}},"tts":1980375,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462587231,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1980466,"id":"0xba470c02"},
-{"pid":27369,"tid":27407,"ts":326462587689,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1980527,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462587750,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1980589,"id":"0xaf8a6f94febbc614"},
-{"pid":27369,"tid":27407,"ts":326462587750,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1980589},
-{"pid":27369,"tid":27407,"ts":326462587780,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":17571}},"tts":1980619,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462587811,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":763,"tdur":549,"tts":1980680},
-{"pid":27369,"tid":27407,"ts":326462588147,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1980802,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462588208,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1980863,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462588269,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1980924,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462588299,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1980955,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462588330,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15727453}},"tts":1980985,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462588360,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6290269}},"tts":1981016,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462588391,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1981046,"id":"0xaf8a6f95febbc614"},
-{"pid":27369,"tid":27407,"ts":326462588452,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1981107,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462588482,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1981168,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462588513,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726266}},"tts":1981168,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462588543,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6289082}},"tts":1981199,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462588635,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":62,"tts":1981290},
-{"pid":27369,"tid":27407,"ts":326462588635,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":1981290},
-{"pid":27369,"tid":27407,"ts":326462588665,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1981321,"id":"0xccc65902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462589093,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1434,"tdur":1434,"tts":1981413},
-{"pid":27369,"tid":27407,"ts":326462589245,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1981565,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462589306,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1981657,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462589459,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1981779,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462589489,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1981809,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462589551,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15725079}},"tts":1981870,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462589581,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6287895}},"tts":1981901,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462589673,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1981992,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462589795,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1982145,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462589856,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1982176,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462589886,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15722705}},"tts":1982206,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462589917,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6285521}},"tts":1982237,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462590100,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1982420,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462590161,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1982481,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462590191,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1982511,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462590222,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15720331}},"tts":1982542,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462590253,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6283147}},"tts":1982572,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462590314,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":962}},"tts":1982633,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462590375,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":962,"stream_id":23}},"tts":1982694,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462590436,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-962,"window_size":15719369}},"tts":1982755,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462590466,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-962,"stream_id":23,"window_size":6282185}},"tts":1982786,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462590558,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462589},"tts":1982878,"id":"0xaf8a6f95febbc614"},
-{"pid":27369,"tid":27407,"ts":326462590588,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1982908},
-{"pid":27369,"tid":27407,"ts":326462590588,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1982939,"id":"0xaf8a6f96febbc614"},
-{"pid":27369,"tid":27407,"ts":326462591840,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462591},"tts":1983091,"id":"0xaf8a6f96febbc614"},
-{"pid":27369,"tid":27407,"ts":326462591840,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1495,"tdur":1068,"tts":1983091},
-{"pid":27369,"tid":27407,"ts":326462591901,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15720556}},"tts":1983152,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462591931,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6283372}},"tts":1983213,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462591992,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15721743}},"tts":1983244,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462592023,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6284559}},"tts":1983274,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592053,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15722930}},"tts":1983305,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462592084,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6285746}},"tts":1983335,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592145,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15725304}},"tts":1983396,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462592175,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6288120}},"tts":1983427,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592236,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15727678}},"tts":1983488,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462592267,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6290494}},"tts":1983518,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592297,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":962,"window_size":15728640}},"tts":1983549,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462592328,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":962,"stream_id":23,"window_size":6291456}},"tts":1983580,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592358,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1983610,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592389,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1983641,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462592419,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9271,"index":1,"offset":104393,"truncate":true}},"tts":1983671,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462592480,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9271}},"tts":1983732,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462592511,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9271,"index":1,"offset":104393,"truncate":true}},"tts":1983763,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462592603,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1983854,"id":"0xaf8a6596fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462593091,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1983946,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462593121,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":9271}},"tts":1983976,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462593213,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1984068,"id":"0xba470d02"},
-{"pid":27369,"tid":27407,"ts":326462593274,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1984159,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462593335,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1984190,"id":"0xaf8a6f97febbc614"},
-{"pid":27369,"tid":27407,"ts":326462593335,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1984190},
-{"pid":27369,"tid":27407,"ts":326462593366,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9271}},"tts":1984220,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462593427,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":488,"tdur":489,"tts":1984281},
-{"pid":27369,"tid":27407,"ts":326462593579,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4832}},"tts":1984434,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462593701,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4748}},"tts":1984556,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462593793,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4739,"stream_id":23}},"tts":1984648,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462593823,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4739,"window_size":15723901}},"tts":1984678,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462593854,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4739,"stream_id":23,"window_size":6286717}},"tts":1984709,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462593884,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1984739,"id":"0xaf8a6f90febbc614"},
-{"pid":27369,"tid":27407,"ts":326462594068,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":1984892},
-{"pid":27369,"tid":27407,"ts":326462594098,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":1984922},
-{"pid":27369,"tid":27407,"ts":326462594098,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1984922,"id":"0xccc65a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462595288,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":946,"tdur":946,"tts":1985045},
-{"pid":27369,"tid":27407,"ts":326462595349,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1985136,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462595441,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1985197,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462595563,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1985319,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462595624,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1985380,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462595655,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15722714}},"tts":1985411,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462595685,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6285530}},"tts":1985441,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462595777,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1985533,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462595899,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1985655,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462595929,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1985685,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462595960,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15721527}},"tts":1985716,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462595990,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6284343}},"tts":1985746,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462596082,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1985838,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462596143,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1985899,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462596173,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15719153}},"tts":1985930,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462596204,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6281969}},"tts":1985960,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462596265,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462594},"tts":1986021,"id":"0xaf8a6f90febbc614"},
-{"pid":27369,"tid":27407,"ts":326462596265,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1986021},
-{"pid":27369,"tid":27407,"ts":326462596296,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1986052,"id":"0xaf8a6f91febbc614"},
-{"pid":27369,"tid":27407,"ts":326462596357,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":305,"tdur":305,"tts":1986113},
-{"pid":27369,"tid":27407,"ts":326462596418,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1986174,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462596479,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1986235,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462596540,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1986296,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462596570,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15717966}},"tts":1986326,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462596631,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6280782}},"tts":1986387,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462597364,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":1343,"tdur":1343,"tts":1986540},
-{"pid":27369,"tid":27407,"ts":326462597486,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1986662,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462597547,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1986723,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462597669,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1986845,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462597699,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1986906,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462597761,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15716779}},"tts":1986937,"id":"0x139"},{"pid":27369,"tid":27407,"ts":326462597791,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6279595}},"tts":1986967,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462597883,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1987059,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462598005,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1987181,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462598035,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1987211,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462598096,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15714405}},"tts":1987272,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462598127,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6277221}},"tts":1987303,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462598188,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2149}},"tts":1987364,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462598340,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1987517,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462598371,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":23}},"tts":1987547,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462598401,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15712256}},"tts":1987578,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462598432,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":23,"window_size":6275072}},"tts":1987608,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462598524,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1987700,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462598585,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2365,"stream_id":23}},"tts":1987761,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462598615,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2365,"window_size":15709891}},"tts":1987791,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462598676,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2365,"stream_id":23,"window_size":6272707}},"tts":1987852,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462598737,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462597},"tts":1987913,"id":"0xaf8a6f91febbc614"},
-{"pid":27369,"tid":27407,"ts":326462598737,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1987913},
-{"pid":27369,"tid":27407,"ts":326462598768,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1987944,"id":"0xaf8a6f92febbc614"},
-{"pid":27369,"tid":27407,"ts":326462599989,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462599},"tts":1988097,"id":"0xaf8a6f92febbc614"},
-{"pid":27369,"tid":27407,"ts":326462599989,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":2044,"tdur":1526,"tts":1988097},
-{"pid":27369,"tid":27407,"ts":326462600172,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4739,"window_size":15714630}},"tts":1988249,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600202,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":4739,"stream_id":23,"window_size":6277446}},"tts":1988280,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600233,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15715817}},"tts":1988310,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600263,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6278633}},"tts":1988341,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600294,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15717004}},"tts":1988402,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600355,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6279820}},"tts":1988432,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600385,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15719378}},"tts":1988493,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600446,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6282194}},"tts":1988524,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600477,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15720565}},"tts":1988554,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600507,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6283381}},"tts":1988615,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600568,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15721752}},"tts":1988646,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600599,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6284568}},"tts":1988676,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600660,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15724126}},"tts":1988737,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600690,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6286942}},"tts":1988768,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600721,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2149,"window_size":15726275}},"tts":1988799,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600752,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2149,"stream_id":23,"window_size":6289091}},"tts":1988829,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600813,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2365,"window_size":15728640}},"tts":1988890,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462600843,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2365,"stream_id":23,"window_size":6291456}},"tts":1988921,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600874,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1988951,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600904,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1988982,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462600935,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":18749,"index":1,"offset":113664,"truncate":true}},"tts":1989012,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462601057,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":18749}},"tts":1989165,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462601118,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":18749,"index":1,"offset":113664,"truncate":true}},"tts":1989195,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462601240,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1989317,"id":"0xaf8a6597fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462601820,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1989409,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462601850,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":18749}},"tts":1989439,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462601911,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1989500,"id":"0xba470e02"},
-{"pid":27369,"tid":27407,"ts":326462602003,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1989592,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462602064,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1989653,"id":"0xaf8a6f93febbc614"},
-{"pid":27369,"tid":27407,"ts":326462602064,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1989653},
-{"pid":27369,"tid":27407,"ts":326462602094,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":18749}},"tts":1989684,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462602155,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":794,"tdur":793,"tts":1989745},
-{"pid":27369,"tid":27407,"ts":326462602308,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":9664}},"tts":1989897,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462602522,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1990111,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462602552,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8192,"stream_id":23}},"tts":1990141,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462602613,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8192,"window_size":15720448}},"tts":1990202,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462602674,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8192,"stream_id":23,"window_size":6283264}},"tts":1990263,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462602705,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1990294,"id":"0xaf8a6facfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462602766,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1304}},"tts":1990355,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462602827,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1304,"stream_id":23}},"tts":1990416,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462602857,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1304,"window_size":15719144}},"tts":1990477,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462602888,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1304,"stream_id":23,"window_size":6281960}},"tts":1990508,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462602979,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":91,"tts":1990569},
-{"pid":27369,"tid":27407,"ts":326462603010,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":30,"tts":1990630},
-{"pid":27369,"tid":27407,"ts":326462603041,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1990630,"id":"0xccc65b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462604200,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462603},"tts":1990721,"id":"0xaf8a6facfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462604231,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":30,"tts":1990752},
-{"pid":27369,"tid":27407,"ts":326462604231,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1990782,"id":"0xaf8a6fadfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462604322,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":885,"tdur":854,"tts":1990874},
-{"pid":27369,"tid":27407,"ts":326462604383,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1990904,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462604444,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1990965,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462604567,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1991088,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462604628,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1991149,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462604658,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15717957}},"tts":1991179,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462604689,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6280773}},"tts":1991210,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462604750,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1991271,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462604841,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1991393,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462604902,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1991423,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462604933,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15716770}},"tts":1991454,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462604963,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6279586}},"tts":1991484,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462605024,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2149}},"tts":1991545,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462605116,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2149,"stream_id":23}},"tts":1991637,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462605146,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2149,"window_size":15714621}},"tts":1991667,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462605177,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2149,"stream_id":23,"window_size":6277437}},"tts":1991698,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462605238,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462605},"tts":1991759,"id":"0xaf8a6fadfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462605238,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1991759},
-{"pid":27369,"tid":27407,"ts":326462605269,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1991790,"id":"0xaf8a6faefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462606428,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462606},"tts":1991912,"id":"0xaf8a6faefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462606459,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":885,"tdur":885,"tts":1991942},
-{"pid":27369,"tid":27407,"ts":326462606520,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8192,"window_size":15722813}},"tts":1992003,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462606550,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":8192,"stream_id":23,"window_size":6285629}},"tts":1992034,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606611,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1304,"window_size":15724117}},"tts":1992095,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462606642,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1304,"stream_id":23,"window_size":6286933}},"tts":1992125,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606672,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725304}},"tts":1992156,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462606703,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6288120}},"tts":1992186,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606734,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15726491}},"tts":1992217,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462606764,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6289307}},"tts":1992247,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606795,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2149,"window_size":15728640}},"tts":1992278,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462606825,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2149,"stream_id":23,"window_size":6291456}},"tts":1992308,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606856,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1992339,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606886,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1992369,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462606917,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":14019,"index":1,"offset":132413,"truncate":true}},"tts":1992400,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462606947,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":14019}},"tts":1992430,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462606978,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":14019,"index":1,"offset":132413,"truncate":true}},"tts":1992461,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462607069,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1992553,"id":"0xaf8a6590fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462607130,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1992614,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462607161,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":14019}},"tts":1992644,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462607222,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1992705,"id":"0xba470f02"},
-{"pid":27369,"tid":27407,"ts":326462607283,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1992797,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462607619,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1992888,"id":"0xaf8a6faffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462607649,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1992919},
-{"pid":27369,"tid":27407,"ts":326462607680,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":14019}},"tts":1992949,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462608015,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":91,"tts":1993041},
-{"pid":27369,"tid":27407,"ts":326462608046,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":61,"tdur":31,"tts":1993071},
-{"pid":27369,"tid":27407,"ts":326462608076,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1993102,"id":"0xccc65c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462608107,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":977,"tdur":946,"tts":1993163},
-{"pid":27369,"tid":27407,"ts":326462608168,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1993193,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462608229,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1993285,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462608351,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1993377,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462608412,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":23}},"tts":1993438,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462608443,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15727462}},"tts":1993468,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462608473,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":23,"window_size":6290278}},"tts":1993499,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462608504,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1993529,"id":"0xaf8a6fa8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462608595,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1993621,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462608687,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1993712,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462608748,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1993773,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462608778,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15726275}},"tts":1993804,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462608809,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6289091}},"tts":1993834,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462608900,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1993926,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462608961,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1993987,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462608992,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15723901}},"tts":1994048,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462609053,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6286717}},"tts":1994079,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462609297,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":977,"tdur":976,"tts":1994201},
-{"pid":27369,"tid":27407,"ts":326462609358,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1994262,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462609419,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1994323,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462609541,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1994445,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462609572,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1994475,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462609633,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15722714}},"tts":1994536,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462609663,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6285530}},"tts":1994567,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462609724,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1994628,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462609847,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1994750,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462609877,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1187,"stream_id":23}},"tts":1994781,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462609908,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1187,"window_size":15721527}},"tts":1994811,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462609969,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1187,"stream_id":23,"window_size":6284343}},"tts":1994872,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462610091,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1994994,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462610152,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1995055,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462610182,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15719153}},"tts":1995086,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462610213,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6281969}},"tts":1995116,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462610274,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462609},"tts":1995208,"id":"0xaf8a6fa8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462610304,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":61,"tts":1995208},
-{"pid":27369,"tid":27407,"ts":326462610335,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1995238,"id":"0xaf8a6fa9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462611495,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462611},"tts":1995330,"id":"0xaf8a6fa9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462611525,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":1618,"tdur":947,"tts":1995360},
-{"pid":27369,"tid":27407,"ts":326462611556,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15720331}},"tts":1995391,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462611586,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1178,"stream_id":23,"window_size":6283147}},"tts":1995421,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462611617,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15721518}},"tts":1995452,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462611647,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6284334}},"tts":1995482,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462611708,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15723892}},"tts":1995544,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462611739,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6286708}},"tts":1995574,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462611769,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15725079}},"tts":1995605,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462611800,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6287895}},"tts":1995635,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462611830,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1187,"window_size":15726266}},"tts":1995666,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462611861,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":1187,"stream_id":23,"window_size":6289082}},"tts":1995696,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462611922,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15728640}},"tts":1995757,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462611952,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":2374,"stream_id":23,"window_size":6291456}},"tts":1995788,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462611983,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1995818,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462612014,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1995849,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462612044,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9487,"index":1,"offset":146432,"truncate":true}},"tts":1995879,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462612075,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9487}},"tts":1995910,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462612105,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":9487,"index":1,"offset":146432,"truncate":true}},"tts":1995940,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462612197,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":1996032,"id":"0xaf8a6591fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462612654,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":1996062,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462612715,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":9487}},"tts":1996123,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462612777,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1996184,"id":"0xba471002"},
-{"pid":27369,"tid":27407,"ts":326462613112,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":1996276,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462613143,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":1996307,"id":"0xaf8a6faafebbc614"},
-{"pid":27369,"tid":27407,"ts":326462613173,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":1996337},
-{"pid":27369,"tid":27407,"ts":326462613204,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":9487}},"tts":1996368,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462613265,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":2350,"tdur":2319,"tts":1996429},
-{"pid":27369,"tid":27407,"ts":326462613417,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":7248}},"tts":1996581,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462613601,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":6897}},"tts":1996764,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462613723,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8456}},"tts":1996886,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462613753,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":6897,"stream_id":23}},"tts":1996947,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462613814,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-6897,"window_size":15721743}},"tts":1996978,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462613845,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-6897,"stream_id":23,"window_size":6284559}},"tts":1997008,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462613875,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1997039,"id":"0xaf8a6fabfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462614058,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":8192}},"tts":1997222,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462614119,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":8183,"stream_id":23}},"tts":1997283,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462614364,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-8183,"window_size":15713560}},"tts":1997527,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462614394,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-8183,"stream_id":23,"window_size":6276376}},"tts":1997558,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462614425,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":117}},"tts":1997619,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462614577,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1997741,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462614608,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":117,"stream_id":23}},"tts":1997772,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462614638,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-117,"window_size":15713443}},"tts":1997802,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462614669,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-117,"stream_id":23,"window_size":6276259}},"tts":1997833,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462614760,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1997924,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462614882,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1998046,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462614913,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":23}},"tts":1998077,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462614943,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15709882}},"tts":1998107,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462614974,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":23,"window_size":6272698}},"tts":1998138,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462615096,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":4523}},"tts":1998260,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462615157,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1208}},"tts":1998321,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462615188,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":4523,"stream_id":23}},"tts":1998351,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462615310,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-4523,"window_size":15705359}},"tts":1998473,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462615340,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-4523,"stream_id":23,"window_size":6268175}},"tts":1998535,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462615432,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1187}},"tts":1998596,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462615493,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1178,"stream_id":23}},"tts":1998657,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462615523,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1178,"window_size":15704181}},"tts":1998687,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462615554,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1178,"stream_id":23,"window_size":6266997}},"tts":1998718,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462615645,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462614},"tts":1998809,"id":"0xaf8a6fabfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462615676,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":61,"tdur":30,"tts":1998840},
-{"pid":27369,"tid":27407,"ts":326462615676,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":1998870,"id":"0xaf8a6fa4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462616592,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":610,"tdur":397,"tts":1998962},
-{"pid":27369,"tid":27407,"ts":326462616836,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":1999114,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462616927,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":1999206,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462617110,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":23}},"tts":1999267,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462617141,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15700620}},"tts":1999298,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462617171,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":23,"window_size":6263436}},"tts":1999328,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462617202,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":91,"tts":1999359},
-{"pid":27369,"tid":27407,"ts":326462617233,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":1999389},
-{"pid":27369,"tid":27407,"ts":326462617233,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":1999389,"id":"0xccc65d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462617294,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":137},"dur":3296,"tdur":2716,"tts":1999450},
-{"pid":27369,"tid":27407,"ts":326462617507,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1999572,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462617599,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1999664,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462617782,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2416}},"tts":1999786,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462617843,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":1999816,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462617904,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15698246}},"tts":1999877,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462617934,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6261062}},"tts":1999908,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462617996,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":2374}},"tts":1999969,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462618209,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3624}},"tts":2000091,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462618240,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":2374,"stream_id":23}},"tts":2000122,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618331,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-2374,"window_size":15695872}},"tts":2000213,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618362,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-2374,"stream_id":23,"window_size":6258688}},"tts":2000244,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462618453,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":3561}},"tts":2000335,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462618545,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1312}},"tts":2000427,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462618575,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":3561,"stream_id":23}},"tts":2000457,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618636,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-3561,"window_size":15692311}},"tts":2000518,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618667,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-3561,"stream_id":23,"window_size":6255127}},"tts":2000549,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462618728,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_RECEIVED","args":{"source_type":"SOCKET","params":{"byte_count":1391}},"tts":2000640,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462618789,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":false,"size":1374,"stream_id":23}},"tts":2000671,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618820,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":-1374,"window_size":15690937}},"tts":2000701,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618850,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"URL_REQUEST","params":{"delta":-1374,"stream_id":23,"window_size":6253753}},"tts":2000732,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462618881,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_RECV_DATA","args":{"source_type":"HTTP2_SESSION","params":{"fin":true,"size":0,"stream_id":23}},"tts":2000762,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462618942,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":6897,"window_size":15697834}},"tts":2000824,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619003,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":8183,"window_size":15706017}},"tts":2000915,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619033,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":117,"window_size":15706134}},"tts":2000946,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619094,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15709695}},"tts":2000976,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619155,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":4523,"window_size":15714218}},"tts":2001037,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619186,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1178,"window_size":15715396}},"tts":2001068,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619216,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15718957}},"tts":2001098,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619277,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15721331}},"tts":2001159,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619308,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":2374,"window_size":15723705}},"tts":2001190,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462619338,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":2001220,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462619369,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":2001251,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462619369,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":155919,"truncate":true}},"tts":2001281,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462619491,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":2001373,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462619522,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":32768,"index":1,"offset":155919,"truncate":true}},"tts":2001403,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462619674,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2001556,"id":"0xaf8a6592fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462619735,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":2001617,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462619766,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":32768}},"tts":2001648,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462619857,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2001709,"id":"0xba471102"},
-{"pid":27369,"tid":27407,"ts":326462620162,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":2001800,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462620224,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":3561,"window_size":15727266}},"tts":2001831,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462620285,"ph":"n","cat":"netlog","name":"HTTP2_STREAM_UPDATE_RECV_WINDOW","args":{"source_type":"HTTP2_SESSION","params":{"delta":1374,"window_size":15728640}},"tts":2001892,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462620315,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":2001922,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462620346,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":2001953,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462620346,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4935,"index":1,"offset":188687,"truncate":true}},"tts":2001953,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462620437,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":false,"type":"received","unique_id":26}},"tts":2002044,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462620468,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2002075,"id":"0xaf8a6fa6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462620498,"ph":"n","cat":"netlog","name":"HTTP2_SESSION_PING","args":{"source_type":"HTTP2_SESSION","params":{"is_ack":true,"type":"sent","unique_id":26}},"tts":2002105,"id":"0x139"},
-{"pid":27369,"tid":27407,"ts":326462620620,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462616},"tts":2002227,"id":"0xaf8a6fa4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462620620,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_http_stream.cc","src_func":"ScheduleBufferedReadCallback"},"dur":31,"tdur":31,"tts":2002227},
-{"pid":27369,"tid":27407,"ts":326462620651,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2002258,"id":"0xaf8a6fa5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462620651,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":580,"tdur":183,"tts":2002258},
-{"pid":27369,"tid":27407,"ts":326462620681,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":32768}},"tts":2002289,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462620681,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":153,"tdur":30,"tts":2002289},
-{"pid":27369,"tid":27407,"ts":326462620864,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":{"buf_len":4935,"index":1,"offset":188687,"truncate":true}},"tts":2002350,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462620925,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2002411,"id":"0xaf8a6593fd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462621261,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":61,"tdur":61,"tts":2002472},
-{"pid":27369,"tid":27407,"ts":326462621292,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":30,"tdur":31,"tts":2002502},
-{"pid":27369,"tid":27407,"ts":326462621292,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2002502,"id":"0xccc65e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462621353,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2002563,"id":"0xaf8a6fa6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462621353,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/spdy/spdy_session.cc","src_func":"MaybePostWriteLoop"},"dur":244,"tdur":244,"tts":2002563},
-{"pid":27369,"tid":27407,"ts":326462621414,"ph":"n","cat":"netlog","name":"SSL_SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":17}},"tts":2002624,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462621536,"ph":"n","cat":"netlog","name":"SOCKET_BYTES_SENT","args":{"source_type":"SOCKET","params":{"byte_count":38}},"tts":2002746,"id":"0x136"},
-{"pid":27369,"tid":27407,"ts":326462621597,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2002807,"id":"0xaf8a6fa7febbc614"},
-{"pid":27369,"tid":27407,"ts":326462621627,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"WriteDataInternal"},"dur":61,"tdur":61,"tts":2002838},
-{"pid":27369,"tid":27407,"ts":326462621627,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_WRITE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":{"bytes_copied":4935}},"tts":2002838,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462621658,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2002868,"id":"0xaf8a6fa0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462621688,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2002899,"id":"0xaf8a6fa0febbc614"},
-{"pid":27369,"tid":27407,"ts":326462621719,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"EntryOperationComplete"},"dur":2259,"tdur":1069,"tts":2002929},
-{"pid":27369,"tid":27407,"ts":326462621719,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":2002929,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462621750,"ph":"n","cat":"netlog","name":"URL_REQUEST_JOB_BYTES_READ","args":{"source_type":"URL_REQUEST","params":{"byte_count":4935}},"tts":2002960,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462621841,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2003021,"id":"0xba471202"},
-{"pid":27369,"tid":27407,"ts":326462621933,"ph":"b","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":2003082,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462621933,"ph":"e","cat":"netlog","name":"HTTP_TRANSACTION_READ_BODY","args":{"source_type":"URL_REQUEST","params":""},"tts":2003113,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462621963,"ph":"b","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":2003113,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462621994,"ph":"e","cat":"netlog","name":"HTTP_CACHE_WRITE_DATA","args":{"source_type":"URL_REQUEST","params":""},"tts":2003143,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462622024,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2003174,"id":"0xaf8a6fa1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462622055,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2003204,"id":"0xaf8a6fa2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462622116,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2003265,"id":"0xaf8a61f9feb47934"},
-{"pid":27369,"tid":27407,"ts":326462623153,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2003540,"id":"0xba471302"},
-{"pid":27369,"tid":27407,"ts":326462623245,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2003631,"id":"0xaf8a61fafeb47934"},
-{"pid":27369,"tid":27407,"ts":326462623886,"ph":"e","cat":"netlog","name":"REQUEST_ALIVE","args":{"source_type":"URL_REQUEST","params":""},"tts":2003906,"id":"0x223"},
-{"pid":27369,"tid":27407,"ts":326462623978,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":91,"tdur":91,"tts":2003998},
-{"pid":27369,"tid":27407,"ts":326462624008,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":378},"dur":31,"tdur":31,"tts":2004028},
-{"pid":27369,"tid":27407,"ts":326462624039,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2004059,"id":"0xccc65f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462624069,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2004089,"id":"0xaf8a6fa1febbc614"},
-{"pid":27369,"tid":27407,"ts":326462624100,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/http/http_cache.cc","src_func":"ProcessPendingQueue"},"dur":122,"tdur":122,"tts":2004120},
-{"pid":27369,"tid":27407,"ts":326462624100,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_CALL","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":2004150,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462624130,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":2004150,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462624161,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2004181,"id":"0xaf8a65acfd4cca54"},
-{"pid":27369,"tid":27407,"ts":326462624222,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2004272,"id":"0xaf8a6fa2febbc614"},
-{"pid":27369,"tid":27407,"ts":326462624222,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":31,"tts":2004272},
-{"pid":27369,"tid":27407,"ts":326462624283,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/url_request/url_request_job.cc","src_func":"NotifyDone"},"dur":30,"tdur":30,"tts":2004303},
-{"pid":27369,"tid":27407,"ts":326462624588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2004425,"id":"0xaf8a6fa3febbc614"},
-{"pid":27369,"tid":27407,"ts":326462624618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../net/disk_cache/simple/simple_entry_impl.cc","src_func":"CloseInternal"},"dur":61,"tdur":62,"tts":2004455},
-{"pid":27369,"tid":27407,"ts":326462624618,"ph":"n","cat":"netlog","name":"SIMPLE_CACHE_ENTRY_CLOSE_END","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":2004455,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462624649,"ph":"e","cat":"netlog","name":"SIMPLE_CACHE_ENTRY","args":{"source_type":"DISK_CACHE_ENTRY","params":""},"tts":2004486,"id":"0x225"},
-{"pid":27369,"tid":27407,"ts":326462625015,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":92,"tdur":91,"tts":2004578},
-{"pid":27369,"tid":27407,"ts":326462625046,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":26,"line":362},"dur":30,"tdur":31,"tts":2004608},
-{"pid":27369,"tid":27407,"ts":326462625076,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2004639,"id":"0xccc66002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462626022,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":1282,"tdur":244,"tts":2004761},
-{"pid":27369,"tid":27407,"ts":326462626083,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":1221,"tdur":183,"tts":2004791},
-{"pid":27369,"tid":27407,"ts":326462626083,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2004791,"id":"0xccc66102","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462626114,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2004822,"id":"0xaf8a61fbfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462627304,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005035,"id":"0xaf8a6fbcfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462627335,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":702,"tdur":92,"tts":2005035},
-{"pid":27369,"tid":27407,"ts":326462627365,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2005066,"id":"0xba471402"},
-{"pid":27369,"tid":27407,"ts":326462641588,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005249,"id":"0xaf8a6fbdfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462641618,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":489,"tdur":61,"tts":2005280},
-{"pid":27369,"tid":27407,"ts":326462641618,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2005280,"id":"0xba471502"},
-{"pid":27369,"tid":27407,"ts":326462656390,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005402,"id":"0xaf8a6fbefebbc614"},
-{"pid":27369,"tid":27407,"ts":326462656421,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":488,"tdur":61,"tts":2005432},
-{"pid":27369,"tid":27407,"ts":326462656421,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2005432,"id":"0xba471602"},
-{"pid":27369,"tid":27407,"ts":326462672963,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005585,"id":"0xaf8a6fbffebbc614"},
-{"pid":27369,"tid":27407,"ts":326462672963,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":458,"tdur":91,"tts":2005585},
-{"pid":27369,"tid":27407,"ts":326462672993,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2005615,"id":"0xba471702"},
-{"pid":27369,"tid":27407,"ts":326462692191,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005768,"id":"0xaf8a6fb8febbc614"},
-{"pid":27369,"tid":27407,"ts":326462692191,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":549,"tdur":91,"tts":2005768},
-{"pid":27369,"tid":27407,"ts":326462692221,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2005798,"id":"0xba471802"},
-{"pid":27369,"tid":27407,"ts":326462706383,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2005981,"id":"0xaf8a6fb9febbc614"},
-{"pid":27369,"tid":27407,"ts":326462706413,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":62,"tts":2005981},
-{"pid":27369,"tid":27407,"ts":326462706413,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2005981,"id":"0xba471902"},
-{"pid":27369,"tid":27407,"ts":326462707207,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":244,"tdur":244,"tts":2006104},
-{"pid":27369,"tid":27407,"ts":326462707268,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1413},"dur":152,"tdur":152,"tts":2006165},
-{"pid":27369,"tid":27407,"ts":326462707298,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2006195,"id":"0xccc66502","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462707329,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2006226,"id":"0xaf8a61f4feb47934"},
-{"pid":27369,"tid":27407,"ts":326462709221,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2006439,"id":"0xaf8a6fbafebbc614"},
-{"pid":27369,"tid":27407,"ts":326462709221,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":2006439},
-{"pid":27369,"tid":27407,"ts":326462709251,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2006470,"id":"0xba471a02"},
-{"pid":27369,"tid":27407,"ts":326462710594,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2006561,"id":"0xaf8a6fbbfebbc614"},
-{"pid":27369,"tid":27407,"ts":326462710625,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":2006592},
-{"pid":27369,"tid":27407,"ts":326462710625,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2006592,"id":"0xba471b02"},
-{"pid":27369,"tid":27407,"ts":326462719110,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":51},"dur":274,"tdur":275,"tts":2006714},
-{"pid":27369,"tid":27407,"ts":326462719171,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":12,"line":586},"dur":183,"tdur":183,"tts":2006775},
-{"pid":27369,"tid":27407,"ts":326462719201,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2006806,"id":"0xc4c26602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462719232,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2006836,"id":"0xaf8a61f6feb47934"},
-{"pid":27369,"tid":27407,"ts":326462722223,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":183,"tdur":152,"tts":2007050},
-{"pid":27369,"tid":27407,"ts":326462722253,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1005},"dur":122,"tdur":122,"tts":2007080},
-{"pid":27369,"tid":27407,"ts":326462722253,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2007111,"id":"0xccc66602","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462722314,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2007141,"id":"0xaf8a61f7feb47934"},
-{"pid":27369,"tid":27407,"ts":326462722986,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2007355,"id":"0xaf8a6fb4febbc614"},
-{"pid":27369,"tid":27407,"ts":326462723016,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":2007385},
-{"pid":27369,"tid":27407,"ts":326462723016,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2007385,"id":"0xba471c02"},
-{"pid":27369,"tid":27407,"ts":326462922284,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":274,"tdur":244,"tts":2007538},
-{"pid":27369,"tid":27407,"ts":326462922345,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":711},"dur":183,"tdur":183,"tts":2007569},
-{"pid":27369,"tid":27407,"ts":326462922375,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2007599,"id":"0xccc66702","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462922406,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2007630,"id":"0xaf8a61f0feb47934"},
-{"pid":27369,"tid":27407,"ts":326462922833,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2007843,"id":"0xaf8a6fb5febbc614"},
-{"pid":27369,"tid":27407,"ts":326462922864,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":0,"tdur":0,"tts":2007874},
-{"pid":27369,"tid":27407,"ts":326462923047,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":213,"tdur":183,"tts":2007965},
-{"pid":27369,"tid":27407,"ts":326462923077,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1115},"dur":92,"tdur":92,"tts":2007965},
-{"pid":27369,"tid":27407,"ts":326462923108,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2007996,"id":"0xccc66802","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462923108,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2007996,"id":"0xaf8a61f1feb47934"},
-{"pid":27369,"tid":27369,"ts":326462656177,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2712375},
-{"pid":27369,"tid":27369,"ts":326462672322,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2712650},
-{"pid":27369,"tid":27369,"ts":326462672352,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2712711},
-{"pid":27369,"tid":27369,"ts":326462672413,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":214,"tdur":213,"tts":2712742},
-{"pid":27369,"tid":27369,"ts":326462672413,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462671739},"dur":122,"tdur":122,"tts":2712742},
-{"pid":27369,"tid":27369,"ts":326462672444,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":61,"tts":2712772},
-{"pid":27369,"tid":27369,"ts":326462672474,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2712803,"id":"0xaf8a6fbffebbc614"},
-{"pid":27369,"tid":27369,"ts":326462672658,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2712986},
-{"pid":27369,"tid":27369,"ts":326462672749,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2713077},
-{"pid":27369,"tid":27369,"ts":326462691611,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2713444},
-{"pid":27369,"tid":27369,"ts":326462691672,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2713505},
-{"pid":27369,"tid":27369,"ts":326462691702,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2713535},
-{"pid":27369,"tid":27369,"ts":326462691733,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462688412},"dur":91,"tdur":91,"tts":2713566},
-{"pid":27369,"tid":27369,"ts":326462691763,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2713596},
-{"pid":27369,"tid":27369,"ts":326462691763,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2713596,"id":"0xaf8a6fb8febbc614"},
-{"pid":27369,"tid":27369,"ts":326462691977,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2713810},
-{"pid":27369,"tid":27369,"ts":326462692068,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2713902},
-{"pid":27369,"tid":27369,"ts":326462705803,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2714237},
-{"pid":27369,"tid":27369,"ts":326462705864,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2714298},
-{"pid":27369,"tid":27369,"ts":326462705894,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":244,"tdur":244,"tts":2714329},
-{"pid":27369,"tid":27369,"ts":326462705925,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462705101},"dur":91,"tdur":92,"tts":2714359},
-{"pid":27369,"tid":27369,"ts":326462705955,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":61,"tdur":61,"tts":2714390},
-{"pid":27369,"tid":27369,"ts":326462705955,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2714390,"id":"0xaf8a6fb9febbc614"},
-{"pid":27369,"tid":27369,"ts":326462706169,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2714603},
-{"pid":27369,"tid":27369,"ts":326462706260,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2714695},
-{"pid":27369,"tid":27369,"ts":326462707573,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2714939},
-{"pid":27369,"tid":27369,"ts":326462707634,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2715000,"id":"0xaf8a61f4feb47934"},
-{"pid":27369,"tid":27369,"ts":326462707634,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":549,"tdur":550,"tts":2715000},
-{"pid":27369,"tid":27369,"ts":326462707664,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1413},"dur":519,"tdur":519,"tts":2715031},
-{"pid":27369,"tid":27369,"ts":326462707695,"ph":"X","cat":"test_fps,benchmark","name":"OnSwapCompositorFrame","args":{},"dur":488,"tdur":458,"tts":2715061},
-{"pid":27369,"tid":27369,"ts":326462707909,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetNeedsUpdateLayers","args":{},"dur":122,"tdur":122,"tts":2715275},
-{"pid":27369,"tid":27369,"ts":326462707939,"ph":"X","cat":"cc,benchmark","name":"CompositorImpl::PostComposite","args":{"trigger":1,"delay":0.0},"dur":61,"tdur":61,"tts":2715305},
-{"pid":27369,"tid":27369,"ts":326462707970,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2715336,"id":"0xaf8a61f5feb47934"},
-{"pid":27369,"tid":27369,"ts":326462708061,"ph":"B","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2715428},
-{"pid":27369,"tid":27369,"ts":326462708092,"ph":"E","cat":"Java","name":"ContentViewCore:updateFrameInfo","args":{},"tts":2715458},
-{"pid":27369,"tid":27369,"ts":326462708092,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2715458},
-{"pid":27369,"tid":27369,"ts":326462708244,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2715611},
-{"pid":27369,"tid":27369,"ts":326462708366,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2715733},
-{"pid":27369,"tid":27369,"ts":326462708397,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2715763,"id":"0xaf8a61f5feb47934"},
-{"pid":27369,"tid":27369,"ts":326462708397,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/compositor_impl_android.cc","src_func":"PostComposite"},"dur":2258,"tdur":1862,"tts":2715763},
-{"pid":27369,"tid":27369,"ts":326462708397,"ph":"X","cat":"cc","name":"SingleThreadProxy::SetLayerTreeHostClientReady","args":{},"dur":30,"tdur":0,"tts":2715794},
-{"pid":27369,"tid":27369,"ts":326462708427,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::CompositeImmediately","args":{},"dur":2198,"tdur":1800,"tts":2715794},
-{"pid":27369,"tid":27369,"ts":326462708458,"ph":"X","cat":"cc","name":"LayerTreeHost::DoUpdateLayers","args":{"source_frame_number":166},"dur":61,"tdur":61,"tts":2715824},
-{"pid":27369,"tid":27369,"ts":326462708458,"ph":"X","cat":"cc","name":"LayerTreeHost::UpdateLayers::CalcDrawProps","args":{},"dur":61,"tdur":61,"tts":2715824},
-{"pid":27369,"tid":27369,"ts":326462708549,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoCommit","args":{},"dur":367,"tdur":366,"tts":2715916},
-{"pid":27369,"tid":27369,"ts":326462708549,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::BeginCommit","args":{},"dur":31,"tdur":30,"tts":2715916},
-{"pid":27369,"tid":27369,"ts":326462708580,"ph":"X","cat":"cc","name":"LayerTreeHost::CommitTo","args":{},"dur":0,"tdur":0,"tts":2715946},
-{"pid":27369,"tid":27369,"ts":326462708611,"ph":"X","cat":"cc","name":"LayerTreeHost::PushProperties","args":{},"dur":274,"tdur":275,"tts":2715977},
-{"pid":27369,"tid":27369,"ts":326462708885,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":31,"tdur":30,"tts":2716252},
-{"pid":27369,"tid":27369,"ts":326462708916,"ph":"X","cat":"cc","name":"SingleThreadProxy::OnCanDrawStateChanged","args":{"can_draw":true},"dur":30,"tdur":31,"tts":2716282},
-{"pid":27369,"tid":27369,"ts":326462708946,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::CommitComplete","args":{},"dur":153,"tdur":122,"tts":2716313},
-{"pid":27369,"tid":27369,"ts":326462708946,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::CalculateDrawProperties","args":{"IsActive":true,"SourceFrameNumber":166},"dur":61,"tdur":61,"tts":2716313},
-{"pid":27369,"tid":27369,"ts":326462709007,"ph":"X","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::Occlusion","args":{"IsActive":true,"SourceFrameNumber":166},"dur":31,"tdur":30,"tts":2716374},
-{"pid":27369,"tid":27369,"ts":326462709038,"ph":"B","cat":"cc","name":"LayerTreeImpl::UpdateDrawProperties::UpdateTiles","args":{"IsActive":true,"SourceFrameNumber":166},"tts":2716404},
-{"pid":27369,"tid":27369,"ts":326462709038,"ph":"E","cat":"cc","name":"LayerTreeImpl::UpdateTilePriorities","args":{"layers_updated_count":0},"tts":2716404},
-{"pid":27369,"tid":27369,"ts":326462709068,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToActivate","args":{},"dur":0,"tdur":0,"tts":2716435},
-{"pid":27369,"tid":27369,"ts":326462709068,"ph":"X","cat":"cc","name":"SingleThreadProxy::NotifyReadyToDraw","args":{},"dur":0,"tdur":0,"tts":2716435},
-{"pid":27369,"tid":27369,"ts":326462709099,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":91,"tdur":92,"tts":2716465},
-{"pid":27369,"tid":27369,"ts":326462709129,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2716496,"id":"0xaf8a6fbafebbc614"},
-{"pid":27369,"tid":27369,"ts":326462709221,"ph":"X","cat":"cc","name":"SingleThreadProxy::DoComposite","args":{},"dur":1404,"tdur":1007,"tts":2716587},
-{"pid":27369,"tid":27369,"ts":326462709251,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::PrepareToDraw","args":{"SourceFrameNumber":166},"dur":245,"tdur":244,"tts":2716618},
-{"pid":27369,"tid":27369,"ts":326462709251,"ph":"X","cat":"cc","name":"TileManager::UpdateVisibleTiles","args":{},"dur":92,"tdur":61,"tts":2716648},
-{"pid":27369,"tid":27369,"ts":326462709282,"ph":"X","cat":"cc","name":"ZeroCopyTileTaskWorkerPool::CheckForCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2716648},
-{"pid":27369,"tid":27369,"ts":326462709282,"ph":"X","cat":"cc","name":"TaskGraphRunner::CollectCompletedTasks","args":{},"dur":30,"tdur":31,"tts":2716648},
-{"pid":27369,"tid":27369,"ts":326462709312,"ph":"I","cat":"cc","name":"DidUpdateVisibleTiles","args":{"stats":{"canceled_count":0,"completed_count":0}},"tts":2716679,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462709343,"ph":"B","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"render_surface_layer_list.size()":1,"RequiresHighResToDraw":false},"tts":2716709},
-{"pid":27369,"tid":27369,"ts":326462709496,"ph":"E","cat":"cc","name":"LayerTreeHostImpl::CalculateRenderPasses","args":{"draw_result":1,"missing tiles":0},"tts":2716862},
-{"pid":27369,"tid":27369,"ts":326462709526,"ph":"X","cat":"cc","name":"LayerTreeHostImpl::DrawLayers","args":{},"dur":458,"tdur":457,"tts":2716893},
-{"pid":27369,"tid":27369,"ts":326462709526,"ph":"X","cat":"cc","name":"DrawLayers.FrameViewerTracing","args":{},"dur":0,"tdur":0,"tts":2716893},
-{"pid":27369,"tid":27369,"ts":326462709557,"ph":"X","cat":"cc","name":"DirectRenderer::DrawFrame","args":{},"dur":366,"tdur":366,"tts":2716923},
-{"pid":27369,"tid":27369,"ts":326462709557,"ph":"X","cat":"cc","name":"GLRenderer::BeginDrawingFrame","args":{},"dur":61,"tdur":61,"tts":2716923},
-{"pid":27369,"tid":27369,"ts":326462709618,"ph":"X","cat":"cc","name":"DirectRenderer::DrawRenderPass","args":{},"dur":274,"tdur":275,"tts":2716984},
-{"pid":27369,"tid":27369,"ts":326462709953,"ph":"I","cat":"benchmark","name":"BenchmarkInstrumentation::ImplThreadRenderingStats","args":{"data":{"approximated_visible_content_area":0,"begin_main_frame_to_commit_duration_estimate_ms":[],"begin_main_frame_to_commit_duration_ms":[],"checkerboarded_visible_content_area":0,"commit_to_activate_duration_estimate_ms":[],"commit_to_activate_duration_ms":[],"draw_duration_estimate_ms":[],"draw_duration_ms":[],"frame_count":0,"visible_content_area":0}},"tts":2717320,"s":"t"},
-{"pid":27369,"tid":27369,"ts":326462710472,"ph":"X","cat":"cc,benchmark","name":"GLRenderer::SwapBuffers","args":{},"dur":153,"tdur":152,"tts":2717442},
-{"pid":27369,"tid":27369,"ts":326462710503,"ph":"X","cat":"gpu","name":"CommandBufferProxyImpl::Flush","args":{"put_offset":8656},"dur":61,"tdur":61,"tts":2717472},
-{"pid":27369,"tid":27369,"ts":326462710503,"ph":"X","cat":"ipc","name":"SyncChannel::Send","args":{"class":12,"line":535},"dur":61,"tdur":61,"tts":2717472},
-{"pid":27369,"tid":27369,"ts":326462710533,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2717503,"id":"0xaf8a6fbbfebbc614"},
-{"pid":27369,"tid":27369,"ts":326462710594,"ph":"X","cat":"cc","name":"SingleThreadProxy::DidSwapBuffersOnImplThread","args":{},"dur":31,"tdur":30,"tts":2717564},
-{"pid":27369,"tid":27369,"ts":326462710594,"ph":"X","cat":"compositor","name":"CompositorImpl::DidPostSwapBuffers","args":{},"dur":0,"tdur":0,"tts":2717564},
-{"pid":27369,"tid":27369,"ts":326462710747,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2717717},
-{"pid":27369,"tid":27369,"ts":326462719476,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2717930},
-{"pid":27369,"tid":27369,"ts":326462719506,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2717930,"id":"0xaf8a61f6feb47934"},
-{"pid":27369,"tid":27369,"ts":326462719537,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/common/gpu/client/gpu_channel_host.cc","src_func":"OnMessageReceived"},"dur":91,"tdur":91,"tts":2717961},
-{"pid":27369,"tid":27369,"ts":326462719567,"ph":"X","cat":"cc,benchmark","name":"SingleThreadProxy::DidSwapBuffersCompleteOnImplThread","args":{},"dur":61,"tdur":31,"tts":2717991},
-{"pid":27369,"tid":27369,"ts":326462719567,"ph":"X","cat":"compositor","name":"CompositorImpl::DidCompleteSwapBuffers","args":{},"dur":31,"tdur":31,"tts":2717991},
-{"pid":27369,"tid":27369,"ts":326462719689,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2718113},
-{"pid":27369,"tid":27369,"ts":326462722680,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2718419},
-{"pid":27369,"tid":27369,"ts":326462722741,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2718480},
-{"pid":27369,"tid":27369,"ts":326462722802,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":458,"tdur":244,"tts":2718541},
-{"pid":27369,"tid":27369,"ts":326462722802,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::SendBeginFrame","args":{"frame_time_us":326462721791},"dur":336,"tdur":122,"tts":2718541},
-{"pid":27369,"tid":27369,"ts":326462722833,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":305,"tdur":92,"tts":2718571},
-{"pid":27369,"tid":27369,"ts":326462722864,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2718602,"id":"0xaf8a6fb4febbc614"},
-{"pid":27369,"tid":27369,"ts":326462723291,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2718815},
-{"pid":27369,"tid":27369,"ts":326462723413,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2718937},
-{"pid":27369,"tid":27369,"ts":326462723535,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2719090},
-{"pid":27369,"tid":27369,"ts":326462723565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2719090,"id":"0xaf8a61f7feb47934"},
-{"pid":27369,"tid":27369,"ts":326462723596,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":123,"tts":2719120},
-{"pid":27369,"tid":27369,"ts":326462723596,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1005},"dur":92,"tdur":92,"tts":2719120},
-{"pid":27369,"tid":27369,"ts":326462723657,"ph":"X","cat":"cc","name":"RenderWidgetHostViewAndroid::OnSetNeedsBeginFrames","args":{"enabled":false},"dur":31,"tdur":30,"tts":2719182},
-{"pid":27369,"tid":27369,"ts":326462723779,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2719334},
-{"pid":27369,"tid":27369,"ts":326462739039,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2719609},
-{"pid":27369,"tid":27369,"ts":326462739131,"ph":"B","cat":"Java","name":"VSync","args":{},"tts":2719700},
-{"pid":27369,"tid":27369,"ts":326462739161,"ph":"X","cat":"cc,benchmark","name":"RenderWidgetHostViewAndroid::OnVSync","args":{},"dur":31,"tdur":0,"tts":2719761},
-{"pid":27369,"tid":27369,"ts":326462739222,"ph":"E","cat":"Java","name":"VSync","args":{},"tts":2719792},
-{"pid":27369,"tid":27369,"ts":326462739314,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2719914},
-{"pid":27369,"tid":27369,"ts":326462832859,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2720311},
-{"pid":27369,"tid":27369,"ts":326462832859,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":0,"tts":2720311},
-{"pid":27369,"tid":27369,"ts":326462832951,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326462832},"tts":2720372,"id":"0xaf8a6490feb47934"},
-{"pid":27369,"tid":27369,"ts":326462832981,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/input/timeout_monitor.cc","src_func":"StartImpl"},"dur":61,"tdur":61,"tts":2720402},
-{"pid":27369,"tid":27369,"ts":326462833256,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2720677},
-{"pid":27369,"tid":27369,"ts":326462922650,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2720952},
-{"pid":27369,"tid":27369,"ts":326462922680,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2720982,"id":"0xaf8a61f0feb47934"},
-{"pid":27369,"tid":27369,"ts":326462922680,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":702,"tdur":550,"tts":2720982},
-{"pid":27369,"tid":27369,"ts":326462922680,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":711},"dur":702,"tdur":519,"tts":2721013},
-{"pid":27369,"tid":27369,"ts":326462922772,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2721074,"id":"0xaf8a6fb5febbc614"},
-{"pid":27369,"tid":27369,"ts":326462923230,"ph":"S","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"NULL"},"tts":2721379,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326462923443,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2721593},
-{"pid":27369,"tid":27369,"ts":326462923535,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2721684},
-{"pid":27369,"tid":27369,"ts":326462923565,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2721715,"id":"0xaf8a61f1feb47934"},
-{"pid":27369,"tid":27369,"ts":326462923565,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":91,"tts":2721715},
-{"pid":27369,"tid":27369,"ts":326462923565,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1115},"dur":92,"tdur":91,"tts":2721715},
-{"pid":27369,"tid":27369,"ts":326462923718,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2721867},
-{"pid":27369,"tid":27369,"ts":326462925153,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2721989},
-{"pid":27369,"tid":27369,"ts":326462925153,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2721989,"id":"0xaf8a61f2feb47934"},
-{"pid":27369,"tid":27369,"ts":326462925183,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":31,"tdur":30,"tts":2722020},
-{"pid":27369,"tid":27369,"ts":326462925183,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":749},"dur":31,"tdur":30,"tts":2722020},
-{"pid":27369,"tid":27369,"ts":326462925305,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2722142},
-{"pid":27369,"tid":27369,"ts":326462925397,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2722234},
-{"pid":27369,"tid":27407,"ts":326462923169,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":749},"dur":91,"tdur":91,"tts":2008057},
-{"pid":27369,"tid":27407,"ts":326462923199,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008087,"id":"0xccc66902","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462923199,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008118,"id":"0xaf8a61f2feb47934"},
-{"pid":27369,"tid":27407,"ts":326462923901,"ph":"X","cat":"toplevel","name":"MessagePumpLibevent::OnLibeventNotification","args":{"fd":97},"dur":1160,"tdur":733,"tts":2008209},
-{"pid":27369,"tid":27407,"ts":326462923932,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1402},"dur":519,"tdur":92,"tts":2008240},
-{"pid":27369,"tid":27407,"ts":326462923932,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008240,"id":"0xccc66a02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462923962,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008271,"id":"0xaf8a61f3feb47934"},
-{"pid":27369,"tid":27407,"ts":326462924481,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":694},"dur":153,"tdur":122,"tts":2008393},
-{"pid":27369,"tid":27407,"ts":326462924512,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008393,"id":"0xccc66b02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462924603,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008484,"id":"0xaf8a618cfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462924664,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":61,"tdur":61,"tts":2008545},
-{"pid":27369,"tid":27407,"ts":326462924664,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008545,"id":"0xccc66c02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462924695,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008576,"id":"0xaf8a618dfeb47934"},
-{"pid":27369,"tid":27407,"ts":326462924725,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":761},"dur":92,"tdur":92,"tts":2008606},
-{"pid":27369,"tid":27407,"ts":326462924756,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008637,"id":"0xccc66d02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462924756,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008637,"id":"0xaf8a618efeb47934"},
-{"pid":27369,"tid":27407,"ts":326462924817,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":766},"dur":91,"tdur":91,"tts":2008698},
-{"pid":27369,"tid":27407,"ts":326462924817,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008698,"id":"0xccc66e02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462924847,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008728,"id":"0xaf8a618ffeb47934"},
-{"pid":27369,"tid":27407,"ts":326462924908,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":2,"line":1517},"dur":61,"tdur":61,"tts":2008789},
-{"pid":27369,"tid":27407,"ts":326462924908,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008789,"id":"0xccc66f02","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462924939,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008820,"id":"0xaf8a6188feb47934"},
-{"pid":27369,"tid":27407,"ts":326462924969,"ph":"X","cat":"ipc,toplevel","name":"ChannelReader::DispatchInputData","args":{"class":1,"line":714},"dur":92,"tdur":61,"tts":2008881},
-{"pid":27369,"tid":27407,"ts":326462925000,"ph":"f","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2008881,"id":"0xccc67002","bp":"e"},
-{"pid":27369,"tid":27407,"ts":326462925000,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2008881,"id":"0xaf8a6189feb47934"},
-{"pid":27369,"tid":27407,"ts":326462929914,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2009034,"id":"0xaf8a6fb6febbc614"},
-{"pid":27369,"tid":27407,"ts":326462929944,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../content/browser/renderer_host/render_view_host_impl.cc","src_func":"SetIsLoading"},"dur":92,"tdur":31,"tts":2009064},
-{"pid":27369,"tid":27407,"ts":326463031028,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2009247,"id":"0xaf8a6fb7febbc614"},
-{"pid":27369,"tid":27407,"ts":326463031028,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"Send"},"dur":61,"tdur":61,"tts":2009247},
-{"pid":27369,"tid":27407,"ts":326463031028,"ph":"s","cat":"disabled-by-default-ipc.flow","name":"IPC","args":{},"tts":2009278,"id":"0xba471d02"},
-{"pid":27369,"tid":27407,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.013167177459218983}},
-{"pid":27369,"tid":27369,"ts":326462925427,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2722264,"id":"0xaf8a61f3feb47934"},
-{"pid":27369,"tid":27369,"ts":326462925427,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2722264},{"pid":27369,"tid":27369,"ts":326462925458,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1402},"dur":30,"tdur":30,"tts":2722295},
-{"pid":27369,"tid":27369,"ts":326462925549,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2722386},
-{"pid":27369,"tid":27369,"ts":326462925610,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2722478},
-{"pid":27369,"tid":27369,"ts":326462925641,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2722478,"id":"0xaf8a618cfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462925641,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":2716,"tdur":2533,"tts":2722478},
-{"pid":27369,"tid":27369,"ts":326462925671,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":694},"dur":2656,"tdur":2472,"tts":2722508},
-{"pid":27369,"tid":27369,"ts":326462925732,"ph":"X","cat":"navigation","name":"RenderFrameHostImpl::OnDidCommitProvisionalLoad","args":{"url":"https://www.google.com/maps/@37.3606361,-122.1332344,13z?hl=en"},"dur":2595,"tdur":2350,"tts":2722600},
-{"pid":27369,"tid":27369,"ts":326462926556,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":31,"tdur":31,"tts":2723393},
-{"pid":27369,"tid":27369,"ts":326462926556,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":2723393},
-{"pid":27369,"tid":27369,"ts":326462926770,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2723607,"id":"0xaf8a646afd55cb44"},
-{"pid":27369,"tid":27369,"ts":326462926831,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2723668,"id":"0xaf8a646bfd55cb44"},
-{"pid":27369,"tid":27369,"ts":326462926923,"ph":"X","cat":"browser","name":"PrerenderManagerFactory::GetForProfile","args":{},"dur":30,"tdur":30,"tts":2723760},
-{"pid":27369,"tid":27369,"ts":326462926953,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":0,"tdur":0,"tts":2723790},
-{"pid":27369,"tid":27369,"ts":326462926984,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":30,"tdur":30,"tts":2723821},
-{"pid":27369,"tid":27369,"ts":326462927014,"ph":"X","cat":"browser,startup","name":"KeyedServiceFactory::GetServiceForContext","args":{},"dur":31,"tdur":31,"tts":2723851},
-{"pid":27369,"tid":27369,"ts":326462927075,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2723912,"id":"0xaf8a618afeb47934"},
-{"pid":27369,"tid":27369,"ts":326462927136,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2723973,"id":"0xaf8a6419feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326462927167,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2724004,"id":"0xaf8a641afeb5e97c"},
-{"pid":27369,"tid":27369,"ts":326462927869,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2724706,"id":"0xaf8a641bfeb5e97c"},
-{"pid":27369,"tid":27369,"ts":326462928205,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"SequencedWorkerPool::PostTask","args":{},"tts":2724858,"id":"0xaf8a6414feb5e97c"},
-{"pid":27369,"tid":27369,"ts":326462928235,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2724919,"id":"0xaf8a6464fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326462928449,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725102},
-{"pid":27369,"tid":27369,"ts":326462928571,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725225},
-{"pid":27369,"tid":27369,"ts":326462928601,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2725255,"id":"0xaf8a618dfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462928601,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":92,"tdur":92,"tts":2725255},
-{"pid":27369,"tid":27369,"ts":326462928632,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":61,"tdur":30,"tts":2725286},
-{"pid":27369,"tid":27369,"ts":326462928754,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725408},
-{"pid":27369,"tid":27369,"ts":326462928876,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725530},
-{"pid":27369,"tid":27369,"ts":326462928907,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2725560,"id":"0xaf8a618efeb47934"},
-{"pid":27369,"tid":27369,"ts":326462928907,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":92,"tts":2725560},
-{"pid":27369,"tid":27369,"ts":326462928907,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":761},"dur":122,"tdur":92,"tts":2725560},
-{"pid":27369,"tid":27369,"ts":326462929090,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725713},
-{"pid":27369,"tid":27369,"ts":326462929151,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725804},
-{"pid":27369,"tid":27369,"ts":326462929181,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2725804,"id":"0xaf8a618ffeb47934"},
-{"pid":27369,"tid":27369,"ts":326462929181,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":61,"tdur":61,"tts":2725804},
-{"pid":27369,"tid":27369,"ts":326462929212,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":766},"dur":30,"tdur":30,"tts":2725835},
-{"pid":27369,"tid":27369,"ts":326462929303,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725927},
-{"pid":27369,"tid":27369,"ts":326462929364,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2725988},
-{"pid":27369,"tid":27369,"ts":326462929395,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2726018,"id":"0xaf8a6188feb47934"},
-{"pid":27369,"tid":27369,"ts":326462929395,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":122,"tdur":122,"tts":2726018},
-{"pid":27369,"tid":27369,"ts":326462929395,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":2,"line":1517},"dur":122,"tdur":122,"tts":2726018},
-{"pid":27369,"tid":27369,"ts":326462929578,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2726201},
-{"pid":27369,"tid":27369,"ts":326462929639,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2726262},
-{"pid":27369,"tid":27369,"ts":326462929670,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2726293,"id":"0xaf8a6189feb47934"},
-{"pid":27369,"tid":27369,"ts":326462929670,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../ipc/ipc_channel_proxy.cc","src_func":"OnMessageReceivedNoFilter"},"dur":457,"tdur":458,"tts":2726293},
-{"pid":27369,"tid":27369,"ts":326462929670,"ph":"X","cat":"ipc","name":"ChannelProxy::Context::OnDispatchMessage","args":{"class":1,"line":714},"dur":457,"tdur":458,"tts":2726293},
-{"pid":27369,"tid":27369,"ts":326462929853,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2726476,"id":"0xaf8a6fb6febbc614"},
-{"pid":27369,"tid":27369,"ts":326462929975,"ph":"F","cat":"browser,navigation","name":"WebContentsImpl Loading","args":{"URL":"https://www.google.com/maps/@37.3606361,-122.1332344,13z?hl=en"},"tts":2726598,"id":"0xaf8a644cfd540a2c"},
-{"pid":27369,"tid":27369,"ts":326462929975,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":61,"tdur":61,"tts":2726598},
-{"pid":27369,"tid":27369,"ts":326462930219,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2726842},
-{"pid":27369,"tid":27369,"ts":326462930310,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2726934},
-{"pid":27369,"tid":27369,"ts":326462930372,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2726995,"id":"0xaf8a618bfeb47934"},
-{"pid":27369,"tid":27369,"ts":326462930372,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":122,"tdur":122,"tts":2726995},
-{"pid":27369,"tid":27369,"ts":326462930433,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2727086,"id":"0xaf8a6465fd55cb44"},
-{"pid":27369,"tid":27369,"ts":326462930585,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727208},
-{"pid":27369,"tid":27369,"ts":326462930646,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727269},
-{"pid":27369,"tid":27369,"ts":326462930677,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2727300,"id":"0xaf8a6184feb47934"},
-{"pid":27369,"tid":27369,"ts":326462930677,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"GetFaviconsForURL"},"dur":61,"tdur":61,"tts":2727300},
-{"pid":27369,"tid":27369,"ts":326462930799,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727422},
-{"pid":27369,"tid":27369,"ts":326462930860,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727483},
-{"pid":27369,"tid":27369,"ts":326462930890,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2727514,"id":"0xaf8a6185feb47934"},
-{"pid":27369,"tid":27369,"ts":326462930890,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyURLVisited"},"dur":153,"tdur":152,"tts":2727514},
-{"pid":27369,"tid":27369,"ts":326462931104,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727727},
-{"pid":27369,"tid":27369,"ts":326462931165,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727788},
-{"pid":27369,"tid":27369,"ts":326462931196,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2727819,"id":"0xaf8a6186feb47934"},
-{"pid":27369,"tid":27369,"ts":326462931196,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"NotifyFaviconChanged"},"dur":30,"tdur":30,"tts":2727819},
-{"pid":27369,"tid":27369,"ts":326462931287,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727910},
-{"pid":27369,"tid":27369,"ts":326462931348,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2727971},
-{"pid":27369,"tid":27369,"ts":326462931379,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":0},"tts":2728002,"id":"0xaf8a6187feb47934"},
-{"pid":27369,"tid":27369,"ts":326462931379,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/history/core/browser/history_service.cc","src_func":"UpdateFaviconMappingsAndFetch"},"dur":885,"tdur":885,"tts":2728002},
-{"pid":27369,"tid":27369,"ts":326462932325,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2728948},
-{"pid":27369,"tid":27369,"ts":326462932416,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2729040},
-{"pid":27369,"tid":27369,"ts":326462932477,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2729101},
-{"pid":27369,"tid":27369,"ts":326462939131,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2729345},
-{"pid":27369,"tid":27369,"ts":326462947036,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2735052},
-{"pid":27369,"tid":27369,"ts":326462955887,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2735357},
-{"pid":27369,"tid":27369,"ts":326462959396,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2738287},
-{"pid":27369,"tid":27369,"ts":326462972612,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2738623},
-{"pid":27369,"tid":27369,"ts":326462975450,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2740912},
-{"pid":27369,"tid":27369,"ts":326462989276,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2741187},
-{"pid":27369,"tid":27369,"ts":326462994129,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2744086},
-{"pid":27369,"tid":27369,"ts":326463008412,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2744422},
-{"pid":27369,"tid":27369,"ts":326463011800,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2746894},
-{"pid":27369,"tid":27369,"ts":326463026083,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2747230},
-{"pid":27369,"tid":27369,"ts":326463030570,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2749946},
-{"pid":27369,"tid":27369,"ts":326463030692,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2750038},
-{"pid":27369,"tid":27369,"ts":326463030723,"ph":"f","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{"queue_duration":-326463027},"tts":2750068,"id":"0xaf8a618afeb47934"},
-{"pid":27369,"tid":27369,"ts":326463030723,"ph":"X","cat":"toplevel","name":"MessageLoop::RunTask","args":{"src_file":"../../components/visitedlink/browser/visitedlink_event_listener.cc","src_func":"Add"},"dur":1434,"tdur":214,"tts":2750068},
-{"pid":27369,"tid":27369,"ts":326463030753,"ph":"X","cat":"renderer_host","name":"RenderProcessHostImpl::Send","args":{},"dur":1404,"tdur":183,"tts":2750099},
-{"pid":27369,"tid":27369,"ts":326463030784,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2750129,"id":"0xaf8a6fb7febbc614"},
-{"pid":27369,"tid":27369,"ts":326463032279,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2750404},
-{"pid":27369,"tid":27369,"ts":326463059564,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2750709},
-{"pid":27369,"tid":27369,"ts":326463062952,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2753303},
-{"pid":27369,"tid":27369,"ts":326463077663,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2753609},
-{"pid":27369,"tid":27369,"ts":326463077785,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2753731},
-{"pid":27369,"tid":27369,"ts":326463140046,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2753914},
-{"pid":27369,"tid":27369,"ts":326463140046,"ph":"X","cat":"trace_event_overhead","name":"overhead","args":{},"dur":397,"tdur":0,"tts":2753914},
-{"pid":27369,"tid":27369,"ts":326463140840,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2754097},
-{"pid":27369,"tid":27369,"ts":326463156100,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2754372},
-{"pid":27369,"tid":27369,"ts":326463156558,"ph":"E","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2754707},
-{"pid":27369,"tid":27369,"ts":326463171544,"ph":"B","cat":"toplevel","name":"Looper.dispatchMessage","args":{},"tts":2754982},
-{"pid":27369,"tid":27369,"ts":326463171727,"ph":"s","cat":"disabled-by-default-toplevel.flow","name":"MessageLoop::PostTask","args":{},"tts":2755165,"id":"0xaf8a644afebb3284"},
-{"pid":27369,"tid":27369,"ts":0,"ph":"M","cat":"__metadata","name":"overhead","args":{"average_overhead":0.0122295418749572}},
-{"pid":27369,"tid":27369,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrBrowserMain"}},
-{"pid":27369,"tid":27403,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_FileThread"}}]}
\ No newline at end of file
diff --git a/catapult/systrace/bin/OWNERS b/catapult/systrace/bin/OWNERS
index c288ed6..374072a 100644
--- a/catapult/systrace/bin/OWNERS
+++ b/catapult/systrace/bin/OWNERS
@@ -2,3 +2,5 @@
 per-file adb_profile_chrome_startup=file://systrace/profile_chrome/OWNERS
 
 per-file systrace=file://systrace/systrace/OWNERS
+
+ccraik@google.com
diff --git a/catapult/systrace/bin/adb_profile_chrome_startup b/catapult/systrace/bin/adb_profile_chrome_startup
index 0e99d18..fed3416 100755
--- a/catapult/systrace/bin/adb_profile_chrome_startup
+++ b/catapult/systrace/bin/adb_profile_chrome_startup
@@ -26,6 +26,11 @@
 from devil.android import device_utils
 
 
+_CHROME_STARTUP_MODULES = [atrace_tracing_agent,
+                           chrome_startup_tracing_agent]
+_DEFAULT_CHROME_CATEGORIES = '_DEFAULT_CHROME_CATEGORIES'
+
+
 def _CreateOptionParser():
   parser = optparse.OptionParser(description='Record about://tracing profiles '
                                  'from Android browsers startup, combined with '
@@ -33,15 +38,6 @@
                                  '/developers/how-tos/trace-event-profiling-'
                                  'tool for detailed instructions for '
                                  'profiling.')
-  parser.add_option('--url', help='URL to visit on startup. Default: '
-                    'https://www.google.com. An empty URL launches Chrome with'
-                    ' a MAIN action instead of VIEW.',
-                    default='https://www.google.com', metavar='URL')
-  parser.add_option('--cold', help='Flush the OS page cache before starting the'
-                    ' browser. Note that this require a device with root '
-                    'access.', default=False, action='store_true')
-  parser.add_option_group(flags.AtraceOptions(parser))
-  parser.add_option_group(flags.OutputOptions(parser))
 
   browsers = sorted(profiler.GetSupportedBrowsers().keys())
   parser.add_option('-b', '--browser', help='Select among installed browsers. '
@@ -54,7 +50,12 @@
                     'with gzip. ', action='store_true')
   parser.add_option('-t', '--time', help='Stops tracing after N seconds, 0 to '
                     'manually stop (startup trace ends after at most 5s).',
-                    default=5, metavar='N', type='int')
+                    default=5, metavar='N', type='int', dest='trace_time')
+
+  parser.add_option_group(chrome_startup_tracing_agent.add_options(parser))
+  parser.add_option_group(atrace_tracing_agent.add_options(parser))
+  parser.add_option_group(flags.OutputOptions(parser))
+
   return parser
 
 
@@ -72,28 +73,26 @@
   device = devices[0]
   package_info = profiler.GetSupportedBrowsers()[options.browser]
 
+  options.device = device
+  options.package_info = package_info
+
+  # TODO(washingtonp): Once Systrace uses all of the profile_chrome agents,
+  # manually setting these options will no longer be necessary and should be
+  # removed.
+  options.ring_buffer = False
+  options.trace_memory = False
+  options.chrome_categories = _DEFAULT_CHROME_CATEGORIES
+
   if options.atrace_categories in ['list', 'help']:
     ui.PrintMessage('\n'.join(
         atrace_tracing_agent.AtraceAgent.GetCategories(device)))
     return 0
-  atrace_categories = (options.atrace_categories.split(',')
-                         if options.atrace_categories else [])
-  enabled_agents = []
-  # Enable the atrace and chrome agents. The atrace agent should go
-  # first because otherwise the resulting traces miss early atrace data.
-  if atrace_categories:
-    enabled_agents.append(atrace_tracing_agent.AtraceAgent(
-        device, atrace_categories, False))
-  enabled_agents.append(
-      chrome_startup_tracing_agent.ChromeStartupTracingAgent(
-          device, package_info, options.cold, options.url))
-  if options.output:
-    options.output = os.path.expanduser(options.output)
-  result = profiler.CaptureProfile(enabled_agents,
-                                   options.time,
-                                   output=options.output,
+  result = profiler.CaptureProfile(options,
+                                   options.trace_time,
+                                   _CHROME_STARTUP_MODULES,
+                                   output=options.output_file,
                                    compress=options.compress,
-                                   write_json=options.json)
+                                   write_json=options.write_json)
   if options.view:
     if sys.platform == 'darwin':
       os.system('/usr/bin/open %s' % os.path.abspath(result))
diff --git a/catapult/systrace/bin/run_tests b/catapult/systrace/bin/run_tests
index 823b9f2..4944c36 100755
--- a/catapult/systrace/bin/run_tests
+++ b/catapult/systrace/bin/run_tests
@@ -22,9 +22,8 @@
   parser.add_option("-d", "--device", dest="device",
                     help="device the test runs on", metavar="DEVICE")
   options, _args = parser.parse_args()  # pylint: disable=unused-variable
-  systrace_package_path = os.path.join(_SYSTRACE_DIR, 'systrace')
   unfiltered_suite = unittest.TestLoader().discover(
-      systrace_package_path,
+      _SYSTRACE_DIR,
       pattern = '*_unittest.py',
       top_level_dir=_SYSTRACE_DIR)
   suite = unittest.TestSuite()
diff --git a/catapult/systrace/profile_chrome/agents_unittest.py b/catapult/systrace/profile_chrome/agents_unittest.py
index 527162c..8a22381 100644
--- a/catapult/systrace/profile_chrome/agents_unittest.py
+++ b/catapult/systrace/profile_chrome/agents_unittest.py
@@ -8,6 +8,7 @@
 
 from devil.android import device_utils
 from devil.android.sdk import intent
+from devil.android.sdk import keyevent
 
 
 class BaseAgentTest(unittest.TestCase):
@@ -17,8 +18,28 @@
     self.package_info = profiler.GetSupportedBrowsers()[self.browser]
     self.device = devices[0]
 
-    self.device.ForceStop(self.package_info.package)
+    curr_browser = self.GetChromeProcessID()
+    if curr_browser == None:
+      self.StartBrowser()
+
+  def StartBrowser(self):
+    # Turn on the device screen.
+    self.device.SetScreen(True)
+
+    # Unlock device.
+    self.device.SendKeyEvent(keyevent.KEYCODE_MENU)
+
+    # Start browser.
     self.device.StartActivity(
-        intent.Intent(activity=self.package_info.activity,
-                      package=self.package_info.package),
-        blocking=True)
+      intent.Intent(activity=self.package_info.activity,
+                    package=self.package_info.package,
+                    data='about:blank',
+                    extras={'create_new_tab': True}),
+      blocking=True, force_stop=True)
+
+  def GetChromeProcessID(self):
+    chrome_processes = self.device.GetPids(self.package_info.package)
+    if (self.package_info.package in chrome_processes and
+        len(chrome_processes[self.package_info.package]) > 0):
+      return chrome_processes[self.package_info.package][0]
+    return None
diff --git a/catapult/systrace/profile_chrome/atrace_tracing_agent.py b/catapult/systrace/profile_chrome/atrace_tracing_agent.py
index c9ce8e4..c98906f 100644
--- a/catapult/systrace/profile_chrome/atrace_tracing_agent.py
+++ b/catapult/systrace/profile_chrome/atrace_tracing_agent.py
@@ -2,6 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import optparse
 import py_utils
 import threading
 import zlib
@@ -22,18 +23,22 @@
 # Interval in seconds for sampling atrace data.
 _ATRACE_INTERVAL = 15
 
+# If a custom list of categories is not specified, traces will include
+# these categories (if available on the device).
+_DEFAULT_CATEGORIES = 'sched gfx view dalvik webview input disk am wm'.split()
+
 _TRACING_ON_PATH = '/sys/kernel/debug/tracing/tracing_on'
 
 
 class AtraceAgent(tracing_agents.TracingAgent):
-  def __init__(self, device, categories, ring_buffer):
+  def __init__(self, device, ring_buffer):
     tracing_agents.TracingAgent.__init__(self)
     self._device = device
-    self._categories = categories
     self._ring_buffer = ring_buffer
     self._done = threading.Event()
     self._thread = None
     self._trace_data = None
+    self._categories = None
 
   def __repr__(self):
     return 'atrace'
@@ -43,13 +48,16 @@
     return device.RunShellCommand('atrace --list_categories')
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
+    self._categories = _ComputeAtraceCategories(config)
     self._thread = threading.Thread(target=self._CollectData)
     self._thread.start()
+    return True
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
   def StopAgentTracing(self, timeout=None):
     self._done.set()
+    return True
 
   @py_utils.Timeout(tracing_agents.GET_RESULTS_TIMEOUT)
   def GetResults(self, timeout=None):
@@ -61,6 +69,7 @@
     return False
 
   def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    # pylint: disable=unused-argument
     assert self.SupportsExplicitClockSync(), ('Clock sync marker cannot be '
         'recorded since explicit clock sync is not supported.')
 
@@ -117,3 +126,39 @@
 
     # Skip the initial newline.
     return trace_data[1:]
+
+
+class AtraceConfig(tracing_agents.TracingConfig):
+  def __init__(self, atrace_categories, device, ring_buffer):
+    tracing_agents.TracingConfig.__init__(self)
+    self.atrace_categories = atrace_categories
+    self.device = device
+    self.ring_buffer = ring_buffer
+
+
+def try_create_agent(config):
+  if config.atrace_categories:
+    return AtraceAgent(config.device, config.ring_buffer)
+  return None
+
+def add_options(parser):
+  atrace_opts = optparse.OptionGroup(parser, 'Atrace tracing options')
+  atrace_opts.add_option('-s', '--systrace', help='Capture a systrace with '
+                           'the chosen comma-delimited systrace categories. You'
+                           ' can also capture a combined Chrome + systrace by '
+                           'enabling both types of categories. Use "list" to '
+                           'see the available categories. Systrace is disabled'
+                           ' by default. Note that in this case, Systrace is '
+                           'synonymous with Atrace.',
+                           metavar='ATRACE_CATEGORIES',
+                           dest='atrace_categories', default='')
+  return atrace_opts
+
+def get_config(options):
+  return AtraceConfig(options.atrace_categories, options.device,
+                      options.ring_buffer)
+
+def _ComputeAtraceCategories(config):
+  if not config.atrace_categories:
+    return _DEFAULT_CATEGORIES
+  return config.atrace_categories.split(',')
diff --git a/catapult/systrace/profile_chrome/atrace_tracing_agent_unittest.py b/catapult/systrace/profile_chrome/atrace_tracing_agent_unittest.py
index 8460e9b..24f3c7e 100644
--- a/catapult/systrace/profile_chrome/atrace_tracing_agent_unittest.py
+++ b/catapult/systrace/profile_chrome/atrace_tracing_agent_unittest.py
@@ -4,24 +4,30 @@
 
 from profile_chrome import agents_unittest
 from profile_chrome import atrace_tracing_agent
+from systrace import decorators
 
 
 class AtraceAgentTest(agents_unittest.BaseAgentTest):
+  @decorators.ClientOnlyTest
   def testGetCategories(self):
     categories = \
         atrace_tracing_agent.AtraceAgent.GetCategories(self.device)
     self.assertTrue(categories)
     assert 'gfx' in ' '.join(categories)
 
+  # TODO(washingtonp): This test throws an error on the Trybot servers when
+  # running profile_chrome's atrace agent. Once systrace uses profile_chrome's
+  # agent instead, this test may not longer need to be disabled.
+  @decorators.Disabled
   def testTracing(self):
-    categories = ['gfx', 'input', 'view']
+    categories = 'gfx,input,view'
     ring_buffer = False
     agent = atrace_tracing_agent.AtraceAgent(self.device,
-                                             categories,
                                              ring_buffer)
 
     try:
-      agent.StartAgentTracing(None, None)
+      agent.StartAgentTracing(atrace_tracing_agent.AtraceConfig(categories,
+          self.device, ring_buffer))
     finally:
       agent.StopAgentTracing()
     result = agent.GetResults()
diff --git a/catapult/systrace/profile_chrome/chrome_startup_tracing_agent.py b/catapult/systrace/profile_chrome/chrome_startup_tracing_agent.py
index a769300..a133a46 100644
--- a/catapult/systrace/profile_chrome/chrome_startup_tracing_agent.py
+++ b/catapult/systrace/profile_chrome/chrome_startup_tracing_agent.py
@@ -2,6 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import optparse
 import os
 import py_utils
 import re
@@ -56,9 +57,10 @@
     self._flag_changer.Restore()
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
     self._SetupTracing()
     self._logcat_monitor.Start()
+    return True
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
   def StopAgentTracing(self, timeout=None):
@@ -67,6 +69,7 @@
           self._trace_finish_re).group(1)
     finally:
       self._TearDownTracing()
+    return True
 
   @py_utils.Timeout(tracing_agents.GET_RESULTS_TIMEOUT)
   def GetResults(self, timeout=None):
@@ -84,5 +87,37 @@
     return False
 
   def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    # pylint: disable=unused-argument
     assert self.SupportsExplicitClockSync(), ('Clock sync marker cannot be '
         'recorded since explicit clock sync is not supported.')
+
+
+class ChromeStartupConfig(tracing_agents.TracingConfig):
+  def __init__(self, device, package_info, cold, url, chrome_categories):
+    tracing_agents.TracingConfig.__init__(self)
+    self.device = device
+    self.package_info = package_info
+    self.cold = cold
+    self.url = url
+    self.chrome_categories = chrome_categories
+
+
+def try_create_agent(config):
+  return ChromeStartupTracingAgent(config.device, config.package_info,
+                                   config.cold, config.url)
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Chrome startup tracing')
+  options.add_option('--url', help='URL to visit on startup. Default: '
+                     'https://www.google.com. An empty URL launches Chrome '
+                     'with a MAIN action instead of VIEW.',
+                     default='https://www.google.com', metavar='URL')
+  options.add_option('--cold', help='Flush the OS page cache before starting '
+                     'the browser. Note that this require a device with root '
+                     'access.', default=False, action='store_true')
+  return options
+
+def get_config(options):
+  return ChromeStartupConfig(options.device, options.package_info,
+                             options.cold, options.url,
+                             options.chrome_categories)
diff --git a/catapult/systrace/profile_chrome/chrome_startup_tracing_agent_unittest.py b/catapult/systrace/profile_chrome/chrome_startup_tracing_agent_unittest.py
index 6c83c74..85732da 100644
--- a/catapult/systrace/profile_chrome/chrome_startup_tracing_agent_unittest.py
+++ b/catapult/systrace/profile_chrome/chrome_startup_tracing_agent_unittest.py
@@ -6,15 +6,21 @@
 
 from profile_chrome import chrome_startup_tracing_agent
 from profile_chrome import agents_unittest
+from systrace import decorators
 
 
 class ChromeAgentTest(agents_unittest.BaseAgentTest):
+  # TODO(washingtonp): This test seems to fail on the version of Android
+  # currently on the Trybot servers (KTU84P), although it works on Android M.
+  # Either upgrade the version of Android on the Trybot servers or determine
+  # if there is a way to run this agent on Android KTU84P.
+  @decorators.Disabled
   def testTracing(self):
     agent = chrome_startup_tracing_agent.ChromeStartupTracingAgent(
         self.device, self.package_info, False, 'https://www.google.com')
 
     try:
-      agent.StartAgentTracing(None, None)
+      agent.StartAgentTracing(None)
     finally:
       agent.StopAgentTracing()
 
diff --git a/catapult/systrace/profile_chrome/chrome_tracing_agent.py b/catapult/systrace/profile_chrome/chrome_tracing_agent.py
index b13f5ea..656a559 100644
--- a/catapult/systrace/profile_chrome/chrome_tracing_agent.py
+++ b/catapult/systrace/profile_chrome/chrome_tracing_agent.py
@@ -3,27 +3,26 @@
 # found in the LICENSE file.
 
 import json
+import optparse
 import os
 import py_utils
 import re
 
 from devil.android import device_errors
 from devil.android.sdk import intent
-
 from systrace import trace_result
 from systrace import tracing_agents
 
 
+_DEFAULT_CHROME_CATEGORIES = '_DEFAULT_CHROME_CATEGORIES'
 _HEAP_PROFILE_MMAP_PROPERTY = 'heapprof.mmap'
 
 
 class ChromeTracingAgent(tracing_agents.TracingAgent):
-  def __init__(self, device, package_info,
-               categories, ring_buffer, trace_memory=False):
+  def __init__(self, device, package_info, ring_buffer, trace_memory=False):
     tracing_agents.TracingAgent.__init__(self)
     self._device = device
     self._package_info = package_info
-    self._categories = categories
     self._ring_buffer = ring_buffer
     self._logcat_monitor = self._device.GetLogcatMonitor()
     self._trace_file = None
@@ -33,6 +32,7 @@
        re.compile(r'Logging performance trace to file')
     self._trace_finish_re = \
        re.compile(r'Profiler finished[.] Results are in (.*)[.]')
+    self._categories = None
 
   def __repr__(self):
     return 'chrome trace'
@@ -62,7 +62,8 @@
     return list(record_categories), list(disabled_by_default_categories)
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
+    self._categories = _ComputeChromeCategories(config)
     self._logcat_monitor.Start()
     start_extras = {'categories': ','.join(self._categories)}
     if self._ring_buffer:
@@ -89,6 +90,7 @@
       raise RuntimeError(
           'Trace start marker not found. Possible causes: 1) Is the correct '
           'version of the browser running? 2) Is the browser already launched?')
+    return True
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
   def StopAgentTracing(self, timeout=None):
@@ -100,6 +102,7 @@
       self._is_tracing = False
     if self._trace_memory:
       self._device.SetProp(_HEAP_PROFILE_MMAP_PROPERTY, 0)
+    return True
 
   @py_utils.Timeout(tracing_agents.GET_RESULTS_TIMEOUT)
   def GetResults(self, timeout=None):
@@ -123,5 +126,90 @@
     return False
 
   def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    # pylint: disable=unused-argument
     assert self.SupportsExplicitClockSync(), ('Clock sync marker cannot be '
         'recorded since explicit clock sync is not supported.')
+
+
+class ChromeConfig(tracing_agents.TracingConfig):
+  def __init__(self, chrome_categories, trace_cc, trace_frame_viewer,
+               trace_ubercompositor, trace_gpu, trace_flow, trace_memory,
+               trace_scheduler, ring_buffer, device, package_info):
+    tracing_agents.TracingConfig.__init__(self)
+    self.chrome_categories = chrome_categories
+    self.trace_cc = trace_cc
+    self.trace_frame_viewer = trace_frame_viewer
+    self.trace_ubercompositor = trace_ubercompositor
+    self.trace_gpu = trace_gpu
+    self.trace_flow = trace_flow
+    self.trace_memory = trace_memory
+    self.trace_scheduler = trace_scheduler
+    self.ring_buffer = ring_buffer
+    self.device = device
+    self.package_info = package_info
+
+
+def try_create_agent(config):
+  if config.chrome_categories:
+    return ChromeTracingAgent(config.device, config.package_info,
+                              config.ring_buffer, config.trace_memory)
+  return None
+
+def add_options(parser):
+  chrome_opts = optparse.OptionGroup(parser, 'Chrome tracing options')
+  chrome_opts.add_option('-c', '--categories', help='Select Chrome tracing '
+                         'categories with comma-delimited wildcards, '
+                         'e.g., "*", "cat1*,-cat1a". Omit this option to trace '
+                         'Chrome\'s default categories. Chrome tracing can be '
+                         'disabled with "--categories=\'\'". Use "list" to '
+                         'see the available categories.',
+                         metavar='CHROME_CATEGORIES', dest='chrome_categories',
+                         default=_DEFAULT_CHROME_CATEGORIES)
+  chrome_opts.add_option('--trace-cc',
+                         help='Deprecated, use --trace-frame-viewer.',
+                         action='store_true')
+  chrome_opts.add_option('--trace-frame-viewer',
+                         help='Enable enough trace categories for '
+                         'compositor frame viewing.', action='store_true')
+  chrome_opts.add_option('--trace-ubercompositor',
+                         help='Enable enough trace categories for '
+                         'ubercompositor frame data.', action='store_true')
+  chrome_opts.add_option('--trace-gpu', help='Enable extra trace categories '
+                         'for GPU data.', action='store_true')
+  chrome_opts.add_option('--trace-flow', help='Enable extra trace categories '
+                         'for IPC message flows.', action='store_true')
+  chrome_opts.add_option('--trace-memory', help='Enable extra trace categories '
+                         'for memory profile. (tcmalloc required)',
+                         action='store_true')
+  chrome_opts.add_option('--trace-scheduler', help='Enable extra trace '
+                         'categories for scheduler state',
+                         action='store_true')
+  return chrome_opts
+
+def get_config(options):
+  return ChromeConfig(options.chrome_categories, options.trace_cc,
+                      options.trace_frame_viewer, options.trace_ubercompositor,
+                      options.trace_gpu, options.trace_flow,
+                      options.trace_memory, options.trace_scheduler,
+                      options.ring_buffer, options.device,
+                      options.package_info)
+
+def _ComputeChromeCategories(config):
+  categories = []
+  if config.trace_frame_viewer:
+    categories.append('disabled-by-default-cc.debug')
+  if config.trace_ubercompositor:
+    categories.append('disabled-by-default-cc.debug*')
+  if config.trace_gpu:
+    categories.append('disabled-by-default-gpu.debug*')
+  if config.trace_flow:
+    categories.append('disabled-by-default-toplevel.flow')
+  if config.trace_memory:
+    categories.append('disabled-by-default-memory')
+  if config.trace_scheduler:
+    categories.append('disabled-by-default-blink.scheduler')
+    categories.append('disabled-by-default-cc.debug.scheduler')
+    categories.append('disabled-by-default-renderer.scheduler')
+  if config.chrome_categories:
+    categories += config.chrome_categories.split(',')
+  return categories
diff --git a/catapult/systrace/profile_chrome/chrome_tracing_agent_unittest.py b/catapult/systrace/profile_chrome/chrome_tracing_agent_unittest.py
index edae8af..dc38759 100644
--- a/catapult/systrace/profile_chrome/chrome_tracing_agent_unittest.py
+++ b/catapult/systrace/profile_chrome/chrome_tracing_agent_unittest.py
@@ -6,10 +6,20 @@
 
 from profile_chrome import chrome_tracing_agent
 from profile_chrome import agents_unittest
+from systrace import decorators
 
 
 class ChromeAgentTest(agents_unittest.BaseAgentTest):
+  # TODO(washingtonp): This test seems to fail on the version of Android
+  # currently on the Trybot servers (KTU84P), although it works on Android M.
+  # Either upgrade the version of Android on the Trybot servers or determine
+  # if there is a way to run this agent on Android KTU84P.
+  @decorators.Disabled
   def testGetCategories(self):
+    curr_browser = self.GetChromeProcessID()
+    if curr_browser == None:
+      self.StartBrowser()
+
     categories = \
         chrome_tracing_agent.ChromeTracingAgent.GetCategories(
             self.device, self.package_info)
@@ -18,15 +28,24 @@
     self.assertTrue(categories[0])
     self.assertTrue(categories[1])
 
+  # TODO(washingtonp): This test is pretty flaky on the version of Android
+  # currently on the Trybot servers (KTU84P), although it works on Android M.
+  # Either upgrade the version of Android on the Trybot servers or determine
+  # if there is a way to run this agent on Android KTU84P.
+  @decorators.Disabled
   def testTracing(self):
+    curr_browser = self.GetChromeProcessID()
+    if curr_browser == None:
+      self.StartBrowser()
+
     categories = '*'
     ring_buffer = False
     agent = chrome_tracing_agent.ChromeTracingAgent(self.device,
                                                     self.package_info,
-                                                    categories,
                                                     ring_buffer)
-
-    agent.StartAgentTracing(None, None)
+    agent.StartAgentTracing(chrome_tracing_agent.ChromeConfig(categories, None,
+        None, None, None, None, None, None, ring_buffer, self.device,
+        self.package_info))
     agent.StopAgentTracing()
     result = agent.GetResults()
     json.loads(result.raw_data)
diff --git a/catapult/systrace/profile_chrome/ddms_tracing_agent.py b/catapult/systrace/profile_chrome/ddms_tracing_agent.py
index 3c6a232..276a3b9 100644
--- a/catapult/systrace/profile_chrome/ddms_tracing_agent.py
+++ b/catapult/systrace/profile_chrome/ddms_tracing_agent.py
@@ -2,6 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import optparse
 import os
 import py_utils
 import re
@@ -32,7 +33,7 @@
     return False
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
     self._output_file = (
         '/data/local/tmp/ddms-profile-%s' % util.GetTraceTimestamp())
     cmd = 'am profile start '
@@ -40,10 +41,12 @@
       cmd += '--sampling %d ' % _DDMS_SAMPLING_FREQUENCY_US
     cmd += '%s %s' % (self._package, self._output_file)
     self._device.RunShellCommand(cmd)
+    return True
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
   def StopAgentTracing(self, timeout=None):
     self._device.RunShellCommand('am profile stop %s' % self._package)
+    return True
 
   @py_utils.Timeout(tracing_agents.GET_RESULTS_TIMEOUT)
   def GetResults(self, timeout=None):
@@ -64,5 +67,29 @@
     return False
 
   def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    # pylint: disable=unused-argument
     assert self.SupportsExplicitClockSync(), ('Clock sync marker cannot be '
         'recorded since explicit clock sync is not supported.')
+
+
+class DdmsConfig(tracing_agents.TracingConfig):
+  def __init__(self, device, package_info, ddms):
+    tracing_agents.TracingConfig.__init__(self)
+    self.device = device
+    self.package_info = package_info
+    self.ddms = ddms
+
+
+def try_create_agent(config):
+  if config.ddms:
+    return DdmsAgent(config.device, config.package_info)
+  return None
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Java tracing')
+  options.add_option('--ddms', help='Trace Java execution using DDMS '
+                     'sampling.', action='store_true')
+  return options
+
+def get_config(options):
+  return DdmsConfig(options.device, options.package_info, options.ddms)
diff --git a/catapult/systrace/profile_chrome/ddms_tracing_agent_unittest.py b/catapult/systrace/profile_chrome/ddms_tracing_agent_unittest.py
index a8ccd50..c3878d0 100644
--- a/catapult/systrace/profile_chrome/ddms_tracing_agent_unittest.py
+++ b/catapult/systrace/profile_chrome/ddms_tracing_agent_unittest.py
@@ -4,14 +4,19 @@
 
 from profile_chrome import agents_unittest
 from profile_chrome import ddms_tracing_agent
+from systrace import decorators
 
 
 class DdmsAgentTest(agents_unittest.BaseAgentTest):
+  # TODO(washingtonp): The DDMS test is flaky on the Tryserver, but it
+  # consistently passes on Android M. Need to figure out why the result data
+  # does not start with '*version' and why the test is flaky.
+  @decorators.Disabled
   def testTracing(self):
     agent = ddms_tracing_agent.DdmsAgent(self.device, self.package_info)
 
     try:
-      agent.StartAgentTracing(None, None)
+      agent.StartAgentTracing(None)
     finally:
       agent.StopAgentTracing()
 
diff --git a/catapult/systrace/profile_chrome/fake_agent_1.py b/catapult/systrace/profile_chrome/fake_agent_1.py
new file mode 100644
index 0000000..62889f4
--- /dev/null
+++ b/catapult/systrace/profile_chrome/fake_agent_1.py
@@ -0,0 +1,69 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import optparse
+import tempfile
+
+from systrace import trace_result
+from systrace import tracing_agents
+
+
+class FakeAgent(object):
+  def __init__(self, contents='fake-contents'):
+    self.contents = contents
+    self.stopped = False
+    self.filename = None
+    self.config = None
+    self.timeout = None
+
+  def StartAgentTracing(self, config, timeout=None):
+    self.config = config
+    self.timeout = timeout
+    return True
+
+  # pylint: disable=unused-argument
+  def StopAgentTracing(self, timeout=None):
+    self.stopped = True
+    return True
+
+  # pylint: disable=unused-argument
+  def GetResults(self, timeout=None):
+    trace_data = open(self._PullTrace()).read()
+    return trace_result.TraceResult('fakeData', trace_data)
+
+  def _PullTrace(self):
+    with tempfile.NamedTemporaryFile(delete=False) as f:
+      self.filename = f.name
+      f.write(self.contents)
+      return f.name
+
+  # pylint: disable=no-self-use
+  def SupportsExplicitClockSync(self):
+    return False
+
+  # pylint: disable=unused-argument, no-self-use
+  def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    print ('Clock sync marker cannot be recorded since explicit clock sync '
+           'is not supported.')
+
+  def __repr__(self):
+    return 'faketrace'
+
+
+class FakeConfig(tracing_agents.TracingConfig):
+  def __init__(self):
+    tracing_agents.TracingConfig.__init__(self)
+
+
+# pylint: disable=unused-argument
+def try_create_agent(config):
+  return FakeAgent()
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Fake options.')
+  return options
+
+# pylint: disable=unused-argument
+def get_config(options):
+  return FakeConfig()
diff --git a/catapult/systrace/profile_chrome/fake_agent_2.py b/catapult/systrace/profile_chrome/fake_agent_2.py
new file mode 100644
index 0000000..477b6c7
--- /dev/null
+++ b/catapult/systrace/profile_chrome/fake_agent_2.py
@@ -0,0 +1,68 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import optparse
+import tempfile
+
+from systrace import trace_result
+from systrace import tracing_agents
+
+
+class FakeAgent2(object):
+  def __init__(self, contents='fake-contents'):
+    self.contents = contents
+    self.stopped = False
+    self.config = None
+    self.filename = None
+
+  # pylint: disable=unused-argument
+  def StartAgentTracing(self, config, timeout=None):
+    self.config = config
+    return True
+
+  # pylint: disable=unused-argument
+  def StopAgentTracing(self, timeout=None):
+    self.stopped = True
+    return True
+
+  # pylint: disable=unused-argument
+  def GetResults(self, timeout=None):
+    trace_data = open(self._PullTrace()).read()
+    return trace_result.TraceResult('fakeDataTwo', trace_data)
+
+  def _PullTrace(self):
+    with tempfile.NamedTemporaryFile(delete=False) as f:
+      self.filename = f.name
+      f.write(self.contents)
+      return f.name
+
+  # pylint: disable=no-self-use
+  def SupportsExplicitClockSync(self):
+    return False
+
+  # pylint: disable=unused-argument, no-self-use
+  def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    print ('Clock sync marker cannot be recorded since explicit clock sync '
+           'is not supported.')
+
+  def __repr__(self):
+    return 'faketracetwo'
+
+
+class FakeConfig(tracing_agents.TracingConfig):
+  def __init__(self):
+    tracing_agents.TracingConfig.__init__(self)
+
+
+# pylint: disable=unused-argument
+def try_create_agent(config):
+  return FakeAgent2()
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Fake options.')
+  return options
+
+# pylint: disable=unused-argument
+def get_config(options):
+  return FakeConfig()
diff --git a/catapult/systrace/profile_chrome/flags.py b/catapult/systrace/profile_chrome/flags.py
index 1737353..c951123 100644
--- a/catapult/systrace/profile_chrome/flags.py
+++ b/catapult/systrace/profile_chrome/flags.py
@@ -4,25 +4,13 @@
 
 import optparse
 
-def AtraceOptions(parser):
-  atrace_opts = optparse.OptionGroup(parser, 'Systrace tracing options')
-  atrace_opts.add_option('-s', '--systrace', help='Capture a systrace with '
-                           'the chosen comma-delimited systrace categories. You'
-                           ' can also capture a combined Chrome + systrace by '
-                           'enabling both types of categories. Use "list" to '
-                           'see the available categories. Systrace is disabled'
-                           ' by default. Note that in this case, Systrace is '
-                           'synonymous with Atrace.',
-                           metavar='ATRACE_CATEGORIES',
-                           dest='atrace_categories', default='')
-  return atrace_opts
-
 
 def OutputOptions(parser):
   output_options = optparse.OptionGroup(parser, 'Output options')
-  output_options.add_option('-o', '--output', help='Save trace output to file.')
+  output_options.add_option('-o', '--output', dest='output_file',
+                            help='Save trace output to file.')
   output_options.add_option('--json', help='Save trace as raw JSON instead of '
-                            'HTML.', action='store_true')
+                            'HTML.', dest='write_json')
   output_options.add_option('--view', help='Open resulting trace file in a '
                             'browser.', action='store_true')
   return output_options
diff --git a/catapult/systrace/profile_chrome/main.py b/catapult/systrace/profile_chrome/main.py
index c1cf229..b448f92 100755
--- a/catapult/systrace/profile_chrome/main.py
+++ b/catapult/systrace/profile_chrome/main.py
@@ -21,51 +21,8 @@
 from devil.android import device_utils
 
 
-_DEFAULT_CHROME_CATEGORIES = '_DEFAULT_CHROME_CATEGORIES'
-
-
-def _ComputeChromeCategories(options):
-  categories = []
-  if options.trace_frame_viewer:
-    categories.append('disabled-by-default-cc.debug')
-  if options.trace_ubercompositor:
-    categories.append('disabled-by-default-cc.debug*')
-  if options.trace_gpu:
-    categories.append('disabled-by-default-gpu.debug*')
-  if options.trace_flow:
-    categories.append('disabled-by-default-toplevel.flow')
-  if options.trace_memory:
-    categories.append('disabled-by-default-memory')
-  if options.trace_scheduler:
-    categories.append('disabled-by-default-blink.scheduler')
-    categories.append('disabled-by-default-cc.debug.scheduler')
-    categories.append('disabled-by-default-renderer.scheduler')
-  if options.chrome_categories:
-    categories += options.chrome_categories.split(',')
-  return categories
-
-
-def _ComputeAtraceCategories(options):
-  if not options.atrace_categories:
-    return []
-  return options.atrace_categories.split(',')
-
-
-def _ComputePerfCategories(options):
-  if not perf_tracing_agent.PerfProfilerAgent.IsSupported():
-    return []
-  if not options.perf_categories:
-    return []
-  return options.perf_categories.split(',')
-
-
-def _OptionalValueCallback(default_value):
-  def callback(option, _, __, parser):  # pylint: disable=unused-argument
-    value = default_value
-    if parser.rargs and not parser.rargs[0].startswith('-'):
-      value = parser.rargs.pop(0)
-    setattr(parser.values, option.dest, value)
-  return callback
+_PROFILE_CHROME_AGENT_MODULES = [chrome_tracing_agent, ddms_tracing_agent,
+                                 perf_tracing_agent, atrace_tracing_agent]
 
 
 def _CreateOptionParser():
@@ -78,7 +35,7 @@
   timed_options = optparse.OptionGroup(parser, 'Timed tracing')
   timed_options.add_option('-t', '--time', help='Profile for N seconds and '
                           'download the resulting trace.', metavar='N',
-                           type='float')
+                           type='float', dest='trace_time')
   parser.add_option_group(timed_options)
 
   cont_options = optparse.OptionGroup(parser, 'Continuous tracing')
@@ -90,53 +47,6 @@
                           action='store_true')
   parser.add_option_group(cont_options)
 
-  chrome_opts = optparse.OptionGroup(parser, 'Chrome tracing options')
-  chrome_opts.add_option('-c', '--categories', help='Select Chrome tracing '
-                         'categories with comma-delimited wildcards, '
-                         'e.g., "*", "cat1*,-cat1a". Omit this option to trace '
-                         'Chrome\'s default categories. Chrome tracing can be '
-                         'disabled with "--categories=\'\'". Use "list" to '
-                         'see the available categories.',
-                         metavar='CHROME_CATEGORIES', dest='chrome_categories',
-                         default=_DEFAULT_CHROME_CATEGORIES)
-  chrome_opts.add_option('--trace-cc',
-                         help='Deprecated, use --trace-frame-viewer.',
-                         action='store_true')
-  chrome_opts.add_option('--trace-frame-viewer',
-                         help='Enable enough trace categories for '
-                         'compositor frame viewing.', action='store_true')
-  chrome_opts.add_option('--trace-ubercompositor',
-                         help='Enable enough trace categories for '
-                         'ubercompositor frame data.', action='store_true')
-  chrome_opts.add_option('--trace-gpu', help='Enable extra trace categories '
-                         'for GPU data.', action='store_true')
-  chrome_opts.add_option('--trace-flow', help='Enable extra trace categories '
-                         'for IPC message flows.', action='store_true')
-  chrome_opts.add_option('--trace-memory', help='Enable extra trace categories '
-                         'for memory profile. (tcmalloc required)',
-                         action='store_true')
-  chrome_opts.add_option('--trace-scheduler', help='Enable extra trace '
-                         'categories for scheduler state',
-                         action='store_true')
-  parser.add_option_group(chrome_opts)
-
-  parser.add_option_group(flags.AtraceOptions(parser))
-
-  if perf_tracing_agent.PerfProfilerAgent.IsSupported():
-    perf_opts = optparse.OptionGroup(parser, 'Perf profiling options')
-    perf_opts.add_option('-p', '--perf', help='Capture a perf profile with '
-                         'the chosen comma-delimited event categories. '
-                         'Samples CPU cycles by default. Use "list" to see '
-                         'the available sample types.', action='callback',
-                         default='', callback=_OptionalValueCallback('cycles'),
-                         metavar='PERF_CATEGORIES', dest='perf_categories')
-    parser.add_option_group(perf_opts)
-
-  ddms_options = optparse.OptionGroup(parser, 'Java tracing')
-  ddms_options.add_option('--ddms', help='Trace Java execution using DDMS '
-                          'sampling.', action='store_true')
-  parser.add_option_group(ddms_options)
-
   parser.add_option_group(flags.OutputOptions(parser))
 
   browsers = sorted(profiler.GetSupportedBrowsers().keys())
@@ -151,7 +61,12 @@
   parser.add_option('-d', '--device', help='The Android device ID to use, '
                     'defaults to the value of ANDROID_SERIAL environment '
                     'variable. If not specified, only 0 or 1 connected '
-                    'devices are supported.')
+                    'devices are supported.', dest='device_serial_number')
+
+  # Add options from profile_chrome agents.
+  for module in _PROFILE_CHROME_AGENT_MODULES:
+    parser.add_option_group(module.add_options(parser))
+
   return parser
 
 
@@ -170,9 +85,25 @@
   if options.verbose:
     logging.getLogger().setLevel(logging.DEBUG)
 
-  device = device_utils.DeviceUtils.HealthyDevices(device_arg=options.device)[0]
+  device = device_utils.DeviceUtils.HealthyDevices(device_arg=
+      options.device_serial_number)[0]
   package_info = profiler.GetSupportedBrowsers()[options.browser]
 
+  options.device = device
+  options.package_info = package_info
+
+  # Add options that are present in Systrace but not in profile_chrome (since
+  # they both use the same tracing controller).
+  # TODO(washingtonp): Once Systrace uses all of the profile_chrome agents,
+  # manually setting these options will no longer be necessary and should be
+  # removed.
+  options.list_categories = None
+  options.link_assets = None
+  options.asset_dir = None
+  options.timeout = None
+  options.collection_timeout = None
+  options.target = None
+
   if options.chrome_categories in ['list', 'help']:
     ui.PrintMessage('Collecting record categories list...', eol='')
     record_categories = []
@@ -203,54 +134,23 @@
         perf_tracing_agent.PerfProfilerAgent.GetCategories(device)))
     return 0
 
-  if not options.time and not options.continuous:
+  if not options.trace_time and not options.continuous:
     ui.PrintMessage('Time interval or continuous tracing should be specified.')
     return 1
 
-  chrome_categories = _ComputeChromeCategories(options)
-  atrace_categories = _ComputeAtraceCategories(options)
-  perf_categories = _ComputePerfCategories(options)
-
-  if chrome_categories and 'webview' in atrace_categories:
+  if options.chrome_categories and 'webview' in options.atrace_categories:
     logging.warning('Using the "webview" category in atrace together with '
                     'Chrome tracing results in duplicate trace events.')
 
-  enabled_agents = []
-  if chrome_categories:
-    enabled_agents.append(
-        chrome_tracing_agent.ChromeTracingAgent(device,
-                                                package_info,
-                                                chrome_categories,
-                                                options.ring_buffer,
-                                                options.trace_memory))
-  if atrace_categories:
-    enabled_agents.append(
-        atrace_tracing_agent.AtraceAgent(device,
-                                         atrace_categories,
-                                         options.ring_buffer))
-
-  if perf_categories:
-    enabled_agents.append(
-        perf_tracing_agent.PerfProfilerAgent(device,
-                                             perf_categories))
-
-  if options.ddms:
-    enabled_agents.append(
-        ddms_tracing_agent.DdmsAgent(device,
-                                     package_info))
-
-  if not enabled_agents:
-    ui.PrintMessage('No trace categories enabled.')
-    return 1
-
-  if options.output:
-    options.output = os.path.expanduser(options.output)
+  if options.output_file:
+    options.output_file = os.path.expanduser(options.output_file)
   result = profiler.CaptureProfile(
-      enabled_agents,
-      options.time if not options.continuous else 0,
-      output=options.output,
+      options,
+      options.trace_time if not options.continuous else 0,
+      _PROFILE_CHROME_AGENT_MODULES,
+      output=options.output_file,
       compress=options.compress,
-      write_json=options.json)
+      write_json=options.write_json)
   if options.view:
     if sys.platform == 'darwin':
       os.system('/usr/bin/open %s' % os.path.abspath(result))
diff --git a/catapult/systrace/profile_chrome/perf_tracing_agent.py b/catapult/systrace/profile_chrome/perf_tracing_agent.py
index 15dd5c0..dc03bb8 100644
--- a/catapult/systrace/profile_chrome/perf_tracing_agent.py
+++ b/catapult/systrace/profile_chrome/perf_tracing_agent.py
@@ -3,6 +3,7 @@
 # found in the LICENSE file.
 
 import logging
+import optparse
 import os
 import py_utils
 import signal
@@ -93,12 +94,12 @@
 
 
 class PerfProfilerAgent(tracing_agents.TracingAgent):
-  def __init__(self, device, categories):
+  def __init__(self, device):
     tracing_agents.TracingAgent.__init__(self)
     self._device = device
-    self._categories = categories
     self._perf_binary = self._PrepareDevice(device)
     self._perf_instance = None
+    self._categories = None
 
   def __repr__(self):
     return 'perf profile'
@@ -121,16 +122,19 @@
     return device.RunShellCommand('%s list' % perf_binary)
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
+    self._categories = _ComputePerfCategories(config)
     self._perf_instance = _PerfProfiler(self._device,
                                         self._perf_binary,
                                         self._categories)
+    return True
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
   def StopAgentTracing(self, timeout=None):
     if not self._perf_instance:
       return
     self._perf_instance.SignalAndWait()
+    return True
 
   @py_utils.Timeout(tracing_agents.GET_RESULTS_TIMEOUT)
   def GetResults(self, timeout=None):
@@ -202,5 +206,48 @@
     return False
 
   def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
+    # pylint: disable=unused-argument
     assert self.SupportsExplicitClockSync(), ('Clock sync marker cannot be '
         'recorded since explicit clock sync is not supported.')
+
+def _OptionalValueCallback(default_value):
+  def callback(option, _, __, parser):  # pylint: disable=unused-argument
+    value = default_value
+    if parser.rargs and not parser.rargs[0].startswith('-'):
+      value = parser.rargs.pop(0)
+    setattr(parser.values, option.dest, value)
+  return callback
+
+
+class PerfConfig(tracing_agents.TracingConfig):
+  def __init__(self, perf_categories, device):
+    tracing_agents.TracingConfig.__init__(self)
+    self.perf_categories = perf_categories
+    self.device = device
+
+
+def try_create_agent(config):
+  if config.perf_categories:
+    return PerfProfilerAgent(config.device)
+  return None
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Perf profiling options')
+  options.add_option('-p', '--perf', help='Capture a perf profile with '
+                     'the chosen comma-delimited event categories. '
+                     'Samples CPU cycles by default. Use "list" to see '
+                     'the available sample types.', action='callback',
+                     default='', callback=_OptionalValueCallback('cycles'),
+                     metavar='PERF_CATEGORIES', dest='perf_categories')
+  parser.add_option_group(options)
+  return options
+
+def get_config(options):
+  return PerfConfig(options.perf_categories, options.device)
+
+def _ComputePerfCategories(config):
+  if not PerfProfilerAgent.IsSupported():
+    return []
+  if not config.perf_categories:
+    return []
+  return config.perf_categories.split(',')
diff --git a/catapult/systrace/profile_chrome/perf_tracing_agent_unittest.py b/catapult/systrace/profile_chrome/perf_tracing_agent_unittest.py
index 1367e9b..8f8a7f7 100644
--- a/catapult/systrace/profile_chrome/perf_tracing_agent_unittest.py
+++ b/catapult/systrace/profile_chrome/perf_tracing_agent_unittest.py
@@ -7,9 +7,11 @@
 from profile_chrome import agents_unittest
 from profile_chrome import perf_tracing_agent
 from profile_chrome import ui
+from systrace import decorators
 
 
 class PerfProfilerAgentTest(agents_unittest.BaseAgentTest):
+  @decorators.ClientOnlyTest
   def testGetCategories(self):
     if not perf_tracing_agent.PerfProfilerAgent.IsSupported():
       return
@@ -17,16 +19,19 @@
         perf_tracing_agent.PerfProfilerAgent.GetCategories(self.device)
     assert 'cycles' in ' '.join(categories)
 
+  # TODO(washingtonp): Try enabling this test for the SimpleperfProfilerAgent,
+  # which will be added later.
+  @decorators.Disabled
   def testTracing(self):
     if not perf_tracing_agent.PerfProfilerAgent.IsSupported():
       return
     ui.EnableTestMode()
-    categories = ['cycles']
-    agent = perf_tracing_agent.PerfProfilerAgent(self.device,
-                                                 categories)
+    categories = 'cycles'
+    agent = perf_tracing_agent.PerfProfilerAgent(self.device)
 
     try:
-      agent.StartAgentTracing(None, None)
+      agent.StartAgentTracing(perf_tracing_agent.PerfConfig(categories,
+                                                            self.device))
     finally:
       agent.StopAgentTracing()
 
diff --git a/catapult/systrace/profile_chrome/profiler.py b/catapult/systrace/profile_chrome/profiler.py
index 6f0c3e2..a52faf1 100644
--- a/catapult/systrace/profile_chrome/profiler.py
+++ b/catapult/systrace/profile_chrome/profiler.py
@@ -5,33 +5,29 @@
 import time
 
 from devil.android.constants import chrome
+from profile_chrome import chrome_startup_tracing_agent
 from profile_chrome import chrome_tracing_agent
 from profile_chrome import ui
 from profile_chrome import util
 from systrace import output_generator
+from systrace import tracing_controller
 
 
-def _StartTracing(agents):
-  for agent in agents:
-    agent.StartAgentTracing(None, None)
-
-
-def _StopTracing(agents):
-  for agent in agents:
-    agent.StopAgentTracing()
-
-
-def _GetResults(agents, output, compress, write_json, interval):
+def _GetResults(trace_results, controller, output, compress, write_json,
+                interval):
   ui.PrintMessage('Downloading...', eol='')
 
   # Wait for the trace file to get written.
   time.sleep(1)
 
-  trace_results = []
-  for agent in agents:
+  for agent in controller.get_child_agents:
     if isinstance(agent, chrome_tracing_agent.ChromeTracingAgent):
       time.sleep(interval / 4)
-    trace_results.append(agent.GetResults())
+
+  # Ignore the systraceController because it will not contain any results,
+  # instead being in charge of collecting results.
+  trace_results = [x for x in controller.all_results if not (x.source_name ==
+      'systraceController')]
 
   if not trace_results:
     ui.PrintMessage('No results')
@@ -76,14 +72,15 @@
   return supported_browsers
 
 
-def CaptureProfile(agents, interval, output=None, compress=False,
-                   write_json=False):
+def CaptureProfile(options, interval, modules, output=None,
+                   compress=False, write_json=False):
   """Records a profiling trace saves the result to a file.
 
   Args:
-    agents: List of tracing agents.
+    options: Command line options.
     interval: Time interval to capture in seconds. An interval of None (or 0)
         continues tracing until stopped by the user.
+    modules: The list of modules to initialize the tracing controller with.
     output: Output file name or None to use an automatically generated name.
     compress: If True, the result will be compressed either with gzip or zip
         depending on the number of captured subtraces.
@@ -92,20 +89,32 @@
   Returns:
     Path to saved profile.
   """
-  trace_type = ' + '.join(map(str, agents))
+  agents_with_config = tracing_controller.CreateAgentsWithConfig(options,
+                                                                 modules)
+  if chrome_startup_tracing_agent in modules:
+    controller_config = tracing_controller.GetChromeStartupControllerConfig(
+        options)
+  else:
+    controller_config = tracing_controller.GetControllerConfig(options)
+  controller = tracing_controller.TracingController(agents_with_config,
+                                                    controller_config)
   try:
-    _StartTracing(agents)
+    result = controller.StartTracing()
+    trace_type = controller.GetTraceType()
+    if not result:
+      print 'Trace starting failed.'
     if interval:
       ui.PrintMessage(('Capturing %d-second %s. Press Enter to stop early...' %
-                      (interval, trace_type)), eol='')
+                     (interval, trace_type)), eol='')
       ui.WaitForEnter(interval)
     else:
       ui.PrintMessage('Capturing %s. Press Enter to stop...' % trace_type,
-                      eol='')
+                     eol='')
       raw_input()
+    all_results = controller.StopTracing()
   finally:
-    _StopTracing(agents)
-  if interval:
-    ui.PrintMessage('done')
+    if interval:
+      ui.PrintMessage('done')
 
-  return _GetResults(agents, output, compress, write_json, interval)
+  return _GetResults(all_results, controller, output, compress, write_json,
+                     interval)
diff --git a/catapult/systrace/profile_chrome/profiler_unittest.py b/catapult/systrace/profile_chrome/profiler_unittest.py
index 99ca611..cd7af95 100644
--- a/catapult/systrace/profile_chrome/profiler_unittest.py
+++ b/catapult/systrace/profile_chrome/profiler_unittest.py
@@ -3,88 +3,52 @@
 # found in the LICENSE file.
 
 import os
-import tempfile
 import unittest
 import zipfile
 
 from profile_chrome import profiler
 from profile_chrome import ui
-from systrace import trace_result
-
-
-class FakeAgent(object):
-  def __init__(self, contents='fake-contents'):
-    self.contents = contents
-    self.stopped = False
-    self.filename = None
-    self.options = None
-    self.categories = None
-    self.timeout = None
-
-  def StartAgentTracing(self, options, categories, timeout=None):
-    self.options = options
-    self.categories = categories
-    self.timeout = timeout
-
-  # pylint: disable=unused-argument
-  def StopAgentTracing(self, timeout=None):
-    self.stopped = True
-
-  # pylint: disable=unused-argument
-  def GetResults(self, timeout=None):
-    trace_data = open(self.PullTrace()).read()
-    return trace_result.TraceResult('fakeData', trace_data)
-
-  def PullTrace(self):
-    with tempfile.NamedTemporaryFile(delete=False) as f:
-      self.filename = f.name
-      f.write(self.contents)
-      return f.name
-
-  # pylint: disable=no-self-use
-  def SupportsExplicitClockSync(self):
-    return False
-
-  # pylint: disable=unused-argument, no-self-use
-  def RecordClockSyncMarker(self, sync_id, did_record_sync_marker_callback):
-    print ('Clock sync marker cannot be recorded since explicit clock sync '
-           'is not supported.')
-
-  def __repr__(self):
-    return 'faketrace'
+from profile_chrome import fake_agent_1
+from profile_chrome import fake_agent_2
+from systrace import decorators
+from systrace import tracing_controller
 
 
 class ProfilerTest(unittest.TestCase):
   def setUp(self):
     ui.EnableTestMode()
+    self._tracing_options = tracing_controller.TracingControllerConfig(None,
+        None, None, None, None, None, None, None, None, None)
 
+  @decorators.ClientOnlyTest
   def testCaptureBasicProfile(self):
-    agent = FakeAgent()
-    result = profiler.CaptureProfile([agent], 1)
+    result = profiler.CaptureProfile(self._tracing_options, 1, [fake_agent_1])
 
     try:
-      self.assertTrue(agent.stopped)
       self.assertTrue(os.path.exists(result))
       self.assertTrue(result.endswith('.html'))
     finally:
       if os.path.exists(result):
         os.remove(result)
 
+  @decorators.ClientOnlyTest
   def testCaptureJsonProfile(self):
-    agent = FakeAgent()
-    result = profiler.CaptureProfile([agent], 1, write_json=True)
+    result = profiler.CaptureProfile(self._tracing_options, 1,
+                                     [fake_agent_2], write_json=True)
 
     try:
       self.assertFalse(result.endswith('.html'))
       with open(result) as f:
-        self.assertEquals(f.read(), agent.contents)
+        self.assertEquals(f.read(), 'fake-contents')
     finally:
       if os.path.exists(result):
         os.remove(result)
 
+  @decorators.ClientOnlyTest
   def testCaptureMultipleProfiles(self):
-    agents = [FakeAgent('c1'), FakeAgent('c2')]
-    result = profiler.CaptureProfile(agents, 1, write_json=True)
+    result = profiler.CaptureProfile(self._tracing_options, 1,
+                                     [fake_agent_1, fake_agent_2],
+                                     write_json=True)
 
     try:
       self.assertTrue(result.endswith('.zip'))
diff --git a/catapult/systrace/systrace/__init__.py b/catapult/systrace/systrace/__init__.py
index bd22d73..34f9e1f 100644
--- a/catapult/systrace/systrace/__init__.py
+++ b/catapult/systrace/systrace/__init__.py
@@ -19,7 +19,6 @@
 _CATAPULT_DIR = os.path.join(
     os.path.dirname(os.path.abspath(__file__)), os.path.pardir, os.path.pardir)
 
-_AddDirToPythonPath(_CATAPULT_DIR, 'catapult_base')
 _AddDirToPythonPath(_CATAPULT_DIR, 'common', 'battor')
 _AddDirToPythonPath(_CATAPULT_DIR, 'common', 'py_utils')
 _AddDirToPythonPath(_CATAPULT_DIR, 'common', 'py_trace_event')
diff --git a/catapult/systrace/systrace/decorators.py b/catapult/systrace/systrace/decorators.py
index ee3a660..8545eaa 100644
--- a/catapult/systrace/systrace/decorators.py
+++ b/catapult/systrace/systrace/decorators.py
@@ -14,7 +14,17 @@
 def ClientOnlyTest(func):
   """Decorator for running unit tests only on client devices (Android).
   """
-  return _SkipTestDecoratorHelper(func, ['windows', 'linux', 'mac'])
+  return _SkipTestDecoratorHelper(func, ['win', 'linux', 'mac'])
+
+
+def Disabled(func):
+  """Decorator for not running a unit test on any Trybot platform.
+  """
+  return _SkipTestDecoratorHelper(func, ['win', 'linux', 'mac', 'android'])
+
+
+def LinuxMacTest(func):
+  return _SkipTestDecoratorHelper(func, ['win', 'android'])
 
 
 def _SkipTestDecoratorHelper(func, disabled_strings):
diff --git a/catapult/systrace/systrace/monitor_unittest.py b/catapult/systrace/systrace/monitor_unittest.py
new file mode 100644
index 0000000..65d63e1
--- /dev/null
+++ b/catapult/systrace/systrace/monitor_unittest.py
@@ -0,0 +1,52 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+import unittest
+
+from systrace import decorators
+from systrace import update_systrace_trace_viewer
+
+SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
+STABLE_VIEWER_PATH = os.path.join(SCRIPT_DIR, 'systrace_trace_viewer.html')
+
+# Tests presence and content of static HTML files used not only for Python
+# systrace capture, but also Java-based capture in the android SDK tools.
+#
+# NOTE: changes to this file should typically be accompanied by changes to the
+# Android SDK's method of systrace capture.
+class MonitorTest(unittest.TestCase):
+
+  @decorators.HostOnlyTest
+  def test_systrace_trace_viewer(self):
+    self.assertEqual(STABLE_VIEWER_PATH,
+      update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE)
+
+    update_systrace_trace_viewer.update(force_update=True)
+
+    with open(STABLE_VIEWER_PATH) as f:
+      content = f.read().strip()
+
+      # expect big html file
+      self.assertGreater(5 * 1024 * 1024, len(content))
+      self.assertEqual('<', content[0])
+    os.remove(f.name)
+
+
+  @decorators.HostOnlyTest
+  def test_prefix(self):
+    with open(os.path.join(SCRIPT_DIR, 'prefix.html')) as f:
+      content = f.read().strip()
+
+      self.assertTrue("<html>" in content)
+      self.assertTrue("<title>Android System Trace</title>" in content)
+      self.assertTrue("{{SYSTRACE_TRACE_VIEWER_HTML}}" in content)
+
+
+  @decorators.HostOnlyTest
+  def test_suffix(self):
+    with open(os.path.join(SCRIPT_DIR, 'suffix.html')) as f:
+      content = f.read().strip()
+
+      self.assertTrue("</html>" in content)
diff --git a/catapult/systrace/systrace/output_generator_unittest.py b/catapult/systrace/systrace/output_generator_unittest.py
index 0a111a6..9b74ed1 100644
--- a/catapult/systrace/systrace/output_generator_unittest.py
+++ b/catapult/systrace/systrace/output_generator_unittest.py
@@ -6,26 +6,28 @@
 
 import json
 import os
-import random
-import string
 import unittest
 
 from systrace import decorators
 from systrace import output_generator
 from systrace import trace_result
+from systrace import update_systrace_trace_viewer
+from systrace import util
 
 
 TEST_DIR = os.path.join(os.path.dirname(__file__), 'test_data')
 ATRACE_DATA = os.path.join(TEST_DIR, 'atrace_data')
 COMBINED_PROFILE_CHROME_DATA = os.path.join(
-                                  TEST_DIR,
-                                  'profile-chrome_systrace_perf_chrome_data')
+    TEST_DIR, 'profile-chrome_systrace_perf_chrome_data')
 
 
 class OutputGeneratorTest(unittest.TestCase):
 
   @decorators.HostOnlyTest
   def testJsonTraceMerging(self):
+    update_systrace_trace_viewer.update(force_update=True)
+    self.assertTrue(os.path.exists(
+        update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE))
     t1 = "{'traceEvents': [{'ts': 123, 'ph': 'b'}]}"
     t2 = "{'traceEvents': [], 'stackFrames': ['blah']}"
     results = [trace_result.TraceResult('a', t1),
@@ -38,14 +40,18 @@
       elif r.source_name == 'b':
         self.assertEquals(r.raw_data, t2)
     self.assertEquals(len(merged_results), len(results))
+    os.remove(update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE)
 
   @decorators.HostOnlyTest
   def testHtmlOutputGenerationFormatsSingleTrace(self):
+    update_systrace_trace_viewer.update(force_update=True)
+    self.assertTrue(os.path.exists(
+        update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE))
     with open(ATRACE_DATA) as f:
       atrace_data = f.read().replace(" ", "").strip()
       trace_results = [trace_result.TraceResult('systemTraceEvents',
                        atrace_data)]
-      output_file_name = _GenerateRandomString(10)
+      output_file_name = util.generate_random_filename_for_test()
       final_path = output_generator.GenerateHTMLOutput(trace_results,
                                                        output_file_name)
       with open(output_file_name, 'r') as f:
@@ -60,9 +66,13 @@
     # correct place in the HTML document and that the data is not
     # malformed.
     self.assertEquals(trace_data, atrace_data)
+    os.remove(update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE)
 
   @decorators.HostOnlyTest
   def testHtmlOutputGenerationFormatsMultipleTraces(self):
+    update_systrace_trace_viewer.update(force_update=True)
+    self.assertTrue(os.path.exists(
+        update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE))
     json_data = open(COMBINED_PROFILE_CHROME_DATA).read()
     combined_data = json.loads(json_data)
     trace_results = []
@@ -71,7 +81,7 @@
       trace_results.append(trace_result.TraceResult(str(trace_name),
                                                     str(data)))
       trace_results_expected.append(str(data).replace(" ", "").strip())
-    output_file_name = _GenerateRandomString(10)
+    output_file_name = util.generate_random_filename_for_test()
     final_path = output_generator.GenerateHTMLOutput(trace_results,
                                                      output_file_name)
     with open(output_file_name, 'r') as f:
@@ -86,7 +96,4 @@
         # malformed.
         self.assertTrue(trace_data in trace_results_expected)
     os.remove(final_path)
-
-def _GenerateRandomString(strlen):
-  return ''.join(random.choice(string.ascii_uppercase +
-              string.digits) for _ in range(strlen))
+    os.remove(update_systrace_trace_viewer.SYSTRACE_TRACE_VIEWER_HTML_FILE)
diff --git a/catapult/systrace/systrace/run_systrace.py b/catapult/systrace/systrace/run_systrace.py
index a5219b1..815daa7 100755
--- a/catapult/systrace/systrace/run_systrace.py
+++ b/catapult/systrace/systrace/run_systrace.py
@@ -39,11 +39,23 @@
   sys.path.insert(0, _SYSTRACE_DIR)
 
 from devil import devil_env
+from devil.android.sdk import adb_wrapper
 from systrace import systrace_runner
-from systrace import util
 from systrace.tracing_agents import atrace_agent
+from systrace.tracing_agents import atrace_from_file_agent
+from systrace.tracing_agents import battor_trace_agent
 from systrace.tracing_agents import ftrace_agent
 
+ALL_MODULES = [atrace_agent, atrace_from_file_agent,
+               battor_trace_agent, ftrace_agent]
+
+
+def _get_default_serial():
+  if 'ANDROID_SERIAL' in os.environ:
+    return os.environ['ANDROID_SERIAL']
+  return None
+
+
 def parse_options(argv):
   """Parses and checks the command-line options.
 
@@ -58,62 +70,22 @@
                     default=None, metavar='FILE')
   parser.add_option('-t', '--time', dest='trace_time', type='int',
                     help='trace for N seconds', metavar='N')
-  parser.add_option('-b', '--buf-size', dest='trace_buf_size', type='int',
-                    help='use a trace buffer size of N KB', metavar='N')
-  parser.add_option('-k', '--ktrace', dest='kfuncs', action='store',
-                    help='specify a comma-separated list of kernel functions '
-                    'to trace')
   parser.add_option('-l', '--list-categories', dest='list_categories',
                     default=False, action='store_true',
                     help='list the available categories and exit')
   parser.add_option('-j', '--json', dest='write_json',
                     default=False, action='store_true',
                     help='write a JSON file')
-  parser.add_option('-a', '--app', dest='app_name', default=None, type='string',
-                    action='store',
-                    help='enable application-level tracing for comma-separated '
-                    'list of app cmdlines')
-  parser.add_option('--no-fix-threads', dest='fix_threads', default=True,
-                    action='store_false',
-                    help='don\'t fix missing or truncated thread names')
-  parser.add_option('--no-fix-tgids', dest='fix_tgids', default=True,
-                    action='store_false',
-                    help='Do not run extra commands to restore missing thread '
-                    'to thread group id mappings.')
-  parser.add_option('--no-fix-circular', dest='fix_circular', default=True,
-                    action='store_false',
-                    help='don\'t fix truncated circular traces')
-  parser.add_option('--no-compress', dest='compress_trace_data',
-                    default=True, action='store_false',
-                    help='Tell the device not to send the trace data in '
-                    'compressed form.')
-  parser.add_option('--hubs', dest='hub_types', default='plugable_7port',
-                    help='List of hub types to check for for BattOr mapping. '
-                    'Used when updating mapping file.')
-  parser.add_option('--serial-map', dest='serial_map',
-                    default='serial_map.json',
-                    help='File containing pregenerated map of phone serial '
-                    'numbers to BattOr serial numbers.')
-  parser.add_option('--battor_path', dest='battor_path', default=None,
-                    type='string', help='specify a BattOr path to use')
-  parser.add_option('--update-map', dest='update_map', default=False,
-                    action='store_true',
-                    help='force update of phone-to-BattOr map')
   parser.add_option('--link-assets', dest='link_assets', default=False,
                     action='store_true',
                     help='(deprecated)')
-  parser.add_option('--boot', dest='boot', default=False, action='store_true',
-                    help='reboot the device with tracing during boot enabled. '
-                    'The report is created by hitting Ctrl+C after the device '
-                    'has booted up.')
-  parser.add_option('--battor', dest='battor', default=False,
-                    action='store_true', help='Use the BattOr tracing agent.')
   parser.add_option('--from-file', dest='from_file', action='store',
-                    help='read the trace from a file (compressed) rather than '
+                    help='read the trace from a file (compressed) rather than'
                     'running a live trace')
   parser.add_option('--asset-dir', dest='asset_dir', default='trace-viewer',
                     type='string', help='(deprecated)')
   parser.add_option('-e', '--serial', dest='device_serial_number',
+                    default=_get_default_serial(),
                     type='string', help='adb device serial number')
   parser.add_option('--target', dest='target', default='android', type='string',
                     help='chose tracing target (android or linux)')
@@ -122,6 +94,33 @@
   parser.add_option('--collection-timeout', dest='collection_timeout',
                     type='int', help='timeout for data collection (seconds)')
 
+  atrace_ftrace_options = optparse.OptionGroup(parser,
+                                               'Atrace and Ftrace options')
+  atrace_ftrace_options.add_option('-b', '--buf-size', dest='trace_buf_size',
+                                   type='int', help='use a trace buffer size '
+                                   ' of N KB', metavar='N')
+  atrace_ftrace_options.add_option('--no-fix-threads', dest='fix_threads',
+                                   default=True, action='store_false',
+                                   help='don\'t fix missing or truncated '
+                                   'thread names')
+  atrace_ftrace_options.add_option('--no-fix-tgids', dest='fix_tgids',
+                                   default=True, action='store_false',
+                                   help='Do not run extra commands to restore'
+                                   ' missing thread to thread group id '
+                                   'mappings.')
+  atrace_ftrace_options.add_option('--no-fix-circular', dest='fix_circular',
+                                   default=True, action='store_false',
+                                   help='don\'t fix truncated circular traces')
+  parser.add_option_group(atrace_ftrace_options)
+
+  # Add the other agent parsing options to the parser. For Systrace on the
+  # command line, all agents are added. For Android, only the compatible agents
+  # will be added.
+  for module in ALL_MODULES:
+    option_group = module.add_options(parser)
+    if option_group:
+      parser.add_option_group(option_group)
+
   options, categories = parser.parse_args(argv[1:])
 
   if options.output_file is None:
@@ -141,13 +140,17 @@
 
 def initialize_devil():
   """Initialize devil to use adb from $PATH"""
+  adb_path = find_executable('adb')
+  if adb_path is None:
+    print >> sys.stderr, "Unable to find adb, is it in your path?"
+    sys.exit(1)
   devil_dynamic_config = {
     'config_type': 'BaseConfig',
     'dependencies': {
       'adb': {
         'file_info': {
           devil_env.GetPlatform(): {
-            'local_paths': [os.path.abspath(find_executable('adb'))]
+            'local_paths': [os.path.abspath(adb_path)]
           }
         }
       }
@@ -156,19 +159,30 @@
   devil_env.config.Initialize(configs=[devil_dynamic_config])
 
 
-def main():
+def main_impl(arguments):
   # Parse the command line options.
-  options, categories = parse_options(sys.argv)
+  options, categories = parse_options(arguments)
 
-  initialize_devil()
+  # Override --atrace-categories and --ftrace-categories flags if command-line
+  # categories are provided.
+  if categories:
+    if options.target == 'android':
+      options.atrace_categories = categories
+    elif options.target == 'linux':
+      options.ftrace_categories = categories
+    else:
+      raise RuntimeError('Categories are only valid for atrace/ftrace. Target '
+                         'platform must be either Android or Linux.')
 
-  if options.target == 'android' and not options.device_serial_number:
-    devices = util.get_device_serials()
-    if len(devices) == 0:
-      raise RuntimeError('No ADB devices connected.')
-    elif len(devices) >= 2:
-      raise RuntimeError('Multiple devices connected, serial number required')
-    options.device_serial_number = devices[0]
+  if options.target == 'android' and not options.from_file:
+    initialize_devil()
+    if not options.device_serial_number:
+      devices = [a.GetDeviceSerial() for a in adb_wrapper.AdbWrapper.Devices()]
+      if len(devices) == 0:
+        raise RuntimeError('No ADB devices connected.')
+      elif len(devices) >= 2:
+        raise RuntimeError('Multiple devices connected, serial number required')
+      options.device_serial_number = devices[0]
 
   # If list_categories is selected, just print the list of categories.
   # In this case, use of the tracing controller is not necessary.
@@ -180,9 +194,8 @@
     return
 
   # Set up the systrace runner and start tracing.
-  script_dir = os.path.dirname(os.path.abspath(__file__))
   controller = systrace_runner.SystraceRunner(
-      script_dir, options, categories)
+      os.path.dirname(os.path.abspath(__file__)), options)
   controller.StartTracing()
 
   # Wait for the given number of seconds or until the user presses enter.
@@ -202,5 +215,8 @@
   print('Outputting Systrace results...')
   controller.OutputSystraceResults(write_json=options.write_json)
 
+def main():
+  main_impl(sys.argv)
+
 if __name__ == '__main__' and __package__ is None:
   main()
diff --git a/catapult/systrace/systrace/systrace_runner.py b/catapult/systrace/systrace/systrace_runner.py
index a7ad9fa..c3452d1 100644
--- a/catapult/systrace/systrace/systrace_runner.py
+++ b/catapult/systrace/systrace/systrace_runner.py
@@ -16,29 +16,29 @@
 from systrace.tracing_agents import ftrace_agent
 
 
-AGENT_MODULES_ = [atrace_agent, atrace_from_file_agent,
+AGENT_MODULES = [atrace_agent, atrace_from_file_agent,
                  battor_trace_agent, ftrace_agent]
 
 
 class SystraceRunner(object):
-  def __init__(self, script_dir, options, categories):
+  def __init__(self, script_dir, options):
     """Constructor.
 
     Args:
         script_dir: Directory containing the trace viewer script
                     (systrace_trace_viewer.html)
-        options: List of command line options.
-        categories: List of trace categories to capture.
+        options: Object containing command line options.
     """
     # Parse command line arguments and create agents.
     self._script_dir = script_dir
     self._out_filename = options.output_file
-    agents = CreateAgents(options)
+    agents_with_config = tracing_controller.CreateAgentsWithConfig(
+        options, AGENT_MODULES)
+    controller_config = tracing_controller.GetControllerConfig(options)
 
     # Set up tracing controller.
-    self._tracing_controller = tracing_controller.TracingController(options,
-                                                                    categories,
-                                                                    agents)
+    self._tracing_controller = tracing_controller.TracingController(
+        agents_with_config, controller_config)
 
   def StartTracing(self):
     self._tracing_controller.StartTracing()
@@ -67,16 +67,3 @@
                   self._out_filename)
     print '\nWrote trace %s file: file://%s\n' % (('JSON' if write_json
                                                    else 'HTML'), result)
-
-def CreateAgents(options):
-  """Create tracing agents.
-
-  This function will determine which tracing agents are valid given the
-  options and create those agents.
-  Args:
-    options: The command-line options.
-  Returns:
-    The list of systrace agents.
-  """
-  result = [module.try_create_agent(options) for module in AGENT_MODULES_]
-  return [x for x in result if x]
diff --git a/catapult/systrace/systrace/systrace_trace_viewer.html b/catapult/systrace/systrace/systrace_trace_viewer.html
index ca38ae9..776ec40 100644
--- a/catapult/systrace/systrace/systrace_trace_viewer.html
+++ b/catapult/systrace/systrace/systrace_trace_viewer.html
@@ -106,12 +106,13 @@
     <style>
     :host {
       display: inline;
-      color: -webkit-link;
       cursor: pointer;
-      text-decoration: underline;
       cursor: pointer;
       white-space: nowrap;
     }
+    a {
+      text-decoration: underline;
+    }
     </style>
     <a href="{{href}}" on-click="onClicked_" on-mouseenter="onMouseEnter_" on-mouseleave="onMouseLeave_"><content></content></a>
 
@@ -274,35 +275,32 @@
       vertical-align: top;
       font-size: 15px;
       font-family: sans-serif;
-      display: inline;
       line-height: 85%;
       margin-left: 5px;
     }
 
-    #button {
-      font-weight: bold;
-      font-size: 12px;
+    #side.disabled {
+      color: rgb(140, 140, 140);
     }
 
-    #title:empty, #button:empty, #side:empty {
+    #title:empty, #side:empty {
       display: none;
     }
-
-    #button[selected] {
-      background: darkgrey;
-    }
   </style>
 
     <span id="title"></span>
-    <button id="button"></button>
-    <button id="side"></button>
+    <span id="side"></span>
   </template>
+</dom-module><dom-module id="tr-v-ui-scalar-context-controller">
+  <template></template>
 </dom-module><dom-module id="tr-v-ui-scalar-span">
   <template>
     <style>
     :host {
       display: block;
       position: relative;
+      /* Limit the sparkline's negative z-index to the span only. */
+      isolation: isolate;
     }
     #content.right-align {
       text-align: right;
@@ -319,12 +317,30 @@
       width: 0%;
       position: absolute;
       bottom: 0;
-      right: 0;
       display: none;
       height: 100%;
       background-color: hsla(216, 100%, 94.5%, .75);
-      border-left: 1px solid hsl(216, 100%, 89%);
+      border-color: hsl(216, 100%, 89%);
       box-sizing: border-box;
+      z-index: -1;
+    }
+    #sparkline.positive {
+      border-right-style: solid;
+      /* The border width must be kept in sync with buildSparklineStyle_(). */
+      border-right-width: 1px;
+    }
+    #sparkline:not(.positive) {
+      border-left-style: solid;
+      /* The border width must be kept in sync with buildSparklineStyle_(). */
+      border-left-width: 1px;
+    }
+    #sparkline.better {
+      background-color: hsla(115, 100%, 93%, .75);
+      border-color: hsl(118, 60%, 80%);
+    }
+    #sparkline.worse {
+      background-color: hsla(0, 100%, 88%, .75);
+      border-color: hsl(0, 100%, 80%);
     }
     #warning {
       margin-left: 4px;
@@ -336,8 +352,8 @@
     }
     </style>
     <span id="sparkline"></span>
-    <span id="significance"></span>
     <span id="content"></span>
+    <span id="significance"></span>
     <span id="warning" style="display:none">âš </span>
   </template>
 </dom-module><dom-module id="tr-ui-a-generic-object-view">
@@ -1065,7 +1081,28 @@
 .object-instance-track{height:18px}
 </style><style>
 .tr-ui-e-system-stats-instance-track{height:500px}.tr-ui-e-system-stats-instance-track ul{list-style:none;list-style-position:outside;margin:0;overflow:hidden}
-</style><dom-module id="tr-ui-a-alert-sub-view">
+</style><dom-module id="tr-ui-e-v8-runtime-call-stats-table">
+  <template>
+    <style>
+    #table {
+      flex: 0 0 auto;
+      align-self: stretch;
+      margin-top: 1em;
+    }
+    </style>
+    <tr-ui-b-table id="table"></tr-ui-b-table>
+  </template>
+</dom-module><dom-module id="tr-ui-e-multi-v8-thread-slice-sub-view">
+  <template>
+    <tr-ui-a-multi-thread-slice-sub-view id="content"></tr-ui-a-multi-thread-slice-sub-view>
+    <tr-ui-e-v8-runtime-call-stats-table id="runtimeCallStats"></tr-ui-e-v8-runtime-call-stats-table>
+  </template>
+</dom-module><dom-module id="tr-ui-e-single-v8-thread-slice-sub-view">
+  <template>
+    <tr-ui-a-single-thread-slice-sub-view id="content"></tr-ui-a-single-thread-slice-sub-view>
+    <tr-ui-e-v8-runtime-call-stats-table id="runtimeCallStats"></tr-ui-e-v8-runtime-call-stats-table>
+  </template>
+</dom-module><dom-module id="tr-ui-a-alert-sub-view">
   <template>
     <style>
     :host {
@@ -1277,6 +1314,7 @@
         flex: 1 0 auto;
         align-self: stretch;
         font-size: 12px;
+        overflow: auto;
       }
 
       #info_text {
@@ -1949,7 +1987,7 @@
       <tr-ui-a-user-expectation-related-samples-table id="relatedSamples"></tr-ui-a-user-expectation-related-samples-table>
     </div>
   </template>
-</dom-module><dom-module id="tr-ui-a-tab-view">
+</dom-module><dom-module id="tr-ui-b-tab-view">
   <template>
     <style>
       :host {
@@ -1968,7 +2006,6 @@
       }
 
       #tabs {
-        display: block;
         flex: 0 0 auto;
         border-top: 1px solid #8e8e8e;
         border-bottom: 1px solid #8e8e8e;
@@ -1989,6 +2026,10 @@
         padding: 3px 10px 3px 10px;
       }
 
+      #tabs tab label span {
+        font-weight: bold;
+      }
+
       #tabs input[type=radio]:checked ~ label {
         background-color: white;
         border: 1px solid #8e8e8e;
@@ -2005,7 +2046,12 @@
       <template is="dom-repeat" items="[[subViews_]]">
         <tab>
           <input checked$="[[isChecked_(item)]]" id$="[[computeRadioId_(item)]]" name="tabs" on-change="onTabChanged_" type="radio"/>
-          <label for$="[[computeRadioId_(item)]]">[[item.tabLabel]]</label>
+          <label for$="[[computeRadioId_(item)]]">
+            <template if="[[item.tabIcon]]" is="dom-if">
+              <span style$="[[item.tabIcon.style]]">[[item.tabIcon.text]]</span>
+            </template>
+            [[item.tabLabel]]
+          </label>
         </tab>
       </template>
     </div>
@@ -2332,12 +2378,14 @@
       background-color: white;
     }
 
+    :host([expanded]) > #side_panel_drag_handle,
     :host([expanded]) > active-panel-container {
       -webkit-flex: 1 1 auto;
       border-left: 1px solid black;
       display: -webkit-flex;
     }
 
+    :host(:not([expanded])) > #side_panel_drag_handle,
     :host(:not([expanded])) > active-panel-container {
       display: none;
     }
@@ -2378,10 +2426,14 @@
       border-left: none;
       padding: 14px 2px 14px 1px;
     }
+
+    #active_panel_container {
+      overflow: auto;
+    }
     </style>
 
+    <tr-ui-b-drag-handle id="side_panel_drag_handle"></tr-ui-b-drag-handle>
     <active-panel-container id="active_panel_container">
-      <tr-ui-b-drag-handle id="side_panel_drag_handle"></tr-ui-b-drag-handle>
     </active-panel-container>
     <tab-strip id="tab_strip"></tab-strip>
   </template>
@@ -2751,52 +2803,88 @@
     <style>
     :host {
       display: flex;
-      flex-direction: row;
       align-items: center;
     }
+
+    :host(:not([vertical])), :host(:not([vertical])) groups {
+      flex-direction: row;
+    }
+
+    :host([vertical]), :host([vertical]) groups {
+      flex-direction: column;
+    }
+
     groups {
       -webkit-user-select: none;
       display: flex;
-      flex-direction: row;
-      padding-left: 10px;
     }
 
-    group, possible-group {
+    possible-group {
       display: span;
       padding-right: 10px;
       padding-left: 10px;
     }
+    </style>
 
-    group {
-      border-left: 1px solid rgba(0,0,0,0);
+    <groups id="groups"></groups>
+    <tr-ui-b-dropdown id="add_group"></tr-ui-b-dropdown>
+  </template>
+</dom-module><dom-module id="tr-ui-b-grouping-table-groupby-picker-group">
+  <template>
+    <style>
+    :host {
+      white-space: nowrap;
+      border: 3px solid white;
+      background-color: #dddddd;
       cursor: move;
     }
 
-    group.dragging {
-      opacity: 0.2;
+    :host(:not([vertical])) {
+      display: inline;
     }
 
-    group.drop-targeted {
-      border-left: 1px solid black;
+    :host([vertical]) {
+      display: block;
     }
 
+    :host(:not([vertical]).drop-before) {
+      border-left: 3px solid black;
+    }
+
+    :host([vertical].drop-before) {
+      border-top: 3px solid black;
+    }
+
+    :host(:not([vertical]).drop-after) {
+      border-right: 3px solid black;
+    }
+
+    :host([vertical].drop-after) {
+      border-bottom: 3px solid black;
+    }
+
+    :host([dragging]) {
+      opacity: 0.5;
+    }
 
     #remove {
-      cursor: default;
+      visibility: hidden;
+      padding-left: 3px;
+      width: 20px;
+      height: 20px;
+      cursor: auto;
     }
 
-    #remove:not([hovered]) {
-      visibility: hidden;
+    #key {
+      padding-right: 3px;
     }
     </style>
-    <groups>
-    </groups>
-    <tr-ui-b-dropdown id="add-group"></tr-ui-b-dropdown>
+
+    
+    <span id="remove" on-click="remove_">×</span>
+    <span id="key"></span>
   </template>
-</dom-module><template id="tr-ui-b-grouping-table-groupby-picker-group-template">
-  <span id="key"></span>
-  <span id="remove">×</span>
-</template><dom-module id="tr-ui-sp-file-size-stats-side-panel">
+</dom-module><dom-module id="tr-ui-sp-file-size-stats-side-panel">
   <template>
     <style>
     :host {
@@ -2830,7 +2918,7 @@
       <tr-ui-b-grouping-table id="table"></tr-ui-b-grouping-table>
     </table-container>
   </template>
-</dom-module><dom-module id="tr-v-ui-composition-span">
+</dom-module><dom-module id="tr-v-ui-breakdown-span">
   <template>
     <div id="container"></div>
     <tr-ui-b-drag-handle id="drag_handle"></tr-ui-b-drag-handle>
@@ -2851,6 +2939,12 @@
   
 </dom-module><dom-module id="tr-v-ui-related-value-set-span">
   
+</dom-module><dom-module id="tr-v-ui-diagnostic-map-table">
+  <template>
+    <tr-ui-b-table id="table"></tr-ui-b-table>
+  </template>
+
+  
 </dom-module><dom-module name="tr-v-ui-numeric-stats-span">
   <template>
     <tr-ui-b-table id="stats"></tr-ui-b-table>
@@ -2862,18 +2956,76 @@
         display: flex;
         flex-direction: row;
       }
-      #diagnostics {
-        display: flex;
-        flex-direction: column;
-      }
     </style>
 
     <div id="container">
       <div id="chart"></div>
       <tr-v-ui-numeric-stats-span id="stats"></tr-v-ui-numeric-stats-span>
     </div>
-    <div id="diagnostics">
-    </div>
+
+    <tr-v-ui-diagnostic-map-table id="diagnostic_map_table"></tr-v-ui-diagnostic-map-table>
+  </template>
+</dom-module><dom-module id="tr-v-ui-value-set-table">
+  <template>
+    <style>
+    :host {
+      display: block;
+    }
+
+    #container {
+      flex-direction: column;
+      display: none;
+    }
+
+    table-container {
+      margin-top: 5px;
+      display: flex;
+      min-height: 0px;
+      overflow-y: auto;
+    }
+
+    #histogram {
+      display: none;
+    }
+
+    #zero {
+      color: red;
+    }
+
+    #search {
+      max-width: 20em;
+      margin-right: 20px;
+    }
+
+    #controls {
+      white-space: nowrap;
+    }
+
+    #reference_column_container * {
+      margin-right: 20px;
+    }
+    </style>
+
+    <div id="zero">zero values</div>
+
+    <div id="container">
+      <div id="controls">
+        <input id="search" on-keyup="onSearch_" placeholder="Find Histogram name"/>
+
+        <span id="reference_column_container"></span>
+
+        <input id="show_all" on-change="onShowAllChange_" title="When unchecked, less important histograms are hidden." type="checkbox"/>
+        <label for="show_all" title="When unchecked, less important histograms are hidden.">Show all</label>
+      </div>
+
+      <tr-ui-b-grouping-table-groupby-picker id="picker">
+      </tr-ui-b-grouping-table-groupby-picker>
+
+      <table-container>
+        <tr-ui-b-table id="table">
+      </tr-ui-b-table></table-container>
+      <tr-v-ui-histogram-span id="histogram">
+    </tr-v-ui-histogram-span></div>
   </template>
 </dom-module><dom-module id="tr-v-ui-value-set-view">
   <template>
@@ -2883,54 +3035,8 @@
       };
     </style>
 
-    <tr-ui-a-tab-view id="tabView"></tr-ui-a-tab-view>
+    <tr-v-ui-value-set-table id="valueSetTable"></tr-v-ui-value-set-table>
   </template>
-</dom-module><dom-module id="tr-v-ui-value-set-table">
-  <template>
-    <style>
-    :host {
-      display: flex;
-      flex-direction: column;
-    }
-    table-container {
-      display: flex;
-      min-height: 0px;
-      overflow-y: auto;
-    }
-    div#error {
-      color: red;
-    }
-    #histogram {
-      display: none;
-    }
-    #search {
-      max-width: 20em;
-      margin-top: 5px;
-      margin-bottom: 5px;
-    }
-    </style>
-
-    <input id="search" placeholder="Find Value name"/>
-    <div>
-      <input id="show_all" type="checkbox"/>
-      <label for="show_all">Show all</label>
-    </div>
-    <div id="error"></div>
-    <table-container>
-      <tr-ui-b-table id="table"></tr-ui-b-table>
-    </table-container>
-    <tr-v-ui-histogram-span id="histogram"></tr-v-ui-histogram-span>
-  </template>
-</dom-module><dom-module id="breakdown-value-set-view">
-<template>
-<style>
-  :host {
-    display: flex;
-    flex-direction: column;
-  }
-</style>
-<content></content>
-</template>
 </dom-module><dom-module id="tr-ui-sp-metrics-side-panel">
   <template>
     <style>
@@ -2938,10 +3044,14 @@
       display: flex;
       flex-direction: column;
     }
+    div#error {
+      color: red;
+    }
     </style>
 
     <top-left-controls id="top_left_controls"></top-left-controls>
     <tr-v-ui-value-set-view id="results"></tr-v-ui-value-set-view>
+    <div id="error"></div>
   </template>
 </dom-module><dom-module id="tr-ui-e-s-alerts-side-panel">
   <template>
@@ -2972,232 +3082,8 @@
  * Do not edit directly.
  */
 
-!function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(n){return aa+n in this}function o(n){return n=aa+n,n in this&&delete this[n]}function a(){var n=[];return this.forEach(function(t){n.push(t)}),n}function c(){var n=0;for(var t in this)t.charCodeAt(0)===ca&&++n;return n}function s(){for(var n in this)if(n.charCodeAt(0)===ca)return!1;return!0}function l(){}function f(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function h(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=sa.length;r>e;++e){var u=sa[e]+t;if(u in n)return u}}function g(){}function p(){}function v(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new u;return t.on=function(t,u){var i,o=r.get(t);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function d(){Xo.event.preventDefault()}function m(){for(var n,t=Xo.event;n=t.sourceEvent;)t=n;return t}function y(n){for(var t=new p,e=0,r=arguments.length;++e<r;)t[arguments[e]]=v(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=Xo.event;u.target=n,Xo.event=u,t[u.type].apply(e,r)}finally{Xo.event=i}}},t}function x(n){return fa(n,da),n}function M(n){return"function"==typeof n?n:function(){return ha(n,this)}}function _(n){return"function"==typeof n?n:function(){return ga(n,this)}}function b(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=Xo.ns.qualify(n),null==t?n.local?r:e:"function"==typeof t?n.local?a:o:n.local?i:u}function w(n){return n.trim().replace(/\s+/g," ")}function S(n){return new RegExp("(?:^|\\s+)"+Xo.requote(n)+"(?:\\s+|$)","g")}function k(n){return n.trim().split(/^|\s+/)}function E(n,t){function e(){for(var e=-1;++e<u;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<u;)n[e](this,r)}n=k(n).map(A);var u=n.length;return"function"==typeof t?r:e}function A(n){var t=S(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute("class")||"";r?(t.lastIndex=0,t.test(u)||e.setAttribute("class",w(u+" "+n))):e.setAttribute("class",w(u.replace(t," ")))}}function C(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:"function"==typeof t?i:u}function N(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:"function"==typeof t?u:r}function L(n){return"function"==typeof n?n:(n=Xo.ns.qualify(n)).local?function(){return this.ownerDocument.createElementNS(n.space,n.local)}:function(){return this.ownerDocument.createElementNS(this.namespaceURI,n)}}function T(n){return{__data__:n}}function q(n){return function(){return va(this,n)}}function z(n){return arguments.length||(n=Xo.ascending),function(t,e){return t&&e?n(t.__data__,e.__data__):!t-!e}}function R(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],o=0,a=i.length;a>o;o++)(u=i[o])&&t(u,o,e);return n}function D(n){return fa(n,ya),n}function P(n){var t,e;return function(r,u,i){var o,a=n[i].update,c=a.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(o=a[t])&&++t<c;);return o}}function U(){var n=this.__transition__;n&&++n.active}function j(n,t,e){function r(){var t=this[o];t&&(this.removeEventListener(n,t,t.$),delete this[o])}function u(){var u=c(t,Bo(arguments));r.call(this),this.addEventListener(n,this[o]=u,u.$=e),u._=t}function i(){var t,e=new RegExp("^__on([^.]+)"+Xo.requote(n)+"$");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var o="__on"+n,a=n.indexOf("."),c=H;a>0&&(n=n.substring(0,a));var s=Ma.get(n);return s&&(n=s,c=F),a?t?u:r:t?g:i}function H(n,t){return function(e){var r=Xo.event;Xo.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{Xo.event=r}}}function F(n,t){var e=H(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function O(){var n=".dragsuppress-"+ ++ba,t="click"+n,e=Xo.select(Go).on("touchmove"+n,d).on("dragstart"+n,d).on("selectstart"+n,d);if(_a){var r=Jo.style,u=r[_a];r[_a]="none"}return function(i){function o(){e.on(t,null)}e.on(n,null),_a&&(r[_a]=u),i&&(e.on(t,function(){d(),o()},!0),setTimeout(o,0))}}function Y(n,t){t.changedTouches&&(t=t.changedTouches[0]);var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();if(0>wa&&(Go.scrollX||Go.scrollY)){e=Xo.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var u=e[0][0].getScreenCTM();wa=!(u.f||u.e),e.remove()}return wa?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var i=n.getBoundingClientRect();return[t.clientX-i.left-n.clientLeft,t.clientY-i.top-n.clientTop]}function I(n){return n>0?1:0>n?-1:0}function Z(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function V(n){return n>1?0:-1>n?Sa:Math.acos(n)}function X(n){return n>1?Ea:-1>n?-Ea:Math.asin(n)}function $(n){return((n=Math.exp(n))-1/n)/2}function B(n){return((n=Math.exp(n))+1/n)/2}function W(n){return((n=Math.exp(2*n))-1)/(n+1)}function J(n){return(n=Math.sin(n/2))*n}function G(){}function K(n,t,e){return new Q(n,t,e)}function Q(n,t,e){this.h=n,this.s=t,this.l=e}function nt(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(o-i)*n/60:180>n?o:240>n?i+(o-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,i=2*e-o,gt(u(n+120),u(n),u(n-120))}function tt(n,t,e){return new et(n,t,e)}function et(n,t,e){this.h=n,this.c=t,this.l=e}function rt(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),ut(e,Math.cos(n*=Na)*t,Math.sin(n)*t)}function ut(n,t,e){return new it(n,t,e)}function it(n,t,e){this.l=n,this.a=t,this.b=e}function ot(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=ct(u)*Fa,r=ct(r)*Oa,i=ct(i)*Ya,gt(lt(3.2404542*u-1.5371385*r-.4985314*i),lt(-.969266*u+1.8760108*r+.041556*i),lt(.0556434*u-.2040259*r+1.0572252*i))}function at(n,t,e){return n>0?tt(Math.atan2(e,t)*La,Math.sqrt(t*t+e*e),n):tt(0/0,0/0,n)}function ct(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function st(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function lt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function ft(n){return gt(n>>16,255&n>>8,255&n)}function ht(n){return ft(n)+""}function gt(n,t,e){return new pt(n,t,e)}function pt(n,t,e){this.r=n,this.g=t,this.b=e}function vt(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function dt(n,t,e){var r,u,i,o,a=0,c=0,s=0;if(u=/([a-z]+)\((.*)\)/i.exec(n))switch(i=u[2].split(","),u[1]){case"hsl":return e(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return t(Mt(i[0]),Mt(i[1]),Mt(i[2]))}return(o=Va.get(n))?t(o.r,o.g,o.b):(null!=n&&"#"===n.charAt(0)&&(r=parseInt(n.substring(1),16),isNaN(r)||(4===n.length?(a=(3840&r)>>4,a=a>>4|a,c=240&r,c=c>>4|c,s=15&r,s=s<<4|s):7===n.length&&(a=(16711680&r)>>16,c=(65280&r)>>8,s=255&r))),t(a,c,s))}function mt(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-i,c=(o+i)/2;return a?(u=.5>c?a/(o+i):a/(2-o-i),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=0/0,u=c>0&&1>c?0:r),K(r,u,c)}function yt(n,t,e){n=xt(n),t=xt(t),e=xt(e);var r=st((.4124564*n+.3575761*t+.1804375*e)/Fa),u=st((.2126729*n+.7151522*t+.072175*e)/Oa),i=st((.0193339*n+.119192*t+.9503041*e)/Ya);return ut(116*u-16,500*(r-u),200*(u-i))}function xt(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Mt(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function _t(n){return"function"==typeof n?n:function(){return n}}function bt(n){return n}function wt(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),St(t,e,n,r)}}function St(n,t,e,r){function u(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(i,c)}catch(r){return o.error.call(i,r),void 0}o.load.call(i,n)}else o.error.call(i,c)}var i={},o=Xo.dispatch("beforesend","progress","load","error"),a={},c=new XMLHttpRequest,s=null;return!Go.XDomainRequest||"withCredentials"in c||!/^(http(s)?:)?\/\//.test(n)||(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=u:c.onreadystatechange=function(){c.readyState>3&&u()},c.onprogress=function(n){var t=Xo.event;Xo.event=n;try{o.progress.call(i,c)}finally{Xo.event=t}},i.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+"",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",i):t},i.responseType=function(n){return arguments.length?(s=n,i):s},i.response=function(n){return e=n,i},["get","post"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(Bo(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&"function"==typeof r&&(u=r,r=null),c.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),c.setRequestHeader)for(var l in a)c.setRequestHeader(l,a[l]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=s&&(c.responseType=s),null!=u&&i.on("error",u).on("load",function(n){u(null,n)}),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},Xo.rebind(i,o,"on"),null==r?i:i.get(kt(r))}function kt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Et(){var n=At(),t=Ct()-n;t>24?(isFinite(t)&&(clearTimeout(Wa),Wa=setTimeout(Et,t)),Ba=0):(Ba=1,Ga(Et))}function At(){var n=Date.now();for(Ja=Xa;Ja;)n>=Ja.t&&(Ja.f=Ja.c(n-Ja.t)),Ja=Ja.n;return n}function Ct(){for(var n,t=Xa,e=1/0;t;)t.f?t=n?n.n=t.n:Xa=t.n:(t.t<e&&(e=t.t),t=(n=t).n);return $a=n,e}function Nt(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Lt(n,t){var e=Math.pow(10,3*oa(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function Tt(n){var t=n.decimal,e=n.thousands,r=n.grouping,u=n.currency,i=r?function(n){for(var t=n.length,u=[],i=0,o=r[0];t>0&&o>0;)u.push(n.substring(t-=o,t+o)),o=r[i=(i+1)%r.length];return u.reverse().join(e)}:bt;return function(n){var e=Qa.exec(n),r=e[1]||" ",o=e[2]||">",a=e[3]||"",c=e[4]||"",s=e[5],l=+e[6],f=e[7],h=e[8],g=e[9],p=1,v="",d="",m=!1;switch(h&&(h=+h.substring(1)),(s||"0"===r&&"="===o)&&(s=r="0",o="=",f&&(l-=Math.floor((l-1)/4))),g){case"n":f=!0,g="g";break;case"%":p=100,d="%",g="f";break;case"p":p=100,d="%",g="r";break;case"b":case"o":case"x":case"X":"#"===c&&(v="0"+g.toLowerCase());case"c":case"d":m=!0,h=0;break;case"s":p=-1,g="r"}"$"===c&&(v=u[0],d=u[1]),"r"!=g||h||(g="g"),null!=h&&("g"==g?h=Math.max(1,Math.min(21,h)):("e"==g||"f"==g)&&(h=Math.max(0,Math.min(20,h)))),g=nc.get(g)||qt;var y=s&&f;return function(n){var e=d;if(m&&n%1)return"";var u=0>n||0===n&&0>1/n?(n=-n,"-"):a;if(0>p){var c=Xo.formatPrefix(n,h);n=c.scale(n),e=c.symbol+d}else n*=p;n=g(n,h);var x=n.lastIndexOf("."),M=0>x?n:n.substring(0,x),_=0>x?"":t+n.substring(x+1);!s&&f&&(M=i(M));var b=v.length+M.length+_.length+(y?0:u.length),w=l>b?new Array(b=l-b+1).join(r):"";return y&&(M=i(w+M)),u+=v,n=M+_,("<"===o?u+n+w:">"===o?w+u+n:"^"===o?w.substring(0,b>>=1)+u+n+w.substring(b):u+(y?n:w+n))+e}}}function qt(n){return n+""}function zt(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Rt(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new ec(e-1)),1),e}function i(n,e){return t(n=new ec(+n),e),n}function o(n,r,i){var o=u(n),a=[];if(i>1)for(;r>o;)e(o)%i||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{ec=zt;var r=new zt;return r._=n,o(r,t,e)}finally{ec=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=o;var c=n.utc=Dt(n);return c.floor=c,c.round=Dt(r),c.ceil=Dt(u),c.offset=Dt(i),c.range=a,n}function Dt(n){return function(t,e){try{ec=zt;var r=new zt;return r._=t,n(r,e)._}finally{ec=Date}}}function Pt(n){function t(n){function t(t){for(var e,u,i,o=[],a=-1,c=0;++a<r;)37===n.charCodeAt(a)&&(o.push(n.substring(c,a)),null!=(u=uc[e=n.charAt(++a)])&&(e=n.charAt(++a)),(i=C[e])&&(e=i(t,null==u?"e"===e?" ":"0":u)),o.push(e),c=a+1);return o.push(n.substring(c,a)),o.join("")}var r=n.length;return t.parse=function(t){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},u=e(r,n,t,0);if(u!=t.length)return null;"p"in r&&(r.H=r.H%12+12*r.p);var i=null!=r.Z&&ec!==zt,o=new(i?zt:ec);return"j"in r?o.setFullYear(r.y,0,r.j):"w"in r&&("W"in r||"U"in r)?(o.setFullYear(r.y,0,1),o.setFullYear(r.y,0,"W"in r?(r.w+6)%7+7*r.W-(o.getDay()+5)%7:r.w+7*r.U-(o.getDay()+6)%7)):o.setFullYear(r.y,r.m,r.d),o.setHours(r.H+Math.floor(r.Z/100),r.M+r.Z%100,r.S,r.L),i?o._:o},t.toString=function(){return n},t}function e(n,t,e,r){for(var u,i,o,a=0,c=t.length,s=e.length;c>a;){if(r>=s)return-1;if(u=t.charCodeAt(a++),37===u){if(o=t.charAt(a++),i=N[o in uc?t.charAt(a++):o],!i||(r=i(n,e,r))<0)return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){b.lastIndex=0;var r=b.exec(t.substring(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){M.lastIndex=0;var r=M.exec(t.substring(e));return r?(n.w=_.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){E.lastIndex=0;var r=E.exec(t.substring(e));return r?(n.m=A.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,e){S.lastIndex=0;var r=S.exec(t.substring(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,r){return e(n,C.c.toString(),t,r)}function c(n,t,r){return e(n,C.x.toString(),t,r)}function s(n,t,r){return e(n,C.X.toString(),t,r)}function l(n,t,e){var r=x.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var f=n.dateTime,h=n.date,g=n.time,p=n.periods,v=n.days,d=n.shortDays,m=n.months,y=n.shortMonths;t.utc=function(n){function e(n){try{ec=zt;var t=new ec;return t._=n,r(t)}finally{ec=Date}}var r=t(n);return e.parse=function(n){try{ec=zt;var t=r.parse(n);return t&&t._}finally{ec=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ee;var x=Xo.map(),M=jt(v),_=Ht(v),b=jt(d),w=Ht(d),S=jt(m),k=Ht(m),E=jt(y),A=Ht(y);p.forEach(function(n,t){x.set(n.toLowerCase(),t)});var C={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return y[n.getMonth()]},B:function(n){return m[n.getMonth()]},c:t(f),d:function(n,t){return Ut(n.getDate(),t,2)},e:function(n,t){return Ut(n.getDate(),t,2)},H:function(n,t){return Ut(n.getHours(),t,2)},I:function(n,t){return Ut(n.getHours()%12||12,t,2)},j:function(n,t){return Ut(1+tc.dayOfYear(n),t,3)},L:function(n,t){return Ut(n.getMilliseconds(),t,3)},m:function(n,t){return Ut(n.getMonth()+1,t,2)},M:function(n,t){return Ut(n.getMinutes(),t,2)},p:function(n){return p[+(n.getHours()>=12)]},S:function(n,t){return Ut(n.getSeconds(),t,2)},U:function(n,t){return Ut(tc.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Ut(tc.mondayOfYear(n),t,2)},x:t(h),X:t(g),y:function(n,t){return Ut(n.getFullYear()%100,t,2)},Y:function(n,t){return Ut(n.getFullYear()%1e4,t,4)},Z:ne,"%":function(){return"%"}},N={a:r,A:u,b:i,B:o,c:a,d:Bt,e:Bt,H:Jt,I:Jt,j:Wt,L:Qt,m:$t,M:Gt,p:l,S:Kt,U:Ot,w:Ft,W:Yt,x:c,X:s,y:Zt,Y:It,Z:Vt,"%":te};return t}function Ut(n,t,e){var r=0>n?"-":"",u=(r?-n:n)+"",i=u.length;return r+(e>i?new Array(e-i+1).join(t)+u:u)}function jt(n){return new RegExp("^(?:"+n.map(Xo.requote).join("|")+")","i")}function Ht(n){for(var t=new u,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function Ft(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Ot(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Yt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function It(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Zt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.y=Xt(+r[0]),e+r[0].length):-1}function Vt(n,t,e){return/^[+-]\d{4}$/.test(t=t.substring(e,e+5))?(n.Z=+t,e+5):-1}function Xt(n){return n+(n>68?1900:2e3)}function $t(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function Bt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function Wt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function Jt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function Gt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function Kt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function Qt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function ne(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=~~(oa(t)/60),u=oa(t)%60;return e+Ut(r,"0",2)+Ut(u,"0",2)}function te(n,t,e){oc.lastIndex=0;var r=oc.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function ee(n){for(var t=n.length,e=-1;++e<t;)n[e][0]=this(n[e][0]);return function(t){for(var e=0,r=n[e];!r[1](t);)r=n[++e];return r[0](t)}}function re(){}function ue(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function ie(n,t){n&&lc.hasOwnProperty(n.type)&&lc[n.type](n,t)}function oe(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();++u<i;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function ae(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)oe(n[e],t,1);t.polygonEnd()}function ce(){function n(n,t){n*=Na,t=t*Na/2+Sa/4;var e=n-r,o=e>=0?1:-1,a=o*e,c=Math.cos(t),s=Math.sin(t),l=i*s,f=u*c+l*Math.cos(a),h=l*o*Math.sin(a);hc.add(Math.atan2(h,f)),r=n,u=c,i=s}var t,e,r,u,i;gc.point=function(o,a){gc.point=n,r=(t=o)*Na,u=Math.cos(a=(e=a)*Na/2+Sa/4),i=Math.sin(a)},gc.lineEnd=function(){n(t,e)}}function se(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function le(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function fe(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function he(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function ge(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function pe(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function ve(n){return[Math.atan2(n[1],n[0]),X(n[2])]}function de(n,t){return oa(n[0]-t[0])<Aa&&oa(n[1]-t[1])<Aa}function me(n,t){n*=Na;var e=Math.cos(t*=Na);ye(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function ye(n,t,e){++pc,dc+=(n-dc)/pc,mc+=(t-mc)/pc,yc+=(e-yc)/pc}function xe(){function n(n,u){n*=Na;var i=Math.cos(u*=Na),o=i*Math.cos(n),a=i*Math.sin(n),c=Math.sin(u),s=Math.atan2(Math.sqrt((s=e*c-r*a)*s+(s=r*o-t*c)*s+(s=t*a-e*o)*s),t*o+e*a+r*c);vc+=s,xc+=s*(t+(t=o)),Mc+=s*(e+(e=a)),_c+=s*(r+(r=c)),ye(t,e,r)}var t,e,r;kc.point=function(u,i){u*=Na;var o=Math.cos(i*=Na);t=o*Math.cos(u),e=o*Math.sin(u),r=Math.sin(i),kc.point=n,ye(t,e,r)}}function Me(){kc.point=me}function _e(){function n(n,t){n*=Na;var e=Math.cos(t*=Na),o=e*Math.cos(n),a=e*Math.sin(n),c=Math.sin(t),s=u*c-i*a,l=i*o-r*c,f=r*a-u*o,h=Math.sqrt(s*s+l*l+f*f),g=r*o+u*a+i*c,p=h&&-V(g)/h,v=Math.atan2(h,g);bc+=p*s,wc+=p*l,Sc+=p*f,vc+=v,xc+=v*(r+(r=o)),Mc+=v*(u+(u=a)),_c+=v*(i+(i=c)),ye(r,u,i)}var t,e,r,u,i;kc.point=function(o,a){t=o,e=a,kc.point=n,o*=Na;var c=Math.cos(a*=Na);r=c*Math.cos(o),u=c*Math.sin(o),i=Math.sin(a),ye(r,u,i)},kc.lineEnd=function(){n(t,e),kc.lineEnd=Me,kc.point=me}}function be(){return!0}function we(n,t,e,r,u){var i=[],o=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(de(e,r)){u.lineStart();for(var a=0;t>a;++a)u.point((e=n[a])[0],e[1]);return u.lineEnd(),void 0}var c=new ke(e,n,null,!0),s=new ke(e,null,c,!1);c.o=s,i.push(c),o.push(s),c=new ke(r,n,null,!1),s=new ke(r,null,c,!0),c.o=s,i.push(c),o.push(s)}}),o.sort(t),Se(i),Se(o),i.length){for(var a=0,c=e,s=o.length;s>a;++a)o[a].e=c=!c;for(var l,f,h=i[0];;){for(var g=h,p=!0;g.v;)if((g=g.n)===h)return;l=g.z,u.lineStart();do{if(g.v=g.o.v=!0,g.e){if(p)for(var a=0,s=l.length;s>a;++a)u.point((f=l[a])[0],f[1]);else r(g.x,g.n.x,1,u);g=g.n}else{if(p){l=g.p.z;for(var a=l.length-1;a>=0;--a)u.point((f=l[a])[0],f[1])}else r(g.x,g.p.x,-1,u);g=g.p}g=g.o,l=g.z,p=!p}while(!g.v);u.lineEnd()}}}function Se(n){if(t=n.length){for(var t,e,r=0,u=n[0];++r<t;)u.n=e=n[r],e.p=u,u=e;u.n=e=n[0],e.p=u}}function ke(n,t,e,r){this.x=n,this.z=t,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function Ee(n,t,e,r){return function(u,i){function o(t,e){var r=u(t,e);n(t=r[0],e=r[1])&&i.point(t,e)}function a(n,t){var e=u(n,t);d.point(e[0],e[1])}function c(){y.point=a,d.lineStart()}function s(){y.point=o,d.lineEnd()}function l(n,t){v.push([n,t]);var e=u(n,t);M.point(e[0],e[1])}function f(){M.lineStart(),v=[]}function h(){l(v[0][0],v[0][1]),M.lineEnd();var n,t=M.clean(),e=x.buffer(),r=e.length;if(v.pop(),p.push(v),v=null,r){if(1&t){n=e[0];var u,r=n.length-1,o=-1;for(i.lineStart();++o<r;)i.point((u=n[o])[0],u[1]);return i.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),g.push(e.filter(Ae))}}var g,p,v,d=t(i),m=u.invert(r[0],r[1]),y={point:o,lineStart:c,lineEnd:s,polygonStart:function(){y.point=l,y.lineStart=f,y.lineEnd=h,g=[],p=[],i.polygonStart()},polygonEnd:function(){y.point=o,y.lineStart=c,y.lineEnd=s,g=Xo.merge(g);var n=Le(m,p);g.length?we(g,Ne,n,e,i):n&&(i.lineStart(),e(null,null,1,i),i.lineEnd()),i.polygonEnd(),g=p=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},x=Ce(),M=t(x);return y}}function Ae(n){return n.length>1}function Ce(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:g,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Ne(n,t){return((n=n.x)[0]<0?n[1]-Ea-Aa:Ea-n[1])-((t=t.x)[0]<0?t[1]-Ea-Aa:Ea-t[1])}function Le(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,o=0;hc.reset();for(var a=0,c=t.length;c>a;++a){var s=t[a],l=s.length;if(l)for(var f=s[0],h=f[0],g=f[1]/2+Sa/4,p=Math.sin(g),v=Math.cos(g),d=1;;){d===l&&(d=0),n=s[d];var m=n[0],y=n[1]/2+Sa/4,x=Math.sin(y),M=Math.cos(y),_=m-h,b=_>=0?1:-1,w=b*_,S=w>Sa,k=p*x;if(hc.add(Math.atan2(k*b*Math.sin(w),v*M+k*Math.cos(w))),i+=S?_+b*ka:_,S^h>=e^m>=e){var E=fe(se(f),se(n));pe(E);var A=fe(u,E);pe(A);var C=(S^_>=0?-1:1)*X(A[2]);(r>C||r===C&&(E[0]||E[1]))&&(o+=S^_>=0?1:-1)}if(!d++)break;h=m,p=x,v=M,f=n}}return(-Aa>i||Aa>i&&0>hc)^1&o}function Te(n){var t,e=0/0,r=0/0,u=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(i,o){var a=i>0?Sa:-Sa,c=oa(i-e);oa(c-Sa)<Aa?(n.point(e,r=(r+o)/2>0?Ea:-Ea),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(i,r),t=0):u!==a&&c>=Sa&&(oa(e-u)<Aa&&(e-=u*Aa),oa(i-a)<Aa&&(i-=a*Aa),r=qe(e,r,i,o),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),t=0),n.point(e=i,r=o),u=a},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function qe(n,t,e,r){var u,i,o=Math.sin(n-e);return oa(o)>Aa?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*o)):(t+r)/2}function ze(n,t,e,r){var u;if(null==n)u=e*Ea,r.point(-Sa,u),r.point(0,u),r.point(Sa,u),r.point(Sa,0),r.point(Sa,-u),r.point(0,-u),r.point(-Sa,-u),r.point(-Sa,0),r.point(-Sa,u);else if(oa(n[0]-t[0])>Aa){var i=n[0]<t[0]?Sa:-Sa;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function Re(n){function t(n,t){return Math.cos(n)*Math.cos(t)>i}function e(n){var e,i,c,s,l;return{lineStart:function(){s=c=!1,l=1},point:function(f,h){var g,p=[f,h],v=t(f,h),d=o?v?0:u(f,h):v?u(f+(0>f?Sa:-Sa),h):0;if(!e&&(s=c=v)&&n.lineStart(),v!==c&&(g=r(e,p),(de(e,g)||de(p,g))&&(p[0]+=Aa,p[1]+=Aa,v=t(p[0],p[1]))),v!==c)l=0,v?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(a&&e&&o^v){var m;d&i||!(m=r(p,e,!0))||(l=0,o?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!v||e&&de(e,p)||n.point(p[0],p[1]),e=p,c=v,i=d},lineEnd:function(){c&&n.lineEnd(),e=null},clean:function(){return l|(s&&c)<<1}}}function r(n,t,e){var r=se(n),u=se(t),o=[1,0,0],a=fe(r,u),c=le(a,a),s=a[0],l=c-s*s;if(!l)return!e&&n;var f=i*c/l,h=-i*s/l,g=fe(o,a),p=ge(o,f),v=ge(a,h);he(p,v);var d=g,m=le(p,d),y=le(d,d),x=m*m-y*(le(p,p)-1);if(!(0>x)){var M=Math.sqrt(x),_=ge(d,(-m-M)/y);if(he(_,p),_=ve(_),!e)return _;var b,w=n[0],S=t[0],k=n[1],E=t[1];w>S&&(b=w,w=S,S=b);var A=S-w,C=oa(A-Sa)<Aa,N=C||Aa>A;if(!C&&k>E&&(b=k,k=E,E=b),N?C?k+E>0^_[1]<(oa(_[0]-w)<Aa?k:E):k<=_[1]&&_[1]<=E:A>Sa^(w<=_[0]&&_[0]<=S)){var L=ge(d,(-m+M)/y);return he(L,p),[_,ve(L)]}}}function u(t,e){var r=o?n:Sa-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}var i=Math.cos(n),o=i>0,a=oa(i)>Aa,c=cr(n,6*Na);return Ee(t,e,c,o?[0,-n]:[-Sa,n-Sa])}function De(n,t,e,r){return function(u){var i,o=u.a,a=u.b,c=o.x,s=o.y,l=a.x,f=a.y,h=0,g=1,p=l-c,v=f-s;if(i=n-c,p||!(i>0)){if(i/=p,0>p){if(h>i)return;g>i&&(g=i)}else if(p>0){if(i>g)return;i>h&&(h=i)}if(i=e-c,p||!(0>i)){if(i/=p,0>p){if(i>g)return;i>h&&(h=i)}else if(p>0){if(h>i)return;g>i&&(g=i)}if(i=t-s,v||!(i>0)){if(i/=v,0>v){if(h>i)return;g>i&&(g=i)}else if(v>0){if(i>g)return;i>h&&(h=i)}if(i=r-s,v||!(0>i)){if(i/=v,0>v){if(i>g)return;i>h&&(h=i)}else if(v>0){if(h>i)return;g>i&&(g=i)}return h>0&&(u.a={x:c+h*p,y:s+h*v}),1>g&&(u.b={x:c+g*p,y:s+g*v}),u}}}}}}function Pe(n,t,e,r){function u(r,u){return oa(r[0]-n)<Aa?u>0?0:3:oa(r[0]-e)<Aa?u>0?2:1:oa(r[1]-t)<Aa?u>0?1:0:u>0?3:2}function i(n,t){return o(n.x,t.x)}function o(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(a){function c(n){for(var t=0,e=d.length,r=n[1],u=0;e>u;++u)for(var i,o=1,a=d[u],c=a.length,s=a[0];c>o;++o)i=a[o],s[1]<=r?i[1]>r&&Z(s,i,n)>0&&++t:i[1]<=r&&Z(s,i,n)<0&&--t,s=i;return 0!==t}function s(i,a,c,s){var l=0,f=0;if(null==i||(l=u(i,c))!==(f=u(a,c))||o(i,a)<0^c>0){do s.point(0===l||3===l?n:e,l>1?r:t);while((l=(l+c+4)%4)!==f)}else s.point(a[0],a[1])}function l(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function f(n,t){l(n,t)&&a.point(n,t)}function h(){N.point=p,d&&d.push(m=[]),S=!0,w=!1,_=b=0/0}function g(){v&&(p(y,x),M&&w&&A.rejoin(),v.push(A.buffer())),N.point=f,w&&a.lineEnd()}function p(n,t){n=Math.max(-Ac,Math.min(Ac,n)),t=Math.max(-Ac,Math.min(Ac,t));var e=l(n,t);if(d&&m.push([n,t]),S)y=n,x=t,M=e,S=!1,e&&(a.lineStart(),a.point(n,t));else if(e&&w)a.point(n,t);else{var r={a:{x:_,y:b},b:{x:n,y:t}};C(r)?(w||(a.lineStart(),a.point(r.a.x,r.a.y)),a.point(r.b.x,r.b.y),e||a.lineEnd(),k=!1):e&&(a.lineStart(),a.point(n,t),k=!1)}_=n,b=t,w=e}var v,d,m,y,x,M,_,b,w,S,k,E=a,A=Ce(),C=De(n,t,e,r),N={point:f,lineStart:h,lineEnd:g,polygonStart:function(){a=A,v=[],d=[],k=!0},polygonEnd:function(){a=E,v=Xo.merge(v);var t=c([n,r]),e=k&&t,u=v.length;(e||u)&&(a.polygonStart(),e&&(a.lineStart(),s(null,null,1,a),a.lineEnd()),u&&we(v,i,t,s,a),a.polygonEnd()),v=d=m=null}};return N}}function Ue(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function je(n){var t=0,e=Sa/3,r=nr(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*Sa/180,e=n[1]*Sa/180):[180*(t/Sa),180*(e/Sa)]},u}function He(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),o-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),o=Math.sqrt(i)/u;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/u,X((i-(n*n+e*e)*u*u)/(2*u))]},e}function Fe(){function n(n,t){Nc+=u*n-r*t,r=n,u=t}var t,e,r,u;Rc.point=function(i,o){Rc.point=n,t=r=i,e=u=o},Rc.lineEnd=function(){n(t,e)}}function Oe(n,t){Lc>n&&(Lc=n),n>qc&&(qc=n),Tc>t&&(Tc=t),t>zc&&(zc=t)}function Ye(){function n(n,t){o.push("M",n,",",t,i)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function u(){o.push("Z")}var i=Ie(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return i=Ie(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function Ie(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Ze(n,t){dc+=n,mc+=t,++yc}function Ve(){function n(n,r){var u=n-t,i=r-e,o=Math.sqrt(u*u+i*i);xc+=o*(t+n)/2,Mc+=o*(e+r)/2,_c+=o,Ze(t=n,e=r)}var t,e;Pc.point=function(r,u){Pc.point=n,Ze(t=r,e=u)}}function Xe(){Pc.point=Ze}function $e(){function n(n,t){var e=n-r,i=t-u,o=Math.sqrt(e*e+i*i);xc+=o*(r+n)/2,Mc+=o*(u+t)/2,_c+=o,o=u*n-r*t,bc+=o*(r+n),wc+=o*(u+t),Sc+=3*o,Ze(r=n,u=t)}var t,e,r,u;Pc.point=function(i,o){Pc.point=n,Ze(t=r=i,e=u=o)},Pc.lineEnd=function(){n(t,e)}}function Be(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,o,0,ka)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function u(){a.point=t}function i(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:u,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=u,a.point=t},pointRadius:function(n){return o=n,a},result:g};return a}function We(n){function t(n){return(a?r:e)(n)}function e(t){return Ke(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){x=0/0,S.point=i,t.lineStart()}function i(e,r){var i=se([e,r]),o=n(e,r);u(x,M,y,_,b,w,x=o[0],M=o[1],y=e,_=i[0],b=i[1],w=i[2],a,t),t.point(x,M)}function o(){S.point=e,t.lineEnd()}function c(){r(),S.point=s,S.lineEnd=l}function s(n,t){i(f=n,h=t),g=x,p=M,v=_,d=b,m=w,S.point=i}function l(){u(x,M,y,_,b,w,g,p,f,v,d,m,a,t),S.lineEnd=o,o()}var f,h,g,p,v,d,m,y,x,M,_,b,w,S={point:e,lineStart:r,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function u(t,e,r,a,c,s,l,f,h,g,p,v,d,m){var y=l-t,x=f-e,M=y*y+x*x;if(M>4*i&&d--){var _=a+g,b=c+p,w=s+v,S=Math.sqrt(_*_+b*b+w*w),k=Math.asin(w/=S),E=oa(oa(w)-1)<Aa||oa(r-h)<Aa?(r+h)/2:Math.atan2(b,_),A=n(E,k),C=A[0],N=A[1],L=C-t,T=N-e,q=x*L-y*T;(q*q/M>i||oa((y*L+x*T)/M-.5)>.3||o>a*g+c*p+s*v)&&(u(t,e,r,a,c,s,C,N,E,_/=S,b/=S,w,d,m),m.point(C,N),u(C,N,E,_,b,w,l,f,h,g,p,v,d,m))}}var i=.5,o=Math.cos(30*Na),a=16;return t.precision=function(n){return arguments.length?(a=(i=n*n)>0&&16,t):Math.sqrt(i)},t}function Je(n){var t=We(function(t,e){return n([t*La,e*La])});return function(n){return tr(t(n))}}function Ge(n){this.stream=n}function Ke(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function Qe(n){return nr(function(){return n})()}function nr(n){function t(n){return n=a(n[0]*Na,n[1]*Na),[n[0]*h+c,s-n[1]*h]}function e(n){return n=a.invert((n[0]-c)/h,(s-n[1])/h),n&&[n[0]*La,n[1]*La]}function r(){a=Ue(o=ur(m,y,x),i);var n=i(v,d);return c=g-n[0]*h,s=p+n[1]*h,u()}function u(){return l&&(l.valid=!1,l=null),t}var i,o,a,c,s,l,f=We(function(n,t){return n=i(n,t),[n[0]*h+c,s-n[1]*h]}),h=150,g=480,p=250,v=0,d=0,m=0,y=0,x=0,M=Ec,_=bt,b=null,w=null;return t.stream=function(n){return l&&(l.valid=!1),l=tr(M(o,f(_(n)))),l.valid=!0,l},t.clipAngle=function(n){return arguments.length?(M=null==n?(b=n,Ec):Re((b=+n)*Na),u()):b},t.clipExtent=function(n){return arguments.length?(w=n,_=n?Pe(n[0][0],n[0][1],n[1][0],n[1][1]):bt,u()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(v=n[0]%360*Na,d=n[1]%360*Na,r()):[v*La,d*La]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Na,y=n[1]%360*Na,x=n.length>2?n[2]%360*Na:0,r()):[m*La,y*La,x*La]},Xo.rebind(t,f,"precision"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function tr(n){return Ke(n,function(t,e){n.point(t*Na,e*Na)})}function er(n,t){return[n,t]}function rr(n,t){return[n>Sa?n-ka:-Sa>n?n+ka:n,t]}function ur(n,t,e){return n?t||e?Ue(or(n),ar(t,e)):or(n):t||e?ar(t,e):rr}function ir(n){return function(t,e){return t+=n,[t>Sa?t-ka:-Sa>t?t+ka:t,e]}}function or(n){var t=ir(n);return t.invert=ir(-n),t}function ar(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*r+a*u;return[Math.atan2(c*i-l*o,a*r-s*u),X(l*i+c*o)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*i-c*o;return[Math.atan2(c*i+s*o,a*r+l*u),X(l*r-a*u)]},e}function cr(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,o,a){var c=o*t;null!=u?(u=sr(e,u),i=sr(e,i),(o>0?i>u:u>i)&&(u+=o*ka)):(u=n+o*ka,i=n-.5*c);for(var s,l=u;o>0?l>i:i>l;l-=c)a.point((s=ve([e,-r*Math.cos(l),-r*Math.sin(l)]))[0],s[1])}}function sr(n,t){var e=se(t);e[0]-=n,pe(e);var r=V(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Aa)%(2*Math.PI)}function lr(n,t,e){var r=Xo.range(n,t-Aa,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function fr(n,t,e){var r=Xo.range(n,t-Aa,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function hr(n){return n.source}function gr(n){return n.target}function pr(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),o=Math.cos(r),a=Math.sin(r),c=u*Math.cos(n),s=u*Math.sin(n),l=o*Math.cos(e),f=o*Math.sin(e),h=2*Math.asin(Math.sqrt(J(r-t)+u*o*J(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*l,u=e*s+t*f,o=e*i+t*a;return[Math.atan2(u,r)*La,Math.atan2(o,Math.sqrt(r*r+u*u))*La]}:function(){return[n*La,t*La]};return p.distance=h,p}function vr(){function n(n,u){var i=Math.sin(u*=Na),o=Math.cos(u),a=oa((n*=Na)-t),c=Math.cos(a);Uc+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*i-e*o*c)*a),e*i+r*o*c),t=n,e=i,r=o}var t,e,r;jc.point=function(u,i){t=u*Na,e=Math.sin(i*=Na),r=Math.cos(i),jc.point=n},jc.lineEnd=function(){jc.point=jc.lineEnd=g}}function dr(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),o=Math.cos(u);return[Math.atan2(n*i,r*o),Math.asin(r&&e*i/r)]},e}function mr(n,t){function e(n,t){var e=oa(oa(t)-Ea)<Aa?0:o/Math.pow(u(t),i);return[e*Math.sin(i*n),o-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(Sa/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),o=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=o-t,r=I(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(o/r,1/i))-Ea]},e):xr}function yr(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return oa(u)<Aa?er:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-I(u)*Math.sqrt(n*n+e*e)]},e)}function xr(n,t){return[n,Math.log(Math.tan(Sa/4+t/2))]}function Mr(n){var t,e=Qe(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var o=i.apply(e,arguments);if(o===e){if(t=null==n){var a=Sa*r(),c=u();i([[c[0]-a,c[1]-a],[c[0]+a,c[1]+a]])}}else t&&(o=null);return o},e.clipExtent(null)}function _r(n,t){return[Math.log(Math.tan(Sa/4+t/2)),-n]}function br(n){return n[0]}function wr(n){return n[1]}function Sr(n){for(var t=n.length,e=[0,1],r=2,u=2;t>u;u++){for(;r>1&&Z(n[e[r-2]],n[e[r-1]],n[u])<=0;)--r;e[r++]=u}return e.slice(0,r)}function kr(n,t){return n[0]-t[0]||n[1]-t[1]}function Er(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Ar(n,t,e,r){var u=n[0],i=e[0],o=t[0]-u,a=r[0]-i,c=n[1],s=e[1],l=t[1]-c,f=r[1]-s,h=(a*(c-s)-f*(u-i))/(f*o-a*l);return[u+h*o,c+h*l]}function Cr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Nr(){Jr(this),this.edge=this.site=this.circle=null}function Lr(n){var t=Jc.pop()||new Nr;return t.site=n,t}function Tr(n){Or(n),$c.remove(n),Jc.push(n),Jr(n)}function qr(n){var t=n.circle,e=t.x,r=t.cy,u={x:e,y:r},i=n.P,o=n.N,a=[n];Tr(n);for(var c=i;c.circle&&oa(e-c.circle.x)<Aa&&oa(r-c.circle.cy)<Aa;)i=c.P,a.unshift(c),Tr(c),c=i;a.unshift(c),Or(c);for(var s=o;s.circle&&oa(e-s.circle.x)<Aa&&oa(r-s.circle.cy)<Aa;)o=s.N,a.push(s),Tr(s),s=o;a.push(s),Or(s);var l,f=a.length;for(l=1;f>l;++l)s=a[l],c=a[l-1],$r(s.edge,c.site,s.site,u);c=a[0],s=a[f-1],s.edge=Vr(c.site,s.site,null,u),Fr(c),Fr(s)}function zr(n){for(var t,e,r,u,i=n.x,o=n.y,a=$c._;a;)if(r=Rr(a,o)-i,r>Aa)a=a.L;else{if(u=i-Dr(a,o),!(u>Aa)){r>-Aa?(t=a.P,e=a):u>-Aa?(t=a,e=a.N):t=e=a;break}if(!a.R){t=a;break}a=a.R}var c=Lr(n);if($c.insert(t,c),t||e){if(t===e)return Or(t),e=Lr(t.site),$c.insert(c,e),c.edge=e.edge=Vr(t.site,c.site),Fr(t),Fr(e),void 0;if(!e)return c.edge=Vr(t.site,c.site),void 0;Or(t),Or(e);var s=t.site,l=s.x,f=s.y,h=n.x-l,g=n.y-f,p=e.site,v=p.x-l,d=p.y-f,m=2*(h*d-g*v),y=h*h+g*g,x=v*v+d*d,M={x:(d*y-g*x)/m+l,y:(h*x-v*y)/m+f};$r(e.edge,s,p,M),c.edge=Vr(s,n,null,M),e.edge=Vr(n,p,null,M),Fr(t),Fr(e)}}function Rr(n,t){var e=n.site,r=e.x,u=e.y,i=u-t;if(!i)return r;var o=n.P;if(!o)return-1/0;e=o.site;var a=e.x,c=e.y,s=c-t;if(!s)return a;var l=a-r,f=1/i-1/s,h=l/s;return f?(-h+Math.sqrt(h*h-2*f*(l*l/(-2*s)-c+s/2+u-i/2)))/f+r:(r+a)/2}function Dr(n,t){var e=n.N;if(e)return Rr(e,t);var r=n.site;return r.y===t?r.x:1/0}function Pr(n){this.site=n,this.edges=[]}function Ur(n){for(var t,e,r,u,i,o,a,c,s,l,f=n[0][0],h=n[1][0],g=n[0][1],p=n[1][1],v=Xc,d=v.length;d--;)if(i=v[d],i&&i.prepare())for(a=i.edges,c=a.length,o=0;c>o;)l=a[o].end(),r=l.x,u=l.y,s=a[++o%c].start(),t=s.x,e=s.y,(oa(r-t)>Aa||oa(u-e)>Aa)&&(a.splice(o,0,new Br(Xr(i.site,l,oa(r-f)<Aa&&p-u>Aa?{x:f,y:oa(t-f)<Aa?e:p}:oa(u-p)<Aa&&h-r>Aa?{x:oa(e-p)<Aa?t:h,y:p}:oa(r-h)<Aa&&u-g>Aa?{x:h,y:oa(t-h)<Aa?e:g}:oa(u-g)<Aa&&r-f>Aa?{x:oa(e-g)<Aa?t:f,y:g}:null),i.site,null)),++c)}function jr(n,t){return t.angle-n.angle}function Hr(){Jr(this),this.x=this.y=this.arc=this.site=this.cy=null}function Fr(n){var t=n.P,e=n.N;if(t&&e){var r=t.site,u=n.site,i=e.site;if(r!==i){var o=u.x,a=u.y,c=r.x-o,s=r.y-a,l=i.x-o,f=i.y-a,h=2*(c*f-s*l);if(!(h>=-Ca)){var g=c*c+s*s,p=l*l+f*f,v=(f*g-s*p)/h,d=(c*p-l*g)/h,f=d+a,m=Gc.pop()||new Hr;m.arc=n,m.site=u,m.x=v+o,m.y=f+Math.sqrt(v*v+d*d),m.cy=f,n.circle=m;for(var y=null,x=Wc._;x;)if(m.y<x.y||m.y===x.y&&m.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}Wc.insert(y,m),y||(Bc=m)}}}}function Or(n){var t=n.circle;t&&(t.P||(Bc=t.N),Wc.remove(t),Gc.push(t),Jr(t),n.circle=null)}function Yr(n){for(var t,e=Vc,r=De(n[0][0],n[0][1],n[1][0],n[1][1]),u=e.length;u--;)t=e[u],(!Ir(t,n)||!r(t)||oa(t.a.x-t.b.x)<Aa&&oa(t.a.y-t.b.y)<Aa)&&(t.a=t.b=null,e.splice(u,1))}function Ir(n,t){var e=n.b;if(e)return!0;var r,u,i=n.a,o=t[0][0],a=t[1][0],c=t[0][1],s=t[1][1],l=n.l,f=n.r,h=l.x,g=l.y,p=f.x,v=f.y,d=(h+p)/2,m=(g+v)/2;if(v===g){if(o>d||d>=a)return;if(h>p){if(i){if(i.y>=s)return}else i={x:d,y:c};e={x:d,y:s}}else{if(i){if(i.y<c)return}else i={x:d,y:s};e={x:d,y:c}}}else if(r=(h-p)/(v-g),u=m-r*d,-1>r||r>1)if(h>p){if(i){if(i.y>=s)return}else i={x:(c-u)/r,y:c};e={x:(s-u)/r,y:s}}else{if(i){if(i.y<c)return}else i={x:(s-u)/r,y:s};e={x:(c-u)/r,y:c}}else if(v>g){if(i){if(i.x>=a)return}else i={x:o,y:r*o+u};e={x:a,y:r*a+u}}else{if(i){if(i.x<o)return}else i={x:a,y:r*a+u};e={x:o,y:r*o+u}}return n.a=i,n.b=e,!0}function Zr(n,t){this.l=n,this.r=t,this.a=this.b=null}function Vr(n,t,e,r){var u=new Zr(n,t);return Vc.push(u),e&&$r(u,n,t,e),r&&$r(u,t,n,r),Xc[n.i].edges.push(new Br(u,n,t)),Xc[t.i].edges.push(new Br(u,t,n)),u}function Xr(n,t,e){var r=new Zr(n,null);return r.a=t,r.b=e,Vc.push(r),r}function $r(n,t,e,r){n.a||n.b?n.l===e?n.b=r:n.a=r:(n.a=r,n.l=t,n.r=e)}function Br(n,t,e){var r=n.a,u=n.b;this.edge=n,this.site=t,this.angle=e?Math.atan2(e.y-t.y,e.x-t.x):n.l===t?Math.atan2(u.x-r.x,r.y-u.y):Math.atan2(r.x-u.x,u.y-r.y)}function Wr(){this._=null}function Jr(n){n.U=n.C=n.L=n.R=n.P=n.N=null}function Gr(n,t){var e=t,r=t.R,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function Kr(n,t){var e=t,r=t.L,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function Qr(n){for(;n.L;)n=n.L;return n}function nu(n,t){var e,r,u,i=n.sort(tu).pop();for(Vc=[],Xc=new Array(n.length),$c=new Wr,Wc=new Wr;;)if(u=Bc,i&&(!u||i.y<u.y||i.y===u.y&&i.x<u.x))(i.x!==e||i.y!==r)&&(Xc[i.i]=new Pr(i),zr(i),e=i.x,r=i.y),i=n.pop();else{if(!u)break;qr(u.arc)}t&&(Yr(t),Ur(t));var o={cells:Xc,edges:Vc};return $c=Wc=Vc=Xc=null,o}function tu(n,t){return t.y-n.y||t.x-n.x}function eu(n,t,e){return(n.x-e.x)*(t.y-n.y)-(n.x-t.x)*(e.y-n.y)}function ru(n){return n.x}function uu(n){return n.y}function iu(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function ou(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var o=.5*(e+u),a=.5*(r+i),c=t.nodes;c[0]&&ou(n,c[0],e,r,o,a),c[1]&&ou(n,c[1],o,r,u,a),c[2]&&ou(n,c[2],e,a,o,i),c[3]&&ou(n,c[3],o,a,u,i)}}function au(n,t){n=Xo.rgb(n),t=Xo.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,o=t.g-r,a=t.b-u;return function(n){return"#"+vt(Math.round(e+i*n))+vt(Math.round(r+o*n))+vt(Math.round(u+a*n))}}function cu(n,t){var e,r={},u={};for(e in n)e in t?r[e]=fu(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function su(n,t){return t-=n=+n,function(e){return n+t*e}}function lu(n,t){var e,r,u,i,o,a=0,c=0,s=[],l=[];for(n+="",t+="",Qc.lastIndex=0,r=0;e=Qc.exec(t);++r)e.index&&s.push(t.substring(a,c=e.index)),l.push({i:s.length,x:e[0]}),s.push(null),a=Qc.lastIndex;for(a<t.length&&s.push(t.substring(a)),r=0,i=l.length;(e=Qc.exec(n))&&i>r;++r)if(o=l[r],o.x==e[0]){if(o.i)if(null==s[o.i+1])for(s[o.i-1]+=o.x,s.splice(o.i,1),u=r+1;i>u;++u)l[u].i--;else for(s[o.i-1]+=o.x+s[o.i+1],s.splice(o.i,2),u=r+1;i>u;++u)l[u].i-=2;else if(null==s[o.i+1])s[o.i]=o.x;else for(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1),u=r+1;i>u;++u)l[u].i--;l.splice(r,1),i--,r--}else o.x=su(parseFloat(e[0]),parseFloat(o.x));for(;i>r;)o=l.pop(),null==s[o.i+1]?s[o.i]=o.x:(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1)),i--;return 1===s.length?null==s[0]?(o=l[0].x,function(n){return o(n)+""}):function(){return t}:function(n){for(r=0;i>r;++r)s[(o=l[r]).i]=o.x(n);return s.join("")}}function fu(n,t){for(var e,r=Xo.interpolators.length;--r>=0&&!(e=Xo.interpolators[r](n,t)););return e}function hu(n,t){var e,r=[],u=[],i=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(fu(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;o>e;++e)u[e]=t[e];return function(n){for(e=0;a>e;++e)u[e]=r[e](n);return u}}function gu(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function pu(n){return function(t){return 1-n(1-t)}}function vu(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function du(n){return n*n}function mu(n){return n*n*n}function yu(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function xu(n){return function(t){return Math.pow(t,n)}}function Mu(n){return 1-Math.cos(n*Ea)}function _u(n){return Math.pow(2,10*(n-1))}function bu(n){return 1-Math.sqrt(1-n*n)}function wu(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/ka*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*ka/t)}}function Su(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function ku(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Eu(n,t){n=Xo.hcl(n),t=Xo.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,o=t.c-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return rt(e+i*n,r+o*n,u+a*n)+""}}function Au(n,t){n=Xo.hsl(n),t=Xo.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,o=t.s-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return nt(e+i*n,r+o*n,u+a*n)+""}}function Cu(n,t){n=Xo.lab(n),t=Xo.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,o=t.a-r,a=t.b-u;return function(n){return ot(e+i*n,r+o*n,u+a*n)+""}}function Nu(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Lu(n){var t=[n.a,n.b],e=[n.c,n.d],r=qu(t),u=Tu(t,e),i=qu(zu(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*La,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*La:0}function Tu(n,t){return n[0]*t[0]+n[1]*t[1]}function qu(n){var t=Math.sqrt(Tu(n,n));return t&&(n[0]/=t,n[1]/=t),t}function zu(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Ru(n,t){var e,r=[],u=[],i=Xo.transform(n),o=Xo.transform(t),a=i.translate,c=o.translate,s=i.rotate,l=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push("translate(",null,",",null,")"),u.push({i:1,x:su(a[0],c[0])},{i:3,x:su(a[1],c[1])})):c[0]||c[1]?r.push("translate("+c+")"):r.push(""),s!=l?(s-l>180?l+=360:l-s>180&&(s+=360),u.push({i:r.push(r.pop()+"rotate(",null,")")-2,x:su(s,l)})):l&&r.push(r.pop()+"rotate("+l+")"),f!=h?u.push({i:r.push(r.pop()+"skewX(",null,")")-2,x:su(f,h)}):h&&r.push(r.pop()+"skewX("+h+")"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+"scale(",null,",",null,")"),u.push({i:e-4,x:su(g[0],p[0])},{i:e-2,x:su(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+"scale("+p+")"),e=u.length,function(n){for(var t,i=-1;++i<e;)r[(t=u[i]).i]=t.x(n);return r.join("")}}function Du(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Pu(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Uu(n){for(var t=n.source,e=n.target,r=Hu(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function ju(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Hu(n,t){if(n===t)return n;for(var e=ju(n),r=ju(t),u=e.pop(),i=r.pop(),o=null;u===i;)o=u,u=e.pop(),i=r.pop();return o}function Fu(n){n.fixed|=2}function Ou(n){n.fixed&=-7}function Yu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function Iu(n){n.fixed&=-5}function Zu(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,o=n.nodes,a=o.length,c=-1;++c<a;)i=o[c],null!=i&&(Zu(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var s=t*e[n.point.index];n.charge+=n.pointCharge=s,r+=s*n.point.x,u+=s*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function Vu(n,t){return Xo.rebind(n,t,"sort","children","value"),n.nodes=n,n.links=Wu,n}function Xu(n){return n.children}function $u(n){return n.value}function Bu(n,t){return t.value-n.value}function Wu(n){return Xo.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function Ju(n){return n.x}function Gu(n){return n.y}function Ku(n,t,e){n.y0=t,n.y=e}function Qu(n){return Xo.range(n.length)}function ni(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function ti(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function ei(n){return n.reduce(ri,0)}function ri(n,t){return n+t[1]}function ui(n,t){return ii(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function ii(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];++e<=t;)i[e]=u*e+r;return i}function oi(n){return[Xo.min(n),Xo.max(n)]}function ai(n,t){return n.parent==t.parent?1:2}function ci(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function si(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function li(n,t){var e=n.children;if(e&&(u=e.length))for(var r,u,i=-1;++i<u;)t(r=li(e[i],t),n)>0&&(n=r);return n}function fi(n,t){return n.x-t.x}function hi(n,t){return t.x-n.x}function gi(n,t){return n.depth-t.depth}function pi(n,t){function e(n,r){var u=n.children;if(u&&(o=u.length))for(var i,o,a=null,c=-1;++c<o;)i=u[c],e(i,a),a=i;t(n,r)}e(n,null)}function vi(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function di(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function mi(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function yi(n,t){return n.value-t.value}function xi(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Mi(n,t){n._pack_next=t,t._pack_prev=n}function _i(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function bi(n){function t(n){l=Math.min(n.x-n.r,l),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(s=e.length)){var e,r,u,i,o,a,c,s,l=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(wi),r=e[0],r.x=-r.r,r.y=0,t(r),s>1&&(u=e[1],u.x=u.r,u.y=0,t(u),s>2))for(i=e[2],Ei(r,u,i),t(i),xi(r,i),r._pack_prev=i,xi(i,u),u=r._pack_next,o=3;s>o;o++){Ei(r,u,i=e[o]);var p=0,v=1,d=1;for(a=u._pack_next;a!==u;a=a._pack_next,v++)if(_i(a,i)){p=1;break}if(1==p)for(c=r._pack_prev;c!==a._pack_prev&&!_i(c,i);c=c._pack_prev,d++);p?(d>v||v==d&&u.r<r.r?Mi(r,u=a):Mi(r=c,u),o--):(xi(r,i),u=i,t(i))}var m=(l+f)/2,y=(h+g)/2,x=0;for(o=0;s>o;o++)i=e[o],i.x-=m,i.y-=y,x=Math.max(x,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=x,e.forEach(Si)}}function wi(n){n._pack_next=n._pack_prev=n}function Si(n){delete n._pack_next,delete n._pack_prev}function ki(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,o=u.length;++i<o;)ki(u[i],t,e,r)}function Ei(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var o=t.r+e.r,a=u*u+i*i;o*=o,r*=r;var c=.5+(r-o)/(2*a),s=Math.sqrt(Math.max(0,2*o*(r+a)-(r-=a)*r-o*o))/(2*a);e.x=n.x+c*u+s*i,e.y=n.y+c*i-s*u}else e.x=n.x+r,e.y=n.y}function Ai(n){return 1+Xo.max(n,function(n){return n.y})}function Ci(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Ni(n){var t=n.children;return t&&t.length?Ni(t[0]):n}function Li(n){var t,e=n.children;return e&&(t=e.length)?Li(e[t-1]):n}function Ti(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function qi(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function zi(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Ri(n){return n.rangeExtent?n.rangeExtent():zi(n.range())}function Di(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Pi(n,t){var e,r=0,u=n.length-1,i=n[r],o=n[u];return i>o&&(e=r,r=u,u=e,e=i,i=o,o=e),n[r]=t.floor(i),n[u]=t.ceil(o),n}function Ui(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:ls}function ji(n,t,e,r){var u=[],i=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++o<=a;)u.push(e(n[o-1],n[o])),i.push(r(t[o-1],t[o]));return function(t){var e=Xo.bisect(n,t,1,a)-1;return i[e](u[e](t))}}function Hi(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?ji:Di,c=r?Pu:Du;return o=u(n,t,c,e),a=u(t,n,c,fu),i}function i(n){return o(n)}var o,a;return i.invert=function(n){return a(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Nu)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return Ii(n,t)},i.tickFormat=function(t,e){return Zi(n,t,e)},i.nice=function(t){return Oi(n,t),u()},i.copy=function(){return Hi(n,t,e,r)},u()}function Fi(n,t){return Xo.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Oi(n,t){return Pi(n,Ui(Yi(n,t)[2]))}function Yi(n,t){null==t&&(t=10);var e=zi(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function Ii(n,t){return Xo.range.apply(Xo,Yi(n,t))}function Zi(n,t,e){var r=Yi(n,t);return Xo.format(e?e.replace(Qa,function(n,t,e,u,i,o,a,c,s,l){return[t,e,u,i,o,a,c,s||"."+Xi(l,r),l].join("")}):",."+Vi(r[2])+"f")}function Vi(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function Xi(n,t){var e=Vi(t[2]);return n in fs?Math.abs(e-Vi(Math.max(Math.abs(t[0]),Math.abs(t[1]))))+ +("e"!==n):e-2*("%"===n)}function $i(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(u(t))}return o.invert=function(t){return i(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),o):t},o.nice=function(){var t=Pi(r.map(u),e?Math:gs);return n.domain(t),r=t.map(i),o},o.ticks=function(){var n=zi(r),o=[],a=n[0],c=n[1],s=Math.floor(u(a)),l=Math.ceil(u(c)),f=t%1?2:t;if(isFinite(l-s)){if(e){for(;l>s;s++)for(var h=1;f>h;h++)o.push(i(s)*h);o.push(i(s))}else for(o.push(i(s));s++<l;)for(var h=f-1;h>0;h--)o.push(i(s)*h);for(s=0;o[s]<a;s++);for(l=o.length;o[l-1]>c;l--);o=o.slice(s,l)}return o},o.tickFormat=function(n,t){if(!arguments.length)return hs;arguments.length<2?t=hs:"function"!=typeof t&&(t=Xo.format(t));var r,a=Math.max(.1,n/o.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return n/i(c(u(n)+r))<=a?t(n):""}},o.copy=function(){return $i(n.copy(),t,e,r)},Fi(o,n)}function Bi(n,t,e){function r(t){return n(u(t))}var u=Wi(t),i=Wi(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return Ii(e,n)},r.tickFormat=function(n,t){return Zi(e,n,t)},r.nice=function(n){return r.domain(Oi(e,n))},r.exponent=function(o){return arguments.length?(u=Wi(t=o),i=Wi(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return Bi(n.copy(),t,e)},Fi(r,n)}function Wi(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function Ji(n,t){function e(e){return o[((i.get(e)||"range"===t.t&&i.set(e,n.push(e)))-1)%o.length]}function r(t,e){return Xo.range(n.length).map(function(n){return t+e*n})}var i,o,a;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new u;for(var o,a=-1,c=r.length;++a<c;)i.has(o=r[a])||i.set(o,n.push(o));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(o=n,a=0,t={t:"range",a:arguments},e):o},e.rangePoints=function(u,i){arguments.length<2&&(i=0);var c=u[0],s=u[1],l=(s-c)/(Math.max(1,n.length-1)+i);return o=r(n.length<2?(c+s)/2:c+l*i/2,l),a=0,t={t:"rangePoints",a:arguments},e},e.rangeBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=(f-l)/(n.length-i+2*c);return o=r(l+h*c,h),s&&o.reverse(),a=h*(1-i),t={t:"rangeBands",a:arguments},e},e.rangeRoundBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=Math.floor((f-l)/(n.length-i+2*c)),g=f-l-(n.length-i)*h;return o=r(l+Math.round(g/2),h),s&&o.reverse(),a=Math.round(h*(1-i)),t={t:"rangeRoundBands",a:arguments},e},e.rangeBand=function(){return a},e.rangeExtent=function(){return zi(t.a[0])},e.copy=function(){return Ji(n,t)},e.domain(n)}function Gi(n,t){function e(){var e=0,i=t.length;for(u=[];++e<i;)u[e-1]=Xo.quantile(n,e/i);return r}function r(n){return isNaN(n=+n)?void 0:t[Xo.bisect(u,n)]}var u;return r.domain=function(t){return arguments.length?(n=t.filter(function(n){return!isNaN(n)}).sort(Xo.ascending),e()):n},r.range=function(n){return arguments.length?(t=n,e()):t},r.quantiles=function(){return u},r.invertExtent=function(e){return e=t.indexOf(e),0>e?[0/0,0/0]:[e>0?u[e-1]:n[0],e<u.length?u[e]:n[n.length-1]]},r.copy=function(){return Gi(n,t)},e()}function Ki(n,t,e){function r(t){return e[Math.max(0,Math.min(o,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),o=e.length-1,r}var i,o;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/i+n,[t,t+1/i]},r.copy=function(){return Ki(n,t,e)},u()}function Qi(n,t){function e(e){return e>=e?t[Xo.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return Qi(n,t)},e}function no(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Ii(n,t)},t.tickFormat=function(t,e){return Zi(n,t,e)},t.copy=function(){return no(n)},t}function to(n){return n.innerRadius}function eo(n){return n.outerRadius}function ro(n){return n.startAngle}function uo(n){return n.endAngle}function io(n){function t(t){function o(){s.push("M",i(n(l),a))}for(var c,s=[],l=[],f=-1,h=t.length,g=_t(e),p=_t(r);++f<h;)u.call(this,c=t[f],f)?l.push([+g.call(this,c,f),+p.call(this,c,f)]):l.length&&(o(),l=[]);return l.length&&o(),s.length?s.join(""):null}var e=br,r=wr,u=be,i=oo,o=i.key,a=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(o="function"==typeof n?i=n:(i=Ms.get(n)||oo).key,t):o},t.tension=function(n){return arguments.length?(a=n,t):a},t}function oo(n){return n.join("L")}function ao(n){return oo(n)+"Z"}function co(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r[0]+(r=n[t])[0])/2,"V",r[1]);return e>1&&u.push("H",r[0]),u.join("")}function so(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("V",(r=n[t])[1],"H",r[0]);return u.join("")}function lo(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r=n[t])[0],"V",r[1]);return u.join("")}function fo(n,t){return n.length<4?oo(n):n[1]+po(n.slice(1,n.length-1),vo(n,t))}function ho(n,t){return n.length<3?oo(n):n[0]+po((n.push(n[0]),n),vo([n[n.length-2]].concat(n,[n[1]]),t))}function go(n,t){return n.length<3?oo(n):n[0]+po(n,vo(n,t))}function po(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return oo(n);var e=n.length!=t.length,r="",u=n[0],i=n[1],o=t[0],a=o,c=1;if(e&&(r+="Q"+(i[0]-2*o[0]/3)+","+(i[1]-2*o[1]/3)+","+i[0]+","+i[1],u=n[1],c=2),t.length>1){a=t[1],i=n[c],c++,r+="C"+(u[0]+o[0])+","+(u[1]+o[1])+","+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1];for(var s=2;s<t.length;s++,c++)i=n[c],a=t[s],r+="S"+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1]}if(e){var l=n[c];r+="Q"+(i[0]+2*a[0]/3)+","+(i[1]+2*a[1]/3)+","+l[0]+","+l[1]}return r}function vo(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],o=n[1],a=1,c=n.length;++a<c;)e=i,i=o,o=n[a],r.push([u*(o[0]-e[0]),u*(o[1]-e[1])]);return r}function mo(n){if(n.length<3)return oo(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],o=[u,u,u,(r=n[1])[0]],a=[i,i,i,r[1]],c=[u,",",i,"L",_o(ws,o),",",_o(ws,a)];for(n.push(n[e-1]);++t<=e;)r=n[t],o.shift(),o.push(r[0]),a.shift(),a.push(r[1]),bo(c,o,a);return n.pop(),c.push("L",r),c.join("")}function yo(n){if(n.length<4)return oo(n);for(var t,e=[],r=-1,u=n.length,i=[0],o=[0];++r<3;)t=n[r],i.push(t[0]),o.push(t[1]);for(e.push(_o(ws,i)+","+_o(ws,o)),--r;++r<u;)t=n[r],i.shift(),i.push(t[0]),o.shift(),o.push(t[1]),bo(e,i,o);return e.join("")}function xo(n){for(var t,e,r=-1,u=n.length,i=u+4,o=[],a=[];++r<4;)e=n[r%u],o.push(e[0]),a.push(e[1]);for(t=[_o(ws,o),",",_o(ws,a)],--r;++r<i;)e=n[r%u],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),bo(t,o,a);return t.join("")}function Mo(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],o=n[0][1],a=n[e][0]-i,c=n[e][1]-o,s=-1;++s<=e;)r=n[s],u=s/e,r[0]=t*r[0]+(1-t)*(i+u*a),r[1]=t*r[1]+(1-t)*(o+u*c);return mo(n)}function _o(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function bo(n,t,e){n.push("C",_o(_s,t),",",_o(_s,e),",",_o(bs,t),",",_o(bs,e),",",_o(ws,t),",",_o(ws,e))}function wo(n,t){return(t[1]-n[1])/(t[0]-n[0])}function So(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],o=r[0]=wo(u,i);++t<e;)r[t]=(o+(o=wo(u=i,i=n[t+1])))/2;return r[t]=o,r}function ko(n){for(var t,e,r,u,i=[],o=So(n),a=-1,c=n.length-1;++a<c;)t=wo(n[a],n[a+1]),oa(t)<Aa?o[a]=o[a+1]=0:(e=o[a]/t,r=o[a+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),o[a]=u*e,o[a+1]=u*r));for(a=-1;++a<=c;)u=(n[Math.min(c,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),i.push([u||0,o[a]*u||0]);return i}function Eo(n){return n.length<3?oo(n):n[0]+po(n,ko(n))}function Ao(n){for(var t,e,r,u=-1,i=n.length;++u<i;)t=n[u],e=t[0],r=t[1]+ys,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function Co(n){function t(t){function c(){v.push("M",a(n(m),f),l,s(n(d.reverse()),f),"Z")}for(var h,g,p,v=[],d=[],m=[],y=-1,x=t.length,M=_t(e),_=_t(u),b=e===r?function(){return g}:_t(r),w=u===i?function(){return p}:_t(i);++y<x;)o.call(this,h=t[y],y)?(d.push([g=+M.call(this,h,y),p=+_.call(this,h,y)]),m.push([+b.call(this,h,y),+w.call(this,h,y)])):d.length&&(c(),d=[],m=[]);return d.length&&c(),v.length?v.join(""):null}var e=br,r=br,u=0,i=wr,o=be,a=oo,c=a.key,s=a,l="L",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(o=n,t):o},t.interpolate=function(n){return arguments.length?(c="function"==typeof n?a=n:(a=Ms.get(n)||oo).key,s=a.reverse||a,l=a.closed?"M":"L",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function No(n){return n.radius}function Lo(n){return[n.x,n.y]}function To(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+ys;return[e*Math.cos(r),e*Math.sin(r)]}}function qo(){return 64}function zo(){return"circle"}function Ro(n){var t=Math.sqrt(n/Sa);return"M0,"+t+"A"+t+","+t+" 0 1,1 0,"+-t+"A"+t+","+t+" 0 1,1 0,"+t+"Z"}function Do(n,t){return fa(n,Ns),n.id=t,n}function Po(n,t,e,r){var u=n.id;return R(n,"function"==typeof e?function(n,i,o){n.__transition__[u].tween.set(t,r(e.call(n,n.__data__,i,o)))}:(e=r(e),function(n){n.__transition__[u].tween.set(t,e)}))}function Uo(n){return null==n&&(n=""),function(){this.textContent=n}}function jo(n,t,e,r){var i=n.__transition__||(n.__transition__={active:0,count:0}),o=i[e];if(!o){var a=r.time;o=i[e]={tween:new u,time:a,ease:r.ease,delay:r.delay,duration:r.duration},++i.count,Xo.timer(function(r){function u(r){return i.active>e?s():(i.active=e,o.event&&o.event.start.call(n,l,t),o.tween.forEach(function(e,r){(r=r.call(n,l,t))&&v.push(r)}),Xo.timer(function(){return p.c=c(r||1)?be:c,1},0,a),void 0)}function c(r){if(i.active!==e)return s();for(var u=r/g,a=f(u),c=v.length;c>0;)v[--c].call(n,a);return u>=1?(o.event&&o.event.end.call(n,l,t),s()):void 0}function s(){return--i.count?delete i[e]:delete n.__transition__,1}var l=n.__data__,f=o.ease,h=o.delay,g=o.duration,p=Ja,v=[];return p.t=h+a,r>=h?u(r-h):(p.c=u,void 0)},0,a)}}function Ho(n,t){n.attr("transform",function(n){return"translate("+t(n)+",0)"})}function Fo(n,t){n.attr("transform",function(n){return"translate(0,"+t(n)+")"})}function Oo(n){return n.toISOString()}function Yo(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=Xo.bisect(js,u);return i==js.length?[t.year,Yi(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/js[i-1]<js[i]/u?i-1:i]:[Os,Yi(n,e)[2]]}return r.invert=function(t){return Io(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(Io)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,Io(+e+1),t).length}var i=r.domain(),o=zi(i),a=null==n?u(o,10):"number"==typeof n&&u(o,n);return a&&(n=a[0],t=a[1]),r.domain(Pi(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=Io(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=Io(+t+1);return t}}:n))},r.ticks=function(n,t){var e=zi(r.domain()),i=null==n?u(e,10):"number"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],Io(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return Yo(n.copy(),t,e)},Fi(r,n)}function Io(n){return new Date(n)}function Zo(n){return JSON.parse(n.responseText)}function Vo(n){var t=Wo.createRange();return t.selectNode(Wo.body),t.createContextualFragment(n.responseText)}var Xo={version:"3.4.3"};Date.now||(Date.now=function(){return+new Date});var $o=[].slice,Bo=function(n){return $o.call(n)},Wo=document,Jo=Wo.documentElement,Go=window;try{Bo(Jo.childNodes)[0].nodeType}catch(Ko){Bo=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}try{Wo.createElement("div").style.setProperty("opacity",0,"")}catch(Qo){var na=Go.Element.prototype,ta=na.setAttribute,ea=na.setAttributeNS,ra=Go.CSSStyleDeclaration.prototype,ua=ra.setProperty;na.setAttribute=function(n,t){ta.call(this,n,t+"")},na.setAttributeNS=function(n,t,e){ea.call(this,n,t,e+"")},ra.setProperty=function(n,t,e){ua.call(this,n,t+"",e)}}Xo.ascending=function(n,t){return t>n?-1:n>t?1:n>=t?0:0/0},Xo.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},Xo.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},Xo.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},Xo.extent=function(n,t){var e,r,u,i=-1,o=n.length;if(1===arguments.length){for(;++i<o&&!(null!=(e=u=n[i])&&e>=e);)e=u=void 0;for(;++i<o;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;++i<o&&!(null!=(e=u=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<o;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},Xo.sum=function(n,t){var e,r=0,u=n.length,i=-1;if(1===arguments.length)for(;++i<u;)isNaN(e=+n[i])||(r+=e);else for(;++i<u;)isNaN(e=+t.call(n,n[i],i))||(r+=e);return r},Xo.mean=function(t,e){var r,u=t.length,i=0,o=-1,a=0;if(1===arguments.length)for(;++o<u;)n(r=t[o])&&(i+=(r-i)/++a);else for(;++o<u;)n(r=e.call(t,t[o],o))&&(i+=(r-i)/++a);return a?i:void 0},Xo.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},Xo.median=function(t,e){return arguments.length>1&&(t=t.map(e)),t=t.filter(n),t.length?Xo.quantile(t.sort(Xo.ascending),.5):void 0},Xo.bisector=function(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n.call(t,t[i],i)<e?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;e<n.call(t,t[i],i)?u=i:r=i+1}return r}}};var ia=Xo.bisector(function(n){return n});Xo.bisectLeft=ia.left,Xo.bisect=Xo.bisectRight=ia.right,Xo.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},Xo.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},Xo.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=new Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},Xo.zip=function(){if(!(u=arguments.length))return[];for(var n=-1,e=Xo.min(arguments,t),r=new Array(e);++n<e;)for(var u,i=-1,o=r[n]=new Array(u);++i<u;)o[i]=arguments[i][n];return r},Xo.transpose=function(n){return Xo.zip.apply(Xo,n)},Xo.keys=function(n){var t=[];for(var e in n)t.push(e);return t},Xo.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},Xo.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},Xo.merge=function(n){for(var t,e,r,u=n.length,i=-1,o=0;++i<u;)o+=n[i].length;for(e=new Array(o);--u>=0;)for(r=n[u],t=r.length;--t>=0;)e[--o]=r[t];return e};var oa=Math.abs;Xo.range=function(n,t,r){if(arguments.length<3&&(r=1,arguments.length<2&&(t=n,n=0)),1/0===(t-n)/r)throw new Error("infinite range");var u,i=[],o=e(oa(r)),a=-1;if(n*=o,t*=o,r*=o,0>r)for(;(u=n+r*++a)>t;)i.push(u/o);else for(;(u=n+r*++a)<t;)i.push(u/o);return i},Xo.map=function(n){var t=new u;if(n instanceof u)n.forEach(function(n,e){t.set(n,e)});else for(var e in n)t.set(e,n[e]);return t},r(u,{has:i,get:function(n){return this[aa+n]},set:function(n,t){return this[aa+n]=t},remove:o,keys:a,values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},size:c,empty:s,forEach:function(n){for(var t in this)t.charCodeAt(0)===ca&&n.call(this,t.substring(1),this[t])}});var aa="\x00",ca=aa.charCodeAt(0);Xo.nest=function(){function n(t,a,c){if(c>=o.length)return r?r.call(i,a):e?a.sort(e):a;for(var s,l,f,h,g=-1,p=a.length,v=o[c++],d=new u;++g<p;)(h=d.get(s=v(l=a[g])))?h.push(l):d.set(s,[l]);return t?(l=t(),f=function(e,r){l.set(e,n(t,r,c))}):(l={},f=function(e,r){l[e]=n(t,r,c)}),d.forEach(f),l}function t(n,e){if(e>=o.length)return n;var r=[],u=a[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,i={},o=[],a=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(Xo.map,e,0),0)},i.key=function(n){return o.push(n),i},i.sortKeys=function(n){return a[o.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},Xo.set=function(n){var t=new l;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},r(l,{has:i,add:function(n){return this[aa+n]=!0,n},remove:function(n){return n=aa+n,n in this&&delete this[n]},values:a,size:c,empty:s,forEach:function(n){for(var t in this)t.charCodeAt(0)===ca&&n.call(this,t.substring(1))}}),Xo.behavior={},Xo.rebind=function(n,t){for(var e,r=1,u=arguments.length;++r<u;)n[e=arguments[r]]=f(n,t,t[e]);return n};var sa=["webkit","ms","moz","Moz","o","O"];Xo.dispatch=function(){for(var n=new p,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=v(n);return n},p.prototype.on=function(n,t){var e=n.indexOf("."),r="";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},Xo.event=null,Xo.requote=function(n){return n.replace(la,"\\$&")};var la=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,fa={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},ha=function(n,t){return t.querySelector(n)},ga=function(n,t){return t.querySelectorAll(n)},pa=Jo[h(Jo,"matchesSelector")],va=function(n,t){return pa.call(n,t)};"function"==typeof Sizzle&&(ha=function(n,t){return Sizzle(n,t)[0]||null},ga=Sizzle,va=Sizzle.matchesSelector),Xo.selection=function(){return xa};var da=Xo.selection.prototype=[];da.select=function(n){var t,e,r,u,i=[];n=M(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]),t.parentNode=(r=this[o]).parentNode;for(var c=-1,s=r.length;++c<s;)(u=r[c])?(t.push(e=n.call(u,u.__data__,c,o)),e&&"__data__"in u&&(e.__data__=u.__data__)):t.push(null)}return x(i)},da.selectAll=function(n){var t,e,r=[];n=_(n);for(var u=-1,i=this.length;++u<i;)for(var o=this[u],a=-1,c=o.length;++a<c;)(e=o[a])&&(r.push(t=Bo(n.call(e,e.__data__,a,u))),t.parentNode=e);return x(r)};var ma={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};Xo.ns={prefix:ma,qualify:function(n){var t=n.indexOf(":"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),ma.hasOwnProperty(e)?{space:ma[e],local:n}:n}},da.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=Xo.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(b(t,n[t]));return this}return this.each(b(n,t))},da.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=k(n)).length,u=-1;if(t=e.classList){for(;++u<r;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute("class");++u<r;)if(!S(n[u]).test(t))return!1;return!0}for(t in n)this.each(E(t,n[t]));return this}return this.each(E(n,t))},da.style=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t="");for(e in n)this.each(C(e,n[e],t));return this}if(2>r)return Go.getComputedStyle(this.node(),null).getPropertyValue(n);e=""}return this.each(C(n,t,e))},da.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(N(t,n[t]));return this}return this.each(N(n,t))},da.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},da.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},da.append=function(n){return n=L(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},da.insert=function(n,t){return n=L(n),t=M(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},da.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},da.data=function(n,t){function e(n,e){var r,i,o,a=n.length,f=e.length,h=Math.min(a,f),g=new Array(f),p=new Array(f),v=new Array(a);if(t){var d,m=new u,y=new u,x=[];for(r=-1;++r<a;)d=t.call(i=n[r],i.__data__,r),m.has(d)?v[r]=i:m.set(d,i),x.push(d);for(r=-1;++r<f;)d=t.call(e,o=e[r],r),(i=m.get(d))?(g[r]=i,i.__data__=o):y.has(d)||(p[r]=T(o)),y.set(d,o),m.remove(d);for(r=-1;++r<a;)m.has(x[r])&&(v[r]=n[r])}else{for(r=-1;++r<h;)i=n[r],o=e[r],i?(i.__data__=o,g[r]=i):p[r]=T(o);for(;f>r;++r)p[r]=T(e[r]);for(;a>r;++r)v[r]=n[r]}p.update=g,p.parentNode=g.parentNode=v.parentNode=n.parentNode,c.push(p),s.push(g),l.push(v)}var r,i,o=-1,a=this.length;if(!arguments.length){for(n=new Array(a=(r=this[0]).length);++o<a;)(i=r[o])&&(n[o]=i.__data__);return n}var c=D([]),s=x([]),l=x([]);if("function"==typeof n)for(;++o<a;)e(r=this[o],n.call(r,r.parentNode.__data__,o));else for(;++o<a;)e(r=this[o],n);return s.enter=function(){return c},s.exit=function(){return l},s},da.datum=function(n){return arguments.length?this.property("__data__",n):this.property("__data__")},da.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=q(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return x(u)},da.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},da.sort=function(n){n=z.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},da.each=function(n){return R(this,function(t,e,r){n.call(t,t.__data__,e,r)})},da.call=function(n){var t=Bo(arguments);return n.apply(t[0]=this,t),this},da.empty=function(){return!this.node()},da.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},da.size=function(){var n=0;return this.each(function(){++n}),n};var ya=[];Xo.selection.enter=D,Xo.selection.enter.prototype=ya,ya.append=da.append,ya.empty=da.empty,ya.node=da.node,ya.call=da.call,ya.size=da.size,ya.select=function(n){for(var t,e,r,u,i,o=[],a=-1,c=this.length;++a<c;){r=(u=this[a]).update,o.push(t=[]),t.parentNode=u.parentNode;for(var s=-1,l=u.length;++s<l;)(i=u[s])?(t.push(r[s]=e=n.call(u.parentNode,i.__data__,s,a)),e.__data__=i.__data__):t.push(null)}return x(o)},ya.insert=function(n,t){return arguments.length<2&&(t=P(this)),da.insert.call(this,n,t)},da.transition=function(){for(var n,t,e=ks||++Ls,r=[],u=Es||{time:Date.now(),ease:yu,delay:0,duration:250},i=-1,o=this.length;++i<o;){r.push(n=[]);for(var a=this[i],c=-1,s=a.length;++c<s;)(t=a[c])&&jo(t,c,e,u),n.push(t)}return Do(r,e)},da.interrupt=function(){return this.each(U)},Xo.select=function(n){var t=["string"==typeof n?ha(n,Wo):n];return t.parentNode=Jo,x([t])},Xo.selectAll=function(n){var t=Bo("string"==typeof n?ga(n,Wo):n);return t.parentNode=Jo,x([t])};var xa=Xo.select(Jo);da.on=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(j(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(j(n,t,e))};var Ma=Xo.map({mouseenter:"mouseover",mouseleave:"mouseout"});Ma.forEach(function(n){"on"+n in Wo&&Ma.remove(n)});var _a="onselectstart"in Wo?null:h(Jo.style,"userSelect"),ba=0;Xo.mouse=function(n){return Y(n,m())};var wa=/WebKit/.test(Go.navigator.userAgent)?-1:0;Xo.touches=function(n,t){return arguments.length<2&&(t=m().touches),t?Bo(t).map(function(t){var e=Y(n,t);return e.identifier=t.identifier,e}):[]},Xo.behavior.drag=function(){function n(){this.on("mousedown.drag",o).on("touchstart.drag",a)}function t(){return Xo.event.changedTouches[0].identifier}function e(n,t){return Xo.touches(n).filter(function(n){return n.identifier===t})[0]}function r(n,t,e,r){return function(){function o(){var n=t(l,g),e=n[0]-v[0],r=n[1]-v[1];d|=e|r,v=n,f({type:"drag",x:n[0]+c[0],y:n[1]+c[1],dx:e,dy:r})}function a(){m.on(e+"."+p,null).on(r+"."+p,null),y(d&&Xo.event.target===h),f({type:"dragend"})}var c,s=this,l=s.parentNode,f=u.of(s,arguments),h=Xo.event.target,g=n(),p=null==g?"drag":"drag-"+g,v=t(l,g),d=0,m=Xo.select(Go).on(e+"."+p,o).on(r+"."+p,a),y=O();i?(c=i.apply(s,arguments),c=[c.x-v[0],c.y-v[1]]):c=[0,0],f({type:"dragstart"})}}var u=y(n,"drag","dragstart","dragend"),i=null,o=r(g,Xo.mouse,"mousemove","mouseup"),a=r(t,e,"touchmove","touchend");return n.origin=function(t){return arguments.length?(i=t,n):i},Xo.rebind(n,u,"on")};var Sa=Math.PI,ka=2*Sa,Ea=Sa/2,Aa=1e-6,Ca=Aa*Aa,Na=Sa/180,La=180/Sa,Ta=Math.SQRT2,qa=2,za=4;Xo.interpolateZoom=function(n,t){function e(n){var t=n*y;if(m){var e=B(v),o=i/(qa*h)*(e*W(Ta*t+v)-$(v));return[r+o*s,u+o*l,i*e/B(Ta*t+v)]}return[r+n*s,u+n*l,i*Math.exp(Ta*t)]}var r=n[0],u=n[1],i=n[2],o=t[0],a=t[1],c=t[2],s=o-r,l=a-u,f=s*s+l*l,h=Math.sqrt(f),g=(c*c-i*i+za*f)/(2*i*qa*h),p=(c*c-i*i-za*f)/(2*c*qa*h),v=Math.log(Math.sqrt(g*g+1)-g),d=Math.log(Math.sqrt(p*p+1)-p),m=d-v,y=(m||Math.log(c/i))/Ta;return e.duration=1e3*y,e},Xo.behavior.zoom=function(){function n(n){n.on(A,s).on(Pa+".zoom",f).on(C,h).on("dblclick.zoom",g).on(L,l)}function t(n){return[(n[0]-S.x)/S.k,(n[1]-S.y)/S.k]}function e(n){return[n[0]*S.k+S.x,n[1]*S.k+S.y]}function r(n){S.k=Math.max(E[0],Math.min(E[1],n))}function u(n,t){t=e(t),S.x+=n[0]-t[0],S.y+=n[1]-t[1]}function i(){_&&_.domain(M.range().map(function(n){return(n-S.x)/S.k}).map(M.invert)),w&&w.domain(b.range().map(function(n){return(n-S.y)/S.k}).map(b.invert))}function o(n){n({type:"zoomstart"})}function a(n){i(),n({type:"zoom",scale:S.k,translate:[S.x,S.y]})}function c(n){n({type:"zoomend"})}function s(){function n(){l=1,u(Xo.mouse(r),g),a(i)}function e(){f.on(C,Go===r?h:null).on(N,null),p(l&&Xo.event.target===s),c(i)}var r=this,i=T.of(r,arguments),s=Xo.event.target,l=0,f=Xo.select(Go).on(C,n).on(N,e),g=t(Xo.mouse(r)),p=O();U.call(r),o(i)}function l(){function n(){var n=Xo.touches(g);return h=S.k,n.forEach(function(n){n.identifier in v&&(v[n.identifier]=t(n))}),n}function e(){for(var t=Xo.event.changedTouches,e=0,i=t.length;i>e;++e)v[t[e].identifier]=null;var o=n(),c=Date.now();if(1===o.length){if(500>c-x){var s=o[0],l=v[s.identifier];r(2*S.k),u(s,l),d(),a(p)}x=c}else if(o.length>1){var s=o[0],f=o[1],h=s[0]-f[0],g=s[1]-f[1];m=h*h+g*g}}function i(){for(var n,t,e,i,o=Xo.touches(g),c=0,s=o.length;s>c;++c,i=null)if(e=o[c],i=v[e.identifier]){if(t)break;n=e,t=i}if(i){var l=(l=e[0]-n[0])*l+(l=e[1]-n[1])*l,f=m&&Math.sqrt(l/m);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+i[0])/2,(t[1]+i[1])/2],r(f*h)}x=null,u(n,t),a(p)}function f(){if(Xo.event.touches.length){for(var t=Xo.event.changedTouches,e=0,r=t.length;r>e;++e)delete v[t[e].identifier];for(var u in v)return void n()}b.on(M,null).on(_,null),w.on(A,s).on(L,l),k(),c(p)}var h,g=this,p=T.of(g,arguments),v={},m=0,y=Xo.event.changedTouches[0].identifier,M="touchmove.zoom-"+y,_="touchend.zoom-"+y,b=Xo.select(Go).on(M,i).on(_,f),w=Xo.select(g).on(A,null).on(L,e),k=O();U.call(g),e(),o(p)}function f(){var n=T.of(this,arguments);m?clearTimeout(m):(U.call(this),o(n)),m=setTimeout(function(){m=null,c(n)},50),d();var e=v||Xo.mouse(this);p||(p=t(e)),r(Math.pow(2,.002*Ra())*S.k),u(e,p),a(n)}function h(){p=null}function g(){var n=T.of(this,arguments),e=Xo.mouse(this),i=t(e),s=Math.log(S.k)/Math.LN2;o(n),r(Math.pow(2,Xo.event.shiftKey?Math.ceil(s)-1:Math.floor(s)+1)),u(e,i),a(n),c(n)}var p,v,m,x,M,_,b,w,S={x:0,y:0,k:1},k=[960,500],E=Da,A="mousedown.zoom",C="mousemove.zoom",N="mouseup.zoom",L="touchstart.zoom",T=y(n,"zoomstart","zoom","zoomend");return n.event=function(n){n.each(function(){var n=T.of(this,arguments),t=S;ks?Xo.select(this).transition().each("start.zoom",function(){S=this.__chart__||{x:0,y:0,k:1},o(n)}).tween("zoom:zoom",function(){var e=k[0],r=k[1],u=e/2,i=r/2,o=Xo.interpolateZoom([(u-S.x)/S.k,(i-S.y)/S.k,e/S.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=o(t),c=e/r[2];this.__chart__=S={x:u-r[0]*c,y:i-r[1]*c,k:c},a(n)}}).each("end.zoom",function(){c(n)}):(this.__chart__=S,o(n),a(n),c(n))})},n.translate=function(t){return arguments.length?(S={x:+t[0],y:+t[1],k:S.k},i(),n):[S.x,S.y]},n.scale=function(t){return arguments.length?(S={x:S.x,y:S.y,k:+t},i(),n):S.k},n.scaleExtent=function(t){return arguments.length?(E=null==t?Da:[+t[0],+t[1]],n):E},n.center=function(t){return arguments.length?(v=t&&[+t[0],+t[1]],n):v},n.size=function(t){return arguments.length?(k=t&&[+t[0],+t[1]],n):k},n.x=function(t){return arguments.length?(_=t,M=t.copy(),S={x:0,y:0,k:1},n):_},n.y=function(t){return arguments.length?(w=t,b=t.copy(),S={x:0,y:0,k:1},n):w},Xo.rebind(n,T,"on")};var Ra,Da=[0,1/0],Pa="onwheel"in Wo?(Ra=function(){return-Xo.event.deltaY*(Xo.event.deltaMode?120:1)},"wheel"):"onmousewheel"in Wo?(Ra=function(){return Xo.event.wheelDelta},"mousewheel"):(Ra=function(){return-Xo.event.detail},"MozMousePixelScroll");G.prototype.toString=function(){return this.rgb()+""},Xo.hsl=function(n,t,e){return 1===arguments.length?n instanceof Q?K(n.h,n.s,n.l):dt(""+n,mt,K):K(+n,+t,+e)};var Ua=Q.prototype=new G;Ua.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),K(this.h,this.s,this.l/n)},Ua.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),K(this.h,this.s,n*this.l)},Ua.rgb=function(){return nt(this.h,this.s,this.l)},Xo.hcl=function(n,t,e){return 1===arguments.length?n instanceof et?tt(n.h,n.c,n.l):n instanceof it?at(n.l,n.a,n.b):at((n=yt((n=Xo.rgb(n)).r,n.g,n.b)).l,n.a,n.b):tt(+n,+t,+e)};var ja=et.prototype=new G;ja.brighter=function(n){return tt(this.h,this.c,Math.min(100,this.l+Ha*(arguments.length?n:1)))},ja.darker=function(n){return tt(this.h,this.c,Math.max(0,this.l-Ha*(arguments.length?n:1)))},ja.rgb=function(){return rt(this.h,this.c,this.l).rgb()},Xo.lab=function(n,t,e){return 1===arguments.length?n instanceof it?ut(n.l,n.a,n.b):n instanceof et?rt(n.l,n.c,n.h):yt((n=Xo.rgb(n)).r,n.g,n.b):ut(+n,+t,+e)};var Ha=18,Fa=.95047,Oa=1,Ya=1.08883,Ia=it.prototype=new G;Ia.brighter=function(n){return ut(Math.min(100,this.l+Ha*(arguments.length?n:1)),this.a,this.b)},Ia.darker=function(n){return ut(Math.max(0,this.l-Ha*(arguments.length?n:1)),this.a,this.b)},Ia.rgb=function(){return ot(this.l,this.a,this.b)},Xo.rgb=function(n,t,e){return 1===arguments.length?n instanceof pt?gt(n.r,n.g,n.b):dt(""+n,gt,nt):gt(~~n,~~t,~~e)};var Za=pt.prototype=new G;Za.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),gt(Math.min(255,~~(t/n)),Math.min(255,~~(e/n)),Math.min(255,~~(r/n)))):gt(u,u,u)},Za.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),gt(~~(n*this.r),~~(n*this.g),~~(n*this.b))},Za.hsl=function(){return mt(this.r,this.g,this.b)},Za.toString=function(){return"#"+vt(this.r)+vt(this.g)+vt(this.b)};var Va=Xo.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});Va.forEach(function(n,t){Va.set(n,ft(t))}),Xo.functor=_t,Xo.xhr=wt(bt),Xo.dsv=function(n,t){function e(n,e,i){arguments.length<3&&(i=e,e=null);var o=St(n,t,null==e?r:u(e),i);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:u(n)):e},o}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function i(t){return t.map(o).join(n)}function o(n){return a.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var a=new RegExp('["'+n+"\n]"),c=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(l>=s)return o;if(u)return u=!1,i;var t=l;if(34===n.charCodeAt(t)){for(var e=t;e++<s;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}l=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++l):10===r&&(u=!0),n.substring(t+1,e).replace(/""/g,'"')}for(;s>l;){var r=n.charCodeAt(l++),a=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(l)&&(++l,++a);else if(r!==c)continue;return n.substring(t,l-a)}return n.substring(t)}for(var r,u,i={},o={},a=[],s=n.length,l=0,f=0;(r=e())!==o;){for(var h=[];r!==i&&r!==o;)h.push(r),r=e();(!t||(h=t(h,f++)))&&a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new l,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(o).join(n)].concat(t.map(function(t){return u.map(function(n){return o(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(i).join("\n")},e},Xo.csv=Xo.dsv(",","text/csv"),Xo.tsv=Xo.dsv("	","text/tab-separated-values");var Xa,$a,Ba,Wa,Ja,Ga=Go[h(Go,"requestAnimationFrame")]||function(n){setTimeout(n,17)};Xo.timer=function(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={c:n,t:u,f:!1,n:null};$a?$a.n=i:Xa=i,$a=i,Ba||(Wa=clearTimeout(Wa),Ba=1,Ga(Et))},Xo.timer.flush=function(){At(),Ct()},Xo.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var Ka=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(Lt);Xo.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=Xo.round(n,Nt(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((0>=e?e+1:e-1)/3)))),Ka[8+e/3]};var Qa=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,nc=Xo.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=Xo.round(n,Nt(n,t))).toFixed(Math.max(0,Math.min(20,Nt(n*(1+1e-15),t))))}}),tc=Xo.time={},ec=Date;zt.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){rc.setUTCDate.apply(this._,arguments)},setDay:function(){rc.setUTCDay.apply(this._,arguments)},setFullYear:function(){rc.setUTCFullYear.apply(this._,arguments)},setHours:function(){rc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){rc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){rc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){rc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){rc.setUTCSeconds.apply(this._,arguments)},setTime:function(){rc.setTime.apply(this._,arguments)}};var rc=Date.prototype;tc.year=Rt(function(n){return n=tc.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),tc.years=tc.year.range,tc.years.utc=tc.year.utc.range,tc.day=Rt(function(n){var t=new ec(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),tc.days=tc.day.range,tc.days.utc=tc.day.utc.range,tc.dayOfYear=function(n){var t=tc.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=tc[n]=Rt(function(n){return(n=tc.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=tc.year(n).getDay();return Math.floor((tc.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});tc[n+"s"]=e.range,tc[n+"s"].utc=e.utc.range,tc[n+"OfYear"]=function(n){var e=tc.year(n).getDay();return Math.floor((tc.dayOfYear(n)+(e+t)%7)/7)}}),tc.week=tc.sunday,tc.weeks=tc.sunday.range,tc.weeks.utc=tc.sunday.utc.range,tc.weekOfYear=tc.sundayOfYear;var uc={"-":"",_:" ",0:"0"},ic=/^\s*\d+/,oc=/^%/;Xo.locale=function(n){return{numberFormat:Tt(n),timeFormat:Pt(n)}};var ac=Xo.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});Xo.format=ac.numberFormat,Xo.geo={},re.prototype={s:0,t:0,add:function(n){ue(n,this.t,cc),ue(cc.s,this.s,this),this.s?this.t+=cc.t:this.s=cc.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var cc=new re;Xo.geo.stream=function(n,t){n&&sc.hasOwnProperty(n.type)?sc[n.type](n,t):ie(n,t)};var sc={Feature:function(n,t){ie(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;++r<u;)ie(e[r].geometry,t)}},lc={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){oe(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)oe(e[r],t,0)},Polygon:function(n,t){ae(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)ae(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;++r<u;)ie(e[r],t)}};Xo.geo.area=function(n){return fc=0,Xo.geo.stream(n,gc),fc};var fc,hc=new re,gc={sphere:function(){fc+=4*Sa},point:g,lineStart:g,lineEnd:g,polygonStart:function(){hc.reset(),gc.lineStart=ce},polygonEnd:function(){var n=2*hc;fc+=0>n?4*Sa+n:n,gc.lineStart=gc.lineEnd=gc.point=g}};Xo.geo.bounds=function(){function n(n,t){x.push(M=[l=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=se([t*Na,e*Na]);if(m){var u=fe(m,r),i=[u[1],-u[0],0],o=fe(i,u);pe(o),o=ve(o);var c=t-p,s=c>0?1:-1,v=o[0]*La*s,d=oa(c)>180;if(d^(v>s*p&&s*t>v)){var y=o[1]*La;y>g&&(g=y)}else if(v=(v+360)%360-180,d^(v>s*p&&s*t>v)){var y=-o[1]*La;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);d?p>t?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t):h>=l?(l>t&&(l=t),t>h&&(h=t)):t>p?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t)}else n(t,e);m=r,p=t}function e(){_.point=t}function r(){M[0]=l,M[1]=h,_.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=oa(r)>180?r+(r>0?360:-360):r}else v=n,d=e;gc.point(n,e),t(n,e)}function i(){gc.lineStart()}function o(){u(v,d),gc.lineEnd(),oa(y)>Aa&&(l=-(h=180)),M[0]=l,M[1]=h,m=null}function a(n,t){return(t-=n)<0?t+360:t}function c(n,t){return n[0]-t[0]}function s(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var l,f,h,g,p,v,d,m,y,x,M,_={point:n,lineStart:e,lineEnd:r,polygonStart:function(){_.point=u,_.lineStart=i,_.lineEnd=o,y=0,gc.polygonStart()},polygonEnd:function(){gc.polygonEnd(),_.point=n,_.lineStart=e,_.lineEnd=r,0>hc?(l=-(h=180),f=-(g=90)):y>Aa?g=90:-Aa>y&&(f=-90),M[0]=l,M[1]=h}};return function(n){g=h=-(l=f=1/0),x=[],Xo.geo.stream(n,_);var t=x.length;if(t){x.sort(c);for(var e,r=1,u=x[0],i=[u];t>r;++r)e=x[r],s(e[0],u)||s(e[1],u)?(a(u[0],e[1])>a(u[0],u[1])&&(u[1]=e[1]),a(e[0],u[1])>a(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var o,e,p=-1/0,t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(o=a(u[1],e[0]))>p&&(p=o,l=e[0],h=u[1])}return x=M=null,1/0===l||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[l,f],[h,g]]}}(),Xo.geo.centroid=function(n){pc=vc=dc=mc=yc=xc=Mc=_c=bc=wc=Sc=0,Xo.geo.stream(n,kc);var t=bc,e=wc,r=Sc,u=t*t+e*e+r*r;return Ca>u&&(t=xc,e=Mc,r=_c,Aa>vc&&(t=dc,e=mc,r=yc),u=t*t+e*e+r*r,Ca>u)?[0/0,0/0]:[Math.atan2(e,t)*La,X(r/Math.sqrt(u))*La]};var pc,vc,dc,mc,yc,xc,Mc,_c,bc,wc,Sc,kc={sphere:g,point:me,lineStart:xe,lineEnd:Me,polygonStart:function(){kc.lineStart=_e},polygonEnd:function(){kc.lineStart=xe}},Ec=Ee(be,Te,ze,[-Sa,-Sa/2]),Ac=1e9;Xo.geo.clipExtent=function(){var n,t,e,r,u,i,o={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(a){return arguments.length?(i=Pe(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),u&&(u.valid=!1,u=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(Xo.geo.conicEqualArea=function(){return je(He)}).raw=He,Xo.geo.albers=function(){return Xo.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},Xo.geo.albersUsa=function(){function n(n){var i=n[0],o=n[1];return t=null,e(i,o),t||(r(i,o),t)||u(i,o),t}var t,e,r,u,i=Xo.geo.albers(),o=Xo.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=Xo.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?o:u>=.166&&.234>u&&r>=-.214&&-.115>r?a:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),a.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),a.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var s=i.scale(),l=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[l-.455*s,f-.238*s],[l+.455*s,f+.238*s]]).stream(c).point,r=o.translate([l-.307*s,f+.201*s]).clipExtent([[l-.425*s+Aa,f+.12*s+Aa],[l-.214*s-Aa,f+.234*s-Aa]]).stream(c).point,u=a.translate([l-.205*s,f+.212*s]).clipExtent([[l-.214*s+Aa,f+.166*s+Aa],[l-.115*s-Aa,f+.234*s-Aa]]).stream(c).point,n},n.scale(1070)};var Cc,Nc,Lc,Tc,qc,zc,Rc={point:g,lineStart:g,lineEnd:g,polygonStart:function(){Nc=0,Rc.lineStart=Fe},polygonEnd:function(){Rc.lineStart=Rc.lineEnd=Rc.point=g,Cc+=oa(Nc/2)}},Dc={point:Oe,lineStart:g,lineEnd:g,polygonStart:g,polygonEnd:g},Pc={point:Ze,lineStart:Ve,lineEnd:Xe,polygonStart:function(){Pc.lineStart=$e},polygonEnd:function(){Pc.point=Ze,Pc.lineStart=Ve,Pc.lineEnd=Xe}};Xo.geo.path=function(){function n(n){return n&&("function"==typeof a&&i.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=u(i)),Xo.geo.stream(n,o)),i.result()}function t(){return o=null,n}var e,r,u,i,o,a=4.5;return n.area=function(n){return Cc=0,Xo.geo.stream(n,u(Rc)),Cc},n.centroid=function(n){return dc=mc=yc=xc=Mc=_c=bc=wc=Sc=0,Xo.geo.stream(n,u(Pc)),Sc?[bc/Sc,wc/Sc]:_c?[xc/_c,Mc/_c]:yc?[dc/yc,mc/yc]:[0/0,0/0]},n.bounds=function(n){return qc=zc=-(Lc=Tc=1/0),Xo.geo.stream(n,u(Dc)),[[Lc,Tc],[qc,zc]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||Je(n):bt,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new Ye:new Be(n),"function"!=typeof a&&i.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(i.pointRadius(+t),+t),n):a},n.projection(Xo.geo.albersUsa()).context(null)},Xo.geo.transform=function(n){return{stream:function(t){var e=new Ge(t);for(var r in n)e[r]=n[r];return e}}},Ge.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},Xo.geo.projection=Qe,Xo.geo.projectionMutator=nr,(Xo.geo.equirectangular=function(){return Qe(er)}).raw=er.invert=er,Xo.geo.rotation=function(n){function t(t){return t=n(t[0]*Na,t[1]*Na),t[0]*=La,t[1]*=La,t}return n=ur(n[0]%360*Na,n[1]*Na,n.length>2?n[2]*Na:0),t.invert=function(t){return t=n.invert(t[0]*Na,t[1]*Na),t[0]*=La,t[1]*=La,t},t},rr.invert=er,Xo.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=ur(-n[0]*Na,-n[1]*Na,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=La,n[1]*=La}}),{type:"Polygon",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=cr((t=+r)*Na,u*Na),n):t},n.precision=function(r){return arguments.length?(e=cr(t*Na,(u=+r)*Na),n):u},n.angle(90)},Xo.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Na,u=n[1]*Na,i=t[1]*Na,o=Math.sin(r),a=Math.cos(r),c=Math.sin(u),s=Math.cos(u),l=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*o)*e+(e=s*l-c*f*a)*e),c*l+s*f*a)},Xo.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return Xo.range(Math.ceil(i/d)*d,u,d).map(h).concat(Xo.range(Math.ceil(s/m)*m,c,m).map(g)).concat(Xo.range(Math.ceil(r/p)*p,e,p).filter(function(n){return oa(n%d)>Aa}).map(l)).concat(Xo.range(Math.ceil(a/v)*v,o,v).filter(function(n){return oa(n%m)>Aa}).map(f))}var e,r,u,i,o,a,c,s,l,f,h,g,p=10,v=p,d=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(g(c).slice(1),h(u).reverse().slice(1),g(s).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],s=+t[0][1],c=+t[1][1],i>u&&(t=i,i=u,u=t),s>c&&(t=s,s=c,c=t),n.precision(y)):[[i,s],[u,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(y)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],m=+t[1],n):[d,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],v=+t[1],n):[p,v]},n.precision=function(t){return arguments.length?(y=+t,l=lr(a,o,90),f=fr(r,e,y),h=lr(s,c,90),g=fr(i,u,y),n):y},n.majorExtent([[-180,-90+Aa],[180,90-Aa]]).minorExtent([[-180,-80-Aa],[180,80+Aa]])},Xo.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=hr,u=gr;return n.distance=function(){return Xo.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e="function"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},Xo.geo.interpolate=function(n,t){return pr(n[0]*Na,n[1]*Na,t[0]*Na,t[1]*Na)},Xo.geo.length=function(n){return Uc=0,Xo.geo.stream(n,jc),Uc};var Uc,jc={sphere:g,point:g,lineStart:vr,lineEnd:g,polygonStart:g,polygonEnd:g},Hc=dr(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(Xo.geo.azimuthalEqualArea=function(){return Qe(Hc)}).raw=Hc;var Fc=dr(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},bt);(Xo.geo.azimuthalEquidistant=function(){return Qe(Fc)}).raw=Fc,(Xo.geo.conicConformal=function(){return je(mr)}).raw=mr,(Xo.geo.conicEquidistant=function(){return je(yr)}).raw=yr;var Oc=dr(function(n){return 1/n},Math.atan);(Xo.geo.gnomonic=function(){return Qe(Oc)}).raw=Oc,xr.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Ea]},(Xo.geo.mercator=function(){return Mr(xr)}).raw=xr;var Yc=dr(function(){return 1},Math.asin);(Xo.geo.orthographic=function(){return Qe(Yc)}).raw=Yc;var Ic=dr(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(Xo.geo.stereographic=function(){return Qe(Ic)}).raw=Ic,_r.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-Ea]},(Xo.geo.transverseMercator=function(){var n=Mr(_r),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[-n[1],n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},n.rotate([0,0])}).raw=_r,Xo.geom={},Xo.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,u=_t(e),i=_t(r),o=n.length,a=[],c=[];for(t=0;o>t;t++)a.push([+u.call(this,n[t],t),+i.call(this,n[t],t),t]);for(a.sort(kr),t=0;o>t;t++)c.push([a[t][0],-a[t][1]]);var s=Sr(a),l=Sr(c),f=l[0]===s[0],h=l[l.length-1]===s[s.length-1],g=[];for(t=s.length-1;t>=0;--t)g.push(n[a[s[t]][2]]);for(t=+f;t<l.length-h;++t)g.push(n[a[l[t]][2]]);return g}var e=br,r=wr;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},Xo.geom.polygon=function(n){return fa(n,Zc),n};var Zc=Xo.geom.polygon.prototype=[];Zc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;++t<e;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},Zc.centroid=function(n){var t,e,r=-1,u=this.length,i=0,o=0,a=this[u-1];for(arguments.length||(n=-1/(6*this.area()));++r<u;)t=a,a=this[r],e=t[0]*a[1]-a[0]*t[1],i+=(t[0]+a[0])*e,o+=(t[1]+a[1])*e;return[i*n,o*n]},Zc.clip=function(n){for(var t,e,r,u,i,o,a=Cr(n),c=-1,s=this.length-Cr(this),l=this[s-1];++c<s;){for(t=n.slice(),n.length=0,u=this[c],i=t[(r=t.length-a)-1],e=-1;++e<r;)o=t[e],Er(o,l,u)?(Er(i,l,u)||n.push(Ar(i,o,l,u)),n.push(o)):Er(i,l,u)&&n.push(Ar(i,o,l,u)),i=o;a&&n.push(n[0]),l=u}return n};var Vc,Xc,$c,Bc,Wc,Jc=[],Gc=[];Pr.prototype.prepare=function(){for(var n,t=this.edges,e=t.length;e--;)n=t[e].edge,n.b&&n.a||t.splice(e,1);return t.sort(jr),t.length},Br.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},Wr.prototype={insert:function(n,t){var e,r,u;if(n){if(t.P=n,t.N=n.N,n.N&&(n.N.P=t),n.N=t,n.R){for(n=n.R;n.L;)n=n.L;n.L=t}else n.R=t;e=n}else this._?(n=Qr(this._),t.P=null,t.N=n,n.P=n.L=t,e=n):(t.P=t.N=null,this._=t,e=null);for(t.L=t.R=null,t.U=e,t.C=!0,n=t;e&&e.C;)r=e.U,e===r.L?(u=r.R,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.R&&(Gr(this,e),n=e,e=n.U),e.C=!1,r.C=!0,Kr(this,r))):(u=r.L,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.L&&(Kr(this,e),n=e,e=n.U),e.C=!1,r.C=!0,Gr(this,r))),e=n.U;this._.C=!1},remove:function(n){n.N&&(n.N.P=n.P),n.P&&(n.P.N=n.N),n.N=n.P=null;var t,e,r,u=n.U,i=n.L,o=n.R;if(e=i?o?Qr(o):i:o,u?u.L===n?u.L=e:u.R=e:this._=e,i&&o?(r=e.C,e.C=n.C,e.L=i,i.U=e,e!==o?(u=e.U,e.U=n.U,n=e.R,u.L=n,e.R=o,o.U=e):(e.U=u,u=e,n=e.R)):(r=n.C,n=e),n&&(n.U=u),!r){if(n&&n.C)return n.C=!1,void 0;do{if(n===this._)break;if(n===u.L){if(t=u.R,t.C&&(t.C=!1,u.C=!0,Gr(this,u),t=u.R),t.L&&t.L.C||t.R&&t.R.C){t.R&&t.R.C||(t.L.C=!1,t.C=!0,Kr(this,t),t=u.R),t.C=u.C,u.C=t.R.C=!1,Gr(this,u),n=this._;break}}else if(t=u.L,t.C&&(t.C=!1,u.C=!0,Kr(this,u),t=u.L),t.L&&t.L.C||t.R&&t.R.C){t.L&&t.L.C||(t.R.C=!1,t.C=!0,Gr(this,t),t=u.L),t.C=u.C,u.C=t.L.C=!1,Kr(this,u),n=this._;break}t.C=!0,n=u,u=u.U}while(!n.C);n&&(n.C=!1)}}},Xo.geom.voronoi=function(n){function t(n){var t=new Array(n.length),r=a[0][0],u=a[0][1],i=a[1][0],o=a[1][1];return nu(e(n),a).cells.forEach(function(e,a){var c=e.edges,s=e.site,l=t[a]=c.length?c.map(function(n){var t=n.start();return[t.x,t.y]}):s.x>=r&&s.x<=i&&s.y>=u&&s.y<=o?[[r,o],[i,o],[i,u],[r,u]]:[];l.point=n[a]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(i(n,t)/Aa)*Aa,y:Math.round(o(n,t)/Aa)*Aa,i:t}})}var r=br,u=wr,i=r,o=u,a=Kc;return n?t(n):(t.links=function(n){return nu(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return nu(e(n)).cells.forEach(function(e,r){for(var u,i,o=e.site,a=e.edges.sort(jr),c=-1,s=a.length,l=a[s-1].edge,f=l.l===o?l.r:l.l;++c<s;)u=l,i=f,l=a[c].edge,f=l.l===o?l.r:l.l,r<i.i&&r<f.i&&eu(o,i,f)<0&&t.push([n[r],n[i.i],n[f.i]])}),t},t.x=function(n){return arguments.length?(i=_t(r=n),t):r},t.y=function(n){return arguments.length?(o=_t(u=n),t):u},t.clipExtent=function(n){return arguments.length?(a=null==n?Kc:n,t):a===Kc?null:a},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):a===Kc?null:a&&a[1]},t)};var Kc=[[-1e6,-1e6],[1e6,1e6]];Xo.geom.delaunay=function(n){return Xo.geom.voronoi().triangles(n)},Xo.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,o,a){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,l=n.y;if(null!=c)if(oa(c-e)+oa(l-r)<.01)s(n,t,e,r,u,i,o,a);else{var f=n.point;n.x=n.y=n.point=null,s(n,f,c,l,u,i,o,a),s(n,t,e,r,u,i,o,a)}else n.x=e,n.y=r,n.point=t}else s(n,t,e,r,u,i,o,a)}function s(n,t,e,r,u,o,a,c){var s=.5*(u+a),l=.5*(o+c),f=e>=s,h=r>=l,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=iu()),f?u=s:a=s,h?o=l:c=l,i(n,t,e,r,u,o,a,c)}var l,f,h,g,p,v,d,m,y,x=_t(a),M=_t(c);if(null!=t)v=t,d=e,m=r,y=u;else if(m=y=-(v=d=1/0),f=[],h=[],p=n.length,o)for(g=0;p>g;++g)l=n[g],l.x<v&&(v=l.x),l.y<d&&(d=l.y),l.x>m&&(m=l.x),l.y>y&&(y=l.y),f.push(l.x),h.push(l.y);else for(g=0;p>g;++g){var _=+x(l=n[g],g),b=+M(l,g);v>_&&(v=_),d>b&&(d=b),_>m&&(m=_),b>y&&(y=b),f.push(_),h.push(b)}var w=m-v,S=y-d;w>S?y=d+w:m=v+S;var k=iu();if(k.add=function(n){i(k,n,+x(n,++g),+M(n,g),v,d,m,y)},k.visit=function(n){ou(n,k,v,d,m,y)},g=-1,null==t){for(;++g<p;)i(k,n[g],f[g],h[g],v,d,m,y);--g}else n.forEach(k.add);return f=h=n=l=null,k}var o,a=br,c=wr;return(o=arguments.length)?(a=ru,c=uu,3===o&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(a=n,i):a},i.y=function(n){return arguments.length?(c=n,i):c},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},Xo.interpolateRgb=au,Xo.interpolateObject=cu,Xo.interpolateNumber=su,Xo.interpolateString=lu;var Qc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;Xo.interpolate=fu,Xo.interpolators=[function(n,t){var e=typeof t;return("string"===e?Va.has(t)||/^(#|rgb\(|hsl\()/.test(t)?au:lu:t instanceof G?au:"object"===e?Array.isArray(t)?hu:cu:su)(n,t)}],Xo.interpolateArray=hu;var ns=function(){return bt},ts=Xo.map({linear:ns,poly:xu,quad:function(){return du},cubic:function(){return mu},sin:function(){return Mu},exp:function(){return _u},circle:function(){return bu},elastic:wu,back:Su,bounce:function(){return ku}}),es=Xo.map({"in":bt,out:pu,"in-out":vu,"out-in":function(n){return vu(pu(n))}});Xo.ease=function(n){var t=n.indexOf("-"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):"in";return e=ts.get(e)||ns,r=es.get(r)||bt,gu(r(e.apply(null,$o.call(arguments,1))))},Xo.interpolateHcl=Eu,Xo.interpolateHsl=Au,Xo.interpolateLab=Cu,Xo.interpolateRound=Nu,Xo.transform=function(n){var t=Wo.createElementNS(Xo.ns.prefix.svg,"g");return(Xo.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new Lu(e?e.matrix:rs)})(n)},Lu.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var rs={a:1,b:0,c:0,d:1,e:0,f:0};Xo.interpolateTransform=Ru,Xo.layout={},Xo.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Uu(n[e]));return t}},Xo.layout.chord=function(){function n(){var n,s,f,h,g,p={},v=[],d=Xo.range(i),m=[];for(e=[],r=[],n=0,h=-1;++h<i;){for(s=0,g=-1;++g<i;)s+=u[h][g];v.push(s),m.push(Xo.range(i)),n+=s}for(o&&d.sort(function(n,t){return o(v[n],v[t])}),a&&m.forEach(function(n,t){n.sort(function(n,e){return a(u[t][n],u[t][e])})}),n=(ka-l*i)/n,s=0,h=-1;++h<i;){for(f=s,g=-1;++g<i;){var y=d[h],x=m[y][g],M=u[y][x],_=s,b=s+=M*n;p[y+"-"+x]={index:y,subindex:x,startAngle:_,endAngle:b,value:M}}r[y]={index:y,startAngle:f,endAngle:s,value:(s-f)/n},s+=l}for(h=-1;++h<i;)for(g=h-1;++g<i;){var w=p[h+"-"+g],S=p[g+"-"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,o,a,c,s={},l=0;return s.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,s):u},s.padding=function(n){return arguments.length?(l=n,e=r=null,s):l},s.sortGroups=function(n){return arguments.length?(o=n,e=r=null,s):o},s.sortSubgroups=function(n){return arguments.length?(a=n,e=null,s):a},s.sortChords=function(n){return arguments.length?(c=n,e&&t(),s):c},s.chords=function(){return e||n(),e},s.groups=function(){return r||n(),r},s},Xo.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,o=t.cy-n.y,a=u-e,c=i*i+o*o;if(c>a*a/d){if(p>c){var s=t.charge/c;n.px-=i*s,n.py-=o*s}return!0}if(t.point&&c&&p>c){var s=t.pointCharge/c;n.px-=i*s,n.py-=o*s}}return!t.charge}}function t(n){n.px=Xo.event.x,n.py=Xo.event.y,a.resume()}var e,r,u,i,o,a={},c=Xo.dispatch("start","tick","end"),s=[1,1],l=.9,f=us,h=is,g=-30,p=os,v=.1,d=.64,m=[],y=[];return a.tick=function(){if((r*=.99)<.005)return c.end({type:"end",alpha:r=0}),!0;var t,e,a,f,h,p,d,x,M,_=m.length,b=y.length;for(e=0;b>e;++e)a=y[e],f=a.source,h=a.target,x=h.x-f.x,M=h.y-f.y,(p=x*x+M*M)&&(p=r*i[e]*((p=Math.sqrt(p))-u[e])/p,x*=p,M*=p,h.x-=x*(d=f.weight/(h.weight+f.weight)),h.y-=M*d,f.x+=x*(d=1-d),f.y+=M*d);if((d=r*v)&&(x=s[0]/2,M=s[1]/2,e=-1,d))for(;++e<_;)a=m[e],a.x+=(x-a.x)*d,a.y+=(M-a.y)*d;if(g)for(Zu(t=Xo.geom.quadtree(m),r,o),e=-1;++e<_;)(a=m[e]).fixed||t.visit(n(a));for(e=-1;++e<_;)a=m[e],a.fixed?(a.x=a.px,a.y=a.py):(a.x-=(a.px-(a.px=a.x))*l,a.y-=(a.py-(a.py=a.y))*l);c.tick({type:"tick",alpha:r})},a.nodes=function(n){return arguments.length?(m=n,a):m},a.links=function(n){return arguments.length?(y=n,a):y},a.size=function(n){return arguments.length?(s=n,a):s},a.linkDistance=function(n){return arguments.length?(f="function"==typeof n?n:+n,a):f},a.distance=a.linkDistance,a.linkStrength=function(n){return arguments.length?(h="function"==typeof n?n:+n,a):h},a.friction=function(n){return arguments.length?(l=+n,a):l},a.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,a):g},a.chargeDistance=function(n){return arguments.length?(p=n*n,a):Math.sqrt(p)},a.gravity=function(n){return arguments.length?(v=+n,a):v},a.theta=function(n){return arguments.length?(d=n*n,a):Math.sqrt(d)},a.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:"start",alpha:r=n}),Xo.timer(a.tick)),a):r},a.start=function(){function n(n,r){if(!e){for(e=new Array(c),a=0;c>a;++a)e[a]=[];for(a=0;s>a;++a){var u=y[a];e[u.source.index].push(u.target),e[u.target.index].push(u.source)}}for(var i,o=e[t],a=-1,s=o.length;++a<s;)if(!isNaN(i=o[a][n]))return i;return Math.random()*r}var t,e,r,c=m.length,l=y.length,p=s[0],v=s[1];for(t=0;c>t;++t)(r=m[t]).index=t,r.weight=0;for(t=0;l>t;++t)r=y[t],"number"==typeof r.source&&(r.source=m[r.source]),"number"==typeof r.target&&(r.target=m[r.target]),++r.source.weight,++r.target.weight;for(t=0;c>t;++t)r=m[t],isNaN(r.x)&&(r.x=n("x",p)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(u=[],"function"==typeof f)for(t=0;l>t;++t)u[t]=+f.call(this,y[t],t);else for(t=0;l>t;++t)u[t]=f;if(i=[],"function"==typeof h)for(t=0;l>t;++t)i[t]=+h.call(this,y[t],t);else for(t=0;l>t;++t)i[t]=h;if(o=[],"function"==typeof g)for(t=0;c>t;++t)o[t]=+g.call(this,m[t],t);else for(t=0;c>t;++t)o[t]=g;return a.resume()},a.resume=function(){return a.alpha(.1)},a.stop=function(){return a.alpha(0)},a.drag=function(){return e||(e=Xo.behavior.drag().origin(bt).on("dragstart.force",Fu).on("drag.force",t).on("dragend.force",Ou)),arguments.length?(this.on("mouseover.force",Yu).on("mouseout.force",Iu).call(e),void 0):e},Xo.rebind(a,c,"on")};var us=20,is=1,os=1/0;Xo.layout.hierarchy=function(){function n(t,o,a){var c=u.call(e,t,o);if(t.depth=o,a.push(t),c&&(s=c.length)){for(var s,l,f=-1,h=t.children=new Array(s),g=0,p=o+1;++f<s;)l=h[f]=n(c[f],p,a),l.parent=t,g+=l.value;r&&h.sort(r),i&&(t.value=g)}else delete t.children,i&&(t.value=+i.call(e,t,o)||0);return t}function t(n,r){var u=n.children,o=0;if(u&&(a=u.length))for(var a,c=-1,s=r+1;++c<a;)o+=t(u[c],s);else i&&(o=+i.call(e,n,r)||0);return i&&(n.value=o),o}function e(t){var e=[];return n(t,0,e),e}var r=Bu,u=Xu,i=$u;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(u=n,e):u},e.value=function(n){return arguments.length?(i=n,e):i},e.revalue=function(n){return t(n,0),n},e},Xo.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(o=i.length)){var o,a,c,s=-1;for(r=t.value?r/t.value:0;++s<o;)n(a=i[s],e,c=a.value*r,u),e+=c}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;++i<u;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var o=r.call(this,e,i);return n(o[0],0,u[0],u[1]/t(o[0])),o}var r=Xo.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},Vu(e,r)},Xo.layout.pie=function(){function n(i){var o=i.map(function(e,r){return+t.call(n,e,r)}),a=+("function"==typeof r?r.apply(this,arguments):r),c=(("function"==typeof u?u.apply(this,arguments):u)-a)/Xo.sum(o),s=Xo.range(i.length);null!=e&&s.sort(e===as?function(n,t){return o[t]-o[n]}:function(n,t){return e(i[n],i[t])});var l=[];return s.forEach(function(n){var t;l[n]={data:i[n],value:t=o[n],startAngle:a,endAngle:a+=t*c}}),l}var t=Number,e=as,r=0,u=ka;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n};var as={};Xo.layout.stack=function(){function n(a,c){var s=a.map(function(e,r){return t.call(n,e,r)}),l=s.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),o.call(n,t,e)]})}),f=e.call(n,l,c);s=Xo.permute(s,f),l=Xo.permute(l,f);var h,g,p,v=r.call(n,l,c),d=s.length,m=s[0].length;for(g=0;m>g;++g)for(u.call(n,s[0][g],p=v[g],l[0][g][1]),h=1;d>h;++h)u.call(n,s[h][g],p+=l[h-1][g][1],l[h][g][1]);return a}var t=bt,e=Qu,r=ni,u=Ku,i=Ju,o=Gu;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:cs.get(t)||Qu,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:ss.get(t)||ni,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(u=t,n):u},n};var cs=Xo.map({"inside-out":function(n){var t,e,r=n.length,u=n.map(ti),i=n.map(ei),o=Xo.range(r).sort(function(n,t){return u[n]-u[t]}),a=0,c=0,s=[],l=[];for(t=0;r>t;++t)e=o[t],c>a?(a+=i[e],s.push(e)):(c+=i[e],l.push(e));return l.reverse().concat(s)},reverse:function(n){return Xo.range(n.length).reverse()},"default":Qu}),ss=Xo.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,s,l=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=s=0,e=1;h>e;++e){for(t=0,u=0;l>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];l>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,s>c&&(s=c)}for(e=0;h>e;++e)g[e]-=s;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,o=1/u,a=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=o}for(e=0;i>e;++e)a[e]=0;return a},zero:ni});Xo.layout.histogram=function(){function n(n,i){for(var o,a,c=[],s=n.map(e,this),l=r.call(this,s,i),f=u.call(this,l,s,i),i=-1,h=s.length,g=f.length-1,p=t?1:1/h;++i<g;)o=c[i]=[],o.dx=f[i+1]-(o.x=f[i]),o.y=0;if(g>0)for(i=-1;++i<h;)a=s[i],a>=l[0]&&a<=l[1]&&(o=c[Xo.bisect(f,a,1,g)-1],o.y+=p,o.push(n[i]));return c}var t=!0,e=Number,r=oi,u=ui;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=_t(t),n):r},n.bins=function(t){return arguments.length?(u="number"==typeof t?function(n){return ii(n,t)}:_t(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},Xo.layout.tree=function(){function n(n,i){function o(n,t){var r=n.children,u=n._tree;if(r&&(i=r.length)){for(var i,a,s,l=r[0],f=l,h=-1;++h<i;)s=r[h],o(s,a),f=c(s,a,f),a=s;vi(n);var g=.5*(l._tree.prelim+s._tree.prelim);t?(u.prelim=t._tree.prelim+e(n,t),u.mod=u.prelim-g):u.prelim=g}else t&&(u.prelim=t._tree.prelim+e(n,t))}function a(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,u=-1;for(t+=n._tree.mod;++u<r;)a(e[u],t)}}function c(n,t,r){if(t){for(var u,i=n,o=n,a=t,c=n.parent.children[0],s=i._tree.mod,l=o._tree.mod,f=a._tree.mod,h=c._tree.mod;a=si(a),i=ci(i),a&&i;)c=ci(c),o=si(o),o._tree.ancestor=n,u=a._tree.prelim+f-i._tree.prelim-s+e(a,i),u>0&&(di(mi(a,n,r),n,u),s+=u,l+=u),f+=a._tree.mod,s+=i._tree.mod,h+=c._tree.mod,l+=o._tree.mod;a&&!si(o)&&(o._tree.thread=a,o._tree.mod+=f-l),i&&!ci(c)&&(c._tree.thread=i,c._tree.mod+=s-h,r=n)}return r}var s=t.call(this,n,i),l=s[0];pi(l,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),o(l),a(l,-l._tree.prelim);var f=li(l,hi),h=li(l,fi),g=li(l,gi),p=f.x-e(f,h)/2,v=h.x+e(h,f)/2,d=g.depth||1;return pi(l,u?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(v-p)*r[0],n.y=n.depth/d*r[1],delete n._tree}),s}var t=Xo.layout.hierarchy().sort(null).value(null),e=ai,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Vu(n,t)},Xo.layout.pack=function(){function n(n,i){var o=e.call(this,n,i),a=o[0],c=u[0],s=u[1],l=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,pi(a,function(n){n.r=+l(n.value)}),pi(a,bi),r){var f=r*(t?1:Math.max(2*a.r/c,2*a.r/s))/2;pi(a,function(n){n.r+=f}),pi(a,bi),pi(a,function(n){n.r-=f})}return ki(a,c/2,s/2,t?1:1/Math.max(2*a.r/c,2*a.r/s)),o}var t,e=Xo.layout.hierarchy().sort(yi),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},Vu(n,e)},Xo.layout.cluster=function(){function n(n,i){var o,a=t.call(this,n,i),c=a[0],s=0;pi(c,function(n){var t=n.children;t&&t.length?(n.x=Ci(t),n.y=Ai(t)):(n.x=o?s+=e(n,o):0,n.y=0,o=n)});var l=Ni(c),f=Li(c),h=l.x-e(l,f)/2,g=f.x+e(f,l)/2;return pi(c,u?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),a}var t=Xo.layout.hierarchy().sort(null).value(null),e=ai,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Vu(n,t)},Xo.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;++u<i;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var o,a,c,s=f(e),l=[],h=i.slice(),p=1/0,v="slice"===g?s.dx:"dice"===g?s.dy:"slice-dice"===g?1&e.depth?s.dy:s.dx:Math.min(s.dx,s.dy);for(n(h,s.dx*s.dy/e.value),l.area=0;(c=h.length)>0;)l.push(o=h[c-1]),l.area+=o.area,"squarify"!==g||(a=r(l,v))<=p?(h.pop(),p=a):(l.area-=l.pop().area,u(l,v,s,!1),v=Math.min(s.dx,s.dy),l.length=l.area=0,p=1/0);l.length&&(u(l,v,s,!0),l.length=l.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,o=f(t),a=r.slice(),c=[];for(n(a,o.dx*o.dy/t.value),c.area=0;i=a.pop();)c.push(i),c.area+=i.area,null!=i.z&&(u(c,i.z?o.dx:o.dy,o,!a.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,o=-1,a=n.length;++o<a;)(e=n[o].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,o=n.length,a=e.x,s=e.y,l=t?c(n.area/t):0;if(t==e.dx){for((r||l>e.dy)&&(l=e.dy);++i<o;)u=n[i],u.x=a,u.y=s,u.dy=l,a+=u.dx=Math.min(e.x+e.dx-a,l?c(u.area/l):0);u.z=!0,u.dx+=e.x+e.dx-a,e.y+=l,e.dy-=l}else{for((r||l>e.dx)&&(l=e.dx);++i<o;)u=n[i],u.x=a,u.y=s,u.dx=l,s+=u.dy=Math.min(e.y+e.dy-s,l?c(u.area/l):0);u.z=!1,u.dy+=e.y+e.dy-s,e.x+=l,e.dx-=l}}function i(r){var u=o||a(r),i=u[0];return i.x=0,i.y=0,i.dx=s[0],i.dy=s[1],o&&a.revalue(i),n([i],i.dx*i.dy/i.value),(o?e:t)(i),h&&(o=u),u}var o,a=Xo.layout.hierarchy(),c=Math.round,s=[1,1],l=null,f=Ti,h=!1,g="squarify",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(s=n,i):s},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Ti(t):qi(t,"number"==typeof e?[e,e,e,e]:e)}function e(t){return qi(t,n)}if(!arguments.length)return l;var r;return f=null==(l=n)?Ti:"function"==(r=typeof n)?t:"number"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(c=n?Math.round:Number,i):c!=Number},i.sticky=function(n){return arguments.length?(h=n,o=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+"",i):g},Vu(i,a)},Xo.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=Xo.random.normal.apply(Xo,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=Xo.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},Xo.scale={};var ls={floor:bt,ceil:bt};Xo.scale.linear=function(){return Hi([0,1],[0,1],fu,!1)};var fs={s:1,g:1,p:1,r:1,e:1};Xo.scale.log=function(){return $i(Xo.scale.linear().domain([0,1]),10,!0,[1,10])};var hs=Xo.format(".0e"),gs={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};Xo.scale.pow=function(){return Bi(Xo.scale.linear(),1,[0,1])},Xo.scale.sqrt=function(){return Xo.scale.pow().exponent(.5)},Xo.scale.ordinal=function(){return Ji([],{t:"range",a:[[]]})},Xo.scale.category10=function(){return Xo.scale.ordinal().range(ps)},Xo.scale.category20=function(){return Xo.scale.ordinal().range(vs)},Xo.scale.category20b=function(){return Xo.scale.ordinal().range(ds)},Xo.scale.category20c=function(){return Xo.scale.ordinal().range(ms)};var ps=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(ht),vs=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(ht),ds=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(ht),ms=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(ht);Xo.scale.quantile=function(){return Gi([],[])},Xo.scale.quantize=function(){return Ki(0,1,[0,1])},Xo.scale.threshold=function(){return Qi([.5],[0,1])},Xo.scale.identity=function(){return no([0,1])},Xo.svg={},Xo.svg.arc=function(){function n(){var n=t.apply(this,arguments),i=e.apply(this,arguments),o=r.apply(this,arguments)+ys,a=u.apply(this,arguments)+ys,c=(o>a&&(c=o,o=a,a=c),a-o),s=Sa>c?"0":"1",l=Math.cos(o),f=Math.sin(o),h=Math.cos(a),g=Math.sin(a);return c>=xs?n?"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"M0,"+n+"A"+n+","+n+" 0 1,0 0,"+-n+"A"+n+","+n+" 0 1,0 0,"+n+"Z":"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"Z":n?"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L"+n*h+","+n*g+"A"+n+","+n+" 0 "+s+",0 "+n*l+","+n*f+"Z":"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L0,0"+"Z"}var t=to,e=eo,r=ro,u=uo;return n.innerRadius=function(e){return arguments.length?(t=_t(e),n):t},n.outerRadius=function(t){return arguments.length?(e=_t(t),n):e},n.startAngle=function(t){return arguments.length?(r=_t(t),n):r},n.endAngle=function(t){return arguments.length?(u=_t(t),n):u},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,i=(r.apply(this,arguments)+u.apply(this,arguments))/2+ys;return[Math.cos(i)*n,Math.sin(i)*n]},n};var ys=-Ea,xs=ka-Aa;Xo.svg.line=function(){return io(bt)};var Ms=Xo.map({linear:oo,"linear-closed":ao,step:co,"step-before":so,"step-after":lo,basis:mo,"basis-open":yo,"basis-closed":xo,bundle:Mo,cardinal:go,"cardinal-open":fo,"cardinal-closed":ho,monotone:Eo});Ms.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var _s=[0,2/3,1/3,0],bs=[0,1/3,2/3,0],ws=[0,1/6,2/3,1/6];Xo.svg.line.radial=function(){var n=io(Ao);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},so.reverse=lo,lo.reverse=so,Xo.svg.area=function(){return Co(bt)},Xo.svg.area.radial=function(){var n=Co(Ao);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},Xo.svg.chord=function(){function n(n,a){var c=t(this,i,n,a),s=t(this,o,n,a);return"M"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,s)?u(c.r,c.p1,c.r,c.p0):u(c.r,c.p1,s.r,s.p0)+r(s.r,s.p1,s.a1-s.a0)+u(s.r,s.p1,c.r,c.p0))+"Z"}function t(n,t,e,r){var u=t.call(n,e,r),i=a.call(n,u,r),o=c.call(n,u,r)+ys,l=s.call(n,u,r)+ys;return{r:i,a0:o,a1:l,p0:[i*Math.cos(o),i*Math.sin(o)],p1:[i*Math.cos(l),i*Math.sin(l)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Sa)+",1 "+t}function u(n,t,e,r){return"Q 0,0 "+r}var i=hr,o=gr,a=No,c=ro,s=uo;return n.radius=function(t){return arguments.length?(a=_t(t),n):a},n.source=function(t){return arguments.length?(i=_t(t),n):i},n.target=function(t){return arguments.length?(o=_t(t),n):o},n.startAngle=function(t){return arguments.length?(c=_t(t),n):c},n.endAngle=function(t){return arguments.length?(s=_t(t),n):s},n},Xo.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),o=e.call(this,n,u),a=(i.y+o.y)/2,c=[i,{x:i.x,y:a},{x:o.x,y:a},o];return c=c.map(r),"M"+c[0]+"C"+c[1]+" "+c[2]+" "+c[3]}var t=hr,e=gr,r=Lo;return n.source=function(e){return arguments.length?(t=_t(e),n):t},n.target=function(t){return arguments.length?(e=_t(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},Xo.svg.diagonal.radial=function(){var n=Xo.svg.diagonal(),t=Lo,e=n.projection;return n.projection=function(n){return arguments.length?e(To(t=n)):t},n},Xo.svg.symbol=function(){function n(n,r){return(Ss.get(t.call(this,n,r))||Ro)(e.call(this,n,r))}var t=zo,e=qo;return n.type=function(e){return arguments.length?(t=_t(e),n):t},n.size=function(t){return arguments.length?(e=_t(t),n):e},n};var Ss=Xo.map({circle:Ro,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Cs)),e=t*Cs;return"M0,"+-t+"L"+e+",0"+" 0,"+t+" "+-e+",0"+"Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/As),e=t*As/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/As),e=t*As/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});Xo.svg.symbolTypes=Ss.keys();var ks,Es,As=Math.sqrt(3),Cs=Math.tan(30*Na),Ns=[],Ls=0;Ns.call=da.call,Ns.empty=da.empty,Ns.node=da.node,Ns.size=da.size,Xo.transition=function(n){return arguments.length?ks?n.transition():n:xa.transition()},Xo.transition.prototype=Ns,Ns.select=function(n){var t,e,r,u=this.id,i=[];n=M(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]);for(var c=this[o],s=-1,l=c.length;++s<l;)(r=c[s])&&(e=n.call(r,r.__data__,s,o))?("__data__"in r&&(e.__data__=r.__data__),jo(e,s,u,r.__transition__[u]),t.push(e)):t.push(null)}return Do(i,u)},Ns.selectAll=function(n){var t,e,r,u,i,o=this.id,a=[];n=_(n);for(var c=-1,s=this.length;++c<s;)for(var l=this[c],f=-1,h=l.length;++f<h;)if(r=l[f]){i=r.__transition__[o],e=n.call(r,r.__data__,f,c),a.push(t=[]);for(var g=-1,p=e.length;++g<p;)(u=e[g])&&jo(u,g,o,i),t.push(u)}return Do(a,o)},Ns.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=q(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]);for(var e=this[i],a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return Do(u,this.id)},Ns.tween=function(n,t){var e=this.id;return arguments.length<2?this.node().__transition__[e].tween.get(n):R(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Ns.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function u(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function i(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?Ru:fu,a=Xo.ns.qualify(n);return Po(this,"attr."+n,t,a.local?i:u)},Ns.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=Xo.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Ns.style=function(n,t,e){function r(){this.style.removeProperty(n)}function u(t){return null==t?r:(t+="",function(){var r,u=Go.getComputedStyle(this,null).getPropertyValue(n);return u!==t&&(r=fu(u,t),function(t){this.style.setProperty(n,r(t),e)})})}var i=arguments.length;if(3>i){if("string"!=typeof n){2>i&&(t="");for(e in n)this.style(e,n[e],t);return this}e=""}return Po(this,"style."+n,t,u)},Ns.styleTween=function(n,t,e){function r(r,u){var i=t.call(this,r,u,Go.getComputedStyle(this,null).getPropertyValue(n));return i&&function(t){this.style.setProperty(n,i(t),e)}}return arguments.length<3&&(e=""),this.tween("style."+n,r)},Ns.text=function(n){return Po(this,"text",n,Uo)},Ns.remove=function(){return this.each("end.transition",function(){var n;this.__transition__.count<2&&(n=this.parentNode)&&n.removeChild(this)})},Ns.ease=function(n){var t=this.id;return arguments.length<1?this.node().__transition__[t].ease:("function"!=typeof n&&(n=Xo.ease.apply(Xo,arguments)),R(this,function(e){e.__transition__[t].ease=n}))},Ns.delay=function(n){var t=this.id;return R(this,"function"==typeof n?function(e,r,u){e.__transition__[t].delay=+n.call(e,e.__data__,r,u)}:(n=+n,function(e){e.__transition__[t].delay=n}))},Ns.duration=function(n){var t=this.id;return R(this,"function"==typeof n?function(e,r,u){e.__transition__[t].duration=Math.max(1,n.call(e,e.__data__,r,u))}:(n=Math.max(1,n),function(e){e.__transition__[t].duration=n}))},Ns.each=function(n,t){var e=this.id;if(arguments.length<2){var r=Es,u=ks;ks=e,R(this,function(t,r,u){Es=t.__transition__[e],n.call(t,t.__data__,r,u)}),Es=r,ks=u}else R(this,function(r){var u=r.__transition__[e];(u.event||(u.event=Xo.dispatch("start","end"))).on(n,t)});return this},Ns.transition=function(){for(var n,t,e,r,u=this.id,i=++Ls,o=[],a=0,c=this.length;c>a;a++){o.push(n=[]);for(var t=this[a],s=0,l=t.length;l>s;s++)(e=t[s])&&(r=Object.create(e.__transition__[u]),r.delay+=r.duration,jo(e,s,i,r)),n.push(e)}return Do(o,i)},Xo.svg.axis=function(){function n(n){n.each(function(){var n,s=Xo.select(this),l=this.__chart__||e,f=this.__chart__=e.copy(),h=null==c?f.ticks?f.ticks.apply(f,a):f.domain():c,g=null==t?f.tickFormat?f.tickFormat.apply(f,a):bt:t,p=s.selectAll(".tick").data(h,f),v=p.enter().insert("g",".domain").attr("class","tick").style("opacity",Aa),d=Xo.transition(p.exit()).style("opacity",Aa).remove(),m=Xo.transition(p).style("opacity",1),y=Ri(f),x=s.selectAll(".domain").data([0]),M=(x.enter().append("path").attr("class","domain"),Xo.transition(x));v.append("line"),v.append("text");var _=v.select("line"),b=m.select("line"),w=p.select("text").text(g),S=v.select("text"),k=m.select("text");switch(r){case"bottom":n=Ho,_.attr("y2",u),S.attr("y",Math.max(u,0)+o),b.attr("x2",0).attr("y2",u),k.attr("x",0).attr("y",Math.max(u,0)+o),w.attr("dy",".71em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+i+"V0H"+y[1]+"V"+i);break;case"top":n=Ho,_.attr("y2",-u),S.attr("y",-(Math.max(u,0)+o)),b.attr("x2",0).attr("y2",-u),k.attr("x",0).attr("y",-(Math.max(u,0)+o)),w.attr("dy","0em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+-i+"V0H"+y[1]+"V"+-i);break;case"left":n=Fo,_.attr("x2",-u),S.attr("x",-(Math.max(u,0)+o)),b.attr("x2",-u).attr("y2",0),k.attr("x",-(Math.max(u,0)+o)).attr("y",0),w.attr("dy",".32em").style("text-anchor","end"),M.attr("d","M"+-i+","+y[0]+"H0V"+y[1]+"H"+-i);break;case"right":n=Fo,_.attr("x2",u),S.attr("x",Math.max(u,0)+o),b.attr("x2",u).attr("y2",0),k.attr("x",Math.max(u,0)+o).attr("y",0),w.attr("dy",".32em").style("text-anchor","start"),M.attr("d","M"+i+","+y[0]+"H0V"+y[1]+"H"+i)}if(f.rangeBand){var E=f,A=E.rangeBand()/2;l=f=function(n){return E(n)+A}}else l.rangeBand?l=f:d.call(n,f);v.call(n,l),m.call(n,f)})}var t,e=Xo.scale.linear(),r=Ts,u=6,i=6,o=3,a=[10],c=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in qs?t+"":Ts,n):r},n.ticks=function(){return arguments.length?(a=arguments,n):a},n.tickValues=function(t){return arguments.length?(c=t,n):c},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Ts="bottom",qs={top:1,right:1,bottom:1,left:1};Xo.svg.brush=function(){function n(i){i.each(function(){var i=Xo.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=i.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),i.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=i.selectAll(".resize").data(p,bt);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return zs[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var l,f=Xo.transition(i),h=Xo.transition(o);c&&(l=Ri(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),e(f)),s&&(l=Ri(s),h.attr("y",l[0]).attr("height",l[1]-l[0]),r(f)),t(f)})}function t(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+l[+/e$/.test(n)]+","+f[+/^s/.test(n)]+")"})}function e(n){n.select(".extent").attr("x",l[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",l[1]-l[0])}function r(n){n.select(".extent").attr("y",f[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",f[1]-f[0])}function u(){function u(){32==Xo.event.keyCode&&(C||(x=null,L[0]-=l[1],L[1]-=f[1],C=2),d())}function p(){32==Xo.event.keyCode&&2==C&&(L[0]+=l[1],L[1]+=f[1],C=0,d())}function v(){var n=Xo.mouse(_),u=!1;M&&(n[0]+=M[0],n[1]+=M[1]),C||(Xo.event.altKey?(x||(x=[(l[0]+l[1])/2,(f[0]+f[1])/2]),L[0]=l[+(n[0]<x[0])],L[1]=f[+(n[1]<x[1])]):x=null),E&&m(n,c,0)&&(e(S),u=!0),A&&m(n,s,1)&&(r(S),u=!0),u&&(t(S),w({type:"brush",mode:C?"move":"resize"}))}function m(n,t,e){var r,u,a=Ri(t),c=a[0],s=a[1],p=L[e],v=e?f:l,d=v[1]-v[0];return C&&(c-=p,s-=d+p),r=(e?g:h)?Math.max(c,Math.min(s,n[e])):n[e],C?u=(r+=p)+d:(x&&(p=Math.max(c,Math.min(s,2*x[e]-r))),r>p?(u=r,r=p):u=p),v[0]!=r||v[1]!=u?(e?o=null:i=null,v[0]=r,v[1]=u,!0):void 0}function y(){v(),S.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),Xo.select("body").style("cursor",null),T.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),N(),w({type:"brushend"})}var x,M,_=this,b=Xo.select(Xo.event.target),w=a.of(_,arguments),S=Xo.select(_),k=b.datum(),E=!/^(n|s)$/.test(k)&&c,A=!/^(e|w)$/.test(k)&&s,C=b.classed("extent"),N=O(),L=Xo.mouse(_),T=Xo.select(Go).on("keydown.brush",u).on("keyup.brush",p);if(Xo.event.changedTouches?T.on("touchmove.brush",v).on("touchend.brush",y):T.on("mousemove.brush",v).on("mouseup.brush",y),S.interrupt().selectAll("*").interrupt(),C)L[0]=l[0]-L[0],L[1]=f[0]-L[1];else if(k){var q=+/w$/.test(k),z=+/^n/.test(k);M=[l[1-q]-L[0],f[1-z]-L[1]],L[0]=l[q],L[1]=f[z]}else Xo.event.altKey&&(x=L.slice());S.style("pointer-events","none").selectAll(".resize").style("display",null),Xo.select("body").style("cursor",b.style("cursor")),w({type:"brushstart"}),v()}var i,o,a=y(n,"brushstart","brush","brushend"),c=null,s=null,l=[0,0],f=[0,0],h=!0,g=!0,p=Rs[0];return n.event=function(n){n.each(function(){var n=a.of(this,arguments),t={x:l,y:f,i:i,j:o},e=this.__chart__||t;this.__chart__=t,ks?Xo.select(this).transition().each("start.brush",function(){i=e.i,o=e.j,l=e.x,f=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=hu(l,t.x),r=hu(f,t.y);return i=o=null,function(u){l=t.x=e(u),f=t.y=r(u),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){i=t.i,o=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,p=Rs[!c<<1|!s],n):c},n.y=function(t){return arguments.length?(s=t,p=Rs[!c<<1|!s],n):s},n.clamp=function(t){return arguments.length?(c&&s?(h=!!t[0],g=!!t[1]):c?h=!!t:s&&(g=!!t),n):c&&s?[h,g]:c?h:s?g:null},n.extent=function(t){var e,r,u,a,h;return arguments.length?(c&&(e=t[0],r=t[1],s&&(e=e[0],r=r[0]),i=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(h=e,e=r,r=h),(e!=l[0]||r!=l[1])&&(l=[e,r])),s&&(u=t[0],a=t[1],c&&(u=u[1],a=a[1]),o=[u,a],s.invert&&(u=s(u),a=s(a)),u>a&&(h=u,u=a,a=h),(u!=f[0]||a!=f[1])&&(f=[u,a])),n):(c&&(i?(e=i[0],r=i[1]):(e=l[0],r=l[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(h=e,e=r,r=h))),s&&(o?(u=o[0],a=o[1]):(u=f[0],a=f[1],s.invert&&(u=s.invert(u),a=s.invert(a)),u>a&&(h=u,u=a,a=h))),c&&s?[[e,u],[r,a]]:c?[e,r]:s&&[u,a])},n.clear=function(){return n.empty()||(l=[0,0],f=[0,0],i=o=null),n},n.empty=function(){return!!c&&l[0]==l[1]||!!s&&f[0]==f[1]},Xo.rebind(n,a,"on")};var zs={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Rs=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Ds=tc.format=ac.timeFormat,Ps=Ds.utc,Us=Ps("%Y-%m-%dT%H:%M:%S.%LZ");Ds.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?Oo:Us,Oo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},Oo.toString=Us.toString,tc.second=Rt(function(n){return new ec(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),tc.seconds=tc.second.range,tc.seconds.utc=tc.second.utc.range,tc.minute=Rt(function(n){return new ec(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),tc.minutes=tc.minute.range,tc.minutes.utc=tc.minute.utc.range,tc.hour=Rt(function(n){var t=n.getTimezoneOffset()/60;return new ec(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),tc.hours=tc.hour.range,tc.hours.utc=tc.hour.utc.range,tc.month=Rt(function(n){return n=tc.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),tc.months=tc.month.range,tc.months.utc=tc.month.utc.range;var js=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Hs=[[tc.second,1],[tc.second,5],[tc.second,15],[tc.second,30],[tc.minute,1],[tc.minute,5],[tc.minute,15],[tc.minute,30],[tc.hour,1],[tc.hour,3],[tc.hour,6],[tc.hour,12],[tc.day,1],[tc.day,2],[tc.week,1],[tc.month,1],[tc.month,3],[tc.year,1]],Fs=Ds.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",be]]),Os={range:function(n,t,e){return Xo.range(Math.ceil(n/e)*e,+t,e).map(Io)},floor:bt,ceil:bt};Hs.year=tc.year,tc.scale=function(){return Yo(Xo.scale.linear(),Hs,Fs)};var Ys=Hs.map(function(n){return[n[0].utc,n[1]]}),Is=Ps.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",be]]);Ys.year=tc.year.utc,tc.scale.utc=function(){return Yo(Xo.scale.linear(),Ys,Is)},Xo.text=wt(function(n){return n.responseText}),Xo.json=function(n,t){return St(n,"application/json",Zo,t)},Xo.html=function(n,t){return St(n,"text/html",Vo,t)},Xo.xml=wt(function(n){return n.responseXML}),"function"==typeof define&&define.amd?define(Xo):"object"==typeof module&&module.exports?module.exports=Xo:this.d3=Xo}();window.WebComponents=window.WebComponents||{};(function(scope){var flags=scope.flags||{};var file="webcomponents.js";var script=document.querySelector('script[src*="'+file+'"]');if(!flags.noOpts){location.search.slice(1).split("&").forEach(function(o){o=o.split("=");o[0]&&(flags[o[0]]=o[1]||true);});if(script){for(var i=0,a;a=script.attributes[i];i++){if(a.name!=="src"){flags[a.name]=a.value||true;}}}
-if(flags.log&&flags.log.split){var parts=flags.log.split(",");flags.log={};parts.forEach(function(f){flags.log[f]=true;});}else{flags.log={};}}
-flags.shadow=flags.shadow||flags.shadowdom||flags.polyfill;if(flags.shadow==="native"){flags.shadow=false;}else{flags.shadow=flags.shadow||!HTMLElement.prototype.createShadowRoot;}
-if(flags.register){window.CustomElements=window.CustomElements||{flags:{}};window.CustomElements.flags.register=flags.register;}
-scope.flags=flags;})(WebComponents);(function(scope){"use strict";var hasWorkingUrl=false;if(!scope.forceJURL){try{var u=new URL("b","http://a");u.pathname="c%20d";hasWorkingUrl=u.href==="http://a/c%20d";}catch(e){}}
-if(hasWorkingUrl)return;var relative=Object.create(null);relative["ftp"]=21;relative["file"]=0;relative["gopher"]=70;relative["http"]=80;relative["https"]=443;relative["ws"]=80;relative["wss"]=443;var relativePathDotMapping=Object.create(null);relativePathDotMapping["%2e"]=".";relativePathDotMapping[".%2e"]="..";relativePathDotMapping["%2e."]="..";relativePathDotMapping["%2e%2e"]="..";function isRelativeScheme(scheme){return relative[scheme]!==undefined;}
-function invalid(){clear.call(this);this._isInvalid=true;}
-function IDNAToASCII(h){if(""==h){invalid.call(this);}
-return h.toLowerCase();}
-function percentEscape(c){var unicode=c.charCodeAt(0);if(unicode>32&&unicode<127&&[34,35,60,62,63,96].indexOf(unicode)==-1){return c;}
-return encodeURIComponent(c);}
-function percentEscapeQuery(c){var unicode=c.charCodeAt(0);if(unicode>32&&unicode<127&&[34,35,60,62,96].indexOf(unicode)==-1){return c;}
-return encodeURIComponent(c);}
-var EOF=undefined,ALPHA=/[a-zA-Z]/,ALPHANUMERIC=/[a-zA-Z0-9\+\-\.]/;function parse(input,stateOverride,base){function err(message){errors.push(message);}
-var state=stateOverride||"scheme start",cursor=0,buffer="",seenAt=false,seenBracket=false,errors=[];loop:while((input[cursor-1]!=EOF||cursor==0)&&!this._isInvalid){var c=input[cursor];switch(state){case"scheme start":if(c&&ALPHA.test(c)){buffer+=c.toLowerCase();state="scheme";}else if(!stateOverride){buffer="";state="no scheme";continue;}else{err("Invalid scheme.");break loop;}
-break;case"scheme":if(c&&ALPHANUMERIC.test(c)){buffer+=c.toLowerCase();}else if(":"==c){this._scheme=buffer;buffer="";if(stateOverride){break loop;}
-if(isRelativeScheme(this._scheme)){this._isRelative=true;}
-if("file"==this._scheme){state="relative";}else if(this._isRelative&&base&&base._scheme==this._scheme){state="relative or authority";}else if(this._isRelative){state="authority first slash";}else{state="scheme data";}}else if(!stateOverride){buffer="";cursor=0;state="no scheme";continue;}else if(EOF==c){break loop;}else{err("Code point not allowed in scheme: "+c);break loop;}
-break;case"scheme data":if("?"==c){query="?";state="query";}else if("#"==c){this._fragment="#";state="fragment";}else{if(EOF!=c&&"	"!=c&&"\n"!=c&&"\r"!=c){this._schemeData+=percentEscape(c);}}
-break;case"no scheme":if(!base||!isRelativeScheme(base._scheme)){err("Missing scheme.");invalid.call(this);}else{state="relative";continue;}
-break;case"relative or authority":if("/"==c&&"/"==input[cursor+1]){state="authority ignore slashes";}else{err("Expected /, got: "+c);state="relative";continue;}
-break;case"relative":this._isRelative=true;if("file"!=this._scheme)this._scheme=base._scheme;if(EOF==c){this._host=base._host;this._port=base._port;this._path=base._path.slice();this._query=base._query;break loop;}else if("/"==c||"\\"==c){if("\\"==c)err("\\ is an invalid code point.");state="relative slash";}else if("?"==c){this._host=base._host;this._port=base._port;this._path=base._path.slice();this._query="?";state="query";}else if("#"==c){this._host=base._host;this._port=base._port;this._path=base._path.slice();this._query=base._query;this._fragment="#";state="fragment";}else{var nextC=input[cursor+1];var nextNextC=input[cursor+2];if("file"!=this._scheme||!ALPHA.test(c)||nextC!=":"&&nextC!="|"||EOF!=nextNextC&&"/"!=nextNextC&&"\\"!=nextNextC&&"?"!=nextNextC&&"#"!=nextNextC){this._host=base._host;this._port=base._port;this._path=base._path.slice();this._path.pop();}
-state="relative path";continue;}
-break;case"relative slash":if("/"==c||"\\"==c){if("\\"==c){err("\\ is an invalid code point.");}
-if("file"==this._scheme){state="file host";}else{state="authority ignore slashes";}}else{if("file"!=this._scheme){this._host=base._host;this._port=base._port;}
-state="relative path";continue;}
-break;case"authority first slash":if("/"==c){state="authority second slash";}else{err("Expected '/', got: "+c);state="authority ignore slashes";continue;}
-break;case"authority second slash":state="authority ignore slashes";if("/"!=c){err("Expected '/', got: "+c);continue;}
-break;case"authority ignore slashes":if("/"!=c&&"\\"!=c){state="authority";continue;}else{err("Expected authority, got: "+c);}
-break;case"authority":if("@"==c){if(seenAt){err("@ already seen.");buffer+="%40";}
-seenAt=true;for(var i=0;i<buffer.length;i++){var cp=buffer[i];if("	"==cp||"\n"==cp||"\r"==cp){err("Invalid whitespace in authority.");continue;}
-if(":"==cp&&null===this._password){this._password="";continue;}
-var tempC=percentEscape(cp);null!==this._password?this._password+=tempC:this._username+=tempC;}
-buffer="";}else if(EOF==c||"/"==c||"\\"==c||"?"==c||"#"==c){cursor-=buffer.length;buffer="";state="host";continue;}else{buffer+=c;}
-break;case"file host":if(EOF==c||"/"==c||"\\"==c||"?"==c||"#"==c){if(buffer.length==2&&ALPHA.test(buffer[0])&&(buffer[1]==":"||buffer[1]=="|")){state="relative path";}else if(buffer.length==0){state="relative path start";}else{this._host=IDNAToASCII.call(this,buffer);buffer="";state="relative path start";}
-continue;}else if("	"==c||"\n"==c||"\r"==c){err("Invalid whitespace in file host.");}else{buffer+=c;}
-break;case"host":case"hostname":if(":"==c&&!seenBracket){this._host=IDNAToASCII.call(this,buffer);buffer="";state="port";if("hostname"==stateOverride){break loop;}}else if(EOF==c||"/"==c||"\\"==c||"?"==c||"#"==c){this._host=IDNAToASCII.call(this,buffer);buffer="";state="relative path start";if(stateOverride){break loop;}
-continue;}else if("	"!=c&&"\n"!=c&&"\r"!=c){if("["==c){seenBracket=true;}else if("]"==c){seenBracket=false;}
-buffer+=c;}else{err("Invalid code point in host/hostname: "+c);}
-break;case"port":if(/[0-9]/.test(c)){buffer+=c;}else if(EOF==c||"/"==c||"\\"==c||"?"==c||"#"==c||stateOverride){if(""!=buffer){var temp=parseInt(buffer,10);if(temp!=relative[this._scheme]){this._port=temp+"";}
-buffer="";}
-if(stateOverride){break loop;}
-state="relative path start";continue;}else if("	"==c||"\n"==c||"\r"==c){err("Invalid code point in port: "+c);}else{invalid.call(this);}
-break;case"relative path start":if("\\"==c)err("'\\' not allowed in path.");state="relative path";if("/"!=c&&"\\"!=c){continue;}
-break;case"relative path":if(EOF==c||"/"==c||"\\"==c||!stateOverride&&("?"==c||"#"==c)){if("\\"==c){err("\\ not allowed in relative path.");}
-var tmp;if(tmp=relativePathDotMapping[buffer.toLowerCase()]){buffer=tmp;}
-if(".."==buffer){this._path.pop();if("/"!=c&&"\\"!=c){this._path.push("");}}else if("."==buffer&&"/"!=c&&"\\"!=c){this._path.push("");}else if("."!=buffer){if("file"==this._scheme&&this._path.length==0&&buffer.length==2&&ALPHA.test(buffer[0])&&buffer[1]=="|"){buffer=buffer[0]+":";}
-this._path.push(buffer);}
-buffer="";if("?"==c){this._query="?";state="query";}else if("#"==c){this._fragment="#";state="fragment";}}else if("	"!=c&&"\n"!=c&&"\r"!=c){buffer+=percentEscape(c);}
-break;case"query":if(!stateOverride&&"#"==c){this._fragment="#";state="fragment";}else if(EOF!=c&&"	"!=c&&"\n"!=c&&"\r"!=c){this._query+=percentEscapeQuery(c);}
-break;case"fragment":if(EOF!=c&&"	"!=c&&"\n"!=c&&"\r"!=c){this._fragment+=c;}
-break;}
-cursor++;}}
-function clear(){this._scheme="";this._schemeData="";this._username="";this._password=null;this._host="";this._port="";this._path=[];this._query="";this._fragment="";this._isInvalid=false;this._isRelative=false;}
-function jURL(url,base){if(base!==undefined&&!(base instanceof jURL))base=new jURL(String(base));this._url=url;clear.call(this);var input=url.replace(/^[ \t\r\n\f]+|[ \t\r\n\f]+$/g,"");parse.call(this,input,null,base);}
-jURL.prototype={toString:function(){return this.href;},get href(){if(this._isInvalid)return this._url;var authority="";if(""!=this._username||null!=this._password){authority=this._username+(null!=this._password?":"+this._password:"")+"@";}
-return this.protocol+(this._isRelative?"//"+authority+this.host:"")+this.pathname+this._query+this._fragment;},set href(href){clear.call(this);parse.call(this,href);},get protocol(){return this._scheme+":";},set protocol(protocol){if(this._isInvalid)return;parse.call(this,protocol+":","scheme start");},get host(){return this._isInvalid?"":this._port?this._host+":"+this._port:this._host;},set host(host){if(this._isInvalid||!this._isRelative)return;parse.call(this,host,"host");},get hostname(){return this._host;},set hostname(hostname){if(this._isInvalid||!this._isRelative)return;parse.call(this,hostname,"hostname");},get port(){return this._port;},set port(port){if(this._isInvalid||!this._isRelative)return;parse.call(this,port,"port");},get pathname(){return this._isInvalid?"":this._isRelative?"/"+this._path.join("/"):this._schemeData;},set pathname(pathname){if(this._isInvalid||!this._isRelative)return;this._path=[];parse.call(this,pathname,"relative path start");},get search(){return this._isInvalid||!this._query||"?"==this._query?"":this._query;},set search(search){if(this._isInvalid||!this._isRelative)return;this._query="?";if("?"==search[0])search=search.slice(1);parse.call(this,search,"query");},get hash(){return this._isInvalid||!this._fragment||"#"==this._fragment?"":this._fragment;},set hash(hash){if(this._isInvalid)return;this._fragment="#";if("#"==hash[0])hash=hash.slice(1);parse.call(this,hash,"fragment");},get origin(){var host;if(this._isInvalid||!this._scheme){return"";}
-switch(this._scheme){case"data":case"file":case"javascript":case"mailto":return"null";}
-host=this.host;if(!host){return"";}
-return this._scheme+"://"+host;}};var OriginalURL=scope.URL;if(OriginalURL){jURL.createObjectURL=function(blob){return OriginalURL.createObjectURL.apply(OriginalURL,arguments);};jURL.revokeObjectURL=function(url){OriginalURL.revokeObjectURL(url);};}
-scope.URL=jURL;})(this);if(typeof WeakMap==="undefined"){(function(){var defineProperty=Object.defineProperty;var counter=Date.now()%1e9;var WeakMap=function(){this.name="__st"+(Math.random()*1e9>>>0)+(counter++ +"__");};WeakMap.prototype={set:function(key,value){var entry=key[this.name];if(entry&&entry[0]===key)entry[1]=value;else defineProperty(key,this.name,{value:[key,value],writable:true});return this;},get:function(key){var entry;return(entry=key[this.name])&&entry[0]===key?entry[1]:undefined;},"delete":function(key){var entry=key[this.name];if(!entry||entry[0]!==key)return false;entry[0]=entry[1]=undefined;return true;},has:function(key){var entry=key[this.name];if(!entry)return false;return entry[0]===key;}};window.WeakMap=WeakMap;})();}
-(function(global){var registrationsTable=new WeakMap();var setImmediate;if(/Trident|Edge/.test(navigator.userAgent)){setImmediate=setTimeout;}else if(window.setImmediate){setImmediate=window.setImmediate;}else{var setImmediateQueue=[];var sentinel=String(Math.random());window.addEventListener("message",function(e){if(e.data===sentinel){var queue=setImmediateQueue;setImmediateQueue=[];queue.forEach(function(func){func();});}});setImmediate=function(func){setImmediateQueue.push(func);window.postMessage(sentinel,"*");};}
-var isScheduled=false;var scheduledObservers=[];function scheduleCallback(observer){scheduledObservers.push(observer);if(!isScheduled){isScheduled=true;setImmediate(dispatchCallbacks);}}
-function wrapIfNeeded(node){return window.ShadowDOMPolyfill&&window.ShadowDOMPolyfill.wrapIfNeeded(node)||node;}
-function dispatchCallbacks(){isScheduled=false;var observers=scheduledObservers;scheduledObservers=[];observers.sort(function(o1,o2){return o1.uid_-o2.uid_;});var anyNonEmpty=false;observers.forEach(function(observer){var queue=observer.takeRecords();removeTransientObserversFor(observer);if(queue.length){observer.callback_(queue,observer);anyNonEmpty=true;}});if(anyNonEmpty)dispatchCallbacks();}
-function removeTransientObserversFor(observer){observer.nodes_.forEach(function(node){var registrations=registrationsTable.get(node);if(!registrations)return;registrations.forEach(function(registration){if(registration.observer===observer)registration.removeTransientObservers();});});}
-function forEachAncestorAndObserverEnqueueRecord(target,callback){for(var node=target;node;node=node.parentNode){var registrations=registrationsTable.get(node);if(registrations){for(var j=0;j<registrations.length;j++){var registration=registrations[j];var options=registration.options;if(node!==target&&!options.subtree)continue;var record=callback(options);if(record)registration.enqueue(record);}}}}
-var uidCounter=0;function JsMutationObserver(callback){this.callback_=callback;this.nodes_=[];this.records_=[];this.uid_=++uidCounter;}
-JsMutationObserver.prototype={observe:function(target,options){target=wrapIfNeeded(target);if(!options.childList&&!options.attributes&&!options.characterData||options.attributeOldValue&&!options.attributes||options.attributeFilter&&options.attributeFilter.length&&!options.attributes||options.characterDataOldValue&&!options.characterData){throw new SyntaxError();}
-var registrations=registrationsTable.get(target);if(!registrations)registrationsTable.set(target,registrations=[]);var registration;for(var i=0;i<registrations.length;i++){if(registrations[i].observer===this){registration=registrations[i];registration.removeListeners();registration.options=options;break;}}
-if(!registration){registration=new Registration(this,target,options);registrations.push(registration);this.nodes_.push(target);}
-registration.addListeners();},disconnect:function(){this.nodes_.forEach(function(node){var registrations=registrationsTable.get(node);for(var i=0;i<registrations.length;i++){var registration=registrations[i];if(registration.observer===this){registration.removeListeners();registrations.splice(i,1);break;}}},this);this.records_=[];},takeRecords:function(){var copyOfRecords=this.records_;this.records_=[];return copyOfRecords;}};function MutationRecord(type,target){this.type=type;this.target=target;this.addedNodes=[];this.removedNodes=[];this.previousSibling=null;this.nextSibling=null;this.attributeName=null;this.attributeNamespace=null;this.oldValue=null;}
-function copyMutationRecord(original){var record=new MutationRecord(original.type,original.target);record.addedNodes=original.addedNodes.slice();record.removedNodes=original.removedNodes.slice();record.previousSibling=original.previousSibling;record.nextSibling=original.nextSibling;record.attributeName=original.attributeName;record.attributeNamespace=original.attributeNamespace;record.oldValue=original.oldValue;return record;}
-var currentRecord,recordWithOldValue;function getRecord(type,target){return currentRecord=new MutationRecord(type,target);}
-function getRecordWithOldValue(oldValue){if(recordWithOldValue)return recordWithOldValue;recordWithOldValue=copyMutationRecord(currentRecord);recordWithOldValue.oldValue=oldValue;return recordWithOldValue;}
-function clearRecords(){currentRecord=recordWithOldValue=undefined;}
-function recordRepresentsCurrentMutation(record){return record===recordWithOldValue||record===currentRecord;}
-function selectRecord(lastRecord,newRecord){if(lastRecord===newRecord)return lastRecord;if(recordWithOldValue&&recordRepresentsCurrentMutation(lastRecord))return recordWithOldValue;return null;}
-function Registration(observer,target,options){this.observer=observer;this.target=target;this.options=options;this.transientObservedNodes=[];}
-Registration.prototype={enqueue:function(record){var records=this.observer.records_;var length=records.length;if(records.length>0){var lastRecord=records[length-1];var recordToReplaceLast=selectRecord(lastRecord,record);if(recordToReplaceLast){records[length-1]=recordToReplaceLast;return;}}else{scheduleCallback(this.observer);}
-records[length]=record;},addListeners:function(){this.addListeners_(this.target);},addListeners_:function(node){var options=this.options;if(options.attributes)node.addEventListener("DOMAttrModified",this,true);if(options.characterData)node.addEventListener("DOMCharacterDataModified",this,true);if(options.childList)node.addEventListener("DOMNodeInserted",this,true);if(options.childList||options.subtree)node.addEventListener("DOMNodeRemoved",this,true);},removeListeners:function(){this.removeListeners_(this.target);},removeListeners_:function(node){var options=this.options;if(options.attributes)node.removeEventListener("DOMAttrModified",this,true);if(options.characterData)node.removeEventListener("DOMCharacterDataModified",this,true);if(options.childList)node.removeEventListener("DOMNodeInserted",this,true);if(options.childList||options.subtree)node.removeEventListener("DOMNodeRemoved",this,true);},addTransientObserver:function(node){if(node===this.target)return;this.addListeners_(node);this.transientObservedNodes.push(node);var registrations=registrationsTable.get(node);if(!registrations)registrationsTable.set(node,registrations=[]);registrations.push(this);},removeTransientObservers:function(){var transientObservedNodes=this.transientObservedNodes;this.transientObservedNodes=[];transientObservedNodes.forEach(function(node){this.removeListeners_(node);var registrations=registrationsTable.get(node);for(var i=0;i<registrations.length;i++){if(registrations[i]===this){registrations.splice(i,1);break;}}},this);},handleEvent:function(e){e.stopImmediatePropagation();switch(e.type){case"DOMAttrModified":var name=e.attrName;var namespace=e.relatedNode.namespaceURI;var target=e.target;var record=new getRecord("attributes",target);record.attributeName=name;record.attributeNamespace=namespace;var oldValue=e.attrChange===MutationEvent.ADDITION?null:e.prevValue;forEachAncestorAndObserverEnqueueRecord(target,function(options){if(!options.attributes)return;if(options.attributeFilter&&options.attributeFilter.length&&options.attributeFilter.indexOf(name)===-1&&options.attributeFilter.indexOf(namespace)===-1){return;}
-if(options.attributeOldValue)return getRecordWithOldValue(oldValue);return record;});break;case"DOMCharacterDataModified":var target=e.target;var record=getRecord("characterData",target);var oldValue=e.prevValue;forEachAncestorAndObserverEnqueueRecord(target,function(options){if(!options.characterData)return;if(options.characterDataOldValue)return getRecordWithOldValue(oldValue);return record;});break;case"DOMNodeRemoved":this.addTransientObserver(e.target);case"DOMNodeInserted":var changedNode=e.target;var addedNodes,removedNodes;if(e.type==="DOMNodeInserted"){addedNodes=[changedNode];removedNodes=[];}else{addedNodes=[];removedNodes=[changedNode];}
-var previousSibling=changedNode.previousSibling;var nextSibling=changedNode.nextSibling;var record=getRecord("childList",e.target.parentNode);record.addedNodes=addedNodes;record.removedNodes=removedNodes;record.previousSibling=previousSibling;record.nextSibling=nextSibling;forEachAncestorAndObserverEnqueueRecord(e.relatedNode,function(options){if(!options.childList)return;return record;});}
-clearRecords();}};global.JsMutationObserver=JsMutationObserver;if(!global.MutationObserver)global.MutationObserver=JsMutationObserver;})(this);window.HTMLImports=window.HTMLImports||{flags:{}};(function(scope){var IMPORT_LINK_TYPE="import";var useNative=Boolean(IMPORT_LINK_TYPE in document.createElement("link"));var hasShadowDOMPolyfill=Boolean(window.ShadowDOMPolyfill);var wrap=function(node){return hasShadowDOMPolyfill?ShadowDOMPolyfill.wrapIfNeeded(node):node;};var rootDocument=wrap(document);var currentScriptDescriptor={get:function(){var script=HTMLImports.currentScript||document.currentScript||(document.readyState!=="complete"?document.scripts[document.scripts.length-1]:null);return wrap(script);},configurable:true};Object.defineProperty(document,"_currentScript",currentScriptDescriptor);Object.defineProperty(rootDocument,"_currentScript",currentScriptDescriptor);var isIE=/Trident|Edge/.test(navigator.userAgent);function whenReady(callback,doc){doc=doc||rootDocument;whenDocumentReady(function(){watchImportsLoad(callback,doc);},doc);}
-var requiredReadyState=isIE?"complete":"interactive";var READY_EVENT="readystatechange";function isDocumentReady(doc){return doc.readyState==="complete"||doc.readyState===requiredReadyState;}
-function whenDocumentReady(callback,doc){if(!isDocumentReady(doc)){var checkReady=function(){if(doc.readyState==="complete"||doc.readyState===requiredReadyState){doc.removeEventListener(READY_EVENT,checkReady);whenDocumentReady(callback,doc);}};doc.addEventListener(READY_EVENT,checkReady);}else if(callback){callback();}}
-function markTargetLoaded(event){event.target.__loaded=true;}
-function watchImportsLoad(callback,doc){var imports=doc.querySelectorAll("link[rel=import]");var parsedCount=0,importCount=imports.length,newImports=[],errorImports=[];function checkDone(){if(parsedCount==importCount&&callback){callback({allImports:imports,loadedImports:newImports,errorImports:errorImports});}}
-function loadedImport(e){markTargetLoaded(e);newImports.push(this);parsedCount++;checkDone();}
-function errorLoadingImport(e){errorImports.push(this);parsedCount++;checkDone();}
-if(importCount){for(var i=0,imp;i<importCount&&(imp=imports[i]);i++){if(isImportLoaded(imp)){parsedCount++;checkDone();}else{imp.addEventListener("load",loadedImport);imp.addEventListener("error",errorLoadingImport);}}}else{checkDone();}}
-function isImportLoaded(link){return useNative?link.__loaded||link.import&&link.import.readyState!=="loading":link.__importParsed;}
-if(useNative){new MutationObserver(function(mxns){for(var i=0,l=mxns.length,m;i<l&&(m=mxns[i]);i++){if(m.addedNodes){handleImports(m.addedNodes);}}}).observe(document.head,{childList:true});function handleImports(nodes){for(var i=0,l=nodes.length,n;i<l&&(n=nodes[i]);i++){if(isImport(n)){handleImport(n);}}}
-function isImport(element){return element.localName==="link"&&element.rel==="import";}
-function handleImport(element){var loaded=element.import;if(loaded){markTargetLoaded({target:element});}else{element.addEventListener("load",markTargetLoaded);element.addEventListener("error",markTargetLoaded);}}
-(function(){if(document.readyState==="loading"){var imports=document.querySelectorAll("link[rel=import]");for(var i=0,l=imports.length,imp;i<l&&(imp=imports[i]);i++){handleImport(imp);}}})();}
-whenReady(function(detail){HTMLImports.ready=true;HTMLImports.readyTime=new Date().getTime();var evt=rootDocument.createEvent("CustomEvent");evt.initCustomEvent("HTMLImportsLoaded",true,true,detail);rootDocument.dispatchEvent(evt);});scope.IMPORT_LINK_TYPE=IMPORT_LINK_TYPE;scope.useNative=useNative;scope.rootDocument=rootDocument;scope.whenReady=whenReady;scope.isIE=isIE;})(HTMLImports);(function(scope){var modules=[];var addModule=function(module){modules.push(module);};var initializeModules=function(){modules.forEach(function(module){module(scope);});};scope.addModule=addModule;scope.initializeModules=initializeModules;})(HTMLImports);HTMLImports.addModule(function(scope){var CSS_URL_REGEXP=/(url\()([^)]*)(\))/g;var CSS_IMPORT_REGEXP=/(@import[\s]+(?!url\())([^;]*)(;)/g;var path={resolveUrlsInStyle:function(style,linkUrl){var doc=style.ownerDocument;var resolver=doc.createElement("a");style.textContent=this.resolveUrlsInCssText(style.textContent,linkUrl,resolver);return style;},resolveUrlsInCssText:function(cssText,linkUrl,urlObj){var r=this.replaceUrls(cssText,urlObj,linkUrl,CSS_URL_REGEXP);r=this.replaceUrls(r,urlObj,linkUrl,CSS_IMPORT_REGEXP);return r;},replaceUrls:function(text,urlObj,linkUrl,regexp){return text.replace(regexp,function(m,pre,url,post){var urlPath=url.replace(/["']/g,"");if(linkUrl){urlPath=new URL(urlPath,linkUrl).href;}
-urlObj.href=urlPath;urlPath=urlObj.href;return pre+"'"+urlPath+"'"+post;});}};scope.path=path;});HTMLImports.addModule(function(scope){var xhr={async:true,ok:function(request){return request.status>=200&&request.status<300||request.status===304||request.status===0;},load:function(url,next,nextContext){var request=new XMLHttpRequest();if(scope.flags.debug||scope.flags.bust){url+="?"+Math.random();}
-request.open("GET",url,xhr.async);request.addEventListener("readystatechange",function(e){if(request.readyState===4){var locationHeader=request.getResponseHeader("Location");var redirectedUrl=null;if(locationHeader){var redirectedUrl=locationHeader.substr(0,1)==="/"?location.origin+locationHeader:locationHeader;}
-next.call(nextContext,!xhr.ok(request)&&request,request.response||request.responseText,redirectedUrl);}});request.send();return request;},loadDocument:function(url,next,nextContext){this.load(url,next,nextContext).responseType="document";}};scope.xhr=xhr;});HTMLImports.addModule(function(scope){var xhr=scope.xhr;var flags=scope.flags;var Loader=function(onLoad,onComplete){this.cache={};this.onload=onLoad;this.oncomplete=onComplete;this.inflight=0;this.pending={};};Loader.prototype={addNodes:function(nodes){this.inflight+=nodes.length;for(var i=0,l=nodes.length,n;i<l&&(n=nodes[i]);i++){this.require(n);}
-this.checkDone();},addNode:function(node){this.inflight++;this.require(node);this.checkDone();},require:function(elt){var url=elt.src||elt.href;elt.__nodeUrl=url;if(!this.dedupe(url,elt)){this.fetch(url,elt);}},dedupe:function(url,elt){if(this.pending[url]){this.pending[url].push(elt);return true;}
-var resource;if(this.cache[url]){this.onload(url,elt,this.cache[url]);this.tail();return true;}
-this.pending[url]=[elt];return false;},fetch:function(url,elt){flags.load&&console.log("fetch",url,elt);if(!url){setTimeout(function(){this.receive(url,elt,{error:"href must be specified"},null);}.bind(this),0);}else if(url.match(/^data:/)){var pieces=url.split(",");var header=pieces[0];var body=pieces[1];if(header.indexOf(";base64")>-1){body=atob(body);}else{body=decodeURIComponent(body);}
-setTimeout(function(){this.receive(url,elt,null,body);}.bind(this),0);}else{var receiveXhr=function(err,resource,redirectedUrl){this.receive(url,elt,err,resource,redirectedUrl);}.bind(this);xhr.load(url,receiveXhr);}},receive:function(url,elt,err,resource,redirectedUrl){this.cache[url]=resource;var $p=this.pending[url];for(var i=0,l=$p.length,p;i<l&&(p=$p[i]);i++){this.onload(url,p,resource,err,redirectedUrl);this.tail();}
-this.pending[url]=null;},tail:function(){--this.inflight;this.checkDone();},checkDone:function(){if(!this.inflight){this.oncomplete();}}};scope.Loader=Loader;});HTMLImports.addModule(function(scope){var Observer=function(addCallback){this.addCallback=addCallback;this.mo=new MutationObserver(this.handler.bind(this));};Observer.prototype={handler:function(mutations){for(var i=0,l=mutations.length,m;i<l&&(m=mutations[i]);i++){if(m.type==="childList"&&m.addedNodes.length){this.addedNodes(m.addedNodes);}}},addedNodes:function(nodes){if(this.addCallback){this.addCallback(nodes);}
-for(var i=0,l=nodes.length,n,loading;i<l&&(n=nodes[i]);i++){if(n.children&&n.children.length){this.addedNodes(n.children);}}},observe:function(root){this.mo.observe(root,{childList:true,subtree:true});}};scope.Observer=Observer;});HTMLImports.addModule(function(scope){var path=scope.path;var rootDocument=scope.rootDocument;var flags=scope.flags;var isIE=scope.isIE;var IMPORT_LINK_TYPE=scope.IMPORT_LINK_TYPE;var IMPORT_SELECTOR="link[rel="+IMPORT_LINK_TYPE+"]";var importParser={documentSelectors:IMPORT_SELECTOR,importsSelectors:[IMPORT_SELECTOR,"link[rel=stylesheet]","style","script:not([type])",'script[type="text/javascript"]'].join(","),map:{link:"parseLink",script:"parseScript",style:"parseStyle"},dynamicElements:[],parseNext:function(){var next=this.nextToParse();if(next){this.parse(next);}},parse:function(elt){if(this.isParsed(elt)){flags.parse&&console.log("[%s] is already parsed",elt.localName);return;}
-var fn=this[this.map[elt.localName]];if(fn){this.markParsing(elt);fn.call(this,elt);}},parseDynamic:function(elt,quiet){this.dynamicElements.push(elt);if(!quiet){this.parseNext();}},markParsing:function(elt){flags.parse&&console.log("parsing",elt);this.parsingElement=elt;},markParsingComplete:function(elt){elt.__importParsed=true;this.markDynamicParsingComplete(elt);if(elt.__importElement){elt.__importElement.__importParsed=true;this.markDynamicParsingComplete(elt.__importElement);}
-this.parsingElement=null;flags.parse&&console.log("completed",elt);},markDynamicParsingComplete:function(elt){var i=this.dynamicElements.indexOf(elt);if(i>=0){this.dynamicElements.splice(i,1);}},parseImport:function(elt){if(HTMLImports.__importsParsingHook){HTMLImports.__importsParsingHook(elt);}
-if(elt.import){elt.import.__importParsed=true;}
-this.markParsingComplete(elt);if(elt.__resource&&!elt.__error){elt.dispatchEvent(new CustomEvent("load",{bubbles:false}));}else{elt.dispatchEvent(new CustomEvent("error",{bubbles:false}));}
-if(elt.__pending){var fn;while(elt.__pending.length){fn=elt.__pending.shift();if(fn){fn({target:elt});}}}
-this.parseNext();},parseLink:function(linkElt){if(nodeIsImport(linkElt)){this.parseImport(linkElt);}else{linkElt.href=linkElt.href;this.parseGeneric(linkElt);}},parseStyle:function(elt){var src=elt;elt=cloneStyle(elt);src.__appliedElement=elt;elt.__importElement=src;this.parseGeneric(elt);},parseGeneric:function(elt){this.trackElement(elt);this.addElementToDocument(elt);},rootImportForElement:function(elt){var n=elt;while(n.ownerDocument.__importLink){n=n.ownerDocument.__importLink;}
-return n;},addElementToDocument:function(elt){var port=this.rootImportForElement(elt.__importElement||elt);port.parentNode.insertBefore(elt,port);},trackElement:function(elt,callback){var self=this;var done=function(e){if(callback){callback(e);}
-self.markParsingComplete(elt);self.parseNext();};elt.addEventListener("load",done);elt.addEventListener("error",done);if(isIE&&elt.localName==="style"){var fakeLoad=false;if(elt.textContent.indexOf("@import")==-1){fakeLoad=true;}else if(elt.sheet){fakeLoad=true;var csr=elt.sheet.cssRules;var len=csr?csr.length:0;for(var i=0,r;i<len&&(r=csr[i]);i++){if(r.type===CSSRule.IMPORT_RULE){fakeLoad=fakeLoad&&Boolean(r.styleSheet);}}}
-if(fakeLoad){elt.dispatchEvent(new CustomEvent("load",{bubbles:false}));}}},parseScript:function(scriptElt){var script=document.createElement("script");script.__importElement=scriptElt;script.src=scriptElt.src?scriptElt.src:generateScriptDataUrl(scriptElt);scope.currentScript=scriptElt;this.trackElement(script,function(e){script.parentNode.removeChild(script);scope.currentScript=null;});this.addElementToDocument(script);},nextToParse:function(){this._mayParse=[];return!this.parsingElement&&(this.nextToParseInDoc(rootDocument)||this.nextToParseDynamic());},nextToParseInDoc:function(doc,link){if(doc&&this._mayParse.indexOf(doc)<0){this._mayParse.push(doc);var nodes=doc.querySelectorAll(this.parseSelectorsForNode(doc));for(var i=0,l=nodes.length,p=0,n;i<l&&(n=nodes[i]);i++){if(!this.isParsed(n)){if(this.hasResource(n)){return nodeIsImport(n)?this.nextToParseInDoc(n.import,n):n;}else{return;}}}}
-return link;},nextToParseDynamic:function(){return this.dynamicElements[0];},parseSelectorsForNode:function(node){var doc=node.ownerDocument||node;return doc===rootDocument?this.documentSelectors:this.importsSelectors;},isParsed:function(node){return node.__importParsed;},needsDynamicParsing:function(elt){return this.dynamicElements.indexOf(elt)>=0;},hasResource:function(node){if(nodeIsImport(node)&&node.import===undefined){return false;}
-return true;}};function nodeIsImport(elt){return elt.localName==="link"&&elt.rel===IMPORT_LINK_TYPE;}
-function generateScriptDataUrl(script){var scriptContent=generateScriptContent(script);return"data:text/javascript;charset=utf-8,"+encodeURIComponent(scriptContent);}
-function generateScriptContent(script){return script.textContent+generateSourceMapHint(script);}
-function generateSourceMapHint(script){var owner=script.ownerDocument;owner.__importedScripts=owner.__importedScripts||0;var moniker=script.ownerDocument.baseURI;var num=owner.__importedScripts?"-"+owner.__importedScripts:"";owner.__importedScripts++;return"\n//# sourceURL="+moniker+num+".js\n";}
-function cloneStyle(style){var clone=style.ownerDocument.createElement("style");clone.textContent=style.textContent;path.resolveUrlsInStyle(clone);return clone;}
-scope.parser=importParser;scope.IMPORT_SELECTOR=IMPORT_SELECTOR;});HTMLImports.addModule(function(scope){var flags=scope.flags;var IMPORT_LINK_TYPE=scope.IMPORT_LINK_TYPE;var IMPORT_SELECTOR=scope.IMPORT_SELECTOR;var rootDocument=scope.rootDocument;var Loader=scope.Loader;var Observer=scope.Observer;var parser=scope.parser;var importer={documents:{},documentPreloadSelectors:IMPORT_SELECTOR,importsPreloadSelectors:[IMPORT_SELECTOR].join(","),loadNode:function(node){importLoader.addNode(node);},loadSubtree:function(parent){var nodes=this.marshalNodes(parent);importLoader.addNodes(nodes);},marshalNodes:function(parent){return parent.querySelectorAll(this.loadSelectorsForNode(parent));},loadSelectorsForNode:function(node){var doc=node.ownerDocument||node;return doc===rootDocument?this.documentPreloadSelectors:this.importsPreloadSelectors;},loaded:function(url,elt,resource,err,redirectedUrl){flags.load&&console.log("loaded",url,elt);elt.__resource=resource;elt.__error=err;if(isImportLink(elt)){var doc=this.documents[url];if(doc===undefined){doc=err?null:makeDocument(resource,redirectedUrl||url);if(doc){doc.__importLink=elt;this.bootDocument(doc);}
-this.documents[url]=doc;}
-elt.import=doc;}
-parser.parseNext();},bootDocument:function(doc){this.loadSubtree(doc);this.observer.observe(doc);parser.parseNext();},loadedAll:function(){parser.parseNext();}};var importLoader=new Loader(importer.loaded.bind(importer),importer.loadedAll.bind(importer));importer.observer=new Observer();function isImportLink(elt){return isLinkRel(elt,IMPORT_LINK_TYPE);}
-function isLinkRel(elt,rel){return elt.localName==="link"&&elt.getAttribute("rel")===rel;}
-function hasBaseURIAccessor(doc){return!!Object.getOwnPropertyDescriptor(doc,"baseURI");}
-function makeDocument(resource,url){var doc=document.implementation.createHTMLDocument(IMPORT_LINK_TYPE);doc._URL=url;var base=doc.createElement("base");base.setAttribute("href",url);if(!doc.baseURI&&!hasBaseURIAccessor(doc)){Object.defineProperty(doc,"baseURI",{value:url});}
-var meta=doc.createElement("meta");meta.setAttribute("charset","utf-8");doc.head.appendChild(meta);doc.head.appendChild(base);doc.body.innerHTML=resource;if(window.HTMLTemplateElement&&HTMLTemplateElement.bootstrap){HTMLTemplateElement.bootstrap(doc);}
-return doc;}
-if(!document.baseURI){var baseURIDescriptor={get:function(){var base=document.querySelector("base");return base?base.href:window.location.href;},configurable:true};Object.defineProperty(document,"baseURI",baseURIDescriptor);Object.defineProperty(rootDocument,"baseURI",baseURIDescriptor);}
-scope.importer=importer;scope.importLoader=importLoader;});HTMLImports.addModule(function(scope){var parser=scope.parser;var importer=scope.importer;var dynamic={added:function(nodes){var owner,parsed,loading;for(var i=0,l=nodes.length,n;i<l&&(n=nodes[i]);i++){if(!owner){owner=n.ownerDocument;parsed=parser.isParsed(owner);}
-loading=this.shouldLoadNode(n);if(loading){importer.loadNode(n);}
-if(this.shouldParseNode(n)&&parsed){parser.parseDynamic(n,loading);}}},shouldLoadNode:function(node){return node.nodeType===1&&matches.call(node,importer.loadSelectorsForNode(node));},shouldParseNode:function(node){return node.nodeType===1&&matches.call(node,parser.parseSelectorsForNode(node));}};importer.observer.addCallback=dynamic.added.bind(dynamic);var matches=HTMLElement.prototype.matches||HTMLElement.prototype.matchesSelector||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;});(function(scope){var initializeModules=scope.initializeModules;var isIE=scope.isIE;if(scope.useNative){return;}
-if(isIE&&typeof window.CustomEvent!=="function"){window.CustomEvent=function(inType,params){params=params||{};var e=document.createEvent("CustomEvent");e.initCustomEvent(inType,Boolean(params.bubbles),Boolean(params.cancelable),params.detail);return e;};window.CustomEvent.prototype=window.Event.prototype;}
-initializeModules();var rootDocument=scope.rootDocument;function bootstrap(){HTMLImports.importer.bootDocument(rootDocument);}
-if(document.readyState==="complete"||document.readyState==="interactive"&&!window.attachEvent){bootstrap();}else{document.addEventListener("DOMContentLoaded",bootstrap);}})(HTMLImports);window.CustomElements=window.CustomElements||{flags:{}};(function(scope){var flags=scope.flags;var modules=[];var addModule=function(module){modules.push(module);};var initializeModules=function(){modules.forEach(function(module){module(scope);});};scope.addModule=addModule;scope.initializeModules=initializeModules;scope.hasNative=Boolean(document.registerElement);scope.useNative=!flags.register&&scope.hasNative&&!window.ShadowDOMPolyfill&&(!window.HTMLImports||HTMLImports.useNative);})(CustomElements);CustomElements.addModule(function(scope){var IMPORT_LINK_TYPE=window.HTMLImports?HTMLImports.IMPORT_LINK_TYPE:"none";function forSubtree(node,cb){findAllElements(node,function(e){if(cb(e)){return true;}
-forRoots(e,cb);});forRoots(node,cb);}
-function findAllElements(node,find,data){var e=node.firstElementChild;if(!e){e=node.firstChild;while(e&&e.nodeType!==Node.ELEMENT_NODE){e=e.nextSibling;}}
-while(e){if(find(e,data)!==true){findAllElements(e,find,data);}
-e=e.nextElementSibling;}
-return null;}
-function forRoots(node,cb){var root=node.shadowRoot;while(root){forSubtree(root,cb);root=root.olderShadowRoot;}}
-function forDocumentTree(doc,cb){_forDocumentTree(doc,cb,[]);}
-function _forDocumentTree(doc,cb,processingDocuments){doc=wrap(doc);if(processingDocuments.indexOf(doc)>=0){return;}
-processingDocuments.push(doc);var imports=doc.querySelectorAll("link[rel="+IMPORT_LINK_TYPE+"]");for(var i=0,l=imports.length,n;i<l&&(n=imports[i]);i++){if(n.import){_forDocumentTree(n.import,cb,processingDocuments);}}
-cb(doc);}
-scope.forDocumentTree=forDocumentTree;scope.forSubtree=forSubtree;});CustomElements.addModule(function(scope){var flags=scope.flags;var forSubtree=scope.forSubtree;var forDocumentTree=scope.forDocumentTree;function addedNode(node){return added(node)||addedSubtree(node);}
-function added(node){if(scope.upgrade(node)){return true;}
-attached(node);}
-function addedSubtree(node){forSubtree(node,function(e){if(added(e)){return true;}});}
-function attachedNode(node){attached(node);if(inDocument(node)){forSubtree(node,function(e){attached(e);});}}
-var hasPolyfillMutations=!window.MutationObserver||window.MutationObserver===window.JsMutationObserver;scope.hasPolyfillMutations=hasPolyfillMutations;var isPendingMutations=false;var pendingMutations=[];function deferMutation(fn){pendingMutations.push(fn);if(!isPendingMutations){isPendingMutations=true;setTimeout(takeMutations);}}
-function takeMutations(){isPendingMutations=false;var $p=pendingMutations;for(var i=0,l=$p.length,p;i<l&&(p=$p[i]);i++){p();}
-pendingMutations=[];}
-function attached(element){if(hasPolyfillMutations){deferMutation(function(){_attached(element);});}else{_attached(element);}}
-function _attached(element){if(element.__upgraded__&&(element.attachedCallback||element.detachedCallback)){if(!element.__attached&&inDocument(element)){element.__attached=true;if(element.attachedCallback){element.attachedCallback();}}}}
-function detachedNode(node){detached(node);forSubtree(node,function(e){detached(e);});}
-function detached(element){if(hasPolyfillMutations){deferMutation(function(){_detached(element);});}else{_detached(element);}}
-function _detached(element){if(element.__upgraded__&&(element.attachedCallback||element.detachedCallback)){if(element.__attached&&!inDocument(element)){element.__attached=false;if(element.detachedCallback){element.detachedCallback();}}}}
-function inDocument(element){var p=element;var doc=wrap(document);while(p){if(p==doc){return true;}
-p=p.parentNode||p.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&p.host;}}
-function watchShadow(node){if(node.shadowRoot&&!node.shadowRoot.__watched){flags.dom&&console.log("watching shadow-root for: ",node.localName);var root=node.shadowRoot;while(root){observe(root);root=root.olderShadowRoot;}}}
-function handler(mutations){if(flags.dom){var mx=mutations[0];if(mx&&mx.type==="childList"&&mx.addedNodes){if(mx.addedNodes){var d=mx.addedNodes[0];while(d&&d!==document&&!d.host){d=d.parentNode;}
-var u=d&&(d.URL||d._URL||d.host&&d.host.localName)||"";u=u.split("/?").shift().split("/").pop();}}
-console.group("mutations (%d) [%s]",mutations.length,u||"");}
-mutations.forEach(function(mx){if(mx.type==="childList"){forEach(mx.addedNodes,function(n){if(!n.localName){return;}
-addedNode(n);});forEach(mx.removedNodes,function(n){if(!n.localName){return;}
-detachedNode(n);});}});flags.dom&&console.groupEnd();}
-function takeRecords(node){node=wrap(node);if(!node){node=wrap(document);}
-while(node.parentNode){node=node.parentNode;}
-var observer=node.__observer;if(observer){handler(observer.takeRecords());takeMutations();}}
-var forEach=Array.prototype.forEach.call.bind(Array.prototype.forEach);function observe(inRoot){if(inRoot.__observer){return;}
-var observer=new MutationObserver(handler);observer.observe(inRoot,{childList:true,subtree:true});inRoot.__observer=observer;}
-function upgradeDocument(doc){doc=wrap(doc);flags.dom&&console.group("upgradeDocument: ",doc.baseURI.split("/").pop());addedNode(doc);observe(doc);flags.dom&&console.groupEnd();}
-function upgradeDocumentTree(doc){forDocumentTree(doc,upgradeDocument);}
-var originalCreateShadowRoot=Element.prototype.createShadowRoot;if(originalCreateShadowRoot){Element.prototype.createShadowRoot=function(){var root=originalCreateShadowRoot.call(this);CustomElements.watchShadow(this);return root;};}
-scope.watchShadow=watchShadow;scope.upgradeDocumentTree=upgradeDocumentTree;scope.upgradeSubtree=addedSubtree;scope.upgradeAll=addedNode;scope.attachedNode=attachedNode;scope.takeRecords=takeRecords;});CustomElements.addModule(function(scope){var flags=scope.flags;function upgrade(node){if(!node.__upgraded__&&node.nodeType===Node.ELEMENT_NODE){var is=node.getAttribute("is");var definition=scope.getRegisteredDefinition(is||node.localName);if(definition){if(is&&definition.tag==node.localName){return upgradeWithDefinition(node,definition);}else if(!is&&!definition.extends){return upgradeWithDefinition(node,definition);}}}}
-function upgradeWithDefinition(element,definition){flags.upgrade&&console.group("upgrade:",element.localName);if(definition.is){element.setAttribute("is",definition.is);}
-implementPrototype(element,definition);element.__upgraded__=true;created(element);scope.attachedNode(element);scope.upgradeSubtree(element);flags.upgrade&&console.groupEnd();return element;}
-function implementPrototype(element,definition){if(Object.__proto__){element.__proto__=definition.prototype;}else{customMixin(element,definition.prototype,definition.native);element.__proto__=definition.prototype;}}
-function customMixin(inTarget,inSrc,inNative){var used={};var p=inSrc;while(p!==inNative&&p!==HTMLElement.prototype){var keys=Object.getOwnPropertyNames(p);for(var i=0,k;k=keys[i];i++){if(!used[k]){Object.defineProperty(inTarget,k,Object.getOwnPropertyDescriptor(p,k));used[k]=1;}}
-p=Object.getPrototypeOf(p);}}
-function created(element){if(element.createdCallback){element.createdCallback();}}
-scope.upgrade=upgrade;scope.upgradeWithDefinition=upgradeWithDefinition;scope.implementPrototype=implementPrototype;});CustomElements.addModule(function(scope){var isIE11OrOlder=scope.isIE11OrOlder;var upgradeDocumentTree=scope.upgradeDocumentTree;var upgradeAll=scope.upgradeAll;var upgradeWithDefinition=scope.upgradeWithDefinition;var implementPrototype=scope.implementPrototype;var useNative=scope.useNative;function register(name,options){var definition=options||{};if(!name){throw new Error("document.registerElement: first argument `name` must not be empty");}
-if(name.indexOf("-")<0){throw new Error("document.registerElement: first argument ('name') must contain a dash ('-'). Argument provided was '"+String(name)+"'.");}
-if(isReservedTag(name)){throw new Error("Failed to execute 'registerElement' on 'Document': Registration failed for type '"+String(name)+"'. The type name is invalid.");}
-if(getRegisteredDefinition(name)){throw new Error("DuplicateDefinitionError: a type with name '"+String(name)+"' is already registered");}
-if(!definition.prototype){definition.prototype=Object.create(HTMLElement.prototype);}
-definition.__name=name.toLowerCase();definition.lifecycle=definition.lifecycle||{};definition.ancestry=ancestry(definition.extends);resolveTagName(definition);resolvePrototypeChain(definition);overrideAttributeApi(definition.prototype);registerDefinition(definition.__name,definition);definition.ctor=generateConstructor(definition);definition.ctor.prototype=definition.prototype;definition.prototype.constructor=definition.ctor;if(scope.ready){upgradeDocumentTree(document);}
-return definition.ctor;}
-function overrideAttributeApi(prototype){if(prototype.setAttribute._polyfilled){return;}
-var setAttribute=prototype.setAttribute;prototype.setAttribute=function(name,value){changeAttribute.call(this,name,value,setAttribute);};var removeAttribute=prototype.removeAttribute;prototype.removeAttribute=function(name){changeAttribute.call(this,name,null,removeAttribute);};prototype.setAttribute._polyfilled=true;}
-function changeAttribute(name,value,operation){name=name.toLowerCase();var oldValue=this.getAttribute(name);operation.apply(this,arguments);var newValue=this.getAttribute(name);if(this.attributeChangedCallback&&newValue!==oldValue){this.attributeChangedCallback(name,oldValue,newValue);}}
-function isReservedTag(name){for(var i=0;i<reservedTagList.length;i++){if(name===reservedTagList[i]){return true;}}}
-var reservedTagList=["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"];function ancestry(extnds){var extendee=getRegisteredDefinition(extnds);if(extendee){return ancestry(extendee.extends).concat([extendee]);}
-return[];}
-function resolveTagName(definition){var baseTag=definition.extends;for(var i=0,a;a=definition.ancestry[i];i++){baseTag=a.is&&a.tag;}
-definition.tag=baseTag||definition.__name;if(baseTag){definition.is=definition.__name;}}
-function resolvePrototypeChain(definition){if(!Object.__proto__){var nativePrototype=HTMLElement.prototype;if(definition.is){var inst=document.createElement(definition.tag);var expectedPrototype=Object.getPrototypeOf(inst);if(expectedPrototype===definition.prototype){nativePrototype=expectedPrototype;}}
-var proto=definition.prototype,ancestor;while(proto&&proto!==nativePrototype){ancestor=Object.getPrototypeOf(proto);proto.__proto__=ancestor;proto=ancestor;}
-definition.native=nativePrototype;}}
-function instantiate(definition){return upgradeWithDefinition(domCreateElement(definition.tag),definition);}
-var registry={};function getRegisteredDefinition(name){if(name){return registry[name.toLowerCase()];}}
-function registerDefinition(name,definition){registry[name]=definition;}
-function generateConstructor(definition){return function(){return instantiate(definition);};}
-var HTML_NAMESPACE="http://www.w3.org/1999/xhtml";function createElementNS(namespace,tag,typeExtension){if(namespace===HTML_NAMESPACE){return createElement(tag,typeExtension);}else{return domCreateElementNS(namespace,tag);}}
-function createElement(tag,typeExtension){var definition=getRegisteredDefinition(typeExtension||tag);if(definition){if(tag==definition.tag&&typeExtension==definition.is){return new definition.ctor();}
-if(!typeExtension&&!definition.is){return new definition.ctor();}}
-var element;if(typeExtension){element=createElement(tag);element.setAttribute("is",typeExtension);return element;}
-element=domCreateElement(tag);if(tag.indexOf("-")>=0){implementPrototype(element,HTMLElement);}
-return element;}
-var domCreateElement=document.createElement.bind(document);var domCreateElementNS=document.createElementNS.bind(document);var isInstance;if(!Object.__proto__&&!useNative){isInstance=function(obj,ctor){var p=obj;while(p){if(p===ctor.prototype){return true;}
-p=p.__proto__;}
-return false;};}else{isInstance=function(obj,base){return obj instanceof base;};}
-function wrapDomMethodToForceUpgrade(obj,methodName){var orig=obj[methodName];obj[methodName]=function(){var n=orig.apply(this,arguments);upgradeAll(n);return n;};}
-wrapDomMethodToForceUpgrade(Node.prototype,"cloneNode");wrapDomMethodToForceUpgrade(document,"importNode");if(isIE11OrOlder){(function(){var importNode=document.importNode;document.importNode=function(){var n=importNode.apply(document,arguments);if(n.nodeType==n.DOCUMENT_FRAGMENT_NODE){var f=document.createDocumentFragment();f.appendChild(n);return f;}else{return n;}};})();}
-document.registerElement=register;document.createElement=createElement;document.createElementNS=createElementNS;scope.registry=registry;scope.instanceof=isInstance;scope.reservedTagList=reservedTagList;scope.getRegisteredDefinition=getRegisteredDefinition;document.register=document.registerElement;});(function(scope){var useNative=scope.useNative;var initializeModules=scope.initializeModules;var isIE11OrOlder=/Trident/.test(navigator.userAgent);if(useNative){var nop=function(){};scope.watchShadow=nop;scope.upgrade=nop;scope.upgradeAll=nop;scope.upgradeDocumentTree=nop;scope.upgradeSubtree=nop;scope.takeRecords=nop;scope.instanceof=function(obj,base){return obj instanceof base;};}else{initializeModules();}
-var upgradeDocumentTree=scope.upgradeDocumentTree;if(!window.wrap){if(window.ShadowDOMPolyfill){window.wrap=ShadowDOMPolyfill.wrapIfNeeded;window.unwrap=ShadowDOMPolyfill.unwrapIfNeeded;}else{window.wrap=window.unwrap=function(node){return node;};}}
-function bootstrap(){upgradeDocumentTree(wrap(document));if(window.HTMLImports){HTMLImports.__importsParsingHook=function(elt){upgradeDocumentTree(wrap(elt.import));};}
-CustomElements.ready=true;setTimeout(function(){CustomElements.readyTime=Date.now();if(window.HTMLImports){CustomElements.elapsed=CustomElements.readyTime-HTMLImports.readyTime;}
-document.dispatchEvent(new CustomEvent("WebComponentsReady",{bubbles:true}));});}
-if(isIE11OrOlder&&typeof window.CustomEvent!=="function"){window.CustomEvent=function(inType,params){params=params||{};var e=document.createEvent("CustomEvent");e.initCustomEvent(inType,Boolean(params.bubbles),Boolean(params.cancelable),params.detail);return e;};window.CustomEvent.prototype=window.Event.prototype;}
-if(document.readyState==="complete"||scope.flags.eager){bootstrap();}else if(document.readyState==="interactive"&&!window.attachEvent&&(!window.HTMLImports||window.HTMLImports.ready)){bootstrap();}else{var loadEvent=window.HTMLImports&&!HTMLImports.ready?"HTMLImportsLoaded":"DOMContentLoaded";window.addEventListener(loadEvent,bootstrap);}
-scope.isIE11OrOlder=isIE11OrOlder;})(window.CustomElements);if(typeof HTMLTemplateElement==="undefined"){(function(){var TEMPLATE_TAG="template";HTMLTemplateElement=function(){};HTMLTemplateElement.prototype=Object.create(HTMLElement.prototype);HTMLTemplateElement.decorate=function(template){if(!template.content){template.content=template.ownerDocument.createDocumentFragment();var child;while(child=template.firstChild){template.content.appendChild(child);}}};HTMLTemplateElement.bootstrap=function(doc){var templates=doc.querySelectorAll(TEMPLATE_TAG);for(var i=0,l=templates.length,t;i<l&&(t=templates[i]);i++){HTMLTemplateElement.decorate(t);}};addEventListener("DOMContentLoaded",function(){HTMLTemplateElement.bootstrap(document);});})();}
-(function(scope){var style=document.createElement("style");style.textContent=""+"body {"+"transition: opacity ease-in 0.2s;"+" } \n"+"body[unresolved] {"+"opacity: 0; display: block; overflow: hidden; position: relative;"+" } \n";var head=document.querySelector("head");head.insertBefore(style,head.firstChild);})(window.WebComponents);(function(){function resolve(){document.body.removeAttribute('unresolved');}
+'use strict';if(window.Polymer)
+throw new Error('Cannot proceed. Polymer already present.');window.Polymer={};window.Polymer.dom='shadow';(function(){function resolve(){document.body.removeAttribute('unresolved');}
 if(window.WebComponents){addEventListener('WebComponentsReady',resolve);}else{if(document.readyState==='interactive'||document.readyState==='complete'){resolve();}else{addEventListener('DOMContentLoaded',resolve);}}}());window.Polymer={Settings:function(){var settings=window.Polymer||{};var parts=location.search.slice(1).split('&');for(var i=0,o;i<parts.length&&(o=parts[i]);i++){o=o.split('=');o[0]&&(settings[o[0]]=o[1]||true);}
 settings.wantShadow=settings.dom==='shadow';settings.hasShadow=Boolean(Element.prototype.createShadowRoot);settings.nativeShadow=settings.hasShadow&&!window.ShadowDOMPolyfill;settings.useShadow=settings.wantShadow&&settings.hasShadow;settings.hasNativeImports=Boolean('import'in document.createElement('link'));settings.useNativeImports=settings.hasNativeImports;settings.useNativeCustomElements=!window.CustomElements||window.CustomElements.useNative;settings.useNativeShadow=settings.useShadow&&settings.nativeShadow;settings.usePolyfillProto=!settings.useNativeCustomElements&&!Object.__proto__;settings.hasNativeCSSProperties=!navigator.userAgent.match('AppleWebKit/601')&&window.CSS&&CSS.supports&&CSS.supports('box-shadow','0 0 0 var(--foo)');settings.useNativeCSSProperties=settings.hasNativeCSSProperties&&settings.lazyRegister&&settings.useNativeCSSProperties;return settings;}()};(function(){var userPolymer=window.Polymer;window.Polymer=function(prototype){if(typeof prototype==='function'){prototype=prototype.prototype;}
 if(!prototype){prototype={};}
@@ -3721,7 +3607,7 @@
 if(this.if!=this._lastIf){this.fire('dom-change');this._lastIf=this.if;}},_ensureInstance:function(){var parentNode=Polymer.dom(this).parentNode;if(parentNode){var parent=Polymer.dom(parentNode);if(!this._instance){this._instance=this.stamp();var root=this._instance.root;parent.insertBefore(root,this);}else{var c$=this._instance._children;if(c$&&c$.length){var lastChild=Polymer.dom(this).previousSibling;if(lastChild!==c$[c$.length-1]){for(var i=0,n;i<c$.length&&(n=c$[i]);i++){parent.insertBefore(n,this);}}}}}},_teardownInstance:function(){if(this._instance){var c$=this._instance._children;if(c$&&c$.length){var parent=Polymer.dom(Polymer.dom(c$[0]).parentNode);for(var i=0,n;i<c$.length&&(n=c$[i]);i++){parent.removeChild(n);}}
 this._instance=null;}},_showHideChildren:function(){var hidden=this.__hideTemplateChildren__||!this.if;if(this._instance){this._instance._showHideChildren(hidden);}},_forwardParentProp:function(prop,value){if(this._instance){this._instance[prop]=value;}},_forwardParentPath:function(path,value){if(this._instance){this._instance._notifyPath(path,value,true);}}});Polymer({is:'dom-bind',extends:'template',_template:null,created:function(){var self=this;Polymer.RenderStatus.whenReady(function(){if(document.readyState=='loading'){document.addEventListener('DOMContentLoaded',function(){self._markImportsReady();});}else{self._markImportsReady();}});},_ensureReady:function(){if(!this._readied){this._readySelf();}},_markImportsReady:function(){this._importsReady=true;this._ensureReady();},_registerFeatures:function(){this._prepConstructor();},_insertChildren:function(){var parentDom=Polymer.dom(Polymer.dom(this).parentNode);parentDom.insertBefore(this.root,this);},_removeChildren:function(){if(this._children){for(var i=0;i<this._children.length;i++){this.root.appendChild(this._children[i]);}}},_initFeatures:function(){},_scopeElementClass:function(element,selector){if(this.dataHost){return this.dataHost._scopeElementClass(element,selector);}else{return selector;}},_prepConfigure:function(){var config={};for(var prop in this._propertyEffects){config[prop]=this[prop];}
 var setupConfigure=this._setupConfigure;this._setupConfigure=function(){setupConfigure.call(this,config);};},attached:function(){if(this._importsReady){this.render();}},detached:function(){this._removeChildren();},render:function(){this._ensureReady();if(!this._children){this._template=this;this._prepAnnotations();this._prepEffects();this._prepBehaviors();this._prepConfigure();this._prepBindings();this._prepPropertyInfo();Polymer.Base._initFeatures.call(this);this._children=Polymer.TreeApi.arrayCopyChildNodes(this.root);}
-this._insertChildren();this.fire('dom-change');}});'use strict';var global=this;this.tr=(function(){if(global.tr){console.warn('Base was multiply initialized. First init wins.');return global.tr;}
+this._insertChildren();this.fire('dom-change');}});'use strict';if(!Polymer.Settings.useNativeShadow){tr.b.showPanic('Polymer error','base only works in shadow mode');}'use strict';var global=this;this.tr=(function(){if(global.tr){console.warn('Base was multiply initialized. First init wins.');return global.tr;}
 function exportPath(name){var parts=name.split('.');var cur=global;for(var part;parts.length&&(part=parts.shift());){if(part in cur){cur=cur[part];}else{cur=cur[part]={};}}
 return cur;};function isExported(name){var parts=name.split('.');var cur=global;for(var part;parts.length&&(part=parts.shift());){if(part in cur){cur=cur[part];}else{return false;}}
 return true;}
@@ -3729,11 +3615,11 @@
 return false;curObject=nextObject;}
 return true;}
 var panicElement=undefined;var rawPanicMessages=[];function showPanicElementIfNeeded(){if(panicElement)
-return;var panicOverlay=document.createElement('div');panicOverlay.style.backgroundColor='white';panicOverlay.style.border='3px solid red';panicOverlay.style.boxSizing='border-box';panicOverlay.style.color='black';panicOverlay.style.display='-webkit-flex';panicOverlay.style.height='100%';panicOverlay.style.left=0;panicOverlay.style.padding='8px';panicOverlay.style.position='fixed';panicOverlay.style.top=0;panicOverlay.style.webkitFlexDirection='column';panicOverlay.style.width='100%';panicElement=document.createElement('div');panicElement.style.webkitFlex='1 1 auto';panicElement.style.overflow='auto';Polymer.dom(panicOverlay).appendChild(panicElement);if(!document.body){setTimeout(function(){Polymer.dom(document.body).appendChild(panicOverlay);},150);}else{Polymer.dom(document.body).appendChild(panicOverlay);}}
+return;var panicOverlay=document.createElement('div');panicOverlay.style.backgroundColor='white';panicOverlay.style.border='3px solid red';panicOverlay.style.boxSizing='border-box';panicOverlay.style.color='black';panicOverlay.style.display='-webkit-flex';panicOverlay.style.height='100%';panicOverlay.style.left=0;panicOverlay.style.padding='8px';panicOverlay.style.position='fixed';panicOverlay.style.top=0;panicOverlay.style.webkitFlexDirection='column';panicOverlay.style.width='100%';panicElement=document.createElement('div');panicElement.style.webkitFlex='1 1 auto';panicElement.style.overflow='auto';panicOverlay.appendChild(panicElement);if(!document.body){setTimeout(function(){document.body.appendChild(panicOverlay);},150);}else{document.body.appendChild(panicOverlay);}}
 function showPanic(panicTitle,panicDetails){if(tr.isHeadless){if(panicDetails instanceof Error)
 throw panicDetails;throw new Error('Panic: '+panicTitle+':\n'+panicDetails);}
 if(panicDetails instanceof Error)
-panicDetails=panicDetails.stack;showPanicElementIfNeeded();var panicMessageEl=document.createElement('div');Polymer.dom(panicMessageEl).innerHTML='<h2 id="message"></h2>'+'<pre id="details"></pre>';Polymer.dom(Polymer.dom(panicMessageEl).querySelector('#message')).textContent=panicTitle;Polymer.dom(Polymer.dom(panicMessageEl).querySelector('#details')).textContent=panicDetails;Polymer.dom(panicElement).appendChild(panicMessageEl);rawPanicMessages.push({title:panicTitle,details:panicDetails});}
+panicDetails=panicDetails.stack;showPanicElementIfNeeded();var panicMessageEl=document.createElement('div');panicMessageEl.innerHTML='<h2 id="message"></h2>'+'<pre id="details"></pre>';panicMessageEl.querySelector('#message').textContent=panicTitle;panicMessageEl.querySelector('#details').textContent=panicDetails;panicElement.appendChild(panicMessageEl);rawPanicMessages.push({title:panicTitle,details:panicDetails});}
 function hasPanic(){return rawPanicMessages.length!==0;}
 function getPanicText(){return rawPanicMessages.map(function(msg){return msg.title;}).join(', ');}
 function exportTo(namespace,fn){var obj=exportPath(namespace);var exports=fn();for(var propertyName in exports){var propertyDescriptor=Object.getOwnPropertyDescriptor(exports,propertyName);if(propertyDescriptor)
@@ -3914,7 +3800,8 @@
 var tmp_vec2=vec2.create();var tmp_vec2b=vec2.create();var tmp_vec4=vec4.create();var tmp_mat2d=mat2d.create();vec2.createFromArray=function(arr){if(arr.length!=2)
 throw new Error('Should be length 2');var v=vec2.create();vec2.set(v,arr[0],arr[1]);return v;};vec2.createXY=function(x,y){var v=vec2.create();vec2.set(v,x,y);return v;};vec2.toString=function(a){return'['+a[0]+', '+a[1]+']';};vec2.addTwoScaledUnitVectors=function(out,u1,scale1,u2,scale2){vec2.scale(tmp_vec2,u1,scale1);vec2.scale(tmp_vec2b,u2,scale2);vec2.add(out,tmp_vec2,tmp_vec2b);};vec2.interpolatePiecewiseFunction=function(points,x){if(x<points[0][0])
 return points[0][1];for(var i=1;i<points.length;++i){if(x<points[i][0]){var percent=normalize(x,points[i-1][0],points[i][0]);return lerp(percent,points[i-1][1],points[i][1]);}}
-return points[points.length-1][1];};vec3.createXYZ=function(x,y,z){var v=vec3.create();vec3.set(v,x,y,z);return v;};vec3.toString=function(a){return'vec3('+a[0]+', '+a[1]+', '+a[2]+')';};mat2d.translateXY=function(out,x,y){vec2.set(tmp_vec2,x,y);mat2d.translate(out,out,tmp_vec2);};mat2d.scaleXY=function(out,x,y){vec2.set(tmp_vec2,x,y);mat2d.scale(out,out,tmp_vec2);};vec4.unitize=function(out,a){out[0]=a[0]/a[3];out[1]=a[1]/a[3];out[2]=a[2]/a[3];out[3]=1;return out;};vec2.copyFromVec4=function(out,a){vec4.unitize(tmp_vec4,a);vec2.copy(out,tmp_vec4);};return{approximately:approximately,clamp:clamp,lerp:lerp,normalize:normalize,deg2rad:deg2rad,erf:erf};});'use strict';tr.exportTo('tr.b',function(){function Range(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;};Range.prototype={__proto__:Object.prototype,reset:function(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;},get isEmpty(){return this.isEmpty_;},addRange:function(range){if(range.isEmpty)
+return points[points.length-1][1];};vec3.createXYZ=function(x,y,z){var v=vec3.create();vec3.set(v,x,y,z);return v;};vec3.toString=function(a){return'vec3('+a[0]+', '+a[1]+', '+a[2]+')';};mat2d.translateXY=function(out,x,y){vec2.set(tmp_vec2,x,y);mat2d.translate(out,out,tmp_vec2);};mat2d.scaleXY=function(out,x,y){vec2.set(tmp_vec2,x,y);mat2d.scale(out,out,tmp_vec2);};vec4.unitize=function(out,a){out[0]=a[0]/a[3];out[1]=a[1]/a[3];out[2]=a[2]/a[3];out[3]=1;return out;};vec2.copyFromVec4=function(out,a){vec4.unitize(tmp_vec4,a);vec2.copy(out,tmp_vec4);};return{approximately:approximately,clamp:clamp,lerp:lerp,normalize:normalize,deg2rad:deg2rad,erf:erf};});'use strict';tr.exportTo('tr.b',function(){function Range(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;}
+Range.prototype={__proto__:Object.prototype,reset:function(){this.isEmpty_=true;this.min_=undefined;this.max_=undefined;},get isEmpty(){return this.isEmpty_;},addRange:function(range){if(range.isEmpty)
 return;this.addValue(range.min);this.addValue(range.max);},addValue:function(value){if(this.isEmpty_){this.max_=value;this.min_=value;this.isEmpty_=false;return;}
 this.max_=Math.max(this.max_,value);this.min_=Math.min(this.min_,value);},set min(min){this.isEmpty_=false;this.min_=min;},get min(){if(this.isEmpty_)
 return undefined;return this.min_;},get max(){if(this.isEmpty_)
@@ -3943,7 +3830,7 @@
 var first=binSearch(function(i){return this.min_===undefined||this.min_<=getValue(i);}.bind(this));var last=binSearch(function(i){return this.max_!==undefined&&this.max_<getValue(i);}.bind(this));return array.slice(first,last);}};Range.fromDict=function(d){if(d.isEmpty===true){return new Range();}else if(d.isEmpty===false){var range=new Range();range.min=d.min;range.max=d.max;return range;}else{throw new Error('Not a range');}};Range.fromExplicitRange=function(min,max){var range=new Range();range.min=min;range.max=max;return range;};Range.compareByMinTimes=function(a,b){if(!a.isEmpty&&!b.isEmpty)
 return a.min_-b.min_;if(a.isEmpty&&!b.isEmpty)
 return-1;if(!a.isEmpty&&b.isEmpty)
-return 1;return 0;};return{Range:Range};});'use strict';(function(exports){var rank={standard:function(array,key){array=array.sort(function(a,b){var x=a[key];var y=b[key];return((x<y)?-1:((x>y)?1:0));});for(var i=1;i<array.length+1;i++){array[i-1]['rank']=i;}
+return 1;return 0;};Range.PERCENT_RANGE=Range.fromExplicitRange(0,1);Object.freeze(Range.PERCENT_RANGE);return{Range:Range};});'use strict';(function(exports){var rank={standard:function(array,key){array=array.sort(function(a,b){var x=a[key];var y=b[key];return((x<y)?-1:((x>y)?1:0));});for(var i=1;i<array.length+1;i++){array[i-1]['rank']=i;}
 return array;},fractional:function(array,key){array=this.standard(array,key);var pos=0;while(pos<array.length){var sum=0;var i=0;for(i=0;array[pos+i+1]&&(array[pos+i][key]===array[pos+i+1][key]);i++){sum+=array[pos+i]['rank'];}
 sum+=array[pos+i]['rank'];var endPos=pos+i+1;for(pos;pos<endPos;pos++){array[pos]['rank']=sum/(i+1);}
 pos=endPos;}
@@ -3961,12 +3848,14 @@
 exports.test=function(x,y,alt,corr){alt=typeof alt!=='undefined'?alt:'two-sided';corr=typeof corr!=='undefined'?corr:true;var nx=x.length,ny=y.length,f=1,u,mu,std,z,p;u=statistic(x,y);if(corr){mu=(nx*ny/2)+0.5;}else{mu=nx*ny/2;}
 std=Math.sqrt(u.tcf*nx*ny*(nx+ny+1)/12);if(alt=='less'){z=(u.ux-mu)/std;}else if(alt=='greater'){z=(u.uy-mu)/std;}else if(alt=='two-sided'){z=Math.abs((u.big-mu)/std);}else{console.log('Unknown alternative argument');}
 if(alt=='two-sided'){f=2;}
-p=dnorm(-z,0,1)*f;return{U:u.small,p:p};}})(typeof exports==='undefined'?this['mannwhitneyu']={}:exports);'use strict';(function(global){if(tr.isNode){var mwuAbsPath=HTMLImportsLoader.hrefToAbsolutePath('/mannwhitneyu.js');var mwuModule=require(mwuAbsPath);for(var exportName in mwuModule){global[exportName]=mwuModule[exportName];}}})(this);'use strict';tr.exportTo('tr.b',function(){function identity(d){return d;}
-function Statistics(){}
-Statistics.divideIfPossibleOrZero=function(numerator,denominator){if(denominator===0)
+p=dnorm(-z,0,1)*f;return{U:u.small,p:p};}})(typeof exports==='undefined'?this['mannwhitneyu']={}:exports);'use strict';(function(global){if(tr.isNode){var mwuAbsPath=HTMLImportsLoader.hrefToAbsolutePath('/mannwhitneyu.js');var mwuModule=require(mwuAbsPath);for(var exportName in mwuModule){global[exportName]=mwuModule[exportName];}}})(this);'use strict';tr.exportTo('tr.b',function(){var identity=x=>x;var Statistics={};Statistics.divideIfPossibleOrZero=function(numerator,denominator){if(denominator===0)
 return 0;return numerator/denominator;};Statistics.sum=function(ary,opt_func,opt_this){var func=opt_func||identity;var ret=0;var i=0;for(var elt of ary)
-ret+=func.call(opt_this,elt,i++);return ret;};Statistics.mean=function(ary,opt_func,opt_this){if(ary.length==0)
-return undefined;return Statistics.sum(ary,opt_func,opt_this)/ary.length;};Statistics.weightedMean=function(ary,weightCallback,opt_valueCallback,opt_this){var valueCallback=opt_valueCallback||identity;var numerator=0;var denominator=0;var i=-1;for(var elt of ary){i++;var value=valueCallback.call(opt_this,elt,i);if(value===undefined)
+ret+=func.call(opt_this,elt,i++);return ret;};Statistics.mean=function(ary,opt_func,opt_this){var func=opt_func||identity;var sum=0;var i=0;for(var elt of ary)
+sum+=func.call(opt_this,elt,i++);if(i===0)
+return undefined;return sum/i;};Statistics.geometricMean=function(ary,opt_func,opt_this){var func=opt_func||identity;var i=0;var logsum=0;for(var elt of ary){var x=func.call(opt_this,elt,i++);if(x<=0)
+return 0;logsum+=Math.log(Math.abs(x));}
+if(i===0)
+return 1;return Math.exp(logsum/i);};Statistics.weightedMean=function(ary,weightCallback,opt_valueCallback,opt_this){var valueCallback=opt_valueCallback||identity;var numerator=0;var denominator=0;var i=-1;for(var elt of ary){i++;var value=valueCallback.call(opt_this,elt,i);if(value===undefined)
 continue;var weight=weightCallback.call(opt_this,elt,i,value);numerator+=weight*value;denominator+=weight;}
 if(denominator===0)
 return undefined;return numerator/denominator;};Statistics.variance=function(ary,opt_func,opt_this){if(ary.length===0)
@@ -4001,12 +3890,39 @@
 if(streamLengthA<numSamples){var nbElements=Math.min(streamLengthA,samplesA.length);var tempSamples=samplesB.slice();for(var i=0;i<nbElements;++i){Statistics.uniformlySampleStream(tempSamples,streamLengthB+i+1,samplesA[i],numSamples);}
 for(var i=0;i<tempSamples.length;++i){samplesA[i]=tempSamples[i];}
 return;}
-var nbElements=Math.min(numSamples,samplesB.length);var probOfSwapping=streamLengthB/(streamLengthA+streamLengthB);for(var i=0;i<nbElements;++i){if(Math.random()<probOfSwapping){samplesA[i]=samplesB[i];}}};function Distribution(){};Distribution.prototype={computeDensity:function(x){throw Error('Not implemented');},computePercentile:function(x){throw Error('Not implemented');},computeComplementaryPercentile:function(x){return 1-this.computePercentile(x);},get mean(){throw Error('Not implemented');},get mode(){throw Error('Not implemented');},get median(){throw Error('Not implemented');},get standardDeviation(){throw Error('Not implemented');},get variance(){throw Error('Not implemented');}};Statistics.UniformDistribution=function(opt_range){if(!opt_range)
+var nbElements=Math.min(numSamples,samplesB.length);var probOfSwapping=streamLengthB/(streamLengthA+streamLengthB);for(var i=0;i<nbElements;++i){if(Math.random()<probOfSwapping){samplesA[i]=samplesB[i];}}};function Distribution(){}
+Distribution.prototype={computeDensity:function(x){throw Error('Not implemented');},computePercentile:function(x){throw Error('Not implemented');},computeComplementaryPercentile:function(x){return 1-this.computePercentile(x);},get mean(){throw Error('Not implemented');},get mode(){throw Error('Not implemented');},get median(){throw Error('Not implemented');},get standardDeviation(){throw Error('Not implemented');},get variance(){throw Error('Not implemented');}};Statistics.UniformDistribution=function(opt_range){if(!opt_range)
 opt_range=tr.b.Range.fromExplicitRange(0,1);this.range=opt_range;};Statistics.UniformDistribution.prototype={__proto__:Distribution.prototype,computeDensity:function(x){return 1/this.range.range;},computePercentile:function(x){return tr.b.normalize(x,this.range.min,this.range.max);},get mean(){return this.range.center;},get mode(){return undefined;},get median(){return this.mean;},get standardDeviation(){return Math.sqrt(this.variance);},get variance(){return Math.pow(this.range.range,2)/12;}};Statistics.NormalDistribution=function(opt_mean,opt_variance){this.mean_=opt_mean||0;this.variance_=opt_variance||1;this.standardDeviation_=Math.sqrt(this.variance_);};Statistics.NormalDistribution.prototype={__proto__:Distribution.prototype,computeDensity:function(x){var scale=(1.0/(this.standardDeviation*Math.sqrt(2.0*Math.PI)));var exponent=-Math.pow(x-this.mean,2)/(2.0*this.variance);return scale*Math.exp(exponent);},computePercentile:function(x){var standardizedX=((x-this.mean)/Math.sqrt(2.0*this.variance));return(1.0+tr.b.erf(standardizedX))/2.0;},get mean(){return this.mean_;},get median(){return this.mean;},get mode(){return this.mean;},get standardDeviation(){return this.standardDeviation_;},get variance(){return this.variance_;}};Statistics.LogNormalDistribution=function(opt_location,opt_shape){this.normalDistribution_=new Statistics.NormalDistribution(opt_location,Math.pow(opt_shape||1,2));};Statistics.LogNormalDistribution.prototype={__proto__:Statistics.NormalDistribution.prototype,computeDensity:function(x){return this.normalDistribution_.computeDensity(Math.log(x))/x;},computePercentile:function(x){return this.normalDistribution_.computePercentile(Math.log(x));},get mean(){return Math.exp(this.normalDistribution_.mean+
 (this.normalDistribution_.variance/2));},get variance(){var nm=this.normalDistribution_.mean;var nv=this.normalDistribution_.variance;return(Math.exp(2*(nm+nv))-
 Math.exp(2*nm+nv));},get standardDeviation(){return Math.sqrt(this.variance);},get median(){return Math.exp(this.normalDistribution_.mean);},get mode(){return Math.exp(this.normalDistribution_.mean-
 this.normalDistribution_.variance);}};Statistics.LogNormalDistribution.fromMedianAndDiminishingReturns=function(median,diminishingReturns){diminishingReturns=Math.log(diminishingReturns/median);var shape=Math.sqrt(1-3*diminishingReturns-
-Math.sqrt(Math.pow(diminishingReturns-3,2)-8))/2;var location=Math.log(median);return new Statistics.LogNormalDistribution(location,shape);};Statistics.mwu=mannwhitneyu;return{Statistics:Statistics};});'use strict';tr.exportTo('tr.c',function(){function Auditor(model){this.model_=model;}
+Math.sqrt(Math.pow(diminishingReturns-3,2)-8))/2;var location=Math.log(median);return new Statistics.LogNormalDistribution(location,shape);};Statistics.mwu=mannwhitneyu;return{Statistics:Statistics};});'use strict';var GREEK_SMALL_LETTER_MU=String.fromCharCode(956);tr.exportTo('tr.b',function(){var UnitScale={};function defineUnitScale(name,prefixes){if(UnitScale[name]!==undefined)
+throw new Error('Unit scale \''+name+'\' already exists');if(prefixes.AUTO!==undefined){throw new Error('\'AUTO\' unit prefix will be added automatically '+'for unit scale \''+name+'\'');}
+prefixes.AUTO=tr.b.dictionaryValues(prefixes);prefixes.AUTO.sort((a,b)=>a.value-b.value);UnitScale[name]=prefixes;}
+function convertUnit(value,fromPrefix,toPrefix){if(value===undefined)
+return undefined;return value*(fromPrefix.value/toPrefix.value);}
+defineUnitScale('Binary',{NONE:{value:Math.pow(1024,0),symbol:''},KIBI:{value:Math.pow(1024,1),symbol:'Ki'},MEBI:{value:Math.pow(1024,2),symbol:'Mi'},GIBI:{value:Math.pow(1024,3),symbol:'Gi'},TEBI:{value:Math.pow(1024,4),symbol:'Ti'}});defineUnitScale('Metric',{NANO:{value:1e-9,symbol:'n'},MICRO:{value:1e-6,symbol:GREEK_SMALL_LETTER_MU},MILLI:{value:1e-3,symbol:'m'},NONE:{value:1,symbol:''},KILO:{value:1e3,symbol:'k'},MEGA:{value:1e6,symbol:'M'},GIGA:{value:1e9,symbol:'G'}});return{UnitScale:UnitScale,convertUnit:convertUnit};});'use strict';tr.exportTo('tr.b',function(){var msDisplayMode={scale:1e-3,suffix:'ms',roundedLess:function(a,b){return Math.round(a*1000)<Math.round(b*1000);},formatSpec:{unit:'s',unitPrefix:tr.b.UnitScale.Metric.MILLI,minimumFractionDigits:3,}};var nsDisplayMode={scale:1e-9,suffix:'ns',roundedLess:function(a,b){return Math.round(a*1000000)<Math.round(b*1000000);},formatSpec:{unit:'s',unitPrefix:tr.b.UnitScale.Metric.NANO,maximumFractionDigits:0}};var TimeDisplayModes={ns:nsDisplayMode,ms:msDisplayMode};return{TimeDisplayModes:TimeDisplayModes};});'use strict';tr.exportTo('tr.b',function(){var TimeDisplayModes=tr.b.TimeDisplayModes;var PLUS_MINUS_SIGN=String.fromCharCode(177);function max(a,b){if(a===undefined)
+return b;if(b===undefined)
+return a;return a.scale>b.scale?a:b;}
+var ImprovementDirection={DONT_CARE:0,BIGGER_IS_BETTER:1,SMALLER_IS_BETTER:2};function Unit(unitName,jsonName,basePrefix,isDelta,improvementDirection,formatSpec){this.unitName=unitName;this.jsonName=jsonName;this.basePrefix=basePrefix;this.isDelta=isDelta;this.improvementDirection=improvementDirection;this.formatSpec_=formatSpec;this.baseUnit=undefined;this.correspondingDeltaUnit=undefined;}
+Unit.prototype={asJSON:function(){return this.jsonName;},format:function(value,opt_context){var context=opt_context||{};var formatSpec=this.formatSpec_;if(typeof formatSpec==='function')
+formatSpec=formatSpec();function resolveProperty(propertyName){if(propertyName in context)
+return context[propertyName];else if(propertyName in formatSpec)
+return formatSpec[propertyName];else
+return undefined;}
+var signString='';if(value<0){signString='-';value=-value;}else if(this.isDelta){signString=value===0?PLUS_MINUS_SIGN:'+';}
+var unitString='';if(formatSpec.unit){if(formatSpec.unitHasPrecedingSpace!==false)
+unitString+=' ';var unitPrefix=resolveProperty('unitPrefix');if(unitPrefix!==undefined){var selectedPrefix;if(unitPrefix instanceof Array){var i=0;while(i<unitPrefix.length-1&&value/unitPrefix[i+1].value>=1){i++;}
+selectedPrefix=unitPrefix[i];}else{selectedPrefix=unitPrefix;}
+unitString+=selectedPrefix.symbol||'';value=tr.b.convertUnit(value,this.basePrefix,selectedPrefix);}else{value=tr.b.convertUnit(value,this.basePrefix,tr.b.UnitScale.Metric.NONE);}
+unitString+=formatSpec.unit;}
+var minimumFractionDigits=resolveProperty('minimumFractionDigits');var maximumFractionDigits=resolveProperty('maximumFractionDigits');if(minimumFractionDigits>maximumFractionDigits){if('minimumFractionDigits'in context&&!('maximumFractionDigits'in context)){maximumFractionDigits=minimumFractionDigits;}else if('maximumFractionDigits'in context&&!('minimumFractionDigits'in context)){minimumFractionDigits=maximumFractionDigits;}}
+var numberString=value.toLocaleString(undefined,{minimumFractionDigits:minimumFractionDigits,maximumFractionDigits:maximumFractionDigits});return signString+numberString+unitString;}};Unit.reset=function(){Unit.currentTimeDisplayMode=TimeDisplayModes.ms;};Unit.timestampFromUs=function(us){return tr.b.convertUnit(us,tr.b.UnitScale.Metric.MICRO,tr.b.UnitScale.Metric.MILLI);};Object.defineProperty(Unit,'currentTimeDisplayMode',{get:function(){return Unit.currentTimeDisplayMode_;},set:function(value){if(Unit.currentTimeDisplayMode_===value)
+return;Unit.currentTimeDisplayMode_=value;Unit.dispatchEvent(new tr.b.Event('display-mode-changed'));}});Unit.didPreferredTimeDisplayUnitChange=function(){var largest=undefined;var els=tr.b.findDeepElementsMatching(document.body,'tr-v-ui-preferred-display-unit');els.forEach(function(el){largest=max(largest,el.preferredTimeDisplayMode);});Unit.currentDisplayUnit=largest===undefined?TimeDisplayModes.ms:largest;};Unit.byName={};Unit.byJSONName={};Unit.fromJSON=function(object){var u=Unit.byJSONName[object];if(u){return u;}
+throw new Error('Unrecognized unit');};Unit.define=function(params){var definedUnits=[];tr.b.iterItems(ImprovementDirection,function(_,improvementDirection){var regularUnit=Unit.defineUnitVariant_(params,false,improvementDirection);var deltaUnit=Unit.defineUnitVariant_(params,true,improvementDirection);regularUnit.correspondingDeltaUnit=deltaUnit;deltaUnit.correspondingDeltaUnit=deltaUnit;definedUnits.push(regularUnit,deltaUnit);});var baseUnit=Unit.byName[params.baseUnitName];definedUnits.forEach(u=>u.baseUnit=baseUnit);};Unit.defineUnitVariant_=function(params,isDelta,improvementDirection){var nameSuffix=isDelta?'Delta':'';switch(improvementDirection){case ImprovementDirection.DONT_CARE:break;case ImprovementDirection.BIGGER_IS_BETTER:nameSuffix+='_biggerIsBetter';break;case ImprovementDirection.SMALLER_IS_BETTER:nameSuffix+='_smallerIsBetter';break;default:throw new Error('Unknown improvement direction: '+improvementDirection);}
+var unitName=params.baseUnitName+nameSuffix;var jsonName=params.baseJsonName+nameSuffix;if(Unit.byName[unitName]!==undefined)
+throw new Error('Unit \''+unitName+'\' already exists');if(Unit.byJSONName[jsonName]!==undefined)
+throw new Error('JSON unit \''+jsonName+'\' alread exists');var basePrefix=params.basePrefix?params.basePrefix:tr.b.UnitScale.Metric.NONE;var unit=new Unit(unitName,jsonName,basePrefix,isDelta,improvementDirection,params.formatSpec);Unit.byName[unitName]=unit;Unit.byJSONName[jsonName]=unit;return unit;};tr.b.EventTarget.decorate(Unit);Unit.reset();Unit.define({baseUnitName:'timeDurationInMs',baseJsonName:'ms',basePrefix:tr.b.UnitScale.Metric.MILLI,formatSpec:function(){return Unit.currentTimeDisplayMode_.formatSpec;}});Unit.define({baseUnitName:'timeStampInMs',baseJsonName:'tsMs',basePrefix:tr.b.UnitScale.Metric.MILLI,formatSpec:function(){return Unit.currentTimeDisplayMode_.formatSpec;}});Unit.define({baseUnitName:'normalizedPercentage',baseJsonName:'n%',formatSpec:{unit:'%',unitPrefix:{value:0.01},unitHasPrecedingSpace:false,minimumFractionDigits:3,maximumFractionDigits:3}});Unit.define({baseUnitName:'sizeInBytes',baseJsonName:'sizeInBytes',formatSpec:{unit:'B',unitPrefix:tr.b.UnitScale.Binary.AUTO,minimumFractionDigits:1,maximumFractionDigits:1}});Unit.define({baseUnitName:'energyInJoules',baseJsonName:'J',formatSpec:{unit:'J',minimumFractionDigits:3}});Unit.define({baseUnitName:'powerInWatts',baseJsonName:'W',formatSpec:{unit:'W',minimumFractionDigits:3}});Unit.define({baseUnitName:'unitlessNumber',baseJsonName:'unitless',formatSpec:{minimumFractionDigits:3,maximumFractionDigits:3}});Unit.define({baseUnitName:'count',baseJsonName:'count',formatSpec:{minimumFractionDigits:0,maximumFractionDigits:0}});return{ImprovementDirection:ImprovementDirection,Unit:Unit};});'use strict';tr.exportTo('tr.c',function(){function Auditor(model){this.model_=model;}
 Auditor.prototype={__proto__:Object.prototype,get model(){return this.model_;},runAnnotate:function(){},installUserFriendlyCategoryDriverIfNeeded:function(){},runAudit:function(){}};var options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Auditor;tr.b.decorateExtensionRegistry(Auditor,options);return{Auditor:Auditor};});'use strict';tr.exportTo('tr.b',function(){function clamp01(value){return Math.max(0,Math.min(1,value));}
 function Color(opt_r,opt_g,opt_b,opt_a){this.r=Math.floor(opt_r)||0;this.g=Math.floor(opt_g)||0;this.b=Math.floor(opt_b)||0;this.a=opt_a;}
 Color.fromString=function(str){var tmp;var values;if(str.substr(0,4)=='rgb('){tmp=str.substr(4,str.length-5);values=tmp.split(',').map(function(v){return v.replace(/^\s+/,'','g');});if(values.length!=3)
@@ -4044,77 +3960,51 @@
 throw new Error('metadata.subTypes must be an extension registry.');}
 e.typeInfo.constructor.subTypes=metadata.subTypes;});var eventsByTypeName=undefined;EventRegistry.getEventTypeInfoByTypeName=function(typeName){if(eventsByTypeName===undefined){eventsByTypeName={};EventRegistry.getAllRegisteredTypeInfos().forEach(function(typeInfo){eventsByTypeName[typeInfo.metadata.name]=typeInfo;});}
 return eventsByTypeName[typeName];};EventRegistry.addEventListener('registry-changed',function(){eventsByTypeName=undefined;});function convertCamelCaseToTitleCase(name){var result=name.replace(/[A-Z]/g,' $&');result=result.charAt(0).toUpperCase()+result.slice(1);return result;}
-EventRegistry.getUserFriendlySingularName=function(typeName){var typeInfo=EventRegistry.getEventTypeInfoByTypeName(typeName);var str=typeInfo.metadata.name;return convertCamelCaseToTitleCase(str);};EventRegistry.getUserFriendlyPluralName=function(typeName){var typeInfo=EventRegistry.getEventTypeInfoByTypeName(typeName);var str=typeInfo.metadata.pluralName;return convertCamelCaseToTitleCase(str);};return{EventRegistry:EventRegistry};});'use strict';tr.exportTo('tr.model',function(){var EventRegistry=tr.model.EventRegistry;var RequestSelectionChangeEvent=tr.b.Event.bind(undefined,'requestSelectionChange',true,false);function EventSet(opt_events){this.bounds_dirty_=true;this.bounds_=new tr.b.Range();this.length_=0;this.guid_=tr.b.GUID.allocateSimple();this.pushed_guids_={};if(opt_events){if(opt_events instanceof Array){for(var i=0;i<opt_events.length;i++)
-this.push(opt_events[i]);}else if(opt_events instanceof EventSet){this.addEventSet(opt_events);}else{this.push(opt_events);}}}
-EventSet.prototype={__proto__:Object.prototype,get bounds(){if(this.bounds_dirty_)
-this.resolveBounds_();return this.bounds_;},get duration(){if(this.bounds_.isEmpty)
-return 0;return this.bounds_.max-this.bounds_.min;},get length(){return this.length_;},get guid(){return this.guid_;},*[Symbol.iterator](){for(var i=0;i<this.length_;++i)
-yield this[i];},clear:function(){for(var i=0;i<this.length_;++i)
-delete this[i];this.length_=0;this.bounds_dirty_=true;},resolveBounds_:function(){this.bounds_.reset();for(var i=0;i<this.length_;i++)
-this[i].addBoundsToRange(this.bounds_);this.bounds_dirty_=false;},push:function(event){if(event.guid==undefined)
-throw new Error('Event must have a GUID');if(this.contains(event))
-return event;this.pushed_guids_[event.guid]=true;this[this.length_++]=event;this.bounds_dirty_=true;return event;},contains:function(event){return this.pushed_guids_[event.guid];},indexOf:function(event){for(var i=0;i<this.length;i++){if(this[i].guid===event.guid)
-return i;}
-return-1;},addEventSet:function(eventSet){for(var i=0;i<eventSet.length;i++)
-this.push(eventSet[i]);},subEventSet:function(index,count){count=count||1;var eventSet=new EventSet();eventSet.bounds_dirty_=true;if(index<0||index+count>this.length_)
-throw new Error('Index out of bounds');for(var i=index;i<index+count;i++)
-eventSet.push(this[i]);return eventSet;},intersectionIsEmpty:function(otherEventSet){return!this.some(function(event){return otherEventSet.contains(event);});},equals:function(that){if(this.length!==that.length)
-return false;for(var i=0;i<this.length;i++){var event=this[i];if(that.pushed_guids_[event.guid]===undefined)
-return false;}
-return true;},getEventsOrganizedByBaseType:function(opt_pruneEmpty){var allTypeInfos=EventRegistry.getAllRegisteredTypeInfos();var events=this.getEventsOrganizedByCallback(function(event){var maxEventIndex=-1;var maxEventTypeInfo=undefined;allTypeInfos.forEach(function(eventTypeInfo,eventIndex){if(!(event instanceof eventTypeInfo.constructor))
+EventRegistry.getUserFriendlySingularName=function(typeName){var typeInfo=EventRegistry.getEventTypeInfoByTypeName(typeName);var str=typeInfo.metadata.name;return convertCamelCaseToTitleCase(str);};EventRegistry.getUserFriendlyPluralName=function(typeName){var typeInfo=EventRegistry.getEventTypeInfoByTypeName(typeName);var str=typeInfo.metadata.pluralName;return convertCamelCaseToTitleCase(str);};return{EventRegistry:EventRegistry};});'use strict';tr.exportTo('tr.model',function(){var EventRegistry=tr.model.EventRegistry;var RequestSelectionChangeEvent=tr.b.Event.bind(undefined,'requestSelectionChange',true,false);function EventSet(opt_events){this.bounds_=new tr.b.Range();this.events_=new Set();if(opt_events){if(opt_events instanceof Array){for(var event of opt_events)
+this.push(event);}else if(opt_events instanceof EventSet){this.addEventSet(opt_events);}else{this.push(opt_events);}}}
+EventSet.prototype={__proto__:Object.prototype,get bounds(){return this.bounds_;},get duration(){if(this.bounds_.isEmpty)
+return 0;return this.bounds_.max-this.bounds_.min;},get length(){return this.events_.size;},get guid(){return this.guid_;},*[Symbol.iterator](){for(var event of this.events_)
+yield event;},clear:function(){this.bounds_=new tr.b.Range();this.events_.clear();},push:function(event){if(event.guid==undefined)
+throw new Error('Event must have a GUID');if(!this.events_.has(event)){this.events_.add(event);if(event.addBoundsToRange)
+if(this.bounds_!==undefined)
+event.addBoundsToRange(this.bounds_);}
+return event;},contains:function(event){if(this.events_.has(event))
+return event;else
+return undefined;},addEventSet:function(eventSet){for(var event of eventSet)
+this.push(event);},intersectionIsEmpty:function(otherEventSet){return!this.some(event=>otherEventSet.contains(event));},equals:function(that){if(this.length!==that.length)
+return false;return this.every(event=>that.contains(event));},sortEvents:function(compare){var ary=this.toArray();ary.sort(compare);this.clear();for(var event of ary)
+this.push(event);},getEventsOrganizedByBaseType:function(opt_pruneEmpty){var allTypeInfos=EventRegistry.getAllRegisteredTypeInfos();var events=this.getEventsOrganizedByCallback(function(event){var maxEventIndex=-1;var maxEventTypeInfo=undefined;allTypeInfos.forEach(function(eventTypeInfo,eventIndex){if(!(event instanceof eventTypeInfo.constructor))
 return;if(eventIndex>maxEventIndex){maxEventIndex=eventIndex;maxEventTypeInfo=eventTypeInfo;}});if(maxEventIndex==-1){console.log(event);throw new Error('Unrecognized event type');}
 return maxEventTypeInfo.metadata.name;});if(!opt_pruneEmpty){allTypeInfos.forEach(function(eventTypeInfo){if(events[eventTypeInfo.metadata.name]===undefined)
 events[eventTypeInfo.metadata.name]=new EventSet();});}
 return events;},getEventsOrganizedByTitle:function(){return this.getEventsOrganizedByCallback(function(event){if(event.title===undefined)
-throw new Error('An event didn\'t have a title!');return event.title;});},getEventsOrganizedByCallback:function(cb,opt_this){var groupedEvents=tr.b.group(this,cb,opt_this||this);return tr.b.mapItems(groupedEvents,(_,events)=>new EventSet(events));},enumEventsOfType:function(type,func){for(var i=0;i<this.length_;i++)
-if(this[i]instanceof type)
-func(this[i]);},get userFriendlyName(){if(this.length===0){throw new Error('Empty event set');}
-var eventsByBaseType=this.getEventsOrganizedByBaseType(true);var eventTypeName=tr.b.dictionaryKeys(eventsByBaseType)[0];if(this.length===1){var tmp=EventRegistry.getUserFriendlySingularName(eventTypeName);return this[0].userFriendlyName;}
+throw new Error('An event didn\'t have a title!');return event.title;});},getEventsOrganizedByCallback:function(cb,opt_this){var groupedEvents=tr.b.group(this,cb,opt_this||this);return tr.b.mapItems(groupedEvents,(_,events)=>new EventSet(events));},enumEventsOfType:function(type,func){for(var event of this)
+if(event instanceof type)
+func(event);},get userFriendlyName(){if(this.length===0){throw new Error('Empty event set');}
+var eventsByBaseType=this.getEventsOrganizedByBaseType(true);var eventTypeName=tr.b.dictionaryKeys(eventsByBaseType)[0];if(this.length===1){var tmp=EventRegistry.getUserFriendlySingularName(eventTypeName);return tr.b.getOnlyElement(this.events_).userFriendlyName;}
 var numEventTypes=tr.b.dictionaryLength(eventsByBaseType);if(numEventTypes!==1){return this.length+' events of various types';}
-var tmp=EventRegistry.getUserFriendlyPluralName(eventTypeName);return this.length+' '+tmp;},filter:function(fn,opt_this){var res=new EventSet();this.forEach(function(slice){if(fn.call(this,slice))
-res.push(slice);},opt_this);return res;},toArray:function(){var ary=[];for(var i=0;i<this.length;i++)
-ary.push(this[i]);return ary;},forEach:function(fn,opt_this){for(var i=0;i<this.length;i++)
-fn.call(opt_this,this[i],i);},map:function(fn,opt_this){var res=[];for(var i=0;i<this.length;i++)
-res.push(fn.call(opt_this,this[i],i));return res;},every:function(fn,opt_this){for(var i=0;i<this.length;i++)
-if(!fn.call(opt_this,this[i],i))
-return false;return true;},some:function(fn,opt_this){for(var i=0;i<this.length;i++)
-if(fn.call(opt_this,this[i],i))
-return true;return false;},asDict:function(){var stable_ids=[];this.forEach(function(event){stable_ids.push(event.stableId);});return{'events':stable_ids};}};EventSet.IMMUTABLE_EMPTY_SET=(function(){var s=new EventSet();s.resolveBounds_();s.push=function(){throw new Error('Cannot push to an immutable event set');};s.addEventSet=function(){throw new Error('Cannot add to an immutable event set');};Object.freeze(s);return s;})();return{EventSet:EventSet,RequestSelectionChangeEvent:RequestSelectionChangeEvent};});'use strict';tr.exportTo('tr.model',function(){var ColorScheme=tr.b.ColorScheme;var SelectionState={NONE:0,SELECTED:ColorScheme.properties.brightenedOffsets[0],HIGHLIGHTED:ColorScheme.properties.brightenedOffsets[1],DIMMED:ColorScheme.properties.dimmedOffsets[0],BRIGHTENED0:ColorScheme.properties.brightenedOffsets[0],BRIGHTENED1:ColorScheme.properties.brightenedOffsets[1],BRIGHTENED2:ColorScheme.properties.brightenedOffsets[2],DIMMED0:ColorScheme.properties.dimmedOffsets[0],DIMMED1:ColorScheme.properties.dimmedOffsets[1],DIMMED2:ColorScheme.properties.dimmedOffsets[2]};var brighteningLevels=[SelectionState.NONE,SelectionState.BRIGHTENED0,SelectionState.BRIGHTENED1,SelectionState.BRIGHTENED2];SelectionState.getFromBrighteningLevel=function(level){return brighteningLevels[level];}
+var tmp=EventRegistry.getUserFriendlyPluralName(eventTypeName);return this.length+' '+tmp;},filter:function(fn,opt_this){var res=new EventSet();for(var event of this)
+if(fn.call(opt_this,event))
+res.push(event);return res;},toArray:function(){var ary=[];for(var event of this)
+ary.push(event);return ary;},forEach:function(fn,opt_this){for(var event of this)
+fn.call(opt_this,event);},map:function(fn,opt_this){var res=[];for(var event of this)
+res.push(fn.call(opt_this,event));return res;},every:function(fn,opt_this){for(var event of this)
+if(!fn.call(opt_this,event))
+return false;return true;},some:function(fn,opt_this){for(var event of this)
+if(fn.call(opt_this,event))
+return true;return false;},asDict:function(){var stable_ids=[];for(var event of this)
+stable_ids.push(event.stableId);return{'events':stable_ids};},asSet:function(){return this.events_;}};EventSet.IMMUTABLE_EMPTY_SET=(function(){var s=new EventSet();s.push=function(){throw new Error('Cannot push to an immutable event set');};s.addEventSet=function(){throw new Error('Cannot add to an immutable event set');};Object.freeze(s);return s;})();return{EventSet:EventSet,RequestSelectionChangeEvent:RequestSelectionChangeEvent};});'use strict';tr.exportTo('tr.model',function(){var ColorScheme=tr.b.ColorScheme;var SelectionState={NONE:0,SELECTED:ColorScheme.properties.brightenedOffsets[0],HIGHLIGHTED:ColorScheme.properties.brightenedOffsets[1],DIMMED:ColorScheme.properties.dimmedOffsets[0],BRIGHTENED0:ColorScheme.properties.brightenedOffsets[0],BRIGHTENED1:ColorScheme.properties.brightenedOffsets[1],BRIGHTENED2:ColorScheme.properties.brightenedOffsets[2],DIMMED0:ColorScheme.properties.dimmedOffsets[0],DIMMED1:ColorScheme.properties.dimmedOffsets[1],DIMMED2:ColorScheme.properties.dimmedOffsets[2]};var brighteningLevels=[SelectionState.NONE,SelectionState.BRIGHTENED0,SelectionState.BRIGHTENED1,SelectionState.BRIGHTENED2];SelectionState.getFromBrighteningLevel=function(level){return brighteningLevels[level];}
 var dimmingLevels=[SelectionState.DIMMED0,SelectionState.DIMMED1,SelectionState.DIMMED2];SelectionState.getFromDimmingLevel=function(level){return dimmingLevels[level];}
 return{SelectionState:SelectionState};});'use strict';tr.exportTo('tr.model',function(){var SelectionState=tr.model.SelectionState;function SelectableItem(modelItem){this.modelItem_=modelItem;}
 SelectableItem.prototype={get modelItem(){return this.modelItem_;},get selected(){return this.selectionState===SelectionState.SELECTED;},addToSelection:function(selection){var modelItem=this.modelItem_;if(!modelItem)
 return;selection.push(modelItem);},addToTrackMap:function(eventToTrackMap,track){var modelItem=this.modelItem_;if(!modelItem)
 return;eventToTrackMap.addEvent(modelItem,track);}};return{SelectableItem:SelectableItem};});'use strict';tr.exportTo('tr.model',function(){var SelectableItem=tr.model.SelectableItem;var SelectionState=tr.model.SelectionState;var IMMUTABLE_EMPTY_SET=tr.model.EventSet.IMMUTABLE_EMPTY_SET;function Event(){SelectableItem.call(this,this);this.guid_=tr.b.GUID.allocateSimple();this.selectionState=SelectionState.NONE;this.info=undefined;}
 Event.prototype={__proto__:SelectableItem.prototype,get guid(){return this.guid_;},get stableId(){return undefined;},associatedAlerts:IMMUTABLE_EMPTY_SET,addAssociatedAlert:function(alert){if(this.associatedAlerts===IMMUTABLE_EMPTY_SET)
-this.associatedAlerts=new tr.model.EventSet();this.associatedAlerts.push(alert);},addBoundsToRange:function(range){throw new Error('Not implemented');}};return{Event:Event};});'use strict';tr.exportTo('tr.v',function(){var UnitScale={};function defineUnitScale(name,prefixes){if(UnitScale[name]!==undefined)
-throw new Error('Unit scale \''+name+'\' already exists');if(prefixes.AUTO!==undefined){throw new Error('\'AUTO\' unit prefix will be added automatically '+'for unit scale \''+name+'\'');}
-prefixes.AUTO=tr.b.dictionaryValues(prefixes);prefixes.AUTO.sort((a,b)=>a.value-b.value);UnitScale[name]=prefixes;}
-defineUnitScale('Binary',{NONE:{value:Math.pow(1024,0),symbol:''},KIBI:{value:Math.pow(1024,1),symbol:'Ki'},MEBI:{value:Math.pow(1024,2),symbol:'Mi'},GIBI:{value:Math.pow(1024,3),symbol:'Gi'},TEBI:{value:Math.pow(1024,4),symbol:'Ti'}});defineUnitScale('MetricTime',{NANO:{value:1e-6,symbol:'n'},MILLI:{value:1,symbol:'m'}});return{UnitScale:UnitScale};});'use strict';tr.exportTo('tr.v',function(){var msDisplayMode={scale:1e-3,suffix:'ms',roundedLess:function(a,b){return Math.round(a*1000)<Math.round(b*1000);},formatSpec:{unit:'s',unitPrefix:tr.v.UnitScale.MetricTime.MILLI,minimumFractionDigits:3,}};var nsDisplayMode={scale:1e-9,suffix:'ns',roundedLess:function(a,b){return Math.round(a*1000000)<Math.round(b*1000000);},formatSpec:{unit:'s',unitPrefix:tr.v.UnitScale.MetricTime.NANO,maximumFractionDigits:0}};var TimeDisplayModes={ns:nsDisplayMode,ms:msDisplayMode};return{TimeDisplayModes:TimeDisplayModes};});'use strict';tr.exportTo('tr.model',function(){function TimedEvent(start){tr.model.Event.call(this);this.start=start;this.duration=0;this.cpuStart=undefined;this.cpuDuration=undefined;this.contexts=Object.freeze([]);}
+this.associatedAlerts=new tr.model.EventSet();this.associatedAlerts.push(alert);},addBoundsToRange:function(range){}};return{Event:Event};});'use strict';tr.exportTo('tr.model',function(){function TimedEvent(start){tr.model.Event.call(this);this.start=start;this.duration=0;this.cpuStart=undefined;this.cpuDuration=undefined;this.contexts=Object.freeze([]);}
 TimedEvent.prototype={__proto__:tr.model.Event.prototype,get end(){return this.start+this.duration;},addBoundsToRange:function(range){range.addValue(this.start);range.addValue(this.end);},bounds:function(that,opt_precisionUnit){if(opt_precisionUnit===undefined)
-opt_precisionUnit=tr.v.TimeDisplayModes.ms;var startsBefore=opt_precisionUnit.roundedLess(that.start,this.start);var endsAfter=opt_precisionUnit.roundedLess(this.end,that.end);return!startsBefore&&!endsAfter;}};return{TimedEvent:TimedEvent};});'use strict';tr.exportTo('tr.v',function(){var TimeDisplayModes=tr.v.TimeDisplayModes;var PLUS_MINUS_SIGN=String.fromCharCode(177);function max(a,b){if(a===undefined)
-return b;if(b===undefined)
-return a;return a.scale>b.scale?a:b;}
-var ImprovementDirection={DONT_CARE:0,BIGGER_IS_BETTER:1,SMALLER_IS_BETTER:2};function Unit(unitName,jsonName,isDelta,improvementDirection,formatSpec){this.unitName=unitName;this.jsonName=jsonName;this.isDelta=isDelta;this.improvementDirection=improvementDirection;this.formatSpec_=formatSpec;this.baseUnit=undefined;this.correspondingDeltaUnit=undefined;}
-Unit.prototype={asJSON:function(){return this.jsonName;},format:function(value,opt_context){var context=opt_context||{};var formatSpec=this.formatSpec_;if(typeof formatSpec==='function')
-formatSpec=formatSpec();function resolveProperty(propertyName){if(propertyName in context)
-return context[propertyName];else if(propertyName in formatSpec)
-return formatSpec[propertyName];else
-return undefined;}
-var signString='';if(value<0){signString='-';value=-value;}else if(this.isDelta){signString=value===0?PLUS_MINUS_SIGN:'+';}
-var unitString='';if(formatSpec.unit){if(formatSpec.unitHasPrecedingSpace!==false)
-unitString+=' ';var unitPrefix=resolveProperty('unitPrefix');if(unitPrefix!==undefined){var selectedPrefix;if(unitPrefix instanceof Array){var i=0;while(i<unitPrefix.length-1&&value/unitPrefix[i+1].value>=1){i++;}
-selectedPrefix=unitPrefix[i];}else{selectedPrefix=unitPrefix;}
-unitString+=selectedPrefix.symbol||'';value/=selectedPrefix.value;}
-unitString+=formatSpec.unit;}
-var minimumFractionDigits=resolveProperty('minimumFractionDigits');var maximumFractionDigits=resolveProperty('maximumFractionDigits');if(minimumFractionDigits>maximumFractionDigits){if('minimumFractionDigits'in context&&!('maximumFractionDigits'in context)){maximumFractionDigits=minimumFractionDigits;}else if('maximumFractionDigits'in context&&!('minimumFractionDigits'in context)){minimumFractionDigits=maximumFractionDigits;}}
-var numberString=value.toLocaleString(undefined,{minimumFractionDigits:minimumFractionDigits,maximumFractionDigits:maximumFractionDigits});return signString+numberString+unitString;}};Unit.reset=function(){Unit.currentTimeDisplayMode=TimeDisplayModes.ms;};Unit.timestampFromUs=function(us){return us/1000;};Unit.maybeTimestampFromUs=function(us){return us===undefined?undefined:us/1000;};Object.defineProperty(Unit,'currentTimeDisplayMode',{get:function(){return Unit.currentTimeDisplayMode_;},set:function(value){if(Unit.currentTimeDisplayMode_===value)
-return;Unit.currentTimeDisplayMode_=value;Unit.dispatchEvent(new tr.b.Event('display-mode-changed'));}});Unit.didPreferredTimeDisplayUnitChange=function(){var largest=undefined;var els=tr.b.findDeepElementsMatching(document.body,'tr-v-ui-preferred-display-unit');els.forEach(function(el){largest=max(largest,el.preferredTimeDisplayMode);});Unit.currentDisplayUnit=largest===undefined?TimeDisplayModes.ms:largest;};Unit.byName={};Unit.byJSONName={};Unit.fromJSON=function(object){var u=Unit.byJSONName[object];if(u){return u;}
-throw new Error('Unrecognized unit');};Unit.define=function(params){var definedUnits=[];tr.b.iterItems(ImprovementDirection,function(_,improvementDirection){var regularUnit=Unit.defineUnitVariant_(params,false,improvementDirection);var deltaUnit=Unit.defineUnitVariant_(params,true,improvementDirection);regularUnit.correspondingDeltaUnit=deltaUnit;deltaUnit.correspondingDeltaUnit=deltaUnit;definedUnits.push(regularUnit,deltaUnit);});var baseUnit=Unit.byName[params.baseUnitName];definedUnits.forEach(u=>u.baseUnit=baseUnit);};Unit.defineUnitVariant_=function(params,isDelta,improvementDirection){var nameSuffix=isDelta?'Delta':'';switch(improvementDirection){case ImprovementDirection.DONT_CARE:break;case ImprovementDirection.BIGGER_IS_BETTER:nameSuffix+='_biggerIsBetter';break;case ImprovementDirection.SMALLER_IS_BETTER:nameSuffix+='_smallerIsBetter';break;default:throw new Error('Unknown improvement direction: '+improvementDirection);}
-var unitName=params.baseUnitName+nameSuffix;var jsonName=params.baseJsonName+nameSuffix;if(Unit.byName[unitName]!==undefined)
-throw new Error('Unit \''+unitName+'\' already exists');if(Unit.byJSONName[jsonName]!==undefined)
-throw new Error('JSON unit \''+jsonName+'\' alread exists');var unit=new Unit(unitName,jsonName,isDelta,improvementDirection,params.formatSpec);Unit.byName[unitName]=unit;Unit.byJSONName[jsonName]=unit;return unit;};tr.b.EventTarget.decorate(Unit);Unit.reset();Unit.define({baseUnitName:'timeDurationInMs',baseJsonName:'ms',formatSpec:function(){return Unit.currentTimeDisplayMode_.formatSpec;}});Unit.define({baseUnitName:'timeStampInMs',baseJsonName:'tsMs',formatSpec:function(){return Unit.currentTimeDisplayMode_.formatSpec;}});Unit.define({baseUnitName:'normalizedPercentage',baseJsonName:'n%',formatSpec:{unit:'%',unitPrefix:{value:0.01},unitHasPrecedingSpace:false,minimumFractionDigits:3,maximumFractionDigits:3}});Unit.define({baseUnitName:'sizeInBytes',baseJsonName:'sizeInBytes',formatSpec:{unit:'B',unitPrefix:tr.v.UnitScale.Binary.AUTO,minimumFractionDigits:1,maximumFractionDigits:1}});Unit.define({baseUnitName:'energyInJoules',baseJsonName:'J',formatSpec:{unit:'J',minimumFractionDigits:3}});Unit.define({baseUnitName:'powerInWatts',baseJsonName:'W',formatSpec:{unit:'W',minimumFractionDigits:3}});Unit.define({baseUnitName:'unitlessNumber',baseJsonName:'unitless',formatSpec:{minimumFractionDigits:3,maximumFractionDigits:3}});Unit.define({baseUnitName:'count',baseJsonName:'count',formatSpec:{minimumFractionDigits:0,maximumFractionDigits:0}});return{ImprovementDirection:ImprovementDirection,Unit:Unit};});'use strict';tr.exportTo('tr.model',function(){function Alert(info,start,opt_associatedEvents,opt_args){tr.model.TimedEvent.call(this,start);this.info=info;this.args=opt_args||{};this.associatedEvents=new tr.model.EventSet(opt_associatedEvents);this.associatedEvents.forEach(function(event){event.addAssociatedAlert(this);},this);}
+opt_precisionUnit=tr.b.TimeDisplayModes.ms;var startsBefore=opt_precisionUnit.roundedLess(that.start,this.start);var endsAfter=opt_precisionUnit.roundedLess(this.end,that.end);return!startsBefore&&!endsAfter;}};return{TimedEvent:TimedEvent};});'use strict';tr.exportTo('tr.model',function(){function Alert(info,start,opt_associatedEvents,opt_args){tr.model.TimedEvent.call(this,start);this.info=info;this.args=opt_args||{};this.associatedEvents=new tr.model.EventSet(opt_associatedEvents);this.associatedEvents.forEach(function(event){event.addAssociatedAlert(this);},this);}
 Alert.prototype={__proto__:tr.model.TimedEvent.prototype,get title(){return this.info.title;},get colorId(){return this.info.colorId;},get userFriendlyName(){return'Alert '+this.title+' at '+
-tr.v.Unit.byName.timeStampInMs.format(this.start);}};tr.model.EventRegistry.register(Alert,{name:'alert',pluralName:'alerts'});return{Alert:Alert};});'use strict';tr.exportTo('tr.model',function(){var ColorScheme=tr.b.ColorScheme;var Statistics=tr.b.Statistics;var FRAME_PERF_CLASS={GOOD:'good',BAD:'bad',TERRIBLE:'terrible',NEUTRAL:'generic_work'};function Frame(associatedEvents,threadTimeRanges,opt_args){tr.model.Event.call(this);this.threadTimeRanges=threadTimeRanges;this.associatedEvents=new tr.model.EventSet(associatedEvents);this.args=opt_args||{};this.title='Frame';this.start=Statistics.min(threadTimeRanges,function(x){return x.start;});this.end=Statistics.max(threadTimeRanges,function(x){return x.end;});this.totalDuration=Statistics.sum(threadTimeRanges,function(x){return x.end-x.start;});this.perfClass=FRAME_PERF_CLASS.NEUTRAL;};Frame.prototype={__proto__:tr.model.Event.prototype,set perfClass(perfClass){this.colorId=ColorScheme.getColorIdForReservedName(perfClass);this.perfClass_=perfClass;},get perfClass(){return this.perfClass_;},shiftTimestampsForward:function(amount){this.start+=amount;this.end+=amount;for(var i=0;i<this.threadTimeRanges.length;i++){this.threadTimeRanges[i].start+=amount;this.threadTimeRanges[i].end+=amount;}},addBoundsToRange:function(range){range.addValue(this.start);range.addValue(this.end);}};tr.model.EventRegistry.register(Frame,{name:'frame',pluralName:'frames'});return{Frame:Frame,FRAME_PERF_CLASS:FRAME_PERF_CLASS};});'use strict';tr.exportTo('tr.b',function(){function findLowIndexInSortedArray(ary,mapFn,loVal){if(ary.length==0)
+tr.b.Unit.byName.timeStampInMs.format(this.start);}};tr.model.EventRegistry.register(Alert,{name:'alert',pluralName:'alerts'});return{Alert:Alert};});'use strict';tr.exportTo('tr.model',function(){var ColorScheme=tr.b.ColorScheme;var Statistics=tr.b.Statistics;var FRAME_PERF_CLASS={GOOD:'good',BAD:'bad',TERRIBLE:'terrible',NEUTRAL:'generic_work'};function Frame(associatedEvents,threadTimeRanges,opt_args){tr.model.Event.call(this);this.threadTimeRanges=threadTimeRanges;this.associatedEvents=new tr.model.EventSet(associatedEvents);this.args=opt_args||{};this.title='Frame';this.start=Statistics.min(threadTimeRanges,function(x){return x.start;});this.end=Statistics.max(threadTimeRanges,function(x){return x.end;});this.totalDuration=Statistics.sum(threadTimeRanges,function(x){return x.end-x.start;});this.perfClass=FRAME_PERF_CLASS.NEUTRAL;};Frame.prototype={__proto__:tr.model.Event.prototype,set perfClass(perfClass){this.colorId=ColorScheme.getColorIdForReservedName(perfClass);this.perfClass_=perfClass;},get perfClass(){return this.perfClass_;},shiftTimestampsForward:function(amount){this.start+=amount;this.end+=amount;for(var i=0;i<this.threadTimeRanges.length;i++){this.threadTimeRanges[i].start+=amount;this.threadTimeRanges[i].end+=amount;}},addBoundsToRange:function(range){range.addValue(this.start);range.addValue(this.end);}};tr.model.EventRegistry.register(Frame,{name:'frame',pluralName:'frames'});return{Frame:Frame,FRAME_PERF_CLASS:FRAME_PERF_CLASS};});'use strict';tr.exportTo('tr.b',function(){function findLowIndexInSortedArray(ary,mapFn,loVal){if(ary.length==0)
 return 1;var low=0;var high=ary.length-1;var i,comparison;var hitPos=-1;while(low<=high){i=Math.floor((low+high)/2);comparison=mapFn(ary[i])-loVal;if(comparison<0){low=i+1;continue;}else if(comparison>0){high=i-1;continue;}else{hitPos=i;high=i-1;}}
 return hitPos!=-1?hitPos:low;}
 function findHighIndexInSortedArray(ary,mapFn,loVal,hiVal){var lo=loVal||0;var hi=hiVal!==undefined?hiVal:ary.length;while(lo<hi){var mid=(lo+hi)>>1;if(mapFn(ary[mid])>=0)
@@ -4143,23 +4033,25 @@
 return null;if(loDiff<hiDiff)
 return loInt;else
 return hiInt;}
-return{findLowIndexInSortedArray:findLowIndexInSortedArray,findHighIndexInSortedArray:findHighIndexInSortedArray,findIndexInSortedIntervals:findIndexInSortedIntervals,findIndexInSortedClosedIntervals:findIndexInSortedClosedIntervals,iterateOverIntersectingIntervals:iterateOverIntersectingIntervals,getIntersectingIntervals:getIntersectingIntervals,findClosestElementInSortedArray:findClosestElementInSortedArray,findClosestIntervalInSortedIntervals:findClosestIntervalInSortedIntervals};});'use strict';tr.exportTo('tr.model.helpers',function(){var Frame=tr.model.Frame;var Statistics=tr.b.Statistics;var UI_DRAW_TYPE={NONE:'none',LEGACY:'legacy',MARSHMALLOW:'marshmallow'};var UI_THREAD_DRAW_NAMES={'performTraversals':UI_DRAW_TYPE.LEGACY,'Choreographer#doFrame':UI_DRAW_TYPE.MARSHMALLOW};var RENDER_THREAD_DRAW_NAME='DrawFrame';var RENDER_THREAD_INDEP_DRAW_NAME='doFrame';var THREAD_SYNC_NAME='syncFrameState';function getSlicesForThreadTimeRanges(threadTimeRanges){var ret=[];threadTimeRanges.forEach(function(threadTimeRange){var slices=[];threadTimeRange.thread.sliceGroup.iterSlicesInTimeRange(function(slice){slices.push(slice);},threadTimeRange.start,threadTimeRange.end);ret.push.apply(ret,slices);});return ret;}
+return{findLowIndexInSortedArray:findLowIndexInSortedArray,findHighIndexInSortedArray:findHighIndexInSortedArray,findIndexInSortedIntervals:findIndexInSortedIntervals,findIndexInSortedClosedIntervals:findIndexInSortedClosedIntervals,iterateOverIntersectingIntervals:iterateOverIntersectingIntervals,getIntersectingIntervals:getIntersectingIntervals,findClosestElementInSortedArray:findClosestElementInSortedArray,findClosestIntervalInSortedIntervals:findClosestIntervalInSortedIntervals};});'use strict';tr.exportTo('tr.model.helpers',function(){var Frame=tr.model.Frame;var Statistics=tr.b.Statistics;var UI_DRAW_TYPE={NONE:'none',LEGACY:'legacy',MARSHMALLOW:'marshmallow'};var UI_THREAD_DRAW_NAMES={'performTraversals':UI_DRAW_TYPE.LEGACY,'Choreographer#doFrame':UI_DRAW_TYPE.MARSHMALLOW};var RENDER_THREAD_DRAW_NAME='DrawFrame';var RENDER_THREAD_INDEP_DRAW_NAME='doFrame';var RENDER_THREAD_QUEUE_NAME='queueBuffer';var RENDER_THREAD_SWAP_NAME='eglSwapBuffers';var THREAD_SYNC_NAME='syncFrameState';function getSlicesForThreadTimeRanges(threadTimeRanges){var ret=[];threadTimeRanges.forEach(function(threadTimeRange){var slices=[];threadTimeRange.thread.sliceGroup.iterSlicesInTimeRange(function(slice){slices.push(slice);},threadTimeRange.start,threadTimeRange.end);ret.push.apply(ret,slices);});return ret;}
 function makeFrame(threadTimeRanges,surfaceFlinger){var args={};if(surfaceFlinger&&surfaceFlinger.hasVsyncs){var start=Statistics.min(threadTimeRanges,function(threadTimeRanges){return threadTimeRanges.start;});args['deadline']=surfaceFlinger.getFrameDeadline(start);args['frameKickoff']=surfaceFlinger.getFrameKickoff(start);}
 var events=getSlicesForThreadTimeRanges(threadTimeRanges);return new Frame(events,threadTimeRanges,args);}
-function findOverlappingDrawFrame(renderThread,time){if(!renderThread)
-return undefined;var slices=renderThread.sliceGroup.slices;for(var i=0;i<slices.length;i++){var slice=slices[i];if(slice.title==RENDER_THREAD_DRAW_NAME&&slice.start<=time&&time<=slice.end){return slice;}}
-return undefined;}
+function findOverlappingDrawFrame(renderThread,uiDrawSlice){if(!renderThread)
+return undefined;var overlappingDrawFrame;var slices=tr.b.iterateOverIntersectingIntervals(renderThread.sliceGroup.slices,function(range){return range.start},function(range){return range.end},uiDrawSlice.start,uiDrawSlice.end,function(rtDrawSlice){if(rtDrawSlice.title==RENDER_THREAD_DRAW_NAME){var rtSyncSlice=rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);if(rtSyncSlice&&rtSyncSlice.start>=uiDrawSlice.start&&rtSyncSlice.end<=uiDrawSlice.end){overlappingDrawFrame=rtDrawSlice;}}});return overlappingDrawFrame;}
 function getPreTraversalWorkRanges(uiThread){if(!uiThread)
 return[];var preFrameEvents=[];uiThread.sliceGroup.slices.forEach(function(slice){if(slice.title=='obtainView'||slice.title=='setupListItem'||slice.title=='deliverInputEvent'||slice.title=='RV Scroll')
 preFrameEvents.push(slice);});uiThread.asyncSliceGroup.slices.forEach(function(slice){if(slice.title=='deliverInputEvent')
 preFrameEvents.push(slice);});return tr.b.mergeRanges(tr.b.convertEventsToRanges(preFrameEvents),3,function(events){return{start:events[0].min,end:events[events.length-1].max};});}
 function getFrameStartTime(traversalStart,preTraversalWorkRanges){var preTraversalWorkRange=tr.b.findClosestIntervalInSortedIntervals(preTraversalWorkRanges,function(range){return range.start},function(range){return range.end},traversalStart,3);if(preTraversalWorkRange)
 return preTraversalWorkRange.start;return traversalStart;}
+function getRtFrameEndTime(rtDrawSlice){console.log(rtDrawSlice);var rtQueueSlice=rtDrawSlice.findDescendentSlice(RENDER_THREAD_QUEUE_NAME);if(rtQueueSlice){return rtQueueSlice.end;}
+var rtSwapSlice=rtDrawSlice.findDescendentSlice(RENDER_THREAD_SWAP_NAME);if(rtSwapSlice){return rtSwapSlice.end;}
+return rtDrawSlice.end;}
 function getUiThreadDrivenFrames(app){if(!app.uiThread)
 return[];var preTraversalWorkRanges=[];if(app.uiDrawType==UI_DRAW_TYPE.LEGACY)
 preTraversalWorkRanges=getPreTraversalWorkRanges(app.uiThread);var frames=[];app.uiThread.sliceGroup.slices.forEach(function(slice){if(!(slice.title in UI_THREAD_DRAW_NAMES)){return;}
-var threadTimeRanges=[];var uiThreadTimeRange={thread:app.uiThread,start:getFrameStartTime(slice.start,preTraversalWorkRanges),end:slice.end};threadTimeRanges.push(uiThreadTimeRange);var rtDrawSlice=findOverlappingDrawFrame(app.renderThread,slice.end);if(rtDrawSlice){var rtSyncSlice=rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);if(rtSyncSlice){uiThreadTimeRange.end=Math.min(uiThreadTimeRange.end,rtSyncSlice.start);}
-threadTimeRanges.push({thread:app.renderThread,start:rtDrawSlice.start,end:rtDrawSlice.end});}
+var threadTimeRanges=[];var uiThreadTimeRange={thread:app.uiThread,start:getFrameStartTime(slice.start,preTraversalWorkRanges),end:slice.end};threadTimeRanges.push(uiThreadTimeRange);var rtDrawSlice=findOverlappingDrawFrame(app.renderThread,slice);if(rtDrawSlice){var rtSyncSlice=rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);if(rtSyncSlice){uiThreadTimeRange.end=Math.min(uiThreadTimeRange.end,rtSyncSlice.start);}
+threadTimeRanges.push({thread:app.renderThread,start:rtDrawSlice.start,end:getRtFrameEndTime(rtDrawSlice)});}
 frames.push(makeFrame(threadTimeRanges,app.surfaceFlinger));});return frames;}
 function getRenderThreadDrivenFrames(app){if(!app.renderThread)
 return[];var frames=[];app.renderThread.sliceGroup.getSlicesOfName(RENDER_THREAD_INDEP_DRAW_NAME).forEach(function(slice){var threadTimeRanges=[{thread:app.renderThread,start:slice.start,end:slice.end}];frames.push(makeFrame(threadTimeRanges,app.surfaceFlinger));});return frames;}
@@ -4174,7 +4066,8 @@
 return[];var slices=[];for(var slice of uiThread.asyncSliceGroup.getDescendantEvents()){if(/^animator\:/.test(slice.title))
 slices.push(slice);}
 return slices;}
-function AndroidApp(process,uiThread,renderThread,surfaceFlinger,uiDrawType){this.process=process;this.uiThread=uiThread;this.renderThread=renderThread;this.surfaceFlinger=surfaceFlinger;this.uiDrawType=uiDrawType;this.frames_=undefined;this.inputs_=undefined;};AndroidApp.createForProcessIfPossible=function(process,surfaceFlinger){var uiThread=process.getThread(process.pid);var uiDrawType=getUiDrawType(uiThread);if(uiDrawType==UI_DRAW_TYPE.NONE){uiThread=undefined;}
+function AndroidApp(process,uiThread,renderThread,surfaceFlinger,uiDrawType){this.process=process;this.uiThread=uiThread;this.renderThread=renderThread;this.surfaceFlinger=surfaceFlinger;this.uiDrawType=uiDrawType;this.frames_=undefined;this.inputs_=undefined;}
+AndroidApp.createForProcessIfPossible=function(process,surfaceFlinger){var uiThread=process.getThread(process.pid);var uiDrawType=getUiDrawType(uiThread);if(uiDrawType==UI_DRAW_TYPE.NONE){uiThread=undefined;}
 var renderThreads=process.findAllThreadsNamed('RenderThread');var renderThread=renderThreads.length==1?renderThreads[0]:undefined;if(uiThread||renderThread){return new AndroidApp(process,uiThread,renderThread,surfaceFlinger,uiDrawType);}};AndroidApp.prototype={getFrames:function(){if(!this.frames_){var uiFrames=getUiThreadDrivenFrames(this);var rtFrames=getRenderThreadDrivenFrames(this);this.frames_=uiFrames.concat(rtFrames);this.frames_.sort(function(a,b){a.end-b.end});}
 return this.frames_;},getInputSamples:function(){if(!this.inputs_){this.inputs_=getInputSamples(this.process);}
 return this.inputs_;},getAnimationAsyncSlices:function(){if(!this.animations_){this.animations_=getAnimationAsyncSlices(this.uiThread);}
@@ -4200,7 +4093,7 @@
 this.cpuDuration=opt_cpuDuration;if(opt_argsStripped!==undefined)
 this.argsStripped=true;}
 Slice.prototype={__proto__:tr.model.TimedEvent.prototype,get analysisTypeName(){return this.title;},get userFriendlyName(){return'Slice '+this.title+' at '+
-tr.v.Unit.byName.timeStampInMs.format(this.start);},get stableId(){var parentSliceGroup=this.parentContainer.sliceGroup;return parentSliceGroup.stableId+'.'+
+tr.b.Unit.byName.timeStampInMs.format(this.start);},get stableId(){var parentSliceGroup=this.parentContainer.sliceGroup;return parentSliceGroup.stableId+'.'+
 parentSliceGroup.slices.indexOf(this);},findDescendentSlice:function(targetTitle){if(!this.subSlices)
 return undefined;for(var i=0;i<this.subSlices.length;i++){if(this.subSlices[i].title==targetTitle)
 return this.subSlices[i];var slice=this.subSlices[i].findDescendentSlice(targetTitle);if(slice)return slice;}
@@ -4234,43 +4127,45 @@
 cess|=CompoundEventSelectionState.ALL_ASSOCIATED_EVENTS_SELECTED;else
 cess|=CompoundEventSelectionState.SOME_ASSOCIATED_EVENTS_SELECTED;return cess;},get associatedSamples(){var samples=new tr.model.EventSet();this.associatedEvents.forEach(function(event){if(event instanceof tr.model.ThreadSlice)
 samples.addEventSet(event.overlappingSamples);});return samples;},get userFriendlyName(){return this.title+' User Expectation at '+
-tr.v.Unit.byName.timeStampInMs.format(this.start);},get stableId(){return('UserExpectation.'+this.guid);},get typeInfo(){if(!this.typeInfo_){this.typeInfo_=UserExpectation.subTypes.findTypeInfo(this.constructor);}
+tr.b.Unit.byName.timeStampInMs.format(this.start);},get stableId(){return('UserExpectation.'+this.guid);},get typeInfo(){if(!this.typeInfo_){this.typeInfo_=UserExpectation.subTypes.findTypeInfo(this.constructor);}
 if(!this.typeInfo_)
 throw new Error('Unregistered UserExpectation');return this.typeInfo_;},get colorId(){return this.typeInfo.metadata.colorId;},get stageTitle(){return this.typeInfo.metadata.stageTitle;},get initiatorTitle(){return this.initiatorTitle_;},get title(){if(!this.initiatorTitle)
 return this.stageTitle;return this.initiatorTitle+' '+this.stageTitle;},get totalCpuMs(){var cpuMs=0;this.associatedEvents.forEach(function(event){if(event.cpuSelfTime)
 cpuMs+=event.cpuSelfTime;});return cpuMs;}};var subTypes={};var options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(subTypes,options);subTypes.addEventListener('will-register',function(e){var metadata=e.typeInfo.metadata;if(metadata.stageTitle===undefined){throw new Error('Registered UserExpectations must provide '+'stageTitle');}
 if(metadata.colorId===undefined){throw new Error('Registered UserExpectations must provide '+'colorId');}});tr.model.EventRegistry.register(UserExpectation,{name:'userExpectation',pluralName:'userExpectations',subTypes:subTypes});return{UserExpectation:UserExpectation};});'use strict';tr.exportTo('tr.model.um',function(){function ResponseExpectation(parentModel,initiatorTitle,start,duration,opt_isAnimationBegin){tr.model.um.UserExpectation.call(this,parentModel,initiatorTitle,start,duration);this.isAnimationBegin=opt_isAnimationBegin||false;}
-ResponseExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:ResponseExpectation};tr.model.um.UserExpectation.subTypes.register(ResponseExpectation,{stageTitle:'Response',colorId:tr.b.ColorScheme.getColorIdForReservedName('rail_response')});return{ResponseExpectation:ResponseExpectation};});'use strict';tr.exportTo('tr.b',function(){function RunningStatistics(){this.mean_=0;this.count_=0;this.max_=-Infinity;this.min_=Infinity;this.sum_=0;this.variance_=0;}
-RunningStatistics.prototype={get count(){return this.count_;},get mean(){if(this.count_==0)
-return undefined;return this.mean_;},get max(){return this.max_;},get min(){return this.min_;},get sum(){return this.sum_;},get variance(){if(this.count_==0)
-return undefined;if(this.count_==1)
-return 0;return this.variance_/(this.count_-1);},get stddev(){if(this.count_==0)
-return undefined;return Math.sqrt(this.variance);},add:function(x){this.count_++;this.max_=Math.max(this.max_,x);this.min_=Math.min(this.min_,x);this.sum_+=x;if(this.count_===1){this.mean_=x;this.variance_=0;}else{var oldMean=this.mean_;var oldVariance=this.variance_;this.mean_=oldMean+(x-oldMean)/this.count_;this.variance_=oldVariance+(x-oldMean)*(x-this.mean_);}},merge:function(other){var result=new RunningStatistics();result.count_=this.count_+other.count_;result.sum_=this.sum_+other.sum_;result.min_=Math.min(this.min_,other.min_);result.max_=Math.max(this.max_,other.max_);if(other.count_===0&&this.count_===0){result.mean_=0;result.variance_=0;}else{var mx=this.mean_,my=other.mean_;var vx=this.variance_,vy=other.variance_;var n=this.count_,m=other.count_;result.mean_=(n*mx+m*my)/(n+m);result.variance_=vx+vy+n*m*(mx-my)*(mx-my)/(n+m);}
-return result;},asDict:function(){return{mean:this.mean_,count:this.count_,max:this.max_,min:this.min_,sum:this.sum_,variance:this.variance_};}};RunningStatistics.fromDict=function(d){var result=new RunningStatistics();result.mean_=d.mean;result.count_=d.count;result.max_=d.max;result.min_=d.min;result.sum_=d.sum;result.variance_=d.variance;return result;};return{RunningStatistics:RunningStatistics};});'use strict';tr.exportTo('tr.v.d',function(){function Diagnostic(){}
-Diagnostic.prototype={asDict:function(){var result={type:this.constructor.name};this.asDictInto_(result);return result;},asDictInto_:function(d){throw new Error('Abstract virtual method');}};var options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Diagnostic;tr.b.decorateExtensionRegistry(Diagnostic,options);Diagnostic.addEventListener('will-register',function(e){var constructor=e.typeInfo.constructor;if(!(constructor.fromDict instanceof Function)||(constructor.fromDict.length!==1)){throw new Error('Diagnostics must define fromDict(d)');}
-constructor.prototype.constructor=constructor;});Diagnostic.fromDict=function(d){var typeInfo=Diagnostic.findTypeInfoWithName(d.type);if(!typeInfo)
-throw new Error('Unrecognized diagnostic type: '+d.type);return typeInfo.constructor.fromDict(d);};return{Diagnostic:Diagnostic};});'use strict';tr.exportTo('tr.v.d',function(){function ValueRef(guid){this.guid=guid;}
-function RelatedValueSet(opt_values){this.valuesByGuid_={};if(opt_values)
-opt_values.forEach(this.add,this);}
-RelatedValueSet.prototype={__proto__:tr.v.d.Diagnostic.prototype,add:function(value){if(!(value instanceof tr.v.Value)&&!(value instanceof ValueRef))
-throw new Error('Must be instanceof Value or ValueRef: '+value);if(this.valuesByGuid_[value.guid])
-throw new Error('Tried to add same value twice');this.valuesByGuid_[value.guid]=value;},get values(){return tr.b.dictionaryValues(this.valuesByGuid_);},resolve:function(valueSet,opt_required){tr.b.iterItems(this.valuesByGuid_,function(guid,value){if(!(value instanceof ValueRef))
-return;value=valueSet.lookup(guid);if(value instanceof tr.v.Value)
-this.valuesByGuid_[guid]=value;else if(opt_required)
-throw new Error('Unable to find Value '+guid);},this);},asDictInto_:function(d){d.guids=tr.b.dictionaryKeys(this.valuesByGuid_);}};RelatedValueSet.fromDict=function(d){return new RelatedValueSet(d.guids.map(guid=>new ValueRef(guid)));};tr.v.d.Diagnostic.register(RelatedValueSet,{elementName:'tr-v-ui-related-value-set-span'});return{RelatedValueSet:RelatedValueSet,ValueRef:ValueRef};});'use strict';tr.exportTo('tr.v.d',function(){function RelatedValueMap(){this.valuesByName_={};}
-RelatedValueMap.prototype={__proto__:tr.v.d.Diagnostic.prototype,set:function(name,value){if(!(value instanceof tr.v.Value)&&!(value instanceof tr.v.d.ValueRef))
-throw new Error('Must be instanceof Value or ValueRef: '+value);this.valuesByName_[name]=value;},add:function(value){this.set(value.name,value);},iterItems:function(callback,opt_this){tr.b.iterItems(this.valuesByName_,callback,opt_this||this);},get values(){return tr.b.dictionaryValues(this.valuesByName_);},get:function(name){return this.valuesByName_[name];},resolve:function(valueSet,opt_required){this.iterItems(function(name,value){if(!(value instanceof tr.v.d.ValueRef))
-return;value=valueSet.lookup(value.guid);if(value instanceof tr.v.Value)
-this.valuesByName_[name]=value;else if(opt_required)
-throw new Error('Unable to find Value '+guid);},this);},asDictInto_:function(d){d.values=tr.b.mapItems(this.valuesByName_,(name,value)=>value.guid);}};RelatedValueMap.fromDict=function(d){var map=new RelatedValueMap();tr.b.iterItems(d.values,function(name,guid){map.set(name,new tr.v.d.ValueRef(guid));});return map;};tr.v.d.Diagnostic.register(RelatedValueMap,{elementName:'tr-v-ui-related-value-map-span'});return{RelatedValueMap:RelatedValueMap};});'use strict';tr.exportTo('tr.v.d',function(){function Composition(){tr.v.d.RelatedValueMap.call(this);}
-Composition.buildFromEvents=function(values,namePrefix,events,numericBuilder,categoryForEvent,opt_sampleForEvent,opt_this){var sampleForEvent=opt_sampleForEvent||((event)=>event.cpuSelfTime);var composition=new Composition();for(var event of events){var sample=sampleForEvent.call(opt_this,event);if(sample===undefined)
-continue;var eventCategory=categoryForEvent.call(opt_this,event);var value=composition.get(eventCategory);if(value===undefined){value=new tr.v.NumericValue(namePrefix+eventCategory,numericBuilder.build());values.addValue(value);composition.set(eventCategory,value);}
-value.numeric.add(sample,new tr.v.d.DiagnosticMap({relatedEvents:new tr.v.d.RelatedEventSet([event])}));}
-return composition;};Composition.prototype={__proto__:tr.v.d.RelatedValueMap.prototype,set:function(name,value){if(!(value instanceof tr.v.d.ValueRef)){if(!(value instanceof tr.v.NumericValue))
-throw new Error('Composition can only contain NumericValues');if(value.name.indexOf(name)!==(value.name.length-name.length))
-throw new Error('Composition name must be a suffix of value.name');var existingValues=this.values;if((existingValues.length>0)&&(value.numeric.unit!==existingValues[0].numeric.unit)){throw new Error('Units mismatch',existingValues[0].numeric.unit,value.numeric.unit);}}
-tr.v.d.RelatedValueMap.prototype.set.call(this,name,value);}};Composition.fromDict=function(d){var composition=new Composition();tr.b.iterItems(d.values,function(name,guid){composition.set(name,new tr.v.d.ValueRef(guid));});return composition;};tr.v.d.Diagnostic.register(Composition,{elementName:'tr-v-ui-composition-span'});return{Composition:Composition};});'use strict';tr.exportTo('tr.v.d',function(){function Generic(value){this.value=value;}
-Generic.prototype={__proto__:tr.v.d.Diagnostic.prototype,asDictInto_:function(d){d.value=this.value;}};Generic.fromDict=function(d){return new Generic(d.value);};tr.v.d.Diagnostic.register(Generic,{elementName:'tr-v-ui-generic-diagnostic-span'});return{Generic:Generic};});'use strict';tr.exportTo('tr.b',function(){function addSingletonGetter(ctor){ctor.getInstance=function(){return ctor.instance_||(ctor.instance_=new ctor());};}
+ResponseExpectation.prototype={__proto__:tr.model.um.UserExpectation.prototype,constructor:ResponseExpectation};tr.model.um.UserExpectation.subTypes.register(ResponseExpectation,{stageTitle:'Response',colorId:tr.b.ColorScheme.getColorIdForReservedName('rail_response')});return{ResponseExpectation:ResponseExpectation};});'use strict';tr.exportTo('tr.v.d',function(){class Diagnostic{asDict(){var result={type:this.constructor.name};this.asDictInto_(result);return result;}
+asDictInto_(d){throw new Error('Abstract virtual method');}
+static fromDict(d){var typeInfo=Diagnostic.findTypeInfoWithName(d.type);if(!typeInfo)
+throw new Error('Unrecognized diagnostic type: '+d.type);return typeInfo.constructor.fromDict(d);}}
+var options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);options.defaultMetadata={};options.mandatoryBaseClass=Diagnostic;tr.b.decorateExtensionRegistry(Diagnostic,options);Diagnostic.addEventListener('will-register',function(e){var constructor=e.typeInfo.constructor;if(!(constructor.fromDict instanceof Function)||(constructor.fromDict===Diagnostic.fromDict)||(constructor.fromDict.length!==1)){throw new Error('Diagnostics must define fromDict(d)');}});return{Diagnostic:Diagnostic};});'use strict';tr.exportTo('tr.v.d',function(){function ValueRef(guid){this.guid=guid;}
+return{ValueRef:ValueRef};});'use strict';tr.exportTo('tr.v.d',function(){class RelatedValueMap extends tr.v.d.Diagnostic{constructor(){super();this.valuesByName_=new Map();}
+get(name){return this.valuesByName_.get(name);}
+set(name,value){if(!(value instanceof tr.v.Histogram)&&!(value instanceof tr.v.d.ValueRef))
+throw new Error('Must be instanceof Histogram or ValueRef: '+value);this.valuesByName_.set(name,value);}
+add(value){this.set(value.name,value);}
+get length(){return this.valuesByName_.size;}*[Symbol.iterator](){for(var pair of this.valuesByName_)
+yield pair;}
+resolve(valueSet,opt_required){for(var[name,value]of this){if(!(value instanceof tr.v.d.ValueRef))
+continue;var guid=value.guid;value=valueSet.lookup(guid);if(value instanceof tr.v.Histogram)
+this.valuesByName_.set(name,value);else if(opt_required)
+throw new Error('Unable to find Histogram '+guid);}}
+asDictInto_(d){d.values={};for(var[name,value]of this)
+d.values[name]=value.guid;}
+static fromDict(d){var map=new RelatedValueMap();tr.b.iterItems(d.values,function(name,guid){map.set(name,new tr.v.d.ValueRef(guid));});return map;}}
+tr.v.d.Diagnostic.register(RelatedValueMap,{elementName:'tr-v-ui-related-value-map-span'});return{RelatedValueMap:RelatedValueMap};});'use strict';tr.exportTo('tr.v.d',function(){class Breakdown extends tr.v.d.Diagnostic{constructor(){super();this.values_=new Map();this.colorScheme=undefined;}
+set(name,value){if(typeof name!=='string'||typeof value!=='number'){throw new Error('Breakdown maps from strings to numbers');}
+this.values_.set(name,value);}
+get(name){return this.values_.get(name)||0;}*[Symbol.iterator](){for(var pair of this.values_)
+yield pair;}
+asDictInto_(d){d.values={};for(var[name,value]of this)
+d.values[name]=value;if(this.colorScheme)
+d.colorScheme=this.colorScheme;}
+static fromDict(d){var breakdown=new Breakdown();tr.b.iterItems(d.values,(name,value)=>breakdown.set(name,value));if(d.colorScheme)
+breakdown.colorScheme=d.colorScheme;return breakdown;}}
+tr.v.d.Diagnostic.register(Breakdown,{elementName:'tr-v-ui-breakdown-span'});return{Breakdown:Breakdown};});'use strict';tr.exportTo('tr.v.d',function(){class Generic extends tr.v.d.Diagnostic{constructor(value){super();this.value=value;}
+asDictInto_(d){d.value=this.value;}
+static fromDict(d){return new Generic(d.value);}}
+tr.v.d.Diagnostic.register(Generic,{elementName:'tr-v-ui-generic-diagnostic-span'});return{Generic:Generic};});'use strict';tr.exportTo('tr.b',function(){function addSingletonGetter(ctor){ctor.getInstance=function(){return ctor.instance_||(ctor.instance_=new ctor());};}
 function deepCopy(value){if(!(value instanceof Object)){if(value===undefined||value===null)
 return value;if(typeof value=='string')
 return value.substring();if(typeof value=='boolean')
@@ -4290,106 +4185,127 @@
 function getUsingPath(path,from_dict){var parts=path.split('.');var cur=from_dict;for(var part;parts.length&&(part=parts.shift());){if(!parts.length){return cur[part];}else if(part in cur){cur=cur[part];}else{return undefined;}}
 return undefined;}
 function formatDate(date){return date.toISOString().replace('T',' ').slice(0,19);}
-return{addSingletonGetter:addSingletonGetter,deepCopy:deepCopy,normalizeException:normalizeException,stackTrace:stackTrace,stackTraceAsString:stackTraceAsString,formatDate:formatDate,getUsingPath:getUsingPath};});'use strict';tr.exportTo('tr.v.d',function(){function IterationInfo(info){this.benchmarkName_=info.benchmarkName;this.benchmarkStart_=new Date(info.benchmarkStartMs);this.label_=info.label;this.storyDisplayName_=info.storyDisplayName;this.storyGroupingKeys_=info.storyGroupingKeys;this.storyRepeatCounter_=info.storyRepeatCounter;this.storyUrl_=info.storyUrl;this.storysetRepeatCounter_=info.storysetRepeatCounter;}
-IterationInfo.NAME='iteration';IterationInfo.getFromValue=function(value){return value.diagnostics.get(IterationInfo.NAME);};IterationInfo.prototype={__proto__:tr.v.d.Diagnostic.prototype,addToValue:function(value){value.diagnostics.add(IterationInfo.NAME,this);},asDictInto_:function(d){d.benchmarkName=this.benchmarkName;d.benchmarkStartMs=this.benchmarkStart.getTime();d.label=this.label;d.storyDisplayName=this.storyDisplayName;d.storyGroupingKeys=this.storyGroupingKeys;d.storyRepeatCounter=this.storyRepeatCounter;d.storyUrl=this.storyUrl;d.storysetRepeatCounter=this.storysetRepeatCounter;},get displayLabel(){if(this.label)
-return this.label;return this.benchmarkName+' '+this.benchmarkStartString;},get benchmarkName(){return this.benchmarkName_;},get label(){return this.label_;},get storyGroupingKeys(){return this.storyGroupingKeys_;},get storyDisplayName(){return this.storyDisplayName_;},get storyUrl(){return this.storyUrl_;},get storyRepeatCounter(){return this.storyRepeatCounter_;},get storyRepeatCounterLabel(){return'story repeat '+this.storyRepeatCounter;},get storysetRepeatCounter(){return this.storysetRepeatCounter_;},get storysetRepeatCounterLabel(){return'storyset repeat '+this.storysetRepeatCounter;},get benchmarkStart(){return this.benchmarkStart_;},get benchmarkStartString(){return tr.b.formatDate(this.benchmarkStart);}};IterationInfo.fromDict=function(d){return new IterationInfo(d);};tr.v.d.Diagnostic.register(IterationInfo,{elementName:'tr-v-ui-iteration-info-span'});return{IterationInfo:IterationInfo};});'use strict';tr.exportTo('tr.v.d',function(){function EventRef(event){this.stableId=event.stableId;this.title=event.title;this.start=event.start;this.duration=event.duration;this.end=this.start+this.duration;this.guid=tr.b.GUID.allocateSimple();}
-function RelatedEventSet(opt_events){this.eventsByStableId_={};if(opt_events){if(opt_events instanceof tr.model.EventSet||opt_events instanceof Array)
-opt_events.forEach(this.push.bind(this));else
-this.push(opt_events);}}
-RelatedEventSet.prototype={__proto__:tr.v.d.Diagnostic.prototype,push:function(event){this.eventsByStableId_[event.stableId]=event;},get events(){return new tr.model.EventSet(tr.b.dictionaryValues(this.eventsByStableId_));},resolve:function(model,opt_required){tr.b.iterItems(this.eventsByStableId_,function(stableId,event){if(!(event instanceof EventRef))
-return;event=model.getEventByStableId(stableId);if(event instanceof tr.model.Event)
-this.eventsByStableId_[stableId]=event;else if(opt_required)
-throw new Error('Unable to find Event '+ref.stableId);},this);},asDictInto_:function(d){d.events=this.events.map(function eventAsDict(event){return{stableId:event.stableId,title:event.title,start:event.start,duration:event.duration};});}};RelatedEventSet.fromDict=function(d){return new RelatedEventSet(d.events.map(event=>new EventRef(event)));};tr.v.d.Diagnostic.register(RelatedEventSet,{elementName:'tr-v-ui-related-event-set-span'});return{RelatedEventSet:RelatedEventSet};});'use strict';tr.exportTo('tr.v.d',function(){function DiagnosticMap(opt_diagnosticsByName){if(opt_diagnosticsByName!==undefined)
-return DiagnosticMap.fromObject(opt_diagnosticsByName);this.diagnosticsByName_={};}
-DiagnosticMap.prototype={add:function(name,diagnostic){if(!(diagnostic instanceof tr.v.d.Diagnostic))
-throw new Error('Must be instanceof Diagnostic: '+diagnostic);if(typeof(name)!=='string')
-throw new Error('name must be string, not '+name);if(this.diagnosticsByName_[name])
-throw new Error('Attempt to add duplicate diagnostic '+name);this.diagnosticsByName_[name]=diagnostic;},addDicts:function(dict){tr.b.iterItems(dict,function(name,diagnosticDict){this.add(name,tr.v.d.Diagnostic.fromDict(diagnosticDict));},this);},get:function(name){return this.diagnosticsByName_[name];},forEach:function(callback,opt_this){tr.b.iterItems(this.diagnosticsByName_,callback,opt_this||this);},asDict:function(){var dict={};this.forEach(function(name,diagnostic){dict[name]=diagnostic.asDict();});return dict;}};DiagnosticMap.fromDict=function(d){var diagnostics=new DiagnosticMap();diagnostics.addDicts(d);return diagnostics;};DiagnosticMap.fromObject=function(obj){var diagnostics=new DiagnosticMap();tr.b.iterItems(obj,function(name,diagnostic){diagnostics.add(name,diagnostic);});return diagnostics;};return{DiagnosticMap:DiagnosticMap};});'use strict';tr.exportTo('tr.v',function(){var Range=tr.b.Range;var MAX_DIAGNOSTIC_MAPS=16;var DEFAULT_ALPHA=0.05;var Significance={DONT_CARE:-1,INSIGNIFICANT:0,SIGNIFICANT:1};function NumericBase(unit){if(!(unit instanceof tr.v.Unit))
+return{addSingletonGetter:addSingletonGetter,deepCopy:deepCopy,normalizeException:normalizeException,stackTrace:stackTrace,stackTraceAsString:stackTraceAsString,formatDate:formatDate,getUsingPath:getUsingPath};});'use strict';tr.exportTo('tr.v.d',function(){class IterationInfo extends tr.v.d.Diagnostic{constructor(opt_info){super();this.benchmarkName_='';this.benchmarkStart_=undefined;this.label_='';this.osVersion_='';this.productVersion_='';this.storyDisplayName_='';this.storyGroupingKeys_={};this.storyRepeatCounter_=0;this.storyUrl_='';this.storysetRepeatCounter_=0;if(opt_info)
+this.addInfo(opt_info);}
+addInfo(info){if(info.benchmarkName)
+this.benchmarkName_=info.benchmarkName;if(info.benchmarkStartMs)
+this.benchmarkStart_=new Date(info.benchmarkStartMs);if(info.label)
+this.label_=info.label;if(info.storyDisplayName)
+this.storyDisplayName_=info.storyDisplayName;if(info.storyGroupingKeys)
+this.storyGroupingKeys_=info.storyGroupingKeys;if(info.storyRepeatCounter)
+this.storyRepeatCounter_=info.storyRepeatCounter;if(info.storyUrl)
+this.storyUrl_=info.storyUrl;if(info.storysetRepeatCounter)
+this.storysetRepeatCounter_=info.storysetRepeatCounter;if(info['os-version'])
+this.osVersion_=info['os-version'];if(info['product-version'])
+this.productVersion_=info['product-version'];}
+addToValue(value){value.diagnostics.set(IterationInfo.NAME,this);}
+static getFromValue(value){return value.diagnostics.get(IterationInfo.NAME);}
+asDictInto_(d){d.benchmarkName=this.benchmarkName;if(this.benchmarkStart)
+d.benchmarkStartMs=this.benchmarkStart.getTime();d.label=this.label;d.storyDisplayName=this.storyDisplayName;d.storyGroupingKeys=this.storyGroupingKeys;d.storyRepeatCounter=this.storyRepeatCounter;d.storyUrl=this.storyUrl;d.storysetRepeatCounter=this.storysetRepeatCounter;d['os-version']=this.osVersion;d['product-version']=this.productVersion;}
+static fromDict(d){var info=new IterationInfo();info.addInfo(d);return info;}
+get displayLabel(){if(this.label)
+return this.label;return this.benchmarkName+' '+this.benchmarkStartString;}
+get osVersion(){return this.osVersion_;}
+get productVersion(){return this.productVersion_;}
+get benchmarkName(){return this.benchmarkName_;}
+get label(){return this.label_;}
+get storyGroupingKeys(){return this.storyGroupingKeys_;}
+get storyDisplayName(){return this.storyDisplayName_;}
+get storyUrl(){return this.storyUrl_;}
+get storyRepeatCounter(){return this.storyRepeatCounter_;}
+get storyRepeatCounterLabel(){return'story repeat '+this.storyRepeatCounter;}
+get storysetRepeatCounter(){return this.storysetRepeatCounter_;}
+get storysetRepeatCounterLabel(){return'storyset repeat '+this.storysetRepeatCounter;}
+get benchmarkStart(){return this.benchmarkStart_;}
+get benchmarkStartString(){if(this.benchmarkStart_===undefined)
+return'';return tr.b.formatDate(this.benchmarkStart);}
+static getField(value,fieldName,defaultValue){var iteration=tr.v.d.IterationInfo.getFromValue(value);if(!(iteration instanceof tr.v.d.IterationInfo)||!iteration[fieldName]){return defaultValue;}
+return iteration[fieldName];}
+static getStoryGroupingKeyLabel(value,storyGroupingKey){var iteration=tr.v.d.IterationInfo.getFromValue(value);if(!(iteration instanceof tr.v.d.IterationInfo))
+return storyGroupingKey+': undefined';return storyGroupingKey+': '+
+iteration.storyGroupingKeys[storyGroupingKey];}}
+IterationInfo.NAME='iteration';tr.v.d.Diagnostic.register(IterationInfo,{elementName:'tr-v-ui-iteration-info-span'});return{IterationInfo:IterationInfo};});'use strict';tr.exportTo('tr.v.d',function(){class EventRef{constructor(event){this.stableId=event.stableId;this.title=event.title;this.start=event.start;this.duration=event.duration;this.end=this.start+this.duration;this.guid=tr.b.GUID.allocateSimple();}}
+return{EventRef:EventRef};});'use strict';tr.exportTo('tr.v.d',function(){class RelatedEventSet extends tr.v.d.Diagnostic{constructor(opt_events){super();this.eventsByStableId_=new Map();if(opt_events){if(opt_events instanceof tr.model.EventSet||opt_events instanceof Array){for(var event of opt_events)
+this.add(event);}else{this.add(opt_events);}}}
+add(event){this.eventsByStableId_.set(event.stableId,event);}
+has(event){return this.eventsByStableId_.has(event.stableId);}
+get length(){return this.eventsByStableId_.size;}*[Symbol.iterator](){for(var[stableId,event]of this.eventsByStableId_)
+yield event;}
+resolve(model,opt_required){for(var[stableId,event]of this.eventsByStableId_){if(!(event instanceof tr.v.d.EventRef))
+continue;event=model.getEventByStableId(stableId);if(event instanceof tr.model.Event)
+this.eventsByStableId_.set(stableId,event);else if(opt_required)
+throw new Error('Unable to find Event '+stableId);}}
+asDictInto_(d){d.events=[];for(var event of this){d.events.push({stableId:event.stableId,title:event.title,start:event.start,duration:event.duration});}}
+static fromDict(d){return new RelatedEventSet(d.events.map(event=>new tr.v.d.EventRef(event)));}}
+tr.v.d.Diagnostic.register(RelatedEventSet,{elementName:'tr-v-ui-related-event-set-span'});return{RelatedEventSet:RelatedEventSet};});'use strict';tr.exportTo('tr.v.d',function(){var COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER='ChromeUserFriendlyCategory';class RelatedHistogramBreakdown extends tr.v.d.RelatedValueMap{constructor(){super();this.colorScheme=undefined;}
+set(name,value){if(!(value instanceof tr.v.d.ValueRef)){if(!(value instanceof tr.v.Histogram)){throw new Error('RelatedHistogramBreakdown can only contain Histograms');}
+if(value.name.indexOf(name)!==(value.name.length-name.length)){throw new Error('RelatedHistogramBreakdown name must be a suffix of value.name');}
+if((this.length>0)&&(value.unit!==tr.b.getFirstElement(this)[1].unit)){throw new Error('Units mismatch',tr.b.getFirstElement(this)[1].unit,value.unit);}}
+tr.v.d.RelatedValueMap.prototype.set.call(this,name,value);}
+asDictInto_(d){tr.v.d.RelatedValueMap.prototype.asDictInto_.call(this,d);if(this.colorScheme)
+d.colorScheme=this.colorScheme;}
+static fromDict(d){var diagnostic=new RelatedHistogramBreakdown();tr.b.iterItems(d.values,function(name,guid){diagnostic.set(name,new tr.v.d.ValueRef(guid));});if(d.colorScheme)
+diagnostic.colorScheme=d.colorScheme;return diagnostic;}
+static buildFromEvents(values,namePrefix,events,categoryForEvent,unit,opt_sampleForEvent,opt_binBoundaries,opt_this){var sampleForEvent=opt_sampleForEvent||((event)=>event.cpuSelfTime);var diagnostic=new RelatedHistogramBreakdown();for(var event of events){var sample=sampleForEvent.call(opt_this,event);if(sample===undefined)
+continue;var eventCategory=categoryForEvent.call(opt_this,event);var value=diagnostic.get(eventCategory);if(value===undefined){value=new tr.v.Histogram(namePrefix+eventCategory,unit,opt_binBoundaries);values.addHistogram(value);diagnostic.set(eventCategory,value);}
+value.addSample(sample,{relatedEvents:new tr.v.d.RelatedEventSet([event])});}
+return diagnostic;}}
+tr.v.d.Diagnostic.register(RelatedHistogramBreakdown,{elementName:'tr-v-ui-breakdown-span'});return{COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER:COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER,RelatedHistogramBreakdown:RelatedHistogramBreakdown};});'use strict';tr.exportTo('tr.v.d',function(){class RelatedValueSet extends tr.v.d.Diagnostic{constructor(opt_values){super();this.valuesByGuid_=new Map();if(opt_values)
+for(var value of opt_values)
+this.add(value);}
+add(value){if(!(value instanceof tr.v.Histogram)&&!(value instanceof tr.v.d.ValueRef))
+throw new Error('Must be instanceof Histogram or ValueRef: '+value);if(this.valuesByGuid_.get(value.guid))
+throw new Error('Tried to add same value twice');this.valuesByGuid_.set(value.guid,value);}
+has(value){return this.valuesByGuid_.has(value.guid);}
+get length(){return this.valuesByGuid_.size;}*[Symbol.iterator](){for(var[guid,value]of this.valuesByGuid_)
+yield value;}
+resolve(valueSet,opt_required){for(var[guid,value]of this.valuesByGuid_){if(!(value instanceof tr.v.d.ValueRef))
+continue;value=valueSet.lookup(guid);if(value instanceof tr.v.Histogram)
+this.valuesByGuid_.set(guid,value);else if(opt_required)
+throw new Error('Unable to find Histogram '+guid);}}
+asDictInto_(d){d.guids=[];for(var value of this)
+d.guids.push(value.guid);}
+static fromDict(d){return new RelatedValueSet(d.guids.map(guid=>new tr.v.d.ValueRef(guid)));}}
+tr.v.d.Diagnostic.register(RelatedValueSet,{elementName:'tr-v-ui-related-value-set-span'});return{RelatedValueSet:RelatedValueSet,};});'use strict';tr.exportTo('tr.v.d',function(){class DiagnosticMap extends Map{set(name,diagnostic){if(typeof(name)!=='string')
+throw new Error('name must be string, not '+name);if(!(diagnostic instanceof tr.v.d.Diagnostic))
+throw new Error('Must be instanceof Diagnostic: '+diagnostic);Map.prototype.set.call(this,name,diagnostic);}
+addDicts(dict){tr.b.iterItems(dict,function(name,diagnosticDict){this.set(name,tr.v.d.Diagnostic.fromDict(diagnosticDict));},this);}
+asDict(){var dict={};for(var[name,diagnostic]of this){dict[name]=diagnostic.asDict();}
+return dict;}
+static fromDict(d){var diagnostics=new DiagnosticMap();diagnostics.addDicts(d);return diagnostics;}
+static fromObject(obj){var diagnostics=new DiagnosticMap();tr.b.iterItems(obj,function(name,diagnostic){diagnostics.set(name,diagnostic);});return diagnostics;}}
+return{DiagnosticMap:DiagnosticMap};});'use strict';tr.exportTo('tr.v',function(){var MAX_DIAGNOSTIC_MAPS=16;class NumericBase{constructor(unit){if(!(unit instanceof tr.b.Unit))
 throw new Error('Expected provided unit to be instance of Unit');this.unit=unit;}
-NumericBase.prototype={merge:function(other){if(this.unit!==other.unit)
-throw new Error('Merging Numerics with different units');if(this instanceof Numeric&&other instanceof Numeric&&this.canAddNumeric(other)){var result=this.clone();result.addNumeric(other.clone());return result;}
-var samples=[];this.sampleValuesInto(samples);other.sampleValuesInto(samples);return Numeric.buildFromSamples(this.unit,samples);},sampleValuesInto:function(samples){throw new Error('Not implemented');},asDict:function(){var d={unit:this.unit.asJSON()};this.asDictInto_(d);return d;}};NumericBase.fromDict=function(d){if(d.type==='scalar')
-return ScalarNumeric.fromDict(d);if(d.type==='numeric')
-return Numeric.fromDict(d);throw new Error('Not implemented');};function NumericBin(parentNumeric,opt_range){this.parentNumeric=parentNumeric;this.range=opt_range||(new tr.b.Range());this.count=0;this.diagnosticMaps=[];}
-NumericBin.fromDict=function(parentNumeric,d){var n=new NumericBin(parentNumeric);n.range.min=d.min;n.range.max=d.max;n.count=d.count;if(d.diagnosticMaps)
-n.diagnosticMaps=d.diagnosticMaps.map(dmd=>tr.v.d.DiagnosticMap.fromDict(dmd));return n;};NumericBin.prototype={add:function(value,opt_diagnosticMap){if((opt_diagnosticMap!==undefined)&&!(opt_diagnosticMap instanceof tr.v.d.DiagnosticMap))
-throw new Error('Can\'t add a sample with a non-DiagnosticMap');this.count+=1;if(opt_diagnosticMap){tr.b.Statistics.uniformlySampleStream(this.diagnosticMaps,this.count,opt_diagnosticMap,MAX_DIAGNOSTIC_MAPS);}},addBin:function(other){if(!this.range.equals(other.range))
-throw new Error('Merging incompatible Numeric bins.');tr.b.Statistics.mergeSampledStreams(this.diagnosticMaps,this.count,other.diagnosticMaps,other.count,MAX_DIAGNOSTIC_MAPS);this.count+=other.count;},asDict:function(){return{min:this.range.min,max:this.range.max,count:this.count,diagnosticMaps:this.diagnosticMaps.map(d=>d.asDict())};},asJSON:function(){return this.asDict();}};function Numeric(unit,range,binInfo){NumericBase.call(this,unit);this.range=range;this.numNans=0;this.nanDiagnosticMaps=[];this.running=new tr.b.RunningStatistics();this.maxCount_=0;this.underflowBin=binInfo.underflowBin;this.centralBins=binInfo.centralBins;this.overflowBin=binInfo.overflowBin;this.allBins=[];this.allBins.push(this.underflowBin);this.allBins.push.apply(this.allBins,this.centralBins);this.allBins.push(this.overflowBin);this.allBins.forEach(function(bin){if(bin.count>this.maxCount_)
-this.maxCount_=bin.count;},this);this.sampleValues_=[];this.maxNumSampleValues=this.allBins.length*10;this.summaryOptions=this.defaultSummaryOptions();}
-Numeric.fromDict=function(d){var range=Range.fromExplicitRange(d.min,d.max);var binInfo={};binInfo.underflowBin=NumericBin.fromDict(undefined,d.underflowBin);binInfo.centralBins=d.centralBins.map(function(binAsDict){return NumericBin.fromDict(undefined,binAsDict);});binInfo.overflowBin=NumericBin.fromDict(undefined,d.overflowBin);var n=new Numeric(tr.v.Unit.fromJSON(d.unit),range,binInfo);n.allBins.forEach(function(bin){bin.parentNumeric=n;});if(d.running)
-n.running=tr.b.RunningStatistics.fromDict(d.running);if(d.summaryOptions)
-n.customizeSummaryOptions(d.summaryOptions);n.numNans=d.numNans;if(d.nanDiagnosticMaps){n.nanDiagnosticMaps=d.nanDiagnosticMaps.map(dmd=>tr.v.d.DiagnosticMap.fromDict(dmd));}
-n.maxNumSampleValues=d.maxNumSampleValues;n.sampleValues_=d.sampleValues;return n;};Numeric.buildFromSamples=function(unit,samples){var range=new tr.b.Range();for(var sample of samples)
-if(!isNaN(Math.max(sample)))
-range.addValue(sample);if(range.isEmpty)
-range.addValue(1);if(range.min===range.max)
-range.addValue(range.min-1);var numBins=Math.ceil(Math.sqrt(samples.length));var builder=new NumericBuilder(unit,range.min);builder.addLinearBins(range.max,numBins);var result=builder.build();result.maxNumSampleValues=1000;for(var sample of samples)
-result.add(sample);return result;};Numeric.prototype={__proto__:NumericBase.prototype,get numValues(){return tr.b.Statistics.sum(this.allBins,function(e){return e.count;});},get average(){return this.running.mean;},get sum(){return this.running.sum;},get maxCount(){return this.maxCount_;},getDifferenceSignificance:function(other,opt_alpha){if(this.unit!==other.unit)
-throw new Error('Cannot compare Numerics with different units');if(this.unit.improvementDirection===tr.v.ImprovementDirection.DONT_CARE){return tr.v.Significance.DONT_CARE;}
-if(!(other instanceof Numeric))
-throw new Error('Unable to compute a p-value');var mwu=tr.b.Statistics.mwu.test(this.sampleValues,other.sampleValues);if(mwu.p<(opt_alpha||DEFAULT_ALPHA))
-return tr.v.Significance.SIGNIFICANT;return tr.v.Significance.INSIGNIFICANT;},getApproximatePercentile:function(percent){if(!(percent>=0&&percent<=1))
-throw new Error('percent must be [0,1]');if(this.numValues==0)
-return 0;var valuesToSkip=Math.floor((this.numValues-1)*percent);for(var i=0;i<this.allBins.length;i++){var bin=this.allBins[i];valuesToSkip-=bin.count;if(valuesToSkip<0){if(bin===this.underflowBin)
-return bin.range.max;else if(bin===this.overflowBin)
-return bin.range.min;else
-return bin.range.center;}}
-throw new Error('Unreachable');},getInterpolatedCountAt:function(value){var bin=this.getBinForValue(value);var idx=this.centralBins.indexOf(bin);if(idx<0){return bin.count;}
-var lesserBin=bin;var greaterBin=bin;var lesserBinCenter=undefined;var greaterBinCenter=undefined;if(value<greaterBin.range.center){if(idx>0){lesserBin=this.centralBins[idx-1];}else{lesserBin=this.underflowBin;lesserBinCenter=lesserBin.range.max;}}else{if(idx<(this.centralBins.length-1)){greaterBin=this.centralBins[idx+1];}else{greaterBin=this.overflowBin;greaterBinCenter=greaterBin.range.min;}}
-if(greaterBinCenter===undefined)
-greaterBinCenter=greaterBin.range.center;if(lesserBinCenter===undefined)
-lesserBinCenter=lesserBin.range.center;value=tr.b.normalize(value,lesserBinCenter,greaterBinCenter);return tr.b.lerp(value,lesserBin.count,greaterBin.count);},getBinForValue:function(value){var binIndex=tr.b.findHighIndexInSortedArray(this.allBins,b=>value<b.range.max?-1:1);return this.allBins[binIndex]||this.overflowBin;},add:function(value,opt_diagnosticMap){if((opt_diagnosticMap!==undefined)&&!(opt_diagnosticMap instanceof tr.v.d.DiagnosticMap))
-throw new Error('Can\'t add a sample with a non-DiagnosticMap');if(typeof(value)!=='number'||isNaN(value)){this.numNans++;if(opt_diagnosticMap){tr.b.Statistics.uniformlySampleStream(this.nanDiagnosticMaps,this.numNans,opt_diagnosticMap,MAX_DIAGNOSTIC_MAPS);}}else{var bin=this.getBinForValue(value);bin.add(value,opt_diagnosticMap);this.running.add(value);if(bin.count>this.maxCount_)
-this.maxCount_=bin.count;}
-tr.b.Statistics.uniformlySampleStream(this.sampleValues_,this.numValues+this.numNans,value,this.maxNumSampleValues);},sampleValuesInto:function(samples){for(var sampleValue of this.sampleValues)
-samples.push(sampleValue);},canAddNumeric:function(other){if(!this.range.equals(other.range))
-return false;if(this.unit!==other.unit)
-return false;if(this.allBins.length!==other.allBins.length)
-return false;for(var i=0;i<this.allBins.length;++i)
-if(!this.allBins[i].range.equals(other.allBins[i].range))
-return false;return true;},addNumeric:function(other){if(!this.canAddNumeric(other))
-throw new Error('Merging incompatible Numerics.');tr.b.Statistics.mergeSampledStreams(this.nanDiagnosticMaps,this.numNans,other.nanDiagnosticMaps,other.numNans,MAX_DIAGNOSTIC_MAPS);tr.b.Statistics.mergeSampledStreams(this.sampleValues,this.numValues,other.sampleValues,other.numValues,tr.b.Statistics.mean([this.maxNumSampleValues,other.maxNumSampleValues]));this.numNans+=other.numNans;this.running=this.running.merge(other.running);for(var i=0;i<this.allBins.length;++i){this.allBins[i].addBin(other.allBins[i]);}},customizeSummaryOptions:function(summaryOptions){tr.b.iterItems(summaryOptions,function(key,value){this.summaryOptions[key]=value;},this);},defaultSummaryOptions:function(){return{count:true,sum:true,avg:true,std:true,min:true,max:true,nans:false,percentile:[]};},getSummarizedScalarNumericsWithNames:function(){function statNameToKey(stat){switch(stat){case'std':return'stddev';case'avg':return'mean';}
-return stat;}
-function percentToString(percent){if(percent<0||percent>1)
-throw new Error('Percent must be between 0.0 and 1.0');switch(percent){case 0:return'000';case 1:return'100';}
-var str=percent.toString();if(str[1]!=='.')
-throw new Error('Unexpected percent');str=str+'0'.repeat(Math.max(4-str.length,0));if(str.length>4)
-str=str.slice(0,4)+'_'+str.slice(4);return'0'+str.slice(2);}
-var results=[];tr.b.iterItems(this.summaryOptions,function(stat,option){if(!option)
-return;if(stat==='percentile'){option.forEach(function(percent){var percentile=this.getApproximatePercentile(percent);results.push({name:'pct_'+percentToString(percent),scalar:new tr.v.ScalarNumeric(this.unit,percentile)});},this);}else if(stat==='nans'){results.push({name:'nans',scalar:new tr.v.ScalarNumeric(tr.v.Unit.byName.count_smallerIsBetter,this.numNans)});}else{var statUnit=stat==='count'?tr.v.Unit.byName.count_smallerIsBetter:this.unit;var key=statNameToKey(stat);var statValue=this.running[key];if(typeof(statValue)==='number'){results.push({name:stat,scalar:new tr.v.ScalarNumeric(statUnit,statValue)});}}},this);return results;},get sampleValues(){return this.sampleValues_;},clone:function(){return Numeric.fromDict(this.asDict());},asDict:function(){var d={unit:this.unit.asJSON(),type:'numeric',min:this.range.min,max:this.range.max,numNans:this.numNans,nanDiagnosticMaps:this.nanDiagnosticMaps.map(dm=>dm.asDict()),running:this.running.asDict(),summaryOptions:this.summaryOptions,sampleValues:this.sampleValues,maxNumSampleValues:this.maxNumSampleValues,underflowBin:this.underflowBin.asDict(),centralBins:this.centralBins.map(function(bin){return bin.asDict();}),overflowBin:this.overflowBin.asDict()};return d;},asJSON:function(){return this.asDict();}};function NumericBuilder(unit,minBinBoundary){this.unit_=unit;this.boundaries_=[minBinBoundary];}
-NumericBuilder.prototype={get minBinBoundary(){return this.boundaries_[0];},get maxBinBoundary(){return this.boundaries_[this.boundaries_.length-1];},addBinBoundary:function(nextMaxBinBoundary){if(nextMaxBinBoundary<=this.maxBinBoundary){throw new Error('The added max bin boundary must be larger than '+'the current max boundary');}
-this.boundaries_.push(nextMaxBinBoundary);return this;},addLinearBins:function(nextMaxBinBoundary,binCount){if(binCount<=0)
-throw new Error('Bin count must be positive');var curMaxBinBoundary=this.maxBinBoundary;if(curMaxBinBoundary>=nextMaxBinBoundary){throw new Error('The new max bin boundary must be greater than '+'the previous max bin boundary');}
-var binWidth=(nextMaxBinBoundary-curMaxBinBoundary)/binCount;for(var i=1;i<binCount;i++)
-this.addBinBoundary(curMaxBinBoundary+i*binWidth);this.addBinBoundary(nextMaxBinBoundary);return this;},addExponentialBins:function(nextMaxBinBoundary,binCount){if(binCount<=0)
-throw new Error('Bin count must be positive');var curMaxBinBoundary=this.maxBinBoundary;if(curMaxBinBoundary<=0)
-throw new Error('Current max bin boundary must be positive');if(curMaxBinBoundary>=nextMaxBinBoundary){throw new Error('The last added max boundary must be greater than '+'the current max boundary boundary');}
-var binExponentWidth=Math.log(nextMaxBinBoundary/curMaxBinBoundary)/binCount;for(var i=1;i<binCount;i++){this.addBinBoundary(curMaxBinBoundary*Math.exp(i*binExponentWidth));}
-this.addBinBoundary(nextMaxBinBoundary);return this;},build:function(){var binInfo={underflowBin:new NumericBin(undefined,Range.fromExplicitRange(-Number.MAX_VALUE,this.minBinBoundary)),overflowBin:new NumericBin(undefined,Range.fromExplicitRange(this.maxBinBoundary,Number.MAX_VALUE)),centralBins:new Array(this.boundaries_.length-1)};for(var i=0;i<this.boundaries_.length-1;i++){binInfo.centralBins[i]=new NumericBin(undefined,Range.fromExplicitRange(this.boundaries_[i],this.boundaries_[i+1]));}
-var numeric=new Numeric(this.unit_,Range.fromExplicitRange(this.minBinBoundary,this.maxBinBoundary),binInfo);numeric.allBins.forEach(function(bin){bin.parentNumeric=numeric;});return numeric;}};NumericBuilder.createLinear=function(unit,range,numBins){if(range.isEmpty)
-throw new Error('Range must be non-empty');return new NumericBuilder(unit,range.min).addLinearBins(range.max,numBins);};NumericBuilder.createExponential=function(unit,range,numBins){if(range.isEmpty)
-throw new Error('Range must be non-empty');return new NumericBuilder(unit,range.min).addExponentialBins(range.max,numBins);};function ScalarNumeric(unit,value){if(!(unit instanceof tr.v.Unit))
+asDict(){var d={unit:this.unit.asJSON()};this.asDictInto_(d);return d;}
+static fromDict(d){if(d.type==='scalar')
+return ScalarNumeric.fromDict(d);throw new Error('Not implemented');}}
+class ScalarNumeric extends NumericBase{constructor(unit,value){if(!(unit instanceof tr.b.Unit))
 throw new Error('Expected Unit');if(!(typeof(value)=='number'))
-throw new Error('Expected value to be number');NumericBase.call(this,unit);this.value=value;}
-ScalarNumeric.prototype={__proto__:NumericBase.prototype,asDictInto_:function(d){d.type='scalar';if(this.value===Infinity)
+throw new Error('Expected value to be number');super(unit);this.value=value;}
+asDictInto_(d){d.type='scalar';if(this.value===Infinity)
 d.value='Infinity';else if(this.value===-Infinity)
 d.value='-Infinity';else if(isNaN(this.value))
 d.value='NaN';else
-d.value=this.value;},sampleValuesInto:function(samples){samples.push(this.value);},toString:function(){return this.unit.format(this.value);}};ScalarNumeric.fromDict=function(d){if(typeof(d.value)==='string'){if(d.value==='-Infinity'){d.value=-Infinity;}else if(d.value==='Infinity'){d.value=Infinity;}else if(d.value==='NaN'){d.value=NaN;}}
-return new ScalarNumeric(tr.v.Unit.fromJSON(d.unit),d.value);};return{Significance:Significance,NumericBase:NumericBase,NumericBin:NumericBin,Numeric:Numeric,NumericBuilder:NumericBuilder,ScalarNumeric:ScalarNumeric};});'use strict';tr.exportTo('tr.e.audits',function(){var SCHEDULING_STATE=tr.model.SCHEDULING_STATE;var Auditor=tr.c.Auditor;var AndroidModelHelper=tr.model.helpers.AndroidModelHelper;var ColorScheme=tr.b.ColorScheme;var Statistics=tr.b.Statistics;var FRAME_PERF_CLASS=tr.model.FRAME_PERF_CLASS;var Alert=tr.model.Alert;var EventInfo=tr.model.EventInfo;var ScalarNumeric=tr.v.ScalarNumeric;var timeDurationInMs=tr.v.Unit.byName.timeDurationInMs;var EXPECTED_FRAME_TIME_MS=16.67;function getStart(e){return e.start;}
+d.value=this.value;}
+toString(){return this.unit.format(this.value);}
+static fromDict(d){if(typeof(d.value)==='string'){if(d.value==='-Infinity'){d.value=-Infinity;}else if(d.value==='Infinity'){d.value=Infinity;}else if(d.value==='NaN'){d.value=NaN;}}
+return new ScalarNumeric(tr.b.Unit.fromJSON(d.unit),d.value);}}
+return{NumericBase:NumericBase,ScalarNumeric:ScalarNumeric};});'use strict';tr.exportTo('tr.e.audits',function(){var SCHEDULING_STATE=tr.model.SCHEDULING_STATE;var Auditor=tr.c.Auditor;var AndroidModelHelper=tr.model.helpers.AndroidModelHelper;var ColorScheme=tr.b.ColorScheme;var Statistics=tr.b.Statistics;var FRAME_PERF_CLASS=tr.model.FRAME_PERF_CLASS;var Alert=tr.model.Alert;var EventInfo=tr.model.EventInfo;var ScalarNumeric=tr.v.ScalarNumeric;var timeDurationInMs=tr.b.Unit.byName.timeDurationInMs;var EXPECTED_FRAME_TIME_MS=16.67;function getStart(e){return e.start;}
 function getDuration(e){return e.duration;}
 function getCpuDuration(e){return(e.cpuDuration!==undefined)?e.cpuDuration:e.duration;}
 function frameIsActivityStart(frame){return frame.associatedEvents.any(x=>x.title==='activityStart');}
 function frameMissedDeadline(frame){return frame.args['deadline']&&frame.args['deadline']<frame.end;}
 function DocLinkBuilder(){this.docLinks=[];}
 DocLinkBuilder.prototype={addAppVideo:function(name,videoId){this.docLinks.push({label:'Video Link',textContent:('Android Performance Patterns: '+name),href:'https://www.youtube.com/watch?list=PLWz5rJ2EKKc9CBxr3BVjPTPoDPLdPIFCE&v='+videoId});return this;},addDacRef:function(name,link){this.docLinks.push({label:'Doc Link',textContent:(name+' documentation'),href:'https://developer.android.com/reference/'+link});return this;},build:function(){return this.docLinks;}};function AndroidAuditor(model){Auditor.call(this,model);var helper=model.getOrCreateHelper(AndroidModelHelper);if(helper.apps.length||helper.surfaceFlinger)
-this.helper=helper;};AndroidAuditor.viewAlphaAlertInfo_=new EventInfo('Inefficient View alpha usage','Setting an alpha between 0 and 1 has significant performance costs, if one of the fast alpha paths is not used.',new DocLinkBuilder().addAppVideo('Hidden Cost of Transparency','wIy8g8yNhNk').addDacRef('View#setAlpha()','android/view/View.html#setAlpha(float)').build());AndroidAuditor.saveLayerAlertInfo_=new EventInfo('Expensive rendering with Canvas#saveLayer()','Canvas#saveLayer() incurs extremely high rendering cost. They disrupt the rendering pipeline when drawn, forcing a flush of drawing content. Instead use View hardware layers, or static Bitmaps. This enables the offscreen buffers to be reused in between frames, and avoids the disruptive render target switch.',new DocLinkBuilder().addAppVideo('Hidden Cost of Transparency','wIy8g8yNhNk').addDacRef('Canvas#saveLayerAlpha()','android/graphics/Canvas.html#saveLayerAlpha(android.graphics.RectF, int, int)').build());AndroidAuditor.getSaveLayerAlerts_=function(frame){var badAlphaRegEx=/^(.+) alpha caused (unclipped )?saveLayer (\d+)x(\d+)$/;var saveLayerRegEx=/^(unclipped )?saveLayer (\d+)x(\d+)$/;var ret=[];var events=[];frame.associatedEvents.forEach(function(slice){var match=badAlphaRegEx.exec(slice.title);if(match){var args={'view name':match[1],width:parseInt(match[3]),height:parseInt(match[4])};ret.push(new Alert(AndroidAuditor.viewAlphaAlertInfo_,slice.start,[slice],args));}else if(saveLayerRegEx.test(slice.title))
+this.helper=helper;}
+AndroidAuditor.viewAlphaAlertInfo_=new EventInfo('Inefficient View alpha usage','Setting an alpha between 0 and 1 has significant performance costs, if one of the fast alpha paths is not used.',new DocLinkBuilder().addAppVideo('Hidden Cost of Transparency','wIy8g8yNhNk').addDacRef('View#setAlpha()','android/view/View.html#setAlpha(float)').build());AndroidAuditor.saveLayerAlertInfo_=new EventInfo('Expensive rendering with Canvas#saveLayer()','Canvas#saveLayer() incurs extremely high rendering cost. They disrupt the rendering pipeline when drawn, forcing a flush of drawing content. Instead use View hardware layers, or static Bitmaps. This enables the offscreen buffers to be reused in between frames, and avoids the disruptive render target switch.',new DocLinkBuilder().addAppVideo('Hidden Cost of Transparency','wIy8g8yNhNk').addDacRef('Canvas#saveLayerAlpha()','android/graphics/Canvas.html#saveLayerAlpha(android.graphics.RectF, int, int)').build());AndroidAuditor.getSaveLayerAlerts_=function(frame){var badAlphaRegEx=/^(.+) alpha caused (unclipped )?saveLayer (\d+)x(\d+)$/;var saveLayerRegEx=/^(unclipped )?saveLayer (\d+)x(\d+)$/;var ret=[];var events=[];frame.associatedEvents.forEach(function(slice){var match=badAlphaRegEx.exec(slice.title);if(match){var args={'view name':match[1],width:parseInt(match[3]),height:parseInt(match[4])};ret.push(new Alert(AndroidAuditor.viewAlphaAlertInfo_,slice.start,[slice],args));}else if(saveLayerRegEx.test(slice.title))
 events.push(slice);},this);if(events.length>ret.length){var unclippedSeen=Statistics.sum(events,function(slice){return saveLayerRegEx.exec(slice.title)[1]?1:0;});var clippedSeen=events.length-unclippedSeen;var earliestStart=Statistics.min(events,function(slice){return slice.start;});var args={'Unclipped saveLayer count (especially bad!)':unclippedSeen,'Clipped saveLayer count':clippedSeen};events.push(frame);ret.push(new Alert(AndroidAuditor.saveLayerAlertInfo_,earliestStart,events,args));}
 return ret;};AndroidAuditor.pathAlertInfo_=new EventInfo('Path texture churn','Paths are drawn with a mask texture, so when a path is modified / newly drawn, that texture must be generated and uploaded to the GPU. Ensure that you cache paths between frames and do not unnecessarily call Path#reset(). You can cut down on this cost by sharing Path object instances between drawables/views.');AndroidAuditor.getPathAlert_=function(frame){var uploadRegEx=/^Generate Path Texture$/;var events=frame.associatedEvents.filter(function(event){return event.title=='Generate Path Texture';});var start=Statistics.min(events,getStart);var duration=Statistics.sum(events,getDuration);if(duration<3)
 return undefined;events.push(frame);return new Alert(AndroidAuditor.pathAlertInfo_,start,events,{'Time spent':new ScalarNumeric(timeDurationInMs,duration)});};AndroidAuditor.uploadAlertInfo_=new EventInfo('Expensive Bitmap uploads','Bitmaps that have been modified / newly drawn must be uploaded to the GPU. Since this is expensive if the total number of pixels uploaded is large, reduce the amount of Bitmap churn in this animation/context, per frame.');AndroidAuditor.getUploadAlert_=function(frame){var uploadRegEx=/^Upload (\d+)x(\d+) Texture$/;var events=[];var start=Number.POSITIVE_INFINITY;var duration=0;var pixelsUploaded=0;frame.associatedEvents.forEach(function(event){var match=uploadRegEx.exec(event.title);if(match){events.push(event);start=Math.min(start,event.start);duration+=event.duration;pixelsUploaded+=parseInt(match[1])*parseInt(match[2]);}});if(events.length==0||duration<3)
 return undefined;var mPixels=(pixelsUploaded/1000000).toFixed(2)+' million';var args={'Pixels uploaded':mPixels,'Time spent':new ScalarNumeric(timeDurationInMs,duration)};events.push(frame);return new Alert(AndroidAuditor.uploadAlertInfo_,start,events,args);};AndroidAuditor.ListViewInflateAlertInfo_=new EventInfo('Inflation during ListView recycling','ListView item recycling involved inflating views. Ensure your Adapter#getView() recycles the incoming View, instead of constructing a new one.');AndroidAuditor.ListViewBindAlertInfo_=new EventInfo('Inefficient ListView recycling/rebinding','ListView recycling taking too much time per frame. Ensure your Adapter#getView() binds data efficiently.');AndroidAuditor.getListViewAlert_=function(frame){var events=frame.associatedEvents.filter(function(event){return event.title==='obtainView'||event.title==='setupListItem';});var duration=Statistics.sum(events,getCpuDuration);if(events.length==0||duration<3)
-return undefined;var hasInflation=false;for(var i=0;i<events.length;i++){if(events[i]instanceof tr.model.Slice&&events[i].findDescendentSlice('inflate')){hasInflation=true;break;}}
-var start=Statistics.min(events,getStart);var args={'Time spent':new ScalarNumeric(timeDurationInMs,duration)};args['ListView items '+(hasInflation?'inflated':'rebound')]=events.length/2;var eventInfo=hasInflation?AndroidAuditor.ListViewInflateAlertInfo_:AndroidAuditor.ListViewBindAlertInfo_;events.push(frame);return new Alert(eventInfo,start,events,args);};AndroidAuditor.measureLayoutAlertInfo_=new EventInfo('Expensive measure/layout pass','Measure/Layout took a significant time, contributing to jank. Avoid triggering layout during animations.',new DocLinkBuilder().addAppVideo('Invalidations, Layouts, and Performance','we6poP0kw6E').build());AndroidAuditor.getMeasureLayoutAlert_=function(frame){var events=frame.associatedEvents.filter(function(event){return event.title==='measure'||event.title==='layout';});var duration=Statistics.sum(events,getCpuDuration);if(events.length==0||duration<3)
+return undefined;var hasInflation=false;for(var event of events)
+if(event.findDescendentSlice('inflate'))
+hasInflation=true;var start=Statistics.min(events,getStart);var args={'Time spent':new ScalarNumeric(timeDurationInMs,duration)};args['ListView items '+(hasInflation?'inflated':'rebound')]=events.length/2;var eventInfo=hasInflation?AndroidAuditor.ListViewInflateAlertInfo_:AndroidAuditor.ListViewBindAlertInfo_;events.push(frame);return new Alert(eventInfo,start,events,args);};AndroidAuditor.measureLayoutAlertInfo_=new EventInfo('Expensive measure/layout pass','Measure/Layout took a significant time, contributing to jank. Avoid triggering layout during animations.',new DocLinkBuilder().addAppVideo('Invalidations, Layouts, and Performance','we6poP0kw6E').build());AndroidAuditor.getMeasureLayoutAlert_=function(frame){var events=frame.associatedEvents.filter(function(event){return event.title==='measure'||event.title==='layout';});var duration=Statistics.sum(events,getCpuDuration);if(events.length==0||duration<3)
 return undefined;var start=Statistics.min(events,getStart);events.push(frame);return new Alert(AndroidAuditor.measureLayoutAlertInfo_,start,events,{'Time spent':new ScalarNumeric(timeDurationInMs,duration)});};AndroidAuditor.viewDrawAlertInfo_=new EventInfo('Long View#draw()','Recording the drawing commands of invalidated Views took a long time. Avoid significant work in View or Drawable custom drawing, especially allocations or drawing to Bitmaps.',new DocLinkBuilder().addAppVideo('Invalidations, Layouts, and Performance','we6poP0kw6E').addAppVideo('Avoiding Allocations in onDraw()','HAK5acHQ53E').build());AndroidAuditor.getViewDrawAlert_=function(frame){var slice=undefined;for(var event of frame.associatedEvents){if(event.title==='getDisplayList'||event.title==='Record View#draw()'){slice=event;break;}}
 if(!slice||getCpuDuration(slice)<3)
 return undefined;return new Alert(AndroidAuditor.viewDrawAlertInfo_,slice.start,[slice,frame],{'Time spent':new ScalarNumeric(timeDurationInMs,getCpuDuration(slice))});};AndroidAuditor.blockingGcAlertInfo_=new EventInfo('Blocking Garbage Collection','Blocking GCs are caused by object churn, and made worse by having large numbers of objects in the heap. Avoid allocating objects during animations/scrolling, and recycle Bitmaps to avoid triggering garbage collection.',new DocLinkBuilder().addAppVideo('Garbage Collection in Android','pzfzz50W5Uo').addAppVideo('Avoiding Allocations in onDraw()','HAK5acHQ53E').build());AndroidAuditor.getBlockingGcAlert_=function(frame){var events=frame.associatedEvents.filter(function(event){return event.title=='DVM Suspend'||event.title=='GC: Wait For Concurrent';});var blockedDuration=Statistics.sum(events,getDuration);if(blockedDuration<3)
@@ -4432,7 +4348,7 @@
 ObjectSnapshot.prototype={__proto__:tr.model.Event.prototype,preInitialize:function(){},initialize:function(){},referencedAt:function(item,object,field){},addBoundsToRange:function(range){range.addValue(this.ts);},get userFriendlyName(){return'Snapshot of '+
 this.objectInstance.typeName+' '+
 this.objectInstance.id+' @ '+
-tr.v.Unit.byName.timeStampInMs.format(this.ts);}};tr.model.EventRegistry.register(ObjectSnapshot,{name:'objectSnapshot',pluralName:'objectSnapshots'});return{ObjectSnapshot:ObjectSnapshot};});'use strict';tr.exportTo('tr.model',function(){var ObjectSnapshot=tr.model.ObjectSnapshot;function ObjectInstance(parent,scopedId,category,name,creationTs,opt_baseTypeName){tr.model.Event.call(this);this.parent=parent;this.scopedId=scopedId;this.category=category;this.baseTypeName=opt_baseTypeName?opt_baseTypeName:name;this.name=name;this.creationTs=creationTs;this.creationTsWasExplicit=false;this.deletionTs=Number.MAX_VALUE;this.deletionTsWasExplicit=false;this.colorId=0;this.bounds=new tr.b.Range();this.snapshots=[];this.hasImplicitSnapshots=false;}
+tr.b.Unit.byName.timeStampInMs.format(this.ts);}};tr.model.EventRegistry.register(ObjectSnapshot,{name:'objectSnapshot',pluralName:'objectSnapshots'});return{ObjectSnapshot:ObjectSnapshot};});'use strict';tr.exportTo('tr.model',function(){var ObjectSnapshot=tr.model.ObjectSnapshot;function ObjectInstance(parent,scopedId,category,name,creationTs,opt_baseTypeName){tr.model.Event.call(this);this.parent=parent;this.scopedId=scopedId;this.category=category;this.baseTypeName=opt_baseTypeName?opt_baseTypeName:name;this.name=name;this.creationTs=creationTs;this.creationTsWasExplicit=false;this.deletionTs=Number.MAX_VALUE;this.deletionTsWasExplicit=false;this.colorId=0;this.bounds=new tr.b.Range();this.snapshots=[];this.hasImplicitSnapshots=false;}
 ObjectInstance.prototype={__proto__:tr.model.Event.prototype,get typeName(){return this.name;},addBoundsToRange:function(range){range.addRange(this.bounds);},addSnapshot:function(ts,args,opt_name,opt_baseTypeName){if(ts<this.creationTs)
 throw new Error('Snapshots must be >= instance.creationTs');if(ts>=this.deletionTs)
 throw new Error('Snapshots cannot be added after '+'an objects deletion timestamp.');var lastSnapshot;if(this.snapshots.length>0){lastSnapshot=this.snapshots[this.snapshots.length-1];if(lastSnapshot.ts==ts)
@@ -4471,9 +4387,10 @@
 TopLevelInstance.prototype={__proto__:BlameContextInstance.prototype,get blameContextType(){return'TopLevel';}};tr.model.ObjectInstance.subTypes.register(TopLevelInstance,{typeName:'TopLevel'});return{TopLevelSnapshot:TopLevelSnapshot,TopLevelInstance:TopLevelInstance};});'use strict';tr.exportTo('tr.model',function(){function AsyncSlice(category,title,colorId,start,args,duration,opt_isTopLevel,opt_cpuStart,opt_cpuDuration,opt_argsStripped){tr.model.TimedEvent.call(this,start);this.category=category||'';this.originalTitle=title;this.title=title;this.colorId=colorId;this.args=args;this.startStackFrame=undefined;this.endStackFrame=undefined;this.didNotFinish=false;this.important=false;this.subSlices=[];this.parentContainer_=undefined;this.id=undefined;this.startThread=undefined;this.endThread=undefined;this.cpuStart=undefined;this.cpuDuration=undefined;this.argsStripped=false;this.startStackFrame=undefined;this.endStackFrame=undefined;this.duration=duration;this.isTopLevel=(opt_isTopLevel===true);if(opt_cpuStart!==undefined)
 this.cpuStart=opt_cpuStart;if(opt_cpuDuration!==undefined)
 this.cpuDuration=opt_cpuDuration;if(opt_argsStripped!==undefined)
-this.argsStripped=opt_argsStripped;};AsyncSlice.prototype={__proto__:tr.model.TimedEvent.prototype,get analysisTypeName(){return this.title;},get parentContainer(){return this.parentContainer_;},set parentContainer(parentContainer){this.parentContainer_=parentContainer;for(var i=0;i<this.subSlices.length;i++){var subSlice=this.subSlices[i];if(subSlice.parentContainer===undefined)
+this.argsStripped=opt_argsStripped;}
+AsyncSlice.prototype={__proto__:tr.model.TimedEvent.prototype,get analysisTypeName(){return this.title;},get parentContainer(){return this.parentContainer_;},set parentContainer(parentContainer){this.parentContainer_=parentContainer;for(var i=0;i<this.subSlices.length;i++){var subSlice=this.subSlices[i];if(subSlice.parentContainer===undefined)
 subSlice.parentContainer=parentContainer;}},get viewSubGroupTitle(){return this.title;},get userFriendlyName(){return'Async slice '+this.title+' at '+
-tr.v.Unit.byName.timeStampInMs.format(this.start);},get stableId(){var parentAsyncSliceGroup=this.parentContainer.asyncSliceGroup;return parentAsyncSliceGroup.stableId+'.'+
+tr.b.Unit.byName.timeStampInMs.format(this.start);},get stableId(){var parentAsyncSliceGroup=this.parentContainer.asyncSliceGroup;return parentAsyncSliceGroup.stableId+'.'+
 parentAsyncSliceGroup.slices.indexOf(this);},findTopmostSlicesRelativeToThisSlice:function*(eventPredicate,opt_this){if(eventPredicate(this)){yield this;return;}
 for(var s of this.subSlices)
 yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate);},findDescendentSlice:function(targetTitle){if(!this.subSlices)
@@ -4503,16 +4420,20 @@
 return;if(rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end))
 networkEvents.push(slice);});});return networkEvents;},iterAllThreads:function(func,opt_this){tr.b.iterItems(this.process.threads,function(tid,thread){func.call(opt_this,thread);});tr.b.iterItems(this.rendererHelpers,function(pid,rendererHelper){var rendererProcess=rendererHelper.process;tr.b.iterItems(rendererProcess.threads,function(tid,thread){func.call(opt_this,thread);});},this);}};return{ChromeBrowserHelper:ChromeBrowserHelper};});'use strict';tr.exportTo('tr.model.helpers',function(){function ChromeGpuHelper(modelHelper,process){tr.model.helpers.ChromeProcessHelper.call(this,modelHelper,process);this.mainThread_=process.findAtMostOneThreadNamed('CrGpuMain');if(!process.name)
 process.name=ChromeGpuHelper.PROCESS_NAME;};ChromeGpuHelper.PROCESS_NAME='GPU Process';ChromeGpuHelper.isGpuProcess=function(process){if(process.findAtMostOneThreadNamed('CrBrowserMain')||process.findAtMostOneThreadNamed('CrRendererMain'))
-return false;return process.findAtMostOneThreadNamed('CrGpuMain');};ChromeGpuHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype,get mainThread(){return this.mainThread_;}};return{ChromeGpuHelper:ChromeGpuHelper};});'use strict';tr.exportTo('tr.e.chrome',function(){var SAME_AS_PARENT='same-as-parent';var TITLES_FOR_USER_FRIENDLY_CATEGORY={composite:['CompositingInputsUpdater::update','ThreadProxy::SetNeedsUpdateLayers','LayerTreeHost::UpdateLayers::CalcDrawProps','UpdateLayerTree'],gc:['minorGC','majorGC','MajorGC','MinorGC','V8.GCScavenger','V8.GCIncrementalMarking','V8.GCIdleNotification','V8.GCContext','V8.GCCompactor','V8GCController::traceDOMWrappers'],iframe_creation:['WebLocalFrameImpl::createChildframe'],imageDecode:['Decode Image','ImageFrameGenerator::decode','ImageFrameGenerator::decodeAndScale'],input:['HitTest','ScrollableArea::scrollPositionChanged','EventHandler::handleMouseMoveEvent'],layout:['FrameView::invalidateTree','FrameView::layout','FrameView::performLayout','FrameView::performPostLayoutTasks','FrameView::performPreLayoutTasks','Layer::updateLayerPositionsAfterLayout','Layout','LayoutView::hitTest','ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities','WebViewImpl::layout'],parseHTML:['ParseHTML','HTMLDocumentParser::didReceiveParsedChunkFromBackgroundParser','HTMLDocumentParser::processParsedChunkFromBackgroundParser'],raster:['DisplayListRasterSource::PerformSolidColorAnalysis','Picture::Raster','RasterBufferImpl::Playback','RasterTask','RasterizerTaskImpl::RunOnWorkerThread','SkCanvas::drawImageRect()','SkCanvas::drawPicture()','SkCanvas::drawTextBlob()','TileTaskWorkerPool::PlaybackToMemory'],record:['ContentLayerDelegate::paintContents','DeprecatedPaintLayerCompositor::updateIfNeededRecursive','DeprecatedPaintLayerCompositor::updateLayerPositionsAfterLayout','Paint','Picture::Record','PictureLayer::Update','RenderLayer::updateLayerPositionsAfterLayout'],style:['CSSParserImpl::parseStyleSheet.parse','CSSParserImpl::parseStyleSheet.tokenize','Document::updateStyle','Document::updateStyleInvalidationIfNeeded','ParseAuthorStyleSheet','RuleSet::addRulesFromSheet','StyleElement::processStyleSheet','StyleEngine::createResolver','StyleSheetContents::parseAuthorStyleSheet','UpdateLayoutTree'],script_parse_and_compile:['v8.parseOnBackground','V8.ScriptCompiler'],script_execute:['V8.Execute','WindowProxy::initialize'],resource_loading:['ResourceFetcher::requestResource','ResourceDispatcher::OnReceivedData','ResourceDispatcher::OnRequestComplete','ResourceDispatcher::OnReceivedResponse','Resource::appendData'],renderer_misc:['DecodeFont','ThreadState::completeSweep'],v8_runtime:[],[SAME_AS_PARENT]:['SyncChannel::Send']};var USER_FRIENDLY_CATEGORY_FOR_TITLE=new Map();for(var category in TITLES_FOR_USER_FRIENDLY_CATEGORY){TITLES_FOR_USER_FRIENDLY_CATEGORY[category].forEach(function(title){USER_FRIENDLY_CATEGORY_FOR_TITLE.set(title,category);});}
+return false;return process.findAtMostOneThreadNamed('CrGpuMain');};ChromeGpuHelper.prototype={__proto__:tr.model.helpers.ChromeProcessHelper.prototype,get mainThread(){return this.mainThread_;}};return{ChromeGpuHelper:ChromeGpuHelper};});'use strict';tr.exportTo('tr.b',function(){function SinebowColorGenerator(opt_a,opt_brightness){this.a_=(opt_a===undefined)?1:opt_a;this.brightness_=(opt_brightness===undefined)?1:opt_brightness;this.colorIndex_=0;this.keyToColor={};}
+SinebowColorGenerator.prototype={colorForKey:function(key){if(!this.keyToColor[key])
+this.keyToColor[key]=this.nextColor();return this.keyToColor[key];},nextColor:function(){var components=SinebowColorGenerator.nthColor(this.colorIndex_++);return tr.b.Color.fromString(SinebowColorGenerator.calculateColor(components[0],components[1],components[2],this.a_,this.brightness_));}};SinebowColorGenerator.PHI=(1+Math.sqrt(5))/2;SinebowColorGenerator.sinebow_=function(h){h+=0.5;h=-h;var r=Math.sin(Math.PI*h);var g=Math.sin(Math.PI*(h+1/3));var b=Math.sin(Math.PI*(h+2/3));r*=r;g*=g;b*=b;var y=2*(0.2989*r+0.5870*g+0.1140*b);r/=y;g/=y;b/=y;return[256*r,256*g,256*b];};SinebowColorGenerator.nthColor=function(n){return SinebowColorGenerator.sinebow_(n*this.PHI);};SinebowColorGenerator.calculateColor=function(r,g,b,a,brightness){if(brightness<=1){r*=brightness;g*=brightness;b*=brightness;}else{r=tr.b.lerp(tr.b.normalize(brightness,1,2),r,255);g=tr.b.lerp(tr.b.normalize(brightness,1,2),g,255);b=tr.b.lerp(tr.b.normalize(brightness,1,2),b,255);}
+r=Math.round(r);g=Math.round(g);b=Math.round(b);return'rgba('+r+','+g+','+b+', '+a+')';};return{SinebowColorGenerator:SinebowColorGenerator};});'use strict';tr.exportTo('tr.e.chrome',function(){var SAME_AS_PARENT='same-as-parent';var TITLES_FOR_USER_FRIENDLY_CATEGORY={composite:['CompositingInputsUpdater::update','ThreadProxy::SetNeedsUpdateLayers','LayerTreeHost::UpdateLayers::CalcDrawProps','UpdateLayerTree'],gc:['minorGC','majorGC','MajorGC','MinorGC','V8.GCScavenger','V8.GCIncrementalMarking','V8.GCIdleNotification','V8.GCContext','V8.GCCompactor','V8GCController::traceDOMWrappers'],iframe_creation:['WebLocalFrameImpl::createChildframe'],imageDecode:['Decode Image','ImageFrameGenerator::decode','ImageFrameGenerator::decodeAndScale'],input:['HitTest','ScrollableArea::scrollPositionChanged','EventHandler::handleMouseMoveEvent'],layout:['FrameView::invalidateTree','FrameView::layout','FrameView::performLayout','FrameView::performPostLayoutTasks','FrameView::performPreLayoutTasks','Layer::updateLayerPositionsAfterLayout','Layout','LayoutView::hitTest','ResourceLoadPriorityOptimizer::updateAllImageResourcePriorities','WebViewImpl::layout'],parseHTML:['ParseHTML','HTMLDocumentParser::didReceiveParsedChunkFromBackgroundParser','HTMLDocumentParser::processParsedChunkFromBackgroundParser'],raster:['DisplayListRasterSource::PerformSolidColorAnalysis','Picture::Raster','RasterBufferImpl::Playback','RasterTask','RasterizerTaskImpl::RunOnWorkerThread','SkCanvas::drawImageRect()','SkCanvas::drawPicture()','SkCanvas::drawTextBlob()','TileTaskWorkerPool::PlaybackToMemory'],record:['ContentLayerDelegate::paintContents','DeprecatedPaintLayerCompositor::updateIfNeededRecursive','DeprecatedPaintLayerCompositor::updateLayerPositionsAfterLayout','Paint','Picture::Record','PictureLayer::Update','RenderLayer::updateLayerPositionsAfterLayout'],style:['CSSParserImpl::parseStyleSheet.parse','CSSParserImpl::parseStyleSheet.tokenize','Document::updateStyle','Document::updateStyleInvalidationIfNeeded','ParseAuthorStyleSheet','RuleSet::addRulesFromSheet','StyleElement::processStyleSheet','StyleEngine::createResolver','StyleSheetContents::parseAuthorStyleSheet','UpdateLayoutTree'],script_parse_and_compile:['v8.parseOnBackground','V8.ScriptCompiler'],script_execute:['V8.Execute','WindowProxy::initialize'],resource_loading:['ResourceFetcher::requestResource','ResourceDispatcher::OnReceivedData','ResourceDispatcher::OnRequestComplete','ResourceDispatcher::OnReceivedResponse','Resource::appendData'],renderer_misc:['DecodeFont','ThreadState::completeSweep'],v8_runtime:[],[SAME_AS_PARENT]:['SyncChannel::Send']};var COLOR_FOR_USER_FRIENDLY_CATEGORY=new tr.b.SinebowColorGenerator();var USER_FRIENDLY_CATEGORY_FOR_TITLE=new Map();for(var category in TITLES_FOR_USER_FRIENDLY_CATEGORY){TITLES_FOR_USER_FRIENDLY_CATEGORY[category].forEach(function(title){USER_FRIENDLY_CATEGORY_FOR_TITLE.set(title,category);});}
 var USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY={netlog:'net',overhead:'overhead',startup:'startup',gpu:'gpu'};function ChromeUserFriendlyCategoryDriver(){}
 ChromeUserFriendlyCategoryDriver.fromEvent=function(event){var userFriendlyCategory=USER_FRIENDLY_CATEGORY_FOR_TITLE.get(event.title);if(userFriendlyCategory){if(userFriendlyCategory==SAME_AS_PARENT){if(event.parentSlice)
 return ChromeUserFriendlyCategoryDriver.fromEvent(event.parentSlice);}else{return userFriendlyCategory;}}
 var eventCategoryParts=tr.b.getCategoryParts(event.category);for(var i=0;i<eventCategoryParts.length;++i){var eventCategory=eventCategoryParts[i];userFriendlyCategory=USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY[eventCategory];if(userFriendlyCategory)
 return userFriendlyCategory;}
-return'other';};ChromeUserFriendlyCategoryDriver.ALL_TITLES=['other'];for(var category in TITLES_FOR_USER_FRIENDLY_CATEGORY){if(category===SAME_AS_PARENT)
+return'other';};ChromeUserFriendlyCategoryDriver.getColor=function(ufc){return COLOR_FOR_USER_FRIENDLY_CATEGORY.colorForKey(ufc);};ChromeUserFriendlyCategoryDriver.ALL_TITLES=['other'];for(var category in TITLES_FOR_USER_FRIENDLY_CATEGORY){if(category===SAME_AS_PARENT)
 continue;ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);}
-for(var category in USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY){ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);}
-return{ChromeUserFriendlyCategoryDriver:ChromeUserFriendlyCategoryDriver};});'use strict';tr.exportTo('tr.model.helpers',function(){function ChromeRendererHelper(modelHelper,process){tr.model.helpers.ChromeProcessHelper.call(this,modelHelper,process);this.mainThread_=process.findAtMostOneThreadNamed('CrRendererMain');this.compositorThread_=process.findAtMostOneThreadNamed('Compositor');this.rasterWorkerThreads_=process.findAllThreadsMatching(function(t){if(t.name===undefined)
+for(var category of tr.b.dictionaryValues(USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY)){ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);}
+ChromeUserFriendlyCategoryDriver.ALL_TITLES.sort();for(var category of ChromeUserFriendlyCategoryDriver.ALL_TITLES)
+ChromeUserFriendlyCategoryDriver.getColor(category);return{ChromeUserFriendlyCategoryDriver:ChromeUserFriendlyCategoryDriver};});'use strict';tr.exportTo('tr.model.helpers',function(){function ChromeRendererHelper(modelHelper,process){tr.model.helpers.ChromeProcessHelper.call(this,modelHelper,process);this.mainThread_=process.findAtMostOneThreadNamed('CrRendererMain');this.compositorThread_=process.findAtMostOneThreadNamed('Compositor');this.rasterWorkerThreads_=process.findAllThreadsMatching(function(t){if(t.name===undefined)
 return false;if(t.name.indexOf('CompositorTileWorker')===0)
 return true;if(t.name.indexOf('CompositorRasterWorker')===0)
 return true;return false;});this.isChromeTracingUI_=process.labels!==undefined&&process.labels.length===1&&process.labels[0]==='chrome://tracing';if(!process.name)
@@ -4788,11 +4709,11 @@
 EventContainer.prototype={get guid(){return this.guid_;},get stableId(){throw new Error('Not implemented');},get bounds(){return this.bounds_;},updateBounds:function(){throw new Error('Not implemented');},shiftTimestampsForward:function(amount){throw new Error('Not implemented');},childEvents:function*(){},getDescendantEvents:function*(){yield*this.childEvents();for(var container of this.childEventContainers())
 yield*container.getDescendantEvents();},childEventContainers:function*(){},getDescendantEventContainers:function*(){yield this;for(var container of this.childEventContainers())
 yield*container.getDescendantEventContainers();},findTopmostSlicesInThisContainer:function*(eventPredicate,opt_this){},findTopmostSlices:function*(eventPredicate){for(var ec of this.getDescendantEventContainers())
-yield*ec.findTopmostSlicesInThisContainer(eventPredicate);},findTopmostSlicesNamed:function*(name){yield*this.findTopmostSlices(e=>e.title===name);}};return{EventContainer:EventContainer};});'use strict';tr.exportTo('tr.model',function(){var Event=tr.model.Event;var EventRegistry=tr.model.EventRegistry;function PowerSample(series,start,power){Event.call(this);this.series_=series;this.start_=start;this.power_=power;}
-PowerSample.prototype={__proto__:Event.prototype,get series(){return this.series_;},get start(){return this.start_;},set start(value){this.start_=value;},get power(){return this.power_;},set power(value){this.power_=value;},addBoundsToRange:function(range){range.addValue(this.start);}};EventRegistry.register(PowerSample,{name:'powerSample',pluralName:'powerSamples'});return{PowerSample:PowerSample};});'use strict';tr.exportTo('tr.model',function(){var PowerSample=tr.model.PowerSample;function PowerSeries(device){tr.model.EventContainer.call(this);this.device_=device;this.samples_=[];}
-PowerSeries.prototype={__proto__:tr.model.EventContainer.prototype,get device(){return this.device_;},get samples(){return this.samples_;},get stableId(){return this.device_.stableId+'.PowerSeries';},addPowerSample:function(ts,val){var sample=new PowerSample(this,ts,val);this.samples_.push(sample);return sample;},getEnergyConsumed:function(start,end){var measurementRange=tr.b.Range.fromExplicitRange(start,end);var energyConsumed=0;var startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start)-1;var endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);if(startIndex<0)
-startIndex=0;for(var i=startIndex;i<endIndex;i++){var sample=this.samples[i];var nextSample=this.samples[i+1];var sampleRange=new tr.b.Range();sampleRange.addValue(sample.start);sampleRange.addValue(nextSample?nextSample.start:sample.start);var timeIntersection=measurementRange.findIntersection(sampleRange);var durationInSeconds=timeIntersection.duration/1000;energyConsumed+=durationInSeconds*sample.power;}
-return energyConsumed;},getSamplesWithinRange:function(start,end){var startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start);var endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);return this.samples.slice(startIndex,endIndex);},shiftTimestampsForward:function(amount){for(var i=0;i<this.samples_.length;++i)
+yield*ec.findTopmostSlicesInThisContainer(eventPredicate);},findTopmostSlicesNamed:function*(name){yield*this.findTopmostSlices(e=>e.title===name);}};return{EventContainer:EventContainer};});'use strict';tr.exportTo('tr.model',function(){var Event=tr.model.Event;var EventRegistry=tr.model.EventRegistry;function PowerSample(series,start,powerInW){Event.call(this);this.series_=series;this.start_=start;this.powerInW_=powerInW;}
+PowerSample.prototype={__proto__:Event.prototype,get series(){return this.series_;},get start(){return this.start_;},set start(value){this.start_=value;},get powerInW(){return this.powerInW_;},set powerInW(value){this.powerInW_=value;},addBoundsToRange:function(range){range.addValue(this.start);}};EventRegistry.register(PowerSample,{name:'powerSample',pluralName:'powerSamples'});return{PowerSample:PowerSample};});'use strict';tr.exportTo('tr.model',function(){var PowerSample=tr.model.PowerSample;function PowerSeries(device){tr.model.EventContainer.call(this);this.device_=device;this.samples_=[];}
+PowerSeries.prototype={__proto__:tr.model.EventContainer.prototype,get device(){return this.device_;},get samples(){return this.samples_;},get stableId(){return this.device_.stableId+'.PowerSeries';},addPowerSample:function(ts,val){var sample=new PowerSample(this,ts,val);this.samples_.push(sample);return sample;},getEnergyConsumedInJ:function(start,end){var measurementRange=tr.b.Range.fromExplicitRange(start,end);var energyConsumedInJ=0;var startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start)-1;var endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);if(startIndex<0)
+startIndex=0;for(var i=startIndex;i<endIndex;i++){var sample=this.samples[i];var nextSample=this.samples[i+1];var sampleRange=new tr.b.Range();sampleRange.addValue(sample.start);sampleRange.addValue(nextSample?nextSample.start:sample.start);var intersectionRangeInMs=measurementRange.findIntersection(sampleRange);var durationInS=tr.b.convertUnit(intersectionRangeInMs.duration,tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);energyConsumedInJ+=durationInS*sample.powerInW;}
+return energyConsumedInJ;},getSamplesWithinRange:function(start,end){var startIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,start);var endIndex=tr.b.findLowIndexInSortedArray(this.samples,x=>x.start,end);return this.samples.slice(startIndex,endIndex);},shiftTimestampsForward:function(amount){for(var i=0;i<this.samples_.length;++i)
 this.samples_[i].start+=amount;},updateBounds:function(){this.bounds.reset();if(this.samples_.length===0)
 return;this.bounds.addValue(this.samples_[0].start);this.bounds.addValue(this.samples_[this.samples_.length-1].start);},childEvents:function*(){yield*this.samples_;},};return{PowerSeries:PowerSeries};});'use strict';tr.exportTo('tr.model',function(){function Device(model){if(!model)
 throw new Error('Must provide a model.');tr.model.EventContainer.call(this);this.powerSeries_=undefined;this.vSyncTimestamps_=[];};Device.compare=function(x,y){return x.guid-y.guid;};Device.prototype={__proto__:tr.model.EventContainer.prototype,compareTo:function(that){return Device.compare(this,that);},get userFriendlyName(){return'Device';},get userFriendlyDetails(){return'Device';},get stableId(){return'Device';},getSettingsKey:function(){return'device';},get powerSeries(){return this.powerSeries_;},set powerSeries(powerSeries){this.powerSeries_=powerSeries;},get vSyncTimestamps(){return this.vSyncTimestamps_;},set vSyncTimestamps(value){this.vSyncTimestamps_=value;},updateBounds:function(){this.bounds.reset();for(var child of this.childEventContainers()){child.updateBounds();this.bounds.addRange(child.bounds);}},shiftTimestampsForward:function(amount){for(var child of this.childEventContainers()){child.shiftTimestampsForward(amount);}
@@ -4801,10 +4722,11 @@
 yield this.powerSeries_;}};return{Device:Device};});'use strict';tr.exportTo('tr.model',function(){function FlowEvent(category,id,title,colorId,start,args,opt_duration){tr.model.TimedEvent.call(this,start);this.category=category||'';this.title=title;this.colorId=colorId;this.start=start;this.args=args;this.id=id;this.startSlice=undefined;this.endSlice=undefined;this.startStackFrame=undefined;this.endStackFrame=undefined;if(opt_duration!==undefined)
 this.duration=opt_duration;}
 FlowEvent.prototype={__proto__:tr.model.TimedEvent.prototype,get userFriendlyName(){return'Flow event named '+this.title+' at '+
-tr.v.Unit.byName.timeStampInMs.format(this.timestamp);}};tr.model.EventRegistry.register(FlowEvent,{name:'flowEvent',pluralName:'flowEvents'});return{FlowEvent:FlowEvent};});'use strict';tr.exportTo('tr.model',function(){function ContainerMemoryDump(start){tr.model.TimedEvent.call(this,start);this.levelOfDetail=undefined;this.memoryAllocatorDumps_=undefined;this.memoryAllocatorDumpsByFullName_=undefined;};ContainerMemoryDump.LevelOfDetail={BACKGROUND:0,LIGHT:1,DETAILED:2};ContainerMemoryDump.prototype={__proto__:tr.model.TimedEvent.prototype,shiftTimestampsForward:function(amount){this.start+=amount;},get memoryAllocatorDumps(){return this.memoryAllocatorDumps_;},set memoryAllocatorDumps(memoryAllocatorDumps){this.memoryAllocatorDumps_=memoryAllocatorDumps;this.forceRebuildingMemoryAllocatorDumpByFullNameIndex();},getMemoryAllocatorDumpByFullName:function(fullName){if(this.memoryAllocatorDumps_===undefined)
+tr.b.Unit.byName.timeStampInMs.format(this.timestamp);}};tr.model.EventRegistry.register(FlowEvent,{name:'flowEvent',pluralName:'flowEvents'});return{FlowEvent:FlowEvent};});'use strict';tr.exportTo('tr.model',function(){function ContainerMemoryDump(start){tr.model.TimedEvent.call(this,start);this.levelOfDetail=undefined;this.memoryAllocatorDumps_=undefined;this.memoryAllocatorDumpsByFullName_=undefined;};ContainerMemoryDump.LevelOfDetail={BACKGROUND:0,LIGHT:1,DETAILED:2};ContainerMemoryDump.prototype={__proto__:tr.model.TimedEvent.prototype,shiftTimestampsForward:function(amount){this.start+=amount;},get memoryAllocatorDumps(){return this.memoryAllocatorDumps_;},set memoryAllocatorDumps(memoryAllocatorDumps){this.memoryAllocatorDumps_=memoryAllocatorDumps;this.forceRebuildingMemoryAllocatorDumpByFullNameIndex();},getMemoryAllocatorDumpByFullName:function(fullName){if(this.memoryAllocatorDumps_===undefined)
 return undefined;if(this.memoryAllocatorDumpsByFullName_===undefined){var index={};function addDumpsToIndex(dumps){dumps.forEach(function(dump){index[dump.fullName]=dump;addDumpsToIndex(dump.children);});};addDumpsToIndex(this.memoryAllocatorDumps_);this.memoryAllocatorDumpsByFullName_=index;}
 return this.memoryAllocatorDumpsByFullName_[fullName];},forceRebuildingMemoryAllocatorDumpByFullNameIndex:function(){this.memoryAllocatorDumpsByFullName_=undefined;},iterateRootAllocatorDumps:function(fn,opt_this){if(this.memoryAllocatorDumps===undefined)
-return;this.memoryAllocatorDumps.forEach(fn,opt_this||this);}};return{ContainerMemoryDump:ContainerMemoryDump};});'use strict';tr.exportTo('tr.model',function(){function MemoryAllocatorDump(containerMemoryDump,fullName,opt_guid){this.fullName=fullName;this.parent=undefined;this.children=[];this.numerics={};this.diagnostics={};this.containerMemoryDump=containerMemoryDump;this.owns=undefined;this.ownedBy=[];this.ownedBySiblingSizes=new Map();this.retains=[];this.retainedBy=[];this.weak=false;this.infos=[];this.guid=opt_guid;};MemoryAllocatorDump.SIZE_NUMERIC_NAME='size';MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME='effective_size';MemoryAllocatorDump.RESIDENT_SIZE_NUMERIC_NAME='resident_size';MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME=MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME;MemoryAllocatorDump.prototype={get name(){return this.fullName.substring(this.fullName.lastIndexOf('/')+1);},get quantifiedName(){return'\''+this.fullName+'\' in '+
+return;this.memoryAllocatorDumps.forEach(fn,opt_this||this);}};return{ContainerMemoryDump:ContainerMemoryDump};});'use strict';tr.exportTo('tr.model',function(){function MemoryAllocatorDump(containerMemoryDump,fullName,opt_guid){this.fullName=fullName;this.parent=undefined;this.children=[];this.numerics={};this.diagnostics={};this.containerMemoryDump=containerMemoryDump;this.owns=undefined;this.ownedBy=[];this.ownedBySiblingSizes=new Map();this.retains=[];this.retainedBy=[];this.weak=false;this.infos=[];this.guid=opt_guid;}
+MemoryAllocatorDump.SIZE_NUMERIC_NAME='size';MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME='effective_size';MemoryAllocatorDump.RESIDENT_SIZE_NUMERIC_NAME='resident_size';MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME=MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME;MemoryAllocatorDump.prototype={get name(){return this.fullName.substring(this.fullName.lastIndexOf('/')+1);},get quantifiedName(){return'\''+this.fullName+'\' in '+
 this.containerMemoryDump.containerName;},getDescendantDumpByFullName:function(fullName){return this.containerMemoryDump.getMemoryAllocatorDumpByFullName(this.fullName+'/'+fullName);},isDescendantOf:function(otherDump){var dump=this;while(dump!==undefined){if(dump===otherDump)
 return true;dump=dump.parent;}
 return false;},addNumeric:function(name,numeric){if(!(numeric instanceof tr.v.ScalarNumeric))
@@ -4815,7 +4737,7 @@
 this.numerics[numericName]=MemoryAllocatorDump.aggregateNumerics(this.children.map(function(child){return child.numerics[numericName];}),opt_model);},this);}};MemoryAllocatorDump.aggregateNumerics=function(numerics,opt_model){var shouldLogWarning=!!opt_model;var aggregatedUnit=undefined;var aggregatedValue=0;numerics.forEach(function(numeric){if(numeric===undefined)
 return;var unit=numeric.unit;if(aggregatedUnit===undefined){aggregatedUnit=unit;}else if(aggregatedUnit!==unit){if(shouldLogWarning){opt_model.importWarning({type:'numeric_parse_error',message:'Multiple units provided for numeric: \''+
 aggregatedUnit.unitName+'\' and \''+unit.unitName+'\'.'});shouldLogWarning=false;}
-aggregatedUnit=tr.v.Unit.byName.unitlessNumber_smallerIsBetter;}
+aggregatedUnit=tr.b.Unit.byName.unitlessNumber_smallerIsBetter;}
 aggregatedValue+=numeric.value;},this);if(aggregatedUnit===undefined)
 return undefined;return new tr.v.ScalarNumeric(aggregatedUnit,aggregatedValue);};function MemoryAllocatorDumpLink(source,target,opt_importance){this.source=source;this.target=target;this.importance=opt_importance;this.size=undefined;}
 var MemoryAllocatorDumpInfoType={PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN:0,PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER:1};return{MemoryAllocatorDump:MemoryAllocatorDump,MemoryAllocatorDumpLink:MemoryAllocatorDumpLink,MemoryAllocatorDumpInfoType:MemoryAllocatorDumpInfoType};});'use strict';tr.exportTo('tr.model',function(){function GlobalMemoryDump(model,start){tr.model.ContainerMemoryDump.call(this,start);this.model=model;this.processMemoryDumps={};}
@@ -4830,26 +4752,26 @@
 function optional(value,defaultValue){if(value===undefined)
 return defaultValue;return value;}
 GlobalMemoryDump.prototype={__proto__:tr.model.ContainerMemoryDump.prototype,get userFriendlyName(){return'Global memory dump at '+
-tr.v.Unit.byName.timeStampInMs.format(this.start);},get containerName(){return'global space';},finalizeGraph:function(){this.removeWeakDumps();this.setUpTracingOverheadOwnership();this.aggregateNumerics();this.calculateSizes();this.calculateEffectiveSizes();this.discountTracingOverheadFromVmRegions();this.forceRebuildingMemoryAllocatorDumpByFullNameIndices();},removeWeakDumps:function(){this.traverseAllocatorDumpsInDepthFirstPreOrder(function(dump){if(dump.weak)
+tr.b.Unit.byName.timeStampInMs.format(this.start);},get containerName(){return'global space';},finalizeGraph:function(){this.removeWeakDumps();this.setUpTracingOverheadOwnership();this.aggregateNumerics();this.calculateSizes();this.calculateEffectiveSizes();this.discountTracingOverheadFromVmRegions();this.forceRebuildingMemoryAllocatorDumpByFullNameIndices();},removeWeakDumps:function(){this.traverseAllocatorDumpsInDepthFirstPreOrder(function(dump){if(dump.weak)
 return;if((dump.owns!==undefined&&dump.owns.target.weak)||(dump.parent!==undefined&&dump.parent.weak)){dump.weak=true;}});function removeWeakDumpsFromListRecursively(dumps){inPlaceFilter(dumps,function(dump){if(dump.weak){return false;}
 removeWeakDumpsFromListRecursively(dump.children);inPlaceFilter(dump.ownedBy,function(ownershipLink){return!ownershipLink.source.weak;});return true;});}
 this.iterateContainerDumps(function(containerDump){var memoryAllocatorDumps=containerDump.memoryAllocatorDumps;if(memoryAllocatorDumps!==undefined)
 removeWeakDumpsFromListRecursively(memoryAllocatorDumps);});},calculateSizes:function(){this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateMemoryAllocatorDumpSize_.bind(this));},calculateMemoryAllocatorDumpSize_:function(dump){var shouldDefineSize=false;function getDependencySize(dependencyDump){var numeric=dependencyDump.numerics[SIZE_NUMERIC_NAME];if(numeric===undefined)
 return 0;shouldDefineSize=true;return numeric.value;}
-var sizeNumeric=dump.numerics[SIZE_NUMERIC_NAME];var size=0;var checkDependencySizeIsConsistent=function(){};if(sizeNumeric!==undefined){size=sizeNumeric.value;shouldDefineSize=true;if(sizeNumeric.unit!==tr.v.Unit.byName.sizeInBytes_smallerIsBetter){this.model.importWarning({type:'memory_dump_parse_error',message:'Invalid unit of \'size\' numeric of memory allocator '+'dump '+dump.quantifiedName+': '+
+var sizeNumeric=dump.numerics[SIZE_NUMERIC_NAME];var size=0;var checkDependencySizeIsConsistent=function(){};if(sizeNumeric!==undefined){size=sizeNumeric.value;shouldDefineSize=true;if(sizeNumeric.unit!==tr.b.Unit.byName.sizeInBytes_smallerIsBetter){this.model.importWarning({type:'memory_dump_parse_error',message:'Invalid unit of \'size\' numeric of memory allocator '+'dump '+dump.quantifiedName+': '+
 sizeNumeric.unit.unitName+'.'});}
 checkDependencySizeIsConsistent=function(dependencySize,dependencyInfoType,dependencyName){if(size>=dependencySize)
 return;this.model.importWarning({type:'memory_dump_parse_error',message:'Size provided by memory allocator dump \''+
 dump.fullName+'\''+
-tr.v.Unit.byName.sizeInBytes.format(size)+') is less than '+dependencyName+' ('+
-tr.v.Unit.byName.sizeInBytes.format(dependencySize)+').'});dump.infos.push({type:dependencyInfoType,providedSize:size,dependencySize:dependencySize});}.bind(this);}
+tr.b.Unit.byName.sizeInBytes.format(size)+') is less than '+dependencyName+' ('+
+tr.b.Unit.byName.sizeInBytes.format(dependencySize)+').'});dump.infos.push({type:dependencyInfoType,providedSize:size,dependencySize:dependencySize});}.bind(this);}
 var aggregatedChildrenSize=0;var allOverlaps={};dump.children.forEach(function(childDump){function aggregateDescendantDump(descendantDump){var ownedDumpLink=descendantDump.owns;if(ownedDumpLink!==undefined&&ownedDumpLink.target.isDescendantOf(dump)){var ownedChildDump=ownedDumpLink.target;while(ownedChildDump.parent!==dump)
 ownedChildDump=ownedChildDump.parent;if(childDump!==ownedChildDump){var ownedBySiblingSize=getDependencySize(descendantDump);if(ownedBySiblingSize>0){var previousTotalOwnedBySiblingSize=ownedChildDump.ownedBySiblingSizes.get(childDump)||0;var updatedTotalOwnedBySiblingSize=previousTotalOwnedBySiblingSize+ownedBySiblingSize;ownedChildDump.ownedBySiblingSizes.set(childDump,updatedTotalOwnedBySiblingSize);}}
 return;}
 if(descendantDump.children.length===0){aggregatedChildrenSize+=getDependencySize(descendantDump);return;}
 descendantDump.children.forEach(aggregateDescendantDump);}
 aggregateDescendantDump(childDump);});checkDependencySizeIsConsistent(aggregatedChildrenSize,PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN,'the aggregated size of its children');var largestOwnerSize=0;dump.ownedBy.forEach(function(ownershipLink){var owner=ownershipLink.source;var ownerSize=getDependencySize(owner);largestOwnerSize=Math.max(largestOwnerSize,ownerSize);});checkDependencySizeIsConsistent(largestOwnerSize,PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER,'the size of its largest owner');if(!shouldDefineSize){delete dump.numerics[SIZE_NUMERIC_NAME];return;}
-size=Math.max(size,aggregatedChildrenSize,largestOwnerSize);dump.numerics[SIZE_NUMERIC_NAME]=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,size);if(aggregatedChildrenSize<size&&dump.children!==undefined&&dump.children.length>0){var virtualChild=new tr.model.MemoryAllocatorDump(dump.containerMemoryDump,dump.fullName+'/<unspecified>');virtualChild.parent=dump;dump.children.unshift(virtualChild);virtualChild.numerics[SIZE_NUMERIC_NAME]=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,size-aggregatedChildrenSize);}},calculateEffectiveSizes:function(){this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpSubSizes_.bind(this));this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpOwnershipCoefficient_.bind(this));this.traverseAllocatorDumpsInDepthFirstPreOrder(this.calculateDumpCumulativeOwnershipCoefficient_.bind(this));this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpEffectiveSize_.bind(this));},calculateDumpSubSizes_:function(dump){if(!hasSize(dump))
+size=Math.max(size,aggregatedChildrenSize,largestOwnerSize);dump.numerics[SIZE_NUMERIC_NAME]=new tr.v.ScalarNumeric(tr.b.Unit.byName.sizeInBytes_smallerIsBetter,size);if(aggregatedChildrenSize<size&&dump.children!==undefined&&dump.children.length>0){var virtualChild=new tr.model.MemoryAllocatorDump(dump.containerMemoryDump,dump.fullName+'/<unspecified>');virtualChild.parent=dump;dump.children.unshift(virtualChild);virtualChild.numerics[SIZE_NUMERIC_NAME]=new tr.v.ScalarNumeric(tr.b.Unit.byName.sizeInBytes_smallerIsBetter,size-aggregatedChildrenSize);}},calculateEffectiveSizes:function(){this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpSubSizes_.bind(this));this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpOwnershipCoefficient_.bind(this));this.traverseAllocatorDumpsInDepthFirstPreOrder(this.calculateDumpCumulativeOwnershipCoefficient_.bind(this));this.traverseAllocatorDumpsInDepthFirstPostOrder(this.calculateDumpEffectiveSize_.bind(this));},calculateDumpSubSizes_:function(dump){if(!hasSize(dump))
 return;if(dump.children===undefined||dump.children.length===0){var size=getSize(dump);dump.notOwningSubSize_=size;dump.notOwnedSubSize_=size;return;}
 var notOwningSubSize=0;dump.children.forEach(function(childDump){if(childDump.owns!==undefined)
 return;notOwningSubSize+=optional(childDump.notOwningSubSize_,0);});dump.notOwningSubSize_=notOwningSubSize;var notOwnedSubSize=0;dump.children.forEach(function(childDump){if(childDump.ownedBy.length===0){notOwnedSubSize+=optional(childDump.notOwnedSubSize_,0);return;}
@@ -4868,7 +4790,7 @@
 dump.cumulativeOwningCoefficient_=cumulativeOwningCoefficient;},calculateDumpEffectiveSize_:function(dump){if(!hasSize(dump)){delete dump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME];return;}
 var effectiveSize;if(dump.children===undefined||dump.children.length===0){effectiveSize=getSize(dump)*dump.cumulativeOwningCoefficient_*dump.cumulativeOwnedCoefficient_;}else{effectiveSize=0;dump.children.forEach(function(childDump){if(!hasSize(childDump))
 return;effectiveSize+=childDump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME].value;});}
-dump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME]=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,effectiveSize);},aggregateNumerics:function(){this.iterateRootAllocatorDumps(function(dump){dump.aggregateNumericsRecursively(this.model);});this.iterateRootAllocatorDumps(this.propagateNumericsAndDiagnosticsRecursively);tr.b.iterItems(this.processMemoryDumps,function(pid,processMemoryDump){processMemoryDump.iterateRootAllocatorDumps(function(dump){dump.aggregateNumericsRecursively(this.model);},this);},this);},propagateNumericsAndDiagnosticsRecursively:function(globalAllocatorDump){['numerics','diagnostics'].forEach(function(field){tr.b.iterItems(globalAllocatorDump[field],function(name,value){globalAllocatorDump.ownedBy.forEach(function(ownershipLink){var processAllocatorDump=ownershipLink.source;if(processAllocatorDump[field][name]!==undefined){return;}
+dump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME]=new tr.v.ScalarNumeric(tr.b.Unit.byName.sizeInBytes_smallerIsBetter,effectiveSize);},aggregateNumerics:function(){this.iterateRootAllocatorDumps(function(dump){dump.aggregateNumericsRecursively(this.model);});this.iterateRootAllocatorDumps(this.propagateNumericsAndDiagnosticsRecursively);tr.b.iterItems(this.processMemoryDumps,function(pid,processMemoryDump){processMemoryDump.iterateRootAllocatorDumps(function(dump){dump.aggregateNumericsRecursively(this.model);},this);},this);},propagateNumericsAndDiagnosticsRecursively:function(globalAllocatorDump){['numerics','diagnostics'].forEach(function(field){tr.b.iterItems(globalAllocatorDump[field],function(name,value){globalAllocatorDump.ownedBy.forEach(function(ownershipLink){var processAllocatorDump=ownershipLink.source;if(processAllocatorDump[field][name]!==undefined){return;}
 processAllocatorDump[field][name]=value;});});});globalAllocatorDump.children.forEach(this.propagateNumericsAndDiagnosticsRecursively,this);},setUpTracingOverheadOwnership:function(){tr.b.iterItems(this.processMemoryDumps,function(pid,dump){dump.setUpTracingOverheadOwnership(this.model);},this);},discountTracingOverheadFromVmRegions:function(){tr.b.iterItems(this.processMemoryDumps,function(pid,dump){dump.discountTracingOverheadFromVmRegions(this.model);},this);},forceRebuildingMemoryAllocatorDumpByFullNameIndices:function(){this.iterateContainerDumps(function(containerDump){containerDump.forceRebuildingMemoryAllocatorDumpByFullNameIndex();});},iterateContainerDumps:function(fn){fn.call(this,this);tr.b.iterItems(this.processMemoryDumps,function(pid,processDump){fn.call(this,processDump);},this);},iterateAllRootAllocatorDumps:function(fn){this.iterateContainerDumps(function(containerDump){containerDump.iterateRootAllocatorDumps(fn,this);});},traverseAllocatorDumpsInDepthFirstPostOrder:function(fn){var visitedDumps=new WeakSet();var openDumps=new WeakSet();function visit(dump){if(visitedDumps.has(dump))
 return;if(openDumps.has(dump))
 throw new Error(dump.userFriendlyName+' contains a cycle');openDumps.add(dump);dump.ownedBy.forEach(function(ownershipLink){visit.call(this,ownershipLink.source);},this);dump.children.forEach(visit,this);fn.call(this,dump);visitedDumps.add(dump);openDumps.delete(dump);}
@@ -4876,12 +4798,15 @@
 return;if(dump.owns!==undefined&&!visitedDumps.has(dump.owns.target))
 return;if(dump.parent!==undefined&&!visitedDumps.has(dump.parent))
 return;fn.call(this,dump);visitedDumps.add(dump);dump.ownedBy.forEach(function(ownershipLink){visit.call(this,ownershipLink.source);},this);dump.children.forEach(visit,this);}
-this.iterateAllRootAllocatorDumps(visit);}};tr.model.EventRegistry.register(GlobalMemoryDump,{name:'globalMemoryDump',pluralName:'globalMemoryDumps'});return{GlobalMemoryDump:GlobalMemoryDump};});'use strict';tr.exportTo('tr.model',function(){var InstantEventType={GLOBAL:1,PROCESS:2};function InstantEvent(category,title,colorId,start,args){tr.model.TimedEvent.call(this,start);this.category=category||'';this.title=title;this.colorId=colorId;this.args=args;this.type=undefined;};InstantEvent.prototype={__proto__:tr.model.TimedEvent.prototype};function GlobalInstantEvent(category,title,colorId,start,args){InstantEvent.apply(this,arguments);this.type=InstantEventType.GLOBAL;};GlobalInstantEvent.prototype={__proto__:InstantEvent.prototype,get userFriendlyName(){return'Global instant event '+this.title+' @ '+
-tr.v.Unit.byName.timeStampInMs.format(start);}};function ProcessInstantEvent(category,title,colorId,start,args){InstantEvent.apply(this,arguments);this.type=InstantEventType.PROCESS;};ProcessInstantEvent.prototype={__proto__:InstantEvent.prototype,get userFriendlyName(){return'Process-level instant event '+this.title+' @ '+
-tr.v.Unit.byName.timeStampInMs.format(start);}};tr.model.EventRegistry.register(InstantEvent,{name:'instantEvent',pluralName:'instantEvents'});return{GlobalInstantEvent:GlobalInstantEvent,ProcessInstantEvent:ProcessInstantEvent,InstantEventType:InstantEventType,InstantEvent:InstantEvent};});'use strict';tr.exportTo('tr.model',function(){function CounterSample(series,timestamp,value){tr.model.Event.call(this);this.series_=series;this.timestamp_=timestamp;this.value_=value;}
+this.iterateAllRootAllocatorDumps(visit);}};tr.model.EventRegistry.register(GlobalMemoryDump,{name:'globalMemoryDump',pluralName:'globalMemoryDumps'});return{GlobalMemoryDump:GlobalMemoryDump};});'use strict';tr.exportTo('tr.model',function(){var InstantEventType={GLOBAL:1,PROCESS:2};function InstantEvent(category,title,colorId,start,args){tr.model.TimedEvent.call(this,start);this.category=category||'';this.title=title;this.colorId=colorId;this.args=args;this.type=undefined;}
+InstantEvent.prototype={__proto__:tr.model.TimedEvent.prototype};function GlobalInstantEvent(category,title,colorId,start,args){InstantEvent.apply(this,arguments);this.type=InstantEventType.GLOBAL;}
+GlobalInstantEvent.prototype={__proto__:InstantEvent.prototype,get userFriendlyName(){return'Global instant event '+this.title+' @ '+
+tr.b.Unit.byName.timeStampInMs.format(start);}};function ProcessInstantEvent(category,title,colorId,start,args){InstantEvent.apply(this,arguments);this.type=InstantEventType.PROCESS;}
+ProcessInstantEvent.prototype={__proto__:InstantEvent.prototype,get userFriendlyName(){return'Process-level instant event '+this.title+' @ '+
+tr.b.Unit.byName.timeStampInMs.format(start);}};tr.model.EventRegistry.register(InstantEvent,{name:'instantEvent',pluralName:'instantEvents'});return{GlobalInstantEvent:GlobalInstantEvent,ProcessInstantEvent:ProcessInstantEvent,InstantEventType:InstantEventType,InstantEvent:InstantEvent};});'use strict';tr.exportTo('tr.model',function(){function CounterSample(series,timestamp,value){tr.model.Event.call(this);this.series_=series;this.timestamp_=timestamp;this.value_=value;}
 CounterSample.groupByTimestamp=function(samples){var samplesByTimestamp=tr.b.group(samples,function(sample){return sample.timestamp;});var timestamps=tr.b.dictionaryKeys(samplesByTimestamp);timestamps.sort();var groups=[];for(var i=0;i<timestamps.length;i++){var ts=timestamps[i];var group=samplesByTimestamp[ts];group.sort(function(x,y){return x.series.seriesIndex-y.series.seriesIndex;});groups.push(group);}
 return groups;};CounterSample.prototype={__proto__:tr.model.Event.prototype,get series(){return this.series_;},get timestamp(){return this.timestamp_;},get value(){return this.value_;},set timestamp(timestamp){this.timestamp_=timestamp;},addBoundsToRange:function(range){range.addValue(this.timestamp);},getSampleIndex:function(){return tr.b.findLowIndexInSortedArray(this.series.timestamps,function(x){return x;},this.timestamp_);},get userFriendlyName(){return'Counter sample from '+this.series_.title+' at '+
-tr.v.Unit.byName.timeStampInMs.format(this.timestamp);}};tr.model.EventRegistry.register(CounterSample,{name:'counterSample',pluralName:'counterSamples'});return{CounterSample:CounterSample};});'use strict';tr.exportTo('tr.model',function(){var CounterSample=tr.model.CounterSample;function CounterSeries(name,color){tr.model.EventContainer.call(this);this.name_=name;this.color_=color;this.timestamps_=[];this.samples_=[];this.counter=undefined;this.seriesIndex=undefined;}
+tr.b.Unit.byName.timeStampInMs.format(this.timestamp);}};tr.model.EventRegistry.register(CounterSample,{name:'counterSample',pluralName:'counterSamples'});return{CounterSample:CounterSample};});'use strict';tr.exportTo('tr.model',function(){var CounterSample=tr.model.CounterSample;function CounterSeries(name,color){tr.model.EventContainer.call(this);this.name_=name;this.color_=color;this.timestamps_=[];this.samples_=[];this.counter=undefined;this.seriesIndex=undefined;}
 CounterSeries.prototype={__proto__:tr.model.EventContainer.prototype,get length(){return this.timestamps_.length;},get name(){return this.name_;},get color(){return this.color_;},get samples(){return this.samples_;},get timestamps(){return this.timestamps_;},getSample:function(idx){return this.samples_[idx];},getTimestamp:function(idx){return this.timestamps_[idx];},addCounterSample:function(ts,val){var sample=new CounterSample(this,ts,val);this.addSample(sample);return sample;},addSample:function(sample){this.timestamps_.push(sample.timestamp);this.samples_.push(sample);},getStatistics:function(sampleIndices){var sum=0;var min=Number.MAX_VALUE;var max=-Number.MAX_VALUE;for(var i=0;i<sampleIndices.length;++i){var sample=this.getSample(sampleIndices[i]).value;sum+=sample;min=Math.min(sample,min);max=Math.max(sample,max);}
 return{min:min,max:max,avg:(sum/sampleIndices.length),start:this.getSample(sampleIndices[0]).value,end:this.getSample(sampleIndices.length-1).value};},shiftTimestampsForward:function(amount){for(var i=0;i<this.timestamps_.length;++i){this.timestamps_[i]+=amount;this.samples_[i].timestamp=this.timestamps_[i];}},childEvents:function*(){yield*this.samples_;},childEventContainers:function*(){}};return{CounterSeries:CounterSeries};});'use strict';tr.exportTo('tr.model',function(){function Counter(parent,id,category,name){tr.model.EventContainer.call(this);this.parent_=parent;this.id_=id;this.category_=category||'';this.name_=name;this.series_=[];this.totals=[];}
 Counter.prototype={__proto__:tr.model.EventContainer.prototype,get parent(){return this.parent_;},get id(){return this.id_;},get category(){return this.category_;},get name(){return this.name_;},childEvents:function*(){},childEventContainers:function*(){yield*this.series;},set timestamps(arg){throw new Error('Bad counter API. No cookie.');},set seriesNames(arg){throw new Error('Bad counter API. No cookie.');},set seriesColors(arg){throw new Error('Bad counter API. No cookie.');},set samples(arg){throw new Error('Bad counter API. No cookie.');},addSeries:function(series){series.counter=this;series.seriesIndex=this.series_.length;this.series_.push(series);return series;},getSeries:function(idx){return this.series_[idx];},get series(){return this.series_;},get numSeries(){return this.series_.length;},get numSamples(){if(this.series_.length===0)
@@ -5061,7 +4986,7 @@
 this.threads[tid]=new Thread(this,tid);return this.threads[tid];},getOrCreateCounter:function(cat,name){var id=cat+'.'+name;if(!this.counters[id])
 this.counters[id]=new Counter(this,id,cat,name);return this.counters[id];},getSettingsKey:function(){throw new Error('Not implemented');},createSubSlices:function(){for(var tid in this.threads)
 this.threads[tid].createSubSlices();}};return{ProcessBase:ProcessBase};});'use strict';tr.exportTo('tr.model',function(){var ColorScheme=tr.b.ColorScheme;var Counter=tr.model.Counter;var CpuSlice=tr.model.CpuSlice;function Cpu(kernel,number){if(kernel===undefined||number===undefined)
-throw new Error('Missing arguments');this.kernel=kernel;this.cpuNumber=number;this.slices=[];this.counters={};this.bounds_=new tr.b.Range();this.samples_=undefined;this.lastActiveTimestamp_=undefined;this.lastActiveThread_=undefined;this.lastActiveName_=undefined;this.lastActiveArgs_=undefined;};Cpu.prototype={__proto__:tr.model.EventContainer.prototype,get samples(){return this.samples_;},get userFriendlyName(){return'CPU '+this.cpuNumber;},findTopmostSlicesInThisContainer:function*(eventPredicate,opt_this){for(var s of slices){yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate,opt_this);}},childEvents:function*(){yield*this.slices;if(this.samples_)
+throw new Error('Missing arguments');this.kernel=kernel;this.cpuNumber=number;this.slices=[];this.counters={};this.bounds_=new tr.b.Range();this.samples_=undefined;this.lastActiveTimestamp_=undefined;this.lastActiveThread_=undefined;this.lastActiveName_=undefined;this.lastActiveArgs_=undefined;};Cpu.prototype={__proto__:tr.model.EventContainer.prototype,get samples(){return this.samples_;},get userFriendlyName(){return'CPU '+this.cpuNumber;},findTopmostSlicesInThisContainer:function*(eventPredicate,opt_this){for(var s of this.slices){yield*s.findTopmostSlicesRelativeToThisSlice(eventPredicate,opt_this);}},childEvents:function*(){yield*this.slices;if(this.samples_)
 yield*this.samples_;},childEventContainers:function*(){yield*tr.b.dictionaryValues(this.counters);},getOrCreateCounter:function(cat,name){var id=cat+'.'+name;if(!this.counters[id])
 this.counters[id]=new Counter(this,id,cat,name);return this.counters[id];},getCounter:function(cat,name){var id=cat+'.'+name;if(!this.counters[id])
 return undefined;return this.counters[id];},shiftTimestampsForward:function(amount){for(var sI=0;sI<this.slices.length;sI++)
@@ -5090,7 +5015,7 @@
 this.flowEventsById_[id].push(event);},getFlowEventsWithId:function(id){if(!this.flowEventsById_.hasOwnProperty(id))
 return[];return this.flowEventsById_[id];}};return{ModelIndices:ModelIndices};});'use strict';tr.exportTo('tr.model',function(){function ModelStats(){this.traceEventCountsByKey_=new Map();this.allTraceEventStats_=[];this.traceEventStatsInTimeIntervals_=new Map();this.allTraceEventStatsInTimeIntervals_=[];this.hasEventSizesinBytes_=false;}
 ModelStats.prototype={TIME_INTERVAL_SIZE_IN_MS:100,willProcessBasicTraceEvent:function(phase,category,title,ts,opt_eventSizeinBytes){var key=phase+'/'+category+'/'+title;var eventStats=this.traceEventCountsByKey_.get(key);if(eventStats===undefined){eventStats={phase:phase,category:category,title:title,numEvents:0,totalEventSizeinBytes:0};this.traceEventCountsByKey_.set(key,eventStats);this.allTraceEventStats_.push(eventStats);}
-eventStats.numEvents++;var timeIntervalKey=Math.floor(tr.v.Unit.timestampFromUs(ts)/this.TIME_INTERVAL_SIZE_IN_MS);var eventStatsByTimeInverval=this.traceEventStatsInTimeIntervals_.get(timeIntervalKey);if(eventStatsByTimeInverval===undefined){eventStatsByTimeInverval={timeInterval:timeIntervalKey,numEvents:0,totalEventSizeinBytes:0};this.traceEventStatsInTimeIntervals_.set(timeIntervalKey,eventStatsByTimeInverval);this.allTraceEventStatsInTimeIntervals_.push(eventStatsByTimeInverval);}
+eventStats.numEvents++;var timeIntervalKey=Math.floor(tr.b.Unit.timestampFromUs(ts)/this.TIME_INTERVAL_SIZE_IN_MS);var eventStatsByTimeInverval=this.traceEventStatsInTimeIntervals_.get(timeIntervalKey);if(eventStatsByTimeInverval===undefined){eventStatsByTimeInverval={timeInterval:timeIntervalKey,numEvents:0,totalEventSizeinBytes:0};this.traceEventStatsInTimeIntervals_.set(timeIntervalKey,eventStatsByTimeInverval);this.allTraceEventStatsInTimeIntervals_.push(eventStatsByTimeInverval);}
 eventStatsByTimeInverval.numEvents++;if(opt_eventSizeinBytes!==undefined){this.hasEventSizesinBytes_=true;eventStats.totalEventSizeinBytes+=opt_eventSizeinBytes;eventStatsByTimeInverval.totalEventSizeinBytes+=opt_eventSizeinBytes;}},get allTraceEventStats(){return this.allTraceEventStats_;},get allTraceEventStatsInTimeIntervals(){return this.allTraceEventStatsInTimeIntervals_;},get hasEventSizesinBytes(){return this.hasEventSizesinBytes_;}};return{ModelStats:ModelStats};});'use strict';tr.exportTo('tr.model',function(){function VMRegion(startAddress,sizeInBytes,protectionFlags,mappedFile,byteStats){this.startAddress=startAddress;this.sizeInBytes=sizeInBytes;this.protectionFlags=protectionFlags;this.mappedFile=mappedFile||'';this.byteStats=byteStats||{};};VMRegion.PROTECTION_FLAG_READ=4;VMRegion.PROTECTION_FLAG_WRITE=2;VMRegion.PROTECTION_FLAG_EXECUTE=1;VMRegion.PROTECTION_FLAG_MAYSHARE=128;VMRegion.prototype={get uniqueIdWithinProcess(){return this.mappedFile+'#'+this.startAddress;},get protectionFlagsToString(){if(this.protectionFlags===undefined)
 return undefined;return((this.protectionFlags&VMRegion.PROTECTION_FLAG_READ?'r':'-')+
 (this.protectionFlags&VMRegion.PROTECTION_FLAG_WRITE?'w':'-')+
@@ -5117,8 +5042,9 @@
 this.sizeInBytes=(this.sizeInBytes||0)+regionSizeInBytes;var thisByteStats=this.byteStats;var regionByteStats=region.byteStats;for(var byteStatName in regionByteStats){var regionByteStatValue=regionByteStats[byteStatName];if(regionByteStatValue===undefined)
 continue;thisByteStats[byteStatName]=(thisByteStats[byteStatName]||0)+regionByteStatValue;}}};return{VMRegion:VMRegion,VMRegionClassificationNode:VMRegionClassificationNode};});'use strict';tr.exportTo('tr.model',function(){var DISCOUNTED_ALLOCATOR_NAMES=['winheap','malloc'];var TRACING_OVERHEAD_PATH=['allocated_objects','tracing_overhead'];var SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.SIZE_NUMERIC_NAME;var RESIDENT_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.RESIDENT_SIZE_NUMERIC_NAME;function getSizeNumericValue(dump,sizeNumericName){var sizeNumeric=dump.numerics[sizeNumericName];if(sizeNumeric===undefined)
 return 0;return sizeNumeric.value;}
-function ProcessMemoryDump(globalMemoryDump,process,start){tr.model.ContainerMemoryDump.call(this,start);this.process=process;this.globalMemoryDump=globalMemoryDump;this.totals=undefined;this.vmRegions=undefined;this.heapDumps=undefined;this.tracingOverheadOwnershipSetUp_=false;this.tracingOverheadDiscountedFromVmRegions_=false;};ProcessMemoryDump.prototype={__proto__:tr.model.ContainerMemoryDump.prototype,get userFriendlyName(){return'Process memory dump at '+
-tr.v.Unit.byName.timeStampInMs.format(this.start);},get containerName(){return this.process.userFriendlyName;},get processMemoryDumps(){var dumps={};dumps[this.process.pid]=this;return dumps;},get hasOwnVmRegions(){return this.vmRegions!==undefined;},setUpTracingOverheadOwnership:function(opt_model){if(this.tracingOverheadOwnershipSetUp_)
+function ProcessMemoryDump(globalMemoryDump,process,start){tr.model.ContainerMemoryDump.call(this,start);this.process=process;this.globalMemoryDump=globalMemoryDump;this.totals=undefined;this.vmRegions=undefined;this.heapDumps=undefined;this.tracingOverheadOwnershipSetUp_=false;this.tracingOverheadDiscountedFromVmRegions_=false;}
+ProcessMemoryDump.prototype={__proto__:tr.model.ContainerMemoryDump.prototype,get userFriendlyName(){return'Process memory dump at '+
+tr.b.Unit.byName.timeStampInMs.format(this.start);},get containerName(){return this.process.userFriendlyName;},get processMemoryDumps(){var dumps={};dumps[this.process.pid]=this;return dumps;},get hasOwnVmRegions(){return this.vmRegions!==undefined;},setUpTracingOverheadOwnership:function(opt_model){if(this.tracingOverheadOwnershipSetUp_)
 return;this.tracingOverheadOwnershipSetUp_=true;var tracingDump=this.getMemoryAllocatorDumpByFullName('tracing');if(tracingDump===undefined||tracingDump.owns!==undefined){return;}
 if(tracingDump.owns!==undefined)
 return;var hasDiscountedFromAllocatorDumps=DISCOUNTED_ALLOCATOR_NAMES.some(function(allocatorName){var allocatorDump=this.getMemoryAllocatorDumpByFullName(allocatorName);if(allocatorDump===undefined)
@@ -5158,7 +5084,7 @@
 this.frames[i].addBoundsToRange(this.bounds);for(var i=0;i<this.memoryDumps.length;i++)
 this.memoryDumps[i].addBoundsToRange(this.bounds);for(var i=0;i<this.activities.length;i++)
 this.activities[i].addBoundsToRange(this.bounds);},sortMemoryDumps:function(){this.memoryDumps.sort(function(x,y){return x.start-y.start;});tr.model.ProcessMemoryDump.hookUpMostRecentVmRegionsLinks(this.memoryDumps);}};return{Process:Process};});'use strict';tr.exportTo('tr.model',function(){function Sample(cpu,thread,title,start,leafStackFrame,opt_weight,opt_args){tr.model.TimedEvent.call(this,start);this.title=title;this.cpu=cpu;this.thread=thread;this.leafStackFrame=leafStackFrame;this.weight=opt_weight;this.args=opt_args||{};}
-Sample.prototype={__proto__:tr.model.TimedEvent.prototype,get colorId(){return this.leafStackFrame.colorId;},get stackTrace(){return this.leafStackFrame.stackTrace;},getUserFriendlyStackTrace:function(){return this.leafStackFrame.getUserFriendlyStackTrace();},get userFriendlyName(){return'Sample at '+tr.v.Unit.byName.timeStampInMs.format(this.start);}};tr.model.EventRegistry.register(Sample,{name:'sample',pluralName:'samples'});return{Sample:Sample};});'use strict';tr.exportTo('tr.model',function(){function StackFrame(parentFrame,id,title,colorId,opt_sourceInfo){if(id===undefined)
+Sample.prototype={__proto__:tr.model.TimedEvent.prototype,get colorId(){return this.leafStackFrame.colorId;},get stackTrace(){return this.leafStackFrame.stackTrace;},getUserFriendlyStackTrace:function(){return this.leafStackFrame.getUserFriendlyStackTrace();},get userFriendlyName(){return'Sample at '+tr.b.Unit.byName.timeStampInMs.format(this.start);}};tr.model.EventRegistry.register(Sample,{name:'sample',pluralName:'samples'});return{Sample:Sample};});'use strict';tr.exportTo('tr.model',function(){function StackFrame(parentFrame,id,title,colorId,opt_sourceInfo){if(id===undefined)
 throw new Error('id must be given');this.parentFrame_=parentFrame;this.id=id;this.title_=title;this.colorId=colorId;this.children=[];this.sourceInfo_=opt_sourceInfo;if(this.parentFrame_)
 this.parentFrame_.addChild(this);}
 StackFrame.prototype={get parentFrame(){return this.parentFrame_;},get title(){if(this.sourceInfo_){var src=this.sourceInfo_.toString();return this.title_+(src===''?'':' '+src);}
@@ -5170,7 +5096,7 @@
 throw new Error('omg');this.children.splice(i,1);},removeAllChildren:function(){for(var i=0;i<this.children.length;i++)
 this.children[i].parentFrame_=undefined;this.children.splice(0,this.children.length);},get stackTrace(){var stack=[];var cur=this;while(cur){stack.push(cur);cur=cur.parentFrame;}
 return stack;},getUserFriendlyStackTrace:function(){return this.stackTrace.map(function(x){return x.title;});}};return{StackFrame:StackFrame};});'use strict';tr.exportTo('tr.model.um',function(){function UserModel(parentModel){tr.model.EventContainer.call(this);this.parentModel_=parentModel;this.expectations_=new tr.model.EventSet();}
-UserModel.prototype={__proto__:tr.model.EventContainer.prototype,get stableId(){return'UserModel';},get parentModel(){return this.parentModel_;},sortExpectations:function(){Array.prototype.sort.call(this.expectations_,function(x,y){return x.start-y.start;});},get expectations(){return this.expectations_;},shiftTimestampsForward:function(amount){},addCategoriesToDict:function(categoriesDict){},childEvents:function*(){yield*this.expectations;},childEventContainers:function*(){},updateBounds:function(){this.bounds.reset();this.expectations.forEach(function(expectation){expectation.addBoundsToRange(this.bounds);},this);}};return{UserModel:UserModel};});'use strict';tr.exportTo('tr',function(){var Process=tr.model.Process;var Device=tr.model.Device;var Kernel=tr.model.Kernel;var GlobalMemoryDump=tr.model.GlobalMemoryDump;var GlobalInstantEvent=tr.model.GlobalInstantEvent;var FlowEvent=tr.model.FlowEvent;var Alert=tr.model.Alert;var Sample=tr.model.Sample;function Model(){tr.model.EventContainer.call(this);tr.b.EventTarget.decorate(this);this.timestampShiftToZeroAmount_=0;this.faviconHue='blue';this.device=new Device(this);this.kernel=new Kernel(this);this.processes={};this.metadata=[];this.categories=[];this.instantEvents=[];this.flowEvents=[];this.clockSyncManager=new tr.model.ClockSyncManager();this.intrinsicTimeUnit_=undefined;this.stackFrames={};this.samples=[];this.alerts=[];this.userModel=new tr.model.um.UserModel(this);this.flowIntervalTree=new tr.b.IntervalTree((f)=>f.start,(f)=>f.end);this.globalMemoryDumps=[];this.userFriendlyCategoryDrivers_=[];this.annotationsByGuid_={};this.modelIndices=undefined;this.stats=new tr.model.ModelStats();this.importWarnings_=[];this.reportedImportWarnings_={};this.isTimeHighResolution_=true;this.patchupsToApply_=[];this.doesHelperGUIDSupportThisModel_={};this.helpersByConstructorGUID_={};this.eventsByStableId_=undefined;}
+UserModel.prototype={__proto__:tr.model.EventContainer.prototype,get stableId(){return'UserModel';},get parentModel(){return this.parentModel_;},sortExpectations:function(){this.expectations_.sortEvents((x,y)=>(x.start-y.start));},get expectations(){return this.expectations_;},shiftTimestampsForward:function(amount){},addCategoriesToDict:function(categoriesDict){},childEvents:function*(){yield*this.expectations;},childEventContainers:function*(){},updateBounds:function(){this.bounds.reset();this.expectations.forEach(function(expectation){expectation.addBoundsToRange(this.bounds);},this);}};return{UserModel:UserModel};});'use strict';tr.exportTo('tr',function(){var Process=tr.model.Process;var Device=tr.model.Device;var Kernel=tr.model.Kernel;var GlobalMemoryDump=tr.model.GlobalMemoryDump;var GlobalInstantEvent=tr.model.GlobalInstantEvent;var FlowEvent=tr.model.FlowEvent;var Alert=tr.model.Alert;var Sample=tr.model.Sample;function Model(){tr.model.EventContainer.call(this);tr.b.EventTarget.decorate(this);this.timestampShiftToZeroAmount_=0;this.faviconHue='blue';this.device=new Device(this);this.kernel=new Kernel(this);this.processes={};this.metadata=[];this.categories=[];this.instantEvents=[];this.flowEvents=[];this.clockSyncManager=new tr.model.ClockSyncManager();this.intrinsicTimeUnit_=undefined;this.stackFrames={};this.samples=[];this.alerts=[];this.userModel=new tr.model.um.UserModel(this);this.flowIntervalTree=new tr.b.IntervalTree((f)=>f.start,(f)=>f.end);this.globalMemoryDumps=[];this.userFriendlyCategoryDrivers_=[];this.annotationsByGuid_={};this.modelIndices=undefined;this.stats=new tr.model.ModelStats();this.importWarnings_=[];this.reportedImportWarnings_={};this.isTimeHighResolution_=true;this.patchupsToApply_=[];this.doesHelperGUIDSupportThisModel_={};this.helpersByConstructorGUID_={};this.eventsByStableId_=undefined;}
 Model.prototype={__proto__:tr.model.EventContainer.prototype,getEventByStableId:function(stableId){if(this.eventsByStableId_===undefined){this.eventsByStableId_={};for(var event of this.getDescendantEvents()){this.eventsByStableId_[event.stableId]=event;}}
 return this.eventsByStableId_[stableId];},getOrCreateHelper:function(constructor){if(!constructor.guid)
 throw new Error('Helper constructors must have GUIDs');if(this.helpersByConstructorGUID_[constructor.guid]===undefined){if(this.doesHelperGUIDSupportThisModel_[constructor.guid]===undefined){this.doesHelperGUIDSupportThisModel_[constructor.guid]=constructor.supportsModel(this);}
@@ -5182,7 +5108,7 @@
 event.addBoundsToRange(bounds);},shiftWorldToZero:function(){var shiftAmount=-this.bounds.min;this.timestampShiftToZeroAmount_=shiftAmount;for(var ec of this.childEventContainers())
 ec.shiftTimestampsForward(shiftAmount);for(var event of this.childEvents())
 event.start+=shiftAmount;this.updateBounds();},convertTimestampToModelTime:function(sourceClockDomainName,ts){if(sourceClockDomainName!=='traceEventClock')
-throw new Error('Only traceEventClock is supported.');return tr.v.Unit.timestampFromUs(ts)+
+throw new Error('Only traceEventClock is supported.');return tr.b.Unit.timestampFromUs(ts)+
 this.timestampShiftToZeroAmount_;},get numProcesses(){var n=0;for(var p in this.processes)
 n++;return n;},getProcess:function(pid){return this.processes[pid];},getOrCreateProcess:function(pid){if(!this.processes[pid])
 this.processes[pid]=new Process(this,pid);return this.processes[pid];},addStackFrame:function(stackFrame){if(this.stackFrames[stackFrame.id])
@@ -5199,7 +5125,7 @@
 return ufc;}
 return undefined;},findAllThreadsNamed:function(name){var namedThreads=[];namedThreads.push.apply(namedThreads,this.kernel.findAllThreadsNamed(name));for(var pid in this.processes){namedThreads.push.apply(namedThreads,this.processes[pid].findAllThreadsNamed(name));}
 return namedThreads;},get importOptions(){return this.importOptions_;},set importOptions(options){this.importOptions_=options;},get intrinsicTimeUnit(){if(this.intrinsicTimeUnit_===undefined)
-return tr.v.TimeDisplayModes.ms;return this.intrinsicTimeUnit_;},set intrinsicTimeUnit(value){if(this.intrinsicTimeUnit_===value)
+return tr.b.TimeDisplayModes.ms;return this.intrinsicTimeUnit_;},set intrinsicTimeUnit(value){if(this.intrinsicTimeUnit_===value)
 return;if(this.intrinsicTimeUnit_!==undefined)
 throw new Error('Intrinsic time unit already set');this.intrinsicTimeUnit_=value;},get isTimeHighResolution(){return this.isTimeHighResolution_;},set isTimeHighResolution(value){this.isTimeHighResolution_=value;},get canonicalUrl(){return this.canonicalUrl_;},set canonicalUrl(value){if(this.canonicalUrl_===value)
 return;if(this.canonicalUrl_!==undefined)
@@ -5319,11 +5245,11 @@
 try{var fields=this.csvParser_.parseLine(line);this.dispatchLogRow_(fields);}catch(e){this.printError('line '+(this.lineNum_+1)+': '+
 (e.message||e));}}};return{LogReader:LogReader};});'use strict';tr.exportTo('tr.e.importer.v8',function(){var CodeEntry=tr.e.importer.v8.CodeMap.CodeEntry;var CodeMap=tr.e.importer.v8.CodeMap;var ColorScheme=tr.b.ColorScheme;var DynamicFuncCodeEntry=tr.e.importer.v8.CodeMap.DynamicFuncCodeEntry;var FunctionEntry=tr.e.importer.v8.CodeMap.FunctionEntry;function V8LogImporter(model,eventData){this.importPriority=3;this.model_=model;this.logData_=eventData;this.code_map_=new CodeMap();this.v8_timer_thread_=undefined;this.v8_thread_=undefined;this.root_stack_frame_=new tr.model.StackFrame(undefined,'v8-root-stack-frame','v8-root-stack-frame',0);this.v8_stack_timeline_=new Array();}
 var kV8BinarySuffixes=['/d8','/libv8.so'];var TimerEventDefaultArgs={'V8.Execute':{pause:false,no_execution:false},'V8.External':{pause:false,no_execution:true},'V8.CompileFullCode':{pause:true,no_execution:true},'V8.RecompileSynchronous':{pause:true,no_execution:true},'V8.RecompileParallel':{pause:false,no_execution:false},'V8.CompileEval':{pause:true,no_execution:true},'V8.Parse':{pause:true,no_execution:true},'V8.PreParse':{pause:true,no_execution:true},'V8.ParseLazy':{pause:true,no_execution:true},'V8.GCScavenger':{pause:true,no_execution:true},'V8.GCCompactor':{pause:true,no_execution:true},'V8.GCContext':{pause:true,no_execution:true}};V8LogImporter.canImport=function(eventData){if(typeof(eventData)!=='string'&&!(eventData instanceof String))
-return false;return eventData.substring(0,11)=='v8-version,'||eventData.substring(0,12)=='timer-event,'||eventData.substring(0,5)=='tick,'||eventData.substring(0,15)=='shared-library,'||eventData.substring(0,9)=='profiler,'||eventData.substring(0,14)=='code-creation,';};V8LogImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'V8LogImporter';},processTimerEvent_:function(name,start,length){var args=TimerEventDefaultArgs[name];if(args===undefined)return;start/=1000;length/=1000;var colorId=ColorScheme.getColorIdForGeneralPurposeString(name);var slice=new tr.model.ThreadSlice('v8',name,colorId,start,args,length);this.v8_timer_thread_.sliceGroup.pushSlice(slice);},processTimerEventStart_:function(name,start){var args=TimerEventDefaultArgs[name];if(args===undefined)return;start/=1000;this.v8_timer_thread_.sliceGroup.beginSlice('v8',name,start,args);},processTimerEventEnd_:function(name,end){end/=1000;this.v8_timer_thread_.sliceGroup.endSlice(end);},processCodeCreateEvent_:function(type,kind,address,size,name,maybe_func){function parseState(s){switch(s){case'':return CodeMap.CodeState.COMPILED;case'~':return CodeMap.CodeState.OPTIMIZABLE;case'*':return CodeMap.CodeState.OPTIMIZED;}
+return false;return eventData.substring(0,11)=='v8-version,'||eventData.substring(0,12)=='timer-event,'||eventData.substring(0,5)=='tick,'||eventData.substring(0,15)=='shared-library,'||eventData.substring(0,9)=='profiler,'||eventData.substring(0,14)=='code-creation,';};V8LogImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'V8LogImporter';},processTimerEvent_:function(name,startInUs,lengthInUs){var args=TimerEventDefaultArgs[name];if(args===undefined)return;var startInMs=tr.b.convertUnit(startInUs,tr.b.UnitScale.Metric.MICRO,tr.b.UnitScale.Metric.MILLI);var lengthInMs=tr.b.convertUnit(lengthInUs,tr.b.UnitScale.Metric.MICRO,tr.b.UnitScale.Metric.MILLI);var colorId=ColorScheme.getColorIdForGeneralPurposeString(name);var slice=new tr.model.ThreadSlice('v8',name,colorId,startInMs,args,lengthInMs);this.v8_timer_thread_.sliceGroup.pushSlice(slice);},processTimerEventStart_:function(name,startInUs){var args=TimerEventDefaultArgs[name];if(args===undefined)return;var startInMs=tr.b.convertUnit(startInUs,tr.b.UnitScale.Metric.MICRO,tr.b.UnitScale.Metric.MILLI);this.v8_timer_thread_.sliceGroup.beginSlice('v8',name,startInMs,args);},processTimerEventEnd_:function(name,endInUs){var endInMs=tr.b.convertUnit(endInUs,tr.b.UnitScale.Metric.MICRO,tr.b.UnitScale.Metric.MILLI);this.v8_timer_thread_.sliceGroup.endSlice(endInMs);},processCodeCreateEvent_:function(type,kind,address,size,name,maybe_func){function parseState(s){switch(s){case'':return CodeMap.CodeState.COMPILED;case'~':return CodeMap.CodeState.OPTIMIZABLE;case'*':return CodeMap.CodeState.OPTIMIZED;}
 throw new Error('unknown code state: '+s);}
 if(maybe_func.length){var funcAddr=parseInt(maybe_func[0]);var state=parseState(maybe_func[1]);var func=this.code_map_.findDynamicEntryByStartAddress(funcAddr);if(!func){func=new FunctionEntry(name);func.kind=kind;this.code_map_.addCode(funcAddr,func);}else if(func.name!==name){func.name=name;}
 var entry=this.code_map_.findDynamicEntryByStartAddress(address);if(entry){if(entry.size===size&&entry.func===func){entry.state=state;}}else{entry=new DynamicFuncCodeEntry(size,type,func,state);entry.kind=kind;this.code_map_.addCode(address,entry);}}else{var code_entry=new CodeEntry(size,name);code_entry.kind=kind;this.code_map_.addCode(address,code_entry);}},processCodeMoveEvent_:function(from,to){this.code_map_.moveCode(from,to);},processCodeDeleteEvent_:function(address){this.code_map_.deleteCode(address);},processSharedLibrary_:function(name,start,end){var code_entry=new CodeEntry(end-start,name,CodeEntry.TYPE.SHARED_LIB);code_entry.kind=-3;for(var i=0;i<kV8BinarySuffixes.length;i++){var suffix=kV8BinarySuffixes[i];if(name.indexOf(suffix,name.length-suffix.length)>=0){code_entry.kind=-1;break;}}
-this.code_map_.addLibrary(start,code_entry);},processCppSymbol_:function(address,size,name){var code_entry=new CodeEntry(size,name,CodeEntry.TYPE.CPP);code_entry.kind=-1;this.code_map_.addStaticCode(address,code_entry);},processTickEvent_:function(pc,start,is_external_callback,tos_or_external_callback,vmstate,stack){start/=1000;function findChildWithEntryID(stackFrame,entryID){for(var i=0;i<stackFrame.children.length;i++){if(stackFrame.children[i].entryID==entryID)
+this.code_map_.addLibrary(start,code_entry);},processCppSymbol_:function(address,size,name){var code_entry=new CodeEntry(size,name,CodeEntry.TYPE.CPP);code_entry.kind=-1;this.code_map_.addStaticCode(address,code_entry);},processTickEvent_:function(pc,startInUs,is_external_callback,tos_or_external_callback,vmstate,stack){var startInMs=tr.b.convertUnit(startInUs,tr.b.UnitScale.Metric.MICRO,tr.b.UnitScale.Metric.MILLI);function findChildWithEntryID(stackFrame,entryID){for(var i=0;i<stackFrame.children.length;i++){if(stackFrame.children[i].entryID==entryID)
 return stackFrame.children[i];}
 return undefined;}
 function processStack(pc,func,stack){var fullStack=func?[pc,func]:[pc];var prevFrame=pc;for(var i=0,n=stack.length;i<n;++i){var frame=stack[i];var firstChar=frame.charAt(0);if(firstChar==='+'||firstChar==='-'){prevFrame+=parseInt(frame,16);fullStack.push(prevFrame);}else if(firstChar!=='o'){fullStack.push(parseInt(frame,16));}}
@@ -5335,7 +5261,7 @@
 var sourceInfo=undefined;if(entry&&entry.type===CodeEntry.TYPE.CPP){var libEntry=this.code_map_.findEntryInLibraries(frame);if(libEntry)
 sourceInfo=libEntry.name;}
 var entryID=entry?entry.id:'Unknown';var childFrame=findChildWithEntryID(lastStackFrame,entryID);if(childFrame===undefined){var entryName=entry?entry.name:'Unknown';lastStackFrame=new tr.model.StackFrame(lastStackFrame,'v8sf-'+tr.b.GUID.allocateSimple(),entryName,ColorScheme.getColorIdForGeneralPurposeString(entryName),sourceInfo);lastStackFrame.entryID=entryID;this.model_.addStackFrame(lastStackFrame);}else{lastStackFrame=childFrame;}}
-if(lastStackFrame!==this.root_stack_frame_){var sample=new tr.model.Sample(undefined,this.v8_thread_,'V8 PC',start,lastStackFrame,1);this.model_.samples.push(sample);}},processDistortion_:function(distortion_in_picoseconds){},processPlotRange_:function(start,end){},processV8Version_:function(major,minor,build,patch,candidate){},importEvents:function(){var logreader=new tr.e.importer.v8.LogReader({'timer-event':{parsers:[null,parseInt,parseInt],processor:this.processTimerEvent_.bind(this)},'shared-library':{parsers:[null,parseInt,parseInt],processor:this.processSharedLibrary_.bind(this)},'timer-event-start':{parsers:[null,parseInt],processor:this.processTimerEventStart_.bind(this)},'timer-event-end':{parsers:[null,parseInt],processor:this.processTimerEventEnd_.bind(this)},'code-creation':{parsers:[null,parseInt,parseInt,parseInt,null,'var-args'],processor:this.processCodeCreateEvent_.bind(this)},'code-move':{parsers:[parseInt,parseInt],processor:this.processCodeMoveEvent_.bind(this)},'code-delete':{parsers:[parseInt],processor:this.processCodeDeleteEvent_.bind(this)},'cpp':{parsers:[parseInt,parseInt,null],processor:this.processCppSymbol_.bind(this)},'tick':{parsers:[parseInt,parseInt,parseInt,parseInt,parseInt,'var-args'],processor:this.processTickEvent_.bind(this)},'distortion':{parsers:[parseInt],processor:this.processDistortion_.bind(this)},'plot-range':{parsers:[parseInt,parseInt],processor:this.processPlotRange_.bind(this)},'v8-version':{parsers:[parseInt,parseInt,parseInt,parseInt,parseInt],processor:this.processV8Version_.bind(this)}});this.v8_timer_thread_=this.model_.getOrCreateProcess(-32).getOrCreateThread(1);this.v8_timer_thread_.name='V8 Timers';this.v8_thread_=this.model_.getOrCreateProcess(-32).getOrCreateThread(2);this.v8_thread_.name='V8';var lines=this.logData_.split('\n');for(var i=0;i<lines.length;i++){logreader.processLogLine(lines[i]);}
+if(lastStackFrame!==this.root_stack_frame_){var sample=new tr.model.Sample(undefined,this.v8_thread_,'V8 PC',startInMs,lastStackFrame,1);this.model_.samples.push(sample);}},processDistortion_:function(distortion_in_picoseconds){},processPlotRange_:function(start,end){},processV8Version_:function(major,minor,build,patch,candidate){},importEvents:function(){var logreader=new tr.e.importer.v8.LogReader({'timer-event':{parsers:[null,parseInt,parseInt],processor:this.processTimerEvent_.bind(this)},'shared-library':{parsers:[null,parseInt,parseInt],processor:this.processSharedLibrary_.bind(this)},'timer-event-start':{parsers:[null,parseInt],processor:this.processTimerEventStart_.bind(this)},'timer-event-end':{parsers:[null,parseInt],processor:this.processTimerEventEnd_.bind(this)},'code-creation':{parsers:[null,parseInt,parseInt,parseInt,null,'var-args'],processor:this.processCodeCreateEvent_.bind(this)},'code-move':{parsers:[parseInt,parseInt],processor:this.processCodeMoveEvent_.bind(this)},'code-delete':{parsers:[parseInt],processor:this.processCodeDeleteEvent_.bind(this)},'cpp':{parsers:[parseInt,parseInt,null],processor:this.processCppSymbol_.bind(this)},'tick':{parsers:[parseInt,parseInt,parseInt,parseInt,parseInt,'var-args'],processor:this.processTickEvent_.bind(this)},'distortion':{parsers:[parseInt],processor:this.processDistortion_.bind(this)},'plot-range':{parsers:[parseInt,parseInt],processor:this.processPlotRange_.bind(this)},'v8-version':{parsers:[parseInt,parseInt,parseInt,parseInt,parseInt],processor:this.processV8Version_.bind(this)}});this.v8_timer_thread_=this.model_.getOrCreateProcess(-32).getOrCreateThread(1);this.v8_timer_thread_.name='V8 Timers';this.v8_thread_=this.model_.getOrCreateProcess(-32).getOrCreateThread(2);this.v8_thread_.name='V8';var lines=this.logData_.split('\n');for(var i=0;i<lines.length;i++){logreader.processLogLine(lines[i]);}
 this.root_stack_frame_.removeAllChildren();function addSlices(slices,thread){for(var i=0;i<slices.length;i++){var duration=slices[i].end-slices[i].start;var slice=new tr.model.ThreadSlice('v8',slices[i].name,ColorScheme.getColorIdForGeneralPurposeString(slices[i].name),slices[i].start,{},duration);thread.sliceGroup.pushSlice(slice);addSlices(slices[i].children,thread);}}
 addSlices(this.v8_stack_timeline_,this.v8_thread_);}};tr.importer.Importer.register(V8LogImporter);return{V8LogImporter:V8LogImporter};});'use strict';tr.exportTo('tr.e.importer',function(){function ZipImporter(model,eventData){if(eventData instanceof ArrayBuffer)
 eventData=new Uint8Array(eventData);this.model_=model;this.eventData_=eventData;}
@@ -5417,13 +5343,13 @@
 XMarkerAnnotation.fromDict=function(dict){return new XMarkerAnnotation(dict.args.timestamp);}
 XMarkerAnnotation.prototype={__proto__:tr.model.Annotation.prototype,toDict:function(){return{typeName:'xmarker',args:{timestamp:this.timestamp}};},createView_:function(viewport){return new tr.ui.annotations.XMarkerAnnotationView(viewport,this);}};tr.model.Annotation.register(XMarkerAnnotation,{typeName:'xmarker'});return{XMarkerAnnotation:XMarkerAnnotation};});'use strict';tr.exportTo('tr.e.importer',function(){var Base64=tr.b.Base64;var deepCopy=tr.b.deepCopy;var ColorScheme=tr.b.ColorScheme;function getEventColor(event,opt_customName){if(event.cname)
 return ColorScheme.getColorIdForReservedName(event.cname);else if(opt_customName||event.name){return ColorScheme.getColorIdForGeneralPurposeString(opt_customName||event.name);}}
-var timestampFromUs=tr.v.Unit.timestampFromUs;var maybeTimestampFromUs=tr.v.Unit.maybeTimestampFromUs;var PRODUCER='producer';var CONSUMER='consumer';var STEP='step';var BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;var LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;var DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;var MEMORY_DUMP_LEVEL_OF_DETAIL_ORDER=[undefined,BACKGROUND,LIGHT,DETAILED];var GLOBAL_MEMORY_ALLOCATOR_DUMP_PREFIX='global/';var BYTE_STAT_NAME_MAP={'pc':'privateCleanResident','pd':'privateDirtyResident','sc':'sharedCleanResident','sd':'sharedDirtyResident','pss':'proportionalResident','sw':'swapped'};var WEAK_MEMORY_ALLOCATOR_DUMP_FLAG=1<<0;var OBJECT_TYPE_NAME_PATTERNS=[{prefix:'const char *WTF::getStringWithTypeName() [T = ',suffix:']'},{prefix:'const char* WTF::getStringWithTypeName() [with T = ',suffix:']'},{prefix:'const char *__cdecl WTF::getStringWithTypeName<',suffix:'>(void)'}];var SUBTRACE_FIELDS=new Set(['powerTraceAsString','systemTraceEvents',]);var NON_METADATA_FIELDS=new Set(['samples','stackFrames','traceAnnotations','traceEvents']);for(var subtraceField in SUBTRACE_FIELDS)
-NON_METADATA_FIELDS.add(subtraceField);function TraceEventImporter(model,eventData){this.importPriority=1;this.model_=model;this.events_=undefined;this.sampleEvents_=undefined;this.stackFrameEvents_=undefined;this.subtraces_=[];this.eventsWereFromString_=false;this.softwareMeasuredCpuCount_=undefined;this.allAsyncEvents_=[];this.allFlowEvents_=[];this.allObjectEvents_=[];this.contextProcessorPerThread={};this.traceEventSampleStackFramesByName_={};this.v8ProcessCodeMaps_={};this.v8ProcessRootStackFrame_={};this.v8SamplingData_=[];this.allMemoryDumpEvents_={};this.objectTypeNameMap_={};this.clockDomainId_=tr.model.ClockDomainId.UNKNOWN_CHROME_LEGACY;if(typeof(eventData)==='string'||eventData instanceof String){eventData=eventData.trim();if(eventData[0]==='['){eventData=eventData.replace(/\s*,\s*$/,'');if(eventData[eventData.length-1]!==']')
+var PRODUCER='producer';var CONSUMER='consumer';var STEP='step';var BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;var LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;var DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;var MEMORY_DUMP_LEVEL_OF_DETAIL_ORDER=[undefined,BACKGROUND,LIGHT,DETAILED];var GLOBAL_MEMORY_ALLOCATOR_DUMP_PREFIX='global/';var ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX='ClockSyncEvent.';var BYTE_STAT_NAME_MAP={'pc':'privateCleanResident','pd':'privateDirtyResident','sc':'sharedCleanResident','sd':'sharedDirtyResident','pss':'proportionalResident','sw':'swapped'};var WEAK_MEMORY_ALLOCATOR_DUMP_FLAG=1<<0;var OBJECT_TYPE_NAME_PATTERNS=[{prefix:'const char *WTF::getStringWithTypeName() [T = ',suffix:']'},{prefix:'const char* WTF::getStringWithTypeName() [with T = ',suffix:']'},{prefix:'const char *__cdecl WTF::getStringWithTypeName<',suffix:'>(void)'}];var SUBTRACE_FIELDS=new Set(['powerTraceAsString','systemTraceEvents',]);var NON_METADATA_FIELDS=new Set(['samples','stackFrames','traceAnnotations','traceEvents']);for(var subtraceField in SUBTRACE_FIELDS)
+NON_METADATA_FIELDS.add(subtraceField);function TraceEventImporter(model,eventData){this.importPriority=1;this.model_=model;this.events_=undefined;this.sampleEvents_=undefined;this.stackFrameEvents_=undefined;this.subtraces_=[];this.eventsWereFromString_=false;this.softwareMeasuredCpuCount_=undefined;this.allAsyncEvents_=[];this.allFlowEvents_=[];this.allObjectEvents_=[];this.contextProcessorPerThread={};this.traceEventSampleStackFramesByName_={};this.v8ProcessCodeMaps_={};this.v8ProcessRootStackFrame_={};this.v8SamplingData_=[];this.asyncClockSyncStart_=undefined;this.asyncClockSyncFinish_=undefined;this.allMemoryDumpEvents_={};this.objectTypeNameMap_={};this.clockDomainId_=tr.model.ClockDomainId.UNKNOWN_CHROME_LEGACY;this.toModelTime_=undefined;if(typeof(eventData)==='string'||eventData instanceof String){eventData=eventData.trim();if(eventData[0]==='['){eventData=eventData.replace(/\s*,\s*$/,'');if(eventData[eventData.length-1]!==']')
 eventData=eventData+']';}
 this.events_=JSON.parse(eventData);this.eventsWereFromString_=true;}else{this.events_=eventData;}
 this.traceAnnotations_=this.events_.traceAnnotations;if(this.events_.traceEvents){var container=this.events_;this.events_=this.events_.traceEvents;for(var subtraceField of SUBTRACE_FIELDS)
 if(container[subtraceField])
-this.subtraces_.push(container[subtraceField]);this.sampleEvents_=container.samples;this.stackFrameEvents_=container.stackFrames;if(container.displayTimeUnit){var unitName=container.displayTimeUnit;var unit=tr.v.TimeDisplayModes[unitName];if(unit===undefined){throw new Error('Unit '+unitName+' is not supported.');}
+this.subtraces_.push(container[subtraceField]);this.sampleEvents_=container.samples;this.stackFrameEvents_=container.stackFrames;if(container.displayTimeUnit){var unitName=container.displayTimeUnit;var unit=tr.b.TimeDisplayModes[unitName];if(unit===undefined){throw new Error('Unit '+unitName+' is not supported.');}
 this.model_.intrinsicTimeUnit=unit;}
 for(var fieldName in container){if(NON_METADATA_FIELDS.has(fieldName))
 continue;this.model_.metadata.push({name:fieldName,value:container[fieldName]});if(fieldName==='metadata'){var metadata=container[fieldName];if(metadata['highres-ticks'])
@@ -5441,12 +5367,12 @@
 ctr_name=event.name+'['+event.id+']';else
 ctr_name=event.name;var ctr=this.model_.getOrCreateProcess(event.pid).getOrCreateCounter(event.cat,ctr_name);var reservedColorId=event.cname?getEventColor(event):undefined;if(ctr.numSeries===0){for(var seriesName in event.args){var colorId=reservedColorId||getEventColor(event,ctr.name+'.'+seriesName);ctr.addSeries(new tr.model.CounterSeries(seriesName,colorId));}
 if(ctr.numSeries===0){this.model_.importWarning({type:'counter_parse_error',message:'Expected counter '+event.name+' to have at least one argument to use as a value.'});delete ctr.parent.counters[ctr.name];return;}}
-var ts=timestampFromUs(event.ts);ctr.series.forEach(function(series){var val=event.args[series.name]?event.args[series.name]:0;series.addCounterSample(ts,val);});},scopedIdForEvent_:function(event){return new tr.model.ScopedId(event.scope||tr.model.OBJECT_DEFAULT_SCOPE,event.id);},processObjectEvent:function(event){var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);this.allObjectEvents_.push({sequenceNumber:this.allObjectEvents_.length,event:event,thread:thread});if(thread.guid in this.contextProcessorPerThread){var processor=this.contextProcessorPerThread[thread.guid];var scopedId=this.scopedIdForEvent_(event);if(event.ph==='D')
+var ts=this.toModelTimeFromUs_(event.ts);ctr.series.forEach(function(series){var val=event.args[series.name]?event.args[series.name]:0;series.addCounterSample(ts,val);});},scopedIdForEvent_:function(event){return new tr.model.ScopedId(event.scope||tr.model.OBJECT_DEFAULT_SCOPE,event.id);},processObjectEvent:function(event){var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);this.allObjectEvents_.push({sequenceNumber:this.allObjectEvents_.length,event:event,thread:thread});if(thread.guid in this.contextProcessorPerThread){var processor=this.contextProcessorPerThread[thread.guid];var scopedId=this.scopedIdForEvent_(event);if(event.ph==='D')
 processor.destroyContext(scopedId);processor.invalidateContextCacheForSnapshot(scopedId);}},processContextEvent:function(event){var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);if(!(thread.guid in this.contextProcessorPerThread)){this.contextProcessorPerThread[thread.guid]=new tr.importer.ContextProcessor(this.model_);}
-var scopedId=this.scopedIdForEvent_(event);var contextType=event.name;var processor=this.contextProcessorPerThread[thread.guid];if(event.ph==='('){processor.enterContext(contextType,scopedId);}else if(event.ph===')'){processor.leaveContext(contextType,scopedId);}else{this.model_.importWarning({type:'unknown_context_phase',message:'Unknown context event phase: '+event.ph+'.'});}},setContextsFromThread_:function(thread,slice){if(thread.guid in this.contextProcessorPerThread){slice.contexts=this.contextProcessorPerThread[thread.guid].activeContexts;}},processDurationEvent:function(event){var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);var ts=timestampFromUs(event.ts);if(!thread.sliceGroup.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'duration_parse_error',message:'Timestamps are moving backward.'});return;}
-if(event.ph==='B'){var slice=thread.sliceGroup.beginSlice(event.cat,event.name,timestampFromUs(event.ts),this.deepCopyIfNeeded_(event.args),timestampFromUs(event.tts),event.argsStripped,getEventColor(event));slice.startStackFrame=this.getStackFrameForEvent_(event);this.setContextsFromThread_(thread,slice);}else if(event.ph==='I'||event.ph==='i'||event.ph==='R'){if(event.s!==undefined&&event.s!=='t')
-throw new Error('This should never happen');thread.sliceGroup.beginSlice(event.cat,event.name,timestampFromUs(event.ts),this.deepCopyIfNeeded_(event.args),timestampFromUs(event.tts),event.argsStripped,getEventColor(event));var slice=thread.sliceGroup.endSlice(timestampFromUs(event.ts),timestampFromUs(event.tts));slice.startStackFrame=this.getStackFrameForEvent_(event);slice.endStackFrame=undefined;}else{if(!thread.sliceGroup.openSliceCount){this.model_.importWarning({type:'duration_parse_error',message:'E phase event without a matching B phase event.'});return;}
-var slice=thread.sliceGroup.endSlice(timestampFromUs(event.ts),timestampFromUs(event.tts),getEventColor(event));if(event.name&&slice.title!=event.name){this.model_.importWarning({type:'title_match_error',message:'Titles do not match. Title is '+
+var scopedId=this.scopedIdForEvent_(event);var contextType=event.name;var processor=this.contextProcessorPerThread[thread.guid];if(event.ph==='('){processor.enterContext(contextType,scopedId);}else if(event.ph===')'){processor.leaveContext(contextType,scopedId);}else{this.model_.importWarning({type:'unknown_context_phase',message:'Unknown context event phase: '+event.ph+'.'});}},setContextsFromThread_:function(thread,slice){if(thread.guid in this.contextProcessorPerThread){slice.contexts=this.contextProcessorPerThread[thread.guid].activeContexts;}},processDurationEvent:function(event){var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);var ts=this.toModelTimeFromUs_(event.ts);if(!thread.sliceGroup.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'duration_parse_error',message:'Timestamps are moving backward.'});return;}
+if(event.ph==='B'){var slice=thread.sliceGroup.beginSlice(event.cat,event.name,this.toModelTimeFromUs_(event.ts),this.deepCopyIfNeeded_(event.args),this.toModelTimeFromUs_(event.tts),event.argsStripped,getEventColor(event));slice.startStackFrame=this.getStackFrameForEvent_(event);this.setContextsFromThread_(thread,slice);}else if(event.ph==='I'||event.ph==='i'||event.ph==='R'){if(event.s!==undefined&&event.s!=='t')
+throw new Error('This should never happen');thread.sliceGroup.beginSlice(event.cat,event.name,this.toModelTimeFromUs_(event.ts),this.deepCopyIfNeeded_(event.args),this.toModelTimeFromUs_(event.tts),event.argsStripped,getEventColor(event));var slice=thread.sliceGroup.endSlice(this.toModelTimeFromUs_(event.ts),this.toModelTimeFromUs_(event.tts));slice.startStackFrame=this.getStackFrameForEvent_(event);slice.endStackFrame=undefined;}else{if(!thread.sliceGroup.openSliceCount){this.model_.importWarning({type:'duration_parse_error',message:'E phase event without a matching B phase event.'});return;}
+var slice=thread.sliceGroup.endSlice(this.toModelTimeFromUs_(event.ts),this.toModelTimeFromUs_(event.tts),getEventColor(event));if(event.name&&slice.title!=event.name){this.model_.importWarning({type:'title_match_error',message:'Titles do not match. Title is '+
 slice.title+' in openSlice, and is '+
 event.name+' in endSlice'});}
 slice.endStackFrame=this.getStackFrameForEvent_(event);this.mergeArgsInto_(slice.args,event.args,slice.title);}},mergeArgsInto_:function(dstArgs,srcArgs,eventName){for(var arg in srcArgs){if(dstArgs[arg]!==undefined){this.model_.importWarning({type:'arg_merge_error',message:'Different phases of '+eventName+' provided values for argument '+arg+'.'+' The last provided value will be used.'});}
@@ -5454,7 +5380,7 @@
 return undefined;var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);if(event.flow_out){if(event.flow_in)
 event.flowPhase=STEP;else
 event.flowPhase=PRODUCER;}else if(event.flow_in){event.flowPhase=CONSUMER;}
-var slice=thread.sliceGroup.pushCompleteSlice(event.cat,event.name,timestampFromUs(event.ts),maybeTimestampFromUs(event.dur),maybeTimestampFromUs(event.tts),maybeTimestampFromUs(event.tdur),this.deepCopyIfNeeded_(event.args),event.argsStripped,getEventColor(event),event.bind_id);slice.startStackFrame=this.getStackFrameForEvent_(event);slice.endStackFrame=this.getStackFrameForEvent_(event,true);this.setContextsFromThread_(thread,slice);return slice;},processJitCodeEvent:function(event){if(this.v8ProcessCodeMaps_[event.pid]===undefined)
+var slice=thread.sliceGroup.pushCompleteSlice(event.cat,event.name,this.toModelTimeFromUs_(event.ts),this.maybeToModelTimeFromUs_(event.dur),this.maybeToModelTimeFromUs_(event.tts),this.maybeToModelTimeFromUs_(event.tdur),this.deepCopyIfNeeded_(event.args),event.argsStripped,getEventColor(event),event.bind_id);slice.startStackFrame=this.getStackFrameForEvent_(event);slice.endStackFrame=this.getStackFrameForEvent_(event,true);this.setContextsFromThread_(thread,slice);return slice;},processJitCodeEvent:function(event){if(this.v8ProcessCodeMaps_[event.pid]===undefined)
 this.v8ProcessCodeMaps_[event.pid]=new tr.e.importer.TraceCodeMap();var map=this.v8ProcessCodeMaps_[event.pid];var data=event.args.data;if(event.name==='JitCodeMoved')
 map.moveEntry(data.code_start,data.new_code_start,data.code_len);else
 map.addEntry(data.code_start,data.code_len,data.name,data.script_id);},processMetadataEvent:function(event){if(event.name==='JitCodeAdded'||event.name==='JitCodeMoved'){this.v8SamplingData_.push(event);return;}
@@ -5465,17 +5391,17 @@
 event.name+'\' metadata event'});}else{this.importObjectTypeNameMap_(objectTypeNameMap,event.pid);}}else if(event.name==='TraceConfig'){this.model_.metadata.push({name:'TraceConfig',value:event.args.value});}else{this.model_.importWarning({type:'metadata_parse_error',message:'Unrecognized metadata name: '+event.name});}},processInstantEvent:function(event){if(event.name==='JitCodeAdded'||event.name==='JitCodeMoved'){this.v8SamplingData_.push(event);return;}
 if(event.s==='t'||event.s===undefined){this.processDurationEvent(event);return;}
 var constructor;switch(event.s){case'g':constructor=tr.model.GlobalInstantEvent;break;case'p':constructor=tr.model.ProcessInstantEvent;break;default:this.model_.importWarning({type:'instant_parse_error',message:'I phase event with unknown "s" field value.'});return;}
-var instantEvent=new constructor(event.cat,event.name,getEventColor(event),timestampFromUs(event.ts),this.deepCopyIfNeeded_(event.args));switch(instantEvent.type){case tr.model.InstantEventType.GLOBAL:this.model_.instantEvents.push(instantEvent);break;case tr.model.InstantEventType.PROCESS:var process=this.model_.getOrCreateProcess(event.pid);process.instantEvents.push(instantEvent);break;default:throw new Error('Unknown instant event type: '+event.s);}},processV8Sample:function(event){var data=event.args.data;if(data.vm_state==='js'&&!data.stack.length)
+var instantEvent=new constructor(event.cat,event.name,getEventColor(event),this.toModelTimeFromUs_(event.ts),this.deepCopyIfNeeded_(event.args));switch(instantEvent.type){case tr.model.InstantEventType.GLOBAL:this.model_.instantEvents.push(instantEvent);break;case tr.model.InstantEventType.PROCESS:var process=this.model_.getOrCreateProcess(event.pid);process.instantEvents.push(instantEvent);break;default:throw new Error('Unknown instant event type: '+event.s);}},processV8Sample:function(event){var data=event.args.data;if(data.vm_state==='js'&&!data.stack.length)
 return;var rootStackFrame=this.v8ProcessRootStackFrame_[event.pid];if(!rootStackFrame){rootStackFrame=new tr.model.StackFrame(undefined,'v8-root-stack-frame','v8-root-stack-frame',0);this.v8ProcessRootStackFrame_[event.pid]=rootStackFrame;}
 function findChildWithEntryID(stackFrame,entryID){return tr.b.findFirstInArray(stackFrame.children,function(child){return child.entryID===entryID;});}
 var model=this.model_;function addStackFrame(lastStackFrame,entry){var childFrame=findChildWithEntryID(lastStackFrame,entry.id);if(childFrame)
 return childFrame;var frame=new tr.model.StackFrame(lastStackFrame,tr.b.GUID.allocateSimple(),entry.name,ColorScheme.getColorIdForGeneralPurposeString(entry.name),entry.sourceInfo);frame.entryID=entry.id;model.addStackFrame(frame);return frame;}
 var lastStackFrame=rootStackFrame;if(data.stack.length>0&&this.v8ProcessCodeMaps_[event.pid]){var map=this.v8ProcessCodeMaps_[event.pid];data.stack.reverse();for(var i=0;i<data.stack.length;i++){var entry=map.lookupEntry(data.stack[i]);if(entry===undefined){entry={id:'unknown',name:'unknown',sourceInfo:undefined};}
 lastStackFrame=addStackFrame(lastStackFrame,entry);}}else{var entry={id:data.vm_state,name:data.vm_state,sourceInfo:undefined};lastStackFrame=addStackFrame(lastStackFrame,entry);}
-var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);var sample=new tr.model.Sample(undefined,thread,'V8 Sample',timestampFromUs(event.ts),lastStackFrame,1,this.deepCopyIfNeeded_(event.args));this.model_.samples.push(sample);},processTraceSampleEvent:function(event){if(event.name==='V8Sample'){this.v8SamplingData_.push(event);return;}
+var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);var sample=new tr.model.Sample(undefined,thread,'V8 Sample',this.toModelTimeFromUs_(event.ts),lastStackFrame,1,this.deepCopyIfNeeded_(event.args));this.model_.samples.push(sample);},processTraceSampleEvent:function(event){if(event.name==='V8Sample'){this.v8SamplingData_.push(event);return;}
 var stackFrame=this.getStackFrameForEvent_(event);if(stackFrame===undefined){stackFrame=this.traceEventSampleStackFramesByName_[event.name];}
 if(stackFrame===undefined){var id='te-'+tr.b.GUID.allocateSimple();stackFrame=new tr.model.StackFrame(undefined,id,event.name,ColorScheme.getColorIdForGeneralPurposeString(event.name));this.model_.addStackFrame(stackFrame);this.traceEventSampleStackFramesByName_[event.name]=stackFrame;}
-var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);var sample=new tr.model.Sample(undefined,thread,'Trace Event Sample',timestampFromUs(event.ts),stackFrame,1,this.deepCopyIfNeeded_(event.args));this.setContextsFromThread_(thread,sample);this.model_.samples.push(sample);},processMemoryDumpEvent:function(event){if(event.ph!=='v')
+var thread=this.model_.getOrCreateProcess(event.pid).getOrCreateThread(event.tid);var sample=new tr.model.Sample(undefined,thread,'Trace Event Sample',this.toModelTimeFromUs_(event.ts),stackFrame,1,this.deepCopyIfNeeded_(event.args));this.setContextsFromThread_(thread,sample);this.model_.samples.push(sample);},processMemoryDumpEvent:function(event){if(event.ph!=='v')
 throw new Error('Invalid memory dump event phase "'+event.ph+'".');var dumpId=event.id;if(dumpId===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory dump event (phase \''+event.ph+'\') without a dump ID.'});return;}
 var pid=event.pid;if(pid===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory dump event (phase\''+event.ph+'\', dump ID \''+
 dumpId+'\') without a PID.'});return;}
@@ -5483,10 +5409,15 @@
 allEvents[dumpId]=dumpIdEvents={};var processEvents=dumpIdEvents[pid];if(processEvents===undefined)
 dumpIdEvents[pid]=processEvents=[];processEvents.push(event);},processClockSyncEvent:function(event){if(event.ph!=='c')
 throw new Error('Invalid clock sync event phase "'+event.ph+'".');var syncId=event.args.sync_id;if(syncId===undefined){this.model_.importWarning({type:'clock_sync_parse_error',message:'Clock sync at time '+event.ts+' without an ID.'});return;}
-if(event.args&&event.args.issue_ts!==undefined){this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,syncId,timestampFromUs(event.args.issue_ts),timestampFromUs(event.ts));}else{this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,syncId,timestampFromUs(event.ts));}},processV8Events:function(){this.v8SamplingData_.sort(function(a,b){if(a.ts!==b.ts)
+if(event.args&&event.args.issue_ts!==undefined){this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,syncId,tr.b.Unit.timestampFromUs(event.args.issue_ts),tr.b.Unit.timestampFromUs(event.ts));}else{this.model_.clockSyncManager.addClockSyncMarker(this.clockDomainId_,syncId,tr.b.Unit.timestampFromUs(event.ts));}},processV8Events:function(){this.v8SamplingData_.sort(function(a,b){if(a.ts!==b.ts)
 return a.ts-b.ts;if(a.ph==='M'||a.ph==='I')
 return-1;else if(b.ph==='M'||b.ph==='I')
-return 1;return 0;});var length=this.v8SamplingData_.length;for(var i=0;i<length;++i){var event=this.v8SamplingData_[i];if(event.ph==='M'||event.ph==='I'){this.processJitCodeEvent(event);}else if(event.ph==='P'){this.processV8Sample(event);}}},importClockSyncMarkers:function(){for(var i=0;i<this.events_.length;i++){var event=this.events_[i];if(event.ph!=='c')
+return 1;return 0;});var length=this.v8SamplingData_.length;for(var i=0;i<length;++i){var event=this.v8SamplingData_[i];if(event.ph==='M'||event.ph==='I'){this.processJitCodeEvent(event);}else if(event.ph==='P'){this.processV8Sample(event);}}},initBackcompatClockSyncEventTracker_:function(event){if(event.name!==undefined&&event.name.startsWith(ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX)&&event.ph==='S')
+this.asyncClockSyncStart_=event;if(event.name!==undefined&&event.name.startsWith(ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX)&&event.ph==='F')
+this.asyncClockSyncFinish_=event;if(this.asyncClockSyncStart_==undefined||this.asyncClockSyncFinish_==undefined)
+return;var syncId=this.asyncClockSyncStart_.name.substring(ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX.length);if(syncId!==this.asyncClockSyncFinish_.name.substring(ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX.length)){throw new Error('Inconsistent clock sync id of async clock sync '+'events.');}
+var clockSyncEvent={ph:'c',args:{sync_id:syncId,issue_ts:this.asyncClockSyncStart_.ts},ts:this.asyncClockSyncFinish_.ts,};this.asyncClockSyncStart_=undefined;this.asyncClockSyncFinish_=undefined;return clockSyncEvent;},importClockSyncMarkers:function(){var asyncClockSyncStart,asyncClockSyncFinish;for(var i=0;i<this.events_.length;i++){var event=this.events_[i];var possibleBackCompatClockSyncEvent=this.initBackcompatClockSyncEventTracker_(event);if(possibleBackCompatClockSyncEvent)
+this.processClockSyncEvent(possibleBackCompatClockSyncEvent);if(event.ph!=='c')
 continue;var eventSizeInBytes=this.model_.importOptions.trackDetailedModelStats?JSON.stringify(event).length:undefined;this.model_.stats.willProcessBasicTraceEvent('clock_sync',event.cat,event.name,event.ts,eventSizeInBytes);this.processClockSyncEvent(event);}},importEvents:function(){if(this.stackFrameEvents_)
 this.importStackFrames_(this.stackFrameEvents_,'g');if(this.traceAnnotations_)
 this.importAnnotations_();var importOptions=this.model_.importOptions;var trackDetailedModelStats=importOptions.trackDetailedModelStats;var modelStats=this.model_.stats;var events=this.events_;for(var eI=0;eI<events.length;eI++){var event=events[eI];if(event.args==='__stripped__'){event.argsStripped=true;event.args=undefined;}
@@ -5514,7 +5445,7 @@
 return;var m=this.model_;var events=this.sampleEvents_;if(this.events_.length===0){for(var i=0;i<events.length;i++){var event=events[i];m.getOrCreateProcess(event.tid).getOrCreateThread(event.tid);}}
 var threadsByTid={};m.getAllThreads().forEach(function(t){threadsByTid[t.tid]=t;});for(var i=0;i<events.length;i++){var event=events[i];var thread=threadsByTid[event.tid];if(thread===undefined){m.importWarning({type:'sample_import_error',message:'Thread '+events.tid+'not found'});continue;}
 var cpu;if(event.cpu!==undefined)
-cpu=m.kernel.getOrCreateCpu(event.cpu);var stackFrame=this.getStackFrameForEvent_(event);var sample=new tr.model.Sample(cpu,thread,event.name,timestampFromUs(event.ts),stackFrame,event.weight);m.samples.push(sample);}},createAsyncSlices_:function(){if(this.allAsyncEvents_.length===0)
+cpu=m.kernel.getOrCreateCpu(event.cpu);var stackFrame=this.getStackFrameForEvent_(event);var sample=new tr.model.Sample(cpu,thread,event.name,this.toModelTimeFromUs_(event.ts),stackFrame,event.weight);m.samples.push(sample);}},createAsyncSlices_:function(){if(this.allAsyncEvents_.length===0)
 return;this.allAsyncEvents_.sort(function(x,y){var d=x.event.ts-y.event.ts;if(d!==0)
 return d;return x.sequenceNumber-y.sequenceNumber;});var legacyEvents=[];var nestableAsyncEventsByKey={};var nestableMeasureAsyncEventsByKey={};for(var i=0;i<this.allAsyncEvents_.length;i++){var asyncEventState=this.allAsyncEvents_[i];var event=asyncEventState.event;if(event.ph==='S'||event.ph==='F'||event.ph==='T'||event.ph==='p'){legacyEvents.push(asyncEventState);continue;}
 if(event.cat===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async events (ph: b, e, or n) require a '+'cat parameter.'});continue;}
@@ -5532,14 +5463,14 @@
 asyncEventStatesByNameThenID[name]={};if(asyncEventStatesByNameThenID[name][id]){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.ts+', a slice of the same id '+id+' was alrady open.'});continue;}
 asyncEventStatesByNameThenID[name][id]=[];asyncEventStatesByNameThenID[name][id].push(asyncEventState);}else{if(asyncEventStatesByNameThenID[name]===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.ts+', no slice named '+name+' was open.'});continue;}
 if(asyncEventStatesByNameThenID[name][id]===undefined){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.ts+', no slice named '+name+' with id='+id+' was open.'});continue;}
-var events=asyncEventStatesByNameThenID[name][id];events.push(asyncEventState);if(event.ph==='F'){var asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(events[0].event.cat,name);var slice=new asyncSliceConstructor(events[0].event.cat,name,getEventColor(events[0].event),timestampFromUs(events[0].event.ts),tr.b.concatenateObjects(events[0].event.args,events[events.length-1].event.args),timestampFromUs(event.ts-events[0].event.ts),true,undefined,undefined,events[0].event.argsStripped);slice.startThread=events[0].thread;slice.endThread=asyncEventState.thread;slice.id=id;var stepType=events[1].event.ph;var isValid=true;for(var j=1;j<events.length-1;++j){if(events[j].event.ph==='T'||events[j].event.ph==='p'){isValid=this.assertStepTypeMatches_(stepType,events[j]);if(!isValid)
+var events=asyncEventStatesByNameThenID[name][id];events.push(asyncEventState);if(event.ph==='F'){var asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(events[0].event.cat,name);var slice=new asyncSliceConstructor(events[0].event.cat,name,getEventColor(events[0].event),this.toModelTimeFromUs_(events[0].event.ts),tr.b.concatenateObjects(events[0].event.args,events[events.length-1].event.args),this.toModelTimeFromUs_(event.ts-events[0].event.ts),true,undefined,undefined,events[0].event.argsStripped);slice.startThread=events[0].thread;slice.endThread=asyncEventState.thread;slice.id=id;var stepType=events[1].event.ph;var isValid=true;for(var j=1;j<events.length-1;++j){if(events[j].event.ph==='T'||events[j].event.ph==='p'){isValid=this.assertStepTypeMatches_(stepType,events[j]);if(!isValid)
 break;}
 if(events[j].event.ph==='S'){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.event.ts+', a slice named '+
 event.event.name+' with id='+event.event.id+' had a step before the start event.'});continue;}
 if(events[j].event.ph==='F'){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.event.ts+', a slice named '+
 event.event.name+' with id='+event.event.id+' had a step after the finish event.'});continue;}
 var startIndex=j+(stepType==='T'?0:-1);var endIndex=startIndex+1;var subName=events[j].event.name;if(!events[j].event.argsStripped&&(events[j].event.ph==='T'||events[j].event.ph==='p'))
-subName=subName+':'+events[j].event.args.step;var asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(events[0].event.cat,subName);var subSlice=new asyncSliceConstructor(events[0].event.cat,subName,getEventColor(event,subName+j),timestampFromUs(events[startIndex].event.ts),this.deepCopyIfNeeded_(events[j].event.args),timestampFromUs(events[endIndex].event.ts-events[startIndex].event.ts),undefined,undefined,events[startIndex].event.argsStripped);subSlice.startThread=events[startIndex].thread;subSlice.endThread=events[endIndex].thread;subSlice.id=id;slice.subSlices.push(subSlice);}
+subName=subName+':'+events[j].event.args.step;var asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(events[0].event.cat,subName);var subSlice=new asyncSliceConstructor(events[0].event.cat,subName,getEventColor(event,subName+j),this.toModelTimeFromUs_(events[startIndex].event.ts),this.deepCopyIfNeeded_(events[j].event.args),this.toModelTimeFromUs_(events[endIndex].event.ts-events[startIndex].event.ts),undefined,undefined,events[startIndex].event.argsStripped);subSlice.startThread=events[startIndex].thread;subSlice.endThread=events[endIndex].thread;subSlice.id=id;slice.subSlices.push(subSlice);}
 if(isValid){slice.startThread.asyncSliceGroup.push(slice);}
 delete asyncEventStatesByNameThenID[name][id];}}}},createNestableAsyncSlices_:function(nestableEventsByKey){for(var key in nestableEventsByKey){var eventStateEntries=nestableEventsByKey[key];var parentStack=[];for(var i=0;i<eventStateEntries.length;++i){var eventStateEntry=eventStateEntries[i];if(eventStateEntry.event.ph==='e'){var parentIndex=-1;for(var k=parentStack.length-1;k>=0;--k){if(parentStack[k].event.name===eventStateEntry.event.name){parentIndex=k;break;}}
 if(parentIndex===-1){eventStateEntry.finished=false;}else{parentStack[parentIndex].end=eventStateEntry;while(parentIndex<parentStack.length){parentStack.pop();}}}
@@ -5554,8 +5485,8 @@
 startState=eventStateEntry;endState=eventStateEntry.end;}else{sliceError='Slice has no matching BEGIN. Start time has been adjusted.';this.model_.importWarning({type:'async_slice_parse_error',message:'Nestable async END event at '+
 eventStateEntry.event.ts+' with name='+
 eventStateEntry.event.name+' and id='+eventStateEntry.event.id+' was unmatched.'});startState=eventStateEntries[0];endState=eventStateEntry;}
-var isTopLevel=(eventStateEntry.parentEntry===undefined);var asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(eventStateEntry.event.cat,eventStateEntry.event.name);var thread_start=undefined;var thread_duration=undefined;if(startState.event.tts&&startState.event.use_async_tts){thread_start=timestampFromUs(startState.event.tts);if(endState.event.tts){var thread_end=timestampFromUs(endState.event.tts);thread_duration=thread_end-thread_start;}}
-var slice=new asyncSliceConstructor(eventStateEntry.event.cat,eventStateEntry.event.name,getEventColor(endState.event),timestampFromUs(startState.event.ts),sliceArgs,timestampFromUs(endState.event.ts-startState.event.ts),isTopLevel,thread_start,thread_duration,startState.event.argsStripped);slice.startThread=startState.thread;slice.endThread=endState.thread;slice.startStackFrame=this.getStackFrameForEvent_(startState.event);slice.endStackFrame=this.getStackFrameForEvent_(endState.event);slice.id=key;if(sliceError!==undefined)
+var isTopLevel=(eventStateEntry.parentEntry===undefined);var asyncSliceConstructor=tr.model.AsyncSlice.subTypes.getConstructor(eventStateEntry.event.cat,eventStateEntry.event.name);var thread_start=undefined;var thread_duration=undefined;if(startState.event.tts&&startState.event.use_async_tts){thread_start=this.toModelTimeFromUs_(startState.event.tts);if(endState.event.tts){var thread_end=this.toModelTimeFromUs_(endState.event.tts);thread_duration=thread_end-thread_start;}}
+var slice=new asyncSliceConstructor(eventStateEntry.event.cat,eventStateEntry.event.name,getEventColor(endState.event),this.toModelTimeFromUs_(startState.event.ts),sliceArgs,this.toModelTimeFromUs_(endState.event.ts-startState.event.ts),isTopLevel,thread_start,thread_duration,startState.event.argsStripped);slice.startThread=startState.thread;slice.endThread=endState.thread;slice.startStackFrame=this.getStackFrameForEvent_(startState.event);slice.endStackFrame=this.getStackFrameForEvent_(endState.event);slice.id=key;if(sliceError!==undefined)
 slice.error=sliceError;eventStateEntry.slice=slice;if(isTopLevel){topLevelSlices.push(slice);}else if(eventStateEntry.parentEntry.slice!==undefined){eventStateEntry.parentEntry.slice.subSlices.push(slice);}}
 for(var si=0;si<topLevelSlices.length;si++){topLevelSlices[si].startThread.asyncSliceGroup.push(topLevelSlices[si]);}}},assertStepTypeMatches_:function(stepType,event){if(stepType!=event.event.ph){this.model_.importWarning({type:'async_slice_parse_error',message:'At '+event.event.ts+', a slice named '+
 event.event.name+' with id='+event.event.id+' had both begin and end steps, which is not allowed.'});return false;}
@@ -5566,19 +5497,17 @@
 if(event.bind_id){if(event.flow_in===undefined&&event.flow_out===undefined){that.model_.importWarning({type:'flow_slice_parse_error',message:'Flow producer or consumer require flow_in or flow_out.'});return false;}
 return true;}
 return false;}
-function createFlowEvent(thread,event,opt_slice){var startSlice,flowId,flowStartTs;if(event.bind_id){startSlice=opt_slice;flowId=event.bind_id;flowStartTs=timestampFromUs(event.ts+event.dur);}else{var ts=timestampFromUs(event.ts);startSlice=thread.sliceGroup.findSliceAtTs(ts);if(startSlice===undefined)
+var createFlowEvent=function(thread,event,opt_slice){var startSlice,flowId,flowStartTs;if(event.bind_id){startSlice=opt_slice;flowId=event.bind_id;flowStartTs=this.toModelTimeFromUs_(event.ts+event.dur);}else{var ts=this.toModelTimeFromUs_(event.ts);startSlice=thread.sliceGroup.findSliceAtTs(ts);if(startSlice===undefined)
 return undefined;flowId=event.id;flowStartTs=ts;}
-var flowEvent=new tr.model.FlowEvent(event.cat,flowId,event.name,getEventColor(event),flowStartTs,that.deepCopyAlways_(event.args));flowEvent.startSlice=startSlice;flowEvent.startStackFrame=that.getStackFrameForEvent_(event);flowEvent.endStackFrame=undefined;startSlice.outFlowEvents.push(flowEvent);return flowEvent;}
-function finishFlowEventWith(flowEvent,thread,event,refGuid,bindToParent,opt_slice){var endSlice;if(event.bind_id){endSlice=opt_slice;}else{var ts=timestampFromUs(event.ts);if(bindToParent){endSlice=thread.sliceGroup.findSliceAtTs(ts);}else{endSlice=thread.sliceGroup.findNextSliceAfter(ts,refGuid);}
+var flowEvent=new tr.model.FlowEvent(event.cat,flowId,event.name,getEventColor(event),flowStartTs,that.deepCopyAlways_(event.args));flowEvent.startSlice=startSlice;flowEvent.startStackFrame=that.getStackFrameForEvent_(event);flowEvent.endStackFrame=undefined;startSlice.outFlowEvents.push(flowEvent);return flowEvent;}.bind(this);var finishFlowEventWith=function(flowEvent,thread,event,refGuid,bindToParent,opt_slice){var endSlice;if(event.bind_id){endSlice=opt_slice;}else{var ts=this.toModelTimeFromUs_(event.ts);if(bindToParent){endSlice=thread.sliceGroup.findSliceAtTs(ts);}else{endSlice=thread.sliceGroup.findNextSliceAfter(ts,refGuid);}
 if(endSlice===undefined)
 return false;}
-endSlice.inFlowEvents.push(flowEvent);flowEvent.endSlice=endSlice;flowEvent.duration=timestampFromUs(event.ts)-flowEvent.start;flowEvent.endStackFrame=that.getStackFrameForEvent_(event);that.mergeArgsInto_(flowEvent.args,event.args,flowEvent.title);return true;}
-function processFlowConsumer(flowIdToEvent,sliceGuidToEvent,event,slice){var flowEvent=flowIdToEvent[event.bind_id];if(flowEvent===undefined){that.model_.importWarning({type:'flow_slice_ordering_error',message:'Flow consumer '+event.bind_id+' does not have '+'a flow producer'});return false;}else if(flowEvent.endSlice){var flowProducer=flowEvent.startSlice;flowEvent=createFlowEvent(undefined,sliceGuidToEvent[flowProducer.guid],flowProducer);}
+endSlice.inFlowEvents.push(flowEvent);flowEvent.endSlice=endSlice;flowEvent.duration=this.toModelTimeFromUs_(event.ts)-flowEvent.start;flowEvent.endStackFrame=that.getStackFrameForEvent_(event);that.mergeArgsInto_(flowEvent.args,event.args,flowEvent.title);return true;}.bind(this);function processFlowConsumer(flowIdToEvent,sliceGuidToEvent,event,slice){var flowEvent=flowIdToEvent[event.bind_id];if(flowEvent===undefined){that.model_.importWarning({type:'flow_slice_ordering_error',message:'Flow consumer '+event.bind_id+' does not have '+'a flow producer'});return false;}else if(flowEvent.endSlice){var flowProducer=flowEvent.startSlice;flowEvent=createFlowEvent(undefined,sliceGuidToEvent[flowProducer.guid],flowProducer);}
 var ok=finishFlowEventWith(flowEvent,undefined,event,refGuid,undefined,slice);if(ok){that.model_.flowEvents.push(flowEvent);}else{that.model_.importWarning({type:'flow_slice_end_error',message:'Flow consumer '+event.bind_id+' does not end '+'at an actual slice, so cannot be created.'});return false;}
 return true;}
 function processFlowProducer(flowIdToEvent,flowStatus,event,slice){if(flowIdToEvent[event.bind_id]&&flowStatus[event.bind_id]){that.model_.importWarning({type:'flow_slice_start_error',message:'Flow producer '+event.bind_id+' already seen'});return false;}
 var flowEvent=createFlowEvent(undefined,event,slice);if(!flowEvent){that.model_.importWarning({type:'flow_slice_start_error',message:'Flow producer '+event.bind_id+' does not start'+'a flow'});return false;}
-flowIdToEvent[event.bind_id]=flowEvent;return;}
+flowIdToEvent[event.bind_id]=flowEvent;}
 this.allFlowEvents_.sort(function(x,y){var d=x.event.ts-y.event.ts;if(d!=0)
 return d;return x.sequenceNumber-y.sequenceNumber;});var flowIdToEvent={};var sliceGuidToEvent={};var flowStatus={};for(var i=0;i<this.allFlowEvents_.length;++i){var data=this.allFlowEvents_[i];var refGuid=data.refGuid;var event=data.event;var thread=data.thread;if(!validateFlowEvent(event))
 continue;if(event.bind_id){var slice=data.slice;sliceGuidToEvent[slice.guid]=event;if(event.flowPhase===PRODUCER){if(!processFlowProducer(flowIdToEvent,flowStatus,event,slice))
@@ -5596,9 +5525,9 @@
 bindToParent=true;}}
 var ok=finishFlowEventWith(flowEvent,thread,event,refGuid,bindToParent);if(ok){that.model_.flowEvents.push(flowEvent);}else{this.model_.importWarning({type:'flow_slice_end_error',message:'event id '+event.id+' does not end '+'at an actual slice, so cannot be created.'});}
 flowIdToEvent[event.id]=undefined;if(ok&&event.ph==='t'){flowEvent=createFlowEvent(thread,event);flowIdToEvent[event.id]=flowEvent;}}}},createExplicitObjects_:function(){if(this.allObjectEvents_.length===0)
-return;function processEvent(objectEventState){var event=objectEventState.event;var scopedId=this.scopedIdForEvent_(event);var thread=objectEventState.thread;if(event.name===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+JSON.stringify(event)+': '+'Object events require an name parameter.'});}
+return;var processEvent=function(objectEventState){var event=objectEventState.event;var scopedId=this.scopedIdForEvent_(event);var thread=objectEventState.thread;if(event.name===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+JSON.stringify(event)+': '+'Object events require an name parameter.'});}
 if(scopedId.id===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+JSON.stringify(event)+': '+'Object events require an id parameter.'});}
-var process=thread.parent;var ts=timestampFromUs(event.ts);var instance;if(event.ph==='N'){try{instance=process.objects.idWasCreated(scopedId,event.cat,event.name,ts);}catch(e){this.model_.importWarning({type:'object_parse_error',message:'While processing create of '+
+var process=thread.parent;var ts=this.toModelTimeFromUs_(event.ts);var instance;if(event.ph==='N'){try{instance=process.objects.idWasCreated(scopedId,event.cat,event.name,ts);}catch(e){this.model_.importWarning({type:'object_parse_error',message:'While processing create of '+
 scopedId+' at ts='+ts+': '+e});return;}}else if(event.ph==='O'){if(event.args.snapshot===undefined){this.model_.importWarning({type:'object_parse_error',message:'While processing '+scopedId+' at ts='+ts+': '+'Snapshots must have args: {snapshot: ...}'});return;}
 var snapshot;try{var args=this.deepCopyIfNeeded_(event.args.snapshot);var cat;if(args.cat){cat=args.cat;delete args.cat;}else{cat=event.cat;}
 var baseTypename;if(args.base_type){baseTypename=args.base_type;delete args.base_type;}else{baseTypename=undefined;}
@@ -5607,8 +5536,7 @@
 instance=snapshot.objectInstance;}else if(event.ph==='D'){try{process.objects.idWasDeleted(scopedId,event.cat,event.name,ts);var instanceMap=process.objects.getOrCreateInstanceMap_(scopedId);instance=instanceMap.lastInstance;}catch(e){this.model_.importWarning({type:'object_parse_error',message:'While processing delete of '+
 scopedId+' at ts='+ts+': '+e});return;}}
 if(instance)
-instance.colorId=getEventColor(event,instance.typeName);}
-this.allObjectEvents_.sort(function(x,y){var d=x.event.ts-y.event.ts;if(d!=0)
+instance.colorId=getEventColor(event,instance.typeName);}.bind(this);this.allObjectEvents_.sort(function(x,y){var d=x.event.ts-y.event.ts;if(d!=0)
 return d;return x.sequenceNumber-y.sequenceNumber;});var allObjectEvents=this.allObjectEvents_;for(var i=0;i<allObjectEvents.length;i++){var objectEventState=allObjectEvents[i];try{processEvent.call(this,objectEventState);}catch(e){this.model_.importWarning({type:'object_parse_error',message:e.message});}}},createImplicitObjects_:function(){tr.b.iterItems(this.model_.processes,function(pid,process){this.createImplicitObjectsForProcess_(process);},this);},createImplicitObjectsForProcess_:function(process){function processField(referencingObject,referencingObjectFieldName,referencingObjectFieldValue,containingSnapshot){if(!referencingObjectFieldValue)
 return;if(referencingObjectFieldValue instanceof
 tr.model.ObjectSnapshot)
@@ -5635,11 +5563,11 @@
 process.objects.iterObjectInstances(function(instance){instance.snapshots.forEach(function(snapshot){if(snapshot.args.id!==undefined)
 throw new Error('args cannot have an id field inside it');iterObject(snapshot.args,processField,snapshot,this);},this);},this);},createMemoryDumps_:function(){for(var dumpId in this.allMemoryDumpEvents_)
 this.createGlobalMemoryDump_(this.allMemoryDumpEvents_[dumpId],dumpId);},createGlobalMemoryDump_:function(dumpIdEvents,dumpId){var globalRange=new tr.b.Range();for(var pid in dumpIdEvents){var processEvents=dumpIdEvents[pid];for(var i=0;i<processEvents.length;i++)
-globalRange.addValue(timestampFromUs(processEvents[i].ts));}
+globalRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));}
 if(globalRange.isEmpty)
 throw new Error('Internal error: Global memory dump without events');var globalMemoryDump=new tr.model.GlobalMemoryDump(this.model_,globalRange.min);globalMemoryDump.duration=globalRange.range;this.model_.globalMemoryDumps.push(globalMemoryDump);var globalMemoryAllocatorDumpsByFullName={};var levelsOfDetail={};var allMemoryAllocatorDumpsByGuid={};for(var pid in dumpIdEvents){this.createProcessMemoryDump_(globalMemoryDump,globalMemoryAllocatorDumpsByFullName,levelsOfDetail,allMemoryAllocatorDumpsByGuid,dumpIdEvents[pid],pid,dumpId);}
 globalMemoryDump.levelOfDetail=levelsOfDetail.global;globalMemoryDump.memoryAllocatorDumps=this.inferMemoryAllocatorDumpTree_(globalMemoryAllocatorDumpsByFullName);this.parseMemoryDumpAllocatorEdges_(allMemoryAllocatorDumpsByGuid,dumpIdEvents,dumpId);},createProcessMemoryDump_:function(globalMemoryDump,globalMemoryAllocatorDumpsByFullName,levelsOfDetail,allMemoryAllocatorDumpsByGuid,processEvents,pid,dumpId){var processRange=new tr.b.Range();for(var i=0;i<processEvents.length;i++)
-processRange.addValue(timestampFromUs(processEvents[i].ts));if(processRange.isEmpty)
+processRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));if(processRange.isEmpty)
 throw new Error('Internal error: Process memory dump without events');var process=this.model_.getOrCreateProcess(pid);var processMemoryDump=new tr.model.ProcessMemoryDump(globalMemoryDump,process,processRange.min);processMemoryDump.duration=processRange.range;process.memoryDumps.push(processMemoryDump);globalMemoryDump.processMemoryDumps[pid]=processMemoryDump;var processMemoryAllocatorDumpsByFullName={};for(var i=0;i<processEvents.length;i++){var processEvent=processEvents[i];var dumps=processEvent.args.dumps;if(dumps===undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'\'dumps\' field not found in a process memory dump'+' event for PID='+pid+' and dump ID='+dumpId+'.'});continue;}
 this.parseMemoryDumpTotals_(processMemoryDump,dumps,pid,dumpId);this.parseMemoryDumpVmRegions_(processMemoryDump,dumps,pid,dumpId);this.parseMemoryDumpHeapDumps_(processMemoryDump,dumps,pid,dumpId);this.parseMemoryDumpLevelOfDetail_(levelsOfDetail,dumps,pid,dumpId);this.parseMemoryDumpAllocatorDumps_(processMemoryDump,globalMemoryDump,processMemoryAllocatorDumpsByFullName,globalMemoryAllocatorDumpsByFullName,allMemoryAllocatorDumpsByGuid,dumps,pid,dumpId);}
 if(levelsOfDetail.process===undefined){levelsOfDetail.process=processMemoryDump.vmRegions?DETAILED:LIGHT;}
@@ -5700,7 +5628,7 @@
 for(var attrName in attributes){var attrArgs=attributes[attrName];var attrType=attrArgs.type;var attrValue=attrArgs.value;switch(attrType){case'scalar':if(attrName in allocatorDump.numerics){this.model_.importWarning({type:'memory_dump_parse_error',message:'Multiple values provided for scalar attribute '+
 attrName+' of memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+
 dumpId+'.'});break;}
-var unit=attrArgs.units==='bytes'?tr.v.Unit.byName.sizeInBytes_smallerIsBetter:tr.v.Unit.byName.unitlessNumber_smallerIsBetter;var value=parseInt(attrValue,16);allocatorDump.addNumeric(attrName,new tr.v.ScalarNumeric(unit,value));break;case'string':if(attrName in allocatorDump.diagnostics){this.model_.importWarning({type:'memory_dump_parse_error',message:'Multiple values provided for string attribute '+
+var unit=attrArgs.units==='bytes'?tr.b.Unit.byName.sizeInBytes_smallerIsBetter:tr.b.Unit.byName.unitlessNumber_smallerIsBetter;var value=parseInt(attrValue,16);allocatorDump.addNumeric(attrName,new tr.v.ScalarNumeric(unit,value));break;case'string':if(attrName in allocatorDump.diagnostics){this.model_.importWarning({type:'memory_dump_parse_error',message:'Multiple values provided for string attribute '+
 attrName+' of memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+
 dumpId+'.'});break;}
 allocatorDump.addDiagnostic(attrName,attrValue);break;default:this.model_.importWarning({type:'memory_dump_parse_error',message:'Unknown type provided for attribute '+attrName+' of memory allocator dump '+fullName+' (GUID='+guid+') for PID='+pid+' and dump ID='+dumpId+': '+
@@ -5720,7 +5648,9 @@
 targetGuid+').'});continue;}
 var importance=rawEdge.importance;var edge=new tr.model.MemoryAllocatorDumpLink(sourceDump,targetDump,importance);switch(rawEdge.type){case'ownership':if(sourceDump.owns!==undefined){this.model_.importWarning({type:'memory_dump_parse_error',message:'Memory allocator dump '+sourceDump.fullName+' (GUID='+sourceGuid+') already owns a memory'+' allocator dump ('+
 sourceDump.owns.target.fullName+').'});}else{sourceDump.owns=edge;targetDump.ownedBy.push(edge);}
-break;case'retention':sourceDump.retains.push(edge);targetDump.retainedBy.push(edge);break;default:this.model_.importWarning({type:'memory_dump_parse_error',message:'Invalid edge type: '+rawEdge.type+' (PID='+pid+', dump ID='+dumpId+', source='+sourceGuid+', target='+targetGuid+', importance='+importance+').'});}}}}}};tr.importer.Importer.register(TraceEventImporter);return{TraceEventImporter:TraceEventImporter};});'use strict';tr.exportTo('tr.e.measure',function(){var AsyncSlice=tr.model.AsyncSlice;function MeasureAsyncSlice(){this.groupTitle_='Ungrouped Measure';var matched=/([^\/:]+):([^\/:]+)\/?(.*)/.exec(arguments[1]);if(matched!==null){arguments[1]=matched[2];this.groupTitle_=matched[1];}
+break;case'retention':sourceDump.retains.push(edge);targetDump.retainedBy.push(edge);break;default:this.model_.importWarning({type:'memory_dump_parse_error',message:'Invalid edge type: '+rawEdge.type+' (PID='+pid+', dump ID='+dumpId+', source='+sourceGuid+', target='+targetGuid+', importance='+importance+').'});}}}}},toModelTimeFromUs_:function(ts){if(!this.toModelTime_){this.toModelTime_=this.model_.clockSyncManager.getModelTimeTransformer(this.clockDomainId_);}
+return this.toModelTime_(tr.b.Unit.timestampFromUs(ts));},maybeToModelTimeFromUs_:function(ts){if(ts===undefined)
+return undefined;return this.toModelTimeFromUs_(ts);}};tr.importer.Importer.register(TraceEventImporter);return{TraceEventImporter:TraceEventImporter};});'use strict';tr.exportTo('tr.e.measure',function(){var AsyncSlice=tr.model.AsyncSlice;function MeasureAsyncSlice(){this.groupTitle_='Ungrouped Measure';var matched=/([^\/:]+):([^\/:]+)\/?(.*)/.exec(arguments[1]);if(matched!==null){arguments[1]=matched[2];this.groupTitle_=matched[1];}
 AsyncSlice.apply(this,arguments);}
 MeasureAsyncSlice.prototype={__proto__:AsyncSlice.prototype,get viewSubGroupTitle(){return this.groupTitle_;},get title(){return this.title_;},set title(title){this.title_=title;}};AsyncSlice.subTypes.register(MeasureAsyncSlice,{categoryParts:['blink.user_timing']});return{MeasureAsyncSlice:MeasureAsyncSlice};});'use strict';tr.exportTo('tr.e.net',function(){var AsyncSlice=tr.model.AsyncSlice;function NetAsyncSlice(){AsyncSlice.apply(this,arguments);this.url_=undefined;this.byteCount_=undefined;this.isTitleComputed_=false;this.isUrlComputed_=false;}
 NetAsyncSlice.prototype={__proto__:AsyncSlice.prototype,get viewSubGroupTitle(){return'NetLog';},get title(){if(this.isTitleComputed_||!this.isTopLevel)
@@ -5748,13 +5678,13 @@
 this.model_.updateBounds();var lines=this.events_.split('\n');lines.forEach(this.parseAmLine_,this);for(var activityName in activityMap){var activity=activityMap[activityName];if(activity.state==ACTIVITY_STATE.RESUMED){activity.lastPauseTs=this.model_.bounds.max;this.addActivityToProcess(activity);}}}};Importer.register(EventLogImporter);return{EventLogImporter:EventLogImporter};});'use strict';tr.exportTo('tr.e.importer.battor',function(){function BattorImporter(model,events){this.importPriority=3;this.model_=model;this.samples_=[];this.syncTimestampsById_=new Map();this.parseTrace_(events);}
 var battorDataLineRE=new RegExp('^(-?\\d+\\.\\d+)\\s+(-?\\d+\\.\\d+)\\s+(-?\\d+\\.\\d+)'+'(?:\\s+<(\\S+)>)?$');var battorHeaderLineRE=/^# BattOr/;BattorImporter.canImport=function(events){if(!(typeof(events)==='string'||events instanceof String))
 return false;return battorHeaderLineRE.test(events);};BattorImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'BattorImporter';},get model(){return this.model_;},importClockSyncMarkers:function(){for(var[syncId,ts]of this.syncTimestampsById_){this.model_.clockSyncManager.addClockSyncMarker(tr.model.ClockDomainId.BATTOR,syncId,ts);}},importEvents:function(){if(this.model_.device.powerSeries){this.model_.importWarning({type:'import_error',message:'Power counter exists, can not import BattOr power trace.'});return;}
-var modelTimeTransformer=this.model_.clockSyncManager.getModelTimeTransformer(tr.model.ClockDomainId.BATTOR);var powerSeries=this.model_.device.powerSeries=new tr.model.PowerSeries(this.model_.device);for(var i=0;i<this.samples_.length;i++){var sample=this.samples_[i];powerSeries.addPowerSample(modelTimeTransformer(sample.ts),sample.power);}},parseTrace_:function(trace){var lines=trace.split('\n');for(var line of lines){line=line.trim();if(line.length===0)
+var modelTimeTransformer=this.model_.clockSyncManager.getModelTimeTransformer(tr.model.ClockDomainId.BATTOR);var powerSeries=this.model_.device.powerSeries=new tr.model.PowerSeries(this.model_.device);for(var i=0;i<this.samples_.length;i++){var sample=this.samples_[i];powerSeries.addPowerSample(modelTimeTransformer(sample.ts),sample.powerInW);}},parseTrace_:function(trace){var lines=trace.split('\n');for(var line of lines){line=line.trim();if(line.length===0)
 continue;if(line.startsWith('#'))
 continue;var groups=battorDataLineRE.exec(line);if(!groups){this.model_.importWarning({type:'parse_error',message:'Unrecognized line in BattOr trace: '+line});continue;}
-var ts=parseFloat(groups[1]);var voltage=parseFloat(groups[2])/1000;var current=parseFloat(groups[3])/1000;var syncId=groups[4];if(syncId)
-this.syncTimestampsById_.set(syncId,ts);if(voltage<0||current<0){this.model_.importWarning({type:'parse_error',message:'The following line in the BattOr trace has a negative '+'voltage or current, neither of which are allowed: '+line+'. A common cause of this is that the device is charging '+'while the trace is being recorded.'});continue;}
-this.samples_.push(new Sample(ts,voltage,current));}}};function Sample(ts,voltage,current){this.ts=ts;this.voltage=voltage;this.current=current;}
-Sample.prototype={get power(){return this.voltage*this.current;}};tr.importer.Importer.register(BattorImporter);return{BattorImporter:BattorImporter};});'use strict';tr.exportTo('tr.e.importer.ddms',function(){var kPid=0;var kCategory='java';var kMethodLutEndMarker='\n*end\n';var kThreadsStart='\n*threads\n';var kMethodsStart='\n*methods\n';var kTraceMethodEnter=0x00;var kTraceMethodExit=0x01;var kTraceUnroll=0x02;var kTraceMethodActionMask=0x03;var kTraceHeaderLength=32;var kTraceMagicValue=0x574f4c53;var kTraceVersionSingleClock=2;var kTraceVersionDualClock=3;var kTraceRecordSizeSingleClock=10;var kTraceRecordSizeDualClock=14;function Reader(string_payload){this.position_=0;this.data_=JSZip.utils.transformTo('uint8array',string_payload);}
+var ts=parseFloat(groups[1]);var voltageInV=tr.b.convertUnit(parseFloat(groups[2]),tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);var currentInA=tr.b.convertUnit(parseFloat(groups[3]),tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);var syncId=groups[4];if(syncId)
+this.syncTimestampsById_.set(syncId,ts);if(voltageInV<0||currentInA<0){this.model_.importWarning({type:'parse_error',message:'The following line in the BattOr trace has a negative '+'voltage or current, neither of which are allowed: '+line+'. A common cause of this is that the device is charging '+'while the trace is being recorded.'});continue;}
+this.samples_.push(new Sample(ts,voltageInV,currentInA));}}};function Sample(ts,voltageInV,currentInA){this.ts=ts;this.voltageInV=voltageInV;this.currentInA=currentInA;}
+Sample.prototype={get powerInW(){return this.voltageInV*this.currentInA;}};tr.importer.Importer.register(BattorImporter);return{BattorImporter:BattorImporter};});'use strict';tr.exportTo('tr.e.importer.ddms',function(){var kPid=0;var kCategory='java';var kMethodLutEndMarker='\n*end\n';var kThreadsStart='\n*threads\n';var kMethodsStart='\n*methods\n';var kTraceMethodEnter=0x00;var kTraceMethodExit=0x01;var kTraceUnroll=0x02;var kTraceMethodActionMask=0x03;var kTraceHeaderLength=32;var kTraceMagicValue=0x574f4c53;var kTraceVersionSingleClock=2;var kTraceVersionDualClock=3;var kTraceRecordSizeSingleClock=10;var kTraceRecordSizeDualClock=14;function Reader(string_payload){this.position_=0;this.data_=JSZip.utils.transformTo('uint8array',string_payload);}
 Reader.prototype={__proto__:Object.prototype,uint8:function(){var result=this.data_[this.position_];this.position_+=1;return result;},uint16:function(){var result=0;result+=this.uint8();result+=this.uint8()<<8;return result;},uint32:function(){var result=0;result+=this.uint8();result+=this.uint8()<<8;result+=this.uint8()<<16;result+=this.uint8()<<24;return result;},uint64:function(){var low=this.uint32();var high=this.uint32();var low_str=('0000000'+low.toString(16)).substr(-8);var high_str=('0000000'+high.toString(16)).substr(-8);var result=high_str+low_str;return result;},seekTo:function(position){this.position_=position;},hasMore:function(){return this.position_<this.data_.length;}};function DdmsImporter(model,data){this.importPriority=3;this.model_=model;this.data_=data;}
 DdmsImporter.canImport=function(data){if(typeof(data)==='string'||data instanceof String){var header=data.slice(0,1000);return header.startsWith('*version\n')&&header.indexOf('\nvm=')>=0&&header.indexOf(kThreadsStart)>=0;}
 return false;};DdmsImporter.prototype={__proto__:tr.importer.Importer.prototype,get importerName(){return'DdmsImporter';},get model(){return this.model_;},importEvents:function(){var divider=this.data_.indexOf(kMethodLutEndMarker)+
@@ -5829,9 +5759,9 @@
 this.pid2name(from_trans.calling_pid)+' From PID: '+from_trans.calling_pid+' to pid: '+
 to_trans.calling_pid+' Thread Name: '+this.pid2name(to_trans.calling_pid);var ts=from.start;var flow=new tr.model.FlowEvent('binder','binder',title,1,ts,[]);flow.startSlice=from;flow.endSlice=to;flow.start=from.start;flow.duration=to.start-ts;from.outFlowEvents.push(flow);to.inFlowEvents.push(flow);return flow;},generateArgsForSlice:function(tgid,pid,name,kthread){return{'Thread Name':name,'pid':pid,'gid':tgid};},pid2name:function(pid){return this.kthreadlookup[pid];},doNameMappings:function(pid,tgid,name){this.registerPidName(pid,name);this.registerPidName(tgid,name);},registerPidName:function(pid,name){if(this.pid2name(pid)===undefined)
 this.kthreadlookup[pid]=name;}};Parser.register(BinderParser);return{BinderParser:BinderParser};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){var ColorScheme=tr.b.ColorScheme;var Parser=tr.e.importer.linux_perf.Parser;function BusParser(importer){Parser.call(this,importer);importer.registerEventHandler('memory_bus_usage',BusParser.prototype.traceMarkWriteBusEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
-BusParser.prototype={__proto__:Parser.prototype,traceMarkWriteBusEvent:function(eventName,cpuNumber,pid,ts,eventBase,threadName){var re=new RegExp('bus=(\\S+) rw_bytes=(\\d+) r_bytes=(\\d+) '+'w_bytes=(\\d+) cycles=(\\d+) ns=(\\d+)');var event=re.exec(eventBase.details);var name=event[1];var rw_bytes=parseInt(event[2]);var r_bytes=parseInt(event[3]);var w_bytes=parseInt(event[4]);var cycles=parseInt(event[5]);var ns=parseInt(event[6]);var r_bw=r_bytes*1000000000/ns;r_bw/=1024*1024;var w_bw=w_bytes*1000000000/ns;w_bw/=1024*1024;var ctr=this.model_.kernel.getOrCreateCounter(null,'bus '+name+' read');if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
-ctr.series.forEach(function(series){series.addCounterSample(ts,r_bw);});ctr=this.model_.kernel.getOrCreateCounter(null,'bus '+name+' write');if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
-ctr.series.forEach(function(series){series.addCounterSample(ts,r_bw);});return true;}};Parser.register(BusParser);return{BusParser:BusParser};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){var ColorScheme=tr.b.ColorScheme;var Parser=tr.e.importer.linux_perf.Parser;function ClockParser(importer){Parser.call(this,importer);importer.registerEventHandler('clock_set_rate',ClockParser.prototype.traceMarkWriteClockEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
+BusParser.prototype={__proto__:Parser.prototype,traceMarkWriteBusEvent:function(eventName,cpuNumber,pid,ts,eventBase,threadName){var re=new RegExp('bus=(\\S+) rw_bytes=(\\d+) r_bytes=(\\d+) '+'w_bytes=(\\d+) cycles=(\\d+) ns=(\\d+)');var event=re.exec(eventBase.details);var name=event[1];var rwBytes=parseInt(event[2]);var rBytes=parseInt(event[3]);var wBytes=parseInt(event[4]);var cycles=parseInt(event[5]);var ns=parseInt(event[6]);var sec=tr.b.convertUnit(ns,tr.b.UnitScale.Metric.NANO,tr.b.UnitScale.Metric.NONE);var readBandwidthInBps=rBytes/sec;var readBandwidthInMiBps=tr.b.convertUnit(readBandwidthInBps,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI);var writeBandwidthInBps=wBytes/sec;var writeBandwidthInMiBps=tr.b.convertUnit(writeBandwidthInBps,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI);var ctr=this.model_.kernel.getOrCreateCounter(null,'bus '+name+' read');if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
+ctr.series.forEach(function(series){series.addCounterSample(ts,readBandwidthInMiBps);});ctr=this.model_.kernel.getOrCreateCounter(null,'bus '+name+' write');if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
+ctr.series.forEach(function(series){series.addCounterSample(ts,writeBandwidthInMiBps);});return true;}};Parser.register(BusParser);return{BusParser:BusParser};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){var ColorScheme=tr.b.ColorScheme;var Parser=tr.e.importer.linux_perf.Parser;function ClockParser(importer){Parser.call(this,importer);importer.registerEventHandler('clock_set_rate',ClockParser.prototype.traceMarkWriteClockEvent.bind(this));this.model_=importer.model_;this.ppids_={};}
 ClockParser.prototype={__proto__:Parser.prototype,traceMarkWriteClockEvent:function(eventName,cpuNumber,pid,ts,eventBase,threadName){var event=/(\S+) state=(\d+) cpu_id=(\d+)/.exec(eventBase.details);var name=event[1];var rate=parseInt(event[2]);var ctr=this.model_.kernel.getOrCreateCounter(null,name);if(ctr.numSeries===0){ctr.addSeries(new tr.model.CounterSeries('value',ColorScheme.getColorIdForGeneralPurposeString(ctr.name+'.'+'value')));}
 ctr.series.forEach(function(series){series.addCounterSample(ts,rate);});return true;}};Parser.register(ClockParser);return{ClockParser:ClockParser};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){var ColorScheme=tr.b.ColorScheme;var Parser=tr.e.importer.linux_perf.Parser;function CpufreqParser(importer){Parser.call(this,importer);importer.registerEventHandler('cpufreq_interactive_up',CpufreqParser.prototype.cpufreqUpDownEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_down',CpufreqParser.prototype.cpufreqUpDownEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_already',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_notyet',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_setspeed',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_target',CpufreqParser.prototype.cpufreqTargetEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_boost',CpufreqParser.prototype.cpufreqBoostUnboostEvent.bind(this));importer.registerEventHandler('cpufreq_interactive_unboost',CpufreqParser.prototype.cpufreqBoostUnboostEvent.bind(this));}
 function splitData(input){var data={};var args=input.split(/\s+/);var len=args.length;for(var i=0;i<len;i++){var item=args[i].split('=');data[item[0]]=parseInt(item[1]);}
@@ -5984,8 +5914,7 @@
 return false;if(eventBase.tgid===undefined){return false;}
 var tgid=parseInt(eventBase.tgid);var thread=this.model_.getOrCreateProcess(tgid).getOrCreateThread(pid);thread.name=eventBase.threadName;var slices=thread.kernelSliceGroup;if(!slices.isTimestampValidForBeginOrEnd(ts)){this.model_.importWarning({type:'parse_error',message:'Timestamps are moving backward.'});return false;}
 var name='fence_wait("'+event[2]+'")';if(event[1]=='begin'){var slice=slices.beginSlice(null,name,ts,{'Start state':event[3]});}else if(event[1]=='end'){if(slices.openSliceCount>0){slices.endSlice(ts);}}else{return false;}
-return true;},syncPtEvent:function(eventName,cpuNumber,pid,ts,eventBase){var event=syncPtRE.exec(eventBase.details);if(!event)
-return false;return true;var thread=this.importer.getOrCreateKernelThread(eventBase[1]).thread;thread.syncWaitSyncPts[event[1]]=event[2];return true;}};Parser.register(SyncParser);return{SyncParser:SyncParser};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){var ColorScheme=tr.b.ColorScheme;var Parser=tr.e.importer.linux_perf.Parser;function WorkqueueParser(importer){Parser.call(this,importer);importer.registerEventHandler('workqueue_execute_start',WorkqueueParser.prototype.executeStartEvent.bind(this));importer.registerEventHandler('workqueue_execute_end',WorkqueueParser.prototype.executeEndEvent.bind(this));importer.registerEventHandler('workqueue_queue_work',WorkqueueParser.prototype.executeQueueWork.bind(this));importer.registerEventHandler('workqueue_activate_work',WorkqueueParser.prototype.executeActivateWork.bind(this));}
+return true;},syncPtEvent:function(eventName,cpuNumber,pid,ts,eventBase){return!!syncPtRE.exec(eventBase.details);}};Parser.register(SyncParser);return{SyncParser:SyncParser};});'use strict';tr.exportTo('tr.e.importer.linux_perf',function(){var ColorScheme=tr.b.ColorScheme;var Parser=tr.e.importer.linux_perf.Parser;function WorkqueueParser(importer){Parser.call(this,importer);importer.registerEventHandler('workqueue_execute_start',WorkqueueParser.prototype.executeStartEvent.bind(this));importer.registerEventHandler('workqueue_execute_end',WorkqueueParser.prototype.executeEndEvent.bind(this));importer.registerEventHandler('workqueue_queue_work',WorkqueueParser.prototype.executeQueueWork.bind(this));importer.registerEventHandler('workqueue_activate_work',WorkqueueParser.prototype.executeActivateWork.bind(this));}
 var workqueueExecuteStartRE=/work struct (.+): function (\S+)/;var workqueueExecuteEndRE=/work struct (.+)/;WorkqueueParser.prototype={__proto__:Parser.prototype,executeStartEvent:function(eventName,cpuNumber,pid,ts,eventBase){var event=workqueueExecuteStartRE.exec(eventBase.details);if(!event)
 return false;var kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,pid,pid);kthread.openSliceTS=ts;kthread.openSlice=event[2];return true;},executeEndEvent:function(eventName,cpuNumber,pid,ts,eventBase){var event=workqueueExecuteEndRE.exec(eventBase.details);if(!event)
 return false;var kthread=this.importer.getOrCreateKernelThread(eventBase.threadName,pid,pid);if(kthread.openSlice){var slice=new tr.model.ThreadSlice('',kthread.openSlice,ColorScheme.getColorIdForGeneralPurposeString(kthread.openSlice),kthread.openSliceTS,{},ts-kthread.openSliceTS);kthread.thread.sliceGroup.pushSlice(slice);}
@@ -6085,7 +6014,7 @@
 ir.associatedEvents.addEventSet(event.associatedEvents);}
 this.associatedEvents.forEach(function(event){pushAssociatedEvents(event);if(event.subSlices)
 event.subSlices.forEach(pushAssociatedEvents);});return ir;},merge:function(other){other.names.forEach(function(name){this.names.add(name);}.bind(this));this.associatedEvents.addEventSet(other.associatedEvents);this.start=Math.min(this.start,other.start);this.end=Math.max(this.end,other.end);if(other.isAnimationBegin)
-this.isAnimationBegin=true;},pushEvent:function(event){this.start=Math.min(this.start,event.start);this.end=Math.max(this.end,event.end);this.associatedEvents.push(event);},containsTimestampInclusive:function(timestamp){return(this.start<=timestamp)&&(timestamp<=this.end);},intersects:function(other){return(other.start<this.end)&&(other.end>this.start);},isNear:function(event,threshold){return(this.end+threshold)>event.start;},debug:function(){var debugString=this.irType+'(';debugString+=parseInt(this.start)+' ';debugString+=parseInt(this.end);this.associatedEvents.forEach(function(event){debugString+=' '+event.typeName;});return debugString+')';}};return{ProtoExpectation:ProtoExpectation};});'use strict';tr.exportTo('tr.importer',function(){var ProtoExpectation=tr.importer.ProtoExpectation;var INPUT_TYPE=tr.e.cc.INPUT_EVENT_TYPE_NAMES;var KEYBOARD_TYPE_NAMES=[INPUT_TYPE.CHAR,INPUT_TYPE.KEY_DOWN_RAW,INPUT_TYPE.KEY_DOWN,INPUT_TYPE.KEY_UP];var MOUSE_RESPONSE_TYPE_NAMES=[INPUT_TYPE.CLICK,INPUT_TYPE.CONTEXT_MENU];var MOUSE_WHEEL_TYPE_NAMES=[INPUT_TYPE.MOUSE_WHEEL];var MOUSE_DRAG_TYPE_NAMES=[INPUT_TYPE.MOUSE_DOWN,INPUT_TYPE.MOUSE_MOVE,INPUT_TYPE.MOUSE_UP];var TAP_TYPE_NAMES=[INPUT_TYPE.TAP,INPUT_TYPE.TAP_CANCEL,INPUT_TYPE.TAP_DOWN];var PINCH_TYPE_NAMES=[INPUT_TYPE.PINCH_BEGIN,INPUT_TYPE.PINCH_END,INPUT_TYPE.PINCH_UPDATE];var FLING_TYPE_NAMES=[INPUT_TYPE.FLING_CANCEL,INPUT_TYPE.FLING_START];var TOUCH_TYPE_NAMES=[INPUT_TYPE.TOUCH_END,INPUT_TYPE.TOUCH_MOVE,INPUT_TYPE.TOUCH_START];var SCROLL_TYPE_NAMES=[INPUT_TYPE.SCROLL_BEGIN,INPUT_TYPE.SCROLL_END,INPUT_TYPE.SCROLL_UPDATE];var ALL_HANDLED_TYPE_NAMES=[].concat(KEYBOARD_TYPE_NAMES,MOUSE_RESPONSE_TYPE_NAMES,MOUSE_WHEEL_TYPE_NAMES,MOUSE_DRAG_TYPE_NAMES,PINCH_TYPE_NAMES,TAP_TYPE_NAMES,FLING_TYPE_NAMES,TOUCH_TYPE_NAMES,SCROLL_TYPE_NAMES);var RENDERER_FLING_TITLE='InputHandlerProxy::HandleGestureFling::started';var CSS_ANIMATION_TITLE='Animation';var INPUT_MERGE_THRESHOLD_MS=200;var ANIMATION_MERGE_THRESHOLD_MS=32;var MOUSE_WHEEL_THRESHOLD_MS=40;var MOUSE_MOVE_THRESHOLD_MS=40;var KEYBOARD_IR_NAME='Keyboard';var MOUSE_IR_NAME='Mouse';var MOUSEWHEEL_IR_NAME='MouseWheel';var TAP_IR_NAME='Tap';var PINCH_IR_NAME='Pinch';var FLING_IR_NAME='Fling';var TOUCH_IR_NAME='Touch';var SCROLL_IR_NAME='Scroll';var CSS_IR_NAME='CSS';var WEBGL_IR_NAME='WebGL';function compareEvents(x,y){if(x.start!==y.start)
+this.isAnimationBegin=true;},pushEvent:function(event){this.start=Math.min(this.start,event.start);this.end=Math.max(this.end,event.end);this.associatedEvents.push(event);},containsTimestampInclusive:function(timestamp){return(this.start<=timestamp)&&(timestamp<=this.end);},intersects:function(other){return(other.start<this.end)&&(other.end>this.start);},isNear:function(event,threshold){return(this.end+threshold)>event.start;},debug:function(){var debugString=this.irType+'(';debugString+=parseInt(this.start)+' ';debugString+=parseInt(this.end);this.associatedEvents.forEach(function(event){debugString+=' '+event.typeName;});return debugString+')';}};return{ProtoExpectation:ProtoExpectation};});'use strict';tr.exportTo('tr.importer',function(){var ProtoExpectation=tr.importer.ProtoExpectation;var INPUT_TYPE=tr.e.cc.INPUT_EVENT_TYPE_NAMES;var KEYBOARD_TYPE_NAMES=[INPUT_TYPE.CHAR,INPUT_TYPE.KEY_DOWN_RAW,INPUT_TYPE.KEY_DOWN,INPUT_TYPE.KEY_UP];var MOUSE_RESPONSE_TYPE_NAMES=[INPUT_TYPE.CLICK,INPUT_TYPE.CONTEXT_MENU];var MOUSE_WHEEL_TYPE_NAMES=[INPUT_TYPE.MOUSE_WHEEL];var MOUSE_DRAG_TYPE_NAMES=[INPUT_TYPE.MOUSE_DOWN,INPUT_TYPE.MOUSE_MOVE,INPUT_TYPE.MOUSE_UP];var TAP_TYPE_NAMES=[INPUT_TYPE.TAP,INPUT_TYPE.TAP_CANCEL,INPUT_TYPE.TAP_DOWN];var PINCH_TYPE_NAMES=[INPUT_TYPE.PINCH_BEGIN,INPUT_TYPE.PINCH_END,INPUT_TYPE.PINCH_UPDATE];var FLING_TYPE_NAMES=[INPUT_TYPE.FLING_CANCEL,INPUT_TYPE.FLING_START];var TOUCH_TYPE_NAMES=[INPUT_TYPE.TOUCH_END,INPUT_TYPE.TOUCH_MOVE,INPUT_TYPE.TOUCH_START];var SCROLL_TYPE_NAMES=[INPUT_TYPE.SCROLL_BEGIN,INPUT_TYPE.SCROLL_END,INPUT_TYPE.SCROLL_UPDATE];var ALL_HANDLED_TYPE_NAMES=[].concat(KEYBOARD_TYPE_NAMES,MOUSE_RESPONSE_TYPE_NAMES,MOUSE_WHEEL_TYPE_NAMES,MOUSE_DRAG_TYPE_NAMES,PINCH_TYPE_NAMES,TAP_TYPE_NAMES,FLING_TYPE_NAMES,TOUCH_TYPE_NAMES,SCROLL_TYPE_NAMES);var RENDERER_FLING_TITLE='InputHandlerProxy::HandleGestureFling::started';var PLAYBACK_EVENT_TITLE='VideoPlayback';var CSS_ANIMATION_TITLE='Animation';var INPUT_MERGE_THRESHOLD_MS=200;var ANIMATION_MERGE_THRESHOLD_MS=32;var MOUSE_WHEEL_THRESHOLD_MS=40;var MOUSE_MOVE_THRESHOLD_MS=40;var KEYBOARD_IR_NAME='Keyboard';var MOUSE_IR_NAME='Mouse';var MOUSEWHEEL_IR_NAME='MouseWheel';var TAP_IR_NAME='Tap';var PINCH_IR_NAME='Pinch';var FLING_IR_NAME='Fling';var TOUCH_IR_NAME='Touch';var SCROLL_IR_NAME='Scroll';var CSS_IR_NAME='CSS';var WEBGL_IR_NAME='WebGL';var VIDEO_IR_NAME='Video';function compareEvents(x,y){if(x.start!==y.start)
 return x.start-y.start;if(x.end!==y.end)
 return x.end-y.end;if(x.guid&&y.guid)
 return x.guid-y.guid;return 0;}
@@ -6097,7 +6026,7 @@
 continue;if(isNaN(slice.start)||isNaN(slice.duration)||isNaN(slice.end))
 continue;inputEvents.push(slice);}
 return inputEvents.sort(compareEvents);}
-function findProtoExpectations(modelHelper,sortedInputEvents){var protoExpectations=[];var handlers=[handleKeyboardEvents,handleMouseResponseEvents,handleMouseWheelEvents,handleMouseDragEvents,handleTapResponseEvents,handlePinchEvents,handleFlingEvents,handleTouchEvents,handleScrollEvents,handleCSSAnimations,handleWebGLAnimations,];handlers.forEach(function(handler){protoExpectations.push.apply(protoExpectations,handler(modelHelper,sortedInputEvents));});protoExpectations.sort(compareEvents);return protoExpectations;}
+function findProtoExpectations(modelHelper,sortedInputEvents){var protoExpectations=[];var handlers=[handleKeyboardEvents,handleMouseResponseEvents,handleMouseWheelEvents,handleMouseDragEvents,handleTapResponseEvents,handlePinchEvents,handleFlingEvents,handleTouchEvents,handleScrollEvents,handleCSSAnimations,handleWebGLAnimations,handleVideoAnimations];handlers.forEach(function(handler){protoExpectations.push.apply(protoExpectations,handler(modelHelper,sortedInputEvents));});protoExpectations.sort(compareEvents);return protoExpectations;}
 function handleKeyboardEvents(modelHelper,sortedInputEvents){var protoExpectations=[];forEventTypesIn(sortedInputEvents,KEYBOARD_TYPE_NAMES,function(event){var pe=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,KEYBOARD_IR_NAME);pe.pushEvent(event);protoExpectations.push(pe);});return protoExpectations;}
 function handleMouseResponseEvents(modelHelper,sortedInputEvents){var protoExpectations=[];forEventTypesIn(sortedInputEvents,MOUSE_RESPONSE_TYPE_NAMES,function(event){var pe=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,MOUSE_IR_NAME);pe.pushEvent(event);protoExpectations.push(pe);});return protoExpectations;}
 function handleMouseWheelEvents(modelHelper,sortedInputEvents){var protoExpectations=[];var currentPE=undefined;var prevEvent_=undefined;forEventTypesIn(sortedInputEvents,MOUSE_WHEEL_TYPE_NAMES,function(event){var prevEvent=prevEvent_;prevEvent_=event;if(currentPE&&(prevEvent.start+MOUSE_WHEEL_THRESHOLD_MS)>=event.start){if(currentPE.irType===ProtoExpectation.ANIMATION_TYPE){currentPE.pushEvent(event);}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,MOUSEWHEEL_IR_NAME);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
@@ -6135,6 +6064,11 @@
 function handleScrollEvents(modelHelper,sortedInputEvents){var protoExpectations=[];var currentPE=undefined;var sawFirstUpdate=false;forEventTypesIn(sortedInputEvents,SCROLL_TYPE_NAMES,function(event){switch(event.typeName){case INPUT_TYPE.SCROLL_BEGIN:currentPE=new ProtoExpectation(ProtoExpectation.RESPONSE_TYPE,SCROLL_IR_NAME);currentPE.pushEvent(event);currentPE.isAnimationBegin=true;protoExpectations.push(currentPE);sawFirstUpdate=false;break;case INPUT_TYPE.SCROLL_UPDATE:if(currentPE){if(currentPE.isNear(event,INPUT_MERGE_THRESHOLD_MS)&&((currentPE.irType===ProtoExpectation.ANIMATION_TYPE)||!sawFirstUpdate)){currentPE.pushEvent(event);sawFirstUpdate=true;}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,SCROLL_IR_NAME);currentPE.pushEvent(event);protoExpectations.push(currentPE);}}else{currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,SCROLL_IR_NAME);currentPE.pushEvent(event);protoExpectations.push(currentPE);}
 break;case INPUT_TYPE.SCROLL_END:if(!currentPE){console.error('ScrollEnd without ScrollUpdate? '+'File a bug with this trace!');var pe=new ProtoExpectation(ProtoExpectation.IGNORED_TYPE);pe.pushEvent(event);protoExpectations.push(pe);break;}
 currentPE.pushEvent(event);break;}});return protoExpectations;}
+function handleVideoAnimations(modelHelper,sortedInputEvents){var events=[];for(var pid in modelHelper.rendererHelpers){for(var asyncSlice of
+modelHelper.rendererHelpers[pid].mainThread.asyncSliceGroup.slices){if(asyncSlice.title===PLAYBACK_EVENT_TITLE)
+events.push(asyncSlice);}}
+events.sort(tr.importer.compareEvents);var protoExpectations=[];for(var event of events){var currentPE=new ProtoExpectation(ProtoExpectation.ANIMATION_TYPE,VIDEO_IR_NAME);currentPE.start=event.start;currentPE.end=event.end;currentPE.pushEvent(event);protoExpectations.push(currentPE);}
+return protoExpectations;}
 function handleCSSAnimations(modelHelper,sortedInputEvents){var animationEvents=modelHelper.browserHelper.getAllAsyncSlicesMatching(function(event){return((event.title===CSS_ANIMATION_TITLE)&&event.isTopLevel&&(event.duration>0));});var animationRanges=[];function pushAnimationRange(start,end,animation){var range=tr.b.Range.fromExplicitRange(start,end);range.animation=animation;animationRanges.push(range);}
 animationEvents.forEach(function(animation){if(animation.subSlices.length===0){pushAnimationRange(animation.start,animation.end,animation);}else{var start=undefined;animation.subSlices.forEach(function(sub){if((sub.args.data.state==='running')&&(start===undefined)){start=sub.start;}else if((sub.args.data.state==='paused')||(sub.args.data.state==='idle')||(sub.args.data.state==='finished')){if(start===undefined){start=modelHelper.model.bounds.min;}
 pushAnimationRange(start,sub.start,animation);start=undefined;}});if(start!==undefined)
@@ -6160,11 +6094,12 @@
 continue;pe.merge(otherPE);protoExpectations.splice(i,1);--i;}}
 return newPEs;}
 function mergeIntersectingAnimations(protoExpectations){var newPEs=[];while(protoExpectations.length){var pe=protoExpectations.shift();newPEs.push(pe);if(pe.irType!==ProtoExpectation.ANIMATION_TYPE)
-continue;var isCSS=pe.containsSliceTitle(CSS_ANIMATION_TITLE);var isFling=pe.containsTypeNames([INPUT_TYPE.FLING_START]);for(var i=0;i<protoExpectations.length;++i){var otherPE=protoExpectations[i];if(otherPE.irType!==pe.irType)
+continue;var isCSS=pe.containsSliceTitle(CSS_ANIMATION_TITLE);var isFling=pe.containsTypeNames([INPUT_TYPE.FLING_START]);var isVideo=pe.containsTypeNames([VIDEO_IR_NAME]);for(var i=0;i<protoExpectations.length;++i){var otherPE=protoExpectations[i];if(otherPE.irType!==pe.irType)
 continue;if(isCSS!=otherPE.containsSliceTitle(CSS_ANIMATION_TITLE))
 continue;if(isCSS){if(!pe.isNear(otherPE,ANIMATION_MERGE_THRESHOLD_MS))
 continue;}else if(!otherPE.intersects(pe)){continue;}
-if(isFling!=otherPE.containsTypeNames([INPUT_TYPE.FLING_START]))
+if(isFling!==otherPE.containsTypeNames([INPUT_TYPE.FLING_START]))
+continue;if(isVideo!==otherPE.containsTypeNames([VIDEO_IR_NAME]))
 continue;pe.merge(otherPE);protoExpectations.splice(i,1);--i;}}
 return newPEs;}
 function fixResponseAnimationStarts(protoExpectations){protoExpectations.forEach(function(ape){if(ape.irType!==ProtoExpectation.ANIMATION_TYPE)
@@ -6292,7 +6227,9 @@
 lastTask=lastTask.timedAfter('TraceImport',function runMergeKernelWithuserland(){progressMeter.update('Merging kernel with userland...');this.model_.mergeKernelWithUserland();},this);var auditors=[];lastTask=lastTask.timedAfter('TraceImport',function createAuditorsAndRunAnnotate(){progressMeter.update('Adding arbitrary data to model...');auditors=this.importOptions_.auditorConstructors.map(function(auditorConstructor){return new auditorConstructor(this.model_);},this);auditors.forEach(function(auditor){auditor.runAnnotate();auditor.installUserFriendlyCategoryDriverIfNeeded();});},this);lastTask=lastTask.timedAfter('TraceImport',function computeWorldBounds(){progressMeter.update('Computing final world bounds...');this.model_.computeWorldBounds(this.importOptions_.shiftWorldToZero);},this);lastTask=lastTask.timedAfter('TraceImport',function buildFlowEventIntervalTree(){progressMeter.update('Building flow event map...');this.model_.buildFlowEventIntervalTree();},this);lastTask=lastTask.timedAfter('TraceImport',function joinRefs(){progressMeter.update('Joining object refs...');this.model_.joinRefs();},this);lastTask=lastTask.timedAfter('TraceImport',function cleanupUndeletedObjects(){progressMeter.update('Cleaning up undeleted objects...');this.model_.cleanupUndeletedObjects();},this);lastTask=lastTask.timedAfter('TraceImport',function sortMemoryDumps(){progressMeter.update('Sorting memory dumps...');this.model_.sortMemoryDumps();},this);lastTask=lastTask.timedAfter('TraceImport',function finalizeMemoryGraphs(){progressMeter.update('Finalizing memory dump graphs...');this.model_.finalizeMemoryGraphs();},this);lastTask=lastTask.timedAfter('TraceImport',function initializeObjects(){progressMeter.update('Initializing objects (step 2/2)...');this.model_.initializeObjects();},this);lastTask=lastTask.timedAfter('TraceImport',function buildEventIndices(){progressMeter.update('Building event indices...');this.model_.buildEventIndices();},this);lastTask=lastTask.timedAfter('TraceImport',function buildUserModel(){progressMeter.update('Building UserModel...');var userModelBuilder=new tr.importer.UserModelBuilder(this.model_);userModelBuilder.buildUserModel();},this);lastTask=lastTask.timedAfter('TraceImport',function sortExpectations(){progressMeter.update('Sorting user expectations...');this.model_.userModel.sortExpectations();},this);lastTask=lastTask.timedAfter('TraceImport',function runAudits(){progressMeter.update('Running auditors...');auditors.forEach(function(auditor){auditor.runAudit();});},this);lastTask=lastTask.timedAfter('TraceImport',function sortAlerts(){progressMeter.update('Updating alerts...');this.model_.sortAlerts();},this);lastTask=lastTask.timedAfter('TraceImport',function lastUpdateBounds(){progressMeter.update('Update bounds...');this.model_.updateBounds();},this);lastTask=lastTask.timedAfter('TraceImport',function addModelWarnings(){progressMeter.update('Looking for warnings...');if(!this.model_.isTimeHighResolution){this.model_.importWarning({type:'low_resolution_timer',message:'Trace time is low resolution, trace may be unusable.',showToUser:true});}},this);lastTask.after(function(){this.importing_=false;},this);return importTask;},createImporter_:function(eventData){var importerConstructor=tr.importer.Importer.findImporterFor(eventData);if(!importerConstructor){throw new Error('Couldn\'t create an importer for the provided '+'eventData.');}
 return new importerConstructor(this.model_,eventData);},hasEventDataDecoder_:function(importers){for(var i=0;i<importers.length;++i){if(!importers[i].isTraceDataContainer())
 return true;}
-return false;}};return{ImportOptions:ImportOptions,Import:Import};});'use strict';tr.exportTo('tr.e.cc',function(){function PictureAsImageData(picture,errorOrImageData){this.picture_=picture;if(errorOrImageData instanceof ImageData){this.error_=undefined;this.imageData_=errorOrImageData;}else{this.error_=errorOrImageData;this.imageData_=undefined;}};PictureAsImageData.Pending=function(picture){return new PictureAsImageData(picture,undefined);};PictureAsImageData.prototype={get picture(){return this.picture_;},get error(){return this.error_;},get imageData(){return this.imageData_;},isPending:function(){return this.error_===undefined&&this.imageData_===undefined;},asCanvas:function(){if(!this.imageData_)
+return false;}};return{ImportOptions:ImportOptions,Import:Import};});'use strict';tr.exportTo('tr.e.v8',function(){var ThreadSlice=tr.model.ThreadSlice;function V8ThreadSlice(){ThreadSlice.apply(this,arguments);this.runtimeCallStats_=undefined;}
+V8ThreadSlice.prototype={__proto__:ThreadSlice.prototype,get runtimeCallStats(){if('runtime-call-stats'in this.args){this.runtimeCallStats_=this.args['runtime-call-stats'];delete this.args['runtime-call-stats'];}
+return this.runtimeCallStats_;}};ThreadSlice.subTypes.register(V8ThreadSlice,{categoryParts:['v8'],name:'v8 slice',pluralName:'v8 slices'});return{V8ThreadSlice:V8ThreadSlice};});'use strict';tr.exportTo('tr.e.cc',function(){function PictureAsImageData(picture,errorOrImageData){this.picture_=picture;if(errorOrImageData instanceof ImageData){this.error_=undefined;this.imageData_=errorOrImageData;}else{this.error_=errorOrImageData;this.imageData_=undefined;}};PictureAsImageData.Pending=function(picture){return new PictureAsImageData(picture,undefined);};PictureAsImageData.prototype={get picture(){return this.picture_;},get error(){return this.error_;},get imageData(){return this.imageData_;},isPending:function(){return this.error_===undefined&&this.imageData_===undefined;},asCanvas:function(){if(!this.imageData_)
 return;var canvas=document.createElement('canvas');var ctx=canvas.getContext('2d');canvas.width=this.imageData_.width;canvas.height=this.imageData_.height;ctx.putImageData(this.imageData_,0,0);return canvas;}};return{PictureAsImageData:PictureAsImageData};});'use strict';tr.exportTo('tr.e.cc',function(){var convertedNameCache={};function convertNameToJSConvention(name){if(name in convertedNameCache)
 return convertedNameCache[name];if(name[0]=='_'||name[name.length-1]=='_'){convertedNameCache[name]=name;return name;}
 var words=name.split('_');if(words.length==1){convertedNameCache[name]=words[0];return words[0];}
@@ -6318,8 +6255,7 @@
 if(/Rect$/.test(key)&&!(object[key]instanceof tr.b.Rect)){var r;try{r=tr.b.Rect.fromArray(object[key]);}catch(e){console.log(e);}
 object[key]=r;}
 preInitializeObjectInner(object[key],true);}}
-function bytesToRoundedMegabytes(bytes){return Math.round(bytes/100000.0)/10.0;}
-return{preInitializeObject:preInitializeObject,convertNameToJSConvention:convertNameToJSConvention,moveRequiredFieldsFromArgsToToplevel:moveRequiredFieldsFromArgsToToplevel,moveOptionalFieldsFromArgsToToplevel:moveOptionalFieldsFromArgsToToplevel,bytesToRoundedMegabytes:bytesToRoundedMegabytes};});'use strict';tr.exportTo('tr.e.cc',function(){var ObjectSnapshot=tr.model.ObjectSnapshot;var PictureCount=0;var OPS_TIMING_ITERATIONS=3;function Picture(skp64,layerRect){this.skp64_=skp64;this.layerRect_=layerRect;this.guid_=tr.b.GUID.allocateSimple();}
+return{preInitializeObject:preInitializeObject,convertNameToJSConvention:convertNameToJSConvention,moveRequiredFieldsFromArgsToToplevel:moveRequiredFieldsFromArgsToToplevel,moveOptionalFieldsFromArgsToToplevel:moveOptionalFieldsFromArgsToToplevel,};});'use strict';tr.exportTo('tr.e.cc',function(){var ObjectSnapshot=tr.model.ObjectSnapshot;var PictureCount=0;var OPS_TIMING_ITERATIONS=3;function Picture(skp64,layerRect){this.skp64_=skp64;this.layerRect_=layerRect;this.guid_=tr.b.GUID.allocateSimple();}
 Picture.prototype={get canSave(){return true;},get layerRect(){return this.layerRect_;},get guid(){return this.guid_;},getBase64SkpData:function(){return this.skp64_;},getOps:function(){if(!PictureSnapshot.CanGetOps()){console.error(PictureSnapshot.HowToEnablePictureDebugging());return undefined;}
 var ops=window.chrome.skiaBenchmarking.getOps({skp64:this.skp64_,params:{layer_rect:this.layerRect_.toArray()}});if(!ops)
 console.error('Failed to get picture ops.');return ops;},getOpTimings:function(){if(!PictureSnapshot.CanGetOpTimings()){console.error(PictureSnapshot.HowToEnablePictureDebugging());return undefined;}
@@ -6685,39 +6621,42 @@
 return currentElement.brushingStateController;if(currentElement.parentElement){currentElement=currentElement.parentElement;continue;}
 var currentNode=currentElement;while(Polymer.dom(currentNode).parentNode)
 currentNode=Polymer.dom(currentNode).parentNode;currentElement=currentNode.host;}
-return undefined;};return{BrushingStateController:BrushingStateController};});'use strict';Polymer({is:'tr-ui-a-analysis-link',properties:{href:{type:String}},listeners:{'click':'onClicked_','mouseenter':'onMouseEnter_','mouseleave':'onMouseLeave_'},ready:function(){this.selection_=undefined;},attached:function(){this.controller_=tr.c.BrushingStateController.getControllerForElement(this);},detached:function(){this.clearHighlight_();this.controller_=undefined;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;Polymer.dom(this).textContent=selection.userFriendlyName;},setSelectionAndContent:function(selection,opt_textContent){this.selection_=selection;if(opt_textContent)
+return undefined;};return{BrushingStateController:BrushingStateController};});'use strict';Polymer({is:'tr-ui-a-analysis-link',properties:{href:{type:String}},listeners:{'click':'onClicked_','mouseenter':'onMouseEnter_','mouseleave':'onMouseLeave_'},ready:function(){this.selection_=undefined;},attached:function(){this.controller_=tr.c.BrushingStateController.getControllerForElement(this);},detached:function(){this.clearHighlight_();this.controller_=undefined;},set color(c){this.style.color=c;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;Polymer.dom(this).textContent=selection.userFriendlyName;},setSelectionAndContent:function(selection,opt_textContent){this.selection_=selection;if(opt_textContent)
 Polymer.dom(this).textContent=opt_textContent;},getCurrentSelection_:function(){if(typeof this.selection_==='function')
 return this.selection_();return this.selection_;},setHighlight_:function(opt_eventSet){if(this.controller_)
-this.controller_.changeAnalysisLinkHoveredEvents(opt_eventSet);},clearHighlight_:function(opt_eventSet){this.setHighlight_();},onClicked_:function(){if(!this.selection_)
-return;var event=new tr.model.RequestSelectionChangeEvent();event.selection=this.getCurrentSelection_();this.dispatchEvent(event);},onMouseEnter_:function(){this.setHighlight_(this.getCurrentSelection_());},onMouseLeave_:function(){this.clearHighlight_();}});'use strict';tr.exportTo('tr.ui.b',function(){var TableFormat={};TableFormat.SelectionMode={NONE:0,ROW:1,CELL:2};TableFormat.HighlightStyle={DEFAULT:0,NONE:1,LIGHT:2,DARK:3};TableFormat.ColumnAlignment={LEFT:0,RIGHT:1};return{TableFormat:TableFormat};});'use strict';(function(){var RIGHT_ARROW=String.fromCharCode(0x25b6);var UNSORTED_ARROW=String.fromCharCode(0x25BF);var ASCENDING_ARROW=String.fromCharCode(0x25B4);var DESCENDING_ARROW=String.fromCharCode(0x25BE);var BASIC_INDENTATION=8;var SelectionMode=tr.ui.b.TableFormat.SelectionMode;var HighlightStyle=tr.ui.b.TableFormat.HighlightStyle;var ColumnAlignment=tr.ui.b.TableFormat.ColumnAlignment;Polymer({is:'tr-ui-b-table',created:function(){this.selectionMode_=SelectionMode.NONE;this.rowHighlightStyle_=HighlightStyle.DEFAULT;this.cellHighlightStyle_=HighlightStyle.DEFAULT;this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;this.tableColumns_=[];this.tableRows_=[];this.tableRowsInfo_=new WeakMap();this.tableFooterRows_=[];this.tableFooterRowsInfo_=new WeakMap();this.sortColumnIndex_=undefined;this.sortDescending_=false;this.columnsWithExpandButtons_=[];this.headerCells_=[];this.showHeader_=true;this.emptyValue_=undefined;this.subRowsPropertyName_='subRows';this.customizeTableRowCallback_=undefined;},ready:function(){this.$.body.addEventListener('keydown',this.onKeyDown_.bind(this),true);},clear:function(){this.selectionMode_=SelectionMode.NONE;this.rowHighlightStyle_=HighlightStyle.DEFAULT;this.cellHighlightStyle_=HighlightStyle.DEFAULT;this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;Polymer.dom(this).textContent='';this.tableColumns_=[];this.tableRows_=[];this.tableRowsInfo_=new WeakMap();this.tableFooterRows_=[];this.tableFooterRowsInfo_=new WeakMap();this.sortColumnIndex_=undefined;this.sortDescending_=false;this.columnsWithExpandButtons_=[];this.headerCells_=[];this.subRowsPropertyName_='subRows';this.defaultExpansionStateCallback_=undefined;},get showHeader(){return this.showHeader_;},set showHeader(showHeader){this.showHeader_=showHeader;this.scheduleRebuildHeaders_();},set subRowsPropertyName(name){this.subRowsPropertyName_=name;},set defaultExpansionStateCallback(cb){this.defaultExpansionStateCallback_=cb;this.scheduleRebuildBody_();},set customizeTableRowCallback(cb){this.customizeTableRowCallback_=cb;this.scheduleRebuildBody_();},get emptyValue(){return this.emptyValue_;},set emptyValue(emptyValue){var previousEmptyValue=this.emptyValue_;this.emptyValue_=emptyValue;if(this.tableRows_.length===0&&emptyValue!==previousEmptyValue)
+this.controller_.changeAnalysisLinkHoveredEvents(opt_eventSet);},clearHighlight_:function(opt_eventSet){this.setHighlight_();},onClicked_:function(clickEvent){if(!this.selection_)
+return;clickEvent.stopPropagation();var event=new tr.model.RequestSelectionChangeEvent();event.selection=this.getCurrentSelection_();this.dispatchEvent(event);},onMouseEnter_:function(){this.setHighlight_(this.getCurrentSelection_());},onMouseLeave_:function(){this.clearHighlight_();}});'use strict';tr.exportTo('tr.ui.b',function(){var TableFormat={};TableFormat.SelectionMode={NONE:0,ROW:1,CELL:2};TableFormat.HighlightStyle={DEFAULT:0,NONE:1,LIGHT:2,DARK:3};TableFormat.ColumnAlignment={LEFT:0,RIGHT:1};return{TableFormat:TableFormat};});'use strict';(function(){var RIGHT_ARROW=String.fromCharCode(0x25b6);var UNSORTED_ARROW=String.fromCharCode(0x25BF);var ASCENDING_ARROW=String.fromCharCode(0x25B4);var DESCENDING_ARROW=String.fromCharCode(0x25BE);var BASIC_INDENTATION=8;var SelectionMode=tr.ui.b.TableFormat.SelectionMode;var HighlightStyle=tr.ui.b.TableFormat.HighlightStyle;var ColumnAlignment=tr.ui.b.TableFormat.ColumnAlignment;Polymer({is:'tr-ui-b-table',created:function(){this.selectionMode_=SelectionMode.NONE;this.rowHighlightStyle_=HighlightStyle.DEFAULT;this.cellHighlightStyle_=HighlightStyle.DEFAULT;this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;this.tableColumns_=[];this.tableRows_=[];this.tableRowsInfo_=new WeakMap();this.tableFooterRows_=[];this.tableFooterRowsInfo_=new WeakMap();this.sortColumnIndex_=undefined;this.sortDescending_=false;this.columnsWithExpandButtons_=[];this.headerCells_=[];this.showHeader_=true;this.emptyValue_=undefined;this.subRowsPropertyName_='subRows';this.customizeTableRowCallback_=undefined;this.defaultExpansionStateCallback_=undefined;this.userCanModifySortOrder_=true;},ready:function(){this.$.body.addEventListener('keydown',this.onKeyDown_.bind(this),true);},clear:function(){this.selectionMode_=SelectionMode.NONE;this.rowHighlightStyle_=HighlightStyle.DEFAULT;this.cellHighlightStyle_=HighlightStyle.DEFAULT;this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;Polymer.dom(this).textContent='';this.tableColumns_=[];this.tableRows_=[];this.tableRowsInfo_=new WeakMap();this.tableFooterRows_=[];this.tableFooterRowsInfo_=new WeakMap();this.sortColumnIndex_=undefined;this.sortDescending_=false;this.columnsWithExpandButtons_=[];this.headerCells_=[];this.showHeader_=true;this.emptyValue_=undefined;this.subRowsPropertyName_='subRows';this.defaultExpansionStateCallback_=undefined;this.userCanModifySortOrder_=true;},get showHeader(){return this.showHeader_;},set showHeader(showHeader){this.showHeader_=showHeader;this.scheduleRebuildHeaders_();},set subRowsPropertyName(name){this.subRowsPropertyName_=name;},set defaultExpansionStateCallback(cb){this.defaultExpansionStateCallback_=cb;this.scheduleRebuildBody_();},set customizeTableRowCallback(cb){this.customizeTableRowCallback_=cb;this.scheduleRebuildBody_();},get emptyValue(){return this.emptyValue_;},set emptyValue(emptyValue){var previousEmptyValue=this.emptyValue_;this.emptyValue_=emptyValue;if(this.tableRows_.length===0&&emptyValue!==previousEmptyValue)
 this.scheduleRebuildBody_();},set tableColumns(columns){var columnsWithExpandButtons=[];for(var i=0;i<columns.length;i++){if(columns[i].showExpandButtons)
 columnsWithExpandButtons.push(i);}
 if(columnsWithExpandButtons.length===0){columnsWithExpandButtons=[0];}
 for(var i=0;i<columns.length;i++){var colInfo=columns[i];if(colInfo.width===undefined)
 continue;var hasExpandButton=columnsWithExpandButtons.indexOf(i)!==-1;var w=colInfo.width;if(w){if(/\d+px/.test(w)){continue;}else if(/\d+%/.test(w)){if(hasExpandButton){throw new Error('Columns cannot be %-sized and host '+' an expand button');}}else{throw new Error('Unrecognized width string');}}}
-this.tableColumns_=columns;this.headerCells_=[];this.columnsWithExpandButtons_=columnsWithExpandButtons;this.sortColumnIndex=undefined;this.scheduleRebuildHeaders_();this.tableRows=this.tableRows_;},get tableColumns(){return this.tableColumns_;},set tableRows(rows){this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;this.maybeUpdateSelectedRow_();this.tableRows_=rows;this.tableRowsInfo_=new WeakMap();this.scheduleRebuildBody_();},get tableRows(){return this.tableRows_;},set footerRows(rows){this.tableFooterRows_=rows;this.tableFooterRowsInfo_=new WeakMap();this.scheduleRebuildFooter_();},get footerRows(){return this.tableFooterRows_;},set sortColumnIndex(number){if(number===this.sortColumnIndex_)
-return;if(number===undefined){this.sortColumnIndex_=undefined;this.updateHeaderArrows_();this.dispatchSortingChangedEvent_();return;}
-if(this.tableColumns_.length<=number)
+this.tableColumns_=columns;this.headerCells_=[];this.columnsWithExpandButtons_=columnsWithExpandButtons;this.sortColumnIndex=undefined;this.scheduleRebuildHeaders_();this.tableRows=this.tableRows_;},get tableColumns(){return this.tableColumns_;},set tableRows(rows){this.selectedTableRowInfo_=undefined;this.selectedColumnIndex_=undefined;this.maybeUpdateSelectedRow_();this.tableRows_=rows;this.tableRowsInfo_=new WeakMap();this.scheduleRebuildBody_();},get tableRows(){return this.tableRows_;},set footerRows(rows){this.tableFooterRows_=rows;this.tableFooterRowsInfo_=new WeakMap();this.scheduleRebuildFooter_();},get footerRows(){return this.tableFooterRows_;},get userCanModifySortOrder(){return this.userCanModifySortOrder_;},set userCanModifySortOrder(userCanModifySortOrder){var newUserCanModifySortOrder=!!userCanModifySortOrder;if(newUserCanModifySortOrder===this.userCanModifySortOrder_)
+return
+this.userCanModifySortOrder_=newUserCanModifySortOrder;this.scheduleRebuildHeaders_();},set sortColumnIndex(number){if(number===this.sortColumnIndex_)
+return;if(number!==undefined){if(this.tableColumns_.length<=number)
 throw new Error('Column number '+number+' is out of bounds.');if(!this.tableColumns_[number].cmp)
-throw new Error('Column '+number+' does not have a comparator.');this.sortColumnIndex_=number;this.updateHeaderArrows_();this.scheduleRebuildBody_();this.dispatchSortingChangedEvent_();},get sortColumnIndex(){return this.sortColumnIndex_;},set sortDescending(value){var newValue=!!value;if(newValue!==this.sortDescending_){this.sortDescending_=newValue;this.updateHeaderArrows_();this.scheduleRebuildBody_();this.dispatchSortingChangedEvent_();}},get sortDescending(){return this.sortDescending_;},updateHeaderArrows_:function(){for(var i=0;i<this.headerCells_.length;i++){if(!this.tableColumns_[i].cmp){this.headerCells_[i].sideContent='';continue;}
-if(i!==this.sortColumnIndex_){this.headerCells_[i].sideContent=UNSORTED_ARROW;continue;}
-this.headerCells_[i].sideContent=this.sortDescending_?DESCENDING_ARROW:ASCENDING_ARROW;}},sortRows_:function(rows){rows.sort(function(rowA,rowB){if(this.sortDescending_)
-return this.tableColumns_[this.sortColumnIndex_].cmp(rowB.userRow,rowA.userRow);return this.tableColumns_[this.sortColumnIndex_].cmp(rowA.userRow,rowB.userRow);}.bind(this));for(var i=0;i<rows.length;i++){if(this.getExpandedForUserRow_(rows[i]))
-this.sortRows_(rows[i][this.subRowsPropertyName_]);}},generateHeaderColumns_:function(){this.headerCells_=[];Polymer.dom(this.$.head).textContent='';if(!this.showHeader_)
-return;var tr=this.appendNewElement_(this.$.head,'tr');for(var i=0;i<this.tableColumns_.length;i++){var td=this.appendNewElement_(tr,'td');var headerCell=document.createElement('tr-ui-b-table-header-cell');headerCell.column=this.tableColumns_[i];headerCell.addEventListener('selected-column-changed',this.onSelectedColumnChanged_.bind(this));if(this.tableColumns_[i].cmp){Polymer.dom(td).classList.add('sensitive');headerCell.tapCallback=this.createSortCallback_(i);if(this.sortColumnIndex_===i)
-headerCell.sideContent=this.sortDescending_?DESCENDING_ARROW:ASCENDING_ARROW;else
-headerCell.sideContent=UNSORTED_ARROW;}
-Polymer.dom(td).appendChild(headerCell);this.headerCells_.push(headerCell);}},onSelectedColumnChanged_:function(event){for(var i=0;i<this.headerCells_.length;++i){var colElement=Polymer.dom(this.$.cols).children[i];var headerCell=this.headerCells_[i];if((event.column===headerCell.column)&&event.selected){Polymer.dom(colElement).setAttribute('selected',true);}else{headerCell.selected=false;Polymer.dom(colElement).removeAttribute('selected');}}},applySizes_:function(){if(this.tableRows_.length===0&&!this.showHeader)
+throw new Error('Column '+number+' does not have a comparator.');}
+this.sortColumnIndex_=number;this.updateHeaderArrows_();this.scheduleRebuildBody_();this.dispatchSortingChangedEvent_();},get sortColumnIndex(){return this.sortColumnIndex_;},set sortDescending(value){var newValue=!!value;if(newValue!==this.sortDescending_){this.sortDescending_=newValue;this.updateHeaderArrows_();this.scheduleRebuildBody_();this.dispatchSortingChangedEvent_();}},get sortDescending(){return this.sortDescending_;},updateHeaderArrows_:function(){for(var i=0;i<this.headerCells_.length;i++){var headerCell=this.headerCells_[i];var isColumnCurrentlySorted=i===this.sortColumnIndex_;if(!this.tableColumns_[i].cmp||(!this.userCanModifySortOrder_&&!isColumnCurrentlySorted)){headerCell.sideContent='';continue;}
+if(!isColumnCurrentlySorted){headerCell.sideContent=UNSORTED_ARROW;headerCell.sideContentDisabled=false;continue;}
+headerCell.sideContent=this.sortDescending_?DESCENDING_ARROW:ASCENDING_ARROW;headerCell.sideContentDisabled=!this.userCanModifySortOrder_;}},generateHeaderColumns_:function(){var selectedTableColumnIndex=this.selectedTableColumnIndex;Polymer.dom(this.$.cols).textContent='';for(var i=0;i<this.tableColumns_.length;++i){var colElement=document.createElement('col');if(i===selectedTableColumnIndex){colElement.setAttribute('selected',true);}
+Polymer.dom(this.$.cols).appendChild(colElement);}
+this.headerCells_=[];Polymer.dom(this.$.head).textContent='';if(!this.showHeader_)
+return;var tr=this.appendNewElement_(this.$.head,'tr');for(var i=0;i<this.tableColumns_.length;i++){var td=this.appendNewElement_(tr,'td');var headerCell=document.createElement('tr-ui-b-table-header-cell');headerCell.column=this.tableColumns_[i];if(this.tableColumns_[i].cmp){var isColumnCurrentlySorted=i===this.sortColumnIndex_;if(isColumnCurrentlySorted){headerCell.sideContent=this.sortDescending_?DESCENDING_ARROW:ASCENDING_ARROW;if(!this.userCanModifySortOrder_)
+headerCell.sideContentDisabled=true;}
+if(this.userCanModifySortOrder_){Polymer.dom(td).classList.add('sensitive');if(!isColumnCurrentlySorted)
+headerCell.sideContent=UNSORTED_ARROW;headerCell.tapCallback=this.createSortCallback_(i);}}
+Polymer.dom(td).appendChild(headerCell);this.headerCells_.push(headerCell);}},applySizes_:function(){if(this.tableRows_.length===0&&!this.showHeader)
 return;var rowToRemoveSizing;var rowToSize;if(this.showHeader){rowToSize=Polymer.dom(this.$.head).children[0];rowToRemoveSizing=Polymer.dom(this.$.body).children[0];}else{rowToSize=Polymer.dom(this.$.body).children[0];rowToRemoveSizing=Polymer.dom(this.$.head).children[0];}
 for(var i=0;i<this.tableColumns_.length;i++){if(rowToRemoveSizing&&Polymer.dom(rowToRemoveSizing).children[i]){var tdToRemoveSizing=Polymer.dom(rowToRemoveSizing).children[i];tdToRemoveSizing.style.minWidth='';tdToRemoveSizing.style.width='';}
 var td=Polymer.dom(rowToSize).children[i];var delta;if(this.columnsWithExpandButtons_.indexOf(i)!==-1){td.style.paddingLeft=BASIC_INDENTATION+'px';delta=BASIC_INDENTATION+'px';}else{delta=undefined;}
 function calc(base,delta){if(delta)
 return'calc('+base+' - '+delta+')';else
 return base;}
-var w=this.tableColumns_[i].width;if(w){if(/\d+px/.test(w)){td.style.minWidth=calc(w,delta);}else if(/\d+%/.test(w)){td.style.width=w;}else{throw new Error('Unrecognized width string: '+w);}}}},createSortCallback_:function(columnNumber){return function(){var previousIndex=this.sortColumnIndex;this.sortColumnIndex=columnNumber;if(previousIndex!==columnNumber)
+var w=this.tableColumns_[i].width;if(w){if(/\d+px/.test(w)){td.style.minWidth=calc(w,delta);}else if(/\d+%/.test(w)){td.style.width=w;}else{throw new Error('Unrecognized width string: '+w);}}}},createSortCallback_:function(columnNumber){return function(){if(!this.userCanModifySortOrder_)
+return;var previousIndex=this.sortColumnIndex;this.sortColumnIndex=columnNumber;if(previousIndex!==columnNumber)
 this.sortDescending=false;else
-this.sortDescending=!this.sortDescending;}.bind(this);},generateTableColNodes_:function(){for(var i=0;i<this.headerCells_.length;++i){var colElement=document.createElement('col');if(this.headerCells_[i].selected)
-Polymer.dom(colElement).setAttribute('selected',true);Polymer.dom(this.$.cols).appendChild(colElement);}},generateTableRowNodes_:function(tableSection,userRows,rowInfoMap,indentation,lastAddedRow,parentRowInfo){if(this.sortColumnIndex_!==undefined&&tableSection===this.$.body){userRows=userRows.slice();userRows.sort(function(rowA,rowB){var c=this.tableColumns_[this.sortColumnIndex_].cmp(rowA,rowB);if(this.sortDescending_)
+this.sortDescending=!this.sortDescending;}.bind(this);},generateTableRowNodes_:function(tableSection,userRows,rowInfoMap,indentation,lastAddedRow,parentRowInfo){if(this.sortColumnIndex_!==undefined&&tableSection===this.$.body){userRows=userRows.slice();userRows.sort(function(rowA,rowB){var c=this.tableColumns_[this.sortColumnIndex_].cmp(rowA,rowB);if(this.sortDescending_)
 c=-c;return c;}.bind(this));}
 for(var i=0;i<userRows.length;i++){var userRow=userRows[i];var rowInfo=this.getOrCreateRowInfoFor_(rowInfoMap,userRow,parentRowInfo);var htmlNode=this.getHTMLNodeForRowInfo_(tableSection,rowInfo,rowInfoMap,indentation);if(lastAddedRow===undefined){Polymer.dom(tableSection).insertBefore(htmlNode,Polymer.dom(tableSection).firstChild);}else{var nextSiblingOfLastAdded=Polymer.dom(lastAddedRow).nextSibling;Polymer.dom(tableSection).insertBefore(htmlNode,nextSiblingOfLastAdded);}
 this.updateTabIndexForTableRowNode_(htmlNode);lastAddedRow=htmlNode;if(!rowInfo.isExpanded)
@@ -6725,26 +6664,24 @@
 return lastAddedRow;},getOrCreateRowInfoFor_:function(rowInfoMap,userRow,parentRowInfo){var rowInfo=undefined;if(rowInfoMap.has(userRow)){rowInfo=rowInfoMap.get(userRow);}else{rowInfo={userRow:userRow,htmlNode:undefined,parentRowInfo:parentRowInfo};rowInfoMap.set(userRow,rowInfo);}
 rowInfo.isExpanded=this.getExpandedForUserRow_(userRow);return rowInfo;},customizeTableRow_:function(userRow,trElement){if(!this.customizeTableRowCallback_)
 return;this.customizeTableRowCallback_(userRow,trElement);},getHTMLNodeForRowInfo_:function(tableSection,rowInfo,rowInfoMap,indentation){if(rowInfo.htmlNode){this.customizeTableRow_(rowInfo.userRow,rowInfo.htmlNode);return rowInfo.htmlNode;}
-var INDENT_SPACE=indentation*16;var INDENT_SPACE_NO_BUTTON=indentation*16+BASIC_INDENTATION;var trElement=this.ownerDocument.createElement('tr');rowInfo.htmlNode=trElement;rowInfo.indentation=indentation;trElement.rowInfo=rowInfo;this.customizeTableRow_(rowInfo.userRow,trElement);for(var i=0;i<this.tableColumns_.length;){var td=this.appendNewElement_(trElement,'td');td.columnIndex=i;var column=this.tableColumns_[i];var value=column.value(rowInfo.userRow);var colSpan=column.colSpan?column.colSpan:1;td.style.colSpan=colSpan;switch(column.align){case undefined:case ColumnAlignment.LEFT:break;case ColumnAlignment.RIGHT:td.style.textAlign='right';break;default:throw new Error('Invalid alignment of column at index='+i+': '+column.align);}
+var INDENT_SPACE=indentation*16;var INDENT_SPACE_NO_BUTTON=indentation*16+BASIC_INDENTATION;var trElement=this.ownerDocument.createElement('tr');rowInfo.htmlNode=trElement;rowInfo.indentation=indentation;trElement.rowInfo=rowInfo;this.customizeTableRow_(rowInfo.userRow,trElement);var isBodyRow=tableSection===this.$.body;var isExpandableRow=rowInfo.userRow[this.subRowsPropertyName_]&&rowInfo.userRow[this.subRowsPropertyName_].length;for(var i=0;i<this.tableColumns_.length;){var td=this.appendNewElement_(trElement,'td');td.columnIndex=i;var column=this.tableColumns_[i];var value=column.value(rowInfo.userRow);var colSpan=column.colSpan?column.colSpan:1;td.style.colSpan=colSpan;switch(column.align){case undefined:case ColumnAlignment.LEFT:break;case ColumnAlignment.RIGHT:td.style.textAlign='right';break;default:throw new Error('Invalid alignment of column at index='+i+': '+column.align);}
 if(this.doesColumnIndexSupportSelection(i))
 Polymer.dom(td).classList.add('supports-selection');if(this.columnsWithExpandButtons_.indexOf(i)!=-1){if(rowInfo.userRow[this.subRowsPropertyName_]&&rowInfo.userRow[this.subRowsPropertyName_].length>0){td.style.paddingLeft=INDENT_SPACE+'px';var expandButton=this.appendNewElement_(td,'expand-button');Polymer.dom(expandButton).textContent=RIGHT_ARROW;if(rowInfo.isExpanded)
 Polymer.dom(expandButton).classList.add('button-expanded');}else{td.style.paddingLeft=INDENT_SPACE_NO_BUTTON+'px';}}
 if(value!==undefined){Polymer.dom(td).appendChild(tr.ui.b.asHTMLOrTextNode(value,this.ownerDocument));}
-i+=colSpan;}
-var isSelectable=tableSection===this.$.body;var isExpandable=rowInfo.userRow[this.subRowsPropertyName_]&&rowInfo.userRow[this.subRowsPropertyName_].length;if(isSelectable||isExpandable){trElement.addEventListener('click',function(e){e.stopPropagation();if(e.target.tagName=='EXPAND-BUTTON'){this.setExpandedForUserRow_(tableSection,rowInfoMap,rowInfo.userRow,!rowInfo.isExpanded);return;}
-function getTD(cur){if(cur===trElement)
-throw new Error('woah');if(cur.parentElement===trElement)
-return cur;return getTD(cur.parentElement);}
-if(isSelectable&&this.selectionMode_!==SelectionMode.NONE){var shouldSelect=false;var columnIndex=getTD(e.target).columnIndex;switch(this.selectionMode_){case SelectionMode.ROW:shouldSelect=this.selectedTableRowInfo_!==rowInfo;break;case SelectionMode.CELL:if(this.doesColumnIndexSupportSelection(columnIndex)){shouldSelect=this.selectedTableRowInfo_!==rowInfo||this.selectedColumnIndex_!==columnIndex;}
+if(isBodyRow||isExpandableRow){td.addEventListener('click',function(i,e){e.stopPropagation();if(e.target.tagName==='EXPAND-BUTTON'){this.setExpandedForUserRow_(tableSection,rowInfoMap,rowInfo.userRow,!rowInfo.isExpanded);return;}
+if(isBodyRow&&this.selectionMode_!==SelectionMode.NONE){var shouldSelect=false;switch(this.selectionMode_){case SelectionMode.ROW:shouldSelect=this.selectedTableRowInfo_!==rowInfo;break;case SelectionMode.CELL:if(this.doesColumnIndexSupportSelection(i)){shouldSelect=this.selectedTableRowInfo_!==rowInfo||this.selectedColumnIndex_!==i;}
 break;default:throw new Error('Invalid selection mode '+
 this.selectionMode_);}
-if(shouldSelect){this.didTableRowInfoGetClicked_(rowInfo,columnIndex);return;}}
-if(isExpandable){this.setExpandedForUserRow_(tableSection,rowInfoMap,rowInfo.userRow,!rowInfo.isExpanded);}}.bind(this));}
+if(shouldSelect){this.didTableRowInfoGetClicked_(rowInfo,i);return;}}
+if(isExpandableRow){this.setExpandedForUserRow_(tableSection,rowInfoMap,rowInfo.userRow,!rowInfo.isExpanded);}}.bind(this,i));}
+if(isBodyRow){td.addEventListener('dblclick',function(i,e){e.stopPropagation();this.dispatchStepIntoEvent_(rowInfo,i);}.bind(this,i));}
+i+=colSpan;}
 return rowInfo.htmlNode;},removeSubNodes_:function(tableSection,rowInfo,rowInfoMap){if(rowInfo.userRow[this.subRowsPropertyName_]===undefined)
 return;for(var i=0;i<rowInfo.userRow[this.subRowsPropertyName_].length;i++){var subRow=rowInfo.userRow[this.subRowsPropertyName_][i];var subRowInfo=rowInfoMap.get(subRow);if(!subRowInfo)
 continue;var subNode=subRowInfo.htmlNode;if(subNode&&Polymer.dom(subNode).parentNode===tableSection){Polymer.dom(tableSection).removeChild(subNode);this.removeSubNodes_(tableSection,subRowInfo,rowInfoMap);}}},scheduleRebuildHeaders_:function(){this.headerDirty_=true;this.scheduleRebuild_();},scheduleRebuildBody_:function(){this.bodyDirty_=true;this.scheduleRebuild_();},scheduleRebuildFooter_:function(){this.footerDirty_=true;this.scheduleRebuild_();},scheduleRebuild_:function(){if(this.rebuildPending_)
 return;this.rebuildPending_=true;setTimeout(function(){this.rebuildPending_=false;this.rebuild();}.bind(this),0);},rebuildIfNeeded_:function(){this.rebuild();},rebuild:function(){var wasBodyOrHeaderDirty=this.headerDirty_||this.bodyDirty_;if(this.headerDirty_){this.generateHeaderColumns_();this.headerDirty_=false;}
-if(this.bodyDirty_){Polymer.dom(this.$.cols).textContent='';this.generateTableColNodes_();Polymer.dom(this.$.body).textContent='';this.generateTableRowNodes_(this.$.body,this.tableRows_,this.tableRowsInfo_,0,undefined,undefined);if(this.tableRows_.length===0&&this.emptyValue_!==undefined){var trElement=this.ownerDocument.createElement('tr');Polymer.dom(this.$.body).appendChild(trElement);Polymer.dom(trElement).classList.add('empty-row');var td=this.ownerDocument.createElement('td');Polymer.dom(trElement).appendChild(td);td.colSpan=this.tableColumns_.length;var emptyValue=this.emptyValue_;Polymer.dom(td).appendChild(tr.ui.b.asHTMLOrTextNode(emptyValue,this.ownerDocument));}
+if(this.bodyDirty_){Polymer.dom(this.$.body).textContent='';this.generateTableRowNodes_(this.$.body,this.tableRows_,this.tableRowsInfo_,0,undefined,undefined);if(this.tableRows_.length===0&&this.emptyValue_!==undefined){var trElement=this.ownerDocument.createElement('tr');Polymer.dom(this.$.body).appendChild(trElement);Polymer.dom(trElement).classList.add('empty-row');var td=this.ownerDocument.createElement('td');Polymer.dom(trElement).appendChild(td);td.colSpan=this.tableColumns_.length;var emptyValue=this.emptyValue_;Polymer.dom(td).appendChild(tr.ui.b.asHTMLOrTextNode(emptyValue,this.ownerDocument));}
 this.bodyDirty_=false;}
 if(wasBodyOrHeaderDirty)
 this.applySizes_();if(this.footerDirty_){Polymer.dom(this.$.foot).textContent='';this.generateTableRowNodes_(this.$.foot,this.tableFooterRows_,this.tableFooterRowsInfo_,0,undefined,undefined);if(this.tableFooterRowsInfo_.length){Polymer.dom(this.$.body).classList.add('has-footer');}else{Polymer.dom(this.$.body).classList.remove('has-footer');}
@@ -6778,13 +6715,11 @@
 this.updateSelectedState_();},didTableRowInfoGetClicked_:function(rowInfo,columnIndex){switch(this.selectionMode_){case SelectionMode.NONE:return;case SelectionMode.CELL:if(!this.doesColumnIndexSupportSelection(columnIndex))
 return;if(this.selectedColumnIndex!==columnIndex)
 this.selectedColumnIndex=columnIndex;case SelectionMode.ROW:if(this.selectedTableRowInfo_!==rowInfo)
-this.selectedTableRow=rowInfo.userRow;}},get selectedCell(){var row=this.selectedTableRow;var columnIndex=this.selectedColumnIndex;if(row===undefined||columnIndex===undefined||this.tableColumns_.length<=columnIndex)
-return undefined;var column=this.tableColumns_[columnIndex];return{row:row,column:column,value:column.value(row)};},get selectedTableColumn(){for(var i=0;i<this.headerCells_.length;i++){if(this.headerCells_[i].selected)
-return this.tableColumns_[i];}
-return undefined;},set selectedTableColumn(column){if(column!==undefined){var index=this.tableColumns.indexOf(column);if(index<0)
-throw new Error('Cannot select unknown column',column);if(!column.selectable)
-throw new Error('Cannot select un-selectable column',column);var cell=this.headerCells_[index];cell.selected=true;}
-var event={column:column,selected:column!==undefined};this.onSelectedColumnChanged_(event);tr.b.dispatchSimpleEvent(this,'selected-column-changed',true,false,event);},get selectedTableRow(){if(!this.selectedTableRowInfo_)
+this.selectedTableRow=rowInfo.userRow;}},dispatchStepIntoEvent_:function(rowInfo,columnIndex){var e=new tr.b.Event('step-into');e.tableRow=rowInfo.userRow;e.tableColumn=this.tableColumns_[columnIndex];e.columnIndex=columnIndex;this.dispatchEvent(e);},get selectedCell(){var row=this.selectedTableRow;var columnIndex=this.selectedColumnIndex;if(row===undefined||columnIndex===undefined||this.tableColumns_.length<=columnIndex)
+return undefined;var column=this.tableColumns_[columnIndex];return{row:row,column:column,value:column.value(row)};},get selectedTableColumnIndex(){var cols=Polymer.dom(this.$.cols).children;for(var i=0;i<cols.length;++i){if(cols[i].getAttribute('selected')){return i;}}
+return undefined;},set selectedTableColumnIndex(selectedIndex){var cols=Polymer.dom(this.$.cols).children;for(var i=0;i<cols.length;++i){if(i===selectedIndex)
+cols[i].setAttribute('selected',true);else
+cols[i].removeAttribute('selected');}},get selectedTableRow(){if(!this.selectedTableRowInfo_)
 return undefined;return this.selectedTableRowInfo_.userRow;},set selectedTableRow(userRow){this.rebuildIfNeeded_();if(this.selectionMode_===SelectionMode.NONE)
 throw new Error('Selection is off.');var rowInfo;if(userRow===undefined){rowInfo=undefined;}else{rowInfo=this.tableRowsInfo_.get(userRow);if(!rowInfo)
 throw new Error('Row has not been seen, must expand its parents.');}
@@ -6814,7 +6749,7 @@
 throw new Error('Selection is not supported on this column');var e=this.prepareToChangeSelection_();this.selectedColumnIndex_=selectedColumnIndex;if(this.selectedColumnIndex_===undefined)
 this.selectedTableRowInfo_=undefined;this.updateSelectedState_();this.dispatchEvent(e);},onKeyDown_:function(e){if(this.selectionMode_===SelectionMode.NONE)
 return;if(this.selectedTableRowInfo_===undefined)
-return;var code_to_command_names={13:'ENTER',37:'ARROW_LEFT',38:'ARROW_UP',39:'ARROW_RIGHT',40:'ARROW_DOWN'};var cmdName=code_to_command_names[e.keyCode];if(cmdName===undefined)
+return;var code_to_command_names={13:'ENTER',32:'SPACE',37:'ARROW_LEFT',38:'ARROW_UP',39:'ARROW_RIGHT',40:'ARROW_DOWN'};var cmdName=code_to_command_names[e.keyCode];if(cmdName===undefined)
 return;e.stopPropagation();e.preventDefault();this.performKeyCommand_(cmdName);},performKeyCommand_:function(cmdName){this.rebuildIfNeeded_();var rowInfo=this.selectedTableRowInfo_;var htmlNode=rowInfo.htmlNode;if(cmdName==='ARROW_UP'){var prev=htmlNode.previousElementSibling;if(prev){tr.ui.b.scrollIntoViewIfNeeded(prev);this.selectedTableRow=prev.rowInfo.userRow;this.focusSelected_();return;}
 return;}
 if(cmdName==='ARROW_DOWN'){var next=htmlNode.nextElementSibling;if(next){tr.ui.b.scrollIntoViewIfNeeded(next);this.selectedTableRow=next.rowInfo.userRow;this.focusSelected_();return;}
@@ -6830,18 +6765,14 @@
 return;case SelectionMode.CELL:var newIndex=this.selectedColumnIndex_-1;if(newIndex<0)
 return;if(!this.doesColumnIndexSupportSelection(newIndex))
 return;this.selectedColumnIndex=newIndex;this.focusSelected_();return;default:throw new Error('Invalid selection mode '+this.selectionMode_);}}
-if(cmdName==='ENTER'){if(rowInfo.userRow[this.subRowsPropertyName_]===undefined)
+if(cmdName==='SPACE'){if(rowInfo.userRow[this.subRowsPropertyName_]===undefined)
 return;if(rowInfo.userRow[this.subRowsPropertyName_].length===0)
 return;this.setExpandedForTableRow(rowInfo.userRow,!rowInfo.isExpanded);this.focusSelected_();return;}
+if(cmdName==='ENTER'){this.dispatchStepIntoEvent_(rowInfo,this.selectedColumnIndex_);return;}
 throw new Error('Unrecognized command '+cmdName);},focusSelected_:function(){if(!this.selectedTableRowInfo_)
-return;var node=this.getSelectableNodeGivenTableRowNode_(this.selectedTableRowInfo_.htmlNode);node.focus();},dispatchSortingChangedEvent_:function(){var e=new tr.b.Event('sort-column-changed');e.sortColumnIndex=this.sortColumnIndex_;e.sortDescending=this.sortDescending_;this.dispatchEvent(e);}});})();'use strict';var ColumnAlignment=tr.ui.b.TableFormat.ColumnAlignment;Polymer({is:'tr-ui-b-table-header-cell',created:function(){this.tapCallback_=undefined;this.cellTitle_='';this.align_=undefined;this.selectable_=false;this.column_=undefined;},ready:function(){this.$.button.addEventListener('click',this.onSelect_.bind(this));this.$.side.addEventListener('click',this.onTap_.bind(this));},onSelect_:function(){this.selected=this.$.button.getAttribute('selected')!=='true';var e=new tr.b.Event('selected-column-changed');e.column=this.column;e.selected=this.selected;this.dispatchEvent(e);},set column(column){this.column_=column;this.selectable=column.selectable;this.align=column.align;this.cellTitle=column.title;},get column(){return this.column_;},set selectable(selectable){this.selectable_=selectable;this.cellTitle=this.$.title.childNodes[0]||this.$.button.childNodes[0];},get selectable(){return this.selectable_;},set selected(selected){if(selected)
-this.$.button.setAttribute('selected',true);else
-this.$.button.removeAttribute('selected');},get selected(){if(!this.selectable_)
-return false;return this.$.button.getAttribute('selected')==='true';},set cellTitle(value){this.cellTitle_=value;var titleNode=tr.ui.b.asHTMLOrTextNode(this.cellTitle_,this.ownerDocument);this.$.title.innerText='';this.$.button.innerText='';if(this.selectable_)
-Polymer.dom(this.$.button).appendChild(titleNode);else
-Polymer.dom(this.$.title).appendChild(titleNode);},get cellTitle(){return this.cellTitle_;},set align(align){switch(align){case undefined:case ColumnAlignment.LEFT:this.style.justifyContent='';break;case ColumnAlignment.RIGHT:this.style.justifyContent='flex-end';break;default:throw new Error('Invalid alignment of column (title=\''+
+return;var node=this.getSelectableNodeGivenTableRowNode_(this.selectedTableRowInfo_.htmlNode);node.focus();},dispatchSortingChangedEvent_:function(){var e=new tr.b.Event('sort-column-changed');e.sortColumnIndex=this.sortColumnIndex_;e.sortDescending=this.sortDescending_;this.dispatchEvent(e);}});})();'use strict';var ColumnAlignment=tr.ui.b.TableFormat.ColumnAlignment;Polymer({is:'tr-ui-b-table-header-cell',created:function(){this.tapCallback_=undefined;this.cellTitle_='';this.align_=undefined;this.selectable_=false;this.column_=undefined;},ready:function(){this.addEventListener('click',this.onTap_.bind(this));},set column(column){this.column_=column;this.align=column.align;this.cellTitle=column.title;},get column(){return this.column_;},set cellTitle(value){this.cellTitle_=value;var titleNode=tr.ui.b.asHTMLOrTextNode(this.cellTitle_,this.ownerDocument);this.$.title.innerText='';Polymer.dom(this.$.title).appendChild(titleNode);},get cellTitle(){return this.cellTitle_;},set align(align){switch(align){case undefined:case ColumnAlignment.LEFT:this.style.justifyContent='';break;case ColumnAlignment.RIGHT:this.style.justifyContent='flex-end';break;default:throw new Error('Invalid alignment of column (title=\''+
 this.cellTitle_+'\'): '+align);}
-this.align_=align;},get align(){return this.align_;},clearSideContent:function(){Polymer.dom(this.$.side).textContent='';},set sideContent(content){Polymer.dom(this.$.side).textContent=content;this.$.side.style.display=content?'inline':'none';},get sideContent(){return Polymer.dom(this.$.side).textContent;},set tapCallback(callback){this.style.cursor='pointer';this.tapCallback_=callback;},get tapCallback(){return this.tapCallback_;},onTap_:function(){if(this.tapCallback_)
+this.align_=align;},get align(){return this.align_;},clearSideContent:function(){Polymer.dom(this.$.side).textContent='';},set sideContent(content){Polymer.dom(this.$.side).textContent=content;this.$.side.style.display=content?'inline':'none';},get sideContent(){return Polymer.dom(this.$.side).textContent;},set sideContentDisabled(sideContentDisabled){this.$.side.classList.toggle('disabled',sideContentDisabled);},get sideContentDisabled(){return this.$.side.classList.contains('disabled');},set tapCallback(callback){this.style.cursor='pointer';this.tapCallback_=callback;},get tapCallback(){return this.tapCallback_;},onTap_:function(){if(this.tapCallback_)
 this.tapCallback_();}});'use strict';tr.exportTo('tr.b',function(){function _iterateElementDeeplyImpl(element,cb,thisArg,includeElement){if(includeElement&&cb.call(thisArg,element))
 return true;if(element.root&&element.root!==element&&_iterateElementDeeplyImpl(element.root,cb,thisArg,false)){return true;}
 var children=Polymer.dom(element).children;for(var i=0;i<children.length;i++)
@@ -6858,46 +6789,183 @@
 function findDeepElementsMatching(element,selector){return findDeepElementsMatchingPredicate(element,function(element){return element.matches(selector);});}
 function findDeepElementWithTextContent(element,re){return findDeepElementMatchingPredicate(element,function(element){if(element.children.length!==0)
 return false;return re.test(Polymer.dom(element).textContent);});}
-return{iterateElementDeeply:iterateElementDeeply,findDeepElementMatching:findDeepElementMatching,findDeepElementsMatching:findDeepElementsMatching,findDeepElementMatchingPredicate:findDeepElementMatchingPredicate,findDeepElementsMatchingPredicate:findDeepElementsMatchingPredicate,findDeepElementWithTextContent:findDeepElementWithTextContent};});'use strict';tr.exportTo('tr.v',function(){function Value(name,opt_options){if(typeof(name)!=='string')
-throw new Error('name must be a string');this.name_=name;this.guid_=undefined;this.diagnostics=new tr.v.d.DiagnosticMap();var options=opt_options||{};this.description=options.description;this.important=options.important!==undefined?options.important:false;}
-Value.fromDict=function(d){var value=undefined;switch(d.type){case'numeric':value=NumericValue.fromDict(d);break;case'failure':value=FailureValue.fromDict(d);break;default:throw new Error('Not implemented');}
-value.guid=d.guid;value.diagnostics.addDicts(d.diagnostics);return value;};Value.prototype={get guid(){if(this.guid_===undefined)
-this.guid_=tr.b.GUID.allocateUUID4();return this.guid_;},set guid(guid){if(this.guid_!==undefined)
-throw new Error('Cannot reset guid');this.guid_=guid;},get name(){return this.name_;},asDict:function(){return this.asJSON();},asJSON:function(){var d={guid:this.guid,name:this.name_,description:this.description,important:this.important,diagnostics:this.diagnostics.asDict()};this.asDictInto_(d);if(d.type===undefined)
-throw new Error('asDictInto_ must set type field');return d;},asDictInto_:function(d){throw new Error('Not implemented');}};function NumericValue(name,numeric,opt_options){if(!(numeric instanceof tr.v.NumericBase))
-throw new Error('Expected numeric to be instance of tr.v.NumericBase');Value.call(this,name,opt_options);this.numeric=numeric;}
-NumericValue.fromDict=function(d){if(d.numeric===undefined)
-throw new Error('Expected numeric to be provided');var numeric=tr.v.NumericBase.fromDict(d.numeric);var value=new NumericValue(d.name,numeric,d);return value;};NumericValue.prototype={__proto__:Value.prototype,merge:function(other){if(!(other instanceof NumericValue))
-throw new Error('Merging non-NumericValues is not supported');var numeric=this.numeric.merge(other.numeric);var result=new NumericValue(this.name,numeric);return result;},asDictInto_:function(d){d.type='numeric';d.numeric=this.numeric.asDict();}};function FailureValue(name,opt_options){var options=opt_options||{};var stack;if(options.stack===undefined){if(options.stack_str===undefined){throw new Error('Expected stack_str or stack to be provided');}else{stack=options.stack_str;}}else{stack=options.stack;}
-if(typeof stack!=='string')
-throw new Error('stack must be provided as a string');Value.call(this,name,options);this.stack=stack;}
-FailureValue.fromError=function(e){var ex=tr.b.normalizeException(e);return new FailureValue(ex.typeName,{description:ex.message,stack:ex.stack});};FailureValue.fromDict=function(d){if(d.units!==undefined)
-throw new Error('Expected units to be undefined');if(d.stack_str===undefined)
-throw new Error('Expected stack_str to be provided');return new FailureValue(d.name,d);};FailureValue.prototype={__proto__:Value.prototype,asDictInto_:function(d){d.type='failure';d.stack_str=this.stack;}};return{Value:Value,NumericValue:NumericValue,FailureValue:FailureValue};});'use strict';tr.exportTo('tr.v.ui',function(){var emojiPrefix=String.fromCharCode(55357);var Emoji={GRINNING_FACE:emojiPrefix+String.fromCharCode(56835),NEUTRAL_FACE:emojiPrefix+String.fromCharCode(56848),CONFOUNDED_FACE:emojiPrefix+String.fromCharCode(56854)};function createScalarSpan(value,opt_config){if(value===undefined)
-return'';var config=opt_config||{};var ownerDocument=config.ownerDocument||document;var span=ownerDocument.createElement('tr-v-ui-scalar-span');if(value instanceof tr.v.NumericValue){value=value.numeric;config.unit=value.unit;}
-var numericValue;if(value instanceof tr.v.ScalarNumeric){span.value=value;numericValue=value.value;}else if(value instanceof tr.v.Numeric){numericValue=value.average;if(numericValue===undefined)
+return{iterateElementDeeply:iterateElementDeeply,findDeepElementMatching:findDeepElementMatching,findDeepElementsMatching:findDeepElementsMatching,findDeepElementMatchingPredicate:findDeepElementMatchingPredicate,findDeepElementsMatchingPredicate:findDeepElementsMatchingPredicate,findDeepElementWithTextContent:findDeepElementWithTextContent};});'use strict';tr.exportTo('tr.b',function(){class RunningStatistics{constructor(){this.mean_=0;this.count_=0;this.max_=-Infinity;this.min_=Infinity;this.sum_=0;this.variance_=0;this.meanlogs_=0;}
+get count(){return this.count_;}
+get geometricMean(){if(this.meanlogs_===undefined)
+return 0;return Math.exp(this.meanlogs_);}
+get mean(){if(this.count_==0)
+return undefined;return this.mean_;}
+get max(){return this.max_;}
+get min(){return this.min_;}
+get sum(){return this.sum_;}
+get variance(){if(this.count_==0)
+return undefined;if(this.count_==1)
+return 0;return this.variance_/(this.count_-1);}
+get stddev(){if(this.count_==0)
+return undefined;return Math.sqrt(this.variance);}
+add(x){this.count_++;this.max_=Math.max(this.max_,x);this.min_=Math.min(this.min_,x);this.sum_+=x;if(x<=0)
+this.meanlogs_=undefined;else if(this.meanlogs_!==undefined)
+this.meanlogs_+=(Math.log(Math.abs(x))-this.meanlogs_)/this.count;if(this.count_===1){this.mean_=x;this.variance_=0;}else{var oldMean=this.mean_;var oldVariance=this.variance_;if(oldMean===Infinity||oldMean===-Infinity){this.mean_=this.sum_/this.count_;}else{this.mean_=oldMean+(x-oldMean)/this.count_;}
+this.variance_=oldVariance+(x-oldMean)*(x-this.mean_);}}
+merge(other){var result=new RunningStatistics();result.count_=this.count_+other.count_;result.sum_=this.sum_+other.sum_;result.min_=Math.min(this.min_,other.min_);result.max_=Math.max(this.max_,other.max_);if(result.count===0){result.mean_=0;result.variance_=0;result.meanlogs_=0;}else{result.mean_=result.sum/result.count;var deltaMean=(this.mean||0)-(other.mean||0);result.variance_=this.variance_+other.variance_+
+(this.count*other.count*deltaMean*deltaMean/result.count);if(this.meanlogs_===undefined||other.meanlogs_===undefined){result.meanlogs_=undefined;}else{result.meanlogs_=(this.count*this.meanlogs_+
+other.count*other.meanlogs_)/result.count;}}
+return result;}
+asDict(){return{mean:this.mean,meanlogs:this.meanlogs_,count:this.count,max:this.max,min:this.min,sum:this.sum,variance:this.variance_};}
+static fromDict(d){var result=new RunningStatistics();result.mean_=d.mean;result.count_=d.count;result.max_=d.max;result.min_=d.min;result.sum_=d.sum;result.variance_=d.variance;result.meanlogs_=d.meanlogs;return result;}}
+return{RunningStatistics:RunningStatistics};});'use strict';tr.exportTo('tr.v',function(){var MAX_DIAGNOSTIC_MAPS=16;var DEFAULT_ALPHA=0.05;var Significance={DONT_CARE:-1,INSIGNIFICANT:0,SIGNIFICANT:1};var DEFAULT_BOUNDARIES_FOR_UNIT=new Map();class HistogramBin{constructor(range){this.range=range;this.count=0;this.diagnosticMaps=[];}
+addSample(value){this.count+=1;}
+addDiagnosticMap(diagnostics){tr.b.Statistics.uniformlySampleStream(this.diagnosticMaps,this.count,diagnostics,MAX_DIAGNOSTIC_MAPS);}
+addBin(other){if(!this.range.equals(other.range))
+throw new Error('Merging incompatible Histogram bins.');tr.b.Statistics.mergeSampledStreams(this.diagnosticMaps,this.count,other.diagnosticMaps,other.count,MAX_DIAGNOSTIC_MAPS);this.count+=other.count;}
+fromDict(d){this.count=d.count;for(var map of d.diagnosticMaps)
+this.diagnosticMaps.push(tr.v.d.DiagnosticMap.fromDict(map));}
+asDict(){return{count:this.count,diagnosticMaps:this.diagnosticMaps.map(d=>d.asDict())};}}
+class Histogram{constructor(name,unit,opt_binBoundaries){var binBoundaries=opt_binBoundaries;if(!binBoundaries){var baseUnit=unit.baseUnit?unit.baseUnit:unit;binBoundaries=DEFAULT_BOUNDARIES_FOR_UNIT.get(baseUnit.unitName);}
+this.guid_=undefined;this.allBins=[];this.centralBins=[];this.description='';this.diagnostics=new tr.v.d.DiagnosticMap();this.maxCount_=0;this.name_=name;this.nanDiagnosticMaps=[];this.numNans=0;this.running=new tr.b.RunningStatistics();this.sampleValues_=[];this.shortName=undefined;this.summaryOptions={count:true,sum:true,avg:true,geometricMean:false,std:true,min:true,max:true,nans:false,percentile:[]};this.unit=unit;this.underflowBin=new HistogramBin(tr.b.Range.fromExplicitRange(-Number.MAX_VALUE,binBoundaries.minBinBoundary));this.overflowBin=new HistogramBin(tr.b.Range.fromExplicitRange(binBoundaries.maxBinBoundary,Number.MAX_VALUE));for(var range of binBoundaries)
+this.centralBins.push(new HistogramBin(range));this.allBins.push(this.underflowBin);for(var bin of this.centralBins)
+this.allBins.push(bin);this.allBins.push(this.overflowBin);this.maxNumSampleValues=this.allBins.length*10;}
+get name(){return this.name_;}
+get guid(){if(this.guid_===undefined)
+this.guid_=tr.b.GUID.allocateUUID4();return this.guid_;}
+set guid(guid){if(this.guid_!==undefined)
+throw new Error('Cannot reset guid');this.guid_=guid;}
+static fromDict(d){var boundaries=HistogramBinBoundaries.createWithBoundaries(d.binBoundaries);var n=new Histogram(d.name,tr.b.Unit.fromJSON(d.unit),boundaries);n.guid=d.guid;n.shortName=d.shortName;n.description=d.description;n.diagnostics.addDicts(d.diagnostics);n.underflowBin.fromDict(d.underflowBin);for(var i=0;i<d.centralBins.length;++i)
+n.centralBins[i].fromDict(d.centralBins[i]);n.overflowBin.fromDict(d.overflowBin);for(var bin of n.allBins)
+n.maxCount_=Math.max(n.maxCount_,bin.count);if(d.running)
+n.running=tr.b.RunningStatistics.fromDict(d.running);if(d.summaryOptions)
+n.customizeSummaryOptions(d.summaryOptions);n.maxNumSampleValues=d.maxNumSampleValues;n.sampleValues_=d.sampleValues;n.numNans=d.numNans;for(var map of d.nanDiagnosticMaps)
+n.nanDiagnosticMaps.push(tr.v.d.DiagnosticMap.fromDict(map));return n;}
+static buildFromSamples(unit,samples){var boundaries=HistogramBinBoundaries.createFromSamples(samples);var result=new Histogram(unit,boundaries);result.maxNumSampleValues=1000;for(var sample of samples)
+result.addSample(sample);return result;}
+get numValues(){return tr.b.Statistics.sum(this.allBins,function(e){return e.count;});}
+get average(){return this.running.mean;}
+get geometricMean(){return this.running.geometricMean;}
+get sum(){return this.running.sum;}
+get maxCount(){return this.maxCount_;}
+getDifferenceSignificance(other,opt_alpha){if(this.unit!==other.unit)
+throw new Error('Cannot compare Numerics with different units');if(this.unit.improvementDirection===tr.b.ImprovementDirection.DONT_CARE){return tr.v.Significance.DONT_CARE;}
+if(!(other instanceof Histogram))
+throw new Error('Unable to compute a p-value');var mwu=tr.b.Statistics.mwu.test(this.sampleValues,other.sampleValues);if(mwu.p<(opt_alpha||DEFAULT_ALPHA))
+return tr.v.Significance.SIGNIFICANT;return tr.v.Significance.INSIGNIFICANT;}
+getApproximatePercentile(percent){if(!(percent>=0&&percent<=1))
+throw new Error('percent must be [0,1]');if(this.numValues==0)
+return 0;var valuesToSkip=Math.floor((this.numValues-1)*percent);for(var i=0;i<this.allBins.length;i++){var bin=this.allBins[i];valuesToSkip-=bin.count;if(valuesToSkip<0){if(bin===this.underflowBin)
+return bin.range.max;else if(bin===this.overflowBin)
+return bin.range.min;else
+return bin.range.center;}}
+throw new Error('Unreachable');}
+getBinForValue(value){var binIndex=tr.b.findHighIndexInSortedArray(this.allBins,b=>value<b.range.max?-1:1);return this.allBins[binIndex]||this.overflowBin;}
+addSample(value,opt_diagnostics){if(opt_diagnostics&&!(opt_diagnostics instanceof tr.v.d.DiagnosticMap))
+opt_diagnostics=tr.v.d.DiagnosticMap.fromObject(opt_diagnostics);if(typeof(value)!=='number'||isNaN(value)){this.numNans++;if(opt_diagnostics){tr.b.Statistics.uniformlySampleStream(this.nanDiagnosticMaps,this.numNans,opt_diagnostics,MAX_DIAGNOSTIC_MAPS);}}else{this.running.add(value);var bin=this.getBinForValue(value);bin.addSample(value);if(opt_diagnostics)
+bin.addDiagnosticMap(opt_diagnostics);if(bin.count>this.maxCount_)
+this.maxCount_=bin.count;}
+tr.b.Statistics.uniformlySampleStream(this.sampleValues_,this.numValues+this.numNans,value,this.maxNumSampleValues);}
+sampleValuesInto(samples){for(var sampleValue of this.sampleValues)
+samples.push(sampleValue);}
+canAddHistogram(other){if(this.unit!==other.unit)
+return false;if(this.allBins.length!==other.allBins.length)
+return false;for(var i=0;i<this.allBins.length;++i)
+if(!this.allBins[i].range.equals(other.allBins[i].range))
+return false;return true;}
+addHistogram(other){if(!this.canAddHistogram(other))
+throw new Error('Merging incompatible Numerics.');tr.b.Statistics.mergeSampledStreams(this.nanDiagnosticMaps,this.numNans,other.nanDiagnosticMaps,other.numNans,MAX_DIAGNOSTIC_MAPS);tr.b.Statistics.mergeSampledStreams(this.sampleValues,this.numValues,other.sampleValues,other.numValues,tr.b.Statistics.mean([this.maxNumSampleValues,other.maxNumSampleValues]));this.numNans+=other.numNans;this.running=this.running.merge(other.running);for(var i=0;i<this.allBins.length;++i){this.allBins[i].addBin(other.allBins[i]);}}
+customizeSummaryOptions(summaryOptions){tr.b.iterItems(summaryOptions,function(key,value){this.summaryOptions[key]=value;},this);}
+get statisticsScalars(){function statNameToKey(stat){switch(stat){case'std':return'stddev';case'avg':return'mean';}
+return stat;}
+function percentToString(percent){if(percent<0||percent>1)
+throw new Error('Percent must be between 0.0 and 1.0');switch(percent){case 0:return'000';case 1:return'100';}
+var str=percent.toString();if(str[1]!=='.')
+throw new Error('Unexpected percent');str=str+'0'.repeat(Math.max(4-str.length,0));if(str.length>4)
+str=str.slice(0,4)+'_'+str.slice(4);return'0'+str.slice(2);}
+var results=new Map();tr.b.iterItems(this.summaryOptions,function(stat,option){if(!option)
+return;if(stat==='percentile'){option.forEach(function(percent){var percentile=this.getApproximatePercentile(percent);results.set('pct_'+percentToString(percent),new tr.v.ScalarNumeric(this.unit,percentile));},this);}else if(stat==='nans'){results.set('nans',new tr.v.ScalarNumeric(tr.b.Unit.byName.count_smallerIsBetter,this.numNans));}else{var statUnit=stat==='count'?tr.b.Unit.byName.count_smallerIsBetter:this.unit;var key=statNameToKey(stat);var statValue=this.running[key];if(typeof(statValue)==='number'){results.set(stat,new tr.v.ScalarNumeric(statUnit,statValue));}}},this);return results;}
+get sampleValues(){return this.sampleValues_;}
+get binBoundaries(){var boundaries=[];for(var bin of this.centralBins)
+boundaries.push(bin.range.min);boundaries.push(this.overflowBin.range.min);return boundaries;}
+clone(){return Histogram.fromDict(this.asDict());}
+asDict(){return{name:this.name,guid:this.guid,shortName:this.shortName,description:this.description,diagnostics:this.diagnostics.asDict(),unit:this.unit.asJSON(),binBoundaries:this.binBoundaries,underflowBin:this.underflowBin.asDict(),centralBins:this.centralBins.map(bin=>bin.asDict()),overflowBin:this.overflowBin.asDict(),running:this.running.asDict(),summaryOptions:this.summaryOptions,maxNumSampleValues:this.maxNumSampleValues,sampleValues:this.sampleValues,numNans:this.numNans,nanDiagnosticMaps:this.nanDiagnosticMaps.map(dm=>dm.asDict()),};}}
+class HistogramBinBoundaries{static createLinear(min,max,numBins){return new HistogramBinBoundaries(min).addLinearBins(max,numBins);}
+static createExponential(min,max,numBins){return new HistogramBinBoundaries(min).addExponentialBins(max,numBins);}
+static createWithBoundaries(binBoundaries){var builder=new HistogramBinBoundaries(binBoundaries[0]);for(var boundary of binBoundaries.slice(1))
+builder.addBinBoundary(boundary);return builder;}
+static createFromSamples(samples){var range=new tr.b.Range();for(var sample of samples)
+if(!isNaN(Math.max(sample)))
+range.addValue(sample);if(range.isEmpty)
+range.addValue(1);if(range.min===range.max)
+range.addValue(range.min-1);var numBins=Math.ceil(Math.sqrt(samples.length));var builder=new HistogramBinBoundaries(range.min);builder.addLinearBins(range.max,numBins);return builder;}
+constructor(minBinBoundary){this.boundaries_=[minBinBoundary];}
+get minBinBoundary(){return this.boundaries_[0];}
+get maxBinBoundary(){return this.boundaries_[this.boundaries_.length-1];}*[Symbol.iterator](){for(var i=0;i<this.boundaries_.length-1;++i){yield tr.b.Range.fromExplicitRange(this.boundaries_[i],this.boundaries_[i+1]);}}
+addBinBoundary(nextMaxBinBoundary){if(nextMaxBinBoundary<=this.maxBinBoundary){throw new Error('The added max bin boundary must be larger than '+'the current max boundary');}
+this.boundaries_.push(nextMaxBinBoundary);return this;}
+addLinearBins(nextMaxBinBoundary,binCount){if(binCount<=0)
+throw new Error('Bin count must be positive');var curMaxBinBoundary=this.maxBinBoundary;if(curMaxBinBoundary>=nextMaxBinBoundary){throw new Error('The new max bin boundary must be greater than '+'the previous max bin boundary');}
+var binWidth=(nextMaxBinBoundary-curMaxBinBoundary)/binCount;for(var i=1;i<binCount;i++)
+this.addBinBoundary(curMaxBinBoundary+i*binWidth);this.addBinBoundary(nextMaxBinBoundary);return this;}
+addExponentialBins(nextMaxBinBoundary,binCount){if(binCount<=0)
+throw new Error('Bin count must be positive');var curMaxBinBoundary=this.maxBinBoundary;if(curMaxBinBoundary<=0)
+throw new Error('Current max bin boundary must be positive');if(curMaxBinBoundary>=nextMaxBinBoundary){throw new Error('The last added max boundary must be greater than '+'the current max boundary boundary');}
+var binExponentWidth=Math.log(nextMaxBinBoundary/curMaxBinBoundary)/binCount;for(var i=1;i<binCount;i++){this.addBinBoundary(curMaxBinBoundary*Math.exp(i*binExponentWidth));}
+this.addBinBoundary(nextMaxBinBoundary);return this;}}
+DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.timeDurationInMs.unitName,HistogramBinBoundaries.createExponential(1e-3,1e6,1e2));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.timeStampInMs.unitName,HistogramBinBoundaries.createLinear(0,1e10,1e3));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.normalizedPercentage.unitName,HistogramBinBoundaries.createLinear(0,1.0,20));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.sizeInBytes.unitName,HistogramBinBoundaries.createExponential(1,1e12,1e2));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.energyInJoules.unitName,HistogramBinBoundaries.createExponential(1e-3,1e3,50));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.powerInWatts.unitName,HistogramBinBoundaries.createExponential(1e-3,1,50));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.unitlessNumber.unitName,HistogramBinBoundaries.createExponential(1e-3,1e3,50));DEFAULT_BOUNDARIES_FOR_UNIT.set(tr.b.Unit.byName.count.unitName,HistogramBinBoundaries.createExponential(1,1e3,20));return{Significance:Significance,Histogram:Histogram,HistogramBinBoundaries:HistogramBinBoundaries,};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'tr-v-ui-scalar-context-controller',created:function(){this.host_=undefined;this.groupToContext_=new Map();this.dirtyGroups_=new Set();},attached:function(){if(this.host_){throw new Error('Scalar context controller is already attached to a host');}
+var host=findParentOrHost(this);if(host.__scalarContextController){throw new Error('Multiple scalar context controllers attached to this host');}
+host.__scalarContextController=this;this.host_=host;},detached:function(){if(!this.host_)
+throw new Error('Scalar context controller is not attached to a host');if(this.host_.__scalarContextController!==this){throw new Error('Scalar context controller is not attached to its host');}
+delete this.host_.__scalarContextController;this.host_=undefined;},getContext:function(group){return this.groupToContext_.get(group);},onScalarSpanAdded:function(group,span){var context=this.groupToContext_.get(group);if(context===undefined){context={spans:new Set(),range:new tr.b.Range()};this.groupToContext_.set(group,context);}
+if(context.spans.has(span))
+throw new Error('Scalar span already registered with group: '+group);context.spans.add(span);this._markGroupDirtyAndScheduleUpdate(group);},onScalarSpanRemoved:function(group,span){var context=this.groupToContext_.get(group);if(!context.spans.has(span))
+throw new Error('Scalar span not registered with group: '+group);context.spans.delete(span);this._markGroupDirtyAndScheduleUpdate(group);},onScalarSpanUpdated:function(group,span){var context=this.groupToContext_.get(group);if(!context.spans.has(span))
+throw new Error('Scalar span not registered with group: '+group);this._markGroupDirtyAndScheduleUpdate(group);},_markGroupDirtyAndScheduleUpdate:function(group){var alreadyDirty=this.dirtyGroups_.size>0;this.dirtyGroups_.add(group);if(!alreadyDirty)
+tr.b.requestAnimationFrame(this.updateContext.bind(this));},updateContext:function(){var groups=this.dirtyGroups_;if(groups.size===0)
+return;this.dirtyGroups_=new Set();for(var group of groups)
+this.updateGroup_(group);var event=new tr.b.Event('context-updated');event.groups=groups;this.dispatchEvent(event);},updateGroup_:function(group){var context=this.groupToContext_.get(group);if(context.spans.size===0){this.groupToContext_.delete(group);return;}
+context.range.reset();for(var span of context.spans)
+context.range.addValue(span.value);}});function getScalarContextControllerForElement(element){while(element){if(element.__scalarContextController)
+return element.__scalarContextController;element=findParentOrHost(element);}
+return undefined;}
+function findParentOrHost(node){if(node.parentElement)
+return node.parentElement;while(Polymer.dom(node).parentNode)
+node=Polymer.dom(node).parentNode;return node.host;}
+return{getScalarContextControllerForElement:getScalarContextControllerForElement};});'use strict';tr.exportTo('tr.v.ui',function(){var emojiPrefix=String.fromCharCode(55357);var Emoji={GRINNING_FACE:emojiPrefix+String.fromCharCode(56835),NEUTRAL_FACE:emojiPrefix+String.fromCharCode(56848),CONFOUNDED_FACE:emojiPrefix+String.fromCharCode(56854)};function createScalarSpan(value,opt_config){if(value===undefined)
+return'';var config=opt_config||{};var ownerDocument=config.ownerDocument||document;var span=ownerDocument.createElement('tr-v-ui-scalar-span');var numericValue;if(value instanceof tr.v.ScalarNumeric){span.value=value;numericValue=value.value;}else if(value instanceof tr.v.Histogram){numericValue=value.average;if(numericValue===undefined)
 return'';span.setValueAndUnit(numericValue,value.unit);}else{var unit=config.unit;if(unit===undefined){throw new Error('Unit must be provided in config when value is a number');}
 span.setValueAndUnit(value,unit);numericValue=value;}
 if(config.context)
-span.context=config.context;if(config.total)
-span.percentage=numericValue/config.total;if(config.rightAlign)
+span.context=config.context;if(config.customContextRange)
+span.customContextRange=config.customContextRange;if(config.rightAlign)
 span.rightAlign=true;if(config.significance!==undefined)
-span.significance=config.significance;return span;}
-return{Emoji:Emoji,createScalarSpan:createScalarSpan};});'use strict';Polymer({is:'tr-v-ui-scalar-span',created:function(){this.value_=undefined;this.unit_=undefined;this.context_=undefined;this.warning_=undefined;this.percentage_=undefined;this.significance_=tr.v.Significance.DONT_CARE;},get significance(){return this.significance_;},set significance(s){this.significance_=s;this.updateContent_();},set contentTextDecoration(deco){this.$.content.style.textDecoration=deco;},get value(){return this.value_;},set value(value){if(value instanceof tr.v.ScalarNumeric){this.value_=value.value;this.unit_=value.unit;}else{this.value_=value;}
-this.updateContent_();},attached:function(){tr.v.Unit.addEventListener('display-mode-changed',this.updateContent_.bind(this));},detached:function(){tr.v.Unit.removeEventListener('display-mode-changed',this.updateContent_.bind(this));},get context(){return this.context_;},set context(context){this.context_=context;this.updateContent_();},get unit(){return this.unit_;},set unit(unit){this.unit_=unit;this.updateContent_();},setValueAndUnit:function(value,unit){this.value_=value;this.unit_=unit;this.updateContent_();},get percentage(){return this.percentage_;},set percentage(percentage){this.percentage_=percentage;this.updateSparkline_();},get rightAlign(){return Polymer.dom(this.$.content).classList.contains('right-align');},set rightAlign(rightAlign){if(rightAlign)
+span.significance=config.significance;if(config.contextGroup!==undefined)
+span.contextGroup=config.contextGroup;return span;}
+return{Emoji:Emoji,createScalarSpan:createScalarSpan};});'use strict';Polymer({is:'tr-v-ui-scalar-span',properties:{contextGroup:{type:String,reflectToAttribute:true,observer:'contextGroupChanged_'}},created:function(){this.value_=undefined;this.unit_=undefined;this.context_=undefined;this.warning_=undefined;this.significance_=tr.v.Significance.DONT_CARE;this.shouldSearchForContextController_=false;this.lazyContextController_=undefined;this.onContextUpdated_=this.onContextUpdated_.bind(this);this.customContextRange_=undefined;},get significance(){return this.significance_;},set significance(s){this.significance_=s;this.updateContents_();},set contentTextDecoration(deco){this.$.content.style.textDecoration=deco;},get value(){return this.value_;},set value(value){if(value instanceof tr.v.ScalarNumeric){this.value_=value.value;this.unit_=value.unit;}else{this.value_=value;}
+this.updateContents_();if(this.hasContext_(this.contextGroup))
+this.contextController_.onScalarSpanUpdated(this.contextGroup,this);else
+this.updateSparkline_();},get contextController_(){if(this.shouldSearchForContextController_){this.lazyContextController_=tr.v.ui.getScalarContextControllerForElement(this);this.shouldSearchForContextController_=false;}
+return this.lazyContextController_;},hasContext_:function(contextGroup){return!!(contextGroup&&this.contextController_);},contextGroupChanged_:function(newContextGroup,oldContextGroup){this.detachFromContextControllerIfPossible_(oldContextGroup);if(!this.attachToContextControllerIfPossible_(newContextGroup)){this.onContextUpdated_();}},attachToContextControllerIfPossible_:function(contextGroup){if(!this.hasContext_(contextGroup))
+return false;this.contextController_.addEventListener('context-updated',this.onContextUpdated_);this.contextController_.onScalarSpanAdded(contextGroup,this);return true;},detachFromContextControllerIfPossible_:function(contextGroup){if(!this.hasContext_(contextGroup))
+return;this.contextController_.removeEventListener('context-updated',this.onContextUpdated_);this.contextController_.onScalarSpanRemoved(contextGroup,this);},attached:function(){tr.b.Unit.addEventListener('display-mode-changed',this.updateContents_.bind(this));this.shouldSearchForContextController_=true;this.attachToContextControllerIfPossible_(this.contextGroup);},detached:function(){tr.b.Unit.removeEventListener('display-mode-changed',this.updateContents_.bind(this));this.detachFromContextControllerIfPossible_(this.contextGroup);this.shouldSearchForContextController_=false;this.lazyContextController_=undefined;},onContextUpdated_:function(){this.updateSparkline_();},get context(){return this.context_;},set context(context){this.context_=context;this.updateContents_();},get unit(){return this.unit_;},set unit(unit){this.unit_=unit;this.updateContents_();this.updateSparkline_();},setValueAndUnit:function(value,unit){this.value_=value;this.unit_=unit;this.updateContents_();},get customContextRange(){return this.customContextRange_;},set customContextRange(customContextRange){this.customContextRange_=customContextRange;this.updateSparkline_();},get rightAlign(){return Polymer.dom(this.$.content).classList.contains('right-align');},set rightAlign(rightAlign){if(rightAlign)
 Polymer.dom(this.$.content).classList.add('right-align');else
-Polymer.dom(this.$.content).classList.remove('right-align');},updateSparkline_:function(){if(this.percentage_===undefined){this.$.sparkline.style.display='none';this.$.sparkline.style.width='0';}else{this.$.sparkline.style.display='block';this.$.sparkline.style.width=(this.percentage_*100)+'%';}},updateContent_:function(){Polymer.dom(this.$.significance).textContent='';Polymer.dom(this.$.content).textContent='';Polymer.dom(this.$.content).classList.remove('better');Polymer.dom(this.$.content).classList.remove('worse');Polymer.dom(this.$.significance).classList.remove('better');Polymer.dom(this.$.significance).classList.remove('worse');if(this.unit_===undefined)
+Polymer.dom(this.$.content).classList.remove('right-align');},updateSparkline_:function(){Polymer.dom(this.$.sparkline).classList.remove('positive');Polymer.dom(this.$.sparkline).classList.remove('better');Polymer.dom(this.$.sparkline).classList.remove('worse');Polymer.dom(this.$.sparkline).classList.remove('same');this.$.sparkline.style.display='none';this.$.sparkline.style.left='0';this.$.sparkline.style.width='0';var range=this.customContextRange_;if(!range&&this.hasContext_(this.contextGroup)){var context=this.contextController_.getContext(this.contextGroup);if(context)
+range=context.range;}
+if(!range||range.isEmpty)
+return;var leftPoint=Math.min(range.min,0);var rightPoint=Math.max(range.max,0);var pointDistance=rightPoint-leftPoint;if(pointDistance===0){return;}
+this.$.sparkline.style.display='block';var left,width;if(this.value>0){width=Math.min(this.value,rightPoint);left=-leftPoint;Polymer.dom(this.$.sparkline).classList.add('positive');}else if(this.value<=0){width=-Math.max(this.value,leftPoint);left=(-leftPoint)-width;}
+this.$.sparkline.style.left=this.buildSparklineStyle_(left/pointDistance,false);this.$.sparkline.style.width=this.buildSparklineStyle_(width/pointDistance,true);var changeClass=this.changeClassName_;if(changeClass)
+Polymer.dom(this.$.sparkline).classList.add(changeClass);},buildSparklineStyle_:function(ratio,isWidth){var position='calc('+ratio+' * (100% - 1px)';if(isWidth)
+position+=' + 1px';position+=')';return position;},updateContents_:function(){Polymer.dom(this.$.significance).textContent='';Polymer.dom(this.$.content).textContent='';Polymer.dom(this.$.content).classList.remove('better');Polymer.dom(this.$.content).classList.remove('worse');Polymer.dom(this.$.content).classList.remove('same');Polymer.dom(this.$.significance).classList.remove('better');Polymer.dom(this.$.significance).classList.remove('worse');Polymer.dom(this.$.significance).classList.remove('same');if(this.unit_===undefined)
 return;this.$.content.title='';Polymer.dom(this.$.content).textContent=this.unit_.format(this.value,this.context);this.updateDelta_();},updateDelta_:function(){if(!this.unit_.isDelta){this.$.significance.style.display='none';return;}
-this.$.significance.style.display='';var biggerIsBetter=false;var smallerIsBetter=false;switch(this.unit_.improvementDirection){case tr.v.ImprovementDirection.DONT_CARE:return;case tr.v.ImprovementDirection.BIGGER_IS_BETTER:biggerIsBetter=true;break;case tr.v.ImprovementDirection.SMALLER_IS_BETTER:smallerIsBetter=true;break;}
-var better=((biggerIsBetter&&this.value>0)||(smallerIsBetter&&this.value<0));var worse=((biggerIsBetter&&this.value<0)||(smallerIsBetter&&this.value>0));var changeClass='';var emoji=tr.v.ui.Emoji.NEUTRAL_FACE;var title='';if(better){changeClass='better';emoji=tr.v.ui.Emoji.GRINNING_FACE;title='improvement';}else if(worse){changeClass='worse';emoji=tr.v.ui.Emoji.CONFOUNDED_FACE;title='regression';}else{title='no change';}
-if(changeClass)
-Polymer.dom(this.$.content).classList.add(changeClass);switch(this.significance){case tr.v.Significance.DONT_CARE:emoji='';changeClass='';break;case tr.v.Significance.INSIGNIFICANT:changeClass='';emoji=tr.v.ui.Emoji.NEUTRAL_FACE;if(better||worse)
-title='insignificant '+title;break;case tr.v.Significance.SIGNIFICANT:if(!better&&!worse)
+this.$.significance.style.display='';var changeClass=this.changeClassName_;if(!changeClass)
+return;var emoji,title;switch(changeClass){case'better':emoji=tr.v.ui.Emoji.GRINNING_FACE;title='improvement';break;case'worse':emoji=tr.v.ui.Emoji.CONFOUNDED_FACE;title='regression';break;case'same':emoji=tr.v.ui.Emoji.NEUTRAL_FACE;title='no change';break;default:throw new Error('Unknown change class: '+changeClass);}
+Polymer.dom(this.$.content).classList.add(changeClass);switch(this.significance){case tr.v.Significance.DONT_CARE:emoji='';changeClass='same';break;case tr.v.Significance.INSIGNIFICANT:if(changeClass!=='same')
+title='insignificant '+title;emoji=tr.v.ui.Emoji.NEUTRAL_FACE;changeClass='same';break;case tr.v.Significance.SIGNIFICANT:if(changeClass==='same')
 throw new Error('How can no change be significant?');title='significant '+title;break;}
-Polymer.dom(this.$.significance).textContent=emoji;this.$.significance.title=title;this.$.content.title=title;if(changeClass)
-Polymer.dom(this.$.significance).classList.add(changeClass);},get warning(){return this.warning_;},set warning(warning){this.warning_=warning;var warningEl=this.$.warning;if(this.warning_){warningEl.title=warning;warningEl.style.display='';}else{warningEl.title='';warningEl.style.display='none';}},get timestamp(){return this.value;},set timestamp(timestamp){if(timestamp instanceof tr.b.u.TimeStamp){this.value=timestamp;return;}
+Polymer.dom(this.$.significance).textContent=emoji;this.$.significance.title=title;this.$.content.title=title;Polymer.dom(this.$.significance).classList.add(changeClass);},get changeClassName_(){if(!this.unit_||!this.unit_.isDelta)
+return undefined;switch(this.unit_.improvementDirection){case tr.b.ImprovementDirection.DONT_CARE:return undefined;case tr.b.ImprovementDirection.BIGGER_IS_BETTER:if(this.value===0)
+return'same';return this.value>0?'better':'worse';case tr.b.ImprovementDirection.SMALLER_IS_BETTER:if(this.value===0)
+return'same';return this.value<0?'better':'worse';default:throw new Error('Unknown improvement direction: '+
+this.unit_.improvementDirection);}},get warning(){return this.warning_;},set warning(warning){this.warning_=warning;var warningEl=this.$.warning;if(this.warning_){warningEl.title=warning;warningEl.style.display='';}else{warningEl.title='';warningEl.style.display='none';}},get timestamp(){return this.value;},set timestamp(timestamp){if(timestamp instanceof tr.b.u.TimeStamp){this.value=timestamp;return;}
 this.setValueAndUnit(timestamp,tr.b.u.Units.timeStampInMs);},get duration(){return this.value;},set duration(duration){if(duration instanceof tr.b.u.TimeDuration){this.value=duration;return;}
-this.setValueAndUnit(duration,tr.b.u.Units.timeDurationInMs);}});'use strict';function isTable(object){if(!(object instanceof Array)||(object.length<2))return false;for(var colName in object[0]){if(typeof colName!=='string')return false;}
+this.setValueAndUnit(duration,tr.b.u.Units.timeDurationInMs);}});'use strict';var URL_REGEX=/^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)$/;function isTable(object){if(!(object instanceof Array)||(object.length<2))return false;for(var colName in object[0]){if(typeof colName!=='string')return false;}
 for(var i=0;i<object.length;++i){if(!(object[i]instanceof Object))return false;for(var colName in object[i]){if(i&&(object[0][colName]===undefined))return false;var cellType=typeof object[i][colName];if(cellType!=='string'&&cellType!='number')return false;}
 if(i){for(var colName in object[0]){if(object[i][colName]===undefined)return false;}}}
 return true;}
@@ -6906,7 +6974,7 @@
 if(object===null){this.appendSimpleText_(label,indent,'null',suffix);return;}
 if(!(object instanceof Object)){var type=typeof object;if(type=='string'){var objectReplaced=false;if((object[0]=='{'&&object[object.length-1]=='}')||(object[0]=='['&&object[object.length-1]==']')){try{object=JSON.parse(object);objectReplaced=true;}catch(e){}}
 if(!objectReplaced){if(object.indexOf('\n')!==-1){var lines=object.split('\n');lines.forEach(function(line,i){var text,ioff,ll,ss;if(i==0){text='"'+line;ioff=0;ll=label;ss='';}else if(i<lines.length-1){text=line;ioff=1;ll='';ss='';}else{text=line+'"';ioff=1;ll='';ss=suffix;}
-var el=this.appendSimpleText_(ll,indent+ioff*label.length+ioff,text,ss);el.style.whiteSpace='pre';return el;},this);return;}else{this.appendSimpleText_(label,indent,'"'+object+'"',suffix);return;}}
+var el=this.appendSimpleText_(ll,indent+ioff*label.length+ioff,text,ss);el.style.whiteSpace='pre';return el;},this);return;}else if(object.match(URL_REGEX)){var link=document.createElement('a');link.href=object;link.textContent=object;this.appendElementWithLabel_(label,indent,link,suffix);return;}else{this.appendSimpleText_(label,indent,'"'+object+'"',suffix);return;}}
 else{}}else{return this.appendSimpleText_(label,indent,object,suffix);}}
 if(object instanceof tr.model.ObjectSnapshot){var link=document.createElement('tr-ui-a-analysis-link');link.selection=new tr.model.EventSet(object);this.appendElementWithLabel_(label,indent,link,suffix);return;}
 if(object instanceof tr.model.ObjectInstance){var link=document.createElement('tr-ui-a-analysis-link');link.selection=new tr.model.EventSet(object);this.appendElementWithLabel_(label,indent,link,suffix);return;}
@@ -7112,7 +7180,7 @@
 return;var currentMouseViewPos=this.extractRelativeMousePosition_(e);this.zoomScaleValue_+=((this.lastMouseViewPos_.y-currentMouseViewPos.y)*0.001);this.zoomScaleValue_=Math.max(this.zoomScaleValue_,0.1);this.drawPicture_();this.lastMouseViewPos_=currentMouseViewPos;},onEndZoom_:function(e){this.lastMouseViewPos_=undefined;this.isZooming_=false;e.preventDefault();},extractRelativeMousePosition_:function(e){return{x:e.clientX-this.rasterArea_.offsetLeft,y:e.clientY-this.rasterArea_.offsetTop};},saveFile_:function(filename,rawData){if(!rawData)
 return;var length=rawData.length;var arrayBuffer=new ArrayBuffer(length);var uint8Array=new Uint8Array(arrayBuffer);for(var c=0;c<length;c++)
 uint8Array[c]=rawData.charCodeAt(c);var blob=new Blob([uint8Array],{type:'application/octet-binary'});var blobUrl=window.URL.createObjectURL(blob);var link=document.createElementNS('http://www.w3.org/1999/xhtml','a');link.href=blobUrl;link.download=filename;var event=document.createEvent('MouseEvents');event.initMouseEvent('click',true,false,window,0,0,0,0,0,false,false,false,false,0,null);link.dispatchEvent(event);},onExportDisplayListClicked_:function(){var rawData=JSON.stringify(this.displayItemList_.items);this.saveFile_(this.displayListFilename_.value,rawData);},onExportSkPictureClicked_:function(){var rawData=tr.b.Base64.atob(this.picture_.getBase64SkpData());this.saveFile_(this.skpFilename_.value,rawData);}};return{DisplayItemDebugger:DisplayItemDebugger};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){var DisplayItemSnapshotView=tr.ui.b.define('tr-ui-e-chrome-cc-display-item-list-view',tr.ui.analysis.ObjectSnapshotView);DisplayItemSnapshotView.prototype={__proto__:tr.ui.analysis.ObjectSnapshotView.prototype,decorate:function(){Polymer.dom(this).classList.add('tr-ui-e-chrome-cc-display-item-list-view');this.displayItemDebugger_=new tr.ui.e.chrome.cc.DisplayItemDebugger();Polymer.dom(this).appendChild(this.displayItemDebugger_);},updateContents:function(){if(this.objectSnapshot_&&this.displayItemDebugger_)
-this.displayItemDebugger_.displayItemList=this.objectSnapshot_;}};tr.ui.analysis.ObjectSnapshotView.register(DisplayItemSnapshotView,{typeNames:['cc::DisplayItemList'],showInstances:false});return{DisplayItemSnapshotView:DisplayItemSnapshotView};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){var constants=tr.e.cc.constants;var bytesToRoundedMegabytes=tr.e.cc.bytesToRoundedMegabytes;var RENDER_PASS_QUADS=Math.max(constants.ACTIVE_TREE,constants.PENDING_TREE)+1;var LayerPicker=tr.ui.b.define('tr-ui-e-chrome-cc-layer-picker');LayerPicker.prototype={__proto__:HTMLUnknownElement.prototype,decorate:function(){this.lthi_=undefined;this.controls_=document.createElement('top-controls');this.renderPassQuads_=false;this.itemList_=new tr.ui.b.ListView();Polymer.dom(this).appendChild(this.controls_);Polymer.dom(this).appendChild(this.itemList_);this.itemList_.addEventListener('selection-changed',this.onItemSelectionChanged_.bind(this));Polymer.dom(this.controls_).appendChild(tr.ui.b.createSelector(this,'whichTree','layerPicker.whichTree',constants.ACTIVE_TREE,[{label:'Active tree',value:constants.ACTIVE_TREE},{label:'Pending tree',value:constants.PENDING_TREE},{label:'Render pass quads',value:RENDER_PASS_QUADS}]));this.showPureTransformLayers_=false;var showPureTransformLayers=tr.ui.b.createCheckBox(this,'showPureTransformLayers','layerPicker.showPureTransformLayers',false,'Transform layers');Polymer.dom(showPureTransformLayers).classList.add('show-transform-layers');showPureTransformLayers.title='When checked, pure transform layers are shown';Polymer.dom(this.controls_).appendChild(showPureTransformLayers);},get lthiSnapshot(){return this.lthiSnapshot_;},set lthiSnapshot(lthiSnapshot){this.lthiSnapshot_=lthiSnapshot;this.updateContents_();},get whichTree(){return this.renderPassQuads_?constants.ACTIVE_TREE:this.whichTree_;},set whichTree(whichTree){this.whichTree_=whichTree;this.renderPassQuads_=(whichTree==RENDER_PASS_QUADS);this.updateContents_();tr.b.dispatchSimpleEvent(this,'selection-change',false);},get layerTreeImpl(){if(this.lthiSnapshot===undefined)
+this.displayItemDebugger_.displayItemList=this.objectSnapshot_;}};tr.ui.analysis.ObjectSnapshotView.register(DisplayItemSnapshotView,{typeNames:['cc::DisplayItemList'],showInstances:false});return{DisplayItemSnapshotView:DisplayItemSnapshotView};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){var constants=tr.e.cc.constants;var RENDER_PASS_QUADS=Math.max(constants.ACTIVE_TREE,constants.PENDING_TREE)+1;var LayerPicker=tr.ui.b.define('tr-ui-e-chrome-cc-layer-picker');LayerPicker.prototype={__proto__:HTMLUnknownElement.prototype,decorate:function(){this.lthi_=undefined;this.controls_=document.createElement('top-controls');this.renderPassQuads_=false;this.itemList_=new tr.ui.b.ListView();Polymer.dom(this).appendChild(this.controls_);Polymer.dom(this).appendChild(this.itemList_);this.itemList_.addEventListener('selection-changed',this.onItemSelectionChanged_.bind(this));Polymer.dom(this.controls_).appendChild(tr.ui.b.createSelector(this,'whichTree','layerPicker.whichTree',constants.ACTIVE_TREE,[{label:'Active tree',value:constants.ACTIVE_TREE},{label:'Pending tree',value:constants.PENDING_TREE},{label:'Render pass quads',value:RENDER_PASS_QUADS}]));this.showPureTransformLayers_=false;var showPureTransformLayers=tr.ui.b.createCheckBox(this,'showPureTransformLayers','layerPicker.showPureTransformLayers',false,'Transform layers');Polymer.dom(showPureTransformLayers).classList.add('show-transform-layers');showPureTransformLayers.title='When checked, pure transform layers are shown';Polymer.dom(this.controls_).appendChild(showPureTransformLayers);},get lthiSnapshot(){return this.lthiSnapshot_;},set lthiSnapshot(lthiSnapshot){this.lthiSnapshot_=lthiSnapshot;this.updateContents_();},get whichTree(){return this.renderPassQuads_?constants.ACTIVE_TREE:this.whichTree_;},set whichTree(whichTree){this.whichTree_=whichTree;this.renderPassQuads_=(whichTree==RENDER_PASS_QUADS);this.updateContents_();tr.b.dispatchSimpleEvent(this,'selection-change',false);},get layerTreeImpl(){if(this.lthiSnapshot===undefined)
 return undefined;return this.lthiSnapshot.getTree(this.whichTree);},get isRenderPassQuads(){return this.renderPassQuads_;},get showPureTransformLayers(){return this.showPureTransformLayers_;},set showPureTransformLayers(show){if(this.showPureTransformLayers_===show)
 return;this.showPureTransformLayers_=show;this.updateContents_();},getRenderPassInfos_:function(){if(!this.lthiSnapshot_)
 return[];var renderPassInfo=[];if(!this.lthiSnapshot_.args.frame||!this.lthiSnapshot_.args.frame.renderPasses)
@@ -7127,14 +7195,14 @@
 info.name=layer.objectInstance.name;else
 info.name='cc::LayerImpl';if(layer.usingGpuRasterization)
 info.name+=' (G)';info.isMaskLayer=isMask;info.replicaLayer=isReplica;if(showPureTransformLayers||!isPureTransformLayer(layer))
-layerInfos.push(info);};tree.iterLayers(visitLayer);return layerInfos;},updateContents_:function(){if(this.renderPassQuads_)
+layerInfos.push(info);}
+tree.iterLayers(visitLayer);return layerInfos;},updateContents_:function(){if(this.renderPassQuads_)
 this.updateRenderPassContents_();else
 this.updateLayerContents_();},updateRenderPassContents_:function(){this.itemList_.clear();var selectedRenderPassId;if(this.selection_&&this.selection_.associatedRenderPassId)
 selectedRenderPassId=this.selection_.associatedRenderPassId;var renderPassInfos=this.getRenderPassInfos_();renderPassInfos.forEach(function(renderPassInfo){var renderPass=renderPassInfo.renderPass;var id=renderPassInfo.id;var item=this.createElementWithDepth_(renderPassInfo.depth);var labelEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());Polymer.dom(labelEl).textContent=renderPassInfo.name+' '+id;item.renderPass=renderPass;item.renderPassId=id;Polymer.dom(this.itemList_).appendChild(item);if(id==selectedRenderPassId){renderPass.selectionState=tr.model.SelectionState.SELECTED;}},this);},updateLayerContents_:function(){this.changingItemSelection_=true;try{this.itemList_.clear();var selectedLayerId;if(this.selection_&&this.selection_.associatedLayerId)
 selectedLayerId=this.selection_.associatedLayerId;var layerInfos=this.getLayerInfos_();layerInfos.forEach(function(layerInfo){var layer=layerInfo.layer;var id=layer.layerId;var item=this.createElementWithDepth_(layerInfo.depth);var labelEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());Polymer.dom(labelEl).textContent=layerInfo.name+' '+id;var notesEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());if(layerInfo.isMaskLayer)
 Polymer.dom(notesEl).textContent+='(mask)';if(layerInfo.isReplicaLayer)
-Polymer.dom(notesEl).textContent+='(replica)';if(layer.gpuMemoryUsageInBytes!==undefined){var rounded=bytesToRoundedMegabytes(layer.gpuMemoryUsageInBytes);if(rounded!==0)
-Polymer.dom(notesEl).textContent+=' ('+rounded+' MB)';}
+Polymer.dom(notesEl).textContent+='(replica)';if((layer.gpuMemoryUsageInBytes!==undefined)&&(layer.gpuMemoryUsageInBytes>0)){var gpuUsageStr=tr.b.Unit.byName.sizeInBytes.format(layer.gpuMemoryUsageInBytes);Polymer.dom(notesEl).textContent+=' ('+gpuUsageStr+' MiB)';}
 item.layer=layer;Polymer.dom(this.itemList_).appendChild(item);if(layer.layerId==selectedLayerId){layer.selectionState=tr.model.SelectionState.SELECTED;item.selected=true;}},this);}finally{this.changingItemSelection_=false;}},createElementWithDepth_:function(depth){var item=document.createElement('div');var indentEl=Polymer.dom(item).appendChild(tr.ui.b.createSpan());indentEl.style.whiteSpace='pre';for(var i=0;i<depth;i++){Polymer.dom(indentEl).textContent=Polymer.dom(indentEl).textContent+' ';}
 return item;},onItemSelectionChanged_:function(e){if(this.changingItemSelection_)
 return;if(this.renderPassQuads_)
@@ -7199,7 +7267,7 @@
 canvasCtx.clearRect(0,0,this.canvas_.width,this.canvas_.height);var quadCanvas=document.createElement('canvas');this.stackTransformAndProcessQuads_(3,drawProjectedQuadToContext,true,canvasCtx,quadCanvas);quadCanvas.width=0;},trackMouse_:function(){this.mouseModeSelector_=document.createElement('tr-ui-b-mouse-mode-selector');this.mouseModeSelector_.targetElement=this.canvas_;this.mouseModeSelector_.supportedModeMask=tr.ui.b.MOUSE_SELECTOR_MODE.SELECTION|tr.ui.b.MOUSE_SELECTOR_MODE.PANSCAN|tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM|tr.ui.b.MOUSE_SELECTOR_MODE.ROTATE;this.mouseModeSelector_.mode=tr.ui.b.MOUSE_SELECTOR_MODE.PANSCAN;this.mouseModeSelector_.pos={x:0,y:100};Polymer.dom(this).appendChild(this.mouseModeSelector_);this.mouseModeSelector_.settingsKey='quadStackView.mouseModeSelector';this.mouseModeSelector_.setModifierForAlternateMode(tr.ui.b.MOUSE_SELECTOR_MODE.ROTATE,tr.ui.b.MODIFIER.SHIFT);this.mouseModeSelector_.setModifierForAlternateMode(tr.ui.b.MOUSE_SELECTOR_MODE.PANSCAN,tr.ui.b.MODIFIER.SPACE);this.mouseModeSelector_.setModifierForAlternateMode(tr.ui.b.MOUSE_SELECTOR_MODE.ZOOM,tr.ui.b.MODIFIER.CMD_OR_CTRL);this.mouseModeSelector_.addEventListener('updateselection',this.onSelectionUpdate_.bind(this));this.mouseModeSelector_.addEventListener('endselection',this.onSelectionUpdate_.bind(this));},extractRelativeMousePosition_:function(e){var br=this.canvas_.getBoundingClientRect();return[this.pixelRatio_*(e.clientX-this.canvas_.offsetLeft-br.left),this.pixelRatio_*(e.clientY-this.canvas_.offsetTop-br.top)];},onSelectionUpdate_:function(e){var mousePos=this.extractRelativeMousePosition_(e);var res=[];function handleQuad(passNumber,quad,p1,p2,p3,p4){if(tr.b.pointInImplicitQuad(mousePos,p1,p2,p3,p4))
 res.push(quad);}
 this.stackTransformAndProcessQuads_(1,handleQuad,false);var e=new tr.b.Event('selectionchange');e.quads=res;this.dispatchEvent(e);}};return{QuadStackView:QuadStackView};});'use strict';tr.exportTo('tr.ui.e.chrome.cc',function(){var ColorScheme=tr.b.ColorScheme;var THIS_DOC=document.currentScript.ownerDocument;var TILE_HEATMAP_TYPE={};TILE_HEATMAP_TYPE.NONE='none';TILE_HEATMAP_TYPE.SCHEDULED_PRIORITY='scheduledPriority';TILE_HEATMAP_TYPE.USING_GPU_MEMORY='usingGpuMemory';var cc=tr.ui.e.chrome.cc;function createTileRectsSelectorBaseOptions(){return[{label:'None',value:'none'},{label:'Coverage Rects',value:'coverage'}];}
-var bytesToRoundedMegabytes=tr.e.cc.bytesToRoundedMegabytes;var LayerTreeQuadStackView=tr.ui.b.define('tr-ui-e-chrome-cc-layer-tree-quad-stack-view');LayerTreeQuadStackView.prototype={__proto__:HTMLDivElement.prototype,decorate:function(){this.isRenderPassQuads_=false;this.pictureAsImageData_={};this.messages_=[];this.controls_=document.createElement('top-controls');this.infoBar_=document.createElement('tr-ui-b-info-bar');this.quadStackView_=new tr.ui.b.QuadStackView();this.quadStackView_.addEventListener('selectionchange',this.onQuadStackViewSelectionChange_.bind(this));this.extraHighlightsByLayerId_=undefined;this.inputEventImageData_=undefined;var m=tr.ui.b.MOUSE_SELECTOR_MODE;var mms=this.quadStackView_.mouseModeSelector;mms.settingsKey='tr.e.cc.layerTreeQuadStackView.mouseModeSelector';mms.setKeyCodeForMode(m.SELECTION,'Z'.charCodeAt(0));mms.setKeyCodeForMode(m.PANSCAN,'X'.charCodeAt(0));mms.setKeyCodeForMode(m.ZOOM,'C'.charCodeAt(0));mms.setKeyCodeForMode(m.ROTATE,'V'.charCodeAt(0));var node=tr.ui.b.instantiateTemplate('#tr-ui-e-chrome-cc-layer-tree-quad-stack-view-template',THIS_DOC);Polymer.dom(this).appendChild(node);Polymer.dom(this).appendChild(this.controls_);Polymer.dom(this).appendChild(this.infoBar_);Polymer.dom(this).appendChild(this.quadStackView_);this.tileRectsSelector_=tr.ui.b.createSelector(this,'howToShowTiles','layerView.howToShowTiles','none',createTileRectsSelectorBaseOptions());Polymer.dom(this.controls_).appendChild(this.tileRectsSelector_);var tileHeatmapText=tr.ui.b.createSpan({textContent:'Tile heatmap:'});Polymer.dom(this.controls_).appendChild(tileHeatmapText);var tileHeatmapSelector=tr.ui.b.createSelector(this,'tileHeatmapType','layerView.tileHeatmapType',TILE_HEATMAP_TYPE.NONE,[{label:'None',value:TILE_HEATMAP_TYPE.NONE},{label:'Scheduled Priority',value:TILE_HEATMAP_TYPE.SCHEDULED_PRIORITY},{label:'Is using GPU memory',value:TILE_HEATMAP_TYPE.USING_GPU_MEMORY}]);Polymer.dom(this.controls_).appendChild(tileHeatmapSelector);var showOtherLayersCheckbox=tr.ui.b.createCheckBox(this,'showOtherLayers','layerView.showOtherLayers',true,'Other layers/passes');showOtherLayersCheckbox.title='When checked, show all layers, selected or not.';Polymer.dom(this.controls_).appendChild(showOtherLayersCheckbox);var showInvalidationsCheckbox=tr.ui.b.createCheckBox(this,'showInvalidations','layerView.showInvalidations',true,'Invalidations');showInvalidationsCheckbox.title='When checked, compositing invalidations are highlighted in red';Polymer.dom(this.controls_).appendChild(showInvalidationsCheckbox);var showUnrecordedRegionCheckbox=tr.ui.b.createCheckBox(this,'showUnrecordedRegion','layerView.showUnrecordedRegion',true,'Unrecorded area');showUnrecordedRegionCheckbox.title='When checked, unrecorded areas are highlighted in yellow';Polymer.dom(this.controls_).appendChild(showUnrecordedRegionCheckbox);var showBottlenecksCheckbox=tr.ui.b.createCheckBox(this,'showBottlenecks','layerView.showBottlenecks',true,'Bottlenecks');showBottlenecksCheckbox.title='When checked, scroll bottlenecks are highlighted';Polymer.dom(this.controls_).appendChild(showBottlenecksCheckbox);var showLayoutRectsCheckbox=tr.ui.b.createCheckBox(this,'showLayoutRects','layerView.showLayoutRects',false,'Layout rects');showLayoutRectsCheckbox.title='When checked, shows rects for regions where layout happened';Polymer.dom(this.controls_).appendChild(showLayoutRectsCheckbox);var showContentsCheckbox=tr.ui.b.createCheckBox(this,'showContents','layerView.showContents',true,'Contents');showContentsCheckbox.title='When checked, show the rendered contents inside the layer outlines';Polymer.dom(this.controls_).appendChild(showContentsCheckbox);var showAnimationBoundsCheckbox=tr.ui.b.createCheckBox(this,'showAnimationBounds','layerView.showAnimationBounds',false,'Animation Bounds');showAnimationBoundsCheckbox.title='When checked, show a border around'+' a layer showing the extent of its animation.';Polymer.dom(this.controls_).appendChild(showAnimationBoundsCheckbox);var showInputEventsCheckbox=tr.ui.b.createCheckBox(this,'showInputEvents','layerView.showInputEvents',true,'Input events');showInputEventsCheckbox.title='When checked, input events are '+'displayed as circles.';Polymer.dom(this.controls_).appendChild(showInputEventsCheckbox);this.whatRasterizedLink_=document.createElement('a');Polymer.dom(this.whatRasterizedLink_).classList.add('what-rasterized');Polymer.dom(this.whatRasterizedLink_).textContent='What rasterized?';this.whatRasterizedLink_.addEventListener('click',this.onWhatRasterizedLinkClicked_.bind(this));Polymer.dom(this).appendChild(this.whatRasterizedLink_);},get layerTreeImpl(){return this.layerTreeImpl_;},set isRenderPassQuads(newValue){this.isRenderPassQuads_=newValue;},set layerTreeImpl(layerTreeImpl){if(this.layerTreeImpl_===layerTreeImpl)
+var LayerTreeQuadStackView=tr.ui.b.define('tr-ui-e-chrome-cc-layer-tree-quad-stack-view');LayerTreeQuadStackView.prototype={__proto__:HTMLDivElement.prototype,decorate:function(){this.isRenderPassQuads_=false;this.pictureAsImageData_={};this.messages_=[];this.controls_=document.createElement('top-controls');this.infoBar_=document.createElement('tr-ui-b-info-bar');this.quadStackView_=new tr.ui.b.QuadStackView();this.quadStackView_.addEventListener('selectionchange',this.onQuadStackViewSelectionChange_.bind(this));this.extraHighlightsByLayerId_=undefined;this.inputEventImageData_=undefined;var m=tr.ui.b.MOUSE_SELECTOR_MODE;var mms=this.quadStackView_.mouseModeSelector;mms.settingsKey='tr.e.cc.layerTreeQuadStackView.mouseModeSelector';mms.setKeyCodeForMode(m.SELECTION,'Z'.charCodeAt(0));mms.setKeyCodeForMode(m.PANSCAN,'X'.charCodeAt(0));mms.setKeyCodeForMode(m.ZOOM,'C'.charCodeAt(0));mms.setKeyCodeForMode(m.ROTATE,'V'.charCodeAt(0));var node=tr.ui.b.instantiateTemplate('#tr-ui-e-chrome-cc-layer-tree-quad-stack-view-template',THIS_DOC);Polymer.dom(this).appendChild(node);Polymer.dom(this).appendChild(this.controls_);Polymer.dom(this).appendChild(this.infoBar_);Polymer.dom(this).appendChild(this.quadStackView_);this.tileRectsSelector_=tr.ui.b.createSelector(this,'howToShowTiles','layerView.howToShowTiles','none',createTileRectsSelectorBaseOptions());Polymer.dom(this.controls_).appendChild(this.tileRectsSelector_);var tileHeatmapText=tr.ui.b.createSpan({textContent:'Tile heatmap:'});Polymer.dom(this.controls_).appendChild(tileHeatmapText);var tileHeatmapSelector=tr.ui.b.createSelector(this,'tileHeatmapType','layerView.tileHeatmapType',TILE_HEATMAP_TYPE.NONE,[{label:'None',value:TILE_HEATMAP_TYPE.NONE},{label:'Scheduled Priority',value:TILE_HEATMAP_TYPE.SCHEDULED_PRIORITY},{label:'Is using GPU memory',value:TILE_HEATMAP_TYPE.USING_GPU_MEMORY}]);Polymer.dom(this.controls_).appendChild(tileHeatmapSelector);var showOtherLayersCheckbox=tr.ui.b.createCheckBox(this,'showOtherLayers','layerView.showOtherLayers',true,'Other layers/passes');showOtherLayersCheckbox.title='When checked, show all layers, selected or not.';Polymer.dom(this.controls_).appendChild(showOtherLayersCheckbox);var showInvalidationsCheckbox=tr.ui.b.createCheckBox(this,'showInvalidations','layerView.showInvalidations',true,'Invalidations');showInvalidationsCheckbox.title='When checked, compositing invalidations are highlighted in red';Polymer.dom(this.controls_).appendChild(showInvalidationsCheckbox);var showUnrecordedRegionCheckbox=tr.ui.b.createCheckBox(this,'showUnrecordedRegion','layerView.showUnrecordedRegion',true,'Unrecorded area');showUnrecordedRegionCheckbox.title='When checked, unrecorded areas are highlighted in yellow';Polymer.dom(this.controls_).appendChild(showUnrecordedRegionCheckbox);var showBottlenecksCheckbox=tr.ui.b.createCheckBox(this,'showBottlenecks','layerView.showBottlenecks',true,'Bottlenecks');showBottlenecksCheckbox.title='When checked, scroll bottlenecks are highlighted';Polymer.dom(this.controls_).appendChild(showBottlenecksCheckbox);var showLayoutRectsCheckbox=tr.ui.b.createCheckBox(this,'showLayoutRects','layerView.showLayoutRects',false,'Layout rects');showLayoutRectsCheckbox.title='When checked, shows rects for regions where layout happened';Polymer.dom(this.controls_).appendChild(showLayoutRectsCheckbox);var showContentsCheckbox=tr.ui.b.createCheckBox(this,'showContents','layerView.showContents',true,'Contents');showContentsCheckbox.title='When checked, show the rendered contents inside the layer outlines';Polymer.dom(this.controls_).appendChild(showContentsCheckbox);var showAnimationBoundsCheckbox=tr.ui.b.createCheckBox(this,'showAnimationBounds','layerView.showAnimationBounds',false,'Animation Bounds');showAnimationBoundsCheckbox.title='When checked, show a border around'+' a layer showing the extent of its animation.';Polymer.dom(this.controls_).appendChild(showAnimationBoundsCheckbox);var showInputEventsCheckbox=tr.ui.b.createCheckBox(this,'showInputEvents','layerView.showInputEvents',true,'Input events');showInputEventsCheckbox.title='When checked, input events are '+'displayed as circles.';Polymer.dom(this.controls_).appendChild(showInputEventsCheckbox);this.whatRasterizedLink_=document.createElement('a');Polymer.dom(this.whatRasterizedLink_).classList.add('what-rasterized');Polymer.dom(this.whatRasterizedLink_).textContent='What rasterized?';this.whatRasterizedLink_.addEventListener('click',this.onWhatRasterizedLinkClicked_.bind(this));Polymer.dom(this).appendChild(this.whatRasterizedLink_);},get layerTreeImpl(){return this.layerTreeImpl_;},set isRenderPassQuads(newValue){this.isRenderPassQuads_=newValue;},set layerTreeImpl(layerTreeImpl){if(this.layerTreeImpl_===layerTreeImpl)
 return;this.layerTreeImpl_=layerTreeImpl;this.selection=undefined;},get extraHighlightsByLayerId(){return this.extraHighlightsByLayerId_;},set extraHighlightsByLayerId(extraHighlightsByLayerId){this.extraHighlightsByLayerId_=extraHighlightsByLayerId;this.scheduleUpdateContents_();},get showOtherLayers(){return this.showOtherLayers_;},set showOtherLayers(show){this.showOtherLayers_=show;this.updateContents_();},get showAnimationBounds(){return this.showAnimationBounds_;},set showAnimationBounds(show){this.showAnimationBounds_=show;this.updateContents_();},get showInputEvents(){return this.showInputEvents_;},set showInputEvents(show){this.showInputEvents_=show;this.updateContents_();},get showContents(){return this.showContents_;},set showContents(show){this.showContents_=show;this.updateContents_();},get showInvalidations(){return this.showInvalidations_;},set showInvalidations(show){this.showInvalidations_=show;this.updateContents_();},get showUnrecordedRegion(){return this.showUnrecordedRegion_;},set showUnrecordedRegion(show){this.showUnrecordedRegion_=show;this.updateContents_();},get showBottlenecks(){return this.showBottlenecks_;},set showBottlenecks(show){this.showBottlenecks_=show;this.updateContents_();},get showLayoutRects(){return this.showLayoutRects_;},set showLayoutRects(show){this.showLayoutRects_=show;this.updateContents_();},get howToShowTiles(){return this.howToShowTiles_;},set howToShowTiles(val){console.assert((val==='none')||(val==='coverage')||!isNaN(parseFloat(val)));this.howToShowTiles_=val;this.updateContents_();},get tileHeatmapType(){return this.tileHeatmapType_;},set tileHeatmapType(val){this.tileHeatmapType_=val;this.updateContents_();},get selection(){return this.selection_;},set selection(selection){if(this.selection===selection)
 return;this.selection_=selection;tr.b.dispatchSimpleEvent(this,'selection-change');this.updateContents_();},regenerateContent:function(){this.updateTilesSelector_();this.updateContents_();},loadDataForImageElement_:function(image,callback){var imageContent=window.getComputedStyle(image).backgroundImage;image.src=tr.ui.b.extractUrlString(imageContent);image.onload=function(){var canvas=document.createElement('canvas');var ctx=canvas.getContext('2d');canvas.width=image.width;canvas.height=image.height;ctx.drawImage(image,0,0);var imageData=ctx.getImageData(0,0,canvas.width,canvas.height);callback(imageData);};},onQuadStackViewSelectionChange_:function(e){var selectableQuads=e.quads.filter(function(q){return q.selectionToSetIfClicked!==undefined;});if(selectableQuads.length==0){this.selection=undefined;return;}
 selectableQuads.sort(function(x,y){var z=x.stackingGroupId-y.stackingGroupId;if(z!=0)
@@ -7210,18 +7278,17 @@
 return;var lthi=this.layerTreeImpl_.layerTreeHostImpl;var lthiInstance=lthi.objectInstance;var worldViewportRect=tr.b.Rect.fromXYWH(0,0,lthi.deviceViewportSize.width,lthi.deviceViewportSize.height);this.quadStackView_.deviceRect=worldViewportRect;if(this.isRenderPassQuads_)
 this.quadStackView_.quads=this.generateRenderPassQuads();else
 this.quadStackView_.quads=this.generateLayerQuads();this.updateWhatRasterizedLinkState_();var message='';if(lthi.tilesHaveGpuMemoryUsageInfo){var thisTreeUsageInBytes=this.layerTreeImpl_.gpuMemoryUsageInBytes;var otherTreeUsageInBytes=lthi.gpuMemoryUsageInBytes-
-thisTreeUsageInBytes;message+=bytesToRoundedMegabytes(thisTreeUsageInBytes)+'MB on this tree';if(otherTreeUsageInBytes){message+=', '+
-bytesToRoundedMegabytes(otherTreeUsageInBytes)+'MB on the other tree';}}else{if(this.layerTreeImpl_){var thisTreeUsageInBytes=this.layerTreeImpl_.gpuMemoryUsageInBytes;message+=bytesToRoundedMegabytes(thisTreeUsageInBytes)+'MB on this tree';if(this.layerTreeImpl_.otherTree){message+=', ???MB on other tree. ';}}}
+thisTreeUsageInBytes;message+=tr.b.convertUnit(thisTreeUsageInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB on this tree';if(otherTreeUsageInBytes){message+=', '+tr.b.convertUnit(otherTreeUsageInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB on the other tree';}}else{if(this.layerTreeImpl_){var thisTreeUsageInBytes=this.layerTreeImpl_.gpuMemoryUsageInBytes;message+=tr.b.convertUnit(thisTreeUsageInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB on this tree';if(this.layerTreeImpl_.otherTree){message+=', ??? MiB on other tree. ';}}}
 if(lthi.args.tileManagerBasicState){var tmgs=lthi.args.tileManagerBasicState.globalState;message+=' (softMax='+
-bytesToRoundedMegabytes(tmgs.softMemoryLimitInBytes)+'MB, hardMax='+
-bytesToRoundedMegabytes(tmgs.hardMemoryLimitInBytes)+'MB, '+
+tr.b.convertUnit(tmgs.softMemoryLimitInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB, hardMax='+
+tr.b.convertUnit(tmgs.hardMemoryLimitInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB, '+
 tmgs.memoryLimitPolicy+')';}else{var thread=lthi.snapshottedOnThread;var didManageTilesSlices=thread.sliceGroup.slices.filter(function(s){if(s.category!=='tr.e.cc')
 return false;if(s.title!=='DidManage')
 return false;if(s.end>lthi.ts)
 return false;return true;});didManageTilesSlices.sort(function(x,y){return x.end-y.end;});if(didManageTilesSlices.length>0){var newest=didManageTilesSlices[didManageTilesSlices.length-1];var tmgs=newest.args.state.global_state;message+=' (softMax='+
-bytesToRoundedMegabytes(tmgs.soft_memory_limit_in_bytes)+'MB, hardMax='+
-bytesToRoundedMegabytes(tmgs.hard_memory_limit_in_bytes)+'MB, '+
-tmgs.memory_limit_policy+')';}}
+tr.b.convertUnit(tmgs.softMemoryLimitInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB, hardMax='+
+tr.b.convertUnit(tmgs.hardMemoryLimitInBytes,tr.b.UnitScale.Binary.NONE,tr.b.UnitScale.Binary.MEBI).toFixed(1)+' MiB, '+
+tmgs.memoryLimitPolicy+')';}}
 if(this.layerTreeImpl_.otherTree)
 message+=' (Another tree exists)';if(message.length)
 this.quadStackView_.headerText=message;else
@@ -7385,9 +7452,9 @@
 return;parentTypeInfo.childrenTypeInfos.push(typeInfo);});eventProtoToRootTypeInfoMap=new Map();allTypeInfosByEventProto.forEach(function(typeInfo,eventProto){var eventPrototype=typeInfo.eventConstructor.prototype;var curEventProto=eventPrototype;while(true){if(onlyRootTypeInfosByEventProto.has(curEventProto)){var rootTypeInfo=onlyRootTypeInfosByEventProto.get(curEventProto);eventProtoToRootTypeInfoMap.set(eventPrototype,rootTypeInfo);break;}
 curEventProto=curEventProto.__proto__;}});}
 function findLowestTypeInfoForEvents(thisTypeInfo,events){if(events.length===0)
-return thisTypeInfo;var event0=events[0];var candidateSubTypeInfo;for(var i=0;i<thisTypeInfo.childrenTypeInfos.length;i++){var childTypeInfo=thisTypeInfo.childrenTypeInfos[i];if(event0 instanceof childTypeInfo.eventConstructor){candidateSubTypeInfo=childTypeInfo;break;}}
+return thisTypeInfo;var event0=tr.b.getFirstElement(events);var candidateSubTypeInfo;for(var i=0;i<thisTypeInfo.childrenTypeInfos.length;i++){var childTypeInfo=thisTypeInfo.childrenTypeInfos[i];if(event0 instanceof childTypeInfo.eventConstructor){candidateSubTypeInfo=childTypeInfo;break;}}
 if(!candidateSubTypeInfo)
-return thisTypeInfo;var allMatch=true;for(var i=1;i<events.length;i++){var event=events[i];if(event instanceof candidateSubTypeInfo.eventConstructor)
+return thisTypeInfo;var allMatch=true;for(var event of events){if(event instanceof candidateSubTypeInfo.eventConstructor)
 continue;allMatch=false;break;}
 if(!allMatch){return thisTypeInfo;}
 return findLowestTypeInfoForEvents(candidateSubTypeInfo,events);}
@@ -7408,12 +7475,12 @@
 rows.push({name:'Category',value:event.category});if(event.model!==undefined){var ufc=event.model.getUserFriendlyCategoryFromEvent(event);if(ufc!==undefined)
 rows.push({name:'User Friendly Category',value:ufc});}
 if(event.name)
-rows.push({name:'Name',value:event.name});rows.push({name:'Start',value:tr.v.ui.createScalarSpan(event.start,{unit:tr.v.Unit.byName.timeStampInMs})});if(event.duration){rows.push({name:'Wall Duration',value:tr.v.ui.createScalarSpan(event.duration,{unit:tr.v.Unit.byName.timeDurationInMs})});}
-if(event.cpuDuration){rows.push({name:'CPU Duration',value:tr.v.ui.createScalarSpan(event.cpuDuration,{unit:tr.v.Unit.byName.timeDurationInMs})});}
-if(event.subSlices!==undefined&&event.subSlices.length!==0){if(event.selfTime){rows.push({name:'Self Time',value:tr.v.ui.createScalarSpan(event.selfTime,{unit:tr.v.Unit.byName.timeDurationInMs})});}
-if(event.cpuSelfTime){var cpuSelfTimeEl=tr.v.ui.createScalarSpan(event.cpuSelfTime,{unit:tr.v.Unit.byName.timeDurationInMs});if(event.cpuSelfTime>event.selfTime){cpuSelfTimeEl.warning=' Note that CPU Self Time is larger than Self Time. '+'This is a known limitation of this system, which occurs '+'due to several subslices, rounding issues, and imprecise '+'time at which we get cpu- and real-time.';}
+rows.push({name:'Name',value:event.name});rows.push({name:'Start',value:tr.v.ui.createScalarSpan(event.start,{unit:tr.b.Unit.byName.timeStampInMs})});if(event.duration){rows.push({name:'Wall Duration',value:tr.v.ui.createScalarSpan(event.duration,{unit:tr.b.Unit.byName.timeDurationInMs})});}
+if(event.cpuDuration){rows.push({name:'CPU Duration',value:tr.v.ui.createScalarSpan(event.cpuDuration,{unit:tr.b.Unit.byName.timeDurationInMs})});}
+if(event.subSlices!==undefined&&event.subSlices.length!==0){if(event.selfTime){rows.push({name:'Self Time',value:tr.v.ui.createScalarSpan(event.selfTime,{unit:tr.b.Unit.byName.timeDurationInMs})});}
+if(event.cpuSelfTime){var cpuSelfTimeEl=tr.v.ui.createScalarSpan(event.cpuSelfTime,{unit:tr.b.Unit.byName.timeDurationInMs});if(event.cpuSelfTime>event.selfTime){cpuSelfTimeEl.warning=' Note that CPU Self Time is larger than Self Time. '+'This is a known limitation of this system, which occurs '+'due to several subslices, rounding issues, and imprecise '+'time at which we get cpu- and real-time.';}
 rows.push({name:'CPU Self Time',value:cpuSelfTimeEl});}}
-if(event.durationInUserTime){rows.push({name:'Duration (U)',value:tr.v.ui.createScalarSpan(event.durationInUserTime,{unit:tr.v.Unit.byName.timeDurationInMs})});}
+if(event.durationInUserTime){rows.push({name:'Duration (U)',value:tr.v.ui.createScalarSpan(event.durationInUserTime,{unit:tr.b.Unit.byName.timeDurationInMs})});}
 function createStackFrameEl(sf){var sfEl=document.createElement('tr-ui-a-stack-frame');sfEl.stackFrame=sf;return sfEl;}
 if(event.startStackFrame&&event.endStackFrame){if(event.startStackFrame===event.endStackFrame){rows.push({name:'Start+End Stack Trace',value:createStackFrameEl(event.startStackFrame)});}else{rows.push({name:'Start Stack Trace',value:createStackFrameEl(event.startStackFrame)});rows.push({name:'End Stack Trace',value:createStackFrameEl(event.endStackFrame)});}}else if(event.startStackFrame){rows.push({name:'Start Stack Trace',value:createStackFrameEl(event.startStackFrame)});}else if(event.endStackFrame){rows.push({name:'End Stack Trace',value:createStackFrameEl(event.endStackFrame)});}
 if(event.info){var descriptionEl=tr.ui.b.createDiv({textContent:event.info.description,maxWidth:'300px'});rows.push({name:'Description',value:descriptionEl});if(event.info.docLinks){event.info.docLinks.forEach(function(linkObject){var linkEl=document.createElement('a');linkEl.target='_blank';linkEl.href=linkObject.href;Polymer.dom(linkEl).textContent=Polymer.dom(linkObject).textContent;rows.push({name:linkObject.label,value:linkEl});});}}
@@ -7425,13 +7492,13 @@
 rows.push({name:'Args',value:'',isExpanded:true,subRows:subRows});}}},addContextsToRows_:function(rows,contexts){if(contexts.length){var subRows=contexts.map(function(context){var contextView=document.createElement('tr-ui-a-generic-object-view');contextView.object=context;return{name:'Context',value:contextView};});rows.push({name:'Contexts',value:'',isExpanded:true,subRows:subRows});}},updateContents_:function(){if(this.currentSelection_===undefined){this.$.table.rows=[];this.$.table.rebuild();return;}
 var event=tr.b.getOnlyElement(this.currentSelection_);var rows=this.getEventRows_(event);if(event.argsStripped)
 rows.push({name:'Args',value:'Stripped'});else
-this.addArgsToRows_(rows,event.args);this.addContextsToRows_(rows,event.contexts);var customizeRowsEvent=new tr.b.Event('customize-rows');customizeRowsEvent.rows=rows;this.dispatchEvent(customizeRowsEvent);this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-e-chrome-cc-raster-task-view',created:function(){this.selection_=undefined;},set selection(selection){this.selection_=selection;this.updateContents_();},updateColumns_:function(hadCpuDurations){var timeSpanConfig={unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument};var columns=[{title:'Layer',value:function(row){if(row.isTotals)
+this.addArgsToRows_(rows,event.args);this.addContextsToRows_(rows,event.contexts);var customizeRowsEvent=new tr.b.Event('customize-rows');customizeRowsEvent.rows=rows;this.dispatchEvent(customizeRowsEvent);this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-e-chrome-cc-raster-task-view',created:function(){this.selection_=undefined;},set selection(selection){this.selection_=selection;this.updateContents_();},updateColumns_:function(hadCpuDurations){var timeSpanConfig={unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument};var columns=[{title:'Layer',value:function(row){if(row.isTotals)
 return'Totals';if(row.layer){var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.ui.e.chrome.cc.LayerSelection(costs.layer);},'Layer '+row.layerId);return linkEl;}else{return'Layer '+row.layerId;}},width:'250px'},{title:'Num Tiles',value:function(row){return row.numTiles;},cmp:function(a,b){return a.numTiles-b.numTiles;}},{title:'Num Analysis Tasks',value:function(row){return row.numAnalysisTasks;},cmp:function(a,b){return a.numAnalysisTasks-b.numAnalysisTasks;}},{title:'Num Raster Tasks',value:function(row){return row.numRasterTasks;},cmp:function(a,b){return a.numRasterTasks-b.numRasterTasks;}},{title:'Wall Duration (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.duration,timeSpanConfig);},cmp:function(a,b){return a.duration-b.duration;}}];if(hadCpuDurations){columns.push({title:'CPU Duration (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.cpuDuration,timeSpanConfig);},cmp:function(a,b){return a.cpuDuration-b.cpuDuration;}});}
 var colWidthPercentage;if(columns.length==1)
 colWidthPercentage='100%';else
 colWidthPercentage=(100/(columns.length-1)).toFixed(3)+'%';for(var i=1;i<columns.length;i++)
 columns[i].width=colWidthPercentage;this.$.content.tableColumns=columns;this.$.content.sortColumnIndex=columns.length-1;},updateContents_:function(){var table=this.$.content;if(this.selection_.length===0){this.$.link.setSelectionAndContent(undefined,'');table.tableRows=[];table.footerRows=[];table.rebuild();return;}
-var lthi=tr.e.cc.getTileFromRasterTaskSlice(this.selection_[0]).containingSnapshot;this.$.link.setSelectionAndContent(function(){return new tr.model.EventSet(lthi);},lthi.userFriendlyName);var costsByLayerId={};function getCurrentCostsForLayerId(tile){var layerId=tile.layerId;var lthi=tile.containingSnapshot;var layer;if(lthi.activeTree)
+var lthi=tr.e.cc.getTileFromRasterTaskSlice(tr.b.getFirstElement(this.selection_)).containingSnapshot;this.$.link.setSelectionAndContent(function(){return new tr.model.EventSet(lthi);},lthi.userFriendlyName);var costsByLayerId={};function getCurrentCostsForLayerId(tile){var layerId=tile.layerId;var lthi=tile.containingSnapshot;var layer;if(lthi.activeTree)
 layer=lthi.activeTree.findLayerWithId(layerId);if(layer===undefined&&lthi.pendingTree)
 layer=lthi.pendingTree.findLayerWithId(layerId);if(costsByLayerId[layerId]===undefined){costsByLayerId[layerId]={layerId:layerId,layer:layer,numTiles:0,numAnalysisTasks:0,numRasterTasks:0,duration:0,cpuDuration:0};}
 return costsByLayerId[layerId];}
@@ -7473,7 +7540,7 @@
 if(parentRow.subRows===undefined)
 parentRow.subRows=[];parentRow.subRows.push(row);});var aggregateAllDescendants=function(row){if(!row.subRows){if(getParentRow(row))
 row.type='Subframe';return row;}
-var result=new Row();result.type='Frame Tree';result.renderer=row.renderer;result.url=row.url;result.subRows=[row];row.subRows.forEach(subRow=>result.subRows.push(aggregateAllDescendants(subRow)));result.subRows.forEach(function(subRow){result.time+=subRow.time;result.eventsOfInterest.addEventSet(subRow.eventsOfInterest);});row.subRows=undefined;return result;};return rootRows.map(rootRow=>aggregateAllDescendants(rootRow));}};Polymer({is:'tr-ui-e-s-frame-data-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.model_=undefined;this.rangeOfInterest_=new tr.b.Range();this.$.table.showHeader=true;this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.table.tableColumns=this.createFrameDataTableColumns_();this.$.table.addEventListener('selection-changed',function(e){this.selectEventSet_(this.$.table.selectedTableRow.eventsOfInterest);}.bind(this));this.$.select.addEventListener('change',function(e){this.updateContents_();}.bind(this));},selectEventSet_:function(eventSet){var event=new tr.model.RequestSelectionChangeEvent();event.selection=eventSet;this.dispatchEvent(event);},createFrameDataTableColumns_:function(){return[{title:'Renderer',value:row=>row.renderer,cmp:(a,b)=>a.renderer-b.renderer},{title:'Type',value:row=>row.type},{title:'Time',value:row=>tr.v.ui.createScalarSpan(row.time,{unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}),cmp:(a,b)=>a.time-b.time},{title:'URL',value:row=>row.url,cmp:(a,b)=>(a.url||'').localeCompare(b.url||'')}];},createFrameDataTableRows_:function(){if(!this.model_)
+var result=new Row();result.type='Frame Tree';result.renderer=row.renderer;result.url=row.url;result.subRows=[row];row.subRows.forEach(subRow=>result.subRows.push(aggregateAllDescendants(subRow)));result.subRows.forEach(function(subRow){result.time+=subRow.time;result.eventsOfInterest.addEventSet(subRow.eventsOfInterest);});row.subRows=undefined;return result;};return rootRows.map(rootRow=>aggregateAllDescendants(rootRow));}};Polymer({is:'tr-ui-e-s-frame-data-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.model_=undefined;this.rangeOfInterest_=new tr.b.Range();this.$.table.showHeader=true;this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.table.tableColumns=this.createFrameDataTableColumns_();this.$.table.addEventListener('selection-changed',function(e){this.selectEventSet_(this.$.table.selectedTableRow.eventsOfInterest);}.bind(this));this.$.select.addEventListener('change',function(e){this.updateContents_();}.bind(this));},selectEventSet_:function(eventSet){var event=new tr.model.RequestSelectionChangeEvent();event.selection=eventSet;this.dispatchEvent(event);},createFrameDataTableColumns_:function(){return[{title:'Renderer',value:row=>row.renderer,cmp:(a,b)=>a.renderer-b.renderer},{title:'Type',value:row=>row.type},{title:'Time',value:row=>tr.v.ui.createScalarSpan(row.time,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}),cmp:(a,b)=>a.time-b.time},{title:'URL',value:row=>row.url,cmp:(a,b)=>(a.url||'').localeCompare(b.url||'')}];},createFrameDataTableRows_:function(){if(!this.model_)
 return[];var rows=[];var rowMap={};tr.b.iterItems(this.model_.processes,function(pid,process){process.objects.iterObjectInstances(function(objectInstance){if(!(objectInstance instanceof BlameContextInstance))
 return;objectInstance.snapshots.forEach(function(snapshot){if(rowMap[snapshot.guid])
 return;var row=new Row(snapshot);row.contexts.forEach(context=>rowMap[context.guid]=row);rows.push(row);},this);},this);},this);tr.b.iterItems(this.model_.processes,function(pid,process){tr.b.iterItems(process.threads,function(tid,thread){thread.sliceGroup.iterSlicesInTimeRange(function(topLevelSlice){topLevelSlice.contexts.forEach(function(context){if(!context.snapshot.guid||!rowMap[context.snapshot.guid])
@@ -7482,22 +7549,21 @@
 ans.supported=true;});},this);if(!ans.supported)
 ans.reason='No frame data available';return ans;},get currentRangeOfInterest(){if(this.rangeOfInterest_.isEmpty)
 return this.model_.bounds;else
-return this.rangeOfInterest_;},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;this.updateContents_();},get selection(){},set selection(_){},get textLabel(){return'Frame Data';},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-frame-data-side-panel');});});'use strict';Polymer({is:'tr-ui-b-chart-legend-key',ready:function(){this.$.checkbox.addEventListener('change',this.onCheckboxChange_.bind(this));},onCheckboxChange_:function(){tr.b.dispatchSimpleEvent(this,tr.ui.b.DataSeriesEnableChangeEventType,true,false,{key:Polymer.dom(this).textContent,enabled:this.enabled});},set textContent(t){Polymer.dom(this.$.label).textContent=t;Polymer.dom(this.$.link).textContent=t;this.updateContents_();},set width(w){w-=20;this.$.link.style.width=w+'px';this.$.label.style.width=w+'px';},get textContent(){return Polymer.dom(this.$.label).textContent;},set optional(optional){this.$.checkbox.style.visibility=optional?'visible':'hidden';},get optional(){return this.$.checkbox.style.visibility==='visible';},set enabled(enabled){this.$.checkbox.checked=enabled?'checked':'';},get enabled(){return this.$.checkbox.checked;},set color(c){this.$.label.style.color=c;this.$.link.color=c;},set target(target){this.$.link.setSelectionAndContent(target,Polymer.dom(this.$.label).textContent);this.updateContents_();},get target(){return this.$.link.selection;},updateContents_:function(){this.$.link.style.display=this.target?'':'none';this.$.label.style.display=this.target?'none':'';this.$.label.htmlFor=this.optional?'checkbox':'';}});'use strict';tr.exportTo('tr.ui.b',function(){var DataSeriesEnableChangeEventType='data-series-enabled-change';var THIS_DOC=document.currentScript.ownerDocument;var svgNS='http://www.w3.org/2000/svg';var ColorScheme=tr.b.ColorScheme;function getColorOfKey(key,selected){var id=ColorScheme.getColorIdForGeneralPurposeString(key);if(selected)
+return this.rangeOfInterest_;},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;this.updateContents_();},get selection(){},set selection(_){},get textLabel(){return'Frame Data';},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-frame-data-side-panel');});});'use strict';(function(window){window.define=function(x){window.d3=x;};window.define.amd=true;})(this);!function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(n){return aa+n in this}function o(n){return n=aa+n,n in this&&delete this[n]}function a(){var n=[];return this.forEach(function(t){n.push(t)}),n}function c(){var n=0;for(var t in this)t.charCodeAt(0)===ca&&++n;return n}function s(){for(var n in this)if(n.charCodeAt(0)===ca)return!1;return!0}function l(){}function f(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function h(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=sa.length;r>e;++e){var u=sa[e]+t;if(u in n)return u}}function g(){}function p(){}function v(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new u;return t.on=function(t,u){var i,o=r.get(t);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function d(){Xo.event.preventDefault()}function m(){for(var n,t=Xo.event;n=t.sourceEvent;)t=n;return t}function y(n){for(var t=new p,e=0,r=arguments.length;++e<r;)t[arguments[e]]=v(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=Xo.event;u.target=n,Xo.event=u,t[u.type].apply(e,r)}finally{Xo.event=i}}},t}function x(n){return fa(n,da),n}function M(n){return"function"==typeof n?n:function(){return ha(n,this)}}function _(n){return"function"==typeof n?n:function(){return ga(n,this)}}function b(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=Xo.ns.qualify(n),null==t?n.local?r:e:"function"==typeof t?n.local?a:o:n.local?i:u}function w(n){return n.trim().replace(/\s+/g," ")}function S(n){return new RegExp("(?:^|\\s+)"+Xo.requote(n)+"(?:\\s+|$)","g")}function k(n){return n.trim().split(/^|\s+/)}function E(n,t){function e(){for(var e=-1;++e<u;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<u;)n[e](this,r)}n=k(n).map(A);var u=n.length;return"function"==typeof t?r:e}function A(n){var t=S(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute("class")||"";r?(t.lastIndex=0,t.test(u)||e.setAttribute("class",w(u+" "+n))):e.setAttribute("class",w(u.replace(t," ")))}}function C(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:"function"==typeof t?i:u}function N(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:"function"==typeof t?u:r}function L(n){return"function"==typeof n?n:(n=Xo.ns.qualify(n)).local?function(){return this.ownerDocument.createElementNS(n.space,n.local)}:function(){return this.ownerDocument.createElementNS(this.namespaceURI,n)}}function T(n){return{__data__:n}}function q(n){return function(){return va(this,n)}}function z(n){return arguments.length||(n=Xo.ascending),function(t,e){return t&&e?n(t.__data__,e.__data__):!t-!e}}function R(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],o=0,a=i.length;a>o;o++)(u=i[o])&&t(u,o,e);return n}function D(n){return fa(n,ya),n}function P(n){var t,e;return function(r,u,i){var o,a=n[i].update,c=a.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(o=a[t])&&++t<c;);return o}}function U(){var n=this.__transition__;n&&++n.active}function j(n,t,e){function r(){var t=this[o];t&&(this.removeEventListener(n,t,t.$),delete this[o])}function u(){var u=c(t,Bo(arguments));r.call(this),this.addEventListener(n,this[o]=u,u.$=e),u._=t}function i(){var t,e=new RegExp("^__on([^.]+)"+Xo.requote(n)+"$");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var o="__on"+n,a=n.indexOf("."),c=H;a>0&&(n=n.substring(0,a));var s=Ma.get(n);return s&&(n=s,c=F),a?t?u:r:t?g:i}function H(n,t){return function(e){var r=Xo.event;Xo.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{Xo.event=r}}}function F(n,t){var e=H(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function O(){var n=".dragsuppress-"+ ++ba,t="click"+n,e=Xo.select(Go).on("touchmove"+n,d).on("dragstart"+n,d).on("selectstart"+n,d);if(_a){var r=Jo.style,u=r[_a];r[_a]="none"}return function(i){function o(){e.on(t,null)}e.on(n,null),_a&&(r[_a]=u),i&&(e.on(t,function(){d(),o()},!0),setTimeout(o,0))}}function Y(n,t){t.changedTouches&&(t=t.changedTouches[0]);var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();if(0>wa&&(Go.scrollX||Go.scrollY)){e=Xo.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var u=e[0][0].getScreenCTM();wa=!(u.f||u.e),e.remove()}return wa?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var i=n.getBoundingClientRect();return[t.clientX-i.left-n.clientLeft,t.clientY-i.top-n.clientTop]}function I(n){return n>0?1:0>n?-1:0}function Z(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function V(n){return n>1?0:-1>n?Sa:Math.acos(n)}function X(n){return n>1?Ea:-1>n?-Ea:Math.asin(n)}function $(n){return((n=Math.exp(n))-1/n)/2}function B(n){return((n=Math.exp(n))+1/n)/2}function W(n){return((n=Math.exp(2*n))-1)/(n+1)}function J(n){return(n=Math.sin(n/2))*n}function G(){}function K(n,t,e){return new Q(n,t,e)}function Q(n,t,e){this.h=n,this.s=t,this.l=e}function nt(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(o-i)*n/60:180>n?o:240>n?i+(o-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,i=2*e-o,gt(u(n+120),u(n),u(n-120))}function tt(n,t,e){return new et(n,t,e)}function et(n,t,e){this.h=n,this.c=t,this.l=e}function rt(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),ut(e,Math.cos(n*=Na)*t,Math.sin(n)*t)}function ut(n,t,e){return new it(n,t,e)}function it(n,t,e){this.l=n,this.a=t,this.b=e}function ot(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=ct(u)*Fa,r=ct(r)*Oa,i=ct(i)*Ya,gt(lt(3.2404542*u-1.5371385*r-.4985314*i),lt(-.969266*u+1.8760108*r+.041556*i),lt(.0556434*u-.2040259*r+1.0572252*i))}function at(n,t,e){return n>0?tt(Math.atan2(e,t)*La,Math.sqrt(t*t+e*e),n):tt(0/0,0/0,n)}function ct(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function st(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function lt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function ft(n){return gt(n>>16,255&n>>8,255&n)}function ht(n){return ft(n)+""}function gt(n,t,e){return new pt(n,t,e)}function pt(n,t,e){this.r=n,this.g=t,this.b=e}function vt(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function dt(n,t,e){var r,u,i,o,a=0,c=0,s=0;if(u=/([a-z]+)\((.*)\)/i.exec(n))switch(i=u[2].split(","),u[1]){case"hsl":return e(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return t(Mt(i[0]),Mt(i[1]),Mt(i[2]))}return(o=Va.get(n))?t(o.r,o.g,o.b):(null!=n&&"#"===n.charAt(0)&&(r=parseInt(n.substring(1),16),isNaN(r)||(4===n.length?(a=(3840&r)>>4,a=a>>4|a,c=240&r,c=c>>4|c,s=15&r,s=s<<4|s):7===n.length&&(a=(16711680&r)>>16,c=(65280&r)>>8,s=255&r))),t(a,c,s))}function mt(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-i,c=(o+i)/2;return a?(u=.5>c?a/(o+i):a/(2-o-i),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=0/0,u=c>0&&1>c?0:r),K(r,u,c)}function yt(n,t,e){n=xt(n),t=xt(t),e=xt(e);var r=st((.4124564*n+.3575761*t+.1804375*e)/Fa),u=st((.2126729*n+.7151522*t+.072175*e)/Oa),i=st((.0193339*n+.119192*t+.9503041*e)/Ya);return ut(116*u-16,500*(r-u),200*(u-i))}function xt(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Mt(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function _t(n){return"function"==typeof n?n:function(){return n}}function bt(n){return n}function wt(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),St(t,e,n,r)}}function St(n,t,e,r){function u(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(i,c)}catch(r){return o.error.call(i,r),void 0}o.load.call(i,n)}else o.error.call(i,c)}var i={},o=Xo.dispatch("beforesend","progress","load","error"),a={},c=new XMLHttpRequest,s=null;return!Go.XDomainRequest||"withCredentials"in c||!/^(http(s)?:)?\/\//.test(n)||(c=new XDomainRequest),"onload"in c?c.onload=c.onerror=u:c.onreadystatechange=function(){c.readyState>3&&u()},c.onprogress=function(n){var t=Xo.event;Xo.event=n;try{o.progress.call(i,c)}finally{Xo.event=t}},i.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+"",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",i):t},i.responseType=function(n){return arguments.length?(s=n,i):s},i.response=function(n){return e=n,i},["get","post"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(Bo(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&"function"==typeof r&&(u=r,r=null),c.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),c.setRequestHeader)for(var l in a)c.setRequestHeader(l,a[l]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=s&&(c.responseType=s),null!=u&&i.on("error",u).on("load",function(n){u(null,n)}),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},Xo.rebind(i,o,"on"),null==r?i:i.get(kt(r))}function kt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Et(){var n=At(),t=Ct()-n;t>24?(isFinite(t)&&(clearTimeout(Wa),Wa=setTimeout(Et,t)),Ba=0):(Ba=1,Ga(Et))}function At(){var n=Date.now();for(Ja=Xa;Ja;)n>=Ja.t&&(Ja.f=Ja.c(n-Ja.t)),Ja=Ja.n;return n}function Ct(){for(var n,t=Xa,e=1/0;t;)t.f?t=n?n.n=t.n:Xa=t.n:(t.t<e&&(e=t.t),t=(n=t).n);return $a=n,e}function Nt(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Lt(n,t){var e=Math.pow(10,3*oa(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function Tt(n){var t=n.decimal,e=n.thousands,r=n.grouping,u=n.currency,i=r?function(n){for(var t=n.length,u=[],i=0,o=r[0];t>0&&o>0;)u.push(n.substring(t-=o,t+o)),o=r[i=(i+1)%r.length];return u.reverse().join(e)}:bt;return function(n){var e=Qa.exec(n),r=e[1]||" ",o=e[2]||">",a=e[3]||"",c=e[4]||"",s=e[5],l=+e[6],f=e[7],h=e[8],g=e[9],p=1,v="",d="",m=!1;switch(h&&(h=+h.substring(1)),(s||"0"===r&&"="===o)&&(s=r="0",o="=",f&&(l-=Math.floor((l-1)/4))),g){case"n":f=!0,g="g";break;case"%":p=100,d="%",g="f";break;case"p":p=100,d="%",g="r";break;case"b":case"o":case"x":case"X":"#"===c&&(v="0"+g.toLowerCase());case"c":case"d":m=!0,h=0;break;case"s":p=-1,g="r"}"$"===c&&(v=u[0],d=u[1]),"r"!=g||h||(g="g"),null!=h&&("g"==g?h=Math.max(1,Math.min(21,h)):("e"==g||"f"==g)&&(h=Math.max(0,Math.min(20,h)))),g=nc.get(g)||qt;var y=s&&f;return function(n){var e=d;if(m&&n%1)return"";var u=0>n||0===n&&0>1/n?(n=-n,"-"):a;if(0>p){var c=Xo.formatPrefix(n,h);n=c.scale(n),e=c.symbol+d}else n*=p;n=g(n,h);var x=n.lastIndexOf("."),M=0>x?n:n.substring(0,x),_=0>x?"":t+n.substring(x+1);!s&&f&&(M=i(M));var b=v.length+M.length+_.length+(y?0:u.length),w=l>b?new Array(b=l-b+1).join(r):"";return y&&(M=i(w+M)),u+=v,n=M+_,("<"===o?u+n+w:">"===o?w+u+n:"^"===o?w.substring(0,b>>=1)+u+n+w.substring(b):u+(y?n:w+n))+e}}}function qt(n){return n+""}function zt(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Rt(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new ec(e-1)),1),e}function i(n,e){return t(n=new ec(+n),e),n}function o(n,r,i){var o=u(n),a=[];if(i>1)for(;r>o;)e(o)%i||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{ec=zt;var r=new zt;return r._=n,o(r,t,e)}finally{ec=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=o;var c=n.utc=Dt(n);return c.floor=c,c.round=Dt(r),c.ceil=Dt(u),c.offset=Dt(i),c.range=a,n}function Dt(n){return function(t,e){try{ec=zt;var r=new zt;return r._=t,n(r,e)._}finally{ec=Date}}}function Pt(n){function t(n){function t(t){for(var e,u,i,o=[],a=-1,c=0;++a<r;)37===n.charCodeAt(a)&&(o.push(n.substring(c,a)),null!=(u=uc[e=n.charAt(++a)])&&(e=n.charAt(++a)),(i=C[e])&&(e=i(t,null==u?"e"===e?" ":"0":u)),o.push(e),c=a+1);return o.push(n.substring(c,a)),o.join("")}var r=n.length;return t.parse=function(t){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},u=e(r,n,t,0);if(u!=t.length)return null;"p"in r&&(r.H=r.H%12+12*r.p);var i=null!=r.Z&&ec!==zt,o=new(i?zt:ec);return"j"in r?o.setFullYear(r.y,0,r.j):"w"in r&&("W"in r||"U"in r)?(o.setFullYear(r.y,0,1),o.setFullYear(r.y,0,"W"in r?(r.w+6)%7+7*r.W-(o.getDay()+5)%7:r.w+7*r.U-(o.getDay()+6)%7)):o.setFullYear(r.y,r.m,r.d),o.setHours(r.H+Math.floor(r.Z/100),r.M+r.Z%100,r.S,r.L),i?o._:o},t.toString=function(){return n},t}function e(n,t,e,r){for(var u,i,o,a=0,c=t.length,s=e.length;c>a;){if(r>=s)return-1;if(u=t.charCodeAt(a++),37===u){if(o=t.charAt(a++),i=N[o in uc?t.charAt(a++):o],!i||(r=i(n,e,r))<0)return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){b.lastIndex=0;var r=b.exec(t.substring(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){M.lastIndex=0;var r=M.exec(t.substring(e));return r?(n.w=_.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){E.lastIndex=0;var r=E.exec(t.substring(e));return r?(n.m=A.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,e){S.lastIndex=0;var r=S.exec(t.substring(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,r){return e(n,C.c.toString(),t,r)}function c(n,t,r){return e(n,C.x.toString(),t,r)}function s(n,t,r){return e(n,C.X.toString(),t,r)}function l(n,t,e){var r=x.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var f=n.dateTime,h=n.date,g=n.time,p=n.periods,v=n.days,d=n.shortDays,m=n.months,y=n.shortMonths;t.utc=function(n){function e(n){try{ec=zt;var t=new ec;return t._=n,r(t)}finally{ec=Date}}var r=t(n);return e.parse=function(n){try{ec=zt;var t=r.parse(n);return t&&t._}finally{ec=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ee;var x=Xo.map(),M=jt(v),_=Ht(v),b=jt(d),w=Ht(d),S=jt(m),k=Ht(m),E=jt(y),A=Ht(y);p.forEach(function(n,t){x.set(n.toLowerCase(),t)});var C={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return y[n.getMonth()]},B:function(n){return m[n.getMonth()]},c:t(f),d:function(n,t){return Ut(n.getDate(),t,2)},e:function(n,t){return Ut(n.getDate(),t,2)},H:function(n,t){return Ut(n.getHours(),t,2)},I:function(n,t){return Ut(n.getHours()%12||12,t,2)},j:function(n,t){return Ut(1+tc.dayOfYear(n),t,3)},L:function(n,t){return Ut(n.getMilliseconds(),t,3)},m:function(n,t){return Ut(n.getMonth()+1,t,2)},M:function(n,t){return Ut(n.getMinutes(),t,2)},p:function(n){return p[+(n.getHours()>=12)]},S:function(n,t){return Ut(n.getSeconds(),t,2)},U:function(n,t){return Ut(tc.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Ut(tc.mondayOfYear(n),t,2)},x:t(h),X:t(g),y:function(n,t){return Ut(n.getFullYear()%100,t,2)},Y:function(n,t){return Ut(n.getFullYear()%1e4,t,4)},Z:ne,"%":function(){return"%"}},N={a:r,A:u,b:i,B:o,c:a,d:Bt,e:Bt,H:Jt,I:Jt,j:Wt,L:Qt,m:$t,M:Gt,p:l,S:Kt,U:Ot,w:Ft,W:Yt,x:c,X:s,y:Zt,Y:It,Z:Vt,"%":te};return t}function Ut(n,t,e){var r=0>n?"-":"",u=(r?-n:n)+"",i=u.length;return r+(e>i?new Array(e-i+1).join(t)+u:u)}function jt(n){return new RegExp("^(?:"+n.map(Xo.requote).join("|")+")","i")}function Ht(n){for(var t=new u,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function Ft(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Ot(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Yt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function It(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Zt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.y=Xt(+r[0]),e+r[0].length):-1}function Vt(n,t,e){return/^[+-]\d{4}$/.test(t=t.substring(e,e+5))?(n.Z=+t,e+5):-1}function Xt(n){return n+(n>68?1900:2e3)}function $t(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function Bt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function Wt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function Jt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function Gt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function Kt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function Qt(n,t,e){ic.lastIndex=0;var r=ic.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function ne(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=~~(oa(t)/60),u=oa(t)%60;return e+Ut(r,"0",2)+Ut(u,"0",2)}function te(n,t,e){oc.lastIndex=0;var r=oc.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function ee(n){for(var t=n.length,e=-1;++e<t;)n[e][0]=this(n[e][0]);return function(t){for(var e=0,r=n[e];!r[1](t);)r=n[++e];return r[0](t)}}function re(){}function ue(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function ie(n,t){n&&lc.hasOwnProperty(n.type)&&lc[n.type](n,t)}function oe(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();++u<i;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function ae(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)oe(n[e],t,1);t.polygonEnd()}function ce(){function n(n,t){n*=Na,t=t*Na/2+Sa/4;var e=n-r,o=e>=0?1:-1,a=o*e,c=Math.cos(t),s=Math.sin(t),l=i*s,f=u*c+l*Math.cos(a),h=l*o*Math.sin(a);hc.add(Math.atan2(h,f)),r=n,u=c,i=s}var t,e,r,u,i;gc.point=function(o,a){gc.point=n,r=(t=o)*Na,u=Math.cos(a=(e=a)*Na/2+Sa/4),i=Math.sin(a)},gc.lineEnd=function(){n(t,e)}}function se(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function le(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function fe(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function he(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function ge(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function pe(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function ve(n){return[Math.atan2(n[1],n[0]),X(n[2])]}function de(n,t){return oa(n[0]-t[0])<Aa&&oa(n[1]-t[1])<Aa}function me(n,t){n*=Na;var e=Math.cos(t*=Na);ye(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function ye(n,t,e){++pc,dc+=(n-dc)/pc,mc+=(t-mc)/pc,yc+=(e-yc)/pc}function xe(){function n(n,u){n*=Na;var i=Math.cos(u*=Na),o=i*Math.cos(n),a=i*Math.sin(n),c=Math.sin(u),s=Math.atan2(Math.sqrt((s=e*c-r*a)*s+(s=r*o-t*c)*s+(s=t*a-e*o)*s),t*o+e*a+r*c);vc+=s,xc+=s*(t+(t=o)),Mc+=s*(e+(e=a)),_c+=s*(r+(r=c)),ye(t,e,r)}var t,e,r;kc.point=function(u,i){u*=Na;var o=Math.cos(i*=Na);t=o*Math.cos(u),e=o*Math.sin(u),r=Math.sin(i),kc.point=n,ye(t,e,r)}}function Me(){kc.point=me}function _e(){function n(n,t){n*=Na;var e=Math.cos(t*=Na),o=e*Math.cos(n),a=e*Math.sin(n),c=Math.sin(t),s=u*c-i*a,l=i*o-r*c,f=r*a-u*o,h=Math.sqrt(s*s+l*l+f*f),g=r*o+u*a+i*c,p=h&&-V(g)/h,v=Math.atan2(h,g);bc+=p*s,wc+=p*l,Sc+=p*f,vc+=v,xc+=v*(r+(r=o)),Mc+=v*(u+(u=a)),_c+=v*(i+(i=c)),ye(r,u,i)}var t,e,r,u,i;kc.point=function(o,a){t=o,e=a,kc.point=n,o*=Na;var c=Math.cos(a*=Na);r=c*Math.cos(o),u=c*Math.sin(o),i=Math.sin(a),ye(r,u,i)},kc.lineEnd=function(){n(t,e),kc.lineEnd=Me,kc.point=me}}function be(){return!0}function we(n,t,e,r,u){var i=[],o=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(de(e,r)){u.lineStart();for(var a=0;t>a;++a)u.point((e=n[a])[0],e[1]);return u.lineEnd(),void 0}var c=new ke(e,n,null,!0),s=new ke(e,null,c,!1);c.o=s,i.push(c),o.push(s),c=new ke(r,n,null,!1),s=new ke(r,null,c,!0),c.o=s,i.push(c),o.push(s)}}),o.sort(t),Se(i),Se(o),i.length){for(var a=0,c=e,s=o.length;s>a;++a)o[a].e=c=!c;for(var l,f,h=i[0];;){for(var g=h,p=!0;g.v;)if((g=g.n)===h)return;l=g.z,u.lineStart();do{if(g.v=g.o.v=!0,g.e){if(p)for(var a=0,s=l.length;s>a;++a)u.point((f=l[a])[0],f[1]);else r(g.x,g.n.x,1,u);g=g.n}else{if(p){l=g.p.z;for(var a=l.length-1;a>=0;--a)u.point((f=l[a])[0],f[1])}else r(g.x,g.p.x,-1,u);g=g.p}g=g.o,l=g.z,p=!p}while(!g.v);u.lineEnd()}}}function Se(n){if(t=n.length){for(var t,e,r=0,u=n[0];++r<t;)u.n=e=n[r],e.p=u,u=e;u.n=e=n[0],e.p=u}}function ke(n,t,e,r){this.x=n,this.z=t,this.o=e,this.e=r,this.v=!1,this.n=this.p=null}function Ee(n,t,e,r){return function(u,i){function o(t,e){var r=u(t,e);n(t=r[0],e=r[1])&&i.point(t,e)}function a(n,t){var e=u(n,t);d.point(e[0],e[1])}function c(){y.point=a,d.lineStart()}function s(){y.point=o,d.lineEnd()}function l(n,t){v.push([n,t]);var e=u(n,t);M.point(e[0],e[1])}function f(){M.lineStart(),v=[]}function h(){l(v[0][0],v[0][1]),M.lineEnd();var n,t=M.clean(),e=x.buffer(),r=e.length;if(v.pop(),p.push(v),v=null,r){if(1&t){n=e[0];var u,r=n.length-1,o=-1;for(i.lineStart();++o<r;)i.point((u=n[o])[0],u[1]);return i.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),g.push(e.filter(Ae))}}var g,p,v,d=t(i),m=u.invert(r[0],r[1]),y={point:o,lineStart:c,lineEnd:s,polygonStart:function(){y.point=l,y.lineStart=f,y.lineEnd=h,g=[],p=[],i.polygonStart()},polygonEnd:function(){y.point=o,y.lineStart=c,y.lineEnd=s,g=Xo.merge(g);var n=Le(m,p);g.length?we(g,Ne,n,e,i):n&&(i.lineStart(),e(null,null,1,i),i.lineEnd()),i.polygonEnd(),g=p=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},x=Ce(),M=t(x);return y}}function Ae(n){return n.length>1}function Ce(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:g,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Ne(n,t){return((n=n.x)[0]<0?n[1]-Ea-Aa:Ea-n[1])-((t=t.x)[0]<0?t[1]-Ea-Aa:Ea-t[1])}function Le(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,o=0;hc.reset();for(var a=0,c=t.length;c>a;++a){var s=t[a],l=s.length;if(l)for(var f=s[0],h=f[0],g=f[1]/2+Sa/4,p=Math.sin(g),v=Math.cos(g),d=1;;){d===l&&(d=0),n=s[d];var m=n[0],y=n[1]/2+Sa/4,x=Math.sin(y),M=Math.cos(y),_=m-h,b=_>=0?1:-1,w=b*_,S=w>Sa,k=p*x;if(hc.add(Math.atan2(k*b*Math.sin(w),v*M+k*Math.cos(w))),i+=S?_+b*ka:_,S^h>=e^m>=e){var E=fe(se(f),se(n));pe(E);var A=fe(u,E);pe(A);var C=(S^_>=0?-1:1)*X(A[2]);(r>C||r===C&&(E[0]||E[1]))&&(o+=S^_>=0?1:-1)}if(!d++)break;h=m,p=x,v=M,f=n}}return(-Aa>i||Aa>i&&0>hc)^1&o}function Te(n){var t,e=0/0,r=0/0,u=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(i,o){var a=i>0?Sa:-Sa,c=oa(i-e);oa(c-Sa)<Aa?(n.point(e,r=(r+o)/2>0?Ea:-Ea),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(i,r),t=0):u!==a&&c>=Sa&&(oa(e-u)<Aa&&(e-=u*Aa),oa(i-a)<Aa&&(i-=a*Aa),r=qe(e,r,i,o),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),t=0),n.point(e=i,r=o),u=a},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function qe(n,t,e,r){var u,i,o=Math.sin(n-e);return oa(o)>Aa?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*o)):(t+r)/2}function ze(n,t,e,r){var u;if(null==n)u=e*Ea,r.point(-Sa,u),r.point(0,u),r.point(Sa,u),r.point(Sa,0),r.point(Sa,-u),r.point(0,-u),r.point(-Sa,-u),r.point(-Sa,0),r.point(-Sa,u);else if(oa(n[0]-t[0])>Aa){var i=n[0]<t[0]?Sa:-Sa;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function Re(n){function t(n,t){return Math.cos(n)*Math.cos(t)>i}function e(n){var e,i,c,s,l;return{lineStart:function(){s=c=!1,l=1},point:function(f,h){var g,p=[f,h],v=t(f,h),d=o?v?0:u(f,h):v?u(f+(0>f?Sa:-Sa),h):0;if(!e&&(s=c=v)&&n.lineStart(),v!==c&&(g=r(e,p),(de(e,g)||de(p,g))&&(p[0]+=Aa,p[1]+=Aa,v=t(p[0],p[1]))),v!==c)l=0,v?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(a&&e&&o^v){var m;d&i||!(m=r(p,e,!0))||(l=0,o?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!v||e&&de(e,p)||n.point(p[0],p[1]),e=p,c=v,i=d},lineEnd:function(){c&&n.lineEnd(),e=null},clean:function(){return l|(s&&c)<<1}}}function r(n,t,e){var r=se(n),u=se(t),o=[1,0,0],a=fe(r,u),c=le(a,a),s=a[0],l=c-s*s;if(!l)return!e&&n;var f=i*c/l,h=-i*s/l,g=fe(o,a),p=ge(o,f),v=ge(a,h);he(p,v);var d=g,m=le(p,d),y=le(d,d),x=m*m-y*(le(p,p)-1);if(!(0>x)){var M=Math.sqrt(x),_=ge(d,(-m-M)/y);if(he(_,p),_=ve(_),!e)return _;var b,w=n[0],S=t[0],k=n[1],E=t[1];w>S&&(b=w,w=S,S=b);var A=S-w,C=oa(A-Sa)<Aa,N=C||Aa>A;if(!C&&k>E&&(b=k,k=E,E=b),N?C?k+E>0^_[1]<(oa(_[0]-w)<Aa?k:E):k<=_[1]&&_[1]<=E:A>Sa^(w<=_[0]&&_[0]<=S)){var L=ge(d,(-m+M)/y);return he(L,p),[_,ve(L)]}}}function u(t,e){var r=o?n:Sa-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}var i=Math.cos(n),o=i>0,a=oa(i)>Aa,c=cr(n,6*Na);return Ee(t,e,c,o?[0,-n]:[-Sa,n-Sa])}function De(n,t,e,r){return function(u){var i,o=u.a,a=u.b,c=o.x,s=o.y,l=a.x,f=a.y,h=0,g=1,p=l-c,v=f-s;if(i=n-c,p||!(i>0)){if(i/=p,0>p){if(h>i)return;g>i&&(g=i)}else if(p>0){if(i>g)return;i>h&&(h=i)}if(i=e-c,p||!(0>i)){if(i/=p,0>p){if(i>g)return;i>h&&(h=i)}else if(p>0){if(h>i)return;g>i&&(g=i)}if(i=t-s,v||!(i>0)){if(i/=v,0>v){if(h>i)return;g>i&&(g=i)}else if(v>0){if(i>g)return;i>h&&(h=i)}if(i=r-s,v||!(0>i)){if(i/=v,0>v){if(i>g)return;i>h&&(h=i)}else if(v>0){if(h>i)return;g>i&&(g=i)}return h>0&&(u.a={x:c+h*p,y:s+h*v}),1>g&&(u.b={x:c+g*p,y:s+g*v}),u}}}}}}function Pe(n,t,e,r){function u(r,u){return oa(r[0]-n)<Aa?u>0?0:3:oa(r[0]-e)<Aa?u>0?2:1:oa(r[1]-t)<Aa?u>0?1:0:u>0?3:2}function i(n,t){return o(n.x,t.x)}function o(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(a){function c(n){for(var t=0,e=d.length,r=n[1],u=0;e>u;++u)for(var i,o=1,a=d[u],c=a.length,s=a[0];c>o;++o)i=a[o],s[1]<=r?i[1]>r&&Z(s,i,n)>0&&++t:i[1]<=r&&Z(s,i,n)<0&&--t,s=i;return 0!==t}function s(i,a,c,s){var l=0,f=0;if(null==i||(l=u(i,c))!==(f=u(a,c))||o(i,a)<0^c>0){do s.point(0===l||3===l?n:e,l>1?r:t);while((l=(l+c+4)%4)!==f)}else s.point(a[0],a[1])}function l(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function f(n,t){l(n,t)&&a.point(n,t)}function h(){N.point=p,d&&d.push(m=[]),S=!0,w=!1,_=b=0/0}function g(){v&&(p(y,x),M&&w&&A.rejoin(),v.push(A.buffer())),N.point=f,w&&a.lineEnd()}function p(n,t){n=Math.max(-Ac,Math.min(Ac,n)),t=Math.max(-Ac,Math.min(Ac,t));var e=l(n,t);if(d&&m.push([n,t]),S)y=n,x=t,M=e,S=!1,e&&(a.lineStart(),a.point(n,t));else if(e&&w)a.point(n,t);else{var r={a:{x:_,y:b},b:{x:n,y:t}};C(r)?(w||(a.lineStart(),a.point(r.a.x,r.a.y)),a.point(r.b.x,r.b.y),e||a.lineEnd(),k=!1):e&&(a.lineStart(),a.point(n,t),k=!1)}_=n,b=t,w=e}var v,d,m,y,x,M,_,b,w,S,k,E=a,A=Ce(),C=De(n,t,e,r),N={point:f,lineStart:h,lineEnd:g,polygonStart:function(){a=A,v=[],d=[],k=!0},polygonEnd:function(){a=E,v=Xo.merge(v);var t=c([n,r]),e=k&&t,u=v.length;(e||u)&&(a.polygonStart(),e&&(a.lineStart(),s(null,null,1,a),a.lineEnd()),u&&we(v,i,t,s,a),a.polygonEnd()),v=d=m=null}};return N}}function Ue(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function je(n){var t=0,e=Sa/3,r=nr(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*Sa/180,e=n[1]*Sa/180):[180*(t/Sa),180*(e/Sa)]},u}function He(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),o-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),o=Math.sqrt(i)/u;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/u,X((i-(n*n+e*e)*u*u)/(2*u))]},e}function Fe(){function n(n,t){Nc+=u*n-r*t,r=n,u=t}var t,e,r,u;Rc.point=function(i,o){Rc.point=n,t=r=i,e=u=o},Rc.lineEnd=function(){n(t,e)}}function Oe(n,t){Lc>n&&(Lc=n),n>qc&&(qc=n),Tc>t&&(Tc=t),t>zc&&(zc=t)}function Ye(){function n(n,t){o.push("M",n,",",t,i)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function u(){o.push("Z")}var i=Ie(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return i=Ie(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function Ie(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Ze(n,t){dc+=n,mc+=t,++yc}function Ve(){function n(n,r){var u=n-t,i=r-e,o=Math.sqrt(u*u+i*i);xc+=o*(t+n)/2,Mc+=o*(e+r)/2,_c+=o,Ze(t=n,e=r)}var t,e;Pc.point=function(r,u){Pc.point=n,Ze(t=r,e=u)}}function Xe(){Pc.point=Ze}function $e(){function n(n,t){var e=n-r,i=t-u,o=Math.sqrt(e*e+i*i);xc+=o*(r+n)/2,Mc+=o*(u+t)/2,_c+=o,o=u*n-r*t,bc+=o*(r+n),wc+=o*(u+t),Sc+=3*o,Ze(r=n,u=t)}var t,e,r,u;Pc.point=function(i,o){Pc.point=n,Ze(t=r=i,e=u=o)},Pc.lineEnd=function(){n(t,e)}}function Be(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,o,0,ka)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function u(){a.point=t}function i(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:u,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=u,a.point=t},pointRadius:function(n){return o=n,a},result:g};return a}function We(n){function t(n){return(a?r:e)(n)}function e(t){return Ke(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){x=0/0,S.point=i,t.lineStart()}function i(e,r){var i=se([e,r]),o=n(e,r);u(x,M,y,_,b,w,x=o[0],M=o[1],y=e,_=i[0],b=i[1],w=i[2],a,t),t.point(x,M)}function o(){S.point=e,t.lineEnd()}function c(){r(),S.point=s,S.lineEnd=l}function s(n,t){i(f=n,h=t),g=x,p=M,v=_,d=b,m=w,S.point=i}function l(){u(x,M,y,_,b,w,g,p,f,v,d,m,a,t),S.lineEnd=o,o()}var f,h,g,p,v,d,m,y,x,M,_,b,w,S={point:e,lineStart:r,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function u(t,e,r,a,c,s,l,f,h,g,p,v,d,m){var y=l-t,x=f-e,M=y*y+x*x;if(M>4*i&&d--){var _=a+g,b=c+p,w=s+v,S=Math.sqrt(_*_+b*b+w*w),k=Math.asin(w/=S),E=oa(oa(w)-1)<Aa||oa(r-h)<Aa?(r+h)/2:Math.atan2(b,_),A=n(E,k),C=A[0],N=A[1],L=C-t,T=N-e,q=x*L-y*T;(q*q/M>i||oa((y*L+x*T)/M-.5)>.3||o>a*g+c*p+s*v)&&(u(t,e,r,a,c,s,C,N,E,_/=S,b/=S,w,d,m),m.point(C,N),u(C,N,E,_,b,w,l,f,h,g,p,v,d,m))}}var i=.5,o=Math.cos(30*Na),a=16;return t.precision=function(n){return arguments.length?(a=(i=n*n)>0&&16,t):Math.sqrt(i)},t}function Je(n){var t=We(function(t,e){return n([t*La,e*La])});return function(n){return tr(t(n))}}function Ge(n){this.stream=n}function Ke(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function Qe(n){return nr(function(){return n})()}function nr(n){function t(n){return n=a(n[0]*Na,n[1]*Na),[n[0]*h+c,s-n[1]*h]}function e(n){return n=a.invert((n[0]-c)/h,(s-n[1])/h),n&&[n[0]*La,n[1]*La]}function r(){a=Ue(o=ur(m,y,x),i);var n=i(v,d);return c=g-n[0]*h,s=p+n[1]*h,u()}function u(){return l&&(l.valid=!1,l=null),t}var i,o,a,c,s,l,f=We(function(n,t){return n=i(n,t),[n[0]*h+c,s-n[1]*h]}),h=150,g=480,p=250,v=0,d=0,m=0,y=0,x=0,M=Ec,_=bt,b=null,w=null;return t.stream=function(n){return l&&(l.valid=!1),l=tr(M(o,f(_(n)))),l.valid=!0,l},t.clipAngle=function(n){return arguments.length?(M=null==n?(b=n,Ec):Re((b=+n)*Na),u()):b},t.clipExtent=function(n){return arguments.length?(w=n,_=n?Pe(n[0][0],n[0][1],n[1][0],n[1][1]):bt,u()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(v=n[0]%360*Na,d=n[1]%360*Na,r()):[v*La,d*La]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Na,y=n[1]%360*Na,x=n.length>2?n[2]%360*Na:0,r()):[m*La,y*La,x*La]},Xo.rebind(t,f,"precision"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function tr(n){return Ke(n,function(t,e){n.point(t*Na,e*Na)})}function er(n,t){return[n,t]}function rr(n,t){return[n>Sa?n-ka:-Sa>n?n+ka:n,t]}function ur(n,t,e){return n?t||e?Ue(or(n),ar(t,e)):or(n):t||e?ar(t,e):rr}function ir(n){return function(t,e){return t+=n,[t>Sa?t-ka:-Sa>t?t+ka:t,e]}}function or(n){var t=ir(n);return t.invert=ir(-n),t}function ar(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*r+a*u;return[Math.atan2(c*i-l*o,a*r-s*u),X(l*i+c*o)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,s=Math.sin(t),l=s*i-c*o;return[Math.atan2(c*i+s*o,a*r+l*u),X(l*r-a*u)]},e}function cr(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,o,a){var c=o*t;null!=u?(u=sr(e,u),i=sr(e,i),(o>0?i>u:u>i)&&(u+=o*ka)):(u=n+o*ka,i=n-.5*c);for(var s,l=u;o>0?l>i:i>l;l-=c)a.point((s=ve([e,-r*Math.cos(l),-r*Math.sin(l)]))[0],s[1])}}function sr(n,t){var e=se(t);e[0]-=n,pe(e);var r=V(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Aa)%(2*Math.PI)}function lr(n,t,e){var r=Xo.range(n,t-Aa,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function fr(n,t,e){var r=Xo.range(n,t-Aa,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function hr(n){return n.source}function gr(n){return n.target}function pr(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),o=Math.cos(r),a=Math.sin(r),c=u*Math.cos(n),s=u*Math.sin(n),l=o*Math.cos(e),f=o*Math.sin(e),h=2*Math.asin(Math.sqrt(J(r-t)+u*o*J(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*l,u=e*s+t*f,o=e*i+t*a;return[Math.atan2(u,r)*La,Math.atan2(o,Math.sqrt(r*r+u*u))*La]}:function(){return[n*La,t*La]};return p.distance=h,p}function vr(){function n(n,u){var i=Math.sin(u*=Na),o=Math.cos(u),a=oa((n*=Na)-t),c=Math.cos(a);Uc+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*i-e*o*c)*a),e*i+r*o*c),t=n,e=i,r=o}var t,e,r;jc.point=function(u,i){t=u*Na,e=Math.sin(i*=Na),r=Math.cos(i),jc.point=n},jc.lineEnd=function(){jc.point=jc.lineEnd=g}}function dr(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),o=Math.cos(u);return[Math.atan2(n*i,r*o),Math.asin(r&&e*i/r)]},e}function mr(n,t){function e(n,t){var e=oa(oa(t)-Ea)<Aa?0:o/Math.pow(u(t),i);return[e*Math.sin(i*n),o-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(Sa/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),o=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=o-t,r=I(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(o/r,1/i))-Ea]},e):xr}function yr(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return oa(u)<Aa?er:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-I(u)*Math.sqrt(n*n+e*e)]},e)}function xr(n,t){return[n,Math.log(Math.tan(Sa/4+t/2))]}function Mr(n){var t,e=Qe(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var o=i.apply(e,arguments);if(o===e){if(t=null==n){var a=Sa*r(),c=u();i([[c[0]-a,c[1]-a],[c[0]+a,c[1]+a]])}}else t&&(o=null);return o},e.clipExtent(null)}function _r(n,t){return[Math.log(Math.tan(Sa/4+t/2)),-n]}function br(n){return n[0]}function wr(n){return n[1]}function Sr(n){for(var t=n.length,e=[0,1],r=2,u=2;t>u;u++){for(;r>1&&Z(n[e[r-2]],n[e[r-1]],n[u])<=0;)--r;e[r++]=u}return e.slice(0,r)}function kr(n,t){return n[0]-t[0]||n[1]-t[1]}function Er(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Ar(n,t,e,r){var u=n[0],i=e[0],o=t[0]-u,a=r[0]-i,c=n[1],s=e[1],l=t[1]-c,f=r[1]-s,h=(a*(c-s)-f*(u-i))/(f*o-a*l);return[u+h*o,c+h*l]}function Cr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Nr(){Jr(this),this.edge=this.site=this.circle=null}function Lr(n){var t=Jc.pop()||new Nr;return t.site=n,t}function Tr(n){Or(n),$c.remove(n),Jc.push(n),Jr(n)}function qr(n){var t=n.circle,e=t.x,r=t.cy,u={x:e,y:r},i=n.P,o=n.N,a=[n];Tr(n);for(var c=i;c.circle&&oa(e-c.circle.x)<Aa&&oa(r-c.circle.cy)<Aa;)i=c.P,a.unshift(c),Tr(c),c=i;a.unshift(c),Or(c);for(var s=o;s.circle&&oa(e-s.circle.x)<Aa&&oa(r-s.circle.cy)<Aa;)o=s.N,a.push(s),Tr(s),s=o;a.push(s),Or(s);var l,f=a.length;for(l=1;f>l;++l)s=a[l],c=a[l-1],$r(s.edge,c.site,s.site,u);c=a[0],s=a[f-1],s.edge=Vr(c.site,s.site,null,u),Fr(c),Fr(s)}function zr(n){for(var t,e,r,u,i=n.x,o=n.y,a=$c._;a;)if(r=Rr(a,o)-i,r>Aa)a=a.L;else{if(u=i-Dr(a,o),!(u>Aa)){r>-Aa?(t=a.P,e=a):u>-Aa?(t=a,e=a.N):t=e=a;break}if(!a.R){t=a;break}a=a.R}var c=Lr(n);if($c.insert(t,c),t||e){if(t===e)return Or(t),e=Lr(t.site),$c.insert(c,e),c.edge=e.edge=Vr(t.site,c.site),Fr(t),Fr(e),void 0;if(!e)return c.edge=Vr(t.site,c.site),void 0;Or(t),Or(e);var s=t.site,l=s.x,f=s.y,h=n.x-l,g=n.y-f,p=e.site,v=p.x-l,d=p.y-f,m=2*(h*d-g*v),y=h*h+g*g,x=v*v+d*d,M={x:(d*y-g*x)/m+l,y:(h*x-v*y)/m+f};$r(e.edge,s,p,M),c.edge=Vr(s,n,null,M),e.edge=Vr(n,p,null,M),Fr(t),Fr(e)}}function Rr(n,t){var e=n.site,r=e.x,u=e.y,i=u-t;if(!i)return r;var o=n.P;if(!o)return-1/0;e=o.site;var a=e.x,c=e.y,s=c-t;if(!s)return a;var l=a-r,f=1/i-1/s,h=l/s;return f?(-h+Math.sqrt(h*h-2*f*(l*l/(-2*s)-c+s/2+u-i/2)))/f+r:(r+a)/2}function Dr(n,t){var e=n.N;if(e)return Rr(e,t);var r=n.site;return r.y===t?r.x:1/0}function Pr(n){this.site=n,this.edges=[]}function Ur(n){for(var t,e,r,u,i,o,a,c,s,l,f=n[0][0],h=n[1][0],g=n[0][1],p=n[1][1],v=Xc,d=v.length;d--;)if(i=v[d],i&&i.prepare())for(a=i.edges,c=a.length,o=0;c>o;)l=a[o].end(),r=l.x,u=l.y,s=a[++o%c].start(),t=s.x,e=s.y,(oa(r-t)>Aa||oa(u-e)>Aa)&&(a.splice(o,0,new Br(Xr(i.site,l,oa(r-f)<Aa&&p-u>Aa?{x:f,y:oa(t-f)<Aa?e:p}:oa(u-p)<Aa&&h-r>Aa?{x:oa(e-p)<Aa?t:h,y:p}:oa(r-h)<Aa&&u-g>Aa?{x:h,y:oa(t-h)<Aa?e:g}:oa(u-g)<Aa&&r-f>Aa?{x:oa(e-g)<Aa?t:f,y:g}:null),i.site,null)),++c)}function jr(n,t){return t.angle-n.angle}function Hr(){Jr(this),this.x=this.y=this.arc=this.site=this.cy=null}function Fr(n){var t=n.P,e=n.N;if(t&&e){var r=t.site,u=n.site,i=e.site;if(r!==i){var o=u.x,a=u.y,c=r.x-o,s=r.y-a,l=i.x-o,f=i.y-a,h=2*(c*f-s*l);if(!(h>=-Ca)){var g=c*c+s*s,p=l*l+f*f,v=(f*g-s*p)/h,d=(c*p-l*g)/h,f=d+a,m=Gc.pop()||new Hr;m.arc=n,m.site=u,m.x=v+o,m.y=f+Math.sqrt(v*v+d*d),m.cy=f,n.circle=m;for(var y=null,x=Wc._;x;)if(m.y<x.y||m.y===x.y&&m.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}Wc.insert(y,m),y||(Bc=m)}}}}function Or(n){var t=n.circle;t&&(t.P||(Bc=t.N),Wc.remove(t),Gc.push(t),Jr(t),n.circle=null)}function Yr(n){for(var t,e=Vc,r=De(n[0][0],n[0][1],n[1][0],n[1][1]),u=e.length;u--;)t=e[u],(!Ir(t,n)||!r(t)||oa(t.a.x-t.b.x)<Aa&&oa(t.a.y-t.b.y)<Aa)&&(t.a=t.b=null,e.splice(u,1))}function Ir(n,t){var e=n.b;if(e)return!0;var r,u,i=n.a,o=t[0][0],a=t[1][0],c=t[0][1],s=t[1][1],l=n.l,f=n.r,h=l.x,g=l.y,p=f.x,v=f.y,d=(h+p)/2,m=(g+v)/2;if(v===g){if(o>d||d>=a)return;if(h>p){if(i){if(i.y>=s)return}else i={x:d,y:c};e={x:d,y:s}}else{if(i){if(i.y<c)return}else i={x:d,y:s};e={x:d,y:c}}}else if(r=(h-p)/(v-g),u=m-r*d,-1>r||r>1)if(h>p){if(i){if(i.y>=s)return}else i={x:(c-u)/r,y:c};e={x:(s-u)/r,y:s}}else{if(i){if(i.y<c)return}else i={x:(s-u)/r,y:s};e={x:(c-u)/r,y:c}}else if(v>g){if(i){if(i.x>=a)return}else i={x:o,y:r*o+u};e={x:a,y:r*a+u}}else{if(i){if(i.x<o)return}else i={x:a,y:r*a+u};e={x:o,y:r*o+u}}return n.a=i,n.b=e,!0}function Zr(n,t){this.l=n,this.r=t,this.a=this.b=null}function Vr(n,t,e,r){var u=new Zr(n,t);return Vc.push(u),e&&$r(u,n,t,e),r&&$r(u,t,n,r),Xc[n.i].edges.push(new Br(u,n,t)),Xc[t.i].edges.push(new Br(u,t,n)),u}function Xr(n,t,e){var r=new Zr(n,null);return r.a=t,r.b=e,Vc.push(r),r}function $r(n,t,e,r){n.a||n.b?n.l===e?n.b=r:n.a=r:(n.a=r,n.l=t,n.r=e)}function Br(n,t,e){var r=n.a,u=n.b;this.edge=n,this.site=t,this.angle=e?Math.atan2(e.y-t.y,e.x-t.x):n.l===t?Math.atan2(u.x-r.x,r.y-u.y):Math.atan2(r.x-u.x,u.y-r.y)}function Wr(){this._=null}function Jr(n){n.U=n.C=n.L=n.R=n.P=n.N=null}function Gr(n,t){var e=t,r=t.R,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.R=r.L,e.R&&(e.R.U=e),r.L=e}function Kr(n,t){var e=t,r=t.L,u=e.U;u?u.L===e?u.L=r:u.R=r:n._=r,r.U=u,e.U=r,e.L=r.R,e.L&&(e.L.U=e),r.R=e}function Qr(n){for(;n.L;)n=n.L;return n}function nu(n,t){var e,r,u,i=n.sort(tu).pop();for(Vc=[],Xc=new Array(n.length),$c=new Wr,Wc=new Wr;;)if(u=Bc,i&&(!u||i.y<u.y||i.y===u.y&&i.x<u.x))(i.x!==e||i.y!==r)&&(Xc[i.i]=new Pr(i),zr(i),e=i.x,r=i.y),i=n.pop();else{if(!u)break;qr(u.arc)}t&&(Yr(t),Ur(t));var o={cells:Xc,edges:Vc};return $c=Wc=Vc=Xc=null,o}function tu(n,t){return t.y-n.y||t.x-n.x}function eu(n,t,e){return(n.x-e.x)*(t.y-n.y)-(n.x-t.x)*(e.y-n.y)}function ru(n){return n.x}function uu(n){return n.y}function iu(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function ou(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var o=.5*(e+u),a=.5*(r+i),c=t.nodes;c[0]&&ou(n,c[0],e,r,o,a),c[1]&&ou(n,c[1],o,r,u,a),c[2]&&ou(n,c[2],e,a,o,i),c[3]&&ou(n,c[3],o,a,u,i)}}function au(n,t){n=Xo.rgb(n),t=Xo.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,o=t.g-r,a=t.b-u;return function(n){return"#"+vt(Math.round(e+i*n))+vt(Math.round(r+o*n))+vt(Math.round(u+a*n))}}function cu(n,t){var e,r={},u={};for(e in n)e in t?r[e]=fu(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function su(n,t){return t-=n=+n,function(e){return n+t*e}}function lu(n,t){var e,r,u,i,o,a=0,c=0,s=[],l=[];for(n+="",t+="",Qc.lastIndex=0,r=0;e=Qc.exec(t);++r)e.index&&s.push(t.substring(a,c=e.index)),l.push({i:s.length,x:e[0]}),s.push(null),a=Qc.lastIndex;for(a<t.length&&s.push(t.substring(a)),r=0,i=l.length;(e=Qc.exec(n))&&i>r;++r)if(o=l[r],o.x==e[0]){if(o.i)if(null==s[o.i+1])for(s[o.i-1]+=o.x,s.splice(o.i,1),u=r+1;i>u;++u)l[u].i--;else for(s[o.i-1]+=o.x+s[o.i+1],s.splice(o.i,2),u=r+1;i>u;++u)l[u].i-=2;else if(null==s[o.i+1])s[o.i]=o.x;else for(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1),u=r+1;i>u;++u)l[u].i--;l.splice(r,1),i--,r--}else o.x=su(parseFloat(e[0]),parseFloat(o.x));for(;i>r;)o=l.pop(),null==s[o.i+1]?s[o.i]=o.x:(s[o.i]=o.x+s[o.i+1],s.splice(o.i+1,1)),i--;return 1===s.length?null==s[0]?(o=l[0].x,function(n){return o(n)+""}):function(){return t}:function(n){for(r=0;i>r;++r)s[(o=l[r]).i]=o.x(n);return s.join("")}}function fu(n,t){for(var e,r=Xo.interpolators.length;--r>=0&&!(e=Xo.interpolators[r](n,t)););return e}function hu(n,t){var e,r=[],u=[],i=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(fu(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;o>e;++e)u[e]=t[e];return function(n){for(e=0;a>e;++e)u[e]=r[e](n);return u}}function gu(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function pu(n){return function(t){return 1-n(1-t)}}function vu(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function du(n){return n*n}function mu(n){return n*n*n}function yu(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function xu(n){return function(t){return Math.pow(t,n)}}function Mu(n){return 1-Math.cos(n*Ea)}function _u(n){return Math.pow(2,10*(n-1))}function bu(n){return 1-Math.sqrt(1-n*n)}function wu(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/ka*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*ka/t)}}function Su(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function ku(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Eu(n,t){n=Xo.hcl(n),t=Xo.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,o=t.c-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return rt(e+i*n,r+o*n,u+a*n)+""}}function Au(n,t){n=Xo.hsl(n),t=Xo.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,o=t.s-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return nt(e+i*n,r+o*n,u+a*n)+""}}function Cu(n,t){n=Xo.lab(n),t=Xo.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,o=t.a-r,a=t.b-u;return function(n){return ot(e+i*n,r+o*n,u+a*n)+""}}function Nu(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Lu(n){var t=[n.a,n.b],e=[n.c,n.d],r=qu(t),u=Tu(t,e),i=qu(zu(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*La,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*La:0}function Tu(n,t){return n[0]*t[0]+n[1]*t[1]}function qu(n){var t=Math.sqrt(Tu(n,n));return t&&(n[0]/=t,n[1]/=t),t}function zu(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Ru(n,t){var e,r=[],u=[],i=Xo.transform(n),o=Xo.transform(t),a=i.translate,c=o.translate,s=i.rotate,l=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push("translate(",null,",",null,")"),u.push({i:1,x:su(a[0],c[0])},{i:3,x:su(a[1],c[1])})):c[0]||c[1]?r.push("translate("+c+")"):r.push(""),s!=l?(s-l>180?l+=360:l-s>180&&(s+=360),u.push({i:r.push(r.pop()+"rotate(",null,")")-2,x:su(s,l)})):l&&r.push(r.pop()+"rotate("+l+")"),f!=h?u.push({i:r.push(r.pop()+"skewX(",null,")")-2,x:su(f,h)}):h&&r.push(r.pop()+"skewX("+h+")"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+"scale(",null,",",null,")"),u.push({i:e-4,x:su(g[0],p[0])},{i:e-2,x:su(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+"scale("+p+")"),e=u.length,function(n){for(var t,i=-1;++i<e;)r[(t=u[i]).i]=t.x(n);return r.join("")}}function Du(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Pu(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Uu(n){for(var t=n.source,e=n.target,r=Hu(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function ju(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Hu(n,t){if(n===t)return n;for(var e=ju(n),r=ju(t),u=e.pop(),i=r.pop(),o=null;u===i;)o=u,u=e.pop(),i=r.pop();return o}function Fu(n){n.fixed|=2}function Ou(n){n.fixed&=-7}function Yu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function Iu(n){n.fixed&=-5}function Zu(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,o=n.nodes,a=o.length,c=-1;++c<a;)i=o[c],null!=i&&(Zu(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var s=t*e[n.point.index];n.charge+=n.pointCharge=s,r+=s*n.point.x,u+=s*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function Vu(n,t){return Xo.rebind(n,t,"sort","children","value"),n.nodes=n,n.links=Wu,n}function Xu(n){return n.children}function $u(n){return n.value}function Bu(n,t){return t.value-n.value}function Wu(n){return Xo.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function Ju(n){return n.x}function Gu(n){return n.y}function Ku(n,t,e){n.y0=t,n.y=e}function Qu(n){return Xo.range(n.length)}function ni(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function ti(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function ei(n){return n.reduce(ri,0)}function ri(n,t){return n+t[1]}function ui(n,t){return ii(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function ii(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];++e<=t;)i[e]=u*e+r;return i}function oi(n){return[Xo.min(n),Xo.max(n)]}function ai(n,t){return n.parent==t.parent?1:2}function ci(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function si(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function li(n,t){var e=n.children;if(e&&(u=e.length))for(var r,u,i=-1;++i<u;)t(r=li(e[i],t),n)>0&&(n=r);return n}function fi(n,t){return n.x-t.x}function hi(n,t){return t.x-n.x}function gi(n,t){return n.depth-t.depth}function pi(n,t){function e(n,r){var u=n.children;if(u&&(o=u.length))for(var i,o,a=null,c=-1;++c<o;)i=u[c],e(i,a),a=i;t(n,r)}e(n,null)}function vi(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function di(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function mi(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function yi(n,t){return n.value-t.value}function xi(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Mi(n,t){n._pack_next=t,t._pack_prev=n}function _i(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function bi(n){function t(n){l=Math.min(n.x-n.r,l),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(s=e.length)){var e,r,u,i,o,a,c,s,l=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(wi),r=e[0],r.x=-r.r,r.y=0,t(r),s>1&&(u=e[1],u.x=u.r,u.y=0,t(u),s>2))for(i=e[2],Ei(r,u,i),t(i),xi(r,i),r._pack_prev=i,xi(i,u),u=r._pack_next,o=3;s>o;o++){Ei(r,u,i=e[o]);var p=0,v=1,d=1;for(a=u._pack_next;a!==u;a=a._pack_next,v++)if(_i(a,i)){p=1;break}if(1==p)for(c=r._pack_prev;c!==a._pack_prev&&!_i(c,i);c=c._pack_prev,d++);p?(d>v||v==d&&u.r<r.r?Mi(r,u=a):Mi(r=c,u),o--):(xi(r,i),u=i,t(i))}var m=(l+f)/2,y=(h+g)/2,x=0;for(o=0;s>o;o++)i=e[o],i.x-=m,i.y-=y,x=Math.max(x,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=x,e.forEach(Si)}}function wi(n){n._pack_next=n._pack_prev=n}function Si(n){delete n._pack_next,delete n._pack_prev}function ki(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,o=u.length;++i<o;)ki(u[i],t,e,r)}function Ei(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var o=t.r+e.r,a=u*u+i*i;o*=o,r*=r;var c=.5+(r-o)/(2*a),s=Math.sqrt(Math.max(0,2*o*(r+a)-(r-=a)*r-o*o))/(2*a);e.x=n.x+c*u+s*i,e.y=n.y+c*i-s*u}else e.x=n.x+r,e.y=n.y}function Ai(n){return 1+Xo.max(n,function(n){return n.y})}function Ci(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Ni(n){var t=n.children;return t&&t.length?Ni(t[0]):n}function Li(n){var t,e=n.children;return e&&(t=e.length)?Li(e[t-1]):n}function Ti(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function qi(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function zi(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Ri(n){return n.rangeExtent?n.rangeExtent():zi(n.range())}function Di(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Pi(n,t){var e,r=0,u=n.length-1,i=n[r],o=n[u];return i>o&&(e=r,r=u,u=e,e=i,i=o,o=e),n[r]=t.floor(i),n[u]=t.ceil(o),n}function Ui(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:ls}function ji(n,t,e,r){var u=[],i=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++o<=a;)u.push(e(n[o-1],n[o])),i.push(r(t[o-1],t[o]));return function(t){var e=Xo.bisect(n,t,1,a)-1;return i[e](u[e](t))}}function Hi(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?ji:Di,c=r?Pu:Du;return o=u(n,t,c,e),a=u(t,n,c,fu),i}function i(n){return o(n)}var o,a;return i.invert=function(n){return a(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Nu)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return Ii(n,t)},i.tickFormat=function(t,e){return Zi(n,t,e)},i.nice=function(t){return Oi(n,t),u()},i.copy=function(){return Hi(n,t,e,r)},u()}function Fi(n,t){return Xo.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Oi(n,t){return Pi(n,Ui(Yi(n,t)[2]))}function Yi(n,t){null==t&&(t=10);var e=zi(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function Ii(n,t){return Xo.range.apply(Xo,Yi(n,t))}function Zi(n,t,e){var r=Yi(n,t);return Xo.format(e?e.replace(Qa,function(n,t,e,u,i,o,a,c,s,l){return[t,e,u,i,o,a,c,s||"."+Xi(l,r),l].join("")}):",."+Vi(r[2])+"f")}function Vi(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function Xi(n,t){var e=Vi(t[2]);return n in fs?Math.abs(e-Vi(Math.max(Math.abs(t[0]),Math.abs(t[1]))))+ +("e"!==n):e-2*("%"===n)}function $i(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(u(t))}return o.invert=function(t){return i(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),o):t},o.nice=function(){var t=Pi(r.map(u),e?Math:gs);return n.domain(t),r=t.map(i),o},o.ticks=function(){var n=zi(r),o=[],a=n[0],c=n[1],s=Math.floor(u(a)),l=Math.ceil(u(c)),f=t%1?2:t;if(isFinite(l-s)){if(e){for(;l>s;s++)for(var h=1;f>h;h++)o.push(i(s)*h);o.push(i(s))}else for(o.push(i(s));s++<l;)for(var h=f-1;h>0;h--)o.push(i(s)*h);for(s=0;o[s]<a;s++);for(l=o.length;o[l-1]>c;l--);o=o.slice(s,l)}return o},o.tickFormat=function(n,t){if(!arguments.length)return hs;arguments.length<2?t=hs:"function"!=typeof t&&(t=Xo.format(t));var r,a=Math.max(.1,n/o.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return n/i(c(u(n)+r))<=a?t(n):""}},o.copy=function(){return $i(n.copy(),t,e,r)},Fi(o,n)}function Bi(n,t,e){function r(t){return n(u(t))}var u=Wi(t),i=Wi(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return Ii(e,n)},r.tickFormat=function(n,t){return Zi(e,n,t)},r.nice=function(n){return r.domain(Oi(e,n))},r.exponent=function(o){return arguments.length?(u=Wi(t=o),i=Wi(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return Bi(n.copy(),t,e)},Fi(r,n)}function Wi(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function Ji(n,t){function e(e){return o[((i.get(e)||"range"===t.t&&i.set(e,n.push(e)))-1)%o.length]}function r(t,e){return Xo.range(n.length).map(function(n){return t+e*n})}var i,o,a;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new u;for(var o,a=-1,c=r.length;++a<c;)i.has(o=r[a])||i.set(o,n.push(o));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(o=n,a=0,t={t:"range",a:arguments},e):o},e.rangePoints=function(u,i){arguments.length<2&&(i=0);var c=u[0],s=u[1],l=(s-c)/(Math.max(1,n.length-1)+i);return o=r(n.length<2?(c+s)/2:c+l*i/2,l),a=0,t={t:"rangePoints",a:arguments},e},e.rangeBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=(f-l)/(n.length-i+2*c);return o=r(l+h*c,h),s&&o.reverse(),a=h*(1-i),t={t:"rangeBands",a:arguments},e},e.rangeRoundBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var s=u[1]<u[0],l=u[s-0],f=u[1-s],h=Math.floor((f-l)/(n.length-i+2*c)),g=f-l-(n.length-i)*h;return o=r(l+Math.round(g/2),h),s&&o.reverse(),a=Math.round(h*(1-i)),t={t:"rangeRoundBands",a:arguments},e},e.rangeBand=function(){return a},e.rangeExtent=function(){return zi(t.a[0])},e.copy=function(){return Ji(n,t)},e.domain(n)}function Gi(n,t){function e(){var e=0,i=t.length;for(u=[];++e<i;)u[e-1]=Xo.quantile(n,e/i);return r}function r(n){return isNaN(n=+n)?void 0:t[Xo.bisect(u,n)]}var u;return r.domain=function(t){return arguments.length?(n=t.filter(function(n){return!isNaN(n)}).sort(Xo.ascending),e()):n},r.range=function(n){return arguments.length?(t=n,e()):t},r.quantiles=function(){return u},r.invertExtent=function(e){return e=t.indexOf(e),0>e?[0/0,0/0]:[e>0?u[e-1]:n[0],e<u.length?u[e]:n[n.length-1]]},r.copy=function(){return Gi(n,t)},e()}function Ki(n,t,e){function r(t){return e[Math.max(0,Math.min(o,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),o=e.length-1,r}var i,o;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/i+n,[t,t+1/i]},r.copy=function(){return Ki(n,t,e)},u()}function Qi(n,t){function e(e){return e>=e?t[Xo.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return Qi(n,t)},e}function no(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Ii(n,t)},t.tickFormat=function(t,e){return Zi(n,t,e)},t.copy=function(){return no(n)},t}function to(n){return n.innerRadius}function eo(n){return n.outerRadius}function ro(n){return n.startAngle}function uo(n){return n.endAngle}function io(n){function t(t){function o(){s.push("M",i(n(l),a))}for(var c,s=[],l=[],f=-1,h=t.length,g=_t(e),p=_t(r);++f<h;)u.call(this,c=t[f],f)?l.push([+g.call(this,c,f),+p.call(this,c,f)]):l.length&&(o(),l=[]);return l.length&&o(),s.length?s.join(""):null}var e=br,r=wr,u=be,i=oo,o=i.key,a=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(o="function"==typeof n?i=n:(i=Ms.get(n)||oo).key,t):o},t.tension=function(n){return arguments.length?(a=n,t):a},t}function oo(n){return n.join("L")}function ao(n){return oo(n)+"Z"}function co(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r[0]+(r=n[t])[0])/2,"V",r[1]);return e>1&&u.push("H",r[0]),u.join("")}function so(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("V",(r=n[t])[1],"H",r[0]);return u.join("")}function lo(n){for(var t=0,e=n.length,r=n[0],u=[r[0],",",r[1]];++t<e;)u.push("H",(r=n[t])[0],"V",r[1]);return u.join("")}function fo(n,t){return n.length<4?oo(n):n[1]+po(n.slice(1,n.length-1),vo(n,t))}function ho(n,t){return n.length<3?oo(n):n[0]+po((n.push(n[0]),n),vo([n[n.length-2]].concat(n,[n[1]]),t))}function go(n,t){return n.length<3?oo(n):n[0]+po(n,vo(n,t))}function po(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return oo(n);var e=n.length!=t.length,r="",u=n[0],i=n[1],o=t[0],a=o,c=1;if(e&&(r+="Q"+(i[0]-2*o[0]/3)+","+(i[1]-2*o[1]/3)+","+i[0]+","+i[1],u=n[1],c=2),t.length>1){a=t[1],i=n[c],c++,r+="C"+(u[0]+o[0])+","+(u[1]+o[1])+","+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1];for(var s=2;s<t.length;s++,c++)i=n[c],a=t[s],r+="S"+(i[0]-a[0])+","+(i[1]-a[1])+","+i[0]+","+i[1]}if(e){var l=n[c];r+="Q"+(i[0]+2*a[0]/3)+","+(i[1]+2*a[1]/3)+","+l[0]+","+l[1]}return r}function vo(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],o=n[1],a=1,c=n.length;++a<c;)e=i,i=o,o=n[a],r.push([u*(o[0]-e[0]),u*(o[1]-e[1])]);return r}function mo(n){if(n.length<3)return oo(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],o=[u,u,u,(r=n[1])[0]],a=[i,i,i,r[1]],c=[u,",",i,"L",_o(ws,o),",",_o(ws,a)];for(n.push(n[e-1]);++t<=e;)r=n[t],o.shift(),o.push(r[0]),a.shift(),a.push(r[1]),bo(c,o,a);return n.pop(),c.push("L",r),c.join("")}function yo(n){if(n.length<4)return oo(n);for(var t,e=[],r=-1,u=n.length,i=[0],o=[0];++r<3;)t=n[r],i.push(t[0]),o.push(t[1]);for(e.push(_o(ws,i)+","+_o(ws,o)),--r;++r<u;)t=n[r],i.shift(),i.push(t[0]),o.shift(),o.push(t[1]),bo(e,i,o);return e.join("")}function xo(n){for(var t,e,r=-1,u=n.length,i=u+4,o=[],a=[];++r<4;)e=n[r%u],o.push(e[0]),a.push(e[1]);for(t=[_o(ws,o),",",_o(ws,a)],--r;++r<i;)e=n[r%u],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),bo(t,o,a);return t.join("")}function Mo(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],o=n[0][1],a=n[e][0]-i,c=n[e][1]-o,s=-1;++s<=e;)r=n[s],u=s/e,r[0]=t*r[0]+(1-t)*(i+u*a),r[1]=t*r[1]+(1-t)*(o+u*c);return mo(n)}function _o(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function bo(n,t,e){n.push("C",_o(_s,t),",",_o(_s,e),",",_o(bs,t),",",_o(bs,e),",",_o(ws,t),",",_o(ws,e))}function wo(n,t){return(t[1]-n[1])/(t[0]-n[0])}function So(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],o=r[0]=wo(u,i);++t<e;)r[t]=(o+(o=wo(u=i,i=n[t+1])))/2;return r[t]=o,r}function ko(n){for(var t,e,r,u,i=[],o=So(n),a=-1,c=n.length-1;++a<c;)t=wo(n[a],n[a+1]),oa(t)<Aa?o[a]=o[a+1]=0:(e=o[a]/t,r=o[a+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),o[a]=u*e,o[a+1]=u*r));for(a=-1;++a<=c;)u=(n[Math.min(c,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),i.push([u||0,o[a]*u||0]);return i}function Eo(n){return n.length<3?oo(n):n[0]+po(n,ko(n))}function Ao(n){for(var t,e,r,u=-1,i=n.length;++u<i;)t=n[u],e=t[0],r=t[1]+ys,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function Co(n){function t(t){function c(){v.push("M",a(n(m),f),l,s(n(d.reverse()),f),"Z")}for(var h,g,p,v=[],d=[],m=[],y=-1,x=t.length,M=_t(e),_=_t(u),b=e===r?function(){return g}:_t(r),w=u===i?function(){return p}:_t(i);++y<x;)o.call(this,h=t[y],y)?(d.push([g=+M.call(this,h,y),p=+_.call(this,h,y)]),m.push([+b.call(this,h,y),+w.call(this,h,y)])):d.length&&(c(),d=[],m=[]);return d.length&&c(),v.length?v.join(""):null}var e=br,r=br,u=0,i=wr,o=be,a=oo,c=a.key,s=a,l="L",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(o=n,t):o},t.interpolate=function(n){return arguments.length?(c="function"==typeof n?a=n:(a=Ms.get(n)||oo).key,s=a.reverse||a,l=a.closed?"M":"L",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function No(n){return n.radius}function Lo(n){return[n.x,n.y]}function To(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+ys;return[e*Math.cos(r),e*Math.sin(r)]}}function qo(){return 64}function zo(){return"circle"}function Ro(n){var t=Math.sqrt(n/Sa);return"M0,"+t+"A"+t+","+t+" 0 1,1 0,"+-t+"A"+t+","+t+" 0 1,1 0,"+t+"Z"}function Do(n,t){return fa(n,Ns),n.id=t,n}function Po(n,t,e,r){var u=n.id;return R(n,"function"==typeof e?function(n,i,o){n.__transition__[u].tween.set(t,r(e.call(n,n.__data__,i,o)))}:(e=r(e),function(n){n.__transition__[u].tween.set(t,e)}))}function Uo(n){return null==n&&(n=""),function(){this.textContent=n}}function jo(n,t,e,r){var i=n.__transition__||(n.__transition__={active:0,count:0}),o=i[e];if(!o){var a=r.time;o=i[e]={tween:new u,time:a,ease:r.ease,delay:r.delay,duration:r.duration},++i.count,Xo.timer(function(r){function u(r){return i.active>e?s():(i.active=e,o.event&&o.event.start.call(n,l,t),o.tween.forEach(function(e,r){(r=r.call(n,l,t))&&v.push(r)}),Xo.timer(function(){return p.c=c(r||1)?be:c,1},0,a),void 0)}function c(r){if(i.active!==e)return s();for(var u=r/g,a=f(u),c=v.length;c>0;)v[--c].call(n,a);return u>=1?(o.event&&o.event.end.call(n,l,t),s()):void 0}function s(){return--i.count?delete i[e]:delete n.__transition__,1}var l=n.__data__,f=o.ease,h=o.delay,g=o.duration,p=Ja,v=[];return p.t=h+a,r>=h?u(r-h):(p.c=u,void 0)},0,a)}}function Ho(n,t){n.attr("transform",function(n){return"translate("+t(n)+",0)"})}function Fo(n,t){n.attr("transform",function(n){return"translate(0,"+t(n)+")"})}function Oo(n){return n.toISOString()}function Yo(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=Xo.bisect(js,u);return i==js.length?[t.year,Yi(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/js[i-1]<js[i]/u?i-1:i]:[Os,Yi(n,e)[2]]}return r.invert=function(t){return Io(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(Io)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,Io(+e+1),t).length}var i=r.domain(),o=zi(i),a=null==n?u(o,10):"number"==typeof n&&u(o,n);return a&&(n=a[0],t=a[1]),r.domain(Pi(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=Io(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=Io(+t+1);return t}}:n))},r.ticks=function(n,t){var e=zi(r.domain()),i=null==n?u(e,10):"number"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],Io(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return Yo(n.copy(),t,e)},Fi(r,n)}function Io(n){return new Date(n)}function Zo(n){return JSON.parse(n.responseText)}function Vo(n){var t=Wo.createRange();return t.selectNode(Wo.body),t.createContextualFragment(n.responseText)}var Xo={version:"3.4.3"};Date.now||(Date.now=function(){return+new Date});var $o=[].slice,Bo=function(n){return $o.call(n)},Wo=document,Jo=Wo.documentElement,Go=window;try{Bo(Jo.childNodes)[0].nodeType}catch(Ko){Bo=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}try{Wo.createElement("div").style.setProperty("opacity",0,"")}catch(Qo){var na=Go.Element.prototype,ta=na.setAttribute,ea=na.setAttributeNS,ra=Go.CSSStyleDeclaration.prototype,ua=ra.setProperty;na.setAttribute=function(n,t){ta.call(this,n,t+"")},na.setAttributeNS=function(n,t,e){ea.call(this,n,t,e+"")},ra.setProperty=function(n,t,e){ua.call(this,n,t+"",e)}}Xo.ascending=function(n,t){return t>n?-1:n>t?1:n>=t?0:0/0},Xo.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},Xo.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},Xo.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},Xo.extent=function(n,t){var e,r,u,i=-1,o=n.length;if(1===arguments.length){for(;++i<o&&!(null!=(e=u=n[i])&&e>=e);)e=u=void 0;for(;++i<o;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;++i<o&&!(null!=(e=u=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<o;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},Xo.sum=function(n,t){var e,r=0,u=n.length,i=-1;if(1===arguments.length)for(;++i<u;)isNaN(e=+n[i])||(r+=e);else for(;++i<u;)isNaN(e=+t.call(n,n[i],i))||(r+=e);return r},Xo.mean=function(t,e){var r,u=t.length,i=0,o=-1,a=0;if(1===arguments.length)for(;++o<u;)n(r=t[o])&&(i+=(r-i)/++a);else for(;++o<u;)n(r=e.call(t,t[o],o))&&(i+=(r-i)/++a);return a?i:void 0},Xo.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},Xo.median=function(t,e){return arguments.length>1&&(t=t.map(e)),t=t.filter(n),t.length?Xo.quantile(t.sort(Xo.ascending),.5):void 0},Xo.bisector=function(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n.call(t,t[i],i)<e?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;e<n.call(t,t[i],i)?u=i:r=i+1}return r}}};var ia=Xo.bisector(function(n){return n});Xo.bisectLeft=ia.left,Xo.bisect=Xo.bisectRight=ia.right,Xo.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},Xo.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},Xo.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=new Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},Xo.zip=function(){if(!(u=arguments.length))return[];for(var n=-1,e=Xo.min(arguments,t),r=new Array(e);++n<e;)for(var u,i=-1,o=r[n]=new Array(u);++i<u;)o[i]=arguments[i][n];return r},Xo.transpose=function(n){return Xo.zip.apply(Xo,n)},Xo.keys=function(n){var t=[];for(var e in n)t.push(e);return t},Xo.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},Xo.entries=function(n){var t=[];for(var e in n)t.push({key:e,value:n[e]});return t},Xo.merge=function(n){for(var t,e,r,u=n.length,i=-1,o=0;++i<u;)o+=n[i].length;for(e=new Array(o);--u>=0;)for(r=n[u],t=r.length;--t>=0;)e[--o]=r[t];return e};var oa=Math.abs;Xo.range=function(n,t,r){if(arguments.length<3&&(r=1,arguments.length<2&&(t=n,n=0)),1/0===(t-n)/r)throw new Error("infinite range");var u,i=[],o=e(oa(r)),a=-1;if(n*=o,t*=o,r*=o,0>r)for(;(u=n+r*++a)>t;)i.push(u/o);else for(;(u=n+r*++a)<t;)i.push(u/o);return i},Xo.map=function(n){var t=new u;if(n instanceof u)n.forEach(function(n,e){t.set(n,e)});else for(var e in n)t.set(e,n[e]);return t},r(u,{has:i,get:function(n){return this[aa+n]},set:function(n,t){return this[aa+n]=t},remove:o,keys:a,values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},size:c,empty:s,forEach:function(n){for(var t in this)t.charCodeAt(0)===ca&&n.call(this,t.substring(1),this[t])}});var aa="\x00",ca=aa.charCodeAt(0);Xo.nest=function(){function n(t,a,c){if(c>=o.length)return r?r.call(i,a):e?a.sort(e):a;for(var s,l,f,h,g=-1,p=a.length,v=o[c++],d=new u;++g<p;)(h=d.get(s=v(l=a[g])))?h.push(l):d.set(s,[l]);return t?(l=t(),f=function(e,r){l.set(e,n(t,r,c))}):(l={},f=function(e,r){l[e]=n(t,r,c)}),d.forEach(f),l}function t(n,e){if(e>=o.length)return n;var r=[],u=a[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,i={},o=[],a=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(Xo.map,e,0),0)},i.key=function(n){return o.push(n),i},i.sortKeys=function(n){return a[o.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},Xo.set=function(n){var t=new l;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},r(l,{has:i,add:function(n){return this[aa+n]=!0,n},remove:function(n){return n=aa+n,n in this&&delete this[n]},values:a,size:c,empty:s,forEach:function(n){for(var t in this)t.charCodeAt(0)===ca&&n.call(this,t.substring(1))}}),Xo.behavior={},Xo.rebind=function(n,t){for(var e,r=1,u=arguments.length;++r<u;)n[e=arguments[r]]=f(n,t,t[e]);return n};var sa=["webkit","ms","moz","Moz","o","O"];Xo.dispatch=function(){for(var n=new p,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=v(n);return n},p.prototype.on=function(n,t){var e=n.indexOf("."),r="";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},Xo.event=null,Xo.requote=function(n){return n.replace(la,"\\$&")};var la=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,fa={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},ha=function(n,t){return t.querySelector(n)},ga=function(n,t){return t.querySelectorAll(n)},pa=Jo[h(Jo,"matchesSelector")],va=function(n,t){return pa.call(n,t)};"function"==typeof Sizzle&&(ha=function(n,t){return Sizzle(n,t)[0]||null},ga=Sizzle,va=Sizzle.matchesSelector),Xo.selection=function(){return xa};var da=Xo.selection.prototype=[];da.select=function(n){var t,e,r,u,i=[];n=M(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]),t.parentNode=(r=this[o]).parentNode;for(var c=-1,s=r.length;++c<s;)(u=r[c])?(t.push(e=n.call(u,u.__data__,c,o)),e&&"__data__"in u&&(e.__data__=u.__data__)):t.push(null)}return x(i)},da.selectAll=function(n){var t,e,r=[];n=_(n);for(var u=-1,i=this.length;++u<i;)for(var o=this[u],a=-1,c=o.length;++a<c;)(e=o[a])&&(r.push(t=Bo(n.call(e,e.__data__,a,u))),t.parentNode=e);return x(r)};var ma={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};Xo.ns={prefix:ma,qualify:function(n){var t=n.indexOf(":"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),ma.hasOwnProperty(e)?{space:ma[e],local:n}:n}},da.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=Xo.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(b(t,n[t]));return this}return this.each(b(n,t))},da.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=k(n)).length,u=-1;if(t=e.classList){for(;++u<r;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute("class");++u<r;)if(!S(n[u]).test(t))return!1;return!0}for(t in n)this.each(E(t,n[t]));return this}return this.each(E(n,t))},da.style=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t="");for(e in n)this.each(C(e,n[e],t));return this}if(2>r)return Go.getComputedStyle(this.node(),null).getPropertyValue(n);e=""}return this.each(C(n,t,e))},da.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(N(t,n[t]));return this}return this.each(N(n,t))},da.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},da.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},da.append=function(n){return n=L(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},da.insert=function(n,t){return n=L(n),t=M(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},da.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},da.data=function(n,t){function e(n,e){var r,i,o,a=n.length,f=e.length,h=Math.min(a,f),g=new Array(f),p=new Array(f),v=new Array(a);if(t){var d,m=new u,y=new u,x=[];for(r=-1;++r<a;)d=t.call(i=n[r],i.__data__,r),m.has(d)?v[r]=i:m.set(d,i),x.push(d);for(r=-1;++r<f;)d=t.call(e,o=e[r],r),(i=m.get(d))?(g[r]=i,i.__data__=o):y.has(d)||(p[r]=T(o)),y.set(d,o),m.remove(d);for(r=-1;++r<a;)m.has(x[r])&&(v[r]=n[r])}else{for(r=-1;++r<h;)i=n[r],o=e[r],i?(i.__data__=o,g[r]=i):p[r]=T(o);for(;f>r;++r)p[r]=T(e[r]);for(;a>r;++r)v[r]=n[r]}p.update=g,p.parentNode=g.parentNode=v.parentNode=n.parentNode,c.push(p),s.push(g),l.push(v)}var r,i,o=-1,a=this.length;if(!arguments.length){for(n=new Array(a=(r=this[0]).length);++o<a;)(i=r[o])&&(n[o]=i.__data__);return n}var c=D([]),s=x([]),l=x([]);if("function"==typeof n)for(;++o<a;)e(r=this[o],n.call(r,r.parentNode.__data__,o));else for(;++o<a;)e(r=this[o],n);return s.enter=function(){return c},s.exit=function(){return l},s},da.datum=function(n){return arguments.length?this.property("__data__",n):this.property("__data__")},da.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=q(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return x(u)},da.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},da.sort=function(n){n=z.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},da.each=function(n){return R(this,function(t,e,r){n.call(t,t.__data__,e,r)})},da.call=function(n){var t=Bo(arguments);return n.apply(t[0]=this,t),this},da.empty=function(){return!this.node()},da.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},da.size=function(){var n=0;return this.each(function(){++n}),n};var ya=[];Xo.selection.enter=D,Xo.selection.enter.prototype=ya,ya.append=da.append,ya.empty=da.empty,ya.node=da.node,ya.call=da.call,ya.size=da.size,ya.select=function(n){for(var t,e,r,u,i,o=[],a=-1,c=this.length;++a<c;){r=(u=this[a]).update,o.push(t=[]),t.parentNode=u.parentNode;for(var s=-1,l=u.length;++s<l;)(i=u[s])?(t.push(r[s]=e=n.call(u.parentNode,i.__data__,s,a)),e.__data__=i.__data__):t.push(null)}return x(o)},ya.insert=function(n,t){return arguments.length<2&&(t=P(this)),da.insert.call(this,n,t)},da.transition=function(){for(var n,t,e=ks||++Ls,r=[],u=Es||{time:Date.now(),ease:yu,delay:0,duration:250},i=-1,o=this.length;++i<o;){r.push(n=[]);for(var a=this[i],c=-1,s=a.length;++c<s;)(t=a[c])&&jo(t,c,e,u),n.push(t)}return Do(r,e)},da.interrupt=function(){return this.each(U)},Xo.select=function(n){var t=["string"==typeof n?ha(n,Wo):n];return t.parentNode=Jo,x([t])},Xo.selectAll=function(n){var t=Bo("string"==typeof n?ga(n,Wo):n);return t.parentNode=Jo,x([t])};var xa=Xo.select(Jo);da.on=function(n,t,e){var r=arguments.length;if(3>r){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(j(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(j(n,t,e))};var Ma=Xo.map({mouseenter:"mouseover",mouseleave:"mouseout"});Ma.forEach(function(n){"on"+n in Wo&&Ma.remove(n)});var _a="onselectstart"in Wo?null:h(Jo.style,"userSelect"),ba=0;Xo.mouse=function(n){return Y(n,m())};var wa=/WebKit/.test(Go.navigator.userAgent)?-1:0;Xo.touches=function(n,t){return arguments.length<2&&(t=m().touches),t?Bo(t).map(function(t){var e=Y(n,t);return e.identifier=t.identifier,e}):[]},Xo.behavior.drag=function(){function n(){this.on("mousedown.drag",o).on("touchstart.drag",a)}function t(){return Xo.event.changedTouches[0].identifier}function e(n,t){return Xo.touches(n).filter(function(n){return n.identifier===t})[0]}function r(n,t,e,r){return function(){function o(){var n=t(l,g),e=n[0]-v[0],r=n[1]-v[1];d|=e|r,v=n,f({type:"drag",x:n[0]+c[0],y:n[1]+c[1],dx:e,dy:r})}function a(){m.on(e+"."+p,null).on(r+"."+p,null),y(d&&Xo.event.target===h),f({type:"dragend"})}var c,s=this,l=s.parentNode,f=u.of(s,arguments),h=Xo.event.target,g=n(),p=null==g?"drag":"drag-"+g,v=t(l,g),d=0,m=Xo.select(Go).on(e+"."+p,o).on(r+"."+p,a),y=O();i?(c=i.apply(s,arguments),c=[c.x-v[0],c.y-v[1]]):c=[0,0],f({type:"dragstart"})}}var u=y(n,"drag","dragstart","dragend"),i=null,o=r(g,Xo.mouse,"mousemove","mouseup"),a=r(t,e,"touchmove","touchend");return n.origin=function(t){return arguments.length?(i=t,n):i},Xo.rebind(n,u,"on")};var Sa=Math.PI,ka=2*Sa,Ea=Sa/2,Aa=1e-6,Ca=Aa*Aa,Na=Sa/180,La=180/Sa,Ta=Math.SQRT2,qa=2,za=4;Xo.interpolateZoom=function(n,t){function e(n){var t=n*y;if(m){var e=B(v),o=i/(qa*h)*(e*W(Ta*t+v)-$(v));return[r+o*s,u+o*l,i*e/B(Ta*t+v)]}return[r+n*s,u+n*l,i*Math.exp(Ta*t)]}var r=n[0],u=n[1],i=n[2],o=t[0],a=t[1],c=t[2],s=o-r,l=a-u,f=s*s+l*l,h=Math.sqrt(f),g=(c*c-i*i+za*f)/(2*i*qa*h),p=(c*c-i*i-za*f)/(2*c*qa*h),v=Math.log(Math.sqrt(g*g+1)-g),d=Math.log(Math.sqrt(p*p+1)-p),m=d-v,y=(m||Math.log(c/i))/Ta;return e.duration=1e3*y,e},Xo.behavior.zoom=function(){function n(n){n.on(A,s).on(Pa+".zoom",f).on(C,h).on("dblclick.zoom",g).on(L,l)}function t(n){return[(n[0]-S.x)/S.k,(n[1]-S.y)/S.k]}function e(n){return[n[0]*S.k+S.x,n[1]*S.k+S.y]}function r(n){S.k=Math.max(E[0],Math.min(E[1],n))}function u(n,t){t=e(t),S.x+=n[0]-t[0],S.y+=n[1]-t[1]}function i(){_&&_.domain(M.range().map(function(n){return(n-S.x)/S.k}).map(M.invert)),w&&w.domain(b.range().map(function(n){return(n-S.y)/S.k}).map(b.invert))}function o(n){n({type:"zoomstart"})}function a(n){i(),n({type:"zoom",scale:S.k,translate:[S.x,S.y]})}function c(n){n({type:"zoomend"})}function s(){function n(){l=1,u(Xo.mouse(r),g),a(i)}function e(){f.on(C,Go===r?h:null).on(N,null),p(l&&Xo.event.target===s),c(i)}var r=this,i=T.of(r,arguments),s=Xo.event.target,l=0,f=Xo.select(Go).on(C,n).on(N,e),g=t(Xo.mouse(r)),p=O();U.call(r),o(i)}function l(){function n(){var n=Xo.touches(g);return h=S.k,n.forEach(function(n){n.identifier in v&&(v[n.identifier]=t(n))}),n}function e(){for(var t=Xo.event.changedTouches,e=0,i=t.length;i>e;++e)v[t[e].identifier]=null;var o=n(),c=Date.now();if(1===o.length){if(500>c-x){var s=o[0],l=v[s.identifier];r(2*S.k),u(s,l),d(),a(p)}x=c}else if(o.length>1){var s=o[0],f=o[1],h=s[0]-f[0],g=s[1]-f[1];m=h*h+g*g}}function i(){for(var n,t,e,i,o=Xo.touches(g),c=0,s=o.length;s>c;++c,i=null)if(e=o[c],i=v[e.identifier]){if(t)break;n=e,t=i}if(i){var l=(l=e[0]-n[0])*l+(l=e[1]-n[1])*l,f=m&&Math.sqrt(l/m);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+i[0])/2,(t[1]+i[1])/2],r(f*h)}x=null,u(n,t),a(p)}function f(){if(Xo.event.touches.length){for(var t=Xo.event.changedTouches,e=0,r=t.length;r>e;++e)delete v[t[e].identifier];for(var u in v)return void n()}b.on(M,null).on(_,null),w.on(A,s).on(L,l),k(),c(p)}var h,g=this,p=T.of(g,arguments),v={},m=0,y=Xo.event.changedTouches[0].identifier,M="touchmove.zoom-"+y,_="touchend.zoom-"+y,b=Xo.select(Go).on(M,i).on(_,f),w=Xo.select(g).on(A,null).on(L,e),k=O();U.call(g),e(),o(p)}function f(){var n=T.of(this,arguments);m?clearTimeout(m):(U.call(this),o(n)),m=setTimeout(function(){m=null,c(n)},50),d();var e=v||Xo.mouse(this);p||(p=t(e)),r(Math.pow(2,.002*Ra())*S.k),u(e,p),a(n)}function h(){p=null}function g(){var n=T.of(this,arguments),e=Xo.mouse(this),i=t(e),s=Math.log(S.k)/Math.LN2;o(n),r(Math.pow(2,Xo.event.shiftKey?Math.ceil(s)-1:Math.floor(s)+1)),u(e,i),a(n),c(n)}var p,v,m,x,M,_,b,w,S={x:0,y:0,k:1},k=[960,500],E=Da,A="mousedown.zoom",C="mousemove.zoom",N="mouseup.zoom",L="touchstart.zoom",T=y(n,"zoomstart","zoom","zoomend");return n.event=function(n){n.each(function(){var n=T.of(this,arguments),t=S;ks?Xo.select(this).transition().each("start.zoom",function(){S=this.__chart__||{x:0,y:0,k:1},o(n)}).tween("zoom:zoom",function(){var e=k[0],r=k[1],u=e/2,i=r/2,o=Xo.interpolateZoom([(u-S.x)/S.k,(i-S.y)/S.k,e/S.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=o(t),c=e/r[2];this.__chart__=S={x:u-r[0]*c,y:i-r[1]*c,k:c},a(n)}}).each("end.zoom",function(){c(n)}):(this.__chart__=S,o(n),a(n),c(n))})},n.translate=function(t){return arguments.length?(S={x:+t[0],y:+t[1],k:S.k},i(),n):[S.x,S.y]},n.scale=function(t){return arguments.length?(S={x:S.x,y:S.y,k:+t},i(),n):S.k},n.scaleExtent=function(t){return arguments.length?(E=null==t?Da:[+t[0],+t[1]],n):E},n.center=function(t){return arguments.length?(v=t&&[+t[0],+t[1]],n):v},n.size=function(t){return arguments.length?(k=t&&[+t[0],+t[1]],n):k},n.x=function(t){return arguments.length?(_=t,M=t.copy(),S={x:0,y:0,k:1},n):_},n.y=function(t){return arguments.length?(w=t,b=t.copy(),S={x:0,y:0,k:1},n):w},Xo.rebind(n,T,"on")};var Ra,Da=[0,1/0],Pa="onwheel"in Wo?(Ra=function(){return-Xo.event.deltaY*(Xo.event.deltaMode?120:1)},"wheel"):"onmousewheel"in Wo?(Ra=function(){return Xo.event.wheelDelta},"mousewheel"):(Ra=function(){return-Xo.event.detail},"MozMousePixelScroll");G.prototype.toString=function(){return this.rgb()+""},Xo.hsl=function(n,t,e){return 1===arguments.length?n instanceof Q?K(n.h,n.s,n.l):dt(""+n,mt,K):K(+n,+t,+e)};var Ua=Q.prototype=new G;Ua.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),K(this.h,this.s,this.l/n)},Ua.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),K(this.h,this.s,n*this.l)},Ua.rgb=function(){return nt(this.h,this.s,this.l)},Xo.hcl=function(n,t,e){return 1===arguments.length?n instanceof et?tt(n.h,n.c,n.l):n instanceof it?at(n.l,n.a,n.b):at((n=yt((n=Xo.rgb(n)).r,n.g,n.b)).l,n.a,n.b):tt(+n,+t,+e)};var ja=et.prototype=new G;ja.brighter=function(n){return tt(this.h,this.c,Math.min(100,this.l+Ha*(arguments.length?n:1)))},ja.darker=function(n){return tt(this.h,this.c,Math.max(0,this.l-Ha*(arguments.length?n:1)))},ja.rgb=function(){return rt(this.h,this.c,this.l).rgb()},Xo.lab=function(n,t,e){return 1===arguments.length?n instanceof it?ut(n.l,n.a,n.b):n instanceof et?rt(n.l,n.c,n.h):yt((n=Xo.rgb(n)).r,n.g,n.b):ut(+n,+t,+e)};var Ha=18,Fa=.95047,Oa=1,Ya=1.08883,Ia=it.prototype=new G;Ia.brighter=function(n){return ut(Math.min(100,this.l+Ha*(arguments.length?n:1)),this.a,this.b)},Ia.darker=function(n){return ut(Math.max(0,this.l-Ha*(arguments.length?n:1)),this.a,this.b)},Ia.rgb=function(){return ot(this.l,this.a,this.b)},Xo.rgb=function(n,t,e){return 1===arguments.length?n instanceof pt?gt(n.r,n.g,n.b):dt(""+n,gt,nt):gt(~~n,~~t,~~e)};var Za=pt.prototype=new G;Za.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),gt(Math.min(255,~~(t/n)),Math.min(255,~~(e/n)),Math.min(255,~~(r/n)))):gt(u,u,u)},Za.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),gt(~~(n*this.r),~~(n*this.g),~~(n*this.b))},Za.hsl=function(){return mt(this.r,this.g,this.b)},Za.toString=function(){return"#"+vt(this.r)+vt(this.g)+vt(this.b)};var Va=Xo.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});Va.forEach(function(n,t){Va.set(n,ft(t))}),Xo.functor=_t,Xo.xhr=wt(bt),Xo.dsv=function(n,t){function e(n,e,i){arguments.length<3&&(i=e,e=null);var o=St(n,t,null==e?r:u(e),i);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:u(n)):e},o}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function i(t){return t.map(o).join(n)}function o(n){return a.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var a=new RegExp('["'+n+"\n]"),c=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(l>=s)return o;if(u)return u=!1,i;var t=l;if(34===n.charCodeAt(t)){for(var e=t;e++<s;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}l=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++l):10===r&&(u=!0),n.substring(t+1,e).replace(/""/g,'"')}for(;s>l;){var r=n.charCodeAt(l++),a=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(l)&&(++l,++a);else if(r!==c)continue;return n.substring(t,l-a)}return n.substring(t)}for(var r,u,i={},o={},a=[],s=n.length,l=0,f=0;(r=e())!==o;){for(var h=[];r!==i&&r!==o;)h.push(r),r=e();(!t||(h=t(h,f++)))&&a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new l,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(o).join(n)].concat(t.map(function(t){return u.map(function(n){return o(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(i).join("\n")},e},Xo.csv=Xo.dsv(",","text/csv"),Xo.tsv=Xo.dsv("	","text/tab-separated-values");var Xa,$a,Ba,Wa,Ja,Ga=Go[h(Go,"requestAnimationFrame")]||function(n){setTimeout(n,17)};Xo.timer=function(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={c:n,t:u,f:!1,n:null};$a?$a.n=i:Xa=i,$a=i,Ba||(Wa=clearTimeout(Wa),Ba=1,Ga(Et))},Xo.timer.flush=function(){At(),Ct()},Xo.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var Ka=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(Lt);Xo.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=Xo.round(n,Nt(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((0>=e?e+1:e-1)/3)))),Ka[8+e/3]};var Qa=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,nc=Xo.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=Xo.round(n,Nt(n,t))).toFixed(Math.max(0,Math.min(20,Nt(n*(1+1e-15),t))))}}),tc=Xo.time={},ec=Date;zt.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){rc.setUTCDate.apply(this._,arguments)},setDay:function(){rc.setUTCDay.apply(this._,arguments)},setFullYear:function(){rc.setUTCFullYear.apply(this._,arguments)},setHours:function(){rc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){rc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){rc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){rc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){rc.setUTCSeconds.apply(this._,arguments)},setTime:function(){rc.setTime.apply(this._,arguments)}};var rc=Date.prototype;tc.year=Rt(function(n){return n=tc.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),tc.years=tc.year.range,tc.years.utc=tc.year.utc.range,tc.day=Rt(function(n){var t=new ec(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),tc.days=tc.day.range,tc.days.utc=tc.day.utc.range,tc.dayOfYear=function(n){var t=tc.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=tc[n]=Rt(function(n){return(n=tc.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=tc.year(n).getDay();return Math.floor((tc.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});tc[n+"s"]=e.range,tc[n+"s"].utc=e.utc.range,tc[n+"OfYear"]=function(n){var e=tc.year(n).getDay();return Math.floor((tc.dayOfYear(n)+(e+t)%7)/7)}}),tc.week=tc.sunday,tc.weeks=tc.sunday.range,tc.weeks.utc=tc.sunday.utc.range,tc.weekOfYear=tc.sundayOfYear;var uc={"-":"",_:" ",0:"0"},ic=/^\s*\d+/,oc=/^%/;Xo.locale=function(n){return{numberFormat:Tt(n),timeFormat:Pt(n)}};var ac=Xo.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});Xo.format=ac.numberFormat,Xo.geo={},re.prototype={s:0,t:0,add:function(n){ue(n,this.t,cc),ue(cc.s,this.s,this),this.s?this.t+=cc.t:this.s=cc.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var cc=new re;Xo.geo.stream=function(n,t){n&&sc.hasOwnProperty(n.type)?sc[n.type](n,t):ie(n,t)};var sc={Feature:function(n,t){ie(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;++r<u;)ie(e[r].geometry,t)}},lc={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){oe(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)oe(e[r],t,0)},Polygon:function(n,t){ae(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)ae(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;++r<u;)ie(e[r],t)}};Xo.geo.area=function(n){return fc=0,Xo.geo.stream(n,gc),fc};var fc,hc=new re,gc={sphere:function(){fc+=4*Sa},point:g,lineStart:g,lineEnd:g,polygonStart:function(){hc.reset(),gc.lineStart=ce},polygonEnd:function(){var n=2*hc;fc+=0>n?4*Sa+n:n,gc.lineStart=gc.lineEnd=gc.point=g}};Xo.geo.bounds=function(){function n(n,t){x.push(M=[l=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=se([t*Na,e*Na]);if(m){var u=fe(m,r),i=[u[1],-u[0],0],o=fe(i,u);pe(o),o=ve(o);var c=t-p,s=c>0?1:-1,v=o[0]*La*s,d=oa(c)>180;if(d^(v>s*p&&s*t>v)){var y=o[1]*La;y>g&&(g=y)}else if(v=(v+360)%360-180,d^(v>s*p&&s*t>v)){var y=-o[1]*La;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);d?p>t?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t):h>=l?(l>t&&(l=t),t>h&&(h=t)):t>p?a(l,t)>a(l,h)&&(h=t):a(t,h)>a(l,h)&&(l=t)}else n(t,e);m=r,p=t}function e(){_.point=t}function r(){M[0]=l,M[1]=h,_.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=oa(r)>180?r+(r>0?360:-360):r}else v=n,d=e;gc.point(n,e),t(n,e)}function i(){gc.lineStart()}function o(){u(v,d),gc.lineEnd(),oa(y)>Aa&&(l=-(h=180)),M[0]=l,M[1]=h,m=null}function a(n,t){return(t-=n)<0?t+360:t}function c(n,t){return n[0]-t[0]}function s(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var l,f,h,g,p,v,d,m,y,x,M,_={point:n,lineStart:e,lineEnd:r,polygonStart:function(){_.point=u,_.lineStart=i,_.lineEnd=o,y=0,gc.polygonStart()},polygonEnd:function(){gc.polygonEnd(),_.point=n,_.lineStart=e,_.lineEnd=r,0>hc?(l=-(h=180),f=-(g=90)):y>Aa?g=90:-Aa>y&&(f=-90),M[0]=l,M[1]=h}};return function(n){g=h=-(l=f=1/0),x=[],Xo.geo.stream(n,_);var t=x.length;if(t){x.sort(c);for(var e,r=1,u=x[0],i=[u];t>r;++r)e=x[r],s(e[0],u)||s(e[1],u)?(a(u[0],e[1])>a(u[0],u[1])&&(u[1]=e[1]),a(e[0],u[1])>a(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var o,e,p=-1/0,t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(o=a(u[1],e[0]))>p&&(p=o,l=e[0],h=u[1])}return x=M=null,1/0===l||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[l,f],[h,g]]}}(),Xo.geo.centroid=function(n){pc=vc=dc=mc=yc=xc=Mc=_c=bc=wc=Sc=0,Xo.geo.stream(n,kc);var t=bc,e=wc,r=Sc,u=t*t+e*e+r*r;return Ca>u&&(t=xc,e=Mc,r=_c,Aa>vc&&(t=dc,e=mc,r=yc),u=t*t+e*e+r*r,Ca>u)?[0/0,0/0]:[Math.atan2(e,t)*La,X(r/Math.sqrt(u))*La]};var pc,vc,dc,mc,yc,xc,Mc,_c,bc,wc,Sc,kc={sphere:g,point:me,lineStart:xe,lineEnd:Me,polygonStart:function(){kc.lineStart=_e},polygonEnd:function(){kc.lineStart=xe}},Ec=Ee(be,Te,ze,[-Sa,-Sa/2]),Ac=1e9;Xo.geo.clipExtent=function(){var n,t,e,r,u,i,o={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(a){return arguments.length?(i=Pe(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),u&&(u.valid=!1,u=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(Xo.geo.conicEqualArea=function(){return je(He)}).raw=He,Xo.geo.albers=function(){return Xo.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},Xo.geo.albersUsa=function(){function n(n){var i=n[0],o=n[1];return t=null,e(i,o),t||(r(i,o),t)||u(i,o),t}var t,e,r,u,i=Xo.geo.albers(),o=Xo.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=Xo.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?o:u>=.166&&.234>u&&r>=-.214&&-.115>r?a:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),a.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),a.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var s=i.scale(),l=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[l-.455*s,f-.238*s],[l+.455*s,f+.238*s]]).stream(c).point,r=o.translate([l-.307*s,f+.201*s]).clipExtent([[l-.425*s+Aa,f+.12*s+Aa],[l-.214*s-Aa,f+.234*s-Aa]]).stream(c).point,u=a.translate([l-.205*s,f+.212*s]).clipExtent([[l-.214*s+Aa,f+.166*s+Aa],[l-.115*s-Aa,f+.234*s-Aa]]).stream(c).point,n},n.scale(1070)};var Cc,Nc,Lc,Tc,qc,zc,Rc={point:g,lineStart:g,lineEnd:g,polygonStart:function(){Nc=0,Rc.lineStart=Fe},polygonEnd:function(){Rc.lineStart=Rc.lineEnd=Rc.point=g,Cc+=oa(Nc/2)}},Dc={point:Oe,lineStart:g,lineEnd:g,polygonStart:g,polygonEnd:g},Pc={point:Ze,lineStart:Ve,lineEnd:Xe,polygonStart:function(){Pc.lineStart=$e},polygonEnd:function(){Pc.point=Ze,Pc.lineStart=Ve,Pc.lineEnd=Xe}};Xo.geo.path=function(){function n(n){return n&&("function"==typeof a&&i.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=u(i)),Xo.geo.stream(n,o)),i.result()}function t(){return o=null,n}var e,r,u,i,o,a=4.5;return n.area=function(n){return Cc=0,Xo.geo.stream(n,u(Rc)),Cc},n.centroid=function(n){return dc=mc=yc=xc=Mc=_c=bc=wc=Sc=0,Xo.geo.stream(n,u(Pc)),Sc?[bc/Sc,wc/Sc]:_c?[xc/_c,Mc/_c]:yc?[dc/yc,mc/yc]:[0/0,0/0]},n.bounds=function(n){return qc=zc=-(Lc=Tc=1/0),Xo.geo.stream(n,u(Dc)),[[Lc,Tc],[qc,zc]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||Je(n):bt,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new Ye:new Be(n),"function"!=typeof a&&i.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(i.pointRadius(+t),+t),n):a},n.projection(Xo.geo.albersUsa()).context(null)},Xo.geo.transform=function(n){return{stream:function(t){var e=new Ge(t);for(var r in n)e[r]=n[r];return e}}},Ge.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},Xo.geo.projection=Qe,Xo.geo.projectionMutator=nr,(Xo.geo.equirectangular=function(){return Qe(er)}).raw=er.invert=er,Xo.geo.rotation=function(n){function t(t){return t=n(t[0]*Na,t[1]*Na),t[0]*=La,t[1]*=La,t}return n=ur(n[0]%360*Na,n[1]*Na,n.length>2?n[2]*Na:0),t.invert=function(t){return t=n.invert(t[0]*Na,t[1]*Na),t[0]*=La,t[1]*=La,t},t},rr.invert=er,Xo.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=ur(-n[0]*Na,-n[1]*Na,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=La,n[1]*=La}}),{type:"Polygon",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=cr((t=+r)*Na,u*Na),n):t},n.precision=function(r){return arguments.length?(e=cr(t*Na,(u=+r)*Na),n):u},n.angle(90)},Xo.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Na,u=n[1]*Na,i=t[1]*Na,o=Math.sin(r),a=Math.cos(r),c=Math.sin(u),s=Math.cos(u),l=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*o)*e+(e=s*l-c*f*a)*e),c*l+s*f*a)},Xo.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return Xo.range(Math.ceil(i/d)*d,u,d).map(h).concat(Xo.range(Math.ceil(s/m)*m,c,m).map(g)).concat(Xo.range(Math.ceil(r/p)*p,e,p).filter(function(n){return oa(n%d)>Aa}).map(l)).concat(Xo.range(Math.ceil(a/v)*v,o,v).filter(function(n){return oa(n%m)>Aa}).map(f))}var e,r,u,i,o,a,c,s,l,f,h,g,p=10,v=p,d=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(i).concat(g(c).slice(1),h(u).reverse().slice(1),g(s).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],s=+t[0][1],c=+t[1][1],i>u&&(t=i,i=u,u=t),s>c&&(t=s,s=c,c=t),n.precision(y)):[[i,s],[u,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(y)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],m=+t[1],n):[d,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],v=+t[1],n):[p,v]},n.precision=function(t){return arguments.length?(y=+t,l=lr(a,o,90),f=fr(r,e,y),h=lr(s,c,90),g=fr(i,u,y),n):y},n.majorExtent([[-180,-90+Aa],[180,90-Aa]]).minorExtent([[-180,-80-Aa],[180,80+Aa]])},Xo.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=hr,u=gr;return n.distance=function(){return Xo.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e="function"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},Xo.geo.interpolate=function(n,t){return pr(n[0]*Na,n[1]*Na,t[0]*Na,t[1]*Na)},Xo.geo.length=function(n){return Uc=0,Xo.geo.stream(n,jc),Uc};var Uc,jc={sphere:g,point:g,lineStart:vr,lineEnd:g,polygonStart:g,polygonEnd:g},Hc=dr(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(Xo.geo.azimuthalEqualArea=function(){return Qe(Hc)}).raw=Hc;var Fc=dr(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},bt);(Xo.geo.azimuthalEquidistant=function(){return Qe(Fc)}).raw=Fc,(Xo.geo.conicConformal=function(){return je(mr)}).raw=mr,(Xo.geo.conicEquidistant=function(){return je(yr)}).raw=yr;var Oc=dr(function(n){return 1/n},Math.atan);(Xo.geo.gnomonic=function(){return Qe(Oc)}).raw=Oc,xr.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Ea]},(Xo.geo.mercator=function(){return Mr(xr)}).raw=xr;var Yc=dr(function(){return 1},Math.asin);(Xo.geo.orthographic=function(){return Qe(Yc)}).raw=Yc;var Ic=dr(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(Xo.geo.stereographic=function(){return Qe(Ic)}).raw=Ic,_r.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-Ea]},(Xo.geo.transverseMercator=function(){var n=Mr(_r),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[-n[1],n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},n.rotate([0,0])}).raw=_r,Xo.geom={},Xo.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,u=_t(e),i=_t(r),o=n.length,a=[],c=[];for(t=0;o>t;t++)a.push([+u.call(this,n[t],t),+i.call(this,n[t],t),t]);for(a.sort(kr),t=0;o>t;t++)c.push([a[t][0],-a[t][1]]);var s=Sr(a),l=Sr(c),f=l[0]===s[0],h=l[l.length-1]===s[s.length-1],g=[];for(t=s.length-1;t>=0;--t)g.push(n[a[s[t]][2]]);for(t=+f;t<l.length-h;++t)g.push(n[a[l[t]][2]]);return g}var e=br,r=wr;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},Xo.geom.polygon=function(n){return fa(n,Zc),n};var Zc=Xo.geom.polygon.prototype=[];Zc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;++t<e;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},Zc.centroid=function(n){var t,e,r=-1,u=this.length,i=0,o=0,a=this[u-1];for(arguments.length||(n=-1/(6*this.area()));++r<u;)t=a,a=this[r],e=t[0]*a[1]-a[0]*t[1],i+=(t[0]+a[0])*e,o+=(t[1]+a[1])*e;return[i*n,o*n]},Zc.clip=function(n){for(var t,e,r,u,i,o,a=Cr(n),c=-1,s=this.length-Cr(this),l=this[s-1];++c<s;){for(t=n.slice(),n.length=0,u=this[c],i=t[(r=t.length-a)-1],e=-1;++e<r;)o=t[e],Er(o,l,u)?(Er(i,l,u)||n.push(Ar(i,o,l,u)),n.push(o)):Er(i,l,u)&&n.push(Ar(i,o,l,u)),i=o;a&&n.push(n[0]),l=u}return n};var Vc,Xc,$c,Bc,Wc,Jc=[],Gc=[];Pr.prototype.prepare=function(){for(var n,t=this.edges,e=t.length;e--;)n=t[e].edge,n.b&&n.a||t.splice(e,1);return t.sort(jr),t.length},Br.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},Wr.prototype={insert:function(n,t){var e,r,u;if(n){if(t.P=n,t.N=n.N,n.N&&(n.N.P=t),n.N=t,n.R){for(n=n.R;n.L;)n=n.L;n.L=t}else n.R=t;e=n}else this._?(n=Qr(this._),t.P=null,t.N=n,n.P=n.L=t,e=n):(t.P=t.N=null,this._=t,e=null);for(t.L=t.R=null,t.U=e,t.C=!0,n=t;e&&e.C;)r=e.U,e===r.L?(u=r.R,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.R&&(Gr(this,e),n=e,e=n.U),e.C=!1,r.C=!0,Kr(this,r))):(u=r.L,u&&u.C?(e.C=u.C=!1,r.C=!0,n=r):(n===e.L&&(Kr(this,e),n=e,e=n.U),e.C=!1,r.C=!0,Gr(this,r))),e=n.U;this._.C=!1},remove:function(n){n.N&&(n.N.P=n.P),n.P&&(n.P.N=n.N),n.N=n.P=null;var t,e,r,u=n.U,i=n.L,o=n.R;if(e=i?o?Qr(o):i:o,u?u.L===n?u.L=e:u.R=e:this._=e,i&&o?(r=e.C,e.C=n.C,e.L=i,i.U=e,e!==o?(u=e.U,e.U=n.U,n=e.R,u.L=n,e.R=o,o.U=e):(e.U=u,u=e,n=e.R)):(r=n.C,n=e),n&&(n.U=u),!r){if(n&&n.C)return n.C=!1,void 0;do{if(n===this._)break;if(n===u.L){if(t=u.R,t.C&&(t.C=!1,u.C=!0,Gr(this,u),t=u.R),t.L&&t.L.C||t.R&&t.R.C){t.R&&t.R.C||(t.L.C=!1,t.C=!0,Kr(this,t),t=u.R),t.C=u.C,u.C=t.R.C=!1,Gr(this,u),n=this._;break}}else if(t=u.L,t.C&&(t.C=!1,u.C=!0,Kr(this,u),t=u.L),t.L&&t.L.C||t.R&&t.R.C){t.L&&t.L.C||(t.R.C=!1,t.C=!0,Gr(this,t),t=u.L),t.C=u.C,u.C=t.L.C=!1,Kr(this,u),n=this._;break}t.C=!0,n=u,u=u.U}while(!n.C);n&&(n.C=!1)}}},Xo.geom.voronoi=function(n){function t(n){var t=new Array(n.length),r=a[0][0],u=a[0][1],i=a[1][0],o=a[1][1];return nu(e(n),a).cells.forEach(function(e,a){var c=e.edges,s=e.site,l=t[a]=c.length?c.map(function(n){var t=n.start();return[t.x,t.y]}):s.x>=r&&s.x<=i&&s.y>=u&&s.y<=o?[[r,o],[i,o],[i,u],[r,u]]:[];l.point=n[a]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(i(n,t)/Aa)*Aa,y:Math.round(o(n,t)/Aa)*Aa,i:t}})}var r=br,u=wr,i=r,o=u,a=Kc;return n?t(n):(t.links=function(n){return nu(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return nu(e(n)).cells.forEach(function(e,r){for(var u,i,o=e.site,a=e.edges.sort(jr),c=-1,s=a.length,l=a[s-1].edge,f=l.l===o?l.r:l.l;++c<s;)u=l,i=f,l=a[c].edge,f=l.l===o?l.r:l.l,r<i.i&&r<f.i&&eu(o,i,f)<0&&t.push([n[r],n[i.i],n[f.i]])}),t},t.x=function(n){return arguments.length?(i=_t(r=n),t):r},t.y=function(n){return arguments.length?(o=_t(u=n),t):u},t.clipExtent=function(n){return arguments.length?(a=null==n?Kc:n,t):a===Kc?null:a},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):a===Kc?null:a&&a[1]},t)};var Kc=[[-1e6,-1e6],[1e6,1e6]];Xo.geom.delaunay=function(n){return Xo.geom.voronoi().triangles(n)},Xo.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,o,a){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,l=n.y;if(null!=c)if(oa(c-e)+oa(l-r)<.01)s(n,t,e,r,u,i,o,a);else{var f=n.point;n.x=n.y=n.point=null,s(n,f,c,l,u,i,o,a),s(n,t,e,r,u,i,o,a)}else n.x=e,n.y=r,n.point=t}else s(n,t,e,r,u,i,o,a)}function s(n,t,e,r,u,o,a,c){var s=.5*(u+a),l=.5*(o+c),f=e>=s,h=r>=l,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=iu()),f?u=s:a=s,h?o=l:c=l,i(n,t,e,r,u,o,a,c)}var l,f,h,g,p,v,d,m,y,x=_t(a),M=_t(c);if(null!=t)v=t,d=e,m=r,y=u;else if(m=y=-(v=d=1/0),f=[],h=[],p=n.length,o)for(g=0;p>g;++g)l=n[g],l.x<v&&(v=l.x),l.y<d&&(d=l.y),l.x>m&&(m=l.x),l.y>y&&(y=l.y),f.push(l.x),h.push(l.y);else for(g=0;p>g;++g){var _=+x(l=n[g],g),b=+M(l,g);v>_&&(v=_),d>b&&(d=b),_>m&&(m=_),b>y&&(y=b),f.push(_),h.push(b)}var w=m-v,S=y-d;w>S?y=d+w:m=v+S;var k=iu();if(k.add=function(n){i(k,n,+x(n,++g),+M(n,g),v,d,m,y)},k.visit=function(n){ou(n,k,v,d,m,y)},g=-1,null==t){for(;++g<p;)i(k,n[g],f[g],h[g],v,d,m,y);--g}else n.forEach(k.add);return f=h=n=l=null,k}var o,a=br,c=wr;return(o=arguments.length)?(a=ru,c=uu,3===o&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(a=n,i):a},i.y=function(n){return arguments.length?(c=n,i):c},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},Xo.interpolateRgb=au,Xo.interpolateObject=cu,Xo.interpolateNumber=su,Xo.interpolateString=lu;var Qc=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g;Xo.interpolate=fu,Xo.interpolators=[function(n,t){var e=typeof t;return("string"===e?Va.has(t)||/^(#|rgb\(|hsl\()/.test(t)?au:lu:t instanceof G?au:"object"===e?Array.isArray(t)?hu:cu:su)(n,t)}],Xo.interpolateArray=hu;var ns=function(){return bt},ts=Xo.map({linear:ns,poly:xu,quad:function(){return du},cubic:function(){return mu},sin:function(){return Mu},exp:function(){return _u},circle:function(){return bu},elastic:wu,back:Su,bounce:function(){return ku}}),es=Xo.map({"in":bt,out:pu,"in-out":vu,"out-in":function(n){return vu(pu(n))}});Xo.ease=function(n){var t=n.indexOf("-"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):"in";return e=ts.get(e)||ns,r=es.get(r)||bt,gu(r(e.apply(null,$o.call(arguments,1))))},Xo.interpolateHcl=Eu,Xo.interpolateHsl=Au,Xo.interpolateLab=Cu,Xo.interpolateRound=Nu,Xo.transform=function(n){var t=Wo.createElementNS(Xo.ns.prefix.svg,"g");return(Xo.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new Lu(e?e.matrix:rs)})(n)},Lu.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var rs={a:1,b:0,c:0,d:1,e:0,f:0};Xo.interpolateTransform=Ru,Xo.layout={},Xo.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Uu(n[e]));return t}},Xo.layout.chord=function(){function n(){var n,s,f,h,g,p={},v=[],d=Xo.range(i),m=[];for(e=[],r=[],n=0,h=-1;++h<i;){for(s=0,g=-1;++g<i;)s+=u[h][g];v.push(s),m.push(Xo.range(i)),n+=s}for(o&&d.sort(function(n,t){return o(v[n],v[t])}),a&&m.forEach(function(n,t){n.sort(function(n,e){return a(u[t][n],u[t][e])})}),n=(ka-l*i)/n,s=0,h=-1;++h<i;){for(f=s,g=-1;++g<i;){var y=d[h],x=m[y][g],M=u[y][x],_=s,b=s+=M*n;p[y+"-"+x]={index:y,subindex:x,startAngle:_,endAngle:b,value:M}}r[y]={index:y,startAngle:f,endAngle:s,value:(s-f)/n},s+=l}for(h=-1;++h<i;)for(g=h-1;++g<i;){var w=p[h+"-"+g],S=p[g+"-"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,o,a,c,s={},l=0;return s.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,s):u},s.padding=function(n){return arguments.length?(l=n,e=r=null,s):l},s.sortGroups=function(n){return arguments.length?(o=n,e=r=null,s):o},s.sortSubgroups=function(n){return arguments.length?(a=n,e=null,s):a},s.sortChords=function(n){return arguments.length?(c=n,e&&t(),s):c},s.chords=function(){return e||n(),e},s.groups=function(){return r||n(),r},s},Xo.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,o=t.cy-n.y,a=u-e,c=i*i+o*o;if(c>a*a/d){if(p>c){var s=t.charge/c;n.px-=i*s,n.py-=o*s}return!0}if(t.point&&c&&p>c){var s=t.pointCharge/c;n.px-=i*s,n.py-=o*s}}return!t.charge}}function t(n){n.px=Xo.event.x,n.py=Xo.event.y,a.resume()}var e,r,u,i,o,a={},c=Xo.dispatch("start","tick","end"),s=[1,1],l=.9,f=us,h=is,g=-30,p=os,v=.1,d=.64,m=[],y=[];return a.tick=function(){if((r*=.99)<.005)return c.end({type:"end",alpha:r=0}),!0;var t,e,a,f,h,p,d,x,M,_=m.length,b=y.length;for(e=0;b>e;++e)a=y[e],f=a.source,h=a.target,x=h.x-f.x,M=h.y-f.y,(p=x*x+M*M)&&(p=r*i[e]*((p=Math.sqrt(p))-u[e])/p,x*=p,M*=p,h.x-=x*(d=f.weight/(h.weight+f.weight)),h.y-=M*d,f.x+=x*(d=1-d),f.y+=M*d);if((d=r*v)&&(x=s[0]/2,M=s[1]/2,e=-1,d))for(;++e<_;)a=m[e],a.x+=(x-a.x)*d,a.y+=(M-a.y)*d;if(g)for(Zu(t=Xo.geom.quadtree(m),r,o),e=-1;++e<_;)(a=m[e]).fixed||t.visit(n(a));for(e=-1;++e<_;)a=m[e],a.fixed?(a.x=a.px,a.y=a.py):(a.x-=(a.px-(a.px=a.x))*l,a.y-=(a.py-(a.py=a.y))*l);c.tick({type:"tick",alpha:r})},a.nodes=function(n){return arguments.length?(m=n,a):m},a.links=function(n){return arguments.length?(y=n,a):y},a.size=function(n){return arguments.length?(s=n,a):s},a.linkDistance=function(n){return arguments.length?(f="function"==typeof n?n:+n,a):f},a.distance=a.linkDistance,a.linkStrength=function(n){return arguments.length?(h="function"==typeof n?n:+n,a):h},a.friction=function(n){return arguments.length?(l=+n,a):l},a.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,a):g},a.chargeDistance=function(n){return arguments.length?(p=n*n,a):Math.sqrt(p)},a.gravity=function(n){return arguments.length?(v=+n,a):v},a.theta=function(n){return arguments.length?(d=n*n,a):Math.sqrt(d)},a.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:"start",alpha:r=n}),Xo.timer(a.tick)),a):r},a.start=function(){function n(n,r){if(!e){for(e=new Array(c),a=0;c>a;++a)e[a]=[];for(a=0;s>a;++a){var u=y[a];e[u.source.index].push(u.target),e[u.target.index].push(u.source)}}for(var i,o=e[t],a=-1,s=o.length;++a<s;)if(!isNaN(i=o[a][n]))return i;return Math.random()*r}var t,e,r,c=m.length,l=y.length,p=s[0],v=s[1];for(t=0;c>t;++t)(r=m[t]).index=t,r.weight=0;for(t=0;l>t;++t)r=y[t],"number"==typeof r.source&&(r.source=m[r.source]),"number"==typeof r.target&&(r.target=m[r.target]),++r.source.weight,++r.target.weight;for(t=0;c>t;++t)r=m[t],isNaN(r.x)&&(r.x=n("x",p)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(u=[],"function"==typeof f)for(t=0;l>t;++t)u[t]=+f.call(this,y[t],t);else for(t=0;l>t;++t)u[t]=f;if(i=[],"function"==typeof h)for(t=0;l>t;++t)i[t]=+h.call(this,y[t],t);else for(t=0;l>t;++t)i[t]=h;if(o=[],"function"==typeof g)for(t=0;c>t;++t)o[t]=+g.call(this,m[t],t);else for(t=0;c>t;++t)o[t]=g;return a.resume()},a.resume=function(){return a.alpha(.1)},a.stop=function(){return a.alpha(0)},a.drag=function(){return e||(e=Xo.behavior.drag().origin(bt).on("dragstart.force",Fu).on("drag.force",t).on("dragend.force",Ou)),arguments.length?(this.on("mouseover.force",Yu).on("mouseout.force",Iu).call(e),void 0):e},Xo.rebind(a,c,"on")};var us=20,is=1,os=1/0;Xo.layout.hierarchy=function(){function n(t,o,a){var c=u.call(e,t,o);if(t.depth=o,a.push(t),c&&(s=c.length)){for(var s,l,f=-1,h=t.children=new Array(s),g=0,p=o+1;++f<s;)l=h[f]=n(c[f],p,a),l.parent=t,g+=l.value;r&&h.sort(r),i&&(t.value=g)}else delete t.children,i&&(t.value=+i.call(e,t,o)||0);return t}function t(n,r){var u=n.children,o=0;if(u&&(a=u.length))for(var a,c=-1,s=r+1;++c<a;)o+=t(u[c],s);else i&&(o=+i.call(e,n,r)||0);return i&&(n.value=o),o}function e(t){var e=[];return n(t,0,e),e}var r=Bu,u=Xu,i=$u;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(u=n,e):u},e.value=function(n){return arguments.length?(i=n,e):i},e.revalue=function(n){return t(n,0),n},e},Xo.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(o=i.length)){var o,a,c,s=-1;for(r=t.value?r/t.value:0;++s<o;)n(a=i[s],e,c=a.value*r,u),e+=c}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;++i<u;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var o=r.call(this,e,i);return n(o[0],0,u[0],u[1]/t(o[0])),o}var r=Xo.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},Vu(e,r)},Xo.layout.pie=function(){function n(i){var o=i.map(function(e,r){return+t.call(n,e,r)}),a=+("function"==typeof r?r.apply(this,arguments):r),c=(("function"==typeof u?u.apply(this,arguments):u)-a)/Xo.sum(o),s=Xo.range(i.length);null!=e&&s.sort(e===as?function(n,t){return o[t]-o[n]}:function(n,t){return e(i[n],i[t])});var l=[];return s.forEach(function(n){var t;l[n]={data:i[n],value:t=o[n],startAngle:a,endAngle:a+=t*c}}),l}var t=Number,e=as,r=0,u=ka;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n};var as={};Xo.layout.stack=function(){function n(a,c){var s=a.map(function(e,r){return t.call(n,e,r)}),l=s.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),o.call(n,t,e)]})}),f=e.call(n,l,c);s=Xo.permute(s,f),l=Xo.permute(l,f);var h,g,p,v=r.call(n,l,c),d=s.length,m=s[0].length;for(g=0;m>g;++g)for(u.call(n,s[0][g],p=v[g],l[0][g][1]),h=1;d>h;++h)u.call(n,s[h][g],p+=l[h-1][g][1],l[h][g][1]);return a}var t=bt,e=Qu,r=ni,u=Ku,i=Ju,o=Gu;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:cs.get(t)||Qu,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:ss.get(t)||ni,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(u=t,n):u},n};var cs=Xo.map({"inside-out":function(n){var t,e,r=n.length,u=n.map(ti),i=n.map(ei),o=Xo.range(r).sort(function(n,t){return u[n]-u[t]}),a=0,c=0,s=[],l=[];for(t=0;r>t;++t)e=o[t],c>a?(a+=i[e],s.push(e)):(c+=i[e],l.push(e));return l.reverse().concat(s)},reverse:function(n){return Xo.range(n.length).reverse()},"default":Qu}),ss=Xo.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,s,l=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=s=0,e=1;h>e;++e){for(t=0,u=0;l>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];l>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,s>c&&(s=c)}for(e=0;h>e;++e)g[e]-=s;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,o=1/u,a=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=o}for(e=0;i>e;++e)a[e]=0;return a},zero:ni});Xo.layout.histogram=function(){function n(n,i){for(var o,a,c=[],s=n.map(e,this),l=r.call(this,s,i),f=u.call(this,l,s,i),i=-1,h=s.length,g=f.length-1,p=t?1:1/h;++i<g;)o=c[i]=[],o.dx=f[i+1]-(o.x=f[i]),o.y=0;if(g>0)for(i=-1;++i<h;)a=s[i],a>=l[0]&&a<=l[1]&&(o=c[Xo.bisect(f,a,1,g)-1],o.y+=p,o.push(n[i]));return c}var t=!0,e=Number,r=oi,u=ui;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=_t(t),n):r},n.bins=function(t){return arguments.length?(u="number"==typeof t?function(n){return ii(n,t)}:_t(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},Xo.layout.tree=function(){function n(n,i){function o(n,t){var r=n.children,u=n._tree;if(r&&(i=r.length)){for(var i,a,s,l=r[0],f=l,h=-1;++h<i;)s=r[h],o(s,a),f=c(s,a,f),a=s;vi(n);var g=.5*(l._tree.prelim+s._tree.prelim);t?(u.prelim=t._tree.prelim+e(n,t),u.mod=u.prelim-g):u.prelim=g}else t&&(u.prelim=t._tree.prelim+e(n,t))}function a(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,u=-1;for(t+=n._tree.mod;++u<r;)a(e[u],t)}}function c(n,t,r){if(t){for(var u,i=n,o=n,a=t,c=n.parent.children[0],s=i._tree.mod,l=o._tree.mod,f=a._tree.mod,h=c._tree.mod;a=si(a),i=ci(i),a&&i;)c=ci(c),o=si(o),o._tree.ancestor=n,u=a._tree.prelim+f-i._tree.prelim-s+e(a,i),u>0&&(di(mi(a,n,r),n,u),s+=u,l+=u),f+=a._tree.mod,s+=i._tree.mod,h+=c._tree.mod,l+=o._tree.mod;a&&!si(o)&&(o._tree.thread=a,o._tree.mod+=f-l),i&&!ci(c)&&(c._tree.thread=i,c._tree.mod+=s-h,r=n)}return r}var s=t.call(this,n,i),l=s[0];pi(l,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),o(l),a(l,-l._tree.prelim);var f=li(l,hi),h=li(l,fi),g=li(l,gi),p=f.x-e(f,h)/2,v=h.x+e(h,f)/2,d=g.depth||1;return pi(l,u?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(v-p)*r[0],n.y=n.depth/d*r[1],delete n._tree}),s}var t=Xo.layout.hierarchy().sort(null).value(null),e=ai,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Vu(n,t)},Xo.layout.pack=function(){function n(n,i){var o=e.call(this,n,i),a=o[0],c=u[0],s=u[1],l=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,pi(a,function(n){n.r=+l(n.value)}),pi(a,bi),r){var f=r*(t?1:Math.max(2*a.r/c,2*a.r/s))/2;pi(a,function(n){n.r+=f}),pi(a,bi),pi(a,function(n){n.r-=f})}return ki(a,c/2,s/2,t?1:1/Math.max(2*a.r/c,2*a.r/s)),o}var t,e=Xo.layout.hierarchy().sort(yi),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},Vu(n,e)},Xo.layout.cluster=function(){function n(n,i){var o,a=t.call(this,n,i),c=a[0],s=0;pi(c,function(n){var t=n.children;t&&t.length?(n.x=Ci(t),n.y=Ai(t)):(n.x=o?s+=e(n,o):0,n.y=0,o=n)});var l=Ni(c),f=Li(c),h=l.x-e(l,f)/2,g=f.x+e(f,l)/2;return pi(c,u?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),a}var t=Xo.layout.hierarchy().sort(null).value(null),e=ai,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},Vu(n,t)},Xo.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;++u<i;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var o,a,c,s=f(e),l=[],h=i.slice(),p=1/0,v="slice"===g?s.dx:"dice"===g?s.dy:"slice-dice"===g?1&e.depth?s.dy:s.dx:Math.min(s.dx,s.dy);for(n(h,s.dx*s.dy/e.value),l.area=0;(c=h.length)>0;)l.push(o=h[c-1]),l.area+=o.area,"squarify"!==g||(a=r(l,v))<=p?(h.pop(),p=a):(l.area-=l.pop().area,u(l,v,s,!1),v=Math.min(s.dx,s.dy),l.length=l.area=0,p=1/0);l.length&&(u(l,v,s,!0),l.length=l.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,o=f(t),a=r.slice(),c=[];for(n(a,o.dx*o.dy/t.value),c.area=0;i=a.pop();)c.push(i),c.area+=i.area,null!=i.z&&(u(c,i.z?o.dx:o.dy,o,!a.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,o=-1,a=n.length;++o<a;)(e=n[o].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,o=n.length,a=e.x,s=e.y,l=t?c(n.area/t):0;if(t==e.dx){for((r||l>e.dy)&&(l=e.dy);++i<o;)u=n[i],u.x=a,u.y=s,u.dy=l,a+=u.dx=Math.min(e.x+e.dx-a,l?c(u.area/l):0);u.z=!0,u.dx+=e.x+e.dx-a,e.y+=l,e.dy-=l}else{for((r||l>e.dx)&&(l=e.dx);++i<o;)u=n[i],u.x=a,u.y=s,u.dx=l,s+=u.dy=Math.min(e.y+e.dy-s,l?c(u.area/l):0);u.z=!1,u.dy+=e.y+e.dy-s,e.x+=l,e.dx-=l}}function i(r){var u=o||a(r),i=u[0];return i.x=0,i.y=0,i.dx=s[0],i.dy=s[1],o&&a.revalue(i),n([i],i.dx*i.dy/i.value),(o?e:t)(i),h&&(o=u),u}var o,a=Xo.layout.hierarchy(),c=Math.round,s=[1,1],l=null,f=Ti,h=!1,g="squarify",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(s=n,i):s},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Ti(t):qi(t,"number"==typeof e?[e,e,e,e]:e)}function e(t){return qi(t,n)}if(!arguments.length)return l;var r;return f=null==(l=n)?Ti:"function"==(r=typeof n)?t:"number"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(c=n?Math.round:Number,i):c!=Number},i.sticky=function(n){return arguments.length?(h=n,o=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+"",i):g},Vu(i,a)},Xo.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=Xo.random.normal.apply(Xo,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=Xo.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},Xo.scale={};var ls={floor:bt,ceil:bt};Xo.scale.linear=function(){return Hi([0,1],[0,1],fu,!1)};var fs={s:1,g:1,p:1,r:1,e:1};Xo.scale.log=function(){return $i(Xo.scale.linear().domain([0,1]),10,!0,[1,10])};var hs=Xo.format(".0e"),gs={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};Xo.scale.pow=function(){return Bi(Xo.scale.linear(),1,[0,1])},Xo.scale.sqrt=function(){return Xo.scale.pow().exponent(.5)},Xo.scale.ordinal=function(){return Ji([],{t:"range",a:[[]]})},Xo.scale.category10=function(){return Xo.scale.ordinal().range(ps)},Xo.scale.category20=function(){return Xo.scale.ordinal().range(vs)},Xo.scale.category20b=function(){return Xo.scale.ordinal().range(ds)},Xo.scale.category20c=function(){return Xo.scale.ordinal().range(ms)};var ps=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(ht),vs=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(ht),ds=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(ht),ms=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(ht);Xo.scale.quantile=function(){return Gi([],[])},Xo.scale.quantize=function(){return Ki(0,1,[0,1])},Xo.scale.threshold=function(){return Qi([.5],[0,1])},Xo.scale.identity=function(){return no([0,1])},Xo.svg={},Xo.svg.arc=function(){function n(){var n=t.apply(this,arguments),i=e.apply(this,arguments),o=r.apply(this,arguments)+ys,a=u.apply(this,arguments)+ys,c=(o>a&&(c=o,o=a,a=c),a-o),s=Sa>c?"0":"1",l=Math.cos(o),f=Math.sin(o),h=Math.cos(a),g=Math.sin(a);return c>=xs?n?"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"M0,"+n+"A"+n+","+n+" 0 1,0 0,"+-n+"A"+n+","+n+" 0 1,0 0,"+n+"Z":"M0,"+i+"A"+i+","+i+" 0 1,1 0,"+-i+"A"+i+","+i+" 0 1,1 0,"+i+"Z":n?"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L"+n*h+","+n*g+"A"+n+","+n+" 0 "+s+",0 "+n*l+","+n*f+"Z":"M"+i*l+","+i*f+"A"+i+","+i+" 0 "+s+",1 "+i*h+","+i*g+"L0,0"+"Z"}var t=to,e=eo,r=ro,u=uo;return n.innerRadius=function(e){return arguments.length?(t=_t(e),n):t},n.outerRadius=function(t){return arguments.length?(e=_t(t),n):e},n.startAngle=function(t){return arguments.length?(r=_t(t),n):r},n.endAngle=function(t){return arguments.length?(u=_t(t),n):u},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,i=(r.apply(this,arguments)+u.apply(this,arguments))/2+ys;return[Math.cos(i)*n,Math.sin(i)*n]},n};var ys=-Ea,xs=ka-Aa;Xo.svg.line=function(){return io(bt)};var Ms=Xo.map({linear:oo,"linear-closed":ao,step:co,"step-before":so,"step-after":lo,basis:mo,"basis-open":yo,"basis-closed":xo,bundle:Mo,cardinal:go,"cardinal-open":fo,"cardinal-closed":ho,monotone:Eo});Ms.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var _s=[0,2/3,1/3,0],bs=[0,1/3,2/3,0],ws=[0,1/6,2/3,1/6];Xo.svg.line.radial=function(){var n=io(Ao);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},so.reverse=lo,lo.reverse=so,Xo.svg.area=function(){return Co(bt)},Xo.svg.area.radial=function(){var n=Co(Ao);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},Xo.svg.chord=function(){function n(n,a){var c=t(this,i,n,a),s=t(this,o,n,a);return"M"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,s)?u(c.r,c.p1,c.r,c.p0):u(c.r,c.p1,s.r,s.p0)+r(s.r,s.p1,s.a1-s.a0)+u(s.r,s.p1,c.r,c.p0))+"Z"}function t(n,t,e,r){var u=t.call(n,e,r),i=a.call(n,u,r),o=c.call(n,u,r)+ys,l=s.call(n,u,r)+ys;return{r:i,a0:o,a1:l,p0:[i*Math.cos(o),i*Math.sin(o)],p1:[i*Math.cos(l),i*Math.sin(l)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Sa)+",1 "+t}function u(n,t,e,r){return"Q 0,0 "+r}var i=hr,o=gr,a=No,c=ro,s=uo;return n.radius=function(t){return arguments.length?(a=_t(t),n):a},n.source=function(t){return arguments.length?(i=_t(t),n):i},n.target=function(t){return arguments.length?(o=_t(t),n):o},n.startAngle=function(t){return arguments.length?(c=_t(t),n):c},n.endAngle=function(t){return arguments.length?(s=_t(t),n):s},n},Xo.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),o=e.call(this,n,u),a=(i.y+o.y)/2,c=[i,{x:i.x,y:a},{x:o.x,y:a},o];return c=c.map(r),"M"+c[0]+"C"+c[1]+" "+c[2]+" "+c[3]}var t=hr,e=gr,r=Lo;return n.source=function(e){return arguments.length?(t=_t(e),n):t},n.target=function(t){return arguments.length?(e=_t(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},Xo.svg.diagonal.radial=function(){var n=Xo.svg.diagonal(),t=Lo,e=n.projection;return n.projection=function(n){return arguments.length?e(To(t=n)):t},n},Xo.svg.symbol=function(){function n(n,r){return(Ss.get(t.call(this,n,r))||Ro)(e.call(this,n,r))}var t=zo,e=qo;return n.type=function(e){return arguments.length?(t=_t(e),n):t},n.size=function(t){return arguments.length?(e=_t(t),n):e},n};var Ss=Xo.map({circle:Ro,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Cs)),e=t*Cs;return"M0,"+-t+"L"+e+",0"+" 0,"+t+" "+-e+",0"+"Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/As),e=t*As/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/As),e=t*As/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});Xo.svg.symbolTypes=Ss.keys();var ks,Es,As=Math.sqrt(3),Cs=Math.tan(30*Na),Ns=[],Ls=0;Ns.call=da.call,Ns.empty=da.empty,Ns.node=da.node,Ns.size=da.size,Xo.transition=function(n){return arguments.length?ks?n.transition():n:xa.transition()},Xo.transition.prototype=Ns,Ns.select=function(n){var t,e,r,u=this.id,i=[];n=M(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]);for(var c=this[o],s=-1,l=c.length;++s<l;)(r=c[s])&&(e=n.call(r,r.__data__,s,o))?("__data__"in r&&(e.__data__=r.__data__),jo(e,s,u,r.__transition__[u]),t.push(e)):t.push(null)}return Do(i,u)},Ns.selectAll=function(n){var t,e,r,u,i,o=this.id,a=[];n=_(n);for(var c=-1,s=this.length;++c<s;)for(var l=this[c],f=-1,h=l.length;++f<h;)if(r=l[f]){i=r.__transition__[o],e=n.call(r,r.__data__,f,c),a.push(t=[]);for(var g=-1,p=e.length;++g<p;)(u=e[g])&&jo(u,g,o,i),t.push(u)}return Do(a,o)},Ns.filter=function(n){var t,e,r,u=[];"function"!=typeof n&&(n=q(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]);for(var e=this[i],a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a,i)&&t.push(r)}return Do(u,this.id)},Ns.tween=function(n,t){var e=this.id;return arguments.length<2?this.node().__transition__[e].tween.get(n):R(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Ns.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function u(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function i(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?Ru:fu,a=Xo.ns.qualify(n);return Po(this,"attr."+n,t,a.local?i:u)},Ns.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=Xo.ns.qualify(n);return this.tween("attr."+n,u.local?r:e)},Ns.style=function(n,t,e){function r(){this.style.removeProperty(n)}function u(t){return null==t?r:(t+="",function(){var r,u=Go.getComputedStyle(this,null).getPropertyValue(n);return u!==t&&(r=fu(u,t),function(t){this.style.setProperty(n,r(t),e)})})}var i=arguments.length;if(3>i){if("string"!=typeof n){2>i&&(t="");for(e in n)this.style(e,n[e],t);return this}e=""}return Po(this,"style."+n,t,u)},Ns.styleTween=function(n,t,e){function r(r,u){var i=t.call(this,r,u,Go.getComputedStyle(this,null).getPropertyValue(n));return i&&function(t){this.style.setProperty(n,i(t),e)}}return arguments.length<3&&(e=""),this.tween("style."+n,r)},Ns.text=function(n){return Po(this,"text",n,Uo)},Ns.remove=function(){return this.each("end.transition",function(){var n;this.__transition__.count<2&&(n=this.parentNode)&&n.removeChild(this)})},Ns.ease=function(n){var t=this.id;return arguments.length<1?this.node().__transition__[t].ease:("function"!=typeof n&&(n=Xo.ease.apply(Xo,arguments)),R(this,function(e){e.__transition__[t].ease=n}))},Ns.delay=function(n){var t=this.id;return R(this,"function"==typeof n?function(e,r,u){e.__transition__[t].delay=+n.call(e,e.__data__,r,u)}:(n=+n,function(e){e.__transition__[t].delay=n}))},Ns.duration=function(n){var t=this.id;return R(this,"function"==typeof n?function(e,r,u){e.__transition__[t].duration=Math.max(1,n.call(e,e.__data__,r,u))}:(n=Math.max(1,n),function(e){e.__transition__[t].duration=n}))},Ns.each=function(n,t){var e=this.id;if(arguments.length<2){var r=Es,u=ks;ks=e,R(this,function(t,r,u){Es=t.__transition__[e],n.call(t,t.__data__,r,u)}),Es=r,ks=u}else R(this,function(r){var u=r.__transition__[e];(u.event||(u.event=Xo.dispatch("start","end"))).on(n,t)});return this},Ns.transition=function(){for(var n,t,e,r,u=this.id,i=++Ls,o=[],a=0,c=this.length;c>a;a++){o.push(n=[]);for(var t=this[a],s=0,l=t.length;l>s;s++)(e=t[s])&&(r=Object.create(e.__transition__[u]),r.delay+=r.duration,jo(e,s,i,r)),n.push(e)}return Do(o,i)},Xo.svg.axis=function(){function n(n){n.each(function(){var n,s=Xo.select(this),l=this.__chart__||e,f=this.__chart__=e.copy(),h=null==c?f.ticks?f.ticks.apply(f,a):f.domain():c,g=null==t?f.tickFormat?f.tickFormat.apply(f,a):bt:t,p=s.selectAll(".tick").data(h,f),v=p.enter().insert("g",".domain").attr("class","tick").style("opacity",Aa),d=Xo.transition(p.exit()).style("opacity",Aa).remove(),m=Xo.transition(p).style("opacity",1),y=Ri(f),x=s.selectAll(".domain").data([0]),M=(x.enter().append("path").attr("class","domain"),Xo.transition(x));v.append("line"),v.append("text");var _=v.select("line"),b=m.select("line"),w=p.select("text").text(g),S=v.select("text"),k=m.select("text");switch(r){case"bottom":n=Ho,_.attr("y2",u),S.attr("y",Math.max(u,0)+o),b.attr("x2",0).attr("y2",u),k.attr("x",0).attr("y",Math.max(u,0)+o),w.attr("dy",".71em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+i+"V0H"+y[1]+"V"+i);break;case"top":n=Ho,_.attr("y2",-u),S.attr("y",-(Math.max(u,0)+o)),b.attr("x2",0).attr("y2",-u),k.attr("x",0).attr("y",-(Math.max(u,0)+o)),w.attr("dy","0em").style("text-anchor","middle"),M.attr("d","M"+y[0]+","+-i+"V0H"+y[1]+"V"+-i);break;case"left":n=Fo,_.attr("x2",-u),S.attr("x",-(Math.max(u,0)+o)),b.attr("x2",-u).attr("y2",0),k.attr("x",-(Math.max(u,0)+o)).attr("y",0),w.attr("dy",".32em").style("text-anchor","end"),M.attr("d","M"+-i+","+y[0]+"H0V"+y[1]+"H"+-i);break;case"right":n=Fo,_.attr("x2",u),S.attr("x",Math.max(u,0)+o),b.attr("x2",u).attr("y2",0),k.attr("x",Math.max(u,0)+o).attr("y",0),w.attr("dy",".32em").style("text-anchor","start"),M.attr("d","M"+i+","+y[0]+"H0V"+y[1]+"H"+i)}if(f.rangeBand){var E=f,A=E.rangeBand()/2;l=f=function(n){return E(n)+A}}else l.rangeBand?l=f:d.call(n,f);v.call(n,l),m.call(n,f)})}var t,e=Xo.scale.linear(),r=Ts,u=6,i=6,o=3,a=[10],c=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in qs?t+"":Ts,n):r},n.ticks=function(){return arguments.length?(a=arguments,n):a},n.tickValues=function(t){return arguments.length?(c=t,n):c},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Ts="bottom",qs={top:1,right:1,bottom:1,left:1};Xo.svg.brush=function(){function n(i){i.each(function(){var i=Xo.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=i.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),i.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=i.selectAll(".resize").data(p,bt);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return zs[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var l,f=Xo.transition(i),h=Xo.transition(o);c&&(l=Ri(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),e(f)),s&&(l=Ri(s),h.attr("y",l[0]).attr("height",l[1]-l[0]),r(f)),t(f)})}function t(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+l[+/e$/.test(n)]+","+f[+/^s/.test(n)]+")"})}function e(n){n.select(".extent").attr("x",l[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",l[1]-l[0])}function r(n){n.select(".extent").attr("y",f[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",f[1]-f[0])}function u(){function u(){32==Xo.event.keyCode&&(C||(x=null,L[0]-=l[1],L[1]-=f[1],C=2),d())}function p(){32==Xo.event.keyCode&&2==C&&(L[0]+=l[1],L[1]+=f[1],C=0,d())}function v(){var n=Xo.mouse(_),u=!1;M&&(n[0]+=M[0],n[1]+=M[1]),C||(Xo.event.altKey?(x||(x=[(l[0]+l[1])/2,(f[0]+f[1])/2]),L[0]=l[+(n[0]<x[0])],L[1]=f[+(n[1]<x[1])]):x=null),E&&m(n,c,0)&&(e(S),u=!0),A&&m(n,s,1)&&(r(S),u=!0),u&&(t(S),w({type:"brush",mode:C?"move":"resize"}))}function m(n,t,e){var r,u,a=Ri(t),c=a[0],s=a[1],p=L[e],v=e?f:l,d=v[1]-v[0];return C&&(c-=p,s-=d+p),r=(e?g:h)?Math.max(c,Math.min(s,n[e])):n[e],C?u=(r+=p)+d:(x&&(p=Math.max(c,Math.min(s,2*x[e]-r))),r>p?(u=r,r=p):u=p),v[0]!=r||v[1]!=u?(e?o=null:i=null,v[0]=r,v[1]=u,!0):void 0}function y(){v(),S.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),Xo.select("body").style("cursor",null),T.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),N(),w({type:"brushend"})}var x,M,_=this,b=Xo.select(Xo.event.target),w=a.of(_,arguments),S=Xo.select(_),k=b.datum(),E=!/^(n|s)$/.test(k)&&c,A=!/^(e|w)$/.test(k)&&s,C=b.classed("extent"),N=O(),L=Xo.mouse(_),T=Xo.select(Go).on("keydown.brush",u).on("keyup.brush",p);if(Xo.event.changedTouches?T.on("touchmove.brush",v).on("touchend.brush",y):T.on("mousemove.brush",v).on("mouseup.brush",y),S.interrupt().selectAll("*").interrupt(),C)L[0]=l[0]-L[0],L[1]=f[0]-L[1];else if(k){var q=+/w$/.test(k),z=+/^n/.test(k);M=[l[1-q]-L[0],f[1-z]-L[1]],L[0]=l[q],L[1]=f[z]}else Xo.event.altKey&&(x=L.slice());S.style("pointer-events","none").selectAll(".resize").style("display",null),Xo.select("body").style("cursor",b.style("cursor")),w({type:"brushstart"}),v()}var i,o,a=y(n,"brushstart","brush","brushend"),c=null,s=null,l=[0,0],f=[0,0],h=!0,g=!0,p=Rs[0];return n.event=function(n){n.each(function(){var n=a.of(this,arguments),t={x:l,y:f,i:i,j:o},e=this.__chart__||t;this.__chart__=t,ks?Xo.select(this).transition().each("start.brush",function(){i=e.i,o=e.j,l=e.x,f=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=hu(l,t.x),r=hu(f,t.y);return i=o=null,function(u){l=t.x=e(u),f=t.y=r(u),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){i=t.i,o=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,p=Rs[!c<<1|!s],n):c},n.y=function(t){return arguments.length?(s=t,p=Rs[!c<<1|!s],n):s},n.clamp=function(t){return arguments.length?(c&&s?(h=!!t[0],g=!!t[1]):c?h=!!t:s&&(g=!!t),n):c&&s?[h,g]:c?h:s?g:null},n.extent=function(t){var e,r,u,a,h;return arguments.length?(c&&(e=t[0],r=t[1],s&&(e=e[0],r=r[0]),i=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(h=e,e=r,r=h),(e!=l[0]||r!=l[1])&&(l=[e,r])),s&&(u=t[0],a=t[1],c&&(u=u[1],a=a[1]),o=[u,a],s.invert&&(u=s(u),a=s(a)),u>a&&(h=u,u=a,a=h),(u!=f[0]||a!=f[1])&&(f=[u,a])),n):(c&&(i?(e=i[0],r=i[1]):(e=l[0],r=l[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(h=e,e=r,r=h))),s&&(o?(u=o[0],a=o[1]):(u=f[0],a=f[1],s.invert&&(u=s.invert(u),a=s.invert(a)),u>a&&(h=u,u=a,a=h))),c&&s?[[e,u],[r,a]]:c?[e,r]:s&&[u,a])},n.clear=function(){return n.empty()||(l=[0,0],f=[0,0],i=o=null),n},n.empty=function(){return!!c&&l[0]==l[1]||!!s&&f[0]==f[1]},Xo.rebind(n,a,"on")};var zs={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Rs=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Ds=tc.format=ac.timeFormat,Ps=Ds.utc,Us=Ps("%Y-%m-%dT%H:%M:%S.%LZ");Ds.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?Oo:Us,Oo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},Oo.toString=Us.toString,tc.second=Rt(function(n){return new ec(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),tc.seconds=tc.second.range,tc.seconds.utc=tc.second.utc.range,tc.minute=Rt(function(n){return new ec(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),tc.minutes=tc.minute.range,tc.minutes.utc=tc.minute.utc.range,tc.hour=Rt(function(n){var t=n.getTimezoneOffset()/60;return new ec(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),tc.hours=tc.hour.range,tc.hours.utc=tc.hour.utc.range,tc.month=Rt(function(n){return n=tc.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),tc.months=tc.month.range,tc.months.utc=tc.month.utc.range;var js=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Hs=[[tc.second,1],[tc.second,5],[tc.second,15],[tc.second,30],[tc.minute,1],[tc.minute,5],[tc.minute,15],[tc.minute,30],[tc.hour,1],[tc.hour,3],[tc.hour,6],[tc.hour,12],[tc.day,1],[tc.day,2],[tc.week,1],[tc.month,1],[tc.month,3],[tc.year,1]],Fs=Ds.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",be]]),Os={range:function(n,t,e){return Xo.range(Math.ceil(n/e)*e,+t,e).map(Io)},floor:bt,ceil:bt};Hs.year=tc.year,tc.scale=function(){return Yo(Xo.scale.linear(),Hs,Fs)};var Ys=Hs.map(function(n){return[n[0].utc,n[1]]}),Is=Ps.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",be]]);Ys.year=tc.year.utc,tc.scale.utc=function(){return Yo(Xo.scale.linear(),Ys,Is)},Xo.text=wt(function(n){return n.responseText}),Xo.json=function(n,t){return St(n,"application/json",Zo,t)},Xo.html=function(n,t){return St(n,"text/html",Vo,t)},Xo.xml=wt(function(n){return n.responseXML}),"function"==typeof define&&define.amd?define(Xo):"object"==typeof module&&module.exports?module.exports=Xo:this.d3=Xo}();'use strict';(function(window){window.define=undefined;}).call(this,this);'use strict';Polymer({is:'tr-ui-b-chart-legend-key',ready:function(){this.$.checkbox.addEventListener('change',this.onCheckboxChange_.bind(this));},onCheckboxChange_:function(){tr.b.dispatchSimpleEvent(this,tr.ui.b.DataSeriesEnableChangeEventType,true,false,{key:Polymer.dom(this).textContent,enabled:this.enabled});},set textContent(t){Polymer.dom(this.$.label).textContent=t;Polymer.dom(this.$.link).textContent=t;this.updateContents_();},set width(w){w-=20;this.$.link.style.width=w+'px';this.$.label.style.width=w+'px';},get textContent(){return Polymer.dom(this.$.label).textContent;},set optional(optional){this.$.checkbox.style.visibility=optional?'visible':'hidden';},get optional(){return this.$.checkbox.style.visibility==='visible';},set enabled(enabled){this.$.checkbox.checked=enabled?'checked':'';},get enabled(){return this.$.checkbox.checked;},set color(c){this.$.label.style.color=c;this.$.link.color=c;},set target(target){this.$.link.setSelectionAndContent(target,Polymer.dom(this.$.label).textContent);this.updateContents_();},get target(){return this.$.link.selection;},updateContents_:function(){this.$.link.style.display=this.target?'':'none';this.$.label.style.display=this.target?'none':'';this.$.label.htmlFor=this.optional?'checkbox':'';}});'use strict';tr.exportTo('tr.ui.b',function(){var DataSeriesEnableChangeEventType='data-series-enabled-change';var THIS_DOC=document.currentScript.ownerDocument;var svgNS='http://www.w3.org/2000/svg';var ColorScheme=tr.b.ColorScheme;function getColorOfKey(key,selected){var id=ColorScheme.getColorIdForGeneralPurposeString(key);if(selected)
 id+=ColorScheme.properties.brightenedOffsets[0];return ColorScheme.colorsAsStrings[id];}
-function DataSeries(key){this.key_=key;this.target_=undefined;this.optional_=false;this.enabled_=true;}
-DataSeries.prototype={get key(){return this.key_;},get optional(){return this.optional_;},set optional(optional){this.optional_=optional;},get enabled(){return this.enabled_;},set enabled(enabled){if(!this.optional&&!enabled)
+function DataSeries(key){this.key_=key;this.target_=undefined;this.optional_=false;this.enabled_=true;this.color_=getColorOfKey(key,false);this.highlightedColor_=getColorOfKey(key,true);}
+DataSeries.prototype={get key(){return this.key_;},get color(){return this.color_;},set color(c){this.color_=c;},get highlightedColor(){return this.highlightedColor_;},set highlightedColor(c){this.highlightedColor_=c;},get optional(){return this.optional_;},set optional(optional){this.optional_=optional;},get enabled(){return this.enabled_;},set enabled(enabled){if(!this.optional&&!enabled)
 this.optional=true;this.enabled_=enabled;},get target(){return this.target_;},set target(t){this.target_=t;}};var ChartBase=tr.ui.b.define('svg',undefined,svgNS);ChartBase.prototype={__proto__:HTMLUnknownElement.prototype,getDataSeries:function(key){if(!this.seriesByKey_.has(key))
 this.seriesByKey_.set(key,new DataSeries(key));return this.seriesByKey_.get(key);},decorate:function(){Polymer.dom(this).classList.add('chart-base');this.chartTitle_=undefined;this.seriesByKey_=new Map();this.width_=400;this.height_=300;this.margin={top:20,right:72,bottom:30,left:50};this.hideLegend_=false;var template=Polymer.dom(THIS_DOC).querySelector('#chart-base-template');var svgEl=Polymer.dom(template.content).querySelector('svg');for(var i=0;i<Polymer.dom(svgEl).children.length;i++)
 Polymer.dom(this).appendChild(Polymer.dom(svgEl.children[i]).cloneNode(true));Object.defineProperty(this,'width',{get:function(){return this.width_;},set:function(width){this.width_=width;this.updateContents_();}});Object.defineProperty(this,'height',{get:function(){return this.height_;},set:function(height){this.height_=height;this.updateContents_();}});this.addEventListener(DataSeriesEnableChangeEventType,this.onDataSeriesEnableChange_.bind(this));},get hideLegend(){return this.hideLegend_;},set hideLegend(h){this.hideLegend_=h;this.updateContents_();},isSeriesEnabled:function(key){return this.getDataSeries(key).enabled;},onDataSeriesEnableChange_:function(event){this.getDataSeries(event.key).enabled=event.enabled;this.updateContents_();},get chartTitle(){return this.chartTitle_;},set chartTitle(chartTitle){if(chartTitle&&!this.chartTitle_)
 this.margin.top+=this.titleMarginPx;else if(this.chartTitle_&&!chartTitle)
-this.margin.top-=this.titleMarginPx;this.chartTitle_=chartTitle;this.updateContents_();},get titleMarginPx(){return 20;},get chartAreaElement(){return Polymer.dom(this).querySelector('#chart-area');},setSize:function(size){this.width_=size.width;this.height_=size.height;this.updateContents_();},get chartAreaSize(){return{width:this.width_-this.margin.left-this.margin.right,height:this.height_-this.margin.top-this.margin.bottom};},customizeLegendTargets:function(delta){tr.b.iterItems(delta,function(key,value){this.getDataSeries(key).target=value;},this);},customizeOptionalSeries:function(delta){tr.b.iterItems(delta,function(key,value){this.getDataSeries(key).optional=value;},this);},customizeEnabledSeries:function(delta){tr.b.iterItems(delta,function(key,value){this.getDataSeries(key).enabled=value;},this);},updateScales_:function(){throw new Error('Not implemented');},updateContents_:function(){var thisSel=d3.select(this);thisSel.attr('width',this.width_);thisSel.attr('height',this.height_);var chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.attr('transform','translate('+this.margin.left+','+this.margin.top+')');this.updateScales_();this.updateTitle_(chartAreaSel);this.updateLegend_();},updateTitle_:function(chartAreaSel){var titleSel=chartAreaSel.select('#title');if(!this.chartTitle_){titleSel.style('display','none');return;}
+this.margin.top-=this.titleMarginPx;this.chartTitle_=chartTitle;this.updateContents_();},get titleMarginPx(){return 20;},get chartAreaElement(){return Polymer.dom(this).querySelector('#chart-area');},setSize:function(size){this.width_=size.width;this.height_=size.height;this.updateContents_();},get chartAreaSize(){return{width:this.width_-this.margin.left-this.margin.right,height:this.height_-this.margin.top-this.margin.bottom};},updateScales_:function(){throw new Error('Not implemented');},updateContents_:function(){var thisSel=d3.select(this);thisSel.attr('width',this.width_);thisSel.attr('height',this.height_);var chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.attr('transform','translate('+this.margin.left+','+this.margin.top+')');this.updateScales_();this.updateTitle_(chartAreaSel);this.updateLegend_();},updateTitle_:function(chartAreaSel){var titleSel=chartAreaSel.select('#title');if(!this.chartTitle_){titleSel.style('display','none');return;}
 var width=this.chartAreaSize.width;titleSel.attr('transform','translate('+width*0.5+',-5)').style('display',undefined).style('text-anchor','middle').attr('class','title').attr('width',width).text(this.chartTitle_);},updateLegend_:function(){var chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.selectAll('.legend').remove();if(this.hideLegend)
-return;var series=[...this.seriesByKey_.values()].reverse();var legendEntriesSel=chartAreaSel.selectAll('.legend').data(series);var width=this.margin.right-2;legendEntriesSel.enter().append('foreignObject').attr('class','legend').attr('x',this.chartAreaSize.width+2).attr('width',width).attr('height',18).attr('transform',function(series,i){return'translate(0,'+i*18+')';}).append('xhtml:body').append('tr-ui-b-chart-legend-key').property('color',function(series){var selected=this.currentHighlightedLegendKey===series.key;return getColorOfKey(series.key,selected);}.bind(this)).property('width',width).property('target',function(series){return series.target;}).property('optional',function(series){return series.optional;}).property('enabled',function(series){return series.enabled;}).text(function(series){return series.key;});legendEntriesSel.exit().remove();},get highlightedLegendKey(){return this.highlightedLegendKey_;},set highlightedLegendKey(highlightedLegendKey){this.highlightedLegendKey_=highlightedLegendKey;this.updateHighlight_();},get currentHighlightedLegendKey(){if(this.tempHighlightedLegendKey_)
+return;var series=[...this.seriesByKey_.values()].reverse();var legendEntriesSel=chartAreaSel.selectAll('.legend').data(series);var width=this.margin.right-2;legendEntriesSel.enter().append('foreignObject').attr('class','legend').attr('x',this.chartAreaSize.width+2).attr('width',width).attr('height',18).attr('transform',function(series,i){return'translate(0,'+i*18+')';}).append('xhtml:body').append('tr-ui-b-chart-legend-key').property('color',function(series){if(this.currentHighlightedLegendKey===series.key)
+return series.highlightedColor;return series.color;}.bind(this)).property('width',width).property('target',function(series){return series.target;}).property('optional',function(series){return series.optional;}).property('enabled',function(series){return series.enabled;}).text(function(series){return series.key;});legendEntriesSel.exit().remove();},get highlightedLegendKey(){return this.highlightedLegendKey_;},set highlightedLegendKey(highlightedLegendKey){this.highlightedLegendKey_=highlightedLegendKey;this.updateHighlight_();},get currentHighlightedLegendKey(){if(this.tempHighlightedLegendKey_)
 return this.tempHighlightedLegendKey_;return this.highlightedLegendKey_;},pushTempHighlightedLegendKey:function(key){if(this.tempHighlightedLegendKey_)
 throw new Error('push cannot nest');this.tempHighlightedLegendKey_=key;this.updateHighlight_();},popTempHighlightedLegendKey:function(key){if(this.tempHighlightedLegendKey_!=key)
-throw new Error('pop cannot happen');this.tempHighlightedLegendKey_=undefined;this.updateHighlight_();},updateHighlight_:function(){var chartAreaSel=d3.select(this.chartAreaElement);var legendEntriesSel=chartAreaSel.selectAll('.legend');var that=this;legendEntriesSel.each(function(key){var highlighted=key==that.currentHighlightedLegendKey;var color=getColorOfKey(key,highlighted);this.style.fill=color;if(highlighted)
-this.style.fontWeight='bold';else
-this.style.fontWeight='';});}};return{DataSeriesEnableChangeEventType:DataSeriesEnableChangeEventType,getColorOfKey:getColorOfKey,ChartBase:ChartBase};});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase=tr.ui.b.ChartBase;var ChartBase2D=tr.ui.b.define('chart-base-2d',ChartBase);ChartBase2D.prototype={__proto__:ChartBase.prototype,decorate:function(){ChartBase.prototype.decorate.call(this);Polymer.dom(this).classList.add('chart-base-2d');this.xScale_=d3.scale.linear();this.yScale_=d3.scale.linear();this.isYLogScale_=false;this.yLogScaleMin_=undefined;this.dataRange_=new tr.b.Range();this.hideXAxis_=false;this.hideYAxis_=false;this.data_=[];d3.select(this.chartAreaElement).append('g').attr('id','brushes');d3.select(this.chartAreaElement).append('g').attr('id','series');this.addEventListener('mousedown',this.onMouseDown_.bind(this));},get hideXAxis(){return this.hideXAxis_;},set hideXAxis(h){this.hideXAxis_=h;this.updateContents_();},get hideYAxis(){return this.hideYAxis_;},set hideYAxis(h){this.hideYAxis_=h;this.updateContents_();},get data(){return this.data_;},set data(data){if(data===undefined)
+throw new Error('pop cannot happen');this.tempHighlightedLegendKey_=undefined;this.updateHighlight_();},updateHighlight_:function(){var chartAreaSel=d3.select(this.chartAreaElement);var legendEntriesSel=chartAreaSel.selectAll('.legend');var that=this;legendEntriesSel.each(function(key){var dataSeries=that.getDataSeries(key);if(key===that.currentHighlightedLegendKey){this.style.fill=dataSeries.highlightedColor;this.style.fontWeight='bold';}else{this.style.fill=dataSeries.color;this.style.fontWeight='';}});}};return{DataSeriesEnableChangeEventType:DataSeriesEnableChangeEventType,getColorOfKey:getColorOfKey,ChartBase:ChartBase};});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase=tr.ui.b.ChartBase;var ChartBase2D=tr.ui.b.define('chart-base-2d',ChartBase);ChartBase2D.prototype={__proto__:ChartBase.prototype,decorate:function(){ChartBase.prototype.decorate.call(this);Polymer.dom(this).classList.add('chart-base-2d');this.xScale_=d3.scale.linear();this.yScale_=d3.scale.linear();this.isYLogScale_=false;this.yLogScaleMin_=undefined;this.dataRange_=new tr.b.Range();this.hideXAxis_=false;this.hideYAxis_=false;this.data_=[];d3.select(this.chartAreaElement).append('g').attr('id','brushes');d3.select(this.chartAreaElement).append('g').attr('id','series');this.addEventListener('mousedown',this.onMouseDown_.bind(this));},get hideXAxis(){return this.hideXAxis_;},set hideXAxis(h){this.hideXAxis_=h;this.updateContents_();},get hideYAxis(){return this.hideYAxis_;},set hideYAxis(h){this.hideYAxis_=h;this.updateContents_();},get data(){return this.data_;},set data(data){if(data===undefined)
 throw new Error('data must be an Array');this.data_=data;this.updateSeriesKeys_();this.updateDataRange_();this.updateContents_();},set isYLogScale(logScale){if(logScale)
 this.yScale_=d3.scale.log(10);else
 this.yScale_=d3.scale.linear();this.isYLogScale_=logScale;},getYScaleMin_:function(){return this.isYLogScale_?this.yLogScaleMin_:0;},getYScaleDomain_:function(minValue,maxValue){if(this.isYLogScale_)
@@ -7509,22 +7575,22 @@
 return;var width=this.chartAreaSize.width;var height=this.chartAreaSize.height;this.xScale_.range([0,width]);this.xScale_.domain(d3.extent(this.data_,this.getXForDatum_.bind(this)));var yRange=new tr.b.Range();for(var i=0;i<this.data_.length;i++){for(var key in this.data_[i]){if(!isNaN(Math.max(this.data_[i][key])))
 yRange.addValue(this.data_[i][key]);}}
 this.yScale_.range([height,0]);this.yScale_.domain([yRange.min,yRange.max]);},updateBrushContents_:function(brushSel){brushSel.selectAll('*').remove();},updateXAxis_:function(xAxis){xAxis.selectAll('*').remove();xAxis[0][0].style.opacity=0;if(this.hideXAxis)
-return;xAxis.attr('transform','translate(0,'+this.chartAreaSize.height+')').call(d3.svg.axis().scale(this.xScale_).orient('bottom'));tr.b.requestAnimationFrame(function(){var previousRight=undefined;xAxis.selectAll('.tick')[0].forEach(function(tick){var currentLeft=tick.transform.baseVal[0].matrix.e;if((previousRight===undefined)||(currentLeft>(previousRight+3))){var currentWidth=tick.getBBox().width;previousRight=currentLeft+currentWidth;}else{tick.style.opacity=0;}});xAxis[0][0].style.opacity=1;},this);},updateDataRange_:function(){var dataBySeriesKey=this.getDataBySeriesKey_();this.dataRange_.reset();tr.b.iterItems(dataBySeriesKey,function(series,values){for(var i=0;i<values.length;i++){this.dataRange_.addValue(values[i][series]);}},this);this.yLogScaleMin_=undefined;if(this.dataRange_.min!==undefined){var minValue=this.dataRange_.min;if(minValue==0)
+return;this.drawXAxis_(xAxis);},drawXAxis_:function(xAxis){xAxis.attr('transform','translate(0,'+this.chartAreaSize.height+')').call(d3.svg.axis().scale(this.xScale_).orient('bottom'));tr.b.requestAnimationFrame(this.drawXAxisTicks_.bind(this,xAxis));},drawXAxisTicks_:function(xAxis){var previousRight=undefined;xAxis.selectAll('.tick')[0].forEach(function(tick){var currentLeft=tick.transform.baseVal[0].matrix.e;if((previousRight===undefined)||(currentLeft>(previousRight+3))){var currentWidth=tick.getBBox().width;previousRight=currentLeft+currentWidth;}else{tick.style.opacity=0;}});xAxis[0][0].style.opacity=1;},updateDataRange_:function(){var dataBySeriesKey=this.getDataBySeriesKey_();this.dataRange_.reset();tr.b.iterItems(dataBySeriesKey,function(series,values){for(var i=0;i<values.length;i++){this.dataRange_.addValue(values[i][series]);}},this);this.yLogScaleMin_=undefined;if(this.dataRange_.min!==undefined){var minValue=this.dataRange_.min;if(minValue==0)
 minValue=1;var onePowerLess=Math.floor(Math.log(minValue)/Math.log(10))-1;this.yLogScaleMin_=Math.pow(10,onePowerLess);}},updateYAxis_:function(yAxis){yAxis.selectAll('*').remove();yAxis[0][0].style.opacity=0;if(this.hideYAxis)
-return;var axisModifier=d3.svg.axis().scale(this.yScale_).orient('left');if(this.isYLogScale_){if(this.yLogScaleMin_===undefined)
+return;this.drawYAxis_(yAxis);},drawYAxis_:function(yAxis){var axisModifier=d3.svg.axis().scale(this.yScale_).orient('left');if(this.isYLogScale_){if(this.yLogScaleMin_===undefined)
 return;var minValue=this.dataRange_.min;if(minValue==0)
 minValue=1;var largestPower=Math.ceil(Math.log(this.dataRange_.max)/Math.log(10))+1;var smallestPower=Math.floor(Math.log(minValue)/Math.log(10));var tickValues=[];for(var i=smallestPower;i<largestPower;i++){tickValues.push(Math.pow(10,i));}
 axisModifier=axisModifier.tickValues(tickValues).tickFormat(function(d){return d;});}
-yAxis.call(axisModifier);tr.b.requestAnimationFrame(function(){var previousTop=undefined;var leftMargin=0;yAxis.selectAll('.tick')[0].forEach(function(tick){var bbox=tick.getBBox();leftMargin=Math.max(leftMargin,bbox.width);var currentTop=tick.transform.baseVal[0].matrix.f;var currentBottom=currentTop+bbox.height;if((previousTop===undefined)||(previousTop>(currentBottom+3))){previousTop=currentTop;}else{tick.style.opacity=0;}});leftMargin=parseInt(Math.ceil(leftMargin));if(leftMargin>this.margin.left){this.margin.left=leftMargin;this.updateContents_();}else{yAxis[0][0].style.opacity=1;}},this);},updateContents_:function(){ChartBase.prototype.updateContents_.call(this);var chartAreaSel=d3.select(this.chartAreaElement);this.updateXAxis_(chartAreaSel.select('.x.axis'));this.updateYAxis_(chartAreaSel.select('.y.axis'));this.updateBrushContents_(chartAreaSel.select('#brushes'));this.updateDataContents_(chartAreaSel.select('#series'));},updateDataContents_:function(seriesSel){throw new Error('Not implemented');},getDataBySeriesKey_:function(){var dataBySeriesKey={};for(var[key,series]of this.seriesByKey_){dataBySeriesKey[key]=[];}
+yAxis.call(axisModifier);tr.b.requestAnimationFrame(this.drawYAxisTicks_.bind(this,yAxis));},drawYAxisTicks_:function(yAxis){var previousTop=undefined;var leftMargin=0;yAxis.selectAll('.tick')[0].forEach(function(tick){var bbox=tick.getBBox();leftMargin=Math.max(leftMargin,bbox.width);var currentTop=tick.transform.baseVal[0].matrix.f;var currentBottom=currentTop+bbox.height;if((previousTop===undefined)||(previousTop>(currentBottom+3))){previousTop=currentTop;}else{tick.style.opacity=0;}});leftMargin=parseInt(Math.ceil(leftMargin));if(leftMargin>this.margin.left){this.margin.left=leftMargin;this.updateContents_();}else{yAxis[0][0].style.opacity=1;}},updateContents_:function(){ChartBase.prototype.updateContents_.call(this);var chartAreaSel=d3.select(this.chartAreaElement);this.updateXAxis_(chartAreaSel.select('.x.axis'));this.updateYAxis_(chartAreaSel.select('.y.axis'));this.updateBrushContents_(chartAreaSel.select('#brushes'));this.updateDataContents_(chartAreaSel.select('#series'));},updateDataContents_:function(seriesSel){throw new Error('Not implemented');},getDataBySeriesKey_:function(){var dataBySeriesKey={};for(var[key,series]of this.seriesByKey_){dataBySeriesKey[key]=[];}
 this.data_.forEach(function(multiSeriesDatum,index){var x=this.getXForDatum_(multiSeriesDatum,index);d3.keys(multiSeriesDatum).forEach(function(seriesKey){if(seriesKey==='x')
 return;if(multiSeriesDatum[seriesKey]===undefined)
 return;if(!this.isDatumFieldSeries_(seriesKey))
-return;var singleSeriesDatum={x:x};singleSeriesDatum[seriesKey]=multiSeriesDatum[seriesKey];dataBySeriesKey[seriesKey].push(singleSeriesDatum);},this);},this);return dataBySeriesKey;},getDataPointAtClientPoint_:function(clientX,clientY){var rect=this.getBoundingClientRect();var x=clientX-rect.left-this.margin.left;var y=clientY-rect.top-this.margin.top;x=this.xScale_.invert(x);y=this.yScale_.invert(y);x=tr.b.clamp(x,this.xScale_.domain()[0],this.xScale_.domain()[1]);y=tr.b.clamp(y,this.yScale_.domain()[0],this.yScale_.domain()[1]);return{x:x,y:y};},prepareDataEvent_:function(mouseEvent,dataEvent){var dataPoint=this.getDataPointAtClientPoint_(mouseEvent.clientX,mouseEvent.clientY);dataEvent.x=dataPoint.x;dataEvent.y=dataPoint.y;},onMouseDown_:function(mouseEvent){tr.ui.b.trackMouseMovesUntilMouseUp(this.onMouseMove_.bind(this,mouseEvent.button),this.onMouseUp_.bind(this,mouseEvent.button));mouseEvent.preventDefault();mouseEvent.stopPropagation();var dataEvent=new tr.b.Event('item-mousedown');dataEvent.button=mouseEvent.button;Polymer.dom(this).classList.add('updating-brushing-state');this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);},onMouseMove_:function(button,mouseEvent){if(mouseEvent.buttons!==undefined){mouseEvent.preventDefault();mouseEvent.stopPropagation();}
+return;var singleSeriesDatum={x:x};singleSeriesDatum[seriesKey]=multiSeriesDatum[seriesKey];dataBySeriesKey[seriesKey].push(singleSeriesDatum);},this);},this);return dataBySeriesKey;},getChartPointAtClientPoint_:function(clientPoint){var rect=this.getBoundingClientRect();return{x:clientPoint.x-rect.left-this.margin.left,y:clientPoint.y-rect.top-this.margin.top};},getDataPointAtChartPoint_:function(chartPoint){return{x:tr.b.clamp(this.xScale_.invert(chartPoint.x),this.xScale_.domain()[0],this.xScale_.domain()[1]),y:tr.b.clamp(this.yScale_.invert(chartPoint.y),this.yScale_.domain()[0],this.yScale_.domain()[1])};},getDataPointAtClientPoint_:function(clientX,clientY){var chartPoint=this.getChartPointAtClientPoint_({x:clientX,y:clientY});return this.getDataPointAtChartPoint_(chartPoint);},prepareDataEvent_:function(mouseEvent,dataEvent){var dataPoint=this.getDataPointAtClientPoint_(mouseEvent.clientX,mouseEvent.clientY);dataEvent.x=dataPoint.x;dataEvent.y=dataPoint.y;},onMouseDown_:function(mouseEvent){tr.ui.b.trackMouseMovesUntilMouseUp(this.onMouseMove_.bind(this,mouseEvent.button),this.onMouseUp_.bind(this,mouseEvent.button));mouseEvent.preventDefault();mouseEvent.stopPropagation();var dataEvent=new tr.b.Event('item-mousedown');dataEvent.button=mouseEvent.button;Polymer.dom(this).classList.add('updating-brushing-state');this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);},onMouseMove_:function(button,mouseEvent){if(mouseEvent.buttons!==undefined){mouseEvent.preventDefault();mouseEvent.stopPropagation();}
 var dataEvent=new tr.b.Event('item-mousemove');dataEvent.button=button;this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);},onMouseUp_:function(button,mouseEvent){mouseEvent.preventDefault();mouseEvent.stopPropagation();var dataEvent=new tr.b.Event('item-mouseup');dataEvent.button=button;this.prepareDataEvent_(mouseEvent,dataEvent);this.dispatchEvent(dataEvent);Polymer.dom(this).classList.remove('updating-brushing-state');}};return{ChartBase2D:ChartBase2D};});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase2D=tr.ui.b.ChartBase2D;var ChartBase2DBrushX=tr.ui.b.define('chart-base-2d-brush-1d',ChartBase2D);ChartBase2DBrushX.prototype={__proto__:ChartBase2D.prototype,decorate:function(){ChartBase2D.prototype.decorate.call(this);this.brushedRange_=new tr.b.Range();},set brushedRange(range){this.brushedRange_.reset();this.brushedRange_.addRange(range);this.updateContents_();},computeBrushRangeFromIndices:function(indexA,indexB){indexA=tr.b.clamp(indexA,0,this.data_.length-1);indexB=tr.b.clamp(indexB,0,this.data_.length-1);var leftIndex=Math.min(indexA,indexB);var rightIndex=Math.max(indexA,indexB);var r=new tr.b.Range();r.addValue(this.getXForDatum_(this.data_[leftIndex],leftIndex)-
 this.getSampleWidth_(this.data_,leftIndex,true));r.addValue(this.getXForDatum_(this.data_[rightIndex],rightIndex)+
 this.getSampleWidth_(this.data_,rightIndex,false));return r;},getDataIndex_:function(dataX){if(!this.data_)
 return undefined;var bisect=d3.bisector(this.getXForDatum_.bind(this)).right;return bisect(this.data_,dataX)-1;},prepareDataEvent_:function(mouseEvent,dataEvent){ChartBase2D.prototype.prepareDataEvent_.call(this,mouseEvent,dataEvent);dataEvent.index=this.getDataIndex_(dataEvent.x);if(dataEvent.index!==undefined)
-dataEvent.data=this.data_[dataEvent.index];},updateBrushContents_:function(brushSel){brushSel.selectAll('*').remove();var brushes=this.brushedRange_.isEmpty?[]:[this.brushedRange_];var brushRectsSel=brushSel.selectAll('rect').data(brushes);brushRectsSel.enter().append('rect');brushRectsSel.exit().remove();brushRectsSel.attr('x',function(d){return this.xScale_(d.min);}.bind(this)).attr('y',0).attr('width',function(d){return this.xScale_(d.max)-this.xScale_(d.min);}.bind(this)).attr('height',this.chartAreaSize.height);}};return{ChartBase2DBrushX:ChartBase2DBrushX};});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase2DBrushX=tr.ui.b.ChartBase2DBrushX;var LineChart=tr.ui.b.define('line-chart',ChartBase2DBrushX);LineChart.prototype={__proto__:ChartBase2DBrushX.prototype,decorate:function(){ChartBase2DBrushX.prototype.decorate.call(this);Polymer.dom(this).classList.add('line-chart');},isDatumFieldSeries_:function(fieldName){return fieldName!='x';},getXForDatum_:function(datum,index){return datum.x;},updateDataContents_:function(dataSel){dataSel.selectAll('*').remove();var dataBySeriesKey=this.getDataBySeriesKey_();var seriesKeys=[...this.seriesByKey_.keys()];var pathsSel=dataSel.selectAll('path').data(seriesKeys);pathsSel.enter().append('path').attr('class','line').style('stroke',function(key){return tr.ui.b.getColorOfKey(key);}).attr('d',function(key){var line=d3.svg.line().x(function(d){return this.xScale_(d.x);}.bind(this)).y(function(d){return this.yScale_(d[key]);}.bind(this));return line(dataBySeriesKey[key]);}.bind(this));pathsSel.exit().remove();}};return{LineChart:LineChart};});'use strict';Polymer({is:'tr-ui-e-s-input-latency-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.rangeOfInterest_=new tr.b.Range();this.frametimeType_=tr.model.helpers.IMPL_FRAMETIME_TYPE;this.latencyChart_=undefined;this.frametimeChart_=undefined;this.selectedProcessId_=undefined;this.mouseDownIndex_=undefined;this.curMouseIndex_=undefined;},get model(){return this.model_;},set model(model){this.model_=model;if(this.model_){this.modelHelper_=this.model_.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);}else{this.modelHelper_=undefined;}
+dataEvent.data=this.data_[dataEvent.index];},updateBrushContents_:function(brushSel){brushSel.selectAll('*').remove();var brushes=this.brushedRange_.isEmpty?[]:[this.brushedRange_];var brushRectsSel=brushSel.selectAll('rect').data(brushes);brushRectsSel.enter().append('rect');brushRectsSel.exit().remove();this.drawBrush_(brushRectsSel);},drawBrush_:function(brushRectsSel){brushRectsSel.attr('x',function(d){return this.xScale_(d.min);}.bind(this)).attr('y',0).attr('width',function(d){return this.xScale_(d.max)-this.xScale_(d.min);}.bind(this)).attr('height',this.chartAreaSize.height);}};return{ChartBase2DBrushX:ChartBase2DBrushX};});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase2DBrushX=tr.ui.b.ChartBase2DBrushX;var LineChart=tr.ui.b.define('line-chart',ChartBase2DBrushX);LineChart.prototype={__proto__:ChartBase2DBrushX.prototype,decorate:function(){ChartBase2DBrushX.prototype.decorate.call(this);Polymer.dom(this).classList.add('line-chart');},isDatumFieldSeries_:function(fieldName){return fieldName!='x';},getXForDatum_:function(datum,index){return datum.x;},updateDataContents_:function(dataSel){dataSel.selectAll('*').remove();var dataBySeriesKey=this.getDataBySeriesKey_();var seriesKeys=[...this.seriesByKey_.keys()];var pathsSel=dataSel.selectAll('path').data(seriesKeys);pathsSel.enter().append('path').attr('class','line').style('stroke',function(key){return this.getDataSeries(key).color;}.bind(this)).attr('d',function(key){var line=d3.svg.line().x(function(d){return this.xScale_(d.x);}.bind(this)).y(function(d){return this.yScale_(d[key]);}.bind(this));return line(dataBySeriesKey[key]);}.bind(this));pathsSel.exit().remove();}};return{LineChart:LineChart};});'use strict';Polymer({is:'tr-ui-e-s-input-latency-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.rangeOfInterest_=new tr.b.Range();this.frametimeType_=tr.model.helpers.IMPL_FRAMETIME_TYPE;this.latencyChart_=undefined;this.frametimeChart_=undefined;this.selectedProcessId_=undefined;this.mouseDownIndex_=undefined;this.curMouseIndex_=undefined;},get model(){return this.model_;},set model(model){this.model_=model;if(this.model_){this.modelHelper_=this.model_.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);}else{this.modelHelper_=undefined;}
 this.updateToolbar_();this.updateContents_();},get frametimeType(){return this.frametimeType_;},set frametimeType(type){if(this.frametimeType_===type)
 return;this.frametimeType_=type;this.updateContents_();},get selectedProcessId(){return this.selectedProcessId_;},set selectedProcessId(process){if(this.selectedProcessId_===process)
 return;this.selectedProcessId_=process;this.updateContents_();},set selection(selection){if(this.latencyChart_===undefined)
@@ -7547,15 +7613,18 @@
 if(frametimeData.length!=0){this.frametimeChart_=this.createLatencyLineChart(frametimeData,'Frame Times');Polymer.dom(resultArea).appendChild(this.frametimeChart_);}},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;this.updateContents_();},supportsModel:function(m){if(m==undefined){return{supported:false,reason:'Unknown tracing model'};}
 if(!tr.model.helpers.ChromeModelHelper.supportsModel(m)){return{supported:false,reason:'No Chrome browser or renderer process found'};}
 var modelHelper=m.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);if(modelHelper.browserHelper&&modelHelper.browserHelper.hasLatencyEvents){return{supported:true};}
-return{supported:false,reason:'No InputLatency events trace. Consider enabling '+'benchmark" and "input" category when recording the trace'};},get textLabel(){return'Input Latency';}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-input-latency-side-panel');});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase=tr.ui.b.ChartBase;var getColorOfKey=tr.ui.b.getColorOfKey;var MIN_RADIUS=100;var PieChart=tr.ui.b.define('pie-chart',ChartBase);PieChart.prototype={__proto__:ChartBase.prototype,decorate:function(){ChartBase.prototype.decorate.call(this);Polymer.dom(this).classList.add('pie-chart');this.data_=undefined;var chartAreaSel=d3.select(this.chartAreaElement);var pieGroupSel=chartAreaSel.append('g').attr('class','pie-group');this.pieGroup_=pieGroupSel.node();this.pathsGroup_=pieGroupSel.append('g').attr('class','paths').node();this.labelsGroup_=pieGroupSel.append('g').attr('class','labels').node();this.linesGroup_=pieGroupSel.append('g').attr('class','lines').node();},get data(){return this.data_;},get titleMarginPx(){return 40;},set data(data){if(data!==undefined){var seenSeriesKeys={};data.forEach(function(d){var k=d.label;if(seenSeriesKeys[k])
+return{supported:false,reason:'No InputLatency events trace. Consider enabling '+'benchmark" and "input" category when recording the trace'};},get textLabel(){return'Input Latency';}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-input-latency-side-panel');});'use strict';tr.exportTo('tr.ui.b',function(){var ChartBase=tr.ui.b.ChartBase;var MIN_RADIUS=100;var PieChart=tr.ui.b.define('pie-chart',ChartBase);PieChart.prototype={__proto__:ChartBase.prototype,decorate:function(){ChartBase.prototype.decorate.call(this);Polymer.dom(this).classList.add('pie-chart');this.data_=undefined;var chartAreaSel=d3.select(this.chartAreaElement);var pieGroupSel=chartAreaSel.append('g').attr('class','pie-group');this.pieGroup_=pieGroupSel.node();this.pathsGroup_=pieGroupSel.append('g').attr('class','paths').node();this.labelsGroup_=pieGroupSel.append('g').attr('class','labels').node();this.linesGroup_=pieGroupSel.append('g').attr('class','lines').node();},get data(){return this.data_;},get titleMarginPx(){return 40;},set data(data){if(data!==undefined){var seenSeriesKeys={};data.forEach(function(d){var k=d.label;if(seenSeriesKeys[k])
 throw new Error('Label '+k+' has been used already');this.getDataSeries(k);seenSeriesKeys[k]=true;},this);}
 this.data_=data;this.updateContents_();},getMinSize:function(){this.updateContents_();var labelSel=d3.select(this.labelsGroup_).selectAll('.label');var maxLabelWidth=-Number.MAX_VALUE;var leftTextHeightSum=0;var rightTextHeightSum=0;labelSel.each(function(l){var r=this.getBoundingClientRect();maxLabelWidth=Math.max(maxLabelWidth,r.width+32);if(this.style.textAnchor=='end'){leftTextHeightSum+=r.height;}else{rightTextHeightSum+=r.height;}});var titleWidth=Polymer.dom(this).querySelector('#title').getBoundingClientRect().width;var margin=this.margin;var marginWidth=margin.left+margin.right;var marginHeight=margin.top+margin.bottom;return{width:Math.max(2*MIN_RADIUS+2*maxLabelWidth,titleWidth*1.1)+marginWidth,height:marginHeight+Math.max(2*MIN_RADIUS,leftTextHeightSum,rightTextHeightSum)*1.25};},updateScales_:function(width,height){if(this.data_===undefined)
 return;},updateContents_:function(){ChartBase.prototype.updateContents_.call(this);if(!this.data_)
 return;var width=this.chartAreaSize.width;var height=this.chartAreaSize.height;var radius=Math.max(MIN_RADIUS,Math.min(width,height*0.95)/2);d3.select(this.pieGroup_).attr('transform','translate('+width/2+','+height/2+')');var pieLayout=d3.layout.pie().value(function(d){return d.value;}).sort(null);var piePathsSel=d3.select(this.pathsGroup_).datum(this.data_).selectAll('path').data(pieLayout);function midAngle(d){return d.startAngle+(d.endAngle-d.startAngle)/2;}
-var pathsArc=d3.svg.arc().innerRadius(0).outerRadius(radius-30);var valueLabelArc=d3.svg.arc().innerRadius(radius-100).outerRadius(radius-30);var lineBeginArc=d3.svg.arc().innerRadius(radius-50).outerRadius(radius-50);var lineEndArc=d3.svg.arc().innerRadius(radius).outerRadius(radius);piePathsSel.enter().append('path').attr('class','arc').attr('fill',function(d,i){var origData=this.data_[i];var highlighted=(origData.label===this.currentHighlightedLegendKey);return getColorOfKey(origData.label,highlighted);}.bind(this)).attr('d',pathsArc).on('click',function(d,i){var origData=this.data_[i];var event=new tr.b.Event('item-click');event.data=origData;event.index=i;this.dispatchEvent(event);d3.event.stopPropagation();}.bind(this)).on('mouseenter',function(d,i){var origData=this.data_[i];this.pushTempHighlightedLegendKey(origData.label);}.bind(this)).on('mouseleave',function(d,i){var origData=this.data_[i];this.popTempHighlightedLegendKey(origData.label);}.bind(this));piePathsSel.enter().append('text').attr('class','arc-text').attr('transform',function(d){return'translate('+valueLabelArc.centroid(d)+')';}).attr('dy','.35em').style('text-anchor','middle').on('mouseenter',function(d,i){var origData=this.data_[i];this.pushTempHighlightedLegendKey(origData.label);}.bind(this)).on('mouseleave',function(d,i){var origData=this.data_[i];this.popTempHighlightedLegendKey(origData.label);}.bind(this)).text(function(d,i){var origData=this.data_[i];if(origData.valueText===undefined)
+var pathsArc=d3.svg.arc().innerRadius(0).outerRadius(radius-30);var valueLabelArc=d3.svg.arc().innerRadius(radius-100).outerRadius(radius-30);var lineBeginArc=d3.svg.arc().innerRadius(radius-50).outerRadius(radius-50);var lineEndArc=d3.svg.arc().innerRadius(radius).outerRadius(radius);piePathsSel.enter().append('path').attr('class','arc').attr('fill',function(d,i){var origData=this.data_[i];var dataSeries=this.getDataSeries(origData.label);if(origData.label===this.currentHighlightedLegendKey)
+return dataSeries.highlightedColor;return dataSeries.color;}.bind(this)).attr('d',pathsArc).on('click',function(d,i){var origData=this.data_[i];var event=new tr.b.Event('item-click');event.data=origData;event.index=i;this.dispatchEvent(event);d3.event.stopPropagation();}.bind(this)).on('mouseenter',function(d,i){var origData=this.data_[i];this.pushTempHighlightedLegendKey(origData.label);}.bind(this)).on('mouseleave',function(d,i){var origData=this.data_[i];this.popTempHighlightedLegendKey(origData.label);}.bind(this));piePathsSel.enter().append('text').attr('class','arc-text').attr('transform',function(d){return'translate('+valueLabelArc.centroid(d)+')';}).attr('dy','.35em').style('text-anchor','middle').on('mouseenter',function(d,i){var origData=this.data_[i];this.pushTempHighlightedLegendKey(origData.label);}.bind(this)).on('mouseleave',function(d,i){var origData=this.data_[i];this.popTempHighlightedLegendKey(origData.label);}.bind(this)).text(function(d,i){var origData=this.data_[i];if(origData.valueText===undefined)
 return'';if(d.endAngle-d.startAngle<0.4)
 return'';return origData.valueText;}.bind(this));piePathsSel.exit().remove();var labelSel=d3.select(this.labelsGroup_).selectAll('.label').data(pieLayout(this.data_));labelSel.enter().append('text').attr('class','label').attr('dy','.35em');labelSel.text(function(d){if(d.data.label.length>40)
-return d.data.label.substr(0,40)+'...';return d.data.label;});labelSel.attr('transform',function(d){var pos=lineEndArc.centroid(d);pos[0]=radius*(midAngle(d)<Math.PI?1:-1);return'translate('+pos+')';});labelSel.style('text-anchor',function(d){return midAngle(d)<Math.PI?'start':'end';});var lineSel=d3.select(this.linesGroup_).selectAll('.line').data(pieLayout(this.data_));lineSel.enter().append('polyline').attr('class','line').attr('dy','.35em');lineSel.attr('points',function(d){var pos=lineEndArc.centroid(d);pos[0]=radius*0.95*(midAngle(d)<Math.PI?1:-1);return[lineBeginArc.centroid(d),lineEndArc.centroid(d),pos];});},updateHighlight_:function(){ChartBase.prototype.updateHighlight_.call(this);var pathsGroupSel=d3.select(this.pathsGroup_);var that=this;pathsGroupSel.selectAll('.arc').each(function(d,i){var origData=that.data_[i];var highlighted=origData.label==that.currentHighlightedLegendKey;var color=getColorOfKey(origData.label,highlighted);this.style.fill=color;});}};return{PieChart:PieChart};});'use strict';(function(){var GROUP_BY_PROCESS_NAME='process';var GROUP_BY_THREAD_NAME='thread';var WALL_TIME_GROUPING_UNIT='Wall time';var CPU_TIME_GROUPING_UNIT='CPU time';function ResultsForGroup(model,name){this.model=model;this.name=name;this.topLevelSlices=[];this.allSlices=[];}
+return d.data.label.substr(0,40)+'...';return d.data.label;});labelSel.attr('transform',function(d){var pos=lineEndArc.centroid(d);pos[0]=radius*(midAngle(d)<Math.PI?1:-1);return'translate('+pos+')';});labelSel.style('text-anchor',function(d){return midAngle(d)<Math.PI?'start':'end';});var lineSel=d3.select(this.linesGroup_).selectAll('.line').data(pieLayout(this.data_));lineSel.enter().append('polyline').attr('class','line').attr('dy','.35em');lineSel.attr('points',function(d){var pos=lineEndArc.centroid(d);pos[0]=radius*0.95*(midAngle(d)<Math.PI?1:-1);return[lineBeginArc.centroid(d),lineEndArc.centroid(d),pos];});},updateHighlight_:function(){ChartBase.prototype.updateHighlight_.call(this);var pathsGroupSel=d3.select(this.pathsGroup_);var that=this;pathsGroupSel.selectAll('.arc').each(function(d,i){var origData=that.data_[i];var dataSeries=that.getDataSeries(origData.label);if(origData.label==that.currentHighlightedLegendKey)
+this.style.fill=dataSeries.highlightedColor;else
+this.style.fill=dataSeries.color;});}};return{PieChart:PieChart};});'use strict';(function(){var GROUP_BY_PROCESS_NAME='process';var GROUP_BY_THREAD_NAME='thread';var WALL_TIME_GROUPING_UNIT='Wall time';var CPU_TIME_GROUPING_UNIT='CPU time';function ResultsForGroup(model,name){this.model=model;this.name=name;this.topLevelSlices=[];this.allSlices=[];}
 ResultsForGroup.prototype={get wallTime(){var wallSum=tr.b.Statistics.sum(this.topLevelSlices,function(x){return x.duration;});return wallSum;},get cpuTime(){var cpuDuration=0;for(var i=0;i<this.topLevelSlices.length;i++){var x=this.topLevelSlices[i];if(x.cpuDuration===undefined){if(x.duration===undefined)
 continue;return 0;}
 cpuDuration+=x.cpuDuration;}
@@ -7568,7 +7637,7 @@
 break;var v=getValue(group);if(v+getValue(otherGroup)>thresshold)
 break;groups.splice(0,1);otherGroup.appendGroupContents(group);}
 if(getValue(otherGroup)>0)
-groups.push(otherGroup);groups.sort(compareByValue);return groups;},generateResultsForGroup:function(model,name){return new ResultsForGroup(model,name);},createPieChartFromResultGroups:function(groups,title,getValue,opt_extraData){var chart=new tr.ui.b.PieChart();function pushDataForGroup(data,resultsForGroup,value){data.push({label:resultsForGroup.name,value:value,valueText:tr.v.Unit.byName.timeDurationInMs.format(value),resultsForGroup:resultsForGroup});}
+groups.push(otherGroup);groups.sort(compareByValue);return groups;},generateResultsForGroup:function(model,name){return new ResultsForGroup(model,name);},createPieChartFromResultGroups:function(groups,title,getValue,opt_extraData){var chart=new tr.ui.b.PieChart();function pushDataForGroup(data,resultsForGroup,value){data.push({label:resultsForGroup.name,value:value,valueText:tr.b.Unit.byName.timeDurationInMs.format(value),resultsForGroup:resultsForGroup});}
 chart.addEventListener('item-click',function(clickEvent){var resultsForGroup=clickEvent.data.resultsForGroup;if(resultsForGroup===undefined)
 return;var event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.model.EventSet(resultsForGroup.allSlices);event.selection.timeSummaryGroupName=resultsForGroup.name;chart.dispatchEvent(event);});var data=[];groups.forEach(function(resultsForGroup){var value=getValue(resultsForGroup);if(value===0)
 return;pushDataForGroup(data,resultsForGroup,value);});if(opt_extraData)
@@ -7585,7 +7654,7 @@
 rangeOfInterest=this.model_.bounds;else
 rangeOfInterest=this.rangeOfInterest_;var allGroup=this.generateResultsForGroup(this.model_,'all');var resultsByGroupName={};this.model_.getAllThreads().forEach(function(thread){var groupName=this.getGroupNameForThread_(thread);if(resultsByGroupName[groupName]===undefined){resultsByGroupName[groupName]=this.generateResultsForGroup(this.model_,groupName);}
 resultsByGroupName[groupName].appendThreadSlices(rangeOfInterest,thread);allGroup.appendThreadSlices(rangeOfInterest,thread);},this);var getValueFromGroup=function(group){if(this.groupingUnit_==WALL_TIME_GROUPING_UNIT)
-return group.wallTime;return group.cpuTime;}.bind(this);var summaryText=document.createElement('div');Polymer.dom(summaryText).appendChild(tr.ui.b.createSpan({textContent:'Total '+this.groupingUnit_+': ',bold:true}));Polymer.dom(summaryText).appendChild(tr.v.ui.createScalarSpan(getValueFromGroup(allGroup),{unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument}));Polymer.dom(resultArea).appendChild(summaryText);var extraValue=0;var extraData=[];if(this.showCpuIdleTime_&&this.groupingUnit_===CPU_TIME_GROUPING_UNIT&&this.model.kernel.bestGuessAtCpuCount!==undefined){var maxCpuTime=rangeOfInterest.range*this.model.kernel.bestGuessAtCpuCount;var idleTime=Math.max(0,maxCpuTime-allGroup.cpuTime);extraData.push({label:'CPU Idle',value:idleTime,valueText:tr.v.Unit.byName.timeDurationInMs.format(idleTime)});extraValue+=idleTime;}
+return group.wallTime;return group.cpuTime;}.bind(this);var summaryText=document.createElement('div');Polymer.dom(summaryText).appendChild(tr.ui.b.createSpan({textContent:'Total '+this.groupingUnit_+': ',bold:true}));Polymer.dom(summaryText).appendChild(tr.v.ui.createScalarSpan(getValueFromGroup(allGroup),{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument}));Polymer.dom(resultArea).appendChild(summaryText);var extraValue=0;var extraData=[];if(this.showCpuIdleTime_&&this.groupingUnit_===CPU_TIME_GROUPING_UNIT&&this.model.kernel.bestGuessAtCpuCount!==undefined){var maxCpuTime=rangeOfInterest.range*this.model.kernel.bestGuessAtCpuCount;var idleTime=Math.max(0,maxCpuTime-allGroup.cpuTime);extraData.push({label:'CPU Idle',value:idleTime,valueText:tr.b.Unit.byName.timeDurationInMs.format(idleTime)});extraValue+=idleTime;}
 var otherGroup=this.generateResultsForGroup(this.model_,'Other');var groups=this.trimPieChartData(tr.b.dictionaryValues(resultsByGroupName),otherGroup,getValueFromGroup,extraValue);if(groups.length==0){Polymer.dom(resultArea).appendChild(tr.ui.b.createSpan({textContent:'No data'}));return undefined;}
 this.chart_=this.createPieChartFromResultGroups(groups,this.groupingUnit_+' breakdown by '+this.groupBy_,getValueFromGroup,extraData);Polymer.dom(resultArea).appendChild(this.chart_);this.chart_.addEventListener('click',function(){var event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.c.EventSet([]);this.dispatchEvent(event);});this.chart_.setSize(this.chart_.getMinSize());},get selection(){return selection_;},set selection(selection){this.selection_=selection;if(this.chart_===undefined)
 return;if(selection.timeSummaryGroupName)
@@ -7665,7 +7734,12 @@
 ctx.fillRect(leftView,currentY-barHeight,Math.max(rightView-leftView,1),barHeight);currentY+=height;}}
 return currentY;},drawStatNames_:function(leftView,height,currentY,prefix,maxStats){var ctx=this.context();ctx.textAlign='end';ctx.font='12px Arial';ctx.fillStyle='#000000';for(var statName in maxStats){if(maxStats[statName]instanceof Object){currentY=this.drawStatNames_(leftView,height,currentY,statName,maxStats[statName]);}else{var fullname=statName;if(prefix!='')
 fullname=prefix+' :: '+statName;ctx.fillText(fullname,leftView-10,currentY-height/4);currentY+=height;}}
-return currentY;}};tr.ui.tracks.ObjectInstanceTrack.register(SystemStatsInstanceTrack,{typeName:'base::TraceEventSystemStatsMonitor::SystemStats'});return{SystemStatsInstanceTrack:SystemStatsInstanceTrack};});'use strict';tr.exportTo('tr.c',function(){function ScriptingObject(){}
+return currentY;}};tr.ui.tracks.ObjectInstanceTrack.register(SystemStatsInstanceTrack,{typeName:'base::TraceEventSystemStatsMonitor::SystemStats'});return{SystemStatsInstanceTrack:SystemStatsInstanceTrack};});'use strict';tr.exportTo('tr.ui.e.v8',function(){function handleCodeSearch_(event){if(event.target.parentNode===undefined)return;var name=event.target.parentNode.entryName;var url='https://cs.chromium.org/search/?sq=package:chromium&type=cs&q=';if(name.startsWith('API_'))name=name.substring(4);url+=encodeURIComponent(name)+'+file:src/v8/src';window.open(url,'_blank');}
+var Entry=function(name,count,time){this.name_=name;this.count_=count;this.time_=time;};Entry.prototype={__proto__:Object.prototype,get name(){return this.name_;},get count(){return this.count_;},get time(){return this.time_;},accumulate:function(count,time){this.count_+=count;this.time_+=time;},reset:function(){this.count_=0;this.time_=0;}};var GroupedEntry=function(name,match_regex){Entry.call(this,name,0,0);this.regex_=match_regex;this.entries_=new Map();};GroupedEntry.prototype={__proto__:Entry.prototype,match:function(name){return this.regex_&&!(!name.match(this.regex_));},add:function(entry){var value=this.entries_.get(entry.name);if(value!==undefined)
+value.accumulate(entry.count,entry.time);else
+this.entries_.set(entry.name,entry);this.count_+=entry.count;this.time_+=entry.time;},get subRows(){return Array.from(this.entries_.values());},reset:function(entry){this.time_=0;this.count_=0;this.entries_.clear();}};Polymer({is:'tr-ui-e-v8-runtime-call-stats-table',ready:function(){this.table_=this.$.table;this.totalTime_=0;},constructTable_:function(){var totalTime=this.totalTime_;this.table_.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.table_.tableColumns=[{title:'Name',value:function(row){var typeEl=document.createElement('span');typeEl.innerText=row.name;if(!(row instanceof GroupedEntry)){typeEl.title='click ? for code search';typeEl.entryName=row.name;var codeSearchEl=document.createElement('span');codeSearchEl.innerText='?';codeSearchEl.style.float='right';codeSearchEl.style.borderRadius='5px';codeSearchEl.style.backgroundColor='#EEE';codeSearchEl.addEventListener('click',handleCodeSearch_.bind(this));typeEl.appendChild(codeSearchEl);}
+return typeEl;},width:'200px',showExpandButtons:true},{title:'Time',value:function(row){var typeEl=document.createElement('span');typeEl.innerText=(row.time/1000.0).toFixed(3)+' ms';return typeEl;},width:'100px',cmp:function(a,b){return a.time-b.time;}},{title:'Count',value:function(row){var typeEl=document.createElement('span');typeEl.innerText=row.count;return typeEl;},width:'100px',cmp:function(a,b){return a.count-b.count;}},{title:'Percent',value:function(row){var typeEl=document.createElement('span');typeEl.innerText=(row.time/totalTime*100).toFixed(3)+'%';return typeEl;},width:'100px',cmp:function(a,b){return a.time-b.time;}}];this.table_.sortColumnIndex=1;this.table_.sortDescending=true;},set slices(slices){var groups=new Array(new GroupedEntry('Total'),new GroupedEntry('IC',/.*IC.*/),new GroupedEntry('Optimize',/StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*/),new GroupedEntry('Compile',/.*Compile.*/),new GroupedEntry('Parse',/.*Parse.*/),new GroupedEntry('Callback',/.*Callback$/),new GroupedEntry('API',/.*API.*/),new GroupedEntry('GC',/GC|AllocateInTargetSpace/),new GroupedEntry('JavaScript',/JS_Execution/),new GroupedEntry('Runtime',/.*/));slices.forEach(function(slice){if(!(slice instanceof tr.e.v8.V8ThreadSlice))return;try{var runtimeCallStats=JSON.parse(slice.runtimeCallStats);}catch(e){var runtimeCallStats=slice.runtimeCallStats;}
+if(runtimeCallStats!==undefined){Object.getOwnPropertyNames(runtimeCallStats).forEach(function(runtimeCallStatName){for(var i=1;i<groups.length;++i){if(groups[i].match(runtimeCallStatName)){var runtimeCallStat=runtimeCallStats[runtimeCallStatName];if(runtimeCallStat.length!==2)break;var entry=new Entry(runtimeCallStatName,runtimeCallStat[0],runtimeCallStat[1]);groups[0].accumulate(runtimeCallStat[0],runtimeCallStat[1]);groups[i].add(entry);break;}}},this);}},this);this.totalTime_=groups[0].time;if(this.totalTime_>0){this.constructTable_();this.table_.tableRows=groups;this.table_.rebuild();}}});return{};});'use strict';Polymer({is:'tr-ui-e-multi-v8-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.runtimeCallStats.slices=selection;this.$.content.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-multi-v8-thread-slice-sub-view',tr.e.v8.V8ThreadSlice,{multi:true,title:'V8 slices'});'use strict';Polymer({is:'tr-ui-e-single-v8-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.runtimeCallStats.slices=selection;this.$.content.selection=selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-e-single-v8-thread-slice-sub-view',tr.e.v8.V8ThreadSlice,{multi:false,title:'V8 slice'});'use strict';tr.exportTo('tr.c',function(){function ScriptingObject(){}
 ScriptingObject.prototype={onModelChanged:function(model){}};return{ScriptingObject:ScriptingObject};});'use strict';tr.exportTo('tr.c',function(){function ScriptingController(brushingStateController){this.brushingStateController_=brushingStateController;this.scriptObjectNames_=[];this.scriptObjectValues_=[];this.brushingStateController.addEventListener('model-changed',this.onModelChanged_.bind(this));var typeInfos=ScriptingObjectRegistry.getAllRegisteredTypeInfos();typeInfos.forEach(function(typeInfo){this.addScriptObject(typeInfo.metadata.name,typeInfo.constructor);global[typeInfo.metadata.name]=typeInfo.constructor;},this);}
 function ScriptingObjectRegistry(){}
 var options=new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);tr.b.decorateExtensionRegistry(ScriptingObjectRegistry,options);ScriptingController.prototype={get brushingStateController(){return this.brushingStateController_;},onModelChanged_:function(){this.scriptObjectValues_.forEach(function(v){if(v.onModelChanged)
@@ -7716,16 +7790,18 @@
 return{findParent:findParent,groupAndProcessEvents:groupAndProcessEvents,isForcedGarbageCollectionEvent:isForcedGarbageCollectionEvent,isGarbageCollectionEvent:isGarbageCollectionEvent,isIdleTask:isIdleTask,isLowMemoryEvent:isLowMemoryEvent,isSubGarbageCollectionEvent:isSubGarbageCollectionEvent,isTopGarbageCollectionEvent:isTopGarbageCollectionEvent,isTopV8ExecuteEvent:isTopV8ExecuteEvent,isV8ExecuteEvent:isV8ExecuteEvent,mutatorUtilization:mutatorUtilization,subGarbageCollectionEventName:subGarbageCollectionEventName,topGarbageCollectionEventName:topGarbageCollectionEventName,rangeForMemoryDumps:rangeForMemoryDumps,unionOfIntervals:unionOfIntervals};});'use strict';tr.exportTo('tr.metrics.blink',function(){var BLINK_GC_EVENTS={'BlinkGCMarking':'blink-gc-marking','ThreadState::completeSweep':'blink-gc-complete-sweep','ThreadState::performIdleLazySweep':'blink-gc-idle-lazy-sweep'};function isBlinkGarbageCollectionEvent(event){return event.title in BLINK_GC_EVENTS;}
 function blinkGarbageCollectionEventName(event){return BLINK_GC_EVENTS[event.title];}
 function blinkGcMetric(values,model){addDurationOfTopEvents(values,model);addTotalDurationOfTopEvents(values,model);addIdleTimesOfTopEvents(values,model);addTotalIdleTimesOfTopEvents(values,model);}
-tr.metrics.MetricRegistry.register(blinkGcMetric);var timeDurationInMs_smallerIsBetter=tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;var percentage_biggerIsBetter=tr.v.Unit.byName.normalizedPercentage_biggerIsBetter;var numericBuilder=new tr.v.NumericBuilder(timeDurationInMs_smallerIsBetter,0);numericBuilder.addLinearBins(20,200);numericBuilder.addExponentialBins(200,100);function createNumericForTopEventTime(){var n=numericBuilder.build();n.customizeSummaryOptions({avg:true,count:true,max:true,min:false,std:true,sum:true,percentile:[0.90]});return n;}
-function createNumericForIdleTime(){var n=numericBuilder.build();n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:true,percentile:[]});return n;}
-function createPercentage(numerator,denominator){var percentage=denominator===0?0:numerator/denominator*100;return new tr.v.ScalarNumeric(percentage_biggerIsBetter,percentage);}
-function addDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,blinkGarbageCollectionEventName,function(name,events){var cpuDuration=createNumericForTopEventTime();events.forEach(function(event){cpuDuration.add(event.cpuDuration);});values.addValue(new tr.v.NumericValue(name,cpuDuration));});}
-function addTotalDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,event=>'blink-gc-total',function(name,events){var cpuDuration=createNumericForTopEventTime();events.forEach(function(event){cpuDuration.add(event.cpuDuration);});values.addValue(new tr.v.NumericValue(name,cpuDuration));});}
+tr.metrics.MetricRegistry.register(blinkGcMetric);var timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;var percentage_biggerIsBetter=tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;var CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(0,20,200).addExponentialBins(200,100);function createNumericForTopEventTime(name){var n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:true,max:true,min:false,std:true,sum:true,percentile:[0.90]});return n;}
+function createNumericForIdleTime(name){var n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:true,percentile:[]});return n;}
+function createPercentage(name,numerator,denominator){var histogram=new tr.v.Histogram(name,percentage_biggerIsBetter);if(denominator===0)
+histogram.addSample(0);else
+histogram.addSample(numerator/denominator);return histogram;}
+function addDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,blinkGarbageCollectionEventName,function(name,events){var cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});values.addHistogram(cpuDuration);});}
+function addTotalDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,event=>'blink-gc-total',function(name,events){var cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});values.addHistogram(cpuDuration);});}
 function addIdleTimesOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,blinkGarbageCollectionEventName,function(name,events){addIdleTimes(values,model,name,events);});}
 function addTotalIdleTimesOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isBlinkGarbageCollectionEvent,event=>'blink-gc-total',function(name,events){addIdleTimes(values,model,name,events);});}
-function addIdleTimes(values,model,name,events){var cpuDuration=createNumericForIdleTime();var insideIdle=createNumericForIdleTime();var outsideIdle=createNumericForIdleTime();var idleDeadlineOverrun=createNumericForIdleTime();events.forEach(function(event){var idleTask=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isIdleTask);var inside=0;var overrun=0;if(idleTask){var allottedTime=idleTask['args']['allotted_time_ms'];if(event.duration>allottedTime){overrun=event.duration-allottedTime;inside=event.cpuDuration*allottedTime/event.duration;}else{inside=event.cpuDuration;}}
-cpuDuration.add(event.cpuDuration);insideIdle.add(inside);outsideIdle.add(event.cpuDuration-inside);idleDeadlineOverrun.add(overrun);});values.addValue(new tr.v.NumericValue(name+'_idle_deadline_overrun',idleDeadlineOverrun));values.addValue(new tr.v.NumericValue(name+'_outside_idle',outsideIdle));var percentage=createPercentage(insideIdle.sum,cpuDuration.sum);values.addValue(new tr.v.NumericValue(name+'_percentage_idle',percentage));}
-return{blinkGcMetric:blinkGcMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){var CPU_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.normalizedPercentage_smallerIsBetter,tr.b.Range.fromExplicitRange(0,100),20);function getCpuSnapshotsFromModel(model){var snapshots=[];for(var pid in model.processes){var snapshotInstances=model.processes[pid].objects.getAllInstancesNamed('CPUSnapshots');if(!snapshotInstances)
+function addIdleTimes(values,model,name,events){var cpuDuration=createNumericForIdleTime(name+'_cpu');var insideIdle=createNumericForIdleTime(name+'_inside_idle');var outsideIdle=createNumericForIdleTime(name+'_outside_idle');var idleDeadlineOverrun=createNumericForIdleTime(name+'_idle_deadline_overrun');events.forEach(function(event){var idleTask=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isIdleTask);var inside=0;var overrun=0;if(idleTask){var allottedTime=idleTask['args']['allotted_time_ms'];if(event.duration>allottedTime){overrun=event.duration-allottedTime;inside=event.cpuDuration*allottedTime/event.duration;}else{inside=event.cpuDuration;}}
+cpuDuration.addSample(event.cpuDuration);insideIdle.addSample(inside);outsideIdle.addSample(event.cpuDuration-inside);idleDeadlineOverrun.addSample(overrun);});values.addHistogram(idleDeadlineOverrun);values.addHistogram(outsideIdle);var percentage=createPercentage(name+'_percentage_idle',insideIdle.sum,cpuDuration.sum);values.addHistogram(percentage);}
+return{blinkGcMetric:blinkGcMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function getCpuSnapshotsFromModel(model){var snapshots=[];for(var pid in model.processes){var snapshotInstances=model.processes[pid].objects.getAllInstancesNamed('CPUSnapshots');if(!snapshotInstances)
 continue;for(var object of snapshotInstances[0].snapshots)
 snapshots.push(object.args.processes);}
 return snapshots;}
@@ -7733,16 +7809,16 @@
 processSums.set(processName,{sum:0.0,paths:new Set()});processSums.get(processName).sum+=parseFloat(processData.pCpu);if(processData.path)
 processSums.get(processName).paths.add(processData.path);}
 return processSums;}
-function buildNumericsFromSnapshots(snapshots){var processNumerics=new Map();for(var snapshot of snapshots){var processSums=getProcessSumsFromSnapshot(snapshot);for(var[processName,processData]of processSums.entries()){if(!(processNumerics.has(processName))){processNumerics.set(processName,{numeric:CPU_NUMERIC_BUILDER.build(),paths:new Set()});}
-processNumerics.get(processName).numeric.add(processData.sum);for(var path of processData.paths)
+function buildNumericsFromSnapshots(snapshots){var processNumerics=new Map();for(var snapshot of snapshots){var processSums=getProcessSumsFromSnapshot(snapshot);for(var[processName,processData]of processSums.entries()){if(!(processNumerics.has(processName))){processNumerics.set(processName,{numeric:new tr.v.Histogram('cpu:percent:'+processName,tr.b.Unit.byName.normalizedPercentage_smallerIsBetter),paths:new Set()});}
+processNumerics.get(processName).numeric.addSample(processData.sum/100.0);for(var path of processData.paths)
 processNumerics.get(processName).paths.add(path);}}
 return processNumerics;}
-function cpuProcessMetric(values,model){var snapshots=getCpuSnapshotsFromModel(model);var processNumerics=buildNumericsFromSnapshots(snapshots);for(var[processName,processData]of processNumerics.entries()){var numeric=processData.numeric;var missingSnapshotCount=snapshots.length-numeric.numValues;for(var i=0;i<missingSnapshotCount;i++)
-numeric.add(0);var value=new tr.v.NumericValue('cpu:percent:'+processName,numeric);value.diagnostics.add('paths',new
-tr.v.d.Generic([...processData.paths]));values.addValue(value);}}
-tr.metrics.MetricRegistry.register(cpuProcessMetric);return{cpuProcessMetric:cpuProcessMetric};});'use strict';tr.exportTo('tr.metrics',function(){var sizeInBytes_smallerIsBetter=tr.v.Unit.byName.sizeInBytes_smallerIsBetter;var SIZE_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(sizeInBytes_smallerIsBetter,tr.b.Range.fromExplicitRange(1,100),100);function sampleMetric(values,model){var n1=new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter,1);var n2=new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter,2);var n3=SIZE_NUMERIC_BUILDER.build();n3.add(1);values.addValue(new tr.v.NumericValue('foo',n1));values.addValue(new tr.v.NumericValue('bar',n2));values.addValue(new tr.v.NumericValue('baz',n3));}
-function sampleMetric2(values,model){var n1=new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter,1);var n2=new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter,2);var n3=SIZE_NUMERIC_BUILDER.build();n3.add(1);values.addValue(new tr.v.NumericValue('one',n1));values.addValue(new tr.v.NumericValue('two',n2));values.addValue(new tr.v.NumericValue('three',n3));}
-tr.metrics.MetricRegistry.register(sampleMetric);tr.metrics.MetricRegistry.register(sampleMetric2);return{sampleMetric:sampleMetric,sampleMetric2:sampleMetric2};});'use strict';tr.exportTo('tr.metrics.sh',function(){function perceptualBlend(ir,index,score){return Math.exp(1-score);}
+function cpuProcessMetric(values,model){var snapshots=getCpuSnapshotsFromModel(model);var processNumerics=buildNumericsFromSnapshots(snapshots);for(var[processName,processData]of processNumerics){var numeric=processData.numeric;var missingSnapshotCount=snapshots.length-numeric.numValues;for(var i=0;i<missingSnapshotCount;i++)
+numeric.addSample(0);numeric.diagnostics.set('paths',new
+tr.v.d.Generic([...processData.paths]));values.addHistogram(numeric);}}
+tr.metrics.MetricRegistry.register(cpuProcessMetric);return{cpuProcessMetric:cpuProcessMetric};});'use strict';tr.exportTo('tr.metrics',function(){function sampleMetric(values,model){var hist=new tr.v.Histogram('foo',tr.b.Unit.byName.sizeInBytes_smallerIsBetter);hist.addSample(9);hist.addSample(91,{bar:new tr.v.d.Generic({hello:42})});for(var expectation of model.userModel.expectations){if(expectation instanceof tr.model.um.ResponseExpectation){}else if(expectation instanceof tr.model.um.AnimationExpectation){}else if(expectation instanceof tr.model.um.IdleExpectation){}else if(expectation instanceof tr.model.um.LoadExpectation){}}
+var chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);tr.b.iterItems(model.processes,function(pid,process){});values.addHistogram(hist);}
+tr.metrics.MetricRegistry.register(sampleMetric);return{sampleMetric:sampleMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function perceptualBlend(ir,index,score){return Math.exp(1-score);}
 function filterExpectationsByRange(irs,opt_range){var filteredExpectations=[];irs.forEach(function(ir){if(!(ir instanceof tr.model.um.UserExpectation))
 return;if(!opt_range||opt_range.intersectsExplicitRangeInclusive(ir.start,ir.end))
 filteredExpectations.push(ir);});return filteredExpectations;}
@@ -7754,28 +7830,27 @@
 continue;for(var marker of markers){var domain=marker.domainId;if(domain===tr.model.ClockDomainId.TELEMETRY)
 latency=(marker.endTs-marker.startTs);else
 targetDomain=domain.toLowerCase();}
-values.addValue(new tr.v.NumericValue('clock_sync_latency_'+targetDomain,new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,latency),{description:'Clock sync latency for domain '+targetDomain}));}};tr.metrics.MetricRegistry.register(clockSyncLatencyMetric);return{clockSyncLatencyMetric:clockSyncLatencyMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){var UNIT=tr.v.Unit.byName.normalizedPercentage_biggerIsBetter;var DESCRIPTION='Normalized CPU budget consumption';function efficiencyMetric(values,model){var scores=[];model.userModel.expectations.forEach(function(ue){var options={};options.description=DESCRIPTION;var score=undefined;if((ue.totalCpuMs===undefined)||(ue.totalCpuMs==0))
-return;var cpuFractionBudget=tr.b.Range.fromExplicitRange(0.5,1.5);if(ue instanceof tr.model.um.IdleExpectation){cpuFractionBudget=tr.b.Range.fromExplicitRange(0.1,1);}else if(ue instanceof tr.model.um.AnimationExpectation){cpuFractionBudget=tr.b.Range.fromExplicitRange(1,2);}
-var cpuMsBudget=tr.b.Range.fromExplicitRange(ue.duration*cpuFractionBudget.min,ue.duration*cpuFractionBudget.max);var normalizedCpu=tr.b.normalize(ue.totalCpuMs,cpuMsBudget.min,cpuMsBudget.max);score=1-tr.b.clamp(normalizedCpu,0,1);scores.push(score);values.addValue(new tr.v.NumericValue('efficiency',new tr.v.ScalarNumeric(UNIT,score),options));});var options={};options.description=DESCRIPTION;var overallScore=tr.b.Statistics.weightedMean(scores,tr.metrics.sh.perceptualBlend);if(overallScore===undefined)
-return;values.addValue(new tr.v.NumericValue('efficiency',new tr.v.ScalarNumeric(UNIT,overallScore),options));}
-tr.metrics.MetricRegistry.register(efficiencyMetric);return{efficiencyMetric:efficiencyMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){var LONG_TASK_MS=50;var LONGEST_TASK_MS=1000;var timeDurationInMs_smallerIsBetter=tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;function iterateLongTopLevelTasksOnThreadInRange(thread,opt_range,cb,opt_this){thread.sliceGroup.topLevelSlices.forEach(function(slice){if(opt_range&&!opt_range.intersectsExplicitRangeInclusive(slice.start,slice.end))
+var hist=new tr.v.Histogram('clock_sync_latency_'+targetDomain,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createExponential(1e-3,1e3,30));hist.description='Clock sync latency for domain '+targetDomain;hist.addSample(latency);values.addHistogram(hist);}}
+tr.metrics.MetricRegistry.register(clockSyncLatencyMetric);return{clockSyncLatencyMetric:clockSyncLatencyMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){var LONG_TASK_MS=50;var LONGEST_TASK_MS=1000;function iterateLongTopLevelTasksOnThreadInRange(thread,opt_range,cb,opt_this){thread.sliceGroup.topLevelSlices.forEach(function(slice){if(opt_range&&!opt_range.intersectsExplicitRangeInclusive(slice.start,slice.end))
 return;if(slice.duration<LONG_TASK_MS)
 return;cb.call(opt_this,slice);});}
 function iterateRendererMainThreads(model,cb,opt_this){var modelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);tr.b.dictionaryValues(modelHelper.rendererHelpers).forEach(function(rendererHelper){if(!rendererHelper.mainThread)
 return;cb.call(opt_this,rendererHelper.mainThread);});}
-var LONG_TASK_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,tr.b.Range.fromExplicitRange(LONG_TASK_MS,LONGEST_TASK_MS),50);var SLICE_NUMERIC_BUILDER=tr.v.NumericBuilder.createExponential(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,tr.b.Range.fromExplicitRange(0.1,LONGEST_TASK_MS),50);function longTasksMetric(values,model,opt_options){var rangeOfInterest=opt_options?opt_options.rangeOfInterest:undefined;var longTaskNumeric=LONG_TASK_NUMERIC_BUILDER.build();var slices=new tr.model.EventSet();iterateRendererMainThreads(model,function(thread){iterateLongTopLevelTasksOnThreadInRange(thread,rangeOfInterest,function(task){longTaskNumeric.add(task.duration,new tr.v.d.DiagnosticMap({relatedEvents:new tr.v.d.RelatedEventSet([task])}));slices.push(task);slices.addEventSet(task.descendentSlices);});});var options={description:'durations of long tasks'};var longTaskValue=new tr.v.NumericValue('long tasks',longTaskNumeric,options);values.addValue(longTaskValue);var composition=tr.v.d.Composition.buildFromEvents(values,'long tasks ',slices,SLICE_NUMERIC_BUILDER,e=>(model.getUserFriendlyCategoryFromEvent(e)||'unknown'));longTaskValue.diagnostics.add('category',composition);}
-tr.metrics.MetricRegistry.register(longTasksMetric,{supportsRangeOfInterest:true});return{longTasksMetric:longTasksMetric,iterateLongTopLevelTasksOnThreadInRange:iterateLongTopLevelTasksOnThreadInRange,iterateRendererMainThreads:iterateRendererMainThreads,LONG_TASK_MS:LONG_TASK_MS,LONGEST_TASK_MS:LONGEST_TASK_MS};});'use strict';tr.exportTo('tr.metrics.sh',function(){var normalizedPercentage_smallerIsBetter=tr.v.Unit.byName.normalizedPercentage_smallerIsBetter;var MS_PER_S=1000;var RESPONSE_RISK=tr.b.Statistics.LogNormalDistribution.fromMedianAndDiminishingReturns(100/MS_PER_S,50/MS_PER_S);function computeResponsivenessRisk(durationMs){durationMs+=16;return RESPONSE_RISK.computePercentile(durationMs/MS_PER_S);}
+function longTasksMetric(values,model,opt_options){var rangeOfInterest=opt_options?opt_options.rangeOfInterest:undefined;var longTaskNumeric=new tr.v.Histogram('long tasks',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(LONG_TASK_MS,LONGEST_TASK_MS,40));longTaskNumeric.description='durations of long tasks';var slices=new tr.model.EventSet();iterateRendererMainThreads(model,function(thread){iterateLongTopLevelTasksOnThreadInRange(thread,rangeOfInterest,function(task){longTaskNumeric.addSample(task.duration,{relatedEvents:new tr.v.d.RelatedEventSet([task])});slices.push(task);slices.addEventSet(task.descendentSlices);});});values.addHistogram(longTaskNumeric);var sampleForEvent=undefined;var composition=tr.v.d.Composition.buildFromEvents(values,'long tasks ',slices,e=>(model.getUserFriendlyCategoryFromEvent(e)||'unknown'),tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,sampleForEvent,tr.v.HistogramBinBoundaries.createExponential(1,LONGEST_TASK_MS,40));composition.colorScheme=tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;longTaskValue.diagnostics.set('category',composition);}
+tr.metrics.MetricRegistry.register(longTasksMetric,{supportsRangeOfInterest:true});return{longTasksMetric:longTasksMetric,iterateLongTopLevelTasksOnThreadInRange:iterateLongTopLevelTasksOnThreadInRange,iterateRendererMainThreads:iterateRendererMainThreads,LONG_TASK_MS:LONG_TASK_MS,LONGEST_TASK_MS:LONGEST_TASK_MS};});'use strict';tr.exportTo('tr.metrics.sh',function(){var MS_PER_S=1000;var RESPONSE_RISK=tr.b.Statistics.LogNormalDistribution.fromMedianAndDiminishingReturns(100/MS_PER_S,50/MS_PER_S);function computeResponsivenessRisk(durationMs){durationMs+=16;return RESPONSE_RISK.computePercentile(durationMs/MS_PER_S);}
 function perceptualBlendSmallerIsBetter(hazardScore){return Math.exp(hazardScore);}
 function computeHazardForLongTasksInRangeOnThread(thread,opt_range){var taskHazardScores=[];tr.metrics.sh.iterateLongTopLevelTasksOnThreadInRange(thread,opt_range,function(task){taskHazardScores.push(computeResponsivenessRisk(task.duration));});return tr.b.Statistics.weightedMean(taskHazardScores,perceptualBlendSmallerIsBetter);}
 function computeHazardForLongTasks(model){var threadHazardScores=[];tr.metrics.sh.iterateRendererMainThreads(model,function(thread){threadHazardScores.push(computeHazardForLongTasksInRangeOnThread(thread));});return tr.b.Statistics.weightedMean(threadHazardScores,perceptualBlendSmallerIsBetter);}
 function hazardMetric(values,model){var overallHazard=computeHazardForLongTasks(model);if(overallHazard===undefined)
-overallHazard=0;values.addValue(new tr.v.NumericValue('hazard',new tr.v.ScalarNumeric(normalizedPercentage_smallerIsBetter,overallHazard)));}
-tr.metrics.MetricRegistry.register(hazardMetric);return{hazardMetric:hazardMetric,computeHazardForLongTasksInRangeOnThread:computeHazardForLongTasksInRangeOnThread,computeHazardForLongTasks:computeHazardForLongTasks,computeResponsivenessRisk:computeResponsivenessRisk};});'use strict';tr.exportTo('tr.metrics.sh',function(){var RESPONSIVENESS_THRESHOLD=50;var INTERACTIVE_WINDOW_SIZE=5*1000;var timeDurationInMs_smallerIsBetter=tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;function hasCategoryAndName(event,category,title){return event.title===title&&event.category&&tr.b.getCategoryParts(event.category).indexOf(category)!==-1;}
+overallHazard=0;var hist=new tr.v.Histogram('hazard',tr.b.Unit.byName.normalizedPercentage_smallerIsBetter);hist.addSample(overallHazard);values.addHistogram(hist);}
+tr.metrics.MetricRegistry.register(hazardMetric);return{hazardMetric:hazardMetric,computeHazardForLongTasksInRangeOnThread:computeHazardForLongTasksInRangeOnThread,computeHazardForLongTasks:computeHazardForLongTasks,computeResponsivenessRisk:computeResponsivenessRisk};});'use strict';tr.exportTo('tr.metrics.sh',function(){var RESPONSIVENESS_THRESHOLD=50;var INTERACTIVE_WINDOW_SIZE=5*1000;var timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;var RelatedEventSet=tr.v.d.RelatedEventSet;function hasCategoryAndName(event,category,title){return event.title===title&&event.category&&tr.b.getCategoryParts(event.category).indexOf(category)!==-1;}
 function findTargetRendererHelper(chromeHelper){var largestPid=-1;for(var pid in chromeHelper.rendererHelpers){var rendererHelper=chromeHelper.rendererHelpers[pid];if(rendererHelper.isChromeTracingUI)
 continue;if(pid>largestPid)
 largestPid=pid;}
 if(largestPid===-1)
 return undefined;return chromeHelper.rendererHelpers[largestPid];}
+function createBreakdownDiagnostic(rendererHelper,start,end){var breakdownDict=rendererHelper.generateTimeBreakdownTree(start,end);var breakdownDiagnostic=new tr.v.d.Breakdown();breakdownDiagnostic.colorScheme=tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;for(var label in breakdownDict){breakdownDiagnostic.set(label,breakdownDict[label].total);}
+return breakdownDiagnostic;}
 function NavigationStartFinder(rendererHelper){this.navigationStartsForFrameId_={};for(var ev of rendererHelper.mainThread.sliceGroup.childEvents()){if(!hasCategoryAndName(ev,'blink.user_timing','navigationStart'))
 continue;var frameIdRef=ev.args['frame'];var list=this.navigationStartsForFrameId_[frameIdRef];if(list===undefined)
 this.navigationStartsForFrameId_[frameIdRef]=list=[];list.unshift(ev);}}
@@ -7785,14 +7860,7 @@
 continue;if(eventBeforeTimestamp===undefined)
 eventBeforeTimestamp=ev;}
 if(eventBeforeTimestamp===undefined){console.warn('Failed to find navigationStartEvent.');return undefined;}
-return eventBeforeTimestamp;}};function PaintFinder(rendererHelper){this.paintsForFrameId_={};for(var ev of rendererHelper.mainThread.sliceGroup.childEvents()){if(!hasCategoryAndName(ev,'devtools.timeline','Paint'))
-continue;var frameIdRef=ev.args['data']['frame'];var list=this.paintsForFrameId_[frameIdRef];if(list===undefined)
-this.paintsForFrameId_[frameIdRef]=list=[];list.push(ev);}}
-PaintFinder.prototype={findPaintEventForFrameAfterTimestamp:function(frameIdRef,ts){var list=this.paintsForFrameId_[frameIdRef];if(list===undefined)
-return undefined;var eventAfterTimestamp;for(var ev of list){if(ev.start<ts)
-continue;if(eventAfterTimestamp===undefined)
-eventAfterTimestamp=ev;}
-return eventAfterTimestamp;}};var FIRST_PAINT_NUMERIC_BUILDER=new tr.v.NumericBuilder(timeDurationInMs_smallerIsBetter,0).addLinearBins(1000,20).addLinearBins(3000,20).addExponentialBins(20000,20);function createHistogram(){var histogram=FIRST_PAINT_NUMERIC_BUILDER.build();histogram.customizeSummaryOptions({avg:true,count:false,max:true,min:true,std:true,sum:false,percentile:[0.90,0.95,0.99],});return histogram;}
+return eventBeforeTimestamp;}};var FIRST_PAINT_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(0,1e3,20).addLinearBins(3e3,20).addExponentialBins(20e3,20);function createHistogram(name){var histogram=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,FIRST_PAINT_BOUNDARIES);histogram.customizeSummaryOptions({avg:true,count:false,max:true,min:true,std:true,sum:false,percentile:[0.90,0.95,0.99],});return histogram;}
 function findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,ts){var snapshot;var objects=rendererHelper.process.objects;var frameLoaderInstances=objects.instancesByTypeName_['FrameLoader'];if(frameLoaderInstances===undefined){console.warn('Failed to find FrameLoader for frameId "'+frameIdRef+'" at ts '+ts+', the trace maybe incomplete or from an old'+'Chrome.');return undefined;}
 var snapshot;for(var instance of frameLoaderInstances){if(!instance.isAliveAt(ts))
 continue;var maybeSnapshot=instance.getSnapshotAt(ts);if(frameIdRef!==maybeSnapshot.args['frame']['id_ref'])
@@ -7801,13 +7869,12 @@
 function findAllUserTimingEvents(rendererHelper,title){var targetEvents=[];for(var ev of rendererHelper.process.getDescendantEvents()){if(!hasCategoryAndName(ev,'blink.user_timing',title))
 continue;targetEvents.push(ev);}
 return targetEvents;}
-function findAllLayoutEvents(rendererHelper){var isTelemetryInternalEvent=prepareTelemetryInternalEventPredicate(rendererHelper);var layoutsForFrameId={};for(var ev of rendererHelper.process.getDescendantEvents()){if(!hasCategoryAndName(ev,'disabled-by-default-blink.debug.layout','FrameView::performLayout')){continue;}
-if(isTelemetryInternalEvent(ev))
-continue;if(ev.args.counters===undefined){console.warn('Ignoring FrameView::performLayout event with no '+'counters arg (END event is missing).');continue;}
-var frameIdRef=ev.args.counters['frame'];if(frameIdRef===undefined)
-continue;var list=layoutsForFrameId[frameIdRef];if(list===undefined)
-layoutsForFrameId[frameIdRef]=list=[];list.push(ev);}
-return layoutsForFrameId;}
+function findFirstMeaningfulPaintCandidates(rendererHelper){var isTelemetryInternalEvent=prepareTelemetryInternalEventPredicate(rendererHelper);var candidatesForFrameId={};for(var ev of rendererHelper.process.getDescendantEvents()){if(!hasCategoryAndName(ev,'loading','firstMeaningfulPaintCandidate'))
+continue;if(isTelemetryInternalEvent(ev))
+continue;var frameIdRef=ev.args['frame'];if(frameIdRef===undefined)
+continue;var list=candidatesForFrameId[frameIdRef];if(list===undefined)
+candidatesForFrameId[frameIdRef]=list=[];list.push(ev);}
+return candidatesForFrameId;}
 function prepareTelemetryInternalEventPredicate(rendererHelper){var ignoreRegions=[];var internalRegionStart;for(var slice of
 rendererHelper.mainThread.asyncSliceGroup.getDescendantEvents()){if(!!slice.title.match(/^telemetry\.internal\.[^.]*\.start$/))
 internalRegionStart=slice.start;if(!!slice.title.match(/^telemetry\.internal\.[^.]*\.end$/)){var timedEvent=new tr.model.TimedEvent(internalRegionStart);timedEvent.duration=slice.end-internalRegionStart;ignoreRegions.push(timedEvent);}}
@@ -7815,31 +7882,28 @@
 if(region.bounds(slice))
 return true;return false;}}
 var URL_BLACKLIST=['about:blank','data:text/html,pluginplaceholderdata'];function shouldIgnoreURL(url){return URL_BLACKLIST.indexOf(url)>=0;}
-var METRICS=[{valueName:'timeToFirstContentfulPaint',title:'firstContentfulPaint',description:'time to first contentful paint'},{valueName:'timeToOnload',title:'loadEventStart',description:'time to onload. '+'This is temporary metric used for PCv1/v2 sanity checking'}];function timeToFirstContentfulPaintMetric(values,model){var chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);var rendererHelper=findTargetRendererHelper(chromeHelper);var isTelemetryInternalEvent=prepareTelemetryInternalEventPredicate(rendererHelper);var navigationStartFinder=new NavigationStartFinder(rendererHelper);for(var metric of METRICS){var histogram=createHistogram();var targetEvents=findAllUserTimingEvents(rendererHelper,metric.title);for(var ev of targetEvents){if(isTelemetryInternalEvent(ev))
+var METRICS=[{valueName:'timeToFirstContentfulPaint',title:'firstContentfulPaint',description:'time to first contentful paint'},{valueName:'timeToOnload',title:'loadEventStart',description:'time to onload. '+'This is temporary metric used for PCv1/v2 sanity checking'}];function timeToFirstContentfulPaintMetric(values,model){var chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);var rendererHelper=findTargetRendererHelper(chromeHelper);var isTelemetryInternalEvent=prepareTelemetryInternalEventPredicate(rendererHelper);var navigationStartFinder=new NavigationStartFinder(rendererHelper);for(var metric of METRICS){var histogram=createHistogram(metric.valueName);histogram.description=metric.description;var targetEvents=findAllUserTimingEvents(rendererHelper,metric.title);for(var ev of targetEvents){if(isTelemetryInternalEvent(ev))
 continue;var frameIdRef=ev.args['frame'];var snapshot=findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,ev.start);if(snapshot===undefined||!snapshot.args.isLoadingMainFrame)
 continue;var url=snapshot.args.documentLoaderURL;if(shouldIgnoreURL(url))
 continue;var navigationStartEvent=navigationStartFinder.findNavigationStartEventForFrameBeforeTimestamp(frameIdRef,ev.start);if(navigationStartEvent===undefined)
-continue;var timeToEvent=ev.start-navigationStartEvent.start;histogram.add(timeToEvent,new tr.v.d.DiagnosticMap({url:new tr.v.d.Generic(url)}));}
-values.addValue(new tr.v.NumericValue(metric.valueName,histogram,{description:metric.description}));}}
-function layoutSignificance(event){var newObjects=event.args.counters['LayoutObjectsThatHadNeverHadLayout'];var visibleHeight=event.args['counters']['visibleHeight'];if(!newObjects||!visibleHeight)
-return 0;var heightBefore=event.args['contentsHeightBeforeLayout'];var heightAfter=event.args['counters']['contentsHeightAfterLayout'];var ratioBefore=Math.max(1,heightBefore/visibleHeight);var ratioAfter=Math.max(1,heightAfter/visibleHeight);return newObjects/((ratioBefore+ratioAfter)/2);}
-function hasTooManyBlankCharactersToBeMeaningful(event){var BLOCK_FIRST_MEANINGFUL_PAINT_IF_BLANK_CHARACTERS_MORE_THAN=200;return event.args['counters']['approximateBlankCharacterCount']>BLOCK_FIRST_MEANINGFUL_PAINT_IF_BLANK_CHARACTERS_MORE_THAN;}
-function addTimeToInteractiveSampleToHistogram(histogram,rendererHelper,navigationStartTime,firstMeaningfulPaint,url){if(shouldIgnoreURL(url))
-return;var firstInteractive=Infinity;var firstInteractiveCandidate=firstMeaningfulPaint;for(var ev of[...rendererHelper.mainThread.sliceGroup.childEvents()]){if(ev.start<firstInteractiveCandidate)
+continue;var timeToEvent=ev.start-navigationStartEvent.start;histogram.addSample(timeToEvent,{url:new tr.v.d.Generic(url)});}
+values.addHistogram(histogram);}}
+function addTimeToInteractiveSampleToHistogram(histogram,rendererHelper,navigationStart,firstMeaningfulPaint,url){if(shouldIgnoreURL(url))
+return;var navigationStartTime=navigationStart.start;var firstInteractive=Infinity;var firstInteractiveCandidate=firstMeaningfulPaint;var lastLongTaskEvent=undefined;for(var ev of[...rendererHelper.mainThread.sliceGroup.childEvents()]){if(ev.start<firstInteractiveCandidate)
 continue;var interactiveDurationSoFar=ev.start-firstInteractiveCandidate;if(interactiveDurationSoFar>=INTERACTIVE_WINDOW_SIZE){firstInteractive=firstInteractiveCandidate;break;}
-if(ev.title==='TaskQueueManager::ProcessTaskFromWorkQueue'&&ev.duration>RESPONSIVENESS_THRESHOLD){firstInteractiveCandidate=ev.end-50;}}
-var diagnosticDict=rendererHelper.generateTimeBreakdownTree(navigationStartTime,firstInteractive);diagnosticDict.url=url;diagnosticDict.start=navigationStartTime;diagnosticDict.interactive=firstInteractive;diagnosticDict.pid=rendererHelper.pid;var timeToFirstInteractive=firstInteractive-navigationStartTime;histogram.add(timeToFirstInteractive,new tr.v.d.DiagnosticMap({breakdown:new tr.v.d.Generic(diagnosticDict)}));}
-function timeToFirstMeaningfulPaintAndTimeToInteractiveMetrics(values,model){var chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);var rendererHelper=findTargetRendererHelper(chromeHelper);var navigationStartFinder=new NavigationStartFinder(rendererHelper);var paintFinder=new PaintFinder(rendererHelper);var firstMeaningfulPaintHistogram=createHistogram();var firstInteractiveHistogram=createHistogram();function addFirstMeaningfulPaintSampleToHistogram(frameIdRef,navigationStart,mostSignificantLayout){var snapshot=findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,mostSignificantLayout.start);if(snapshot===undefined||!snapshot.args.isLoadingMainFrame)
+if(ev.title==='TaskQueueManager::ProcessTaskFromWorkQueue'&&ev.duration>RESPONSIVENESS_THRESHOLD){firstInteractiveCandidate=ev.end-50;lastLongTaskEvent=ev;}}
+var breakdownDiagnostic=createBreakdownDiagnostic(rendererHelper,navigationStartTime,firstInteractive);var timeToFirstInteractive=firstInteractive-navigationStartTime;histogram.addSample(timeToFirstInteractive,{"Start":new RelatedEventSet(navigationStart),"Last long task":new RelatedEventSet(lastLongTaskEvent),"Navigation infos":new tr.v.d.Generic({url:url,pid:rendererHelper.pid,start:navigationStartTime,interactive:firstInteractive}),"Breakdown of [navStart, Interactive]":breakdownDiagnostic,});}
+function timeToFirstMeaningfulPaintAndTimeToInteractiveMetrics(values,model){var chromeHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);var rendererHelper=findTargetRendererHelper(chromeHelper);var navigationStartFinder=new NavigationStartFinder(rendererHelper);var firstMeaningfulPaintHistogram=createHistogram('timeToFirstMeaningfulPaint');firstMeaningfulPaintHistogram.description='time to first meaningful paint';var firstInteractiveHistogram=createHistogram('timeToFirstInteractive');firstInteractiveHistogram.description='time to first interactive';function addFirstMeaningfulPaintSampleToHistogram(frameIdRef,navigationStart,fmpMarkerEvent){var snapshot=findFrameLoaderSnapshotAt(rendererHelper,frameIdRef,fmpMarkerEvent.start);if(snapshot===undefined||!snapshot.args.isLoadingMainFrame)
 return;var url=snapshot.args.documentLoaderURL;if(shouldIgnoreURL(url))
-return;var paintEvent=paintFinder.findPaintEventForFrameAfterTimestamp(frameIdRef,mostSignificantLayout.start);if(paintEvent===undefined){console.warn('Failed to find paint event after the most significant '+'layout for frameId "'+frameIdRef+'".');return;}
-var timeToFirstMeaningfulPaint=paintEvent.start-navigationStart.start;var diagnosticDict=rendererHelper.generateTimeBreakdownTree(navigationStart.start,paintEvent.start);diagnosticDict.url=url;firstMeaningfulPaintHistogram.add(timeToFirstMeaningfulPaint,new tr.v.d.DiagnosticMap({breakdown:new tr.v.d.Generic(diagnosticDict)}));return{firstMeaningfulPaint:paintEvent.start,url:url};}
-var layoutsForFrameId=findAllLayoutEvents(rendererHelper);for(var frameIdRef in layoutsForFrameId){var navigationStart;var mostSignificantLayout;var maxSignificanceSoFar=0;var accumulatedSignificanceWhileHavingBlankText=0;for(var ev of layoutsForFrameId[frameIdRef]){var navigationStartForThisLayout=navigationStartFinder.findNavigationStartEventForFrameBeforeTimestamp(frameIdRef,ev.start);if(navigationStartForThisLayout===undefined)
-continue;if(navigationStart!==navigationStartForThisLayout){if(navigationStart!==undefined&&mostSignificantLayout!==undefined)
-addFirstMeaningfulPaintSampleToHistogram(frameIdRef,navigationStart,mostSignificantLayout);navigationStart=navigationStartForThisLayout;mostSignificantLayout=undefined;maxSignificanceSoFar=0;accumulatedSignificanceWhileHavingBlankText=0;}
-var significance=layoutSignificance(ev);if(hasTooManyBlankCharactersToBeMeaningful(ev)){accumulatedSignificanceWhileHavingBlankText+=significance;}else{significance+=accumulatedSignificanceWhileHavingBlankText;accumulatedSignificanceWhileHavingBlankText=0;if(significance>maxSignificanceSoFar){maxSignificanceSoFar=significance;mostSignificantLayout=ev;}}}
-if(mostSignificantLayout!==undefined){var data=addFirstMeaningfulPaintSampleToHistogram(frameIdRef,navigationStart,mostSignificantLayout);if(data!==undefined)
-addTimeToInteractiveSampleToHistogram(firstInteractiveHistogram,rendererHelper,navigationStart.start,data.firstMeaningfulPaint,data.url);}}
-values.addValue(new tr.v.NumericValue('timeToFirstMeaningfulPaint',firstMeaningfulPaintHistogram,{description:'time to first meaningful paint'}));values.addValue(new tr.v.NumericValue('timeToFirstInteractive',firstInteractiveHistogram,{description:'time to first interactive'}));}
+return;var timeToFirstMeaningfulPaint=fmpMarkerEvent.start-navigationStart.start;var extraDiagnostic={url:url,pid:rendererHelper.pid};var breakdownDiagnostic=createBreakdownDiagnostic(rendererHelper,navigationStart.start,fmpMarkerEvent.start);firstMeaningfulPaintHistogram.addSample(timeToFirstMeaningfulPaint,{"Breakdown of [navStart, FMP]":breakdownDiagnostic,"Start":new RelatedEventSet(navigationStart),"End":new RelatedEventSet(fmpMarkerEvent),"Navigation infos":new tr.v.d.Generic({url:url,pid:rendererHelper.pid,start:navigationStart.start,fmp:fmpMarkerEvent.start}),});return{firstMeaningfulPaint:fmpMarkerEvent.start,url:url};}
+var candidatesForFrameId=findFirstMeaningfulPaintCandidates(rendererHelper);for(var frameIdRef in candidatesForFrameId){var navigationStart;var lastCandidate;for(var ev of candidatesForFrameId[frameIdRef]){var navigationStartForThisCandidate=navigationStartFinder.findNavigationStartEventForFrameBeforeTimestamp(frameIdRef,ev.start);if(navigationStartForThisCandidate===undefined)
+continue;if(navigationStart!==navigationStartForThisCandidate){if(navigationStart!==undefined&&lastCandidate!==undefined){data=addFirstMeaningfulPaintSampleToHistogram(frameIdRef,navigationStart,lastCandidate);if(data!==undefined)
+addTimeToInteractiveSampleToHistogram(firstInteractiveHistogram,rendererHelper,navigationStart,data.firstMeaningfulPaint,data.url);}
+navigationStart=navigationStartForThisCandidate;}
+lastCandidate=ev;}
+if(lastCandidate!==undefined){var data=addFirstMeaningfulPaintSampleToHistogram(frameIdRef,navigationStart,lastCandidate);if(data!==undefined)
+addTimeToInteractiveSampleToHistogram(firstInteractiveHistogram,rendererHelper,navigationStart,data.firstMeaningfulPaint,data.url);}}
+values.addHistogram(firstMeaningfulPaintHistogram);values.addHistogram(firstInteractiveHistogram);}
 function loadingMetric(values,model){timeToFirstContentfulPaintMetric(values,model);timeToFirstMeaningfulPaintAndTimeToInteractiveMetrics(values,model);}
 tr.metrics.MetricRegistry.register(loadingMetric);return{loadingMetric:loadingMetric};});'use strict';tr.exportTo('tr.b',function(){function MultiDimensionalViewNode(title,valueCount){this.title=title;var dimensions=title.length;this.children=new Array(dimensions);for(var i=0;i<dimensions;i++)
 this.children[i]=new Map();this.values=new Array(valueCount);for(var v=0;v<valueCount;v++)
@@ -7887,14 +7951,15 @@
 if(i+maxLength-1>right){left=i;right=i+maxLength-1;}
 z[i]=maxLength;}
 return z;}
-return{MultiDimensionalViewBuilder:MultiDimensionalViewBuilder,MultiDimensionalViewNode:MultiDimensionalViewNode,RecursionDepthTracker:RecursionDepthTracker,zFunction:zFunction};});'use strict';tr.exportTo('tr.metrics.sh',function(){var BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;var LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;var DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.v.Unit.byName.sizeInBytes_smallerIsBetter;var unitlessNumber_smallerIsBetter=tr.v.Unit.byName.unitlessNumber_smallerIsBetter;var DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;var LEVEL_OF_DETAIL_NAMES=new Map();LEVEL_OF_DETAIL_NAMES.set(BACKGROUND,'background');LEVEL_OF_DETAIL_NAMES.set(LIGHT,'light');LEVEL_OF_DETAIL_NAMES.set(DETAILED,'detailed');var MEMORY_NUMERIC_BUILDER_MAP=new WeakMap();MEMORY_NUMERIC_BUILDER_MAP.set(unitlessNumber_smallerIsBetter,tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.unitlessNumber_smallerIsBetter,tr.b.Range.fromExplicitRange(0,20),20));MEMORY_NUMERIC_BUILDER_MAP.set(sizeInBytes_smallerIsBetter,new tr.v.NumericBuilder(sizeInBytes_smallerIsBetter,0).addBinBoundary(1024).addExponentialBins(16*1024*1024*1024,4*24));function memoryMetric(values,model,opt_options){var rangeOfInterest=opt_options?opt_options.rangeOfInterest:undefined;var browserNameToGlobalDumps=splitGlobalDumpsByBrowserName(model,rangeOfInterest);addGeneralMemoryDumpValues(browserNameToGlobalDumps,values);addDetailedMemoryDumpValues(browserNameToGlobalDumps,values);addMemoryDumpCountValues(browserNameToGlobalDumps,values);}
+return{MultiDimensionalViewBuilder:MultiDimensionalViewBuilder,MultiDimensionalViewNode:MultiDimensionalViewNode,RecursionDepthTracker:RecursionDepthTracker,zFunction:zFunction};});'use strict';tr.exportTo('tr.metrics.sh',function(){var BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;var LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;var DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;var sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;var unitlessNumber_smallerIsBetter=tr.b.Unit.byName.unitlessNumber_smallerIsBetter;var DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;var LEVEL_OF_DETAIL_NAMES=new Map();LEVEL_OF_DETAIL_NAMES.set(BACKGROUND,'background');LEVEL_OF_DETAIL_NAMES.set(LIGHT,'light');LEVEL_OF_DETAIL_NAMES.set(DETAILED,'detailed');var BOUNDARIES_FOR_UNIT_MAP=new WeakMap();BOUNDARIES_FOR_UNIT_MAP.set(unitlessNumber_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,20,20));BOUNDARIES_FOR_UNIT_MAP.set(sizeInBytes_smallerIsBetter,new tr.v.HistogramBinBoundaries(0).addBinBoundary(1024).addExponentialBins(16*1024*1024*1024,4*24));function memoryMetric(values,model,opt_options){var rangeOfInterest=opt_options?opt_options.rangeOfInterest:undefined;var browserNameToGlobalDumps=splitGlobalDumpsByBrowserName(model,rangeOfInterest);addGeneralMemoryDumpValues(browserNameToGlobalDumps,values);addDetailedMemoryDumpValues(browserNameToGlobalDumps,values);addMemoryDumpCountValues(browserNameToGlobalDumps,values);}
 function splitGlobalDumpsByBrowserName(model,opt_rangeOfInterest){var chromeModelHelper=model.getOrCreateHelper(tr.model.helpers.ChromeModelHelper);var browserNameToGlobalDumps=new Map();var globalDumpToBrowserHelper=new WeakMap();if(chromeModelHelper){chromeModelHelper.browserHelpers.forEach(function(helper){var globalDumps=skipDumpsThatDoNotIntersectRange(helper.process.memoryDumps.map(d=>d.globalMemoryDump),opt_rangeOfInterest);globalDumps.forEach(function(globalDump){var existingHelper=globalDumpToBrowserHelper.get(globalDump);if(existingHelper!==undefined){throw new Error('Memory dump ID clash across multiple browsers '+'with PIDs: '+existingHelper.pid+' and '+helper.pid);}
 globalDumpToBrowserHelper.set(globalDump,helper);});makeKeyUniqueAndSet(browserNameToGlobalDumps,canonicalizeName(helper.browserName),globalDumps);});}
 var unclassifiedGlobalDumps=skipDumpsThatDoNotIntersectRange(model.globalMemoryDumps.filter(g=>!globalDumpToBrowserHelper.has(g)),opt_rangeOfInterest);if(unclassifiedGlobalDumps.length>0){makeKeyUniqueAndSet(browserNameToGlobalDumps,'unknown_browser',unclassifiedGlobalDumps);}
 return browserNameToGlobalDumps;}
 function skipDumpsThatDoNotIntersectRange(dumps,opt_range){if(!opt_range)
 return dumps;return dumps.filter(d=>opt_range.intersectsExplicitRangeInclusive(d.start,d.end));}
-function canonicalizeName(name){return name.toLowerCase().replace(' ','_');};var USER_FRIENDLY_BROWSER_NAMES={'chrome':'Chrome','webview':'WebView','unknown_browser':'an unknown browser'};function convertBrowserNameToUserFriendlyName(browserName){for(var baseName in USER_FRIENDLY_BROWSER_NAMES){if(!browserName.startsWith(baseName))
+function canonicalizeName(name){return name.toLowerCase().replace(' ','_');}
+var USER_FRIENDLY_BROWSER_NAMES={'chrome':'Chrome','webview':'WebView','unknown_browser':'an unknown browser'};function convertBrowserNameToUserFriendlyName(browserName){for(var baseName in USER_FRIENDLY_BROWSER_NAMES){if(!browserName.startsWith(baseName))
 continue;var userFriendlyBaseName=USER_FRIENDLY_BROWSER_NAMES[baseName];var suffix=browserName.substring(baseName.length);if(suffix.length===0)
 return userFriendlyBaseName;else if(/^\d+$/.test(suffix))
 return userFriendlyBaseName+'('+suffix+')';}
@@ -7904,14 +7969,15 @@
 function convertProcessNameToUserFriendlyName(processName,opt_requirePlural){switch(processName){case'browser_process':return opt_requirePlural?'browser processes':'the browser process';case'renderer_processes':return'renderer processes';case'gpu_process':return opt_requirePlural?'GPU processes':'the GPU process';case'ppapi_process':return opt_requirePlural?'PPAPI processes':'the PPAPI process';case'all_processes':return'all processes';case'unknown_processes':return'unknown processes';default:return'\''+processName+'\' processes';}}
 function makeKeyUniqueAndSet(map,key,value){var uniqueKey=key;var nextIndex=2;while(map.has(uniqueKey)){uniqueKey=key+nextIndex;nextIndex++;}
 map.set(uniqueKey,value);}
-function addGeneralMemoryDumpValues(browserNameToGlobalDumps,values){addMemoryDumpValues(browserNameToGlobalDumps,gmd=>true,function(processDump,addProcessScalar){addProcessScalar({source:'process_count',value:1,unit:unitlessNumber_smallerIsBetter,descriptionPrefixBuilder:buildProcessCountDescriptionPrefix});if(processDump.memoryAllocatorDumps===undefined)
-return;processDump.memoryAllocatorDumps.forEach(function(rootAllocatorDump){tr.b.iterItems(CHROME_VALUE_PROPERTIES,function(propertyName,descriptionPrefixBuilder){addProcessScalar({source:'reported_by_chrome',component:[rootAllocatorDump.name],property:propertyName,value:rootAllocatorDump.numerics[propertyName],descriptionPrefixBuilder:descriptionPrefixBuilder});});});addV8MemoryDumpValues(processDump,addProcessScalar);},function(componentTree){var tracingNode=componentTree.children[1].get('tracing');if(tracingNode===undefined)
+function addGeneralMemoryDumpValues(browserNameToGlobalDumps,values){addMemoryDumpValues(browserNameToGlobalDumps,gmd=>true,function(processDump,addProcessScalar){addProcessScalar({source:'process_count',value:1,unit:unitlessNumber_smallerIsBetter,descriptionPrefixBuilder:buildProcessCountDescriptionPrefix});if(processDump.totals!==undefined){tr.b.iterItems(SYSTEM_TOTAL_VALUE_PROPERTIES,function(propertyName,propertySpec){addProcessScalar({source:'reported_by_os',property:propertyName,component:['system_memory'],value:propertySpec.getPropertyFunction(processDump),unit:sizeInBytes_smallerIsBetter,descriptionPrefixBuilder:propertySpec.descriptionPrefixBuilder});});}
+if(processDump.memoryAllocatorDumps===undefined)
+return;processDump.memoryAllocatorDumps.forEach(function(rootAllocatorDump){tr.b.iterItems(CHROME_VALUE_PROPERTIES,function(propertyName,descriptionPrefixBuilder){addProcessScalar({source:'reported_by_chrome',component:[rootAllocatorDump.name],property:propertyName,value:rootAllocatorDump.numerics[propertyName],descriptionPrefixBuilder:descriptionPrefixBuilder});});if(rootAllocatorDump.numerics['allocated_objects_size']===undefined){var allocatedObjectsDump=rootAllocatorDump.getDescendantDumpByFullName('allocated_objects');if(allocatedObjectsDump!==undefined){addProcessScalar({source:'reported_by_chrome',component:[rootAllocatorDump.name],property:'allocated_objects_size',value:allocatedObjectsDump.numerics['size'],descriptionPrefixBuilder:CHROME_VALUE_PROPERTIES['allocated_objects_size']});}}});addV8MemoryDumpValues(processDump,addProcessScalar);},function(componentTree){var tracingNode=componentTree.children[1].get('tracing');if(tracingNode===undefined)
 return;for(var i=0;i<componentTree.values.length;i++)
 componentTree.values[i].total-=tracingNode.values[i].total;},values);}
 function addV8MemoryDumpValues(processDump,addProcessScalar){var v8Dump=processDump.getMemoryAllocatorDumpByFullName('v8');if(v8Dump===undefined)
 return;v8Dump.children.forEach(function(isolateDump){var mallocDump=isolateDump.getDescendantDumpByFullName('malloc');if(mallocDump!==undefined){addV8ComponentValues(mallocDump,['v8','allocated_by_malloc'],addProcessScalar);}
 var heapDump=isolateDump.getDescendantDumpByFullName('heap_spaces');if(heapDump!==undefined){addV8ComponentValues(heapDump,['v8','heap'],addProcessScalar);heapDump.children.forEach(function(spaceDump){if(spaceDump.name==='other_spaces')
-return;addV8ComponentValues(spaceDump,['v8','heap',spaceDump.name],addProcessScalar);});}});}
+return;addV8ComponentValues(spaceDump,['v8','heap',spaceDump.name],addProcessScalar);});}});addProcessScalar({source:'reported_by_chrome',component:['v8'],property:'code_and_metadata_size',value:v8Dump.numerics['code_and_metadata_size'],descriptionPrefixBuilder:buildCodeAndMetadataSizeValueDescriptionPrefix});addProcessScalar({source:'reported_by_chrome',component:['v8'],property:'code_and_metadata_size',value:v8Dump.numerics['bytecode_and_metadata_size'],descriptionPrefixBuilder:buildCodeAndMetadataSizeValueDescriptionPrefix});}
 function addV8ComponentValues(componentDump,componentPath,addProcessScalar){tr.b.iterItems(CHROME_VALUE_PROPERTIES,function(propertyName,descriptionPrefixBuilder){addProcessScalar({source:'reported_by_chrome',component:componentPath,property:propertyName,value:componentDump.numerics[propertyName],descriptionPrefixBuilder:descriptionPrefixBuilder});});}
 function buildProcessCountDescriptionPrefix(componentPath,processName){if(componentPath.length>0){throw new Error('Unexpected process count non-empty component path: '+
 componentPath.join(':'));}
@@ -7923,9 +7989,8 @@
 nameParts.push(formatSpec.userFriendlyPropertyNamePrefix);nameParts.push(formatSpec.userFriendlyPropertyName);nameParts.push(formatSpec.componentPreposition);if(componentPath[componentPath.length-1]==='allocated_by_malloc'){nameParts.push('objects allocated by malloc for');nameParts.push(componentPath.slice(0,componentPath.length-1).join(':'));}else{nameParts.push(componentPath.join(':'));}}
 nameParts.push('in');}
 nameParts.push(convertProcessNameToUserFriendlyName(processName));return nameParts.join(' ');}
-var CHROME_VALUE_PROPERTIES={'effective_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'effective size',componentPreposition:'of'}),'allocated_objects_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'size of all objects allocated',totalUserFriendlyPropertyName:'size of all allocated objects',componentPreposition:'by'}),'locked_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'locked (pinned) size',componentPreposition:'of'}),'peak_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'peak size',componentPreposition:'of'}),};function addDetailedMemoryDumpValues(browserNameToGlobalDumps,values){addMemoryDumpValues(browserNameToGlobalDumps,g=>g.levelOfDetail===DETAILED,function(processDump,addProcessScalar){tr.b.iterItems(SYSTEM_VALUE_COMPONENTS,function(componentName,componentSpec){tr.b.iterItems(SYSTEM_VALUE_PROPERTIES,function(propertyName,propertySpec){var node=getDescendantVmRegionClassificationNode(processDump.vmRegions,componentSpec.classificationPath);var componentPath=['system_memory'];if(componentName)
-componentPath.push(componentName);addProcessScalar({source:'reported_by_os',component:componentPath,property:propertyName,value:node===undefined?0:(node.byteStats[propertySpec.byteStat]||0),unit:sizeInBytes_smallerIsBetter,descriptionPrefixBuilder:propertySpec.descriptionPrefixBuilder});});});var memtrackDump=processDump.getMemoryAllocatorDumpByFullName('gpu/android_memtrack');if(memtrackDump!==undefined){var descriptionPrefixBuilder=SYSTEM_VALUE_PROPERTIES['proportional_resident_size'].descriptionPrefixBuilder;memtrackDump.children.forEach(function(memtrackChildDump){var childName=memtrackChildDump.name;addProcessScalar({source:'reported_by_os',component:['gpu_memory',childName],property:'proportional_resident_size',value:memtrackChildDump.numerics['memtrack_pss'],descriptionPrefixBuilder:descriptionPrefixBuilder});});}
-var v8Dump=processDump.getMemoryAllocatorDumpByFullName('v8');if(v8Dump!==undefined){addProcessScalar({source:'reported_by_chrome',component:['v8'],property:'code_and_metadata_size',value:v8Dump.numerics['code_and_metadata_size'],descriptionPrefixBuilder:buildCodeAndMetadataSizeValueDescriptionPrefix});addProcessScalar({source:'reported_by_chrome',component:['v8'],property:'code_and_metadata_size',value:v8Dump.numerics['bytecode_and_metadata_size'],descriptionPrefixBuilder:buildCodeAndMetadataSizeValueDescriptionPrefix});}},function(componentTree){},values);}
+var CHROME_VALUE_PROPERTIES={'effective_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'effective size',componentPreposition:'of'}),'allocated_objects_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'size of all objects allocated',totalUserFriendlyPropertyName:'size of all allocated objects',componentPreposition:'by'}),'locked_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'locked (pinned) size',componentPreposition:'of'}),'peak_size':buildChromeValueDescriptionPrefix.bind(undefined,{userFriendlyPropertyName:'peak size',componentPreposition:'of'}),};var SYSTEM_TOTAL_VALUE_PROPERTIES={'resident_size':{getPropertyFunction:function(processDump){return processDump.totals.residentBytes;},descriptionPrefixBuilder:buildOsValueDescriptionPrefix.bind(undefined,'resident set size (RSS)')},'peak_resident_size':{getPropertyFunction:function(processDump){return processDump.totals.peakResidentBytes;},descriptionPrefixBuilder:buildOsValueDescriptionPrefix.bind(undefined,'peak resident set size')}};function addDetailedMemoryDumpValues(browserNameToGlobalDumps,values){addMemoryDumpValues(browserNameToGlobalDumps,g=>g.levelOfDetail===DETAILED,function(processDump,addProcessScalar){tr.b.iterItems(SYSTEM_VALUE_COMPONENTS,function(componentName,componentSpec){tr.b.iterItems(SYSTEM_VALUE_PROPERTIES,function(propertyName,propertySpec){var node=getDescendantVmRegionClassificationNode(processDump.vmRegions,componentSpec.classificationPath);var componentPath=['system_memory'];if(componentName)
+componentPath.push(componentName);addProcessScalar({source:'reported_by_os',component:componentPath,property:propertyName,value:node===undefined?0:(node.byteStats[propertySpec.byteStat]||0),unit:sizeInBytes_smallerIsBetter,descriptionPrefixBuilder:propertySpec.descriptionPrefixBuilder});});});var memtrackDump=processDump.getMemoryAllocatorDumpByFullName('gpu/android_memtrack');if(memtrackDump!==undefined){var descriptionPrefixBuilder=SYSTEM_VALUE_PROPERTIES['proportional_resident_size'].descriptionPrefixBuilder;memtrackDump.children.forEach(function(memtrackChildDump){var childName=memtrackChildDump.name;addProcessScalar({source:'reported_by_os',component:['gpu_memory',childName],property:'proportional_resident_size',value:memtrackChildDump.numerics['memtrack_pss'],descriptionPrefixBuilder:descriptionPrefixBuilder});});}},function(componentTree){},values);}
 var SYSTEM_VALUE_COMPONENTS={'':{classificationPath:[],},'java_heap':{classificationPath:['Android','Java runtime','Spaces'],userFriendlyName:'the Java heap'},'ashmem':{classificationPath:['Android','Ashmem'],userFriendlyName:'ashmem'},'native_heap':{classificationPath:['Native heap'],userFriendlyName:'the native heap'}};var SYSTEM_VALUE_PROPERTIES={'proportional_resident_size':{byteStat:'proportionalResident',descriptionPrefixBuilder:buildOsValueDescriptionPrefix.bind(undefined,'proportional resident size (PSS)')},'private_dirty_size':{byteStat:'privateDirtyResident',descriptionPrefixBuilder:buildOsValueDescriptionPrefix.bind(undefined,'private dirty size')}};function buildOsValueDescriptionPrefix(userFriendlyPropertyName,componentPath,processName){if(componentPath.length>2){throw new Error('OS value component path for \''+
 userFriendlyPropertyName+'\' too long: '+componentPath.join(':'));}
 var nameParts=[];if(componentPath.length<2)
@@ -7945,12 +8010,12 @@
 function addMemoryDumpCountValues(browserNameToGlobalDumps,values){browserNameToGlobalDumps.forEach(function(globalDumps,browserName){var totalDumpCount=0;var levelOfDetailNameToDumpCount={};LEVEL_OF_DETAIL_NAMES.forEach(function(levelOfDetailName){levelOfDetailNameToDumpCount[levelOfDetailName]=0;});globalDumps.forEach(function(globalDump){totalDumpCount++;var levelOfDetailName=LEVEL_OF_DETAIL_NAMES.get(globalDump.levelOfDetail);if(!(levelOfDetailName in levelOfDetailNameToDumpCount))
 return;levelOfDetailNameToDumpCount[levelOfDetailName]++;});reportMemoryDumpCountAsValue(browserName,undefined,totalDumpCount,values);tr.b.iterItems(levelOfDetailNameToDumpCount,function(levelOfDetailName,levelOfDetailDumpCount){reportMemoryDumpCountAsValue(browserName,levelOfDetailName,levelOfDetailDumpCount,values);});});}
 function reportMemoryDumpCountAsValue(browserName,levelOfDetailName,levelOfDetailDumpCount,values){var nameParts=['memory',browserName,'all_processes','dump_count'];if(levelOfDetailName!==undefined)
-nameParts.push(levelOfDetailName);var name=nameParts.join(':');var numeric=new ScalarNumeric(unitlessNumber_smallerIsBetter,levelOfDetailDumpCount);var description=['total number of',levelOfDetailName||'all','memory dumps added by',convertBrowserNameToUserFriendlyName(browserName),'to the trace'].join(' ');var options={description:description};values.addValue(new tr.v.NumericValue(name,numeric,options));}
+nameParts.push(levelOfDetailName);var name=nameParts.join(':');var histogram=new tr.v.Histogram(name,unitlessNumber_smallerIsBetter,BOUNDARIES_FOR_UNIT_MAP.get(unitlessNumber_smallerIsBetter));histogram.addSample(levelOfDetailDumpCount);histogram.description=['total number of',levelOfDetailName||'all','memory dumps added by',convertBrowserNameToUserFriendlyName(browserName),'to the trace'].join(' ');values.addHistogram(histogram);}
 function addMemoryDumpValues(browserNameToGlobalDumps,customGlobalDumpFilter,customProcessDumpValueExtractor,customComponentTreeModifier,values){browserNameToGlobalDumps.forEach(function(globalDumps,browserName){var filteredGlobalDumps=globalDumps.filter(customGlobalDumpFilter);var sourceToPropertyToData=extractDataFromGlobalDumps(filteredGlobalDumps,customProcessDumpValueExtractor);reportDataAsValues(sourceToPropertyToData,browserName,customComponentTreeModifier,values);});}
 function extractDataFromGlobalDumps(globalDumps,customProcessDumpValueExtractor){var sourceToPropertyToData=new Map();var dumpCount=globalDumps.length;globalDumps.forEach(function(globalDump,dumpIndex){tr.b.iterItems(globalDump.processMemoryDumps,function(_,processDump){extractDataFromProcessDump(processDump,sourceToPropertyToData,dumpIndex,dumpCount,customProcessDumpValueExtractor);});});return sourceToPropertyToData;}
 function extractDataFromProcessDump(processDump,sourceToPropertyToData,dumpIndex,dumpCount,customProcessDumpValueExtractor){var rawProcessName=processDump.process.name;var processNamePath=[canonicalizeProcessName(rawProcessName)];customProcessDumpValueExtractor(processDump,function addProcessScalar(spec){if(spec.value===undefined)
 return;var component=spec.component||[];function createDetailsForErrorMessage(){var propertyUserFriendlyName=spec.property===undefined?'(undefined)':spec.property;var componentUserFriendlyName=component.length===0?'(empty)':component.join(':');return['source=',spec.source,', property=',propertyUserFriendlyName,', component=',componentUserFriendlyName,' in ',processDump.process.userFriendlyName].join('');}
-var value,unit;if(spec.value instanceof ScalarNumeric){value=spec.value.value;unit=spec.value.unit;if(spec.unit!==undefined){throw new Error('ScalarNumeric value for '+
+var value,unit;if(spec.value instanceof tr.v.ScalarNumeric){value=spec.value.value;unit=spec.value.unit;if(spec.unit!==undefined){throw new Error('Histogram value for '+
 createDetailsForErrorMessage()+' already specifies a unit');}}else{value=spec.value;unit=spec.unit;}
 var propertyToData=sourceToPropertyToData.get(spec.source);if(propertyToData===undefined){propertyToData=new Map();sourceToPropertyToData.set(spec.source,propertyToData);}
 var data=propertyToData.get(spec.property);if(data===undefined){data={processAndComponentTreeBuilder:new tr.b.MultiDimensionalViewBuilder(2,dumpCount),unit:unit,descriptionPrefixBuilder:spec.descriptionPrefixBuilder};propertyToData.set(spec.property,data);}else if(data.unit!==unit){throw new Error('Multiple units provided for '+
@@ -7963,81 +8028,109 @@
 (propertyName===undefined?'(undefined)':propertyName)+', process='+processName+' has children wrt the process name dimension');}
 customComponentTreeModifier(processTree);reportComponentDataAsValues(browserName,sourceName,propertyName,processName,[],processTree,unit,descriptionPrefixBuilder,values);});});});}
 function reportComponentDataAsValues(browserName,sourceName,propertyName,processName,componentPath,componentNode,unit,descriptionPrefixBuilder,values){var nameParts=['memory',browserName,processName,sourceName].concat(componentPath);if(propertyName!==undefined)
-nameParts.push(propertyName);var name=nameParts.join(':');var numeric=buildMemoryNumericFromNode(componentNode,unit);var description=[descriptionPrefixBuilder(componentPath,processName),'in',convertBrowserNameToUserFriendlyName(browserName)].join(' ');var options={description:description};values.addValue(new tr.v.NumericValue(name,numeric,options));var depth=componentPath.length;componentPath.push(undefined);componentNode.children[1].forEach(function(childNode,childName){componentPath[depth]=childName;reportComponentDataAsValues(browserName,sourceName,propertyName,processName,componentPath,childNode,unit,descriptionPrefixBuilder,values);});componentPath.pop();}
-function buildMemoryNumericFromNode(node,unit){var numeric=MEMORY_NUMERIC_BUILDER_MAP.get(unit).build();node.values.forEach(v=>numeric.add(v.total));return numeric;}
-tr.metrics.MetricRegistry.register(memoryMetric,{supportsRangeOfInterest:true});return{memoryMetric:memoryMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){var IDEAL_FRAME_RATE=60;var IDEAL_FRAME_DURATION=1000/IDEAL_FRAME_RATE;function energyConsumedPerFrame(valueList,model){var frameEnergyConsumed=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.energyInJoules_smallerIsBetter,tr.b.Range.fromExplicitRange(0,.5),20).build();var frameStartTs=parseFloat(model.device.powerSeries.samples[0].start);while(model.device.powerSeries.getSamplesWithinRange(frameStartTs,frameStartTs+IDEAL_FRAME_DURATION).length){var currentFrameEnergy=model.device.powerSeries.getEnergyConsumed(frameStartTs,frameStartTs+IDEAL_FRAME_DURATION);frameStartTs+=IDEAL_FRAME_DURATION;frameEnergyConsumed.add(currentFrameEnergy);}
-valueList.addValue(new tr.v.NumericValue('energy_consumed_per_frame',frameEnergyConsumed,{description:'Energy consumption per frame in joules'}));}
+nameParts.push(propertyName);var name=nameParts.join(':');var numeric=buildMemoryNumericFromNode(name,componentNode,unit);numeric.description=[descriptionPrefixBuilder(componentPath,processName),'in',convertBrowserNameToUserFriendlyName(browserName)].join(' ');values.addHistogram(numeric);var depth=componentPath.length;componentPath.push(undefined);componentNode.children[1].forEach(function(childNode,childName){componentPath[depth]=childName;reportComponentDataAsValues(browserName,sourceName,propertyName,processName,componentPath,childNode,unit,descriptionPrefixBuilder,values);});componentPath.pop();}
+function buildMemoryNumericFromNode(name,node,unit){var histogram=new tr.v.Histogram(name,unit,BOUNDARIES_FOR_UNIT_MAP.get(unit));node.values.forEach(v=>histogram.addSample(v.total));return histogram;}
+tr.metrics.MetricRegistry.register(memoryMetric,{supportsRangeOfInterest:true});return{memoryMetric:memoryMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){var IDEAL_FRAME_RATE_FPS=60;var IDEAL_FRAME_DURATION_MS=tr.b.convertUnit(1.0/IDEAL_FRAME_RATE_FPS,tr.b.UnitScale.Metric.NONE,tr.b.UnitScale.Metric.MILLI);function energyConsumedPerFrame(valueList,model){var frameEnergyConsumedInJ=new tr.v.Histogram('energy_consumed_per_frame',tr.b.Unit.byName.energyInJoules_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,0.5,20));frameEnergyConsumedInJ.description='Energy consumption per frame in joules';var frameStartTs=parseFloat(model.device.powerSeries.samples[0].start);while(model.device.powerSeries.getSamplesWithinRange(frameStartTs,frameStartTs+IDEAL_FRAME_DURATION_MS).length){var currentFrameEnergy=model.device.powerSeries.getEnergyConsumedInJ(frameStartTs,frameStartTs+IDEAL_FRAME_DURATION_MS);frameStartTs+=IDEAL_FRAME_DURATION_MS;frameEnergyConsumedInJ.addSample(currentFrameEnergy);}
+valueList.addHistogram(frameEnergyConsumedInJ);}
 function powerMetric(valueList,model){if(!model.device.powerSeries)
 return;energyConsumedPerFrame(valueList,model);}
-tr.metrics.MetricRegistry.register(powerMetric);return{powerMetric:powerMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function computeAnimationThroughput(animationExpectation){if(animationExpectation.frameEvents===undefined||animationExpectation.frameEvents.length===0)
+tr.metrics.MetricRegistry.register(powerMetric);return{powerMetric:powerMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function railPowerMetric(values,model){if(!model.device.powerSeries)
+return;var railStageToTimeHist=new Map();var railStageToEnergyHist=new Map();var railStageToPowerHist=new Map();for(var exp of model.userModel.expectations){var currTitle=exp.title.toLowerCase().replace(' ','_');if(!railStageToTimeHist.has(currTitle)){var timeHist=new tr.v.Histogram('time:'+currTitle,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);timeHist.description='Time spent in RAIL stage '+currTitle;var energyHist=new tr.v.Histogram('energy:'+currTitle,tr.b.Unit.byName.energyInJoules_smallerIsBetter);energyHist.description='Energy consumed by RAIL stage '+currTitle;var powerHist=new tr.v.Histogram('power:'+currTitle,tr.b.Unit.byName.powerInWatts_smallerIsBetter);powerHist.description='Energy consumption rate by RAIL stage '+currTitle;timeHist.customizeSummaryOptions({avg:false,count:false,max:true,min:true,std:false,sum:true,});energyHist.customizeSummaryOptions({avg:false,count:false,max:true,min:true,std:false,sum:true,});powerHist.customizeSummaryOptions({avg:true,count:false,max:true,min:true,std:false,sum:false,});railStageToTimeHist.set(currTitle,timeHist);railStageToEnergyHist.set(currTitle,energyHist);railStageToPowerHist.set(currTitle,powerHist);values.addHistogram(timeHist);values.addHistogram(energyHist);values.addHistogram(powerHist);}
+var durationInMs=exp.duration;var durationInS=tr.b.convertUnit(durationInMs,tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);var energyInJ=model.device.powerSeries.getEnergyConsumedInJ(exp.start,exp.end);var powerInW=energyInJ/durationInS;railStageToTimeHist.get(currTitle).addSample(durationInMs);railStageToEnergyHist.get(currTitle).addSample(energyInJ);railStageToPowerHist.get(currTitle).addSample(powerInW);}}
+tr.metrics.MetricRegistry.register(railPowerMetric);return{railPowerMetric:railPowerMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function computeAnimationThroughput(animationExpectation){if(animationExpectation.frameEvents===undefined||animationExpectation.frameEvents.length===0)
 throw new Error('Animation missing frameEvents '+
-animationExpectation.stableId);var durationSeconds=animationExpectation.duration/1000;return animationExpectation.frameEvents.length/durationSeconds;}
+animationExpectation.stableId);var durationInS=tr.b.convertUnit(animationExpectation.duration,tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);return animationExpectation.frameEvents.length/durationInS;}
 function computeAnimationframeTimeDiscrepancy(animationExpectation){if(animationExpectation.frameEvents===undefined||animationExpectation.frameEvents.length===0)
 throw new Error('Animation missing frameEvents '+
-animationExpectation.stableId);var frameTimestamps=animationExpectation.frameEvents;frameTimestamps=frameTimestamps.toArray().map(function(event){return event.start;});var absolute=false;return tr.b.Statistics.timestampsDiscrepancy(frameTimestamps,absolute);}
-var RESPONSE_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,tr.b.Range.fromExplicitRange(100,1000),90);var THROUGHPUT_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.unitlessNumber_biggerIsBetter,tr.b.Range.fromExplicitRange(10,60),10);var DISCREPANCY_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.unitlessNumber_smallerIsBetter,tr.b.Range.fromExplicitRange(0,1),50);var LATENCY_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,tr.b.Range.fromExplicitRange(0,300),60);function responsivenessMetric(values,model,opt_options){var responseNumeric=RESPONSE_NUMERIC_BUILDER.build();var throughputNumeric=THROUGHPUT_NUMERIC_BUILDER.build();var frameTimeDiscrepancyNumeric=DISCREPANCY_NUMERIC_BUILDER.build();var latencyNumeric=LATENCY_NUMERIC_BUILDER.build();model.userModel.expectations.forEach(function(ue){if(opt_options&&opt_options.rangeOfInterest&&!opt_options.rangeOfInterest.intersectsExplicitRangeInclusive(ue.start,ue.end))
-return;var sampleDiagnostic=new tr.v.d.RelatedEventSet([ue]);var sampleDiagnosticMap=new tr.v.d.DiagnosticMap({relatedEvents:sampleDiagnostic});if(ue instanceof tr.model.um.IdleExpectation){return;}else if(ue instanceof tr.model.um.StartupExpectation){return;}else if(ue instanceof tr.model.um.LoadExpectation){}else if(ue instanceof tr.model.um.ResponseExpectation){responseNumeric.add(ue.duration,sampleDiagnosticMap);}else if(ue instanceof tr.model.um.AnimationExpectation){if(ue.frameEvents===undefined||ue.frameEvents.length===0){return;}
+animationExpectation.stableId);var frameTimestamps=animationExpectation.frameEvents;frameTimestamps=frameTimestamps.toArray().map(function(event){return event.start;});var absolute=true;return tr.b.Statistics.timestampsDiscrepancy(frameTimestamps,absolute);}
+function responsivenessMetric(values,model,opt_options){var responseNumeric=new tr.v.Histogram('response latency',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(100,1e3,50));var throughputNumeric=new tr.v.Histogram('animation throughput',tr.b.Unit.byName.unitlessNumber_biggerIsBetter,tr.v.HistogramBinBoundaries.createLinear(10,60,10));var frameTimeDiscrepancyNumeric=new tr.v.Histogram('animation frameTimeDiscrepancy',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,1e3,50).addExponentialBins(1e4,10));var latencyNumeric=new tr.v.Histogram('animation latency',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,tr.v.HistogramBinBoundaries.createLinear(0,300,60));model.userModel.expectations.forEach(function(ue){if(opt_options&&opt_options.rangeOfInterest&&!opt_options.rangeOfInterest.intersectsExplicitRangeInclusive(ue.start,ue.end))
+return;var sampleDiagnosticMap=tr.v.d.DiagnosticMap.fromObject({relatedEvents:new tr.v.d.RelatedEventSet([ue])});if(ue instanceof tr.model.um.IdleExpectation){return;}else if(ue instanceof tr.model.um.StartupExpectation){return;}else if(ue instanceof tr.model.um.LoadExpectation){}else if(ue instanceof tr.model.um.ResponseExpectation){responseNumeric.addSample(ue.duration,sampleDiagnosticMap);}else if(ue instanceof tr.model.um.AnimationExpectation){if(ue.frameEvents===undefined||ue.frameEvents.length===0){return;}
 var throughput=computeAnimationThroughput(ue);if(throughput===undefined)
 throw new Error('Missing throughput for '+
-ue.stableId);throughputNumeric.add(throughput,sampleDiagnosticMap);var frameTimeDiscrepancy=computeAnimationframeTimeDiscrepancy(ue);if(frameTimeDiscrepancy===undefined)
+ue.stableId);throughputNumeric.addSample(throughput,sampleDiagnosticMap);var frameTimeDiscrepancy=computeAnimationframeTimeDiscrepancy(ue);if(frameTimeDiscrepancy===undefined)
 throw new Error('Missing frameTimeDiscrepancy for '+
-ue.stableId);frameTimeDiscrepancyNumeric.add(frameTimeDiscrepancy,sampleDiagnosticMap);ue.associatedEvents.forEach(function(event){if(!(event instanceof tr.e.cc.InputLatencyAsyncSlice))
-return;latencyNumeric.add(event.duration,sampleDiagnosticMap);});}else{throw new Error('Unrecognized stage for '+ue.stableId);}});[responseNumeric,throughputNumeric,frameTimeDiscrepancyNumeric,latencyNumeric].forEach(function(numeric){numeric.customizeSummaryOptions({avg:true,max:true,min:true,std:true});});values.addValue(new tr.v.NumericValue('response latency',responseNumeric));values.addValue(new tr.v.NumericValue('animation throughput',throughputNumeric));values.addValue(new tr.v.NumericValue('animation frameTimeDiscrepancy',frameTimeDiscrepancyNumeric));values.addValue(new tr.v.NumericValue('animation latency',latencyNumeric));}
-tr.metrics.MetricRegistry.register(responsivenessMetric,{supportsRangeOfInterest:true});return{responsivenessMetric:responsivenessMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function systemHealthMetrics(values,model){tr.metrics.sh.responsivenessMetric(values,model);tr.metrics.sh.efficiencyMetric(values,model);tr.metrics.sh.longTasksMetric(values,model);tr.metrics.sh.hazardMetric(values,model);tr.metrics.sh.powerMetric(values,model);}
-tr.metrics.MetricRegistry.register(systemHealthMetrics);return{systemHealthMetrics:systemHealthMetrics};});'use strict';tr.exportTo('tr.metrics.sh',function(){function webviewStartupMetric(values,model){for(var slice of model.getDescendantEvents()){if(!(slice instanceof tr.model.Slice))
-continue;if(slice.title==='WebViewStartupInterval'){values.addValue(new tr.v.NumericValue('webview_startup_wall_time',new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,slice.duration),{description:'WebView startup wall time'}));values.addValue(new tr.v.NumericValue('webview_startup_cpu_time',new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,slice.cpuDuration),{description:'WebView startup CPU time'}));}
-if(slice.title==='WebViewBlankUrlLoadInterval'){values.addValue(new tr.v.NumericValue('webview_url_load_wall_time',new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,slice.duration),{description:'WebView blank URL load wall time'}));values.addValue(new tr.v.NumericValue('webview_url_load_cpu_time',new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,slice.cpuDuration),{description:'WebView blank URL load CPU time'}));}}};tr.metrics.MetricRegistry.register(webviewStartupMetric);return{webviewStartupMetric:webviewStartupMetric};});'use strict';tr.exportTo('tr.metrics',function(){var MEMORY_INFRA_TRACING_CATEGORY='disabled-by-default-memory-infra';function addTimeDurationValue(valueName,duration,allValues){var scalarNumericValue=new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,duration);var numericValue=new tr.v.NumericValue(valueName,scalarNumericValue);allValues.addValue(numericValue);}
+ue.stableId);frameTimeDiscrepancyNumeric.addSample(frameTimeDiscrepancy,sampleDiagnosticMap);ue.associatedEvents.forEach(function(event){if(!(event instanceof tr.e.cc.InputLatencyAsyncSlice))
+return;latencyNumeric.addSample(event.duration,sampleDiagnosticMap);});}else{throw new Error('Unrecognized stage for '+ue.stableId);}});[responseNumeric,throughputNumeric,frameTimeDiscrepancyNumeric,latencyNumeric].forEach(function(numeric){numeric.customizeSummaryOptions({avg:true,max:true,min:true,std:true});});values.addHistogram(responseNumeric);values.addHistogram(throughputNumeric);values.addHistogram(frameTimeDiscrepancyNumeric);values.addHistogram(latencyNumeric);}
+tr.metrics.MetricRegistry.register(responsivenessMetric,{supportsRangeOfInterest:true});return{responsivenessMetric:responsivenessMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function scrollPowerMetric(values,model){if(!model.device.powerSeries)
+return;var timeHist=new tr.v.Histogram('time:scroll',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter)
+timeHist.description='Time spent in scrolling';var energyHist=new tr.v.Histogram('energy:scroll',tr.b.Unit.byName.energyInJoules_smallerIsBetter)
+energyHist.description='Energy consumed by scrolling';var powerHist=new tr.v.Histogram('power:scroll',tr.b.Unit.byName.powerInWatts_smallerIsBetter)
+powerHist.description='Energy consumption rate in scrolling';timeHist.customizeSummaryOptions({avg:false,count:false,max:true,min:true,std:false,sum:true,});energyHist.customizeSummaryOptions({avg:false,count:false,max:true,min:true,std:false,sum:true,});powerHist.customizeSummaryOptions({avg:true,count:false,max:true,min:true,std:false,sum:false,});for(var exp of model.userModel.expectations){if(exp.title.indexOf("Scroll")!==-1){var durationInMs=exp.duration;var durationInS=tr.b.convertUnit(durationInMs,tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);var energyInJ=model.device.powerSeries.getEnergyConsumedInJ(exp.start,exp.end);var powerInW=energyInJ/durationInS;timeHist.addSample(durationInMs);energyHist.addSample(energyInJ);powerHist.addSample(powerInW);}}
+values.addHistogram(timeHist);values.addHistogram(energyHist);values.addHistogram(powerHist);}
+tr.metrics.MetricRegistry.register(scrollPowerMetric);return{scrollPowerMetric:scrollPowerMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function cpuTimeMetric(values,model,optOptions){var rangeOfInterest=optOptions?optOptions.rangeOfInterest:undefined;var allProcessCpuTime=0;for(var pid in model.processes){var process=model.processes[pid];var processCpuTime=0;for(var tid in process.threads){var thread=process.threads[tid];var threadCpuTime=0;thread.sliceGroup.topLevelSlices.forEach(function(slice){if(rangeOfInterest&&!rangeOfInterest.intersectsExplicitRangeInclusive(slice.start,slice.end))
+return;threadCpuTime+=slice.cpuDuration;});processCpuTime+=threadCpuTime;}
+allProcessCpuTime+=processCpuTime;}
+var normalizationRange=rangeOfInterest?rangeOfInterest:model.bounds.range;var MILLISECONDS_PER_SECOND=1000;var clockTimeInSeconds=normalizationRange/MILLISECONDS_PER_SECOND;clockTimeInSeconds=Math.max(clockTimeInSeconds,0.0001);var normalizedAllProcessCpuTime=allProcessCpuTime/clockTimeInSeconds;var unit=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;var boundaries=tr.v.HistogramBinBoundaries.createExponential(1,100000,200)
+var cpuTimeNumeric=new tr.v.Histogram('cpu_time',unit,boundaries);cpuTimeNumeric.description='Total CPU time on all Chrome processes, per second of clock time.';cpuTimeNumeric.addSample(normalizedAllProcessCpuTime);values.addHistogram(cpuTimeNumeric);}
+tr.metrics.MetricRegistry.register(cpuTimeMetric,{supportsRangeOfInterest:true});return{cpuTimeMetric:cpuTimeMetric,};});'use strict';tr.exportTo('tr.metrics.sh',function(){function systemHealthMetrics(values,model){tr.metrics.sh.responsivenessMetric(values,model);tr.metrics.sh.longTasksMetric(values,model);tr.metrics.sh.hazardMetric(values,model);tr.metrics.sh.powerMetric(values,model);tr.metrics.sh.cpuTimeMetric(values,model);}
+tr.metrics.MetricRegistry.register(systemHealthMetrics);return{systemHealthMetrics:systemHealthMetrics};});'use strict';tr.exportTo('tr.metrics.sh',function(){function getNavigationTTIIntervals(model){var values=new tr.v.ValueSet();tr.metrics.sh.loadingMetric(values,model);var ttiValues=values.getValuesNamed('timeToFirstInteractive');var intervals=[];for(var bin of tr.b.getOnlyElement(ttiValues).allBins)
+for(var diagnostics of bin.diagnosticMaps){var info=diagnostics.get('Navigation infos');intervals.push(tr.b.Range.fromExplicitRange(info.value.start,info.value.interactive));}
+return intervals.sort((x,y)=>x.min-y.min);}
+function ttiPowerMetric(values,model){if(!model.device.powerSeries)
+return;var intervals=getNavigationTTIIntervals(model);var lastLoadTime=0;var loadHistogram=new tr.v.Histogram('energy:load',tr.b.Unit.byName.energyInJoules_smallerIsBetter);loadHistogram.description='Energy consumed in page loads';loadHistogram.customizeSummaryOptions({avg:false,count:false,max:false,min:false,std:false,sum:true,});for(var interval of intervals){var energyInJ=model.device.powerSeries.getEnergyConsumedInJ(interval.min,interval.max);loadHistogram.addSample(energyInJ);lastLoadTime=interval.max;}
+values.addHistogram(loadHistogram);var afterLoadEnergyInJ=model.device.powerSeries.getEnergyConsumedInJ(lastLoadTime,model.bounds.max);var afterLoadTimeInMs=model.bounds.max-lastLoadTime;var afterLoadTimeInS=tr.b.convertUnit(afterLoadTimeInMs,tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);var afterLoadPowerInW=afterLoadEnergyInJ/afterLoadTimeInS;var afterLoadHistogram=new tr.v.Histogram('power:after_load',tr.b.Unit.byName.powerInWatts_smallerIsBetter);afterLoadHistogram.description='Average power after load';afterLoadHistogram.customizeSummaryOptions({avg:false,count:false,max:false,min:false,std:false,sum:false,});afterLoadHistogram.addSample(afterLoadPowerInW);values.addHistogram(afterLoadHistogram);}
+tr.metrics.MetricRegistry.register(ttiPowerMetric);return{ttiPowerMetric:ttiPowerMetric};});'use strict';tr.exportTo('tr.metrics.sh',function(){function webviewStartupMetric(values,model){var startupWallHist=new tr.v.Histogram('webview_startup_wall_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);startupWallHist.description='WebView startup wall time';var startupCPUHist=new tr.v.Histogram('webview_startup_cpu_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);startupCPUHist.description='WebView startup CPU time';var loadWallHist=new tr.v.Histogram('webview_url_load_wall_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);loadWallHist.description='WebView blank URL load wall time';var loadCPUHist=new tr.v.Histogram('webview_url_load_cpu_time',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);loadCPUHist.description='WebView blank URL load CPU time';for(var slice of model.getDescendantEvents()){if(!(slice instanceof tr.model.ThreadSlice))
+continue;if(slice.title==='WebViewStartupInterval'){startupWallHist.addSample(slice.duration);startupCPUHist.addSample(slice.cpuDuration);}
+if(slice.title==='WebViewBlankUrlLoadInterval'){loadWallHist.addSample(slice.duration);loadCPUHist.addSample(slice.cpuDuration);}}
+values.addHistogram(startupWallHist);values.addHistogram(startupCPUHist);values.addHistogram(loadWallHist);values.addHistogram(loadCPUHist);}
+tr.metrics.MetricRegistry.register(webviewStartupMetric);return{webviewStartupMetric:webviewStartupMetric};});'use strict';tr.exportTo('tr.metrics',function(){var MEMORY_INFRA_TRACING_CATEGORY='disabled-by-default-memory-infra';var TIME_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1e-3,1e5,30);var BYTE_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1,1e9,30);var COUNT_BOUNDARIES=tr.v.HistogramBinBoundaries.createExponential(1,1e5,30);function addTimeDurationValue(valueName,duration,allValues){var hist=new tr.v.Histogram(valueName,tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,TIME_BOUNDARIES);hist.addSample(duration);allValues.addHistogram(hist);}
 function addMemoryInfraValues(values,model,categoryNamesToTotalEventSizes){var memoryDumpCount=model.globalMemoryDumps.length;if(memoryDumpCount===0)
 return;var totalOverhead=0;var nonMemoryInfraThreadOverhead=0;var overheadByProvider={};tr.b.iterItems(model.processes,function(pid,process){tr.b.iterItems(process.threads,function(tid,thread){tr.b.iterItems(thread.sliceGroup.slices,function(slice_id,slice){if(slice.category!==MEMORY_INFRA_TRACING_CATEGORY)
 return;totalOverhead+=slice.duration;if(thread.name!=='MemoryInfra')
-nonMemoryInfraThreadOverhead+=slice.duration;if(slice.args&&slice.args['dump_provider.name']){var providerName=slice.args['dump_provider.name'];overheadByProvider[providerName]=(overheadByProvider[providerName]||0)+slice.duration;}});});});addTimeDurationValue('Average CPU overhead on all threads per memory-infra dump',totalOverhead/memoryDumpCount,values);addTimeDurationValue('Average CPU overhead on non-memory-infra threads per memory-infra '+'dump',nonMemoryInfraThreadOverhead/memoryDumpCount,values);tr.b.iterItems(overheadByProvider,function(providerName,overhead){addTimeDurationValue('Average CPU overhead of '+providerName+' per memory-infra dump',overhead/memoryDumpCount,values);});var memoryInfraEventsSize=categoryNamesToTotalEventSizes.get(MEMORY_INFRA_TRACING_CATEGORY);var memoryInfraTraceBytesValue=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,memoryInfraEventsSize);values.addValue(new tr.v.NumericValue('Total trace size of memory-infra dumps in bytes',memoryInfraTraceBytesValue));var traceBytesPerDumpValue=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,memoryInfraEventsSize/memoryDumpCount);values.addValue(new tr.v.NumericValue('Average trace size of memory-infra dumps in bytes',traceBytesPerDumpValue));}
+nonMemoryInfraThreadOverhead+=slice.duration;if(slice.args&&slice.args['dump_provider.name']){var providerName=slice.args['dump_provider.name'];var durationAndCount=overheadByProvider[providerName];if(durationAndCount===undefined){overheadByProvider[providerName]=durationAndCount={duration:0,count:0};}
+durationAndCount.duration+=slice.duration;durationAndCount.count++;}});});});addTimeDurationValue('Average CPU overhead on all threads per memory-infra dump',totalOverhead/memoryDumpCount,values);addTimeDurationValue('Average CPU overhead on non-memory-infra threads per memory-infra '+'dump',nonMemoryInfraThreadOverhead/memoryDumpCount,values);tr.b.iterItems(overheadByProvider,function(providerName,overhead){addTimeDurationValue('Average CPU overhead of '+providerName+' per OnMemoryDump call',overhead.duration/overhead.count,values);});var memoryInfraEventsSize=categoryNamesToTotalEventSizes.get(MEMORY_INFRA_TRACING_CATEGORY);var memoryInfraTraceBytesValue=new tr.v.Histogram('Total trace size of memory-infra dumps in bytes',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);memoryInfraTraceBytesValue.addSample(memoryInfraEventsSize);values.addHistogram(memoryInfraTraceBytesValue);var traceBytesPerDumpValue=new tr.v.Histogram('Average trace size of memory-infra dumps in bytes',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);traceBytesPerDumpValue.addSample(memoryInfraEventsSize/memoryDumpCount);values.addHistogram(traceBytesPerDumpValue);}
 function tracingMetric(values,model){if(!model.stats.hasEventSizesinBytes){throw new Error('Model stats does not have event size information. '+'Please enable ImportOptions.trackDetailedModelStats.');}
 var eventStats=model.stats.allTraceEventStatsInTimeIntervals;eventStats.sort(function(a,b){return a.timeInterval-b.timeInterval;});var totalTraceBytes=eventStats.reduce((a,b)=>(a+b.totalEventSizeinBytes),0);var maxEventCountPerSec=0;var maxEventBytesPerSec=0;var INTERVALS_PER_SEC=Math.floor(1000/model.stats.TIME_INTERVAL_SIZE_IN_MS);var runningEventNumPerSec=0;var runningEventBytesPerSec=0;var start=0;var end=0;while(end<eventStats.length){runningEventNumPerSec+=eventStats[end].numEvents;runningEventBytesPerSec+=eventStats[end].totalEventSizeinBytes;end++;while((eventStats[end-1].timeInterval-
 eventStats[start].timeInterval)>=INTERVALS_PER_SEC){runningEventNumPerSec-=eventStats[start].numEvents;runningEventBytesPerSec-=eventStats[start].totalEventSizeinBytes;start++;}
 maxEventCountPerSec=Math.max(maxEventCountPerSec,runningEventNumPerSec);maxEventBytesPerSec=Math.max(maxEventBytesPerSec,runningEventBytesPerSec);}
 var stats=model.stats.allTraceEventStats;var categoryNamesToTotalEventSizes=(stats.reduce((map,stat)=>(map.set(stat.category,((map.get(stat.category)||0)+
-stat.totalEventSizeinBytes))),new Map()));var maxCatNameAndBytes=Array.from(categoryNamesToTotalEventSizes.entries()).reduce((a,b)=>(b[1]>=a[1])?b:a);var maxEventBytesPerCategory=maxCatNameAndBytes[1];var categoryWithMaxEventBytes=maxCatNameAndBytes[0];var maxEventCountPerSecValue=new tr.v.ScalarNumeric(tr.v.Unit.byName.unitlessNumber_smallerIsBetter,maxEventCountPerSec);var maxEventBytesPerSecValue=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,maxEventBytesPerSec);var totalTraceBytesValue=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes_smallerIsBetter,totalTraceBytes);var biggestCategory={name:categoryWithMaxEventBytes,size_in_bytes:maxEventBytesPerCategory};var totalBytes=new tr.v.NumericValue('Total trace size in bytes',totalTraceBytesValue);totalBytes.diagnostics.add('category_with_max_event_size',new tr.v.d.Generic(biggestCategory));values.addValue(totalBytes);var peakEvents=new tr.v.NumericValue('Max number of events per second',maxEventCountPerSecValue);peakEvents.diagnostics.add('category_with_max_event_size',new tr.v.d.Generic(biggestCategory));values.addValue(peakEvents);var peakBytes=new tr.v.NumericValue('Max event size in bytes per second',maxEventBytesPerSecValue);peakBytes.diagnostics.add('category_with_max_event_size',new tr.v.d.Generic(biggestCategory));values.addValue(peakBytes);addMemoryInfraValues(values,model,categoryNamesToTotalEventSizes);}
-tr.metrics.MetricRegistry.register(tracingMetric);return{tracingMetric:tracingMetric,MEMORY_INFRA_TRACING_CATEGORY:MEMORY_INFRA_TRACING_CATEGORY};});'use strict';tr.exportTo('tr.metrics.v8',function(){var DURATION_NUMERIC_BUILDER=tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,tr.b.Range.fromExplicitRange(4,200),100);function computeExecuteMetrics(values,model){var cpuTotalExecution=DURATION_NUMERIC_BUILDER.build();var wallTotalExecution=DURATION_NUMERIC_BUILDER.build();var cpuSelfExecution=DURATION_NUMERIC_BUILDER.build();var wallSelfExecution=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.Execute')){cpuTotalExecution.add(e.cpuDuration);wallTotalExecution.add(e.duration);cpuSelfExecution.add(e.cpuSelfTime);wallSelfExecution.add(e.selfTime);}
-values.addValue(new tr.v.NumericValue('v8_execution_cpu_total',cpuTotalExecution,{description:'cpu total time spent in script execution'}));values.addValue(new tr.v.NumericValue('v8_execution_wall_total',wallTotalExecution,{description:'wall total time spent in script execution'}));values.addValue(new tr.v.NumericValue('v8_execution_cpu_self',cpuSelfExecution,{description:'cpu self time spent in script execution'}));values.addValue(new tr.v.NumericValue('v8_execution_wall_self',wallSelfExecution,{description:'wall self time spent in script execution'}));}
-function computeParseLazyMetrics(values,model){var cpuSelfParseLazy=DURATION_NUMERIC_BUILDER.build();var wallSelfParseLazy=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.ParseLazyMicroSeconds')){cpuSelfParseLazy.add(e.cpuSelfTime);wallSelfParseLazy.add(e.selfTime);}
-for(var e of model.findTopmostSlicesNamed('V8.ParseLazy')){cpuSelfParseLazy.add(e.cpuSelfTime);wallSelfParseLazy.add(e.selfTime);}
-values.addValue(new tr.v.NumericValue('v8_parse_lazy_cpu_self',cpuSelfParseLazy,{description:'cpu self time spent performing lazy parsing'}));values.addValue(new tr.v.NumericValue('v8_parse_lazy_wall_self',wallSelfParseLazy,{description:'wall self time spent performing lazy parsing'}));}
-function computeCompileFullCodeMetrics(values,model){var cpuSelfCompileFullCode=DURATION_NUMERIC_BUILDER.build();var wallSelfCompileFullCode=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.CompileFullCode')){cpuSelfCompileFullCode.add(e.cpuSelfTime);wallSelfCompileFullCode.add(e.selfTime);}
-values.addValue(new tr.v.NumericValue('v8_compile_full_code_cpu_self',cpuSelfCompileFullCode,{description:'cpu self time spent performing compiling full code'}));values.addValue(new tr.v.NumericValue('v8_compile_full_code_wall_self',wallSelfCompileFullCode,{description:'wall self time spent performing compiling full code'}));}
-function computeCompileIgnitionMetrics(values,model){var cpuSelfCompileIgnition=DURATION_NUMERIC_BUILDER.build();var wallSelfCompileIgnition=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.CompileIgnition')){cpuSelfCompileIgnition.add(e.cpuSelfTime);wallSelfCompileIgnition.add(e.selfTime);}
-values.addValue(new tr.v.NumericValue('v8_compile_ignition_cpu_self',cpuSelfCompileIgnition,{description:'cpu self time spent in compile ignition'}));values.addValue(new tr.v.NumericValue('v8_compile_ignition_wall_self',wallSelfCompileIgnition,{description:'wall self time spent in compile ignition'}));}
-function computeRecompileMetrics(values,model){var cpuTotalRecompileSynchronous=DURATION_NUMERIC_BUILDER.build();var wallTotalRecompileSynchronous=DURATION_NUMERIC_BUILDER.build();var cpuTotalRecompileConcurrent=DURATION_NUMERIC_BUILDER.build();var wallTotalRecompileConcurrent=DURATION_NUMERIC_BUILDER.build();var cpuTotalRecompileOverall=DURATION_NUMERIC_BUILDER.build();var wallTotalRecompileOverall=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.RecompileSynchronous')){cpuTotalRecompileSynchronous.add(e.cpuDuration);wallTotalRecompileSynchronous.add(e.duration);cpuTotalRecompileOverall.add(e.cpuDuration);wallTotalRecompileOverall.add(e.duration);}
-values.addValue(new tr.v.NumericValue('v8_recompile_synchronous_cpu_total',cpuTotalRecompileSynchronous,{description:'cpu total time spent in synchronous recompilation'}));values.addValue(new tr.v.NumericValue('v8_recompile_synchronous_wall_total',wallTotalRecompileSynchronous,{description:'wall total time spent in synchronous recompilation'}));for(var e of model.findTopmostSlicesNamed('V8.RecompileConcurrent')){cpuTotalRecompileConcurrent.add(e.cpuDuration);wallTotalRecompileConcurrent.add(e.duration);cpuTotalRecompileOverall.add(e.cpuDuration);wallTotalRecompileOverall.add(e.duration);}
-values.addValue(new tr.v.NumericValue('v8_recompile_concurrent_cpu_total',cpuTotalRecompileConcurrent,{description:'cpu total time spent in concurrent recompilation'}));values.addValue(new tr.v.NumericValue('v8_recompile_concurrent_wall_total',wallTotalRecompileConcurrent,{description:'wall total time spent in concurrent recompilation'}));values.addValue(new tr.v.NumericValue('v8_recompile_overall_cpu_total',cpuTotalRecompileOverall,{description:'cpu total time spent in synchronous or concurrent recompilation'}));values.addValue(new tr.v.NumericValue('v8_recompile_overall_wall_total',wallTotalRecompileOverall,{description:'wall total time spent in synchronous or concurrent recompilation'}));}
-function computeOptimizeCodeMetrics(values,model){var cpuTotalOptimizeCode=DURATION_NUMERIC_BUILDER.build();var wallTotalOptimizeCode=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.OptimizeCode')){cpuTotalOptimizeCode.add(e.cpuDuration);wallTotalOptimizeCode.add(e.duration);}
-values.addValue(new tr.v.NumericValue('v8_optimize_code_cpu_total',cpuTotalOptimizeCode,{description:'cpu total time spent in code optimization'}));values.addValue(new tr.v.NumericValue('v8_optimize_code_wall_total',wallTotalOptimizeCode,{description:'wall total time spent in code optimization'}));}
-function computeDeoptimizeCodeMetrics(values,model){var cpuTotalDeoptimizeCode=DURATION_NUMERIC_BUILDER.build();var wallTotalDeoptimizeCode=DURATION_NUMERIC_BUILDER.build();for(var e of model.findTopmostSlicesNamed('V8.DeoptimizeCode')){cpuTotalDeoptimizeCode.add(e.cpuDuration);wallTotalDeoptimizeCode.add(e.duration);}
-values.addValue(new tr.v.NumericValue('v8_deoptimize_code_cpu_total',cpuTotalDeoptimizeCode,{description:'cpu total time spent in code deoptimization'}));values.addValue(new tr.v.NumericValue('v8_deoptimize_code_wall_total',wallTotalDeoptimizeCode,{description:'wall total time spent in code deoptimization'}));}
+stat.totalEventSizeinBytes))),new Map()));var maxCatNameAndBytes=Array.from(categoryNamesToTotalEventSizes.entries()).reduce((a,b)=>(b[1]>=a[1])?b:a);var maxEventBytesPerCategory=maxCatNameAndBytes[1];var categoryWithMaxEventBytes=maxCatNameAndBytes[0];var maxEventCountPerSecValue=new tr.v.Histogram('Max number of events per second',tr.b.Unit.byName.count_smallerIsBetter,COUNT_BOUNDARIES);maxEventCountPerSecValue.addSample(maxEventCountPerSec);var maxEventBytesPerSecValue=new tr.v.Histogram('Max event size in bytes per second',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);maxEventBytesPerSecValue.addSample(maxEventBytesPerSec);var totalTraceBytesValue=new tr.v.Histogram('Total trace size in bytes',tr.b.Unit.byName.sizeInBytes_smallerIsBetter,BYTE_BOUNDARIES);totalTraceBytesValue.addSample(totalTraceBytes);var biggestCategory={name:categoryWithMaxEventBytes,size_in_bytes:maxEventBytesPerCategory};totalTraceBytesValue.diagnostics.set('category_with_max_event_size',new tr.v.d.Generic(biggestCategory));values.addHistogram(totalTraceBytesValue);maxEventCountPerSecValue.diagnostics.set('category_with_max_event_size',new tr.v.d.Generic(biggestCategory));values.addHistogram(maxEventCountPerSecValue);maxEventBytesPerSecValue.diagnostics.set('category_with_max_event_size',new tr.v.d.Generic(biggestCategory));values.addHistogram(maxEventBytesPerSecValue);addMemoryInfraValues(values,model,categoryNamesToTotalEventSizes);}
+tr.metrics.MetricRegistry.register(tracingMetric);return{tracingMetric:tracingMetric,MEMORY_INFRA_TRACING_CATEGORY:MEMORY_INFRA_TRACING_CATEGORY};});'use strict';tr.exportTo('tr.metrics.v8',function(){var CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(4,200,100);function computeExecuteMetrics(values,model){var cpuTotalExecution=new tr.v.Histogram('v8_execution_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalExecution.description='cpu total time spent in script execution';var wallTotalExecution=new tr.v.Histogram('v8_execution_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalExecution.description='wall total time spent in script execution';var cpuSelfExecution=new tr.v.Histogram('v8_execution_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfExecution.description='cpu self time spent in script execution';var wallSelfExecution=new tr.v.Histogram('v8_execution_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfExecution.description='wall self time spent in script execution';for(var e of model.findTopmostSlicesNamed('V8.Execute')){cpuTotalExecution.addSample(e.cpuDuration);wallTotalExecution.addSample(e.duration);cpuSelfExecution.addSample(e.cpuSelfTime);wallSelfExecution.addSample(e.selfTime);}
+values.addHistogram(cpuTotalExecution);values.addHistogram(wallTotalExecution);values.addHistogram(cpuSelfExecution);values.addHistogram(wallSelfExecution);}
+function computeParseLazyMetrics(values,model){var cpuSelfParseLazy=new tr.v.Histogram('v8_parse_lazy_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfParseLazy.description='cpu self time spent performing lazy parsing';var wallSelfParseLazy=new tr.v.Histogram('v8_parse_lazy_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfParseLazy.description='wall self time spent performing lazy parsing';for(var e of model.findTopmostSlicesNamed('V8.ParseLazyMicroSeconds')){cpuSelfParseLazy.addSample(e.cpuSelfTime);wallSelfParseLazy.addSample(e.selfTime);}
+for(var e of model.findTopmostSlicesNamed('V8.ParseLazy')){cpuSelfParseLazy.addSample(e.cpuSelfTime);wallSelfParseLazy.addSample(e.selfTime);}
+values.addHistogram(cpuSelfParseLazy);values.addHistogram(wallSelfParseLazy);}
+function computeCompileFullCodeMetrics(values,model){var cpuSelfCompileFullCode=new tr.v.Histogram('v8_compile_full_code_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfCompileFullCode.description='cpu self time spent performing compiling full code';var wallSelfCompileFullCode=new tr.v.Histogram('v8_compile_full_code_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfCompileFullCode.description='wall self time spent performing compiling full code';for(var e of model.findTopmostSlicesNamed('V8.CompileFullCode')){cpuSelfCompileFullCode.addSample(e.cpuSelfTime);wallSelfCompileFullCode.addSample(e.selfTime);}
+values.addHistogram(cpuSelfCompileFullCode);values.addHistogram(wallSelfCompileFullCode);}
+function computeCompileIgnitionMetrics(values,model){var cpuSelfCompileIgnition=new tr.v.Histogram('v8_compile_ignition_cpu_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuSelfCompileIgnition.description='cpu self time spent in compile ignition';var wallSelfCompileIgnition=new tr.v.Histogram('v8_compile_ignition_wall_self',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallSelfCompileIgnition.description='wall self time spent in compile ignition';for(var e of model.findTopmostSlicesNamed('V8.CompileIgnition')){cpuSelfCompileIgnition.addSample(e.cpuSelfTime);wallSelfCompileIgnition.addSample(e.selfTime);}
+values.addHistogram(cpuSelfCompileIgnition);values.addHistogram(wallSelfCompileIgnition);}
+function computeRecompileMetrics(values,model){var cpuTotalRecompileSynchronous=new tr.v.Histogram('v8_recompile_synchronous_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalRecompileSynchronous.description='cpu total time spent in synchronous recompilation';var wallTotalRecompileSynchronous=new tr.v.Histogram('v8_recompile_synchronous_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalRecompileSynchronous.description='wall total time spent in synchronous recompilation';var cpuTotalRecompileConcurrent=new tr.v.Histogram('v8_recompile_concurrent_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalRecompileConcurrent.description='cpu total time spent in concurrent recompilation';var wallTotalRecompileConcurrent=new tr.v.Histogram('v8_recompile_concurrent_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalRecompileConcurrent.description='wall total time spent in concurrent recompilation';var cpuTotalRecompileOverall=new tr.v.Histogram('v8_recompile_overall_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalRecompileOverall.description='cpu total time spent in synchronous or concurrent recompilation';var wallTotalRecompileOverall=new tr.v.Histogram('v8_recompile_overall_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalRecompileOverall.description='wall total time spent in synchronous or concurrent recompilation';for(var e of model.findTopmostSlicesNamed('V8.RecompileSynchronous')){cpuTotalRecompileSynchronous.addSample(e.cpuDuration);wallTotalRecompileSynchronous.addSample(e.duration);cpuTotalRecompileOverall.addSample(e.cpuDuration);wallTotalRecompileOverall.addSample(e.duration);}
+values.addHistogram(cpuTotalRecompileSynchronous);values.addHistogram(wallTotalRecompileSynchronous);for(var e of model.findTopmostSlicesNamed('V8.RecompileConcurrent')){cpuTotalRecompileConcurrent.addSample(e.cpuDuration);wallTotalRecompileConcurrent.addSample(e.duration);cpuTotalRecompileOverall.addSample(e.cpuDuration);wallTotalRecompileOverall.addSample(e.duration);}
+values.addHistogram(cpuTotalRecompileConcurrent);values.addHistogram(wallTotalRecompileConcurrent);values.addHistogram(cpuTotalRecompileOverall);values.addHistogram(wallTotalRecompileOverall);}
+function computeOptimizeCodeMetrics(values,model){var cpuTotalOptimizeCode=new tr.v.Histogram('v8_optimize_code_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalOptimizeCode.description='cpu total time spent in code optimization';var wallTotalOptimizeCode=new tr.v.Histogram('v8_optimize_code_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalOptimizeCode.description='wall total time spent in code optimization';for(var e of model.findTopmostSlicesNamed('V8.OptimizeCode')){cpuTotalOptimizeCode.addSample(e.cpuDuration);wallTotalOptimizeCode.addSample(e.duration);}
+values.addHistogram(cpuTotalOptimizeCode);values.addHistogram(wallTotalOptimizeCode);}
+function computeDeoptimizeCodeMetrics(values,model){var cpuTotalDeoptimizeCode=new tr.v.Histogram('v8_deoptimize_code_cpu_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);cpuTotalDeoptimizeCode.description='cpu total time spent in code deoptimization';var wallTotalDeoptimizeCode=new tr.v.Histogram('v8_deoptimize_code_wall_total',tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);wallTotalDeoptimizeCode.description='wall total time spent in code deoptimization';for(var e of model.findTopmostSlicesNamed('V8.DeoptimizeCode')){cpuTotalDeoptimizeCode.addSample(e.cpuDuration);wallTotalDeoptimizeCode.addSample(e.duration);}
+values.addHistogram(cpuTotalDeoptimizeCode);values.addHistogram(wallTotalDeoptimizeCode);}
 function executionMetric(values,model){computeExecuteMetrics(values,model);computeParseLazyMetrics(values,model);computeCompileIgnitionMetrics(values,model);computeCompileFullCodeMetrics(values,model);computeRecompileMetrics(values,model);computeOptimizeCodeMetrics(values,model);computeDeoptimizeCodeMetrics(values,model);}
-tr.metrics.MetricRegistry.register(executionMetric);return{executionMetric:executionMetric};});'use strict';tr.exportTo('tr.metrics.v8',function(){var TARGET_FPS=60;var MS_PER_SECOND=1000;var WINDOW_SIZE_MS=MS_PER_SECOND/TARGET_FPS;function gcMetric(values,model){addDurationOfTopEvents(values,model);addTotalDurationOfTopEvents(values,model);addDurationOfSubEvents(values,model);addIdleTimesOfTopEvents(values,model);addTotalIdleTimesOfTopEvents(values,model);addV8ExecuteMutatorUtilization(values,model);}
-tr.metrics.MetricRegistry.register(gcMetric);var timeDurationInMs_smallerIsBetter=tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;var percentage_biggerIsBetter=tr.v.Unit.byName.normalizedPercentage_biggerIsBetter;var numericBuilder=new tr.v.NumericBuilder(timeDurationInMs_smallerIsBetter,0);numericBuilder.addLinearBins(20,200);numericBuilder.addExponentialBins(200,100);function createNumericForTopEventTime(){var n=numericBuilder.build();n.customizeSummaryOptions({avg:true,count:true,max:true,min:false,std:true,sum:true,percentile:[0.90]});return n;}
-function createNumericForSubEventTime(){var n=numericBuilder.build();n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:false,percentile:[0.90]});return n;}
-function createNumericForIdleTime(){var n=numericBuilder.build();n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:true,percentile:[]});return n;}
-function createPercentage(numerator,denominator){var percentage=denominator===0?0:numerator/denominator*100;return new tr.v.ScalarNumeric(percentage_biggerIsBetter,percentage);}
+tr.metrics.MetricRegistry.register(executionMetric);return{executionMetric:executionMetric};});'use strict';tr.exportTo('tr.metrics.v8',function(){var TARGET_FPS=60;var MS_PER_SECOND=1000;var WINDOW_SIZE_MS=MS_PER_SECOND/TARGET_FPS;function gcMetric(values,model){addDurationOfTopEvents(values,model);addTotalDurationOfTopEvents(values,model);addDurationOfSubEvents(values,model);addIdleTimesOfTopEvents(values,model);addTotalIdleTimesOfTopEvents(values,model);addPercentageInV8ExecuteOfTopEvents(values,model);addTotalPercentageInV8Execute(values,model);addV8ExecuteMutatorUtilization(values,model);}
+tr.metrics.MetricRegistry.register(gcMetric);var timeDurationInMs_smallerIsBetter=tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;var percentage_biggerIsBetter=tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;var percentage_smallerIsBetter=tr.b.Unit.byName.normalizedPercentage_smallerIsBetter;var CUSTOM_BOUNDARIES=tr.v.HistogramBinBoundaries.createLinear(0,20,200).addExponentialBins(200,100);function createNumericForTopEventTime(name){var n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:true,max:true,min:false,std:true,sum:true,percentile:[0.90]});return n;}
+function createNumericForSubEventTime(name){var n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:false,percentile:[0.90]});return n;}
+function createNumericForIdleTime(name){var n=new tr.v.Histogram(name,timeDurationInMs_smallerIsBetter,CUSTOM_BOUNDARIES);n.customizeSummaryOptions({avg:true,count:false,max:true,min:false,std:false,sum:true,percentile:[]});return n;}
+function createPercentage(name,numerator,denominator,unit){var hist=new tr.v.Histogram(name,unit);if(denominator===0)
+hist.addSample(0);else
+hist.addSample(numerator/denominator);hist.customizeSummaryOptions({avg:true,count:false,max:false,min:false,std:false,sum:false,percentile:[]});return hist;}
 function isNotForcedTopGarbageCollectionEvent(event){return tr.metrics.v8.utils.isTopGarbageCollectionEvent(event)&&!tr.metrics.v8.utils.isForcedGarbageCollectionEvent(event);}
 function isNotForcedSubGarbageCollectionEvent(event){return tr.metrics.v8.utils.isSubGarbageCollectionEvent(event)&&!tr.metrics.v8.utils.isForcedGarbageCollectionEvent(event);}
-function addDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,tr.metrics.v8.utils.topGarbageCollectionEventName,function(name,events){var cpuDuration=createNumericForTopEventTime();events.forEach(function(event){cpuDuration.add(event.cpuDuration);});values.addValue(new tr.v.NumericValue(name,cpuDuration));});}
-function addTotalDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,event=>'v8-gc-total',function(name,events){var cpuDuration=createNumericForTopEventTime();events.forEach(function(event){cpuDuration.add(event.cpuDuration);});values.addValue(new tr.v.NumericValue(name,cpuDuration));});}
-function addDurationOfSubEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedSubGarbageCollectionEvent,tr.metrics.v8.utils.subGarbageCollectionEventName,function(name,events){var cpuDuration=createNumericForSubEventTime();events.forEach(function(event){cpuDuration.add(event.cpuDuration);});values.addValue(new tr.v.NumericValue(name,cpuDuration));});}
+function addDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,tr.metrics.v8.utils.topGarbageCollectionEventName,function(name,events){var cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});values.addHistogram(cpuDuration);});}
+function addTotalDurationOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,event=>'v8-gc-total',function(name,events){var cpuDuration=createNumericForTopEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});values.addHistogram(cpuDuration);});}
+function addDurationOfSubEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedSubGarbageCollectionEvent,tr.metrics.v8.utils.subGarbageCollectionEventName,function(name,events){var cpuDuration=createNumericForSubEventTime(name);events.forEach(function(event){cpuDuration.addSample(event.cpuDuration);});values.addHistogram(cpuDuration);});}
 function addIdleTimesOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,tr.metrics.v8.utils.topGarbageCollectionEventName,function(name,events){addIdleTimes(values,model,name,events);});}
 function addTotalIdleTimesOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,event=>'v8-gc-total',function(name,events){addIdleTimes(values,model,name,events);});}
-function addIdleTimes(values,model,name,events){var cpuDuration=createNumericForIdleTime();var insideIdle=createNumericForIdleTime();var outsideIdle=createNumericForIdleTime();var idleDeadlineOverrun=createNumericForIdleTime();events.forEach(function(event){var idleTask=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isIdleTask);var inside=0;var overrun=0;if(idleTask){var allottedTime=idleTask['args']['allotted_time_ms'];if(event.duration>allottedTime){overrun=event.duration-allottedTime;inside=event.cpuDuration*allottedTime/event.duration;}else{inside=event.cpuDuration;}}
-cpuDuration.add(event.cpuDuration);insideIdle.add(inside);outsideIdle.add(event.cpuDuration-inside);idleDeadlineOverrun.add(overrun);});values.addValue(new tr.v.NumericValue(name+'_idle_deadline_overrun',idleDeadlineOverrun));values.addValue(new tr.v.NumericValue(name+'_outside_idle',outsideIdle));var percentage=createPercentage(insideIdle.sum,cpuDuration.sum);values.addValue(new tr.v.NumericValue(name+'_percentage_idle',percentage));}
+function addIdleTimes(values,model,name,events){var cpuDuration=createNumericForIdleTime();var insideIdle=createNumericForIdleTime();var outsideIdle=createNumericForIdleTime(name+'_outside_idle');var idleDeadlineOverrun=createNumericForIdleTime(name+'_idle_deadline_overrun');events.forEach(function(event){var idleTask=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isIdleTask);var inside=0;var overrun=0;if(idleTask){var allottedTime=idleTask['args']['allotted_time_ms'];if(event.duration>allottedTime){overrun=event.duration-allottedTime;inside=event.cpuDuration*allottedTime/event.duration;}else{inside=event.cpuDuration;}}
+cpuDuration.addSample(event.cpuDuration);insideIdle.addSample(inside);outsideIdle.addSample(event.cpuDuration-inside);idleDeadlineOverrun.addSample(overrun);});values.addHistogram(idleDeadlineOverrun);values.addHistogram(outsideIdle);var percentage=createPercentage(name+'_percentage_idle',insideIdle.sum,cpuDuration.sum,percentage_biggerIsBetter);values.addHistogram(percentage);}
+function addPercentageInV8ExecuteOfTopEvents(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,tr.metrics.v8.utils.topGarbageCollectionEventName,function(name,events){addPercentageInV8Execute(values,model,name,events);});}
+function addTotalPercentageInV8Execute(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,isNotForcedTopGarbageCollectionEvent,event=>'v8-gc-total',function(name,events){addPercentageInV8Execute(values,model,name,events);});}
+function addPercentageInV8Execute(values,model,name,events){var cpuDurationInV8Execute=0;var cpuDurationTotal=0;events.forEach(function(event){var v8Execute=tr.metrics.v8.utils.findParent(event,tr.metrics.v8.utils.isV8ExecuteEvent);if(v8Execute){cpuDurationInV8Execute+=event.cpuDuration;}
+cpuDurationTotal+=event.cpuDuration;});var percentage=createPercentage(name+'_percentage_in_v8_execute',cpuDurationInV8Execute,cpuDurationTotal,percentage_smallerIsBetter);values.addHistogram(percentage);}
 function addV8ExecuteMutatorUtilization(values,model){tr.metrics.v8.utils.groupAndProcessEvents(model,tr.metrics.v8.utils.isTopV8ExecuteEvent,event=>'v8-execute',function(name,events){events.sort((a,b)=>a.start-b.start);var time=0;var pauses=[];for(var topEvent of events){for(var e of topEvent.enumerateAllDescendents()){if(isNotForcedTopGarbageCollectionEvent(e)){pauses.push({start:e.start-topEvent.start+time,end:e.end-topEvent.start+time});}}
 time+=topEvent.duration;}
-var mutatorUtilization=tr.metrics.v8.utils.mutatorUtilization(0,time,WINDOW_SIZE_MS,pauses);[0.90,0.95,0.99].forEach(function(percent){var value=new tr.v.ScalarNumeric(percentage_biggerIsBetter,mutatorUtilization.percentile(1.0-percent)*100);values.addValue(new tr.v.NumericValue('v8-execute-mutator-utilization_pct_0'+
-percent*100,value));});var value=new tr.v.ScalarNumeric(percentage_biggerIsBetter,mutatorUtilization.min);values.addValue(new tr.v.NumericValue('v8-execute-mutator-utilization_min',value));});}
+var mutatorUtilization=tr.metrics.v8.utils.mutatorUtilization(0,time,WINDOW_SIZE_MS,pauses);[0.90,0.95,0.99].forEach(function(percent){var hist=new tr.v.Histogram('v8-execute-mutator-utilization_pct_0'+percent*100,percentage_biggerIsBetter);hist.addSample(mutatorUtilization.percentile(1.0-percent));values.addHistogram(hist);});var hist=new tr.v.Histogram('v8-execute-mutator-utilization_min',percentage_biggerIsBetter);hist.addSample(mutatorUtilization.min);values.addHistogram(hist);});}
 return{gcMetric:gcMetric,WINDOW_SIZE_MS:WINDOW_SIZE_MS};});'use strict';tr.exportTo('tr.metrics.v8',function(){function v8AndMemoryMetrics(values,model){tr.metrics.v8.executionMetric(values,model);tr.metrics.v8.gcMetric(values,model);tr.metrics.sh.memoryMetric(values,model,{rangeOfInterest:tr.metrics.v8.utils.rangeForMemoryDumps(model)});}
 tr.metrics.MetricRegistry.register(v8AndMemoryMetrics);return{v8AndMemoryMetrics:v8AndMemoryMetrics};});'use strict';Polymer({is:'tr-ui-a-alert-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.currentSelection_=undefined;this.$.table.tableColumns=[{title:'Label',value:function(row){return row.name;},width:'150px'},{title:'Value',width:'100%',value:function(row){return row.value;}}];this.$.table.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},getRowsForSingleAlert_:function(alert){var rows=[];for(var argName in alert.args){var argView=document.createElement('tr-ui-a-generic-object-view');argView.object=alert.args[argName];rows.push({name:argName,value:argView});}
 if(alert.associatedEvents.length){alert.associatedEvents.forEach(function(event,i){var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(event),event.title);var valueString='';if(event instanceof tr.model.TimedEvent)
 valueString='took '+event.duration.toFixed(2)+'ms';rows.push({name:linkEl,value:valueString});});}
 var descriptionEl=tr.ui.b.createDiv({textContent:alert.info.description,maxWidth:'300px'});rows.push({name:'Description',value:descriptionEl});if(alert.info.docLinks){alert.info.docLinks.forEach(function(linkObject){var linkEl=document.createElement('a');linkEl.target='_blank';linkEl.href=linkObject.href;Polymer.dom(linkEl).textContent=Polymer.dom(linkObject).textContent;rows.push({name:linkObject.label,value:linkEl});});}
-return rows;},getRowsForAlerts_:function(alerts){if(alerts.length==1){var rows=[{name:'Alert',value:tr.b.getOnlyElement(alerts).title}];var detailRows=this.getRowsForSingleAlert_(alerts[0]);rows.push.apply(rows,detailRows);return rows;}else{return alerts.map(function(alert){return{name:'Alert',value:alert.title,isExpanded:alerts.size<10,subRows:this.getRowsForSingleAlert_(alert)};},this);}},updateContents_:function(){if(this.currentSelection_===undefined){this.$.table.rows=[];this.$.table.rebuild();return;}
+return rows;},getRowsForAlerts_:function(alerts){if(alerts.length==1){var rows=[{name:'Alert',value:tr.b.getOnlyElement(alerts).title}];var detailRows=this.getRowsForSingleAlert_(tr.b.getOnlyElement(alerts));rows.push.apply(rows,detailRows);return rows;}else{return alerts.map(function(alert){return{name:'Alert',value:alert.title,isExpanded:alerts.size<10,subRows:this.getRowsForSingleAlert_(alert)};},this);}},updateContents_:function(){if(this.currentSelection_===undefined){this.$.table.rows=[];this.$.table.rebuild();return;}
 var alerts=this.currentSelection_;this.$.table.tableRows=this.getRowsForAlerts_(alerts);this.$.table.rebuild();},get relatedEventsToHighlight(){if(!this.currentSelection_)
 return undefined;var result=new tr.model.EventSet();for(var event of this.currentSelection_)
 result.addEventSet(event.associatedEvents);return result;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-alert-sub-view',tr.model.Alert,{multi:false,title:'Alert',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-alert-sub-view',tr.model.Alert,{multi:true,title:'Alerts',});'use strict';tr.exportTo('tr.ui.analysis',function(){var NO_BREAK_SPACE=String.fromCharCode(160);var RIGHTWARDS_ARROW=String.fromCharCode(8594);var COLLATOR=new Intl.Collator(undefined,{numeric:true});function TitleColumn(title){this.title=title;}
@@ -8120,14 +8213,14 @@
 function createCells(timeToValues,valueFieldsGetter,opt_this){opt_this=opt_this||this;var fieldNameToFields=tr.b.invertArrayOfDicts(timeToValues,valueFieldsGetter,opt_this);return tr.b.mapItems(fieldNameToFields,function(fieldName,fields){return new tr.ui.analysis.MemoryCell(fields);});}
 function createWarningInfo(message){return{message:message,icon:String.fromCharCode(9888),color:'red'};}
 function DetailsNumericMemoryColumn(name,cellPath,aggregationMode){NumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
-DetailsNumericMemoryColumn.prototype={__proto__:NumericMemoryColumn.prototype,getFormattingContext:function(unit){if(unit.baseUnit===tr.v.Unit.byName.sizeInBytes)
-return{unitPrefix:tr.v.UnitScale.Binary.KIBI};return undefined;}};return{TitleColumn:TitleColumn,MemoryColumn:MemoryColumn,StringMemoryColumn:StringMemoryColumn,NumericMemoryColumn:NumericMemoryColumn,MemoryCell:MemoryCell,expandTableRowsRecursively:expandTableRowsRecursively,aggregateTableRowCellsRecursively:aggregateTableRowCellsRecursively,aggregateTableRowCells:aggregateTableRowCells,createCells:createCells,createWarningInfo:createWarningInfo,DetailsNumericMemoryColumn:DetailsNumericMemoryColumn};});'use strict';tr.exportTo('tr.ui.analysis',function(){var StackedPane={rebuild:function(){if(!this.paneDirty_){return;}
-this.paneDirty_=false;this.rebuildPane_();},scheduleRebuildPane_:function(){if(this.paneDirty_)
-return;this.paneDirty_=true;setTimeout(this.rebuild.bind(this),0);},rebuildPane_:function(){},set childPaneBuilder(childPaneBuilder){this.childPaneBuilder_=childPaneBuilder;this.dispatchEvent(new tr.b.Event('request-child-pane-change'));},get childPaneBuilder(){return this.childPaneBuilder_;},appended:function(){this.rebuild();}};return{StackedPane:StackedPane};});Polymer({is:'tr-ui-a-stacked-pane',behaviors:[tr.ui.analysis.StackedPane]});'use strict';tr.exportTo('tr.ui.analysis',function(){var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.v.Unit.byName.sizeInBytes_smallerIsBetter;var unitlessNumber_smallerIsBetter=tr.v.Unit.byName.unitlessNumber_smallerIsBetter;var MultiDimensionalViewBuilder=tr.b.MultiDimensionalViewBuilder;var TotalState=tr.b.MultiDimensionalViewNode.TotalState;var RowDimension={ROOT:-1,STACK_FRAME:0,OBJECT_TYPE:1};var LATIN_SMALL_LETTER_F_WITH_HOOK=String.fromCharCode(0x0192);var CIRCLED_LATIN_CAPITAL_LETTER_T=String.fromCharCode(0x24C9);function HeapDumpNodeTitleColumn(title){tr.ui.analysis.TitleColumn.call(this,title);}
+DetailsNumericMemoryColumn.prototype={__proto__:NumericMemoryColumn.prototype,getFormattingContext:function(unit){if(unit.baseUnit===tr.b.Unit.byName.sizeInBytes)
+return{unitPrefix:tr.b.UnitScale.Binary.KIBI};return undefined;}};return{TitleColumn:TitleColumn,MemoryColumn:MemoryColumn,StringMemoryColumn:StringMemoryColumn,NumericMemoryColumn:NumericMemoryColumn,MemoryCell:MemoryCell,expandTableRowsRecursively:expandTableRowsRecursively,aggregateTableRowCellsRecursively:aggregateTableRowCellsRecursively,aggregateTableRowCells:aggregateTableRowCells,createCells:createCells,createWarningInfo:createWarningInfo,DetailsNumericMemoryColumn:DetailsNumericMemoryColumn};});'use strict';tr.exportTo('tr.ui.analysis',function(){var RebuildableBehavior={rebuild:function(){if(!this.paneDirty_){return;}
+this.paneDirty_=false;this.onRebuild_();},scheduleRebuild_:function(){if(this.paneDirty_)
+return;this.paneDirty_=true;tr.b.requestAnimationFrame(this.rebuild.bind(this));},onRebuild_:function(){}};return{RebuildableBehavior:RebuildableBehavior};});'use strict';tr.exportTo('tr.ui.analysis',function(){var StackedPaneImpl={set childPaneBuilder(childPaneBuilder){this.childPaneBuilder_=childPaneBuilder;this.dispatchEvent(new tr.b.Event('request-child-pane-change'));},get childPaneBuilder(){return this.childPaneBuilder_;},appended:function(){this.rebuild();}};var StackedPane=[tr.ui.analysis.RebuildableBehavior,StackedPaneImpl];return{StackedPane:StackedPane};});Polymer({is:'tr-ui-a-stacked-pane',behaviors:[tr.ui.analysis.StackedPane]});'use strict';tr.exportTo('tr.ui.analysis',function(){var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;var unitlessNumber_smallerIsBetter=tr.b.Unit.byName.unitlessNumber_smallerIsBetter;var MultiDimensionalViewBuilder=tr.b.MultiDimensionalViewBuilder;var TotalState=tr.b.MultiDimensionalViewNode.TotalState;var RowDimension={ROOT:-1,STACK_FRAME:0,OBJECT_TYPE:1};var LATIN_SMALL_LETTER_F_WITH_HOOK=String.fromCharCode(0x0192);var CIRCLED_LATIN_CAPITAL_LETTER_T=String.fromCharCode(0x24C9);function HeapDumpNodeTitleColumn(title){tr.ui.analysis.TitleColumn.call(this,title);}
 HeapDumpNodeTitleColumn.prototype={__proto__:tr.ui.analysis.TitleColumn.prototype,formatTitle:function(row){var title=row.title;var dimension=row.dimension;switch(dimension){case RowDimension.ROOT:return title;case RowDimension.STACK_FRAME:case RowDimension.OBJECT_TYPE:return this.formatSubRow_(title,dimension);default:throw new Error('Invalid row dimension: '+row.dimension);}},cmp:function(rowA,rowB){if(rowA.dimension!==rowB.dimension)
 return rowA.dimension-rowB.dimension;return tr.ui.analysis.TitleColumn.prototype.cmp.call(this,rowA,rowB);},formatSubRow_:function(title,dimension){var titleEl=document.createElement('span');var symbolEl=document.createElement('span');var symbolColorName;if(dimension===RowDimension.STACK_FRAME){Polymer.dom(symbolEl).textContent=LATIN_SMALL_LETTER_F_WITH_HOOK;symbolEl.title='Stack frame';symbolColorName='heap_dump_stack_frame';}else{Polymer.dom(symbolEl).textContent=CIRCLED_LATIN_CAPITAL_LETTER_T;symbolEl.title='Object type';symbolColorName='heap_dump_object_type';}
 symbolEl.style.color=tr.b.ColorScheme.getColorForReservedNameAsString(symbolColorName);symbolEl.style.paddingRight='4px';symbolEl.style.cursor='help';symbolEl.style.weight='bold';Polymer.dom(titleEl).appendChild(symbolEl);Polymer.dom(titleEl).appendChild(document.createTextNode(title));return titleEl;}};function AllocationCountColumn(name,cellPath,aggregationMode){tr.ui.analysis.DetailsNumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
-AllocationCountColumn.prototype={__proto__:tr.ui.analysis.DetailsNumericMemoryColumn.prototype,getFormattingContext:function(unit){return{minimumFractionDigits:0};}};var COLUMN_RULES=[{condition:'Size',importance:3,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Count',importance:2,columnConstructor:AllocationCountColumn},{condition:'Average size per allocation',importance:1,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];Polymer({is:'tr-ui-a-memory-dump-heap-details-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.heapDumps_=undefined;this.aggregationMode_=undefined;this.viewMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.info_bar.message='Note: Values displayed in the heavy view '+'are lower bounds (except for the root).';Polymer.dom(this.$.view_mode_container).appendChild(tr.ui.b.createSelector(this,'viewMode','memoryDumpHeapDetailsPane.viewMode',MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW,[{label:'Top-down (Tree)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW},{label:'Top-down (Heavy)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW},{label:'Bottom-up (Heavy)',value:MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW}]));},set heapDumps(heapDumps){this.heapDumps_=heapDumps;this.scheduleRebuildPane_();},get heapDumps(){return this.heapDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuildPane_();},get aggregationMode(){return this.aggregationMode_;},set viewMode(viewMode){this.viewMode_=viewMode;this.scheduleRebuildPane_();},get viewMode(){return this.viewMode_;},get heavyView(){switch(this.viewMode){case MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW:case MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW:return true;default:return false;}},rebuildPane_:function(){if(this.heapDumps_===undefined||this.heapDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.view_mode_container.style.display='none';this.$.info_bar.visible=false;this.$.table.clear();this.$.table.rebuild();return;}
+AllocationCountColumn.prototype={__proto__:tr.ui.analysis.DetailsNumericMemoryColumn.prototype,getFormattingContext:function(unit){return{minimumFractionDigits:0};}};var COLUMN_RULES=[{condition:'Size',importance:3,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Count',importance:2,columnConstructor:AllocationCountColumn},{condition:'Average size per allocation',importance:1,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];Polymer({is:'tr-ui-a-memory-dump-heap-details-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.heapDumps_=undefined;this.aggregationMode_=undefined;this.viewMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;this.$.info_bar.message='Note: Values displayed in the heavy view '+'are lower bounds (except for the root).';Polymer.dom(this.$.view_mode_container).appendChild(tr.ui.b.createSelector(this,'viewMode','memoryDumpHeapDetailsPane.viewMode',MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW,[{label:'Top-down (Tree)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW},{label:'Top-down (Heavy)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW},{label:'Bottom-up (Heavy)',value:MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW}]));},set heapDumps(heapDumps){this.heapDumps_=heapDumps;this.scheduleRebuild_();},get heapDumps(){return this.heapDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},set viewMode(viewMode){this.viewMode_=viewMode;this.scheduleRebuild_();},get viewMode(){return this.viewMode_;},get heavyView(){switch(this.viewMode){case MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW:case MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW:return true;default:return false;}},onRebuild_:function(){if(this.heapDumps_===undefined||this.heapDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.view_mode_container.style.display='none';this.$.info_bar.visible=false;this.$.table.clear();this.$.table.rebuild();return;}
 this.$.info_text.style.display='none';this.$.table.style.display='block';this.$.view_mode_container.style.display='block';this.$.info_bar.visible=this.heavyView;var stackFrameTrees=this.createStackFrameTrees_(this.heapDumps_);var rows=this.createRows_(stackFrameTrees);var columns=this.createColumns_(rows);this.$.table.tableRows=rows;this.$.table.tableColumns=columns;this.$.table.rebuild();tr.ui.analysis.expandTableRowsRecursively(this.$.table);},createStackFrameTrees_:function(heapDumps){return heapDumps.map(function(heapDump){if(heapDump===undefined)
 return undefined;var builder=new MultiDimensionalViewBuilder(2,2);heapDump.entries.forEach(function(entry){var leafStackFrame=entry.leafStackFrame;var stackTracePath=leafStackFrame===undefined?[]:leafStackFrame.getUserFriendlyStackTrace().reverse();var objectTypeName=entry.objectTypeName;var objectTypeNamePath=objectTypeName===undefined?[]:[objectTypeName];builder.addPath([stackTracePath,objectTypeNamePath],[entry.size,entry.count],MultiDimensionalViewBuilder.ValueKind.TOTAL);},this);return builder.buildView(this.viewMode);},this);},createRows_:function(stackFrameTrees){var definedHeapDump=tr.b.findFirstInArray(this.heapDumps);if(definedHeapDump===undefined)
 return[];var rootRowTitle=definedHeapDump.allocatorName;return[this.createHeapRowRecursively_(stackFrameTrees,RowDimension.ROOT,rootRowTitle)];},createHeapRowRecursively_:function(nodes,dimension,title){var cells=tr.ui.analysis.createCells(nodes,function(node){var size=node.values[0].total;var row={'Size':new ScalarNumeric(sizeInBytes_smallerIsBetter,size)};var countValue=node.values[1];if(countValue.totalState>=this.minDisplayedTotalState_){var count=countValue.total;row['Count']=new ScalarNumeric(unitlessNumber_smallerIsBetter,count);row['Average size per allocation']=new ScalarNumeric(sizeInBytes_smallerIsBetter,count===0?0:size/count);}
@@ -8147,7 +8240,7 @@
 this.indent_--;}},appendImportanceRange:function(range){this.append(' (importance: ');if(range.min===range.max)
 this.append(range.min);else
 this.append(range.min,EN_DASH,range.max);this.append(')');},appendSizeIfDefined:function(size){if(size!==undefined)
-this.append(' (',tr.v.Unit.byName.sizeInBytes.format(size),')');},appendSomeTimestampsQuantifier:function(){this.append(' ',tr.ui.analysis.MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER);},build:function(){return this.parts_.join('');}};function EffectiveSizeColumn(name,cellPath,aggregationMode){tr.ui.analysis.DetailsNumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
+this.append(' (',tr.b.Unit.byName.sizeInBytes.format(size),')');},appendSomeTimestampsQuantifier:function(){this.append(' ',tr.ui.analysis.MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER);},build:function(){return this.parts_.join('');}};function EffectiveSizeColumn(name,cellPath,aggregationMode){tr.ui.analysis.DetailsNumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
 EffectiveSizeColumn.prototype={__proto__:tr.ui.analysis.DetailsNumericMemoryColumn.prototype,addInfos:function(numerics,memoryAllocatorDumps,infos){if(memoryAllocatorDumps===undefined)
 return;var ownerNameToEntry=new Map();var ownedNameToEntry=new Map();for(var i=0;i<numerics.length;i++){if(numerics[i]===undefined)
 continue;var dump=memoryAllocatorDumps[i];if(dump===SUBALLOCATION_CONTEXT)
@@ -8170,7 +8263,7 @@
 return;dump.infos.forEach(function(dumpInfo){getAndUpdateEntry(infoTypeToEntry,dumpInfo.type,function(newEntry){if(numerics.length===1){newEntry.providedSize=dumpInfo.providedSize;newEntry.dependencySize=dumpInfo.dependencySize;}});});}
 for(var infoType of infoTypeToEntry.keys()){var entry=infoTypeToEntry.get(infoType);var messageBuilder=new SizeInfoMessageBuilder();messageBuilder.append('provided size');messageBuilder.appendSizeIfDefined(entry.providedSize);var dependencyName;switch(infoType){case PROVIDED_SIZE_LESS_THAN_AGGREGATED_CHILDREN:dependencyName='the aggregated size of the children';break;case PROVIDED_SIZE_LESS_THAN_LARGEST_OWNER:dependencyName='the size of the largest owner';break;default:dependencyName='an unknown dependency';break;}
 messageBuilder.append(' was less than ',dependencyName);messageBuilder.appendSizeIfDefined(entry.dependencySize);if(entry.count<numerics.length)
-messageBuilder.appendSomeTimestampsQuantifier();infos.push(tr.ui.analysis.createWarningInfo(messageBuilder.build()));}}};var NUMERIC_COLUMN_RULES=[{condition:tr.model.MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME,importance:10,columnConstructor:EffectiveSizeColumn},{condition:tr.model.MemoryAllocatorDump.SIZE_NUMERIC_NAME,importance:9,columnConstructor:SizeColumn},{condition:'page_size',importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:/size/,importance:5,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];var DIAGNOSTIC_COLUMN_RULES=[{importance:0,columnConstructor:tr.ui.analysis.StringMemoryColumn}];Polymer({is:'tr-ui-a-memory-dump-allocator-details-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.memoryAllocatorDumps_=undefined;this.heapDumps_=undefined;this.aggregationMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},set memoryAllocatorDumps(memoryAllocatorDumps){this.memoryAllocatorDumps_=memoryAllocatorDumps;this.scheduleRebuildPane_();},get memoryAllocatorDumps(){return this.memoryAllocatorDumps_;},set heapDumps(heapDumps){this.heapDumps_=heapDumps;this.scheduleRebuildPane_();},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuildPane_();},get aggregationMode(){return this.aggregationMode_;},rebuildPane_:function(){if(this.memoryAllocatorDumps_===undefined||this.memoryAllocatorDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();this.childPaneBuilder=undefined;return;}
+messageBuilder.appendSomeTimestampsQuantifier();infos.push(tr.ui.analysis.createWarningInfo(messageBuilder.build()));}}};var NUMERIC_COLUMN_RULES=[{condition:tr.model.MemoryAllocatorDump.EFFECTIVE_SIZE_NUMERIC_NAME,importance:10,columnConstructor:EffectiveSizeColumn},{condition:tr.model.MemoryAllocatorDump.SIZE_NUMERIC_NAME,importance:9,columnConstructor:SizeColumn},{condition:'page_size',importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:/size/,importance:5,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];var DIAGNOSTIC_COLUMN_RULES=[{importance:0,columnConstructor:tr.ui.analysis.StringMemoryColumn}];Polymer({is:'tr-ui-a-memory-dump-allocator-details-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.memoryAllocatorDumps_=undefined;this.heapDumps_=undefined;this.aggregationMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},set memoryAllocatorDumps(memoryAllocatorDumps){this.memoryAllocatorDumps_=memoryAllocatorDumps;this.scheduleRebuild_();},get memoryAllocatorDumps(){return this.memoryAllocatorDumps_;},set heapDumps(heapDumps){this.heapDumps_=heapDumps;this.scheduleRebuild_();},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},onRebuild_:function(){if(this.memoryAllocatorDumps_===undefined||this.memoryAllocatorDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();this.childPaneBuilder=undefined;return;}
 this.$.info_text.style.display='none';this.$.table.style.display='block';var rows=this.createRows_();var columns=this.createColumns_(rows);rows.forEach(function(rootRow){tr.ui.analysis.aggregateTableRowCellsRecursively(rootRow,columns,function(contexts){return contexts!==undefined&&contexts.some(function(context){return context===SUBALLOCATION_CONTEXT;});});});this.$.table.tableRows=rows;this.$.table.tableColumns=columns;this.$.table.rebuild();tr.ui.analysis.expandTableRowsRecursively(this.$.table);if(this.heapDumps_===undefined){this.childPaneBuilder=undefined;}else{this.childPaneBuilder=function(){var pane=document.createElement('tr-ui-a-memory-dump-heap-details-pane');pane.heapDumps=this.heapDumps_;pane.aggregationMode=this.aggregationMode_;return pane;}.bind(this);}},createRows_:function(){return[this.createAllocatorRowRecursively_(this.memoryAllocatorDumps_)];},createAllocatorRowRecursively_:function(dumps){var definedDump=tr.b.findFirstInArray(dumps);var title=definedDump.name;var fullName=definedDump.fullName;var numericCells=tr.ui.analysis.createCells(dumps,function(dump){return dump.numerics;});var diagnosticCells=tr.ui.analysis.createCells(dumps,function(dump){return dump.diagnostics;});var suballocatedBy=undefined;if(title.startsWith('__')){for(var i=0;i<dumps.length;i++){var dump=dumps[i];if(dump===undefined||dump.ownedBy.length===0){continue;}
 var ownerDump=dump.ownedBy[0].source;if(dump.ownedBy.length>1||dump.children.length>0||ownerDump.containerMemoryDump!==dump.containerMemoryDump){suballocatedBy=undefined;break;}
 if(suballocatedBy===undefined){suballocatedBy=ownerDump.fullName;}else if(suballocatedBy!==ownerDump.fullName){suballocatedBy=undefined;break;}}}
@@ -8194,12 +8287,12 @@
 var subRows=tr.b.dictionaryValues(tr.b.mapItems(node.children,this.createSuballocationRowRecursively_,this));if(node.row!==undefined){var row=node.row;row.title='<unspecified>';row.suballocation=true;subRows.unshift(row);}
 var contexts=new Array(subRows[0].contexts.length);for(var i=0;i<subRows.length;i++){subRows[i].contexts.forEach(function(subContext,index){if(subContext!==undefined)
 contexts[index]=SUBALLOCATION_CONTEXT;});}
-return{title:name,suballocation:true,contexts:contexts,subRows:subRows};},createColumns_:function(rows){var titleColumn=new AllocatorDumpNameColumn();titleColumn.width='200px';var numericColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,'numericCells',this.aggregationMode_,NUMERIC_COLUMN_RULES);var diagnosticColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,'diagnosticCells',this.aggregationMode_,DIAGNOSTIC_COLUMN_RULES);var fieldColumns=numericColumns.concat(diagnosticColumns);tr.ui.analysis.MemoryColumn.spaceEqually(fieldColumns);var columns=[titleColumn].concat(fieldColumns);return columns;}});return{SUBALLOCATION_CONTEXT:SUBALLOCATION_CONTEXT,AllocatorDumpNameColumn:AllocatorDumpNameColumn,EffectiveSizeColumn:EffectiveSizeColumn,SizeColumn:SizeColumn};});'use strict';tr.exportTo('tr.ui.analysis',function(){var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.v.Unit.byName.sizeInBytes_smallerIsBetter;var CONSTANT_COLUMN_RULES=[{condition:'Start address',importance:0,columnConstructor:tr.ui.analysis.StringMemoryColumn}];var VARIABLE_COLUMN_RULES=[{condition:'Virtual size',importance:7,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Protection flags',importance:6,columnConstructor:tr.ui.analysis.StringMemoryColumn},{condition:'PSS',importance:5,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Private dirty',importance:4,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Private clean',importance:3,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Shared dirty',importance:2,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Shared clean',importance:1,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Swapped',importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];var BYTE_STAT_COLUMN_MAP={'proportionalResident':'PSS','privateDirtyResident':'Private dirty','privateCleanResident':'Private clean','sharedDirtyResident':'Shared dirty','sharedCleanResident':'Shared clean','swapped':'Swapped'};function hexString(address,is64BitAddress){if(address===undefined)
+return{title:name,suballocation:true,contexts:contexts,subRows:subRows};},createColumns_:function(rows){var titleColumn=new AllocatorDumpNameColumn();titleColumn.width='200px';var numericColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,'numericCells',this.aggregationMode_,NUMERIC_COLUMN_RULES);var diagnosticColumns=tr.ui.analysis.MemoryColumn.fromRows(rows,'diagnosticCells',this.aggregationMode_,DIAGNOSTIC_COLUMN_RULES);var fieldColumns=numericColumns.concat(diagnosticColumns);tr.ui.analysis.MemoryColumn.spaceEqually(fieldColumns);var columns=[titleColumn].concat(fieldColumns);return columns;}});return{SUBALLOCATION_CONTEXT:SUBALLOCATION_CONTEXT,AllocatorDumpNameColumn:AllocatorDumpNameColumn,EffectiveSizeColumn:EffectiveSizeColumn,SizeColumn:SizeColumn};});'use strict';tr.exportTo('tr.ui.analysis',function(){var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;var CONSTANT_COLUMN_RULES=[{condition:'Start address',importance:0,columnConstructor:tr.ui.analysis.StringMemoryColumn}];var VARIABLE_COLUMN_RULES=[{condition:'Virtual size',importance:7,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Protection flags',importance:6,columnConstructor:tr.ui.analysis.StringMemoryColumn},{condition:'PSS',importance:5,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Private dirty',importance:4,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Private clean',importance:3,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Shared dirty',importance:2,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Shared clean',importance:1,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn},{condition:'Swapped',importance:0,columnConstructor:tr.ui.analysis.DetailsNumericMemoryColumn}];var BYTE_STAT_COLUMN_MAP={'proportionalResident':'PSS','privateDirtyResident':'Private dirty','privateCleanResident':'Private clean','sharedDirtyResident':'Shared dirty','sharedCleanResident':'Shared clean','swapped':'Swapped'};function hexString(address,is64BitAddress){if(address===undefined)
 return undefined;var hexPadding=is64BitAddress?'0000000000000000':'00000000';return(hexPadding+address.toString(16)).substr(-hexPadding.length);}
 function pruneEmptyRuleRows(row){if(row.subRows===undefined||row.subRows.length===0)
 return;if(row.subRows[0].rule===undefined){return;}
 row.subRows.forEach(pruneEmptyRuleRows);row.subRows=row.subRows.filter(function(subRow){return subRow.subRows.length>0;});}
-Polymer({is:'tr-ui-a-memory-dump-vm-regions-details-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.vmRegions_=undefined;this.aggregationMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},set vmRegions(vmRegions){this.vmRegions_=vmRegions;this.scheduleRebuildPane_();},get vmRegions(){return this.vmRegions_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuildPane_();},get aggregationMode(){return this.aggregationMode_;},rebuildPane_:function(){if(this.vmRegions_===undefined||this.vmRegions_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();return;}
+Polymer({is:'tr-ui-a-memory-dump-vm-regions-details-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.vmRegions_=undefined;this.aggregationMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},set vmRegions(vmRegions){this.vmRegions_=vmRegions;this.scheduleRebuild_();},get vmRegions(){return this.vmRegions_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},onRebuild_:function(){if(this.vmRegions_===undefined||this.vmRegions_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();return;}
 this.$.info_text.style.display='none';this.$.table.style.display='block';var rows=this.createRows_(this.vmRegions_);var columns=this.createColumns_(rows);this.$.table.tableRows=rows;this.$.table.tableColumns=columns;this.$.table.rebuild();tr.ui.analysis.expandTableRowsRecursively(this.$.table);},createRows_:function(timeToVmRegionTree){var is64BitAddress=timeToVmRegionTree.some(function(vmRegionTree){if(vmRegionTree===undefined)
 return false;return vmRegionTree.someRegion(function(region){if(region.startAddress===undefined)
 return false;return region.startAddress>=4294967296;});});return[this.createClassificationNodeRow(timeToVmRegionTree,is64BitAddress)];},createClassificationNodeRow:function(timeToNode,is64BitAddress){var definedNode=tr.b.findFirstInArray(timeToNode);var childNodeIdToTimeToNode=tr.b.dictionaryValues(tr.b.invertArrayOfDicts(timeToNode,function(node){var children=node.children;if(children===undefined)
@@ -8216,13 +8309,13 @@
 throw new Error('Element must have a view-id attribute!');var brushingStateController=tr.c.BrushingStateController.getControllerForElement(this);if(!brushingStateController)
 return undefined;return brushingStateController.getViewSpecificBrushingState(viewId);},set:function(state){var viewId=this.viewId;if(!viewId)
 throw new Error('Element must have a view-id attribute!');var brushingStateController=tr.c.BrushingStateController.getControllerForElement(this);if(!brushingStateController)
-return;brushingStateController.changeViewSpecificBrushingState(viewId,state);}});'use strict';tr.exportTo('tr.ui.analysis',function(){var ColorScheme=tr.b.ColorScheme;var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.v.Unit.byName.sizeInBytes_smallerIsBetter;var PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX='_bytes';var DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;var SOME_TIMESTAMPS_INFO_QUANTIFIER=tr.ui.analysis.MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER;var RIGHTWARDS_ARROW_WITH_HOOK=String.fromCharCode(0x21AA);var RIGHTWARDS_ARROW_FROM_BAR=String.fromCharCode(0x21A6);var GREATER_THAN_OR_EQUAL_TO=String.fromCharCode(0x2265);var UNMARRIED_PARTNERSHIP_SYMBOL=String.fromCharCode(0x26AF);var TRIGRAM_FOR_HEAVEN=String.fromCharCode(0x2630);function lazyMap(list,fn,opt_this){opt_this=opt_this||this;var result=undefined;list.forEach(function(item,index){var value=fn.call(opt_this,item,index);if(value===undefined)
+return;brushingStateController.changeViewSpecificBrushingState(viewId,state);}});'use strict';tr.exportTo('tr.ui.analysis',function(){var ColorScheme=tr.b.ColorScheme;var ScalarNumeric=tr.v.ScalarNumeric;var sizeInBytes_smallerIsBetter=tr.b.Unit.byName.sizeInBytes_smallerIsBetter;var PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX='_bytes';var DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;var SOME_TIMESTAMPS_INFO_QUANTIFIER=tr.ui.analysis.MemoryColumn.SOME_TIMESTAMPS_INFO_QUANTIFIER;var RIGHTWARDS_ARROW_WITH_HOOK=String.fromCharCode(0x21AA);var RIGHTWARDS_ARROW_FROM_BAR=String.fromCharCode(0x21A6);var GREATER_THAN_OR_EQUAL_TO=String.fromCharCode(0x2265);var UNMARRIED_PARTNERSHIP_SYMBOL=String.fromCharCode(0x26AF);var TRIGRAM_FOR_HEAVEN=String.fromCharCode(0x2630);function lazyMap(list,fn,opt_this){opt_this=opt_this||this;var result=undefined;list.forEach(function(item,index){var value=fn.call(opt_this,item,index);if(value===undefined)
 return;if(result===undefined)
 result=new Array(list.length);result[index]=value;});return result;}
 function ProcessNameColumn(){tr.ui.analysis.TitleColumn.call(this,'Process');}
 ProcessNameColumn.prototype={__proto__:tr.ui.analysis.TitleColumn.prototype,formatTitle:function(row){if(row.contexts===undefined)
 return row.title;var titleEl=document.createElement('tr-ui-b-color-legend');titleEl.label=row.title;return titleEl;}};function UsedMemoryColumn(name,cellPath,aggregationMode){tr.ui.analysis.NumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
-UsedMemoryColumn.COLOR=ColorScheme.getColorForReservedNameAsString('used_memory_column');UsedMemoryColumn.OLDER_COLOR=ColorScheme.getColorForReservedNameAsString('older_used_memory_column');UsedMemoryColumn.prototype={__proto__:tr.ui.analysis.NumericMemoryColumn.prototype,get title(){return tr.ui.b.createSpan({textContent:this.name,color:UsedMemoryColumn.COLOR});},getFormattingContext:function(unit){return{unitPrefix:tr.v.UnitScale.Binary.MEBI};},color:function(numerics,processMemoryDumps){return UsedMemoryColumn.COLOR;},getChildPaneBuilder:function(processMemoryDumps){if(processMemoryDumps===undefined)
+UsedMemoryColumn.COLOR=ColorScheme.getColorForReservedNameAsString('used_memory_column');UsedMemoryColumn.OLDER_COLOR=ColorScheme.getColorForReservedNameAsString('older_used_memory_column');UsedMemoryColumn.prototype={__proto__:tr.ui.analysis.NumericMemoryColumn.prototype,get title(){return tr.ui.b.createSpan({textContent:this.name,color:UsedMemoryColumn.COLOR});},getFormattingContext:function(unit){return{unitPrefix:tr.b.UnitScale.Binary.MEBI};},color:function(numerics,processMemoryDumps){return UsedMemoryColumn.COLOR;},getChildPaneBuilder:function(processMemoryDumps){if(processMemoryDumps===undefined)
 return undefined;var vmRegions=lazyMap(processMemoryDumps,function(pmd){if(pmd===undefined)
 return undefined;return pmd.mostRecentVmRegions;});if(vmRegions===undefined)
 return undefined;return function(){var pane=document.createElement('tr-ui-a-memory-dump-vm-regions-details-pane');pane.vmRegions=vmRegions;pane.aggregationMode=this.aggregationMode;return pane;}.bind(this);}};function PeakMemoryColumn(name,cellPath,aggregationMode){UsedMemoryColumn.call(this,name,cellPath,aggregationMode);}
@@ -8241,7 +8334,7 @@
 return;var olderValueCount=0;for(var i=0;i<numerics.length;i++){var processMemoryDump=processMemoryDumps[i];if(processMemoryDump!==undefined&&!processMemoryDump.hasOwnVmRegions){olderValueCount++;}}
 if(olderValueCount===0)
 return;var infoQuantifier=olderValueCount<numerics.length?' '+SOME_TIMESTAMPS_INFO_QUANTIFIER:'';infos.push({message:'Older value'+infoQuantifier+' (only heavy (purple) memory dumps contain memory maps).',icon:UNMARRIED_PARTNERSHIP_SYMBOL});}};UsedMemoryColumn.RULES=[{condition:'Total resident',importance:10,columnConstructor:UsedMemoryColumn},{condition:'Peak total resident',importance:9,columnConstructor:PeakMemoryColumn},{condition:'PSS',importance:8,columnConstructor:ByteStatColumn},{condition:'Private dirty',importance:7,columnConstructor:ByteStatColumn},{condition:'Swapped',importance:6,columnConstructor:ByteStatColumn},{importance:0,columnConstructor:UsedMemoryColumn}];UsedMemoryColumn.TOTALS_MAP={'residentBytes':'Total resident','peakResidentBytes':'Peak total resident'};UsedMemoryColumn.BYTE_STAT_MAP={'proportionalResident':'PSS','privateDirtyResident':'Private dirty','swapped':'Swapped'};function AllocatorColumn(name,cellPath,aggregationMode){tr.ui.analysis.NumericMemoryColumn.call(this,name,cellPath,aggregationMode);}
-AllocatorColumn.prototype={__proto__:tr.ui.analysis.NumericMemoryColumn.prototype,get title(){var titleEl=document.createElement('tr-ui-b-color-legend');titleEl.label=this.name;return titleEl;},getFormattingContext:function(unit){return{unitPrefix:tr.v.UnitScale.Binary.MEBI};},addInfos:function(numerics,processMemoryDumps,infos){if(processMemoryDumps===undefined)
+AllocatorColumn.prototype={__proto__:tr.ui.analysis.NumericMemoryColumn.prototype,get title(){var titleEl=document.createElement('tr-ui-b-color-legend');titleEl.label=this.name;return titleEl;},getFormattingContext:function(unit){return{unitPrefix:tr.b.UnitScale.Binary.MEBI};},addInfos:function(numerics,processMemoryDumps,infos){if(processMemoryDumps===undefined)
 return;var heapDumpCount=0;var missingSizeCount=0;for(var i=0;i<processMemoryDumps.length;i++){var processMemoryDump=processMemoryDumps[i];if(processMemoryDump===undefined)
 continue;var heapDumps=processMemoryDump.heapDumps;if(heapDumps!==undefined&&heapDumps[this.name]!==undefined)
 heapDumpCount++;var allocatorDump=processMemoryDump.getMemoryAllocatorDumpByFullName(this.name);if(allocatorDump!==undefined&&allocatorDump.numerics[DISPLAYED_SIZE_NUMERIC_NAME]===undefined){missingSizeCount++;}}
@@ -8251,13 +8344,13 @@
 return undefined;return pmd.getMemoryAllocatorDumpByFullName(this.name);},this);if(memoryAllocatorDumps===undefined)
 return undefined;var heapDumps=lazyMap(processMemoryDumps,function(pmd){if(pmd===undefined||pmd.heapDumps===undefined)
 return undefined;return pmd.heapDumps[this.name];},this);return function(){var pane=document.createElement('tr-ui-a-memory-dump-allocator-details-pane');pane.memoryAllocatorDumps=memoryAllocatorDumps;pane.heapDumps=heapDumps;pane.aggregationMode=this.aggregationMode;return pane;}.bind(this);}};function TracingColumn(name,cellPath,aggregationMode){AllocatorColumn.call(this,name,cellPath,aggregationMode);}
-TracingColumn.COLOR=ColorScheme.getColorForReservedNameAsString('tracing_memory_column');TracingColumn.prototype={__proto__:AllocatorColumn.prototype,get title(){return tr.ui.b.createSpan({textContent:this.name,color:TracingColumn.COLOR});},color:function(numerics,processMemoryDumps){return TracingColumn.COLOR;}};AllocatorColumn.RULES=[{condition:'tracing',importance:0,columnConstructor:TracingColumn},{importance:1,columnConstructor:AllocatorColumn}];Polymer({is:'tr-ui-a-memory-dump-overview-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.processMemoryDumps_=undefined;this.aggregationMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.CELL;this.$.table.addEventListener('selection-changed',function(tableEvent){tableEvent.stopPropagation();this.changeChildPane_();}.bind(this));},set processMemoryDumps(processMemoryDumps){this.processMemoryDumps_=processMemoryDumps;this.scheduleRebuildPane_();},get processMemoryDumps(){return this.processMemoryDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuildPane_();},get aggregationMode(){return this.aggregationMode_;},get selectedMemoryCell(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){return undefined;}
+TracingColumn.COLOR=ColorScheme.getColorForReservedNameAsString('tracing_memory_column');TracingColumn.prototype={__proto__:AllocatorColumn.prototype,get title(){return tr.ui.b.createSpan({textContent:this.name,color:TracingColumn.COLOR});},color:function(numerics,processMemoryDumps){return TracingColumn.COLOR;}};AllocatorColumn.RULES=[{condition:'tracing',importance:0,columnConstructor:TracingColumn},{importance:1,columnConstructor:AllocatorColumn}];Polymer({is:'tr-ui-a-memory-dump-overview-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.processMemoryDumps_=undefined;this.aggregationMode_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.CELL;this.$.table.addEventListener('selection-changed',function(tableEvent){tableEvent.stopPropagation();this.changeChildPane_();}.bind(this));},set processMemoryDumps(processMemoryDumps){this.processMemoryDumps_=processMemoryDumps;this.scheduleRebuild_();},get processMemoryDumps(){return this.processMemoryDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},get selectedMemoryCell(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){return undefined;}
 var selectedTableRow=this.$.table.selectedTableRow;if(!selectedTableRow)
 return undefined;var selectedColumnIndex=this.$.table.selectedColumnIndex;if(selectedColumnIndex===undefined)
 return undefined;var selectedColumn=this.$.table.tableColumns[selectedColumnIndex];var selectedMemoryCell=selectedColumn.cell(selectedTableRow);return selectedMemoryCell;},changeChildPane_:function(){this.storeSelection_();this.childPaneBuilder=this.determineChildPaneBuilderFromSelection_();},determineChildPaneBuilderFromSelection_:function(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){return undefined;}
 var selectedTableRow=this.$.table.selectedTableRow;if(!selectedTableRow)
 return undefined;var selectedColumnIndex=this.$.table.selectedColumnIndex;if(selectedColumnIndex===undefined)
-return undefined;var selectedColumn=this.$.table.tableColumns[selectedColumnIndex];return selectedColumn.getChildPaneBuilder(selectedTableRow.contexts);},rebuildPane_:function(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();return;}
+return undefined;var selectedColumn=this.$.table.tableColumns[selectedColumnIndex];return selectedColumn.getChildPaneBuilder(selectedTableRow.contexts);},onRebuild_:function(){if(this.processMemoryDumps_===undefined||this.processMemoryDumps_.length===0){this.$.info_text.style.display='block';this.$.table.style.display='none';this.$.table.clear();this.$.table.rebuild();return;}
 this.$.info_text.style.display='none';this.$.table.style.display='block';var rows=this.createRows_();var columns=this.createColumns_(rows);var footerRows=this.createFooterRows_(rows,columns);this.$.table.tableRows=rows;this.$.table.footerRows=footerRows;this.$.table.tableColumns=columns;this.$.table.rebuild();this.restoreSelection_();},createRows_:function(){var timeToPidToProcessMemoryDump=this.processMemoryDumps_;var pidToTimeToProcessMemoryDump=tr.b.invertArrayOfDicts(timeToPidToProcessMemoryDump);return tr.b.dictionaryValues(tr.b.mapItems(pidToTimeToProcessMemoryDump,function(pid,timeToDump){var process=tr.b.findFirstInArray(timeToDump).process;var usedMemoryCells=tr.ui.analysis.createCells(timeToDump,function(dump){var sizes={};var totals=dump.totals;if(totals!==undefined){tr.b.iterItems(UsedMemoryColumn.TOTALS_MAP,function(totalName,cellName){var total=totals[totalName];if(total===undefined)
 return;sizes[cellName]=new ScalarNumeric(sizeInBytes_smallerIsBetter,total);});var platformSpecific=totals.platformSpecific;if(platformSpecific!==undefined){tr.b.iterItems(platformSpecific,function(name,size){if(name.endsWith(PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX)){name=name.substring(0,name.length-
 PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX.length);}
@@ -8272,9 +8365,9 @@
 this.$.state.set({rowTitle:selectedRowTitle,columnName:selectedColumnName});},restoreSelection_:function(){var settings=this.$.state.get();if(settings===undefined||settings.rowTitle===undefined||settings.columnName===undefined)
 return;var selectedColumnName=settings.columnName;var selectedColumnIndex=tr.b.findFirstIndexInArray(this.$.table.tableColumns,function(column){return column.name===selectedColumnName;});if(selectedColumnIndex<0)
 return;var selectedRowTitle=settings.rowTitle;var selectedRow=tr.b.findFirstInArray(this.$.table.tableRows,function(row){return row.title===selectedRowTitle;});if(selectedRow===undefined)
-return;this.$.table.selectedTableRow=selectedRow;this.$.table.selectedColumnIndex=selectedColumnIndex;}});return{ProcessNameColumn:ProcessNameColumn,UsedMemoryColumn:UsedMemoryColumn,PeakMemoryColumn:PeakMemoryColumn,ByteStatColumn:ByteStatColumn,AllocatorColumn:AllocatorColumn,TracingColumn:TracingColumn};});'use strict';tr.exportTo('tr.ui.analysis',function(){Polymer({is:'tr-ui-a-memory-dump-header-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.containerMemoryDumps_=undefined;},ready:function(){Polymer.dom(this.$.aggregation_mode_container).appendChild(tr.ui.b.createSelector(this,'aggregationMode','memoryDumpHeaderPane.aggregationMode',tr.ui.analysis.MemoryColumn.AggregationMode.DIFF,[{label:'Diff',value:tr.ui.analysis.MemoryColumn.AggregationMode.DIFF},{label:'Max',value:tr.ui.analysis.MemoryColumn.AggregationMode.MAX}]));},set containerMemoryDumps(containerMemoryDumps){this.containerMemoryDumps_=containerMemoryDumps;this.scheduleRebuildPane_();},get containerMemoryDumps(){return this.containerMemoryDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuildPane_();},get aggregationMode(){return this.aggregationMode_;},rebuildPane_:function(){this.updateLabel_();this.updateAggregationModeSelector_();this.changeChildPane_();},updateLabel_:function(){Polymer.dom(this.$.label).textContent='';if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=0){Polymer.dom(this.$.label).textContent='No memory dumps selected';return;}
+return;this.$.table.selectedTableRow=selectedRow;this.$.table.selectedColumnIndex=selectedColumnIndex;}});return{ProcessNameColumn:ProcessNameColumn,UsedMemoryColumn:UsedMemoryColumn,PeakMemoryColumn:PeakMemoryColumn,ByteStatColumn:ByteStatColumn,AllocatorColumn:AllocatorColumn,TracingColumn:TracingColumn};});'use strict';tr.exportTo('tr.ui.analysis',function(){Polymer({is:'tr-ui-a-memory-dump-header-pane',behaviors:[tr.ui.analysis.StackedPane],created:function(){this.containerMemoryDumps_=undefined;},ready:function(){Polymer.dom(this.$.aggregation_mode_container).appendChild(tr.ui.b.createSelector(this,'aggregationMode','memoryDumpHeaderPane.aggregationMode',tr.ui.analysis.MemoryColumn.AggregationMode.DIFF,[{label:'Diff',value:tr.ui.analysis.MemoryColumn.AggregationMode.DIFF},{label:'Max',value:tr.ui.analysis.MemoryColumn.AggregationMode.MAX}]));},set containerMemoryDumps(containerMemoryDumps){this.containerMemoryDumps_=containerMemoryDumps;this.scheduleRebuild_();},get containerMemoryDumps(){return this.containerMemoryDumps_;},set aggregationMode(aggregationMode){this.aggregationMode_=aggregationMode;this.scheduleRebuild_();},get aggregationMode(){return this.aggregationMode_;},onRebuild_:function(){this.updateLabel_();this.updateAggregationModeSelector_();this.changeChildPane_();},updateLabel_:function(){Polymer.dom(this.$.label).textContent='';if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=0){Polymer.dom(this.$.label).textContent='No memory dumps selected';return;}
 var containerDumpCount=this.containerMemoryDumps_.length;var isMultiSelection=containerDumpCount>1;Polymer.dom(this.$.label).appendChild(document.createTextNode('Selected '+containerDumpCount+' memory dump'+
-(isMultiSelection?'s':'')+' in '+this.containerMemoryDumps_[0].containerName+' at '));Polymer.dom(this.$.label).appendChild(document.createTextNode(tr.v.Unit.byName.timeStampInMs.format(this.containerMemoryDumps_[0].start)));if(isMultiSelection){var ELLIPSIS=String.fromCharCode(8230);Polymer.dom(this.$.label).appendChild(document.createTextNode(ELLIPSIS));Polymer.dom(this.$.label).appendChild(document.createTextNode(tr.v.Unit.byName.timeStampInMs.format(this.containerMemoryDumps_[containerDumpCount-1].start)));}},updateAggregationModeSelector_:function(){var displayStyle;if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=1)
+(isMultiSelection?'s':'')+' in '+this.containerMemoryDumps_[0].containerName+' at '));Polymer.dom(this.$.label).appendChild(document.createTextNode(tr.b.Unit.byName.timeStampInMs.format(this.containerMemoryDumps_[0].start)));if(isMultiSelection){var ELLIPSIS=String.fromCharCode(8230);Polymer.dom(this.$.label).appendChild(document.createTextNode(ELLIPSIS));Polymer.dom(this.$.label).appendChild(document.createTextNode(tr.b.Unit.byName.timeStampInMs.format(this.containerMemoryDumps_[containerDumpCount-1].start)));}},updateAggregationModeSelector_:function(){var displayStyle;if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=1)
 displayStyle='none';else
 displayStyle='initial';this.$.aggregation_mode_container.style.display=displayStyle;},changeChildPane_:function(){this.childPaneBuilder=function(){if(this.containerMemoryDumps_===undefined||this.containerMemoryDumps_.length<=0)
 return undefined;var overviewPane=document.createElement('tr-ui-a-memory-dump-overview-pane');overviewPane.processMemoryDumps=this.containerMemoryDumps_.map(function(containerDump){return containerDump.processMemoryDumps;});overviewPane.aggregationMode=this.aggregationMode;return overviewPane;}.bind(this);}});return{};});'use strict';Polymer({is:'tr-ui-a-stacked-pane-view',setPaneBuilder:function(paneBuilder,opt_parentPane){var paneContainer=this.$.pane_container;if(opt_parentPane){if(!(opt_parentPane instanceof HTMLElement))
@@ -8295,7 +8388,7 @@
 this.buildViewForMultipleContainerNames_();else
 this.buildViewForSingleContainerName_();},buildViewForSingleContainerName_:function(){var containerMemoryDumps=tr.b.dictionaryValues(this.dumpsByContainerName_)[0];var dumpView=this.ownerDocument.createElement('tr-ui-a-stacked-pane-view');Polymer.dom(this.$.content).appendChild(dumpView);dumpView.setPaneBuilder(function(){var headerPane=document.createElement('tr-ui-a-memory-dump-header-pane');headerPane.containerMemoryDumps=containerMemoryDumps;return headerPane;});},buildViewForMultipleContainerNames_:function(){var ownerDocument=this.ownerDocument;var rows=tr.b.dictionaryValues(tr.b.mapItems(this.dumpsByContainerName_,function(containerName,dumps){return{containerName:containerName,subRows:dumps,isExpanded:true};}));rows.sort(function(a,b){return a.containerName.localeCompare(b.containerName);});var columns=[{title:'Dump',value:function(row){if(row.subRows===undefined)
 return this.singleDumpValue_(row);else
-return this.groupedDumpValue_(row);},singleDumpValue_:function(row){var linkEl=ownerDocument.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet([row]));Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(row.start,{unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:ownerDocument}));return linkEl;},groupedDumpValue_:function(row){var linkEl=ownerDocument.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(row.subRows));Polymer.dom(linkEl).appendChild(tr.ui.b.createSpan({ownerDocument:ownerDocument,textContent:row.subRows.length+' memory dump'+
+return this.groupedDumpValue_(row);},singleDumpValue_:function(row){var linkEl=ownerDocument.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet([row]));Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(row.start,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:ownerDocument}));return linkEl;},groupedDumpValue_:function(row){var linkEl=ownerDocument.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(row.subRows));Polymer.dom(linkEl).appendChild(tr.ui.b.createSpan({ownerDocument:ownerDocument,textContent:row.subRows.length+' memory dump'+
 (row.subRows.length===1?'':'s')+' in '}));Polymer.dom(linkEl).appendChild(tr.ui.b.createSpan({ownerDocument:ownerDocument,textContent:row.containerName,bold:true}));return linkEl;}}];var table=this.ownerDocument.createElement('tr-ui-b-table');table.tableColumns=columns;table.tableRows=rows;table.showHeader=false;table.rebuild();Polymer.dom(this.$.content).appendChild(table);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.GlobalMemoryDump,{multi:false,title:'Global Memory Dump',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.GlobalMemoryDump,{multi:true,title:'Global Memory Dumps',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.ProcessMemoryDump,{multi:false,title:'Process Memory Dump',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-container-memory-dump-sub-view',tr.model.ProcessMemoryDump,{multi:true,title:'Process Memory Dumps',});return{};});'use strict';(function(){var COUNTER_SAMPLE_TABLE_COLUMNS=[{title:'Counter',width:'150px',value:function(row){return row.counter;}},{title:'Series',width:'150px',value:function(row){return row.series;}},{title:'Time',width:'150px',value:function(row){return row.start;}},{title:'Value',width:'100%',value:function(row){return row.value;}}];Polymer({is:'tr-ui-a-counter-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.currentSelection_=undefined;this.$.table.tableColumns=COUNTER_SAMPLE_TABLE_COLUMNS;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_:function(){this.$.table.tableRows=this.selection?this.getRows_(this.selection.toArray()):[];this.$.table.rebuild();},getRows_:function(samples){var samplesByCounter=tr.b.group(samples,function(sample){return sample.series.counter.guid;});var rows=[];tr.b.iterItems(samplesByCounter,function(unused,counterSamples){var samplesBySeries=tr.b.group(counterSamples,function(sample){return sample.series.guid;});tr.b.iterItems(samplesBySeries,function(unused,seriesSamples){var seriesRows=this.getRowsForSamples_(seriesSamples);seriesRows[0].counter=seriesSamples[0].series.counter.name;seriesRows[0].series=seriesSamples[0].series.name;if(seriesRows.length>1){seriesRows[0].subRows=seriesRows.slice(1);seriesRows[0].isExpanded=true;}
 rows.push(seriesRows[0]);},this);},this);return rows;},getRowsForSamples_:function(samples){return samples.map(function(sample){return{start:sample.timestamp,value:sample.value};});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-counter-sample-sub-view',tr.model.CounterSample,{multi:false,title:'Counter Sample',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-counter-sample-sub-view',tr.model.CounterSample,{multi:true,title:'Counter Samples',});})();'use strict';tr.exportTo('tr.ui.analysis',function(){function MultiEventSummary(title,events){this.title=title;this.duration_=undefined;this.selfTime_=undefined;this.events_=events;this.cpuTimesComputed_=false;this.cpuSelfTime_=undefined;this.cpuDuration_=undefined;this.maxDuration_=undefined;this.maxCpuDuration_=undefined;this.maxSelfTime_=undefined;this.maxCpuSelfTime_=undefined;this.untotallableArgs_=[];this.totalledArgs_=undefined;};MultiEventSummary.prototype={set title(title){if(title=='Totals')
 this.totalsRow=true;this.title_=title;},get title(){return this.title_;},get duration(){if(this.duration_===undefined){this.duration_=tr.b.Statistics.sum(this.events_,function(event){return event.duration;});}
@@ -8323,10 +8416,10 @@
 hasCpuData=true;var colWidthPercentage;if(hasCpuData)
 colWidthPercentage='20%';else
 colWidthPercentage='33.3333%';var ownerDocument=this.ownerDocument;var columns=[];columns.push({title:'Start',value:function(row){if(row.__proto__===tr.ui.analysis.MultiEventSummary.prototype){return row.title;}
-var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(row.event);});Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(row.start,{unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:ownerDocument}));return linkEl;},width:'350px',cmp:function(rowA,rowB){return rowA.start-rowB.start;}});if(this.eventsHaveDuration_){columns.push({title:'Wall Duration (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.duration,{unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.duration-rowB.duration;}});}
-if(this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Duration (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.cpuDuration,{unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuDuration-rowB.cpuDuration;}});}
-if(this.eventsHaveSubRows_&&this.eventsHaveDuration_){columns.push({title:'Self time (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.selfTime,{unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.selfTime-rowB.selfTime;}});}
-if(this.eventsHaveSubRows_&&this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Self Time (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.cpuSelfTime,{unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuSelfTime-rowB.cpuSelfTime;}});}
+var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(row.event);});Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(row.start,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:ownerDocument}));return linkEl;},width:'350px',cmp:function(rowA,rowB){return rowA.start-rowB.start;}});if(this.eventsHaveDuration_){columns.push({title:'Wall Duration (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.duration,{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.duration-rowB.duration;}});}
+if(this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Duration (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.cpuDuration,{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuDuration-rowB.cpuDuration;}});}
+if(this.eventsHaveSubRows_&&this.eventsHaveDuration_){columns.push({title:'Self time (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.selfTime,{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.selfTime-rowB.selfTime;}});}
+if(this.eventsHaveSubRows_&&this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Self Time (ms)',value:function(row){return tr.v.ui.createScalarSpan(row.cpuSelfTime,{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:ownerDocument});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuSelfTime-rowB.cpuSelfTime;}});}
 var argKeys=tr.b.dictionaryKeys(summary.totalledArgs);argKeys.sort();var otherKeys=summary.untotallableArgs.slice(0);otherKeys.sort();argKeys.push.apply(argKeys,otherKeys);var keysWithColumns=argKeys.slice(0,4);var keysInOtherColumn=argKeys.slice(4);keysWithColumns.forEach(function(argKey){var hasTotal=summary.totalledArgs[argKey];var colDesc={title:'Arg: '+argKey,value:function(row){if(row.__proto__!==tr.ui.analysis.MultiEventSummary.prototype){var argView=document.createElement('tr-ui-a-generic-object-view');argView.object=row.args[argKey];return argView;}
 if(hasTotal)
 return row.totalledArgs[argKey];return'';},width:'<upated further down>'};if(hasTotal){colDesc.cmp=function(rowA,rowB){return rowA.args[argKey]-rowB.args[argKey];};}
@@ -8341,11 +8434,11 @@
 hasCpuData=true;if(row.cpuSelfTime!==undefined)
 hasCpuData=true;if(row.numAlerts)
 hasAlerts=true;});var ownerDocument=this.ownerDocument;var columns=[];columns.push({title:'Name',value:function(row){if(row.title==='Totals')
-return'Totals';var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(row.events);},row.title);return linkEl;},width:'350px',cmp:function(rowA,rowB){return rowA.title.localeCompare(rowB.title);}});if(this.eventsHaveDuration_){columns.push({title:'Wall Duration',value:function(row){return tr.v.ui.createScalarSpan(row.duration,{unit:tr.v.Unit.byName.timeDurationInMs,total:row.totalsRow?undefined:maxValues.duration,ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.duration-rowB.duration;}});}
-if(this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Duration',value:function(row){return tr.v.ui.createScalarSpan(row.cpuDuration,{unit:tr.v.Unit.byName.timeDurationInMs,total:row.totalsRow?undefined:maxValues.cpuDuration,ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuDuration-rowB.cpuDuration;}});}
-if(this.eventsHaveSubRows_&&this.eventsHaveDuration_){columns.push({title:'Self time',value:function(row){return tr.v.ui.createScalarSpan(row.selfTime,{unit:tr.v.Unit.byName.timeDurationInMs,total:row.totalsRow?undefined:maxValues.selfTime,ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.selfTime-rowB.selfTime;}});}
-if(this.eventsHaveSubRows_&&this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Self Time',value:function(row){return tr.v.ui.createScalarSpan(row.cpuSelfTime,{unit:tr.v.Unit.byName.timeDurationInMs,total:row.totalsRow?undefined:maxValues.cpuSelfTime,ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuSelfTime-rowB.cpuSelfTime;}});}
-if(this.eventsHaveDuration_){columns.push({title:'Average '+(hasCpuData?'CPU':'Wall')+' Duration',value:function(row){var totalDuration=hasCpuData?row.cpuDuration:row.duration;return tr.v.ui.createScalarSpan(totalDuration/row.numEvents,{unit:tr.v.Unit.byName.timeDurationInMs,total:row.totalsRow?undefined:maxValues.duration,ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){if(hasCpuData){return rowA.cpuDuration/rowA.numEvents-
+return'Totals';var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(row.events);},row.title);return linkEl;},width:'350px',cmp:function(rowA,rowB){return rowA.title.localeCompare(rowB.title);}});if(this.eventsHaveDuration_){columns.push({title:'Wall Duration',value:function(row){return tr.v.ui.createScalarSpan(row.duration,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.Range.fromExplicitRange(0,maxValues.duration),ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.duration-rowB.duration;}});}
+if(this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Duration',value:function(row){return tr.v.ui.createScalarSpan(row.cpuDuration,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.Range.fromExplicitRange(0,maxValues.cpuDuration),ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuDuration-rowB.cpuDuration;}});}
+if(this.eventsHaveSubRows_&&this.eventsHaveDuration_){columns.push({title:'Self time',value:function(row){return tr.v.ui.createScalarSpan(row.selfTime,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.Range.fromExplicitRange(0,maxValues.selfTime),ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.selfTime-rowB.selfTime;}});}
+if(this.eventsHaveSubRows_&&this.eventsHaveDuration_&&hasCpuData){columns.push({title:'CPU Self Time',value:function(row){return tr.v.ui.createScalarSpan(row.cpuSelfTime,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.Range.fromExplicitRange(0,maxValues.cpuSelfTime),ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.cpuSelfTime-rowB.cpuSelfTime;}});}
+if(this.eventsHaveDuration_){columns.push({title:'Average '+(hasCpuData?'CPU':'Wall')+' Duration',value:function(row){var totalDuration=hasCpuData?row.cpuDuration:row.duration;return tr.v.ui.createScalarSpan(totalDuration/row.numEvents,{unit:tr.b.Unit.byName.timeDurationInMs,customContextRange:row.totalsRow?undefined:tr.b.Range.fromExplicitRange(0,maxValues.duration),ownerDocument:ownerDocument,rightAlign:true});},width:'<upated further down>',cmp:function(rowA,rowB){if(hasCpuData){return rowA.cpuDuration/rowA.numEvents-
 rowB.cpuDuration/rowB.numEvents;}else{return rowA.duration/rowA.numEvents-
 rowB.duration/rowB.numEvents;}}});}
 columns.push({title:'Occurrences',value:function(row){return row.numEvents;},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.numEvents-rowB.numEvents;}});var alertsColumnIndex;if(hasAlerts){columns.push({title:'Num Alerts',value:function(row){return row.numAlerts;},width:'<upated further down>',cmp:function(rowA,rowB){return rowA.numAlerts-rowB.numAlerts;}});alertsColumnIndex=columns.length-1;}
@@ -8361,11 +8454,12 @@
 this.eventsHaveSubRows_=config.eventsHaveSubRows;else
 this.eventsHaveSubRows_=true;this.eventsByTitle_=config.eventsByTitle;this.updateContents_();},get showTotals(){return this.showTotals_;},set showTotals(showTotals){this.showTotals_=showTotals;this.updateContents_();},get eventsHaveDuration(){return this.eventsHaveDuration_;},set eventsHaveDuration(eventsHaveDuration){this.eventsHaveDuration_=eventsHaveDuration;this.updateContents_();},get eventsHaveSubRows(){return this.eventsHaveSubRows_;},set eventsHaveSubRows(eventsHaveSubRows){this.eventsHaveSubRows_=eventsHaveSubRows;this.updateContents_();},get eventsByTitle(){return this.eventsByTitle_;},set eventsByTitle(eventsByTitle){this.eventsByTitle_=eventsByTitle;this.updateContents_();},get selectionBounds(){return this.selectionBounds_;},set selectionBounds(selectionBounds){this.selectionBounds_=selectionBounds;this.updateContents_();},updateContents_:function(){var eventsByTitle;if(this.eventsByTitle_!==undefined)
 eventsByTitle=this.eventsByTitle_;else
-eventsByTitle=[];var allEvents=[];var rows=[];tr.b.iterItems(eventsByTitle,function(title,eventsOfSingleTitle){allEvents.push.apply(allEvents,eventsOfSingleTitle);var row=new tr.ui.analysis.MultiEventSummary(title,eventsOfSingleTitle);rows.push(row);});this.updateTableColumns_(rows);this.$.table.tableRows=rows;var maxValues={duration:undefined,selfTime:undefined,cpuSelfTime:undefined,cpuDuration:undefined};if(this.eventsHaveDuration){for(var column in maxValues){maxValues[column]=tr.b.Statistics.max(rows,function(event){return event[column];});}}
+eventsByTitle=[];var allEvents=new tr.model.EventSet();var rows=[];tr.b.iterItems(eventsByTitle,function(title,eventsOfSingleTitle){for(var event of allEvents)
+allEvents.push(event);var row=new tr.ui.analysis.MultiEventSummary(title,eventsOfSingleTitle);rows.push(row);});this.updateTableColumns_(rows);this.$.table.tableRows=rows;var maxValues={duration:undefined,selfTime:undefined,cpuSelfTime:undefined,cpuDuration:undefined};if(this.eventsHaveDuration){for(var column in maxValues){maxValues[column]=tr.b.Statistics.max(rows,function(event){return event[column];});}}
 var footerRows=[];if(this.showTotals_){var multiEventSummary=new tr.ui.analysis.MultiEventSummary('Totals',allEvents);footerRows.push(multiEventSummary);}
 this.updateTableColumns_(rows,maxValues);this.$.table.tableRows=rows;this.$.table.footerRows=footerRows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-selection-summary-table',created:function(){this.selection_=new tr.b.Range();},ready:function(){this.$.table.showHeader=false;this.$.table.tableColumns=[{title:'Name',value:function(row){return row.title;},width:'350px'},{title:'Value',width:'100%',value:function(row){return row.value;}}];},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;this.updateContents_();},updateContents_:function(){var selection=this.selection_;var rows=[];var hasRange;if(this.selection_&&(!selection.bounds.isEmpty))
 hasRange=true;else
-hasRange=false;rows.push({title:'Selection start',value:hasRange?tr.v.ui.createScalarSpan(selection.bounds.min,{unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}):'<empty>'});rows.push({title:'Selection extent',value:hasRange?tr.v.ui.createScalarSpan(selection.bounds.range,{unit:tr.v.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument}):'<empty>'});this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-multi-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;this.eventsHaveDuration_=true;this.eventsHaveSubRows_=true;},set selection(selection){if(selection.length<=1)
+hasRange=false;rows.push({title:'Selection start',value:hasRange?tr.v.ui.createScalarSpan(selection.bounds.min,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}):'<empty>'});rows.push({title:'Selection extent',value:hasRange?tr.v.ui.createScalarSpan(selection.bounds.range,{unit:tr.b.Unit.byName.timeDurationInMs,ownerDocument:this.ownerDocument}):'<empty>'});this.$.table.tableRows=rows;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-multi-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;this.eventsHaveDuration_=true;this.eventsHaveSubRows_=true;},set selection(selection){if(selection.length<=1)
 throw new Error('Only supports multiple items');this.setSelectionWithoutErrorChecks(selection);},get selection(){return this.currentSelection_;},setSelectionWithoutErrorChecks:function(selection){this.currentSelection_=selection;this.updateContents_();},get eventsHaveDuration(){return this.eventsHaveDuration_;},set eventsHaveDuration(eventsHaveDuration){this.eventsHaveDuration_=eventsHaveDuration;this.updateContents_();},get eventsHaveSubRows(){return this.eventsHaveSubRows_;},set eventsHaveSubRows(eventsHaveSubRows){this.eventsHaveSubRows_=eventsHaveSubRows;this.updateContents_();},updateContents_:function(){var selection=this.currentSelection_;Polymer.dom(this.$.content).textContent='';if(!selection)
 return;var eventsByTitle=selection.getEventsOrganizedByTitle();var numTitles=tr.b.dictionaryLength(eventsByTitle);var summaryTableEl=document.createElement('tr-ui-a-multi-event-summary-table');summaryTableEl.configure({showTotals:numTitles>1,eventsByTitle:eventsByTitle,eventsHaveDuration:this.eventsHaveDuration_,eventsHaveSubRows:this.eventsHaveSubRows_});Polymer.dom(this.$.content).appendChild(summaryTableEl);var selectionSummaryTableEl=document.createElement('tr-ui-a-selection-summary-table');selectionSummaryTableEl.selection=this.currentSelection_;Polymer.dom(this.$.content).appendChild(selectionSummaryTableEl);if(numTitles===1){var detailsTableEl=document.createElement('tr-ui-a-multi-event-details-table');detailsTableEl.eventsHaveDuration=this.eventsHaveDuration_;detailsTableEl.eventsHaveSubRows=this.eventsHaveSubRows_;detailsTableEl.selection=selection;Polymer.dom(this.$.content).appendChild(detailsTableEl);}}});'use strict';tr.exportTo('tr.ui.analysis',function(){var FLOW_IN=0x1;var FLOW_OUT=0x2;var FLOW_IN_OUT=FLOW_IN|FLOW_OUT;function FlowClassifier(){this.numEvents_=0;this.eventsByGUID_={};}
 FlowClassifier.prototype={getFS_:function(event){var fs=this.eventsByGUID_[event.guid];if(fs===undefined){this.numEvents_++;fs={state:0,event:event};this.eventsByGUID_[event.guid]=fs;}
@@ -8386,7 +8480,7 @@
 Polymer({is:'tr-ui-a-related-events',ready:function(){this.eventGroups_=[];this.cancelFunctions_=[];this.$.table.tableColumns=[{title:'Event(s)',value:function(row){var typeEl=document.createElement('span');typeEl.innerText=row.type;if(row.tooltip)
 typeEl.title=row.tooltip;return typeEl;},width:'150px'},{title:'Link',width:'100%',value:function(row){var linkEl=document.createElement('tr-ui-a-analysis-link');if(row.name)
 linkEl.setSelectionAndContent(row.selection,row.name);else
-linkEl.selection=row.selection;return linkEl;}}];},hasRelatedEvents:function(){return(this.eventGroups_&&this.eventGroups_.length>0);},setRelatedEvents:function(eventSet){this.cancelAllTasks_();this.eventGroups_=[];this.addConnectedFlows_(eventSet);this.addConnectedEvents_(eventSet);this.addOverlappingSamples_(eventSet);this.updateContents_();},addConnectedFlows_:function(eventSet){var classifier=new tr.ui.analysis.FlowClassifier();eventSet.forEach(function(slice){if(slice.inFlowEvents){slice.inFlowEvents.forEach(function(flow){classifier.addInFlow(flow);});}
+linkEl.selection=row.selection;return linkEl;}}];},hasRelatedEvents:function(){return(this.eventGroups_&&this.eventGroups_.length>0);},setRelatedEvents:function(eventSet){this.cancelAllTasks_();this.eventGroups_=[];this.addRuntimeCallStats_(eventSet);this.addV8Slices_(eventSet);this.addConnectedFlows_(eventSet);this.addConnectedEvents_(eventSet);this.addOverlappingSamples_(eventSet);this.updateContents_();},addConnectedFlows_:function(eventSet){var classifier=new tr.ui.analysis.FlowClassifier();eventSet.forEach(function(slice){if(slice.inFlowEvents){slice.inFlowEvents.forEach(function(flow){classifier.addInFlow(flow);});}
 if(slice.outFlowEvents){slice.outFlowEvents.forEach(function(flow){classifier.addOutFlow(flow);});}});if(!classifier.hasEvents())
 return;var addToEventGroups=function(type,flowEvent){this.eventGroups_.push({type:type,selection:new tr.model.EventSet(flowEvent),name:flowEvent.title});};classifier.inFlowEvents.forEach(addToEventGroups.bind(this,'Incoming flow'));classifier.outFlowEvents.forEach(addToEventGroups.bind(this,'Outgoing flow'));classifier.internalFlowEvents.forEach(addToEventGroups.bind(this,'Internal flow'));},cancelAllTasks_:function(){this.cancelFunctions_.forEach(function(cancelFunction){cancelFunction();});this.cancelFunctions_=[];},addConnectedEvents_:function(eventSet){this.cancelFunctions_.push(this.createEventsLinkIfNeeded_('Preceding events','Add all events that have led to the selected one(s), connected by '+'flow arrows or by call stack.',eventSet,function*(event){yield*getEventInFlowEvents(event);yield*getEventAncestors(event);if(event.startSlice)
 yield event.startSlice;}.bind(this)));this.cancelFunctions_.push(this.createEventsLinkIfNeeded_('Following events','Add all events that have been caused by the selected one(s), '+'connected by flow arrows or by call stack.',eventSet,function*(event){yield*getEventOutFlowEvents(event);yield*getEventDescendents(event);if(event.endSlice)
@@ -8396,33 +8490,38 @@
 return;var timeout=window.performance.now()+8;while(eventsToProcess.size>0&&window.performance.now()<=timeout){var nextEvent=tr.b.getFirstElement(eventsToProcess);eventsToProcess.delete(nextEvent);for(var eventToAdd of connectedFn(nextEvent)){if(!events.contains(eventToAdd)){events.push(eventToAdd);eventsToProcess.add(eventToAdd);wasChanged=true;}}}
 if(eventsToProcess.size>0){var newTask=new tr.b.Task(addEventsUntilTimeout.bind(this),this);task.after(newTask);task=newTask;return;}
 if(!wasChanged)
-return;this.eventGroups_.push({type:title,tooltip:tooltip,selection:events});this.updateContents_();};function cancelTask(){isCanceled=true;}
+return;this.eventGroups_.push({type:title,tooltip:tooltip,selection:events});this.updateContents_();}
+function cancelTask(){isCanceled=true;}
 task=new tr.b.Task(addEventsUntilTimeout.bind(this),this);tr.b.Task.RunWhenIdle(task);return cancelTask;},addOverlappingSamples_:function(eventSet){var samples=new tr.model.EventSet;for(var slice of eventSet){if(!slice.parentContainer||!slice.parentContainer.samples)
 continue;var candidates=slice.parentContainer.samples;var range=tr.b.Range.fromExplicitRange(slice.start,slice.start+slice.duration);var filteredSamples=range.filterArray(candidates,function(value){return value.start;});for(var sample of filteredSamples)
 samples.push(sample);}
-if(samples.length>0){this.eventGroups_.push({type:'Overlapping samples',tooltip:'All samples overlapping the selected slice(s).',selection:samples});}},updateContents_:function(){var table=this.$.table;if(this.eventGroups_===undefined)
+if(samples.length>0){this.eventGroups_.push({type:'Overlapping samples',tooltip:'All samples overlapping the selected slice(s).',selection:samples});}},addV8Slices_:function(eventSet){var v8Slices=new tr.model.EventSet;for(var slice of eventSet){if(slice.category==='v8')
+v8Slices.push(slice);}
+if(v8Slices.length>0){this.eventGroups_.push({type:'V8 Slices',tooltip:'All V8 slices in the selected slice(s).',selection:v8Slices});}},addRuntimeCallStats_:function(eventSet){var slices=new tr.model.EventSet;for(var slice of eventSet){if(slice.category==='v8'&&slice.runtimeCallStats)
+slices.push(slice);}
+if(slices.length>0){this.eventGroups_.push({type:'Runtime call stats table',tooltip:'All V8 slices containing runtime call stats table in the selected slice(s).',selection:slices});}},updateContents_:function(){var table=this.$.table;if(this.eventGroups_===undefined)
 table.tableRows=[];else
 table.tableRows=this.eventGroups_.slice();table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-multi-async-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.content.selection=selection;this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents()){this.$.relatedEvents.style.display='';}else{this.$.relatedEvents.style.display='none';}},get relatedEventsToHighlight(){if(!this.$.content.selection)
 return undefined;var selection=new tr.model.EventSet();this.$.content.selection.forEach(function(asyncEvent){if(!asyncEvent.associatedEvents)
 return;asyncEvent.associatedEvents.forEach(function(event){selection.push(event);});});if(selection.length)
 return selection;return undefined;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-async-slice-sub-view',tr.model.AsyncSlice,{multi:true,title:'Async Slices',});'use strict';Polymer({is:'tr-ui-a-multi-cpu-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.$.content.eventsHaveSubRows=false;},get selection(){return this.$.content.selection;},set selection(selection){this.$.content.setSelectionWithoutErrorChecks(selection);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-cpu-slice-sub-view',tr.model.CpuSlice,{multi:true,title:'CPU Slices',});'use strict';Polymer({is:'tr-ui-a-multi-flow-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.$.content.eventsHaveDuration=false;this.$.content.eventsHaveSubRows=false;},set selection(selection){this.$.content.selection=selection;},get selection(){return this.$.content.selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-flow-event-sub-view',tr.model.FlowEvent,{multi:true,title:'Flow Events',});'use strict';Polymer({is:'tr-ui-a-multi-frame-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this).textContent='';var realView=document.createElement('tr-ui-a-multi-event-sub-view');realView.eventsHaveDuration=false;realView.eventsHaveSubRows=false;Polymer.dom(this).appendChild(realView);realView.setSelectionWithoutErrorChecks(selection);this.currentSelection_=selection;},get selection(){return this.currentSelection_;},get relatedEventsToHighlight(){if(!this.currentSelection_)
-return undefined;var selection=new tr.model.EventSet();this.currentSelection_.forEach(function(frameEvent){frameEvent.associatedEvents.forEach(function(event){selection.push(event);});});return selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-frame-sub-view',tr.model.Frame,{multi:true,title:'Frames',});'use strict';Polymer({is:'tr-ui-a-multi-instant-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this.$.content).textContent='';var realView=document.createElement('tr-ui-a-multi-event-sub-view');realView.eventsHaveDuration=false;realView.eventsHaveSubRows=false;Polymer.dom(this.$.content).appendChild(realView);realView.setSelectionWithoutErrorChecks(selection);this.currentSelection_=selection;},get selection(){return this.currentSelection_;}});'use strict';Polymer({is:'tr-ui-a-multi-object-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},ready:function(){this.$.content.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;var objectEvents=tr.b.asArray(selection).sort(tr.b.Range.compareByMinTimes);var timeSpanConfig={unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument};var table=this.$.content;table.tableColumns=[{title:'First',value:function(event){if(event instanceof tr.model.ObjectSnapshot)
+return undefined;var selection=new tr.model.EventSet();this.currentSelection_.forEach(function(frameEvent){frameEvent.associatedEvents.forEach(function(event){selection.push(event);});});return selection;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-frame-sub-view',tr.model.Frame,{multi:true,title:'Frames',});'use strict';Polymer({is:'tr-ui-a-multi-instant-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this.$.content).textContent='';var realView=document.createElement('tr-ui-a-multi-event-sub-view');realView.eventsHaveDuration=false;realView.eventsHaveSubRows=false;Polymer.dom(this.$.content).appendChild(realView);realView.setSelectionWithoutErrorChecks(selection);this.currentSelection_=selection;},get selection(){return this.currentSelection_;}});'use strict';Polymer({is:'tr-ui-a-multi-object-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},ready:function(){this.$.content.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;var objectEvents=tr.b.asArray(selection).sort(tr.b.Range.compareByMinTimes);var timeSpanConfig={unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument};var table=this.$.content;table.tableColumns=[{title:'First',value:function(event){if(event instanceof tr.model.ObjectSnapshot)
 return tr.v.ui.createScalarSpan(event.ts,timeSpanConfig);var spanEl=document.createElement('span');Polymer.dom(spanEl).appendChild(tr.v.ui.createScalarSpan(event.creationTs,timeSpanConfig));Polymer.dom(spanEl).appendChild(tr.ui.b.createSpan({textContent:'-',marginLeft:'4px',marginRight:'4px'}));if(event.deletionTs!=Number.MAX_VALUE){Polymer.dom(spanEl).appendChild(tr.v.ui.createScalarSpan(event.deletionTs,timeSpanConfig));}
 return spanEl;},width:'200px'},{title:'Second',value:function(event){var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(function(){return new tr.model.EventSet(event);},event.userFriendlyName);return linkEl;},width:'100%'}];table.tableRows=objectEvents;table.rebuild();}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-object-sub-view',tr.model.ObjectInstance,{multi:true,title:'Object Instances',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-object-sub-view',tr.model.ObjectSnapshot,{multi:true,title:'Object Snapshots',});'use strict';var EventSet=tr.model.EventSet;var CHART_TITLE='Power (W) by ms since vertical sync';var CHART_WIDTH_FRACTION_OF_BODY=0.5;Polymer({is:'tr-ui-a-frame-power-usage-chart',ready:function(){this.chart_=undefined;this.samples_=new EventSet();this.vSyncTimestamps_=[];},get chart(){return this.chart_;},get samples(){return this.samples_;},get vSyncTimestamps(){return this.vSyncTimestamps_;},setData:function(samples,vSyncTimestamps){this.samples_=(samples===undefined)?new EventSet():samples;this.vSyncTimestamps_=(vSyncTimestamps===undefined)?[]:vSyncTimestamps;this.updateContents_();},updateContents_:function(){this.clearChart_();var data=this.getDataForLineChart_();if(data.length===0)
 return;this.chart_=this.createChart_(data);Polymer.dom(this.$.content).appendChild(this.chart_);},createChart_:function(data){var chart=new tr.ui.b.LineChart();var width=document.body.clientWidth*CHART_WIDTH_FRACTION_OF_BODY;chart.setSize({width:width,height:chart.height});chart.chartTitle=CHART_TITLE;chart.data=data;return chart;},clearChart_:function(){var content=this.$.content;while(Polymer.dom(content).firstChild)
 Polymer.dom(content).removeChild(Polymer.dom(content).firstChild);this.chart_=undefined;},getDataForLineChart_:function(){var sortedSamples=this.sortSamplesByTimestampAscending_(this.samples);var vSyncTimestamps=this.vSyncTimestamps.slice();var lastVSyncTimestamp=undefined;var points=[];var frameNumber=0;sortedSamples.forEach(function(sample){while(vSyncTimestamps.length>0&&vSyncTimestamps[0]<=sample.start){lastVSyncTimestamp=vSyncTimestamps.shift();frameNumber++;}
 if(lastVSyncTimestamp===undefined)
-return;var point={x:sample.start-lastVSyncTimestamp};point['f'+frameNumber]=sample.power;points.push(point);});return points;},sortSamplesByTimestampAscending_:function(samples){return samples.toArray().sort(function(smpl1,smpl2){return smpl1.start-smpl2.start;});}});'use strict';Polymer({is:'tr-ui-a-power-sample-summary-table',ready:function(){this.$.table.tableColumns=[{title:'Min power',width:'100px',value:function(row){return tr.v.Unit.byName.powerInWatts.format(row.min);}},{title:'Max power',width:'100px',value:function(row){return tr.v.Unit.byName.powerInWatts.format(row.max);}},{title:'Time-weighted average',width:'100px',value:function(row){return tr.v.Unit.byName.powerInWatts.format(row.timeWeightedAverage);}},{title:'Energy consumed',width:'100px',value:function(row){return tr.v.Unit.byName.energyInJoules.format(row.energyConsumed);}},{title:'Sample count',width:'100%',value:function(row){return row.sampleCount;}}];this.samples=new tr.model.EventSet();},get samples(){return this.samples_;},set samples(samples){if(samples===this.samples)
-return;this.samples_=(samples===undefined)?new tr.model.EventSet():samples;this.updateContents_();},updateContents_:function(){if(this.samples.length===0){this.$.table.tableRows=[];}else{this.$.table.tableRows=[{min:this.getMin(),max:this.getMax(),timeWeightedAverage:this.getTimeWeightedAverage(),energyConsumed:this.getEnergyConsumed(),sampleCount:this.samples.length}];}
-this.$.table.rebuild();},getMin:function(){return Math.min.apply(null,this.samples.map(function(sample){return sample.power;}));},getMax:function(){return Math.max.apply(null,this.samples.map(function(sample){return sample.power;}));},getTimeWeightedAverage:function(){var energyConsumed=this.getEnergyConsumed();if(energyConsumed==='N/A')
-return'N/A';var durationInSeconds=this.samples.bounds.duration/1000;return this.getEnergyConsumed()/durationInSeconds;},getEnergyConsumed:function(){if(this.samples.length<2)
-return'N/A';var bounds=this.samples.bounds;var series=tr.b.getFirstElement(this.samples).series;return series.getEnergyConsumed(bounds.min,bounds.max);}});'use strict';Polymer({is:'tr-ui-a-multi-power-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_:function(){var samples=this.selection;var vSyncTimestamps=(!samples?[]:tr.b.getFirstElement(samples).series.device.vSyncTimestamps);this.$.summaryTable.samples=samples;this.$.chart.setData(this.selection,vSyncTimestamps);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-power-sample-sub-view',tr.model.PowerSample,{multi:true,title:'Power Samples',});'use strict';(function(){var MultiDimensionalViewBuilder=tr.b.MultiDimensionalViewBuilder;var SAMPLE_TYPE={COMPILER:'compiler',EXTERNAL:'external',GC:'gc',NATIVEV8:'[native v8]',OTHER:'other',UNKNOWN:'unknown'};Polymer({is:'tr-ui-a-multi-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.viewOption_=undefined;this.selection_=undefined;},ready:function(){var viewSelector=tr.ui.b.createSelector(this,'viewOption','tracing.ui.analysis.multi_sample_sub_view',MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW,[{label:'Top-down (Tree)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW},{label:'Top-down (Heavy)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW},{label:'Bottom-up (Heavy)',value:MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW}]);Polymer.dom(this.$.control).appendChild(viewSelector);this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;this.updateContents_();},get viewOption(){return this.viewOption_;},set viewOption(viewOption){this.viewOption_=viewOption;this.updateContents_();},createSamplingSummary_:function(selection,viewOption){var builder=new MultiDimensionalViewBuilder(1,1);var samples=selection.filter(function(event){return event instanceof tr.model.Sample;});samples.forEach(function(sample){builder.addPath([sample.getUserFriendlyStackTrace().reverse()],[1],MultiDimensionalViewBuilder.ValueKind.SELF);});return builder.buildView(viewOption);},processTypedSampleRow_:function(row){var title=row.title[0];switch(title){case SAMPLE_TYPE.COMPILER:case SAMPLE_TYPE.EXTERNAL:case SAMPLE_TYPE.GC:case SAMPLE_TYPE.OTHER:row.functionName=title;row.fileName='N/A';return true;case SAMPLE_TYPE.UNKNOWN:row.functionName=SAMPLE_TYPE.UNKNOWN;row.fileName=SAMPLE_TYPE.UNKNOWN;return true;default:return false;}},processNativeV8SampleRow_:function(row){var title=row.title[0];if(!title.includes(SAMPLE_TYPE.NATIVEV8))
+return;var point={x:sample.start-lastVSyncTimestamp};point['f'+frameNumber]=sample.powerInW;points.push(point);});return points;},sortSamplesByTimestampAscending_:function(samples){return samples.toArray().sort(function(smpl1,smpl2){return smpl1.start-smpl2.start;});}});'use strict';Polymer({is:'tr-ui-a-power-sample-summary-table',ready:function(){this.$.table.tableColumns=[{title:'Min power',width:'100px',value:function(row){return tr.b.Unit.byName.powerInWatts.format(row.min);}},{title:'Max power',width:'100px',value:function(row){return tr.b.Unit.byName.powerInWatts.format(row.max);}},{title:'Time-weighted average',width:'100px',value:function(row){return tr.b.Unit.byName.powerInWatts.format(row.timeWeightedAverageInW);}},{title:'Energy consumed',width:'100px',value:function(row){return tr.b.Unit.byName.energyInJoules.format(row.energyConsumedInJ);}},{title:'Sample count',width:'100%',value:function(row){return row.sampleCount;}}];this.samples=new tr.model.EventSet();},get samples(){return this.samples_;},set samples(samples){if(samples===this.samples)
+return;this.samples_=(samples===undefined)?new tr.model.EventSet():samples;this.updateContents_();},updateContents_:function(){if(this.samples.length===0){this.$.table.tableRows=[];}else{this.$.table.tableRows=[{min:this.getMin(),max:this.getMax(),timeWeightedAverageInW:this.getTimeWeightedAverageInW(),energyConsumedInJ:this.getEnergyConsumedInJ(),sampleCount:this.samples.length}];}
+this.$.table.rebuild();},getMin:function(){return Math.min.apply(null,this.samples.map(function(sample){return sample.powerInW;}));},getMax:function(){return Math.max.apply(null,this.samples.map(function(sample){return sample.powerInW;}));},getTimeWeightedAverageInW:function(){var energyConsumedInJ=this.getEnergyConsumedInJ();if(energyConsumedInJ==='N/A')
+return'N/A';var durationInS=tr.b.convertUnit(this.samples.bounds.duration,tr.b.UnitScale.Metric.MILLI,tr.b.UnitScale.Metric.NONE);return energyConsumedInJ/durationInS;},getEnergyConsumedInJ:function(){if(this.samples.length<2)
+return'N/A';var bounds=this.samples.bounds;var series=tr.b.getFirstElement(this.samples).series;return series.getEnergyConsumedInJ(bounds.min,bounds.max);}});'use strict';Polymer({is:'tr-ui-a-multi-power-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_:function(){var samples=this.selection;var vSyncTimestamps=(!samples?[]:tr.b.getFirstElement(samples).series.device.vSyncTimestamps);this.$.summaryTable.samples=samples;this.$.chart.setData(this.selection,vSyncTimestamps);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-power-sample-sub-view',tr.model.PowerSample,{multi:true,title:'Power Samples',});'use strict';(function(){var MultiDimensionalViewBuilder=tr.b.MultiDimensionalViewBuilder;var SAMPLE_TYPE={COMPILER:'compiler',EXTERNAL:'external',GC:'gc',NATIVEV8:'[native v8]',OTHER:'other',UNKNOWN:'unknown'};Polymer({is:'tr-ui-a-multi-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.viewOption_=undefined;this.selection_=undefined;},ready:function(){var viewSelector=tr.ui.b.createSelector(this,'viewOption','tracing.ui.analysis.multi_sample_sub_view',MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW,[{label:'Top-down (Tree)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_TREE_VIEW},{label:'Top-down (Heavy)',value:MultiDimensionalViewBuilder.ViewType.TOP_DOWN_HEAVY_VIEW},{label:'Bottom-up (Heavy)',value:MultiDimensionalViewBuilder.ViewType.BOTTOM_UP_HEAVY_VIEW}]);Polymer.dom(this.$.control).appendChild(viewSelector);this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;this.updateContents_();},get viewOption(){return this.viewOption_;},set viewOption(viewOption){this.viewOption_=viewOption;this.updateContents_();},createSamplingSummary_:function(selection,viewOption){var builder=new MultiDimensionalViewBuilder(1,1);var samples=selection.filter(function(event){return event instanceof tr.model.Sample;});samples.forEach(function(sample){builder.addPath([sample.getUserFriendlyStackTrace().reverse()],[1],MultiDimensionalViewBuilder.ValueKind.SELF);});return builder.buildView(viewOption);},processTypedSampleRow_:function(row){var title=row.title[0];switch(title){case SAMPLE_TYPE.COMPILER:case SAMPLE_TYPE.EXTERNAL:case SAMPLE_TYPE.GC:case SAMPLE_TYPE.OTHER:row.functionName=title;row.fileName='N/A';return true;case SAMPLE_TYPE.UNKNOWN:row.functionName=SAMPLE_TYPE.UNKNOWN;row.fileName=SAMPLE_TYPE.UNKNOWN;return true;default:return false;}},processNativeV8SampleRow_:function(row){var title=row.title[0];if(!title.includes(SAMPLE_TYPE.NATIVEV8))
 return false;var arr=title.split(SAMPLE_TYPE.NATIVEV8);row.functionName=arr[0].trim();if(row.functionName==='')
 row.functionName='(anonymous function)';row.fileName=SAMPLE_TYPE.NATIVEV8;var fileNameSuffix=arr[1].trim();if(fileNameSuffix!=='')
 row.fileName+=' '+fileNameSuffix;return true;},processGeneralSampleRow_:function(row){var title=row.title[0];var idx=title.lastIndexOf(' ');if(idx===-1){row.functionName=title;row.fileName='unknown';return;}
 var prefix=title.substr(0,idx);var suffix=title.substr(idx+1);if(suffix.startsWith('v8/')){row.functionName=suffix;row.fileName='unknown';}else if(suffix===''){row.functionName=prefix;row.fileName='unknown';}else if(prefix===''){row.functionName='(anonymous function)';row.fileName=suffix.substr(suffix.lastIndexOf('/')+1);}else{row.functionName=prefix;row.fileName=suffix.substr(suffix.lastIndexOf('/')+1);}},processSampleRows_:function(rows){rows.forEach(function(row){if(!this.processTypedSampleRow_(row)&&!this.processNativeV8SampleRow_(row))
 this.processGeneralSampleRow_(row);this.processSampleRows_(row.subRows);},this);},updateContents_:function(){if(this.selection===undefined){this.$.table.tableColumns=[];this.$.table.tableRows=[];this.$.table.rebuild();return;}
-var samplingData=this.createSamplingSummary_(this.selection,this.viewOption);var total=samplingData.values[0].total;var columns=[this.createPercentColumn_('Total',total),this.createSamplesColumn_('Total'),this.createPercentColumn_('Self',total),this.createSamplesColumn_('Self'),{title:'Function Name',value:function(row){return row.functionName;},width:'150px',cmp:function(a,b){return a.functionName.localeCompare(b.functionName);},showExpandButtons:true},{title:'Location',value:function(row){return row.fileName;},width:'250px',cmp:function(a,b){return a.fileName.localeCompare(b.fileName);}}];this.processSampleRows_(samplingData.subRows);this.$.table.tableColumns=columns;this.$.table.sortColumnIndex=1;this.$.table.sortDescending=true;this.$.table.tableRows=samplingData.subRows;this.$.table.rebuild();},createPercentColumn_:function(title,samplingDataTotal){var field=title.toLowerCase();return{title:title+' percent',value:function(row){var percent=row.values[0][field]/samplingDataTotal;var span=document.createElement('tr-v-ui-scalar-span');span.value=(percent*100).toFixed(2);span.percentage=percent;span.unit=tr.v.Unit.byName.unitlessNumber;return span;}.bind(this),width:'60px',cmp:function(a,b){return a.values[0][field]-b.values[0][field];}};},createSamplesColumn_:function(title){var field=title.toLowerCase();return{title:title+' samples',value:function(row){return row.values[0][field];},width:'60px',cmp:function(a,b){return a.values[0][field]-b.values[0][field];}};}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-sample-sub-view',tr.model.Sample,{multi:true,title:'Samples',});})();'use strict';Polymer({is:'tr-ui-a-multi-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.selection_=undefined;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;if(tr.isExported('tr.ui.e.chrome.cc.RasterTaskSelection')){if(tr.ui.e.chrome.cc.RasterTaskSelection.supports(selection)){var ltvSelection=new tr.ui.e.chrome.cc.RasterTaskSelection(selection);var ltv=new tr.ui.e.chrome.cc.LayerTreeHostImplSnapshotView();ltv.objectSnapshot=ltvSelection.containingSnapshot;ltv.selection=ltvSelection;ltv.extraHighlightsByLayerId=ltvSelection.extraHighlightsByLayerId;Polymer.dom(this.$.content).textContent='';Polymer.dom(this.$.content).appendChild(ltv);this.requiresTallView_=true;return;}}
+var samplingData=this.createSamplingSummary_(this.selection,this.viewOption);var total=samplingData.values[0].total;var columns=[this.createPercentColumn_('Total',total),this.createSamplesColumn_('Total'),this.createPercentColumn_('Self',total),this.createSamplesColumn_('Self'),{title:'Function Name',value:function(row){return row.functionName;},width:'150px',cmp:function(a,b){return a.functionName.localeCompare(b.functionName);},showExpandButtons:true},{title:'Location',value:function(row){return row.fileName;},width:'250px',cmp:function(a,b){return a.fileName.localeCompare(b.fileName);}}];this.processSampleRows_(samplingData.subRows);this.$.table.tableColumns=columns;this.$.table.sortColumnIndex=1;this.$.table.sortDescending=true;this.$.table.tableRows=samplingData.subRows;this.$.table.rebuild();},createPercentColumn_:function(title,samplingDataTotal){var field=title.toLowerCase();return{title:title+' percent',value:function(row){return tr.v.ui.createScalarSpan(row.values[0][field]/samplingDataTotal,{customContextRange:tr.b.Range.PERCENT_RANGE,unit:tr.b.Unit.byName.normalizedPercentage,context:{minimumFractionDigits:2,maximumFractionDigits:2},rightAlign:true});},width:'60px',cmp:function(a,b){return a.values[0][field]-b.values[0][field];}};},createSamplesColumn_:function(title){var field=title.toLowerCase();return{title:title+' samples',value:function(row){return tr.v.ui.createScalarSpan(row.values[0][field],{unit:tr.b.Unit.byName.unitlessNumber,context:{maximumFractionDigits:0},rightAlign:true});},width:'60px',cmp:function(a,b){return a.values[0][field]-b.values[0][field];}};}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-sample-sub-view',tr.model.Sample,{multi:true,title:'Samples',});})();'use strict';Polymer({is:'tr-ui-a-multi-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.selection_=undefined;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;if(tr.isExported('tr.ui.e.chrome.cc.RasterTaskSelection')){if(tr.ui.e.chrome.cc.RasterTaskSelection.supports(selection)){var ltvSelection=new tr.ui.e.chrome.cc.RasterTaskSelection(selection);var ltv=new tr.ui.e.chrome.cc.LayerTreeHostImplSnapshotView();ltv.objectSnapshot=ltvSelection.containingSnapshot;ltv.selection=ltvSelection;ltv.extraHighlightsByLayerId=ltvSelection.extraHighlightsByLayerId;Polymer.dom(this.$.content).textContent='';Polymer.dom(this.$.content).appendChild(ltv);this.requiresTallView_=true;return;}}
 Polymer.dom(this.$.content).textContent='';var mesv=document.createElement('tr-ui-a-multi-event-sub-view');mesv.selection=selection;Polymer.dom(this.$.content).appendChild(mesv);var relatedEvents=document.createElement('tr-ui-a-related-events');relatedEvents.setRelatedEvents(selection);if(relatedEvents.hasRelatedEvents()){Polymer.dom(this.$.content).appendChild(relatedEvents);}},get requiresTallView(){if(this.$.content.children.length===0)
 return false;var childTagName=this.$.content.children[0].tagName;if(childTagName==='TR-UI-A-MULTI-EVENT-SUB-VIEW')
 return false;return true;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-thread-slice-sub-view',tr.model.ThreadSlice,{multi:true,title:'Slices',});'use strict';Polymer({is:'tr-ui-a-multi-thread-time-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.$.content.eventsHaveSubRows=false;},get selection(){return this.$.content.selection;},set selection(selection){this.$.content.setSelectionWithoutErrorChecks(selection);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-thread-time-slice-sub-view',tr.model.ThreadTimeSlice,{multi:true,title:'Thread Timeslices',});'use strict';Polymer({is:'tr-ui-a-user-expectation-related-samples-table',ready:function(){this.samples_=[];this.$.table.tableColumns=[{title:'Event(s)',value:function(row){var typeEl=document.createElement('span');typeEl.innerText=row.type;if(row.tooltip)
@@ -8438,7 +8537,7 @@
 throw new Error('Only supports single slices');this.$.content.setSelectionWithoutErrorChecks(selection);this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents()){this.$.relatedEvents.style.display='';}else{this.$.relatedEvents.style.display='none';}},getEventRows_:function(event){var rows=this.__proto__.__proto__.getEventRows_(event);rows.splice(0,0,{name:'ID',value:event.id});return rows;},get relatedEventsToHighlight(){if(!this.currentSelection_)
 return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-async-slice-sub-view',tr.model.AsyncSlice,{multi:false,title:'Async Slice',});'use strict';Polymer({is:'tr-ui-a-single-cpu-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){var cpuSlice=tr.b.getOnlyElement(selection);if(!(cpuSlice instanceof tr.model.CpuSlice))
 throw new Error('Only supports thread time slices');this.currentSelection_=selection;var thread=cpuSlice.threadThatWasRunning;var root=Polymer.dom(this.root);if(thread){Polymer.dom(root.querySelector('#process-name')).textContent=thread.parent.userFriendlyName;Polymer.dom(root.querySelector('#thread-name')).textContent=thread.userFriendlyName;}else{root.querySelector('#process-name').parentElement.style.display='none';Polymer.dom(root.querySelector('#thread-name')).textContent=cpuSlice.title;}
-root.querySelector('#start').setValueAndUnit(cpuSlice.start,tr.v.Unit.byName.timeStampInMs);root.querySelector('#duration').setValueAndUnit(cpuSlice.duration,tr.v.Unit.byName.timeDurationInMs);var runningThreadEl=root.querySelector('#running-thread');var timeSlice=cpuSlice.getAssociatedTimeslice();if(!timeSlice){runningThreadEl.parentElement.style.display='none';}else{var threadLink=document.createElement('tr-ui-a-analysis-link');threadLink.selection=new tr.model.EventSet(timeSlice);Polymer.dom(threadLink).textContent='Click to select';runningThreadEl.parentElement.style.display='';Polymer.dom(runningThreadEl).textContent='';Polymer.dom(runningThreadEl).appendChild(threadLink);}
+root.querySelector('#start').setValueAndUnit(cpuSlice.start,tr.b.Unit.byName.timeStampInMs);root.querySelector('#duration').setValueAndUnit(cpuSlice.duration,tr.b.Unit.byName.timeDurationInMs);var runningThreadEl=root.querySelector('#running-thread');var timeSlice=cpuSlice.getAssociatedTimeslice();if(!timeSlice){runningThreadEl.parentElement.style.display='none';}else{var threadLink=document.createElement('tr-ui-a-analysis-link');threadLink.selection=new tr.model.EventSet(timeSlice);Polymer.dom(threadLink).textContent='Click to select';runningThreadEl.parentElement.style.display='';Polymer.dom(runningThreadEl).textContent='';Polymer.dom(runningThreadEl).appendChild(threadLink);}
 root.querySelector('#args').object=cpuSlice.args;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-cpu-slice-sub-view',tr.model.CpuSlice,{multi:false,title:'CPU Slice',});'use strict';function createAnalysisLinkTo(event){var linkEl=document.createElement('tr-ui-a-analysis-link');linkEl.setSelectionAndContent(new tr.model.EventSet(event),event.userFriendlyName);return linkEl;}
 Polymer({is:'tr-ui-a-single-flow-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],listeners:{'singleEventSubView.customize-rows':'onCustomizeRows_'},set selection(selection){this.currentSelection_=selection;this.$.singleEventSubView.setSelectionWithoutErrorChecks(selection);},get selection(){return this.currentSelection_;},onCustomizeRows_:function(e){var event=tr.b.getOnlyElement(this.currentSelection_);var rows=e.rows;rows.unshift({name:'ID',value:event.id});rows.push({name:'From',value:createAnalysisLinkTo(event.startSlice)});rows.push({name:'To',value:createAnalysisLinkTo(event.endSlice)});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-flow-event-sub-view',tr.model.FlowEvent,{multi:false,title:'Flow Event',});'use strict';Polymer({is:'tr-ui-a-single-frame-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.$.asv.selection=tr.b.getOnlyElement(selection).associatedAlerts;},get relatedEventsToHighlight(){if(!this.currentSelection_)
 return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-frame-sub-view',tr.model.Frame,{multi:false,title:'Frame',});'use strict';Polymer({is:'tr-ui-a-single-instant-event-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},set selection(selection){Polymer.dom(this.$.content).textContent='';var realView=document.createElement('tr-ui-a-single-event-sub-view');realView.setSelectionWithoutErrorChecks(selection);Polymer.dom(this.$.content).appendChild(realView);this.currentSelection_=selection;},get selection(){return this.currentSelection_;}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-instant-event-sub-view',tr.model.InstantEvent,{multi:false,title:'Instant Event',});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-multi-instant-event-sub-view',tr.model.InstantEvent,{multi:true,title:'Instant Events',});'use strict';tr.exportTo('tr.ui.analysis',function(){var ObjectInstanceView=tr.ui.b.define('object-instance-view');ObjectInstanceView.prototype={__proto__:HTMLDivElement.prototype,decorate:function(){this.objectInstance_=undefined;},get requiresTallView(){return true;},set modelEvent(obj){this.objectInstance=obj;},get modelEvent(){return this.objectInstance;},get objectInstance(){return this.objectInstance_;},set objectInstance(i){this.objectInstance_=i;this.updateContents();},updateContents:function(){throw new Error('Not implemented');}};var options=new tr.b.ExtensionRegistryOptions(tr.b.TYPE_BASED_REGISTRY_MODE);options.mandatoryBaseClass=ObjectInstanceView;options.defaultMetadata={showInTrackView:true};tr.b.decorateExtensionRegistry(ObjectInstanceView,options);return{ObjectInstanceView:ObjectInstanceView};});'use strict';Polymer({is:'tr-ui-a-single-object-instance-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},get requiresTallView(){if(this.$.content.children.length===0)
@@ -8453,29 +8552,42 @@
 html+='<tr><td>snapshots:</td><td id="snapshots"></td></tr>\n';html+='</table>';Polymer.dom(this.$.content).innerHTML=html;var snapshotsEl=Polymer.dom(this.$.content).querySelector('#snapshots');instance.snapshots.forEach(function(snapshot){var snapshotLink=document.createElement('tr-ui-a-analysis-link');snapshotLink.selection=new tr.model.EventSet(snapshot);Polymer.dom(snapshotsEl).appendChild(snapshotLink);});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-object-instance-sub-view',tr.model.ObjectInstance,{multi:false,title:'Object Instance',});'use strict';Polymer({is:'tr-ui-a-single-object-snapshot-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},get requiresTallView(){if(this.children.length===0)
 return false;if(this.children[0]instanceof tr.ui.analysis.ObjectSnapshotView)
 return this.children[0].requiresTallView;},get selection(){return this.currentSelection_;},set selection(selection){var snapshot=tr.b.getOnlyElement(selection);if(!(snapshot instanceof tr.model.ObjectSnapshot))
-throw new Error('Only supports object instances');Polymer.dom(this).textContent='';this.currentSelection_=selection;var typeInfo=tr.ui.analysis.ObjectSnapshotView.getTypeInfo(snapshot.objectInstance.category,snapshot.objectInstance.typeName);if(typeInfo){var customView=new typeInfo.constructor();Polymer.dom(this).appendChild(customView);customView.modelEvent=snapshot;}else{this.appendGenericAnalysis_(snapshot);}},appendGenericAnalysis_:function(snapshot){var instance=snapshot.objectInstance;Polymer.dom(this).textContent='';var titleEl=document.createElement('div');Polymer.dom(titleEl).classList.add('title');Polymer.dom(titleEl).appendChild(document.createTextNode('Snapshot of '));Polymer.dom(this).appendChild(titleEl);var instanceLinkEl=document.createElement('tr-ui-a-analysis-link');instanceLinkEl.selection=new tr.model.EventSet(instance);Polymer.dom(titleEl).appendChild(instanceLinkEl);Polymer.dom(titleEl).appendChild(document.createTextNode(' @ '));Polymer.dom(titleEl).appendChild(tr.v.ui.createScalarSpan(snapshot.ts,{unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}));var tableEl=document.createElement('table');Polymer.dom(this).appendChild(tableEl);var rowEl=document.createElement('tr');Polymer.dom(tableEl).appendChild(rowEl);var labelEl=document.createElement('td');Polymer.dom(labelEl).textContent='args:';Polymer.dom(rowEl).appendChild(labelEl);var argsEl=document.createElement('td');argsEl.id='args';Polymer.dom(rowEl).appendChild(argsEl);var objectViewEl=document.createElement('tr-ui-a-generic-object-view');objectViewEl.object=snapshot.args;Polymer.dom(argsEl).appendChild(objectViewEl);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-object-snapshot-sub-view',tr.model.ObjectSnapshot,{multi:false,title:'Object Snapshot',});'use strict';Polymer({is:'tr-ui-a-power-sample-table',ready:function(){this.$.table.tableColumns=[{title:'Time',width:'100px',value:function(row){return tr.v.ui.createScalarSpan(row.start,{unit:tr.v.Unit.byName.timeStampInMs});}},{title:'Power',width:'100%',value:function(row){return tr.v.ui.createScalarSpan(row.power,{unit:tr.v.Unit.byName.powerInWatts});}}];this.sample=undefined;},get sample(){return this.sample_;},set sample(sample){this.sample_=sample;this.updateContents_();},updateContents_:function(){if(this.sample===undefined)
+throw new Error('Only supports object instances');Polymer.dom(this).textContent='';this.currentSelection_=selection;var typeInfo=tr.ui.analysis.ObjectSnapshotView.getTypeInfo(snapshot.objectInstance.category,snapshot.objectInstance.typeName);if(typeInfo){var customView=new typeInfo.constructor();Polymer.dom(this).appendChild(customView);customView.modelEvent=snapshot;}else{this.appendGenericAnalysis_(snapshot);}},appendGenericAnalysis_:function(snapshot){var instance=snapshot.objectInstance;Polymer.dom(this).textContent='';var titleEl=document.createElement('div');Polymer.dom(titleEl).classList.add('title');Polymer.dom(titleEl).appendChild(document.createTextNode('Snapshot of '));Polymer.dom(this).appendChild(titleEl);var instanceLinkEl=document.createElement('tr-ui-a-analysis-link');instanceLinkEl.selection=new tr.model.EventSet(instance);Polymer.dom(titleEl).appendChild(instanceLinkEl);Polymer.dom(titleEl).appendChild(document.createTextNode(' @ '));Polymer.dom(titleEl).appendChild(tr.v.ui.createScalarSpan(snapshot.ts,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument}));var tableEl=document.createElement('table');Polymer.dom(this).appendChild(tableEl);var rowEl=document.createElement('tr');Polymer.dom(tableEl).appendChild(rowEl);var labelEl=document.createElement('td');Polymer.dom(labelEl).textContent='args:';Polymer.dom(rowEl).appendChild(labelEl);var argsEl=document.createElement('td');argsEl.id='args';Polymer.dom(rowEl).appendChild(argsEl);var objectViewEl=document.createElement('tr-ui-a-generic-object-view');objectViewEl.object=snapshot.args;Polymer.dom(argsEl).appendChild(objectViewEl);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-object-snapshot-sub-view',tr.model.ObjectSnapshot,{multi:false,title:'Object Snapshot',});'use strict';Polymer({is:'tr-ui-a-power-sample-table',ready:function(){this.$.table.tableColumns=[{title:'Time',width:'100px',value:function(row){return tr.v.ui.createScalarSpan(row.start,{unit:tr.b.Unit.byName.timeStampInMs});}},{title:'Power',width:'100%',value:function(row){return tr.v.ui.createScalarSpan(row.powerInW,{unit:tr.b.Unit.byName.powerInWatts});}}];this.sample=undefined;},get sample(){return this.sample_;},set sample(sample){this.sample_=sample;this.updateContents_();},updateContents_:function(){if(this.sample===undefined)
 this.$.table.tableRows=[];else
 this.$.table.tableRows=[this.sample];this.$.table.rebuild();}});'use strict';Polymer({is:'tr-ui-a-single-power-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],ready:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;this.updateContents_();},updateContents_:function(){if(this.selection.length!=1)
 throw'Cannot pass multiple samples to sample table.';this.$.samplesTable.sample=tr.b.getOnlyElement(this.selection);}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-power-sample-sub-view',tr.model.PowerSample,{multi:false,title:'Power Sample',});'use strict';Polymer({is:'tr-ui-a-single-sample-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},ready:function(){this.$.content.tableColumns=[{title:'FirstColumn',value:function(row){return row.title;},width:'250px'},{title:'SecondColumn',value:function(row){return row.value;},width:'100%'}];this.$.content.showHeader=false;},get selection(){return this.currentSelection_;},set selection(selection){this.currentSelection_=selection;if(this.currentSelection_===undefined){this.$.content.tableRows=[];return;}
-var sample=this.currentSelection_[0];var table=this.$.content;var rows=[];rows.push({title:'Title',value:sample.title});rows.push({title:'Sample time',value:tr.v.ui.createScalarSpan(sample.start,{unit:tr.v.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument})});var sfEl=document.createElement('tr-ui-a-stack-frame');sfEl.stackFrame=sample.leafStackFrame;rows.push({title:'Stack trace',value:sfEl});table.tableRows=rows;table.rebuild();}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-sample-sub-view',tr.model.Sample,{multi:false,title:'Sample',});'use strict';Polymer({is:'tr-ui-a-single-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.content.selection=selection;this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents())
+var sample=tr.b.getOnlyElement(this.currentSelection_);var table=this.$.content;var rows=[];rows.push({title:'Title',value:sample.title});rows.push({title:'Sample time',value:tr.v.ui.createScalarSpan(sample.start,{unit:tr.b.Unit.byName.timeStampInMs,ownerDocument:this.ownerDocument})});var sfEl=document.createElement('tr-ui-a-stack-frame');sfEl.stackFrame=sample.leafStackFrame;rows.push({title:'Stack trace',value:sfEl});table.tableRows=rows;table.rebuild();}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-sample-sub-view',tr.model.Sample,{multi:false,title:'Sample',});'use strict';Polymer({is:'tr-ui-a-single-thread-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],get selection(){return this.$.content.selection;},set selection(selection){this.$.content.selection=selection;this.$.relatedEvents.setRelatedEvents(selection);if(this.$.relatedEvents.hasRelatedEvents())
 this.$.relatedEvents.style.display='';else
 this.$.relatedEvents.style.display='none';}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-thread-slice-sub-view',tr.model.ThreadSlice,{multi:false,title:'Slice',});'use strict';Polymer({is:'tr-ui-a-single-thread-time-slice-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){var timeSlice=tr.b.getOnlyElement(selection);if(!(timeSlice instanceof tr.model.ThreadTimeSlice))
-throw new Error('Only supports thread time slices');this.currentSelection_=selection;var thread=timeSlice.thread;var root=Polymer.dom(this.root);Polymer.dom(root.querySelector('#state')).textContent=timeSlice.title;var stateColor=tr.b.ColorScheme.colorsAsStrings[timeSlice.colorId];root.querySelector('#state').style.backgroundColor=stateColor;Polymer.dom(root.querySelector('#process-name')).textContent=thread.parent.userFriendlyName;Polymer.dom(root.querySelector('#thread-name')).textContent=thread.userFriendlyName;root.querySelector('#start').setValueAndUnit(timeSlice.start,tr.v.Unit.byName.timeStampInMs);root.querySelector('#duration').setValueAndUnit(timeSlice.duration,tr.v.Unit.byName.timeDurationInMs);var onCpuEl=root.querySelector('#on-cpu');Polymer.dom(onCpuEl).textContent='';var runningInsteadEl=root.querySelector('#running-instead');if(timeSlice.cpuOnWhichThreadWasRunning){Polymer.dom(runningInsteadEl.parentElement).removeChild(runningInsteadEl);var cpuLink=document.createElement('tr-ui-a-analysis-link');cpuLink.selection=new tr.model.EventSet(timeSlice.getAssociatedCpuSlice());Polymer.dom(cpuLink).textContent=timeSlice.cpuOnWhichThreadWasRunning.userFriendlyName;Polymer.dom(onCpuEl).appendChild(cpuLink);}else{Polymer.dom(onCpuEl.parentElement).removeChild(onCpuEl);var cpuSliceThatTookCpu=timeSlice.getCpuSliceThatTookCpu();if(cpuSliceThatTookCpu){var cpuLink=document.createElement('tr-ui-a-analysis-link');cpuLink.selection=new tr.model.EventSet(cpuSliceThatTookCpu);if(cpuSliceThatTookCpu.thread)
+throw new Error('Only supports thread time slices');this.currentSelection_=selection;var thread=timeSlice.thread;var root=Polymer.dom(this.root);Polymer.dom(root.querySelector('#state')).textContent=timeSlice.title;var stateColor=tr.b.ColorScheme.colorsAsStrings[timeSlice.colorId];root.querySelector('#state').style.backgroundColor=stateColor;Polymer.dom(root.querySelector('#process-name')).textContent=thread.parent.userFriendlyName;Polymer.dom(root.querySelector('#thread-name')).textContent=thread.userFriendlyName;root.querySelector('#start').setValueAndUnit(timeSlice.start,tr.b.Unit.byName.timeStampInMs);root.querySelector('#duration').setValueAndUnit(timeSlice.duration,tr.b.Unit.byName.timeDurationInMs);var onCpuEl=root.querySelector('#on-cpu');Polymer.dom(onCpuEl).textContent='';var runningInsteadEl=root.querySelector('#running-instead');if(timeSlice.cpuOnWhichThreadWasRunning){Polymer.dom(runningInsteadEl.parentElement).removeChild(runningInsteadEl);var cpuLink=document.createElement('tr-ui-a-analysis-link');cpuLink.selection=new tr.model.EventSet(timeSlice.getAssociatedCpuSlice());Polymer.dom(cpuLink).textContent=timeSlice.cpuOnWhichThreadWasRunning.userFriendlyName;Polymer.dom(onCpuEl).appendChild(cpuLink);}else{Polymer.dom(onCpuEl.parentElement).removeChild(onCpuEl);var cpuSliceThatTookCpu=timeSlice.getCpuSliceThatTookCpu();if(cpuSliceThatTookCpu){var cpuLink=document.createElement('tr-ui-a-analysis-link');cpuLink.selection=new tr.model.EventSet(cpuSliceThatTookCpu);if(cpuSliceThatTookCpu.thread)
 Polymer.dom(cpuLink).textContent=cpuSliceThatTookCpu.thread.userFriendlyName;else
 Polymer.dom(cpuLink).textContent=cpuSliceThatTookCpu.title;Polymer.dom(runningInsteadEl).appendChild(cpuLink);}else{Polymer.dom(runningInsteadEl.parentElement).removeChild(runningInsteadEl);}}
-var argsEl=root.querySelector('#args');if(tr.b.dictionaryKeys(timeSlice.args).length>0){var argsView=document.createElement('tr-ui-a-generic-object-view');argsView.object=timeSlice.args;argsEl.parentElement.style.display='';Polymer.dom(argsEl).textContent='';Polymer.dom(argsEl).appendChild(argsView);}else{argsEl.parentElement.style.display='none';}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-thread-time-slice-sub-view',tr.model.ThreadTimeSlice,{multi:false,title:'Thread Timeslice',});'use strict';tr.exportTo('tr.v',function(){var SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME='summary values';function ValueSet(opt_values){this.values_={};if(opt_values!==undefined)
-opt_values.forEach(this.addValue,this);}
-ValueSet.prototype={get valueDicts(){return this.map(v=>v.asDict());},lookup:function(guid){return this.values_[guid];},toArray:function(){return tr.b.dictionaryValues(this.values_);},*[Symbol.iterator](){for(var guid in this.values_)
-yield this.values_[guid];},map:function(callback,opt_this){return this.toArray().map(callback,opt_this||this);},get organizedByName(){return this.getValuesOrganizedByCallback(v=>v.name);},getValuesOrganizedByCallback:function(callback,opt_this){return tr.b.group(this.toArray(),callback,opt_this||this);},addValuesFromDicts:function(dicts){dicts.forEach(function(dict){var value=tr.v.Value.fromDict(dict);this.addValueInternal_(value);},this);tr.b.iterItems(this.values_,function(guid,value){value.diagnostics.forEach(function(name,diagnostic){if((diagnostic instanceof tr.v.d.RelatedValueSet)||(diagnostic instanceof tr.v.d.RelatedValueMap))
-diagnostic.resolve(this);},this);if(value instanceof tr.v.NumericValue&&value.numeric instanceof tr.v.Numeric)
-value.numeric.allBins.forEach(function(b){b.diagnosticMaps.forEach(function(dm){dm.forEach(function(d){if((d instanceof tr.v.d.RelatedValueSet)||(d instanceof tr.v.d.RelatedValueMap))
-d.resolve(this);},this);},this);},this);},this);},get sourceValues(){var sourceValues=tr.b.cloneDictionary(this.values_);function deleteSourceValues(values,diagnosticMap){diagnosticMap.forEach(function(unused_name,diagnostic){if((diagnostic instanceof tr.v.d.RelatedValueSet)||(diagnostic instanceof tr.v.d.RelatedValueMap)){diagnostic.values.forEach(function(relatedValue){delete values[relatedValue.guid];});}});}
-this.map(function(value){deleteSourceValues(sourceValues,value.diagnostics);if((value instanceof tr.v.NumericValue)&&(value.numeric instanceof tr.v.Numeric)){for(var b of value.numeric.allBins){for(var dm of b.diagnosticMaps){deleteSourceValues(sourceValues,dm);}}}});return tr.b.dictionaryValues(sourceValues);},getValuesWithName:function(name){return this.toArray().filter(v=>v.name.indexOf(name)>-1);},getValuesNamed:function(name){return this.toArray().filter(v=>v.name==name);},addValueInternal_:function(v){if(this.values_[v.guid])
-throw new Error('Tried to add same value twice');this.values_[v.guid]=v;},addValue:function(v){this.addValueInternal_(v);if(v.numeric instanceof tr.v.Numeric){ValueSet.computeSummaryValuesForNumericValue(v).forEach(function(s){this.addValue(s);},this);}}};ValueSet.computeSummaryValuesForNumericValue=function(value){if(!(value instanceof tr.v.NumericValue&&value.numeric instanceof tr.v.Numeric))
-throw new Error('Tried to compute summary values for non-numeric');var summaryValueMap=new tr.v.d.RelatedValueMap();value.diagnostics.add(SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME,summaryValueMap);var options={description:value.description};var stats=value.numeric.getSummarizedScalarNumericsWithNames();return stats.map(function(stat){var summaryValue=new tr.v.NumericValue(value.name+'_'+stat.name,stat.scalar,options);summaryValueMap.set(stat.name,summaryValue);return summaryValue;});};return{SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME:SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME,ValueSet:ValueSet};});'use strict';Polymer({is:'tr-ui-a-single-user-expectation-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.$.realView.addEventListener('customize-rows',this.onCustomizeRows_.bind(this));this.currentSelection_=selection;this.$.realView.setSelectionWithoutErrorChecks(selection);this.$.relatedSamples.selection=selection;if(this.$.relatedSamples.hasRelatedSamples())
+var argsEl=root.querySelector('#args');if(tr.b.dictionaryKeys(timeSlice.args).length>0){var argsView=document.createElement('tr-ui-a-generic-object-view');argsView.object=timeSlice.args;argsEl.parentElement.style.display='';Polymer.dom(argsEl).textContent='';Polymer.dom(argsEl).appendChild(argsView);}else{argsEl.parentElement.style.display='none';}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-thread-time-slice-sub-view',tr.model.ThreadTimeSlice,{multi:false,title:'Thread Timeslice',});'use strict';tr.exportTo('tr.v',function(){class ValueSet{constructor(opt_values){this.values_=new Map();if(opt_values!==undefined)
+for(var value of opt_values)
+this.addHistogram(value);}
+get valueDicts(){return this.map(v=>v.asDict());}
+lookup(guid){return this.values_.get(guid);}
+get length(){return this.values_.size;}
+toArray(){return[...this];}*[Symbol.iterator](){for(var[guid,value]of this.values_)
+yield value;}
+map(callback,opt_this){return this.toArray().map(callback,opt_this||this);}
+addValuesFromDicts(dicts){for(var dict of dicts)
+this.addHistogram(tr.v.Histogram.fromDict(dict));for(var value of this){for(var[name,diagnostic]of value.diagnostics){if((diagnostic instanceof tr.v.d.RelatedValueSet)||(diagnostic instanceof tr.v.d.RelatedValueMap)){diagnostic.resolve(this);}}
+for(var bin of value.allBins){for(var dm of bin.diagnosticMaps){for(var[name,diagnostic]of dm){if((diagnostic instanceof tr.v.d.RelatedValueSet)||(diagnostic instanceof tr.v.d.RelatedValueMap)){diagnostic.resolve(this);}}}}}}
+get sourceValues(){var sourceValues=new Map(this.values_);function deleteSourceValues(diagnosticMap){for(var[name,diagnostic]of diagnosticMap){if(diagnostic instanceof tr.v.d.RelatedValueSet)
+for(var relatedValue of diagnostic)
+sourceValues.delete(relatedValue.guid);else if(diagnostic instanceof tr.v.d.RelatedValueMap)
+for(var[name,relatedValue]of diagnostic)
+sourceValues.delete(relatedValue.guid);}}
+for(var hist of this){deleteSourceValues(hist.diagnostics);for(var b of hist.allBins){for(var dm of b.diagnosticMaps){deleteSourceValues(dm);}}}
+return[...sourceValues.values()];}
+getValuesNamed(name){return this.toArray().filter(h=>h.name===name);}
+addHistogram(h){if(this.values_.get(h.guid))
+throw new Error('Cannot add same Histogram twice');this.values_.set(h.guid,h);}}
+ValueSet.GROUPINGS={HISTOGRAM_NAME:{key:'histogramName',label:'name',dataFn:v=>v.name},BENCHMARK_NAME:{key:'benchmarkName',label:'benchmark',dataFn:v=>tr.v.d.IterationInfo.getField(v,'benchmarkName','')},BENCHMARK_START:{key:'benchmarkStart',label:'time',dataFn:v=>tr.v.d.IterationInfo.getField(v,'benchmarkStartString','')},STORYSET_REPEAT:{key:'storysetRepeat',label:'storyset repeat',dataFn:v=>tr.v.d.IterationInfo.getField(v,'storysetRepeatCounterLabel',0)},STORY_REPEAT:{key:'storyRepeat',label:'story repeat',dataFn:v=>tr.v.d.IterationInfo.getField(v,'storyRepeatCounterLabel',0)},STORY_NAME:{key:'storyName',label:'story',dataFn:v=>tr.v.d.IterationInfo.getField(v,'storyDisplayName','')},DISPLAY_LABEL:{key:'displayLabel',label:'label',dataFn:v=>tr.v.d.IterationInfo.getField(v,'displayLabel','Value')}};return{ValueSet:ValueSet};});'use strict';Polymer({is:'tr-ui-a-single-user-expectation-sub-view',behaviors:[tr.ui.analysis.AnalysisSubView],created:function(){this.currentSelection_=undefined;},get selection(){return this.currentSelection_;},set selection(selection){this.$.realView.addEventListener('customize-rows',this.onCustomizeRows_.bind(this));this.currentSelection_=selection;this.$.realView.setSelectionWithoutErrorChecks(selection);this.$.relatedSamples.selection=selection;if(this.$.relatedSamples.hasRelatedSamples())
 this.$.events.style.display='';else
 this.$.events.style.display='none';},get relatedEventsToHighlight(){if(!this.currentSelection_)
-return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;},onCustomizeRows_:function(event){var ue=tr.b.getOnlyElement(this.selection);if(ue.rawCpuMs){event.rows.push({name:'Total CPU',value:tr.v.ui.createScalarSpan(ue.totalCpuMs,{unit:tr.v.Unit.byName.timeDurationInMs})});}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-user-expectation-sub-view',tr.model.um.UserExpectation,{multi:false,title:'User Expectation',});'use strict';Polymer({is:'tr-ui-a-tab-view',properties:{label_:{type:String,value:()=>''},selectedSubView_:Object,subViews_:{type:Array,value:()=>[]},tabsHidden:{type:Boolean,value:false}},set label(newLabel){this.set('label_',newLabel);},get tabs(){return this.get('subViews_');},get selectedSubView(){return this.selectedSubView_;},set selectedSubView(subView){if(subView===this.selectedSubView_)
+return undefined;return tr.b.getOnlyElement(this.currentSelection_).associatedEvents;},onCustomizeRows_:function(event){var ue=tr.b.getOnlyElement(this.selection);if(ue.rawCpuMs){event.rows.push({name:'Total CPU',value:tr.v.ui.createScalarSpan(ue.totalCpuMs,{unit:tr.b.Unit.byName.timeDurationInMs})});}}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-user-expectation-sub-view',tr.model.um.UserExpectation,{multi:false,title:'User Expectation',});'use strict';Polymer({is:'tr-ui-b-tab-view',properties:{label_:{type:String,value:()=>''},selectedSubView_:Object,subViews_:{type:Array,value:()=>[]},tabsHidden:{type:Boolean,value:false}},set label(newLabel){this.set('label_',newLabel);},get tabs(){return this.get('subViews_');},get selectedSubView(){return this.selectedSubView_;},set selectedSubView(subView){if(subView===this.selectedSubView_)
 return;if(this.selectedSubView_)
 Polymer.dom(this.$.subView).removeChild(this.selectedSubView_);this.set('selectedSubView_',subView);if(subView)
 Polymer.dom(this.$.subView).appendChild(subView);this.fire('selected-tab-change');},clearSubViews:function(){this.splice('subViews_',0,this.subViews_.length);this.selectedSubView=undefined;},addSubView:function(subView){if(!this.selectedSubView_)
@@ -8491,7 +8603,7 @@
 var subView=document.createElement(tagName);var title;if(selection.length===1)
 title=subViewTypeInfo.singleTitle;else
 title=subViewTypeInfo.multiTitle;title+=' ('+selection.length+')';subView.tabLabel=title;subView.selection=selection;return subView;}
-Polymer({is:'tr-ui-a-analysis-view',ready:function(){this.brushingStateController_=undefined;this.lastSelection_=undefined;this.tabView_=document.createElement('tr-ui-a-tab-view');this.tabView_.addEventListener('selected-tab-change',this.onSelectedSubViewChanged_.bind(this));Polymer.dom(this).appendChild(this.tabView_);},set tallMode(value){Polymer.dom(this).classList.toggle('tall-mode',value);},get tallMode(){return Polymer.dom(this).classList.contains('tall-mode');},get tabView(){return this.tabView_;},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController_){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_.bind(this));}
+Polymer({is:'tr-ui-a-analysis-view',ready:function(){this.brushingStateController_=undefined;this.lastSelection_=undefined;this.tabView_=document.createElement('tr-ui-b-tab-view');this.tabView_.addEventListener('selected-tab-change',this.onSelectedSubViewChanged_.bind(this));Polymer.dom(this).appendChild(this.tabView_);},set tallMode(value){Polymer.dom(this).classList.toggle('tall-mode',value);},get tallMode(){return Polymer.dom(this).classList.contains('tall-mode');},get tabView(){return this.tabView_;},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController_){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_.bind(this));}
 this.brushingStateController_=brushingStateController;if(this.brushingStateController){this.brushingStateController_.addEventListener('change',this.onSelectionChanged_.bind(this));}
 this.onSelectionChanged_();},get selection(){return this.brushingStateController_.selection;},onSelectionChanged_:function(e){if(this.lastSelection_&&this.selection.equals(this.lastSelection_))
 return;this.lastSelection_=this.selection;this.tallMode=false;this.tabView_.label=getTabStripLabel(this.selection.length);var eventsByBaseTypeName=this.selection.getEventsOrganizedByBaseType(true);var ASV=tr.ui.analysis.AnalysisSubView;var eventsByTagName=ASV.getEventsOrganizedByTypeInfo(this.selection);var newSubViews=[];eventsByTagName.forEach(function(events,typeInfo){newSubViews.push(createSubView(typeInfo,events));});this.tabView_.resetSubViews(newSubViews);},onSelectedSubViewChanged_:function(){var selectedSubView=this.tabView_.selectedSubView;if(!selectedSubView){this.tallMode=false;this.maybeChangeRelatedEvents_(undefined);return;}
@@ -8638,7 +8750,7 @@
 cpuUsageArray[i]+=cpuUsage;cpuUsageArray[startIndex]-=cpuUsagePerTime*(start-startIndex*interval);cpuUsageArray[endIndex]+=cpuUsagePerTime*(end-endIndex*interval);},get hasVisibleContent(){return!!this.cpuUsageSeries_&&this.cpuUsageSeries_.length>0;},addContainersToTrackMap:function(containerToTrackMap){containerToTrackMap.addContainer(this.series_,this);},buildChartSeries_:function(){if(!this.hasVisibleContent)
 return[];var axis=new tr.ui.tracks.ChartAxis(0,undefined);var pts=new Array(this.cpuUsageSeries_.length+1);for(var i=0;i<=this.cpuUsageSeries_.length;i++){pts[i]=new tr.ui.tracks.ChartPoint(undefined,this.interval_*i,this.cpuUsageSeries_[i]||0);}
 var renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:ColorScheme.getColorIdForGeneralPurposeString(this.heading)};return[new tr.ui.tracks.ChartSeries(pts,axis,renderingConfig)];}};return{CpuUsageTrack:CpuUsageTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var ColorScheme=tr.b.ColorScheme;var ChartTrack=tr.ui.tracks.ChartTrack;var PowerSeriesTrack=tr.ui.b.define('power-series-track',ChartTrack);PowerSeriesTrack.prototype={__proto__:ChartTrack.prototype,decorate:function(viewport){ChartTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('power-series-track');this.heading='Power';this.powerSeries_=undefined;},set powerSeries(powerSeries){this.powerSeries_=powerSeries;this.series=this.buildChartSeries_();this.autoSetAllAxes({expandMax:true});},get hasVisibleContent(){return(this.powerSeries_&&this.powerSeries_.samples.length>0);},addContainersToTrackMap:function(containerToTrackMap){containerToTrackMap.addContainer(this.powerSeries_,this);},buildChartSeries_:function(){if(!this.hasVisibleContent)
-return[];var axis=new tr.ui.tracks.ChartAxis(0,undefined);var pts=this.powerSeries_.samples.map(function(smpl){return new tr.ui.tracks.ChartPoint(smpl,smpl.start,smpl.power);});var renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:ColorScheme.getColorIdForGeneralPurposeString(this.heading)};return[new tr.ui.tracks.ChartSeries(pts,axis,renderingConfig)];}};return{PowerSeriesTrack:PowerSeriesTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var SpacingTrack=tr.ui.b.define('spacing-track',tr.ui.tracks.Track);SpacingTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate:function(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('spacing-track');this.heading_=document.createElement('tr-ui-heading');Polymer.dom(this).appendChild(this.heading_);},addAllEventsMatchingFilterToSelection:function(filter,selection){}};return{SpacingTrack:SpacingTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var ContainerTrack=tr.ui.tracks.ContainerTrack;var DeviceTrack=tr.ui.b.define('device-track',ContainerTrack);DeviceTrack.prototype={__proto__:ContainerTrack.prototype,decorate:function(viewport){ContainerTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('device-track');this.device_=undefined;this.powerSeriesTrack_=undefined;},get device(){return this.device_;},set device(device){this.device_=device;this.updateContents_();},get powerSeriesTrack(){return this.powerSeriesTrack_;},get hasVisibleContent(){return(this.powerSeriesTrack_&&this.powerSeriesTrack_.hasVisibleContent);},addContainersToTrackMap:function(containerToTrackMap){tr.ui.tracks.ContainerTrack.prototype.addContainersToTrackMap.call(this,containerToTrackMap);containerToTrackMap.addContainer(this.device,this);},addEventsToTrackMap:function(eventToTrackMap){this.tracks_.forEach(function(track){track.addEventsToTrackMap(eventToTrackMap);});},appendPowerSeriesTrack_:function(){this.powerSeriesTrack_=new tr.ui.tracks.PowerSeriesTrack(this.viewport);this.powerSeriesTrack_.powerSeries=this.device.powerSeries;if(this.powerSeriesTrack_.hasVisibleContent){Polymer.dom(this).appendChild(this.powerSeriesTrack_);Polymer.dom(this).appendChild(new tr.ui.tracks.SpacingTrack(this.viewport));}},updateContents_:function(){this.clearTracks_();this.appendPowerSeriesTrack_();}};return{DeviceTrack:DeviceTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var ColorScheme=tr.b.ColorScheme;var DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;var BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;var LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;var DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;function addDictionary(dstDict,srcDict){tr.b.iterItems(srcDict,function(key,value){var existingValue=dstDict[key];if(existingValue===undefined)
+return[];var axis=new tr.ui.tracks.ChartAxis(0,undefined);var pts=this.powerSeries_.samples.map(function(smpl){return new tr.ui.tracks.ChartPoint(smpl,smpl.start,smpl.powerInW);});var renderingConfig={chartType:tr.ui.tracks.ChartSeriesType.AREA,colorId:ColorScheme.getColorIdForGeneralPurposeString(this.heading)};return[new tr.ui.tracks.ChartSeries(pts,axis,renderingConfig)];}};return{PowerSeriesTrack:PowerSeriesTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var SpacingTrack=tr.ui.b.define('spacing-track',tr.ui.tracks.Track);SpacingTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate:function(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('spacing-track');this.heading_=document.createElement('tr-ui-heading');Polymer.dom(this).appendChild(this.heading_);},addAllEventsMatchingFilterToSelection:function(filter,selection){}};return{SpacingTrack:SpacingTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var ContainerTrack=tr.ui.tracks.ContainerTrack;var DeviceTrack=tr.ui.b.define('device-track',ContainerTrack);DeviceTrack.prototype={__proto__:ContainerTrack.prototype,decorate:function(viewport){ContainerTrack.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('device-track');this.device_=undefined;this.powerSeriesTrack_=undefined;},get device(){return this.device_;},set device(device){this.device_=device;this.updateContents_();},get powerSeriesTrack(){return this.powerSeriesTrack_;},get hasVisibleContent(){return(this.powerSeriesTrack_&&this.powerSeriesTrack_.hasVisibleContent);},addContainersToTrackMap:function(containerToTrackMap){tr.ui.tracks.ContainerTrack.prototype.addContainersToTrackMap.call(this,containerToTrackMap);containerToTrackMap.addContainer(this.device,this);},addEventsToTrackMap:function(eventToTrackMap){this.tracks_.forEach(function(track){track.addEventsToTrackMap(eventToTrackMap);});},appendPowerSeriesTrack_:function(){this.powerSeriesTrack_=new tr.ui.tracks.PowerSeriesTrack(this.viewport);this.powerSeriesTrack_.powerSeries=this.device.powerSeries;if(this.powerSeriesTrack_.hasVisibleContent){Polymer.dom(this).appendChild(this.powerSeriesTrack_);Polymer.dom(this).appendChild(new tr.ui.tracks.SpacingTrack(this.viewport));}},updateContents_:function(){this.clearTracks_();this.appendPowerSeriesTrack_();}};return{DeviceTrack:DeviceTrack};});'use strict';tr.exportTo('tr.ui.tracks',function(){var ColorScheme=tr.b.ColorScheme;var DISPLAYED_SIZE_NUMERIC_NAME=tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;var BACKGROUND=tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;var LIGHT=tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;var DETAILED=tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;function addDictionary(dstDict,srcDict){tr.b.iterItems(srcDict,function(key,value){var existingValue=dstDict[key];if(existingValue===undefined)
 existingValue=0;dstDict[key]=existingValue+value;});}
 function getProcessMemoryDumpAllocatorSizes(processMemoryDump){var allocatorDumps=processMemoryDump.memoryAllocatorDumps;if(allocatorDumps===undefined)
 return{};var allocatorSizes={};allocatorDumps.forEach(function(allocatorDump){if(allocatorDump.fullName==='tracing')
@@ -8867,7 +8979,7 @@
 if(this.viewport_.interestRange.min==selectionBounds.min&&this.viewport_.interestRange.max==selectionBounds.max)
 this.viewport_.interestRange.reset();else
 this.viewport_.interestRange.set(selectionBounds);},toggleHighDetails_:function(){this.viewport_.highDetails=!this.viewport_.highDetails;},hideDragBox_:function(){this.$.drag_box.style.left='-1000px';this.$.drag_box.style.top='-1000px';this.$.drag_box.style.width=0;this.$.drag_box.style.height=0;},setDragBoxPosition_:function(xStart,yStart,xEnd,yEnd){var loY=Math.min(yStart,yEnd);var hiY=Math.max(yStart,yEnd);var loX=Math.min(xStart,xEnd);var hiX=Math.max(xStart,xEnd);var modelTrackRect=this.modelTrack_.getBoundingClientRect();var dragRect={left:loX,top:loY,width:hiX-loX,height:hiY-loY};dragRect.right=dragRect.left+dragRect.width;dragRect.bottom=dragRect.top+dragRect.height;var modelTrackContainerRect=this.modelTrackContainer_.getBoundingClientRect();var clipRect={left:modelTrackContainerRect.left,top:modelTrackContainerRect.top,right:modelTrackContainerRect.right,bottom:modelTrackContainerRect.bottom};var headingWidth=window.getComputedStyle(Polymer.dom(this).querySelector('tr-ui-heading')).width;var trackTitleWidth=parseInt(headingWidth);clipRect.left=clipRect.left+trackTitleWidth;var intersectRect_=function(r1,r2){if(r2.left>r1.right||r2.right<r1.left||r2.top>r1.bottom||r2.bottom<r1.top)
-return false;var results={};results.left=Math.max(r1.left,r2.left);results.top=Math.max(r1.top,r2.top);results.right=Math.min(r1.right,r2.right);results.bottom=Math.min(r1.bottom,r2.bottom);results.width=results.right-results.left;results.height=results.bottom-results.top;return results;};var finalDragBox=intersectRect_(clipRect,dragRect);this.$.drag_box.style.left=finalDragBox.left+'px';this.$.drag_box.style.width=finalDragBox.width+'px';this.$.drag_box.style.top=finalDragBox.top+'px';this.$.drag_box.style.height=finalDragBox.height+'px';this.$.drag_box.style.whiteSpace='nowrap';var pixelRatio=window.devicePixelRatio||1;var canv=this.modelTrackContainer_.canvas;var dt=this.viewport_.currentDisplayTransform;var loWX=dt.xViewToWorld((loX-canv.offsetLeft)*pixelRatio);var hiWX=dt.xViewToWorld((hiX-canv.offsetLeft)*pixelRatio);Polymer.dom(this.$.drag_box).textContent=tr.v.Unit.byName.timeDurationInMs.format(hiWX-loWX);var e=new tr.b.Event('selectionChanging');e.loWX=loWX;e.hiWX=hiWX;this.dispatchEvent(e);},onGridToggle_:function(left){var selection=this.brushingStateController_.selection;var tb=left?selection.bounds.min:selection.bounds.max;if(this.viewport_.gridEnabled&&this.viewport_.gridSide===left&&this.viewport_.gridInitialTimebase===tb){this.viewport_.gridside=undefined;this.viewport_.gridEnabled=false;this.viewport_.gridInitialTimebase=undefined;return;}
+return false;var results={};results.left=Math.max(r1.left,r2.left);results.top=Math.max(r1.top,r2.top);results.right=Math.min(r1.right,r2.right);results.bottom=Math.min(r1.bottom,r2.bottom);results.width=results.right-results.left;results.height=results.bottom-results.top;return results;};var finalDragBox=intersectRect_(clipRect,dragRect);this.$.drag_box.style.left=finalDragBox.left+'px';this.$.drag_box.style.width=finalDragBox.width+'px';this.$.drag_box.style.top=finalDragBox.top+'px';this.$.drag_box.style.height=finalDragBox.height+'px';this.$.drag_box.style.whiteSpace='nowrap';var pixelRatio=window.devicePixelRatio||1;var canv=this.modelTrackContainer_.canvas;var dt=this.viewport_.currentDisplayTransform;var loWX=dt.xViewToWorld((loX-canv.offsetLeft)*pixelRatio);var hiWX=dt.xViewToWorld((hiX-canv.offsetLeft)*pixelRatio);Polymer.dom(this.$.drag_box).textContent=tr.b.Unit.byName.timeDurationInMs.format(hiWX-loWX);var e=new tr.b.Event('selectionChanging');e.loWX=loWX;e.hiWX=hiWX;this.dispatchEvent(e);},onGridToggle_:function(left){var selection=this.brushingStateController_.selection;var tb=left?selection.bounds.min:selection.bounds.max;if(this.viewport_.gridEnabled&&this.viewport_.gridSide===left&&this.viewport_.gridInitialTimebase===tb){this.viewport_.gridside=undefined;this.viewport_.gridEnabled=false;this.viewport_.gridInitialTimebase=undefined;return;}
 var numIntervalsSinceStart=Math.ceil((tb-this.model_.bounds.min)/this.viewport_.gridStep_);this.viewport_.gridEnabled=true;this.viewport_.gridSide=left;this.viewport_.gridInitialTimebase=tb;this.viewport_.gridTimebase=tb-
 (numIntervalsSinceStart+1)*this.viewport_.gridStep_;},storeLastMousePos_:function(e){this.lastMouseViewPos_=this.extractRelativeMousePosition_(e);},storeLastTouchPositions_:function(e){this.lastTouchViewPositions_=this.extractRelativeTouchPositions_(e);},extractRelativeMousePosition_:function(e){var canv=this.modelTrackContainer_.canvas;return{x:e.clientX-canv.offsetLeft,y:e.clientY-canv.offsetTop};},extractRelativeTouchPositions_:function(e){var canv=this.modelTrackContainer_.canvas;var touches=[];for(var i=0;i<e.touches.length;++i){touches.push({x:e.touches[i].clientX-canv.offsetLeft,y:e.touches[i].clientY-canv.offsetTop});}
 return touches;},storeInitialMouseDownPos_:function(e){var position=this.extractRelativeMousePosition_(e);this.mouseViewPosAtMouseDown_.x=position.x;this.mouseViewPosAtMouseDown_.y=position.y;},focusElements_:function(){this.$.hotkey_controller.childRequestsGeneralFocus(this);},storeInitialInteractionPositionsAndFocus_:function(e){this.storeInitialMouseDownPos_(e);this.storeLastMousePos_(e);this.focusElements_();},onBeginPanScan_:function(e){var vp=this.viewport_;this.viewportDisplayTransformAtMouseDown_=vp.currentDisplayTransform.clone();this.isPanningAndScanning_=true;this.storeInitialInteractionPositionsAndFocus_(e);e.preventDefault();},onUpdatePanScan_:function(e){if(!this.isPanningAndScanning_)
@@ -8932,18 +9044,16 @@
 return;promptEl.innerText='';this.addLine_(String.fromCharCode(187)+' '+command);try{var result=this.controller_.executeCommand(command);}catch(e){result=e.stack||e.stackTrace;}
 if(result instanceof tr.e.tquery.TQuery){result.ready().then(function(selection){this.addLine_(selection.length+' matches');this.controller_.brushingStateController.showScriptControlSelection(selection);}.bind(this));}else{this.addLine_(result);}
 promptEl.scrollIntoView();},addLine_:function(line){var historyEl=this.$.history;if(historyEl.innerText.length!==0)
-historyEl.innerText+='\n';historyEl.innerText+=line;},promptKeyPress:function(e){e.stopPropagation();},toggleVisibility:function(){var root=this.$.root;if(!this.visible){Polymer.dom(root).classList.remove('hidden');this._setFocused(true);}else{Polymer.dom(root).classList.add('hidden');this._setFocused(false);}},get hasFocus(){return this===document.activeElement;},get visible(){var root=this.$.root;return!Polymer.dom(root).classList.contains('hidden');},get controller(){return this.controller_;},set controller(c){this.controller_=c;}});'use strict';Polymer({is:'tr-ui-side-panel-container',ready:function(){this.activePanelContainer_=this.$.active_panel_container;this.tabStrip_=this.$.tab_strip;this.dragHandle_=this.$.side_panel_drag_handle;this.dragHandle_.horizontal=false;this.rangeOfInterest_=new tr.b.Range();this.brushingStateController_=undefined;this.onSelectionChanged_=this.onSelectionChanged_.bind(this);this.onModelChanged_=this.onModelChanged_.bind(this);},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_);this.brushingStateController_.removeEventListener('model-changed',this.onModelChanged_);}
+historyEl.innerText+='\n';historyEl.innerText+=line;},promptKeyPress:function(e){e.stopPropagation();},toggleVisibility:function(){var root=this.$.root;if(!this.visible){Polymer.dom(root).classList.remove('hidden');this._setFocused(true);}else{Polymer.dom(root).classList.add('hidden');this._setFocused(false);}},get hasFocus(){return this===document.activeElement;},get visible(){var root=this.$.root;return!Polymer.dom(root).classList.contains('hidden');},get controller(){return this.controller_;},set controller(c){this.controller_=c;}});'use strict';Polymer({is:'tr-ui-side-panel-container',ready:function(){this.activePanelContainer_=this.$.active_panel_container;this.tabStrip_=this.$.tab_strip;this.dragHandle_=this.$.side_panel_drag_handle;this.dragHandle_.horizontal=false;this.dragHandle_.target=this.activePanelContainer_;this.rangeOfInterest_=new tr.b.Range();this.brushingStateController_=undefined;this.onSelectionChanged_=this.onSelectionChanged_.bind(this);this.onModelChanged_=this.onModelChanged_.bind(this);},get brushingStateController(){return this.brushingStateController_;},set brushingStateController(brushingStateController){if(this.brushingStateController){this.brushingStateController_.removeEventListener('change',this.onSelectionChanged_);this.brushingStateController_.removeEventListener('model-changed',this.onModelChanged_);}
 this.brushingStateController_=brushingStateController;if(this.brushingStateController){this.brushingStateController_.addEventListener('change',this.onSelectionChanged_);this.brushingStateController_.addEventListener('model-changed',this.onModelChanged_);}},onSelectionChanged_:function(){if(this.activePanel)
-this.activePanel.selection=this.selection;},get model(){return this.brushingStateController_.model;},onModelChanged_:function(){this.activePanelType_=undefined;this.updateContents_();},get expanded(){this.hasAttribute('expanded');},get activePanel(){if(Polymer.dom(this.activePanelContainer_).children.length<2)
-return undefined;return this.activePanelContainer_.children[1];},get activePanel(){if(Polymer.dom(this.activePanelContainer_).children.length<2)
-return undefined;return Polymer.dom(this.activePanelContainer_).children[1];},set activePanelType(panelType){if(this.model===undefined)
+this.activePanel.selection=this.selection;},get model(){return this.brushingStateController_.model;},onModelChanged_:function(){this.activePanelType_=undefined;this.updateContents_();},get expanded(){this.hasAttribute('expanded');},get activePanel(){return this.activePanelContainer_.children[0];},get activePanelType(){return this.activePanelType_;},set activePanelType(panelType){if(this.model===undefined)
 throw new Error('Cannot activate panel without a model');var panel=undefined;if(panelType)
 panel=document.createElement(panelType);if(panel!==undefined&&!panel.supportsModel(this.model))
 throw new Error('Cannot activate panel: does not support this model');if(this.activePanelType){Polymer.dom(this.getLabelElementForPanelType_(this.activePanelType)).removeAttribute('selected');}
-Polymer.dom(this.activePanelContainer_).textContent='';if(this.activePanelType){this.getLabelElementForPanelType_(this.activePanelType).removeAttribute('selected');}
+if(this.activePanelType){this.getLabelElementForPanelType_(this.activePanelType).removeAttribute('selected');}
 if(this.activePanel)
 this.activePanelContainer_.removeChild(this.activePanel);if(panelType===undefined){Polymer.dom(this).removeAttribute('expanded');this.activePanelType_=undefined;return;}
-Polymer.dom(this.getLabelElementForPanelType_(panelType)).setAttribute('selected',true);Polymer.dom(this).setAttribute('expanded',true);Polymer.dom(this.activePanelContainer_).appendChild(panel);this.dragHandle_.target=panel;panel.rangeOfInterest=this.rangeOfInterest_;panel.selection=this.selection_;panel.model=this.model;this.activePanelType_=panelType;},getPanelTypeForConstructor_:function(constructor){for(var i=0;i<this.tabStrip_.children.length;i++){if(this.tabStrip_.children[i].panelType.constructor==constructor)
+Polymer.dom(this.getLabelElementForPanelType_(panelType)).setAttribute('selected',true);Polymer.dom(this).setAttribute('expanded',true);Polymer.dom(this.activePanelContainer_).appendChild(panel);panel.rangeOfInterest=this.rangeOfInterest_;panel.selection=this.selection_;panel.model=this.model;this.activePanelType_=panelType;},getPanelTypeForConstructor_:function(constructor){for(var i=0;i<this.tabStrip_.children.length;i++){if(this.tabStrip_.children[i].panelType.constructor==constructor)
 return this.tabStrip_.children[i].panelType;}},getLabelElementForPanelType_:function(panelType){for(var i=0;i<this.tabStrip_.children.length;i++){if(this.tabStrip_.children[i].panelType==panelType)
 return this.tabStrip_.children[i];}
 return undefined;},updateContents_:function(){var previouslyActivePanelType=this.activePanelType;Polymer.dom(this.tabStrip_).textContent='';var supportedPanelTypes=[];for(var panelTypeInfo of
@@ -8951,7 +9061,7 @@
 this.activePanelContainer_.removeChild(this.activePanel);this.removeAttribute('expanded');}
 Polymer.dom(this.tabStrip_).appendChild(labelEl);}
 if(previouslyActivePanelType&&supportedPanelTypes.indexOf(previouslyActivePanelType)!=-1){this.activePanelType=previouslyActivePanelType;Polymer.dom(this).setAttribute('expanded',true);}else{if(this.activePanel)
-Polymer.dom(this.activePanelContainer_).removeChild(this.activePanel);Polymer.dom(this.activePanelContainer_).textContent='';Polymer.dom(this).removeAttribute('expanded');}},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(range){if(range==undefined)
+Polymer.dom(this.activePanelContainer_).removeChild(this.activePanel);Polymer.dom(this).removeAttribute('expanded');}},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(range){if(range==undefined)
 throw new Error('Must not be undefined');this.rangeOfInterest_=range;if(this.activePanel)
 this.activePanel.rangeOfInterest=range;}});'use strict';Polymer({is:'tr-ui-timeline-view-help-overlay',ready:function(){var mod=tr.isMac?'cmd ':'ctrl';var spans=Polymer.dom(this.root).querySelectorAll('span.mod');for(var i=0;i<spans.length;i++)
 Polymer.dom(spans[i]).textContent=mod;}});'use strict';tr.exportTo('tr.v',function(){function GenericTable(items){if(items!==undefined)
@@ -8994,8 +9104,8 @@
 return;var totalsItem=new GenericTableViewTotalsItem();this.items_.forEach(function(item){var fieldValue=item[column.fieldName];if(fieldValue===undefined||fieldValue===null)
 return;totalsItem.values.push(fieldValue);});totalsItems[column.fieldName]=totalsItem;},this);return[totalsItems];},updateContents_:function(){var columns;if(this.items_!==undefined)
 columns=this.createColumns_();if(!columns){this.$.table.tableColumns=[];this.$.table.tableRows=[];this.$.table.footerRows=[];return;}
-this.$.table.tableColumns=columns;this.$.table.tableRows=this.items_;this.$.table.footerRows=this.createFooterRowsIfNeeded_(columns);this.$.table.rebuild();},get selectionMode(){return this.$.table.selectionMode;},set selectionMode(selectionMode){this.$.table.selectionMode=selectionMode;},get rowHighlightStyle(){return this.$.table.rowHighlightStyle;},set rowHighlightStyle(rowHighlightStyle){this.$.table.rowHighlightStyle=rowHighlightStyle;},get cellHighlightStyle(){return this.$.table.cellHighlightStyle;},set cellHighlightStyle(cellHighlightStyle){this.$.table.cellHighlightStyle=cellHighlightStyle;}});return{GenericTableViewTotalsItem:GenericTableViewTotalsItem,GenericTableViewColumnDescriptor:GenericTableViewColumnDescriptor};});'use strict';Polymer({is:'tr-ui-timeline-view-metadata-overlay',created:function(){this.metadata_=undefined;},get metadata(){return this.metadata_;},set metadata(metadata){this.metadata_=metadata;this.$.gtv.items=this.metadata_;}});'use strict';Polymer({is:'tr-v-ui-preferred-display-unit',ready:function(){this.preferredTimeDisplayMode_=undefined;},attached:function(){tr.v.Unit.didPreferredTimeDisplayUnitChange();},detached:function(){tr.v.Unit.didPreferredTimeDisplayUnitChange();},get preferredTimeDisplayMode(){return this.preferredTimeDisplayMode_;},set preferredTimeDisplayMode(v){if(this.preferredTimeDisplayMode_===v)
-return;this.preferredTimeDisplayMode_=v;tr.v.Unit.didPreferredTimeDisplayUnitChange();}});'use strict';Polymer({is:'tr-ui-timeline-view',attached:function(){this.async(function(){this.trackViewContainer_=Polymer.dom(this).querySelector('#track_view_container');if(!this.trackViewContainer_)
+this.$.table.tableColumns=columns;this.$.table.tableRows=this.items_;this.$.table.footerRows=this.createFooterRowsIfNeeded_(columns);this.$.table.rebuild();},get selectionMode(){return this.$.table.selectionMode;},set selectionMode(selectionMode){this.$.table.selectionMode=selectionMode;},get rowHighlightStyle(){return this.$.table.rowHighlightStyle;},set rowHighlightStyle(rowHighlightStyle){this.$.table.rowHighlightStyle=rowHighlightStyle;},get cellHighlightStyle(){return this.$.table.cellHighlightStyle;},set cellHighlightStyle(cellHighlightStyle){this.$.table.cellHighlightStyle=cellHighlightStyle;}});return{GenericTableViewTotalsItem:GenericTableViewTotalsItem,GenericTableViewColumnDescriptor:GenericTableViewColumnDescriptor};});'use strict';Polymer({is:'tr-ui-timeline-view-metadata-overlay',created:function(){this.metadata_=undefined;},get metadata(){return this.metadata_;},set metadata(metadata){this.metadata_=metadata;this.$.gtv.items=this.metadata_;}});'use strict';Polymer({is:'tr-v-ui-preferred-display-unit',ready:function(){this.preferredTimeDisplayMode_=undefined;},attached:function(){tr.b.Unit.didPreferredTimeDisplayUnitChange();},detached:function(){tr.b.Unit.didPreferredTimeDisplayUnitChange();},get preferredTimeDisplayMode(){return this.preferredTimeDisplayMode_;},set preferredTimeDisplayMode(v){if(this.preferredTimeDisplayMode_===v)
+return;this.preferredTimeDisplayMode_=v;tr.b.Unit.didPreferredTimeDisplayUnitChange();}});'use strict';Polymer({is:'tr-ui-timeline-view',attached:function(){this.async(function(){this.trackViewContainer_=Polymer.dom(this).querySelector('#track_view_container');if(!this.trackViewContainer_)
 console.error('missing trackviewContainer');});},ready:function(){this.tabIndex=0;this.titleEl_=this.$.title;this.leftControlsEl_=this.$.left_controls;this.rightControlsEl_=this.$.right_controls;this.collapsingControlsEl_=this.$.collapsing_controls;this.sidePanelContainer_=this.$.side_panel_container;this.brushingStateController_=new tr.c.BrushingStateController(this);this.findCtl_=this.$.view_find_control;this.findCtl_.controller=new tr.ui.FindController(this.brushingStateController_);this.scriptingCtl_=document.createElement('tr-ui-scripting-control');this.scriptingCtl_.controller=new tr.c.ScriptingController(this.brushingStateController_);this.sidePanelContainer_.brushingStateController=this.brushingStateController_;if(window.tr.metrics&&window.tr.metrics.sh&&window.tr.metrics.sh.SystemHealthMetric){this.railScoreSpan_=document.createElement('tr-metrics-ui-sh-system-health-span');Polymer.dom(this.rightControls).appendChild(this.railScoreSpan_);}else{this.railScoreSpan_=undefined;}
 this.optionsDropdown_=this.$.view_options_dropdown;Polymer.dom(this.optionsDropdown_.iconElement).textContent='View Options';this.showFlowEvents_=false;Polymer.dom(this.optionsDropdown_).appendChild(tr.ui.b.createCheckBox(this,'showFlowEvents','tr.ui.TimelineView.showFlowEvents',false,'Flow events'));this.highlightVSync_=false;this.highlightVSyncCheckbox_=tr.ui.b.createCheckBox(this,'highlightVSync','tr.ui.TimelineView.highlightVSync',false,'Highlight VSync');Polymer.dom(this.optionsDropdown_).appendChild(this.highlightVSyncCheckbox_);this.initMetadataButton_();this.initConsoleButton_();this.initHelpButton_();Polymer.dom(this.collapsingControls).appendChild(this.scriptingCtl_);this.dragEl_=this.$.drag_handle;this.analysisEl_=this.$.analysis;this.analysisEl_.brushingStateController=this.brushingStateController_;this.addEventListener('requestSelectionChange',function(e){var sc=this.brushingStateController_;sc.changeSelectionFromRequestSelectionChangeEvent(e.selection);}.bind(this));this.onViewportChanged_=this.onViewportChanged_.bind(this);this.bindKeyListeners_();this.dragEl_.target=this.analysisEl_;},get globalMode(){return this.hotkeyController.globalMode;},set globalMode(globalMode){globalMode=!!globalMode;this.brushingStateController_.historyEnabled=globalMode;this.hotkeyController.globalMode=globalMode;},get hotkeyController(){return this.$.hkc;},updateDocumentFavicon:function(){var hue;if(!this.model)
 hue='blue';else
@@ -9041,28 +9151,79 @@
 return;this.subRowsBuilt_=true;var groupingKeyFunc=this.getCurrentGroupingKeyFunc_();if(groupingKeyFunc===undefined){this.subRows_=undefined;return;}
 var dataByKey={};var hasValues=false;this.data_.forEach(function(datum){var key=groupingKeyFunc(datum);hasValues=hasValues||(key!==undefined);if(dataByKey[key]===undefined)
 dataByKey[key]=[];dataByKey[key].push(datum);});if(!hasValues){this.subRows_=undefined;return;}
-this.subRows_=[];for(var key in dataByKey){var row=new Row(key,dataByKey[key],this.groupingKeyFuncs_.slice(1),this.rowStatsConstructor_);this.subRows_.push(row);}},get isExpanded(){return(this.subRows&&(this.subRows.length>0)&&(this.subRows.length<5));},get subRows(){this.rebuildSubRowsIfNeeded_();return this.subRows_;}};Polymer({is:'tr-ui-b-grouping-table',created:function(){this.dataToGroup_=undefined;this.groupBy_=undefined;this.rowStatsConstructor_=undefined;},get tableColumns(){return this.$.table.tableColumns;},set tableColumns(tableColumns){this.$.table.tableColumns=tableColumns;},get tableRows(){return this.$.table.tableRows;},get sortColumnIndex(){return this.$.table.sortColumnIndex;},set sortColumnIndex(sortColumnIndex){this.$.table.sortColumnIndex=sortColumnIndex;},get sortDescending(){return this.$.table.sortDescending;},set sortDescending(sortDescending){this.$.table.sortDescending=sortDescending;},get selectionMode(){return this.$.table.selectionMode;},set selectionMode(selectionMode){this.$.table.selectionMode=selectionMode;},get rowHighlightStyle(){return this.$.table.rowHighlightStyle;},set rowHighlightStyle(rowHighlightStyle){this.$.table.rowHighlightStyle=rowHighlightStyle;},get cellHighlightStyle(){return this.$.table.cellHighlightStyle;},set cellHighlightStyle(cellHighlightStyle){this.$.table.cellHighlightStyle=cellHighlightStyle;},get selectedColumnIndex(){return this.$.table.selectedColumnIndex;},set selectedColumnIndex(selectedColumnIndex){this.$.table.selectedColumnIndex=selectedColumnIndex;},get selectedTableRow(){return this.$.table.selectedTableRow;},set selectedTableRow(selectedTableRow){this.$.table.selectedTableRow=selectedTableRow;},get groupBy(){return this.groupBy_;},set groupBy(groupBy){this.groupBy_=groupBy;this.updateContents_();},get dataToGroup(){return this.dataToGroup_;},set dataToGroup(dataToGroup){this.dataToGroup_=dataToGroup;this.updateContents_();},get rowStatsConstructor(){return this.rowStatsConstructor_;},set rowStatsConstructor(rowStatsConstructor){this.rowStatsConstructor_=rowStatsConstructor;this.updateContents_();},rebuild:function(){this.$.table.rebuild();},updateContents_:function(){var groupBy=this.groupBy_||[];var dataToGroup=this.dataToGroup_||[];var rowStatsConstructor=this.rowStatsConstructor_||function(){};var superRow=new Row('',dataToGroup,groupBy,rowStatsConstructor);this.$.table.tableRows=superRow.subRows||[];}});return{};});'use strict';tr.exportTo('tr.ui.b',function(){var THIS_DOC=document._currentScript.ownerDocument;Polymer({is:'tr-ui-b-grouping-table-groupby-picker',created:function(){this.needsInit_=true;this.defaultGroupKeys_=undefined;this.possibleGroups_=[];this.settingsKey_=[];this.currentGroupKeys_=undefined;this.dragging_=false;},get defaultGroupKeys(){return this.defaultGroupKeys_;},set defaultGroupKeys(defaultGroupKeys){if(!this.needsInit_)
-throw new Error('Already initialized.');this.defaultGroupKeys_=defaultGroupKeys;this.maybeInit_();},get possibleGroups(){return this.possibleGroups_;},set possibleGroups(possibleGroups){if(!this.needsInit_)
-throw new Error('Already initialized.');this.possibleGroups_=possibleGroups;this.maybeInit_();},get settingsKey(){return this.settingsKey_;},set settingsKey(settingsKey){if(!this.needsInit_)
-throw new Error('Already initialized.');this.settingsKey_=settingsKey;this.maybeInit_();},maybeInit_:function(){if(!this.needsInit_)
-return;if(this.settingsKey_===undefined)
-return;if(this.defaultGroupKeys_===undefined)
-return;if(this.possibleGroups_===undefined)
-return;this.needsInit_=false;var addGroupEl=Polymer.dom(this.root).querySelector('#add-group');Polymer.dom(addGroupEl.iconElement).textContent='Add another...';this.currentGroupKeys=tr.b.Settings.get(this.settingsKey_,this.defaultGroupKeys_);},get currentGroupKeys(){return this.currentGroupKeys_;},get currentGroups(){var groupsByKey={};this.possibleGroups_.forEach(function(group){groupsByKey[group.key]=group;});return this.currentGroupKeys_.map(function(groupKey){return groupsByKey[groupKey];});},set currentGroupKeys(currentGroupKeys){if(this.currentGroupKeys_===currentGroupKeys)
+this.subRows_=[];for(var key in dataByKey){var row=new Row(key,dataByKey[key],this.groupingKeyFuncs_.slice(1),this.rowStatsConstructor_);this.subRows_.push(row);}},get isExpanded(){return(this.subRows&&(this.subRows.length>0)&&(this.subRows.length<5));},get subRows(){this.rebuildSubRowsIfNeeded_();return this.subRows_;}};Polymer({is:'tr-ui-b-grouping-table',created:function(){this.dataToGroup_=undefined;this.groupBy_=undefined;this.rowStatsConstructor_=undefined;},get tableColumns(){return this.$.table.tableColumns;},set tableColumns(tableColumns){this.$.table.tableColumns=tableColumns;},get tableRows(){return this.$.table.tableRows;},get sortColumnIndex(){return this.$.table.sortColumnIndex;},set sortColumnIndex(sortColumnIndex){this.$.table.sortColumnIndex=sortColumnIndex;},get sortDescending(){return this.$.table.sortDescending;},set sortDescending(sortDescending){this.$.table.sortDescending=sortDescending;},get selectionMode(){return this.$.table.selectionMode;},set selectionMode(selectionMode){this.$.table.selectionMode=selectionMode;},get rowHighlightStyle(){return this.$.table.rowHighlightStyle;},set rowHighlightStyle(rowHighlightStyle){this.$.table.rowHighlightStyle=rowHighlightStyle;},get cellHighlightStyle(){return this.$.table.cellHighlightStyle;},set cellHighlightStyle(cellHighlightStyle){this.$.table.cellHighlightStyle=cellHighlightStyle;},get selectedColumnIndex(){return this.$.table.selectedColumnIndex;},set selectedColumnIndex(selectedColumnIndex){this.$.table.selectedColumnIndex=selectedColumnIndex;},get selectedTableRow(){return this.$.table.selectedTableRow;},set selectedTableRow(selectedTableRow){this.$.table.selectedTableRow=selectedTableRow;},get groupBy(){return this.groupBy_;},set groupBy(groupBy){this.groupBy_=groupBy;this.updateContents_();},get dataToGroup(){return this.dataToGroup_;},set dataToGroup(dataToGroup){this.dataToGroup_=dataToGroup;this.updateContents_();},get rowStatsConstructor(){return this.rowStatsConstructor_;},set rowStatsConstructor(rowStatsConstructor){this.rowStatsConstructor_=rowStatsConstructor;this.updateContents_();},rebuild:function(){this.$.table.rebuild();},updateContents_:function(){var groupBy=this.groupBy_||[];var dataToGroup=this.dataToGroup_||[];var rowStatsConstructor=this.rowStatsConstructor_||function(){};var superRow=new Row('',dataToGroup,groupBy,rowStatsConstructor);this.$.table.tableRows=superRow.subRows||[];}});return{};});'use strict';tr.exportTo('tr.ui.b',function(){var THIS_DOC=document.currentScript.ownerDocument;Polymer({is:'tr-ui-b-grouping-table-groupby-picker-group',created:function(){this.picker_=undefined;this.group_=undefined;},ready:function(){this.setAttribute('draggable',true);this.addEventListener('mouseover',this.onMouseOver_.bind(this));this.addEventListener('mouseleave',this.onMouseLeave_.bind(this));this.addEventListener('dragstart',this.onDragStart_.bind(this));this.addEventListener('dragover',this.onDragOver_.bind(this));},set group(g){this.group_=g;this.$.key.textContent=g.label;},get key(){return this.group_.key;},get picker(){return this.picker_;},set picker(picker){this.picker_=picker;this.vertical=picker.vertical;},get vertical(){return this.getAttribute('vertical');},set vertical(vertical){if(vertical)
+this.setAttribute('vertical',true);else
+this.removeAttribute('vertical');},onMouseOver_:function(event){this.$.remove.style.visibility='visible';},onMouseLeave_:function(event){this.$.remove.style.visibility='hidden';},onDragStart_:function(event){event.dataTransfer.effectAllowed='move';this.setAttribute('dragging',true);},onDragOver_:function(event){event.preventDefault();event.dataTransfer.dropEffect='move';this.picker.clearDragIndicators_();if(this.picker.shouldDropBefore_(this,event)){this.classList.add('drop-before');if(this.previousElementSibling)
+this.previousElementSibling.classList.add('drop-after');}else{this.classList.add('drop-after');if(this.nextElementSibling)
+this.nextElementSibling.classList.add('drop-before');}
+return false;},remove_:function(event){var newKeys=this.picker.currentGroupKeys.slice();newKeys.splice(newKeys.indexOf(this.key),1);this.picker.currentGroupKeys=newKeys;}});Polymer({is:'tr-ui-b-grouping-table-groupby-picker',created:function(){this.currentGroupKeys_=undefined;this.defaultGroupKeys_=undefined;this.possibleGroups_=[];this.settingsKey_=[];},ready:function(){Polymer.dom(this.$.add_group.iconElement).textContent='Add another...';this.addEventListener('dragend',this.onDragEnd_.bind(this));this.addEventListener('drop',this.onDrop_.bind(this));},get defaultGroupKeys(){return this.defaultGroupKeys_;},set vertical(vertical){if(vertical)
+this.setAttribute('vertical',true);else
+this.removeAttribute('vertical');for(var groupEl of this.$.groups.childNodes)
+groupEl.vertical=vertical;},get vertical(){return this.getAttribute('vertical');},set defaultGroupKeys(defaultGroupKeys){this.defaultGroupKeys_=defaultGroupKeys;this.maybeInit_();},get possibleGroups(){return this.possibleGroups_;},set possibleGroups(possibleGroups){this.possibleGroups_=possibleGroups;this.maybeInit_();},get settingsKey(){return this.settingsKey_;},set settingsKey(settingsKey){this.settingsKey_=settingsKey;this.maybeInit_();},maybeInit_:function(){if(!this.settingsKey_||!this.defaultGroupKeys_||!this.possibleGroups_){return;}
+this.currentGroupKeys=tr.b.Settings.get(this.settingsKey_,this.defaultGroupKeys_);},get currentGroupKeys(){return this.currentGroupKeys_;},get currentGroups(){var groupsByKey={};for(var group of this.possibleGroups_)
+groupsByKey[group.key]=group;return this.currentGroupKeys.map(groupKey=>groupsByKey[groupKey]);},set currentGroupKeys(currentGroupKeys){if(this.currentGroupKeys_===currentGroupKeys)
 return;if(!(currentGroupKeys instanceof Array))
-throw new Error('Must be array');this.currentGroupKeys_=currentGroupKeys;this.updateGroups_();tr.b.Settings.set(this.settingsKey_,this.currentGroupKeys_);var e=new tr.b.Event('current-groups-changed');this.dispatchEvent(e);},updateGroups_:function(){var groupsEl=Polymer.dom(this.root).querySelector('groups');var addGroupEl=Polymer.dom(this.root).querySelector('#add-group');Polymer.dom(groupsEl).textContent='';Polymer.dom(addGroupEl).textContent='';var unusedGroups={};var groupsByKey={};this.possibleGroups_.forEach(function(group){unusedGroups[group.key]=group;groupsByKey[group.key]=group;});this.currentGroupKeys_.forEach(function(key){delete unusedGroups[key];});var groupTemplateEl=Polymer.dom(THIS_DOC).querySelector('#tr-ui-b-grouping-table-groupby-picker-group-template');this.currentGroupKeys_.forEach(function(key,index){var group=groupsByKey[key];var groupEl=document.createElement('group');groupEl.groupKey=key;Polymer.dom(groupEl).appendChild(document.importNode(groupTemplateEl.content,true));Polymer.dom(Polymer.dom(groupEl).querySelector('#key')).textContent=group.label;Polymer.dom(groupsEl).appendChild(groupEl);this.configureRemoveButtonForGroup_(groupEl);this.configureDragAndDropForGroup_(groupEl);},this);tr.b.iterItems(unusedGroups,function(key,group){var groupEl=document.createElement('possible-group');Polymer.dom(groupEl).textContent=group.label;groupEl.addEventListener('click',function(){var newKeys=this.currentGroupKeys.slice();newKeys.push(key);this.currentGroupKeys=newKeys;addGroupEl.close();}.bind(this));Polymer.dom(addGroupEl).appendChild(groupEl);},this);if(tr.b.dictionaryLength(unusedGroups)==0){addGroupEl.style.display='none';}else{addGroupEl.style.display='';}},configureRemoveButtonForGroup_:function(groupEl){var removeEl=Polymer.dom(groupEl).querySelector('#remove');removeEl.addEventListener('click',function(){var newKeys=this.currentGroupKeys.slice();var i=newKeys.indexOf(groupEl.groupKey);newKeys.splice(i,1);this.currentGroupKeys=newKeys;}.bind(this));groupEl.addEventListener('mouseenter',function(){Polymer.dom(removeEl).setAttribute('hovered',true);});groupEl.addEventListener('mouseleave',function(){Polymer.dom(removeEl).removeAttribute('hovered');});},configureDragAndDropForGroup_:function(groupEl){var groupsEl=groupEl.parentElement;Polymer.dom(groupEl).setAttribute('draggable',true);groupEl.addEventListener('dragstart',function(e){e.dataTransfer.setData('groupKey',groupEl.groupKey);Polymer.dom(Polymer.dom(groupEl).querySelector('#remove')).removeAttribute('hovered');Polymer.dom(groupEl).classList.add('dragging');this.dragging_=true;}.bind(this));groupEl.addEventListener('dragend',function(e){console.log(e.type,groupEl.groupKey);for(var i=0;i<groupsEl.children.length;i++)
-Polymer.dom(groupsEl.children[i]).classList.remove('drop-targeted');Polymer.dom(groupEl).classList.remove('dragging');this.dragging_=false;}.bind(this));groupEl.addEventListener('dragenter',function(e){if(!this.dragging_)
-return;Polymer.dom(groupEl).classList.add('drop-targeted');if(this.dragging_)
-e.preventDefault();}.bind(this));groupEl.addEventListener('dragleave',function(e){if(!this.dragging_)
-return;Polymer.dom(groupEl).classList.remove('drop-targeted');e.preventDefault();}.bind(this));groupEl.addEventListener('dragover',function(e){if(!this.dragging_)
-return;e.preventDefault();Polymer.dom(groupEl).classList.add('drop-targeted');}.bind(this));groupEl.addEventListener('drop',function(e){if(!this.dragging_)
-return;var srcKey=e.dataTransfer.getData('groupKey');var dstKey=groupEl.groupKey;if(srcKey===dstKey)
-return;var newKeys=this.currentGroupKeys_.slice();var srcIndex=this.currentGroupKeys_.indexOf(srcKey);newKeys.splice(srcIndex,1);var dstIndex=this.currentGroupKeys_.indexOf(dstKey);newKeys.splice(dstIndex,0,srcKey);this.currentGroupKeys=newKeys;e.dataTransfer.clearData();e.preventDefault();e.stopPropagation();}.bind(this));}});return{};});'use strict';(function(){Polymer({is:'tr-ui-sp-file-size-stats-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.model_=undefined;this.selection_=new tr.model.EventSet();this.$.picker.settingsKey='tr-ui-sp-file-size-stats-side-panel-picker';this.$.picker.possibleGroups=[{key:'phase',label:'Event Type',dataFn:function(eventStat){return eventStat.phase;}},{key:'category',label:'Category',dataFn:function(eventStat){return eventStat.category;}},{key:'title',label:'Title',dataFn:function(eventStat){return eventStat.title;}}];this.$.picker.defaultGroupKeys=['phase','title'];this.$.picker.addEventListener('current-groups-changed',this.updateContents_.bind(this));},get textLabel(){return'File Size Stats';},supportsModel:function(m){if(!m){return{supported:false,reason:'No stats were collected for this file.'};}
+throw new Error('Must be array');var availableGroupKeys=new Set();for(var group of this.possibleGroups_)
+availableGroupKeys.add(group.key);this.currentGroupKeys_=currentGroupKeys.filter(k=>availableGroupKeys.has(k));this.updateGroups_();tr.b.Settings.set(this.settingsKey_,this.currentGroupKeys_);this.dispatchEvent(new tr.b.Event('current-groups-changed'));},get draggingGroupElement(){for(var group of this.$.groups.children)
+if(group.getAttribute('dragging'))
+return group;return undefined;},shouldDropBefore_:function(groupEl,event){var dragBoxRect=this.draggingGroupElement.getBoundingClientRect();var dropBoxRect=groupEl.getBoundingClientRect();var dragVertRange=tr.b.Range.fromExplicitRange(dragBoxRect.top,dragBoxRect.bottom);var dropVertRange=tr.b.Range.fromExplicitRange(dropBoxRect.top,dropBoxRect.bottom);if(dragVertRange.intersectsRangeInclusive(dropVertRange))
+return event.clientX<((dropBoxRect.left+dropBoxRect.right)/2);return event.clientY<((dropBoxRect.top+dropBoxRect.bottom)/2);},clearDragIndicators_:function(){for(var groupEl of this.$.groups.children){groupEl.classList.remove('drop-before');groupEl.classList.remove('drop-after');}},onDragEnd_:function(event){this.clearDragIndicators_();for(var groupEl of this.$.groups.children)
+groupEl.removeAttribute('dragging');},onDrop_:function(event){event.stopPropagation();var draggingGroupEl=this.draggingGroupElement;var dropBeforeEl=undefined;var dropAfterEl=undefined;for(var groupEl of this.$.groups.children){if(groupEl.classList.contains('drop-before')){dropBeforeEl=groupEl;break;}
+if(groupEl.classList.contains('drop-after')){dropAfterEl=groupEl;break;}}
+if(!dropBeforeEl&&!dropAfterEl)
+return;this.$.groups.removeChild(draggingGroupEl);var lastGroupEl=this.$.groups.children[this.$.groups.children.length-1];if(dropBeforeEl)
+this.$.groups.insertBefore(draggingGroupEl,dropBeforeEl);else if(dropAfterEl===lastGroupEl)
+this.$.groups.appendChild(draggingGroupEl);else
+this.$.groups.insertBefore(draggingGroupEl,dropAfterEl.nextSibling);var currentGroupKeys=[];for(var group of this.$.groups.children)
+currentGroupKeys.push(group.key);this.currentGroupKeys=currentGroupKeys;return false;},updateGroups_:function(){Polymer.dom(this.$.groups).textContent='';Polymer.dom(this.$.add_group).textContent='';var unusedGroups={};var groupsByKey={};for(var group of this.possibleGroups_){unusedGroups[group.key]=group;groupsByKey[group.key]=group;}
+for(var key of this.currentGroupKeys_)
+delete unusedGroups[key];for(var key of this.currentGroupKeys_){var group=groupsByKey[key];var groupEl=document.createElement('tr-ui-b-grouping-table-groupby-picker-group');groupEl.picker=this;groupEl.group=group;Polymer.dom(this.$.groups).appendChild(groupEl);}
+tr.b.iterItems(unusedGroups,function(key,group){var groupEl=document.createElement('possible-group');Polymer.dom(groupEl).textContent=group.label;groupEl.addEventListener('click',function(){var newKeys=this.currentGroupKeys.slice();newKeys.push(key);this.currentGroupKeys=newKeys;this.$.add_group.close();}.bind(this));Polymer.dom(this.$.add_group).appendChild(groupEl);},this);if(tr.b.dictionaryLength(unusedGroups)==0){this.$.add_group.style.display='none';}else{this.$.add_group.style.display='';}}});return{};});'use strict';(function(){Polymer({is:'tr-ui-sp-file-size-stats-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.model_=undefined;this.selection_=new tr.model.EventSet();this.$.picker.settingsKey='tr-ui-sp-file-size-stats-side-panel-picker';this.$.picker.possibleGroups=[{key:'phase',label:'Event Type',dataFn:function(eventStat){return eventStat.phase;}},{key:'category',label:'Category',dataFn:function(eventStat){return eventStat.category;}},{key:'title',label:'Title',dataFn:function(eventStat){return eventStat.title;}}];this.$.picker.defaultGroupKeys=['phase','title'];this.$.picker.addEventListener('current-groups-changed',this.updateContents_.bind(this));},get textLabel(){return'File Size Stats';},supportsModel:function(m){if(!m){return{supported:false,reason:'No stats were collected for this file.'};}
 if(m.stats.allTraceEventStats.length===0){return{supported:false,reason:'No stats were collected for this file.'};}
-return{supported:true};},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;},createColumns_:function(stats){var columns=[{title:'Title',value:function(row){var titleEl=document.createElement('span');Polymer.dom(titleEl).textContent=row.title;titleEl.style.textOverflow='ellipsis';return titleEl;},cmp:function(a,b){return a.title.localeCompare(b.title);},width:'400px'},{title:'Num Events',align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value:function(row){return row.rowStats.numEvents;},cmp:function(a,b){return a.rowStats.numEvents-b.rowStats.numEvents;},width:'80px'}];if(stats&&stats.hasEventSizesinBytes){columns.push({title:'Bytes',align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value:function(row){var value=new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes,row.rowStats.totalEventSizeinBytes);var spanEl=tr.v.ui.createScalarSpan(value);return spanEl;},cmp:function(a,b){return a.rowStats.totalEventSizeinBytes-
+return{supported:true};},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(rangeOfInterest){this.rangeOfInterest_=rangeOfInterest;},get selection(){return this.selection_;},set selection(selection){this.selection_=selection;},createColumns_:function(stats){var columns=[{title:'Title',value:function(row){var titleEl=document.createElement('span');Polymer.dom(titleEl).textContent=row.title;titleEl.style.textOverflow='ellipsis';return titleEl;},cmp:function(a,b){return a.title.localeCompare(b.title);},width:'400px'},{title:'Num Events',align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value:function(row){return row.rowStats.numEvents;},cmp:function(a,b){return a.rowStats.numEvents-b.rowStats.numEvents;},width:'80px'}];if(stats&&stats.hasEventSizesinBytes){columns.push({title:'Bytes',align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value:function(row){var value=new tr.v.ScalarNumeric(tr.b.Unit.byName.sizeInBytes,row.rowStats.totalEventSizeinBytes);var spanEl=tr.v.ui.createScalarSpan(value);return spanEl;},cmp:function(a,b){return a.rowStats.totalEventSizeinBytes-
 b.rowStats.totalEventSizeinBytes;},width:'80px'});}
 return columns;},updateContents_:function(){var table=this.$.table;var columns=this.createColumns_(this.model.stats);table.rowStatsConstructor=function ModelStatsRowStats(row){var sum=tr.b.Statistics.sum(row.data,function(x){return x.numEvents;});var totalEventSizeinBytes=tr.b.Statistics.sum(row.data,function(x){return x.totalEventSizeinBytes;});return{numEvents:sum,totalEventSizeinBytes:totalEventSizeinBytes};};table.tableColumns=columns;table.sortColumnIndex=1;table.sortDescending=true;table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;table.groupBy=this.$.picker.currentGroups.map(function(group){return group.dataFn;});if(!this.model){table.dataToGroup=[];}else{table.dataToGroup=this.model.stats.allTraceEventStats;}
-this.$.table.rebuild();}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-sp-file-size-stats-side-panel');});})();'use strict';tr.exportTo('tr.ui.b',function(){var ColorScheme=tr.b.ColorScheme;var ChartBase2DBrushX=tr.ui.b.ChartBase2DBrushX;var getColorOfKey=tr.ui.b.getColorOfKey;var BarChart=tr.ui.b.define('bar-chart',ChartBase2DBrushX);BarChart.prototype={__proto__:ChartBase2DBrushX.prototype,decorate:function(){ChartBase2DBrushX.prototype.decorate.call(this);Polymer.dom(this).classList.add('bar-chart');this.xCushion_=1;this.isStacked_=false;},set isStacked(stacked){this.isStacked_=true;this.updateContents_();},get isStacked(){return this.isStacked_;},isDatumFieldSeries_:function(fieldName){return fieldName!='x';},getXForDatum_:function(datum,index){return datum.x;},updateScales_:function(){if(this.data_.length===0)
+this.$.table.rebuild();}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-sp-file-size-stats-side-panel');});})();'use strict';tr.exportTo('tr.mre',function(){var FunctionRegistry={allFunctions_:[],allFunctionsByName_:{},get allFunctions(){return this.allFunctions_;},get allFunctionsByName(){return this.allFunctionsByName_;}};FunctionRegistry.getFunction=function(name){return this.allFunctionsByName_[name];};FunctionRegistry.register=function(func){if(func.name==='')
+throw new Error('Registered functions must not be anonymous');if(this.allFunctionsByName[func.name]!==undefined)
+throw new Error('Function named '+func.name+'is already registered.');this.allFunctionsByName[func.name]=func;this.allFunctions.push(func);};function ModuleToLoad(href,filename){if((href!==undefined)?(filename!==undefined):(filename===undefined)){throw new Error('ModuleToLoad must specify exactly one of href or '+'filename');}
+this.href=href;this.filename=filename;}
+ModuleToLoad.prototype={asDict:function(){if(this.href!==undefined)
+return{'href':this.href};return{'filename':this.filename};},toString:function(){if(this.href!==undefined)
+return'ModuleToLoad(href="'+this.href+'")';return'ModuleToLoad(filename="'+this.filename+'")';}};ModuleToLoad.fromDict=function(moduleDict){return new ModuleToLoad(moduleDict.href,moduleDict.filename);};function FunctionHandle(modulesToLoad,functionName,opt_options){if(!(modulesToLoad instanceof Array))
+throw new Error('modulesToLoad in FunctionHandle must be an array');if(typeof(functionName)!=='string')
+throw new Error('functionName in FunctionHandle must be a string');this.modulesToLoad=modulesToLoad;this.functionName=functionName;this.options_=opt_options;};FunctionHandle.prototype={get options(){return this.options_;},asDict:function(){return{'modules_to_load':this.modulesToLoad.map(function(m){return m.asDict();}),'function_name':this.functionName,'options':this.options_};},asUserFriendlyString:function(){var parts=this.modulesToLoad.map(function(mtl){return mtl.filename});parts.push(this.functionName);parts.push(JSON.stringify(this.options_));return parts.join(',');},hasHrefs:function(){for(var module in this.modulesToLoad){if(this.modulesToLoad[module].href!==undefined){return true;}}
+return false;},load:function(){if(this.hasHrefs()){var err=new Error('FunctionHandle named '+this.functionName+' specifies hrefs, which cannot be loaded.');err.name='FunctionLoadingError';throw err;}
+for(var module in this.modulesToLoad){var filename=this.modulesToLoad[module].filename;try{HTMLImportsLoader.loadHTMLFile(filename);}catch(err){err.name='FunctionLoadingError';throw err;}}
+var func=FunctionRegistry.getFunction(this.functionName);if(func===undefined){var err=new Error('No registered function named '+this.functionName);err.name='FunctionNotDefinedError';throw err;}
+return func;},toString:function(){var modulesToLoadStr=this.modulesToLoad.map(function(module){return module.toString();});return'FunctionHandle(modulesToLoad=['+modulesToLoadStr+'], '+'functionName="'+this.functionName+'", options="'+
+JSON.stringify(this.options_)+'")';}};FunctionHandle.loadFromFilename_=function(filename){try{var numFunctionsBefore=FunctionRegistry.allFunctions.length;HTMLImportsLoader.loadHTMLFile(filename);}catch(err){err.name='FunctionLoadingError';throw err;}
+var numFunctionsNow=FunctionRegistry.allFunctions.length;if(numFunctionsNow!==(numFunctionsBefore+1)){var err=new Error(filename+" didn't call FunctionRegistry.register");err.name='FunctionNotDefinedError';throw err;}
+return FunctionRegistry.allFunctions[numFunctionsNow-1];};FunctionHandle.fromDict=function(handleDict){var options=handleDict.options;if(handleDict.modules_to_load!==undefined){var modulesToLoad=handleDict.modules_to_load.map(function(module){return ModuleToLoad.fromDict(module);});}
+return new FunctionHandle(modulesToLoad,handleDict.function_name,options);};return{FunctionHandle:FunctionHandle,ModuleToLoad:ModuleToLoad,FunctionRegistry:FunctionRegistry};});'use strict';tr.exportTo('tr.metrics',function(){function runMetrics(model,options){if(options===undefined)
+throw new Error('Options are required.');var metricNames=options.metrics;if(!metricNames)
+throw new Error('Metric names should be specified.');var values=new tr.v.ValueSet();for(var metricName of metricNames){var metric=tr.metrics.MetricRegistry.findTypeInfoWithName(metricName);if(metric===undefined)
+throw new Error('"'+metricName+'" is not a registered metric.');metric.constructor(values,model,options);}
+return values;}
+function addIterationInfo(values,model){var iterationInfo=new tr.v.d.IterationInfo();for(var metadata of model.metadata){if(!metadata.value)
+continue;if(metadata.value['iteration-info'])
+iterationInfo.addInfo(metadata.value['iteration-info']);if(metadata.value['os-version'])
+iterationInfo.addInfo(metadata.value);}
+values.map(v=>iterationInfo.addToValue(v));}
+function metricMapFunction(result,model,options){var values=runMetrics(model,options);addIterationInfo(values,model);result.addPair('histograms',values.valueDicts);var scalarDicts=[];for(var value of values){for(var[statName,scalar]of value.statisticsScalars){scalarDicts.push({name:value.name+'_'+statName,numeric:scalar.asDict(),description:value.description,});}}
+result.addPair('scalars',scalarDicts);}
+tr.mre.FunctionRegistry.register(metricMapFunction);return{metricMapFunction:metricMapFunction,runMetrics:runMetrics};});'use strict';tr.exportTo('tr.mre',function(){function Failure(job,functionHandleString,traceCanonicalUrl,failureTypeName,description,stack){this.job=job;this.functionHandleString=functionHandleString;this.traceCanonicalUrl=traceCanonicalUrl;this.failureTypeName=failureTypeName;this.description=description;this.stack=stack;}
+Failure.prototype={asDict:function(){return{function_handle_string:this.functionHandleString,trace_canonical_url:this.traceCanonicalUrl,type:this.failureTypeName,description:this.description,stack:this.stack};}};Failure.fromDict=function(failureDict){return new Failure(undefined,failureDict.function_handle_string,failureDict.trace_canonical_url,failureDict.type,failureDict.description,failureDict.stack);};return{Failure:Failure};});'use strict';tr.exportTo('tr.mre',function(){class MreResult{constructor(failures,pairs){if(failures===undefined)
+failures=[];if(pairs===undefined)
+pairs={};this.failures=failures;this.pairs=pairs;}
+addFailure(failure){this.failures.push(failure);}
+addPair(key,value){if(key in this.pairs)
+throw new Error('Key '+key+' already exists in result.');this.pairs[key]=value;}
+asDict(){var d={pairs:this.pairs};if(this.failures)
+d.failures=this.failures.map(function(f){return f.asDict();});return d;}
+hadFailures(){return this.failures.length>0;}
+static fromDict(resultDict){if(resultDict.failures!==undefined)
+var failures=resultDict.failures.map(tr.mre.Failure.fromDict);var pairs=resultDict.pairs;return new MreResult(failures,pairs);}};return{MreResult:MreResult};});'use strict';tr.exportTo('tr.ui.b',function(){var ColorScheme=tr.b.ColorScheme;var ChartBase2DBrushX=tr.ui.b.ChartBase2DBrushX;function getSVGTextWidth(parentNode,text){var textNode=document.createElementNS('http://www.w3.org/2000/svg','text');textNode.setAttributeNS(null,'x',0);textNode.setAttributeNS(null,'y',0);textNode.setAttributeNS(null,'fill','black');textNode.appendChild(document.createTextNode(text));parentNode.appendChild(textNode);var widthPx=textNode.getComputedTextLength();parentNode.removeChild(textNode);return widthPx;}
+var ColumnChart=tr.ui.b.define('column-chart',ChartBase2DBrushX);ColumnChart.prototype={__proto__:ChartBase2DBrushX.prototype,decorate:function(){ChartBase2DBrushX.prototype.decorate.call(this);Polymer.dom(this).classList.add('column-chart');this.xCushion_=1;this.isStacked_=false;},set isStacked(stacked){this.isStacked_=true;this.updateContents_();},get isStacked(){return this.isStacked_;},isDatumFieldSeries_:function(fieldName){return fieldName!='x';},getXForDatum_:function(datum,index){return datum.x;},updateScales_:function(){if(this.data_.length===0)
 return;var xDifferences=0;var currentX=undefined;var previousX=undefined;var yRange=new tr.b.Range();this.data_.forEach(function(datum,index){previousX=currentX;currentX=this.getXForDatum_(datum,index);if(previousX!==undefined){xDifferences+=currentX-previousX;}
 for(var[key,series]of this.seriesByKey_){if(datum[key]!==undefined)
 yRange.addValue(datum[key]);}},this);var width=this.chartAreaSize.width;this.xScale_.range([0,width]);var domain=d3.extent(this.data_,this.getXForDatum_.bind(this));if(this.data_.length>1)
@@ -9070,40 +9231,114 @@
 var range=new tr.b.Range();range.addValue(0);this.data_.forEach(function(datum,index){var sum=0;for(var[key,series]of this.seriesByKey_){if(datum[key]===undefined)
 continue;sum+=datum[key];}
 range.addValue(sum);},this);return[range.min,range.max];},getStackedRectsForDatum_:function(datum,index){var stacks=[];var bottom=this.yScale_.range()[0];var sum=0;for(var[key,series]of this.seriesByKey_){if(datum[key]===undefined||!this.isSeriesEnabled(key))
-continue;sum+=datum[key];var heightPx=bottom-this.yScale_(sum);bottom-=heightPx;stacks.push({key:key,value:datum[key],color:getColorOfKey(key),heightPx:heightPx,topPx:bottom});}
+continue;sum+=datum[key];var heightPx=bottom-this.yScale_(sum);bottom-=heightPx;stacks.push({key:key,value:datum[key],color:this.getDataSeries(key).color,heightPx:heightPx,topPx:bottom});}
 return stacks;},getRectsForDatum_:function(datum,index){if(this.isStacked)
 return this.getStackedRectsForDatum_(datum,index);var stacks=[];for(var[key,series]of this.seriesByKey_){if(datum[key]===undefined||!this.isSeriesEnabled(key))
-continue;var topPx=this.yScale_(Math.max(datum[key],this.getYScaleMin_()));stacks.push({key:key,value:datum[key],topPx:topPx,heightPx:this.yScale_.range()[0]-topPx,color:getColorOfKey(key)});}
-stacks.sort(function(a,b){return b.topPx-a.topPx;});return stacks;},updateDataContents_:function(dataSel){dataSel.selectAll('*').remove();var chartAreaSel=d3.select(this.chartAreaElement);var rectsSel=dataSel.selectAll('path').data([...this.seriesByKey_.keys()]);this.data_.forEach(function(datum,index){var currentX=this.getXForDatum_(datum,index);var width=undefined;if(index<(this.data_.length-1)){var nextX=this.getXForDatum_(this.data_[index+1],index+1);width=nextX-currentX;}else{width=this.xCushion_;}
-this.getRectsForDatum_(datum,index).forEach(function(rect){var leftPx=this.xScale_(currentX);var rightPx=this.xScale_(currentX+width);var widthPx=rightPx-leftPx;rectsSel.enter().append('rect').attr('fill',rect.color).attr('x',leftPx).attr('y',rect.topPx).attr('width',widthPx).attr('height',rect.heightPx).on('mouseenter',function(){chartAreaSel.selectAll('.hover').remove();chartAreaSel.append('rect').attr('class','hover').attr('fill','white').attr('x',leftPx+widthPx).attr('y',rect.topPx).attr('width',this.margin.right).attr('height',30);chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',leftPx+widthPx+2).attr('y',rect.topPx+10).text(rect.key);chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',leftPx+widthPx+2).attr('y',rect.topPx+25).text(rect.value);}.bind(this)).on('mouseleave',function(){chartAreaSel.selectAll('.hover').remove();}.bind(this));},this);},this);rectsSel.exit().remove();}};return{BarChart:BarChart};});'use strict';Polymer({is:'tr-v-ui-composition-span',created:function(){this.diagnostic_=undefined;this.chart_=new tr.ui.b.BarChart();this.chart_.width=190;this.chart_.height=200;this.chart_.isStacked=true;this.chart_.hideXAxis=true;this.chart_.margin.top=10;this.chart_.margin.bottom=10;this.chart_.margin.right=120;this.minHeightPx_=40;},ready:function(){Polymer.dom(this.$.container).appendChild(this.chart_);this.$.drag_handle.target=this.$.container;this.$.drag_handle.addEventListener('drag-handle-resize',this.onResize_.bind(this));},onResize_:function(event){event.stopPropagation();var heightPx=parseInt(this.$.container.style.height);if(heightPx<this.minHeightPx_){heightPx=this.minHeightPx_;this.$.container.style.height=this.minHeightPx_+'px';}
+continue;var topPx=this.yScale_(Math.max(datum[key],this.getYScaleMin_()));stacks.push({key:key,value:datum[key],topPx:topPx,heightPx:this.yScale_.range()[0]-topPx,color:this.getDataSeries(key).color});}
+stacks.sort(function(a,b){return b.topPx-a.topPx;});return stacks;},drawHoverValueBox_:function(rect){var seriesKeys=[...this.seriesByKey_.keys()];var chartAreaSel=d3.select(this.chartAreaElement);chartAreaSel.selectAll('.hover').remove();var keyWidthPx=0;var keyHeightPx=0;if(seriesKeys.length>1){keyWidthPx=getSVGTextWidth(this.chartAreaElement,rect.key)+5;keyHeightPx=16;}
+var valueWidthPx=getSVGTextWidth(this.chartAreaElement,rect.value)+5;var valueHeightPx=16;var hoverLeftPx=rect.leftPx+(rect.widthPx/2);chartAreaSel.append('rect').attr('class','hover').attr('fill','white').attr('x',hoverLeftPx).attr('y',rect.topPx).attr('width',Math.max(keyWidthPx,valueWidthPx)).attr('height',keyHeightPx+valueHeightPx);if(seriesKeys.length>1){chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',rect.topPx+keyHeightPx-3).text(rect.key);}
+chartAreaSel.append('text').attr('class','hover').attr('fill',rect.color).attr('x',hoverLeftPx+2).attr('y',rect.topPx+keyHeightPx+valueHeightPx-3).text(rect.value);},clearHoverValueBox_:function(){d3.select(this.chartAreaElement).selectAll('.hover').remove();},drawRect_:function(rect,sel){sel.append('rect').attr('fill',rect.color).attr('x',rect.leftPx).attr('y',rect.topPx).attr('width',rect.widthPx).attr('height',rect.heightPx).on('mouseenter',this.drawHoverValueBox_.bind(this,rect)).on('mouseleave',this.clearHoverValueBox_.bind(this));},updateDataContents_:function(dataSel){dataSel.selectAll('*').remove();var chartAreaSel=d3.select(this.chartAreaElement);var seriesKeys=[...this.seriesByKey_.keys()];var rectsSel=dataSel.selectAll('path').data(seriesKeys);this.data_.forEach(function(datum,index){var currentX=this.getXForDatum_(datum,index);var width=undefined;if(index<(this.data_.length-1)){var nextX=this.getXForDatum_(this.data_[index+1],index+1);width=nextX-currentX;}else{width=this.xCushion_;}
+for(var rect of this.getRectsForDatum_(datum,index)){rect.leftPx=this.xScale_(currentX);rect.rightPx=this.xScale_(currentX+width);rect.widthPx=rect.rightPx-rect.leftPx;this.drawRect_(rect,rectsSel.enter());}},this);rectsSel.exit().remove();}};return{ColumnChart:ColumnChart,getSVGTextWidth:getSVGTextWidth};});'use strict';Polymer({is:'tr-v-ui-breakdown-span',created:function(){this.diagnostic_=undefined;this.chart_=new tr.ui.b.ColumnChart();this.chart_.width=190;this.chart_.height=200;this.chart_.isStacked=true;this.chart_.hideXAxis=true;this.chart_.margin.top=10;this.chart_.margin.bottom=10;this.chart_.margin.right=120;this.minHeightPx_=40;},ready:function(){Polymer.dom(this.$.container).appendChild(this.chart_);this.$.drag_handle.target=this.$.container;this.$.drag_handle.addEventListener('drag-handle-resize',this.onResize_.bind(this));},onResize_:function(event){event.stopPropagation();var heightPx=parseInt(this.$.container.style.height);if(heightPx<this.minHeightPx_){heightPx=this.minHeightPx_;this.$.container.style.height=this.minHeightPx_+'px';}
 this.chart_.height=heightPx;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){if(!this.diagnostic_){this.chart_.data=[];return;}
-var data={x:0};this.minHeightPx_=20;this.diagnostic_.iterItems(function(name,value){this.chart_.getDataSeries(name).target=value;this.chart_.getDataSeries(name).optional=true;this.minHeightPx_+=20;value=value.numeric;if(value instanceof tr.v.ScalarNumeric)
-data[name]=value.value;else if(value instanceof tr.v.Numeric)
-data[name]=value.sum;},this);this.chart_.data=[data];}});'use strict';Polymer({is:'tr-v-ui-generic-diagnostic-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){if(this.diagnostic===undefined){this.$.generic.object=undefined;return;}
+var data={x:0};this.minHeightPx_=20;for(var[name,value]of this.diagnostic){this.minHeightPx_+=20;var dataSeries=this.chart_.getDataSeries(name);dataSeries.optional=true;if(this.diagnostic.colorScheme===tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER){var cat=name.split(' ');cat=cat[cat.length-1];var color=tr.e.chrome.ChromeUserFriendlyCategoryDriver.getColor(cat);var hsl=color.toHSL();hsl.l*=0.85;var highlightedColor=tr.b.Color.fromHSL(hsl);dataSeries.highlightedColor=highlightedColor;dataSeries.color=color;}
+if(value instanceof tr.v.Histogram){dataSeries.target=value;data[name]=value.sum;}else if(typeof value==='number'){data[name]=value;}else{throw new Error('unsupported value '+value);}}
+this.chart_.data=[data];}});'use strict';Polymer({is:'tr-v-ui-generic-diagnostic-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){if(this.diagnostic===undefined){this.$.generic.object=undefined;return;}
 this.$.generic.object=this.diagnostic.value;}});'use strict';Polymer({is:'tr-v-ui-iteration-info-span',ready:function(){this.diagnostic_=undefined;this.$.table.showHeader=false;this.$.table.tableColumns=[{value:function(row){return row[0];},},{value:function(row){return row[1];}}];},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){if(this.diagnostic===undefined){this.$.table.tableRows=[];return;}
 var rows=[['benchmark name',this.diagnostic.benchmarkName],['benchmark start',this.diagnostic.benchmarkStartString],['url',this.diagnostic.storyUrl],['story',this.diagnostic.storyDisplayName],['storyset repeat',this.diagnostic.storysetRepeatCounter],['story repeat',this.diagnostic.storyRepeatCounter],];if(this.diagnostic.label)
 rows.push(['label',this.diagnostic.label]);if(this.diagnostic.storyGroupingKeys&&(tr.b.dictionaryLength(this.diagnostic.storyGroupingKeys)>0)){var gov=document.createElement('tr-ui-a-generic-object-view');gov.object=this.diagnostic.storyGroupingKeys;rows.push(['grouping keys',gov]);}
-rows.sort((x,y)=>x[0].localeCompare(y[0]));this.$.table.tableRows=rows;}});'use strict';Polymer({is:'tr-v-ui-related-event-set-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){Polymer.dom(this).textContent='';var events=this.diagnostic.events;var link=document.createElement('tr-ui-a-analysis-link');var label=events.length+' events';if(events.length===1){label=events[0].title+' ';label+=tr.v.Unit.byName.timeDurationInMs.format(events[0].duration);}
-link.setSelectionAndContent(events,label);Polymer.dom(this).appendChild(link);}});'use strict';Polymer({is:'tr-v-ui-related-value-map-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){Polymer.dom(this).textContent='';this.diagnostic.iterItems(function(name,value){var link=document.createElement('tr-ui-a-analysis-link');link.setSelectionAndContent(value,name);Polymer.dom(this).appendChild(link);Polymer.dom(this).appendChild(document.createElement('br'));},this);}});'use strict';Polymer({is:'tr-v-ui-related-value-set-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){Polymer.dom(this).textContent='';this.diagnostic.values.forEach(function(value){var link=document.createElement('tr-ui-a-analysis-link');link.setSelectionAndContent(value,value.name);Polymer.dom(this).appendChild(link);Polymer.dom(this).appendChild(document.createElement('br'));},this);}});'use strict';tr.exportTo('tr.v.ui',function(){function findElementNameForDiagnostic(diagnostic){var typeInfo=undefined;var curProto=diagnostic.constructor.prototype;while(curProto){typeInfo=tr.v.d.Diagnostic.findTypeInfo(curProto.constructor);if(typeInfo&&typeInfo.metadata.elementName)
+rows.sort((x,y)=>x[0].localeCompare(y[0]));this.$.table.tableRows=rows;}});'use strict';Polymer({is:'tr-v-ui-related-event-set-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){Polymer.dom(this).textContent='';var events=new tr.model.EventSet([...this.diagnostic]);var link=document.createElement('tr-ui-a-analysis-link');var label=events.length+' events';if(events.length===1){var event=tr.b.getOnlyElement(events);label=event.title+' ';label+=tr.b.Unit.byName.timeDurationInMs.format(event.duration);}
+link.setSelectionAndContent(events,label);Polymer.dom(this).appendChild(link);}});'use strict';Polymer({is:'tr-v-ui-related-value-map-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){Polymer.dom(this).textContent='';for(var[name,value]of this.diagnostic){var link=document.createElement('tr-ui-a-analysis-link');link.setSelectionAndContent(value,name);Polymer.dom(this).appendChild(link);Polymer.dom(this).appendChild(document.createElement('br'));}}});'use strict';Polymer({is:'tr-v-ui-related-value-set-span',ready:function(){this.diagnostic_=undefined;},get diagnostic(){return this.diagnostic_;},set diagnostic(d){this.diagnostic_=d;this.updateContents_();},updateContents_:function(){Polymer.dom(this).textContent='';for(var value of this.diagnostic){var link=document.createElement('tr-ui-a-analysis-link');link.setSelectionAndContent(value,value.name);Polymer.dom(this).appendChild(link);Polymer.dom(this).appendChild(document.createElement('br'));}}});'use strict';tr.exportTo('tr.v.ui',function(){function findElementNameForDiagnostic(diagnostic){var typeInfo=undefined;var curProto=diagnostic.constructor.prototype;while(curProto){typeInfo=tr.v.d.Diagnostic.findTypeInfo(curProto.constructor);if(typeInfo&&typeInfo.metadata.elementName)
 break;typeInfo=undefined;curProto=curProto.__proto__;}
 if(typeInfo===undefined){throw new Error(diagnostic.constructor.name+' or a base class must have a registered elementName');}
 var tagName=typeInfo.metadata.elementName;if(tr.ui.b.isUnknownElementName(tagName))
 throw new Error('Element not registered: '+tagName);return tagName;}
 function createDiagnosticSpan(diagnostic){var tagName=findElementNameForDiagnostic(diagnostic);var span=document.createElement(tagName);span.diagnostic=diagnostic;return span;}
-return{createDiagnosticSpan:createDiagnosticSpan};});'use strict';Polymer({is:'tr-v-ui-numeric-stats-span',ready:function(){this.numeric_=undefined;this.$.stats.showHeader=false;this.$.stats.tableColumns=[{value:function(row){return row.name;}},{align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value:function(row){return tr.v.ui.createScalarSpan(row.value);}}];},get numeric(){return this.numeric_;},set numeric(n){this.numeric_=n;this.updateContents_();},updateContents_:function(){var rows=[];if(this.numeric_){var stats=this.numeric_.getSummarizedScalarNumericsWithNames();stats.forEach(function(stat){rows.push({name:stat.name,value:stat.scalar});});}
-this.$.stats.tableRows=rows;this.$.stats.rebuild();}});'use strict';Polymer({is:'tr-v-ui-histogram-span',created:function(){this.histogram_=undefined;this.chart_=new tr.ui.b.BarChart();this.chart_.width=400;this.chart_.height=200;this.chart_.margin.right=2;this.mouseDownBin_=undefined;this.brushedBins_=[];this.chart_.addEventListener('item-mousedown',this.onMouseDown_.bind(this));this.chart_.addEventListener('item-mousemove',this.onMouseMove_.bind(this));this.chart_.addEventListener('item-mouseup',this.onMouseUp_.bind(this));this.chart_.hideLegend=true;this.chart_.margin.right=0;},ready:function(){Polymer.dom(this.$.chart).appendChild(this.chart_);},get brushedBins(){return this.brushedBins_;},updateBrushedRange_:function(currentX){this.brushedBins_=[this.histogram_.getBinForValue(currentX)];var r=new tr.b.Range();r.addValue(this.mouseDownX_);r.addValue(currentX);var centralMin=Number.MAX_VALUE;var centralMax=-Number.MAX_VALUE;this.histogram_.centralBins.forEach(function(bin){centralMin=Math.min(centralMin,bin.range.min);centralMax=Math.max(centralMax,bin.range.max);if((bin.range.max>r.min)&&(bin.range.min<r.max)&&(this.brushedBins_.indexOf(bin)<0))
+return{createDiagnosticSpan:createDiagnosticSpan};});'use strict';Polymer({is:'tr-v-ui-diagnostic-map-table',created:function(){this.diagnosticMaps_=undefined;},set diagnosticMaps(maps){this.diagnosticMaps_=maps;this.updateContents_();},updateContents_:function(){if(this.diagnosticMaps_===undefined||this.diagnosticMaps_.length===0){this.$.table.tableRows=[];this.$.table.tableColumns=[];return;}
+var columnTitles=new Set();for(var map of this.diagnosticMaps_)
+for(var[name,diagnostic]of map)
+columnTitles.add(name);columnTitles=[...columnTitles].sort();var columns=[];function makeColumn(title){return{title:title,value:function(map){return tr.v.ui.createDiagnosticSpan(map.get(title));}};}
+for(var title of columnTitles)
+columns.push(makeColumn(title));this.$.table.tableColumns=columns;this.$.table.tableRows=this.diagnosticMaps_;this.$.table.rebuild();}});'use strict';Polymer({is:'tr-v-ui-numeric-stats-span',ready:function(){this.numeric_=undefined;this.$.stats.showHeader=false;this.$.stats.tableColumns=[{value:function(row){return row.name;}},{align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,value:function(row){return tr.v.ui.createScalarSpan(row.value);}}];},get numeric(){return this.numeric_;},set numeric(n){this.numeric_=n;this.updateContents_();},updateContents_:function(){var rows=[];if(this.numeric_){for(var[statName,scalar]of this.numeric_.statisticsScalars){rows.push({name:statName,value:scalar});}}
+this.$.stats.tableRows=rows;this.$.stats.rebuild();}});'use strict';Polymer({is:'tr-v-ui-histogram-span',created:function(){this.histogram_=undefined;this.chart_=new tr.ui.b.ColumnChart();this.chart_.width=400;this.chart_.height=200;this.chart_.margin.right=2;this.mouseDownBin_=undefined;this.brushedBins_=[];this.chart_.addEventListener('item-mousedown',this.onMouseDown_.bind(this));this.chart_.addEventListener('item-mousemove',this.onMouseMove_.bind(this));this.chart_.addEventListener('item-mouseup',this.onMouseUp_.bind(this));this.chart_.hideLegend=true;this.chart_.margin.right=0;},ready:function(){Polymer.dom(this.$.chart).appendChild(this.chart_);},get brushedBins(){return this.brushedBins_;},updateBrushedRange_:function(currentX){this.brushedBins_=[this.histogram_.getBinForValue(currentX)];var r=new tr.b.Range();r.addValue(this.mouseDownX_);r.addValue(currentX);var centralMin=Number.MAX_VALUE;var centralMax=-Number.MAX_VALUE;this.histogram_.centralBins.forEach(function(bin){centralMin=Math.min(centralMin,bin.range.min);centralMax=Math.max(centralMax,bin.range.max);if((bin.range.max>r.min)&&(bin.range.min<r.max)&&(this.brushedBins_.indexOf(bin)<0))
 this.brushedBins_.push(bin);},this);if((this.histogram_.underflowBin.range.max>r.min)&&(this.brushedBins_.indexOf(this.histogram_.underflowBin)<0)){this.brushedBins_.push(this.histogram_.underflowBin);}
 if((this.histogram_.overflowBin.range.min<r.max)&&(this.brushedBins_.indexOf(this.histogram_.overflowBin)<0)){this.brushedBins_.push(this.histogram_.overflowBin);}
 this.brushedBins_.sort(function(a,b){return a.range.min-b.range.min;});var minBin=this.histogram_.getBinForValue(r.min);var maxBin=this.histogram_.getBinForValue(r.max);var binWidth=this.histogram_.centralBins[0].range.range;r.min=minBin?Math.max(centralMin-binWidth,minBin.range.min):centralMin-binWidth;r.max=maxBin?Math.min(centralMax+binWidth,maxBin.range.max):centralMax+binWidth;this.chart_.brushedRange=r;},onMouseDown_:function(chartEvent){chartEvent.stopPropagation();if(!this.histogram_)
 return;this.mouseDownX_=chartEvent.x;this.updateBrushedRange_(chartEvent.x);},onMouseMove_:function(chartEvent){chartEvent.stopPropagation();if(!this.histogram_)
 return;this.updateBrushedRange_(chartEvent.x);},onMouseUp_:function(chartEvent){chartEvent.stopPropagation();if(!this.histogram_)
-return;this.updateBrushedRange_(chartEvent.x);this.updateDiagnostics_(this.brushedBins);this.mouseDownX_=undefined;},updateDiagnostics_:function(bins){Polymer.dom(this.$.diagnostics).textContent='';for(var bin of bins){for(var diagnosticMap of bin.diagnosticMaps){diagnosticMap.forEach(function(unused_name,d){Polymer.dom(this.$.diagnostics).appendChild(tr.v.ui.createDiagnosticSpan(d));},this);}}},get histogram(){return this.histogram_;},set histogram(histogram){this.histogram_=histogram;Polymer.dom(this.$.diagnostics).textContent='';this.updateContents_();},set isYLogScale(logScale){this.chart_.isYLogScale=logScale;},updateContents_:function(){this.$.chart.style.display=this.histogram_?'':'none';this.$.stats.numeric=this.histogram_;if(!this.histogram_)
-return;var maximumBinValue=tr.b.Statistics.max(this.histogram_.allBins,function(bin){return bin.count;});var chartData=[];var binWidth=this.histogram_.centralBins[0].range.range;this.histogram_.allBins.forEach(function(bin){var x=bin.range.min;if(x===-Number.MAX_VALUE){if(!bin.count)
+return;this.updateBrushedRange_(chartEvent.x);this.updateDiagnostics_(this.brushedBins);this.mouseDownX_=undefined;},updateDiagnostics_:function(bins){var maps=[];for(var bin of bins)
+for(var map of bin.diagnosticMaps)
+maps.push(map);if(maps.length===0){this.$.diagnostic_map_table.style.display='none';return;}
+this.$.diagnostic_map_table.diagnosticMaps=maps;this.$.diagnostic_map_table.style.display='block';},get histogram(){return this.histogram_;},set histogram(histogram){this.histogram_=histogram;this.updateContents_();},set isYLogScale(logScale){this.chart_.isYLogScale=logScale;},updateContents_:function(){this.$.chart.style.display=this.histogram_?'':'none';this.$.diagnostic_map_table.style.display='none';this.$.stats.numeric=this.histogram_;this.brushedBins_=[];if(!this.histogram_)
+return;if(this.histogram_.numValues<=1){this.$.container.style.display='none';}else{this.$.container.style.display='';var maximumBinValue=tr.b.Statistics.max(this.histogram_.allBins,(bin)=>bin.count);var chartData=[];var binWidth=this.histogram_.centralBins[0].range.range;this.histogram_.allBins.forEach(function(bin){var x=bin.range.min;if(x===-Number.MAX_VALUE){if(!bin.count)
 return;x=bin.range.max-binWidth;}
-chartData.push({x:x,y:bin.count});});chartData.sort(function(x,y){return x.x-y.x;});this.$.chart.style.display=chartData.length?'':'none';this.chart_.data=chartData;this.brushedBins_=[];this.chart_.brushedRange=new tr.b.Range();var occupiedBins=[];for(var bin of this.histogram.allBins){if(bin.count>0)
+chartData.push({x:x,y:bin.count});});chartData.sort((x,y)=>x.x-y.x);this.chart_.data=chartData;this.chart_.brushedRange=new tr.b.Range();}
+var occupiedBins=[];for(var bin of this.histogram.allBins){if(bin.count>0)
 occupiedBins.push(bin);}
 if(occupiedBins.length===1)
-this.updateDiagnostics_(occupiedBins);}});'use strict';tr.exportTo('tr.v.ui',function(){function NullBrushingStateController(){this.parentController=undefined;}
+this.updateDiagnostics_(occupiedBins);}});'use strict';tr.exportTo('tr.ui',function(){function makeStoryGroupingKeyLabelGetter(storyGroupingKey){return v=>tr.v.d.IterationInfo.getStoryGroupingKeyLabel(v,storyGroupingKey);}
+var getDisplayLabel=tr.v.ValueSet.GROUPINGS.DISPLAY_LABEL.dataFn;var DEFAULT_POSSIBLE_GROUPS=[];DEFAULT_POSSIBLE_GROUPS.push({key:tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key,label:tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.label,dataFn:v=>v.shortName||v.name});tr.b.iterItems(tr.v.ValueSet.GROUPINGS,function(name,group){if(group!==tr.v.ValueSet.GROUPINGS.DISPLAY_LABEL&&group!==tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME)
+DEFAULT_POSSIBLE_GROUPS.push(group);});var SELECTED_VALUE_SETTINGS_KEY='tr-v-ui-value-set-table-value';var SHOW_ALL_SETTINGS_KEY='tr-v-ui-value-set-table-show-all';var UNMERGEABLE='(unmergeable)';function mergeCells(a,b){if(a===UNMERGEABLE||b===UNMERGEABLE||!a||!b||!a.canAddHistogram(b))
+return UNMERGEABLE;a=a.clone();a.addHistogram(b);return a;}
+function organizeValues(values,groupingCallbacks,level){if(groupingCallbacks.length===level){return values.reduce(mergeCells);}
+var groupedValues=tr.b.group(values,groupingCallbacks[level]);if(level>0&&level<(groupingCallbacks.length-1)&&tr.b.dictionaryLength(groupedValues)===1){return organizeValues(values,groupingCallbacks,level+1);}
+return tr.b.mapItems(groupedValues,(key,groupValues)=>organizeValues(groupValues,groupingCallbacks,level+1));}
+Polymer({is:'tr-v-ui-value-set-table',get tabLabel(){return'Table';},created:function(){this.values_=undefined;this.sourceValues_=[];this.rows_=undefined;this.columns_=undefined;this.updatingContents_=false;this.displayLabels_=undefined;this.referenceDisplayLabel_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.CELL;this.$.table.addEventListener('selection-changed',this.onSelectionChanged_.bind(this));this.addEventListener('requestSelectionChange',this.onRelatedValueSelected_.bind(this));this.$.show_all.checked=tr.b.Settings.get(SHOW_ALL_SETTINGS_KEY,false);this.$.picker.settingsKey='tr-v-ui-value-set-table-groupby-picker';this.$.picker.possibleGroups=DEFAULT_POSSIBLE_GROUPS.slice();this.$.picker.defaultGroupKeys=[tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key,tr.v.ValueSet.GROUPINGS.STORY_NAME.key];this.$.picker.addEventListener('current-groups-changed',this.currentGroupsChanged_.bind(this));},set groupingKeys(keys){this.$.picker.currentGroupKeys=keys;},get groupingKeys(){return this.$.picker.currentGroupKeys;},get possibleGroupingKeys(){return this.$.picker.possibleGroups.map(g=>g.key);},currentGroupsChanged_:function(){if(this.updatingContents_)
+return;if(this.$.picker.currentGroups.length===0&&this.possibleGroupingKeys.length>0){this.$.picker.currentGroupKeys=[this.$.picker.possibleGroups[0].key];}
+var expansionStates=undefined;if(this.rows_)
+expansionStates=this.getExpansionStates_(this.rows_);this.updateContents_();if(expansionStates)
+this.setExpansionStates_(expansionStates,this.rows_);},onShowAllChange_:function(){if(this.updatingContents_)
+return;tr.b.Settings.set(SHOW_ALL_SETTINGS_KEY,this.$.show_all.checked);var expansionStates=this.getExpansionStates_(this.rows_);this.updateContents_();this.setExpansionStates_(expansionStates,this.rows_);},getExpansionStates_:function(rows){var states={};for(var i=0;i<rows.length;++i){var row=rows[i];if(row.subRows&&row.subRows.length&&this.$.table.getExpandedForTableRow(row)){states[i]=this.getExpansionStates_(row.subRows);}}
+return states;},setExpansionStates_:function(states,rows){for(var i=0;i<rows.length;++i){if(states[i]&&rows[i]&&rows[i].subRows&&rows[i].subRows.length>0){this.$.table.setExpandedForTableRow(rows[i],true);this.setExpansionStates_(states[i],rows[i].subRows);}}},onSearch_:function(){this.updateContents_();},rowMatchesSearch_:function(row){return row.name.indexOf(this.$.search.value)>=0;},onRelatedValueSelected_:function(event){var value=event.selection;if(!(value instanceof tr.v.Histogram))
+return;event.stopPropagation();var displayLabel=getDisplayLabel(value);var columnIndex=-1;for(var i=0;i<this.columns_.length;++i){if(this.columns_[i].title===displayLabel){columnIndex=i;break;}}
+if(columnIndex<0)
+return;var hierarchy=[];var found=false;function search(row){if(row.columns[displayLabel]===value){for(var hirow in hierarchy){this.$.table.setExpandedForTableRow(hirow,true);}
+found=true;this.$.table.selectedTableRow=row;this.$.table.selectedColumnIndex=columnIndex;return;}
+if(!row.subRows)
+return;hierarchy.push(row);row.subRows.forEach(search,this);hierarchy.pop(row);}
+this.rows_.forEach(search,this);if(found||this.$.show_all.checked)
+return;for(var test of this.values){if(this.sourceValues_.indexOf(test)>=0)
+continue;if(test===value){found=true;this.$.show_all.checked=true;this.onShowAllChange_();this.onRelatedValueSelected_(event);break;}}},onSelectionChanged_:function(){var row=this.$.table.selectedTableRow;var col=this.$.table.selectedColumnIndex;var cell=undefined;if(row&&col&&this.columns_)
+cell=row.columns[this.columns_[col].title];if(cell instanceof tr.v.Histogram){this.$.histogram.style.display='block';this.$.histogram.histogram=cell;tr.b.Settings.set(SELECTED_VALUE_SETTINGS_KEY,JSON.stringify({row:row.name,column:this.columns_[col].title}));}else{this.$.histogram.style.display='none';}},addDiagnosticSubRows_:function(value,row,column){for(var[name,diagnostic]of value.diagnostics){var foundSubRow=false;for(var subRow of row.subRows){if(subRow.name===name){foundSubRow=true;subRow.columns[column]=diagnostic;continue;}}
+if(foundSubRow)
+continue;var subRow={name:name,columns:{}};subRow.columns[column]=diagnostic;row.subRows.push(subRow);}},get values(){return this.values_;},set values(values){this.values_=values;this.sourceValues_=values?values.sourceValues:[];this.displayLabels_=undefined;this.referenceDisplayLabel_='';this.updateContents_();},get referenceDisplayLabel(){return this.referenceDisplayLabel_;},set referenceDisplayLabel(reference){this.referenceDisplayLabel_=reference;if(this.updatingContents_)
+return;this.$.table.selectedTableColumnIndex=this.referenceDisplayLabel?1+this.displayLabels.indexOf(this.referenceDisplayLabel):undefined;var expansionStates=this.getExpansionStates_(this.rows_);this.$.table.tableRows=this.rows_;this.setExpansionStates_(expansionStates,this.rows_);},updateReferenceColumnSelector_:function(){Polymer.dom(this.$.reference_column_container).textContent='';if(this.displayLabels.length<2)
+return;var options=[{value:'',label:'Select a reference column'}];for(var displayLabel of this.displayLabels)
+options.push({value:displayLabel,label:displayLabel});var settingsKey='tr-v-ui-value-set-table-reference-display-label';Polymer.dom(this.$.reference_column_container).appendChild(tr.ui.b.createSelector(this,'referenceDisplayLabel',settingsKey,'',options));},updateGroups_:function(){var groups=DEFAULT_POSSIBLE_GROUPS.filter(function(group){if(group.key===tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key)
+return true;var values=new Set();for(var value of this.values_){value=group.dataFn(value);if(!value)
+continue;values.add(value);if(values.size>1)
+return true;}
+return false;},this);for(var storyGroupingKey of this.storyGroupingKeys){groups.push({key:'storyGroupingKey_'+storyGroupingKey,label:storyGroupingKey,dataFn:makeStoryGroupingKeyLabelGetter(storyGroupingKey)});}
+var groupingKeys=this.groupingKeys;this.$.picker.possibleGroups=groups;this.$.picker.currentGroupKeys=groupingKeys;this.$.picker.style.display=(groups.length===1)?'none':'';},updateContents_:function(){if(this.updatingContents_)
+return;if(!this.values_||(this.values_.length===0)){this.$.container.style.display='';this.$.zero.style.display='';return;}
+this.updatingContents_=true;this.$.zero.style.display='none';this.$.container.style.display='block';this.$.table.style.display='';this.$.histogram.style.display='none';this.updateReferenceColumnSelector_();this.updateGroups_();this.buildRows_();this.buildColumns_();this.$.table.tableColumns=this.columns_;this.$.table.tableRows=this.rows_;this.$.table.sortColumnIndex=0;this.$.table.rebuild();this.selectValue_();this.maybeDisableShowAll_();this.$.table.selectedTableColumnIndex=this.referenceDisplayLabel?1+this.displayLabels.indexOf(this.referenceDisplayLabel):undefined;this.updatingContents_=false;},maybeDisableShowAll_:function(){var allValuesAreSource=true;for(var value of this.values){if(this.sourceValues_.indexOf(value)<0){allValuesAreSource=false;break;}}
+this.$.show_all.disabled=allValuesAreSource;if(this.$.show_all.disabled){this.$.show_all.checked=true;}},selectValue_:function(){var selectedValue=tr.b.Settings.get(SELECTED_VALUE_SETTINGS_KEY,undefined);if(selectedValue){selectedValue=JSON.parse(selectedValue);for(var row of this.rows_){if(row.name===selectedValue.row){for(var coli=1;coli<this.columns_.length;++coli){var column=this.columns_[coli];if(column.title===selectedValue.column){this.$.table.selectedTableRow=row;this.$.table.selectedColumnIndex=coli;return;}}}}}
+this.$.table.selectedTableRow=this.rows_[0];this.$.table.selectedColumnIndex=1;},buildRow_:function(organizedValues,hierarchy){tr.b.iterItems(organizedValues,function(name,value){if(value instanceof tr.v.Histogram){for(var row of hierarchy){if(row.description===undefined)
+row.description=value.description;if(row.columns[name])
+row.columns[name]=mergeCells(value,row.columns[name]);else
+row.columns[name]=value;}
+var row=hierarchy[hierarchy.length-1];if(row)
+this.addDiagnosticSubRows_(value,row,name);}else if(value===UNMERGEABLE){var row=hierarchy[hierarchy.length-1];if(row)
+row.columns[name]=value;}else{var row={name:name,subRows:[],columns:{}};hierarchy.push(row);this.buildRow_(value,hierarchy);hierarchy.pop();if(hierarchy.length===0)
+this.rows_.push(row);else
+hierarchy[hierarchy.length-1].subRows.push(row);}},this);},get storyGroupingKeys(){var keys=new Set();for(var value of this.values){var iteration=tr.v.d.IterationInfo.getFromValue(value);if(!(iteration instanceof tr.v.d.IterationInfo)||!iteration.storyGroupingKeys)
+continue;for(var key in iteration.storyGroupingKeys)
+keys.add(key);}
+return[...keys.values()].sort();},get organizedValues_(){var showingValues=this.$.show_all.checked?this.values:this.sourceValues_;var values=[];for(var value of showingValues)
+values.push(value);var groupingCallbacks=[];for(var group of this.$.picker.currentGroups)
+groupingCallbacks.push(group.dataFn);groupingCallbacks.push(getDisplayLabel);return organizeValues(values,groupingCallbacks,0);},buildRows_:function(){this.rows_=[];var hierarchy=[];var organizedValues=this.organizedValues_;this.buildRow_(organizedValues,hierarchy);this.rows_=this.rows_.filter(this.rowMatchesSearch_.bind(this));},get startTimesForDisplayLabels(){var startTimesForDisplayLabels={};for(var value of this.values){var displayLabel=getDisplayLabel(value);startTimesForDisplayLabels[displayLabel]=Math.min(startTimesForDisplayLabels[displayLabel]||0,tr.v.d.IterationInfo.getField(value,'benchmarkStart',new Date(0)).getTime());}
+return startTimesForDisplayLabels;},get displayLabels(){if(this.displayLabels_===undefined){var startTimesForDisplayLabels=this.startTimesForDisplayLabels;this.displayLabels_=Object.keys(startTimesForDisplayLabels);this.displayLabels_.sort(function(a,b){return startTimesForDisplayLabels[a]-startTimesForDisplayLabels[b];});}
+return this.displayLabels_;},buildColumn_:function(displayLabel){function getValueForValue(value){return value instanceof tr.v.Histogram?value.average:value.value;}
+return{title:displayLabel,align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,supportsCellSelection:true,value:function(row){var cell=row.columns[displayLabel];if(cell===undefined)
+return'(missing)';if(cell===UNMERGEABLE)
+return cell;if(cell instanceof tr.v.Histogram){if(cell.numValues===0){return'(empty)';}
+if(this.referenceDisplayLabel&&this.referenceDisplayLabel!==displayLabel){var referenceCell=row.columns[this.referenceDisplayLabel];if(referenceCell instanceof tr.v.Histogram&&cell.unit===referenceCell.unit&&referenceCell.numValues>0){var significance=cell.getDifferenceSignificance(referenceCell);return tr.v.ui.createScalarSpan(getValueForValue(cell)-getValueForValue(referenceCell),{unit:cell.unit.correspondingDeltaUnit,significance:significance});}}
+return tr.v.ui.createScalarSpan(cell);}
+if(cell instanceof tr.v.d.Diagnostic){var span=tr.v.ui.createDiagnosticSpan(cell);span.addEventListener('click',(event)=>event.stopPropagation());span.style.textAlign='left';return span;}
+throw new Error('Invalid cell',cell);}.bind(this),cmp:function(rowA,rowB){var cellA=rowA.columns[displayLabel];var cellB=rowB.columns[displayLabel];if(!(cellA instanceof tr.v.Histogram)||!(cellB instanceof tr.v.Histogram)){return undefined;}
+var valueA=getValueForValue(cellA);var valueB=getValueForValue(cellB);if(this.referenceDisplayLabel&&this.referenceDisplayLabel!==displayLabel){var referenceCellA=rowA.columns[this.referenceDisplayLabel];var referenceCellB=rowB.columns[this.referenceDisplayLabel];if(referenceCellA instanceof tr.v.Histogram&&referenceCellB instanceof tr.v.Histogram&&cellA.unit===referenceCellA.unit&&cellB.unit===referenceCellB.unit){valueA-=getValueForValue(referenceCellA);valueB-=getValueForValue(referenceCellB);}}
+return valueA-valueB;}.bind(this)};},buildColumns_:function(){this.columns_=[{title:'Name',align:tr.ui.b.TableFormat.ColumnAlignment.LEFT,supportsCellSelection:false,value:function(row){var nameEl=document.createElement('span');Polymer.dom(nameEl).textContent=row.name;if(row.description)
+nameEl.title=row.description;nameEl.style.textOverflow='ellipsis';return nameEl;},cmp:(a,b)=>a.name.localeCompare(b.name)}];for(var displayLabel of this.displayLabels)
+this.columns_.push(this.buildColumn_(displayLabel));}});return{};});'use strict';tr.exportTo('tr.v.ui',function(){function NullBrushingStateController(){this.parentController=undefined;}
 NullBrushingStateController.prototype={__proto__:tr.c.BrushingStateController.prototype,dispatchChangeEvent_:function(){if(this.parentController)
 this.parentController.dispatchChangeEvent_();},get model(){if(!this.parentController)
 return undefined;return this.parentController.model;},get trackView(){if(!this.parentController)
@@ -9130,73 +9365,17 @@
 this.parentController.changeAnalysisViewRelatedEvents(eventSet);},changeAnalysisLinkHoveredEvents:function(eventSet){if(this.parentController&&(eventSet instanceof tr.model.EventSet))
 this.parentController.changeAnalysisLinkHoveredEvents(eventSet);},getViewSpecificBrushingState:function(viewId){if(this.parentController)
 this.parentController.getViewSpecificBrushingState(viewId);},changeViewSpecificBrushingState:function(viewId,newState){if(this.parentController)
-this.parentController.changeViewSpecificBrushingState(viewId,newState);}};var VALUE_SET_VIEW_ELEMENT_NAMES=[];var SELECTED_TAB_SETTINGS_KEY='tr-v-ui-value-set-view-element-name';Polymer({is:'tr-v-ui-value-set-view',listeners:{'tabView.selected-tab-change':'onSelectedTabChange_'},ready:function(){this.brushingStateController=new NullBrushingStateController();},attached:function(){this.brushingStateController.parentController=tr.c.BrushingStateController.getControllerForElement(this.parentNode);},onSelectedTabChange_:function(){if(!this.$.tabView.selectedSubView)
-return;tr.b.Settings.set(SELECTED_TAB_SETTINGS_KEY,this.$.tabView.selectedSubView.tagName.toLowerCase());},set values(values){this.$.tabView.clearSubViews();var initialTabElementName=tr.b.Settings.get(SELECTED_TAB_SETTINGS_KEY,undefined);VALUE_SET_VIEW_ELEMENT_NAMES.forEach(function(elementName,index){var view=document.createElement(elementName);if(!view.supportsValueSet(values))
-return;view.values=values;this.$.tabView.addSubView(view);if(elementName.toLowerCase()===initialTabElementName)
-this.$.tabView.selectedSubView=view;},this);this.$.tabView.set('tabsHidden',this.$.tabView.tabs.length===1);}});function registerValueSetView(elementName){if(tr.ui.b.isUnknownElementName(elementName))
-throw new Error('Element not registered: '+elementName);VALUE_SET_VIEW_ELEMENT_NAMES.push(elementName);}
-return{registerValueSetView:registerValueSetView,SELECTED_TAB_SETTINGS_KEY:SELECTED_TAB_SETTINGS_KEY};});'use strict';tr.exportTo('tr.ui',function(){function getIterationInfoField(value,fieldName,defaultValue){var iteration=tr.v.d.IterationInfo.getFromValue(value);if(!(iteration instanceof tr.v.d.IterationInfo))
-return defaultValue;return iteration[fieldName];}
-function getStoryGroupingKeyLabel(value,storyGroupingKey){var iteration=tr.v.d.IterationInfo.getFromValue(value);if(!(iteration instanceof tr.v.d.IterationInfo))
-return storyGroupingKey+': undefined';return storyGroupingKey+': '+
-iteration.storyGroupingKeys[storyGroupingKey];}
-var getDisplayLabel=v=>getIterationInfoField(v,'displayLabel','Value');var SELECTED_VALUE_SETTINGS_KEY='tr-v-ui-value-set-table-value';var SHOW_ALL_SETTINGS_KEY='tr-v-ui-value-set-table-show-all';function organizeValues(values,groupingCallbacks,level){if(groupingCallbacks.length===level){if(values.length>1){console.warn('Multiple Values with same name, benchmarkName, '+'storyGroupingKeys, storyName, start, storysetRepeatCounter, '+'storyRepeatCounter, and displayLabel',values);}
-return values[0];}
-var groupedValues=tr.b.group(values,groupingCallbacks[level]);if(level>0&&level<(groupingCallbacks.length-1)&&tr.b.dictionaryLength(groupedValues)===1){return organizeValues(values,groupingCallbacks,level+1);}
-return tr.b.mapItems(groupedValues,function(key,groupValues){return organizeValues(groupValues,groupingCallbacks,level+1);});}
-Polymer({is:'tr-v-ui-value-set-table',supportsValueSet:function(values){return true;},get tabLabel(){return'Table';},created:function(){this.values_=undefined;this.sourceValues_=[];this.summaryValuesByGuid_={};this.rows_=undefined;this.columns_=undefined;},ready:function(){this.$.table.selectionMode=tr.ui.b.TableFormat.SelectionMode.CELL;this.$.table.addEventListener('selection-changed',this.onSelectionChanged_.bind(this));this.$.table.addEventListener('selected-column-changed',this.onSelectedColumnChanged_.bind(this));this.addEventListener('requestSelectionChange',this.onRelatedValueSelected_.bind(this));this.$.search.addEventListener('keyup',this.onSearch_.bind(this));this.$.show_all.checked=tr.b.Settings.get(SHOW_ALL_SETTINGS_KEY,false);this.$.show_all.addEventListener('change',this.onShowAllChange_.bind(this));},onShowAllChange_:function(){tr.b.Settings.set(SHOW_ALL_SETTINGS_KEY,this.$.show_all.checked);this.updateContents_();},onSelectedColumnChanged_:function(){var expansionStates=this.getExpansionStates_(this.rows_);this.$.table.tableRows=this.rows_;this.setExpansionStates_(expansionStates,this.rows_);},getExpansionStates_:function(rows){var states={};for(var i=0;i<rows.length;++i){var row=rows[i];if(row.subRows&&row.subRows.length&&this.$.table.getExpandedForTableRow(row)){states[i]=this.getExpansionStates_(row.subRows);}}
-return states;},setExpansionStates_:function(states,rows){for(var i=0;i<rows.length;++i){if(states[i]){this.$.table.setExpandedForTableRow(rows[i],true);this.setExpansionStates_(states[i],rows[i].subRows);}}},onSearch_:function(){this.updateContents_();},rowMatchesSearch_:function(row){return row.name.indexOf(this.$.search.value)>=0;},onRelatedValueSelected_:function(event){var value=event.selection;if(!(value instanceof tr.v.Value))
-return;event.stopPropagation();var displayLabel=getDisplayLabel(value);var columnIndex=-1;for(var i=0;i<this.columns_.length;++i){if(this.columns_[i].title===displayLabel){columnIndex=i;break;}}
-if(columnIndex<0)
-return;var hierarchy=[];var found=false;function search(row){if(row.columns[displayLabel]===value){for(var hirow in hierarchy){this.$.table.setExpandedForTableRow(hirow,true);}
-found=true;this.$.table.selectedTableRow=row;this.$.table.selectedColumnIndex=columnIndex;return;}
-if(!row.subRows)
-return;hierarchy.push(row);row.subRows.forEach(search,this);hierarchy.pop(row);}
-this.rows_.forEach(search,this);if(found||this.$.show_all.checked)
-return;for(var test of this.values){if(this.sourceValues_.indexOf(test)>=0)
-continue;if(test===value){this.$.show_all.checked=true;this.onShowAllChange_();this.onRelatedValueSelected_(event);break;}}},onSelectionChanged_:function(){var row=this.$.table.selectedTableRow;var col=this.$.table.selectedColumnIndex;var cell=undefined;if(row&&col&&this.columns_)
-cell=row.columns[this.columns_[col].title];if((cell instanceof tr.v.NumericValue)&&(cell.numeric instanceof tr.v.Numeric)){this.$.histogram.style.display='block';this.$.histogram.histogram=cell.numeric;tr.b.Settings.set(SELECTED_VALUE_SETTINGS_KEY,JSON.stringify({row:row.name,column:this.columns_[col].title}));}else{this.$.histogram.style.display='none';}},handleFailureValues_:function(){this.values.map(function(value){if(value instanceof tr.v.FailureValue){Polymer.dom(this.$.error).textContent=value.description;this.$.table.style.display='none';this.style.width='10em';}},this);},addDiagnosticSubRows_:function(value,row,column){value.diagnostics.forEach(function(name,diagnostic){if(name===tr.v.SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME)
-return;for(var subRow of row.subRows){if(subRow.name===name){subRow.columns[column]=diagnostic;return;}}
-var subRow={name:name,columns:{}};subRow.columns[column]=diagnostic;row.subRows.push(subRow);});},get values(){return this.values_;},findSummaryValues_:function(){this.summaryValuesByGuid_={};this.values.map(function(value){var summaryValueMap=value.diagnostics.get(tr.v.SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME);if(!(summaryValueMap instanceof tr.v.d.RelatedValueMap))
-return;summaryValueMap.values.forEach(function(summaryValue){this.summaryValuesByGuid_[summaryValue.guid]=summaryValue;},this);},this);},set values(values){this.values_=values;this.sourceValues_=values.sourceValues;this.findSummaryValues_();this.updateContents_();},updateContents_:function(){if(!this.values_)
-return;this.style.width='';this.$.table.style.display='';Polymer.dom(this.$.error).textContent='';this.$.histogram.style.display='none';this.handleFailureValues_();if(Polymer.dom(this.$.error).textContent)
-return;this.buildRows_();if(this.rows_.length===0){Polymer.dom(this.$.error).textContent='zero values';this.$.table.style.display='none';this.style.width='10em';return;}
-this.buildColumns_();this.$.table.tableColumns=this.columns_;this.$.table.tableRows=this.rows_;this.$.table.sortColumnIndex=0;this.$.table.rebuild();this.selectValue_();tr.b.requestAnimationFrame(function(){this.style.width=this.$.table.getBoundingClientRect().width;},this);},selectValue_:function(){var selectedValue=tr.b.Settings.get(SELECTED_VALUE_SETTINGS_KEY,undefined);if(selectedValue){selectedValue=JSON.parse(selectedValue);for(var row of this.rows_){if(row.name===selectedValue.row){for(var coli=1;coli<this.columns_.length;++coli){var column=this.columns_[coli];if(column.title===selectedValue.column){this.$.table.selectedTableRow=row;this.$.table.selectedColumnIndex=coli;return;}}}}}
-this.$.table.selectedTableRow=this.rows_[0];this.$.table.selectedColumnIndex=1;},buildRow_:function(organizedValues,hierarchy){tr.b.iterItems(organizedValues,function(name,value){if(value instanceof tr.v.Value){for(var row of hierarchy){if(row.description===undefined)
-row.description=value.description;if(row.columns[name])
-row.columns[name]=row.columns[name].merge(value);else
-row.columns[name]=value;}
-var row=hierarchy[hierarchy.length-1];this.addDiagnosticSubRows_(value,row,name);}else{var row={name:name,subRows:[],columns:{}};hierarchy.push(row);this.buildRow_(value,hierarchy);hierarchy.pop();if(hierarchy.length===0)
-this.rows_.push(row);else
-hierarchy[hierarchy.length-1].subRows.push(row);}},this);},get storyGroupingKeys(){var keys=new Set();for(var value of this.values){var iteration=tr.v.d.IterationInfo.getFromValue(value);if(!(iteration instanceof tr.v.d.IterationInfo)||!iteration.storyGroupingKeys)
-continue;for(var key in iteration.storyGroupingKeys)
-keys.add(key);}
-return[...keys.values()].sort();},get organizedValues_(){var showingValues=this.$.show_all.checked?this.values:this.sourceValues_;var values=[];for(var value of showingValues)
-if(this.summaryValuesByGuid_[value.guid]===undefined)
-values.push(value);var groupingCallbacks=[];groupingCallbacks.push(v=>v.name);groupingCallbacks.push(v=>getIterationInfoField(v,'benchmarkName',''));for(var storyGroupingKey of this.storyGroupingKeys){groupingCallbacks.push((sgk=>(v=>getStoryGroupingKeyLabel(v,sgk)))(storyGroupingKey));}
-groupingCallbacks.push(v=>getIterationInfoField(v,'storyDisplayName',''));groupingCallbacks.push(v=>getIterationInfoField(v,'benchmarkStartString',''));groupingCallbacks.push(v=>getIterationInfoField(v,'storysetRepeatCounterLabel',0));groupingCallbacks.push(v=>getIterationInfoField(v,'storyRepeatCounterLabel',0));groupingCallbacks.push(getDisplayLabel);return organizeValues(values,groupingCallbacks,0);},buildRows_:function(){this.rows_=[];var hierarchy=[];this.buildRow_(this.organizedValues_,hierarchy);this.rows_=this.rows_.filter(this.rowMatchesSearch_.bind(this));},get startTimesForDisplayLabels(){var startTimesForDisplayLabels={};for(var value of this.values){if(this.summaryValuesByGuid_[value.guid])
-continue;var displayLabel=getDisplayLabel(value);startTimesForDisplayLabels[displayLabel]=Math.min(startTimesForDisplayLabels[displayLabel]||0,getIterationInfoField(value,'benchmarkStart',new Date(0)).getTime());}
-return startTimesForDisplayLabels;},get displayLabels(){var startTimesForDisplayLabels=this.startTimesForDisplayLabels;var displayLabels=Object.keys(startTimesForDisplayLabels);displayLabels.sort(function(a,b){return startTimesForDisplayLabels[a]-startTimesForDisplayLabels[b];});return displayLabels;},buildColumn_:function(displayLabel){function getValueForValue(value){return value.numeric instanceof tr.v.Numeric?value.numeric.average:value.numeric.value;}
-return{title:displayLabel,align:tr.ui.b.TableFormat.ColumnAlignment.RIGHT,supportsCellSelection:true,selectable:true,value:function(row){var cell=row.columns[displayLabel];if(cell===undefined)
-return'';if(cell instanceof tr.v.NumericValue){if(this.$.table.selectedTableColumn&&this.$.table.selectedTableColumn.title!==displayLabel){var referenceCell=row.columns[this.$.table.selectedTableColumn.title];if(referenceCell instanceof tr.v.NumericValue&&cell.numeric.unit===referenceCell.numeric.unit){var significance=tr.v.Significance.DONT_CARE;if(cell.numeric instanceof tr.v.Numeric&&referenceCell.numeric instanceof tr.v.Numeric){significance=cell.numeric.getDifferenceSignificance(referenceCell.numeric);}
-return tr.v.ui.createScalarSpan(getValueForValue(cell)-getValueForValue(referenceCell),{unit:cell.numeric.unit.correspondingDeltaUnit,significance:significance});}}
-return tr.v.ui.createScalarSpan(cell);}
-if(cell instanceof tr.v.d.Diagnostic){var span=tr.v.ui.createDiagnosticSpan(cell);span.style.textAlign='left';return span;}
-throw new Error('Invalid cell',cell);}.bind(this),cmp:function(rowA,rowB){var cellA=rowA.columns[displayLabel];var cellB=rowB.columns[displayLabel];if(!(cellA instanceof tr.v.NumericValue)||!(cellB instanceof tr.v.NumericValue)){return undefined;}
-var valueA=getValueForValue(cellA);var valueB=getValueForValue(cellB);if(this.$.table.selectedTableColumn&&this.$.table.selectedTableColumn.title!==displayLabel){var referenceColumn=this.$.table.selectedTableColumn.title;var referenceCellA=rowA.columns[referenceColumn];var referenceCellB=rowB.columns[referenceColumn];if(referenceCellA instanceof tr.v.NumericValue&&referenceCellB instanceof tr.v.NumericValue&&cellA.numeric.unit===referenceCellA.numeric.unit&&cellB.numeric.unit===referenceCellB.numeric.unit){valueA-=getValueForValue(referenceCellA);valueB-=getValueForValue(referenceCellB);}}
-return valueA-valueB;}.bind(this)};},buildColumns_:function(){this.columns_=[{title:'Name',align:tr.ui.b.TableFormat.ColumnAlignment.LEFT,supportsCellSelection:false,value:function(row){var nameEl=document.createElement('span');Polymer.dom(nameEl).textContent=row.name;if(row.description)
-nameEl.title=row.description;nameEl.style.textOverflow='ellipsis';return nameEl;},cmp:(a,b)=>a.name.localeCompare(b.name)}];for(var displayLabel of this.displayLabels)
-this.columns_.push(this.buildColumn_(displayLabel));}});tr.v.ui.registerValueSetView('tr-v-ui-value-set-table');return{};});'use strict';tr.exportTo('tr.v.ui',function(){Polymer({is:'breakdown-value-set-view',supportsValueSet:function(values){return false;},get tabLabel(){return'Breakdown View';},created:function(){this.values_=undefined;},get values(){return this.values_;},set values(values){this.values_=values;}});tr.v.ui.registerValueSetView('breakdown-value-set-view');return{};});'use strict';tr.exportTo('tr.ui',function(){Polymer({is:'tr-ui-sp-metrics-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.model_=undefined;this.rangeOfInterest_=undefined;this.metricLatenciesMs_=[];this.metrics_=[];tr.metrics.MetricRegistry.getAllRegisteredTypeInfos().forEach(function(m){if(m.constructor.name==='sampleMetric')
+this.parentController.changeViewSpecificBrushingState(viewId,newState);}};Polymer({is:'tr-v-ui-value-set-view',ready:function(){this.brushingStateController=new NullBrushingStateController();},attached:function(){this.brushingStateController.parentController=tr.c.BrushingStateController.getControllerForElement(this.parentNode);},set values(values){this.$.valueSetTable.values=values;}});return{};});'use strict';tr.exportTo('tr.ui',function(){Polymer({is:'tr-ui-sp-metrics-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.model_=undefined;this.rangeOfInterest_=undefined;this.metricLatenciesMs_=[];this.metrics_=[];tr.metrics.MetricRegistry.getAllRegisteredTypeInfos().forEach(function(m){if(m.constructor.name==='sampleMetric')
 return;this.metrics_.push({label:m.constructor.name,value:m.constructor.name});},this);this.settingsKey_='metrics-side-panel-metric-name';this.currentMetricName_='systemHealthMetrics';var metricSelector=tr.ui.b.createSelector(this,'currentMetricName_',this.settingsKey_,this.currentMetricName_,this.metrics_);Polymer.dom(this.$.top_left_controls).appendChild(metricSelector);metricSelector.addEventListener('change',this.onMetricChange_.bind(this));this.currentMetricTypeInfo_=tr.metrics.MetricRegistry.findTypeInfoWithName(this.currentMetricName_);this.recomputeButton_=tr.ui.b.createButton('Recompute',this.onRecompute_,this);Polymer.dom(this.$.top_left_controls).appendChild(this.recomputeButton_);},get metricLatencyMs(){return tr.b.Statistics.mean(this.metricLatenciesMs_);},onMetricChange_:function(){this.currentMetricTypeInfo_=tr.metrics.MetricRegistry.findTypeInfoWithName(this.currentMetricName_);this.metricLatenciesMs_=[];this.updateContents_();},onRecompute_:function(){this.updateContents_();},get textLabel(){return'Metrics';},supportsModel:function(m){if(!m){return{supported:false,reason:'No model available'};}
-return{supported:true};},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},get selection(){},set selection(_){},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(range){this.rangeOfInterest_=range;if(this.currentMetricTypeInfo_&&this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest){if((this.metricLatencyMs===undefined)||(this.metricLatencyMs<100)){this.updateContents_();}else{this.recomputeButton_.style.background='red';}}},updateContents_:function(){this.style.width='';tr.b.requestAnimationFrame(function(){var width=this.$.results.getBoundingClientRect().width+15;this.style.width=width+'px';},this);if(!this.model_){this.$.results.values=new tr.v.ValueSet([new tr.v.FailureValue('missing',{description:'Missing model',stack:''})]);return;}
-var values=new tr.v.ValueSet();var options={};if(this.currentMetricTypeInfo_&&this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest&&this.rangeOfInterest&&!this.rangeOfInterest.isEmpty)
-options.rangeOfInterest=this.rangeOfInterest;var startDate=new Date();try{this.currentMetricTypeInfo_.constructor(values,this.model_,options);}catch(err){var metricName=this.currentMetricTypeInfo_.constructor.name;console.warn(metricName+' could not be computed for the current model:\n'+
-err.stack);this.$.results.values=new tr.v.ValueSet([new tr.v.FailureValue('error',{description:err.message,stack:err.stack})]);return;}
+return{supported:true};},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},get selection(){},set selection(_){},get rangeOfInterest(){return this.rangeOfInterest_;},set rangeOfInterest(range){this.rangeOfInterest_=range;if(this.currentMetricTypeInfo_&&this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest){if((this.metricLatencyMs===undefined)||(this.metricLatencyMs<100)){this.updateContents_();}else{this.recomputeButton_.style.background='red';}}},updateContents_:function(){this.style.width='';Polymer.dom(this.$.error).textContent='';this.$.results.style.display='none';if(!this.model_){Polymer.dom(this.$.error).textContent='Missing model';return;}
+var options={metrics:[this.currentMetricName_]};if(this.currentMetricTypeInfo_&&this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest&&this.rangeOfInterest&&!this.rangeOfInterest.isEmpty)
+options.rangeOfInterest=this.rangeOfInterest;var startDate=new Date();try{var values=tr.metrics.runMetrics(this.model_,options);}catch(err){console.warn(this.currentMetricName_+' could not be computed for the current model:\n'+
+err.stack);Polymer.dom(this.$.error).textContent=err.message;return;}
 this.metricLatenciesMs_.push(new Date()-startDate);while(this.metricLatenciesMs_.length>20)
-this.metricLatenciesMs_.shift();this.recomputeButton_.style.background='';this.$.results.values=values;}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-sp-metrics-side-panel');});return{};});'use strict';Polymer({is:'tr-ui-e-s-alerts-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.rangeOfInterest_=new tr.b.Range();this.selection_=undefined;},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},set selection(selection){},set rangeOfInterest(rangeOfInterest){},selectAlertsOfType:function(alertTypeString){var alertsOfType=this.model_.alerts.filter(function(alert){return alert.title===alertTypeString;});var event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.model.EventSet(alertsOfType);this.dispatchEvent(event);},alertsByType_:function(alerts){var alertsByType={};alerts.forEach(function(alert){if(!alertsByType[alert.title])
+this.metricLatenciesMs_.shift();this.recomputeButton_.style.background='';this.$.results.style.display='';this.$.results.values=values;tr.b.requestAnimationFrame(function(){var width=this.$.results.getBoundingClientRect().width+15;this.style.width=width+'px';},this);}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-sp-metrics-side-panel');});return{};});'use strict';Polymer({is:'tr-ui-e-s-alerts-side-panel',behaviors:[tr.ui.behaviors.SidePanel],ready:function(){this.rangeOfInterest_=new tr.b.Range();this.selection_=undefined;},get model(){return this.model_;},set model(model){this.model_=model;this.updateContents_();},set selection(selection){},set rangeOfInterest(rangeOfInterest){},selectAlertsOfType:function(alertTypeString){var alertsOfType=this.model_.alerts.filter(function(alert){return alert.title===alertTypeString;});var event=new tr.model.RequestSelectionChangeEvent();event.selection=new tr.model.EventSet(alertsOfType);this.dispatchEvent(event);},alertsByType_:function(alerts){var alertsByType={};alerts.forEach(function(alert){if(!alertsByType[alert.title])
 alertsByType[alert.title]=[];alertsByType[alert.title].push(alert);});return alertsByType;},alertsTableRows_:function(alertsByType){return Object.keys(alertsByType).map(function(key){return{alertType:key,count:alertsByType[key].length};});},alertsTableColumns_:function(){return[{title:'Alert type',value:function(row){return row.alertType;},width:'180px'},{title:'Count',width:'100%',value:function(row){return row.count;}}];},createAlertsTable_:function(alerts){var alertsByType=this.alertsByType_(alerts);var table=document.createElement('tr-ui-b-table');table.tableColumns=this.alertsTableColumns_();table.tableRows=this.alertsTableRows_(alertsByType);table.selectionMode=tr.ui.b.TableFormat.SelectionMode.ROW;table.addEventListener('selection-changed',function(e){var row=table.selectedTableRow;if(row)
 this.selectAlertsOfType(row.alertType);}.bind(this));return table;},updateContents_:function(){Polymer.dom(this.$.result_area).textContent='';if(this.model_===undefined)
 return;var panel=this.createAlertsTable_(this.model_.alerts);Polymer.dom(this.$.result_area).appendChild(panel);},supportsModel:function(m){if(m==undefined){return{supported:false,reason:'Unknown tracing model'};}else if(m.alerts.length===0){return{supported:false,reason:'No alerts in tracing model'};}
 return{supported:true};},get textLabel(){return'Alerts';}});tr.ui.side_panel.SidePanelRegistry.register(function(){return document.createElement('tr-ui-e-s-alerts-side-panel');});
 </script>
-<!--CATAPULT_REV=NO_AUTO_UPDATE-->
+<!--CATAPULT_REV=NO_AUTO_UPDATE-->
\ No newline at end of file
diff --git a/catapult/systrace/systrace/test_data/compressed_atrace_data.txt b/catapult/systrace/systrace/test_data/compressed_atrace_data.txt
new file mode 100644
index 0000000..b0fdc74
--- /dev/null
+++ b/catapult/systrace/systrace/test_data/compressed_atrace_data.txt
Binary files differ
diff --git a/catapult/systrace/systrace/test_data/decompressed_atrace_data.txt b/catapult/systrace/systrace/test_data/decompressed_atrace_data.txt
new file mode 100644
index 0000000..a7fb5e8
--- /dev/null
+++ b/catapult/systrace/systrace/test_data/decompressed_atrace_data.txt
@@ -0,0 +1,1053 @@
+# tracer: nop
+#
+# entries-in-buffer/entries-written: 1042/1042   #P:6
+#
+#                                      _-----=> irqs-off
+#                                     / _----=> need-resched
+#                                    | / _---=> hardirq/softirq
+#                                    || / _--=> preempt-depth
+#                                    ||| /     delay
+#           TASK-PID    TGID   CPU#  ||||    TIMESTAMP  FUNCTION
+#              | |        |      |   ||||       |         |
+           <...>-19161 (-----) [001] ...1 683201.354908: tracing_mark_write: trace_event_clock_sync: parent_ts=683201.375000
+           <...>-19161 (-----) [001] ...1 683201.354926: tracing_mark_write: trace_event_clock_sync: realtime_ts=3720325137
+ ndroid.systemui-13580 (13580) [001] ...1 683202.104223: tracing_mark_write: S|13580|deliverInputEvent|263
+           <...>-18926 (-----) [000] ...1 683202.104223: tracing_mark_write: S|18926|deliverInputEvent|1024
+ ndroid.systemui-13580 (13580) [001] ...1 683202.104606: tracing_mark_write: F|13580|deliverInputEvent|263
+ ndroid.systemui-13580 (13580) [001] ...1 683202.104846: tracing_mark_write: S|13580|deliverInputEvent|267
+ ndroid.systemui-13580 (13580) [001] ...1 683202.105046: tracing_mark_write: F|13580|deliverInputEvent|267
+           <...>-18926 (-----) [000] ...1 683202.107286: tracing_mark_write: F|18926|deliverInputEvent|1024
+           <...>-18926 (-----) [005] ...1 683202.115809: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [005] ...1 683202.115860: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [005] ...1 683202.115972: tracing_mark_write: S|18926|deliverInputEvent|1041
+           <...>-18926 (-----) [005] ...1 683202.116506: tracing_mark_write: F|18926|deliverInputEvent|1041
+           <...>-18926 (-----) [005] ...1 683202.116849: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.116883: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.131660: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.131710: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.131833: tracing_mark_write: S|18926|deliverInputEvent|1056
+           <...>-18926 (-----) [004] ...1 683202.132351: tracing_mark_write: F|18926|deliverInputEvent|1056
+           <...>-18926 (-----) [004] ...1 683202.132442: tracing_mark_write: S|18926|deliverInputEvent|1071
+           <...>-18926 (-----) [004] ...1 683202.133158: tracing_mark_write: S|18926|animator:opacity|23751452
+           <...>-18964 (-----) [002] ...1 683202.133760: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [002] ...1 683202.133771: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.133780: tracing_mark_write: F|18926|deliverInputEvent|1071
+           <...>-18926 (-----) [004] ...1 683202.133853: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.133879: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.133993: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.134018: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.134075: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.134114: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18926 (-----) [004] ...1 683202.134466: tracing_mark_write: E
+           <...>-18964 (-----) [002] ...1 683202.134734: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [002] ...1 683202.134743: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [002] ...1 683202.134797: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [002] ...1 683202.135205: tracing_mark_write: E
+           <...>-18964 (-----) [002] ...1 683202.135213: tracing_mark_write: E
+           <...>-18964 (-----) [002] ...1 683202.135308: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [002] ...1 683202.135376: tracing_mark_write: E
+           <...>-18964 (-----) [002] ...1 683202.135819: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18989 (-----) [003] ...1 683202.136120: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.136133: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.136151: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136156: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.136165: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [002] ...1 683202.136165: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.136170: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.136177: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [002] ...1 683202.136177: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136186: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [002] ...1 683202.136204: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136210: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [003] ...1 683202.136220: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.136228: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136234: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136243: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136250: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [002] ...1 683202.136257: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [002] ...1 683202.136264: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136273: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [002] ...1 683202.136281: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136288: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [002] ...1 683202.136311: tracing_mark_write: E
+           <...>-18988 (-----) [002] ...1 683202.136318: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.136377: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.136393: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.136441: tracing_mark_write: C|18926|jitterNanos|6767359
+           <...>-18926 (-----) [004] ...1 683202.136470: tracing_mark_write: B|18926|commit
+           <...>-18926 (-----) [004] ...1 683202.136500: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.136531: tracing_mark_write: E
+           <...>-18964 (-----) [002] ...1 683202.137447: tracing_mark_write: E
+           <...>-18964 (-----) [001] ...1 683202.139502: tracing_mark_write: C|18926|hwui_Texture|1858380
+           <...>-18964 (-----) [001] ...1 683202.139532: tracing_mark_write: C|18926|hwui_Texture_count|157
+           <...>-18964 (-----) [001] ...1 683202.139542: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [001] ...1 683202.139552: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|0
+           <...>-18964 (-----) [001] ...1 683202.139562: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [001] ...1 683202.139571: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [001] ...1 683202.139771: tracing_mark_write: E
+           <...>-18964 (-----) [001] ...1 683202.139787: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [001] ...1 683202.139793: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.149085: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.149136: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.149185: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.149204: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.149511: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.149537: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.149595: tracing_mark_write: B|18926|measure
+           <...>-18926 (-----) [004] ...1 683202.149738: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.149762: tracing_mark_write: B|18926|layout
+           <...>-18926 (-----) [004] ...1 683202.157004: tracing_mark_write: S|18926|animator:bottom|177885989
+           <...>-18926 (-----) [004] ...1 683202.161620: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.161704: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.161755: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18926 (-----) [004] ...1 683202.165418: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.165542: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.165553: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.165586: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.165981: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.165989: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.166060: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.166072: tracing_mark_write: B|18926|computeOrdering
+           <...>-18926 (-----) [004] ...1 683202.166074: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.166116: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.166125: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.166296: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.166312: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18926 (-----) [004] ...1 683202.166314: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18988 (-----) [001] ...1 683202.166330: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.166342: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.166361: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.166363: tracing_mark_write: B|18926|animation
+           <...>-18988 (-----) [001] ...1 683202.166369: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.166408: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.166416: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.167058: tracing_mark_write: S|18926|animator|46267553
+           <...>-18926 (-----) [004] ...1 683202.167297: tracing_mark_write: S|18926|animator|219664070
+           <...>-18988 (-----) [001] ...1 683202.167362: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.167377: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.167386: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.167394: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.167402: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.167408: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.167429: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.167434: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.167467: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.167469: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [001] ...1 683202.167477: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [001] ...1 683202.167487: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.167494: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18926 (-----) [004] ...1 683202.167501: tracing_mark_write: B|18926|traversal
+           <...>-18964 (-----) [005] ...1 683202.167508: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18989 (-----) [001] ...1 683202.167529: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.167536: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [001] ...1 683202.167556: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.167561: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.167580: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.167626: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [005] ...1 683202.168483: tracing_mark_write: B|18926|Upload 63x63 Texture
+           <...>-18964 (-----) [005] ...1 683202.168780: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.168970: tracing_mark_write: B|18926|Upload 63x63 Texture
+           <...>-18926 (-----) [004] ...1 683202.168978: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.169188: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.169313: tracing_mark_write: B|18926|Upload 63x63 Texture
+           <...>-18964 (-----) [005] ...1 683202.169537: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.170878: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.171711: tracing_mark_write: C|18926|hwui_Texture|1906008
+           <...>-18964 (-----) [005] ...1 683202.171721: tracing_mark_write: C|18926|hwui_Texture_count|160
+           <...>-18964 (-----) [005] ...1 683202.171728: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.171735: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|0
+           <...>-18964 (-----) [005] ...1 683202.171742: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.171748: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.171872: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.171882: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.171886: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.171893: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.171896: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.171903: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.171909: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.171933: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.172095: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.172101: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.172156: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.172196: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172318: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.172326: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.172335: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172343: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.172354: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172360: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.172380: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172386: tracing_mark_write: E
+           <...>-18926 (-----) [000] ...1 683202.172480: tracing_mark_write: E
+           <...>-18926 (-----) [000] ...1 683202.172495: tracing_mark_write: E
+           <...>-18926 (-----) [000] ...1 683202.172539: tracing_mark_write: C|18926|jitterNanos|10113151
+           <...>-18926 (-----) [000] ...1 683202.172566: tracing_mark_write: B|18926|commit
+           <...>-18988 (-----) [001] ...1 683202.172593: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.172600: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18926 (-----) [000] ...1 683202.172603: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172607: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172615: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18964 (-----) [005] ...1 683202.172618: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [001] ...1 683202.172619: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172626: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18926 (-----) [000] ...1 683202.172642: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172646: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.172652: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.172681: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [001] ...1 683202.172687: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [001] ...1 683202.172695: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.172702: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [001] ...1 683202.172710: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.172716: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [001] ...1 683202.172741: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.172746: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.173451: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.173460: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.173489: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.173506: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.174384: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.179559: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [005] ...1 683202.179602: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [005] ...1 683202.179643: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.179663: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [005] ...1 683202.180146: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.180178: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [005] ...1 683202.180238: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [005] ...1 683202.180274: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18926 (-----) [005] ...1 683202.181062: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.181975: tracing_mark_write: C|18926|hwui_Texture|1906008
+           <...>-18964 (-----) [005] ...1 683202.181986: tracing_mark_write: C|18926|hwui_Texture_count|160
+           <...>-18964 (-----) [005] ...1 683202.181993: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.182000: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|0
+           <...>-18964 (-----) [005] ...1 683202.182006: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.182012: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.182117: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.182133: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.182138: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.182146: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.182152: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.182184: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.182379: tracing_mark_write: B|18926|Allocate 896x128 HW Layer
+           <...>-18964 (-----) [005] ...1 683202.182455: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.182548: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.182554: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.182809: tracing_mark_write: B|18926|Optimize HW Layer DisplayList Button 849x126
+           <...>-18964 (-----) [005] ...1 683202.182898: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.182956: tracing_mark_write: E
+           <...>-18926 (-----) [001] ...1 683202.183195: tracing_mark_write: E
+           <...>-18926 (-----) [001] ...1 683202.183223: tracing_mark_write: E
+           <...>-18926 (-----) [001] ...1 683202.183332: tracing_mark_write: C|18926|jitterNanos|4175322
+           <...>-18926 (-----) [001] ...1 683202.183361: tracing_mark_write: B|18926|commit
+           <...>-18926 (-----) [001] ...1 683202.183393: tracing_mark_write: E
+           <...>-18926 (-----) [001] ...1 683202.183428: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.184160: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.184173: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.184248: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184400: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.184411: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.184451: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184463: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.184478: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184485: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18964 (-----) [005] ...1 683202.184607: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [005] ...1 683202.184612: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184829: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184871: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184884: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.184891: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.184898: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184907: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.184910: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.184916: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [000] ...1 683202.184921: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [000] ...1 683202.184930: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [000] ...1 683202.184941: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.184949: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [000] ...1 683202.184961: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.184968: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [000] ...1 683202.184989: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.185017: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.185064: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.185072: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.187274: tracing_mark_write: B|18926|Issue HW Layer DisplayList Button 849x126
+           <...>-18964 (-----) [005] ...1 683202.187506: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.187645: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18964 (-----) [005] ...1 683202.188279: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.188289: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.188318: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.188332: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.188578: tracing_mark_write: B|18926|Build GL Shader
+           <...>-18964 (-----) [005] ...1 683202.188959: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.188972: tracing_mark_write: B|18926|Build GL Shader
+           <...>-18964 (-----) [005] ...1 683202.192088: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.192173: tracing_mark_write: B|18926|linkProgram
+           <...>-18926 (-----) [004] ...1 683202.196237: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.196276: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.196304: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.196320: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.196702: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.196732: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.196791: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.196824: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18926 (-----) [004] ...1 683202.197263: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.206362: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.207218: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208128: tracing_mark_write: C|18926|hwui_Texture|2364760
+           <...>-18964 (-----) [005] ...1 683202.208138: tracing_mark_write: C|18926|hwui_Texture_count|161
+           <...>-18964 (-----) [005] ...1 683202.208144: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.208150: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|1
+           <...>-18964 (-----) [005] ...1 683202.208156: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.208162: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.208236: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208244: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.208248: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208254: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.208260: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.208281: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.208469: tracing_mark_write: B|18926|Allocate 1088x192 HW Layer
+           <...>-18964 (-----) [005] ...1 683202.208515: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208545: tracing_mark_write: B|18926|Allocate 1088x192 HW Layer
+           <...>-18964 (-----) [005] ...1 683202.208559: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208574: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208580: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.208631: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208632: tracing_mark_write: B|18926|Optimize HW Layer DisplayList LinearLayout 1080x189
+           <...>-18964 (-----) [005] ...1 683202.208637: tracing_mark_write: B|18926|computeOrdering
+           <...>-18926 (-----) [004] ...1 683202.208642: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208644: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.208672: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208694: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208705: tracing_mark_write: B|18926|Optimize HW Layer DisplayList LinearLayout 1080x189
+           <...>-18964 (-----) [005] ...1 683202.208710: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.208716: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208741: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.208749: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.208798: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.208892: tracing_mark_write: F|18926|animator:opacity|23751452
+           <...>-18988 (-----) [003] ...1 683202.208930: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.208942: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.208956: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.208967: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18964 (-----) [005] ...1 683202.208971: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [005] ...1 683202.208975: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.208989: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.208995: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.209027: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.209034: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.209124: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.209127: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.209137: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.209140: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.209199: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.209205: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.209212: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.209220: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.209223: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.209228: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.209251: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.209257: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.209347: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.209357: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.209367: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.209421: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [003] ...1 683202.209476: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.209484: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [003] ...1 683202.209506: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.209511: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.210303: tracing_mark_write: B|18926|Issue HW Layer DisplayList LinearLayout 1080x189
+           <...>-18964 (-----) [005] ...1 683202.210644: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.211769: tracing_mark_write: B|18926|Issue HW Layer DisplayList LinearLayout 1080x189
+           <...>-18964 (-----) [005] ...1 683202.212040: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.212151: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18964 (-----) [005] ...1 683202.212697: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.212705: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.212733: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.212747: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.212810: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.212843: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.212878: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.212895: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.213187: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.213221: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.213321: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.213360: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [005] ...1 683202.214038: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.214843: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215111: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [005] ...1 683202.215118: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [005] ...1 683202.215122: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.215127: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [005] ...1 683202.215131: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.215135: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.215203: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215210: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.215212: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215219: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.215223: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.215242: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.215444: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215452: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.215496: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.215504: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215506: tracing_mark_write: B|18926|computeOrdering
+           <...>-18926 (-----) [004] ...1 683202.215527: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215546: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215665: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.215676: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.215691: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215699: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18988 (-----) [003] ...1 683202.215702: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18964 (-----) [005] ...1 683202.215703: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215718: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215725: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.215758: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215765: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215840: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.215843: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.215852: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.215854: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215907: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.215914: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.215916: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [003] ...1 683202.215922: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215930: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.215933: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215939: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.215959: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.215964: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.215995: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.216002: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.216010: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.216016: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [003] ...1 683202.216028: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.216034: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [003] ...1 683202.216054: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.216059: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.216381: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.216388: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.216407: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.216416: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.217126: tracing_mark_write: E
+           <...>-18964 (-----) [001] ...1 683202.222253: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [001] ...1 683202.222264: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [001] ...1 683202.222271: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [001] ...1 683202.222279: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [001] ...1 683202.222287: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [001] ...1 683202.222295: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [001] ...1 683202.222397: tracing_mark_write: E
+           <...>-18964 (-----) [001] ...1 683202.222406: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [001] ...1 683202.222421: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.229007: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.229029: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [004] ...1 683202.229037: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.229039: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.230451: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.230484: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.230507: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.230518: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.230755: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.230773: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.230818: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.230848: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18926 (-----) [004] ...1 683202.231162: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231162: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.231169: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231178: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.231182: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.231203: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.231342: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231347: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.231381: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.231388: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231392: tracing_mark_write: B|18926|computeOrdering
+           <...>-18926 (-----) [004] ...1 683202.231408: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231424: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231572: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [005] ...1 683202.231576: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231706: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18964 (-----) [005] ...1 683202.231715: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.231718: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231719: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.231728: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.231730: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231735: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231746: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.231771: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.231774: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [003] ...1 683202.231779: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.231811: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231818: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231832: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.231837: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.231844: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231851: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.231854: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231859: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.231883: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.231889: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.232044: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [000] ...1 683202.232053: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [000] ...1 683202.232063: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.232071: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [000] ...1 683202.232080: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.232085: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [000] ...1 683202.232107: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.232113: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.232269: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.232275: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.232293: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.232303: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.232352: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.232356: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.232363: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.232367: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.232939: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.233604: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [005] ...1 683202.233612: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [005] ...1 683202.233616: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.233621: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [005] ...1 683202.233626: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.233630: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.233688: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.233694: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [005] ...1 683202.233696: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.233700: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.233710: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.245778: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.245799: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [005] ...1 683202.245805: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.245807: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.246567: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [005] ...1 683202.246598: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [005] ...1 683202.246649: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.246661: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [005] ...1 683202.246881: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.246894: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [005] ...1 683202.246927: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [005] ...1 683202.246948: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [004] ...1 683202.247070: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [004] ...1 683202.247077: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.247196: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.247236: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [004] ...1 683202.247240: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [004] ...1 683202.247263: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [004] ...1 683202.247407: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.247412: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.247443: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.247450: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.247457: tracing_mark_write: B|18926|computeOrdering
+           <...>-18926 (-----) [005] ...1 683202.247465: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.247487: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.247631: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [004] ...1 683202.247634: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247744: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18964 (-----) [004] ...1 683202.247756: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18988 (-----) [003] ...1 683202.247756: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.247759: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.247768: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [004] ...1 683202.247772: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247772: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247783: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.247805: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247812: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18964 (-----) [004] ...1 683202.247819: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [003] ...1 683202.247847: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247854: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247864: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.247870: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.247876: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247883: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.247886: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247891: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.247912: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.247917: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.247948: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.247955: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.247963: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.247970: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [003] ...1 683202.247981: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.247986: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [003] ...1 683202.248006: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.248011: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.248259: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.248265: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.248282: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.248292: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.248345: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.248349: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.248358: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.248365: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.248952: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.249556: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [004] ...1 683202.249562: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [004] ...1 683202.249567: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [004] ...1 683202.249572: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [004] ...1 683202.249576: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [004] ...1 683202.249580: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [004] ...1 683202.249663: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.249669: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [004] ...1 683202.249671: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.249676: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.249684: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.262890: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.262909: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [004] ...1 683202.262917: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.262919: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.263007: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [005] ...1 683202.263032: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [005] ...1 683202.263055: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.263064: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [005] ...1 683202.263309: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.263323: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [005] ...1 683202.263356: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [005] ...1 683202.263379: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [004] ...1 683202.263518: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [004] ...1 683202.263523: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.263649: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.263700: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [004] ...1 683202.263704: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [004] ...1 683202.263729: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [004] ...1 683202.263882: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.263888: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.263946: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [004] ...1 683202.263978: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.264105: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.264116: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.264139: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.264149: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [004] ...1 683202.264153: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264271: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.264282: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.264291: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [004] ...1 683202.264294: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264297: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.264304: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [004] ...1 683202.264307: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264309: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.264323: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264329: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18964 (-----) [004] ...1 683202.264355: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [003] ...1 683202.264370: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264377: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264389: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.264395: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.264401: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264408: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.264411: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264416: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.264439: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.264444: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.264476: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.264483: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.264491: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.264498: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [003] ...1 683202.264507: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.264513: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [003] ...1 683202.264532: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.264538: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.264793: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.264799: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.264818: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.264828: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.264877: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.264881: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.264890: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.264896: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.265471: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.266007: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [004] ...1 683202.266013: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [004] ...1 683202.266018: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [004] ...1 683202.266023: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [004] ...1 683202.266027: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [004] ...1 683202.266031: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [004] ...1 683202.266086: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.266092: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [004] ...1 683202.266095: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.266099: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.266107: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.279197: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.279278: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [005] ...1 683202.279290: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.279292: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.280270: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [005] ...1 683202.280317: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [005] ...1 683202.280361: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.280373: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [005] ...1 683202.280645: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.280659: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [005] ...1 683202.280703: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [005] ...1 683202.280735: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [004] ...1 683202.281109: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18926 (-----) [005] ...1 683202.281109: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281118: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281131: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [004] ...1 683202.281135: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [004] ...1 683202.281160: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [004] ...1 683202.281328: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281334: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.281376: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.281383: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281387: tracing_mark_write: B|18926|computeOrdering
+           <...>-18926 (-----) [005] ...1 683202.281405: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281422: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281607: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [004] ...1 683202.281612: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281740: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18964 (-----) [004] ...1 683202.281751: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18988 (-----) [003] ...1 683202.281754: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.281755: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.281764: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [004] ...1 683202.281766: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281771: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281783: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.281808: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281815: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18964 (-----) [004] ...1 683202.281816: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [003] ...1 683202.281854: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281861: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281872: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [003] ...1 683202.281878: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [003] ...1 683202.281885: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281891: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [003] ...1 683202.281895: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281900: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [003] ...1 683202.281919: tracing_mark_write: E
+           <...>-18988 (-----) [003] ...1 683202.281924: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.281958: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [003] ...1 683202.281965: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [003] ...1 683202.281975: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.281982: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [003] ...1 683202.281993: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.281999: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [003] ...1 683202.282018: tracing_mark_write: E
+           <...>-18989 (-----) [003] ...1 683202.282024: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.282331: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.282338: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.282357: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.282367: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.282425: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.282429: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.282438: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.282444: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.283093: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.283996: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [004] ...1 683202.284005: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [004] ...1 683202.284011: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [004] ...1 683202.284016: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [004] ...1 683202.284020: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [004] ...1 683202.284025: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [004] ...1 683202.284112: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.284119: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [004] ...1 683202.284121: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.284125: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.284135: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.295969: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.296010: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [004] ...1 683202.296019: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.296021: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.297071: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.297129: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.297210: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.297224: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.297739: tracing_mark_write: S|18926|animator|122130055
+           <...>-18926 (-----) [004] ...1 683202.297847: tracing_mark_write: S|18926|animator|172949940
+           <...>-18926 (-----) [004] ...1 683202.297932: tracing_mark_write: S|18926|animator|190890461
+           <...>-18926 (-----) [004] ...1 683202.298010: tracing_mark_write: S|18926|animator|20058450
+           <...>-18926 (-----) [004] ...1 683202.298087: tracing_mark_write: S|18926|animator|184847395
+           <...>-18926 (-----) [004] ...1 683202.298200: tracing_mark_write: S|18926|animator|162825504
+           <...>-18926 (-----) [004] ...1 683202.298288: tracing_mark_write: S|18926|animator|153919193
+           <...>-18926 (-----) [004] ...1 683202.298327: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.298340: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.298377: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.298402: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [005] ...1 683202.298521: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [005] ...1 683202.298566: tracing_mark_write: B|18926|prepareAndDraw
+           <...>-18964 (-----) [005] ...1 683202.298580: tracing_mark_write: B|18926|prepareTree
+           <...>-18926 (-----) [004] ...1 683202.298754: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.298770: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.298832: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.298903: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299039: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [000] ...1 683202.299052: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [000] ...1 683202.299068: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299079: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18964 (-----) [005] ...1 683202.299087: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.299090: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299099: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.299100: tracing_mark_write: B|18926|LinearLayout alpha caused saveLayer 1080x189
+           <...>-18964 (-----) [005] ...1 683202.299103: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299108: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18964 (-----) [005] ...1 683202.299153: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18988 (-----) [000] ...1 683202.299155: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299162: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299178: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [000] ...1 683202.299184: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [000] ...1 683202.299191: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299198: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [000] ...1 683202.299201: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299207: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [000] ...1 683202.299227: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.299233: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.299267: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [000] ...1 683202.299274: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [000] ...1 683202.299284: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.299291: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [000] ...1 683202.299307: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.299313: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [000] ...1 683202.299334: tracing_mark_write: E
+           <...>-18989 (-----) [000] ...1 683202.299339: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.299552: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.299559: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.299576: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.299587: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.299659: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.299663: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.299672: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.299678: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.299902: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301062: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [005] ...1 683202.301075: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [005] ...1 683202.301084: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.301094: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [005] ...1 683202.301103: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.301112: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.301214: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301220: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301231: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.301236: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301247: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.301254: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.301281: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.301489: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301497: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301520: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.301537: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.301557: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.301798: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.301813: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.301858: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.312850: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.312883: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [005] ...1 683202.312896: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.312900: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.313023: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.313069: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.313105: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.313125: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.313914: tracing_mark_write: F|18926|animator|46267553
+           <...>-18926 (-----) [004] ...1 683202.314201: tracing_mark_write: F|18926|animator|219664070
+           <...>-18926 (-----) [004] ...1 683202.314488: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.314515: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.314638: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.314704: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [005] ...1 683202.314999: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.315016: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.315048: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [005] ...1 683202.315053: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.315061: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.315072: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.315243: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.315872: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.315882: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.315916: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.316177: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.316188: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.316281: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.316338: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.316502: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.316515: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.316532: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.316543: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.316560: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.316568: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18926 (-----) [004] ...1 683202.316571: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.316575: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [005] ...1 683202.316581: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.316585: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.316608: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.316673: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.316834: tracing_mark_write: C|18926|jitterNanos|5552900
+           <...>-18926 (-----) [004] ...1 683202.316973: tracing_mark_write: B|18926|commit
+           <...>-18989 (-----) [001] ...1 683202.316982: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18964 (-----) [005] ...1 683202.316984: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18989 (-----) [001] ...1 683202.316992: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [001] ...1 683202.317003: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.317010: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.317013: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [001] ...1 683202.317026: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.317032: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18926 (-----) [004] ...1 683202.317040: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.317054: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.317060: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.317090: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.317096: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.317103: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.317111: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.317115: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.317120: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.317141: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.317146: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.317779: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.317790: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.317823: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.317844: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.317935: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.317944: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.317964: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.317977: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.319029: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.319801: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [005] ...1 683202.319813: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [005] ...1 683202.319822: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.319832: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [005] ...1 683202.319841: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.319850: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.319939: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.320015: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.320033: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.329503: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.329538: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [005] ...1 683202.329557: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.329562: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.329759: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.329819: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.329857: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.329877: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.330409: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.330434: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.330505: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.330553: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18926 (-----) [004] ...1 683202.331128: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.331212: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [004] ...1 683202.331227: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.331237: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [004] ...1 683202.331245: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [004] ...1 683202.331281: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [004] ...1 683202.331518: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.331539: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.331639: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [004] ...1 683202.331700: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.331876: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.331892: tracing_mark_write: E
+           <...>-18926 (-----) [005] ...1 683202.331933: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.331988: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [004] ...1 683202.331994: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332075: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.332088: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.332107: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332119: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.332136: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332143: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.332189: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332195: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.332319: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18989 (-----) [001] ...1 683202.332349: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [001] ...1 683202.332357: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [001] ...1 683202.332368: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.332376: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [001] ...1 683202.332385: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.332391: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [001] ...1 683202.332412: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.332417: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332446: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.332453: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.332459: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332466: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.332469: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332475: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.332499: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.332504: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.333108: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.333119: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.333156: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.333176: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.333267: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [004] ...1 683202.333362: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [004] ...1 683202.333387: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.333405: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.334671: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.335531: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [004] ...1 683202.335544: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [004] ...1 683202.335554: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [004] ...1 683202.335563: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [004] ...1 683202.335572: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [004] ...1 683202.335582: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [004] ...1 683202.335733: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.335745: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [004] ...1 683202.335749: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.335757: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.335773: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.344870: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [004] ...1 683202.344923: tracing_mark_write: B|18926|queue mFrameCallbackTask
+           <...>-18964 (-----) [004] ...1 683202.344939: tracing_mark_write: E
+           <...>-18964 (-----) [004] ...1 683202.344943: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.346588: tracing_mark_write: B|18926|Choreographer#doFrame
+           <...>-18926 (-----) [004] ...1 683202.346695: tracing_mark_write: B|18926|input
+           <...>-18926 (-----) [004] ...1 683202.346761: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.346782: tracing_mark_write: B|18926|animation
+           <...>-18926 (-----) [004] ...1 683202.347462: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.347492: tracing_mark_write: B|18926|traversal
+           <...>-18926 (-----) [004] ...1 683202.347562: tracing_mark_write: B|18926|draw
+           <...>-18926 (-----) [004] ...1 683202.347603: tracing_mark_write: B|18926|Record View#draw()
+           <...>-18964 (-----) [005] ...1 683202.348107: tracing_mark_write: B|18926|notifyFramePending
+           <...>-18964 (-----) [005] ...1 683202.348120: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.348131: tracing_mark_write: B|18926|dispatchFrameCallbacks
+           <...>-18964 (-----) [005] ...1 683202.348135: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.348143: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.348155: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.348158: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.348226: tracing_mark_write: B|18926|DrawFrame
+           <...>-18964 (-----) [005] ...1 683202.348235: tracing_mark_write: B|18926|syncFrameState
+           <...>-18964 (-----) [005] ...1 683202.348270: tracing_mark_write: B|18926|prepareTree
+           <...>-18964 (-----) [005] ...1 683202.348510: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.348519: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.348615: tracing_mark_write: B|18926|computeOrdering
+           <...>-18964 (-----) [005] ...1 683202.348675: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.348863: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.348877: tracing_mark_write: E
+           <...>-18926 (-----) [004] ...1 683202.348910: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.348946: tracing_mark_write: B|18926|Button alpha caused saveLayer 849x126
+           <...>-18964 (-----) [005] ...1 683202.348953: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.348986: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [000] ...1 683202.348999: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [000] ...1 683202.349018: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.349030: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [000] ...1 683202.349049: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.349056: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [000] ...1 683202.349096: tracing_mark_write: E
+           <...>-18988 (-----) [000] ...1 683202.349103: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.349254: tracing_mark_write: B|18926|flush drawing commands
+           <...>-18989 (-----) [001] ...1 683202.349316: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18989 (-----) [001] ...1 683202.349326: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18989 (-----) [001] ...1 683202.349338: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.349346: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18989 (-----) [001] ...1 683202.349359: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.349365: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18989 (-----) [001] ...1 683202.349386: tracing_mark_write: E
+           <...>-18989 (-----) [001] ...1 683202.349392: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.349424: tracing_mark_write: B|18926|shadow tessellation
+           <...>-18988 (-----) [001] ...1 683202.349430: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18988 (-----) [001] ...1 683202.349438: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.349445: tracing_mark_write: B|18926|tessellateAmbientShadow
+           <...>-18988 (-----) [001] ...1 683202.349448: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.349454: tracing_mark_write: B|18926|tessellateSpotShadow
+           <...>-18988 (-----) [001] ...1 683202.349473: tracing_mark_write: E
+           <...>-18988 (-----) [001] ...1 683202.349479: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.350099: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.350115: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.350172: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.350197: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.350339: tracing_mark_write: B|18926|tessellatePath
+           <...>-18964 (-----) [005] ...1 683202.350349: tracing_mark_write: B|18926|approximatePathOutlineVertices
+           <...>-18964 (-----) [005] ...1 683202.350368: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.350381: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.351526: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.352548: tracing_mark_write: C|18926|hwui_Texture|4035928
+           <...>-18964 (-----) [005] ...1 683202.352562: tracing_mark_write: C|18926|hwui_Texture_count|163
+           <...>-18964 (-----) [005] ...1 683202.352571: tracing_mark_write: C|18926|hwui_OffscreenBuffer|0
+           <...>-18964 (-----) [005] ...1 683202.352580: tracing_mark_write: C|18926|hwui_OffscreenBuffer_count|3
+           <...>-18964 (-----) [005] ...1 683202.352589: tracing_mark_write: C|18926|hwui_Layer|0
+           <...>-18964 (-----) [005] ...1 683202.352599: tracing_mark_write: C|18926|hwui_Layer_count|0
+           <...>-18964 (-----) [005] ...1 683202.352734: tracing_mark_write: E
+           <...>-18964 (-----) [005] ...1 683202.352745: tracing_mark_write: B|18926|drainDisplayEventQueue
+           <...>-18964 (-----) [005] ...1 683202.352760: tracing_mark_write: E
diff --git a/catapult/systrace/systrace/tracing_agents/__init__.py b/catapult/systrace/systrace/tracing_agents/__init__.py
index c99428c..859d779 100644
--- a/catapult/systrace/systrace/tracing_agents/__init__.py
+++ b/catapult/systrace/systrace/tracing_agents/__init__.py
@@ -16,17 +16,26 @@
 GET_RESULTS_TIMEOUT = 30.0
 
 
+class TracingConfig(object):
+  '''Store the tracing configuration options for all Systrace agents. If there
+  are ever any options that are to be shared between all of the agents, those
+  options should go here.
+  '''
+  def __init__(self):
+    pass
+
+
 class TracingAgent(object):
   def __init__(self):
     pass
 
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
     '''Starts running the trace for this agent. Stops with timeout if
     not completed within timeout interval.
 
     Args:
-        options: Tracing options.
-        categories: Categories of trace events to record.
+        config: TracingConfig subclass containing agent-specific options
+                and categories.
         timeout: Timeout interval in seconds.
 
     Returns:
diff --git a/catapult/systrace/systrace/tracing_agents/atrace_agent.py b/catapult/systrace/systrace/tracing_agents/atrace_agent.py
index 83f3889..64be870 100644
--- a/catapult/systrace/systrace/tracing_agents/atrace_agent.py
+++ b/catapult/systrace/systrace/tracing_agents/atrace_agent.py
@@ -2,15 +2,16 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-import re
+import optparse
 import py_utils
+import re
 import subprocess
 import sys
 import threading
 import zlib
 
 from devil.android import device_utils
-from py_trace_event import trace_time
+from py_trace_event import trace_time as trace_time_module
 from systrace import trace_result
 from systrace import tracing_agents
 from systrace import util
@@ -39,76 +40,74 @@
 BOOTTRACE_CATEGORIES = '/data/misc/boottrace/categories'
 
 
-def list_categories(options):
+def list_categories(config):
   """List the possible trace event categories.
 
-  This function needs the tracing options since it needs to get the serial
+  This function needs the tracing config since it needs to get the serial
   number of the device to send a command to.
 
   Args:
-      options: Tracing options.
+      config: Tracing config.
   """
-  devutils = device_utils.DeviceUtils(options.device_serial_number)
+  devutils = device_utils.DeviceUtils(config.device_serial_number)
   print '\n'.join(devutils.RunShellCommand(LIST_CATEGORIES_ARGS))
   if not devutils.HasRoot():
     print '\nNOTE: more categories may be available with adb root\n'
 
 
-def get_available_categories(options):
+def get_available_categories(config):
   """Gets the list of atrace categories available for tracing.
   Args:
-      options: Tracing options.
+      config: Tracing config.
   """
-  devutils = device_utils.DeviceUtils(options.device_serial_number)
+  devutils = device_utils.DeviceUtils(config.device_serial_number)
   categories_output = devutils.RunShellCommand(LIST_CATEGORIES_ARGS)
   return [c.split('-')[0].strip() for c in categories_output]
 
 
-def try_create_agent(options):
+def try_create_agent(config):
   """Create an Atrace agent.
 
   Args:
-      options: Command line options.
-      categories: Categories of trace events to capture.
+      config: Command line config.
   """
-  if options.target != 'android':
-    return False
-  if options.from_file is not None:
-    return False
+  if config.target != 'android':
+    return None
+  if config.from_file is not None:
+    return None
 
   # Check device SDK version.
   device_sdk_version = util.get_device_sdk_version()
   if device_sdk_version <= 17:
     print ('Device SDK versions <= 17 not supported.\n'
            'Your device SDK version is %d.' % device_sdk_version)
-    return False
-  if device_sdk_version <= 22 and options.boot:
+    return None
+  if device_sdk_version <= 22 and config.boot:
     print ('--boot option does not work on the device SDK '
            'version 22 or before.\nYour device SDK version '
            'is %d.' % device_sdk_version)
-    return False
+    return None
 
-  return BootAgent() if options.boot else AtraceAgent()
+  return BootAgent() if config.boot else AtraceAgent()
 
-def _construct_extra_atrace_args(options, categories):
+def _construct_extra_atrace_args(config, categories):
   """Construct extra arguments (-a, -k, categories) for atrace command.
 
   Args:
-      options: Tracing options.
-      categories: Categories of trace events to capture.
+      config: Tracing config.
   """
   extra_args = []
 
-  if options.app_name is not None:
-    extra_args.extend(['-a', options.app_name])
+  if config.app_name is not None:
+    extra_args.extend(['-a', config.app_name])
 
-  if options.kfuncs is not None:
-    extra_args.extend(['-k', options.kfuncs])
+  if config.kfuncs is not None:
+    extra_args.extend(['-k', config.kfuncs])
 
   extra_args.extend(categories)
   return extra_args
 
-def _construct_atrace_args(options, categories):
+def _construct_atrace_args(config, categories):
   """Builds the command used to invoke a trace process.
   Returns:
     A tuple where the first element is an array of command arguments, and
@@ -117,24 +116,25 @@
   """
   atrace_args = ATRACE_BASE_ARGS[:]
 
-  if options.compress_trace_data:
+  if config.compress_trace_data:
     atrace_args.extend(['-z'])
 
-  if (options.trace_time is not None) and (options.trace_time > 0):
-    atrace_args.extend(['-t', str(options.trace_time)])
+  if (config.trace_time is not None) and (config.trace_time > 0):
+    atrace_args.extend(['-t', str(config.trace_time)])
 
-  if (options.trace_buf_size is not None) and (options.trace_buf_size > 0):
-    atrace_args.extend(['-b', str(options.trace_buf_size)])
+  if (config.trace_buf_size is not None) and (config.trace_buf_size > 0):
+    atrace_args.extend(['-b', str(config.trace_buf_size)])
 
   elif 'sched' in categories:
     # 'sched' is a high-volume tag, double the default buffer size
     # to accommodate that
     atrace_args.extend(['-b', '4096'])
-  extra_args = _construct_extra_atrace_args(options, categories)
+  extra_args = _construct_extra_atrace_args(config, categories)
 
   atrace_args.extend(extra_args)
   return atrace_args
 
+
 class AtraceAgent(tracing_agents.TracingAgent):
 
   def __init__(self):
@@ -145,23 +145,24 @@
     self._collection_thread = None
     self._device_utils = None
     self._device_serial_number = None
-    self._options = None
+    self._config = None
     self._categories = None
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
-    self._options = options
-    self._categories = categories
+  def StartAgentTracing(self, config, timeout=None):
+    self._config = config
+    self._categories = config.atrace_categories
     if not self._categories:
       self._categories = DEFAULT_CATEGORIES
-    avail_cats = get_available_categories(options)
+    avail_cats = get_available_categories(config)
     unavailable = [x for x in self._categories if x not in avail_cats]
     self._categories = [x for x in self._categories if x in avail_cats]
     if unavailable:
       print 'These categories are unavailable: ' + ' '.join(unavailable)
-    self._device_utils = device_utils.DeviceUtils(options.device_serial_number)
-    self._device_serial_number = options.device_serial_number
-    self._tracer_args = _construct_atrace_args(options, self._categories)
+    self._device_utils = device_utils.DeviceUtils(config.device_serial_number)
+    self._device_serial_number = config.device_serial_number
+    self._tracer_args = _construct_atrace_args(config,
+                                               self._categories)
     self._device_utils.RunShellCommand(self._tracer_args + ['--async_start'])
     return True
 
@@ -205,7 +206,7 @@
         ' /sys/kernel/debug/tracing/trace_marker' % sync_id
     with self._device_utils.adb.PersistentShell(
         self._device_serial_number) as shell:
-      t1 = trace_time.Now()
+      t1 = trace_time_module.Now()
       shell.RunCommand(cmd, close=True)
       did_record_sync_marker_callback(t1, sync_id)
 
@@ -255,24 +256,24 @@
                             'written.')
       sys.exit(1)
 
-    if self._options.fix_threads:
+    if self._config.fix_threads:
       # Issue ps command to device and patch thread names
       ps_dump = do_preprocess_adb_cmd('ps -t',
-                                      self._options.device_serial_number)
+                                      self._config.device_serial_number)
       if ps_dump is not None:
         thread_names = extract_thread_list(ps_dump)
         trace_data = fix_thread_names(trace_data, thread_names)
 
-    if self._options.fix_tgids:
+    if self._config.fix_tgids:
       # Issue printf command to device and patch tgids
       procfs_dump = do_preprocess_adb_cmd('printf "%s\n" ' +
                                           '/proc/[0-9]*/task/[0-9]*',
-                                          self._options.device_serial_number)
+                                          self._config.device_serial_number)
       if procfs_dump is not None:
         pid2_tgid = extract_tgids(procfs_dump)
         trace_data = fix_missing_tgids(trace_data, pid2_tgid)
 
-    if self._options.fix_circular:
+    if self._config.fix_circular:
       trace_data = fix_circular_traces(trace_data)
 
     return trace_data
@@ -285,10 +286,10 @@
     super(BootAgent, self).__init__()
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
-    self._options = options
+  def StartAgentTracing(self, config, timeout=None):
+    self._config = config
     try:
-      setup_args = _construct_boot_setup_command(options, categories)
+      setup_args = _construct_boot_setup_command(config)
       subprocess.check_call(setup_args)
     except OSError as error:
       print >> sys.stderr, (
@@ -299,7 +300,7 @@
 
   def _dump_trace(self): #called by StopAgentTracing
     """Dumps the running trace asynchronously and returns the dumped trace."""
-    dump_cmd = _construct_boot_trace_command(self._options)
+    dump_cmd = _construct_boot_trace_command(self._config)
     return self._device_utils.RunShellCommand(dump_cmd, raw_output=True)
 
   def _stop_trace(self): # called by _collect_trace_data via StopAgentTracing
@@ -307,21 +308,22 @@
     # This is a member function for consistency with AtraceAgent
     pass # don't need to stop separately; already done in dump_trace
 
-def _construct_boot_setup_command(options, categories):
-  echo_args = ['echo'] + categories + ['>', BOOTTRACE_CATEGORIES]
+def _construct_boot_setup_command(config):
+  echo_args = (['echo'] + config.atrace_categories +
+               ['>', BOOTTRACE_CATEGORIES])
   setprop_args = ['setprop', BOOTTRACE_PROP, '1']
   reboot_args = ['reboot']
   return util.construct_adb_shell_command(
       echo_args + ['&&'] + setprop_args + ['&&'] + reboot_args,
-      options.device_serial_number)
+      config.device_serial_number)
 
-def _construct_boot_trace_command(options):
+def _construct_boot_trace_command(config):
   atrace_args = ['atrace', '--async_stop']
   setprop_args = ['setprop', BOOTTRACE_PROP, '0']
   rm_args = ['rm', BOOTTRACE_CATEGORIES]
   return util.construct_adb_shell_command(
         atrace_args + ['&&'] + setprop_args + ['&&'] + rm_args,
-        options.device_serial_number)
+        config.device_serial_number)
 
 
 def extract_thread_list(trace_text):
@@ -511,3 +513,56 @@
 
   dump = ''.join(dump)
   return dump
+
+
+class AtraceConfig(tracing_agents.TracingConfig):
+  def __init__(self, atrace_categories, trace_buf_size, kfuncs,
+               app_name, fix_threads, fix_tgids, fix_circular,
+               compress_trace_data, boot, from_file, device_serial_number,
+               trace_time, target):
+    tracing_agents.TracingConfig.__init__(self)
+    self.atrace_categories = atrace_categories
+    self.trace_buf_size = trace_buf_size
+    self.kfuncs = kfuncs
+    self.app_name = app_name
+    self.fix_threads = fix_threads
+    self.fix_tgids = fix_tgids
+    self.fix_circular = fix_circular
+    self.compress_trace_data = compress_trace_data
+    self.boot = boot
+    self.from_file = from_file
+    self.device_serial_number = device_serial_number
+    self.trace_time = trace_time
+    self.target = target
+
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Atrace options')
+  options.add_option('--atrace-categories', dest='atrace_categories',
+                     help='Select atrace categories with a comma-delimited '
+                     'list, e.g. --atrace-categories=cat1,cat2,cat3')
+  options.add_option('-k', '--ktrace', dest='kfuncs', action='store',
+                     help='specify a comma-separated list of kernel functions '
+                     'to trace')
+  options.add_option('-a', '--app', dest='app_name', default=None,
+                     type='string', action='store',
+                     help='enable application-level tracing for '
+                     'comma-separated list of app cmdlines')
+  options.add_option('--no-compress', dest='compress_trace_data',
+                     default=True, action='store_false',
+                     help='Tell the device not to send the trace data in '
+                     'compressed form.')
+  options.add_option('--boot', dest='boot', default=False, action='store_true',
+                     help='reboot the device with tracing during boot enabled.'
+                     'The report is created by hitting Ctrl+C after the device'
+                     'has booted up.')
+  return options
+
+def get_config(options):
+  return AtraceConfig(options.atrace_categories,
+                      options.trace_buf_size, options.kfuncs,
+                      options.app_name, options.fix_threads,
+                      options.fix_tgids, options.fix_circular,
+                      options.compress_trace_data, options.boot,
+                      options.from_file, options.device_serial_number,
+                      options.trace_time, options.target)
diff --git a/catapult/systrace/systrace/tracing_agents/atrace_agent_unittest.py b/catapult/systrace/systrace/tracing_agents/atrace_agent_unittest.py
index 73b3251..8bf6585 100755
--- a/catapult/systrace/systrace/tracing_agents/atrace_agent_unittest.py
+++ b/catapult/systrace/systrace/tracing_agents/atrace_agent_unittest.py
@@ -54,6 +54,7 @@
   @decorators.HostOnlyTest
   def test_construct_atrace_args(self):
     options, categories = run_systrace.parse_options(SYSTRACE_CMD)
+    options.atrace_categories = categories
     tracer_args = atrace_agent._construct_atrace_args(options, categories)
     self.assertEqual(' '.join(TRACE_ARGS), ' '.join(tracer_args))
 
@@ -65,8 +66,8 @@
       atrace_data_raw = f2.read()
       options, categories = run_systrace.parse_options(STOP_FIX_UPS)
       agent = atrace_agent.AtraceAgent()
-      agent._options = options
-      agent._categories = categories
+      agent._config = options
+      agent._config.atrace_categories = categories
       trace_data = agent._preprocess_trace_data(atrace_data_raw)
       self.assertEqual(atrace_data, trace_data)
 
@@ -141,6 +142,7 @@
     tracer_args = atrace_agent._construct_boot_trace_command(options)
     self.assertEqual(' '.join(TRACE_BOOT_CMD), ' '.join(tracer_args))
 
+
 if __name__ == "__main__":
   logging.getLogger().setLevel(logging.DEBUG)
   unittest.main(verbosity=2)
diff --git a/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent.py b/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent.py
index ec2ab37..77a468b 100644
--- a/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent.py
+++ b/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent.py
@@ -2,11 +2,10 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import os
 import py_utils
 import re
 
-from devil.utils import cmd_helper
-
 from systrace import trace_result
 from systrace import tracing_agents
 from systrace.tracing_agents import atrace_agent
@@ -24,20 +23,38 @@
   else:
     return False
 
+
+class AtraceFromFileConfig(tracing_agents.TracingConfig):
+  def __init__(self, fix_circular, from_file):
+    tracing_agents.TracingConfig.__init__(self)
+    self.fix_circular = fix_circular
+    self.from_file = from_file
+
+def add_options(parser): # pylint: disable=unused-argument
+  # The atrace_from_file_agent is not currently used, so don't display
+  # any options.
+  return None
+
+def get_config(options):
+  return AtraceFromFileConfig(options.fix_circular, options.from_file)
+
+
 class AtraceFromFileAgent(tracing_agents.TracingAgent):
   def __init__(self, options):
     super(AtraceFromFileAgent, self).__init__()
-    self._filename = options.from_file
+    self._filename = os.path.expanduser(options.from_file)
     self._trace_data = False
     self._fix_circular_traces = options.fix_circular
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
-    pass
+  def StartAgentTracing(self, config, timeout=None):
+    # pylint: disable=unused-argument
+    return True
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
   def StopAgentTracing(self, timeout=None):
     self._trace_data = self._read_trace_data()
+    return True
 
   def SupportsExplicitClockSync(self):
     return False
@@ -50,7 +67,8 @@
     return trace_result.TraceResult('trace-data', self._trace_data)
 
   def _read_trace_data(self):
-    result = cmd_helper.GetCmdOutput(['cat', self._filename])
+    with open(self._filename, 'r') as f:
+      result = f.read()
     data_start = re.search(TRACE_START_REGEXP, result).end(0)
     data = re.sub(ADB_IGNORE_REGEXP, '', result[data_start:])
     return self._preprocess_data(data)
diff --git a/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent_unittest.py b/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent_unittest.py
new file mode 100755
index 0000000..3efa099
--- /dev/null
+++ b/catapult/systrace/systrace/tracing_agents/atrace_from_file_agent_unittest.py
@@ -0,0 +1,56 @@
+#!/usr/bin/env python
+
+# Copyright (c) 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import contextlib
+import os
+import unittest
+
+from systrace import decorators
+from systrace import run_systrace
+from systrace import util
+
+TEST_DIR = os.path.join(os.path.dirname(__file__), '..', 'test_data')
+
+COMPRESSED_ATRACE_DATA = os.path.join(TEST_DIR, 'compressed_atrace_data.txt')
+DECOMPRESSED_ATRACE_DATA = os.path.join(TEST_DIR,
+                                        'decompressed_atrace_data.txt')
+NON_EXISTENT_DATA = os.path.join(TEST_DIR, 'THIS_FILE_DOES_NOT_EXIST.txt')
+
+class AtraceFromFileAgentTest(unittest.TestCase):
+  # TODO(ccraik): fix test on windows
+  @decorators.LinuxMacTest
+  def test_from_file(self):
+    output_file_name = util.generate_random_filename_for_test()
+    try:
+      # use from-file to create a specific expected output
+      run_systrace.main_impl(['./run_systrace.py',
+                              '--from-file',
+                              COMPRESSED_ATRACE_DATA,
+                              '-o',
+                              output_file_name])
+      # and verify file contents
+      with contextlib.nested(open(output_file_name, 'r'),
+                             open(DECOMPRESSED_ATRACE_DATA, 'r')) as (f1, f2):
+        full_trace = f1.read()
+        expected_contents = f2.read()
+        self.assertTrue(expected_contents in full_trace)
+    except:
+      raise
+    finally:
+      if os.path.exists(output_file_name):
+        os.remove(output_file_name)
+
+
+  # TODO(ccraik): fix test on windows
+  @decorators.LinuxMacTest
+  def test_missing_file(self):
+    try:
+      run_systrace.main_impl(['./run_systrace.py',
+                              '--from-file',
+                              NON_EXISTENT_DATA])
+      self.fail('should not get here')
+    except IOError:
+      pass
diff --git a/catapult/systrace/systrace/tracing_agents/battor_trace_agent.py b/catapult/systrace/systrace/tracing_agents/battor_trace_agent.py
index 6271270..96137a6 100644
--- a/catapult/systrace/systrace/tracing_agents/battor_trace_agent.py
+++ b/catapult/systrace/systrace/tracing_agents/battor_trace_agent.py
@@ -5,6 +5,7 @@
 from os import path
 import atexit
 import logging
+import optparse
 import py_utils
 
 from battor import battor_wrapper
@@ -16,18 +17,61 @@
 from systrace import tracing_agents
 
 
-def try_create_agent(options):
-  if options.from_file is not None:
-    return False
-  if options.battor:
+def try_create_agent(config):
+  if config.from_file is not None:
+    return None
+  if config.battor:
     return BattorTraceAgent()
-  return False
+  return None
+
+
+class BattorConfig(tracing_agents.TracingConfig):
+  def __init__(self, battor_categories, hub_types, serial_map, battor_path,
+               update_map, battor, target, from_file):
+    tracing_agents.TracingConfig.__init__(self)
+    self.battor_categories = battor_categories
+    self.hub_types = hub_types
+    self.serial_map = serial_map
+    self.battor_path = battor_path
+    self.update_map = update_map
+    self.battor = battor
+    self.target = target
+    self.from_file = from_file
+
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Battor trace options')
+  options.add_option('--battor-categories', dest='battor_categories',
+                     help='Select battor categories with a comma-delimited '
+                     'list, e.g. --battor-categories=cat1,cat2,cat3')
+  options.add_option('--hubs', dest='hub_types', default='plugable_7port',
+                    help='List of hub types to check for for BattOr mapping. '
+                    'Used when updating mapping file.')
+  options.add_option('--serial-map', dest='serial_map',
+                    default='serial_map.json',
+                    help='File containing pregenerated map of phone serial '
+                    'numbers to BattOr serial numbers.')
+  options.add_option('--battor_path', dest='battor_path', default=None,
+                    type='string', help='specify a BattOr path to use')
+  options.add_option('--update-map', dest='update_map', default=False,
+                    action='store_true',
+                    help='force update of phone-to-BattOr map')
+  options.add_option('--battor', dest='battor', default=False,
+                    action='store_true', help='Use the BattOr tracing agent.')
+  return options
+
+def get_config(options):
+  return BattorConfig(options.battor_categories, options.hub_types,
+                      options.serial_map, options.battor_path,
+                      options.update_map, options.battor, options.target,
+                      options.from_file)
 
 def _reenable_charging_if_needed(battery):
   if not battery.GetCharging():
     battery.SetCharging(True)
   logging.info('Charging status checked at exit.')
 
+
 class BattorTraceAgent(tracing_agents.TracingAgent):
   # Class representing tracing agent that gets data from a BattOr.
   # BattOrs are high-frequency power monitors used for battery testing.
@@ -39,25 +83,25 @@
     self._battery_utils = None
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, _, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
     """Starts tracing.
 
     Args:
-        options: Tracing options.
+        config: Tracing config.
 
     Raises:
         RuntimeError: If trace already in progress.
     """
-    if options.update_map or not path.isfile(options.serial_map):
-      battor_device_mapping.GenerateSerialMapFile(options.serial_map,
-                                                  options.hub_types)
+    if config.update_map or not path.isfile(config.serial_map):
+      battor_device_mapping.GenerateSerialMapFile(config.serial_map,
+                                                  config.hub_types)
     self._battor_wrapper = battor_wrapper.BattorWrapper(
-        target_platform=options.target,
-        android_device=options.device_serial_number,
-        battor_path=options.battor_path,
-        battor_map_file=options.serial_map)
+        target_platform=config.target,
+        android_device=config.device_serial_number,
+        battor_path=config.battor_path,
+        battor_map_file=config.serial_map)
 
-    dev_utils = device_utils.DeviceUtils(options.device_serial_number)
+    dev_utils = device_utils.DeviceUtils(config.device_serial_number)
     self._battery_utils = battery_utils.BatteryUtils(dev_utils)
     self._battery_utils.SetCharging(False)
     atexit.register(_reenable_charging_if_needed, self._battery_utils)
diff --git a/catapult/systrace/systrace/tracing_agents/battor_trace_agent_unittest.py b/catapult/systrace/systrace/tracing_agents/battor_trace_agent_unittest.py
index 4142217..c77163a 100755
--- a/catapult/systrace/systrace/tracing_agents/battor_trace_agent_unittest.py
+++ b/catapult/systrace/systrace/tracing_agents/battor_trace_agent_unittest.py
@@ -22,6 +22,7 @@
                     None, False, __file__)
 CATEGORIES = None
 
+
 def raise_error(*args, **kwargs):
   del args
   del kwargs
@@ -29,7 +30,6 @@
 
 battor_device_mapping.GenerateSerialMapFile = raise_error
 
-
 def setup_battor_test(StartShell_error, StartTracing_error,
                       StopTracing_error, CollectTraceData_error):
   wrapper = MockBattorWrapper(StartShell_error, StartTracing_error,
@@ -40,6 +40,7 @@
     return wrapper
   battor_wrapper.BattorWrapper = wrapper_maker
 
+
 class MockBattorWrapper(object):
   def __init__(self, StartShell_error=False, StartTracing_error=False,
                StopTracing_error=False, CollectTraceData_error=False):
@@ -82,6 +83,7 @@
       raise RuntimeError('Simulated error in CollectTraceData')
     return 'traceout1\ntraceout2'
 
+
 class MockBatteryUtils(object):
   def __init__(self, _):
     self._is_charging = True
@@ -92,8 +94,10 @@
   def SetCharging(self, value):
     self._is_charging = value
 
+
 battery_utils.BatteryUtils = MockBatteryUtils
 
+
 class BattorAgentTest(unittest.TestCase):
 
   @decorators.HostOnlyTest
@@ -148,6 +152,7 @@
     x = agent.GetResults()
     self.assertEqual(x.raw_data, 'traceout1\ntraceout2')
 
+
 if __name__ == "__main__":
   logging.getLogger().setLevel(logging.DEBUG)
   unittest.main(verbosity=2)
diff --git a/catapult/systrace/systrace/tracing_agents/ftrace_agent.py b/catapult/systrace/systrace/tracing_agents/ftrace_agent.py
index da81491..9b63c6a 100644
--- a/catapult/systrace/systrace/tracing_agents/ftrace_agent.py
+++ b/catapult/systrace/systrace/tracing_agents/ftrace_agent.py
@@ -2,6 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import optparse
 import os
 import py_utils
 
@@ -87,9 +88,9 @@
 }
 
 
-def try_create_agent(options):
-  if options.target != 'linux':
-    return False
+def try_create_agent(config):
+  if config.target != 'linux':
+    return None
   return FtraceAgent(FtraceAgentIo)
 
 
@@ -98,25 +99,51 @@
   agent._print_avail_categories()
 
 
+class FtraceConfig(tracing_agents.TracingConfig):
+  def __init__(self, ftrace_categories, target, trace_buf_size, fix_threads,
+               fix_tgids, fix_circular):
+    tracing_agents.TracingConfig.__init__(self)
+    self.ftrace_categories = ftrace_categories
+    self.target = target
+    self.trace_buf_size = trace_buf_size
+    self.fix_threads = fix_threads
+    self.fix_tgids = fix_tgids
+    self.fix_circular = fix_circular
+
+
+def add_options(parser):
+  options = optparse.OptionGroup(parser, 'Ftrace options')
+  options.add_option('--ftrace-categories', dest='ftrace_categories',
+                     help='Select ftrace categories with a comma-delimited '
+                     'list, e.g. --ftrace-categories=cat1,cat2,cat3')
+  return options
+
+
+def get_config(options):
+  return FtraceConfig(options.ftrace_categories, options.target,
+                      options.trace_buf_size, options.fix_threads,
+                      options.fix_tgids, options.fix_circular)
+
+
 class FtraceAgent(tracing_agents.TracingAgent):
 
   def __init__(self, fio=FtraceAgentIo):
     """Initialize a systrace agent.
 
     Args:
-      options: The command-line options.
+      config: The command-line config.
       categories: The trace categories to capture.
     """
     super(FtraceAgent, self).__init__()
     self._fio = fio
-    self._options = None
+    self._config = None
     self._categories = None
 
   def _get_trace_buffer_size(self):
     buffer_size = 4096
-    if ((self._options.trace_buf_size is not None)
-        and (self._options.trace_buf_size > 0)):
-      buffer_size = self._options.trace_buf_size
+    if ((self._config.trace_buf_size is not None)
+        and (self._config.trace_buf_size > 0)):
+      buffer_size = self._config.trace_buf_size
     return buffer_size
 
   def _fix_categories(self, categories):
@@ -132,11 +159,11 @@
             if self._is_category_available(x)]
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
     """Start tracing.
     """
-    self._options = options
-    categories = self._fix_categories(categories)
+    self._config = config
+    categories = self._fix_categories(config.ftrace_categories)
     self._fio.writeFile(FT_BUFFER_SIZE,
                         str(self._get_trace_buffer_size()))
     self._fio.writeFile(FT_CLOCK, 'global')
@@ -168,11 +195,11 @@
     self._fio.writeFile(FT_TRACE_ON, '0')
     for category in self._categories:
       self._category_disable(category)
-    if self._options.fix_threads:
+    if self._config.fix_threads:
       print "WARN: thread name fixing is not yet supported."
-    if self._options.fix_tgids:
+    if self._config.fix_tgids:
       print "WARN: tgid fixing is not yet supported."
-    if self._options.fix_circular:
+    if self._config.fix_circular:
       print "WARN: circular buffer fixups are not yet supported."
     return True
 
@@ -212,7 +239,7 @@
   def _print_avail_categories(self):
     avail = self._avail_categories()
     if len(avail):
-      print "tracing options:"
+      print "tracing config:"
       for category in self._avail_categories():
         desc = all_categories[category]["desc"]
         print "{0: <16}".format(category), ": ", desc
diff --git a/catapult/systrace/systrace/tracing_agents/ftrace_agent_unittest.py b/catapult/systrace/systrace/tracing_agents/ftrace_agent_unittest.py
index 4a374eb..fdc54cd 100755
--- a/catapult/systrace/systrace/tracing_agents/ftrace_agent_unittest.py
+++ b/catapult/systrace/systrace/tracing_agents/ftrace_agent_unittest.py
@@ -114,11 +114,12 @@
     io_interface = make_test_io_interface(permitted_files)
     systrace_cmd = SYSTRACE_HOST_CMD_DEFAULT + ["irq"]
     options, categories = run_systrace.parse_options(systrace_cmd)
+    options.ftrace_categories = categories
     agent = ftrace_agent.FtraceAgent(io_interface)
     self.assertEqual(['irq'], agent._avail_categories())
 
     # confirm all the event nodes are turned on during tracing
-    agent.StartAgentTracing(options, categories)
+    agent.StartAgentTracing(options)
     self.assertEqual(permitted_files[irq_event_path], "1")
     self.assertEqual(permitted_files[ipi_event_path], "1")
 
@@ -133,8 +134,8 @@
     systrace_cmd = SYSTRACE_HOST_CMD_DEFAULT + ['-b', '16000']
     options, categories = run_systrace.parse_options(systrace_cmd)
     agent = ftrace_agent.FtraceAgent()
-    agent._options = options
-    agent._categories = categories
+    agent._config = options
+    agent._config.atrace_categories = categories
     self.assertEqual(agent._get_trace_buffer_size(), 16000)
 
 if __name__ == "__main__":
diff --git a/catapult/systrace/systrace/tracing_controller.py b/catapult/systrace/systrace/tracing_controller.py
index de02a7f..6eac01a 100644
--- a/catapult/systrace/systrace/tracing_controller.py
+++ b/catapult/systrace/systrace/tracing_controller.py
@@ -39,18 +39,17 @@
     self._log_path = None
 
   @py_utils.Timeout(tracing_agents.START_STOP_TIMEOUT)
-  def StartAgentTracing(self, options, categories, timeout=None):
+  def StartAgentTracing(self, config, timeout=None):
     """Start tracing for the controller tracing agent.
 
     Start tracing for the controller tracing agent. Note that
     the tracing controller records the "controller side"
     of the clock sync records, and nothing else.
     """
-    del options
-    del categories
+    del config
     if not trace_event.trace_can_enable():
       raise RuntimeError, ('Cannot enable trace_event;'
-                           ' ensure catapult_base is in PYTHONPATH')
+                           ' ensure py_utils is in PYTHONPATH')
 
     controller_log_file = tempfile.NamedTemporaryFile(delete=False)
     self._log_path = controller_log_file.name
@@ -94,24 +93,28 @@
     raise NotImplementedError
 
 class TracingController(object):
-  def __init__(self, options, categories, agents):
+  def __init__(self, agents_with_config, controller_config):
     """Create tracing controller.
 
     Create a tracing controller object. Note that the tracing
     controller is also a tracing agent.
 
     Args:
-       options: Tracing options.
-       categories: Categories of trace events to record.
-       agents: List of tracing agents for this controller.
+       agents_with_config: List of tracing agents for this controller with the
+                           corresponding tracing configuration objects.
+       controller_config:  Configuration options for the tracing controller.
     """
-    self._child_agents = agents
+    self._child_agents = None
+    self._child_agents_with_config = agents_with_config
     self._controller_agent = TracingControllerAgent()
-    self._options = options
-    self._categories = categories
+    self._controller_config = controller_config
     self._trace_in_progress = False
     self.all_results = None
 
+  @property
+  def get_child_agents(self):
+    return self._child_agents
+
   def StartTracing(self):
     """Start tracing for all tracing agents.
 
@@ -129,28 +132,28 @@
     # Start the controller tracing agents. Controller tracing agent
     # must be started successfully to proceed.
     if not self._controller_agent.StartAgentTracing(
-        self._options,
-        self._categories,
-        timeout=self._options.timeout):
+        self._controller_config,
+        timeout=self._controller_config.timeout):
       print 'Unable to start controller tracing agent.'
       return False
 
     # Start the child tracing agents.
     succ_agents = []
-    for agent in self._child_agents:
-      if agent.StartAgentTracing(self._options,
-                                 self._categories,
-                                 timeout=self._options.timeout):
+    for agent_and_config in self._child_agents_with_config:
+      agent = agent_and_config.agent
+      config = agent_and_config.config
+      if agent.StartAgentTracing(config,
+                                 timeout=self._controller_config.timeout):
         succ_agents.append(agent)
       else:
         print 'Agent %s not started.' % str(agent)
 
     # Print warning if all agents not started.
-    na = len(self._child_agents)
+    na = len(self._child_agents_with_config)
     ns = len(succ_agents)
     if ns < na:
       print 'Warning: Only %d of %d tracing agents started.' % (ns, na)
-      self._child_agents = succ_agents
+    self._child_agents = succ_agents
     return True
 
   def StopTracing(self):
@@ -171,7 +174,7 @@
     self._IssueClockSyncMarker()
     succ_agents = []
     for agent in self._child_agents:
-      if agent.StopAgentTracing(timeout=self._options.timeout):
+      if agent.StopAgentTracing(timeout=self._controller_config.timeout):
         succ_agents.append(agent)
       else:
         print 'Agent %s not stopped.' % str(agent)
@@ -179,7 +182,7 @@
     # Stop the controller tracing agent. Controller tracing agent
     # must be stopped successfully to proceed.
     if not self._controller_agent.StopAgentTracing(
-        timeout=self._options.timeout):
+        timeout=self._controller_config.timeout):
       print 'Unable to stop controller tracing agent.'
       return False
 
@@ -194,7 +197,8 @@
     all_results = []
     for agent in self._child_agents + [self._controller_agent]:
       try:
-        result = agent.GetResults(timeout=self._options.collection_timeout)
+        result = agent.GetResults(
+            timeout=self._controller_config.collection_timeout)
         if not result:
           print 'Warning: Timeout when getting results from %s.' % str(agent)
           continue
@@ -213,6 +217,10 @@
     self.all_results = all_results
     return all_results
 
+  def GetTraceType(self):
+    """Return a string representing the child agents that are being traced."""
+    sorted_agents = sorted(map(str, self._child_agents))
+    return ' + '.join(sorted_agents)
 
   def _IssueClockSyncMarker(self):
     """Issue clock sync markers to all the child tracing agents."""
@@ -228,3 +236,63 @@
   (since UUIDs are not JSON serializable)
   """
   return str(uuid.uuid4())
+
+
+class AgentWithConfig(object):
+  def __init__(self, agent, config):
+    self.agent = agent
+    self.config = config
+
+
+def CreateAgentsWithConfig(options, modules):
+  """Create tracing agents.
+
+  This function will determine which tracing agents are valid given the
+  options and create those agents along with their corresponding configuration
+  object.
+  Args:
+    options: The command-line options.
+    modules: The modules for either Systrace or profile_chrome.
+             TODO(washingtonp): After all profile_chrome agents are in
+             Systrace, this parameter will no longer be valid.
+  Returns:
+    A list of AgentWithConfig options containing agents and their corresponding
+    configuration object.
+  """
+  result = []
+  for module in modules:
+    config = module.get_config(options)
+    agent = module.try_create_agent(config)
+    if agent and config:
+      result.append(AgentWithConfig(agent, config))
+  return [x for x in result if x and x.agent]
+
+
+class TracingControllerConfig(tracing_agents.TracingConfig):
+  def __init__(self, output_file, trace_time, list_categories, write_json,
+               link_assets, asset_dir, timeout, collection_timeout,
+               device_serial_number, target):
+    tracing_agents.TracingConfig.__init__(self)
+    self.output_file = output_file
+    self.trace_time = trace_time
+    self.list_categories = list_categories
+    self.write_json = write_json
+    self.link_assets = link_assets
+    self.asset_dir = asset_dir
+    self.timeout = timeout
+    self.collection_timeout = collection_timeout
+    self.device_serial_number = device_serial_number
+    self.target = target
+
+
+def GetControllerConfig(options):
+  return TracingControllerConfig(options.output_file, options.trace_time,
+                                 options.list_categories, options.write_json,
+                                 options.link_assets, options.asset_dir,
+                                 options.timeout, options.collection_timeout,
+                                 options.device_serial_number, options.target)
+
+def GetChromeStartupControllerConfig(options):
+  return TracingControllerConfig(None, options.trace_time, None,
+                                 options.write_json, None, None, None, None,
+                                 None, None)
diff --git a/catapult/systrace/systrace/update_systrace_trace_viewer.py b/catapult/systrace/systrace/update_systrace_trace_viewer.py
index e24b373..cdb6fe1 100755
--- a/catapult/systrace/systrace/update_systrace_trace_viewer.py
+++ b/catapult/systrace/systrace/update_systrace_trace_viewer.py
@@ -18,7 +18,7 @@
 from tracing_build import vulcanize_trace_viewer
 
 
-SYSTRACE_TRACE_VIEWER_HTML_FILE_ = os.path.join(
+SYSTRACE_TRACE_VIEWER_HTML_FILE = os.path.join(
     os.path.abspath(os.path.dirname(__file__)),
     'systrace_trace_viewer.html')
 CATAPULT_REV_ = 'CATAPULT_REV'
@@ -55,7 +55,7 @@
     return catapult_rev
 
 
-def update(no_auto_update=False, no_min=False):
+def update(no_auto_update=False, no_min=False, force_update=False):
   """Update the systrace trace viewer html file.
 
   When the html file exists, do not update the file if
@@ -67,33 +67,39 @@
                     NO_AUTO_UPDATE_. Future updates will be skipped unless this
                     argument is true again.
     no_min:         If true, skip minification when updating the file.
+    force_update:   If true, update the systrace trace viewer file no matter
+                    what.
   """
   new_rev = None
-  if no_auto_update:
-    new_rev = NO_AUTO_UPDATE_
-  else:
-    new_rev = get_catapult_rev_in_git_()
-    if not new_rev:
-      return
-
-    if os.path.exists(SYSTRACE_TRACE_VIEWER_HTML_FILE_):
-      rev_in_file = get_catapult_rev_in_file_(SYSTRACE_TRACE_VIEWER_HTML_FILE_)
-      if rev_in_file == NO_AUTO_UPDATE_ or rev_in_file == new_rev:
+  if not force_update:
+    if no_auto_update:
+      new_rev = NO_AUTO_UPDATE_
+    else:
+      new_rev = get_catapult_rev_in_git_()
+      if not new_rev:
         return
 
+      if os.path.exists(SYSTRACE_TRACE_VIEWER_HTML_FILE):
+        rev_in_file = get_catapult_rev_in_file_(SYSTRACE_TRACE_VIEWER_HTML_FILE)
+        if rev_in_file == NO_AUTO_UPDATE_ or rev_in_file == new_rev:
+          return
+
+  if force_update and not new_rev:
+    new_rev = "none"
+
   print 'Generating viewer file %s with revision %s.' % (
-            SYSTRACE_TRACE_VIEWER_HTML_FILE_, new_rev)
+            SYSTRACE_TRACE_VIEWER_HTML_FILE, new_rev)
 
   # Generate the vulcanized result.
-  with codecs.open(SYSTRACE_TRACE_VIEWER_HTML_FILE_,
+  with codecs.open(SYSTRACE_TRACE_VIEWER_HTML_FILE,
                    encoding='utf-8', mode='w') as f:
     vulcanize_trace_viewer.WriteTraceViewer(
         f,
         config_name='full',
         minify=(not no_min),
         output_html_head_and_body=False)
-    f.write(create_catapult_rev_str_(new_rev))
-
+    if not force_update:
+      f.write(create_catapult_rev_str_(new_rev))
 
 def main():
   parser = optparse.OptionParser()
diff --git a/catapult/systrace/systrace/util.py b/catapult/systrace/systrace/util.py
index 966f5d8..442ae4e 100644
--- a/catapult/systrace/systrace/util.py
+++ b/catapult/systrace/systrace/util.py
@@ -3,6 +3,9 @@
 # found in the LICENSE file.
 
 import optparse
+import os
+import random
+import string
 import subprocess
 import sys
 
@@ -135,16 +138,15 @@
 
   return version
 
-def get_device_serials():
-  """Get the serial numbers of devices connected via adb.
 
-  Only gets serial numbers of "active" devices (e.g. does not get serial
-  numbers of devices which have not been authorized.)
-  """
+def generate_random_filename_for_test():
+  """Used for temporary files used in tests.
 
-  adb_output, adb_return_code = run_adb_command(['adb', 'devices'])
-  if adb_return_code == 0:
-    lines = [x.split() for x in adb_output.splitlines()[1:-1]]
-    return [x[0] for x in lines if x[1] == 'device']
-  else:
-    sys.exit(1)
+  Files created from 'NamedTemporaryFile' have inconsistent reuse support across
+  platforms, so it's not guaranteed that they can be reopened. Since many tests
+  communicate files via path, we typically use this method, as well as
+  manual file removal."""
+  name = ''.join(random.choice(string.ascii_uppercase +
+              string.digits) for _ in range(10))
+  return os.path.abspath(name)
+
diff --git a/catapult/telemetry/PRESUBMIT.py b/catapult/telemetry/PRESUBMIT.py
index c39ab93..754847d 100644
--- a/catapult/telemetry/PRESUBMIT.py
+++ b/catapult/telemetry/PRESUBMIT.py
@@ -97,7 +97,7 @@
       input_api.os_path.join(telemetry_dir, 'third_party', 'web-page-replay'),
       input_api.os_path.join(telemetry_dir, 'third_party', 'websocket-client'),
 
-      input_api.os_path.join(catapult_dir, 'catapult_base'),
+      input_api.os_path.join(catapult_dir, 'common', 'py_utils'),
       input_api.os_path.join(catapult_dir, 'dependency_manager'),
       input_api.os_path.join(catapult_dir, 'devil'),
       input_api.os_path.join(catapult_dir, 'systrace'),
diff --git a/catapult/telemetry/README.md b/catapult/telemetry/README.md
index 9f1d739..cb61fba 100644
--- a/catapult/telemetry/README.md
+++ b/catapult/telemetry/README.md
@@ -56,7 +56,7 @@
     [`adb shell`](http://developer.android.com/tools/help/adb.html).
 
 The Telemetry framework lives in
-[`src/tools/telemetry/`](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/)
+[`src/third_party/catapult/telemetry/`](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/)
 and performance benchmarks that use Telemetry live in
 [`src/tools/perf/`](https://code.google.com/p/chromium/codesearch#chromium/src/tools/perf/).
 
@@ -67,19 +67,19 @@
 sets.
 
 *   A
-    [_benchmark_](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/benchmark.py)
+    [_benchmark_](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/benchmark.py)
     combines a _measurement_ together with a _story set_, and optionally a set
     of browser options.
     *   We strongly discourage benchmark authors from using command-line flags
         to specify the behavior of benchmarks, since benchmarks should be
         cross-platform.
     *   Benchmarks are discovered and run by the
-        [benchmark runner](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/benchmark_runner.py),
+        [benchmark runner](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/benchmark_runner.py),
         which is wrapped by scripts like
         [`run_benchmark`](https://code.google.com/p/chromium/codesearch#chromium/src/tools/perf/run_benchmark)
         in `tools/perf`.
 *   A _measurement_ (called
-    [`StoryTest`](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/web_perf/story_test.py)
+    [`StoryTest`](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/web_perf/story_test.py)
     in the code) is responsible for setting up and tearing down the testing
     platform, and for collecting _metrics_ that quantify the application
     scenario under test.
@@ -88,19 +88,19 @@
     *   You probably don't need to override `StoryTest` (see "Timeline Based
         Measurement" below). If you think you do, please talk to us.
 *   A
-    [_story set_](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/story/story_set.py)
+    [_story set_](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/story/story_set.py)
     is a set of _stories_ together with a
-    [_shared state_](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/story/shared_state.py)
+    [_shared state_](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/story/shared_state.py)
     that describes application-level configuration options.
 *   A
-    [_story_](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/story/story.py)
+    [_story_](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/story/story.py)
     is an application scenario and a set of actions to run in that scenario. In
     the typical Chromium use case, this will be a web page together with actions
     like scrolling, clicking, or executing JavaScript.
 *   A _metric_ describes how to collect data about the story run and compute
     results.
     *   New metrics should generally be
-        [timeline-based](https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py).
+        [timeline-based](https://cs.chromium.org/chromium/src/third_party/catapult/telemetry/telemetry/web_perf/metrics/timeline_based_metric.py).
     *   Metrics can specify many different types of results, including numbers,
         histograms, traces, and failures.
 *   _Timeline Based Measurement_ is a built-in `StoryTest` that runs all
@@ -134,7 +134,7 @@
 The recordings are not included in the Chromium source tree. If you are a Google
 partner, run `gsutil config` to authenticate, then try running the test again.
 If you don't have `gsutil` installed on your machine, you can find it in
-`src/tools/telemetry/third_party/gsutil/gsutil`.
+`build/third_party/gsutil/gsutil`.
 
 If you are not a Google partner, you can run on live sites with
 --use-live-sites` or
diff --git a/catapult/telemetry/cloud_storage b/catapult/telemetry/cloud_storage
index edb2dd6..37adbbc 100755
--- a/catapult/telemetry/cloud_storage
+++ b/catapult/telemetry/cloud_storage
@@ -13,8 +13,8 @@
 from telemetry.internal.util import command_line
 
 sys.path.insert(1, os.path.abspath(os.path.join(
-    util.GetCatapultDir(), 'catapult_base')))
-from catapult_base import cloud_storage
+    util.GetCatapultDir(), 'common', 'py_utils')))
+from py_utils import cloud_storage
 
 
 BUCKETS = {bucket: easy_bucket_name for easy_bucket_name, bucket
diff --git a/catapult/telemetry/examples/browser_tests/simple_browser_test.py b/catapult/telemetry/examples/browser_tests/simple_browser_test.py
index bb95dc5..714e2f5 100644
--- a/catapult/telemetry/examples/browser_tests/simple_browser_test.py
+++ b/catapult/telemetry/examples/browser_tests/simple_browser_test.py
@@ -26,8 +26,8 @@
     cls.SetBrowserOptions(cls._finder_options)
     cls.StartBrowser()
     cls.action_runner = cls.browser.tabs[0].action_runner
-    cls.SetStaticServerDir(
-        os.path.join(os.path.abspath(__file__), '..', 'pages'))
+    cls.SetStaticServerDirs(
+        [os.path.join(os.path.abspath(__file__), '..', 'pages')])
 
   def JavascriptTest(self, file_path, num_1, num_2, expected_sum):
     url = self.UrlOfStaticFilePath(file_path)
diff --git a/catapult/telemetry/list_telemetry_unittests b/catapult/telemetry/list_telemetry_unittests
index 56f0a0d..8f420c6 100755
--- a/catapult/telemetry/list_telemetry_unittests
+++ b/catapult/telemetry/list_telemetry_unittests
@@ -12,9 +12,13 @@
   return test_name
 
 
-def _ExtractPassedTestName(line):
-  _, test_name, _, _ = line.split(' ')
-  return test_name
+def _ExtractPassedTestNameAndTime(line):
+  _, test_name, _, test_time_string = line.split(' ')
+  if test_time_string.endswith(':'):
+    test_time = float(test_time_string[:-2])
+  else:
+    test_time = float(test_time_string[:-1])
+  return test_name, test_time
 
 
 def _IsQueued(line):
@@ -36,9 +40,9 @@
       if _IsQueued(line):
         queued_unittests.append(_ExtractQueuedTestName(line))
       elif _IsPassed(line):
-        passed_unittests.append(_ExtractPassedTestName(line))
+        passed_unittests.append(_ExtractPassedTestNameAndTime(line))
   queued_unittests.sort()
-  passed_unittests.sort()
+  passed_unittests.sort(key=lambda v: -v[1])
   return queued_unittests, passed_unittests
 
 
@@ -49,16 +53,13 @@
   parser.add_argument(
       'filepath', help='path to log file of telemetry unittest')
   parser.add_argument(
-      '-p', '--list-passed-tests', action='store_true',
-      help='List all the passed telemetry unittests')
-  parser.add_argument(
       '-q', '--list-queued-tests', action='store_true',
-      help='List all the queued telemetry unittests')
+      help='Also list all the queued telemetry unittests')
   options = parser.parse_args(args)
   queued_unittests, passed_unittests = _ProcessLogFile(options.filepath)
-  if options.list_passed_tests:
-    print 'All passed telemetry unittests:\n'
-    print '\n'.join(passed_unittests)
+  print 'All passed telemetry unittests:\n'
+  for test, time in passed_unittests:
+      print test, time
   if options.list_queued_tests:
     print 'All queued telemetry unittests:\n'
     print '\n'.join(queued_unittests)
diff --git a/catapult/telemetry/telemetry/__init__.py b/catapult/telemetry/telemetry/__init__.py
index 258c3aa..a009a9c 100644
--- a/catapult/telemetry/telemetry/__init__.py
+++ b/catapult/telemetry/telemetry/__init__.py
@@ -27,10 +27,10 @@
 
 
 # Add Catapult dependencies to our path.
-# util depends on catapult_base, so we can't use it to get the catapult dir.
+# util depends on py_utils, so we can't use it to get the catapult dir.
 _CATAPULT_DIR = os.path.join(
     os.path.dirname(os.path.abspath(__file__)), '..', '..')
-_AddDirToPythonPath(_CATAPULT_DIR, 'catapult_base')
+_AddDirToPythonPath(_CATAPULT_DIR, 'common', 'py_utils')
 _AddDirToPythonPath(_CATAPULT_DIR, 'dependency_manager')
 _AddDirToPythonPath(_CATAPULT_DIR, 'devil')
 _AddDirToPythonPath(_CATAPULT_DIR, 'systrace')
diff --git a/catapult/telemetry/telemetry/benchmark.py b/catapult/telemetry/telemetry/benchmark.py
index 1477099..97ea9d9 100644
--- a/catapult/telemetry/telemetry/benchmark.py
+++ b/catapult/telemetry/telemetry/benchmark.py
@@ -110,7 +110,14 @@
     This should only be used by TimelineBasedMeasurement (TBM) benchmarks, but
     not by PageTest based benchmarks.
     """
-    return False
+    return True
+
+  # NOTE: this is a temporary workaround for crbug.com/645329, do not rely on
+  # this as a stable public API as we may remove this without public notice.
+  @classmethod
+  def IsShouldTearDownStateAfterEachStoryRunOverriden(cls):
+    return (cls.ShouldTearDownStateAfterEachStoryRun.__func__ !=
+            Benchmark.ShouldTearDownStateAfterEachStoryRun.__func__)
 
   @classmethod
   def ShouldTearDownStateAfterEachStorySetRun(cls):
diff --git a/catapult/telemetry/telemetry/benchmark_runner.py b/catapult/telemetry/telemetry/benchmark_runner.py
index a81060e..598bc53 100644
--- a/catapult/telemetry/telemetry/benchmark_runner.py
+++ b/catapult/telemetry/telemetry/benchmark_runner.py
@@ -14,16 +14,6 @@
 import os
 import sys
 
-
-# We need to set logging format here to make sure that any other modules
-# imported by telemetry doesn't set the logging format before this, which will
-# make this a no-op call.
-# (See: https://docs.python.org/2/library/logging.html#logging.basicConfig)
-logging.basicConfig(
-    format='(%(levelname)s) %(asctime)s %(module)s.%(funcName)s:%(lineno)d  '
-           '%(message)s')
-
-
 from telemetry import benchmark
 from telemetry.core import discover
 from telemetry import decorators
@@ -34,6 +24,7 @@
 from telemetry.internal.util import ps_util
 from telemetry.util import matching
 
+
 # Right now, we only have one of each of our power perf bots. This means that
 # all eligible Telemetry benchmarks are run unsharded, which results in very
 # long (12h) cycle times. We'd like to reduce the number of tests that we run
@@ -48,6 +39,11 @@
 ]
 
 
+DEFAULT_LOG_FORMAT = (
+  '(%(levelname)s) %(asctime)s %(module)s.%(funcName)s:%(lineno)d  '
+  '%(message)s')
+
+
 def _IsBenchmarkEnabled(benchmark_class, possible_browser):
   return (issubclass(benchmark_class, benchmark.Benchmark) and
           not benchmark_class.ShouldDisable(possible_browser) and
@@ -380,7 +376,12 @@
   return json.dumps(output, indent=2, sort_keys=True)
 
 
-def main(environment, extra_commands=None):
+def main(environment, extra_commands=None, **log_config_kwargs):
+  # The log level is set in browser_options.
+  log_config_kwargs.pop('level', None)
+  log_config_kwargs.setdefault('format', DEFAULT_LOG_FORMAT)
+  logging.basicConfig(**log_config_kwargs)
+
   ps_util.EnableListingStrayProcessesUponExitHook()
 
   # Get the command name from the command line.
diff --git a/catapult/telemetry/telemetry/core/cros_interface.py b/catapult/telemetry/telemetry/core/cros_interface.py
index d63a9e8..9f7d4bf 100644
--- a/catapult/telemetry/telemetry/core/cros_interface.py
+++ b/catapult/telemetry/telemetry/core/cros_interface.py
@@ -502,11 +502,8 @@
   def GetArchName(self):
     return self.RunCmdOnDevice(['uname', '-m'])[0]
 
-  def SysVendor(self):
-    return self.GetFileContents('/sys/class/dmi/id/sys_vendor').rstrip()
-
   def IsRunningOnVM(self):
-    return self.SysVendor() == 'QEMU'
+    return self.RunCmdOnDevice(['crossystem', 'inside_vm'])[0] != '0'
 
   def LsbReleaseValue(self, key, default):
     """/etc/lsb-release is a file with key=value pairs."""
diff --git a/catapult/telemetry/telemetry/core/local_server.py b/catapult/telemetry/telemetry/core/local_server.py
index 5c20c45..c8557d9 100644
--- a/catapult/telemetry/telemetry/core/local_server.py
+++ b/catapult/telemetry/telemetry/core/local_server.py
@@ -82,13 +82,15 @@
                                         stdout=subprocess.PIPE)
 
     named_ports = self._GetNamedPortsFromBackend()
-    named_port_pair_map = {'http': None, 'https': None, 'dns': None}
-    for name, port in named_ports:
-      assert name in named_port_pair_map, '%s forwarding is unsupported' % name
-      named_port_pair_map[name] = (forwarders.PortPair(
-          port, local_server_controller.GetRemotePort(port)))
+    http_port = None
+    for p in named_ports:
+      if p.name == 'http':
+        http_port = p.port
+    assert http_port and len(named_ports) == 1, (
+        'Only http port is supported: %s' % named_ports)
     self.forwarder = local_server_controller.CreateForwarder(
-        forwarders.PortPairs(**named_port_pair_map))
+        forwarders.PortPair(http_port,
+                            local_server_controller.GetRemotePort(http_port)))
 
   def _GetNamedPortsFromBackend(self):
     named_ports_json = None
@@ -178,8 +180,8 @@
         import traceback
         traceback.print_exc()
 
-  def CreateForwarder(self, port_pairs):
-    return self._platform_backend.forwarder_factory.Create(port_pairs)
+  def CreateForwarder(self, port_pair):
+    return self._platform_backend.forwarder_factory.Create(port_pair)
 
   def GetRemotePort(self, port):
     return self._platform_backend.GetRemotePort(port)
diff --git a/catapult/telemetry/telemetry/core/network_controller.py b/catapult/telemetry/telemetry/core/network_controller.py
index 88244e1..0c7714f 100644
--- a/catapult/telemetry/telemetry/core/network_controller.py
+++ b/catapult/telemetry/telemetry/core/network_controller.py
@@ -2,6 +2,9 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+from py_trace_event import trace_event
+
+
 class NetworkController(object):
   """Control network settings and servers to simulate the Web.
 
@@ -9,9 +12,14 @@
   Web Page Replay is used to record and replay HTTP/HTTPS responses.
   """
 
+  __metaclass__ = trace_event.TracedMetaClass
+
   def __init__(self, network_controller_backend):
     self._network_controller_backend = network_controller_backend
 
+  def InitializeIfNeeded(self):
+    self._network_controller_backend.InitializeIfNeeded()
+
   def Open(self, wpr_mode, extra_wpr_args):
     self._network_controller_backend.Open(wpr_mode, extra_wpr_args)
 
diff --git a/catapult/telemetry/telemetry/core/platform.py b/catapult/telemetry/telemetry/core/platform.py
index 5d68305..0056958 100644
--- a/catapult/telemetry/telemetry/core/platform.py
+++ b/catapult/telemetry/telemetry/core/platform.py
@@ -149,6 +149,10 @@
     Examples: On Mac, 13 for Mavericks, 14 for Yosemite."""
     return self._platform_backend.GetOSVersionNumber()
 
+  def GetSystemTotalPhysicalMemory(self):
+    """Returns an integer with the total physical memory in bytes."""
+    return self._platform_backend.GetSystemTotalPhysicalMemory()
+
   def CanFlushIndividualFilesFromSystemCache(self):
     """Returns true if the disk cache can be flushed for specific files."""
     return self._platform_backend.CanFlushIndividualFilesFromSystemCache()
diff --git a/catapult/telemetry/telemetry/core/util.py b/catapult/telemetry/telemetry/core/util.py
index 9531efa..41ce857 100644
--- a/catapult/telemetry/telemetry/core/util.py
+++ b/catapult/telemetry/telemetry/core/util.py
@@ -10,7 +10,7 @@
 import sys
 import time
 
-from catapult_base import util as catapult_util  # pylint: disable=import-error
+import py_utils as catapult_util  # pylint: disable=import-error
 
 from telemetry.core import exceptions
 
diff --git a/catapult/telemetry/telemetry/decorators.py b/catapult/telemetry/telemetry/decorators.py
index 53ebb0d..ece80ba 100644
--- a/catapult/telemetry/telemetry/decorators.py
+++ b/catapult/telemetry/telemetry/decorators.py
@@ -11,10 +11,6 @@
 import warnings
 
 
-# TODO(aiolos): remove after perf-side update has finished.
-IS_UPDATED_DECORATORS = True
-
-
 def Cache(obj):
   """Decorator for caching read-only properties.
 
@@ -142,9 +138,12 @@
     @Enabled('mavericks')     # Enabled only on Mac Mavericks (10.9).
   """
   def _Enabled(func):
-    if not hasattr(func, '_enabled_strings'):
-      func._enabled_strings = set()
-    func._enabled_strings.update(enabled_strings)
+    enabled_attr_name = EnabledAttributeName(func)
+    if not hasattr(func, enabled_attr_name):
+      setattr(func, enabled_attr_name, set())
+    enabled_set = getattr(func, enabled_attr_name)
+    enabled_set.update(enabled_strings)
+    setattr(func, enabled_attr_name, enabled_set)
     return func
   assert args, '@Enabled(..) requires arguments'
   assert not callable(args[0]), 'Please use @Enabled(..).'
@@ -222,13 +221,14 @@
   enabled_attr_name = EnabledAttributeName(test)
   if not hasattr(test, enabled_attr_name):
     return set()
-  return set(getattr(test, enabled_attr_name))
+  enabled_strings = set(getattr(test, enabled_attr_name))
+  return enabled_strings
 
 
-def EnabledAttributeName(unused_test):
-  # TODO(aiolos): Update to match disabled attribute names, and use in
-  # ShouldSkip and Enabled in a secondary cl.
-  return '_enabled_strings'
+def EnabledAttributeName(test):
+  name = _TestName(test)
+  return '_%s_%s_enabled_strings' % (test.__module__, name)
+
 
 def ShouldSkip(test, possible_browser):
   """Returns whether the test should be skipped and the reason for it."""
@@ -247,12 +247,14 @@
       return (True, '%s it is disabled for %s. %s' %
                       (skip, ' and '.join(disabled_strings), running))
 
-  if hasattr(test, '_enabled_strings'):
-    if 'all' in test._enabled_strings:
+  enabled_attr_name = EnabledAttributeName(test)
+  if hasattr(test, enabled_attr_name):
+    enabled_strings = getattr(test, enabled_attr_name)
+    if 'all' in enabled_strings:
       return False, None  # No arguments to @Enabled means always enable.
-    if not set(test._enabled_strings) & set(platform_attributes):
+    if not set(enabled_strings) & set(platform_attributes):
       return (True, '%s it is only enabled for %s. %s' %
-                      (skip, ' or '.join(test._enabled_strings), running))
+                      (skip, ' or '.join(enabled_strings), running))
 
   return False, None
 
diff --git a/catapult/telemetry/telemetry/decorators_unittest.py b/catapult/telemetry/telemetry/decorators_unittest.py
index 0c3773a..e12cd4c 100644
--- a/catapult/telemetry/telemetry/decorators_unittest.py
+++ b/catapult/telemetry/telemetry/decorators_unittest.py
@@ -56,6 +56,7 @@
     class Honda(object):
       pass
 
+    self.assertEquals({'windshield'}, decorators.GetDisabledAttributes(Ford))
     self.assertEquals({'wheel', 'Drive', 'windows'},
                       decorators.GetDisabledAttributes(Honda))
 
@@ -77,6 +78,7 @@
     class Honda(Car):
       pass
 
+    self.assertFalse(decorators.GetDisabledAttributes(Ford))
     self.assertEquals({'windshield'}, decorators.GetDisabledAttributes(Car))
     self.assertEquals({'wheel', 'Drive', 'windows'},
                       decorators.GetDisabledAttributes(Honda))
@@ -158,6 +160,31 @@
 
     self.assertEquals({'wheel', 'Drive', 'windows'},
                       decorators.GetEnabledAttributes(Honda))
+    self.assertEquals({'windshield', 'light'},
+                      decorators.GetEnabledAttributes(Ford))
+
+  def testEnabledStringOnSubClass(self):
+
+    @decorators.Enabled('windshield')
+    class Car(object):
+      pass
+
+    class Ford(Car):
+      pass
+
+    self.assertEquals({'windshield'}, decorators.GetEnabledAttributes(Car))
+    self.assertFalse(decorators.GetEnabledAttributes(Ford))
+
+    @decorators.Enabled('windows', 'Drive')
+    @decorators.Enabled('wheel')
+    @decorators.Enabled('windows')
+    class Honda(Car):
+      pass
+
+    self.assertFalse(decorators.GetEnabledAttributes(Ford))
+    self.assertEquals({'windshield'}, decorators.GetEnabledAttributes(Car))
+    self.assertEquals({'wheel', 'Drive', 'windows'},
+                      decorators.GetEnabledAttributes(Honda))
 
   def testEnabledStringOnMethod(self):
 
@@ -181,6 +208,22 @@
     self.assertEquals({'wheel', 'Drive', 'windows'},
                       decorators.GetEnabledAttributes(Honda().Drive))
 
+    class Accord(Honda):
+
+      def Drive(self):
+        pass
+
+    class Explorer(Ford):
+      pass
+
+    self.assertEquals({'wheel', 'Drive', 'windows'},
+                      decorators.GetEnabledAttributes(Honda().Drive))
+    self.assertEquals({'windshield'},
+                      decorators.GetEnabledAttributes(Ford().Drive))
+    self.assertEquals({'windshield'},
+                      decorators.GetEnabledAttributes(Explorer().Drive))
+    self.assertFalse(decorators.GetEnabledAttributes(Accord().Drive))
+
 
 class TestShouldSkip(unittest.TestCase):
 
diff --git a/catapult/telemetry/telemetry/internal/actions/page_action.py b/catapult/telemetry/telemetry/internal/actions/page_action.py
index a77d296..c279fc8 100644
--- a/catapult/telemetry/telemetry/internal/actions/page_action.py
+++ b/catapult/telemetry/telemetry/internal/actions/page_action.py
@@ -4,8 +4,11 @@
 
 import re
 
+from py_trace_event import trace_event
+
 from telemetry import decorators
 
+
 GESTURE_SOURCE_DEFAULT = 'DEFAULT'
 GESTURE_SOURCE_MOUSE = 'MOUSE'
 GESTURE_SOURCE_TOUCH = 'TOUCH'
@@ -23,6 +26,8 @@
 class PageAction(object):
   """Represents an action that a user might try to perform to a page."""
 
+  __metaclass__ = trace_event.TracedMetaClass
+
   def WillRunAction(self, tab):
     """Override to do action-specific setup before
     Test.WillRunAction is called."""
diff --git a/catapult/telemetry/telemetry/internal/backends/app_backend.py b/catapult/telemetry/telemetry/internal/backends/app_backend.py
index c6c9bb6..0f33570 100644
--- a/catapult/telemetry/telemetry/internal/backends/app_backend.py
+++ b/catapult/telemetry/telemetry/internal/backends/app_backend.py
@@ -2,8 +2,13 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+from py_trace_event import trace_event
+
 
 class AppBackend(object):
+
+  __metaclass__ = trace_event.TracedMetaClass
+
   def __init__(self, app_type, platform_backend):
     super(AppBackend, self).__init__()
     self._app = None
diff --git a/catapult/telemetry/telemetry/internal/backends/browser_backend.py b/catapult/telemetry/telemetry/internal/backends/browser_backend.py
index 9b3aff9..43e7773 100644
--- a/catapult/telemetry/telemetry/internal/backends/browser_backend.py
+++ b/catapult/telemetry/telemetry/internal/backends/browser_backend.py
@@ -4,7 +4,7 @@
 import uuid
 import sys
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry import decorators
 from telemetry.internal.backends import app_backend
diff --git a/catapult/telemetry/telemetry/internal/backends/browser_backend_unittest.py b/catapult/telemetry/telemetry/internal/backends/browser_backend_unittest.py
index 5e9263b..702c967 100644
--- a/catapult/telemetry/telemetry/internal/backends/browser_backend_unittest.py
+++ b/catapult/telemetry/telemetry/internal/backends/browser_backend_unittest.py
@@ -37,7 +37,7 @@
 
       b = FakeBrowserBackend(None, False, options.browser_options, None)
       self.assertEquals(b.GetLogFileContents(), 'This is a\ntest log file.\n')
-      with mock.patch('catapult_base.cloud_storage.Insert') as mock_insert:
+      with mock.patch('py_utils.cloud_storage.Insert') as mock_insert:
         b.UploadLogsToCloudStorage()
         mock_insert.assert_called_with(
             bucket='ABC', remote_path='def', local_path=temp_file_name)
diff --git a/catapult/telemetry/telemetry/internal/backends/chrome/android_browser_finder.py b/catapult/telemetry/telemetry/internal/backends/chrome/android_browser_finder.py
index addae0f..3eda4a5 100644
--- a/catapult/telemetry/telemetry/internal/backends/chrome/android_browser_finder.py
+++ b/catapult/telemetry/telemetry/internal/backends/chrome/android_browser_finder.py
@@ -8,7 +8,8 @@
 import os
 import sys
 
-from catapult_base import dependency_util
+from py_utils import dependency_util
+from devil import base_error
 from devil.android import apk_helper
 
 from telemetry.core import exceptions
@@ -255,5 +256,10 @@
   """
   if not isinstance(device, android_device.AndroidDevice):
     return []
-  android_platform = platform.GetPlatformForDevice(device, finder_options)
-  return _FindAllPossibleBrowsers(finder_options, android_platform)
+
+  try:
+    android_platform = platform.GetPlatformForDevice(device, finder_options)
+    return _FindAllPossibleBrowsers(finder_options, android_platform)
+  except base_error.BaseError as e:
+    logging.error('Unable to find browsers on %s: %s', device.device_id, str(e))
+  return []
diff --git a/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend.py b/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend.py
index cafd4b7..9c24f4c 100644
--- a/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend.py
+++ b/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend.py
@@ -121,24 +121,16 @@
     return args
 
   def GetReplayBrowserStartupArgs(self):
+    replay_args = []
     network_backend = self.platform_backend.network_controller_backend
+    proxy_port = network_backend.forwarder.port_pair.remote_port
+    replay_args.append('--proxy-server=socks://localhost:%s' % proxy_port)
     if not network_backend.is_replay_active:
       return []
-    replay_args = []
     if not network_backend.is_test_ca_installed:
       # Ignore certificate errors if the platform backend has not created
       # and installed a root certificate.
       replay_args.append('--ignore-certificate-errors')
-    # Force hostnames to resolve to the replay's host_ip.
-    replay_args.append('--host-resolver-rules=MAP * %s,EXCLUDE localhost' %
-                         network_backend.host_ip)
-    # Force the browser to send HTTP/HTTPS requests to fixed ports if they
-    # are not the standard HTTP/HTTPS ports.
-    device_ports = network_backend.wpr_device_ports
-    if device_ports.http != 80:
-      replay_args.append('--testing-fixed-http-port=%s' % device_ports.http)
-    if device_ports.https != 443:
-      replay_args.append('--testing-fixed-https-port=%s' % device_ports.https)
     return replay_args
 
   def HasBrowserFinishedLaunching(self):
diff --git a/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend_unittest.py b/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend_unittest.py
index 37e0835..575d298 100644
--- a/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend_unittest.py
+++ b/catapult/telemetry/telemetry/internal/backends/chrome/chrome_browser_backend_unittest.py
@@ -12,16 +12,16 @@
 
 
 class FakePlatformBackend(object):
-  def __init__(self, is_replay_active, wpr_http_device_port,
-               wpr_https_device_port, is_host_platform):
+  def __init__(self, is_replay_active, local_ts_proxy_port, remote_port,
+               is_host_platform):
     self.is_host_platform = is_host_platform
 
     self.forwarder_factory = mock.Mock()
 
     self.network_controller_backend = mock.Mock()
     self.network_controller_backend.is_replay_active = is_replay_active
-    self.network_controller_backend.wpr_device_ports = forwarders.PortSet(
-        http=wpr_http_device_port, https=wpr_https_device_port, dns=None)
+    self.network_controller_backend.forwarder.port_pair = forwarders.PortPair(
+        local_port=local_ts_proxy_port, remote_port=remote_port)
     self.network_controller_backend.host_ip = '127.0.0.1'
     self.network_controller_backend.is_test_ca_installed = False
 
@@ -42,14 +42,15 @@
   # pylint: disable=abstract-method
 
   def __init__(self, browser_options,
-               wpr_http_device_port=None, wpr_https_device_port=None,
+               local_ts_proxy_port=None,
+               remote_port=None,
                is_running_locally=False):
     browser_options.extensions_to_load = []
     browser_options.output_profile_path = None
     super(TestChromeBrowserBackend, self).__init__(
         platform_backend=FakePlatformBackend(
             browser_options.wpr_mode != wpr_modes.WPR_OFF,
-            wpr_http_device_port, wpr_https_device_port, is_running_locally),
+            local_ts_proxy_port, remote_port, is_running_locally),
         supports_tab_control=False,
         supports_extensions=False,
         browser_options=browser_options)
@@ -67,14 +68,12 @@
     browser_options = FakeBrowserOptions(wpr_mode=wpr_modes.WPR_REPLAY)
     browser_backend = TestChromeBrowserBackend(
         browser_options,
-        wpr_http_device_port=456,
-        wpr_https_device_port=567,
+        local_ts_proxy_port=567,
+        remote_port=789,
         is_running_locally=is_running_locally)
     expected_args = [
-        '--host-resolver-rules=MAP * 127.0.0.1,EXCLUDE localhost',
         '--ignore-certificate-errors',
-        '--testing-fixed-http-port=456',
-        '--testing-fixed-https-port=567'
+        '--proxy-server=socks://localhost:789',
         ]
     self.assertEqual(
         expected_args,
diff --git a/catapult/telemetry/telemetry/internal/backends/chrome/cros_browser_backend.py b/catapult/telemetry/telemetry/internal/backends/chrome/cros_browser_backend.py
index aeaa2de..0d28cf9 100644
--- a/catapult/telemetry/telemetry/internal/backends/chrome/cros_browser_backend.py
+++ b/catapult/telemetry/telemetry/internal/backends/chrome/cros_browser_backend.py
@@ -53,6 +53,17 @@
 
   def GetBrowserStartupArgs(self):
     args = super(CrOSBrowserBackend, self).GetBrowserStartupArgs()
+
+    logging_patterns = ['*/chromeos/net/*',
+                        '*/chromeos/login/*',
+                        '*/dbus/*',
+                        'application_lifetime',
+                        'chrome_browser_main_posix']
+    vmodule = '--vmodule='
+    for pattern in logging_patterns:
+      vmodule += '%s=2,' % pattern
+    vmodule = vmodule.rstrip(',')
+
     args.extend([
             '--enable-smooth-scrolling',
             '--enable-threaded-compositing',
@@ -67,7 +78,7 @@
             # Skip user image selection screen, and post login screens.
             '--oobe-skip-postlogin',
             # Debug logging.
-            '--vmodule=*/chromeos/net/*=2,*/chromeos/login/*=2'])
+            vmodule])
 
     # Disable GAIA services unless we're using GAIA login, or if there's an
     # explicit request for it.
@@ -106,7 +117,8 @@
     startup_args = [a.replace(',', '\\,') for a in self.GetBrowserStartupArgs()]
 
     # Restart Chrome with the login extension and remote debugging.
-    logging.info('Restarting Chrome with flags and login')
+    pid = self.pid
+    logging.info('Restarting Chrome (pid=%d) with remote port', pid)
     args = ['dbus-send', '--system', '--type=method_call',
             '--dest=org.chromium.SessionManager',
             '/org/chromium/SessionManager',
@@ -120,36 +132,41 @@
       # TODO(crbug.com/404771): Move port forwarding to network_controller.
       self._port = util.GetUnreservedAvailableLocalPort()
       self._forwarder = self._platform_backend.forwarder_factory.Create(
-          forwarders.PortPairs(
-              http=forwarders.PortPair(self._port, self._remote_debugging_port),
-              https=None,
-              dns=None), use_remote_port_forwarding=False)
+          forwarders.PortPair(self._port, self._remote_debugging_port),
+          use_remote_port_forwarding=False)
 
-    # Wait for oobe.
+    # Wait for new chrome and oobe.
+    util.WaitFor(lambda: pid != self.pid, 15)
     self._WaitForBrowserToComeUp()
     self._InitDevtoolsClientBackend(
         remote_devtools_port=self._remote_debugging_port)
     util.WaitFor(lambda: self.oobe_exists, 30)
 
     if self.browser_options.auto_login:
-      try:
-        if self._is_guest:
-          pid = self.pid
-          self.oobe.NavigateGuestLogin()
-          # Guest browsing shuts down the current browser and launches an
-          # incognito browser in a separate process, which we need to wait for.
-          util.WaitFor(lambda: pid != self.pid, 10)
-        elif self.browser_options.gaia_login:
-          self.oobe.NavigateGaiaLogin(self._username, self._password)
-        else:
-          self.oobe.NavigateFakeLogin(self._username, self._password,
-              self._gaia_id, not self.browser_options.disable_gaia_services)
+      if self._is_guest:
+        pid = self.pid
+        self.oobe.NavigateGuestLogin()
+        # Guest browsing shuts down the current browser and launches an
+        # incognito browser in a separate process, which we need to wait for.
+        try:
+          # TODO(achuith): Reduce this timeout to 15 sec after crbug.com/631640
+          # is resolved.
+          util.WaitFor(lambda: pid != self.pid, 60)
+        except exceptions.TimeoutException:
+          self._RaiseOnLoginFailure(
+              'Failed to restart browser in guest mode (pid %d).' % pid)
 
+      elif self.browser_options.gaia_login:
+        self.oobe.NavigateGaiaLogin(self._username, self._password)
+      else:
+        self.oobe.NavigateFakeLogin(self._username, self._password,
+            self._gaia_id, not self.browser_options.disable_gaia_services)
+
+      try:
         self._WaitForLogin()
       except exceptions.TimeoutException:
-        self._cri.TakeScreenshotWithPrefix('login-screen')
-        raise exceptions.LoginException('Timed out going through login screen. '
-                                        + self._GetLoginStatus())
+        self._RaiseOnLoginFailure('Timed out going through login screen. '
+                                  + self._GetLoginStatus())
 
     logging.info('Browser is up!')
 
@@ -250,3 +267,8 @@
     # Wait for extensions to load.
     if self._supports_extensions:
       self._WaitForExtensionsToLoad()
+
+  def _RaiseOnLoginFailure(self, error):
+    if self._platform_backend.CanTakeScreenshot():
+      self._cri.TakeScreenshotWithPrefix('login-screen')
+    raise exceptions.LoginException(error)
diff --git a/catapult/telemetry/telemetry/internal/backends/chrome/desktop_browser_backend.py b/catapult/telemetry/telemetry/internal/backends/chrome/desktop_browser_backend.py
index 43b73cb..64362b9 100644
--- a/catapult/telemetry/telemetry/internal/backends/chrome/desktop_browser_backend.py
+++ b/catapult/telemetry/telemetry/internal/backends/chrome/desktop_browser_backend.py
@@ -16,7 +16,7 @@
 import tempfile
 import time
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 import dependency_manager  # pylint: disable=import-error
 
 from telemetry.internal.util import binary_manager
diff --git a/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_backend.py b/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_backend.py
index ab27d53..b36bbd3 100644
--- a/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_backend.py
+++ b/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_backend.py
@@ -8,6 +8,8 @@
 import socket
 import sys
 
+from py_trace_event import trace_event
+
 from telemetry.core import exceptions
 from telemetry import decorators
 from telemetry.internal.backends.chrome_inspector import devtools_http
@@ -43,6 +45,9 @@
   The owner of an instance of this class is responsible for calling
   Disconnect() before disposing of the instance.
   """
+
+  __metaclass__ = trace_event.TracedMetaClass
+
   def __init__(self, app, devtools_client, context, timeout=120):
     self._websocket = inspector_websocket.InspectorWebsocket()
     self._websocket.RegisterDomain(
diff --git a/catapult/telemetry/telemetry/internal/browser/browser.py b/catapult/telemetry/telemetry/internal/browser/browser.py
index 1c687e8..1aff02f 100644
--- a/catapult/telemetry/telemetry/internal/browser/browser.py
+++ b/catapult/telemetry/telemetry/internal/browser/browser.py
@@ -5,7 +5,7 @@
 import logging
 import sys
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import exceptions
 from telemetry.core import profiling_controller
diff --git a/catapult/telemetry/telemetry/internal/browser/browser_options.py b/catapult/telemetry/telemetry/internal/browser/browser_options.py
index 1fefa03..f995e2e 100644
--- a/catapult/telemetry/telemetry/internal/browser/browser_options.py
+++ b/catapult/telemetry/telemetry/internal/browser/browser_options.py
@@ -10,7 +10,7 @@
 import socket
 import sys
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import platform
 from telemetry.core import util
@@ -342,11 +342,6 @@
               "directory. Note that logging affects the browser's "
               'performance. Supported values: %s. Defaults to %s.' % (
                   ', '.join(cls._LOGGING_LEVELS), cls._DEFAULT_LOGGING_LEVEL)))
-    group.add_option('--enable-browser-logging',
-        dest='enable_logging',
-        action='store_true',
-        help=('This flag is deprecated and will be removed after August 31, '
-              '2016. Please use --browser-logging-verbosity instead.'))
     parser.add_option_group(group)
 
     group = optparse.OptionGroup(parser, 'Compatibility options')
@@ -401,18 +396,7 @@
     if not self.profile_dir:
       self.profile_dir = profile_types.GetProfileDir(self.profile_type)
 
-    if getattr(finder_options, 'enable_logging'):
-      if getattr(finder_options, 'logging_verbosity'):
-        # Both --enable-browser-logging and --browser-logging-verbosity were
-        # provided (fail).
-        logging.critical("It's illegal to provide both --enable-browser-logging"
-                         ' and --browser-logging-verbosity.')
-        sys.exit(1)
-      # Only --enable-browser-logging was provided.
-      self.logging_verbosity = self.VERBOSE_LOGGING
-      delattr(finder_options, 'enable_logging')
-    elif getattr(finder_options, 'logging_verbosity'):
-      # Only --browser-logging-verbosity was provided (verbose logging).
+    if getattr(finder_options, 'logging_verbosity'):
       self.logging_verbosity = finder_options.logging_verbosity
       delattr(finder_options, 'logging_verbosity')
 
@@ -420,24 +404,6 @@
     # telemetry/telemetry/__init__.py.
     finder_options.browser_options = CreateChromeBrowserOptions(self)
 
-  # Deprecated: Please use |logging_verbosity| instead.
-  @property
-  def enable_logging(self):
-    logging.warning('enable_logging is deprecated and will be removed after '
-                    'August 31, 2016. Please use logging_verbosity instead.')
-    return self.logging_verbosity in [self.NON_VERBOSE_LOGGING,
-                                      self.VERBOSE_LOGGING]
-
-  # Deprecated: Please use |logging_verbosity| instead.
-  @enable_logging.setter
-  def enable_logging(self, value):
-    logging.warning('enable_logging is deprecated and will be removed after '
-                    'August 31, 2016. Please use logging_verbosity instead.')
-    if value:
-      self.logging_verbosity = self.NON_VERBOSE_LOGGING
-    else:
-      self.logging_verbosity = self.NO_LOGGING
-
   @property
   def finder_options(self):
     return self._finder_options
diff --git a/catapult/telemetry/telemetry/internal/browser/browser_unittest.py b/catapult/telemetry/telemetry/internal/browser/browser_unittest.py
index af46a8e..923d482 100644
--- a/catapult/telemetry/telemetry/internal/browser/browser_unittest.py
+++ b/catapult/telemetry/telemetry/internal/browser/browser_unittest.py
@@ -183,17 +183,21 @@
   options = options_for_unittests.GetCopy()
   options.browser_options.output_profile_path = profile_dir
   browser_to_create = browser_finder.FindBrowser(options)
-  with browser_to_create.Create(options) as browser:
-    browser.platform.SetHTTPServerDirectories(path.GetUnittestDataDir())
-    blank_file_path = os.path.join(path.GetUnittestDataDir(), 'blank.html')
-    blank_url = browser.platform.http_server.UrlOf(blank_file_path)
-    browser.foreground_tab.Navigate(blank_url)
-    browser.foreground_tab.WaitForDocumentReadyStateToBeComplete()
-    for _ in xrange(number_of_tabs - 1):
-      tab = browser.tabs.New()
-      tab.Navigate(blank_url)
-      tab.WaitForDocumentReadyStateToBeComplete()
-  return profile_dir
+  browser_to_create.platform.network_controller.InitializeIfNeeded()
+  try:
+    with browser_to_create.Create(options) as browser:
+      browser.platform.SetHTTPServerDirectories(path.GetUnittestDataDir())
+      blank_file_path = os.path.join(path.GetUnittestDataDir(), 'blank.html')
+      blank_url = browser.platform.http_server.UrlOf(blank_file_path)
+      browser.foreground_tab.Navigate(blank_url)
+      browser.foreground_tab.WaitForDocumentReadyStateToBeComplete()
+      for _ in xrange(number_of_tabs - 1):
+        tab = browser.tabs.New()
+        tab.Navigate(blank_url)
+        tab.WaitForDocumentReadyStateToBeComplete()
+    return profile_dir
+  finally:
+    browser_to_create.platform.network_controller.Close()
 
 
 class BrowserCreationTest(unittest.TestCase):
@@ -233,6 +237,7 @@
         ['--restore-last-session'])
     cls._options.browser_options.profile_dir = cls._profile_dir
     cls._browser_to_create = browser_finder.FindBrowser(cls._options)
+    cls._browser_to_create.platform.network_controller.InitializeIfNeeded()
 
   @decorators.Enabled('has tabs')
   @decorators.Disabled('chromeos', 'win', 'mac')
@@ -251,6 +256,7 @@
 
   @classmethod
   def tearDownClass(cls):
+    cls._browser_to_create.platform.network_controller.Close()
     shutil.rmtree(cls._profile_dir)
 
 
@@ -263,10 +269,14 @@
     browser_to_create = browser_finder.FindBrowser(options)
     self.assertIsNotNone(browser_to_create)
     before_browser_run_temp_dir_content = os.listdir(tempfile.tempdir)
-    with browser_to_create.Create(options) as browser:
-      tab = browser.tabs.New()
-      tab.Navigate('about:blank')
-      self.assertEquals(2, tab.EvaluateJavaScript('1 + 1'))
-    after_browser_run_temp_dir_content = os.listdir(tempfile.tempdir)
-    self.assertEqual(before_browser_run_temp_dir_content,
-                     after_browser_run_temp_dir_content)
+    browser_to_create.platform.network_controller.InitializeIfNeeded()
+    try:
+      with browser_to_create.Create(options) as browser:
+        tab = browser.tabs.New()
+        tab.Navigate('about:blank')
+        self.assertEquals(2, tab.EvaluateJavaScript('1 + 1'))
+      after_browser_run_temp_dir_content = os.listdir(tempfile.tempdir)
+      self.assertEqual(before_browser_run_temp_dir_content,
+                       after_browser_run_temp_dir_content)
+    finally:
+      browser_to_create.platform.network_controller.Close()
diff --git a/catapult/telemetry/telemetry/internal/browser/extension_unittest.py b/catapult/telemetry/telemetry/internal/browser/extension_unittest.py
index 2325b14..0c85f17 100644
--- a/catapult/telemetry/telemetry/internal/browser/extension_unittest.py
+++ b/catapult/telemetry/telemetry/internal/browser/extension_unittest.py
@@ -18,6 +18,7 @@
 class ExtensionTest(unittest.TestCase):
   def setUp(self):
     self._browser = None
+    self._platform = None
     self._extension = None
     self._extension_id = None
 
@@ -32,6 +33,8 @@
     if not browser_to_create:
       # May not find a browser that supports extensions.
       return False
+    self._platform = browser_to_create.platform
+    self._platform.network_controller.InitializeIfNeeded()
     self._browser = browser_to_create.Create(options)
     self._extension = self._browser.extensions[load_extension]
     self._extension_id = load_extension.extension_id
@@ -41,6 +44,7 @@
   def tearDown(self):
     if self._browser:
       self._browser.Close()
+      self._platform.network_controller.Close()
 
   def testExtensionBasic(self):
     """Test ExtensionPage's ExecuteJavaScript and EvaluateJavaScript."""
@@ -98,9 +102,13 @@
     load_extension = extension_to_load.ExtensionToLoad(
         extension_path, options.browser_type)
     browser_to_create = browser_finder.FindBrowser(options)
-    with browser_to_create.Create(options) as b:
-      if b.supports_extensions:
-        self.assertRaises(KeyError, lambda: b.extensions[load_extension])
+    try:
+      browser_to_create.platform.network_controller.InitializeIfNeeded()
+      with browser_to_create.Create(options) as b:
+        if b.supports_extensions:
+          self.assertRaises(KeyError, lambda: b.extensions[load_extension])
+    finally:
+      browser_to_create.platform.network_controller.Close()
 
 class MultipleExtensionTest(unittest.TestCase):
   def setUp(self):
@@ -120,12 +128,17 @@
                                 for d in self._extension_dirs]
     options.browser_options.extensions_to_load = self._extensions_to_load
     browser_to_create = browser_finder.FindBrowser(options)
+    self._platform = None
     self._browser = None
     # May not find a browser that supports extensions.
     if browser_to_create:
+      self._platform = browser_to_create.platform
+      self._platform.network_controller.InitializeIfNeeded()
       self._browser = browser_to_create.Create(options)
 
   def tearDown(self):
+    if self._platform:
+      self._platform.network_controller.Close()
     if self._browser:
       self._browser.Close()
     for d in self._extension_dirs:
@@ -165,12 +178,16 @@
                       'skipping test.')
       return
 
-    with browser_to_create.Create(options) as b:
-      extension = b.extensions[load_extension]
-      self.assertTrue(
-          extension.EvaluateJavaScript('chrome.runtime != null'))
-      extension.ExecuteJavaScript('setTestVar("abcdef")')
-      self.assertEquals('abcdef', extension.EvaluateJavaScript('_testVar'))
+    try:
+      browser_to_create.platform.network_controller.InitializeIfNeeded()
+      with browser_to_create.Create(options) as b:
+        extension = b.extensions[load_extension]
+        self.assertTrue(
+            extension.EvaluateJavaScript('chrome.runtime != null'))
+        extension.ExecuteJavaScript('setTestVar("abcdef")')
+        self.assertEquals('abcdef', extension.EvaluateJavaScript('_testVar'))
+    finally:
+      browser_to_create.platform.network_controller.Close()
 
   def testComponentExtensionNoPublicKey(self):
     # simple_extension does not have a public key.
diff --git a/catapult/telemetry/telemetry/internal/forwarders/__init__.py b/catapult/telemetry/telemetry/internal/forwarders/__init__.py
index 45f9239..b11fbfe 100644
--- a/catapult/telemetry/telemetry/internal/forwarders/__init__.py
+++ b/catapult/telemetry/telemetry/internal/forwarders/__init__.py
@@ -8,36 +8,15 @@
 PortPair = collections.namedtuple('PortPair', ['local_port', 'remote_port'])
 PortSet = collections.namedtuple('PortSet', ['http', 'https', 'dns'])
 
-class PortPairs(collections.namedtuple('PortPairs', ['http', 'https', 'dns'])):
-  __slots__ = ()
-
-  @classmethod
-  def Zip(cls, local_ports, remote_ports):
-    """Zip a pair of PortSet's into a single PortPairs object."""
-    with_dns = local_ports.dns is not None and remote_ports.dns is not None
-    return cls(
-      PortPair(local_ports.http, remote_ports.http),
-      PortPair(local_ports.https, remote_ports.https),
-      PortPair(local_ports.dns, remote_ports.dns) if with_dns else None)
-
-  @property
-  def local_ports(self):
-    """Return a tuple of local ports only."""
-    return PortSet(*[p.local_port if p is not None else None for p in self])
-
-  @property
-  def remote_ports(self):
-    """Return a tuple of remote ports only."""
-    return PortSet(*[p.remote_port if p is not None else None for p in self])
 
 
 class ForwarderFactory(object):
 
-  def Create(self, port_pairs):
+  def Create(self, port_pair):
     """Creates a forwarder that maps remote (device) <-> local (host) ports.
 
     Args:
-      port_pairs: A PortPairs instance that consists of a PortPair mapping
+      port_pair: A PortPairs instance that consists of a PortPair mapping
           for each protocol. http is required. https and dns may be None.
     """
     raise NotImplementedError()
@@ -49,22 +28,22 @@
 
 class Forwarder(object):
 
-  def __init__(self, port_pairs):
-    assert port_pairs.http, 'HTTP port mapping is required.'
-    self._port_pairs = port_pairs
+  def __init__(self, port_pair):
+    assert port_pair, 'Port mapping is required.'
+    self._port_pair = port_pair
     self._forwarding = True
 
   @property
   def host_port(self):
-    return self._port_pairs.http.remote_port
+    return self._port_pair.remote_port
 
   @property
   def host_ip(self):
     return '127.0.0.1'
 
   @property
-  def port_pairs(self):
-    return self._port_pairs
+  def port_pair(self):
+    return self._port_pair
 
   @property
   def url(self):
@@ -72,5 +51,5 @@
     return 'http://%s:%i' % (self.host_ip, self.host_port)
 
   def Close(self):
-    self._port_pairs = None
+    self._port_pair = None
     self._forwarding = False
diff --git a/catapult/telemetry/telemetry/internal/forwarders/android_forwarder.py b/catapult/telemetry/telemetry/internal/forwarders/android_forwarder.py
index f57c295..d4afe19 100644
--- a/catapult/telemetry/telemetry/internal/forwarders/android_forwarder.py
+++ b/catapult/telemetry/telemetry/internal/forwarders/android_forwarder.py
@@ -20,9 +20,9 @@
     super(AndroidForwarderFactory, self).__init__()
     self._device = device
 
-  def Create(self, port_pairs):
+  def Create(self, port_pair):
     try:
-      return AndroidForwarder(self._device, port_pairs)
+      return AndroidForwarder(self._device, port_pair)
     except Exception:
       try:
         logging.warning('Failed to create forwarder. '
@@ -53,23 +53,20 @@
 
 class AndroidForwarder(forwarders.Forwarder):
 
-  def __init__(self, device, port_pairs):
-    super(AndroidForwarder, self).__init__(port_pairs)
+  def __init__(self, device, port_pair):
+    super(AndroidForwarder, self).__init__(port_pair)
     self._device = device
-    forwarder.Forwarder.Map([(p.remote_port, p.local_port)
-                             for p in port_pairs if p], self._device)
-    self._port_pairs = forwarders.PortPairs(*[
+    forwarder.Forwarder.Map(
+        [(port_pair.remote_port, port_pair.local_port)], self._device)
+    self._port_pair = (
         forwarders.PortPair(
-            p.local_port,
-            forwarder.Forwarder.DevicePortForHostPort(p.local_port))
-        if p else None for p in port_pairs])
+            port_pair.local_port,
+            forwarder.Forwarder.DevicePortForHostPort(port_pair.local_port)))
     atexit_with_log.Register(self.Close)
     # TODO(tonyg): Verify that each port can connect to host.
 
   def Close(self):
     if self._forwarding:
-      for port_pair in self._port_pairs:
-        if port_pair:
-          forwarder.Forwarder.UnmapDevicePort(
-              port_pair.remote_port, self._device)
-      super(AndroidForwarder, self).Close()
+      forwarder.Forwarder.UnmapDevicePort(
+          self._port_pair.remote_port, self._device)
+    super(AndroidForwarder, self).Close()
diff --git a/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder.py b/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder.py
index d8a9ab3..86c5a7a 100644
--- a/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder.py
+++ b/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder.py
@@ -17,20 +17,20 @@
     self._cri = cri
 
   # pylint: disable=arguments-differ
-  def Create(self, port_pairs, use_remote_port_forwarding=True):
+  def Create(self, port_pair, use_remote_port_forwarding=True):
     if self._cri.local:
-      return do_nothing_forwarder.DoNothingForwarder(port_pairs)
-    return CrOsSshForwarder(self._cri, use_remote_port_forwarding, port_pairs)
+      return do_nothing_forwarder.DoNothingForwarder(port_pair)
+    return CrOsSshForwarder(self._cri, use_remote_port_forwarding, port_pair)
 
 
 class CrOsSshForwarder(forwarders.Forwarder):
 
-  def __init__(self, cri, use_remote_port_forwarding, port_pairs):
-    super(CrOsSshForwarder, self).__init__(port_pairs)
+  def __init__(self, cri, use_remote_port_forwarding, port_pair):
+    super(CrOsSshForwarder, self).__init__(port_pair)
     self._cri = cri
     self._proc = None
     forwarding_args = self._ForwardingArgs(
-        use_remote_port_forwarding, self.host_ip, port_pairs)
+        use_remote_port_forwarding, self.host_ip, port_pair)
     self._proc = subprocess.Popen(
         self._cri.FormSSHCommandLine(['sleep', '999999999'], forwarding_args),
         stdout=subprocess.PIPE,
@@ -43,16 +43,18 @@
 
   # pylint: disable=unused-argument
   @staticmethod
-  def _ForwardingArgs(use_remote_port_forwarding, host_ip, port_pairs):
+  def _ForwardingArgs(use_remote_port_forwarding, host_ip, port_pair):
     if use_remote_port_forwarding:
-      arg_format = '-R{pp.remote_port}:{host_ip}:{pp.local_port}'
+      arg_format = '-R{remote_port}:{host_ip}:{local_port}'
     else:
-      arg_format = '-L{pp.local_port}:{host_ip}:{pp.remote_port}'
-    return [arg_format.format(**locals()) for pp in port_pairs if pp]
+      arg_format = '-L{local_port}:{host_ip}:{remote_port}'
+    return [arg_format.format(host_ip=host_ip,
+                              local_port=port_pair.local_port,
+                              remote_port=port_pair.remote_port)]
 
   @property
   def host_port(self):
-    return self._port_pairs.http.remote_port
+    return self._port_pair.remote_port
 
   def Close(self):
     if self._proc:
diff --git a/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder_unittest.py b/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder_unittest.py
index 5689296..809b63e 100644
--- a/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder_unittest.py
+++ b/catapult/telemetry/telemetry/internal/forwarders/cros_forwarder_unittest.py
@@ -9,23 +9,16 @@
 
 # pylint: disable=protected-access
 class ForwardingArgsTest(unittest.TestCase):
-  port_pairs = forwarders.PortPairs(
-      http=forwarders.PortPair(111, 222),
-      https=forwarders.PortPair(333, 444),
-      dns=None)
+  port_pair = forwarders.PortPair(111, 222)
 
   def testForwardingArgsReverse(self):
     forwarding_args = cros_forwarder.CrOsSshForwarder._ForwardingArgs(
         use_remote_port_forwarding=True, host_ip='5.5.5.5',
-        port_pairs=self.port_pairs)
-    self.assertEqual(
-        ['-R222:5.5.5.5:111', '-R444:5.5.5.5:333'],
-        forwarding_args)
+        port_pair=self.port_pair)
+    self.assertEqual(['-R222:5.5.5.5:111'], forwarding_args)
 
   def testForwardingArgs(self):
     forwarding_args = cros_forwarder.CrOsSshForwarder._ForwardingArgs(
         use_remote_port_forwarding=False, host_ip='2.2.2.2',
-        port_pairs=self.port_pairs)
-    self.assertEqual(
-        ['-L111:2.2.2.2:222', '-L333:2.2.2.2:444'],
-        forwarding_args)
+        port_pair=self.port_pair)
+    self.assertEqual(['-L111:2.2.2.2:222'], forwarding_args)
diff --git a/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py b/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py
index 901c8e9..d254cfb 100644
--- a/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py
+++ b/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder.py
@@ -28,8 +28,8 @@
 
 class DoNothingForwarderFactory(forwarders.ForwarderFactory):
 
-  def Create(self, port_pairs):
-    return DoNothingForwarder(port_pairs)
+  def Create(self, port_pair):
+    return DoNothingForwarder(port_pair)
 
 
 class DoNothingForwarder(forwarders.Forwarder):
@@ -41,37 +41,23 @@
   Also, check that all TCP ports support connections.  (Raises ConnectionError.)
   """
 
-  def __init__(self, port_pairs):
-    super(DoNothingForwarder, self).__init__(
-        forwarders.PortPairs(*[
-            forwarders.PortPair(p.local_port, p.remote_port or p.local_port)
-            if p else None for p in port_pairs]))
-    self._CheckPortPairs()
+  def __init__(self, port_pair):
+    super(DoNothingForwarder, self).__init__(port_pair)
+    self._CheckPortPair()
 
-  def _CheckPortPairs(self):
-    # namedtuple._asdict() is a public method. The method starts with an
-    # underscore to avoid conflicts with attribute names.
-    # pylint: disable=protected-access
-    for protocol, port_pair in self._port_pairs._asdict().items():
-      if not port_pair:
-        continue
-      local_port, remote_port = port_pair
-      if local_port != remote_port:
-        raise PortsMismatchError('Local port forwarding is not supported')
-      if protocol == 'dns':
-        logging.debug('Connection test SKIPPED for DNS: %s:%d',
-                      self.host_ip, local_port)
-        continue
-      try:
-        self._WaitForConnectionEstablished(
-            (self.host_ip, local_port), timeout=10)
-        logging.debug(
-            'Connection test succeeded for %s: %s:%d',
-            protocol.upper(), self.host_ip, local_port)
-      except exceptions.TimeoutException:
-        raise ConnectionError(
-            'Unable to connect to %s address: %s:%d',
-            protocol.upper(), self.host_ip, local_port)
+  def _CheckPortPair(self):
+    if self._port_pair.local_port != self._port_pair.remote_port:
+      raise PortsMismatchError('Local port forwarding is not supported')
+    try:
+      self._WaitForConnectionEstablished(
+          (self.host_ip, self._port_pair.local_port), timeout=10)
+      logging.debug(
+          'Connection test succeeded for %s:%d',
+          self.host_ip, self._port_pair.local_port)
+    except exceptions.TimeoutException:
+      raise ConnectionError(
+          'Unable to connect to address: %s:%d',
+          self.host_ip, self._port_pair.local_port)
 
   def _WaitForConnectionEstablished(self, address, timeout):
     def CanConnect():
diff --git a/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder_unittest.py b/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder_unittest.py
index 6477161..51ebe05 100644
--- a/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder_unittest.py
+++ b/catapult/telemetry/telemetry/internal/forwarders/do_nothing_forwarder_unittest.py
@@ -28,44 +28,21 @@
 
 
 class CheckPortPairsTest(unittest.TestCase):
-  def testChecksOnlyHttpHttps(self):
-    port_pairs = forwarders.PortPairs(
-        http=forwarders.PortPair(80, 80),
-        https=forwarders.PortPair(443, 443),
-        dns=forwarders.PortPair(53, 53))
-    f = TestDoNothingForwarder(port_pairs)
+  def testBasicCheck(self):
+    port_pair = forwarders.PortPair(80, 80)
+    f = TestDoNothingForwarder(port_pair)
     expected_connected_addresses = [
         ('127.0.0.1', 80),
-        ('127.0.0.1', 443),
-        # Port 53 is skipped because it is UDP and does not support connections.
-        ]
-    self.assertEqual(expected_connected_addresses, f.connected_addresses)
-
-  def testNoDnsStillChecksHttpHttps(self):
-    port_pairs = forwarders.PortPairs(
-        http=forwarders.PortPair(5566, 5566),
-        https=forwarders.PortPair(7788, 7788),
-        dns=None)
-    f = TestDoNothingForwarder(port_pairs)
-    expected_connected_addresses = [
-        ('127.0.0.1', 5566),
-        ('127.0.0.1', 7788),
         ]
     self.assertEqual(expected_connected_addresses, f.connected_addresses)
 
   def testPortMismatchRaisesPortsMismatchError(self):
     # The do_nothing_forward cannot forward from one port to another.
-    port_pairs = forwarders.PortPairs(
-        http=forwarders.PortPair(80, 80),
-        https=forwarders.PortPair(8443, 443),
-        dns=None)
+    port_pair = forwarders.PortPair(80, 81)
     with self.assertRaises(do_nothing_forwarder.PortsMismatchError):
-      TestDoNothingForwarder(port_pairs)
+      TestDoNothingForwarder(port_pair)
 
   def testConnectionTimeoutRaisesConnectionError(self):
-    port_pairs = forwarders.PortPairs(
-        http=forwarders.PortPair(80, 80),
-        https=forwarders.PortPair(8443, 443),
-        dns=None)
+    port_pair = forwarders.PortPair(80, 80)
     with self.assertRaises(do_nothing_forwarder.ConnectionError):
-      TestErrorDoNothingForwarder(port_pairs)
+      TestErrorDoNothingForwarder(port_pair)
diff --git a/catapult/telemetry/telemetry/internal/image_processing/video.py b/catapult/telemetry/telemetry/internal/image_processing/video.py
index 43f2f28..06fc9ca 100644
--- a/catapult/telemetry/telemetry/internal/image_processing/video.py
+++ b/catapult/telemetry/telemetry/internal/image_processing/video.py
@@ -4,7 +4,7 @@
 
 import subprocess
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import platform
 from telemetry.util import image_util
diff --git a/catapult/telemetry/telemetry/internal/platform/android_platform_backend.py b/catapult/telemetry/telemetry/internal/platform/android_platform_backend.py
index cacde0e..342a121 100644
--- a/catapult/telemetry/telemetry/internal/platform/android_platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/android_platform_backend.py
@@ -14,6 +14,7 @@
 from telemetry.core import exceptions
 from telemetry.core import util
 from telemetry import decorators
+from telemetry.internal import forwarders
 from telemetry.internal.forwarders import android_forwarder
 from telemetry.internal.image_processing import video
 from telemetry.internal.platform import android_device
@@ -254,6 +255,10 @@
     for l in output:
       logging.info(l)
 
+  @decorators.Deprecated(
+      2017, 11, 4,
+      'Clients should use tracing and memory-infra in new Telemetry '
+      'benchmarks. See for context: https://crbug.com/632021')
   def GetMemoryStats(self, pid):
     memory_usage = self._device.GetMemoryUsageForPid(pid)
     if not memory_usage:
@@ -583,6 +588,9 @@
     self._device.RunShellCommand(
         ['sh', self._device_copy_script, source, dest])
 
+  def GetPortPairForForwarding(self, local_port):
+    return forwarders.PortPair(local_port=local_port, remote_port=0)
+
   def RemoveProfile(self, package, ignore_list):
     """Delete application profile on device.
 
@@ -741,9 +749,11 @@
     return self._IsScreenLocked(input_methods)
 
   def HasBattOrConnected(self):
-    # str(self.device) is the device id as a string.
-    return battor_wrapper.IsBattOrConnected(self.GetOSName(),
-                                            android_device=str(self.device))
+    # Use linux instead of Android because when determining what tests to run on
+    # a bot the individual device could be down, which would make BattOr tests
+    # not run on any device. BattOrs communicate with the host and not android
+    # devices.
+    return battor_wrapper.IsBattOrConnected('linux')
 
 
 def _FixPossibleAdbInstability():
diff --git a/catapult/telemetry/telemetry/internal/platform/cros_platform_backend.py b/catapult/telemetry/telemetry/internal/platform/cros_platform_backend.py
index 3ac7d39..89466fd 100644
--- a/catapult/telemetry/telemetry/internal/platform/cros_platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/cros_platform_backend.py
@@ -8,7 +8,6 @@
 from telemetry.core import cros_interface
 from telemetry.core import platform
 from telemetry.core import util
-from telemetry.internal import forwarders
 from telemetry.internal.forwarders import cros_forwarder
 from telemetry.internal.platform import cros_device
 from telemetry.internal.platform import linux_based_platform_backend
@@ -56,17 +55,6 @@
       return port
     return self._cri.GetRemotePort()
 
-  def GetWprPortPairs(self):
-    """Return suitable port pairs to be used for web page replay."""
-    default_local_ports = super(CrosPlatformBackend, self).GetWprPortPairs(
-        ).local_ports
-    return forwarders.PortPairs.Zip(
-        default_local_ports,
-        forwarders.PortSet(
-          http=self.GetRemotePort(default_local_ports.http),
-          https=self.GetRemotePort(default_local_ports.https),
-          dns=None))
-
   def IsThermallyThrottled(self):
     raise NotImplementedError()
 
@@ -173,9 +161,7 @@
 
   def CanTakeScreenshot(self):
     # crbug.com/609001: screenshots don't work on VMs.
-    logging.info('Sys vendor=' + self.cri.SysVendor() +
-                 ', IsRunningOnVM=' + repr(self.cri.IsRunningOnVM()))
-    return False
+    return not self.cri.IsRunningOnVM()
 
   def TakeScreenshot(self, file_path):
     return self._cri.TakeScreenshot(file_path)
diff --git a/catapult/telemetry/telemetry/internal/platform/linux_based_platform_backend.py b/catapult/telemetry/telemetry/internal/platform/linux_based_platform_backend.py
index 5a65d8c..d06b85c 100644
--- a/catapult/telemetry/telemetry/internal/platform/linux_based_platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/linux_based_platform_backend.py
@@ -60,6 +60,10 @@
     clock_ticks = self.GetClockTicks()
     return {'TotalTime': total_jiffies / clock_ticks}
 
+  @decorators.Deprecated(
+      2017, 11, 4,
+      'Clients should use tracing and memory-infra in new Telemetry '
+      'benchmarks. See for context: https://crbug.com/632021')
   def GetMemoryStats(self, pid):
     status_contents = self._GetProcFileForPid(pid, 'status')
     stats = self._GetProcFileForPid(pid, 'stat').split()
diff --git a/catapult/telemetry/telemetry/internal/platform/linux_platform_backend.py b/catapult/telemetry/telemetry/internal/platform/linux_platform_backend.py
index 52dcf30..5532d59 100644
--- a/catapult/telemetry/telemetry/internal/platform/linux_platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/linux_platform_backend.py
@@ -8,7 +8,7 @@
 import subprocess
 import sys
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.internal.util import binary_manager
 from telemetry.core import os_version
diff --git a/catapult/telemetry/telemetry/internal/platform/mac_platform_backend.py b/catapult/telemetry/telemetry/internal/platform/mac_platform_backend.py
index 9749a4b..230345f 100644
--- a/catapult/telemetry/telemetry/internal/platform/mac_platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/mac_platform_backend.py
@@ -116,6 +116,10 @@
     # TODO(pliard): Implement this.
     pass
 
+  @decorators.Deprecated(
+      2017, 11, 4,
+      'Clients should use tracing and memory-infra in new Telemetry '
+      'benchmarks. See for context: https://crbug.com/632021')
   def GetMemoryStats(self, pid):
     rss_vsz = self.GetPsOutput(['rss', 'vsz'], pid)
     if rss_vsz:
diff --git a/catapult/telemetry/telemetry/internal/platform/network_controller_backend.py b/catapult/telemetry/telemetry/internal/platform/network_controller_backend.py
index 99c6124..cd1ba6c 100644
--- a/catapult/telemetry/telemetry/internal/platform/network_controller_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/network_controller_backend.py
@@ -7,8 +7,8 @@
 import shutil
 import tempfile
 
-from telemetry.internal import forwarders
 from telemetry.internal.util import wpr_server
+from telemetry.internal.util import ts_proxy_server
 from telemetry.util import wpr_modes
 
 import certutils
@@ -36,12 +36,27 @@
     self._platform_backend = platform_backend
     self._wpr_mode = None
     self._extra_wpr_args = None
-    self._wpr_port_pairs = None
     self._archive_path = None
     self._make_javascript_deterministic = None
     self._forwarder = None
     self._wpr_ca_cert_path = None
     self._wpr_server = None
+    self._ts_proxy_server = None
+    self._port_pair = None
+
+  def InitializeIfNeeded(self):
+    """
+    This may, e.g., install test certificates and perform any needed setup
+    on the target platform.
+
+    After network interactions are over, clients should call the Close method.
+    """
+    assert bool(self._ts_proxy_server) == bool(self._forwarder)
+    if self._ts_proxy_server:
+      return
+    local_port = self._StartTsProxyServer()
+    self._forwarder = self._platform_backend.forwarder_factory.Create(
+        self._platform_backend.GetPortPairForForwarding(local_port))
 
   @property
   def is_open(self):
@@ -80,10 +95,10 @@
           wpr_modes.WPR_RECORD.
       extra_wpr_args: an list of extra arguments for web page replay.
     """
+    self.InitializeIfNeeded()
     assert not self.is_open, 'Network controller is already open'
     self._wpr_mode = wpr_mode
     self._extra_wpr_args = extra_wpr_args
-    self._wpr_port_pairs = self._platform_backend.GetWprPortPairs()
     self._InstallTestCa()
 
   def Close(self):
@@ -92,10 +107,11 @@
     Implicitly stops replay if currently active.
     """
     self.StopReplay()
+    self._StopForwarder()
+    self._StopTsProxyServer()
     self._RemoveTestCa()
     self._make_javascript_deterministic = None
     self._archive_path = None
-    self._wpr_port_pairs = None
     self._extra_wpr_args = None
     self._wpr_mode = None
 
@@ -189,29 +205,31 @@
     self._archive_path = archive_path
     self._make_javascript_deterministic = make_javascript_deterministic
     local_ports = self._StartReplayServer()
-    self._StartForwarder(local_ports)
+    self._ts_proxy_server.UpdateOutboundPorts(
+        http_port=local_ports.http, https_port=local_ports.https)
+
+  def _StopForwarder(self):
+    if self._forwarder:
+      self._forwarder.Close()
+      self._forwarder = None
 
   def StopReplay(self):
     """Stop web page replay.
 
     Stops both the replay server and the forwarder if currently active.
     """
-    if self._forwarder:
-      self._forwarder.Close()
-      self._forwarder = None
     self._StopReplayServer()
 
   def _StartReplayServer(self):
     """Start the replay server and return the started local_ports."""
     self._StopReplayServer()  # In case it was already running.
-    local_ports = self._wpr_port_pairs.local_ports
     self._wpr_server = wpr_server.ReplayServer(
         self._archive_path,
         self.host_ip,
-        local_ports.http,
-        local_ports.https,
-        local_ports.dns,
-        self._ReplayCommandLineArgs())
+        http_port=0,
+        https_port=0,
+        dns_port=None,
+        replay_options=self._ReplayCommandLineArgs())
     return self._wpr_server.StartServer()
 
   def _StopReplayServer(self):
@@ -220,6 +238,12 @@
       self._wpr_server.StopServer()
       self._wpr_server = None
 
+  def _StopTsProxyServer(self):
+    """Stop the replay server only."""
+    if self._ts_proxy_server:
+      self._ts_proxy_server.StopServer()
+      self._ts_proxy_server = None
+
   def _ReplayCommandLineArgs(self):
     wpr_args = list(self._extra_wpr_args)
     if self._wpr_mode == wpr_modes.WPR_APPEND:
@@ -234,15 +258,12 @@
           '--https_root_ca_cert_path=%s' % self._wpr_ca_cert_path])
     return wpr_args
 
-  def _StartForwarder(self, local_ports):
-    """Start a forwarder from local_ports to the set WPR remote_ports."""
-    if self._forwarder is not None:
-      if local_ports == self._forwarder.port_pairs.local_ports:
-        return  # Safe to reuse existing forwarder.
-      self._forwarder.Close()
-    self._forwarder = self._platform_backend.forwarder_factory.Create(
-        forwarders.PortPairs.Zip(local_ports,
-                                 self._wpr_port_pairs.remote_ports))
-    # Override port pairts with values after defaults have been resolved;
-    # we should use the same set of ports when restarting replay.
-    self._wpr_port_pairs = self._forwarder.port_pairs
+  def _StartTsProxyServer(self):
+    assert not self._ts_proxy_server, 'ts_proxy_server is already started'
+    self._ts_proxy_server = ts_proxy_server.TsProxyServer(host_ip=self.host_ip)
+    self._ts_proxy_server.StartServer()
+    return self._ts_proxy_server.port
+
+  @property
+  def forwarder(self):
+    return self._forwarder
diff --git a/catapult/telemetry/telemetry/internal/platform/network_controller_backend_unittest.py b/catapult/telemetry/telemetry/internal/platform/network_controller_backend_unittest.py
deleted file mode 100644
index 3375ad0..0000000
--- a/catapult/telemetry/telemetry/internal/platform/network_controller_backend_unittest.py
+++ /dev/null
@@ -1,390 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-import mock
-import unittest
-
-from telemetry.internal import forwarders
-from telemetry.internal.platform import network_controller_backend
-from telemetry.util import wpr_modes
-
-
-DEFAULT_PORTS = forwarders.PortSet(http=1111, https=2222, dns=3333)
-FORWARDER_HOST_IP = '123.321.123.321'
-EXPECTED_WPR_CA_CERT_PATH = os.path.join('[tempdir]', 'testca.pem')
-
-
-class FakePlatformBackend(object):
-  def __init__(self):
-    self.forwarder_factory = FakeForwarderFactory()
-    self.supports_test_ca = True
-    self.is_test_ca_installed = False
-    self.faulty_cert_installer = False
-    self.wpr_port_pairs = None
-    # Normally test using all default ports.
-    self.SetWprPortPairs(http=(0, 0), https=(0, 0), dns=(0, 0))
-
-  def SetWprPortPairs(self, http, https, dns):
-    self.wpr_port_pairs = forwarders.PortPairs(
-        forwarders.PortPair(*http),
-        forwarders.PortPair(*https),
-        forwarders.PortPair(*dns) if dns is not None else None)
-
-  def GetWprPortPairs(self):
-    return self.wpr_port_pairs
-
-  def InstallTestCa(self, ca_cert_path):
-    del ca_cert_path  # Unused argument.
-    self.is_test_ca_installed = True
-    # Exception is raised after setting the "installed" value to confirm that
-    # cleaup code is being called in case of errors.
-    if self.faulty_cert_installer:
-      raise Exception('Cert install failed!')
-
-  def RemoveTestCa(self):
-    self.is_test_ca_installed = False
-
-
-class FakeForwarderFactory(object):
-  def __init__(self):
-    self.host_ip = FORWARDER_HOST_IP
-
-  def Create(self, port_pairs):
-    return forwarders.Forwarder(
-        forwarders.PortPairs(*[
-            forwarders.PortPair(p.local_port, p.remote_port or p.local_port)
-            if p else None for p in port_pairs]))
-
-
-class FakeReplayServer(object):
-  DEFAULT_PORTS = NotImplemented  # Will be assigned during test setUp.
-
-  def __init__(self, archive_path, host_ip, http_port, https_port, dns_port,
-               replay_args):
-    self.archive_path = archive_path
-    self.host_ip = host_ip
-    self.ports = forwarders.PortSet(
-        http_port or self.DEFAULT_PORTS.http,
-        https_port or self.DEFAULT_PORTS.https,
-        dns_port or self.DEFAULT_PORTS.dns if dns_port is not None else None)
-    self.replay_args = replay_args
-    self.is_running = False
-
-  def StartServer(self):
-    assert not self.is_running
-    self.is_running = True
-    return self.ports
-
-  def StopServer(self):
-    assert self.is_running
-    self.is_running = False
-
-
-class TestNetworkControllerBackend(
-    network_controller_backend.NetworkControllerBackend):
-  """Expose some private properties for testing purposes."""
-
-  @property
-  def wpr_ca_cert_path(self):
-    return self._wpr_ca_cert_path
-
-  @property
-  def replay_server(self):
-    return self._wpr_server
-
-  @property
-  def forwarder(self):
-    return self._forwarder
-
-  @property
-  def platform_backend(self):
-    return self._platform_backend
-
-
-# pylint: disable=no-member
-class NetworkControllerBackendTest(unittest.TestCase):
-  def Patch(self, *args, **kwargs):
-    """Patch an object for the duration of a test, and return its mock."""
-    patcher = mock.patch(*args, **kwargs)
-    mock_object = patcher.start()
-    self.addCleanup(patcher.stop)
-    return mock_object
-
-  def PatchImportedModule(self, name):
-    """Shorthand to patch a module imported by network_controller_backend."""
-    return self.Patch(
-        'telemetry.internal.platform.network_controller_backend.%s' % name)
-
-  def setUp(self):
-    # Always use our FakeReplayServer.
-    FakeReplayServer.DEFAULT_PORTS = DEFAULT_PORTS  # Use global defaults.
-    self.Patch(
-        'telemetry.internal.util.wpr_server.ReplayServer', FakeReplayServer)
-
-    # Pretend that only some predefined set of files exist.
-    def fake_path_exists(filename):
-      return filename in ['some-archive.wpr', 'another-archive.wpr']
-
-    self.Patch('os.path.exists', side_effect=fake_path_exists)
-
-    # Mock some imported modules.
-    mock_certutils = self.PatchImportedModule('certutils')
-    mock_certutils.openssl_import_error = None
-    mock_certutils.generate_dummy_ca_cert.return_value = ('-', '-')
-
-    mock_platformsettings = self.PatchImportedModule('platformsettings')
-    mock_platformsettings.HasSniSupport.return_value = True
-
-    mock_tempfile = self.PatchImportedModule('tempfile')
-    mock_tempfile.mkdtemp.return_value = '[tempdir]'
-
-    self.PatchImportedModule('shutil')
-
-    self.network_controller_backend = TestNetworkControllerBackend(
-        FakePlatformBackend())
-
-  def testOpenCloseController(self):
-    b = self.network_controller_backend
-    self.assertFalse(b.is_open)
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg']) # Also installs test CA.
-    self.assertTrue(b.is_open)
-    self.assertTrue(b.is_test_ca_installed)
-    self.assertTrue(b.platform_backend.is_test_ca_installed)
-    b.Close() # Also removes test CA.
-    self.assertFalse(b.is_open)
-    self.assertFalse(b.is_test_ca_installed)
-    self.assertFalse(b.platform_backend.is_test_ca_installed)
-    b.Close()  # It's fine to close a closed controller.
-    self.assertFalse(b.is_open)
-
-  def testOpeningOpenControllerRaises(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    with self.assertRaises(AssertionError):
-      b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-
-  def testInstallTestCaFailure(self):
-    b = self.network_controller_backend
-    b.platform_backend.faulty_cert_installer = True
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg']) # Try to install test CA.
-
-    # Test CA is not installed, but the controller is otherwise open and safe
-    # to use.
-    self.assertTrue(b.is_open)
-    self.assertFalse(b.is_test_ca_installed)
-    self.assertFalse(b.platform_backend.is_test_ca_installed)
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-
-    b.Close() # No test CA to remove.
-    self.assertFalse(b.is_open)
-    self.assertFalse(b.is_test_ca_installed)
-    self.assertFalse(b.platform_backend.is_test_ca_installed)
-
-  def testStartStopReplay(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    self.assertFalse(b.is_replay_active)
-
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertTrue(b.replay_server.is_running)
-    self.assertIsNotNone(b.forwarder.port_pairs)
-
-    old_replay_server = b.replay_server
-    old_forwarder = b.forwarder
-    b.StopReplay()
-    self.assertFalse(b.is_replay_active)
-    self.assertFalse(old_replay_server.is_running)
-    self.assertIsNone(old_forwarder.port_pairs)
-    self.assertTrue(b.is_open)  # Controller is still open.
-
-    b.Close()
-    self.assertFalse(b.is_open)
-
-  def testClosingControllerAlsoStopsReplay(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertTrue(b.replay_server.is_running)
-    self.assertIsNotNone(b.forwarder.port_pairs)
-
-    old_replay_server = b.replay_server
-    old_forwarder = b.forwarder
-    b.Close()
-    self.assertFalse(b.is_replay_active)
-    self.assertFalse(old_replay_server.is_running)
-    self.assertIsNone(old_forwarder.port_pairs)
-    self.assertFalse(b.is_open)
-
-  def testReplayOnClosedControllerRaises(self):
-    b = self.network_controller_backend
-    self.assertFalse(b.is_open)
-    with self.assertRaises(AssertionError):
-      b.StartReplay('some-archive.wpr')
-
-  def testReplayWithSameArgsReuseServer(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertTrue(b.replay_server.is_running)
-
-    old_replay_server = b.replay_server
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertIs(b.replay_server, old_replay_server)
-    self.assertTrue(b.replay_server.is_running)
-
-  def testReplayWithDifferentArgsUseDifferentServer(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertTrue(b.replay_server.is_running)
-
-    old_replay_server = b.replay_server
-    b.StartReplay('another-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertIsNot(b.replay_server, old_replay_server)
-    self.assertTrue(b.replay_server.is_running)
-    self.assertFalse(old_replay_server.is_running)
-
-  def testReplayWithoutArchivePathDoesNotStopReplay(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-
-    b.StartReplay('some-archive.wpr')
-    self.assertTrue(b.is_replay_active)
-    self.assertTrue(b.replay_server.is_running)
-    old_replay_server = b.replay_server
-
-    b.StartReplay(None)
-    self.assertTrue(b.is_replay_active)
-    self.assertIs(b.replay_server, old_replay_server)
-    self.assertTrue(b.replay_server.is_running)
-    self.assertEqual(b.replay_server.archive_path, 'some-archive.wpr')
-
-  def testModeOffDoesNotCreateReplayServer(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_OFF, ['--some-arg'])
-    b.StartReplay('may-or-may-not-exist.wpr')
-    self.assertFalse(b.is_replay_active)
-    self.assertIsNone(b.replay_server)
-    self.assertIsNone(b.forwarder)
-
-  def testBadArchivePathRaises(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    with self.assertRaises(network_controller_backend.ArchiveDoesNotExistError):
-      b.StartReplay('does-not-exist.wpr')
-
-  def testBadArchivePathOnRecordIsOkay(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_RECORD, ['--some-arg'])
-    b.StartReplay('does-not-exist-yet.wpr')  # Does not raise.
-    self.assertTrue(b.is_replay_active)
-
-  def testReplayServerSettings(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_RECORD, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-
-    # Externally visible properties
-    self.assertTrue(b.is_replay_active)
-    self.assertEqual(b.host_ip, FORWARDER_HOST_IP)
-    self.assertEqual(b.wpr_device_ports, DEFAULT_PORTS)
-
-    # Private replay server settings.
-    self.assertTrue(b.replay_server.is_running)
-    self.assertEqual(b.replay_server.archive_path, 'some-archive.wpr')
-    self.assertEqual(b.replay_server.host_ip, FORWARDER_HOST_IP)
-    self.assertEqual(b.replay_server.replay_args, [
-        '--some-arg', '--record', '--inject_scripts=',
-        '--should_generate_certs',
-        '--https_root_ca_cert_path=%s' % EXPECTED_WPR_CA_CERT_PATH])
-
-  def testReplayServerOffSettings(self):
-    b = self.network_controller_backend
-    b.platform_backend.wpr_ca_cert_path = 'CERT_FILE'
-    b.Open(wpr_modes.WPR_OFF, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-
-    self.assertFalse(b.is_replay_active)
-    self.assertEqual(b.host_ip, FORWARDER_HOST_IP)
-    self.assertEqual(b.wpr_device_ports, None)
-    self.assertIsNone(b.replay_server)
-
-  def testUseDefaultPorts(self):
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-    self.assertEqual(b.replay_server.ports, DEFAULT_PORTS)
-    self.assertEqual(b.wpr_device_ports, DEFAULT_PORTS)
-
-    # Invariant
-    self.assertEqual(b.forwarder.port_pairs.local_ports, b.replay_server.ports)
-    self.assertEqual(b.forwarder.port_pairs.remote_ports, b.wpr_device_ports)
-
-  def testUseDefaultLocalPorts(self):
-    b = self.network_controller_backend
-    b.platform_backend.SetWprPortPairs(
-        http=(0, 8888), https=(0, 4444), dns=(0, 2222))
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-    self.assertEqual(b.replay_server.ports, DEFAULT_PORTS)
-    self.assertEqual(b.wpr_device_ports, forwarders.PortSet(8888, 4444, 2222))
-
-    # Invariant
-    self.assertEqual(b.forwarder.port_pairs.local_ports, b.replay_server.ports)
-    self.assertEqual(b.forwarder.port_pairs.remote_ports, b.wpr_device_ports)
-
-  def testUseSpecificPorts(self):
-    b = self.network_controller_backend
-    b.platform_backend.SetWprPortPairs(
-        http=(88, 8888), https=(44, 4444), dns=None)
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-    self.assertEqual(b.replay_server.ports, forwarders.PortSet(88, 44, None))
-    self.assertEqual(b.wpr_device_ports, forwarders.PortSet(8888, 4444, None))
-
-    # Invariant
-    self.assertEqual(b.forwarder.port_pairs.local_ports, b.replay_server.ports)
-    self.assertEqual(b.forwarder.port_pairs.remote_ports, b.wpr_device_ports)
-
-  def testRestartReplayShouldReusePorts(self):
-    FakeReplayServer.DEFAULT_PORTS = forwarders.PortSet(123, 456, 789)
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-    self.assertEqual(b.wpr_device_ports, forwarders.PortSet(123, 456, 789))
-
-    # If replay restarts, the factory may use a different set of default ports.
-    FakeReplayServer.DEFAULT_PORTS = forwarders.PortSet(987, 654, 321)
-    b.StartReplay('another-archive.wpr')
-
-    # However same ports must be used, because apps/browsers may already be
-    # configured to use the old set of ports.
-    self.assertEqual(b.wpr_device_ports, forwarders.PortSet(123, 456, 789))
-
-  def testNewControllerSessionMayUseDifferentPorts(self):
-    FakeReplayServer.DEFAULT_PORTS = forwarders.PortSet(123, 456, 789)
-    b = self.network_controller_backend
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-    self.assertEqual(b.wpr_device_ports, forwarders.PortSet(123, 456, 789))
-    b.Close()
-
-    # If replay restarts, the factory may use a different set of default ports.
-    FakeReplayServer.DEFAULT_PORTS = forwarders.PortSet(987, 654, 321)
-    b.Open(wpr_modes.WPR_REPLAY, ['--some-arg'])
-    b.StartReplay('some-archive.wpr')
-
-    # This time the network controller session was closed between replay's,
-    # so it's fine to use a different set of ports.
-    self.assertEqual(b.wpr_device_ports, forwarders.PortSet(987, 654, 321))
diff --git a/catapult/telemetry/telemetry/internal/platform/platform_backend.py b/catapult/telemetry/telemetry/internal/platform/platform_backend.py
index aedd6ad..2aead5b 100644
--- a/catapult/telemetry/telemetry/internal/platform/platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/platform_backend.py
@@ -85,6 +85,9 @@
       self._forwarder_factory = do_nothing_forwarder.DoNothingForwarderFactory()
     return self._forwarder_factory
 
+  def GetPortPairForForwarding(self, local_port):
+    return forwarders.PortPair(local_port=local_port, remote_port=local_port)
+
   def GetRemotePort(self, port):
     return port
 
@@ -103,13 +106,6 @@
 
     self._running_browser_backends.discard(browser_backend)
 
-  def GetWprPortPairs(self):
-    """Return suitable port pairs to be used for web page replay."""
-    return forwarders.PortPairs(
-        http=forwarders.PortPair(0, 0),
-        https=forwarders.PortPair(0, 0),
-        dns=None)
-
   def IsDisplayTracingSupported(self):
     return False
 
diff --git a/catapult/telemetry/telemetry/internal/platform/power_monitor/powermetrics_power_monitor.py b/catapult/telemetry/telemetry/internal/platform/power_monitor/powermetrics_power_monitor.py
index aa86876..5795bf7 100644
--- a/catapult/telemetry/telemetry/internal/platform/power_monitor/powermetrics_power_monitor.py
+++ b/catapult/telemetry/telemetry/internal/platform/power_monitor/powermetrics_power_monitor.py
@@ -236,6 +236,40 @@
 
     for m in metrics:
       StoreMetricAverage(m, sample_durations, out_dict)
+
+    if 'tasks' not in plist:
+      logging.error("'tasks' field not found in plist.")
+      return {}
+
+    # The following CPU metrics are already time-normalized, and segmented by
+    # process. Sum the metrics across all Chrome processes.
+    cputime = 0
+    energy_impact = 0
+    browser_process_count = 0
+    idle_wakeups = 0
+    for task in plist['tasks']:
+      if 'Chrome' in task['name'] or 'Chromium' in task['name']:
+        if 'Helper' not in task['name']:
+          browser_process_count += 1
+        cputime += float(task['cputime_ms_per_s'])
+        energy_impact += float(task.get('energy_impact', 0))
+        idle_wakeups += float(task['idle_wakeups_per_s'])
+    if browser_process_count == 0:
+      logging.warning('No Chrome or Chromium browser process found with '
+                      'powermetrics. Chrome CPU metrics will not be emitted.')
+      return {}
+    elif browser_process_count >= 2:
+      logging.warning('powermetrics found more than one Chrome or Chromium '
+                      'browser. Chrome CPU metrics will not be emitted.')
+      # During Telemetry unit tests, there may be multiple Chrome browsers
+      # present. Don't add cpu metrics, but don't return {} either.
+    else:  # browser_process_count == 1:
+      chrome_dict = {}
+      chrome_dict['cputime_ms_per_s'] = cputime
+      chrome_dict['energy_impact'] = energy_impact
+      chrome_dict['idle_wakeups_per_s'] = idle_wakeups
+      out_dict['component_utilization']['chrome'] = chrome_dict
+
     return out_dict
 
   def _KillPowerMetricsProcess(self):
diff --git a/catapult/telemetry/telemetry/internal/platform/tracing_agent/atrace_tracing_agent.py b/catapult/telemetry/telemetry/internal/platform/tracing_agent/atrace_tracing_agent.py
index 5a939df..9e1f1a4 100644
--- a/catapult/telemetry/telemetry/internal/platform/tracing_agent/atrace_tracing_agent.py
+++ b/catapult/telemetry/telemetry/internal/platform/tracing_agent/atrace_tracing_agent.py
@@ -9,34 +9,13 @@
 from devil.android.sdk import version_codes
 
 
-class AtraceOpts(object):
-  '''Object that holds Atrace options.
-
-  In systrace, the atrace options are provided by an object generated
-  by argparse. Since we're not using the command line options here and we
-  want to hard-code the relevant options, we create an object here
-  to do so.
-  '''
-
-  def __init__(self, serial_number, app_name):
-    self.compress_trace_data = True
-    self.trace_time = None
-    self.trace_buf_size = None
-    self.app_name = (','.join(app_name) if isinstance(app_name, list)
-        else app_name)
-    self.kfuncs = None
-    self.fix_threads = True
-    self.fix_tgids = True
-    self.fix_circular = True
-    self.device_serial_number = serial_number
-
 class AtraceTracingAgent(tracing_agent.TracingAgent):
   def __init__(self, platform_backend):
     super(AtraceTracingAgent, self).__init__(platform_backend)
     self._device = platform_backend.device
     self._categories = None
     self._atrace_agent = atrace_agent.AtraceAgent()
-    self._options = None
+    self._config = None
 
   @classmethod
   def IsSupported(cls, platform_backend):
@@ -46,10 +25,16 @@
   def StartAgentTracing(self, config, timeout):
     if not config.enable_atrace_trace:
       return False
-    self._categories = config.atrace_config.categories
-    self._options = AtraceOpts(str(self._device), config.atrace_config.app_name)
-    return self._atrace_agent.StartAgentTracing(
-        self._options, self._categories, timeout)
+
+    app_name = (','.join(config.atrace_config.app_name) if
+        isinstance(config.atrace_config.app_name, list) else
+        config.atrace_config.app_name)
+    self._config = atrace_agent.AtraceConfig(config.atrace_config.categories,
+                                             None, None, app_name, True, True,
+                                             True, True, None, None,
+                                             str(self._device), None,
+                                             'android')
+    return self._atrace_agent.StartAgentTracing(self._config, timeout)
 
   def StopAgentTracing(self):
     self._atrace_agent.StopAgentTracing()
diff --git a/catapult/telemetry/telemetry/internal/platform/tracing_agent/battor_tracing_agent.py b/catapult/telemetry/telemetry/internal/platform/tracing_agent/battor_tracing_agent.py
index d973bb1..b3fb5c5 100644
--- a/catapult/telemetry/telemetry/internal/platform/tracing_agent/battor_tracing_agent.py
+++ b/catapult/telemetry/telemetry/internal/platform/tracing_agent/battor_tracing_agent.py
@@ -6,7 +6,7 @@
 
 from battor import battor_error
 from battor import battor_wrapper
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 from devil.android import battery_utils
 from py_trace_event import trace_time
 from telemetry.internal.platform import tracing_agent
@@ -99,7 +99,13 @@
         tracing controller clock sync marker.
     """
     timestamp = trace_time.Now()
-    self._battor.RecordClockSyncMarker(sync_id)
+    try:
+      self._battor.RecordClockSyncMarker(sync_id)
+    except battor_error.BattorError:
+      logging.critical(
+          'Error while clock syncing with BattOr. Killing BattOr shell.')
+      self._battor.KillBattOrShell()
+      raise
     record_controller_clock_sync_marker_callback(sync_id, timestamp)
 
   def CollectAgentTraceData(self, trace_data_builder, timeout=None):
diff --git a/catapult/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py b/catapult/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py
index a878dfc..ccedeba 100644
--- a/catapult/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py
+++ b/catapult/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent.py
@@ -133,7 +133,7 @@
       devtools_clients):
     has_clock_synced = False
     if not devtools_clients:
-      raise ChromeClockSyncError()
+      raise ChromeClockSyncError('Cannot issue clock sync. No devtools clients')
 
     for client in devtools_clients:
       try:
@@ -146,7 +146,8 @@
         logging.exception('Failed to record clock sync marker with sync_id=%r '
                           'via DevTools client %r:' % (sync_id, client))
     if not has_clock_synced:
-      raise ChromeClockSyncError()
+      raise ChromeClockSyncError(
+          'Failed to issue clock sync to devtools client')
     record_controller_clock_sync_marker_callback(sync_id, timestamp)
 
   def _RecordClockSyncMarkerAsyncEvent(
@@ -165,7 +166,8 @@
         logging.exception('Failed to record clock sync marker with sync_id=%r '
                           'via inspector backend %r:' % (sync_id, backend))
     if not has_clock_synced:
-      raise ChromeClockSyncError()
+      raise ChromeClockSyncError(
+          'Failed to issue clock sync to devtools client')
     record_controller_clock_sync_marker_callback(sync_id, timestamp)
 
   def RecordClockSyncMarker(self, sync_id,
@@ -176,11 +178,17 @@
     for client in devtools_clients:
       version = client.GetChromeBranchNumber()
       break
-    if version and int(version) >= 2661:
+    logging.info('Chrome version: %s', version)
+    # Note, we aren't sure whether 2744 is the correct cut-off point which
+    # Chrome will support clock sync marker, however we verified that 2743 does
+    # not support clock sync (catapult/issues/2804) hence we use it here.
+    # On the next update of Chrome ref build, if testTBM2ForSmoke still fails,
+    # the cut-off branch number will need to be bumped up again.
+    if version and int(version) > 2743:
       self._RecordClockSyncMarkerDevTools(
           sync_id, record_controller_clock_sync_marker_callback,
           devtools_clients)
-    else:  # TODO(rnephew): Remove once chrome stable is past branch 2661.
+    else:  # TODO(rnephew): Remove once chrome stable is past branch 2743.
       self._RecordClockSyncMarkerAsyncEvent(
           sync_id, record_controller_clock_sync_marker_callback)
 
diff --git a/catapult/telemetry/telemetry/internal/platform/tracing_controller_backend.py b/catapult/telemetry/telemetry/internal/platform/tracing_controller_backend.py
index 19c06e5..7f805e8 100644
--- a/catapult/telemetry/telemetry/internal/platform/tracing_controller_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/tracing_controller_backend.py
@@ -195,8 +195,12 @@
       for agent in self._active_agents_instances:
         if agent.SupportsExplicitClockSync():
           sync_id = self._GenerateClockSyncId()
-          agent.RecordClockSyncMarker(sync_id,
-                                      self._RecordIssuerClockSyncMarker)
+          with trace_event.trace(
+              'RecordClockSyncMarker',
+              agent=str(agent.__class__.__name__),
+              sync_id=sync_id):
+            agent.RecordClockSyncMarker(sync_id,
+                                        self._RecordIssuerClockSyncMarker)
 
   def IsChromeTracingSupported(self):
     return chrome_tracing_agent.ChromeTracingAgent.IsSupported(
diff --git a/catapult/telemetry/telemetry/internal/platform/win_platform_backend.py b/catapult/telemetry/telemetry/internal/platform/win_platform_backend.py
index e750c99..f1fbf05 100644
--- a/catapult/telemetry/telemetry/internal/platform/win_platform_backend.py
+++ b/catapult/telemetry/telemetry/internal/platform/win_platform_backend.py
@@ -17,7 +17,7 @@
 import time
 import zipfile
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import exceptions
 from telemetry.core import os_version as os_version_module
@@ -159,6 +159,10 @@
     """Return current timestamp in seconds."""
     return {'TotalTime': time.time()}
 
+  @decorators.Deprecated(
+      2017, 11, 4,
+      'Clients should use tracing and memory-infra in new Telemetry '
+      'benchmarks. See for context: https://crbug.com/632021')
   def GetMemoryStats(self, pid):
     memory_info = self._GetWin32ProcessInfo(
         win32process.GetProcessMemoryInfo, pid)
diff --git a/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter.py b/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter.py
index de91b79..43fb973 100644
--- a/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter.py
+++ b/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter.py
@@ -6,6 +6,7 @@
 
 from telemetry.internal.results import output_formatter
 from telemetry.value import scalar
+from telemetry.value import trace
 
 
 class CsvPivotTableOutputFormatter(output_formatter.OutputFormatter):
@@ -50,7 +51,8 @@
           'run_index': run_index,
       }
       for value in run.values:
-        if isinstance(value, scalar.ScalarValue):
+        if (isinstance(value, scalar.ScalarValue) or
+            isinstance(value, trace.TraceValue)):
           value_dict = {
             'name': value.name,
             'value': value.value,
diff --git a/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter_unittest.py b/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter_unittest.py
index 9df2f39..7e201fe 100644
--- a/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter_unittest.py
+++ b/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter_unittest.py
@@ -5,12 +5,16 @@
 import StringIO
 import unittest
 
+import mock
+
 from telemetry import story
 from telemetry.internal.results import csv_pivot_table_output_formatter
 from telemetry.internal.results import page_test_results
 from telemetry import page as page_module
+from telemetry.timeline import trace_data
 from telemetry.value import improvement_direction
 from telemetry.value import scalar
+from telemetry.value import trace
 
 
 def _MakeStorySet():
@@ -39,14 +43,13 @@
         csv_pivot_table_output_formatter.CsvPivotTableOutputFormatter(
             self._output, trace_tag))
 
-  def SimulateBenchmarkRun(self, dict_of_values):
+  def SimulateBenchmarkRun(self, list_of_page_and_values):
     """Simulate one run of a benchmark, using the supplied values.
 
     Args:
-      dict_of_values: dictionary w/ Page instance as key, a list of Values
-          as value.
+      list_of_pages_and_values: a list of tuple (page, list of values)
     """
-    for page, values in dict_of_values.iteritems():
+    for page, values in list_of_page_and_values:
       self._results.WillRunPage(page)
       for v in values:
         v.page = page
@@ -59,10 +62,10 @@
 
   def testSimple(self):
     # Test a simple benchmark with only one value:
-    self.SimulateBenchmarkRun({
-        self._story_set[0]: [scalar.ScalarValue(
+    self.SimulateBenchmarkRun([
+        (self._story_set[0], [scalar.ScalarValue(
             None, 'foo', 'seconds', 3,
-            improvement_direction=improvement_direction.DOWN)]})
+            improvement_direction=improvement_direction.DOWN)])])
     expected = self._LINE_SEPARATOR.join([
         'story_set,page,name,value,units,run_index',
         'story_set,http://www.foo.com/,foo,3,seconds,0',
@@ -70,42 +73,50 @@
 
     self.assertEqual(expected, self.Format())
 
-  def testMultiplePagesAndValues(self):
-    self.SimulateBenchmarkRun({
-        self._story_set[0]: [
+  @mock.patch('py_utils.cloud_storage.Insert')
+  def testMultiplePagesAndValues(self, cs_insert_mock):
+    cs_insert_mock.return_value = 'https://cloud_storage_url/foo'
+    trace_value = trace.TraceValue(None, trace_data.TraceData('{"events": 0}'))
+    trace_value.UploadToCloud(bucket='foo')
+    self.SimulateBenchmarkRun([
+        (self._story_set[0], [
             scalar.ScalarValue(
               None, 'foo', 'seconds', 4,
-              improvement_direction=improvement_direction.DOWN)],
-        self._story_set[1]: [
+              improvement_direction=improvement_direction.DOWN)]),
+        (self._story_set[1], [
             scalar.ScalarValue(
                 None, 'foo', 'seconds', 3.4,
                 improvement_direction=improvement_direction.DOWN),
+            trace_value,
             scalar.ScalarValue(
                 None, 'bar', 'km', 10,
                 improvement_direction=improvement_direction.DOWN),
             scalar.ScalarValue(
                 None, 'baz', 'count', 5,
-                improvement_direction=improvement_direction.DOWN)]})
+                improvement_direction=improvement_direction.DOWN)])])
 
     # Parse CSV output into list of lists.
     csv_string = self.Format()
     lines = csv_string.split(self._LINE_SEPARATOR)
     values = [s.split(',') for s in lines[1:-1]]
 
-    self.assertEquals(len(values), 4)  # We expect 4 value in total.
+    self.assertEquals(len(values), 5)  # We expect 5 value in total.
     self.assertEquals(len(set((v[1] for v in values))), 2)  # 2 pages.
-    self.assertEquals(len(set((v[2] for v in values))), 3)  # 3 value names.
+    self.assertEquals(len(set((v[2] for v in values))), 4)  # 4 value names.
+    self.assertEquals(values[2],
+        ['story_set', 'http://www.bar.com/', 'trace',
+         'https://cloud_storage_url/foo', '', '1'])
 
   def testTraceTag(self):
     self.MakeFormatter(trace_tag='date,option')
-    self.SimulateBenchmarkRun({
-        self._story_set[0]: [
+    self.SimulateBenchmarkRun([
+        (self._story_set[0], [
             scalar.ScalarValue(
                 None, 'foo', 'seconds', 3,
                 improvement_direction=improvement_direction.DOWN),
             scalar.ScalarValue(
                 None, 'bar', 'tons', 5,
-                improvement_direction=improvement_direction.DOWN)]})
+                improvement_direction=improvement_direction.DOWN)])])
     output = self.Format().split(self._LINE_SEPARATOR)
 
     self.assertTrue(output[0].endswith(',trace_tag_0,trace_tag_1'))
diff --git a/catapult/telemetry/telemetry/internal/results/html2_output_formatter.py b/catapult/telemetry/telemetry/internal/results/html2_output_formatter.py
index e010e26..7935265 100644
--- a/catapult/telemetry/telemetry/internal/results/html2_output_formatter.py
+++ b/catapult/telemetry/telemetry/internal/results/html2_output_formatter.py
@@ -6,7 +6,7 @@
 import logging
 import os
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 
 from telemetry.internal.results import output_formatter
 
diff --git a/catapult/telemetry/telemetry/internal/results/html_output_formatter.py b/catapult/telemetry/telemetry/internal/results/html_output_formatter.py
index 34a6305..f325ef2 100644
--- a/catapult/telemetry/telemetry/internal/results/html_output_formatter.py
+++ b/catapult/telemetry/telemetry/internal/results/html_output_formatter.py
@@ -8,7 +8,7 @@
 import os
 import re
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import util
 from telemetry.internal.results import chart_json_output_formatter
diff --git a/catapult/telemetry/telemetry/internal/results/page_test_results.py b/catapult/telemetry/telemetry/internal/results/page_test_results.py
index 1e89af7..dae7782 100644
--- a/catapult/telemetry/telemetry/internal/results/page_test_results.py
+++ b/catapult/telemetry/telemetry/internal/results/page_test_results.py
@@ -10,7 +10,7 @@
 import sys
 import traceback
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.internal.results import json_output_formatter
 from telemetry.internal.results import progress_reporter as reporter_module
diff --git a/catapult/telemetry/telemetry/internal/results/results_options.py b/catapult/telemetry/telemetry/internal/results/results_options.py
index 7a14fb4..3fbeb84 100644
--- a/catapult/telemetry/telemetry/internal/results/results_options.py
+++ b/catapult/telemetry/telemetry/internal/results/results_options.py
@@ -8,7 +8,7 @@
 import sys
 import time
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import util
 from telemetry.internal.results import chart_json_output_formatter
diff --git a/catapult/telemetry/telemetry/internal/story_runner.py b/catapult/telemetry/telemetry/internal/story_runner.py
index df30909..278a4cf 100644
--- a/catapult/telemetry/telemetry/internal/story_runner.py
+++ b/catapult/telemetry/telemetry/internal/story_runner.py
@@ -8,7 +8,7 @@
 import sys
 import time
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.core import exceptions
 from telemetry import decorators
@@ -308,13 +308,22 @@
           'PageTest must be used with StorySet containing only '
           'telemetry.page.Page stories.')
 
+  should_tear_down_state_after_each_story_run = (
+      benchmark.ShouldTearDownStateAfterEachStoryRun())
+  # HACK: restarting shared state has huge overhead on cros (crbug.com/645329),
+  # hence we default this to False when test is run against CrOS.
+  # TODO(cros-team): figure out ways to remove this hack.
+  if (possible_browser.platform.GetOSName() == 'chromeos' and
+      not benchmark.IsShouldTearDownStateAfterEachStoryRunOverriden()):
+    should_tear_down_state_after_each_story_run = False
+
   benchmark_metadata = benchmark.GetMetadata()
   with results_options.CreateResults(
       benchmark_metadata, finder_options,
       benchmark.ValueCanBeAddedPredicate) as results:
     try:
       Run(pt, stories, finder_options, results, benchmark.max_failures,
-          benchmark.ShouldTearDownStateAfterEachStoryRun(),
+          should_tear_down_state_after_each_story_run,
           benchmark.ShouldTearDownStateAfterEachStorySetRun())
       return_code = min(254, len(results.failures))
     except Exception:
diff --git a/catapult/telemetry/telemetry/internal/story_runner_unittest.py b/catapult/telemetry/telemetry/internal/story_runner_unittest.py
index 94d5705..7d6b174 100644
--- a/catapult/telemetry/telemetry/internal/story_runner_unittest.py
+++ b/catapult/telemetry/telemetry/internal/story_runner_unittest.py
@@ -8,7 +8,7 @@
 import sys
 import unittest
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry import benchmark
 from telemetry.core import exceptions
diff --git a/catapult/telemetry/telemetry/internal/util/binary_manager.py b/catapult/telemetry/telemetry/internal/util/binary_manager.py
index 7cfce59..d3e100f 100644
--- a/catapult/telemetry/telemetry/internal/util/binary_manager.py
+++ b/catapult/telemetry/telemetry/internal/util/binary_manager.py
@@ -5,8 +5,8 @@
 import logging
 import os
 
-from catapult_base import binary_manager
-from catapult_base import dependency_util
+from py_utils import binary_manager
+from py_utils import dependency_util
 import dependency_manager
 from devil import devil_env
 
@@ -19,8 +19,8 @@
     util.GetTelemetryDir(), 'telemetry', 'internal', 'binary_dependencies.json')
 
 
-CHROME_BINARY_CONFIG = os.path.join(util.GetCatapultDir(), 'catapult_base',
-                                    'catapult_base', 'chrome_binaries.json')
+CHROME_BINARY_CONFIG = os.path.join(util.GetCatapultDir(), 'common', 'py_utils',
+                                    'py_utils', 'chrome_binaries.json')
 
 
 BATTOR_BINARY_CONFIG = os.path.join(util.GetCatapultDir(), 'common', 'battor',
diff --git a/catapult/telemetry/telemetry/internal/util/binary_manager_unittest.py b/catapult/telemetry/telemetry/internal/util/binary_manager_unittest.py
index ea7e844..acf63b4 100644
--- a/catapult/telemetry/telemetry/internal/util/binary_manager_unittest.py
+++ b/catapult/telemetry/telemetry/internal/util/binary_manager_unittest.py
@@ -23,7 +23,7 @@
     self.assertRaises(exceptions.InitializationError,
                       binary_manager.InitDependencyManager, None)
 
-  @mock.patch('catapult_base.binary_manager.BinaryManager')
+  @mock.patch('py_utils.binary_manager.BinaryManager')
   def testFetchPathInitialized(self, binary_manager_mock):
     expected = [mock.call.binary_manager.BinaryManager(
                    ['base_config_object']),
@@ -37,7 +37,7 @@
     self.assertRaises(exceptions.InitializationError,
                       binary_manager.FetchPath, 'dep', 'plat', 'arch')
 
-  @mock.patch('catapult_base.binary_manager.BinaryManager')
+  @mock.patch('py_utils.binary_manager.BinaryManager')
   def testLocalPathInitialized(self, binary_manager_mock):
     expected = [mock.call.binary_manager.BinaryManager(
                    ['base_config_object']),
diff --git a/catapult/telemetry/telemetry/internal/util/path.py b/catapult/telemetry/telemetry/internal/util/path.py
index 5c3616f..80379df 100644
--- a/catapult/telemetry/telemetry/internal/util/path.py
+++ b/catapult/telemetry/telemetry/internal/util/path.py
@@ -6,9 +6,9 @@
 import os
 
 from telemetry.core import util
-from catapult_base import util as catapult_util  # pylint: disable=import-error
+import py_utils as catapult_util
 
-# TODO(aiolos): Move these functions to catapult_base or here.
+# TODO(aiolos): Move these functions to catapult_util or here.
 GetBaseDir = util.GetBaseDir
 GetTelemetryDir = util.GetTelemetryDir
 GetUnittestDataDir = util.GetUnittestDataDir
diff --git a/catapult/telemetry/telemetry/internal/util/ts_proxy_server.py b/catapult/telemetry/telemetry/internal/util/ts_proxy_server.py
index 06aaa16..ee72b98 100644
--- a/catapult/telemetry/telemetry/internal/util/ts_proxy_server.py
+++ b/catapult/telemetry/telemetry/internal/util/ts_proxy_server.py
@@ -37,12 +37,13 @@
   telemetry/third_party/tsproxy/tsproxy.py
   """
 
-  def __init__(self, http_port=None, https_port=None):
+  def __init__(self, host_ip=None, http_port=None, https_port=None):
     """Initialize TsProxyServer.
     """
     self._proc = None
     self._port = None
     self._is_running = False
+    self._host_ip = host_ip
     assert bool(http_port) == bool(https_port)
     self._http_port = http_port
     self._https_port = https_port
@@ -57,10 +58,11 @@
     cmd_line = [sys.executable, _TSPROXY_PATH]
     cmd_line.extend([
         '--port=0'])  # Use port 0 so tsproxy picks a random available port.
-
+    if self._host_ip:
+      cmd_line.append('--desthost=%s' % self._host_ip)
     if self._http_port:
-      cmd_line.extend([
-        '--mapports=443:%s,*:%s' % (self._https_port, self._http_port)])
+      cmd_line.append(
+        '--mapports=443:%s,*:%s' % (self._https_port, self._http_port))
     logging.info('Tsproxy commandline: %r' % cmd_line)
     self._proc = subprocess.Popen(
         cmd_line, stdout=subprocess.PIPE, stdin=subprocess.PIPE,
@@ -68,6 +70,7 @@
     atexit_with_log.Register(self.StopServer)
     try:
       util.WaitFor(self._IsStarted, timeout)
+      logging.info('TsProxy port: %s', self._port)
       self._is_running = True
     except exceptions.TimeoutException:
       err = self.StopServer()
@@ -86,6 +89,7 @@
 
 
   def _IssueCommand(self, command_string, timeout):
+    logging.info('Issuing command to ts_proxy_server: %s', command_string)
     command_output = []
     self._proc.stdin.write('%s\n' % command_string)
     self._proc.stdin.flush()
diff --git a/catapult/telemetry/telemetry/internal/util/ts_proxy_server_unittest.py b/catapult/telemetry/telemetry/internal/util/ts_proxy_server_unittest.py
index 25c8705..c824532 100644
--- a/catapult/telemetry/telemetry/internal/util/ts_proxy_server_unittest.py
+++ b/catapult/telemetry/telemetry/internal/util/ts_proxy_server_unittest.py
@@ -24,7 +24,7 @@
   def testSmokeStartingTsProxyServer(self):
     with ts_proxy_server.TsProxyServer() as server:
       self.assertIsNotNone(server.port)
-    with ts_proxy_server.TsProxyServer(37124, 37125) as server:
+    with ts_proxy_server.TsProxyServer(None, 37124, 37125) as server:
       self.assertIsNotNone(server.port)
 
   def testSmokeUpdatingOutboundPorts(self):
diff --git a/catapult/telemetry/telemetry/internal/util/wp_server_unittest.py b/catapult/telemetry/telemetry/internal/util/wp_server_unittest.py
index 08d8e3b..054760d 100644
--- a/catapult/telemetry/telemetry/internal/util/wp_server_unittest.py
+++ b/catapult/telemetry/telemetry/internal/util/wp_server_unittest.py
@@ -2,6 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+import logging
 import sys
 import unittest
 
@@ -16,7 +17,8 @@
         '--port=2', '--ssl_port=1', '--dns_port=0',
         '--use_closest_match', '--log_level=warning', '--extra_arg', 'foo.wpr']
     cmd_line = wpr_server.ReplayServer._GetCommandLine(
-        'replay.py', '127.0.0.1', 2, 1, 0, ['--extra_arg'], 'foo.wpr')
+        'replay.py', '127.0.0.1', 2, 1, 0, ['--extra_arg'], 'foo.wpr',
+        log_level=logging.WARNING)
     self.assertEqual(expected_cmd_line, cmd_line)
 
   def testNoDnsGivesNoDnsForwarding(self):
@@ -25,7 +27,8 @@
         '--port=8080', '--ssl_port=8443', '--no-dns_forwarding',
         '--use_closest_match', '--log_level=warning', 'bar.wpr']
     cmd_line = wpr_server.ReplayServer._GetCommandLine(
-        'replay.py', '127.0.0.1', 8080, 8443, None, [], 'bar.wpr')
+        'replay.py', '127.0.0.1', 8080, 8443, None, [], 'bar.wpr',
+        log_level=logging.WARNING)
     self.assertEqual(expected_cmd_line, cmd_line)
 
 
diff --git a/catapult/telemetry/telemetry/internal/util/wpr_server.py b/catapult/telemetry/telemetry/internal/util/wpr_server.py
index 37bad8f..7f9343f 100644
--- a/catapult/telemetry/telemetry/internal/util/wpr_server.py
+++ b/catapult/telemetry/telemetry/internal/util/wpr_server.py
@@ -95,8 +95,18 @@
     self.replay_process = None
 
   @staticmethod
+  def _GetLoggingLevel(log_level=None):
+    return {
+      logging.DEBUG: 'debug',
+      logging.INFO: 'info',
+      logging.WARNING: 'warning',
+      logging.ERROR: 'error',
+      logging.CRITICAL: 'critical',
+    }[log_level or logging.getLogger().level]
+
+  @staticmethod
   def _GetCommandLine(replay_py, host_ip, http_port, https_port, dns_port,
-                      replay_options, archive_path):
+                      replay_options, archive_path, log_level=None):
     """Set WPR command-line options. Can be overridden if needed."""
     cmd_line = [sys.executable, replay_py]
     cmd_line.extend([
@@ -112,7 +122,7 @@
       cmd_line.append('--no-dns_forwarding')
     cmd_line.extend([
         '--use_closest_match',
-        '--log_level=warning'
+        '--log_level=%s' % ReplayServer._GetLoggingLevel(log_level)
         ])
     cmd_line.extend(replay_options)
     cmd_line.append(archive_path)
@@ -199,7 +209,7 @@
     is_posix = sys.platform.startswith('linux') or sys.platform == 'darwin'
     logging.info('Starting Web-Page-Replay: %s', self._cmd_line)
     self._CreateTempLogFilePath()
-    with self._OpenLogFile() as log_fh:
+    with open(self._temp_log_file_path, 'w') as log_fh:
       self.replay_process = subprocess.Popen(
           self._cmd_line, stdout=log_fh, stderr=subprocess.STDOUT,
           preexec_fn=(_ResetInterruptHandler if is_posix else None))
@@ -274,7 +284,7 @@
 
   def _CleanUpTempLogFilePath(self):
     assert self._temp_log_file_path
-    if logging.getLogger('').isEnabledFor(logging.INFO):
+    if logging.getLogger('').isEnabledFor(logging.DEBUG):
       with open(self._temp_log_file_path, 'r') as f:
         wpr_log_content = '\n'.join([
             '************************** WPR LOG *****************************',
diff --git a/catapult/telemetry/telemetry/page/__init__.py b/catapult/telemetry/telemetry/page/__init__.py
index 9206767..64de29b 100644
--- a/catapult/telemetry/telemetry/page/__init__.py
+++ b/catapult/telemetry/telemetry/page/__init__.py
@@ -6,7 +6,7 @@
 import os
 import urlparse
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry import story
 from telemetry.page import shared_page_state
diff --git a/catapult/telemetry/telemetry/page/legacy_page_test.py b/catapult/telemetry/telemetry/page/legacy_page_test.py
index 1c26c36..47b6f80 100644
--- a/catapult/telemetry/telemetry/page/legacy_page_test.py
+++ b/catapult/telemetry/telemetry/page/legacy_page_test.py
@@ -4,6 +4,8 @@
 
 import logging
 
+from py_trace_event import trace_event
+
 from telemetry.core import exceptions
 from telemetry.internal.actions import action_runner as action_runner_module
 
@@ -53,6 +55,8 @@
              page, 'body_children', 'count', body_child_count))
   """
 
+  __metaclass__ = trace_event.TracedMetaClass
+
   def __init__(self,
                needs_browser_restart_after_each_page=False,
                clear_cache_before_each_run=False):
diff --git a/catapult/telemetry/telemetry/page/shared_page_state.py b/catapult/telemetry/telemetry/page/shared_page_state.py
index abb907e..71b5bad 100644
--- a/catapult/telemetry/telemetry/page/shared_page_state.py
+++ b/catapult/telemetry/telemetry/page/shared_page_state.py
@@ -46,11 +46,12 @@
   def __init__(self, test, finder_options, story_set):
     super(SharedPageState, self).__init__(test, finder_options, story_set)
     if isinstance(test, timeline_based_measurement.TimelineBasedMeasurement):
-      assert not finder_options.profiler, (
-          'This is a Timeline Based Measurement benchmark. You cannot run it '
-          'with the --profiler flag. If you need trace data, tracing is always '
-          ' enabled in Timeline Based Measurement benchmarks and you can get '
-          'the trace data by using --output-format=json.')
+      if finder_options.profiler:
+        assert not 'trace' in finder_options.profiler, (
+            'This is a Timeline Based Measurement benchmark. You cannot run it '
+            'with trace profiler enabled. If you need trace data, tracing is '
+            'always enabled in Timeline Based Measurement benchmarks and you '
+            'can get the trace data by adding --output-format=json.')
       # This is to avoid the cyclic-import caused by timeline_based_page_test.
       from telemetry.web_perf import timeline_based_page_test
       self._test = timeline_based_page_test.TimelineBasedPageTest(test)
@@ -94,10 +95,15 @@
 
     if self.platform.network_controller.is_open:
       self.platform.network_controller.Close()
+    self.platform.network_controller.InitializeIfNeeded()
     self.platform.network_controller.Open(wpr_mode,
                                           browser_options.extra_wpr_args)
 
   @property
+  def possible_browser(self):
+    return self._possible_browser
+
+  @property
   def browser(self):
     return self._browser
 
diff --git a/catapult/telemetry/telemetry/record_wpr.py b/catapult/telemetry/telemetry/record_wpr.py
index a6b814f..8b73640 100644
--- a/catapult/telemetry/telemetry/record_wpr.py
+++ b/catapult/telemetry/telemetry/record_wpr.py
@@ -20,6 +20,10 @@
 from telemetry.web_perf import timeline_based_measurement
 from telemetry.web_perf import timeline_based_page_test
 
+DEFAULT_LOG_FORMAT = (
+  '(%(levelname)s) %(asctime)s %(module)s.%(funcName)s:%(lineno)d  '
+  '%(message)s')
+
 
 class RecorderPageTest(legacy_page_test.LegacyPageTest):
   def __init__(self):
@@ -235,7 +239,11 @@
         upload_to_cloud_storage)
 
 
-def Main(environment):
+def Main(environment, **log_config_kwargs):
+  # the log level is set in browser_options
+  log_config_kwargs.pop('level', None)
+  log_config_kwargs.setdefault('format', DEFAULT_LOG_FORMAT)
+  logging.basicConfig(**log_config_kwargs)
 
   parser = argparse.ArgumentParser(
       usage='Record a benchmark or a story (page set).')
@@ -271,7 +279,6 @@
 
   binary_manager.InitDependencyManager(environment.client_configs)
 
-
   # TODO(nednguyen): update WprRecorder so that it handles the difference
   # between recording a benchmark vs recording a story better based on
   # the distinction between args.benchmark & args.story
diff --git a/catapult/telemetry/telemetry/story/__init__.py b/catapult/telemetry/telemetry/story/__init__.py
index 1a898db..a17b72d 100644
--- a/catapult/telemetry/telemetry/story/__init__.py
+++ b/catapult/telemetry/telemetry/story/__init__.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.story.shared_state import SharedState
 from telemetry.story.story import Story
diff --git a/catapult/telemetry/telemetry/story/shared_state.py b/catapult/telemetry/telemetry/story/shared_state.py
index 8af1d8b..9de4945 100644
--- a/catapult/telemetry/telemetry/story/shared_state.py
+++ b/catapult/telemetry/telemetry/story/shared_state.py
@@ -2,6 +2,8 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
+from py_trace_event import trace_event
+
 
 class SharedState(object):
   """A class that manages the test state across multiple stories.
@@ -9,6 +11,8 @@
 
   """
 
+  __metaclass__ = trace_event.TracedMetaClass
+
   def __init__(self, test, options, story_set):
     """ This method is styled on unittest.TestCase.setUpClass.
     Override to do any action before running stories that
diff --git a/catapult/telemetry/telemetry/testing/browser_test_case.py b/catapult/telemetry/telemetry/testing/browser_test_case.py
index eb72880..956e5d8 100644
--- a/catapult/telemetry/telemetry/testing/browser_test_case.py
+++ b/catapult/telemetry/telemetry/testing/browser_test_case.py
@@ -60,6 +60,7 @@
 
   if current_browser:
     current_browser.Close()
+    current_browser.platform.network_controller.Close()
   current_browser = None
   current_browser_options = None
 
@@ -84,6 +85,8 @@
       browser_to_create = browser_finder.FindBrowser(options)
       if not browser_to_create:
         raise Exception('No browser found, cannot continue test.')
+      cls._platform = browser_to_create.platform
+      cls._platform.network_controller.InitializeIfNeeded()
 
       try:
         current_browser = browser_to_create.Create(options)
@@ -92,13 +95,13 @@
         cls.tearDownClass()
         raise
     cls._browser = current_browser
-    cls._platform = current_browser.platform
     cls._device = options.remote_platform_options.device
 
   @classmethod
   def tearDownClass(cls):
     if cls._platform:
       cls._platform.StopAllLocalServers()
+      cls._platform.network_controller.Close()
 
   @classmethod
   def CustomizeBrowserOptions(cls, options):
diff --git a/catapult/telemetry/telemetry/testing/browser_test_runner.py b/catapult/telemetry/telemetry/testing/browser_test_runner.py
index cea4e0e..a2717bc 100644
--- a/catapult/telemetry/telemetry/testing/browser_test_runner.py
+++ b/catapult/telemetry/telemetry/testing/browser_test_runner.py
@@ -5,6 +5,7 @@
 import argparse
 import inspect
 import json
+import logging
 import re
 import time
 import unittest
@@ -15,6 +16,10 @@
 from telemetry.testing import options_for_unittests
 from telemetry.testing import serially_executed_browser_test_case
 
+DEFAULT_LOG_FORMAT = (
+  '(%(levelname)s) %(asctime)s %(module)s.%(funcName)s:%(lineno)d  '
+  '%(message)s')
+
 
 def ProcessCommandLineOptions(test_class, project_config, args):
   options = browser_options.BrowserFinderOptions()
@@ -147,6 +152,76 @@
 
 _TEST_GENERATOR_PREFIX = 'GenerateTestCases_'
 
+
+def _GenerateTestCases(test_class, finder_options):
+  test_cases = []
+  for name, method in inspect.getmembers(
+      test_class, predicate=inspect.ismethod):
+    if name.startswith('test'):
+      # Do not allow method names starting with "test" in these
+      # subclasses, to avoid collisions with Python's unit test runner.
+      raise Exception('Name collision with Python\'s unittest runner: %s' %
+                      name)
+    elif name.startswith('Test'):
+      # Pass these through for the time being. We may want to rethink
+      # how they are handled in the future.
+      test_cases.append(test_class(name))
+    elif name.startswith(_TEST_GENERATOR_PREFIX):
+      based_method_name = name[len(_TEST_GENERATOR_PREFIX):]
+      assert hasattr(test_class, based_method_name), (
+          '%s is specified but based method %s does not exist' %
+          (name, based_method_name))
+      based_method = getattr(test_class, based_method_name)
+      for generated_test_name, args in method(finder_options):
+        _ValidateTestMethodname(generated_test_name)
+        setattr(test_class, generated_test_name, _GenerateTestMethod(
+            based_method, args))
+        test_cases.append(test_class(generated_test_name))
+  return test_cases
+
+
+def LoadAllTestsInModule(module):
+  """ Load all tests & generated browser tests in a given module.
+
+  This is supposed to be invoke in load_tests() method of your test modules that
+  use browser_test_runner framework to discover & generate the tests to be
+  picked up by the test runner. Here is the example of how your test module
+  should looks like:
+
+  ################## my_awesome_browser_tests.py  ################
+  import sys
+
+  from telemetry.testing import serially_executed_browser_test_case
+  ...
+
+  class TestSimpleBrowser(
+      serially_executed_browser_test_case.SeriallyExecutedBrowserTestCase):
+  ...
+  ...
+
+  def load_tests(loader, tests, pattern):
+    return browser_test_runner.LoadAllTestsInModule(
+        sys.modules[__name__])
+  #################################################################
+
+  Args:
+    module: the module which contains test cases classes.
+
+  Returns:
+    an instance of unittest.TestSuite, which contains all the tests & generated
+    test cases to be run.
+  """
+  suite = unittest.TestSuite()
+  for _, obj in inspect.getmembers(module):
+    if (inspect.isclass(obj) and
+        issubclass(obj, serially_executed_browser_test_case.
+        SeriallyExecutedBrowserTestCase)):
+      for test in _GenerateTestCases(test_class=obj,
+          finder_options=options_for_unittests.GetCopy()):
+        suite.addTest(test)
+  return suite
+
+
 def _LoadTests(test_class, finder_options, filter_regex_str,
                filter_tests_after_sharding,
                total_shards, shard_index, test_times,
@@ -160,29 +235,11 @@
   else:
     filter_regex = real_regex
     post_filter_regex = noop_regex
-  for name, method in inspect.getmembers(
-      test_class, predicate=inspect.ismethod):
-    if name.startswith('test'):
-      # Do not allow method names starting with "test" in these
-      # subclasses, to avoid collisions with Python's unit test runner.
-      raise Exception('Name collision with Python\'s unittest runner: %s' %
-                      name)
-    elif name.startswith('Test') and filter_regex.search(name):
-      # Pass these through for the time being. We may want to rethink
-      # how they are handled in the future.
-      test_cases.append(test_class(name))
-    elif name.startswith(_TEST_GENERATOR_PREFIX):
-      based_method_name = name[len(_TEST_GENERATOR_PREFIX):]
-      assert hasattr(test_class, based_method_name), (
-          '%s is specified but %s based method %s does not exist' %
-          name, based_method_name)
-      based_method = getattr(test_class, based_method_name)
-      for generated_test_name, args in method(finder_options):
-        _ValidateTestMethodname(generated_test_name)
-        if filter_regex.search(generated_test_name):
-          setattr(test_class, generated_test_name, _GenerateTestMethod(
-              based_method, args))
-          test_cases.append(test_class(generated_test_name))
+
+  for t in _GenerateTestCases(test_class, finder_options):
+    if filter_regex.search(t.shortName()):
+      test_cases.append(t)
+
   if test_times:
     # Assign tests to shards.
     shards = _SplitShardsByTime(test_cases, total_shards, test_times,
@@ -229,7 +286,12 @@
     self.times[test.shortName()] = (time.time() - self._current_test_start_time)
 
 
-def Run(project_config, test_run_options, args):
+def Run(project_config, test_run_options, args, **log_config_kwargs):
+  # the log level is set in browser_options
+  log_config_kwargs.pop('level', None)
+  log_config_kwargs.setdefault('format', DEFAULT_LOG_FORMAT)
+  logging.basicConfig(**log_config_kwargs)
+
   binary_manager.InitDependencyManager(project_config.client_configs)
   parser = argparse.ArgumentParser(description='Run a browser test suite')
   parser.add_argument('test', type=str, help='Name of the test suite to run')
diff --git a/catapult/telemetry/telemetry/testing/browser_test_runner_unittest.py b/catapult/telemetry/telemetry/testing/browser_test_runner_unittest.py
index 2321e50..7513f2f 100644
--- a/catapult/telemetry/telemetry/testing/browser_test_runner_unittest.py
+++ b/catapult/telemetry/telemetry/testing/browser_test_runner_unittest.py
@@ -4,6 +4,7 @@
 
 import os
 import string
+import sys
 import tempfile
 import unittest
 import json
@@ -13,6 +14,7 @@
 from telemetry import project_config
 from telemetry.core import util
 from telemetry.testing import browser_test_runner
+from telemetry.testing import serially_executed_browser_test_case
 
 
 class BrowserTestRunnerTest(unittest.TestCase):
@@ -287,3 +289,44 @@
     self.assertEqual(4.0, browser_test_runner._MedianTestTime(
       {'test1': 2.0, 'test2': 6.0, 'test3': 1.0, 'test4': 8.0}))
 
+
+class Algebra(
+    serially_executed_browser_test_case.SeriallyExecutedBrowserTestCase):
+
+  @classmethod
+  def GenerateTestCases_Simple(cls, options):
+    del options  # Unused.
+    yield 'testOne', (1, 2)
+    yield 'testTwo', (3, 3)
+
+  def Simple(self, x, y):
+    self.assertEquals(x, y)
+
+  def TestNumber(self):
+    self.assertEquals(0, 1)
+
+
+class Geometric(
+    serially_executed_browser_test_case.SeriallyExecutedBrowserTestCase):
+
+  @classmethod
+  def GenerateTestCases_Compare(cls, options):
+    del options  # Unused.
+    yield 'testBasic', ('square', 'circle')
+
+  def Compare(self, x, y):
+    self.assertEquals(x, y)
+
+  def TestAngle(self):
+    self.assertEquals(90, 450)
+
+
+class TestLoadAllTestModules(unittest.TestCase):
+  def testLoadAllTestsInModule(self):
+    tests = browser_test_runner.LoadAllTestsInModule(sys.modules[__name__])
+    self.assertEquals(sorted([t.id() for t in tests]),
+        ['telemetry.testing.browser_test_runner_unittest.Algebra.TestNumber',
+         'telemetry.testing.browser_test_runner_unittest.Algebra.testOne',
+         'telemetry.testing.browser_test_runner_unittest.Algebra.testTwo',
+         'telemetry.testing.browser_test_runner_unittest.Geometric.TestAngle',
+         'telemetry.testing.browser_test_runner_unittest.Geometric.testBasic'])
diff --git a/catapult/telemetry/telemetry/testing/fakes/__init__.py b/catapult/telemetry/telemetry/testing/fakes/__init__.py
index 17338cc..537cdc9 100644
--- a/catapult/telemetry/telemetry/testing/fakes/__init__.py
+++ b/catapult/telemetry/telemetry/testing/fakes/__init__.py
@@ -293,6 +293,9 @@
     self.is_replay_active = False
     self.is_open = False
 
+  def InitializeIfNeeded(self):
+    pass
+
   def Open(self, wpr_mode, extra_wpr_args):
     self.wpr_mode = wpr_mode
     self.extra_wpr_args = extra_wpr_args
diff --git a/catapult/telemetry/telemetry/testing/run_tests.py b/catapult/telemetry/telemetry/testing/run_tests.py
index e89a3aa..1718989 100644
--- a/catapult/telemetry/telemetry/testing/run_tests.py
+++ b/catapult/telemetry/telemetry/testing/run_tests.py
@@ -19,8 +19,8 @@
 from telemetry.testing import browser_test_case
 from telemetry.testing import options_for_unittests
 
-from catapult_base import cloud_storage
-from catapult_base import xvfb
+from py_utils import cloud_storage
+from py_utils import xvfb
 
 import typ
 
diff --git a/catapult/telemetry/telemetry/testing/serially_executed_browser_test_case.py b/catapult/telemetry/telemetry/testing/serially_executed_browser_test_case.py
index 4799a96..a37a9e0 100644
--- a/catapult/telemetry/telemetry/testing/serially_executed_browser_test_case.py
+++ b/catapult/telemetry/telemetry/testing/serially_executed_browser_test_case.py
@@ -4,7 +4,7 @@
 
 import unittest
 
-from catapult_base import cloud_storage
+from py_utils import cloud_storage
 from telemetry.internal.browser import browser_finder
 from telemetry.testing import options_for_unittests
 from telemetry.util import wpr_modes
@@ -46,6 +46,7 @@
     cls._browser_to_create = browser_finder.FindBrowser(browser_options)
     if not cls.platform:
       cls.platform = cls._browser_to_create.platform
+      cls.platform.network_controller.InitializeIfNeeded()
     else:
       assert cls.platform == cls._browser_to_create.platform, (
           'All browser launches within same test suite must use browsers on '
@@ -92,13 +93,15 @@
   def tearDownClass(cls):
     if cls.platform:
       cls.platform.StopAllLocalServers()
+      cls.platform.network_controller.Close()
     if cls.browser:
       cls.StopBrowser()
 
   @classmethod
-  def SetStaticServerDir(cls, dir_path):
+  def SetStaticServerDirs(cls, dirs_path):
     assert cls.platform
-    cls.platform.SetHTTPServerDirectories(dir_path)
+    assert isinstance(dirs_path, list)
+    cls.platform.SetHTTPServerDirectories(dirs_path)
 
   @classmethod
   def UrlOfStaticFilePath(cls, file_path):
diff --git a/catapult/telemetry/telemetry/util/screenshot.py b/catapult/telemetry/telemetry/util/screenshot.py
index bc86220..bdd3014 100644
--- a/catapult/telemetry/telemetry/util/screenshot.py
+++ b/catapult/telemetry/telemetry/util/screenshot.py
@@ -8,7 +8,7 @@
 import random
 import tempfile
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 from telemetry.util import image_util
 from telemetry.internal.util import file_handle
 
diff --git a/catapult/telemetry/telemetry/util/screenshot_unittest.py b/catapult/telemetry/telemetry/util/screenshot_unittest.py
index 85a1a92..1bc17e8 100644
--- a/catapult/telemetry/telemetry/util/screenshot_unittest.py
+++ b/catapult/telemetry/telemetry/util/screenshot_unittest.py
@@ -7,7 +7,7 @@
 import unittest
 import os
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 from telemetry.testing import fakes
 from telemetry.internal.util import file_handle
 from telemetry.util import image_util
@@ -44,7 +44,7 @@
 
     local_path = '123456abcdefg.png'
 
-    with mock.patch('catapult_base.cloud_storage.Insert') as mock_insert:
+    with mock.patch('py_utils.cloud_storage.Insert') as mock_insert:
       with mock.patch('telemetry.util.screenshot._GenerateRemotePath',
         return_value=local_path):
 
diff --git a/catapult/telemetry/telemetry/value/common_value_helpers.py b/catapult/telemetry/telemetry/value/common_value_helpers.py
index 2073a83..a1d366c 100644
--- a/catapult/telemetry/telemetry/value/common_value_helpers.py
+++ b/catapult/telemetry/telemetry/value/common_value_helpers.py
@@ -13,8 +13,6 @@
 
 
 def TranslateScalarValue(scalar_value, page):
-  assert IsScalarNumericValue(scalar_value)
-
   # This function should not modify scalar_value because it is also held by
   # PageTestResults.value_set.
   scalar_value = copy.deepcopy(scalar_value)
@@ -31,8 +29,6 @@
     raise ValueError('Must specify improvement direction for value ' + name)
 
   scalar_value['units'] = unit_parts[0]
-  scalar_value['description'] = scalar_value.get('options', {}).get(
-      'description')
 
   if unit_parts[1] == 'biggerIsBetter':
     scalar_value['improvement_direction'] = improvement_direction.UP
@@ -43,8 +39,3 @@
   scalar_value['page_id'] = page.id
   scalar_value['name'] = name
   return scalar.ScalarValue.FromDict(scalar_value, {page.id: page})
-
-
-def IsScalarNumericValue(value_dict):
-  return (value_dict.get('type') == 'numeric' and
-          value_dict['numeric'].get('type') == 'scalar')
diff --git a/catapult/telemetry/telemetry/value/common_value_helpers_unittest.py b/catapult/telemetry/telemetry/value/common_value_helpers_unittest.py
index 74c9994..100aca0 100644
--- a/catapult/telemetry/telemetry/value/common_value_helpers_unittest.py
+++ b/catapult/telemetry/telemetry/value/common_value_helpers_unittest.py
@@ -5,9 +5,9 @@
 import unittest
 import os
 
-from perf_insights.mre import function_handle
-from perf_insights.mre import failure
-from perf_insights.mre import job as job_module
+from tracing.mre import function_handle
+from tracing.mre import failure
+from tracing.mre import job as job_module
 
 from telemetry import page
 from telemetry import story
@@ -47,9 +47,7 @@
             'value': 42
         },
         'name': 'foo',
-        'options': {
-            'description': 'desc'
-        }
+        'description': 'desc'
     }
 
     v = common_value_helpers.TranslateScalarValue(scalar_value, p)
diff --git a/catapult/telemetry/telemetry/value/trace.py b/catapult/telemetry/telemetry/value/trace.py
index df2113b..65b3b08 100644
--- a/catapult/telemetry/telemetry/value/trace.py
+++ b/catapult/telemetry/telemetry/value/trace.py
@@ -12,7 +12,7 @@
 import sys
 import tempfile
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.internal.util import file_handle
 from telemetry.timeline import trace_data as trace_data_module
@@ -38,6 +38,13 @@
     self._cloud_url = None
     self._serialized_file_handle = None
 
+  @property
+  def value(self):
+    if self._cloud_url:
+      return self._cloud_url
+    elif self._serialized_file_handle:
+      return self._serialized_file_handle.GetAbsPath()
+
   def _GetTraceParts(self, trace_data):
     return [(trace_data.GetTraceFor(p), p)
             for p in trace_data_module.ALL_TRACE_PARTS
diff --git a/catapult/telemetry/telemetry/web_perf/metrics/memory_timeline.py b/catapult/telemetry/telemetry/web_perf/metrics/memory_timeline.py
deleted file mode 100644
index 6c62813..0000000
--- a/catapult/telemetry/telemetry/web_perf/metrics/memory_timeline.py
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import collections
-
-from telemetry.timeline import memory_dump_event
-from telemetry.value import improvement_direction
-from telemetry.value import list_of_scalar_values
-from telemetry.web_perf.metrics import timeline_based_metric
-
-
-DEFAULT_METRICS = memory_dump_event.MMAPS_METRICS.keys()
-
-
-class MemoryTimelineMetric(timeline_based_metric.TimelineBasedMetric):
-  """MemoryTimelineMetric reports summary stats from memory dump events."""
-
-  def AddResults(self, model, renderer_thread, interactions, results):
-    # Note: This method will be called by TimelineBasedMeasurement once for
-    # each thread x interaction_label combination; where |interactions| is
-    # a list of all interactions sharing the same label that occurred in the
-    # given |renderer_thread|.
-
-    def ContainedIn(dump, interaction):
-      return interaction.start < dump.start and dump.end < interaction.end
-
-    def OccursDuringInteractions(dump):
-      return (
-          # Dump must contain the rendrerer process that requested it,
-          renderer_thread.parent.pid in dump.pids and
-          # ... and fall within the span of an interaction record.
-          any(ContainedIn(dump, interaction) for interaction in interactions))
-
-    def ReportResultsForProcess(memory_dumps, process_name):
-      if not memory_dumps:
-        metric_values = dict.fromkeys(DEFAULT_METRICS)
-        num_processes = None
-        none_reason = 'No memory dumps with mmaps found within interactions'
-      else:
-        metric_values = collections.defaultdict(list)
-        num_processes = []
-        for dump in memory_dumps:
-          for metric, value in dump.GetMemoryUsage().iteritems():
-            metric_values[metric].append(value)
-          num_processes.append(dump.CountProcessMemoryDumps())
-        none_reason = None
-      for metric, values in metric_values.iteritems():
-        results.AddValue(list_of_scalar_values.ListOfScalarValues(
-            page=results.current_page,
-            name='memory_%s_%s' % (metric, process_name),
-            units='bytes',
-            tir_label=interactions[0].label,
-            values=values,
-            none_value_reason=none_reason,
-            improvement_direction=improvement_direction.DOWN))
-      results.AddValue(list_of_scalar_values.ListOfScalarValues(
-            page=results.current_page,
-            name='process_count_%s' % process_name,
-            units='count',
-            tir_label=interactions[0].label,
-            values=num_processes,
-            none_value_reason=none_reason,
-            improvement_direction=improvement_direction.DOWN))
-
-    memory_dumps = filter(OccursDuringInteractions,
-                          model.IterGlobalMemoryDumps())
-
-    # Either all dumps should contain memory maps (Android, Linux), or none
-    # of them (Windows, Mac).
-    assert len(set(dump.has_mmaps for dump in memory_dumps)) <= 1
-
-    ReportResultsForProcess(memory_dumps, 'total')
-
-    memory_dumps_by_process_name = collections.defaultdict(list)
-    for memory_dump in memory_dumps:
-      # Split this global memory_dump into individual process dumps, and then
-      # group them by their process names.
-      process_dumps_by_name = collections.defaultdict(list)
-      for process_dump in memory_dump.IterProcessMemoryDumps():
-        process_name = process_dump.process_name.lower().replace(' ', '_')
-        process_dumps_by_name[process_name].append(process_dump)
-
-      # Merge process dumps that have the same process name into a new
-      # global dump. Note: this is slightly abusing GlobalMemoryDump so that
-      # we can say dump.GetMemoryUsage() on the created dump objects to obtain
-      # the memory usage aggregated per type. This should no longer be needed
-      # after moving to TBMv2. See: http://crbug.com/581716
-      for process_name, process_dumps in process_dumps_by_name.iteritems():
-        memory_dumps_by_process_name[process_name].append(
-            memory_dump_event.GlobalMemoryDump(process_dumps))
-
-    for process_name, memory_dumps in memory_dumps_by_process_name.iteritems():
-      ReportResultsForProcess(memory_dumps, process_name)
diff --git a/catapult/telemetry/telemetry/web_perf/metrics/memory_timeline_unittest.py b/catapult/telemetry/telemetry/web_perf/metrics/memory_timeline_unittest.py
deleted file mode 100644
index 2badfa8..0000000
--- a/catapult/telemetry/telemetry/web_perf/metrics/memory_timeline_unittest.py
+++ /dev/null
@@ -1,202 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import collections
-import unittest
-
-from telemetry.internal.results import page_test_results
-from telemetry.page import page
-import mock
-from telemetry.timeline import memory_dump_event
-from telemetry.web_perf.metrics import memory_timeline
-from telemetry.web_perf import timeline_interaction_record
-
-
-def MockProcessDumpEvent(dump_id, name, start, memory_usage, pid=1234):
-  process_dump = mock.Mock()
-  process_dump.dump_id = dump_id
-  process_dump.process.pid = pid
-  process_dump.process_name = name
-  process_dump.start = start
-  process_dump.end = start
-  if memory_usage is None:
-    memory_usage = {}
-  elif not isinstance(memory_usage, dict):
-    memory_usage = dict.fromkeys(memory_timeline.DEFAULT_METRICS, memory_usage)
-  process_dump.has_mmaps = any(metric in memory_usage for metric
-                               in memory_timeline.DEFAULT_METRICS)
-  process_dump.GetMemoryUsage = mock.Mock(return_value=memory_usage)
-  return process_dump
-
-
-def MockTimelineModel(process_dumps):
-  dumps_by_id = collections.defaultdict(list)
-  for process_dump in process_dumps:
-    dumps_by_id[process_dump.dump_id].append(process_dump)
-
-  global_dumps = sorted((memory_dump_event.GlobalMemoryDump(dumps)
-                         for dumps in dumps_by_id.itervalues()),
-                        key=lambda dump: dump.start)
-
-  mock_model = mock.Mock()
-  mock_model.IterGlobalMemoryDumps = mock.Mock(return_value=global_dumps)
-  return mock_model
-
-
-def TestInteraction(start, end):
-  return timeline_interaction_record.TimelineInteractionRecord(
-      'Action_TestInteraction', start, end)
-
-
-class MemoryTimelineMetricUnitTest(unittest.TestCase):
-  def getResultsDict(self, model, interactions, renderer_pid=1234):
-    def strip_prefix(key):
-      if key.startswith('memory_'):
-        return key[len('memory_'):]
-      elif key.startswith('process_count_'):
-        return key
-      else:
-        self.fail('Unexpected key: %r' % key)
-
-    mock_thread = mock.Mock()
-    mock_thread.parent.pid = renderer_pid
-    results = page_test_results.PageTestResults()
-    test_page = page.Page('http://google.com')
-    results.WillRunPage(test_page)
-    metric = memory_timeline.MemoryTimelineMetric()
-    metric.AddResults(model, mock_thread, interactions, results)
-    result_dict = {strip_prefix(v.name): v.values
-                   for v in results.current_page_run.values}
-    results.DidRunPage(test_page)
-    return result_dict
-
-  def getOverallPssTotal(self, model, interactions, renderer_pid=1234):
-    results = self.getResultsDict(
-        model, interactions, renderer_pid=renderer_pid)
-    self.assertTrue('mmaps_overall_pss_total' in results)
-    return results['mmaps_overall_pss_total']
-
-  def testSingleMemoryDump(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 2, 123)])
-    interactions = [TestInteraction(1, 10)]
-    self.assertEqual([123], self.getOverallPssTotal(model, interactions))
-
-  def testMultipleMemoryDumps(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 2, 123),
-        MockProcessDumpEvent('dump2', 'browser', 5, 456)])
-    interactions = [TestInteraction(1, 10)]
-    self.assertEqual([123, 456], self.getOverallPssTotal(model, interactions))
-
-  def testMultipleInteractions(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 2, 123),
-        MockProcessDumpEvent('dump2', 'browser', 5, 456),
-        MockProcessDumpEvent('dump3', 'browser', 13, 789)])
-    interactions = [TestInteraction(1, 10),
-                    TestInteraction(12, 15)]
-    self.assertEqual([123, 456, 789],
-                      self.getOverallPssTotal(model, interactions))
-
-  def testDumpsOutsideInteractionsAreFilteredOut(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 1, 111),
-        MockProcessDumpEvent('dump2', 'browser', 5, 123),
-        MockProcessDumpEvent('dump3', 'browser', 11, 456),
-        MockProcessDumpEvent('dump4', 'browser', 13, 555),
-        MockProcessDumpEvent('dump5', 'browser', 17, 789)])
-    interactions = [TestInteraction(3, 10),
-                    TestInteraction(12, 15)]
-    self.assertEqual([123, 555], self.getOverallPssTotal(model, interactions))
-
-  def testDumpsFromOtherBrowserAreFilteredOut(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 5, 1, pid=1111),
-        MockProcessDumpEvent('dump1', 'renderer', 4, 2, pid=2222),
-        MockProcessDumpEvent('dump2', 'browser', 14, 4, pid=1111),
-        MockProcessDumpEvent('dump2', 'renderer', 13, 8, pid=2222),
-        MockProcessDumpEvent('dump3', 'browser', 4, 16, pid=3333)])
-    interactions = [TestInteraction(3, 10),
-                    TestInteraction(12, 15)]
-    self.assertEqual(
-        [3, 12],
-        self.getOverallPssTotal(model, interactions, renderer_pid=2222))
-
-  def testDumpsWithNoMemoryMaps(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 2, {'blink': 123}),
-        MockProcessDumpEvent('dump2', 'browser', 5, {'blink': 456})])
-    interactions = [TestInteraction(1, 10)]
-    self.assertEqual(
-        self.getResultsDict(model, interactions),
-        {
-          'blink_total': [123, 456],
-          'blink_browser': [123, 456],
-          'process_count_total': [1, 1],
-          'process_count_browser': [1, 1]
-        })
-
-  def testDumpsWithSomeMemoryMaps(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 2, 123),
-        MockProcessDumpEvent('dump2', 'browser', 5, None)])
-    interactions = [TestInteraction(1, 10)]
-    self.assertRaises(AssertionError, self.getResultsDict, model, interactions)
-
-  def testReturnsNoneWhenAllDumpsAreFilteredOut(self):
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'bowser', 0, 123),
-        MockProcessDumpEvent('dump2', 'browser', 11, 789)])
-    interactions = [TestInteraction(1, 10)]
-    self.assertEqual(None, self.getOverallPssTotal(model, interactions))
-
-  def testResultsBrokenDownByProcess(self):
-    metrics = memory_timeline.DEFAULT_METRICS
-    stats1 = {metric: value for value, metric in enumerate(metrics)}
-    stats2 = {metric: value for value, metric in enumerate(reversed(metrics))}
-    total = len(metrics) - 1
-
-    expected = {
-      'process_count_browser': [1],
-      'process_count_gpu_process': [1],
-      'process_count_total': [2],
-    }
-    expected.update(('%s_browser' % metric, [value])
-                    for metric, value in stats1.iteritems())
-    expected.update(('%s_gpu_process' % metric, [value])
-                    for metric, value in stats2.iteritems())
-    expected.update(('%s_total' % metric, [total]) for metric in metrics)
-
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'browser', 2, stats1),
-        MockProcessDumpEvent('dump1', 'GPU Process', 5, stats2)])
-    interactions = [TestInteraction(1, 10)]
-    self.assertEqual(expected, self.getResultsDict(model, interactions))
-
-  def testResultsBrokenDownByProcessWithMultipleRenderers(self):
-    metrics = memory_timeline.DEFAULT_METRICS
-    total = len(metrics) - 1
-    stats1 = {metric: value for value, metric in enumerate(metrics)}
-    stats2 = {metric: value for value, metric in enumerate(reversed(metrics))}
-    stats3 = {metric: total for metric in metrics}
-
-    expected = {
-      'process_count_renderer': [2],
-      'process_count_browser': [1],
-      'process_count_total': [3],
-    }
-    for metric in metrics:
-      expected.update([
-        ('%s_renderer' % metric, [total]),
-        ('%s_browser' % metric, [total]),
-        ('%s_total' % metric, [2 * total]),
-      ])
-
-    model = MockTimelineModel([
-        MockProcessDumpEvent('dump1', 'renderer', 3, stats1),
-        MockProcessDumpEvent('dump1', 'renderer', 4, stats2),
-        MockProcessDumpEvent('dump1', 'browser', 5, stats3)])
-    interactions = [TestInteraction(1, 10)]
-    self.assertEqual(expected, self.getResultsDict(model, interactions))
diff --git a/catapult/telemetry/telemetry/web_perf/timeline_based_measurement.py b/catapult/telemetry/telemetry/web_perf/timeline_based_measurement.py
index 0334438..013ca2f 100644
--- a/catapult/telemetry/telemetry/web_perf/timeline_based_measurement.py
+++ b/catapult/telemetry/telemetry/web_perf/timeline_based_measurement.py
@@ -19,7 +19,6 @@
 from telemetry.web_perf.metrics import gpu_timeline
 from telemetry.web_perf.metrics import indexeddb_timeline
 from telemetry.web_perf.metrics import layout
-from telemetry.web_perf.metrics import memory_timeline
 from telemetry.web_perf.metrics import smoothness
 from telemetry.web_perf.metrics import text_selection
 from telemetry.web_perf import smooth_gesture_util
@@ -50,7 +49,6 @@
           gpu_timeline.GPUTimelineMetric(),
           blob_timeline.BlobTimelineMetric(),
           jitter_timeline.JitterTimelineMetric(),
-          memory_timeline.MemoryTimelineMetric(),
           text_selection.TextSelectionMetric(),
           indexeddb_timeline.IndexedDBTimelineMetric(),
           webrtc_rendering_timeline.WebRtcRenderingTimelineMetric())
@@ -273,6 +271,14 @@
     """Configure and start tracing."""
     if not platform.tracing_controller.IsChromeTracingSupported():
       raise Exception('Not supported')
+    if self._tbm_options.config.enable_chrome_trace:
+      # Always enable 'blink.console' category for:
+      # 1) Backward compat of chrome clock sync (crbug.com/646925)
+      # 2) Allows users to add trace event through javascript.
+      # Note that blink.console is extremely low-overhead, so this doesn't
+      # affect the tracing overhead budget much.
+      chrome_config = self._tbm_options.config.chrome_trace_config
+      chrome_config.category_filter.AddIncludedCategory('blink.console')
     platform.tracing_controller.StartTracing(self._tbm_options.config)
 
   def Measure(self, platform, results):
@@ -317,12 +323,10 @@
       results.AddValue(
           common_value_helpers.TranslateMreFailure(d, page))
 
-    value_dicts = mre_result.pairs.get('values', [])
-    results.value_set.extend(value_dicts)
-    for d in value_dicts:
-      if common_value_helpers.IsScalarNumericValue(d):
-        results.AddValue(
-            common_value_helpers.TranslateScalarValue(d, page))
+    results.value_set.extend(mre_result.pairs.get('histograms', []))
+
+    for d in mre_result.pairs.get('scalars', []):
+      results.AddValue(common_value_helpers.TranslateScalarValue(d, page))
 
   def _ComputeLegacyTimelineBasedMetrics(self, results, trace_result):
     model = model_module.TimelineModel(trace_result)
diff --git a/catapult/telemetry/telemetry/web_perf/timeline_based_page_test_unittest.py b/catapult/telemetry/telemetry/web_perf/timeline_based_page_test_unittest.py
index abaaf80..81f7611 100644
--- a/catapult/telemetry/telemetry/web_perf/timeline_based_page_test_unittest.py
+++ b/catapult/telemetry/telemetry/web_perf/timeline_based_page_test_unittest.py
@@ -128,9 +128,10 @@
     results = self.RunMeasurement(tbm, ps, self._options)
 
     self.assertEquals(0, len(results.failures))
-    self.assertEquals(9, len(results.value_set))
-    self.assertEquals(1, len(results.value_set[0]['diagnostics']))
-    iter_info = results.value_set[0]['diagnostics']['iteration']
+    self.assertEquals(1, len(results.value_set))
+    diagnostics = results.value_set[0]['diagnostics']
+    self.assertEquals(1, len(diagnostics))
+    iter_info = diagnostics['iteration']
     self.assertEqual('IterationInfo', iter_info['type'])
     self.assertEqual('', iter_info['benchmarkName'])
     self.assertEqual('interaction_enabled_page.html',
@@ -140,21 +141,10 @@
     self.assertEqual(0, iter_info['storysetRepeatCounter'])
     self.assertEqual('file://interaction_enabled_page.html',
                      iter_info['storyUrl'])
-    v_foo = results.FindAllPageSpecificValuesNamed('foo')
-    v_bar = results.FindAllPageSpecificValuesNamed('bar')
-    v_baz_avg = results.FindAllPageSpecificValuesNamed('baz_avg')
-    v_baz_sum = results.FindAllPageSpecificValuesNamed('baz_sum')
-    v_baz_count = results.FindAllPageSpecificValuesNamed('baz_count')
+    v_foo = results.FindAllPageSpecificValuesNamed('foo_avg')
     self.assertEquals(len(v_foo), 1)
-    self.assertEquals(len(v_bar), 1)
-    self.assertEquals(v_foo[0].value, 1)
+    self.assertEquals(v_foo[0].value, 50)
     self.assertIsNotNone(v_foo[0].page)
-    self.assertEquals(v_bar[0].value, 2)
-    self.assertIsNotNone(v_bar[0].page)
-    self.assertEquals(len(v_baz_avg), 1)
-    self.assertEquals(len(v_baz_sum), 1)
-    self.assertEquals(len(v_baz_count), 1)
-
 
   @decorators.Disabled('chromeos')
   def testFirstPaintMetricSmoke(self):
diff --git a/catapult/telemetry/telemetry/wpr/archive_info.py b/catapult/telemetry/telemetry/wpr/archive_info.py
index 75b784d..326da2d 100644
--- a/catapult/telemetry/telemetry/wpr/archive_info.py
+++ b/catapult/telemetry/telemetry/wpr/archive_info.py
@@ -9,7 +9,7 @@
 import shutil
 import tempfile
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 
 def AssertValidCloudStorageBucket(bucket):
diff --git a/catapult/telemetry/telemetry/wpr/archive_info_unittest.py b/catapult/telemetry/telemetry/wpr/archive_info_unittest.py
index 5f9a5f2..1a78fee 100644
--- a/catapult/telemetry/telemetry/wpr/archive_info_unittest.py
+++ b/catapult/telemetry/telemetry/wpr/archive_info_unittest.py
@@ -7,7 +7,7 @@
 import tempfile
 import unittest
 
-from catapult_base import cloud_storage  # pylint: disable=import-error
+from py_utils import cloud_storage  # pylint: disable=import-error
 
 from telemetry.page import page
 from telemetry.testing import system_stub
diff --git a/catapult/third_party/vinn/vinn/_vinn.py b/catapult/third_party/vinn/vinn/_vinn.py
index 3f8bfc8..6734d9d 100644
--- a/catapult/third_party/vinn/vinn/_vinn.py
+++ b/catapult/third_party/vinn/vinn/_vinn.py
@@ -8,6 +8,7 @@
 import os
 import platform
 import shutil
+import stat
 import subprocess
 import sys
 import re
@@ -101,12 +102,21 @@
 
 
 def _GetD8BinaryPathForPlatform():
+  def _D8Path(*paths):
+    """Join paths and make it executable."""
+    assert isinstance(paths, tuple)
+    exe = os.path.join(_V8_DIR, *paths)
+    st = os.stat(exe)
+    if not st.st_mode & stat.S_IEXEC:
+      os.chmod(exe, st.st_mode | stat.S_IEXEC)
+    return exe
+
   if platform.system() == 'Linux' and platform.machine() == 'x86_64':
-    return os.path.join(_V8_DIR, 'linux', 'x86_64', 'd8')
+    return _D8Path('linux', 'x86_64', 'd8')
   elif platform.system() == 'Darwin' and platform.machine() == 'x86_64':
-    return os.path.join(_V8_DIR, 'mac', 'x86_64', 'd8')
+    return _D8Path('mac', 'x86_64', 'd8')
   elif platform.system() == 'Windows' and platform.machine() == 'AMD64':
-    return os.path.join(_V8_DIR, 'win', 'AMD64', 'd8.exe')
+    return _D8Path('win', 'AMD64', 'd8.exe')
   else:
     raise NotImplementedError(
         'd8 binary for this platform (%s) and architecture (%s) is not yet'
diff --git a/catapult/perf_insights/bin/deploy_perfinsights b/catapult/trace_processor/bin/deploy_trace_uploader
similarity index 85%
rename from catapult/perf_insights/bin/deploy_perfinsights
rename to catapult/trace_processor/bin/deploy_trace_uploader
index 0ac4b8d..a04bd3e 100755
--- a/catapult/perf_insights/bin/deploy_perfinsights
+++ b/catapult/trace_processor/bin/deploy_trace_uploader
@@ -23,16 +23,15 @@
   args = parser.parse_args()
 
   _AddToPathIfNeeded(
-      os.path.join(catapult_path, 'perf_insights'))
-  from perf_insights.endpoints import cloud_mapper
+      os.path.join(catapult_path, 'trace_processor'))
+  from trace_uploader.endpoints import cloud_mapper
   paths = cloud_mapper.PathsForDeployment()
 
   _AddToPathIfNeeded(catapult_path)
   from catapult_build import temp_deployment_dir
 
   file_sets = [
-      ['app.yaml', 'cron.yaml', 'dispatch.yaml', 'queue.yaml', 'index.yaml',
-      'remote_worker.yaml']
+      ['app.yaml', 'cron.yaml', 'dispatch.yaml', 'index.yaml']
   ]
   for cur_set in file_sets:
     with temp_deployment_dir.TempDeploymentDir(
diff --git a/catapult/trace_processor/bin/process_traces b/catapult/trace_processor/bin/process_traces
index 4826696..700ec6f 100755
--- a/catapult/trace_processor/bin/process_traces
+++ b/catapult/trace_processor/bin/process_traces
@@ -9,11 +9,9 @@
 if __name__ == '__main__':
   path_to_catapult = os.path.join(os.path.dirname(__file__), '..', '..')
   path_to_tracing = os.path.join(path_to_catapult, 'tracing')
-  path_to_perf_insights = os.path.join(path_to_catapult, 'perf_insights')
   path_to_trace_processor = os.path.join(path_to_catapult, 'trace_processor')
 
   sys.path.append(path_to_tracing)
-  sys.path.append(path_to_perf_insights)
   sys.path.append(path_to_trace_processor)
 
   from trace_processor import process_traces
diff --git a/catapult/trace_processor/experimental/bin/map_v8runtimecallstats b/catapult/trace_processor/experimental/bin/map_v8runtimecallstats
new file mode 100755
index 0000000..ab55d22
--- /dev/null
+++ b/catapult/trace_processor/experimental/bin/map_v8runtimecallstats
@@ -0,0 +1,66 @@
+#!/usr/bin/env python
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+import os
+import sys
+import json
+import ntpath
+
+
+OUT_DIR = 'v8_callstats_dump'
+
+URL_MAP = dict()
+
+URL_MAP['http___edition_cnn_com10.html'] = 'cnn.com'
+URL_MAP['http___hi_wikipedia_org_wiki__E0_A4_AE_E0_A5_81_E0_A4_96_E0_A4_AA_E0_A5_83_E0_A4_B7_E0_A5_8D_E0_A4_A06.html'] = 'wikipedia.org'
+URL_MAP['http___inbox_google_com23.html'] = 'inbox.google.com'
+URL_MAP['http___maps_google_co_jp_maps_search_restaurant_tokyo24.html'] = 'maps.google.co.jp'
+URL_MAP['http___meta_discourse_org21.html'] = 'discourse.org'
+URL_MAP['http___reddit_musicplayer_io22.html'] = 'reddit.musicplayer.io'
+URL_MAP['https___www_facebook_com_shakira2.html'] = 'facebook.com'
+URL_MAP['https___www_google_de_search_q_v80.html'] = 'google.de'
+URL_MAP['https___www_linkedin_com_m_13.html'] = 'linkedin.com'
+URL_MAP['https___www_youtube_com1.html'] = 'youtube.com'
+URL_MAP['http___weibo_com18.html'] = 'weibo.com'
+URL_MAP['http___world_taobao_com11.html'] = 'taobao.com'
+URL_MAP['http___www_amazon_com_s__field_keywords_v85.html'] = 'amazon.com'
+URL_MAP['http___www_baidu_com_s_wd_v83.html'] = 'baidu.com'
+URL_MAP['http___www_bing_com_search_q_v8_engine15.html'] = 'bing.com'
+URL_MAP['http___www_ebay_fr_sch_i_html__nkw_v89.html'] = 'ebay.fr'
+URL_MAP['http___www_instagram_com_archdigest12.html'] = 'instagram.com'
+URL_MAP['http___www_msn_com_ar_ae14.html'] = 'msn.com'
+URL_MAP['http___www_pinterest_com_categories_popular16.html'] = 'pinterest.com'
+URL_MAP['http___www_qq_com7.html'] = 'qq.com'
+URL_MAP['http___www_reddit_com8.html'] = 'reddit.com'
+URL_MAP['http___www_sina_com_cn17.html'] = 'sina.com.cn'
+URL_MAP['http___www_wikiwand_com_en_hill20.html'] = 'wikiwand.com'
+URL_MAP['http___www_yahoo_co_jp4.html'] = 'yahoo.co.jp'
+URL_MAP['http___yandex_ru_search__text_v819.html'] = 'yandex.ru'
+
+
+def extractFilename(path):
+    head, tail = ntpath.split(path)
+    name = tail or ntpath.basename(head)
+    if name in URL_MAP:
+      return URL_MAP[name]
+    return name
+
+
+def writeDump(name, value):
+  dump_file = open(OUT_DIR + '/' + extractFilename(name) + '.txt', 'w+')
+  runtime_call = value['pairs']
+  for name in runtime_call:
+    dump_file.write(name + '\t' + str(runtime_call[name]['time']) + '\tX\t' + str(runtime_call[name]['count']) + '\n')
+  dump_file.close()
+
+if __name__ == '__main__':
+  with open(sys.argv[1]) as data_file:
+    data = json.load(data_file)
+
+  if not os.path.exists(OUT_DIR):
+    os.makedirs(OUT_DIR)
+
+  for entry in data:
+    writeDump(entry, data[entry])
+  sys.exit(0)
diff --git a/catapult/trace_processor/experimental/mappers/long_running_tasks_mapper.html b/catapult/trace_processor/experimental/mappers/long_running_tasks_mapper.html
new file mode 100644
index 0000000..4584409
--- /dev/null
+++ b/catapult/trace_processor/experimental/mappers/long_running_tasks_mapper.html
@@ -0,0 +1,161 @@
+<!DOCTYPE html>
+!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<script>
+'use strict';
+
+tr.exportTo('pi.m', function() {
+var LONG_TASK_MS = 100;
+
+var UNINTERESTING_TASKS = [
+    'MessageLoop::RunTask',
+    'TaskQueueManager::DoWork',
+    'TaskQueueManager::ProcessTaskFromWorkQueue',
+    'TaskQueueManager::RunTask',
+    'TimerBase::run',
+    'ThreadProxy::BeginMainFrame',
+    'ParseHTML',
+    'TimerFire',
+    'EventDispatch',
+    'WebViewImpl::updateAllLifecyclePhases',
+    'ScheduledAction::execute',
+    'HTMLDocumentParser::processParsedChunkFromBackgroundParser',
+    'HTMLScriptRunner::executeScriptsWaitingForLoad',
+    'ResourceDispatcher::OnRequestComplete',
+    'HTMLScriptRunner::execute',
+    'ChannelProxy::Context::OnDispatchMessage',
+    'XHRReadyStateChange',
+    'RenderFrameImpl::didFinishDocumentLoad',
+    'ResourceDispatcher::OnReceivedData',
+    'WebViewImpl::beginFrame',
+    'RenderFrameImpl::OnBeforeUnload',
+    'WindowProxy::initialize',
+    'Sampler::InstallJitCodeEventHandler',
+    'ResourceMsg_DataReceived',
+    'ResourceReceivedData',
+    'RenderWidgetInputHandler::OnHandleInputEvent',
+    'ProxyMain::BeginMainFrame::commit',
+    'ResourceMsg_RequestComplete',
+    'ExtensionMsg_Response',
+    'ExtensionMsg_MessageInvoke',
+    'SyncChannel::Send',
+    'SingleThreadIdleTaskRunner::RunTask',
+    'ResourceDispatcher::OnReceivedResponse',
+    'FireAnimationFrame',
+    'InputMsg_HandleInputEvent',
+    'WebURLLoaderImpl::Context::OnCompletedRequest',
+    'WebURLLoaderImpl::Context::OnReceivedData',
+    'v8.callFunction',
+    'ExtensionMsg_Loaded',
+    'ProxyMain::BeginMainFrame::commit',
+    'XHRLoad',
+    'RenderFrameImpl::OnNavigate',
+    'CommitLoad',
+    'FrameMsg_Navigate',
+    'ResourceFinish',
+    'RenderViewImpl::OnResize',
+    'HostDispatcher::OnMessageReceived',
+    'HTMLScriptRunner::executeScriptsWaitingForParsing',
+    'HTMLScriptRunner::executeScriptsWaitingForResources',
+    'FrameMsg_JavaScriptExecuteRequest',
+    'v8.callModuleMethod'
+];
+
+  function longRunningScriptsMapper(result, model) {
+    var resultArray = [];
+
+    iterateRendererMainThreads(model, function(thread) {
+      thread.sliceGroup.topLevelSlices.forEach(function(slice) {
+
+        var interestingSlice = findLongestInterestingSlice(slice);
+        if (interestingSlice.duration < LONG_TASK_MS)
+          return;
+
+        var scriptURL = getScriptURL(interestingSlice);
+        if (scriptURL !== undefined && scriptURL != '') {
+          var topLevelDomain = extractDomain(scriptURL);
+          resultArray.push({key: topLevelDomain,
+                           float_value: interestingSlice.duration});
+        }
+      });
+    });
+
+    result.addPair('values', resultArray);
+  }
+
+
+  tr.mre.FunctionRegistry.register(longRunningScriptsMapper);
+
+  return {
+    longRunningScriptsMapper: longRunningScriptsMapper
+  };
+
+  function iterateRendererMainThreads(model, cb, opt_this) {
+    var modelHelper = model.getOrCreateHelper(
+        tr.model.helpers.ChromeModelHelper);
+    tr.b.dictionaryValues(modelHelper.rendererHelpers).forEach(
+        function(rendererHelper) {
+          if (!rendererHelper.mainThread)
+            return;
+          cb.call(opt_this, rendererHelper.mainThread);
+        });
+  }
+
+  function getScriptURL(slice) {
+    var url = undefined;
+
+    if (slice.title === 'v8.run') {
+      url = slice.args['fileName'];
+    } else if (slice.title === 'v8.compile') {
+      url = slice.args['fileName'];
+    } else if (slice.title === 'FunctionCall') {
+      url = slice.args['data']['scriptName'];
+    } else if (slice.title === 'EvaluateScript') {
+      url = slice.args['data']['url'];
+    } else if (slice.title === 'HTMLScriptRunner ExecuteScript') {
+      url = slice.args['data']['url'];
+    }
+
+    return url;
+  }
+
+  function findLongestInterestingSlice(slice) {
+    if (UNINTERESTING_TASKS.indexOf(slice.title) >= 0) {
+      var longestSlice = undefined;
+      var subSlices = slice.subSlices;
+      for (var i = 0; i < subSlices.length; ++i) {
+        if (longestSlice === undefined ||
+            longestSlice.duration < subSlices[i].duration) {
+          longestSlice = subSlices[i];
+        }
+      }
+
+      if (longestSlice !== undefined)
+        return findLongestInterestingSlice(longestSlice);
+    }
+
+    return slice;
+  }
+
+  function extractDomain(url) {
+      var domain;
+      //find & remove protocol (http, ftp, etc.) and get domain
+      if (url.indexOf('://') > -1) {
+          domain = url.split('/')[2];
+      }
+      else {
+          domain = url.split('/')[0];
+      }
+
+      //find & remove port number
+      domain = domain.split(':')[0];
+
+      return domain;
+  }
+});
+
+</script>
diff --git a/catapult/trace_processor/experimental/mappers/slice_cost.html b/catapult/trace_processor/experimental/mappers/slice_cost.html
index 8860f87..d1f1ff8 100644
--- a/catapult/trace_processor/experimental/mappers/slice_cost.html
+++ b/catapult/trace_processor/experimental/mappers/slice_cost.html
@@ -4,7 +4,7 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mappers/reduce.html">
+<link rel="import" href="/experimental/mappers/reduce.html">
 <link rel="import" href="/tracing/extras/ads/domain_category.html">
 <link rel="import" href="/tracing/extras/chrome/slice_title_fixer.html">
 <link rel="import" href="/tracing/model/source_info/js_source_info.html">
@@ -175,6 +175,8 @@
     return sliceCostInfos;
   }
 
+  tr.mre.FunctionRegistry.register(getSliceCostReport);
+
   return {
     SliceCostInfo: SliceCostInfo,
 
diff --git a/catapult/trace_processor/experimental/mappers/task_info_map_function.html b/catapult/trace_processor/experimental/mappers/task_info_map_function.html
index 41246d4..2d37ed0 100644
--- a/catapult/trace_processor/experimental/mappers/task_info_map_function.html
+++ b/catapult/trace_processor/experimental/mappers/task_info_map_function.html
@@ -7,18 +7,17 @@
 
 <link rel="import" href="/perf_insights/mappers/thread_grouping.html">
 <link rel="import" href="/perf_insights/mre/function_handle.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/flow_event.html">
 <link rel="import" href="/tracing/model/slice.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('pi.m', function() {
-  var DURATION_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs,
-      tr.b.Range.fromExplicitRange(0, 250), 50);
+  var DURATION_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(
+      0, 250, 50);
 
   function taskInfoMapFunction(result, model) {
     var canonicalUrl = model.canonicalUrl;
@@ -98,7 +97,8 @@
   function addToHistogram(dict, processName, threadName, value, url) {
     dict[processName] = dict[processName] || {};
     dict[processName][threadName] = dict[processName][threadName] ||
-        DURATION_NUMERIC_BUILDER.build();
+        new tr.v.Histogram(tr.b.Unit.byName.timeDurationInMs,
+            DURATION_BOUNDARIES);
     dict[processName][threadName].add(value, url);
   }
 
diff --git a/catapult/trace_processor/experimental/mappers/task_info_map_function_test.html b/catapult/trace_processor/experimental/mappers/task_info_map_function_test.html
index b559491..f679314 100644
--- a/catapult/trace_processor/experimental/mappers/task_info_map_function_test.html
+++ b/catapult/trace_processor/experimental/mappers/task_info_map_function_test.html
@@ -9,7 +9,7 @@
 <link rel="import" href="/perf_insights/mre/mre_result.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/core/test_utils.html">
-<link rel="import" href="/tracing/value/numeric.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -55,7 +55,7 @@
     assert.equal(tr.b.dictionaryLength(result.pairs), 3);
     var time_spent_in_queue = result.pairs.time_spent_in_queue;
     assert.equal(tr.b.dictionaryLength(time_spent_in_queue.Browser), 1);
-    var histogram = tr.v.Numeric.fromDict(
+    var histogram = tr.v.Histogram.fromDict(
         time_spent_in_queue['Browser']['CrBrowserMain']);
     assert.equal(histogram.getBinForValue(7.2).count, 1);
     assert.equal(histogram.getBinForValue(18.1).count, 1);
@@ -63,14 +63,14 @@
         result.pairs.time_spent_in_top_level_task);
     assert.equal(tr.b.dictionaryLength(
         time_spent_in_top_level_task['Browser']), 1);
-    histogram = tr.v.Numeric.fromDict(
+    histogram = tr.v.Histogram.fromDict(
         time_spent_in_top_level_task['Browser']['CrBrowserMain']);
     assert.equal(histogram.getBinForValue(10.4).count, 1);
     var cpu_time_spent_in_top_level_task = (
         result.pairs.cpu_time_spent_in_top_level_task);
     assert.equal(tr.b.dictionaryLength(
         cpu_time_spent_in_top_level_task['Browser']), 1);
-    histogram = tr.v.Numeric.fromDict(
+    histogram = tr.v.Histogram.fromDict(
         cpu_time_spent_in_top_level_task['Browser']['CrBrowserMain']);
     assert.equal(histogram.getBinForValue(3.0).count, 1);
   });
diff --git a/catapult/trace_processor/experimental/mappers/test_mapper.html b/catapult/trace_processor/experimental/mappers/test_mapper.html
index bcb3008..4e9b070 100644
--- a/catapult/trace_processor/experimental/mappers/test_mapper.html
+++ b/catapult/trace_processor/experimental/mappers/test_mapper.html
@@ -4,8 +4,7 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mre/function_handle.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
 
 <script>
 'use strict';
@@ -16,7 +15,7 @@
     var someValue = 4; // Chosen by fair roll of the dice.
     result.addPair('simon', {value: someValue});
   }
-  pi.FunctionRegistry.register(testMapFunction);
+  tr.mre.FunctionRegistry.register(testMapFunction);
 
   return {
     testMapFunction: testMapFunction
diff --git a/catapult/trace_processor/experimental/mappers/thread_grouping.html b/catapult/trace_processor/experimental/mappers/thread_grouping.html
index 3e5c616..eab6d79 100644
--- a/catapult/trace_processor/experimental/mappers/thread_grouping.html
+++ b/catapult/trace_processor/experimental/mappers/thread_grouping.html
@@ -7,7 +7,6 @@
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html">
-<link rel="import" href="/tracing/value/value.html">
 
 <script>
 'use strict';
diff --git a/catapult/trace_processor/experimental/mappers/trace_stats.html b/catapult/trace_processor/experimental/mappers/trace_stats.html
index cb1c18d..a8e48a0 100644
--- a/catapult/trace_processor/experimental/mappers/trace_stats.html
+++ b/catapult/trace_processor/experimental/mappers/trace_stats.html
@@ -5,18 +5,16 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/function_handle.html">
 <link rel="import" href="/tracing/base/range.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('pi.m', function() {
-  var COUNT_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.unitlessNumber, tr.b.Range.fromExplicitRange(0, 50000),
-      20);
+  var COUNT_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(0, 5e4, 20);
 
   function traceStatsFunction(result, model) {
     var canonicalUrl = model.canonicalUrl;
@@ -47,7 +45,8 @@
       seconds_counts[second]++;
     }
 
-    var histogram = COUNT_NUMERIC_BUILDER.build();
+    var histogram = new tr.v.Histogram(
+        tr.b.Unit.byName.count, COUNT_BOUNDARIES);
 
     for (var second in seconds_counts)
       histogram.add(seconds_counts[second]);
@@ -65,7 +64,7 @@
     result.addPair('stats', stats);
   }
 
-  pi.FunctionRegistry.register(traceStatsFunction);
+  tr.mre.FunctionRegistry.register(traceStatsFunction);
 
   //Exporting for tests.
   return {
diff --git a/catapult/trace_processor/experimental/mappers/trace_stats_test.html b/catapult/trace_processor/experimental/mappers/trace_stats_test.html
index 002078f..33380cb 100644
--- a/catapult/trace_processor/experimental/mappers/trace_stats_test.html
+++ b/catapult/trace_processor/experimental/mappers/trace_stats_test.html
@@ -5,10 +5,9 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mappers/trace_stats.html">
-<link rel="import" href="/perf_insights/mre/mre_result.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
 
 <script>
 'use strict';
diff --git a/catapult/trace_processor/experimental/mappers/v8_callstats_dump.html b/catapult/trace_processor/experimental/mappers/v8_callstats_dump.html
index 154a6a6..4756869 100644
--- a/catapult/trace_processor/experimental/mappers/v8_callstats_dump.html
+++ b/catapult/trace_processor/experimental/mappers/v8_callstats_dump.html
@@ -4,16 +4,16 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mre/function_handle.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/metrics/system_health/loading_metric.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <script>
 'use strict';
 
 
-tr.exportTo('pi.m', function() {
+tr.exportTo('tr.mre', function() {
   function v8CallStatsDump(result, model) {
     var v8_runtime_map = {};
     var totalCount = 0;
@@ -28,12 +28,23 @@
       throw 'Unable to work with a trace that has more than one navigation';
     }
 
-    var tti = numeric.running.mean;
+    var binsWithSampleDiagnosticMaps = numeric.centralBins.filter(
+        (bin) => bin.diagnosticMaps.length > 0);
+    var diagnostic = binsWithSampleDiagnosticMaps[0]
+        .diagnosticMaps[0]['breakdown'];
+
+    var tti = diagnostic.value.interactive;
 
     for (var event of model.getDescendantEvents()) {
       if (!(event instanceof tr.model.ThreadSlice) || event.start > tti)
         continue;
-      var v8_runtime = event.args['runtime-call-stat'];
+      var v8_runtime = event.args['runtime-call-stats'];
+
+      // For older traces, check if we had an arg called 'runtime-call-stat'
+      // instead.
+      if (v8_runtime === undefined)
+        v8_runtime = event.args['runtime-call-stat'];
+
       if (v8_runtime !== undefined) {
         try {
           var v8_runtime_object = JSON.parse(v8_runtime);
@@ -43,10 +54,11 @@
               if (v8_runtime_map[runtime_call] === undefined) {
                 v8_runtime_map[runtime_call] = {count: 0, time: 0};
               }
-              v8_runtime_map[runtime_call].count++;
+              var runtime_count = v8_runtime_object[runtime_call][0];
+              v8_runtime_map[runtime_call].count += runtime_count;
               var runtime_time = v8_runtime_object[runtime_call][1] / 1000;
               v8_runtime_map[runtime_call].time += runtime_time;
-              totalCount++;
+              totalCount += runtime_count;
               totalTime += runtime_time;
             }
           }
@@ -63,7 +75,7 @@
                              count: totalCount});
   }
 
-  pi.FunctionRegistry.register(v8CallStatsDump);
+  tr.mre.FunctionRegistry.register(v8CallStatsDump);
 
   // Exporting for tests.
   return {
diff --git a/catapult/trace_processor/experimental/mappers/v8_map_function.html b/catapult/trace_processor/experimental/mappers/v8_map_function.html
index 2942e2f..ea18e87 100644
--- a/catapult/trace_processor/experimental/mappers/v8_map_function.html
+++ b/catapult/trace_processor/experimental/mappers/v8_map_function.html
@@ -4,14 +4,15 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/perf_insights/mappers/slice_cost.html">
 <link rel="import" href="/perf_insights/mappers/thread_grouping.html">
 <link rel="import" href="/perf_insights/mre/function_handle.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html">
 <link rel="import" href="/tracing/model/ir_coverage.html">
 <link rel="import" href="/tracing/model/user_model/user_expectation.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
diff --git a/catapult/perf_insights/third_party/cloudstorage/COPYING b/catapult/trace_processor/third_party/cloudstorage/COPYING
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/COPYING
rename to catapult/trace_processor/third_party/cloudstorage/COPYING
diff --git a/catapult/perf_insights/third_party/cloudstorage/README.chromium b/catapult/trace_processor/third_party/cloudstorage/README.chromium
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/README.chromium
rename to catapult/trace_processor/third_party/cloudstorage/README.chromium
diff --git a/catapult/perf_insights/third_party/cloudstorage/__init__.py b/catapult/trace_processor/third_party/cloudstorage/__init__.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/__init__.py
rename to catapult/trace_processor/third_party/cloudstorage/__init__.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/api_utils.py b/catapult/trace_processor/third_party/cloudstorage/api_utils.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/api_utils.py
rename to catapult/trace_processor/third_party/cloudstorage/api_utils.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/cloudstorage_api.py b/catapult/trace_processor/third_party/cloudstorage/cloudstorage_api.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/cloudstorage_api.py
rename to catapult/trace_processor/third_party/cloudstorage/cloudstorage_api.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/common.py b/catapult/trace_processor/third_party/cloudstorage/common.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/common.py
rename to catapult/trace_processor/third_party/cloudstorage/common.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/errors.py b/catapult/trace_processor/third_party/cloudstorage/errors.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/errors.py
rename to catapult/trace_processor/third_party/cloudstorage/errors.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/rest_api.py b/catapult/trace_processor/third_party/cloudstorage/rest_api.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/rest_api.py
rename to catapult/trace_processor/third_party/cloudstorage/rest_api.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/storage_api.py b/catapult/trace_processor/third_party/cloudstorage/storage_api.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/storage_api.py
rename to catapult/trace_processor/third_party/cloudstorage/storage_api.py
diff --git a/catapult/perf_insights/third_party/cloudstorage/test_utils.py b/catapult/trace_processor/third_party/cloudstorage/test_utils.py
similarity index 100%
rename from catapult/perf_insights/third_party/cloudstorage/test_utils.py
rename to catapult/trace_processor/third_party/cloudstorage/test_utils.py
diff --git a/catapult/trace_processor/trace_processor/process_traces.py b/catapult/trace_processor/trace_processor/process_traces.py
index 70970f3..017dfd7 100644
--- a/catapult/trace_processor/trace_processor/process_traces.py
+++ b/catapult/trace_processor/trace_processor/process_traces.py
@@ -7,11 +7,11 @@
 import subprocess
 import sys
 
-from perf_insights.mre import function_handle
-from perf_insights.mre import map_runner
-from perf_insights.mre import progress_reporter
-from perf_insights.mre import file_handle
-from perf_insights.mre import job as job_module
+from tracing.mre import function_handle
+from tracing.mre import map_runner
+from tracing.mre import progress_reporter
+from tracing.mre import file_handle
+from tracing.mre import job as job_module
 from tracing.metrics import discover
 from tracing.metrics import metric_runner
 
@@ -41,7 +41,7 @@
 
 
 def _ProcessTracesWithMetric(metric_name, traces, output_file):
-  results = metric_runner.RunMetricOnTraces(traces, metric_name)
+  results = metric_runner.RunMetricOnTraces(traces, [metric_name])
   results_dict = {k: v.AsDict() for k, v in results.iteritems()}
   _DumpToOutputJson(results_dict, output_file)
 
diff --git a/catapult/catapult_base/catapult_base/refactor_util/__init__.py b/catapult/trace_processor/trace_uploader/__init__.py
similarity index 100%
copy from catapult/catapult_base/catapult_base/refactor_util/__init__.py
copy to catapult/trace_processor/trace_uploader/__init__.py
diff --git a/catapult/perf_insights/app.yaml b/catapult/trace_processor/trace_uploader/app.yaml
similarity index 77%
rename from catapult/perf_insights/app.yaml
rename to catapult/trace_processor/trace_uploader/app.yaml
index 45747d6..6ba5817 100644
--- a/catapult/perf_insights/app.yaml
+++ b/catapult/trace_processor/trace_uploader/app.yaml
@@ -11,10 +11,10 @@
 
 handlers:
 - url: /upload
-  script: perf_insights.endpoints.upload.app
+  script: trace_uploader.endpoints.upload.app
   secure: always
 
 - url: /corpus_cleanup
-  script: perf_insights.endpoints.corpus_cleanup.app
+  script: trace_uploader.endpoints.corpus_cleanup.app
   secure: always
   login: admin
diff --git a/catapult/perf_insights/appengine_config.py b/catapult/trace_processor/trace_uploader/appengine_config.py
similarity index 64%
rename from catapult/perf_insights/appengine_config.py
rename to catapult/trace_processor/trace_uploader/appengine_config.py
index b7e4a23..5f5c04a 100644
--- a/catapult/perf_insights/appengine_config.py
+++ b/catapult/trace_processor/trace_uploader/appengine_config.py
@@ -13,10 +13,24 @@
 
 from google.appengine.ext import vendor
 
-from perf_insights.endpoints import cloud_mapper
-
 appstats_SHELL_OK = True
 
+# Directories in catapult/third_party required by uploader/corpus cleanup.
+THIRD_PARTY_LIBRARIES = [
+    'apiclient',
+    'uritemplate',
+]
+# Directories in trace_processor/third_party required by uploader/corpus
+# cleanup.
+THIRD_PARTY_LIBRARIES_IN_TRACE_PROCESSOR = [
+    'cloudstorage',
+]
+# Libraries bundled with the App Engine SDK.
+THIRD_PARTY_LIBRARIES_IN_SDK = [
+    'httplib2',
+    'oauth2client',
+    'six',
+]
 
 def _AddThirdPartyLibraries():
   """Registers the third party libraries with App Engine.
@@ -28,8 +42,9 @@
   # The deploy script is expected to add links to third party libraries
   # before deploying. If the directories aren't there (e.g. when running tests)
   # then just ignore it.
-  for library_dir in (cloud_mapper.THIRD_PARTY_LIBRARIES +
-                      cloud_mapper.THIRD_PARTY_LIBRARIES_IN_SDK):
+  for library_dir in (THIRD_PARTY_LIBRARIES +
+                      THIRD_PARTY_LIBRARIES_IN_TRACE_PROCESSOR +
+                      THIRD_PARTY_LIBRARIES_IN_SDK):
     if os.path.exists(library_dir):
       vendor.add(os.path.join(os.path.dirname(__file__), library_dir))
 
diff --git a/catapult/perf_insights/perf_insights/cloud_config.py b/catapult/trace_processor/trace_uploader/cloud_config.py
similarity index 100%
rename from catapult/perf_insights/perf_insights/cloud_config.py
rename to catapult/trace_processor/trace_uploader/cloud_config.py
diff --git a/catapult/perf_insights/cron.yaml b/catapult/trace_processor/trace_uploader/cron.yaml
similarity index 100%
rename from catapult/perf_insights/cron.yaml
rename to catapult/trace_processor/trace_uploader/cron.yaml
diff --git a/catapult/perf_insights/dispatch.yaml b/catapult/trace_processor/trace_uploader/dispatch.yaml
similarity index 100%
rename from catapult/perf_insights/dispatch.yaml
rename to catapult/trace_processor/trace_uploader/dispatch.yaml
diff --git a/catapult/perf_insights/perf_insights_examples/__init__.py b/catapult/trace_processor/trace_uploader/endpoints/__init__.py
similarity index 100%
rename from catapult/perf_insights/perf_insights_examples/__init__.py
rename to catapult/trace_processor/trace_uploader/endpoints/__init__.py
diff --git a/catapult/perf_insights/perf_insights/endpoints/corpus_cleanup.py b/catapult/trace_processor/trace_uploader/endpoints/corpus_cleanup.py
similarity index 78%
rename from catapult/perf_insights/perf_insights/endpoints/corpus_cleanup.py
rename to catapult/trace_processor/trace_uploader/endpoints/corpus_cleanup.py
index d2b34d6..5fd3cb5 100644
--- a/catapult/perf_insights/perf_insights/endpoints/corpus_cleanup.py
+++ b/catapult/trace_processor/trace_uploader/endpoints/corpus_cleanup.py
@@ -6,15 +6,16 @@
 import logging
 import webapp2
 
-from perf_insights import cloud_config
-from perf_insights.endpoints.cloud_mapper.cloud_helper import \
-    default_retry_params
-from perf_insights.trace_info import TraceInfo
+from . import cloud_config
+from .trace_info import TraceInfo
 import cloudstorage as gcs
 
 BATCH_SIZE = 100
 MAX_DAYS = 30
-
+DEFAULT_RETRY_PARAMS = gcs.RetryParams(initial_delay=0.2,
+                                       max_delay=5.0,
+                                       backoff_factor=2,
+                                       max_retry_period=15)
 
 class CorpusCleanupPage(webapp2.RequestHandler):
 
@@ -28,7 +29,7 @@
     for key in q.fetch(BATCH_SIZE, keys_only=True):
       gcs_path = '/%s/%s.gz' % (trace_bucket, key.id())
       try:
-        gcs.delete(gcs_path, retry_params=default_retry_params)
+        gcs.delete(gcs_path, retry_params=DEFAULT_RETRY_PARAMS)
       except gcs.NotFoundError:
         pass
 
diff --git a/catapult/perf_insights/perf_insights/endpoints/upload.py b/catapult/trace_processor/trace_uploader/endpoints/upload.py
similarity index 96%
rename from catapult/perf_insights/perf_insights/endpoints/upload.py
rename to catapult/trace_processor/trace_uploader/endpoints/upload.py
index 2fab2dc..642fcb6 100644
--- a/catapult/perf_insights/perf_insights/endpoints/upload.py
+++ b/catapult/trace_processor/trace_uploader/endpoints/upload.py
@@ -9,8 +9,8 @@
 import webapp2
 import uuid
 
-from perf_insights import trace_info
-from perf_insights import cloud_config
+from . import trace_info
+from . import cloud_config
 
 import cloudstorage as gcs
 
diff --git a/catapult/perf_insights/index.yaml b/catapult/trace_processor/trace_uploader/index.yaml
similarity index 100%
rename from catapult/perf_insights/index.yaml
rename to catapult/trace_processor/trace_uploader/index.yaml
diff --git a/catapult/perf_insights/perf_insights/trace_info.py b/catapult/trace_processor/trace_uploader/trace_info.py
similarity index 100%
rename from catapult/perf_insights/perf_insights/trace_info.py
rename to catapult/trace_processor/trace_uploader/trace_info.py
diff --git a/catapult/tracing/OWNERS b/catapult/tracing/OWNERS
index 6e5d380..cddffe8 100644
--- a/catapult/tracing/OWNERS
+++ b/catapult/tracing/OWNERS
@@ -8,7 +8,10 @@
 fmeawad@chromium.org
 charliea@chromium.org
 eakuefner@chromium.org
+benjhayden@chromium.org
 
+# For changes related to system_health/loading_metric.html and its tests.
+kouhei@chromium.org
 
 # Tracing, in general, doesn't require an owners stamp to commit. If you
 # don't think the complexity requires the review of the above you can use
diff --git a/catapult/tracing/bin/generate_about_tracing_contents b/catapult/tracing/bin/generate_about_tracing_contents
index 37b868c..feee882 100755
--- a/catapult/tracing/bin/generate_about_tracing_contents
+++ b/catapult/tracing/bin/generate_about_tracing_contents
@@ -7,8 +7,8 @@
 import sys
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..'))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   from tracing_build import generate_about_tracing_contents
   sys.exit(generate_about_tracing_contents.Main(sys.argv[1:]))
diff --git a/catapult/tracing/bin/html2trace b/catapult/tracing/bin/html2trace
index 2d81211..bc75f9e 100755
--- a/catapult/tracing/bin/html2trace
+++ b/catapult/tracing/bin/html2trace
@@ -7,7 +7,9 @@
 import sys
 import os
 
-sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
+tracing_path = os.path.abspath(os.path.join(
+  os.path.dirname(os.path.realpath(__file__)), '..'))
+sys.path.append(tracing_path)
 from tracing_build import html2trace
 
 
diff --git a/catapult/tracing/bin/map_traces b/catapult/tracing/bin/map_traces
new file mode 100755
index 0000000..af58491
--- /dev/null
+++ b/catapult/tracing/bin/map_traces
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+# Copyright (c) 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import os
+import sys
+
+if __name__ == '__main__':
+  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
+                                              '..'))
+  sys.path.append(tracing_path)
+  from tracing.mre import map_traces
+  sys.exit(map_traces.Main(sys.argv))
diff --git a/catapult/tracing/bin/merge_traces b/catapult/tracing/bin/merge_traces
index bce07db..4b610dd 100755
--- a/catapult/tracing/bin/merge_traces
+++ b/catapult/tracing/bin/merge_traces
@@ -7,7 +7,8 @@
 import sys
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   from tracing_build import merge_traces
   sys.exit(merge_traces.Main(sys.argv))
diff --git a/catapult/tracing/bin/run_dev_server_tests b/catapult/tracing/bin/run_dev_server_tests
index 1e97395..bd09476 100755
--- a/catapult/tracing/bin/run_dev_server_tests
+++ b/catapult/tracing/bin/run_dev_server_tests
@@ -7,8 +7,8 @@
 import sys
 
 if __name__ == '__main__':
-  catapult_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..', '..'))
-  sys.path.append(catapult_path)
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..', '..'))
+  sys.path.append(tracing_path)
   from catapult_build import run_dev_server_tests
   sys.exit(run_dev_server_tests.Main(sys.argv + ['--tests=tracing']))
diff --git a/catapult/tracing/bin/run_py_tests b/catapult/tracing/bin/run_py_tests
index d5cf781..6ec19b4 100755
--- a/catapult/tracing/bin/run_py_tests
+++ b/catapult/tracing/bin/run_py_tests
@@ -7,8 +7,11 @@
 import platform
 import sys
 
-_CATAPULT_PATH = os.path.abspath(os.path.join(
-    os.path.dirname(__file__), os.path.pardir, os.path.pardir))
+_CATAPULT_PATH = os.path.abspath(
+    os.path.join(
+        os.path.dirname(os.path.realpath(__file__)),
+        os.path.pardir,
+        os.path.pardir))
 _TRACING_PATH = os.path.join(_CATAPULT_PATH, 'tracing')
 
 
diff --git a/catapult/tracing/bin/run_tests b/catapult/tracing/bin/run_tests
index a1bbf15..df95b1d 100755
--- a/catapult/tracing/bin/run_tests
+++ b/catapult/tracing/bin/run_tests
@@ -7,7 +7,7 @@
 import sys
 
 
-_THIS_PATH = os.path.dirname(__file__)
+_THIS_PATH = os.path.dirname(os.path.realpath(__file__))
 _TESTS = [
     {'path': os.path.join(_THIS_PATH, 'run_py_tests')},
     {'path': os.path.join(_THIS_PATH, 'run_vinn_tests'),
@@ -18,8 +18,8 @@
 
 
 if __name__ == '__main__':
-  catapult_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                  '..', '..'))
-  sys.path.append(catapult_path)
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
+  sys.path.append(tracing_path)
   from catapult_build import test_runner
   sys.exit(test_runner.Main('tracing', _TESTS, sys.argv))
diff --git a/catapult/tracing/bin/run_vinn_tests b/catapult/tracing/bin/run_vinn_tests
index cc68ef0..42ec180 100755
--- a/catapult/tracing/bin/run_vinn_tests
+++ b/catapult/tracing/bin/run_vinn_tests
@@ -7,8 +7,8 @@
 import sys
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..'))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   from tracing_build import run_vinn_tests
   sys.exit(run_vinn_tests.Main(sys.argv))
diff --git a/catapult/tracing/bin/symbolize_trace b/catapult/tracing/bin/symbolize_trace
index 055736f..054f375 100755
--- a/catapult/tracing/bin/symbolize_trace
+++ b/catapult/tracing/bin/symbolize_trace
@@ -14,7 +14,7 @@
 import sys
 
 _SYMBOLS_PATH = os.path.abspath(os.path.join(
-    os.path.dirname(__file__),
+    os.path.dirname(os.path.realpath(__file__)),
     '..',
     'third_party',
     'symbols'))
diff --git a/catapult/tracing/bin/trace2html b/catapult/tracing/bin/trace2html
index 2aa2027..0457d39 100755
--- a/catapult/tracing/bin/trace2html
+++ b/catapult/tracing/bin/trace2html
@@ -7,8 +7,8 @@
 import os
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..'))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   from tracing_build import trace2html
   sys.exit(trace2html.Main(sys.argv))
diff --git a/catapult/tracing/bin/update_gypi b/catapult/tracing/bin/update_gypi
index 2c66ae1..a4e54fd 100755
--- a/catapult/tracing/bin/update_gypi
+++ b/catapult/tracing/bin/update_gypi
@@ -7,8 +7,8 @@
 import sys
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..'))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   from tracing_build import update_gypi
   sys.exit(update_gypi.Update())
diff --git a/catapult/tracing/bin/validate_all_metrics b/catapult/tracing/bin/validate_all_metrics
index 4711c55..b4b2630 100755
--- a/catapult/tracing/bin/validate_all_metrics
+++ b/catapult/tracing/bin/validate_all_metrics
@@ -9,7 +9,9 @@
 import string
 import sys
 
-sys.path.insert(1, os.path.join(os.path.dirname(__file__), '..'))
+sys.path.insert(
+    1,
+    os.path.join(os.path.dirname(os.path.realpath(__file__)), '..'))
 from tracing.metrics import discover
 import tracing_project
 
diff --git a/catapult/tracing/bin/vulcanize_trace_viewer b/catapult/tracing/bin/vulcanize_trace_viewer
index 2ce8d81..c3602d4 100755
--- a/catapult/tracing/bin/vulcanize_trace_viewer
+++ b/catapult/tracing/bin/vulcanize_trace_viewer
@@ -7,8 +7,8 @@
 import sys
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 '..'))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   from tracing_build import vulcanize_trace_viewer
   sys.exit(vulcanize_trace_viewer.Main(sys.argv))
diff --git a/catapult/tracing/bin/why_imported b/catapult/tracing/bin/why_imported
index a8c7822..9b5a59a 100755
--- a/catapult/tracing/bin/why_imported
+++ b/catapult/tracing/bin/why_imported
@@ -40,8 +40,8 @@
 
 
 if __name__ == '__main__':
-  tracing_path = os.path.abspath(os.path.join(os.path.dirname(__file__),
-                                 os.path.pardir))
+  tracing_path = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '..'))
   sys.path.append(tracing_path)
   import tracing_project
   tracing_project.UpdateSysPathIfNeeded()
diff --git a/catapult/tracing/test_data/v8_runtime_call_stats.json b/catapult/tracing/test_data/v8_runtime_call_stats.json
new file mode 100644
index 0000000..8adcf68
--- /dev/null
+++ b/catapult/tracing/test_data/v8_runtime_call_stats.json
@@ -0,0 +1,2308 @@
+{"traceEvents":[{"pid":35190,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":48}},
+{"pid":35190,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-5}},
+{"pid":35190,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"Renderer"}},
+{"pid":35190,"tid":1,"ts":0,"ph":"M","cat":"__metadata","name":"thread_sort_index","args":{"sort_index":-1}},
+{"pid":35190,"tid":1,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrRendererMain"}},
+{"pid":35190,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},{"pid":35200,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":1}},
+{"pid":35200,"tid":35244,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-1}},
+{"pid":35200,"tid":35244,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"GPU Process"}},
+{"pid":35200,"tid":35200,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrGpuMain"}},
+{"pid":35200,"tid":35244,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},{"pid":35236,"tid":5,"ts":1208875760113,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":36544},
+{"pid":35236,"tid":5,"ts":1208875760389,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,133],\"Throw\":[3,15],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,4],\"StringSplit\":[6,15],\"RegExpExec\":[1,5],\"RegExpFlags\":[52,7],\"StringIndexOf\":[3,2],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,2],\"END\":[]}"},"tts":36819},
+{"pid":35236,"tid":5,"ts":1208875760464,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":36893},
+{"pid":35236,"tid":5,"ts":1208875760601,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,78],\"Throw\":[3,9],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,7],\"RegExpExec\":[1,1],\"RegExpFlags\":[52,7],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":37031},
+{"pid":35236,"tid":5,"ts":1208875760664,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":37093},
+{"pid":35236,"tid":5,"ts":1208875760792,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,71],\"Throw\":[3,7],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,8],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,3],\"StringIndexOf\":[3,3],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":37221},
+{"pid":35236,"tid":5,"ts":1208875760846,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":37275},
+{"pid":35236,"tid":5,"ts":1208875760973,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,77],\"Throw\":[3,6],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,6],\"RegExpExec\":[1,1],\"RegExpFlags\":[52,3],\"StringIndexOf\":[3,0],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,2],\"END\":[]}"},"tts":37402},
+{"pid":35236,"tid":5,"ts":1208875761037,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":37466},
+{"pid":35236,"tid":5,"ts":1208875761165,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,74],\"Throw\":[3,8],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,1],\"StringSplit\":[6,8],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,5],\"StringIndexOf\":[3,0],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":37594},
+{"pid":35236,"tid":5,"ts":1208875768535,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":37723},
+{"pid":35236,"tid":5,"ts":1208875768720,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,98],\"Throw\":[3,11],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,10],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,2],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,0],\"END\":[]}"},"tts":37907},
+{"pid":35236,"tid":5,"ts":1208875768788,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":37974},
+{"pid":35236,"tid":5,"ts":1208875768923,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,79],\"Throw\":[3,7],\"UnwindAndFindExceptionHandler\":[3,2],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,7],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,4],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":38109},
+{"pid":35236,"tid":5,"ts":1208875947974,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":38256},
+{"pid":35236,"tid":5,"ts":1208875948171,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,132],\"Throw\":[3,9],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,6],\"RegExpExec\":[1,3],\"RegExpFlags\":[52,1],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,0],\"END\":[]}"},"tts":38437},
+{"pid":35236,"tid":5,"ts":1208875948215,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":38480},
+{"pid":35236,"tid":5,"ts":1208875948297,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,50],\"Throw\":[3,5],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,1],\"StringSplit\":[6,3],\"RegExpExec\":[1,1],\"RegExpFlags\":[52,1],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,0],\"END\":[]}"},"tts":38563},
+{"pid":35236,"tid":5,"ts":1208876219183,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":38710},
+{"pid":35236,"tid":5,"ts":1208876219412,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,135],\"Throw\":[3,12],\"UnwindAndFindExceptionHandler\":[3,5],\"CreateObjectLiteral\":[1,3],\"StringSplit\":[6,11],\"RegExpExec\":[1,3],\"RegExpFlags\":[52,0],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":38938},
+{"pid":35236,"tid":5,"ts":1208876219478,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":39003},
+{"pid":35236,"tid":5,"ts":1208876219608,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,77],\"Throw\":[3,9],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,1],\"StringSplit\":[6,7],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,1],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":39134},
+{"pid":35236,"tid":5,"ts":1208876221377,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":39251},
+{"pid":35236,"tid":5,"ts":1208876221553,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,90],\"Throw\":[3,10],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,9],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,5],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,0],\"END\":[]}"},"tts":39426},
+{"pid":35236,"tid":5,"ts":1208876221614,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":39487},
+{"pid":35236,"tid":5,"ts":1208876221742,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,76],\"Throw\":[3,6],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,1],\"StringSplit\":[6,7],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,4],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":39615},
+{"pid":35236,"tid":5,"ts":1208877005819,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":39756},
+{"pid":35236,"tid":5,"ts":1208877006069,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,147],\"Throw\":[3,15],\"UnwindAndFindExceptionHandler\":[3,5],\"CreateObjectLiteral\":[1,3],\"StringSplit\":[6,10],\"RegExpExec\":[1,3],\"RegExpFlags\":[52,2],\"StringIndexOf\":[3,2],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":40005},
+{"pid":35236,"tid":5,"ts":1208877006146,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":40081},
+{"pid":35236,"tid":5,"ts":1208877006285,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,83],\"Throw\":[3,8],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,6],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,3],\"StringIndexOf\":[3,0],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,2],\"END\":[]}"},"tts":40220},
+{"pid":35236,"tid":5,"ts":1208877042177,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":40346},
+{"pid":35236,"tid":5,"ts":1208877042370,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,103],\"Throw\":[3,10],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,8],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,6],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":40539},
+{"pid":35236,"tid":5,"ts":1208877042436,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":40604},
+{"pid":35236,"tid":5,"ts":1208877042571,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,79],\"Throw\":[3,9],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,8],\"RegExpExec\":[1,1],\"RegExpFlags\":[52,3],\"StringIndexOf\":[3,0],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":40739},
+{"pid":35236,"tid":5,"ts":1208877099212,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":40846},
+{"pid":35236,"tid":5,"ts":1208877099405,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,102],\"Throw\":[3,11],\"UnwindAndFindExceptionHandler\":[3,4],\"CreateObjectLiteral\":[1,3],\"StringSplit\":[6,9],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,6],\"StringIndexOf\":[3,1],\"StringToUpperCase\":[1,1],\"API_String_WriteUtf8\":[2,1],\"END\":[]}"},"tts":41040},
+{"pid":35236,"tid":5,"ts":1208877099470,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":41103},
+{"pid":35236,"tid":5,"ts":1208877099598,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,78],\"Throw\":[3,7],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateObjectLiteral\":[1,2],\"StringSplit\":[6,8],\"RegExpExec\":[1,2],\"RegExpFlags\":[52,1],\"StringIndexOf\":[3,0],\"StringToUpperCase\":[1,0],\"API_String_WriteUtf8\":[2,0],\"END\":[]}"},"tts":41232},
+{"pid":35236,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":48}},
+{"pid":35236,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},
+{"pid":35236,"tid":5,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Proxy Resolver"}},{"pid":35270,"tid":1,"ts":1208875229053,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":115,"tdur":112,"tts":4966931},
+{"pid":35270,"tid":1,"ts":1208875229126,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4967003},
+{"pid":35270,"tid":1,"ts":1208875229161,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,5],\"END\":[]}"},"tts":4967037},
+{"pid":35270,"tid":1,"ts":1208875229182,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":61,"tdur":59,"tts":4967059},
+{"pid":35270,"tid":1,"ts":1208875229194,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4967070},
+{"pid":35270,"tid":1,"ts":1208875229237,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[1,18],\"JS_Execution\":[1,4],\"LoadGlobalIC_Slow\":[1,4],\"HandleApiCall\":[1,1],\"API_Persistent_New\":[3,0],\"END\":[]}"},"tts":4967114},
+{"pid":35270,"tid":1,"ts":1208875230345,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":1870,"tdur":1860,"tts":4967222},
+{"pid":35270,"tid":1,"ts":1208875230357,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1855,"tdur":1847,"tts":4967232},
+{"pid":35270,"tid":1,"ts":1208875230386,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4967261},
+{"pid":35270,"tid":1,"ts":1208875230504,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"JS_Execution\":[1,45],\"CallIC_Miss\":[1,2],\"LoadIC_Miss\":[1,24],\"EnqueueMicrotask\":[1,1],\"END\":[]}"},"tts":4967379},
+{"pid":35270,"tid":1,"ts":1208875230668,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1398,"tdur":1389,"tts":4967544},
+{"pid":35270,"tid":1,"ts":1208875230683,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4967557},
+{"pid":35270,"tid":1,"ts":1208875231827,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":42,"tdur":39,"tts":4968704},
+{"pid":35270,"tid":1,"ts":1208875231837,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4968712},
+{"pid":35270,"tid":1,"ts":1208875231865,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":4968740},
+{"pid":35270,"tid":1,"ts":1208875232058,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[9,2],\"FunctionCallback\":[11,1208],\"IndexedPropertyGetterCallback\":[4,1],\"JS_Execution\":[2,37],\"Map_TransitionToDataProperty\":[1,1],\"LoadElementWithInterceptor\":[4,1],\"LoadGlobalIC_Slow\":[9,6],\"LoadIC_Miss\":[10,40],\"StoreIC_Miss\":[2,23],\"StrictEqual\":[1,0],\"HandleApiCall\":[8,16],\"BooleanConstructor\":[5,1],\"API_External_New\":[1,1],\"API_Function_Call\":[1,5],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[3,3],\"API_Persistent_New\":[7,3],\"API_String_NewExternalOneByte\":[1,0],\"API_String_NewFromOneByte\":[1,1],\"API_String_Write\":[2,1],\"END\":[]}"},"tts":4968926},
+{"pid":35270,"tid":1,"ts":1208875232953,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":147,"tdur":145,"tts":4969164},
+{"pid":35270,"tid":1,"ts":1208875232963,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":133,"tdur":131,"tts":4969173},
+{"pid":35270,"tid":1,"ts":1208875232991,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4969201},
+{"pid":35270,"tid":1,"ts":1208875233084,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,7],\"FunctionCallback\":[1,2],\"JS_Execution\":[1,33],\"GetProperty\":[1,6],\"HandleApiCall\":[1,2],\"API_FunctionTemplate_GetFunction\":[1,4],\"API_Object_HasOwnProperty\":[1,2],\"API_String_NewFromOneByte\":[1,4],\"END\":[]}"},"tts":4969294},
+{"pid":35270,"tid":1,"ts":1208875298186,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":189,"tdur":186,"tts":4972054},
+{"pid":35270,"tid":1,"ts":1208875298230,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4972096},
+{"pid":35270,"tid":1,"ts":1208875298366,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[2,0],\"JS_Execution\":[1,54],\"BinaryOpIC_Miss\":[1,6],\"KeyedLoadIC_Miss\":[1,5],\"LoadIC_Miss\":[4,34],\"StringEqual\":[2,1],\"API_Persistent_New\":[1,1],\"API_String_NewExternalOneByte\":[1,1],\"END\":[]}"},"tts":4972232},
+{"pid":35270,"tid":1,"ts":1208875298391,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":96,"tdur":95,"tts":4972257},
+{"pid":35270,"tid":1,"ts":1208875298403,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4972268},
+{"pid":35270,"tid":1,"ts":1208875298480,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,24],\"LoadIC_Miss\":[2,24],\"StringEqual\":[3,1],\"API_Array_New\":[1,3],\"API_Object_CreateDataProperty\":[12,8],\"API_Persistent_New\":[1,0],\"API_String_NewExternalOneByte\":[1,1],\"END\":[]}"},"tts":4972346},
+{"pid":35270,"tid":1,"ts":1208875298497,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":381,"tdur":380,"tts":4972363},
+{"pid":35270,"tid":1,"ts":1208875298509,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4972374},
+{"pid":35270,"tid":1,"ts":1208875298870,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,25],\"CompileFullCode\":[1,36],\"FunctionCallback\":[5,5],\"JS_Execution\":[3,69],\"ParseLazy\":[1,94],\"CompareIC_Miss\":[2,3],\"KeyedLoadIC_Miss\":[1,2],\"LoadIC_Miss\":[11,102],\"CompileLazy\":[1,3],\"StringEqual\":[1,0],\"ExternalStringGetChar\":[1,1],\"API_Array_New\":[1,1],\"API_Object_CreateDataProperty\":[12,3],\"END\":[]}"},"tts":4972736},
+{"pid":35270,"tid":1,"ts":1208875352246,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":51,"tdur":48,"tts":4974463},
+{"pid":35270,"tid":1,"ts":1208875352264,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4974479},
+{"pid":35270,"tid":1,"ts":1208875352290,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,5],\"StringEqual\":[2,1],\"END\":[]}"},"tts":4974506},
+{"pid":35270,"tid":1,"ts":1208875352309,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":43,"tdur":42,"tts":4974524},
+{"pid":35270,"tid":1,"ts":1208875352321,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4974536},
+{"pid":35270,"tid":1,"ts":1208875352347,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,11],\"StringEqual\":[3,0],\"API_Array_New\":[1,1],\"API_Object_CreateDataProperty\":[12,1],\"END\":[]}"},"tts":4974562},
+{"pid":35270,"tid":1,"ts":1208875352361,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":93,"tdur":91,"tts":4974577},
+{"pid":35270,"tid":1,"ts":1208875352372,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4974587},
+{"pid":35270,"tid":1,"ts":1208875352446,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[3,3],\"JS_Execution\":[1,5],\"LoadIC_Miss\":[5,48],\"StringEqual\":[1,0],\"ExternalStringGetChar\":[1,1],\"API_Array_New\":[1,1],\"API_Object_CreateDataProperty\":[12,3],\"END\":[]}"},"tts":4974662},
+{"pid":35270,"tid":1,"ts":1208876000146,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":417,"tdur":414,"tts":4978091},
+{"pid":35270,"tid":1,"ts":1208876000161,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":399,"tdur":398,"tts":4978104},
+{"pid":35270,"tid":1,"ts":1208876000202,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4978144},
+{"pid":35270,"tid":1,"ts":1208876000551,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[3,207],\"JS_Execution\":[1,62],\"Map_TransitionToDataProperty\":[1,3],\"LoadGlobalIC_Slow\":[1,6],\"IsConstructor\":[1,0],\"CreateObjectLiteral\":[3,9],\"InternalSetPrototype\":[2,5],\"NewClosure_Tenured\":[1,3],\"HandleApiCall\":[3,4],\"API_Array_New\":[1,2],\"API_External_New\":[1,0],\"API_Object_CreateDataProperty\":[1,6],\"API_Object_HasOwnProperty\":[1,0],\"API_Object_SetPrivate\":[1,3],\"API_Persistent_New\":[2,2],\"API_String_NewFromOneByte\":[1,2],\"END\":[]}"},"tts":4978494},
+{"pid":35270,"tid":1,"ts":1208876001725,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":44,"tdur":42,"tts":4978765},
+{"pid":35270,"tid":1,"ts":1208876001742,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4978780},
+{"pid":35270,"tid":1,"ts":1208876001764,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,2],\"END\":[]}"},"tts":4978802},
+{"pid":35270,"tid":1,"ts":1208876001807,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":28,"tdur":27,"tts":4978846},
+{"pid":35270,"tid":1,"ts":1208876001820,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4978859},
+{"pid":35270,"tid":1,"ts":1208876001831,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,1],\"END\":[]}"},"tts":4978869},
+{"pid":35270,"tid":1,"ts":1208876001936,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":61,"tdur":59,"tts":4978976},
+{"pid":35270,"tid":1,"ts":1208876001950,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4978989},
+{"pid":35270,"tid":1,"ts":1208876001990,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"FunctionCallback\":[1,20],\"JS_Execution\":[1,2],\"LoadGlobalIC_Slow\":[1,3],\"HandleApiCall\":[1,0],\"API_Persistent_New\":[3,0],\"END\":[]}"},"tts":4979029},
+{"pid":35270,"tid":1,"ts":1208876154398,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":300,"tdur":295,"tts":4979595},
+{"pid":35270,"tid":1,"ts":1208876154415,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":277,"tdur":274,"tts":4979610},
+{"pid":35270,"tid":1,"ts":1208876154464,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4979658},
+{"pid":35270,"tid":1,"ts":1208876154540,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,27],\"EnqueueMicrotask\":[1,2],\"StringEqual\":[1,0],\"END\":[]}"},"tts":4979734},
+{"pid":35270,"tid":1,"ts":1208876155217,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":162,"tdur":158,"tts":4980414},
+{"pid":35270,"tid":1,"ts":1208876155257,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4980452},
+{"pid":35270,"tid":1,"ts":1208876155363,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[3,34],\"JS_Execution\":[1,12],\"LoadGlobalIC_Slow\":[1,2],\"HandleApiCall\":[3,5],\"API_Persistent_New\":[3,2],\"END\":[]}"},"tts":4980558},
+{"pid":35270,"tid":1,"ts":1208876156438,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":181,"tdur":176,"tts":4980883},
+{"pid":35270,"tid":1,"ts":1208876156454,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":159,"tdur":155,"tts":4980897},
+{"pid":35270,"tid":1,"ts":1208876156492,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4980934},
+{"pid":35270,"tid":1,"ts":1208876156578,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,10],\"FunctionCallback\":[1,3],\"JS_Execution\":[1,4],\"GetProperty\":[1,4],\"HandleApiCall\":[1,3],\"API_FunctionTemplate_GetFunction\":[1,2],\"API_Object_HasOwnProperty\":[1,1],\"API_String_NewFromOneByte\":[1,2],\"END\":[]}"},"tts":4981021},
+{"pid":35270,"tid":1,"ts":1208876168449,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1146,"tdur":1115,"tts":4983139},
+{"pid":35270,"tid":1,"ts":1208876168499,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4983186},
+{"pid":35270,"tid":1,"ts":1208876169206,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCode\":[1,1],\"CompileCodeLazy\":[2,75],\"CompileFullCode\":[2,130],\"FunctionCallback\":[5,15],\"JS_Execution\":[1,53],\"ParseLazy\":[2,281],\"CompareIC_Miss\":[3,6],\"KeyedLoadIC_Miss\":[1,6],\"LoadGlobalIC_Miss\":[1,4],\"LoadIC_Miss\":[10,47],\"ToBooleanIC_Miss\":[1,2],\"CompileLazy\":[2,6],\"StringEqual\":[1,0],\"ExternalStringGetChar\":[1,1],\"ObjectKeys\":[1,8],\"API_Array_New\":[1,4],\"API_Object_CreateDataProperty\":[12,10],\"END\":[]}"},"tts":4983890},
+{"pid":35270,"tid":1,"ts":1208876240096,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":4275,"tdur":4272,"tts":4987076},
+{"pid":35270,"tid":1,"ts":1208876240161,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4987138},
+{"pid":35270,"tid":1,"ts":1208876244335,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[5,27],\"JS_Execution\":[2,90],\"BinaryOpIC_Miss\":[1,17],\"CompareIC_Miss\":[1,4],\"LoadGlobalIC_Miss\":[2,46],\"LoadIC_Miss\":[11,141],\"StoreIC_Miss\":[2,3733],\"StringEqual\":[1,0],\"ExternalStringGetChar\":[1,2],\"HandleApiCall\":[2,2],\"ObjectKeys\":[1,10],\"API_Array_New\":[1,6],\"API_Object_CreateDataProperty\":[12,17],\"END\":[]}"},"tts":4991316},
+{"pid":35270,"tid":1,"ts":1208876654839,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":520,"tdur":516,"tts":4991666},
+{"pid":35270,"tid":1,"ts":1208876654857,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":498,"tdur":497,"tts":4991681},
+{"pid":35270,"tid":1,"ts":1208876654906,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4991730},
+{"pid":35270,"tid":1,"ts":1208876655343,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"FunctionCallback\":[3,259],\"JS_Execution\":[1,74],\"Map_TransitionToDataProperty\":[1,4],\"LoadGlobalIC_Slow\":[1,8],\"IsConstructor\":[1,1],\"CreateObjectLiteral\":[3,9],\"InternalSetPrototype\":[2,5],\"NewClosure_Tenured\":[1,5],\"HandleApiCall\":[3,5],\"API_Array_New\":[1,2],\"API_External_New\":[1,1],\"API_Object_CreateDataProperty\":[1,9],\"API_Object_HasOwnProperty\":[1,0],\"API_Object_SetPrivate\":[1,4],\"API_Persistent_New\":[2,3],\"API_String_NewFromOneByte\":[1,3],\"END\":[]}"},"tts":4992168},
+{"pid":35270,"tid":1,"ts":1208876656763,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":92,"tdur":87,"tts":4992672},
+{"pid":35270,"tid":1,"ts":1208876656798,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4992704},
+{"pid":35270,"tid":1,"ts":1208876656843,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,3],\"END\":[]}"},"tts":4992749},
+{"pid":35270,"tid":1,"ts":1208876656909,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":57,"tdur":54,"tts":4992816},
+{"pid":35270,"tid":1,"ts":1208876656936,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4992841},
+{"pid":35270,"tid":1,"ts":1208876656957,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,1],\"END\":[]}"},"tts":4992863},
+{"pid":35270,"tid":1,"ts":1208876657148,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":114,"tdur":112,"tts":4993055},
+{"pid":35270,"tid":1,"ts":1208876657177,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4993083},
+{"pid":35270,"tid":1,"ts":1208876657251,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"FunctionCallback\":[1,34],\"JS_Execution\":[1,5],\"LoadGlobalIC_Slow\":[1,3],\"HandleApiCall\":[1,1],\"API_Persistent_New\":[3,0],\"END\":[]}"},"tts":4993157},
+{"pid":35270,"tid":1,"ts":1208876658359,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":543,"tdur":538,"tts":4993298},
+{"pid":35270,"tid":1,"ts":1208876658373,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":523,"tdur":520,"tts":4993310},
+{"pid":35270,"tid":1,"ts":1208876658405,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":4993341},
+{"pid":35270,"tid":1,"ts":1208876658471,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,17],\"EnqueueMicrotask\":[1,2],\"StringEqual\":[1,0],\"END\":[]}"},"tts":4993407},
+{"pid":35270,"tid":1,"ts":1208877159010,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":431,"tdur":428,"tts":5026924},
+{"pid":35270,"tid":1,"ts":1208877159024,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":412,"tdur":410,"tts":5026937},
+{"pid":35270,"tid":1,"ts":1208877159062,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5026974},
+{"pid":35270,"tid":1,"ts":1208877159420,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[3,204],\"JS_Execution\":[1,53],\"Map_TransitionToDataProperty\":[1,3],\"LoadGlobalIC_Slow\":[1,6],\"IsConstructor\":[1,0],\"CreateObjectLiteral\":[3,8],\"InternalSetPrototype\":[2,4],\"NewClosure_Tenured\":[1,4],\"HandleApiCall\":[3,3],\"API_Array_New\":[1,2],\"API_External_New\":[1,1],\"API_Object_CreateDataProperty\":[1,5],\"API_Object_HasOwnProperty\":[1,1],\"API_Object_SetPrivate\":[1,3],\"API_Persistent_New\":[2,2],\"API_String_NewFromOneByte\":[1,3],\"END\":[]}"},"tts":5027333},
+{"pid":35270,"tid":1,"ts":1208877160721,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":87,"tdur":83,"tts":5027911},
+{"pid":35270,"tid":1,"ts":1208877160754,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5027941},
+{"pid":35270,"tid":1,"ts":1208877160797,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,2],\"END\":[]}"},"tts":5027985},
+{"pid":35270,"tid":1,"ts":1208877160860,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":55,"tdur":53,"tts":5028048},
+{"pid":35270,"tid":1,"ts":1208877160887,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5028074},
+{"pid":35270,"tid":1,"ts":1208877160907,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,1],\"END\":[]}"},"tts":5028094},
+{"pid":35270,"tid":1,"ts":1208877161070,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":103,"tdur":101,"tts":5028258},
+{"pid":35270,"tid":1,"ts":1208877161098,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5028285},
+{"pid":35270,"tid":1,"ts":1208877161163,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"FunctionCallback\":[1,28],\"JS_Execution\":[1,4],\"LoadGlobalIC_Slow\":[1,4],\"HandleApiCall\":[1,1],\"API_Persistent_New\":[3,1],\"END\":[]}"},"tts":5028350},
+{"pid":35270,"tid":1,"ts":1208877162261,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":197,"tdur":193,"tts":5028472},
+{"pid":35270,"tid":1,"ts":1208877162273,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":180,"tdur":177,"tts":5028483},
+{"pid":35270,"tid":1,"ts":1208877162303,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5028512},
+{"pid":35270,"tid":1,"ts":1208877162360,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,12],\"EnqueueMicrotask\":[1,1],\"StringEqual\":[1,1],\"END\":[]}"},"tts":5028569},
+{"pid":35270,"tid":1,"ts":1208877495696,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":657,"tdur":635,"tts":5047734},
+{"pid":35270,"tid":1,"ts":1208877495741,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5047776},
+{"pid":35270,"tid":1,"ts":1208877496331,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[4,337],\"JS_Execution\":[1,75],\"Map_TransitionToDataProperty\":[1,4],\"LoadGlobalIC_Slow\":[1,6],\"LoadIC_Miss\":[1,14],\"StoreIC_Miss\":[1,56],\"IsConstructor\":[2,0],\"CreateObjectLiteral\":[5,8],\"InternalSetPrototype\":[3,5],\"NewClosure_Tenured\":[1,4],\"HandleApiCall\":[3,3],\"API_Array_New\":[1,2],\"API_External_New\":[1,1],\"API_Object_CreateDataProperty\":[1,6],\"API_Object_HasOwnProperty\":[1,1],\"API_Object_SetPrivate\":[1,3],\"API_Persistent_New\":[2,1],\"API_String_NewFromOneByte\":[1,3],\"END\":[]}"},"tts":5048351},
+{"pid":35270,"tid":1,"ts":1208877496383,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":77,"tdur":74,"tts":5048402},
+{"pid":35270,"tid":1,"ts":1208877496411,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":5048429},
+{"pid":35270,"tid":1,"ts":1208877496447,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"JS_Execution\":[1,6],\"HandleApiCall\":[1,3],\"END\":[]}"},"tts":5048465},
+{"pid":35270,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":48}},
+{"pid":35270,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-5}},
+{"pid":35270,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"Renderer"}},
+{"pid":35270,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_labels","args":{"labels":"chrome://tracing"}},
+{"pid":35270,"tid":1,"ts":0,"ph":"M","cat":"__metadata","name":"thread_sort_index","args":{"sort_index":-1}},
+{"pid":35270,"tid":1,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrRendererMain"}},
+{"pid":35270,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},
+{"pid":35270,"tid":3,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Compositor"}},
+{"pid":35270,"tid":5,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CompositorTileWorker1/5"}},
+{"pid":35270,"tid":6,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CompositorTileWorker2/6"}},
+{"pid":35270,"tid":7,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CompositorTileWorker3/7"}},
+{"pid":35270,"tid":8,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CompositorTileWorker4/8"}},{"pid":35295,"tid":1,"ts":1208875355696,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":2091,"tdur":2085,"tts":1213256},
+{"pid":35295,"tid":1,"ts":1208875355846,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1213401},
+{"pid":35295,"tid":1,"ts":1208875357752,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,5],\"FunctionCallback\":[5,87],\"JS_Execution\":[1,656],\"Map_SetPrototype\":[98,16],\"Map_TransitionToDataProperty\":[28,108],\"KeyedLoadIC_Miss\":[1,102],\"LoadGlobalIC_Slow\":[1,15],\"LoadIC_Miss\":[18,163],\"StoreIC_Miss\":[52,620],\"NumberToStringSkipCache\":[2,3],\"KeyedGetProperty\":[8,19],\"Equal\":[2,1],\"StringEqual\":[3,2],\"HandleApiCall\":[1,8],\"ArrayConcat\":[2,8],\"DateNow\":[1,2],\"API_Persistent_New\":[5,2],\"API_String_NewExternalOneByte\":[2,3],\"END\":[]}"},"tts":1215309},
+{"pid":35295,"tid":1,"ts":1208875359387,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":892,"tdur":881,"tts":1216946},
+{"pid":35295,"tid":1,"ts":1208875359425,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1216981},
+{"pid":35295,"tid":1,"ts":1208875360258,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,60],\"FunctionCallback\":[3,24],\"JS_Execution\":[1,177],\"KeyedLoadIC_Miss\":[1,2],\"LoadIC_Miss\":[16,452],\"CreateObjectLiteral\":[34,34],\"GetProperty\":[16,3],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,3],\"API_Object_CreateDataProperty\":[32,17],\"END\":[]}"},"tts":1217809},
+{"pid":35295,"tid":1,"ts":1208875360322,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":2673,"tdur":2672,"tts":1217873},
+{"pid":35295,"tid":1,"ts":1208875360350,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1217899},
+{"pid":35295,"tid":1,"ts":1208875362977,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[7,15],\"CompileCodeLazy\":[4,651],\"CompileFullCode\":[4,231],\"FunctionCallback\":[5,234],\"JS_Execution\":[1,347],\"Map_SetPrototype\":[8,5],\"Map_TransitionToDataProperty\":[8,87],\"ParseLazy\":[4,456],\"CompareIC_Miss\":[1,11],\"LoadGlobalIC_Slow\":[2,4],\"LoadIC_Miss\":[38,297],\"StoreIC_Miss\":[10,125],\"ToBooleanIC_Miss\":[9,13],\"CompileLazy\":[4,13],\"NotifyStubFailure\":[2,2],\"CreateArrayLiteralStubBailout\":[2,11],\"GetProperty\":[3,45],\"RegExpFlags\":[4,0],\"HandleApiCall\":[1,4],\"ArrayPop\":[1,0],\"API_FunctionTemplate_GetFunction\":[1,11],\"API_Object_HasOwnProperty\":[1,2],\"API_Persistent_New\":[1,1],\"API_String_NewExternalOneByte\":[1,1],\"API_String_NewFromOneByte\":[1,8],\"API_String_Write\":[5,3],\"END\":[]}"},"tts":1220530},
+{"pid":35295,"tid":1,"ts":1208875363024,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":345,"tdur":341,"tts":1220577},
+{"pid":35295,"tid":1,"ts":1208875363058,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1220609},
+{"pid":35295,"tid":1,"ts":1208875363338,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[3,41],\"JS_Execution\":[1,139],\"LoadIC_Miss\":[1,33],\"HandleApiCall\":[3,29],\"END\":[]}"},"tts":1220891},
+{"pid":35295,"tid":1,"ts":1208875363437,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":251,"tdur":248,"tts":1220990},
+{"pid":35295,"tid":1,"ts":1208875363471,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1221023},
+{"pid":35295,"tid":1,"ts":1208875363670,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,8],\"JS_Execution\":[1,63],\"KeyedLoadIC_Miss\":[1,4],\"LoadPropertyWithInterceptor\":[2,9],\"LoadPropertyWithInterceptorOnly\":[1,1],\"CreateObjectLiteral\":[34,38],\"GetProperty\":[16,7],\"Equal\":[3,2],\"DateNow\":[1,2],\"API_Array_New\":[2,4],\"API_Object_CreateDataProperty\":[32,20],\"END\":[]}"},"tts":1221223},
+{"pid":35295,"tid":1,"ts":1208875364560,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":322,"tdur":317,"tts":1222115},
+{"pid":35295,"tid":1,"ts":1208875364601,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1222154},
+{"pid":35295,"tid":1,"ts":1208875364862,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,5],\"FunctionCallback\":[3,16],\"JS_Execution\":[1,55],\"KeyedLoadIC_Miss\":[1,3],\"LoadIC_Miss\":[7,83],\"LoadPropertyWithInterceptor\":[1,2],\"CreateObjectLiteral\":[20,21],\"GetProperty\":[9,4],\"Equal\":[3,1],\"DateNow\":[1,1],\"API_Array_New\":[2,10],\"API_Object_CreateDataProperty\":[18,11],\"END\":[]}"},"tts":1222415},
+{"pid":35295,"tid":1,"ts":1208875364907,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":175,"tdur":172,"tts":1222461},
+{"pid":35295,"tid":1,"ts":1208875364939,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1222491},
+{"pid":35295,"tid":1,"ts":1208875365066,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"JS_Execution\":[1,50],\"KeyedLoadIC_Miss\":[1,4],\"LoadPropertyWithInterceptor\":[1,2],\"CreateObjectLiteral\":[20,19],\"GetProperty\":[9,1],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[18,11],\"END\":[]}"},"tts":1222620},
+{"pid":35295,"tid":1,"ts":1208875365140,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":168,"tdur":164,"tts":1222695},
+{"pid":35295,"tid":1,"ts":1208875365173,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1222725},
+{"pid":35295,"tid":1,"ts":1208875365292,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"JS_Execution\":[1,41],\"KeyedLoadIC_Miss\":[1,3],\"LoadPropertyWithInterceptor\":[1,2],\"CreateObjectLiteral\":[12,13],\"GetProperty\":[5,0],\"Equal\":[3,1],\"DateNow\":[1,2],\"API_Array_New\":[2,16],\"API_Object_CreateDataProperty\":[10,4],\"END\":[]}"},"tts":1222845},
+{"pid":35295,"tid":1,"ts":1208875365330,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":148,"tdur":144,"tts":1222884},
+{"pid":35295,"tid":1,"ts":1208875365360,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1222913},
+{"pid":35295,"tid":1,"ts":1208875365457,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"JS_Execution\":[1,35],\"KeyedLoadIC_Miss\":[1,3],\"LoadPropertyWithInterceptor\":[1,2],\"CreateObjectLiteral\":[12,11],\"GetProperty\":[5,2],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[10,6],\"END\":[]}"},"tts":1223010},
+{"pid":35295,"tid":1,"ts":1208875365501,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1197,"tdur":1193,"tts":1223056},
+{"pid":35295,"tid":1,"ts":1208875365536,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1223089},
+{"pid":35295,"tid":1,"ts":1208875366676,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCode\":[2,1],\"CompileCodeLazy\":[4,208],\"CompileFullCode\":[4,197],\"FunctionCallback\":[5,5],\"JS_Execution\":[1,82],\"ParseLazy\":[4,387],\"BinaryOpIC_Miss\":[1,5],\"CompareIC_Miss\":[3,10],\"KeyedLoadIC_Miss\":[2,14],\"LoadGlobalIC_Miss\":[5,24],\"LoadIC_Miss\":[7,97],\"StoreIC_Miss\":[1,8],\"ToBooleanIC_Miss\":[12,23],\"CompileLazy\":[4,13],\"HandleApiCall\":[2,19],\"END\":[]}"},"tts":1224231},
+{"pid":35295,"tid":1,"ts":1208875368970,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":311,"tdur":306,"tts":1225868},
+{"pid":35295,"tid":1,"ts":1208875369012,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1225908},
+{"pid":35295,"tid":1,"ts":1208875369260,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[1,1],\"JS_Execution\":[1,91],\"Map_SetPrototype\":[1,1],\"Map_TransitionToDataProperty\":[1,11],\"LoadGlobalIC_Slow\":[1,7],\"LoadIC_Miss\":[1,35],\"GetProperty\":[1,36],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[2,6],\"API_Object_SetPrivate\":[1,4],\"API_String_NewFromUtf8\":[1,2],\"END\":[]}"},"tts":1226156},
+{"pid":35295,"tid":1,"ts":1208875369308,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1022,"tdur":990,"tts":1226205},
+{"pid":35295,"tid":1,"ts":1208875369340,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1226236},
+{"pid":35295,"tid":1,"ts":1208875370304,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[2,2],\"CompileCodeLazy\":[1,2],\"FunctionCallback\":[2,2],\"JS_Execution\":[1,451],\"Map_SetPrototype\":[18,6],\"Map_TransitionToDataProperty\":[18,109],\"CallIC_Miss\":[1,1],\"KeyedLoadIC_Miss\":[3,3],\"KeyedStoreIC_Miss\":[4,48],\"LoadGlobalIC_Slow\":[1,4],\"LoadIC_Miss\":[21,95],\"StoreIC_Miss\":[16,119],\"CompileLazy\":[1,5],\"ForInEnumerate\":[1,5],\"CreateObjectLiteral\":[2,10],\"NumberToStringSkipCache\":[1,1],\"StringIndexOf\":[1,3],\"StringAdd\":[1,2],\"StringToLowerCase\":[1,1],\"ArrayShift\":[1,9],\"DateNow\":[1,1],\"GlobalEncodeURIComponent\":[1,4],\"NumberPrototypeToString\":[1,3],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[1,1],\"END\":[]}"},"tts":1227172},
+{"pid":35295,"tid":1,"ts":1208875370368,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":514,"tdur":477,"tts":1227235},
+{"pid":35295,"tid":1,"ts":1208875370396,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1227262},
+{"pid":35295,"tid":1,"ts":1208875370864,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"FunctionCallback\":[7,17],\"JS_Execution\":[1,60],\"Map_TransitionToDataProperty\":[16,4],\"LoadGlobalIC_Slow\":[1,5],\"LoadIC_Miss\":[28,123],\"StoreIC_Miss\":[26,202],\"GetProperty\":[1,3],\"FinalizeInstanceSize\":[1,10],\"StringEqual\":[3,1],\"API_Object_Get\":[2,0],\"API_Object_HasOwnProperty\":[2,0],\"API_Persistent_New\":[1,1],\"API_String_NewExternalOneByte\":[1,1],\"END\":[]}"},"tts":1227698},
+{"pid":35295,"tid":1,"ts":1208875370925,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":164,"tdur":151,"tts":1227758},
+{"pid":35295,"tid":1,"ts":1208875370952,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1227784},
+{"pid":35295,"tid":1,"ts":1208875371075,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"FunctionCallback\":[1,3],\"JS_Execution\":[1,74],\"LoadIC_Miss\":[2,13],\"RegExpFlags\":[2,1],\"StringIndexOf\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1227898},
+{"pid":35295,"tid":1,"ts":1208875371110,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":163,"tdur":160,"tts":1227933},
+{"pid":35295,"tid":1,"ts":1208875371138,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1227960},
+{"pid":35295,"tid":1,"ts":1208875371260,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,2],\"JS_Execution\":[1,22],\"Map_SetPrototype\":[2,0],\"Map_TransitionToDataProperty\":[2,7],\"LoadIC_Miss\":[1,12],\"UnwindAndFindExceptionHandler\":[1,1],\"PushCatchContext\":[1,1],\"JsonParse\":[1,50],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1228083},
+{"pid":35295,"tid":1,"ts":1208875410195,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":367,"tdur":363,"tts":1230166},
+{"pid":35295,"tid":1,"ts":1208875410232,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1230201},
+{"pid":35295,"tid":1,"ts":1208875410544,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[5,2],\"JS_Execution\":[1,103],\"Map_SetPrototype\":[1,7],\"Map_TransitionToDataProperty\":[1,8],\"CompareIC_Miss\":[5,8],\"LoadIC_Miss\":[8,67],\"StoreIC_Miss\":[2,45],\"ToBooleanIC_Miss\":[4,4],\"CreateObjectLiteral\":[2,4],\"StringIndexOf\":[1,2],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"DateNow\":[1,2],\"GlobalEncodeURIComponent\":[1,2],\"NumberPrototypeToString\":[1,1],\"END\":[]}"},"tts":1230514},
+{"pid":35295,"tid":1,"ts":1208875410592,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":303,"tdur":301,"tts":1230561},
+{"pid":35295,"tid":1,"ts":1208875410619,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1230587},
+{"pid":35295,"tid":1,"ts":1208875410880,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,15],\"FunctionCallback\":[3,16],\"JS_Execution\":[1,75],\"KeyedLoadIC_Miss\":[1,3],\"LoadIC_Miss\":[3,43],\"LoadPropertyWithInterceptor\":[2,17],\"LoadPropertyWithInterceptorOnly\":[1,1],\"CreateObjectLiteral\":[34,19],\"GetProperty\":[16,3],\"DateNow\":[1,1],\"API_Array_New\":[2,14],\"API_Object_CreateDataProperty\":[32,15],\"END\":[]}"},"tts":1230850},
+{"pid":35295,"tid":1,"ts":1208875465974,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":232,"tdur":228,"tts":1234095},
+{"pid":35295,"tid":1,"ts":1208875466008,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1234127},
+{"pid":35295,"tid":1,"ts":1208875466189,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[3,2],\"JS_Execution\":[1,68],\"LoadIC_Miss\":[4,44],\"StoreIC_Miss\":[1,4],\"CreateObjectLiteral\":[2,3],\"FinalizeInstanceSize\":[1,3],\"StringIndexOf\":[1,1],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"DateNow\":[1,1],\"GlobalEncodeURIComponent\":[1,2],\"NumberPrototypeToString\":[1,1],\"END\":[]}"},"tts":1234309},
+{"pid":35295,"tid":1,"ts":1208875466232,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":173,"tdur":170,"tts":1234352},
+{"pid":35295,"tid":1,"ts":1208875466259,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1234377},
+{"pid":35295,"tid":1,"ts":1208875466392,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,6],\"JS_Execution\":[1,42],\"LoadPropertyWithInterceptor\":[2,7],\"LoadPropertyWithInterceptorOnly\":[1,2],\"CreateObjectLiteral\":[34,23],\"GetProperty\":[17,7],\"DateNow\":[1,1],\"API_Array_New\":[2,3],\"API_Object_CreateDataProperty\":[32,12],\"END\":[]}"},"tts":1234511},
+{"pid":35295,"tid":1,"ts":1208875607743,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":480,"tdur":477,"tts":1243316},
+{"pid":35295,"tid":1,"ts":1208875607757,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":461,"tdur":458,"tts":1243329},
+{"pid":35295,"tid":1,"ts":1208875607789,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1243360},
+{"pid":35295,"tid":1,"ts":1208875608202,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"CompileCodeLazy\":[1,49],\"CompileFullCode\":[1,86],\"FunctionCallback\":[1,34],\"JS_Execution\":[1,19],\"ParseLazy\":[1,123],\"BinaryOpIC_Miss\":[4,11],\"CompareIC_Miss\":[2,3],\"KeyedStoreIC_Miss\":[1,13],\"LoadGlobalIC_Miss\":[2,14],\"LoadIC_Miss\":[1,2],\"CompileLazy\":[1,4],\"HandleApiCall\":[1,1],\"DateNow\":[1,1],\"API_Persistent_New\":[3,0],\"END\":[]}"},"tts":1243774},
+{"pid":35295,"tid":1,"ts":1208875634560,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":325,"tdur":321,"tts":1245757},
+{"pid":35295,"tid":1,"ts":1208875634593,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1245788},
+{"pid":35295,"tid":1,"ts":1208875634871,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[5,9],\"FunctionCallback\":[2,118],\"JS_Execution\":[1,48],\"Map_TransitionToDataProperty\":[5,7],\"LoadGlobalIC_Slow\":[2,5],\"LoadIC_Miss\":[1,18],\"GetProperty\":[3,11],\"RegExpFlags\":[2,0],\"HandleApiCall\":[1,1],\"API_FunctionTemplate_GetFunction\":[1,2],\"API_Object_HasOwnProperty\":[1,1],\"API_String_NewFromOneByte\":[1,2],\"API_String_Write\":[4,3],\"END\":[]}"},"tts":1246066},
+{"pid":35295,"tid":1,"ts":1208875634910,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":127,"tdur":125,"tts":1246105},
+{"pid":35295,"tid":1,"ts":1208875634948,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1246143},
+{"pid":35295,"tid":1,"ts":1208875635026,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[3,1],\"JS_Execution\":[1,31],\"KeyedLoadIC_Miss\":[1,4],\"LoadIC_Miss\":[3,13],\"ToBooleanIC_Miss\":[1,3],\"Equal\":[1,0],\"END\":[]}"},"tts":1246221},
+{"pid":35295,"tid":1,"ts":1208875635055,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":468,"tdur":465,"tts":1246251},
+{"pid":35295,"tid":1,"ts":1208875635078,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1246273},
+{"pid":35295,"tid":1,"ts":1208875635507,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,9],\"CompileFullCode\":[1,33],\"JS_Execution\":[1,64],\"OptimizeCode\":[1,21],\"ParseLazy\":[1,75],\"RecompileSynchronous\":[1,122],\"KeyedLoadIC_Miss\":[1,4],\"LoadPropertyWithInterceptor\":[2,9],\"LoadPropertyWithInterceptorOnly\":[1,0],\"CompileOptimized_Concurrent\":[1,6],\"Interrupt\":[1,9],\"CreateObjectLiteral\":[34,27],\"GetProperty\":[16,2],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[32,8],\"END\":[]}"},"tts":1246703},
+{"pid":35295,"tid":1,"ts":1208875635545,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":115,"tdur":112,"tts":1246741},
+{"pid":35295,"tid":1,"ts":1208875635575,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1246770},
+{"pid":35295,"tid":1,"ts":1208875635649,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[2,2],\"JS_Execution\":[1,12],\"LoadIC_Miss\":[2,29],\"StringToLowerCase\":[1,1],\"StringEqual\":[1,2],\"API_Persistent_New\":[1,0],\"API_String_NewExternalOneByte\":[1,2],\"END\":[]}"},"tts":1246844},
+{"pid":35295,"tid":1,"ts":1208875635678,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":70,"tdur":67,"tts":1246874},
+{"pid":35295,"tid":1,"ts":1208875635705,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1246900},
+{"pid":35295,"tid":1,"ts":1208875635739,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[2,1],\"JS_Execution\":[1,5],\"LoadIC_Miss\":[2,9],\"END\":[]}"},"tts":1246934},
+{"pid":35295,"tid":1,"ts":1208875635869,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":333,"tdur":313,"tts":1247066},
+{"pid":35295,"tid":1,"ts":1208875635897,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1247092},
+{"pid":35295,"tid":1,"ts":1208875636186,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,19],\"Map_TransitionToDataProperty\":[1,1],\"RecompileSynchronous\":[1,187],\"LoadGlobalIC_Slow\":[1,4],\"StackGuard\":[1,39],\"GetProperty\":[1,1],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[2,1],\"API_Object_SetPrivate\":[1,3],\"API_String_NewFromUtf8\":[1,1],\"END\":[]}"},"tts":1247366},
+{"pid":35295,"tid":1,"ts":1208875636220,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":151,"tdur":148,"tts":1247400},
+{"pid":35295,"tid":1,"ts":1208875636246,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1247424},
+{"pid":35295,"tid":1,"ts":1208875636358,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"JS_Execution\":[1,63],\"LoadGlobalIC_Slow\":[1,2],\"LoadIC_Miss\":[1,4],\"CreateObjectLiteral\":[2,3],\"StringIndexOf\":[1,2],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"ArrayShift\":[1,4],\"DateNow\":[1,1],\"GlobalEncodeURIComponent\":[1,2],\"NumberPrototypeToString\":[1,2],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,1],\"END\":[]}"},"tts":1247537},
+{"pid":35295,"tid":1,"ts":1208875636390,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":97,"tdur":94,"tts":1247570},
+{"pid":35295,"tid":1,"ts":1208875636415,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1247593},
+{"pid":35295,"tid":1,"ts":1208875636475,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"JS_Execution\":[1,33],\"LoadGlobalIC_Slow\":[1,3],\"GetProperty\":[1,1],\"StringEqual\":[3,1],\"API_Object_Get\":[2,0],\"API_Object_HasOwnProperty\":[2,1],\"END\":[]}"},"tts":1247654},
+{"pid":35295,"tid":1,"ts":1208875636502,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":62,"tdur":60,"tts":1247682},
+{"pid":35295,"tid":1,"ts":1208875636524,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1247703},
+{"pid":35295,"tid":1,"ts":1208875636555,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,12],\"RegExpFlags\":[2,0],\"StringIndexOf\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1247734},
+{"pid":35295,"tid":1,"ts":1208875636578,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":94,"tdur":92,"tts":1247758},
+{"pid":35295,"tid":1,"ts":1208875636599,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1247778},
+{"pid":35295,"tid":1,"ts":1208875636662,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,6],\"Map_TransitionToDataProperty\":[2,2],\"UnwindAndFindExceptionHandler\":[1,2],\"PushCatchContext\":[1,0],\"JsonParse\":[1,30],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,1],\"END\":[]}"},"tts":1247841},
+{"pid":35295,"tid":1,"ts":1208875754137,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":243,"tdur":239,"tts":1254913},
+{"pid":35295,"tid":1,"ts":1208875754171,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1254945},
+{"pid":35295,"tid":1,"ts":1208875754362,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[5,6],\"FunctionCallback\":[1,81],\"JS_Execution\":[1,32],\"Map_TransitionToDataProperty\":[5,4],\"LoadGlobalIC_Slow\":[2,3],\"GetProperty\":[3,7],\"RegExpFlags\":[2,0],\"HandleApiCall\":[1,1],\"API_FunctionTemplate_GetFunction\":[1,1],\"API_Object_HasOwnProperty\":[1,0],\"API_String_NewFromOneByte\":[1,2],\"API_String_Write\":[4,2],\"END\":[]}"},"tts":1255136},
+{"pid":35295,"tid":1,"ts":1208875754402,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":75,"tdur":72,"tts":1255177},
+{"pid":35295,"tid":1,"ts":1208875754428,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1255201},
+{"pid":35295,"tid":1,"ts":1208875754467,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"JS_Execution\":[1,7],\"LoadIC_Miss\":[1,10],\"END\":[]}"},"tts":1255241},
+{"pid":35295,"tid":1,"ts":1208875754492,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":578,"tdur":576,"tts":1255267},
+{"pid":35295,"tid":1,"ts":1208875754514,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1255288},
+{"pid":35295,"tid":1,"ts":1208875755055,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,8],\"CompileFullCode\":[1,66],\"JS_Execution\":[1,49],\"OptimizeCode\":[1,25],\"ParseLazy\":[1,85],\"RecompileSynchronous\":[1,226],\"LoadPropertyWithInterceptor\":[2,7],\"LoadPropertyWithInterceptorOnly\":[1,0],\"CompileOptimized_Concurrent\":[1,5],\"Interrupt\":[1,7],\"CreateObjectLiteral\":[16,10],\"GetProperty\":[17,3],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[32,13],\"END\":[]}"},"tts":1255830},
+{"pid":35295,"tid":1,"ts":1208875755092,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":63,"tdur":60,"tts":1255867},
+{"pid":35295,"tid":1,"ts":1208875755118,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1255892},
+{"pid":35295,"tid":1,"ts":1208875755146,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,6],\"StringToLowerCase\":[1,1],\"StringEqual\":[1,2],\"END\":[]}"},"tts":1255920},
+{"pid":35295,"tid":1,"ts":1208875755170,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":46,"tdur":43,"tts":1255945},
+{"pid":35295,"tid":1,"ts":1208875755191,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1255965},
+{"pid":35295,"tid":1,"ts":1208875755207,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,1],\"END\":[]}"},"tts":1255981},
+{"pid":35295,"tid":1,"ts":1208875755371,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":83,"tdur":81,"tts":1256146},
+{"pid":35295,"tid":1,"ts":1208875755398,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1256172},
+{"pid":35295,"tid":1,"ts":1208875755443,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,12],\"Map_TransitionToDataProperty\":[1,1],\"LoadGlobalIC_Slow\":[1,2],\"GetProperty\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[1,2],\"API_String_NewFromUtf8\":[1,1],\"END\":[]}"},"tts":1256218},
+{"pid":35295,"tid":1,"ts":1208875755468,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":308,"tdur":306,"tts":1256243},
+{"pid":35295,"tid":1,"ts":1208875755489,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1256263},
+{"pid":35295,"tid":1,"ts":1208875755761,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"JS_Execution\":[1,53],\"RecompileSynchronous\":[1,132],\"LoadGlobalIC_Slow\":[1,2],\"StackGuard\":[1,42],\"CreateObjectLiteral\":[2,3],\"StringIndexOf\":[1,2],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"ArrayShift\":[1,3],\"DateNow\":[1,1],\"GlobalEncodeURIComponent\":[1,2],\"NumberPrototypeToString\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1256537},
+{"pid":35295,"tid":1,"ts":1208875755796,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":84,"tdur":81,"tts":1256572},
+{"pid":35295,"tid":1,"ts":1208875755821,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1256596},
+{"pid":35295,"tid":1,"ts":1208875755869,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,22],\"LoadGlobalIC_Slow\":[1,2],\"GetProperty\":[1,1],\"StringEqual\":[3,0],\"API_Object_Get\":[2,1],\"API_Object_HasOwnProperty\":[2,0],\"END\":[]}"},"tts":1256644},
+{"pid":35295,"tid":1,"ts":1208875755894,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":59,"tdur":57,"tts":1256669},
+{"pid":35295,"tid":1,"ts":1208875755915,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1256690},
+{"pid":35295,"tid":1,"ts":1208875755944,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,10],\"RegExpFlags\":[2,0],\"StringIndexOf\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1256719},
+{"pid":35295,"tid":1,"ts":1208875755967,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":133,"tdur":111,"tts":1256742},
+{"pid":35295,"tid":1,"ts":1208875755988,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1256762},
+{"pid":35295,"tid":1,"ts":1208875756088,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,6],\"Map_TransitionToDataProperty\":[2,1],\"UnwindAndFindExceptionHandler\":[1,1],\"PushCatchContext\":[1,1],\"JsonParse\":[1,68],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1256842},
+{"pid":35295,"tid":1,"ts":1208875833900,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":211,"tdur":206,"tts":1262103},
+{"pid":35295,"tid":1,"ts":1208875833945,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1262145},
+{"pid":35295,"tid":1,"ts":1208875834096,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,85],\"CreateObjectLiteral\":[2,5],\"StringIndexOf\":[1,1],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,1],\"DateNow\":[1,2],\"GlobalEncodeURIComponent\":[1,3],\"NumberPrototypeToString\":[1,1],\"END\":[]}"},"tts":1262297},
+{"pid":35295,"tid":1,"ts":1208875834136,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":185,"tdur":182,"tts":1262337},
+{"pid":35295,"tid":1,"ts":1208875834162,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1262361},
+{"pid":35295,"tid":1,"ts":1208875834308,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,12],\"JS_Execution\":[1,56],\"LoadPropertyWithInterceptor\":[2,9],\"LoadPropertyWithInterceptorOnly\":[1,0],\"CreateObjectLiteral\":[16,8],\"GetProperty\":[17,2],\"DateNow\":[1,1],\"API_Array_New\":[2,13],\"API_Object_CreateDataProperty\":[32,15],\"END\":[]}"},"tts":1262509},
+{"pid":35295,"tid":1,"ts":1208875858294,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":221,"tdur":217,"tts":1264202},
+{"pid":35295,"tid":1,"ts":1208875858307,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":203,"tdur":200,"tts":1264214},
+{"pid":35295,"tid":1,"ts":1208875858351,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1264257},
+{"pid":35295,"tid":1,"ts":1208875858496,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[1,31],\"JS_Execution\":[1,34],\"BinaryOpIC_Miss\":[1,6],\"LoadGlobalIC_Slow\":[1,7],\"LoadIC_Miss\":[1,10],\"NotifyStubFailure\":[1,1],\"HandleApiCall\":[1,3],\"DateNow\":[1,1],\"API_Persistent_New\":[3,2],\"END\":[]}"},"tts":1264403},
+{"pid":35295,"tid":1,"ts":1208875860654,"ph":"X","cat":"v8","name":"WindowProxy::initialize","args":{},"dur":7062,"tdur":7061,"tts":1266548},
+{"pid":35295,"tid":1,"ts":1208875860687,"ph":"B","cat":"v8","name":"V8.NewContext","args":{},"tts":1266578},
+{"pid":35295,"tid":1,"ts":1208875864951,"ph":"E","cat":"v8","name":"V8.NewContext","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[17,10],\"CompileCodeLazy\":[11,3],\"FunctionCallback\":[7,49],\"JS_Execution\":[3,217],\"Map_SetPrototype\":[101,81],\"Map_TransitionToDataProperty\":[58,189],\"PrototypeMap_TransitionToDataProperty\":[1,2],\"CallIC_Miss\":[1,2],\"KeyedLoadIC_Miss\":[29,41],\"KeyedStoreIC_Miss\":[34,198],\"LoadGlobalIC_Miss\":[10,30],\"LoadIC_Miss\":[31,124],\"StoreIC_Miss\":[10,48],\"ArraySpeciesConstructor\":[1,0],\"CompileLazy\":[11,19],\"NotifyStubFailure\":[10,4],\"CheckIsBootstrapping\":[1,0],\"ExportExperimentalFromRuntime\":[1,50],\"CreateObjectLiteral\":[2,21],\"CreateArrayLiteralStubBailout\":[10,24],\"KeyedGetProperty\":[6,5],\"CreateDataProperty\":[8,6],\"DeclareGlobals\":[1,4],\"NewClosure\":[1,7],\"NewClosure_Tenured\":[35,23],\"HandleApiCall\":[7,7],\"API_FunctionTemplate_New\":[1,0],\"API_Object_SetPrivate\":[7,8],\"API_ObjectTemplate_New\":[1,1],\"API_String_NewFromUtf8\":[7,4],\"API_String_WriteUtf8\":[7,4],\"END\":[]}"},"tts":1270847},
+{"pid":35295,"tid":1,"ts":1208875866037,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":71,"tdur":66,"tts":1271935},
+{"pid":35295,"tid":1,"ts":1208875866065,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1271960},
+{"pid":35295,"tid":1,"ts":1208875866100,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"Map_SetPrototype\":[1,1],\"Map_TransitionToAccessorProperty\":[1,1],\"END\":[]}"},"tts":1271995},
+{"pid":35295,"tid":1,"ts":1208875869318,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":921,"lineNumber":1,"url":"https://www.google.com/"}},"dur":1841,"tdur":1839,"tts":1275200},
+{"pid":35295,"tid":1,"ts":1208875869336,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1275215},
+{"pid":35295,"tid":1,"ts":1208875871145,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,111],\"CompileCode\":[63,223],\"CompileFullCode\":[8,218],\"Parse\":[1,1165],\"END\":[]}"},"tts":1277027},
+{"pid":35295,"tid":1,"ts":1208875871164,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":5633,"tdur":5601,"tts":1277045},
+{"pid":35295,"tid":1,"ts":1208875871179,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1277060},
+{"pid":35295,"tid":1,"ts":1208875871283,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":30,"tdur":27,"tts":1277166},
+{"pid":35295,"tid":1,"ts":1208875871289,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1277169},
+{"pid":35295,"tid":1,"ts":1208875871310,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1277190},
+{"pid":35295,"tid":1,"ts":1208875871628,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":13,"tdur":9,"tts":1277512},
+{"pid":35295,"tid":1,"ts":1208875871636,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1277516},
+{"pid":35295,"tid":1,"ts":1208875871639,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1277520},
+{"pid":35295,"tid":1,"ts":1208875871832,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":12,"tdur":9,"tts":1277715},
+{"pid":35295,"tid":1,"ts":1208875871838,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1277719},
+{"pid":35295,"tid":1,"ts":1208875871842,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1277722},
+{"pid":35295,"tid":1,"ts":1208875874401,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":35,"tdur":26,"tts":1280275},
+{"pid":35295,"tid":1,"ts":1208875874421,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1280288},
+{"pid":35295,"tid":1,"ts":1208875874431,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1280297},
+{"pid":35295,"tid":1,"ts":1208875876767,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[51,76],\"CompileCode\":[2,1],\"CompileCodeLazy\":[22,420],\"CompileFullCode\":[16,479],\"FunctionCallback\":[34,295],\"JS_Execution\":[1,364],\"Map_SetPrototype\":[467,118],\"Map_TransitionToAccessorProperty\":[160,261],\"Map_TransitionToDataProperty\":[280,477],\"ParseLazy\":[16,1322],\"PrototypeMap_TransitionToDataProperty\":[1,12],\"BinaryOpIC_Miss\":[4,9],\"CompareIC_Miss\":[15,53],\"KeyedLoadIC_Miss\":[20,42],\"KeyedStoreIC_Miss\":[31,205],\"LoadGlobalIC_Miss\":[18,43],\"LoadGlobalIC_Slow\":[9,6],\"LoadIC_Miss\":[142,310],\"StoreIC_Miss\":[64,95],\"ToBooleanIC_Miss\":[23,26],\"ArrayPush\":[4,11],\"CompileLazy\":[18,42],\"NotifyStubFailure\":[15,7],\"CreateRegExpLiteral\":[5,39],\"CreateObjectLiteral\":[39,90],\"CreateArrayLiteralStubBailout\":[11,22],\"HasProperty\":[2,2],\"NewObject\":[4,16],\"StringSplit\":[2,23],\"RegExpExec\":[4,117],\"RegExpFlags\":[8,0],\"NewClosure\":[5,17],\"NewClosure_Tenured\":[27,20],\"HandleApiCall\":[25,15],\"ArrayConcat\":[1,4],\"ArrayShift\":[6,8],\"DateConstructor_ConstructStub\":[1,2],\"API_External_New\":[24,12],\"API_Function_NewInstance\":[4,49],\"API_FunctionTemplate_GetFunction\":[6,303],\"API_Object_CreateDataProperty\":[7,11],\"API_Object_Get\":[6,4],\"API_Object_HasOwnProperty\":[25,7],\"API_Object_New\":[1,1],\"API_Object_SetPrivate\":[27,24],\"API_Object_SetPrototype\":[4,14],\"API_Persistent_New\":[38,12],\"API_String_NewFromOneByte\":[39,25],\"END\":[]}"},"tts":1282619},
+{"pid":35295,"tid":1,"ts":1208875883110,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":89,"tdur":83,"tts":1288969},
+{"pid":35295,"tid":1,"ts":1208875883140,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1288994},
+{"pid":35295,"tid":1,"ts":1208875883190,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"Map_SetPrototype\":[1,1],\"Map_TransitionToAccessorProperty\":[1,6],\"END\":[]}"},"tts":1289045},
+{"pid":35295,"tid":1,"ts":1208875883225,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":2127,"tdur":2126,"tts":1289080},
+{"pid":35295,"tid":1,"ts":1208875883255,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1289109},
+{"pid":35295,"tid":1,"ts":1208875884514,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":28,"tdur":21,"tts":1290375},
+{"pid":35295,"tid":1,"ts":1208875884529,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1290384},
+{"pid":35295,"tid":1,"ts":1208875884537,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1290392},
+{"pid":35295,"tid":1,"ts":1208875884774,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":26,"tdur":19,"tts":1290635},
+{"pid":35295,"tid":1,"ts":1208875884787,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1290643},
+{"pid":35295,"tid":1,"ts":1208875884794,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1290650},
+{"pid":35295,"tid":1,"ts":1208875885332,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[6,2],\"CompileCodeLazy\":[3,208],\"CompileFullCode\":[3,438],\"FunctionCallback\":[8,75],\"JS_Execution\":[1,96],\"Map_SetPrototype\":[37,21],\"Map_TransitionToAccessorProperty\":[4,4],\"Map_TransitionToDataProperty\":[20,46],\"ParseLazy\":[3,719],\"BinaryOpIC_Miss\":[1,3],\"CompareIC_Miss\":[10,14],\"KeyedLoadIC_Miss\":[3,7],\"LoadIC_Miss\":[50,125],\"StoreIC_Miss\":[28,90],\"ToBooleanIC_Miss\":[24,24],\"CompileLazy\":[3,18],\"NotifyStubFailure\":[1,1],\"CreateObjectLiteral\":[9,32],\"GetProperty\":[2,1],\"Equal\":[3,1],\"HandleApiCall\":[3,2],\"DateNow\":[1,2],\"API_Array_New\":[2,2],\"API_Function_NewInstance\":[2,25],\"API_FunctionTemplate_GetFunction\":[2,51],\"API_Object_CreateDataProperty\":[8,6],\"API_Object_Get\":[2,2],\"API_Object_SetPrototype\":[2,3],\"API_Persistent_New\":[6,3],\"API_String_NewFromOneByte\":[2,2],\"END\":[]}"},"tts":1291190},
+{"pid":35295,"tid":1,"ts":1208875885394,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":263,"tdur":259,"tts":1291252},
+{"pid":35295,"tid":1,"ts":1208875885423,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1291279},
+{"pid":35295,"tid":1,"ts":1208875885641,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[4,12],\"JS_Execution\":[1,30],\"Map_TransitionToDataProperty\":[1,0],\"LoadIC_Miss\":[18,90],\"StoreIC_Miss\":[7,21],\"ToBooleanIC_Miss\":[1,2],\"NotifyStubFailure\":[1,1],\"CreateObjectLiteral\":[9,13],\"GetProperty\":[4,1],\"Equal\":[3,1],\"HandleApiCall\":[1,1],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[8,5],\"API_Persistent_New\":[1,0],\"END\":[]}"},"tts":1291499},
+{"pid":35295,"tid":1,"ts":1208875885691,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":106,"tdur":103,"tts":1291548},
+{"pid":35295,"tid":1,"ts":1208875885717,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1291573},
+{"pid":35295,"tid":1,"ts":1208875885785,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"JS_Execution\":[1,21],\"CreateObjectLiteral\":[9,9],\"GetProperty\":[4,1],\"Equal\":[3,0],\"HandleApiCall\":[1,2],\"DateNow\":[1,1],\"API_Array_New\":[2,3],\"API_Object_CreateDataProperty\":[8,4],\"API_Persistent_New\":[1,0],\"END\":[]}"},"tts":1291641},
+{"pid":35295,"tid":1,"ts":1208875889792,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":3887,"lineNumber":10,"url":"https://www.google.com/"}},"dur":4314,"tdur":4292,"tts":1295654},
+{"pid":35295,"tid":1,"ts":1208875889825,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1295683},
+{"pid":35295,"tid":1,"ts":1208875894085,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,214],\"CompileCode\":[114,326],\"CompileFullCode\":[4,489],\"Parse\":[1,3119],\"END\":[]}"},"tts":1299927},
+{"pid":35295,"tid":1,"ts":1208875894113,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":7149,"tdur":7126,"tts":1299954},
+{"pid":35295,"tid":1,"ts":1208875894130,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1299971},
+{"pid":35295,"tid":1,"ts":1208875901235,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[73,56],\"AccessorNameSetterCallback\":[20,30],\"CompileCode\":[6,1],\"CompileCodeLazy\":[53,627],\"CompileFullCode\":[40,834],\"FunctionCallback\":[4,26],\"JS_Execution\":[1,839],\"Map_SetPrototype\":[290,57],\"Map_TransitionToDataProperty\":[224,546],\"ParseLazy\":[40,1286],\"PrototypeMap_TransitionToDataProperty\":[14,14],\"BinaryOpIC_Miss\":[10,46],\"CallIC_Miss\":[1,1],\"CompareIC_Miss\":[15,38],\"KeyedLoadIC_Miss\":[34,64],\"KeyedStoreIC_Miss\":[30,142],\"KeyedStoreIC_MissFromStubFailure\":[1,5],\"LoadGlobalIC_Miss\":[15,26],\"LoadGlobalIC_Slow\":[5,2],\"LoadIC_Miss\":[364,503],\"StoreCallbackProperty\":[16,4],\"StoreIC_Miss\":[192,482],\"ToBooleanIC_Miss\":[88,91],\"CompileLazy\":[33,99],\"NotifyStubFailure\":[9,3],\"CreateListFromArrayLike\":[71,48],\"Interrupt\":[1,10],\"CreateRegExpLiteral\":[3,32],\"CreateObjectLiteral\":[14,48],\"CreateArrayLiteral\":[1,19],\"CreateArrayLiteralStubBailout\":[6,11],\"GenerateRandomNumbers\":[1,7],\"GetProperty\":[147,41],\"KeyedGetProperty\":[346,199],\"SetProperty\":[122,152],\"DeleteProperty_Sloppy\":[2,2],\"HasProperty\":[76,50],\"NewObject\":[20,65],\"StringSplit\":[146,224],\"RegExpExec\":[2,67],\"RegExpFlags\":[4,0],\"DeclareGlobals\":[1,8],\"InitializeVarGlobal\":[1,1],\"NewClosure\":[2,22],\"NewClosure_Tenured\":[72,65],\"StringIndexOf\":[27,14],\"StringToLowerCase\":[2,3],\"TypedArrayGetLength\":[1,0],\"HandleApiCall\":[2,2],\"ArrayConcat\":[1,4],\"ArrayShift\":[320,98],\"FunctionPrototypeToString\":[1,4],\"API_Array_New\":[1,1],\"API_External_New\":[1,1],\"API_Object_CreateDataProperty\":[1,2],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[1,2],\"API_Persistent_New\":[1,1],\"API_String_NewFromOneByte\":[2,1],\"END\":[]}"},"tts":1307057},
+{"pid":35295,"tid":1,"ts":1208875902583,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":10233,"lineNumber":49,"url":"https://www.google.com/"}},"dur":187,"tdur":183,"tts":1308406},
+{"pid":35295,"tid":1,"ts":1208875902614,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1308435},
+{"pid":35295,"tid":1,"ts":1208875902752,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,18],\"CompileCode\":[1,14],\"CompileFullCode\":[1,22],\"Parse\":[1,26],\"END\":[]}"},"tts":1308574},
+{"pid":35295,"tid":1,"ts":1208875902776,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":85,"tdur":83,"tts":1308597},
+{"pid":35295,"tid":1,"ts":1208875902807,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1308628},
+{"pid":35295,"tid":1,"ts":1208875902849,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,3],\"LoadGlobalIC_Miss\":[1,5],\"LoadIC_Miss\":[2,6],\"ToBooleanIC_Miss\":[1,2],\"END\":[]}"},"tts":1308669},
+{"pid":35295,"tid":1,"ts":1208875902926,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":10337,"lineNumber":49,"url":"https://www.google.com/"}},"dur":223,"tdur":219,"tts":1308749},
+{"pid":35295,"tid":1,"ts":1208875902952,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1308772},
+{"pid":35295,"tid":1,"ts":1208875903133,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,14],\"CompileCode\":[2,25],\"CompileFullCode\":[2,54],\"Parse\":[1,53],\"END\":[]}"},"tts":1308955},
+{"pid":35295,"tid":1,"ts":1208875903154,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":2286,"tdur":2268,"tts":1308976},
+{"pid":35295,"tid":1,"ts":1208875903184,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1309004},
+{"pid":35295,"tid":1,"ts":1208875903267,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":38,"tdur":35,"tts":1309090},
+{"pid":35295,"tid":1,"ts":1208875903276,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1309096},
+{"pid":35295,"tid":1,"ts":1208875903284,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1309104},
+{"pid":35295,"tid":1,"ts":1208875903423,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":19,"tdur":15,"tts":1309246},
+{"pid":35295,"tid":1,"ts":1208875903431,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1309252},
+{"pid":35295,"tid":1,"ts":1208875903437,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1309258},
+{"pid":35295,"tid":1,"ts":1208875905429,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[4,1],\"FunctionCallback\":[8,1960],\"JS_Execution\":[1,8],\"Map_SetPrototype\":[42,18],\"Map_TransitionToAccessorProperty\":[26,53],\"Map_TransitionToDataProperty\":[6,17],\"BinaryOpIC_Miss\":[1,11],\"CompareIC_Miss\":[1,1],\"LoadGlobalIC_Miss\":[1,4],\"LoadIC_Miss\":[5,31],\"StoreIC_Miss\":[1,2],\"ToBooleanIC_Miss\":[3,7],\"NewClosure\":[1,3],\"HandleApiCall\":[1,2],\"API_Function_NewInstance\":[2,38],\"API_FunctionTemplate_GetFunction\":[2,55],\"API_Object_Get\":[2,1],\"API_Object_SetPrototype\":[2,4],\"API_Persistent_New\":[7,2],\"API_String_NewExternalOneByte\":[1,1],\"API_String_NewFromOneByte\":[2,2],\"API_String_Write\":[1,0],\"END\":[]}"},"tts":1311234},
+{"pid":35295,"tid":1,"ts":1208875909497,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":43,"tdur":39,"tts":1315307},
+{"pid":35295,"tid":1,"ts":1208875909513,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1315320},
+{"pid":35295,"tid":1,"ts":1208875909535,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,1],\"Map_SetPrototype\":[1,0],\"Map_TransitionToAccessorProperty\":[1,2],\"END\":[]}"},"tts":1315343},
+{"pid":35295,"tid":1,"ts":1208875909553,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":221,"tdur":219,"tts":1315361},
+{"pid":35295,"tid":1,"ts":1208875909567,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1315375},
+{"pid":35295,"tid":1,"ts":1208875909765,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[4,5],\"FunctionCallback\":[6,11],\"JS_Execution\":[1,32],\"Map_SetPrototype\":[2,1],\"Map_TransitionToDataProperty\":[2,2],\"KeyedLoadIC_Miss\":[1,1],\"LoadIC_Miss\":[16,80],\"StoreIC_Miss\":[4,26],\"ToBooleanIC_Miss\":[1,1],\"NotifyStubFailure\":[1,1],\"CreateObjectLiteral\":[11,8],\"GetProperty\":[4,0],\"HasProperty\":[1,1],\"Equal\":[3,1],\"HandleApiCall\":[2,2],\"DateNow\":[1,0],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[10,2],\"API_Persistent_New\":[1,1],\"END\":[]}"},"tts":1315573},
+{"pid":35295,"tid":1,"ts":1208875909786,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":75,"tdur":75,"tts":1315593},
+{"pid":35295,"tid":1,"ts":1208875909798,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1315605},
+{"pid":35295,"tid":1,"ts":1208875909853,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,16],\"KeyedLoadIC_Miss\":[1,1],\"LoadIC_Miss\":[5,13],\"LoadPropertyWithInterceptor\":[1,2],\"CreateObjectLiteral\":[11,2],\"GetProperty\":[4,1],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[10,2],\"END\":[]}"},"tts":1315661},
+{"pid":35295,"tid":1,"ts":1208875910020,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":39,"tdur":36,"tts":1315830},
+{"pid":35295,"tid":1,"ts":1208875910034,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1315842},
+{"pid":35295,"tid":1,"ts":1208875910055,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"Map_SetPrototype\":[1,1],\"Map_TransitionToAccessorProperty\":[1,1],\"END\":[]}"},"tts":1315863},
+{"pid":35295,"tid":1,"ts":1208875910069,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":92,"tdur":91,"tts":1315877},
+{"pid":35295,"tid":1,"ts":1208875910082,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1315890},
+{"pid":35295,"tid":1,"ts":1208875910154,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[4,6],\"JS_Execution\":[1,14],\"KeyedLoadIC_Miss\":[1,1],\"LoadIC_Miss\":[4,23],\"LoadPropertyWithInterceptor\":[1,1],\"ToBooleanIC_Miss\":[1,1],\"NotifyStubFailure\":[1,1],\"CreateObjectLiteral\":[9,4],\"GetProperty\":[3,0],\"DateNow\":[1,0],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[8,2],\"END\":[]}"},"tts":1315962},
+{"pid":35295,"tid":1,"ts":1208875911089,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":99,"tdur":97,"tts":1316747},
+{"pid":35295,"tid":1,"ts":1208875911110,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1316767},
+{"pid":35295,"tid":1,"ts":1208875911178,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[2,2],\"JS_Execution\":[1,25],\"KeyedLoadIC_Miss\":[1,3],\"CreateObjectLiteral\":[13,7],\"GetProperty\":[5,1],\"Equal\":[3,0],\"HandleApiCall\":[2,1],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[12,3],\"API_Persistent_New\":[2,0],\"END\":[]}"},"tts":1316836},
+{"pid":35295,"tid":1,"ts":1208875911208,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":72,"tdur":70,"tts":1316866},
+{"pid":35295,"tid":1,"ts":1208875911222,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1316879},
+{"pid":35295,"tid":1,"ts":1208875911272,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[2,1],\"JS_Execution\":[1,17],\"CreateObjectLiteral\":[13,7],\"GetProperty\":[6,2],\"Equal\":[3,0],\"HandleApiCall\":[2,1],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[12,2],\"API_Persistent_New\":[1,0],\"END\":[]}"},"tts":1316930},
+{"pid":35295,"tid":1,"ts":1208875911299,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":192,"tdur":192,"tts":1316956},
+{"pid":35295,"tid":1,"ts":1208875911311,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1316968},
+{"pid":35295,"tid":1,"ts":1208875911328,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":12,"tdur":10,"tts":1316986},
+{"pid":35295,"tid":1,"ts":1208875911332,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1316989},
+{"pid":35295,"tid":1,"ts":1208875911337,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1316994},
+{"pid":35295,"tid":1,"ts":1208875911370,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":9,"tdur":8,"tts":1317028},
+{"pid":35295,"tid":1,"ts":1208875911374,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317031},
+{"pid":35295,"tid":1,"ts":1208875911377,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1317034},
+{"pid":35295,"tid":1,"ts":1208875911482,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[2,0],\"FunctionCallback\":[9,3],\"JS_Execution\":[1,41],\"Map_SetPrototype\":[10,5],\"Map_TransitionToDataProperty\":[5,6],\"LoadIC_Miss\":[6,33],\"StoreIC_Miss\":[2,9],\"CreateObjectLiteral\":[23,8],\"GetProperty\":[11,3],\"Equal\":[3,1],\"HandleApiCall\":[7,3],\"DateNow\":[1,0],\"API_Array_New\":[2,2],\"API_Function_NewInstance\":[2,12],\"API_FunctionTemplate_GetFunction\":[1,15],\"API_Object_CreateDataProperty\":[22,4],\"API_Object_Get\":[1,0],\"API_Object_SetPrototype\":[1,1],\"API_Persistent_New\":[10,2],\"API_String_NewFromOneByte\":[1,2],\"END\":[]}"},"tts":1317139},
+{"pid":35295,"tid":1,"ts":1208875911576,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":408,"tdur":407,"tts":1317234},
+{"pid":35295,"tid":1,"ts":1208875911591,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317248},
+{"pid":35295,"tid":1,"ts":1208875911667,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":12,"tdur":9,"tts":1317326},
+{"pid":35295,"tid":1,"ts":1208875911673,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317330},
+{"pid":35295,"tid":1,"ts":1208875911676,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1317333},
+{"pid":35295,"tid":1,"ts":1208875911750,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":11,"tdur":9,"tts":1317408},
+{"pid":35295,"tid":1,"ts":1208875911755,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317412},
+{"pid":35295,"tid":1,"ts":1208875911758,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1317415},
+{"pid":35295,"tid":1,"ts":1208875911810,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":9,"tdur":8,"tts":1317468},
+{"pid":35295,"tid":1,"ts":1208875911814,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317471},
+{"pid":35295,"tid":1,"ts":1208875911817,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1317474},
+{"pid":35295,"tid":1,"ts":1208875911974,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[10,34],\"FunctionCallback\":[8,6],\"JS_Execution\":[1,68],\"Map_SetPrototype\":[91,15],\"Map_TransitionToAccessorProperty\":[58,62],\"Map_TransitionToDataProperty\":[18,24],\"LoadIC_Miss\":[9,39],\"StoreIC_Miss\":[3,12],\"CreateObjectLiteral\":[21,7],\"GetProperty\":[10,0],\"HasProperty\":[1,0],\"Equal\":[3,1],\"HandleApiCall\":[5,0],\"DateNow\":[1,0],\"API_Array_New\":[2,2],\"API_Function_NewInstance\":[3,15],\"API_FunctionTemplate_GetFunction\":[3,67],\"API_Object_CreateDataProperty\":[20,3],\"API_Object_Get\":[3,0],\"API_Object_SetPrototype\":[3,1],\"API_Persistent_New\":[11,2],\"API_String_NewFromOneByte\":[3,3],\"END\":[]}"},"tts":1317632},
+{"pid":35295,"tid":1,"ts":1208875912031,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":86,"tdur":85,"tts":1317675},
+{"pid":35295,"tid":1,"ts":1208875912148,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":65,"tdur":64,"tts":1317792},
+{"pid":35295,"tid":1,"ts":1208875912164,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317808},
+{"pid":35295,"tid":1,"ts":1208875912205,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,5],\"JS_Execution\":[1,1],\"LoadIC_Miss\":[1,5],\"ToBooleanIC_Miss\":[1,2],\"LoadLookupSlot\":[1,11],\"END\":[]}"},"tts":1317850},
+{"pid":35295,"tid":1,"ts":1208875912240,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":84,"tdur":84,"tts":1317884},
+{"pid":35295,"tid":1,"ts":1208875912253,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1317897},
+{"pid":35295,"tid":1,"ts":1208875912316,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[2,1],\"JS_Execution\":[1,21],\"LoadIC_Miss\":[4,6],\"CreateObjectLiteral\":[23,5],\"GetProperty\":[11,5],\"Equal\":[3,0],\"HandleApiCall\":[2,0],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[22,5],\"API_Persistent_New\":[2,0],\"END\":[]}"},"tts":1317961},
+{"pid":35295,"tid":1,"ts":1208875912340,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":94,"tdur":92,"tts":1317984},
+{"pid":35295,"tid":1,"ts":1208875912477,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":96,"tdur":93,"tts":1318123},
+{"pid":35295,"tid":1,"ts":1208875912507,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1318152},
+{"pid":35295,"tid":1,"ts":1208875912561,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[2,6],\"JS_Execution\":[1,2],\"LoadIC_Miss\":[1,6],\"ToBooleanIC_Miss\":[1,3],\"LoadLookupSlot\":[1,9],\"END\":[]}"},"tts":1318206},
+{"pid":35295,"tid":1,"ts":1208875912709,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":31287,"lineNumber":51,"url":"https://www.google.com/"}},"dur":181,"tdur":177,"tts":1318356},
+{"pid":35295,"tid":1,"ts":1208875912738,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1318383},
+{"pid":35295,"tid":1,"ts":1208875912873,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,18],\"CompileCode\":[1,13],\"CompileFullCode\":[1,35],\"Parse\":[1,23],\"END\":[]}"},"tts":1318519},
+{"pid":35295,"tid":1,"ts":1208875912896,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":327,"tdur":324,"tts":1318542},
+{"pid":35295,"tid":1,"ts":1208875912926,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1318571},
+{"pid":35295,"tid":1,"ts":1208875913204,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[2,1],\"CompileCodeLazy\":[2,39],\"CompileFullCode\":[2,38],\"JS_Execution\":[1,31],\"Map_SetPrototype\":[5,1],\"Map_TransitionToDataProperty\":[4,10],\"ParseLazy\":[2,71],\"CallIC_Miss\":[1,0],\"LoadGlobalIC_Miss\":[3,13],\"LoadIC_Miss\":[12,13],\"StoreIC_Miss\":[4,7],\"ToBooleanIC_Miss\":[3,5],\"ArrayPush\":[1,5],\"CompileLazy\":[1,2],\"NotifyStubFailure\":[1,1],\"NewObject\":[1,4],\"ArraySlice\":[1,2],\"END\":[]}"},"tts":1318851},
+{"pid":35295,"tid":1,"ts":1208875913923,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":34558,"lineNumber":51,"url":"https://www.google.com/"}},"dur":194,"tdur":189,"tts":1319572},
+{"pid":35295,"tid":1,"ts":1208875913966,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1319611},
+{"pid":35295,"tid":1,"ts":1208875914100,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,13],\"CompileCode\":[2,19],\"CompileFullCode\":[2,29],\"Parse\":[1,28],\"END\":[]}"},"tts":1319746},
+{"pid":35295,"tid":1,"ts":1208875914123,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":96,"tdur":93,"tts":1319770},
+{"pid":35295,"tid":1,"ts":1208875914154,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1319800},
+{"pid":35295,"tid":1,"ts":1208875914205,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,4],\"Map_SetPrototype\":[1,1],\"Map_TransitionToDataProperty\":[1,5],\"LoadGlobalIC_Miss\":[1,4],\"LoadIC_Miss\":[1,3],\"StoreIC_Miss\":[1,5],\"NewClosure\":[1,4],\"END\":[]}"},"tts":1319850},
+{"pid":35295,"tid":1,"ts":1208875917034,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":175,"tdur":171,"tts":1322684},
+{"pid":35295,"tid":1,"ts":1208875917069,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1322717},
+{"pid":35295,"tid":1,"ts":1208875917193,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[3,2],\"JS_Execution\":[1,41],\"CreateObjectLiteral\":[17,20],\"GetProperty\":[8,2],\"Equal\":[3,1],\"HandleApiCall\":[3,4],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[16,10],\"API_Persistent_New\":[3,0],\"END\":[]}"},"tts":1322841},
+{"pid":35295,"tid":1,"ts":1208875917368,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":34661,"lineNumber":51,"url":"https://www.google.com/"}},"dur":1070,"tdur":1067,"tts":1323018},
+{"pid":35295,"tid":1,"ts":1208875917397,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1323045},
+{"pid":35295,"tid":1,"ts":1208875918413,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,154],\"CompileCode\":[7,117],\"CompileFullCode\":[3,109],\"Parse\":[1,537],\"END\":[]}"},"tts":1324063},
+{"pid":35295,"tid":1,"ts":1208875918445,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":1141,"tdur":1139,"tts":1324095},
+{"pid":35295,"tid":1,"ts":1208875918477,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1324126},
+{"pid":35295,"tid":1,"ts":1208875919565,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[7,11],\"CompileCode\":[1,1],\"CompileCodeLazy\":[2,40],\"CompileFullCode\":[2,37],\"FunctionCallback\":[1,43],\"JS_Execution\":[1,66],\"Map_SetPrototype\":[227,28],\"Map_TransitionToDataProperty\":[249,412],\"ParseLazy\":[2,75],\"LoadGlobalIC_Miss\":[7,19],\"LoadGlobalIC_Slow\":[2,2],\"LoadIC_Miss\":[24,24],\"StoreIC_Miss\":[10,32],\"ToBooleanIC_Miss\":[8,9],\"ArrayPush\":[1,4],\"CompileLazy\":[2,6],\"NotifyStubFailure\":[3,1],\"CreateObjectLiteral\":[2,207],\"CreateArrayLiteralStubBailout\":[2,11],\"NewClosure\":[3,7],\"NewClosure_Tenured\":[2,4],\"HandleApiCall\":[1,2],\"DateConstructor_ConstructStub\":[1,3],\"API_Persistent_New\":[3,1],\"END\":[]}"},"tts":1325216},
+{"pid":35295,"tid":1,"ts":1208875920157,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":42,"lineNumber":52,"url":"https://www.google.com/"}},"dur":15630,"tdur":15620,"tts":1325809},
+{"pid":35295,"tid":1,"ts":1208875920187,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1325837},
+{"pid":35295,"tid":1,"ts":1208875935768,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,697],\"CompileCode\":[563,818],\"CompileFullCode\":[7,1576],\"Parse\":[1,12123],\"END\":[]}"},"tts":1341411},
+{"pid":35295,"tid":1,"ts":1208875935791,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":10915,"tdur":10727,"tts":1341434},
+{"pid":35295,"tid":1,"ts":1208875935808,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1341450},
+{"pid":35295,"tid":1,"ts":1208875938616,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":15,"tdur":11,"tts":1344264},
+{"pid":35295,"tid":1,"ts":1208875938624,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1344269},
+{"pid":35295,"tid":1,"ts":1208875938629,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1344273},
+{"pid":35295,"tid":1,"ts":1208875938685,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":11,"tdur":9,"tts":1344330},
+{"pid":35295,"tid":1,"ts":1208875938690,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1344334},
+{"pid":35295,"tid":1,"ts":1208875938693,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1344337},
+{"pid":35295,"tid":1,"ts":1208875942762,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":1090,"tdur":1040,"tts":1348315},
+{"pid":35295,"tid":1,"ts":1208875942774,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":13741088},"tts":1348326},
+{"pid":35295,"tid":1,"ts":1208875943843,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":13171480},"tts":1349349},
+{"pid":35295,"tid":1,"ts":1208875943951,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingStart","args":{},"dur":13,"tdur":12,"tts":1349406},
+{"pid":35295,"tid":1,"ts":1208875946565,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[214,96],\"AccessorNameSetterCallback\":[86,39],\"CompileCode\":[5,0],\"CompileCodeLazy\":[131,772],\"CompileFullCode\":[69,959],\"FunctionCallback\":[24,177],\"JS_Execution\":[1,1009],\"Map_SetPrototype\":[959,79],\"Map_TransitionToAccessorProperty\":[2,4],\"Map_TransitionToDataProperty\":[490,1024],\"ParseLazy\":[72,1523],\"PrototypeMap_TransitionToDataProperty\":[176,135],\"BinaryOpIC_Miss\":[43,126],\"CompareIC_Miss\":[31,36],\"KeyedLoadIC_Miss\":[71,77],\"KeyedStoreIC_Miss\":[79,276],\"KeyedStoreIC_MissFromStubFailure\":[1,3],\"LoadGlobalIC_Miss\":[13,20],\"LoadIC_Miss\":[1100,781],\"StoreCallbackProperty\":[86,12],\"StoreIC_Miss\":[683,1129],\"ToBooleanIC_Miss\":[121,97],\"ArrayPush\":[7,11],\"CompileLazy\":[63,72],\"NotifyStubFailure\":[48,17],\"ForInEnumerate\":[3,7],\"CreateListFromArrayLike\":[15,12],\"Interrupt\":[1,7],\"ThrowConstructedNonConstructable\":[3,114],\"UnwindAndFindExceptionHandler\":[3,3],\"CreateRegExpLiteral\":[21,84],\"CreateObjectLiteral\":[74,1290],\"CreateArrayLiteral\":[4,6],\"CreateArrayLiteralStubBailout\":[30,36],\"StringParseInt\":[1,2],\"NumberToStringSkipCache\":[2,0],\"GetProperty\":[32,7],\"KeyedGetProperty\":[50,8],\"SetProperty\":[10,10],\"DeleteProperty_Sloppy\":[4,2],\"HasProperty\":[26,14],\"NewObject\":[68,104],\"StringSplit\":[30,60],\"RegExpExec\":[4,132],\"RegExpFlags\":[10,0],\"NewClosure\":[1,56],\"NewClosure_Tenured\":[444,164],\"PushCatchContext\":[3,0],\"StringIndexOf\":[5,2],\"StringAdd\":[3,0],\"StringBuilderConcat\":[1,1],\"StringBuilderJoin\":[1,2],\"StringEqual\":[1,0],\"HandleApiCall\":[4,8],\"ArrayConcat\":[1,2],\"ArrayShift\":[50,18],\"ArraySlice\":[1,0],\"DateConstructor_ConstructStub\":[1,1],\"GlobalEncodeURIComponent\":[28,11],\"StringPrototypeTrim\":[2,1],\"API_External_New\":[3,2],\"API_Function_NewInstance\":[2,12],\"API_FunctionTemplate_GetFunction\":[3,42],\"API_Object_CreateDataProperty\":[1,1],\"API_Object_Get\":[5,2],\"API_Object_HasOwnProperty\":[5,0],\"API_Object_SetPrivate\":[5,6],\"API_Persistent_New\":[14,5],\"API_String_NewExternalOneByte\":[2,2],\"API_String_NewFromOneByte\":[10,8],\"API_String_Write\":[1,1],\"END\":[]}"},"tts":1352022},
+{"pid":35295,"tid":1,"ts":1208875950606,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":21,"tdur":19,"tts":1355994},
+{"pid":35295,"tid":1,"ts":1208875950617,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":13285528,"type":"weak processing"},"tts":1356005},
+{"pid":35295,"tid":1,"ts":1208875950623,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":13285528},"tts":1356011},
+{"pid":35295,"tid":1,"ts":1208875950687,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":83,"tdur":81,"tts":1356075},
+{"pid":35295,"tid":1,"ts":1208875950703,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1356091},
+{"pid":35295,"tid":1,"ts":1208875950758,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"JS_Execution\":[1,18],\"CreateObjectLiteral\":[11,4],\"GetProperty\":[5,4],\"Equal\":[3,0],\"HandleApiCall\":[1,2],\"DateNow\":[1,0],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[10,3],\"API_Persistent_New\":[1,0],\"END\":[]}"},"tts":1356146},
+{"pid":35295,"tid":1,"ts":1208875950834,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":23747,"lineNumber":278,"url":"https://www.google.com/"}},"dur":104,"tdur":102,"tts":1356223},
+{"pid":35295,"tid":1,"ts":1208875950848,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1356236},
+{"pid":35295,"tid":1,"ts":1208875950929,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,9],\"CompileCode\":[2,13],\"CompileFullCode\":[2,16],\"Parse\":[1,17],\"END\":[]}"},"tts":1356317},
+{"pid":35295,"tid":1,"ts":1208875950941,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":109,"tdur":107,"tts":1356329},
+{"pid":35295,"tid":1,"ts":1208875950956,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1356344},
+{"pid":35295,"tid":1,"ts":1208875951040,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,9],\"CompileFullCode\":[1,9],\"JS_Execution\":[1,12],\"ParseLazy\":[1,15],\"LoadGlobalIC_Miss\":[1,3],\"LoadIC_Miss\":[3,5],\"ArrayPush\":[1,2],\"CompileLazy\":[1,2],\"NotifyStubFailure\":[2,0],\"CreateArrayLiteralStubBailout\":[1,2],\"NewClosure\":[1,7],\"END\":[]}"},"tts":1356428},
+{"pid":35295,"tid":1,"ts":1208875951084,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/","data":{"columnNumber":42,"lineNumber":279,"url":"https://www.google.com/"}},"dur":245,"tdur":243,"tts":1356473},
+{"pid":35295,"tid":1,"ts":1208875951097,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1356485},
+{"pid":35295,"tid":1,"ts":1208875951318,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"Compile\":[1,11],\"CompileCode\":[4,29],\"CompileFullCode\":[2,61],\"Parse\":[1,86],\"END\":[]}"},"tts":1356707},
+{"pid":35295,"tid":1,"ts":1208875951333,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/"},"dur":527,"tdur":526,"tts":1356721},
+{"pid":35295,"tid":1,"ts":1208875951348,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1356736},
+{"pid":35295,"tid":1,"ts":1208875951472,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":13,"tdur":10,"tts":1356862},
+{"pid":35295,"tid":1,"ts":1208875951479,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1356867},
+{"pid":35295,"tid":1,"ts":1208875951483,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1356870},
+{"pid":35295,"tid":1,"ts":1208875951848,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[6,3],\"CompileCode\":[1,0],\"CompileCodeLazy\":[3,42],\"CompileFullCode\":[3,53],\"FunctionCallback\":[11,54],\"IndexedPropertyGetterCallback\":[2,2],\"JS_Execution\":[1,42],\"Map_SetPrototype\":[11,2],\"Map_TransitionToAccessorProperty\":[1,2],\"Map_TransitionToDataProperty\":[10,15],\"ParseLazy\":[3,76],\"BinaryOpIC_Miss\":[4,4],\"CompareIC_Miss\":[2,3],\"KeyedLoadIC_Miss\":[6,7],\"KeyedStoreIC_Miss\":[3,14],\"LoadElementWithInterceptor\":[1,0],\"LoadGlobalIC_Miss\":[5,6],\"LoadGlobalIC_Slow\":[1,3],\"LoadIC_Miss\":[58,66],\"StoreIC_Miss\":[7,16],\"ToBooleanIC_Miss\":[16,8],\"ArrayPush\":[1,2],\"CompileLazy\":[3,3],\"NotifyStubFailure\":[2,0],\"CreateObjectLiteral\":[3,8],\"CreateArrayLiteralStubBailout\":[1,1],\"NewClosure\":[1,4],\"HandleApiCall\":[3,2],\"DateConstructor_ConstructStub\":[2,2],\"API_External_New\":[1,0],\"API_Function_NewInstance\":[1,6],\"API_FunctionTemplate_GetFunction\":[1,21],\"API_Object_CreateDataProperty\":[1,1],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[1,0],\"API_Object_SetPrivate\":[1,1],\"API_Persistent_New\":[6,2],\"API_String_NewExternalOneByte\":[2,1],\"API_String_NewFromOneByte\":[2,2],\"END\":[]}"},"tts":1357237},
+{"pid":35295,"tid":1,"ts":1208875952028,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":275,"tdur":182,"tts":1357503},
+{"pid":35295,"tid":1,"ts":1208875952138,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1357521},
+{"pid":35295,"tid":1,"ts":1208875952294,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[2,26],\"CompileFullCode\":[2,23],\"JS_Execution\":[1,16],\"Map_SetPrototype\":[1,0],\"Map_TransitionToDataProperty\":[1,3],\"ParseLazy\":[2,35],\"KeyedLoadIC_Miss\":[1,1],\"KeyedStoreIC_Miss\":[2,11],\"LoadGlobalIC_Miss\":[2,3],\"LoadIC_Miss\":[7,6],\"StoreIC_Miss\":[1,1],\"ToBooleanIC_Miss\":[3,2],\"CompileLazy\":[2,2],\"NotifyStubFailure\":[1,0],\"CreateArrayLiteralStubBailout\":[1,2],\"ArrayShift\":[2,1],\"DateConstructor_ConstructStub\":[1,2],\"END\":[]}"},"tts":1357677},
+{"pid":35295,"tid":1,"ts":1208875952316,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":5921,"tdur":5825,"tts":1357699},
+{"pid":35295,"tid":1,"ts":1208875952329,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1357711},
+{"pid":35295,"tid":1,"ts":1208875954007,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":548,"tdur":447,"tts":1359392},
+{"pid":35295,"tid":1,"ts":1208875955453,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":16,"tdur":11,"tts":1360743},
+{"pid":35295,"tid":1,"ts":1208875955462,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1360748},
+{"pid":35295,"tid":1,"ts":1208875955466,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1360752},
+{"pid":35295,"tid":1,"ts":1208875955538,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":11,"tdur":8,"tts":1360826},
+{"pid":35295,"tid":1,"ts":1208875955543,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1360829},
+{"pid":35295,"tid":1,"ts":1208875955547,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1360832},
+{"pid":35295,"tid":1,"ts":1208875958210,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[20,22],\"CompileCode\":[6,1],\"CompileCodeLazy\":[49,532],\"CompileFullCode\":[48,701],\"FunctionCallback\":[49,1324],\"GenericNamedPropertyQueryCallback\":[1,1],\"GenericNamedPropertySetterCallback\":[4,33],\"JS_Execution\":[1,355],\"Map_SetPrototype\":[117,19],\"Map_TransitionToAccessorProperty\":[5,8],\"Map_TransitionToDataProperty\":[102,161],\"ParseLazy\":[48,1108],\"BinaryOpIC_Miss\":[17,52],\"CallIC_Miss\":[1,1],\"CompareIC_Miss\":[9,10],\"KeyedLoadIC_Miss\":[19,38],\"KeyedStoreIC_Miss\":[13,38],\"LoadGlobalIC_Miss\":[2,3],\"LoadIC_Miss\":[281,378],\"StoreIC_Miss\":[95,202],\"ToBooleanIC_Miss\":[58,54],\"ArrayPush\":[1,2],\"CompileLazy\":[39,72],\"NotifyStubFailure\":[5,3],\"CreateListFromArrayLike\":[7,7],\"CreateObjectLiteral\":[1,2],\"CreateArrayLiteral\":[1,5],\"CreateArrayLiteralStubBailout\":[3,5],\"StringParseInt\":[2,1],\"GetProperty\":[6,3],\"KeyedGetProperty\":[13,4],\"SetProperty\":[1,2],\"DeleteProperty_Sloppy\":[1,0],\"HasProperty\":[6,4],\"NewObject\":[10,586],\"StringSplit\":[6,15],\"StringEqual\":[1,1],\"HandleApiCall\":[24,16],\"ArrayConcat\":[1,1],\"ArrayShift\":[10,3],\"ArraySlice\":[1,1],\"API_External_New\":[2,0],\"API_Function_NewInstance\":[2,12],\"API_FunctionTemplate_GetFunction\":[2,48],\"API_Object_CreateDataProperty\":[1,1],\"API_Object_Get\":[2,1],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[2,1],\"API_Persistent_New\":[26,6],\"API_String_NewExternalOneByte\":[3,2],\"API_String_NewFromOneByte\":[4,3],\"API_String_Write\":[11,3],\"END\":[]}"},"tts":1363499},
+{"pid":35295,"tid":1,"ts":1208875958915,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":399,"tdur":398,"tts":1364204},
+{"pid":35295,"tid":1,"ts":1208875958921,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":391,"tdur":389,"tts":1364210},
+{"pid":35295,"tid":1,"ts":1208875958936,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1364224},
+{"pid":35295,"tid":1,"ts":1208875959057,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":13,"tdur":10,"tts":1364347},
+{"pid":35295,"tid":1,"ts":1208875959063,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1364351},
+{"pid":35295,"tid":1,"ts":1208875959067,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1364355},
+{"pid":35295,"tid":1,"ts":1208875959302,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[2,0],\"CompileCodeLazy\":[1,14],\"CompileFullCode\":[1,13],\"FunctionCallback\":[5,172],\"JS_Execution\":[1,7],\"Map_SetPrototype\":[19,7],\"Map_TransitionToAccessorProperty\":[10,11],\"Map_TransitionToDataProperty\":[3,4],\"ParseLazy\":[1,23],\"LoadGlobalIC_Miss\":[1,2],\"LoadIC_Miss\":[3,54],\"StoreIC_Miss\":[1,2],\"CompileLazy\":[1,2],\"HandleApiCall\":[3,2],\"API_Function_NewInstance\":[1,5],\"API_FunctionTemplate_GetFunction\":[1,24],\"API_Object_Get\":[1,0],\"API_Object_SetPrototype\":[1,2],\"API_Persistent_New\":[4,0],\"API_String_NewFromOneByte\":[1,1],\"END\":[]}"},"tts":1364591},
+{"pid":35295,"tid":1,"ts":1208875959600,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":167,"tdur":165,"tts":1364889},
+{"pid":35295,"tid":1,"ts":1208875959606,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":158,"tdur":157,"tts":1364895},
+{"pid":35295,"tid":1,"ts":1208875959620,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1364909},
+{"pid":35295,"tid":1,"ts":1208875959755,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"FunctionCallback\":[4,55],\"GenericNamedPropertySetterCallback\":[2,13],\"JS_Execution\":[1,7],\"LoadIC_Miss\":[11,35],\"StoreIC_Miss\":[2,4],\"END\":[]}"},"tts":1365044},
+{"pid":35295,"tid":1,"ts":1208875970156,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":2468,"tdur":2450,"tts":1368997},
+{"pid":35295,"tid":1,"ts":1208875970173,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":13454976},"tts":1369014},
+{"pid":35295,"tid":1,"ts":1208875972617,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":13405064},"tts":1371442},
+{"pid":35295,"tid":1,"ts":1208875972856,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":16,"tdur":15,"tts":1371533},
+{"pid":35295,"tid":1,"ts":1208875972864,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":13405064,"type":"weak processing"},"tts":1371541},
+{"pid":35295,"tid":1,"ts":1208875972869,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":13405064},"tts":1371545},
+{"pid":35295,"tid":1,"ts":1208875974594,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":116,"tdur":114,"tts":1373154},
+{"pid":35295,"tid":1,"ts":1208875974617,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1373176},
+{"pid":35295,"tid":1,"ts":1208875974701,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,14],\"CompileFullCode\":[1,21],\"JS_Execution\":[1,3],\"ParseLazy\":[1,17],\"CompileLazy\":[1,3],\"DeleteProperty_Sloppy\":[1,2],\"END\":[]}"},"tts":1373261},
+{"pid":35295,"tid":1,"ts":1208875974740,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":4777,"tdur":4779,"tts":1373298},
+{"pid":35295,"tid":1,"ts":1208875979519,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":5660,"tdur":5662,"tts":1378081},
+{"pid":35295,"tid":1,"ts":1208876004046,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":9733,"tdur":9724,"tts":1387232},
+{"pid":35295,"tid":1,"ts":1208876013783,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":4609,"tdur":4611,"tts":1396960},
+{"pid":35295,"tid":1,"ts":1208876019965,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/xjs/_/js/sdch=d/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sx,c,sb,cdos,cr,elog,jsa,r,hsm,qsm,j,p,d,csi/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=1/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA","data":{"columnNumber":1,"lineNumber":1,"url":"https://www.google.com/xjs/_/js/sdch=d/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sx,c,sb,cdos,cr,elog,jsa,r,hsm,qsm,j,p,d,csi/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=1/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA"}},"dur":17706,"tdur":17678,"tts":1403149},
+{"pid":35295,"tid":1,"ts":1208876019977,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":17636,"tdur":17612,"tts":1403158},
+{"pid":35295,"tid":1,"ts":1208876020835,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":210,"tdur":209,"tts":1404017},
+{"pid":35295,"tid":1,"ts":1208876030570,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":242,"tdur":240,"tts":1413747},
+{"pid":35295,"tid":1,"ts":1208876032733,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":35,"tdur":33,"tts":1415899},
+{"pid":35295,"tid":1,"ts":1208876037462,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":53,"tdur":51,"tts":1420620},
+{"pid":35295,"tid":1,"ts":1208876037682,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/xjs/_/js/sdch=d/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sx,c,sb,cdos,cr,elog,jsa,r,hsm,qsm,j,p,d,csi/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=1/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA"},"dur":109677,"tdur":107178,"tts":1420839},
+{"pid":35295,"tid":1,"ts":1208876037721,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1420878},
+{"pid":35295,"tid":1,"ts":1208876038027,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":18,"tdur":17,"tts":1421184},
+{"pid":35295,"tid":1,"ts":1208876038755,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingFinalize","args":{},"dur":1224,"tdur":1223,"tts":1421913},
+{"pid":35295,"tid":1,"ts":1208876038771,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":15064784,"type":"incremental marking"},"tts":1421930},
+{"pid":35295,"tid":1,"ts":1208876039972,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":15064784},"tts":1423132},
+{"pid":35295,"tid":1,"ts":1208876040830,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":74,"tdur":73,"tts":1423982},
+{"pid":35295,"tid":1,"ts":1208876044175,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":93,"tdur":91,"tts":1427318},
+{"pid":35295,"tid":1,"ts":1208876046962,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":92,"tdur":89,"tts":1430107},
+{"pid":35295,"tid":1,"ts":1208876047452,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":65,"tdur":64,"tts":1430596},
+{"pid":35295,"tid":1,"ts":1208876049361,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":78,"tdur":75,"tts":1432472},
+{"pid":35295,"tid":1,"ts":1208876050037,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":55,"tdur":53,"tts":1433147},
+{"pid":35295,"tid":1,"ts":1208876050615,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":63,"tdur":62,"tts":1433724},
+{"pid":35295,"tid":1,"ts":1208876051212,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":64,"tdur":62,"tts":1434322},
+{"pid":35295,"tid":1,"ts":1208876051760,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":147,"tdur":146,"tts":1434870},
+{"pid":35295,"tid":1,"ts":1208876052535,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":46,"tdur":45,"tts":1435638},
+{"pid":35295,"tid":1,"ts":1208876053190,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":59,"tdur":58,"tts":1436294},
+{"pid":35295,"tid":1,"ts":1208876053679,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":1677,"tdur":1678,"tts":1436783},
+{"pid":35295,"tid":1,"ts":1208876053686,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":16086440},"tts":1436791},
+{"pid":35295,"tid":1,"ts":1208876055350,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":15692696},"tts":1438456},
+{"pid":35295,"tid":1,"ts":1208876055818,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":142,"tdur":140,"tts":1438757},
+{"pid":35295,"tid":1,"ts":1208876056723,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":10,"tdur":9,"tts":1439652},
+{"pid":35295,"tid":1,"ts":1208876057656,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":436,"tdur":434,"tts":1440586},
+{"pid":35295,"tid":1,"ts":1208876059203,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":199,"tdur":197,"tts":1442134},
+{"pid":35295,"tid":1,"ts":1208876060688,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":15,"tdur":11,"tts":1443355},
+{"pid":35295,"tid":1,"ts":1208876060696,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1443359},
+{"pid":35295,"tid":1,"ts":1208876060700,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1443363},
+{"pid":35295,"tid":1,"ts":1208876061094,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":14,"tdur":10,"tts":1443761},
+{"pid":35295,"tid":1,"ts":1208876061101,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1443765},
+{"pid":35295,"tid":1,"ts":1208876061105,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1443768},
+{"pid":35295,"tid":1,"ts":1208876061576,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":149,"tdur":147,"tts":1444241},
+{"pid":35295,"tid":1,"ts":1208876064904,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":191,"tdur":189,"tts":1447561},
+{"pid":35295,"tid":1,"ts":1208876067431,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":159,"tdur":158,"tts":1450089},
+{"pid":35295,"tid":10,"ts":1208875962750,"ph":"X","cat":"v8,devtools.timeline","name":"v8.parseOnBackground","args":{"data":{"requestId":"35295.57","url":"https://www.google.com/xjs/_/js/sdch=d/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sx,c,sb,cdos,cr,elog,jsa,r,hsm,qsm,j,p,d,csi/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=1/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA"}},"dur":49514,"tdur":49303,"tts":128909},
+{"pid":35295,"tid":10,"ts":1208876154232,"ph":"X","cat":"v8,devtools.timeline","name":"v8.parseOnBackground","args":{"data":{"requestId":"35295.61","url":"https://www.google.com/xjs/_/js/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sy38,sy48,em2,em1,sy50,em0,sy283,aa,abd,sy74,sy73,sy72,sy75,em14,async,erh,sy77,foot,fpe,idck,ifl,ipv6,sy139,sy284,lu,m,sf,sy45,sy101,sy133,sy223,sy185,sy259,sy184,sy256,sy40,sy134,sy222,sy260,sy263,sy257,sy254,spch,vm/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=0/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA"}},"dur":12543,"tdur":12298,"tts":178277},
+{"pid":35295,"tid":10,"ts":1208877010851,"ph":"X","cat":"v8,devtools.timeline","name":"v8.parseOnBackground","args":{"data":{"requestId":"35295.65","url":"https://www.gstatic.com/og/_/js/k=og.og2.en_US.JpvILO1OBxk.O/rt=j/m=def/exm=in,fot/d=1/ed=1/rs=AA2YrTujEpXGqbTYowqUNLHJAPP37jkVNw"}},"dur":40,"tdur":21,"tts":190689},
+{"pid":35295,"tid":10,"ts":1208877041454,"ph":"X","cat":"v8,devtools.timeline","name":"v8.parseOnBackground","args":{"data":{"requestId":"35295.67","url":"https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.xej1Zm3gE0Y.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-sR4lSlZfnlntJ-N0rG1mLyBSreQ/cb=gapi.loaded_0"}},"dur":13151,"tdur":13038,"tts":190798},
+{"pid":35295,"tid":1,"ts":1208876068365,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":239,"tdur":237,"tts":1451012},
+{"pid":35295,"tid":1,"ts":1208876068610,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingFinalize","args":{},"dur":196,"tdur":196,"tts":1451256},
+{"pid":35295,"tid":1,"ts":1208876068617,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":16428880,"type":"incremental marking"},"tts":1451264},
+{"pid":35295,"tid":1,"ts":1208876068801,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":16428880},"tts":1451449},
+{"pid":35295,"tid":1,"ts":1208876070357,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":14,"tdur":10,"tts":1453008},
+{"pid":35295,"tid":1,"ts":1208876070365,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1453012},
+{"pid":35295,"tid":1,"ts":1208876070369,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1453016},
+{"pid":35295,"tid":1,"ts":1208876070795,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":104,"tdur":103,"tts":1453443},
+{"pid":35295,"tid":1,"ts":1208876070918,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingFinalize","args":{},"dur":99,"tdur":98,"tts":1453566},
+{"pid":35295,"tid":1,"ts":1208876070926,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":16565256,"type":"incremental marking"},"tts":1453574},
+{"pid":35295,"tid":1,"ts":1208876071011,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":16565256},"tts":1453661},
+{"pid":35295,"tid":1,"ts":1208876071900,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":8,"tdur":6,"tts":1454549},
+{"pid":35295,"tid":1,"ts":1208876072886,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":8,"tdur":6,"tts":1455527},
+{"pid":35295,"tid":1,"ts":1208876073973,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":136,"tdur":133,"tts":1456615},
+{"pid":35295,"tid":1,"ts":1208876074184,"ph":"X","cat":"v8","name":"V8.GCFinalizeMC","args":{},"dur":3196,"tdur":2514,"tts":1456825},
+{"pid":35295,"tid":1,"ts":1208876074192,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":16720360,"type":"atomic pause"},"tts":1456833},
+{"pid":35295,"tid":1,"ts":1208876077372,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":14100040},"tts":1459334},
+{"pid":35295,"tid":1,"ts":1208876078849,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":14,"tdur":10,"tts":1460315},
+{"pid":35295,"tid":1,"ts":1208876078857,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1460319},
+{"pid":35295,"tid":1,"ts":1208876078861,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1460323},
+{"pid":35295,"tid":1,"ts":1208876080857,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":16,"tdur":11,"tts":1462308},
+{"pid":35295,"tid":1,"ts":1208876080866,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1462313},
+{"pid":35295,"tid":1,"ts":1208876080870,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1462317},
+{"pid":35295,"tid":1,"ts":1208876081066,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":13,"tdur":10,"tts":1462516},
+{"pid":35295,"tid":1,"ts":1208876081073,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1462520},
+{"pid":35295,"tid":1,"ts":1208876081076,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1462524},
+{"pid":35295,"tid":1,"ts":1208876082018,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":12,"tdur":10,"tts":1463467},
+{"pid":35295,"tid":1,"ts":1208876089801,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":65,"tdur":63,"tts":1471234},
+{"pid":35295,"tid":1,"ts":1208876090086,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":14,"tdur":11,"tts":1471521},
+{"pid":35295,"tid":1,"ts":1208876090093,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1471526},
+{"pid":35295,"tid":1,"ts":1208876090097,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1471530},
+{"pid":35295,"tid":1,"ts":1208876094810,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":11,"tdur":9,"tts":1475994},
+{"pid":35295,"tid":1,"ts":1208876097309,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":15,"tdur":10,"tts":1478491},
+{"pid":35295,"tid":1,"ts":1208876097317,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1478495},
+{"pid":35295,"tid":1,"ts":1208876097321,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1478499},
+{"pid":35295,"tid":1,"ts":1208876117062,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":16,"tdur":11,"tts":1498207},
+{"pid":35295,"tid":1,"ts":1208876117071,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1498212},
+{"pid":35295,"tid":1,"ts":1208876117075,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1498216},
+{"pid":35295,"tid":1,"ts":1208876117625,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":1206,"tdur":1156,"tts":1498767},
+{"pid":35295,"tid":1,"ts":1208876117634,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":15933920},"tts":1498776},
+{"pid":35295,"tid":1,"ts":1208876118823,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":15422120},"tts":1499918},
+{"pid":35295,"tid":1,"ts":1208876132613,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":18,"tdur":14,"tts":1513275},
+{"pid":35295,"tid":1,"ts":1208876132623,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1513282},
+{"pid":35295,"tid":1,"ts":1208876132629,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1513287},
+{"pid":35295,"tid":1,"ts":1208876133803,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":19,"tdur":15,"tts":1514466},
+{"pid":35295,"tid":1,"ts":1208876133813,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1514472},
+{"pid":35295,"tid":1,"ts":1208876133820,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1514478},
+{"pid":35295,"tid":1,"ts":1208876133834,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":232,"tdur":231,"tts":1514494},
+{"pid":35295,"tid":1,"ts":1208876133844,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1514502},
+{"pid":35295,"tid":1,"ts":1208876134058,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1514718},
+{"pid":35295,"tid":1,"ts":1208876134082,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1530,"tdur":1530,"tts":1514741},
+{"pid":35295,"tid":1,"ts":1208876134087,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1514746},
+{"pid":35295,"tid":1,"ts":1208876135603,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1516265},
+{"pid":35295,"tid":1,"ts":1208876135645,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":83,"tdur":82,"tts":1516306},
+{"pid":35295,"tid":1,"ts":1208876135652,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1516312},
+{"pid":35295,"tid":1,"ts":1208876135722,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1516383},
+{"pid":35295,"tid":1,"ts":1208876146080,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1021,1956],\"AccessorNameSetterCallback\":[661,193],\"CompileCode\":[150,23],\"CompileCodeLazy\":[1075,11806],\"CompileEval\":[1,6],\"CompileFullCode\":[901,11495],\"DeoptimizeCode\":[1,24],\"FunctionCallback\":[623,9941],\"GenericNamedPropertyQueryCallback\":[67,51],\"GenericNamedPropertySetterCallback\":[79,316],\"IndexedPropertyGetterCallback\":[46,48],\"JS_Execution\":[12,11650],\"Map_SetPrototype\":[3445,405],\"Map_TransitionToAccessorProperty\":[115,119],\"Map_TransitionToDataProperty\":[2135,3367],\"Object_DeleteProperty\":[7,13],\"OptimizeCode\":[19,182],\"Parse\":[1,16],\"ParseLazy\":[913,16884],\"PrototypeMap_TransitionToDataProperty\":[827,887],\"RecompileSynchronous\":[38,2828],\"BinaryOpIC_Miss\":[266,807],\"CallIC_Miss\":[47,25],\"CompareIC_Miss\":[224,340],\"ElementsTransitionAndStoreIC_Miss\":[871,209],\"KeyedLoadIC_Miss\":[888,797],\"KeyedStoreIC_Miss\":[739,1344],\"KeyedStoreIC_MissFromStubFailure\":[5,27],\"LoadElementWithInterceptor\":[40,6],\"LoadGlobalIC_Miss\":[996,1009],\"LoadGlobalIC_Slow\":[50,32],\"LoadIC_Miss\":[4609,6028],\"LoadPropertyWithInterceptor\":[19,10],\"LoadPropertyWithInterceptorOnly\":[4,1],\"StoreCallbackProperty\":[646,74],\"StoreIC_Miss\":[4834,4392],\"TransitionStoreIC_MissFromStubFailure\":[2,12],\"ToBooleanIC_Miss\":[1062,719],\"RemoveArrayHoles\":[31,9],\"ArrayPush\":[80,73],\"ArraySpeciesConstructor\":[38,2],\"CompileLazy\":[792,1086],\"CompileOptimized_Concurrent\":[19,48],\"NotifyStubFailure\":[1125,236],\"NotifyDeoptimized\":[5,65],\"TryInstallOptimizedCode\":[5,97],\"ForInEnumerate\":[34,172],\"IsConstructor\":[1,0],\"AllocateInNewSpace\":[4,213],\"AllocateInTargetSpace\":[20,248],\"CreateListFromArrayLike\":[273,188],\"EnqueueMicrotask\":[1,0],\"Interrupt\":[48,99],\"StackGuard\":[21,5694],\"CreateRegExpLiteral\":[80,248],\"CreateObjectLiteral\":[442,720],\"CreateArrayLiteral\":[3,10],\"CreateArrayLiteralStubBailout\":[119,183],\"StringParseInt\":[4044,358],\"NumberToStringSkipCache\":[60,11],\"ObjectHasOwnProperty\":[112,59],\"InternalSetPrototype\":[1,1],\"GetProperty\":[299,55],\"KeyedGetProperty\":[282,78],\"SetProperty\":[1760,1244],\"DeleteProperty_Sloppy\":[773,82],\"HasProperty\":[139,59],\"NewObject\":[285,420],\"FinalizeInstanceSize\":[11,5],\"TryMigrateInstance\":[2,0],\"CreateDataProperty\":[130,34],\"Equal\":[6,1],\"StringReplaceGlobalRegExpWithString\":[8,9],\"StringSplit\":[2229,3868],\"RegExpExec\":[24,554],\"RegExpFlags\":[113,3],\"RegExpInitializeAndCompile\":[24,114],\"DeclareGlobals\":[1,1027],\"NewClosure\":[1542,741],\"NewClosure_Tenured\":[1172,373],\"StringIndexOf\":[122,50],\"StringLastIndexOf\":[7,3],\"StringAdd\":[25,15],\"StringBuilderConcat\":[4,39],\"StringBuilderJoin\":[17,22],\"StringToArray\":[4,1],\"StringToLowerCase\":[11,3],\"StringEqual\":[93,18],\"HandleApiCall\":[309,119],\"ArrayConcat\":[15,18],\"ArrayPop\":[93,13],\"ArrayShift\":[140,57],\"ArraySlice\":[20,15],\"ArraySplice\":[126,142],\"ArrayUnshift\":[66,13],\"DateConstructor_ConstructStub\":[5,7],\"DateNow\":[28,15],\"FunctionPrototypeToString\":[1,3],\"GlobalDecodeURI\":[2,4],\"GlobalDecodeURIComponent\":[9,6],\"GlobalEncodeURIComponent\":[5,6],\"JsonParse\":[7,15],\"JsonStringify\":[26,470],\"StringPrototypeTrim\":[6,1],\"API_Array_New\":[4,1],\"API_External_New\":[44,14],\"API_Function_Call\":[3,28],\"API_Function_New\":[1,2],\"API_Function_NewInstance\":[11,74],\"API_FunctionTemplate_GetFunction\":[18,251],\"API_Object_CreateDataProperty\":[76,27],\"API_Object_Get\":[27,8],\"API_Object_HasOwnProperty\":[60,14],\"API_Object_New\":[2,2],\"API_Object_SetPrivate\":[56,78],\"API_Object_SetPrototype\":[10,13],\"API_Object_ToString\":[3,1],\"API_Persistent_New\":[279,45],\"API_ScriptCompiler_CompileFunctionInContext\":[1,23],\"API_String_NewExternalOneByte\":[24,9],\"API_String_NewFromOneByte\":[80,36],\"API_String_Write\":[168,64],\"API_String_WriteUtf8\":[67,8],\"END\":[]}"},"tts":1526740},
+{"pid":35295,"tid":1,"ts":1208876147388,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":305,"tdur":304,"tts":1528048},
+{"pid":35295,"tid":1,"ts":1208876147406,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1528066},
+{"pid":35295,"tid":1,"ts":1208876147679,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,28],\"CompileFullCode\":[1,41],\"FunctionCallback\":[4,3],\"JS_Execution\":[1,44],\"Map_SetPrototype\":[1,0],\"Map_TransitionToDataProperty\":[1,2],\"ParseLazy\":[1,62],\"CallIC_Miss\":[1,0],\"CompareIC_Miss\":[1,2],\"KeyedLoadIC_Miss\":[2,2],\"LoadGlobalIC_Miss\":[1,2],\"LoadIC_Miss\":[14,24],\"StoreIC_Miss\":[1,7],\"ToBooleanIC_Miss\":[5,3],\"CompileLazy\":[1,1],\"NotifyStubFailure\":[1,0],\"Interrupt\":[2,5],\"CreateObjectLiteral\":[20,10],\"GetProperty\":[8,0],\"Equal\":[3,0],\"HandleApiCall\":[4,2],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[18,4],\"API_Persistent_New\":[3,0],\"END\":[]}"},"tts":1528341},
+{"pid":35295,"tid":1,"ts":1208876148074,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":96,"tdur":93,"tts":1528736},
+{"pid":35295,"tid":1,"ts":1208876148093,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1528754},
+{"pid":35295,"tid":1,"ts":1208876148161,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"JS_Execution\":[1,23],\"KeyedLoadIC_Miss\":[2,5],\"LoadIC_Miss\":[11,5],\"LoadPropertyWithInterceptor\":[1,1],\"CreateObjectLiteral\":[12,4],\"GetProperty\":[4,0],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[10,2],\"END\":[]}"},"tts":1528822},
+{"pid":35295,"tid":1,"ts":1208876148181,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":74,"tdur":73,"tts":1528842},
+{"pid":35295,"tid":1,"ts":1208876148193,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1528853},
+{"pid":35295,"tid":1,"ts":1208876148247,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"JS_Execution\":[1,17],\"KeyedLoadIC_Miss\":[2,3],\"LoadPropertyWithInterceptor\":[1,0],\"CreateObjectLiteral\":[12,8],\"GetProperty\":[4,0],\"Equal\":[3,1],\"DateNow\":[1,0],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[10,3],\"END\":[]}"},"tts":1528908},
+{"pid":35295,"tid":1,"ts":1208876148279,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":64,"tdur":63,"tts":1528940},
+{"pid":35295,"tid":1,"ts":1208876148292,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1528953},
+{"pid":35295,"tid":1,"ts":1208876148335,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"JS_Execution\":[1,20],\"KeyedLoadIC_Miss\":[1,2],\"LoadPropertyWithInterceptor\":[1,0],\"CreateObjectLiteral\":[14,2],\"GetProperty\":[6,1],\"Equal\":[3,0],\"DateNow\":[1,0],\"API_Array_New\":[2,0],\"API_Object_CreateDataProperty\":[12,2],\"END\":[]}"},"tts":1528996},
+{"pid":35295,"tid":1,"ts":1208876148352,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":56,"tdur":54,"tts":1529013},
+{"pid":35295,"tid":1,"ts":1208876148363,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1529024},
+{"pid":35295,"tid":1,"ts":1208876148401,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,16],\"LoadPropertyWithInterceptor\":[1,1],\"CreateObjectLiteral\":[14,4],\"GetProperty\":[7,1],\"Equal\":[3,0],\"DateNow\":[1,0],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[12,1],\"END\":[]}"},"tts":1529062},
+{"pid":35295,"tid":1,"ts":1208876148528,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":345,"tdur":343,"tts":1529190},
+{"pid":35295,"tid":1,"ts":1208876148544,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1529205},
+{"pid":35295,"tid":1,"ts":1208876148862,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[5,5],\"CompileCode\":[1,0],\"CompileCodeLazy\":[1,25],\"CompileFullCode\":[1,35],\"FunctionCallback\":[2,55],\"JS_Execution\":[1,27],\"Map_SetPrototype\":[2,1],\"Map_TransitionToDataProperty\":[7,9],\"ParseLazy\":[1,60],\"CompareIC_Miss\":[5,3],\"LoadGlobalIC_Miss\":[1,2],\"LoadGlobalIC_Slow\":[2,2],\"LoadIC_Miss\":[11,36],\"StoreIC_Miss\":[3,26],\"ToBooleanIC_Miss\":[10,5],\"CompileLazy\":[1,1],\"NotifyStubFailure\":[1,0],\"RegExpFlags\":[2,1],\"HandleApiCall\":[1,1],\"API_FunctionTemplate_GetFunction\":[1,0],\"API_Object_HasOwnProperty\":[1,1],\"API_String_NewFromOneByte\":[1,0],\"API_String_Write\":[4,1],\"END\":[]}"},"tts":1529524},
+{"pid":35295,"tid":1,"ts":1208876148890,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":222,"tdur":222,"tts":1529551},
+{"pid":35295,"tid":1,"ts":1208876148903,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1529564},
+{"pid":35295,"tid":1,"ts":1208876149103,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,39],\"CompileFullCode\":[1,45],\"FunctionCallback\":[2,1],\"JS_Execution\":[1,11],\"ParseLazy\":[1,60],\"CompareIC_Miss\":[2,3],\"KeyedLoadIC_Miss\":[2,1],\"KeyedStoreIC_Miss\":[1,5],\"LoadGlobalIC_Miss\":[1,3],\"LoadIC_Miss\":[4,4],\"ToBooleanIC_Miss\":[3,2],\"CompileLazy\":[1,2],\"NotifyStubFailure\":[1,1],\"CreateArrayLiteralStubBailout\":[1,3],\"Equal\":[1,0],\"END\":[]}"},"tts":1529765},
+{"pid":35295,"tid":1,"ts":1208876149127,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":158,"tdur":158,"tts":1529788},
+{"pid":35295,"tid":1,"ts":1208876149140,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1529801},
+{"pid":35295,"tid":1,"ts":1208876149276,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,21],\"FunctionCallback\":[4,14],\"JS_Execution\":[1,22],\"KeyedLoadIC_Miss\":[1,1],\"LoadIC_Miss\":[4,30],\"LoadPropertyWithInterceptor\":[2,7],\"LoadPropertyWithInterceptorOnly\":[1,1],\"CreateObjectLiteral\":[34,12],\"GetProperty\":[16,2],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[32,8],\"END\":[]}"},"tts":1529938},
+{"pid":35295,"tid":1,"ts":1208876149299,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":144,"tdur":143,"tts":1529960},
+{"pid":35295,"tid":1,"ts":1208876149311,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1529972},{"pid":35295,"tid":1,"ts":1208876149433,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,21],\"CompileFullCode\":[1,28],\"FunctionCallback\":[4,2],\"JS_Execution\":[1,6],\"ParseLazy\":[1,34],\"CompareIC_Miss\":[1,1],\"LoadIC_Miss\":[5,7],\"ToBooleanIC_Miss\":[1,2],\"CompileLazy\":[1,2],\"StringToLowerCase\":[1,0],\"StringEqual\":[1,1],\"END\":[]}"},"tts":1530095},
+{"pid":35295,"tid":1,"ts":1208876149521,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":21,"tdur":20,"tts":1530182},
+{"pid":35295,"tid":1,"ts":1208876149534,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":16146576,"type":"weak processing"},"tts":1530195},
+{"pid":35295,"tid":1,"ts":1208876149538,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":16146576},"tts":1530199},
+{"pid":35295,"tid":1,"ts":1208876149691,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":94,"tdur":92,"tts":1530354},
+{"pid":35295,"tid":1,"ts":1208876149708,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1530370},
+{"pid":35295,"tid":1,"ts":1208876149777,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"FunctionCallback\":[2,3],\"JS_Execution\":[1,9],\"Map_SetPrototype\":[1,1],\"Map_TransitionToDataProperty\":[1,3],\"LoadGlobalIC_Miss\":[1,2],\"LoadIC_Miss\":[6,16],\"StoreIC_Miss\":[2,15],\"ToBooleanIC_Miss\":[1,1],\"CreateObjectLiteral\":[1,1],\"END\":[]}"},"tts":1530439},
+{"pid":35295,"tid":1,"ts":1208876151108,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":118,"tdur":115,"tts":1531710},
+{"pid":35295,"tid":1,"ts":1208876151127,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1531727},
+{"pid":35295,"tid":1,"ts":1208876151215,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,1],\"JS_Execution\":[1,24],\"Map_TransitionToDataProperty\":[1,1],\"LoadIC_Miss\":[5,24],\"StoreIC_Miss\":[1,6],\"CreateObjectLiteral\":[10,5],\"GetProperty\":[5,0],\"Equal\":[3,0],\"HandleApiCall\":[1,1],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[8,2],\"API_Persistent_New\":[1,0],\"END\":[]}"},"tts":1531816},
+{"pid":35295,"tid":1,"ts":1208876151304,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":19,"tdur":17,"tts":1531905},
+{"pid":35295,"tid":1,"ts":1208876151315,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":16150312,"type":"weak processing"},"tts":1531916},
+{"pid":35295,"tid":1,"ts":1208876151319,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":16150312},"tts":1531920},
+{"pid":35295,"tid":1,"ts":1208876151377,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":154,"tdur":153,"tts":1531978},
+{"pid":35295,"tid":1,"ts":1208876151393,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1531994},
+{"pid":35295,"tid":1,"ts":1208876151522,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[5,3],\"FunctionCallback\":[2,58],\"JS_Execution\":[1,13],\"Map_TransitionToDataProperty\":[5,2],\"LoadGlobalIC_Slow\":[2,2],\"LoadIC_Miss\":[2,18],\"StoreIC_Miss\":[2,4],\"GetProperty\":[3,5],\"RegExpFlags\":[2,0],\"HandleApiCall\":[1,1],\"API_FunctionTemplate_GetFunction\":[1,1],\"API_Object_HasOwnProperty\":[1,0],\"API_String_NewFromOneByte\":[1,1],\"API_String_Write\":[4,0],\"END\":[]}"},"tts":1532123},
+{"pid":35295,"tid":1,"ts":1208876151547,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":53,"tdur":52,"tts":1532148},
+{"pid":35295,"tid":1,"ts":1208876151559,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1532159},
+{"pid":35295,"tid":1,"ts":1208876151594,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[2,1],\"JS_Execution\":[1,4],\"KeyedLoadIC_Miss\":[1,2],\"LoadIC_Miss\":[4,14],\"END\":[]}"},"tts":1532194},
+{"pid":35295,"tid":1,"ts":1208876151612,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":95,"tdur":93,"tts":1532213},
+{"pid":35295,"tid":1,"ts":1208876151623,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1532224},
+{"pid":35295,"tid":1,"ts":1208876151698,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,3],\"JS_Execution\":[1,23],\"LoadPropertyWithInterceptor\":[2,5],\"LoadPropertyWithInterceptorOnly\":[1,0],\"CreateObjectLiteral\":[34,7],\"GetProperty\":[17,4],\"DateNow\":[1,1],\"API_Array_New\":[2,8],\"API_Object_CreateDataProperty\":[32,9],\"END\":[]}"},"tts":1532299},
+{"pid":35295,"tid":1,"ts":1208876151718,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":57,"tdur":57,"tts":1532318},
+{"pid":35295,"tid":1,"ts":1208876151730,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1532330},
+{"pid":35295,"tid":1,"ts":1208876151769,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[4,2],\"JS_Execution\":[1,4],\"LoadIC_Miss\":[5,21],\"StringToLowerCase\":[1,1],\"StringEqual\":[1,0],\"END\":[]}"},"tts":1532370},
+{"pid":35295,"tid":1,"ts":1208876151935,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":37,"tdur":34,"tts":1532538},
+{"pid":35295,"tid":1,"ts":1208876151950,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1532550},
+{"pid":35295,"tid":1,"ts":1208876151968,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,1],\"Map_SetPrototype\":[1,0],\"Map_TransitionToAccessorProperty\":[1,2],\"END\":[]}"},"tts":1532569},
+{"pid":35295,"tid":1,"ts":1208876151984,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":210,"tdur":202,"tts":1532585},
+{"pid":35295,"tid":1,"ts":1208876151998,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1532598},
+{"pid":35295,"tid":1,"ts":1208876152185,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"CompileCodeLazy\":[1,27],\"CompileFullCode\":[1,33],\"FunctionCallback\":[3,8],\"JS_Execution\":[1,4],\"Map_SetPrototype\":[1,1],\"Map_TransitionToDataProperty\":[1,3],\"ParseLazy\":[1,49],\"CompareIC_Miss\":[1,12],\"LoadGlobalIC_Miss\":[1,2],\"LoadIC_Miss\":[4,8],\"ToBooleanIC_Miss\":[2,1],\"CompileLazy\":[1,1],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[1,1],\"API_String_NewFromUtf8\":[1,0],\"END\":[]}"},"tts":1532780},
+{"pid":35295,"tid":1,"ts":1208876152206,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1361,"tdur":1361,"tts":1532800},
+{"pid":35295,"tid":1,"ts":1208876152219,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1532812},
+{"pid":35295,"tid":1,"ts":1208876153557,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[9,9],\"CompileCodeLazy\":[14,236],\"CompileFullCode\":[14,262],\"FunctionCallback\":[6,60],\"JS_Execution\":[1,79],\"Map_SetPrototype\":[21,2],\"Map_TransitionToDataProperty\":[27,37],\"ParseLazy\":[14,367],\"BinaryOpIC_Miss\":[4,14],\"CallIC_Miss\":[2,2],\"CompareIC_Miss\":[7,14],\"KeyedLoadIC_Miss\":[6,10],\"KeyedStoreIC_Miss\":[7,23],\"LoadGlobalIC_Miss\":[11,16],\"LoadGlobalIC_Slow\":[2,1],\"LoadIC_Miss\":[70,89],\"StoreIC_Miss\":[19,21],\"ToBooleanIC_Miss\":[24,15],\"ArrayPush\":[1,2],\"CompileLazy\":[13,25],\"NotifyStubFailure\":[4,2],\"ForInEnumerate\":[1,2],\"CreateObjectLiteral\":[5,8],\"CreateArrayLiteralStubBailout\":[1,2],\"NewObject\":[1,7],\"StringIndexOf\":[1,1],\"StringAdd\":[1,0],\"StringToLowerCase\":[1,0],\"HandleApiCall\":[1,1],\"ArrayShift\":[1,2],\"DateNow\":[1,0],\"GlobalEncodeURIComponent\":[1,1],\"NumberPrototypeToString\":[1,1],\"API_FunctionTemplate_GetFunction\":[1,0],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,1],\"API_String_NewFromOneByte\":[1,1],\"API_String_Write\":[4,0],\"END\":[]}"},"tts":1534153},
+{"pid":35295,"tid":1,"ts":1208876153973,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":127,"tdur":125,"tts":1534569},
+{"pid":35295,"tid":1,"ts":1208876153980,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":117,"tdur":116,"tts":1534575},
+{"pid":35295,"tid":1,"ts":1208876153995,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1534590},
+{"pid":35295,"tid":1,"ts":1208876154088,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,25],\"CompileFullCode\":[1,17],\"JS_Execution\":[1,4],\"ParseLazy\":[1,21],\"LoadGlobalIC_Miss\":[2,3],\"ToBooleanIC_Miss\":[1,2],\"CompileLazy\":[1,1],\"END\":[]}"},"tts":1534684},
+{"pid":35295,"tid":1,"ts":1208876154239,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":76,"tdur":74,"tts":1534835},
+{"pid":35295,"tid":1,"ts":1208876154256,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1534851},
+{"pid":35295,"tid":1,"ts":1208876154308,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"FunctionCallback\":[3,5],\"JS_Execution\":[1,2],\"Map_TransitionToDataProperty\":[1,1],\"LoadGlobalIC_Slow\":[1,1],\"LoadIC_Miss\":[4,22],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[1,1],\"API_String_NewFromUtf8\":[1,0],\"END\":[]}"},"tts":1534903},
+{"pid":35295,"tid":1,"ts":1208876154325,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":284,"tdur":282,"tts":1534921},
+{"pid":35295,"tid":1,"ts":1208876154337,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1534932},
+{"pid":35295,"tid":1,"ts":1208876154600,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[8,8],\"FunctionCallback\":[6,62],\"JS_Execution\":[1,32],\"Map_TransitionToDataProperty\":[21,3],\"CallIC_Miss\":[2,1],\"KeyedLoadIC_Miss\":[2,1],\"KeyedStoreIC_Miss\":[2,4],\"LoadGlobalIC_Slow\":[3,3],\"LoadIC_Miss\":[54,66],\"StoreIC_Miss\":[18,49],\"ToBooleanIC_Miss\":[2,1],\"CreateObjectLiteral\":[2,3],\"StringIndexOf\":[1,0],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"HandleApiCall\":[1,1],\"ArrayShift\":[1,2],\"DateNow\":[1,0],\"GlobalEncodeURIComponent\":[1,1],\"NumberPrototypeToString\":[1,1],\"API_FunctionTemplate_GetFunction\":[1,0],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,1],\"API_String_NewFromOneByte\":[1,1],\"API_String_Write\":[4,2],\"END\":[]}"},"tts":1535196},
+{"pid":35295,"tid":1,"ts":1208876154979,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":88,"tdur":85,"tts":1535576},
+{"pid":35295,"tid":1,"ts":1208876154997,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1535592},
+{"pid":35295,"tid":1,"ts":1208876155058,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"JS_Execution\":[1,22],\"LoadPropertyWithInterceptor\":[1,1],\"CreateObjectLiteral\":[14,8],\"GetProperty\":[7,1],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[12,3],\"END\":[]}"},"tts":1535655},
+{"pid":35295,"tid":1,"ts":1208876155077,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":60,"tdur":59,"tts":1535673},
+{"pid":35295,"tid":1,"ts":1208876155089,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1535685},
+{"pid":35295,"tid":1,"ts":1208876155130,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,2],\"JS_Execution\":[1,15],\"LoadPropertyWithInterceptor\":[1,0],\"CreateObjectLiteral\":[14,6],\"GetProperty\":[7,1],\"Equal\":[3,0],\"DateNow\":[1,0],\"API_Array_New\":[2,0],\"API_Object_CreateDataProperty\":[12,3],\"END\":[]}"},"tts":1535726},
+{"pid":35295,"tid":1,"ts":1208876155161,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":71,"tdur":70,"tts":1535757},
+{"pid":35295,"tid":1,"ts":1208876155174,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1535770},
+{"pid":35295,"tid":1,"ts":1208876155225,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,4],\"JS_Execution\":[1,18],\"LoadPropertyWithInterceptor\":[2,3],\"LoadPropertyWithInterceptorOnly\":[1,0],\"CreateObjectLiteral\":[18,6],\"GetProperty\":[9,1],\"Equal\":[3,0],\"DateNow\":[1,0],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[16,3],\"END\":[]}"},"tts":1535821},
+{"pid":35295,"tid":1,"ts":1208876155242,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":69,"tdur":68,"tts":1535838},
+{"pid":35295,"tid":1,"ts":1208876155254,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1535850},
+{"pid":35295,"tid":1,"ts":1208876155304,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,2],\"JS_Execution\":[1,14],\"LoadPropertyWithInterceptor\":[2,4],\"LoadPropertyWithInterceptorOnly\":[1,0],\"CreateObjectLiteral\":[18,8],\"GetProperty\":[9,1],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[16,5],\"END\":[]}"},"tts":1535900},
+{"pid":35295,"tid":1,"ts":1208876155379,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":50,"tdur":48,"tts":1535976},
+{"pid":35295,"tid":1,"ts":1208876155394,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1535990},
+{"pid":35295,"tid":1,"ts":1208876155422,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,6],\"Map_TransitionToDataProperty\":[1,0],\"LoadGlobalIC_Slow\":[1,1],\"GetProperty\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,1],\"API_Object_SetPrivate\":[1,2],\"API_String_NewFromUtf8\":[1,1],\"END\":[]}"},"tts":1536018},
+{"pid":35295,"tid":1,"ts":1208876155438,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":94,"tdur":94,"tts":1536034},
+{"pid":35295,"tid":1,"ts":1208876155448,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1536044},
+{"pid":35295,"tid":1,"ts":1208876155524,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"FunctionCallback\":[2,0],\"JS_Execution\":[1,31],\"LoadGlobalIC_Slow\":[1,1],\"LoadIC_Miss\":[2,16],\"CreateObjectLiteral\":[2,2],\"StringIndexOf\":[1,1],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"ArrayShift\":[1,2],\"DateNow\":[1,1],\"GlobalEncodeURIComponent\":[1,1],\"NumberPrototypeToString\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,1],\"END\":[]}"},"tts":1536120},
+{"pid":35295,"tid":1,"ts":1208876155896,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":122,"tdur":120,"tts":1536493},
+{"pid":35295,"tid":1,"ts":1208876155914,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1536510},
+{"pid":35295,"tid":1,"ts":1208876156010,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,4],\"JS_Execution\":[1,33],\"KeyedLoadIC_Miss\":[1,3],\"LoadPropertyWithInterceptor\":[2,4],\"LoadPropertyWithInterceptorOnly\":[1,1],\"Interrupt\":[1,4],\"CreateObjectLiteral\":[34,8],\"GetProperty\":[16,1],\"Equal\":[3,0],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[32,8],\"END\":[]}"},"tts":1536606},
+{"pid":35295,"tid":1,"ts":1208876156033,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":409,"tdur":407,"tts":1536630},
+{"pid":35295,"tid":1,"ts":1208876156046,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1536642},
+{"pid":35295,"tid":1,"ts":1208876156433,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[9,5],\"CompileCode\":[1,0],\"CompileCodeLazy\":[7,58],\"CompileFullCode\":[5,72],\"FunctionCallback\":[3,57],\"JS_Execution\":[1,37],\"Map_TransitionToDataProperty\":[5,2],\"ParseLazy\":[5,68],\"KeyedLoadIC_Miss\":[2,1],\"LoadGlobalIC_Miss\":[2,4],\"LoadGlobalIC_Slow\":[2,3],\"LoadIC_Miss\":[20,29],\"StoreIC_Miss\":[2,6],\"ToBooleanIC_Miss\":[5,4],\"CompileLazy\":[7,6],\"CreateObjectLiteral\":[1,2],\"GetProperty\":[3,2],\"RegExpFlags\":[4,0],\"StringIndexOf\":[1,1],\"HandleApiCall\":[1,1],\"ArraySplice\":[1,3],\"API_FunctionTemplate_GetFunction\":[1,0],\"API_Object_HasOwnProperty\":[1,1],\"API_Persistent_New\":[1,0],\"API_String_NewExternalOneByte\":[1,0],\"API_String_NewFromOneByte\":[1,1],\"API_String_Write\":[5,3],\"END\":[]}"},"tts":1537030},
+{"pid":35295,"tid":1,"ts":1208876156473,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":104,"tdur":102,"tts":1537070},
+{"pid":35295,"tid":1,"ts":1208876156487,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1537084},
+{"pid":35295,"tid":1,"ts":1208876156569,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,4],\"JS_Execution\":[1,29],\"KeyedLoadIC_Miss\":[1,2],\"LoadPropertyWithInterceptor\":[2,4],\"LoadPropertyWithInterceptorOnly\":[1,1],\"Interrupt\":[1,3],\"CreateObjectLiteral\":[34,14],\"GetProperty\":[16,1],\"Equal\":[3,1],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[32,4],\"END\":[]}"},"tts":1537166},
+{"pid":35295,"tid":1,"ts":1208876156658,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1319,"tdur":1317,"tts":1537256},
+{"pid":35295,"tid":1,"ts":1208876156674,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1537270},
+{"pid":35295,"tid":1,"ts":1208876157965,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,3],\"CompileCodeLazy\":[15,235],\"CompileFullCode\":[15,261],\"FunctionCallback\":[6,14],\"JS_Execution\":[1,75],\"Map_SetPrototype\":[98,6],\"Map_TransitionToDataProperty\":[29,36],\"ParseLazy\":[15,379],\"BinaryOpIC_Miss\":[1,2],\"CompareIC_Miss\":[8,7],\"KeyedLoadIC_Miss\":[4,7],\"KeyedStoreIC_Miss\":[1,3],\"LoadGlobalIC_Miss\":[16,18],\"LoadIC_Miss\":[79,63],\"StoreIC_Miss\":[52,106],\"ToBooleanIC_Miss\":[38,17],\"CompileLazy\":[13,17],\"NumberToStringSkipCache\":[1,1],\"KeyedGetProperty\":[4,4],\"SetProperty\":[1,2],\"NewObject\":[2,5],\"Equal\":[2,0],\"StringEqual\":[3,0],\"HandleApiCall\":[1,1],\"ArrayConcat\":[2,3],\"API_Persistent_New\":[2,1],\"API_String_NewExternalOneByte\":[2,0],\"END\":[]}"},"tts":1538564},
+{"pid":35295,"tid":1,"ts":1208876158101,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":53,"tdur":51,"tts":1538700},
+{"pid":35295,"tid":1,"ts":1208876158118,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1538715},
+{"pid":35295,"tid":1,"ts":1208876158147,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"JS_Execution\":[1,7],\"Map_TransitionToDataProperty\":[1,0],\"LoadGlobalIC_Slow\":[1,2],\"GetProperty\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,1],\"API_Object_SetPrivate\":[1,2],\"API_String_NewFromUtf8\":[1,0],\"END\":[]}"},"tts":1538745},
+{"pid":35295,"tid":1,"ts":1208876158163,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":83,"tdur":81,"tts":1538761},
+{"pid":35295,"tid":1,"ts":1208876158175,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1538772},
+{"pid":35295,"tid":1,"ts":1208876158237,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,26],\"LoadGlobalIC_Slow\":[1,1],\"LoadIC_Miss\":[1,11],\"CreateObjectLiteral\":[1,1],\"StringIndexOf\":[1,1],\"StringAdd\":[1,1],\"StringToLowerCase\":[1,0],\"ArrayShift\":[1,2],\"DateNow\":[1,1],\"GlobalEncodeURIComponent\":[1,1],\"NumberPrototypeToString\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1538835},
+{"pid":35295,"tid":1,"ts":1208876158278,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":42,"tdur":40,"tts":1538877},
+{"pid":35295,"tid":1,"ts":1208876158291,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1538889},
+{"pid":35295,"tid":1,"ts":1208876158314,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"JS_Execution\":[1,4],\"Map_TransitionToDataProperty\":[1,0],\"LoadGlobalIC_Slow\":[1,2],\"GetProperty\":[1,1],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[1,2],\"API_String_NewFromUtf8\":[1,1],\"END\":[]}"},"tts":1538912},
+{"pid":35295,"tid":1,"ts":1208876158328,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":28,"tdur":27,"tts":1538926},
+{"pid":35295,"tid":1,"ts":1208876158339,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1538936},
+{"pid":35295,"tid":1,"ts":1208876158352,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,1],\"LoadGlobalIC_Slow\":[1,0],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1538949},
+{"pid":35295,"tid":1,"ts":1208876158398,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":40,"tdur":38,"tts":1538997},
+{"pid":35295,"tid":1,"ts":1208876158411,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1539009},
+{"pid":35295,"tid":1,"ts":1208876158432,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,1],\"JS_Execution\":[1,5],\"Map_TransitionToDataProperty\":[1,0],\"LoadGlobalIC_Slow\":[1,0],\"GetProperty\":[1,0],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[2,0],\"API_Object_SetPrivate\":[1,2],\"API_String_NewFromUtf8\":[1,1],\"END\":[]}"},"tts":1539030},
+{"pid":35295,"tid":1,"ts":1208876158447,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":27,"tdur":26,"tts":1539045},
+{"pid":35295,"tid":1,"ts":1208876158457,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1539055},
+{"pid":35295,"tid":1,"ts":1208876158469,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"JS_Execution\":[1,1],\"LoadGlobalIC_Slow\":[1,1],\"API_Object_Get\":[1,1],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1539067},
+{"pid":35295,"tid":1,"ts":1208876159151,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":1690,"tdur":1588,"tts":1539181},
+{"pid":35295,"tid":1,"ts":1208876159162,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":16292424},"tts":1539192},
+{"pid":35295,"tid":1,"ts":1208876160830,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":16093680},"tts":1540761},
+{"pid":35295,"tid":1,"ts":1208876160990,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":24,"tdur":23,"tts":1540870},
+{"pid":35295,"tid":1,"ts":1208876161002,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":16093680,"type":"weak processing"},"tts":1540882},
+{"pid":35295,"tid":1,"ts":1208876161009,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":16093680},"tts":1540889},
+{"pid":35295,"tid":1,"ts":1208876167358,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.google.com/xjs/_/js/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sy38,sy48,em2,em1,sy50,em0,sy283,aa,abd,sy74,sy73,sy72,sy75,em14,async,erh,sy77,foot,fpe,idck,ifl,ipv6,sy139,sy284,lu,m,sf,sy45,sy101,sy133,sy223,sy185,sy259,sy184,sy256,sy40,sy134,sy222,sy260,sy263,sy257,sy254,spch,vm/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=0/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA","data":{"columnNumber":1,"lineNumber":1,"url":"https://www.google.com/xjs/_/js/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sy38,sy48,em2,em1,sy50,em0,sy283,aa,abd,sy74,sy73,sy72,sy75,em14,async,erh,sy77,foot,fpe,idck,ifl,ipv6,sy139,sy284,lu,m,sf,sy45,sy101,sy133,sy223,sy185,sy259,sy184,sy256,sy40,sy134,sy222,sy260,sy263,sy257,sy254,spch,vm/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=0/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA"}},"dur":4199,"tdur":4187,"tts":1541508},
+{"pid":35295,"tid":1,"ts":1208876167369,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":4147,"tdur":4137,"tts":1541517},
+{"pid":35295,"tid":1,"ts":1208876171564,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.google.com/xjs/_/js/k=xjs.s.en_US.mV4xP6Jgifs.O/m=sy38,sy48,em2,em1,sy50,em0,sy283,aa,abd,sy74,sy73,sy72,sy75,em14,async,erh,sy77,foot,fpe,idck,ifl,ipv6,sy139,sy284,lu,m,sf,sy45,sy101,sy133,sy223,sy185,sy259,sy184,sy256,sy40,sy134,sy222,sy260,sy263,sy257,sy254,spch,vm/am=AFDSLBiI-P8ISLcQLEgNWBgF/rt=j/d=0/t=zcms/rs=ACT90oGpxA_78tJ0jZ7SEIgKSVy-CxqYYA"},"dur":39695,"tdur":39431,"tts":1545705},
+{"pid":35295,"tid":1,"ts":1208876171595,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1545734},
+{"pid":35295,"tid":1,"ts":1208876180340,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":16,"tdur":11,"tts":1554476},
+{"pid":35295,"tid":1,"ts":1208876180349,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1554481},
+{"pid":35295,"tid":1,"ts":1208876180353,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1554485},
+{"pid":35295,"tid":1,"ts":1208876190226,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1564365},
+{"pid":35295,"tid":1,"ts":1208876190678,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1564818},
+{"pid":35295,"tid":1,"ts":1208876190688,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1564826},
+{"pid":35295,"tid":1,"ts":1208876190694,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1564832},
+{"pid":35295,"tid":1,"ts":1208876190783,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":15048,"tdur":15043,"tts":1564922},
+{"pid":35295,"tid":1,"ts":1208876190798,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1564937},
+{"pid":35295,"tid":1,"ts":1208876190818,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1564957},
+{"pid":35295,"tid":1,"ts":1208876191783,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1565924},
+{"pid":35295,"tid":1,"ts":1208876191793,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1565932},
+{"pid":35295,"tid":1,"ts":1208876191801,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1565940},
+{"pid":35295,"tid":1,"ts":1208876191871,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":5305,"tdur":5300,"tts":1566011},
+{"pid":35295,"tid":1,"ts":1208876191879,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1566018},
+{"pid":35295,"tid":1,"ts":1208876191898,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1566037},
+{"pid":35295,"tid":1,"ts":1208876192756,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1566890},
+{"pid":35295,"tid":1,"ts":1208876192766,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1566899},
+{"pid":35295,"tid":1,"ts":1208876192773,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1566906},
+{"pid":35295,"tid":1,"ts":1208876192840,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":3965,"tdur":3966,"tts":1566974},
+{"pid":35295,"tid":1,"ts":1208876192848,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1566981},
+{"pid":35295,"tid":1,"ts":1208876192865,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1566999},
+{"pid":35295,"tid":1,"ts":1208876193068,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1567202},
+{"pid":35295,"tid":1,"ts":1208876193077,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1567210},
+{"pid":35295,"tid":1,"ts":1208876193081,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1567215},
+{"pid":35295,"tid":1,"ts":1208876193138,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":33,"tdur":31,"tts":1567273},
+{"pid":35295,"tid":1,"ts":1208876193146,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1567279},
+{"pid":35295,"tid":1,"ts":1208876193167,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1567301},
+{"pid":35295,"tid":1,"ts":1208876193244,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1567378},
+{"pid":35295,"tid":1,"ts":1208876193534,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1567669},
+{"pid":35295,"tid":1,"ts":1208876193542,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1567676},
+{"pid":35295,"tid":1,"ts":1208876193548,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1567681},
+{"pid":35295,"tid":1,"ts":1208876193609,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":2665,"tdur":2664,"tts":1567744},
+{"pid":35295,"tid":1,"ts":1208876193617,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1567750},
+{"pid":35295,"tid":1,"ts":1208876193637,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1567771},
+{"pid":35295,"tid":1,"ts":1208876193895,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1568029},
+{"pid":35295,"tid":1,"ts":1208876193903,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1568037},
+{"pid":35295,"tid":1,"ts":1208876193908,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1568042},
+{"pid":35295,"tid":1,"ts":1208876193963,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":66,"tdur":65,"tts":1568097},
+{"pid":35295,"tid":1,"ts":1208876193970,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1568104},
+{"pid":35295,"tid":1,"ts":1208876194024,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1568158},
+{"pid":35295,"tid":1,"ts":1208876194058,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1568192},
+{"pid":35295,"tid":1,"ts":1208876194407,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1568543},
+{"pid":35295,"tid":1,"ts":1208876194416,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1568550},
+{"pid":35295,"tid":1,"ts":1208876194421,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1568555},
+{"pid":35295,"tid":1,"ts":1208876194475,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1774,"tdur":1773,"tts":1568610},
+{"pid":35295,"tid":1,"ts":1208876194482,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1568617},
+{"pid":35295,"tid":1,"ts":1208876194499,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1568633},
+{"pid":35295,"tid":1,"ts":1208876195272,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1569407},
+{"pid":35295,"tid":1,"ts":1208876195282,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1569416},
+{"pid":35295,"tid":1,"ts":1208876195288,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1569423},
+{"pid":35295,"tid":1,"ts":1208876195345,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":823,"tdur":823,"tts":1569480},
+{"pid":35295,"tid":1,"ts":1208876195352,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1569487},
+{"pid":35295,"tid":1,"ts":1208876195369,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1569504},
+{"pid":35295,"tid":1,"ts":1208876195794,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1569930},
+{"pid":35295,"tid":1,"ts":1208876195803,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1569938},
+{"pid":35295,"tid":1,"ts":1208876195808,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1569943},
+{"pid":35295,"tid":1,"ts":1208876195860,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":75,"tdur":74,"tts":1569996},
+{"pid":35295,"tid":1,"ts":1208876195868,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570003},
+{"pid":35295,"tid":1,"ts":1208876195930,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570065},
+{"pid":35295,"tid":1,"ts":1208876195980,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570116},
+{"pid":35295,"tid":1,"ts":1208876195988,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570123},
+{"pid":35295,"tid":1,"ts":1208876196106,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570242},
+{"pid":35295,"tid":1,"ts":1208876196116,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570251},
+{"pid":35295,"tid":1,"ts":1208876196125,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570260},
+{"pid":35295,"tid":1,"ts":1208876196130,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570265},
+{"pid":35295,"tid":1,"ts":1208876196163,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570298},
+{"pid":35295,"tid":1,"ts":1208876196242,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570378},
+{"pid":35295,"tid":1,"ts":1208876196270,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570406},
+{"pid":35295,"tid":1,"ts":1208876196301,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570437},
+{"pid":35295,"tid":1,"ts":1208876196306,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570441},
+{"pid":35295,"tid":1,"ts":1208876196318,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570453},
+{"pid":35295,"tid":1,"ts":1208876196323,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570459},
+{"pid":35295,"tid":1,"ts":1208876196333,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570469},
+{"pid":35295,"tid":1,"ts":1208876196336,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570471},
+{"pid":35295,"tid":1,"ts":1208876196343,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570478},
+{"pid":35295,"tid":1,"ts":1208876196352,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570488},
+{"pid":35295,"tid":1,"ts":1208876196366,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570501},
+{"pid":35295,"tid":1,"ts":1208876196369,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570504},
+{"pid":35295,"tid":1,"ts":1208876196621,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570758},
+{"pid":35295,"tid":1,"ts":1208876196630,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570766},
+{"pid":35295,"tid":1,"ts":1208876196664,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570800},
+{"pid":35295,"tid":1,"ts":1208876196761,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570897},
+{"pid":35295,"tid":1,"ts":1208876196774,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1570910},
+{"pid":35295,"tid":1,"ts":1208876196780,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570915},
+{"pid":35295,"tid":1,"ts":1208876196799,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1570935},
+{"pid":35295,"tid":1,"ts":1208876197063,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1571199},
+{"pid":35295,"tid":1,"ts":1208876197070,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1571206},
+{"pid":35295,"tid":1,"ts":1208876197094,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1571230},
+{"pid":35295,"tid":1,"ts":1208876197097,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1571233},
+{"pid":35295,"tid":1,"ts":1208876197103,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1571239},
+{"pid":35295,"tid":1,"ts":1208876197106,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1571242},
+{"pid":35295,"tid":1,"ts":1208876197133,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1571269},
+{"pid":35295,"tid":1,"ts":1208876197139,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1571275},
+{"pid":35295,"tid":1,"ts":1208876197170,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1571306},
+{"pid":35295,"tid":1,"ts":1208876197329,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1571466},
+{"pid":35295,"tid":1,"ts":1208876197949,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1572087},
+{"pid":35295,"tid":1,"ts":1208876197958,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572095},
+{"pid":35295,"tid":1,"ts":1208876197964,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572101},
+{"pid":35295,"tid":1,"ts":1208876198021,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":623,"tdur":622,"tts":1572158},
+{"pid":35295,"tid":1,"ts":1208876198028,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572165},
+{"pid":35295,"tid":1,"ts":1208876198123,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1572259},
+{"pid":35295,"tid":1,"ts":1208876198249,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1572386},
+{"pid":35295,"tid":1,"ts":1208876198256,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572392},
+{"pid":35295,"tid":1,"ts":1208876198260,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572396},
+{"pid":35295,"tid":1,"ts":1208876198316,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":21,"tdur":19,"tts":1572454},
+{"pid":35295,"tid":1,"ts":1208876198323,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572460},
+{"pid":35295,"tid":1,"ts":1208876198333,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572470},
+{"pid":35295,"tid":1,"ts":1208876198357,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572494},
+{"pid":35295,"tid":1,"ts":1208876198362,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572499},
+{"pid":35295,"tid":1,"ts":1208876198393,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572530},
+{"pid":35295,"tid":1,"ts":1208876198399,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572535},
+{"pid":35295,"tid":1,"ts":1208876198427,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572564},
+{"pid":35295,"tid":1,"ts":1208876198442,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572579},
+{"pid":35295,"tid":1,"ts":1208876198448,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572585},
+{"pid":35295,"tid":1,"ts":1208876198551,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572689},
+{"pid":35295,"tid":1,"ts":1208876198560,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572697},
+{"pid":35295,"tid":1,"ts":1208876198570,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572707},
+{"pid":35295,"tid":1,"ts":1208876198575,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572711},
+{"pid":35295,"tid":1,"ts":1208876198580,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572717},
+{"pid":35295,"tid":1,"ts":1208876198584,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572721},
+{"pid":35295,"tid":1,"ts":1208876198586,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572723},
+{"pid":35295,"tid":1,"ts":1208876198595,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572731},
+{"pid":35295,"tid":1,"ts":1208876198599,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572735},
+{"pid":35295,"tid":1,"ts":1208876198638,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572775},
+{"pid":35295,"tid":1,"ts":1208876198784,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1572922},
+{"pid":35295,"tid":1,"ts":1208876198797,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1572934},
+{"pid":35295,"tid":1,"ts":1208876199502,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573641},
+{"pid":35295,"tid":1,"ts":1208876199561,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573699},
+{"pid":35295,"tid":1,"ts":1208876199565,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573702},
+{"pid":35295,"tid":1,"ts":1208876199572,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573709},
+{"pid":35295,"tid":1,"ts":1208876199623,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573761},
+{"pid":35295,"tid":1,"ts":1208876199632,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573769},
+{"pid":35295,"tid":1,"ts":1208876199635,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573772},
+{"pid":35295,"tid":1,"ts":1208876199640,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573777},
+{"pid":35295,"tid":1,"ts":1208876199646,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573783},
+{"pid":35295,"tid":1,"ts":1208876199655,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573792},
+{"pid":35295,"tid":1,"ts":1208876199662,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573799},
+{"pid":35295,"tid":1,"ts":1208876199664,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573801},
+{"pid":35295,"tid":1,"ts":1208876199668,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573805},
+{"pid":35295,"tid":1,"ts":1208876199670,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573807},
+{"pid":35295,"tid":1,"ts":1208876199772,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573910},
+{"pid":35295,"tid":1,"ts":1208876199781,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1573919},
+{"pid":35295,"tid":1,"ts":1208876199809,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1573946},
+{"pid":35295,"tid":1,"ts":1208876200044,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574182},
+{"pid":35295,"tid":1,"ts":1208876200049,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574186},
+{"pid":35295,"tid":1,"ts":1208876200131,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574270},
+{"pid":35295,"tid":1,"ts":1208876200135,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574273},
+{"pid":35295,"tid":1,"ts":1208876200151,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574289},
+{"pid":35295,"tid":1,"ts":1208876200153,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574291},
+{"pid":35295,"tid":1,"ts":1208876200175,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574312},
+{"pid":35295,"tid":1,"ts":1208876200181,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574319},
+{"pid":35295,"tid":1,"ts":1208876200199,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574337},
+{"pid":35295,"tid":1,"ts":1208876200202,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574340},
+{"pid":35295,"tid":1,"ts":1208876200214,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574352},
+{"pid":35295,"tid":1,"ts":1208876200325,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574464},
+{"pid":35295,"tid":1,"ts":1208876200329,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574467},
+{"pid":35295,"tid":1,"ts":1208876200343,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574481},
+{"pid":35295,"tid":1,"ts":1208876200366,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574504},
+{"pid":35295,"tid":1,"ts":1208876200381,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574518},
+{"pid":35295,"tid":1,"ts":1208876200395,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574533},
+{"pid":35295,"tid":1,"ts":1208876200419,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574556},
+{"pid":35295,"tid":1,"ts":1208876200434,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574572},
+{"pid":35295,"tid":1,"ts":1208876200443,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574581},
+{"pid":35295,"tid":1,"ts":1208876200454,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574592},
+{"pid":35295,"tid":1,"ts":1208876200460,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574598},
+{"pid":35295,"tid":1,"ts":1208876200463,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574601},
+{"pid":35295,"tid":1,"ts":1208876200468,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574606},
+{"pid":35295,"tid":1,"ts":1208876200471,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574609},
+{"pid":35295,"tid":1,"ts":1208876200475,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574613},
+{"pid":35295,"tid":1,"ts":1208876200477,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574615},
+{"pid":35295,"tid":1,"ts":1208876200480,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574618},
+{"pid":35295,"tid":1,"ts":1208876200483,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574620},
+{"pid":35295,"tid":1,"ts":1208876200487,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574625},
+{"pid":35295,"tid":1,"ts":1208876200491,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574629},
+{"pid":35295,"tid":1,"ts":1208876200511,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574649},
+{"pid":35295,"tid":1,"ts":1208876200514,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574652},
+{"pid":35295,"tid":1,"ts":1208876200518,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574656},
+{"pid":35295,"tid":1,"ts":1208876200521,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574659},
+{"pid":35295,"tid":1,"ts":1208876200524,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574662},
+{"pid":35295,"tid":1,"ts":1208876200526,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574664},
+{"pid":35295,"tid":1,"ts":1208876200529,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574667},
+{"pid":35295,"tid":1,"ts":1208876200532,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574670},
+{"pid":35295,"tid":1,"ts":1208876200535,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574673},
+{"pid":35295,"tid":1,"ts":1208876200537,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574675},
+{"pid":35295,"tid":1,"ts":1208876200540,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574678},
+{"pid":35295,"tid":1,"ts":1208876200542,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574680},
+{"pid":35295,"tid":1,"ts":1208876200546,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574683},
+{"pid":35295,"tid":1,"ts":1208876200548,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574686},
+{"pid":35295,"tid":1,"ts":1208876200551,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574689},
+{"pid":35295,"tid":1,"ts":1208876200553,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574691},
+{"pid":35295,"tid":1,"ts":1208876200556,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574694},
+{"pid":35295,"tid":1,"ts":1208876200558,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574696},
+{"pid":35295,"tid":1,"ts":1208876200562,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574700},
+{"pid":35295,"tid":1,"ts":1208876200565,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574703},
+{"pid":35295,"tid":1,"ts":1208876200573,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574711},
+{"pid":35295,"tid":1,"ts":1208876200575,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574713},
+{"pid":35295,"tid":1,"ts":1208876200578,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574716},
+{"pid":35295,"tid":1,"ts":1208876200581,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574719},
+{"pid":35295,"tid":1,"ts":1208876200584,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574722},
+{"pid":35295,"tid":1,"ts":1208876200599,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574737},
+{"pid":35295,"tid":1,"ts":1208876200602,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574740},
+{"pid":35295,"tid":1,"ts":1208876200605,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574743},
+{"pid":35295,"tid":1,"ts":1208876200608,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574746},
+{"pid":35295,"tid":1,"ts":1208876200610,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574748},
+{"pid":35295,"tid":1,"ts":1208876200613,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574751},
+{"pid":35295,"tid":1,"ts":1208876200616,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574753},
+{"pid":35295,"tid":1,"ts":1208876200620,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574758},
+{"pid":35295,"tid":1,"ts":1208876200622,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574760},
+{"pid":35295,"tid":1,"ts":1208876200625,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574763},
+{"pid":35295,"tid":1,"ts":1208876200627,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574765},
+{"pid":35295,"tid":1,"ts":1208876200630,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574768},
+{"pid":35295,"tid":1,"ts":1208876200632,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574770},
+{"pid":35295,"tid":1,"ts":1208876200635,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574773},
+{"pid":35295,"tid":1,"ts":1208876200637,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574775},
+{"pid":35295,"tid":1,"ts":1208876200640,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574778},
+{"pid":35295,"tid":1,"ts":1208876200642,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574780},
+{"pid":35295,"tid":1,"ts":1208876200645,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574783},
+{"pid":35295,"tid":1,"ts":1208876200648,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574785},
+{"pid":35295,"tid":1,"ts":1208876200651,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574789},
+{"pid":35295,"tid":1,"ts":1208876200653,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574791},
+{"pid":35295,"tid":1,"ts":1208876200656,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574794},
+{"pid":35295,"tid":1,"ts":1208876200658,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574796},
+{"pid":35295,"tid":1,"ts":1208876200661,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574799},
+{"pid":35295,"tid":1,"ts":1208876200663,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574801},
+{"pid":35295,"tid":1,"ts":1208876200666,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574804},
+{"pid":35295,"tid":1,"ts":1208876200668,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574806},
+{"pid":35295,"tid":1,"ts":1208876200671,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574809},
+{"pid":35295,"tid":1,"ts":1208876200673,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574811},
+{"pid":35295,"tid":1,"ts":1208876200678,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574816},
+{"pid":35295,"tid":1,"ts":1208876200681,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574819},
+{"pid":35295,"tid":1,"ts":1208876200684,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574822},
+{"pid":35295,"tid":1,"ts":1208876200686,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574824},
+{"pid":35295,"tid":1,"ts":1208876200689,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574827},
+{"pid":35295,"tid":1,"ts":1208876200691,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574829},
+{"pid":35295,"tid":1,"ts":1208876200694,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574832},
+{"pid":35295,"tid":1,"ts":1208876200696,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574834},
+{"pid":35295,"tid":1,"ts":1208876200700,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574837},
+{"pid":35295,"tid":1,"ts":1208876200702,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574840},
+{"pid":35295,"tid":1,"ts":1208876200711,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574849},
+{"pid":35295,"tid":1,"ts":1208876200713,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574851},
+{"pid":35295,"tid":1,"ts":1208876200716,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574854},
+{"pid":35295,"tid":1,"ts":1208876200718,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574856},
+{"pid":35295,"tid":1,"ts":1208876200721,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574859},
+{"pid":35295,"tid":1,"ts":1208876200723,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574861},
+{"pid":35295,"tid":1,"ts":1208876200726,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574864},
+{"pid":35295,"tid":1,"ts":1208876200729,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574867},
+{"pid":35295,"tid":1,"ts":1208876200732,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574870},
+{"pid":35295,"tid":1,"ts":1208876200734,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574872},
+{"pid":35295,"tid":1,"ts":1208876200737,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574875},
+{"pid":35295,"tid":1,"ts":1208876200739,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574877},
+{"pid":35295,"tid":1,"ts":1208876200742,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574880},
+{"pid":35295,"tid":1,"ts":1208876200744,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574882},
+{"pid":35295,"tid":1,"ts":1208876200747,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574885},
+{"pid":35295,"tid":1,"ts":1208876200749,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574887},
+{"pid":35295,"tid":1,"ts":1208876200752,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574890},
+{"pid":35295,"tid":1,"ts":1208876200754,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574892},
+{"pid":35295,"tid":1,"ts":1208876200757,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574895},
+{"pid":35295,"tid":1,"ts":1208876200760,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574898},
+{"pid":35295,"tid":1,"ts":1208876200763,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574900},
+{"pid":35295,"tid":1,"ts":1208876200765,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574903},
+{"pid":35295,"tid":1,"ts":1208876200768,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574906},
+{"pid":35295,"tid":1,"ts":1208876200770,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574908},
+{"pid":35295,"tid":1,"ts":1208876200777,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574915},
+{"pid":35295,"tid":1,"ts":1208876200786,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574924},
+{"pid":35295,"tid":1,"ts":1208876200793,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574931},
+{"pid":35295,"tid":1,"ts":1208876200795,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574933},
+{"pid":35295,"tid":1,"ts":1208876200798,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574936},
+{"pid":35295,"tid":1,"ts":1208876200800,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574938},
+{"pid":35295,"tid":1,"ts":1208876200803,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574941},
+{"pid":35295,"tid":1,"ts":1208876200806,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574944},
+{"pid":35295,"tid":1,"ts":1208876200809,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574947},
+{"pid":35295,"tid":1,"ts":1208876200811,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574949},
+{"pid":35295,"tid":1,"ts":1208876200814,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574952},
+{"pid":35295,"tid":1,"ts":1208876200816,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574954},
+{"pid":35295,"tid":1,"ts":1208876200819,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574957},
+{"pid":35295,"tid":1,"ts":1208876200821,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574959},
+{"pid":35295,"tid":1,"ts":1208876200824,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574962},
+{"pid":35295,"tid":1,"ts":1208876200826,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574964},
+{"pid":35295,"tid":1,"ts":1208876200829,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574967},
+{"pid":35295,"tid":1,"ts":1208876200831,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574969},
+{"pid":35295,"tid":1,"ts":1208876200834,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574972},
+{"pid":35295,"tid":1,"ts":1208876200837,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574975},
+{"pid":35295,"tid":1,"ts":1208876200841,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574979},
+{"pid":35295,"tid":1,"ts":1208876200844,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574982},
+{"pid":35295,"tid":1,"ts":1208876200847,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574985},
+{"pid":35295,"tid":1,"ts":1208876200849,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574987},
+{"pid":35295,"tid":1,"ts":1208876200852,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574990},
+{"pid":35295,"tid":1,"ts":1208876200854,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574992},
+{"pid":35295,"tid":1,"ts":1208876200857,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1574995},
+{"pid":35295,"tid":1,"ts":1208876200859,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1574997},
+{"pid":35295,"tid":1,"ts":1208876200862,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575000},
+{"pid":35295,"tid":1,"ts":1208876200864,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575003},
+{"pid":35295,"tid":1,"ts":1208876200867,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575006},
+{"pid":35295,"tid":1,"ts":1208876200870,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575008},
+{"pid":35295,"tid":1,"ts":1208876200873,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575011},
+{"pid":35295,"tid":1,"ts":1208876200875,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575013},
+{"pid":35295,"tid":1,"ts":1208876200882,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575020},
+{"pid":35295,"tid":1,"ts":1208876200884,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575022},
+{"pid":35295,"tid":1,"ts":1208876200887,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575025},
+{"pid":35295,"tid":1,"ts":1208876200890,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575028},
+{"pid":35295,"tid":1,"ts":1208876200893,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575031},
+{"pid":35295,"tid":1,"ts":1208876200895,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575033},
+{"pid":35295,"tid":1,"ts":1208876200898,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575036},
+{"pid":35295,"tid":1,"ts":1208876200900,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575038},
+{"pid":35295,"tid":1,"ts":1208876200903,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575041},
+{"pid":35295,"tid":1,"ts":1208876200905,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575043},
+{"pid":35295,"tid":1,"ts":1208876200908,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575046},
+{"pid":35295,"tid":1,"ts":1208876200910,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575049},
+{"pid":35295,"tid":1,"ts":1208876200913,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575052},
+{"pid":35295,"tid":1,"ts":1208876200916,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575054},
+{"pid":35295,"tid":1,"ts":1208876200919,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575057},
+{"pid":35295,"tid":1,"ts":1208876200921,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575059},
+{"pid":35295,"tid":1,"ts":1208876200924,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575062},
+{"pid":35295,"tid":1,"ts":1208876200926,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575064},
+{"pid":35295,"tid":1,"ts":1208876200929,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575067},
+{"pid":35295,"tid":1,"ts":1208876200931,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575069},
+{"pid":35295,"tid":1,"ts":1208876200934,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575072},
+{"pid":35295,"tid":1,"ts":1208876200936,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575074},
+{"pid":35295,"tid":1,"ts":1208876200939,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575077},
+{"pid":35295,"tid":1,"ts":1208876200941,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575079},
+{"pid":35295,"tid":1,"ts":1208876200944,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575082},
+{"pid":35295,"tid":1,"ts":1208876200947,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575085},
+{"pid":35295,"tid":1,"ts":1208876200950,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575088},
+{"pid":35295,"tid":1,"ts":1208876200952,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575090},
+{"pid":35295,"tid":1,"ts":1208876200955,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575093},
+{"pid":35295,"tid":1,"ts":1208876200957,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575095},
+{"pid":35295,"tid":1,"ts":1208876200960,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575098},
+{"pid":35295,"tid":1,"ts":1208876200969,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575107},
+{"pid":35295,"tid":1,"ts":1208876200972,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575111},
+{"pid":35295,"tid":1,"ts":1208876200975,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575113},
+{"pid":35295,"tid":1,"ts":1208876200978,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575116},
+{"pid":35295,"tid":1,"ts":1208876200980,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575118},
+{"pid":35295,"tid":1,"ts":1208876200984,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575122},
+{"pid":35295,"tid":1,"ts":1208876200987,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575125},
+{"pid":35295,"tid":1,"ts":1208876200990,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575128},
+{"pid":35295,"tid":1,"ts":1208876200992,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575130},
+{"pid":35295,"tid":1,"ts":1208876200995,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575133},
+{"pid":35295,"tid":1,"ts":1208876200997,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575135},
+{"pid":35295,"tid":1,"ts":1208876201000,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575138},
+{"pid":35295,"tid":1,"ts":1208876201003,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575141},
+{"pid":35295,"tid":1,"ts":1208876201008,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575146},
+{"pid":35295,"tid":1,"ts":1208876201014,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575153},
+{"pid":35295,"tid":1,"ts":1208876201017,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575155},
+{"pid":35295,"tid":1,"ts":1208876201029,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575167},
+{"pid":35295,"tid":1,"ts":1208876201033,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575172},
+{"pid":35295,"tid":1,"ts":1208876201046,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575185},
+{"pid":35295,"tid":1,"ts":1208876201049,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575188},
+{"pid":35295,"tid":1,"ts":1208876201056,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575194},
+{"pid":35295,"tid":1,"ts":1208876201061,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575199},
+{"pid":35295,"tid":1,"ts":1208876201063,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575201},
+{"pid":35295,"tid":1,"ts":1208876201066,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575204},
+{"pid":35295,"tid":1,"ts":1208876201069,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575208},
+{"pid":35295,"tid":1,"ts":1208876201073,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575211},
+{"pid":35295,"tid":1,"ts":1208876201075,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575213},
+{"pid":35295,"tid":1,"ts":1208876201078,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575216},
+{"pid":35295,"tid":1,"ts":1208876201081,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575219},
+{"pid":35295,"tid":1,"ts":1208876201084,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575222},
+{"pid":35295,"tid":1,"ts":1208876201086,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575225},
+{"pid":35295,"tid":1,"ts":1208876201089,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575228},
+{"pid":35295,"tid":1,"ts":1208876201092,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575230},
+{"pid":35295,"tid":1,"ts":1208876201095,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575234},
+{"pid":35295,"tid":1,"ts":1208876201098,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575236},
+{"pid":35295,"tid":1,"ts":1208876201101,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575239},
+{"pid":35295,"tid":1,"ts":1208876201103,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575241},
+{"pid":35295,"tid":1,"ts":1208876201106,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575244},
+{"pid":35295,"tid":1,"ts":1208876201108,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575246},
+{"pid":35295,"tid":1,"ts":1208876201111,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575249},
+{"pid":35295,"tid":1,"ts":1208876201114,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575252},
+{"pid":35295,"tid":1,"ts":1208876201122,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575260},
+{"pid":35295,"tid":1,"ts":1208876201124,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575262},
+{"pid":35295,"tid":1,"ts":1208876201127,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575266},
+{"pid":35295,"tid":1,"ts":1208876201130,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575268},
+{"pid":35295,"tid":1,"ts":1208876201133,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575271},
+{"pid":35295,"tid":1,"ts":1208876201135,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575273},
+{"pid":35295,"tid":1,"ts":1208876201138,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575276},
+{"pid":35295,"tid":1,"ts":1208876201140,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575278},
+{"pid":35295,"tid":1,"ts":1208876201143,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575281},
+{"pid":35295,"tid":1,"ts":1208876201145,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575283},
+{"pid":35295,"tid":1,"ts":1208876201148,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575286},
+{"pid":35295,"tid":1,"ts":1208876201150,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575289},
+{"pid":35295,"tid":1,"ts":1208876201153,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575292},
+{"pid":35295,"tid":1,"ts":1208876201156,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575294},
+{"pid":35295,"tid":1,"ts":1208876201161,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575299},
+{"pid":35295,"tid":1,"ts":1208876201163,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575301},
+{"pid":35295,"tid":1,"ts":1208876201166,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575305},
+{"pid":35295,"tid":1,"ts":1208876201168,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575307},
+{"pid":35295,"tid":1,"ts":1208876201171,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575310},
+{"pid":35295,"tid":1,"ts":1208876201174,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575312},
+{"pid":35295,"tid":1,"ts":1208876201184,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575323},
+{"pid":35295,"tid":1,"ts":1208876201187,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575325},
+{"pid":35295,"tid":1,"ts":1208876201190,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575328},
+{"pid":35295,"tid":1,"ts":1208876201197,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575336},
+{"pid":35295,"tid":1,"ts":1208876201201,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575339},
+{"pid":35295,"tid":1,"ts":1208876201203,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575341},
+{"pid":35295,"tid":1,"ts":1208876201206,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575344},
+{"pid":35295,"tid":1,"ts":1208876201208,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575346},
+{"pid":35295,"tid":1,"ts":1208876201211,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575350},
+{"pid":35295,"tid":1,"ts":1208876201214,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575352},
+{"pid":35295,"tid":1,"ts":1208876201221,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575360},
+{"pid":35295,"tid":1,"ts":1208876201224,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575362},
+{"pid":35295,"tid":1,"ts":1208876201227,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575365},
+{"pid":35295,"tid":1,"ts":1208876201229,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575367},
+{"pid":35295,"tid":1,"ts":1208876201232,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575370},
+{"pid":35295,"tid":1,"ts":1208876201234,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575372},
+{"pid":35295,"tid":1,"ts":1208876201237,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575375},
+{"pid":35295,"tid":1,"ts":1208876201239,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575378},
+{"pid":35295,"tid":1,"ts":1208876201243,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575381},
+{"pid":35295,"tid":1,"ts":1208876201245,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575383},
+{"pid":35295,"tid":1,"ts":1208876201248,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575386},
+{"pid":35295,"tid":1,"ts":1208876201250,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575389},
+{"pid":35295,"tid":1,"ts":1208876201254,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575392},
+{"pid":35295,"tid":1,"ts":1208876201256,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575394},
+{"pid":35295,"tid":1,"ts":1208876201259,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575397},
+{"pid":35295,"tid":1,"ts":1208876201261,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575399},
+{"pid":35295,"tid":1,"ts":1208876201264,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575402},
+{"pid":35295,"tid":1,"ts":1208876201266,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575404},
+{"pid":35295,"tid":1,"ts":1208876201269,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575407},
+{"pid":35295,"tid":1,"ts":1208876201271,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575410},
+{"pid":35295,"tid":1,"ts":1208876201275,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575413},
+{"pid":35295,"tid":1,"ts":1208876201277,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575415},
+{"pid":35295,"tid":1,"ts":1208876201280,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575418},
+{"pid":35295,"tid":1,"ts":1208876201282,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575420},
+{"pid":35295,"tid":1,"ts":1208876201285,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575423},
+{"pid":35295,"tid":1,"ts":1208876201287,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575425},
+{"pid":35295,"tid":1,"ts":1208876201290,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575428},
+{"pid":35295,"tid":1,"ts":1208876201292,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575431},
+{"pid":35295,"tid":1,"ts":1208876201295,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575434},
+{"pid":35295,"tid":1,"ts":1208876201298,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575436},
+{"pid":35295,"tid":1,"ts":1208876201303,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575441},
+{"pid":35295,"tid":1,"ts":1208876201308,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575446},
+{"pid":35295,"tid":1,"ts":1208876201310,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575449},
+{"pid":35295,"tid":1,"ts":1208876201317,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575455},
+{"pid":35295,"tid":1,"ts":1208876201320,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575459},
+{"pid":35295,"tid":1,"ts":1208876201330,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575469},
+{"pid":35295,"tid":1,"ts":1208876201334,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575472},
+{"pid":35295,"tid":1,"ts":1208876201340,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575478},
+{"pid":35295,"tid":1,"ts":1208876201344,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575482},
+{"pid":35295,"tid":1,"ts":1208876201346,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575484},
+{"pid":35295,"tid":1,"ts":1208876201349,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575487},
+{"pid":35295,"tid":1,"ts":1208876201352,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575490},
+{"pid":35295,"tid":1,"ts":1208876201355,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575494},
+{"pid":35295,"tid":1,"ts":1208876201358,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575496},
+{"pid":35295,"tid":1,"ts":1208876201361,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575499},
+{"pid":35295,"tid":1,"ts":1208876201364,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575502},
+{"pid":35295,"tid":1,"ts":1208876201367,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575505},
+{"pid":35295,"tid":1,"ts":1208876201369,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575507},
+{"pid":35295,"tid":1,"ts":1208876201372,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575510},
+{"pid":35295,"tid":1,"ts":1208876201374,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575512},
+{"pid":35295,"tid":1,"ts":1208876201378,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575516},
+{"pid":35295,"tid":1,"ts":1208876201380,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575518},
+{"pid":35295,"tid":1,"ts":1208876201383,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575521},
+{"pid":35295,"tid":1,"ts":1208876201385,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575523},
+{"pid":35295,"tid":1,"ts":1208876201388,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575526},
+{"pid":35295,"tid":1,"ts":1208876201390,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575529},
+{"pid":35295,"tid":1,"ts":1208876201393,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575532},
+{"pid":35295,"tid":1,"ts":1208876201402,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575541},
+{"pid":35295,"tid":1,"ts":1208876201409,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575547},
+{"pid":35295,"tid":1,"ts":1208876201411,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575549},
+{"pid":35295,"tid":1,"ts":1208876201414,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575552},
+{"pid":35295,"tid":1,"ts":1208876201416,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575554},
+{"pid":35295,"tid":1,"ts":1208876201419,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575557},
+{"pid":35295,"tid":1,"ts":1208876201421,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575560},
+{"pid":35295,"tid":1,"ts":1208876201424,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575563},
+{"pid":35295,"tid":1,"ts":1208876201426,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575565},
+{"pid":35295,"tid":1,"ts":1208876201430,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575568},
+{"pid":35295,"tid":1,"ts":1208876201432,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575571},
+{"pid":35295,"tid":1,"ts":1208876201435,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575574},
+{"pid":35295,"tid":1,"ts":1208876201437,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575576},
+{"pid":35295,"tid":1,"ts":1208876201440,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575579},
+{"pid":35295,"tid":1,"ts":1208876201442,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575581},
+{"pid":35295,"tid":1,"ts":1208876201445,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575584},
+{"pid":35295,"tid":1,"ts":1208876201448,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575586},
+{"pid":35295,"tid":1,"ts":1208876201451,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575589},
+{"pid":35295,"tid":1,"ts":1208876201453,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575591},
+{"pid":35295,"tid":1,"ts":1208876201456,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575594},
+{"pid":35295,"tid":1,"ts":1208876201458,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575596},
+{"pid":35295,"tid":1,"ts":1208876201462,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575600},
+{"pid":35295,"tid":1,"ts":1208876201465,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575603},
+{"pid":35295,"tid":1,"ts":1208876201469,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575608},
+{"pid":35295,"tid":1,"ts":1208876201472,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575611},
+{"pid":35295,"tid":1,"ts":1208876201477,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575616},
+{"pid":35295,"tid":1,"ts":1208876201481,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575619},
+{"pid":35295,"tid":1,"ts":1208876201485,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575624},
+{"pid":35295,"tid":1,"ts":1208876201488,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575627},
+{"pid":35295,"tid":1,"ts":1208876201493,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575631},
+{"pid":35295,"tid":1,"ts":1208876201497,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575636},
+{"pid":35295,"tid":1,"ts":1208876201507,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575646},
+{"pid":35295,"tid":1,"ts":1208876201510,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575649},
+{"pid":35295,"tid":1,"ts":1208876201520,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575658},
+{"pid":35295,"tid":1,"ts":1208876201524,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575662},
+{"pid":35295,"tid":1,"ts":1208876201528,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575667},
+{"pid":35295,"tid":1,"ts":1208876201531,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575670},
+{"pid":35295,"tid":1,"ts":1208876201537,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575675},
+{"pid":35295,"tid":1,"ts":1208876201541,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575679},
+{"pid":35295,"tid":1,"ts":1208876201545,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575684},
+{"pid":35295,"tid":1,"ts":1208876201549,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575687},
+{"pid":35295,"tid":1,"ts":1208876201554,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575692},
+{"pid":35295,"tid":1,"ts":1208876201557,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575695},
+{"pid":35295,"tid":1,"ts":1208876201562,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575700},
+{"pid":35295,"tid":1,"ts":1208876201565,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575703},
+{"pid":35295,"tid":1,"ts":1208876201569,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575708},
+{"pid":35295,"tid":1,"ts":1208876201573,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575711},
+{"pid":35295,"tid":1,"ts":1208876201578,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575717},
+{"pid":35295,"tid":1,"ts":1208876201581,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575720},
+{"pid":35295,"tid":1,"ts":1208876201586,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575724},
+{"pid":35295,"tid":1,"ts":1208876201589,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575728},
+{"pid":35295,"tid":1,"ts":1208876201596,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575735},
+{"pid":35295,"tid":1,"ts":1208876201599,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575738},
+{"pid":35295,"tid":1,"ts":1208876201603,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575742},
+{"pid":35295,"tid":1,"ts":1208876201607,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575745},
+{"pid":35295,"tid":1,"ts":1208876201611,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575750},
+{"pid":35295,"tid":1,"ts":1208876201614,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575753},
+{"pid":35295,"tid":1,"ts":1208876201617,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575756},
+{"pid":35295,"tid":1,"ts":1208876201620,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575758},
+{"pid":35295,"tid":1,"ts":1208876201623,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575762},
+{"pid":35295,"tid":1,"ts":1208876201627,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575766},
+{"pid":35295,"tid":1,"ts":1208876201633,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575772},
+{"pid":35295,"tid":1,"ts":1208876201646,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575785},
+{"pid":35295,"tid":1,"ts":1208876201648,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575787},
+{"pid":35295,"tid":1,"ts":1208876201669,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575808},
+{"pid":35295,"tid":1,"ts":1208876201672,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575810},
+{"pid":35295,"tid":1,"ts":1208876201679,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575817},
+{"pid":35295,"tid":1,"ts":1208876201682,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575821},
+{"pid":35295,"tid":1,"ts":1208876201695,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575834},
+{"pid":35295,"tid":1,"ts":1208876201698,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575837},
+{"pid":35295,"tid":1,"ts":1208876201704,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575843},
+{"pid":35295,"tid":1,"ts":1208876201709,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575847},
+{"pid":35295,"tid":1,"ts":1208876201711,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575850},
+{"pid":35295,"tid":1,"ts":1208876201717,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575856},
+{"pid":35295,"tid":1,"ts":1208876201720,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575858},
+{"pid":35295,"tid":1,"ts":1208876201723,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575861},
+{"pid":35295,"tid":1,"ts":1208876201725,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575864},
+{"pid":35295,"tid":1,"ts":1208876201728,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575867},
+{"pid":35295,"tid":1,"ts":1208876201731,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575869},
+{"pid":35295,"tid":1,"ts":1208876201734,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575873},
+{"pid":35295,"tid":1,"ts":1208876201736,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575875},
+{"pid":35295,"tid":1,"ts":1208876201739,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575878},
+{"pid":35295,"tid":1,"ts":1208876201742,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575880},
+{"pid":35295,"tid":1,"ts":1208876201745,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575883},
+{"pid":35295,"tid":1,"ts":1208876201747,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575886},
+{"pid":35295,"tid":1,"ts":1208876201750,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575889},
+{"pid":35295,"tid":1,"ts":1208876201752,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575891},
+{"pid":35295,"tid":1,"ts":1208876201755,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575894},
+{"pid":35295,"tid":1,"ts":1208876201757,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575896},
+{"pid":35295,"tid":1,"ts":1208876201760,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575899},
+{"pid":35295,"tid":1,"ts":1208876201763,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575901},
+{"pid":35295,"tid":1,"ts":1208876201766,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575904},
+{"pid":35295,"tid":1,"ts":1208876201768,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575906},
+{"pid":35295,"tid":1,"ts":1208876201771,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575909},
+{"pid":35295,"tid":1,"ts":1208876201773,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575912},
+{"pid":35295,"tid":1,"ts":1208876201776,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575915},
+{"pid":35295,"tid":1,"ts":1208876201778,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575917},
+{"pid":35295,"tid":1,"ts":1208876201781,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575920},
+{"pid":35295,"tid":1,"ts":1208876201783,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575922},
+{"pid":35295,"tid":1,"ts":1208876201786,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575925},
+{"pid":35295,"tid":1,"ts":1208876201789,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575927},
+{"pid":35295,"tid":1,"ts":1208876201792,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575930},
+{"pid":35295,"tid":1,"ts":1208876201794,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575932},
+{"pid":35295,"tid":1,"ts":1208876201797,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575935},
+{"pid":35295,"tid":1,"ts":1208876201799,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575938},
+{"pid":35295,"tid":1,"ts":1208876201802,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575941},
+{"pid":35295,"tid":1,"ts":1208876201804,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575943},
+{"pid":35295,"tid":1,"ts":1208876201807,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575946},
+{"pid":35295,"tid":1,"ts":1208876201809,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575948},
+{"pid":35295,"tid":1,"ts":1208876201812,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575951},
+{"pid":35295,"tid":1,"ts":1208876201814,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575953},
+{"pid":35295,"tid":1,"ts":1208876201817,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575956},
+{"pid":35295,"tid":1,"ts":1208876201820,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575958},
+{"pid":35295,"tid":1,"ts":1208876201823,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575961},
+{"pid":35295,"tid":1,"ts":1208876201825,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575963},
+{"pid":35295,"tid":1,"ts":1208876201828,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575966},
+{"pid":35295,"tid":1,"ts":1208876201830,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575969},
+{"pid":35295,"tid":1,"ts":1208876201833,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575972},
+{"pid":35295,"tid":1,"ts":1208876201835,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575974},
+{"pid":35295,"tid":1,"ts":1208876201838,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575977},
+{"pid":35295,"tid":1,"ts":1208876201840,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575979},
+{"pid":35295,"tid":1,"ts":1208876201843,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575982},
+{"pid":35295,"tid":1,"ts":1208876201845,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575984},
+{"pid":35295,"tid":1,"ts":1208876201849,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575987},
+{"pid":35295,"tid":1,"ts":1208876201851,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575989},
+{"pid":35295,"tid":1,"ts":1208876201854,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1575993},
+{"pid":35295,"tid":1,"ts":1208876201858,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1575997},
+{"pid":35295,"tid":1,"ts":1208876201866,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576005},
+{"pid":35295,"tid":1,"ts":1208876201880,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576018},
+{"pid":35295,"tid":1,"ts":1208876201883,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576022},
+{"pid":35295,"tid":1,"ts":1208876201885,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576024},
+{"pid":35295,"tid":1,"ts":1208876201888,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576027},
+{"pid":35295,"tid":1,"ts":1208876201891,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576029},
+{"pid":35295,"tid":1,"ts":1208876201894,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576032},
+{"pid":35295,"tid":1,"ts":1208876201896,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576035},
+{"pid":35295,"tid":1,"ts":1208876201899,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576038},
+{"pid":35295,"tid":1,"ts":1208876201901,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576040},
+{"pid":35295,"tid":1,"ts":1208876201904,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576043},
+{"pid":35295,"tid":1,"ts":1208876201906,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576045},
+{"pid":35295,"tid":1,"ts":1208876201909,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576048},
+{"pid":35295,"tid":1,"ts":1208876201912,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576051},
+{"pid":35295,"tid":1,"ts":1208876201915,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576054},
+{"pid":35295,"tid":1,"ts":1208876201919,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576057},
+{"pid":35295,"tid":1,"ts":1208876201922,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576060},
+{"pid":35295,"tid":1,"ts":1208876201924,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576063},
+{"pid":35295,"tid":1,"ts":1208876201928,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576066},
+{"pid":35295,"tid":1,"ts":1208876201930,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576069},
+{"pid":35295,"tid":1,"ts":1208876201933,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576072},
+{"pid":35295,"tid":1,"ts":1208876201935,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576074},
+{"pid":35295,"tid":1,"ts":1208876201938,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576077},
+{"pid":35295,"tid":1,"ts":1208876201941,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576080},
+{"pid":35295,"tid":1,"ts":1208876201944,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576082},
+{"pid":35295,"tid":1,"ts":1208876201946,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576085},
+{"pid":35295,"tid":1,"ts":1208876201949,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576088},
+{"pid":35295,"tid":1,"ts":1208876201951,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576090},
+{"pid":35295,"tid":1,"ts":1208876201954,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576093},
+{"pid":35295,"tid":1,"ts":1208876201956,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576095},
+{"pid":35295,"tid":1,"ts":1208876201959,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576098},
+{"pid":35295,"tid":1,"ts":1208876201961,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576100},
+{"pid":35295,"tid":1,"ts":1208876201964,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576103},
+{"pid":35295,"tid":1,"ts":1208876201967,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576105},
+{"pid":35295,"tid":1,"ts":1208876201970,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576108},
+{"pid":35295,"tid":1,"ts":1208876201972,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576111},
+{"pid":35295,"tid":1,"ts":1208876201975,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576114},
+{"pid":35295,"tid":1,"ts":1208876201978,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576117},
+{"pid":35295,"tid":1,"ts":1208876201981,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576120},
+{"pid":35295,"tid":1,"ts":1208876201983,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576122},
+{"pid":35295,"tid":1,"ts":1208876201987,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576125},
+{"pid":35295,"tid":1,"ts":1208876201989,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576128},
+{"pid":35295,"tid":1,"ts":1208876201992,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576131},
+{"pid":35295,"tid":1,"ts":1208876201994,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576133},
+{"pid":35295,"tid":1,"ts":1208876201997,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576136},
+{"pid":35295,"tid":1,"ts":1208876202000,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576138},
+{"pid":35295,"tid":1,"ts":1208876202003,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576141},
+{"pid":35295,"tid":1,"ts":1208876202005,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576144},
+{"pid":35295,"tid":1,"ts":1208876202008,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576147},
+{"pid":35295,"tid":1,"ts":1208876202010,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576149},
+{"pid":35295,"tid":1,"ts":1208876202013,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576152},
+{"pid":35295,"tid":1,"ts":1208876202015,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576154},
+{"pid":35295,"tid":1,"ts":1208876202020,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576159},
+{"pid":35295,"tid":1,"ts":1208876202023,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576162},
+{"pid":35295,"tid":1,"ts":1208876202030,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576169},
+{"pid":35295,"tid":1,"ts":1208876202032,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576171},
+{"pid":35295,"tid":1,"ts":1208876202035,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576174},
+{"pid":35295,"tid":1,"ts":1208876202037,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576176},
+{"pid":35295,"tid":1,"ts":1208876202040,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576179},
+{"pid":35295,"tid":1,"ts":1208876202042,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576181},
+{"pid":35295,"tid":1,"ts":1208876202046,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576184},
+{"pid":35295,"tid":1,"ts":1208876202048,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576187},
+{"pid":35295,"tid":1,"ts":1208876202051,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576190},
+{"pid":35295,"tid":1,"ts":1208876202053,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576192},
+{"pid":35295,"tid":1,"ts":1208876202056,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576195},
+{"pid":35295,"tid":1,"ts":1208876202064,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576203},
+{"pid":35295,"tid":1,"ts":1208876202067,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576206},
+{"pid":35295,"tid":1,"ts":1208876202069,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576208},
+{"pid":35295,"tid":1,"ts":1208876202072,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576211},
+{"pid":35295,"tid":1,"ts":1208876202074,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576213},
+{"pid":35295,"tid":1,"ts":1208876202077,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576216},
+{"pid":35295,"tid":1,"ts":1208876202080,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576218},
+{"pid":35295,"tid":1,"ts":1208876202083,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576221},
+{"pid":35295,"tid":1,"ts":1208876202085,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576224},
+{"pid":35295,"tid":1,"ts":1208876202088,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576227},
+{"pid":35295,"tid":1,"ts":1208876202090,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576229},
+{"pid":35295,"tid":1,"ts":1208876202093,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576232},
+{"pid":35295,"tid":1,"ts":1208876202096,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576234},
+{"pid":35295,"tid":1,"ts":1208876202099,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576238},
+{"pid":35295,"tid":1,"ts":1208876202102,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576240},
+{"pid":35295,"tid":1,"ts":1208876202105,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576244},
+{"pid":35295,"tid":1,"ts":1208876202107,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576246},
+{"pid":35295,"tid":1,"ts":1208876202110,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576249},
+{"pid":35295,"tid":1,"ts":1208876202112,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576251},
+{"pid":35295,"tid":1,"ts":1208876202115,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576254},
+{"pid":35295,"tid":1,"ts":1208876202117,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576256},
+{"pid":35295,"tid":1,"ts":1208876202120,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576259},
+{"pid":35295,"tid":1,"ts":1208876202122,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576261},
+{"pid":35295,"tid":1,"ts":1208876202125,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576264},
+{"pid":35295,"tid":1,"ts":1208876202128,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576266},
+{"pid":35295,"tid":1,"ts":1208876202131,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576269},
+{"pid":35295,"tid":1,"ts":1208876202133,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576272},
+{"pid":35295,"tid":1,"ts":1208876202136,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576275},
+{"pid":35295,"tid":1,"ts":1208876202138,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576277},
+{"pid":35295,"tid":1,"ts":1208876202141,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576280},
+{"pid":35295,"tid":1,"ts":1208876202143,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576282},
+{"pid":35295,"tid":1,"ts":1208876202147,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576286},
+{"pid":35295,"tid":1,"ts":1208876202149,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576288},
+{"pid":35295,"tid":1,"ts":1208876202152,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576291},
+{"pid":35295,"tid":1,"ts":1208876202154,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576293},
+{"pid":35295,"tid":1,"ts":1208876202158,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576297},
+{"pid":35295,"tid":1,"ts":1208876202160,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576299},
+{"pid":35295,"tid":1,"ts":1208876202163,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576302},
+{"pid":35295,"tid":1,"ts":1208876202166,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576304},
+{"pid":35295,"tid":1,"ts":1208876202169,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576307},
+{"pid":35295,"tid":1,"ts":1208876202176,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576315},
+{"pid":35295,"tid":1,"ts":1208876202181,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576320},
+{"pid":35295,"tid":1,"ts":1208876202184,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576322},
+{"pid":35295,"tid":1,"ts":1208876202187,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576326},
+{"pid":35295,"tid":1,"ts":1208876202189,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576328},
+{"pid":35295,"tid":1,"ts":1208876202192,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576331},
+{"pid":35295,"tid":1,"ts":1208876202194,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576333},
+{"pid":35295,"tid":1,"ts":1208876202198,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576337},
+{"pid":35295,"tid":1,"ts":1208876202200,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576339},
+{"pid":35295,"tid":1,"ts":1208876202203,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576342},
+{"pid":35295,"tid":1,"ts":1208876202206,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576344},
+{"pid":35295,"tid":1,"ts":1208876202209,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576347},
+{"pid":35295,"tid":1,"ts":1208876202211,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576350},
+{"pid":35295,"tid":1,"ts":1208876202214,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576353},
+{"pid":35295,"tid":1,"ts":1208876202216,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576355},
+{"pid":35295,"tid":1,"ts":1208876202219,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576358},
+{"pid":35295,"tid":1,"ts":1208876202221,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576360},
+{"pid":35295,"tid":1,"ts":1208876202224,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576363},
+{"pid":35295,"tid":1,"ts":1208876202226,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576365},
+{"pid":35295,"tid":1,"ts":1208876202229,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576368},
+{"pid":35295,"tid":1,"ts":1208876202231,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576370},
+{"pid":35295,"tid":1,"ts":1208876202234,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576373},
+{"pid":35295,"tid":1,"ts":1208876202237,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576376},
+{"pid":35295,"tid":1,"ts":1208876202240,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576379},
+{"pid":35295,"tid":1,"ts":1208876202248,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576387},
+{"pid":35295,"tid":1,"ts":1208876202252,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576390},
+{"pid":35295,"tid":1,"ts":1208876202254,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576393},
+{"pid":35295,"tid":1,"ts":1208876202257,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576396},
+{"pid":35295,"tid":1,"ts":1208876202259,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576398},
+{"pid":35295,"tid":1,"ts":1208876202262,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576401},
+{"pid":35295,"tid":1,"ts":1208876202264,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576403},
+{"pid":35295,"tid":1,"ts":1208876202267,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576406},
+{"pid":35295,"tid":1,"ts":1208876202269,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576408},
+{"pid":35295,"tid":1,"ts":1208876202272,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576411},
+{"pid":35295,"tid":1,"ts":1208876202275,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576414},
+{"pid":35295,"tid":1,"ts":1208876202278,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576417},
+{"pid":35295,"tid":1,"ts":1208876202280,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576419},
+{"pid":35295,"tid":1,"ts":1208876202283,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576422},
+{"pid":35295,"tid":1,"ts":1208876202285,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576424},
+{"pid":35295,"tid":1,"ts":1208876202288,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576427},
+{"pid":35295,"tid":1,"ts":1208876202290,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576429},
+{"pid":35295,"tid":1,"ts":1208876202293,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576432},
+{"pid":35295,"tid":1,"ts":1208876202295,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576434},{"pid":35295,"tid":1,"ts":1208876202298,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576437},
+{"pid":35295,"tid":1,"ts":1208876202302,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576441},
+{"pid":35295,"tid":1,"ts":1208876202308,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576447},
+{"pid":35295,"tid":1,"ts":1208876202313,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576452},
+{"pid":35295,"tid":1,"ts":1208876202315,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576454},
+{"pid":35295,"tid":1,"ts":1208876202324,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576463},
+{"pid":35295,"tid":1,"ts":1208876202327,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576466},
+{"pid":35295,"tid":1,"ts":1208876202335,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576474},
+{"pid":35295,"tid":1,"ts":1208876202338,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576477},
+{"pid":35295,"tid":1,"ts":1208876202344,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576483},
+{"pid":35295,"tid":1,"ts":1208876202348,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576487},
+{"pid":35295,"tid":1,"ts":1208876202350,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576489},
+{"pid":35295,"tid":1,"ts":1208876202353,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576492},
+{"pid":35295,"tid":1,"ts":1208876202356,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576495},
+{"pid":35295,"tid":1,"ts":1208876202359,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576498},
+{"pid":35295,"tid":1,"ts":1208876202361,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576500},
+{"pid":35295,"tid":1,"ts":1208876202364,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576503},
+{"pid":35295,"tid":1,"ts":1208876202367,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576505},
+{"pid":35295,"tid":1,"ts":1208876202370,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576509},
+{"pid":35295,"tid":1,"ts":1208876202372,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576511},
+{"pid":35295,"tid":1,"ts":1208876202375,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576514},
+{"pid":35295,"tid":1,"ts":1208876202377,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576516},
+{"pid":35295,"tid":1,"ts":1208876202380,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576519},
+{"pid":35295,"tid":1,"ts":1208876202382,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576521},
+{"pid":35295,"tid":1,"ts":1208876202385,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576524},
+{"pid":35295,"tid":1,"ts":1208876202387,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576526},
+{"pid":35295,"tid":1,"ts":1208876202390,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576529},
+{"pid":35295,"tid":1,"ts":1208876202392,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576531},
+{"pid":35295,"tid":1,"ts":1208876202396,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576535},
+{"pid":35295,"tid":1,"ts":1208876202398,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576537},
+{"pid":35295,"tid":1,"ts":1208876202401,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576540},
+{"pid":35295,"tid":1,"ts":1208876202403,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576542},
+{"pid":35295,"tid":1,"ts":1208876202406,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576545},
+{"pid":35295,"tid":1,"ts":1208876202408,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576547},
+{"pid":35295,"tid":1,"ts":1208876202411,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576550},
+{"pid":35295,"tid":1,"ts":1208876202413,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576552},
+{"pid":35295,"tid":1,"ts":1208876202416,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576555},
+{"pid":35295,"tid":1,"ts":1208876202419,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576558},
+{"pid":35295,"tid":1,"ts":1208876202422,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576561},
+{"pid":35295,"tid":1,"ts":1208876202424,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576563},
+{"pid":35295,"tid":1,"ts":1208876202428,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576567},
+{"pid":35295,"tid":1,"ts":1208876202430,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576569},
+{"pid":35295,"tid":1,"ts":1208876202433,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576572},
+{"pid":35295,"tid":1,"ts":1208876202436,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576575},
+{"pid":35295,"tid":1,"ts":1208876202439,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576578},
+{"pid":35295,"tid":1,"ts":1208876202446,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576585},
+{"pid":35295,"tid":1,"ts":1208876202450,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576589},
+{"pid":35295,"tid":1,"ts":1208876202452,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576591},
+{"pid":35295,"tid":1,"ts":1208876202455,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576594},
+{"pid":35295,"tid":1,"ts":1208876202457,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576596},
+{"pid":35295,"tid":1,"ts":1208876202460,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576599},
+{"pid":35295,"tid":1,"ts":1208876202462,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576601},
+{"pid":35295,"tid":1,"ts":1208876202465,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576604},
+{"pid":35295,"tid":1,"ts":1208876202470,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576609},
+{"pid":35295,"tid":1,"ts":1208876202480,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576619},
+{"pid":35295,"tid":1,"ts":1208876202482,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576621},
+{"pid":35295,"tid":1,"ts":1208876202488,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576627},
+{"pid":35295,"tid":1,"ts":1208876202490,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576629},
+{"pid":35295,"tid":1,"ts":1208876202493,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576632},
+{"pid":35295,"tid":1,"ts":1208876202495,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576634},
+{"pid":35295,"tid":1,"ts":1208876202498,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576637},
+{"pid":35295,"tid":1,"ts":1208876202501,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576640},
+{"pid":35295,"tid":1,"ts":1208876202504,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576643},
+{"pid":35295,"tid":1,"ts":1208876202506,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576645},
+{"pid":35295,"tid":1,"ts":1208876202509,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576648},
+{"pid":35295,"tid":1,"ts":1208876202511,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576650},
+{"pid":35295,"tid":1,"ts":1208876202514,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576653},
+{"pid":35295,"tid":1,"ts":1208876202516,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576655},
+{"pid":35295,"tid":1,"ts":1208876202519,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576658},
+{"pid":35295,"tid":1,"ts":1208876202521,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576660},
+{"pid":35295,"tid":1,"ts":1208876202524,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576663},
+{"pid":35295,"tid":1,"ts":1208876202527,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576666},
+{"pid":35295,"tid":1,"ts":1208876202530,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576669},
+{"pid":35295,"tid":1,"ts":1208876202532,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576671},
+{"pid":35295,"tid":1,"ts":1208876202535,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576674},
+{"pid":35295,"tid":1,"ts":1208876202537,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576676},
+{"pid":35295,"tid":1,"ts":1208876202540,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576679},
+{"pid":35295,"tid":1,"ts":1208876202543,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576682},
+{"pid":35295,"tid":1,"ts":1208876202546,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576685},
+{"pid":35295,"tid":1,"ts":1208876202548,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576688},
+{"pid":35295,"tid":1,"ts":1208876202551,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576691},
+{"pid":35295,"tid":1,"ts":1208876202554,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576693},
+{"pid":35295,"tid":1,"ts":1208876202557,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576696},
+{"pid":35295,"tid":1,"ts":1208876202559,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576698},
+{"pid":35295,"tid":1,"ts":1208876202562,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576701},
+{"pid":35295,"tid":1,"ts":1208876202564,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576703},
+{"pid":35295,"tid":1,"ts":1208876202567,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576706},
+{"pid":35295,"tid":1,"ts":1208876202569,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576708},
+{"pid":35295,"tid":1,"ts":1208876202572,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576711},
+{"pid":35295,"tid":1,"ts":1208876202574,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576713},
+{"pid":35295,"tid":1,"ts":1208876202577,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576717},
+{"pid":35295,"tid":1,"ts":1208876202580,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576719},
+{"pid":35295,"tid":1,"ts":1208876202586,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576726},
+{"pid":35295,"tid":1,"ts":1208876202589,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576728},
+{"pid":35295,"tid":1,"ts":1208876202592,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576731},
+{"pid":35295,"tid":1,"ts":1208876202594,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576733},
+{"pid":35295,"tid":1,"ts":1208876202597,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576736},
+{"pid":35295,"tid":1,"ts":1208876202599,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576738},
+{"pid":35295,"tid":1,"ts":1208876202602,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576741},
+{"pid":35295,"tid":1,"ts":1208876202604,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576743},
+{"pid":35295,"tid":1,"ts":1208876202607,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576746},
+{"pid":35295,"tid":1,"ts":1208876202609,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576748},
+{"pid":35295,"tid":1,"ts":1208876202612,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576751},
+{"pid":35295,"tid":1,"ts":1208876202614,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576754},
+{"pid":35295,"tid":1,"ts":1208876202618,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576757},
+{"pid":35295,"tid":1,"ts":1208876202620,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576759},
+{"pid":35295,"tid":1,"ts":1208876202626,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576765},
+{"pid":35295,"tid":1,"ts":1208876202628,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576768},
+{"pid":35295,"tid":1,"ts":1208876202632,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576771},
+{"pid":35295,"tid":1,"ts":1208876202640,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576779},
+{"pid":35295,"tid":1,"ts":1208876202643,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576782},
+{"pid":35295,"tid":1,"ts":1208876202645,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576784},
+{"pid":35295,"tid":1,"ts":1208876202648,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576787},
+{"pid":35295,"tid":1,"ts":1208876202650,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576789},
+{"pid":35295,"tid":1,"ts":1208876202653,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576792},
+{"pid":35295,"tid":1,"ts":1208876202655,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576795},
+{"pid":35295,"tid":1,"ts":1208876202658,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576798},
+{"pid":35295,"tid":1,"ts":1208876202661,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576800},
+{"pid":35295,"tid":1,"ts":1208876202664,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576803},
+{"pid":35295,"tid":1,"ts":1208876202666,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576805},
+{"pid":35295,"tid":1,"ts":1208876202669,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576808},
+{"pid":35295,"tid":1,"ts":1208876202671,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576810},
+{"pid":35295,"tid":1,"ts":1208876202674,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576813},
+{"pid":35295,"tid":1,"ts":1208876202676,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576815},
+{"pid":35295,"tid":1,"ts":1208876202679,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576818},
+{"pid":35295,"tid":1,"ts":1208876202681,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576820},
+{"pid":35295,"tid":1,"ts":1208876202684,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576823},
+{"pid":35295,"tid":1,"ts":1208876202686,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576825},
+{"pid":35295,"tid":1,"ts":1208876202689,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576829},
+{"pid":35295,"tid":1,"ts":1208876202692,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576831},
+{"pid":35295,"tid":1,"ts":1208876202694,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576834},
+{"pid":35295,"tid":1,"ts":1208876202697,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576836},
+{"pid":35295,"tid":1,"ts":1208876202700,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576839},
+{"pid":35295,"tid":1,"ts":1208876202702,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576842},
+{"pid":35295,"tid":1,"ts":1208876202706,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576845},
+{"pid":35295,"tid":1,"ts":1208876202708,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576847},
+{"pid":35295,"tid":1,"ts":1208876202711,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576850},
+{"pid":35295,"tid":1,"ts":1208876202713,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576852},
+{"pid":35295,"tid":1,"ts":1208876202716,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576856},
+{"pid":35295,"tid":1,"ts":1208876202719,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576858},
+{"pid":35295,"tid":1,"ts":1208876202722,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576861},
+{"pid":35295,"tid":1,"ts":1208876202724,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576863},
+{"pid":35295,"tid":1,"ts":1208876202727,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576866},
+{"pid":35295,"tid":1,"ts":1208876202729,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576868},
+{"pid":35295,"tid":1,"ts":1208876202732,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576871},
+{"pid":35295,"tid":1,"ts":1208876202734,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576873},
+{"pid":35295,"tid":1,"ts":1208876202737,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576876},
+{"pid":35295,"tid":1,"ts":1208876202739,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576878},
+{"pid":35295,"tid":1,"ts":1208876202742,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576881},
+{"pid":35295,"tid":1,"ts":1208876202744,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576884},
+{"pid":35295,"tid":1,"ts":1208876202747,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576887},
+{"pid":35295,"tid":1,"ts":1208876202750,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576889},
+{"pid":35295,"tid":1,"ts":1208876202753,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576892},
+{"pid":35295,"tid":1,"ts":1208876202755,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576894},
+{"pid":35295,"tid":1,"ts":1208876202758,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576897},
+{"pid":35295,"tid":1,"ts":1208876202760,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576899},
+{"pid":35295,"tid":1,"ts":1208876202764,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576903},
+{"pid":35295,"tid":1,"ts":1208876202766,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576905},
+{"pid":35295,"tid":1,"ts":1208876202771,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576910},
+{"pid":35295,"tid":1,"ts":1208876202773,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576912},
+{"pid":35295,"tid":1,"ts":1208876202776,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576915},
+{"pid":35295,"tid":1,"ts":1208876202778,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576917},
+{"pid":35295,"tid":1,"ts":1208876202781,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576920},
+{"pid":35295,"tid":1,"ts":1208876202783,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576923},
+{"pid":35295,"tid":1,"ts":1208876202786,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576926},
+{"pid":35295,"tid":1,"ts":1208876202788,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576928},
+{"pid":35295,"tid":1,"ts":1208876202791,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576931},
+{"pid":35295,"tid":1,"ts":1208876202794,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576933},
+{"pid":35295,"tid":1,"ts":1208876202797,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576936},
+{"pid":35295,"tid":1,"ts":1208876202800,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576939},
+{"pid":35295,"tid":1,"ts":1208876202806,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576946},
+{"pid":35295,"tid":1,"ts":1208876202809,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576948},
+{"pid":35295,"tid":1,"ts":1208876202812,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576951},
+{"pid":35295,"tid":1,"ts":1208876202819,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576958},
+{"pid":35295,"tid":1,"ts":1208876202822,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576962},
+{"pid":35295,"tid":1,"ts":1208876202824,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576964},
+{"pid":35295,"tid":1,"ts":1208876202828,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576967},
+{"pid":35295,"tid":1,"ts":1208876202830,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576969},
+{"pid":35295,"tid":1,"ts":1208876202833,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576972},
+{"pid":35295,"tid":1,"ts":1208876202835,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576974},
+{"pid":35295,"tid":1,"ts":1208876202838,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576977},
+{"pid":35295,"tid":1,"ts":1208876202840,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576979},
+{"pid":35295,"tid":1,"ts":1208876202843,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576982},
+{"pid":35295,"tid":1,"ts":1208876202845,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576985},
+{"pid":35295,"tid":1,"ts":1208876202848,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576987},
+{"pid":35295,"tid":1,"ts":1208876202851,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576990},
+{"pid":35295,"tid":1,"ts":1208876202854,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576993},
+{"pid":35295,"tid":1,"ts":1208876202856,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1576995},
+{"pid":35295,"tid":1,"ts":1208876202859,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1576999},
+{"pid":35295,"tid":1,"ts":1208876202862,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577001},
+{"pid":35295,"tid":1,"ts":1208876202865,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577004},
+{"pid":35295,"tid":1,"ts":1208876202867,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577007},
+{"pid":35295,"tid":1,"ts":1208876202870,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577010},
+{"pid":35295,"tid":1,"ts":1208876202872,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577012},
+{"pid":35295,"tid":1,"ts":1208876202875,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577015},
+{"pid":35295,"tid":1,"ts":1208876202878,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577017},
+{"pid":35295,"tid":1,"ts":1208876202881,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577020},
+{"pid":35295,"tid":1,"ts":1208876202883,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577022},
+{"pid":35295,"tid":1,"ts":1208876202886,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577025},
+{"pid":35295,"tid":1,"ts":1208876202888,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577027},
+{"pid":35295,"tid":1,"ts":1208876202891,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577030},
+{"pid":35295,"tid":1,"ts":1208876202893,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577032},
+{"pid":35295,"tid":1,"ts":1208876202896,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577035},
+{"pid":35295,"tid":1,"ts":1208876202898,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577037},
+{"pid":35295,"tid":1,"ts":1208876202901,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577040},
+{"pid":35295,"tid":1,"ts":1208876202903,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577043},
+{"pid":35295,"tid":1,"ts":1208876202906,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577046},
+{"pid":35295,"tid":1,"ts":1208876202908,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577048},
+{"pid":35295,"tid":1,"ts":1208876202911,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577051},
+{"pid":35295,"tid":1,"ts":1208876202914,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577053},
+{"pid":35295,"tid":1,"ts":1208876202918,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577058},
+{"pid":35295,"tid":1,"ts":1208876202921,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577060},
+{"pid":35295,"tid":1,"ts":1208876202924,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577063},
+{"pid":35295,"tid":1,"ts":1208876202926,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577066},
+{"pid":35295,"tid":1,"ts":1208876202929,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577069},
+{"pid":35295,"tid":1,"ts":1208876202932,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577071},
+{"pid":35295,"tid":1,"ts":1208876202935,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577074},
+{"pid":35295,"tid":1,"ts":1208876202937,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577076},
+{"pid":35295,"tid":1,"ts":1208876202940,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577079},
+{"pid":35295,"tid":1,"ts":1208876202942,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577081},
+{"pid":35295,"tid":1,"ts":1208876202945,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577084},
+{"pid":35295,"tid":1,"ts":1208876202947,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577087},
+{"pid":35295,"tid":1,"ts":1208876202950,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577090},
+{"pid":35295,"tid":1,"ts":1208876202952,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577092},
+{"pid":35295,"tid":1,"ts":1208876202955,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577095},
+{"pid":35295,"tid":1,"ts":1208876202958,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577097},
+{"pid":35295,"tid":1,"ts":1208876202961,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577100},
+{"pid":35295,"tid":1,"ts":1208876202963,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577102},
+{"pid":35295,"tid":1,"ts":1208876202966,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577105},
+{"pid":35295,"tid":1,"ts":1208876202968,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577107},
+{"pid":35295,"tid":1,"ts":1208876202971,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577110},
+{"pid":35295,"tid":1,"ts":1208876202973,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577112},
+{"pid":35295,"tid":1,"ts":1208876202976,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577115},
+{"pid":35295,"tid":1,"ts":1208876202978,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577117},
+{"pid":35295,"tid":1,"ts":1208876202981,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577121},
+{"pid":35295,"tid":1,"ts":1208876202983,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577123},
+{"pid":35295,"tid":1,"ts":1208876202986,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577126},
+{"pid":35295,"tid":1,"ts":1208876202997,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577137},
+{"pid":35295,"tid":1,"ts":1208876203001,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577140},
+{"pid":35295,"tid":1,"ts":1208876203003,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577142},
+{"pid":35295,"tid":1,"ts":1208876203006,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577145},
+{"pid":35295,"tid":1,"ts":1208876203008,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577147},
+{"pid":35295,"tid":1,"ts":1208876203011,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577150},
+{"pid":35295,"tid":1,"ts":1208876203013,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577152},
+{"pid":35295,"tid":1,"ts":1208876203016,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577155},
+{"pid":35295,"tid":1,"ts":1208876203018,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577158},
+{"pid":35295,"tid":1,"ts":1208876203021,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577161},
+{"pid":35295,"tid":1,"ts":1208876203023,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577163},
+{"pid":35295,"tid":1,"ts":1208876203026,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577166},
+{"pid":35295,"tid":1,"ts":1208876203029,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577168},
+{"pid":35295,"tid":1,"ts":1208876203032,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577171},
+{"pid":35295,"tid":1,"ts":1208876203034,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577174},
+{"pid":35295,"tid":1,"ts":1208876203037,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577177},
+{"pid":35295,"tid":1,"ts":1208876203040,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577179},
+{"pid":35295,"tid":1,"ts":1208876203043,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577182},
+{"pid":35295,"tid":1,"ts":1208876203045,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577184},
+{"pid":35295,"tid":1,"ts":1208876203048,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577187},
+{"pid":35295,"tid":1,"ts":1208876203050,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577189},
+{"pid":35295,"tid":1,"ts":1208876203053,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577192},
+{"pid":35295,"tid":1,"ts":1208876203055,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577194},
+{"pid":35295,"tid":1,"ts":1208876203058,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577197},
+{"pid":35295,"tid":1,"ts":1208876203060,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577200},
+{"pid":35295,"tid":1,"ts":1208876203065,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577204},
+{"pid":35295,"tid":1,"ts":1208876203067,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577207},
+{"pid":35295,"tid":1,"ts":1208876203070,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577210},
+{"pid":35295,"tid":1,"ts":1208876203072,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577212},
+{"pid":35295,"tid":1,"ts":1208876203075,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577215},
+{"pid":35295,"tid":1,"ts":1208876203078,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577217},
+{"pid":35295,"tid":1,"ts":1208876203081,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577220},
+{"pid":35295,"tid":1,"ts":1208876203083,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577222},
+{"pid":35295,"tid":1,"ts":1208876203086,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577225},
+{"pid":35295,"tid":1,"ts":1208876203088,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577228},
+{"pid":35295,"tid":1,"ts":1208876203091,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577231},
+{"pid":35295,"tid":1,"ts":1208876203093,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577233},
+{"pid":35295,"tid":1,"ts":1208876203097,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577236},
+{"pid":35295,"tid":1,"ts":1208876203099,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577238},
+{"pid":35295,"tid":1,"ts":1208876203102,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577241},
+{"pid":35295,"tid":1,"ts":1208876203104,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577244},
+{"pid":35295,"tid":1,"ts":1208876203107,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577247},
+{"pid":35295,"tid":1,"ts":1208876203109,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577249},
+{"pid":35295,"tid":1,"ts":1208876203112,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577252},
+{"pid":35295,"tid":1,"ts":1208876203115,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577254},
+{"pid":35295,"tid":1,"ts":1208876203118,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577257},
+{"pid":35295,"tid":1,"ts":1208876203120,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577259},
+{"pid":35295,"tid":1,"ts":1208876203123,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577262},
+{"pid":35295,"tid":1,"ts":1208876203125,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577264},
+{"pid":35295,"tid":1,"ts":1208876203128,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577267},
+{"pid":35295,"tid":1,"ts":1208876203131,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577271},
+{"pid":35295,"tid":1,"ts":1208876203137,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577276},
+{"pid":35295,"tid":1,"ts":1208876203142,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577282},
+{"pid":35295,"tid":1,"ts":1208876203144,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577284},
+{"pid":35295,"tid":1,"ts":1208876203151,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577290},
+{"pid":35295,"tid":1,"ts":1208876203154,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577293},
+{"pid":35295,"tid":1,"ts":1208876203161,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577300},
+{"pid":35295,"tid":1,"ts":1208876203164,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577303},
+{"pid":35295,"tid":1,"ts":1208876203169,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577309},
+{"pid":35295,"tid":1,"ts":1208876203173,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577313},
+{"pid":35295,"tid":1,"ts":1208876203175,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577315},
+{"pid":35295,"tid":1,"ts":1208876203178,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577318},
+{"pid":35295,"tid":1,"ts":1208876203181,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577321},
+{"pid":35295,"tid":1,"ts":1208876203184,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577324},
+{"pid":35295,"tid":1,"ts":1208876203193,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577332},
+{"pid":35295,"tid":1,"ts":1208876203196,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577336},
+{"pid":35295,"tid":1,"ts":1208876203199,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577338},
+{"pid":35295,"tid":1,"ts":1208876203202,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577342},
+{"pid":35295,"tid":1,"ts":1208876203204,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577344},
+{"pid":35295,"tid":1,"ts":1208876203207,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577347},
+{"pid":35295,"tid":1,"ts":1208876203209,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577349},
+{"pid":35295,"tid":1,"ts":1208876203214,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577353},
+{"pid":35295,"tid":1,"ts":1208876203218,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577358},
+{"pid":35295,"tid":1,"ts":1208876203221,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577361},
+{"pid":35295,"tid":1,"ts":1208876203223,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577363},
+{"pid":35295,"tid":1,"ts":1208876203226,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577366},
+{"pid":35295,"tid":1,"ts":1208876203229,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577368},
+{"pid":35295,"tid":1,"ts":1208876203232,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577371},
+{"pid":35295,"tid":1,"ts":1208876203234,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577373},
+{"pid":35295,"tid":1,"ts":1208876203237,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577376},
+{"pid":35295,"tid":1,"ts":1208876203239,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577379},
+{"pid":35295,"tid":1,"ts":1208876203244,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577384},
+{"pid":35295,"tid":1,"ts":1208876203247,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577386},
+{"pid":35295,"tid":1,"ts":1208876203250,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577390},
+{"pid":35295,"tid":1,"ts":1208876203253,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577392},
+{"pid":35295,"tid":1,"ts":1208876203256,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577395},
+{"pid":35295,"tid":1,"ts":1208876203258,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577397},
+{"pid":35295,"tid":1,"ts":1208876203261,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577400},
+{"pid":35295,"tid":1,"ts":1208876203263,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577403},
+{"pid":35295,"tid":1,"ts":1208876203266,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577406},
+{"pid":35295,"tid":1,"ts":1208876203268,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577408},
+{"pid":35295,"tid":1,"ts":1208876203271,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577411},
+{"pid":35295,"tid":1,"ts":1208876203273,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577413},
+{"pid":35295,"tid":1,"ts":1208876203276,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577416},
+{"pid":35295,"tid":1,"ts":1208876203279,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577418},
+{"pid":35295,"tid":1,"ts":1208876203282,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577421},
+{"pid":35295,"tid":1,"ts":1208876203284,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577423},
+{"pid":35295,"tid":1,"ts":1208876203287,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577426},
+{"pid":35295,"tid":1,"ts":1208876203289,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577428},
+{"pid":35295,"tid":1,"ts":1208876203292,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577431},
+{"pid":35295,"tid":1,"ts":1208876203294,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577434},
+{"pid":35295,"tid":1,"ts":1208876203297,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577437},
+{"pid":35295,"tid":1,"ts":1208876203299,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577439},
+{"pid":35295,"tid":1,"ts":1208876203302,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577442},
+{"pid":35295,"tid":1,"ts":1208876203305,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577444},
+{"pid":35295,"tid":1,"ts":1208876203308,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577448},
+{"pid":35295,"tid":1,"ts":1208876203311,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577450},
+{"pid":35295,"tid":1,"ts":1208876203314,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577453},
+{"pid":35295,"tid":1,"ts":1208876203316,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577455},
+{"pid":35295,"tid":1,"ts":1208876203319,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577458},
+{"pid":35295,"tid":1,"ts":1208876203321,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577460},
+{"pid":35295,"tid":1,"ts":1208876203324,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577464},
+{"pid":35295,"tid":1,"ts":1208876203326,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577466},
+{"pid":35295,"tid":1,"ts":1208876203329,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577469},
+{"pid":35295,"tid":1,"ts":1208876203331,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577471},
+{"pid":35295,"tid":1,"ts":1208876203334,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577474},
+{"pid":35295,"tid":1,"ts":1208876203336,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577476},
+{"pid":35295,"tid":1,"ts":1208876203340,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577479},
+{"pid":35295,"tid":1,"ts":1208876203343,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577482},
+{"pid":35295,"tid":1,"ts":1208876203351,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577490},
+{"pid":35295,"tid":1,"ts":1208876203353,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577493},
+{"pid":35295,"tid":1,"ts":1208876203356,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577496},
+{"pid":35295,"tid":1,"ts":1208876203358,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577498},
+{"pid":35295,"tid":1,"ts":1208876203361,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577501},
+{"pid":35295,"tid":1,"ts":1208876203363,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577503},
+{"pid":35295,"tid":1,"ts":1208876203368,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577508},
+{"pid":35295,"tid":1,"ts":1208876203370,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577510},
+{"pid":35295,"tid":1,"ts":1208876203373,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577513},
+{"pid":35295,"tid":1,"ts":1208876203381,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577520},
+{"pid":35295,"tid":1,"ts":1208876203384,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577524},
+{"pid":35295,"tid":1,"ts":1208876203386,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577526},
+{"pid":35295,"tid":1,"ts":1208876203389,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577529},
+{"pid":35295,"tid":1,"ts":1208876203391,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577531},
+{"pid":35295,"tid":1,"ts":1208876203394,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577534},
+{"pid":35295,"tid":1,"ts":1208876203397,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577536},
+{"pid":35295,"tid":1,"ts":1208876203400,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577539},
+{"pid":35295,"tid":1,"ts":1208876203402,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577542},
+{"pid":35295,"tid":1,"ts":1208876203405,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577545},
+{"pid":35295,"tid":1,"ts":1208876203408,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577547},
+{"pid":35295,"tid":1,"ts":1208876203411,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577550},
+{"pid":35295,"tid":1,"ts":1208876203413,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577553},
+{"pid":35295,"tid":1,"ts":1208876203416,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577556},
+{"pid":35295,"tid":1,"ts":1208876203418,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577558},
+{"pid":35295,"tid":1,"ts":1208876203421,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577561},
+{"pid":35295,"tid":1,"ts":1208876203423,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577563},
+{"pid":35295,"tid":1,"ts":1208876203426,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577566},
+{"pid":35295,"tid":1,"ts":1208876203428,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577568},
+{"pid":35295,"tid":1,"ts":1208876203432,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577571},
+{"pid":35295,"tid":1,"ts":1208876203434,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577573},
+{"pid":35295,"tid":1,"ts":1208876203437,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577576},
+{"pid":35295,"tid":1,"ts":1208876203439,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577578},
+{"pid":35295,"tid":1,"ts":1208876203442,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577581},
+{"pid":35295,"tid":1,"ts":1208876203444,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577584},
+{"pid":35295,"tid":1,"ts":1208876203447,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577587},
+{"pid":35295,"tid":1,"ts":1208876203449,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577589},
+{"pid":35295,"tid":1,"ts":1208876203452,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577592},
+{"pid":35295,"tid":1,"ts":1208876203455,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577594},
+{"pid":35295,"tid":1,"ts":1208876203458,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577597},
+{"pid":35295,"tid":1,"ts":1208876203460,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577599},
+{"pid":35295,"tid":1,"ts":1208876203463,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577603},
+{"pid":35295,"tid":1,"ts":1208876203466,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577605},
+{"pid":35295,"tid":1,"ts":1208876203469,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577608},
+{"pid":35295,"tid":1,"ts":1208876203471,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577611},
+{"pid":35295,"tid":1,"ts":1208876203474,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577614},
+{"pid":35295,"tid":1,"ts":1208876203476,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577616},
+{"pid":35295,"tid":1,"ts":1208876203479,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577619},
+{"pid":35295,"tid":1,"ts":1208876203481,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577621},
+{"pid":35295,"tid":1,"ts":1208876203484,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577624},
+{"pid":35295,"tid":1,"ts":1208876203486,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577626},
+{"pid":35295,"tid":1,"ts":1208876203489,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577629},
+{"pid":35295,"tid":1,"ts":1208876203492,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577631},
+{"pid":35295,"tid":1,"ts":1208876203495,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577634},
+{"pid":35295,"tid":1,"ts":1208876203497,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577637},
+{"pid":35295,"tid":1,"ts":1208876203503,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577643},
+{"pid":35295,"tid":1,"ts":1208876203506,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577645},
+{"pid":35295,"tid":1,"ts":1208876203509,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577648},
+{"pid":35295,"tid":1,"ts":1208876203511,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577651},
+{"pid":35295,"tid":1,"ts":1208876203514,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577654},
+{"pid":35295,"tid":1,"ts":1208876203516,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577656},
+{"pid":35295,"tid":1,"ts":1208876203521,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577660},
+{"pid":35295,"tid":1,"ts":1208876203523,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577663},
+{"pid":35295,"tid":1,"ts":1208876203526,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577666},
+{"pid":35295,"tid":1,"ts":1208876203528,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577668},
+{"pid":35295,"tid":1,"ts":1208876203531,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577671},
+{"pid":35295,"tid":1,"ts":1208876203533,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577673},
+{"pid":35295,"tid":1,"ts":1208876203536,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577676},
+{"pid":35295,"tid":1,"ts":1208876203539,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577678},
+{"pid":35295,"tid":1,"ts":1208876203542,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577681},
+{"pid":35295,"tid":1,"ts":1208876203544,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577683},
+{"pid":35295,"tid":1,"ts":1208876203547,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577686},
+{"pid":35295,"tid":1,"ts":1208876203549,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577689},
+{"pid":35295,"tid":1,"ts":1208876203552,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577692},
+{"pid":35295,"tid":1,"ts":1208876203560,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577700},
+{"pid":35295,"tid":1,"ts":1208876203563,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577703},
+{"pid":35295,"tid":1,"ts":1208876203566,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577705},
+{"pid":35295,"tid":1,"ts":1208876203569,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577708},
+{"pid":35295,"tid":1,"ts":1208876203571,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577710},
+{"pid":35295,"tid":1,"ts":1208876203574,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577713},
+{"pid":35295,"tid":1,"ts":1208876203576,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577716},
+{"pid":35295,"tid":1,"ts":1208876203579,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577719},
+{"pid":35295,"tid":1,"ts":1208876203581,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577721},
+{"pid":35295,"tid":1,"ts":1208876203584,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577724},
+{"pid":35295,"tid":1,"ts":1208876203586,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577726},
+{"pid":35295,"tid":1,"ts":1208876203589,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577729},
+{"pid":35295,"tid":1,"ts":1208876203591,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577731},
+{"pid":35295,"tid":1,"ts":1208876203594,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577734},
+{"pid":35295,"tid":1,"ts":1208876203596,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577736},
+{"pid":35295,"tid":1,"ts":1208876203600,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577739},
+{"pid":35295,"tid":1,"ts":1208876203602,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577741},
+{"pid":35295,"tid":1,"ts":1208876203605,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577744},
+{"pid":35295,"tid":1,"ts":1208876203607,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577747},
+{"pid":35295,"tid":1,"ts":1208876203610,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577749},
+{"pid":35295,"tid":1,"ts":1208876203612,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577752},
+{"pid":35295,"tid":1,"ts":1208876203615,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577755},
+{"pid":35295,"tid":1,"ts":1208876203617,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577757},
+{"pid":35295,"tid":1,"ts":1208876203620,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577760},
+{"pid":35295,"tid":1,"ts":1208876203622,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577762},
+{"pid":35295,"tid":1,"ts":1208876203625,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577765},
+{"pid":35295,"tid":1,"ts":1208876203627,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577767},
+{"pid":35295,"tid":1,"ts":1208876203630,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577770},
+{"pid":35295,"tid":1,"ts":1208876203632,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577772},
+{"pid":35295,"tid":1,"ts":1208876203636,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577775},
+{"pid":35295,"tid":1,"ts":1208876203638,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577778},
+{"pid":35295,"tid":1,"ts":1208876203643,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577783},
+{"pid":35295,"tid":1,"ts":1208876203646,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1577786},
+{"pid":35295,"tid":1,"ts":1208876203654,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1577794},
+{"pid":35295,"tid":1,"ts":1208876204244,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1578379},
+{"pid":35295,"tid":1,"ts":1208876204250,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1578384},
+{"pid":35295,"tid":1,"ts":1208876204316,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1578450},
+{"pid":35295,"tid":1,"ts":1208876204319,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1578453},
+{"pid":35295,"tid":1,"ts":1208876204381,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1578516},
+{"pid":35295,"tid":1,"ts":1208876204391,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1578526},
+{"pid":35295,"tid":1,"ts":1208876204642,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1578777},
+{"pid":35295,"tid":1,"ts":1208876204865,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579001},
+{"pid":35295,"tid":1,"ts":1208876204870,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579005},
+{"pid":35295,"tid":1,"ts":1208876204878,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579012},
+{"pid":35295,"tid":1,"ts":1208876205093,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579229},
+{"pid":35295,"tid":1,"ts":1208876205104,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579238},
+{"pid":35295,"tid":1,"ts":1208876205106,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579241},
+{"pid":35295,"tid":1,"ts":1208876205112,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579247},
+{"pid":35295,"tid":1,"ts":1208876205133,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579268},
+{"pid":35295,"tid":1,"ts":1208876205136,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579270},
+{"pid":35295,"tid":1,"ts":1208876205140,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579275},
+{"pid":35295,"tid":1,"ts":1208876205145,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579280},
+{"pid":35295,"tid":1,"ts":1208876205150,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579285},
+{"pid":35295,"tid":1,"ts":1208876205236,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579371},
+{"pid":35295,"tid":1,"ts":1208876205651,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579787},
+{"pid":35295,"tid":1,"ts":1208876205657,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579792},
+{"pid":35295,"tid":1,"ts":1208876205671,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579806},
+{"pid":35295,"tid":1,"ts":1208876205674,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579809},
+{"pid":35295,"tid":1,"ts":1208876205679,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579814},
+{"pid":35295,"tid":1,"ts":1208876205682,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579817},
+{"pid":35295,"tid":1,"ts":1208876205718,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579854},
+{"pid":35295,"tid":1,"ts":1208876205722,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579857},
+{"pid":35295,"tid":1,"ts":1208876205726,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579861},
+{"pid":35295,"tid":1,"ts":1208876205728,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579863},
+{"pid":35295,"tid":1,"ts":1208876205759,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579894},
+{"pid":35295,"tid":1,"ts":1208876205762,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579897},
+{"pid":35295,"tid":1,"ts":1208876205767,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579902},
+{"pid":35295,"tid":1,"ts":1208876205769,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579904},
+{"pid":35295,"tid":1,"ts":1208876205773,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579908},
+{"pid":35295,"tid":1,"ts":1208876205775,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579910},
+{"pid":35295,"tid":1,"ts":1208876205779,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579914},
+{"pid":35295,"tid":1,"ts":1208876205781,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579916},
+{"pid":35295,"tid":1,"ts":1208876205794,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579929},
+{"pid":35295,"tid":1,"ts":1208876205796,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579931},
+{"pid":35295,"tid":1,"ts":1208876205800,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579935},
+{"pid":35295,"tid":1,"ts":1208876205802,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579937},
+{"pid":35295,"tid":1,"ts":1208876205805,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1579940},
+{"pid":35295,"tid":1,"ts":1208876205806,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579941},
+{"pid":35295,"tid":1,"ts":1208876205818,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579953},
+{"pid":35295,"tid":1,"ts":1208876205825,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1579960},
+{"pid":35295,"tid":1,"ts":1208876205982,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580118},
+{"pid":35295,"tid":1,"ts":1208876205988,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580124},
+{"pid":35295,"tid":1,"ts":1208876205996,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580131},
+{"pid":35295,"tid":1,"ts":1208876206057,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580193},
+{"pid":35295,"tid":1,"ts":1208876206062,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580197},
+{"pid":35295,"tid":1,"ts":1208876206186,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580322},
+{"pid":35295,"tid":1,"ts":1208876206463,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580600},
+{"pid":35295,"tid":1,"ts":1208876206487,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580622},
+{"pid":35295,"tid":1,"ts":1208876206494,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580630},
+{"pid":35295,"tid":1,"ts":1208876206498,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580633},
+{"pid":35295,"tid":1,"ts":1208876206504,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580639},
+{"pid":35295,"tid":1,"ts":1208876206506,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580642},
+{"pid":35295,"tid":1,"ts":1208876206509,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580645},
+{"pid":35295,"tid":1,"ts":1208876206512,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580647},
+{"pid":35295,"tid":1,"ts":1208876206530,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580665},
+{"pid":35295,"tid":1,"ts":1208876206533,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580669},
+{"pid":35295,"tid":1,"ts":1208876206537,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580672},
+{"pid":35295,"tid":1,"ts":1208876206542,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580678},
+{"pid":35295,"tid":1,"ts":1208876206551,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580687},
+{"pid":35295,"tid":1,"ts":1208876206554,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580690},
+{"pid":35295,"tid":1,"ts":1208876206559,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580695},
+{"pid":35295,"tid":1,"ts":1208876206561,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580697},
+{"pid":35295,"tid":1,"ts":1208876206564,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580700},
+{"pid":35295,"tid":1,"ts":1208876206573,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580709},
+{"pid":35295,"tid":1,"ts":1208876206578,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580713},
+{"pid":35295,"tid":1,"ts":1208876206580,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580716},
+{"pid":35295,"tid":1,"ts":1208876206584,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580719},
+{"pid":35295,"tid":1,"ts":1208876206586,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580721},
+{"pid":35295,"tid":1,"ts":1208876206590,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580726},
+{"pid":35295,"tid":1,"ts":1208876206593,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580728},
+{"pid":35295,"tid":1,"ts":1208876206597,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580733},
+{"pid":35295,"tid":1,"ts":1208876206600,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580735},
+{"pid":35295,"tid":1,"ts":1208876206603,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580738},
+{"pid":35295,"tid":1,"ts":1208876206607,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580743},
+{"pid":35295,"tid":1,"ts":1208876206611,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580746},
+{"pid":35295,"tid":1,"ts":1208876206613,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580749},
+{"pid":35295,"tid":1,"ts":1208876206616,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580752},
+{"pid":35295,"tid":1,"ts":1208876206618,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580754},
+{"pid":35295,"tid":1,"ts":1208876206621,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580757},
+{"pid":35295,"tid":1,"ts":1208876206624,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580759},
+{"pid":35295,"tid":1,"ts":1208876206627,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580762},
+{"pid":35295,"tid":1,"ts":1208876206629,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580764},
+{"pid":35295,"tid":1,"ts":1208876206632,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580767},
+{"pid":35295,"tid":1,"ts":1208876206634,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580770},
+{"pid":35295,"tid":1,"ts":1208876206637,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580773},
+{"pid":35295,"tid":1,"ts":1208876206639,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580775},
+{"pid":35295,"tid":1,"ts":1208876206650,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580786},
+{"pid":35295,"tid":1,"ts":1208876206653,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580789},
+{"pid":35295,"tid":1,"ts":1208876206663,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580799},
+{"pid":35295,"tid":1,"ts":1208876206668,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580804},
+{"pid":35295,"tid":1,"ts":1208876206672,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580807},
+{"pid":35295,"tid":1,"ts":1208876206674,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580810},
+{"pid":35295,"tid":1,"ts":1208876206677,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580813},
+{"pid":35295,"tid":1,"ts":1208876206679,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580815},
+{"pid":35295,"tid":1,"ts":1208876206682,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580818},
+{"pid":35295,"tid":1,"ts":1208876206685,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580820},
+{"pid":35295,"tid":1,"ts":1208876206688,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580823},
+{"pid":35295,"tid":1,"ts":1208876206690,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580825},
+{"pid":35295,"tid":1,"ts":1208876206693,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580828},
+{"pid":35295,"tid":1,"ts":1208876206695,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580830},
+{"pid":35295,"tid":1,"ts":1208876206698,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580833},
+{"pid":35295,"tid":1,"ts":1208876206700,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580835},
+{"pid":35295,"tid":1,"ts":1208876206707,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1580843},
+{"pid":35295,"tid":1,"ts":1208876206710,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1580845},
+{"pid":35295,"tid":1,"ts":1208876206994,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581131},
+{"pid":35295,"tid":1,"ts":1208876207003,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581139},
+{"pid":35295,"tid":1,"ts":1208876207047,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581183},
+{"pid":35295,"tid":1,"ts":1208876207050,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581186},
+{"pid":35295,"tid":1,"ts":1208876207067,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581203},
+{"pid":35295,"tid":1,"ts":1208876207070,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581206},
+{"pid":35295,"tid":1,"ts":1208876207221,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581358},
+{"pid":35295,"tid":1,"ts":1208876207225,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581361},
+{"pid":35295,"tid":1,"ts":1208876207519,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581656},
+{"pid":35295,"tid":1,"ts":1208876207524,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581660},
+{"pid":35295,"tid":1,"ts":1208876207543,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581679},
+{"pid":35295,"tid":1,"ts":1208876207546,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581682},
+{"pid":35295,"tid":1,"ts":1208876207552,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581688},
+{"pid":35295,"tid":1,"ts":1208876207554,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581690},
+{"pid":35295,"tid":1,"ts":1208876207596,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581732},
+{"pid":35295,"tid":1,"ts":1208876207604,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581740},
+{"pid":35295,"tid":1,"ts":1208876207622,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581758},
+{"pid":35295,"tid":1,"ts":1208876207625,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581761},
+{"pid":35295,"tid":1,"ts":1208876207628,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581764},
+{"pid":35295,"tid":1,"ts":1208876207630,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581766},
+{"pid":35295,"tid":1,"ts":1208876207634,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581770},
+{"pid":35295,"tid":1,"ts":1208876207636,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581772},
+{"pid":35295,"tid":1,"ts":1208876207679,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581816},
+{"pid":35295,"tid":1,"ts":1208876207736,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581873},
+{"pid":35295,"tid":1,"ts":1208876207805,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581942},
+{"pid":35295,"tid":1,"ts":1208876207810,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581946},
+{"pid":35295,"tid":1,"ts":1208876207817,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581953},
+{"pid":35295,"tid":1,"ts":1208876207820,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581957},
+{"pid":35295,"tid":1,"ts":1208876207831,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581967},
+{"pid":35295,"tid":1,"ts":1208876207841,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581978},
+{"pid":35295,"tid":1,"ts":1208876207845,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581982},
+{"pid":35295,"tid":1,"ts":1208876207848,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581984},
+{"pid":35295,"tid":1,"ts":1208876207853,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581990},
+{"pid":35295,"tid":1,"ts":1208876207857,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581993},
+{"pid":35295,"tid":1,"ts":1208876207860,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1581996},
+{"pid":35295,"tid":1,"ts":1208876207862,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1581998},
+{"pid":35295,"tid":1,"ts":1208876207873,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582010},
+{"pid":35295,"tid":1,"ts":1208876207876,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582012},
+{"pid":35295,"tid":1,"ts":1208876207880,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582016},
+{"pid":35295,"tid":1,"ts":1208876207882,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582018},
+{"pid":35295,"tid":1,"ts":1208876207885,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582021},
+{"pid":35295,"tid":1,"ts":1208876207887,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582023},
+{"pid":35295,"tid":1,"ts":1208876207890,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582026},
+{"pid":35295,"tid":1,"ts":1208876207892,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582029},
+{"pid":35295,"tid":1,"ts":1208876207895,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582032},
+{"pid":35295,"tid":1,"ts":1208876207897,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582034},
+{"pid":35295,"tid":1,"ts":1208876207901,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582037},
+{"pid":35295,"tid":1,"ts":1208876207903,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582039},
+{"pid":35295,"tid":1,"ts":1208876207925,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582061},
+{"pid":35295,"tid":1,"ts":1208876207927,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582064},
+{"pid":35295,"tid":1,"ts":1208876207947,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582083},
+{"pid":35295,"tid":1,"ts":1208876207949,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582086},
+{"pid":35295,"tid":1,"ts":1208876207957,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582093},
+{"pid":35295,"tid":1,"ts":1208876207959,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582095},
+{"pid":35295,"tid":1,"ts":1208876207980,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582117},
+{"pid":35295,"tid":1,"ts":1208876207983,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582119},
+{"pid":35295,"tid":1,"ts":1208876208143,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582280},
+{"pid":35295,"tid":1,"ts":1208876208150,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582287},
+{"pid":35295,"tid":1,"ts":1208876208157,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582293},
+{"pid":35295,"tid":1,"ts":1208876208271,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582408},
+{"pid":35295,"tid":1,"ts":1208876208282,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582418},
+{"pid":35295,"tid":1,"ts":1208876208286,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582423},
+{"pid":35295,"tid":1,"ts":1208876208290,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582426},
+{"pid":35295,"tid":1,"ts":1208876208352,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582489},
+{"pid":35295,"tid":1,"ts":1208876208356,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582493},
+{"pid":35295,"tid":1,"ts":1208876208359,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582496},
+{"pid":35295,"tid":1,"ts":1208876208365,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582501},
+{"pid":35295,"tid":1,"ts":1208876208367,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582504},
+{"pid":35295,"tid":1,"ts":1208876208379,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582516},
+{"pid":35295,"tid":1,"ts":1208876208381,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582518},
+{"pid":35295,"tid":1,"ts":1208876208390,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582526},
+{"pid":35295,"tid":1,"ts":1208876208394,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582530},
+{"pid":35295,"tid":1,"ts":1208876209056,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582933},
+{"pid":35295,"tid":1,"ts":1208876209067,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1582943},
+{"pid":35295,"tid":1,"ts":1208876209073,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1582949},
+{"pid":35295,"tid":1,"ts":1208876209250,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583127},
+{"pid":35295,"tid":1,"ts":1208876209257,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583133},
+{"pid":35295,"tid":1,"ts":1208876209262,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583138},
+{"pid":35295,"tid":1,"ts":1208876209421,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583298},
+{"pid":35295,"tid":1,"ts":1208876209431,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583307},
+{"pid":35295,"tid":1,"ts":1208876209480,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583357},
+{"pid":35295,"tid":1,"ts":1208876209520,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583396},
+{"pid":35295,"tid":1,"ts":1208876209524,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583400},
+{"pid":35295,"tid":1,"ts":1208876209528,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583404},
+{"pid":35295,"tid":1,"ts":1208876209558,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583434},
+{"pid":35295,"tid":1,"ts":1208876209563,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583439},
+{"pid":35295,"tid":1,"ts":1208876209601,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583477},
+{"pid":35295,"tid":1,"ts":1208876209612,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583488},
+{"pid":35295,"tid":1,"ts":1208876209631,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583507},
+{"pid":35295,"tid":1,"ts":1208876209676,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583553},
+{"pid":35295,"tid":1,"ts":1208876209682,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583558},
+{"pid":35295,"tid":1,"ts":1208876209691,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583567},
+{"pid":35295,"tid":1,"ts":1208876209953,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583830},
+{"pid":35295,"tid":1,"ts":1208876210022,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1583900},
+{"pid":35295,"tid":1,"ts":1208876210026,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1583903},
+{"pid":35295,"tid":1,"ts":1208876210128,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584005},
+{"pid":35295,"tid":1,"ts":1208876210162,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1584039},
+{"pid":35295,"tid":1,"ts":1208876210352,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1584230},
+{"pid":35295,"tid":1,"ts":1208876210365,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584242},
+{"pid":35295,"tid":1,"ts":1208876210368,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584244},
+{"pid":35295,"tid":1,"ts":1208876210387,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1584264},
+{"pid":35295,"tid":1,"ts":1208876210409,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1584286},
+{"pid":35295,"tid":1,"ts":1208876210416,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584293},
+{"pid":35295,"tid":1,"ts":1208876210418,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584295},
+{"pid":35295,"tid":1,"ts":1208876210421,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584297},
+{"pid":35295,"tid":1,"ts":1208876210427,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1584303},
+{"pid":35295,"tid":1,"ts":1208876210430,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584307},
+{"pid":35295,"tid":1,"ts":1208876210437,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1584313},
+{"pid":35295,"tid":1,"ts":1208876211245,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[277,380],\"AccessorNameSetterCallback\":[164,63],\"Compile\":[11,274],\"CompileCode\":[217,502],\"CompileCodeLazy\":[229,3182],\"CompileFullCode\":[241,4081],\"FunctionCallback\":[997,3503],\"GenericNamedPropertyQueryCallback\":[9,5],\"GenericNamedPropertySetterCallback\":[17,61],\"IndexedPropertyGetterCallback\":[4,6],\"JS_Execution\":[730,3041],\"Map_SetPrototype\":[916,92],\"Map_TransitionToAccessorProperty\":[9,12],\"Map_TransitionToDataProperty\":[993,1347],\"Object_DeleteProperty\":[1,3],\"OptimizeCode\":[9,115],\"Parse\":[11,3725],\"ParseLazy\":[226,6343],\"PrototypeMap_TransitionToDataProperty\":[125,144],\"RecompileSynchronous\":[18,1345],\"BinaryOpIC_Miss\":[62,180],\"CallIC_Miss\":[6,4],\"CompareIC_Miss\":[86,141],\"KeyedLoadIC_Miss\":[212,249],\"KeyedStoreIC_Miss\":[147,549],\"KeyedStoreIC_MissFromStubFailure\":[1,4],\"LoadElementWithInterceptor\":[2,1],\"LoadGlobalIC_Miss\":[335,327],\"LoadGlobalIC_Slow\":[11,9],\"LoadIC_Miss\":[1255,1450],\"LoadPropertyWithInterceptor\":[1,1],\"StoreCallbackProperty\":[152,22],\"StoreIC_Miss\":[945,1076],\"ToBooleanIC_Miss\":[318,219],\"RemoveArrayHoles\":[1,1],\"ArrayPush\":[11,20],\"ArraySpeciesConstructor\":[5,1],\"CompileLazy\":[201,335],\"CompileOptimized_Concurrent\":[9,35],\"NotifyStubFailure\":[71,27],\"TryInstallOptimizedCode\":[3,117],\"ForInEnumerate\":[41,45],\"AllocateInTargetSpace\":[12,6],\"CreateListFromArrayLike\":[82,78],\"Interrupt\":[24,77],\"StackGuard\":[6,74],\"CreateRegExpLiteral\":[25,107],\"CreateObjectLiteral\":[104,265],\"CreateArrayLiteral\":[8,6],\"CreateArrayLiteralStubBailout\":[41,63],\"InternalSetPrototype\":[42,32],\"SetPrototype\":[10,13],\"GetProperty\":[47,5],\"KeyedGetProperty\":[37,30],\"SetProperty\":[114,155],\"HasProperty\":[20,12],\"NewObject\":[29,59],\"FinalizeInstanceSize\":[3,3],\"ToString\":[35,19],\"CreateDataProperty\":[5,6],\"StringReplaceGlobalRegExpWithString\":[2,23],\"StringSplit\":[4,33],\"RegExpExec\":[81,185],\"RegExpFlags\":[945,22],\"RegExpInitializeAndCompile\":[1,1],\"RegExpExecMultiple\":[5,27],\"DeclareGlobals\":[1,299],\"NewClosure\":[290,164],\"NewClosure_Tenured\":[230,105],\"StringIndexOf\":[6,4],\"StringAdd\":[33,18],\"StringBuilderConcat\":[1,2],\"StringToUpperCase\":[23,7],\"StringEqual\":[1,0],\"HandleApiCall\":[917,196],\"ArrayConcat\":[19,9],\"ArrayShift\":[15,25],\"ArraySlice\":[41,50],\"ArraySplice\":[44,42],\"DateNow\":[28,9],\"JsonStringify\":[1,5],\"ObjectAssign\":[3,3],\"ObjectCreate\":[3,5],\"ObjectDefineProperty\":[7,14],\"ObjectKeys\":[3,6],\"API_Array_New\":[1,0],\"API_External_New\":[60,18],\"API_Function_Call\":[677,2848],\"API_Function_NewInstance\":[1,6],\"API_FunctionTemplate_GetFunction\":[112,110],\"API_FunctionTemplate_New\":[55,33],\"API_Object_CreateDataProperty\":[12,13],\"API_Object_DefineOwnProperty\":[158,105],\"API_Object_Delete\":[1,0],\"API_Object_Get\":[1850,202],\"API_Object_GetPropertyNames\":[1,4],\"API_Object_HasOwnProperty\":[18,4],\"API_Object_HasRealNamedProperty\":[1,1],\"API_Object_New\":[67,23],\"API_Object_Set\":[87,28],\"API_Object_SetPrivate\":[32,30],\"API_Object_SetPrototype\":[34,18],\"API_ObjectTemplate_NewInstance\":[38,182],\"API_Persistent_New\":[66,18],\"API_ScriptCompiler_CompileUnbound\":[11,382],\"API_Script_Run\":[11,62],\"API_String_Concat\":[22,6],\"API_String_NewExternalOneByte\":[15,5],\"API_String_NewFromOneByte\":[19,10],\"API_String_NewFromUtf8\":[660,121],\"API_StringObject_New\":[57,6],\"API_String_Write\":[73,22],\"API_String_WriteUtf8\":[205,42],\"END\":[]}"},"tts":1585123},
+{"pid":35295,"tid":1,"ts":1208876211283,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":79,"tdur":78,"tts":1585161},
+{"pid":35295,"tid":1,"ts":1208876211297,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1585174},
+{"pid":35295,"tid":1,"ts":1208876211347,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,1],\"JS_Execution\":[1,22],\"CreateObjectLiteral\":[10,4],\"GetProperty\":[5,1],\"Equal\":[3,0],\"HandleApiCall\":[1,0],\"DateNow\":[1,0],\"API_Array_New\":[2,2],\"API_Object_CreateDataProperty\":[8,1],\"API_Persistent_New\":[1,0],\"END\":[]}"},"tts":1585225},
+{"pid":35295,"tid":1,"ts":1208876211495,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":68,"tdur":67,"tts":1585373},
+{"pid":35295,"tid":1,"ts":1208876211510,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1585388},
+{"pid":35295,"tid":1,"ts":1208876211557,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"JS_Execution\":[1,18],\"CreateObjectLiteral\":[10,4],\"GetProperty\":[5,1],\"Equal\":[3,0],\"HandleApiCall\":[1,1],\"DateNow\":[1,0],\"API_Array_New\":[2,5],\"API_Object_CreateDataProperty\":[8,1],\"END\":[]}"},"tts":1585435},
+{"pid":35295,"tid":1,"ts":1208876211596,"ph":"X","cat":"v8","name":"v8.callModuleMethod","args":{"module_name":"messaging","method_name":"dispatchOnDisconnect"},"dur":1458,"tdur":1459,"tts":1585473},
+{"pid":35295,"tid":1,"ts":1208876211605,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":1447,"tdur":1446,"tts":1585483},
+{"pid":35295,"tid":1,"ts":1208876211618,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1585496},
+{"pid":35295,"tid":1,"ts":1208876212025,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1585903},
+{"pid":35295,"tid":1,"ts":1208876212035,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1585913},
+{"pid":35295,"tid":1,"ts":1208876212061,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1585939},
+{"pid":35295,"tid":1,"ts":1208876212109,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1585988},
+{"pid":35295,"tid":1,"ts":1208876212114,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1585992},
+{"pid":35295,"tid":1,"ts":1208876212277,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586156},
+{"pid":35295,"tid":1,"ts":1208876212284,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586162},
+{"pid":35295,"tid":1,"ts":1208876212316,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586194},
+{"pid":35295,"tid":1,"ts":1208876212359,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586237},
+{"pid":35295,"tid":1,"ts":1208876212467,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586346},
+{"pid":35295,"tid":1,"ts":1208876212471,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586349},
+{"pid":35295,"tid":1,"ts":1208876212596,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586475},
+{"pid":35295,"tid":1,"ts":1208876212601,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586479},
+{"pid":35295,"tid":1,"ts":1208876212609,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586487},
+{"pid":35295,"tid":1,"ts":1208876212756,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586635},
+{"pid":35295,"tid":1,"ts":1208876212904,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586782},
+{"pid":35295,"tid":1,"ts":1208876212936,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586814},
+{"pid":35295,"tid":1,"ts":1208876212969,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1586847},
+{"pid":35295,"tid":1,"ts":1208876213042,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[4,2],\"AccessorNameSetterCallback\":[2,2],\"CompileCode\":[2,1],\"CompileCodeLazy\":[18,162],\"CompileFullCode\":[18,206],\"FunctionCallback\":[27,129],\"JS_Execution\":[12,64],\"Map_SetPrototype\":[9,4],\"Map_TransitionToAccessorProperty\":[1,1],\"Map_TransitionToDataProperty\":[53,38],\"Object_DeleteProperty\":[2,6],\"ParseLazy\":[18,361],\"BinaryOpIC_Miss\":[1,2],\"CallIC_Miss\":[1,1],\"CompareIC_Miss\":[2,2],\"KeyedLoadIC_Miss\":[4,19],\"LoadGlobalIC_Miss\":[3,4],\"LoadIC_Miss\":[68,55],\"StoreIC_Miss\":[9,10],\"ToBooleanIC_Miss\":[17,12],\"CompileLazy\":[18,23],\"NotifyStubFailure\":[1,0],\"CreateObjectLiteral\":[3,7],\"CreateArrayLiteralStubBailout\":[1,1],\"DeleteProperty_Strict\":[6,4],\"HandleApiCall\":[27,6],\"ArraySlice\":[2,3],\"ErrorCaptureStackTrace\":[2,165],\"ObjectDefineProperty\":[1,3],\"API_Function_Call\":[9,58],\"API_Object_Get\":[74,8],\"API_Object_New\":[8,3],\"API_Object_Set\":[21,14],\"API_Object_SetPrivate\":[1,1],\"API_Object_SetPrototype\":[8,6],\"API_String_NewFromUtf8\":[75,14],\"API_String_WriteUtf8\":[25,1],\"END\":[]}"},"tts":1586921},
+{"pid":35295,"tid":1,"ts":1208876213084,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":76,"tdur":74,"tts":1586964},
+{"pid":35295,"tid":1,"ts":1208876213098,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1586977},
+{"pid":35295,"tid":1,"ts":1208876213153,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"FunctionCallback\":[1,1],\"JS_Execution\":[1,16],\"Map_SetPrototype\":[1,0],\"Map_TransitionToDataProperty\":[2,4],\"CompareIC_Miss\":[4,3],\"LoadGlobalIC_Slow\":[1,2],\"LoadIC_Miss\":[3,5],\"ToBooleanIC_Miss\":[2,1],\"NotifyStubFailure\":[2,0],\"API_Object_CreateDataProperty\":[1,2],\"API_Object_Get\":[2,0],\"API_Object_HasOwnProperty\":[3,1],\"API_Object_New\":[1,1],\"API_Object_SetPrivate\":[1,1],\"API_String_NewFromUtf8\":[2,1],\"END\":[]}"},"tts":1587032},
+{"pid":35295,"tid":1,"ts":1208876213170,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":42,"tdur":40,"tts":1587049},
+{"pid":35295,"tid":1,"ts":1208876213182,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1587060},
+{"pid":35295,"tid":1,"ts":1208876213206,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"CompileCodeLazy\":[1,0],\"JS_Execution\":[3,7],\"CompareIC_Miss\":[1,2],\"LoadGlobalIC_Slow\":[1,1],\"CompileLazy\":[1,1],\"Equal\":[1,2],\"API_Object_Get\":[1,0],\"API_Object_HasOwnProperty\":[1,0],\"END\":[]}"},"tts":1587085},
+{"pid":35295,"tid":1,"ts":1208876213220,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":327,"tdur":326,"tts":1587099},
+{"pid":35295,"tid":1,"ts":1208876213231,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1587109},
+{"pid":35295,"tid":1,"ts":1208876213538,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,0],\"CompileCodeLazy\":[1,26],\"CompileFullCode\":[1,33],\"FunctionCallback\":[8,7],\"JS_Execution\":[1,23],\"Map_TransitionToDataProperty\":[22,2],\"ParseLazy\":[1,50],\"CompareIC_Miss\":[2,11],\"LoadGlobalIC_Miss\":[1,3],\"LoadIC_Miss\":[41,51],\"StoreIC_Miss\":[44,73],\"ToBooleanIC_Miss\":[4,0],\"CompileLazy\":[1,7],\"NotifyStubFailure\":[1,0],\"StringEqual\":[3,1],\"API_Object_Get\":[3,0],\"API_Object_HasOwnProperty\":[3,1],\"API_Persistent_New\":[1,1],\"API_String_NewExternalOneByte\":[1,0],\"END\":[]}"},"tts":1587418},
+{"pid":35295,"tid":1,"ts":1208876213608,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":38,"tdur":36,"tts":1587488},
+{"pid":35295,"tid":1,"ts":1208876213623,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1587502},
+{"pid":35295,"tid":1,"ts":1208876213641,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,2],\"LoadIC_Miss\":[1,4],\"END\":[]}"},"tts":1587520},
+{"pid":35295,"tid":1,"ts":1208876213660,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":96,"tdur":95,"tts":1587539},
+{"pid":35295,"tid":1,"ts":1208876213777,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":234,"tdur":233,"tts":1587656},
+{"pid":35295,"tid":1,"ts":1208876213791,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1587670},
+{"pid":35295,"tid":1,"ts":1208876214002,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[4,29],\"FunctionCallback\":[4,134],\"JS_Execution\":[1,3],\"LoadIC_Miss\":[8,14],\"StoreIC_Miss\":[1,5],\"ToBooleanIC_Miss\":[4,1],\"LoadLookupSlot\":[6,7],\"HandleApiCall\":[2,2],\"API_Persistent_New\":[2,0],\"API_String_Write\":[1,1],\"END\":[]}"},"tts":1587882},
+{"pid":35295,"tid":1,"ts":1208876214024,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":55,"tdur":54,"tts":1587903},
+{"pid":35295,"tid":1,"ts":1208876214036,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1587915},
+{"pid":35295,"tid":1,"ts":1208876214073,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,7],\"LoadIC_Miss\":[5,19],\"END\":[]}"},"tts":1587952},
+{"pid":35295,"tid":1,"ts":1208876214088,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":3767,"tdur":3762,"tts":1587967},
+{"pid":35295,"tid":1,"ts":1208876214099,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1587978},
+{"pid":35295,"tid":1,"ts":1208876215673,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":16,"tdur":11,"tts":1589557},
+{"pid":35295,"tid":1,"ts":1208876215682,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1589562},
+{"pid":35295,"tid":1,"ts":1208876215686,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1589566},
+{"pid":35295,"tid":1,"ts":1208876217070,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":16,"tdur":10,"tts":1590949},
+{"pid":35295,"tid":1,"ts":1208876217079,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1590954},
+{"pid":35295,"tid":1,"ts":1208876217083,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1590957},
+{"pid":35295,"tid":1,"ts":1208876217740,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[45,529],\"CompileCode\":[4,0],\"CompileCodeLazy\":[21,364],\"CompileFullCode\":[18,440],\"FunctionCallback\":[83,210],\"IndexedPropertyGetterCallback\":[2,1],\"JS_Execution\":[1,286],\"Map_SetPrototype\":[119,19],\"Map_TransitionToAccessorProperty\":[46,50],\"Map_TransitionToDataProperty\":[26,45],\"Object_DeleteProperty\":[1,12],\"ParseLazy\":[18,688],\"BinaryOpIC_Miss\":[30,75],\"BinaryOpIC_MissWithAllocationSite\":[2,9],\"CallIC_Miss\":[5,3],\"CompareIC_Miss\":[17,25],\"ElementsTransitionAndStoreIC_Miss\":[1,1],\"KeyedLoadIC_Miss\":[60,76],\"KeyedStoreIC_Miss\":[15,45],\"LoadElementWithInterceptor\":[1,1],\"LoadGlobalIC_Miss\":[47,50],\"LoadGlobalIC_Slow\":[12,7],\"LoadIC_Miss\":[168,230],\"LoadPropertyWithInterceptor\":[1,0],\"StoreIC_Miss\":[17,30],\"ToBooleanIC_Miss\":[68,35],\"RemoveArrayHoles\":[1,0],\"ArrayPush\":[5,9],\"CompileLazy\":[21,56],\"NotifyStubFailure\":[21,7],\"ForInEnumerate\":[4,12],\"CreateObjectLiteral\":[26,19],\"CreateArrayLiteral\":[1,11],\"CreateArrayLiteralStubBailout\":[9,13],\"NumberToStringSkipCache\":[18,6],\"GetProperty\":[1,1],\"KeyedGetProperty\":[29,13],\"DeleteProperty_Sloppy\":[1,1],\"FinalizeInstanceSize\":[1,0],\"StringReplaceGlobalRegExpWithString\":[1,2],\"RegExpFlags\":[3,0],\"NewClosure_Tenured\":[1,2],\"StringAdd\":[3,0],\"StringBuilderConcat\":[1,2],\"StringBuilderJoin\":[3,2],\"StringEqual\":[5,2],\"HandleApiCall\":[23,17],\"DateConstructor_ConstructStub\":[1,2],\"GlobalDecodeURIComponent\":[1,1],\"API_External_New\":[1,1],\"API_Function_NewInstance\":[2,13],\"API_FunctionTemplate_GetFunction\":[2,44],\"API_Object_DeleteProperty\":[1,0],\"API_Object_Get\":[35,5],\"API_Object_HasOwnProperty\":[4,0],\"API_Object_New\":[3,1],\"API_Object_SetAccessor\":[39,110],\"API_Object_SetPrivate\":[2,1],\"API_Object_SetPrototype\":[1,2],\"API_Persistent_New\":[21,3],\"API_String_NewExternalOneByte\":[5,4],\"API_String_NewFromOneByte\":[7,5],\"API_String_NewFromUtf8\":[48,8],\"API_String_Write\":[9,1],\"API_String_WriteUtf8\":[3,1],\"END\":[]}"},"tts":1591616},
+{"pid":35295,"tid":1,"ts":1208876217902,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":36,"tdur":34,"tts":1591778},
+{"pid":35295,"tid":1,"ts":1208876217915,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1591790},
+{"pid":35295,"tid":1,"ts":1208876217934,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,0],\"Map_SetPrototype\":[1,0],\"Map_TransitionToAccessorProperty\":[1,1],\"END\":[]}"},"tts":1591809},
+{"pid":35295,"tid":1,"ts":1208876217948,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":92,"tdur":91,"tts":1591823},
+{"pid":35295,"tid":1,"ts":1208876217961,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1591836},
+{"pid":35295,"tid":1,"ts":1208876218032,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"CompileCodeLazy\":[1,14],\"CompileFullCode\":[1,13],\"FunctionCallback\":[1,1],\"JS_Execution\":[1,3],\"ParseLazy\":[1,17],\"LoadGlobalIC_Miss\":[1,2],\"LoadIC_Miss\":[1,2],\"StoreIC_Miss\":[1,1],\"ToBooleanIC_Miss\":[2,1],\"CompileLazy\":[1,1],\"END\":[]}"},"tts":1591908},
+{"pid":35295,"tid":1,"ts":1208876218636,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":1001,"tdur":951,"tts":1592512},
+{"pid":35295,"tid":1,"ts":1208876218645,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":17992072},"tts":1592521},
+{"pid":35295,"tid":1,"ts":1208876219628,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":17576272},"tts":1593458},
+{"pid":35295,"tid":1,"ts":1208876220311,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":33,"tdur":32,"tts":1593724},
+{"pid":35295,"tid":1,"ts":1208876220322,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":17576272,"type":"weak processing"},"tts":1593735},
+{"pid":35295,"tid":1,"ts":1208876220340,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":17576272},"tts":1593753},
+{"pid":35295,"tid":1,"ts":1208876248406,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":263,"tdur":258,"tts":1594357},
+{"pid":35295,"tid":1,"ts":1208876248453,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1594401},
+{"pid":35295,"tid":1,"ts":1208876248653,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[1,3],\"CompileCodeLazy\":[1,32],\"CompileFullCode\":[1,33],\"JS_Execution\":[1,7],\"ParseLazy\":[1,50],\"LoadGlobalIC_Miss\":[1,11],\"LoadIC_Miss\":[2,5],\"CompileLazy\":[1,2],\"DeleteProperty_Sloppy\":[1,4],\"END\":[]}"},"tts":1594602},
+{"pid":35295,"tid":1,"ts":1208877000182,"ph":"X","cat":"v8","name":"ScheduledAction::execute","args":{},"dur":4409,"tdur":4385,"tts":1596015},
+{"pid":35295,"tid":1,"ts":1208877000211,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":4374,"tdur":4357,"tts":1596036},
+{"pid":35295,"tid":1,"ts":1208877000262,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1596086},
+{"pid":35295,"tid":1,"ts":1208877004374,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[19,8],\"CompileCode\":[8,0],\"CompileCodeLazy\":[17,378],\"CompileFullCode\":[17,529],\"FunctionCallback\":[14,489],\"IndexedPropertyGetterCallback\":[1,3],\"JS_Execution\":[1,425],\"Map_SetPrototype\":[22,5],\"Map_TransitionToDataProperty\":[24,70],\"ParseLazy\":[17,905],\"BinaryOpIC_Miss\":[12,88],\"BinaryOpIC_MissWithAllocationSite\":[1,15],\"CompareIC_Miss\":[6,35],\"KeyedLoadIC_Miss\":[26,50],\"KeyedStoreIC_Miss\":[10,56],\"LoadGlobalIC_Miss\":[2,9],\"LoadIC_Miss\":[175,448],\"StoreIC_Miss\":[32,182],\"ToBooleanIC_Miss\":[7,13],\"ArrayPush\":[1,5],\"ArraySpeciesConstructor\":[2,1],\"CompileLazy\":[16,46],\"NotifyStubFailure\":[3,3],\"ForInEnumerate\":[3,13],\"CreateListFromArrayLike\":[3,7],\"Interrupt\":[2,15],\"CreateRegExpLiteral\":[1,24],\"CreateObjectLiteral\":[2,12],\"CreateArrayLiteralStubBailout\":[1,4],\"NumberToStringSkipCache\":[3,6],\"KeyedGetProperty\":[12,6],\"NewObject\":[1,6],\"CreateDataProperty\":[1,5],\"RegExpExec\":[26,55],\"RegExpFlags\":[56,6],\"NewClosure_Tenured\":[2,11],\"StringIndexOf\":[14,9],\"StringAdd\":[5,3],\"StringBuilderConcat\":[1,3],\"StringBuilderJoin\":[3,7],\"StringEqual\":[1,1],\"HandleApiCall\":[4,7],\"ArraySlice\":[3,10],\"DateConstructor_ConstructStub\":[1,3],\"GlobalEncodeURIComponent\":[28,21],\"API_External_New\":[3,2],\"API_Object_Get\":[2,2],\"API_Object_HasOwnProperty\":[5,3],\"API_Object_SetPrivate\":[3,6],\"API_Persistent_New\":[6,2],\"API_String_NewFromOneByte\":[5,7],\"API_String_Write\":[2,4],\"END\":[]}"},"tts":1600186},
+{"pid":35295,"tid":1,"ts":1208877013062,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://www.gstatic.com/og/_/js/k=og.og2.en_US.JpvILO1OBxk.O/rt=j/m=def/exm=in,fot/d=1/ed=1/rs=AA2YrTujEpXGqbTYowqUNLHJAPP37jkVNw","data":{"columnNumber":1,"lineNumber":1,"url":"https://www.gstatic.com/og/_/js/k=og.og2.en_US.JpvILO1OBxk.O/rt=j/m=def/exm=in,fot/d=1/ed=1/rs=AA2YrTujEpXGqbTYowqUNLHJAPP37jkVNw"}},"dur":2006,"tdur":2000,"tts":1603495},
+{"pid":35295,"tid":1,"ts":1208877013100,"ph":"B","cat":"v8","name":"V8.ScriptCompiler","args":{},"tts":1603528},
+{"pid":35295,"tid":1,"ts":1208877015043,"ph":"E","cat":"v8","name":"V8.ScriptCompiler","args":{"runtime-call-stats":"{\"CompileDeserialize\":[1,1538],\"END\":[]}"},"tts":1605473},
+{"pid":35295,"tid":1,"ts":1208877015076,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://www.gstatic.com/og/_/js/k=og.og2.en_US.JpvILO1OBxk.O/rt=j/m=def/exm=in,fot/d=1/ed=1/rs=AA2YrTujEpXGqbTYowqUNLHJAPP37jkVNw"},"dur":25244,"tdur":24909,"tts":1605506},
+{"pid":35295,"tid":1,"ts":1208877015109,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1605538},
+{"pid":35295,"tid":1,"ts":1208877035465,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingStart","args":{},"dur":13,"tdur":11,"tts":1625651},
+{"pid":35295,"tid":1,"ts":1208877036334,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":13,"tdur":11,"tts":1626521},
+{"pid":35295,"tid":1,"ts":1208877037255,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":17,"tdur":13,"tts":1627444},
+{"pid":35295,"tid":1,"ts":1208877037263,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1627449},
+{"pid":35295,"tid":1,"ts":1208877037269,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1627455},
+{"pid":35295,"tid":1,"ts":1208877038793,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":340,"tdur":246,"tts":1628981},
+{"pid":35295,"tid":1,"ts":1208877040303,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[361,423],\"AccessorNameSetterCallback\":[270,134],\"CompileCode\":[22,6],\"CompileCodeLazy\":[272,2260],\"CompileFullCode\":[138,3173],\"FunctionCallback\":[105,1103],\"GenericNamedPropertySetterCallback\":[1,10],\"IndexedPropertyGetterCallback\":[23,150],\"JS_Execution\":[22,2609],\"Map_SetPrototype\":[1364,183],\"Map_TransitionToAccessorProperty\":[40,34],\"Map_TransitionToDataProperty\":[672,1263],\"OptimizeCode\":[2,25],\"ParseLazy\":[138,5065],\"PrototypeMap_TransitionToDataProperty\":[484,492],\"RecompileSynchronous\":[4,318],\"BinaryOpIC_Miss\":[40,232],\"CallIC_Miss\":[3,3],\"CompareIC_Miss\":[37,74],\"ElementsTransitionAndStoreIC_Miss\":[1,2],\"KeyedLoadIC_Miss\":[116,207],\"KeyedStoreIC_Miss\":[91,442],\"LoadElementWithInterceptor\":[21,12],\"LoadGlobalIC_Miss\":[9,29],\"LoadIC_Miss\":[1870,2485],\"StoreCallbackProperty\":[270,40],\"StoreIC_Miss\":[1034,1613],\"ToBooleanIC_Miss\":[226,195],\"RemoveArrayHoles\":[1,2],\"MoveArrayContents\":[2,1],\"ArrayPush\":[13,35],\"ArraySpeciesConstructor\":[8,2],\"CompileLazy\":[103,184],\"CompileOptimized_Concurrent\":[2,7],\"NotifyStubFailure\":[64,36],\"NotifyDeoptimized\":[1,17],\"ForInEnumerate\":[6,13],\"CreateListFromArrayLike\":[23,25],\"Interrupt\":[6,20],\"OrdinaryHasInstance\":[1,3],\"StackGuard\":[2,53],\"CreateRegExpLiteral\":[26,205],\"CreateObjectLiteral\":[55,126],\"CreateArrayLiteralStubBailout\":[36,76],\"NumberToStringSkipCache\":[3,1],\"GetProperty\":[16,11],\"KeyedGetProperty\":[112,102],\"SetProperty\":[12,21],\"DeleteProperty_Sloppy\":[10,2],\"HasProperty\":[23,18],\"NewObject\":[169,224],\"FinalizeInstanceSize\":[4,4],\"ToString\":[19,22],\"Compare\":[2,1],\"CreateDataProperty\":[17,12],\"StringReplaceGlobalRegExpWithString\":[16,16],\"StringSplit\":[36,108],\"RegExpExec\":[31,436],\"RegExpFlags\":[126,4],\"RegExpInitializeAndCompile\":[4,29],\"NewClosure\":[1,149],\"NewClosure_Tenured\":[570,306],\"StringIndexOf\":[12,1],\"StringBuilderConcat\":[7,2],\"StringBuilderJoin\":[3,3],\"StringEqual\":[1,0],\"HandleApiCall\":[78,37],\"ArrayConcat\":[4,6],\"ArrayShift\":[79,31],\"ArraySlice\":[2,2],\"ArrayUnshift\":[1,1],\"DateConstructor_ConstructStub\":[1,2],\"FunctionPrototypeToString\":[19,27],\"GlobalDecodeURI\":[1,2],\"GlobalDecodeURIComponent\":[10,8],\"GlobalEncodeURIComponent\":[5,8],\"NumberPrototypeToString\":[34,12],\"ObjectCreate\":[19,7],\"API_External_New\":[20,17],\"API_Function_NewInstance\":[1,9],\"API_FunctionTemplate_GetFunction\":[2,52],\"API_Object_CreateDataProperty\":[1,2],\"API_Object_Get\":[2,0],\"API_Object_HasOwnProperty\":[20,5],\"API_Object_SetPrivate\":[20,13],\"API_Object_SetPrototype\":[2,5],\"API_Object_ToNumber\":[1,0],\"API_Persistent_New\":[66,23],\"API_String_NewExternalOneByte\":[2,3],\"API_String_NewFromOneByte\":[22,13],\"API_String_Write\":[5,2],\"END\":[]}"},"tts":1630400},
+{"pid":35295,"tid":1,"ts":1208877040349,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":96,"tdur":95,"tts":1630445},
+{"pid":35295,"tid":1,"ts":1208877040363,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1630459},
+{"pid":35295,"tid":1,"ts":1208877040437,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,1],\"JS_Execution\":[1,33],\"LoadIC_Miss\":[2,6],\"CreateObjectLiteral\":[10,6],\"GetProperty\":[5,1],\"Equal\":[3,1],\"HandleApiCall\":[1,1],\"DateNow\":[1,1],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[8,2],\"END\":[]}"},"tts":1630533},
+{"pid":35295,"tid":1,"ts":1208877040459,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":650,"tdur":650,"tts":1630555},
+{"pid":35295,"tid":1,"ts":1208877040471,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1630567},
+{"pid":35295,"tid":1,"ts":1208877040992,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[3,2],\"CompileCode\":[1,0],\"CompileCodeLazy\":[5,47],\"CompileFullCode\":[5,72],\"FunctionCallback\":[1,8],\"JS_Execution\":[1,147],\"Map_TransitionToDataProperty\":[4,4],\"ParseLazy\":[5,94],\"BinaryOpIC_Miss\":[1,2],\"CallIC_Miss\":[1,1],\"CompareIC_Miss\":[1,1],\"KeyedLoadIC_Miss\":[3,5],\"KeyedStoreIC_Miss\":[1,2],\"LoadIC_Miss\":[42,54],\"StoreIC_Miss\":[3,2],\"ToBooleanIC_Miss\":[3,3],\"CompileLazy\":[5,7],\"CreateListFromArrayLike\":[1,2],\"CreateObjectLiteral\":[2,5],\"NumberToStringSkipCache\":[2,2],\"GetProperty\":[1,2],\"KeyedGetProperty\":[14,1],\"HasProperty\":[1,1],\"StringSplit\":[1,5],\"RegExpFlags\":[2,0],\"NewClosure_Tenured\":[1,1],\"StringIndexOf\":[14,1],\"StringAdd\":[5,1],\"StringBuilderConcat\":[1,1],\"StringBuilderJoin\":[1,2],\"StringEqual\":[1,0],\"HandleApiCall\":[1,1],\"ArrayConcat\":[2,1],\"ArrayShift\":[2,2],\"ArraySlice\":[2,1],\"DateConstructor_ConstructStub\":[1,1],\"GlobalEncodeURIComponent\":[28,6],\"API_External_New\":[1,0],\"API_Object_Get\":[2,1],\"API_Object_HasOwnProperty\":[3,0],\"API_Object_SetPrivate\":[1,2],\"API_Persistent_New\":[2,1],\"API_String_NewFromOneByte\":[3,1],\"API_String_Write\":[1,0],\"END\":[]}"},"tts":1631089},
+{"pid":35295,"tid":1,"ts":1208877042022,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":46,"tdur":44,"tts":1632120},
+{"pid":35295,"tid":1,"ts":1208877042041,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1632138},
+{"pid":35295,"tid":1,"ts":1208877042062,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,3],\"DeleteProperty_Sloppy\":[1,1],\"END\":[]}"},"tts":1632159},
+{"pid":35295,"tid":1,"ts":1208877042112,"ph":"X","cat":"v8","name":"V8.GCScavenger","args":{},"dur":1551,"tdur":1550,"tts":1632210},
+{"pid":35295,"tid":1,"ts":1208877042120,"ph":"B","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeBefore":18914680},"tts":1632217},
+{"pid":35295,"tid":1,"ts":1208877043655,"ph":"E","cat":"devtools.timeline,v8","name":"MinorGC","args":{"usedHeapSizeAfter":18727864},"tts":1633755},
+{"pid":35295,"tid":1,"ts":1208877043775,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":16,"tdur":14,"tts":1633825},
+{"pid":35295,"tid":1,"ts":1208877043783,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":18727864,"type":"weak processing"},"tts":1633833},
+{"pid":35295,"tid":1,"ts":1208877043787,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":18727864},"tts":1633837},
+{"pid":35295,"tid":1,"ts":1208877043799,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":3752,"tdur":3747,"tts":1633848},
+{"pid":35295,"tid":1,"ts":1208877047554,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":3453,"tdur":3454,"tts":1637599},
+{"pid":35295,"tid":1,"ts":1208877051009,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":4308,"tdur":4304,"tts":1641056},
+{"pid":35295,"tid":1,"ts":1208877055319,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":1990,"tdur":1989,"tts":1645364},
+{"pid":35295,"tid":1,"ts":1208877057313,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingFinalize","args":{},"dur":424,"tdur":424,"tts":1647358},
+{"pid":35295,"tid":1,"ts":1208877057323,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":18727864,"type":"incremental marking"},"tts":1647369},
+{"pid":35295,"tid":1,"ts":1208877057731,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":18727864},"tts":1647779},
+{"pid":35295,"tid":1,"ts":1208877058299,"ph":"X","cat":"v8,devtools.timeline","name":"v8.compile","args":{"fileName":"https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.xej1Zm3gE0Y.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-sR4lSlZfnlntJ-N0rG1mLyBSreQ/cb=gapi.loaded_0","data":{"columnNumber":1,"lineNumber":1,"url":"https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.xej1Zm3gE0Y.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-sR4lSlZfnlntJ-N0rG1mLyBSreQ/cb=gapi.loaded_0"}},"dur":80,"tdur":76,"tts":1648348},{"pid":35295,"tid":1,"ts":1208877058309,"ph":"X","cat":"v8","name":"V8.ScriptCompiler","args":{},"dur":50,"tdur":49,"tts":1648355},
+{"pid":35295,"tid":1,"ts":1208877058383,"ph":"X","cat":"v8","name":"v8.run","args":{"fileName":"https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.xej1Zm3gE0Y.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AHpOoo-sR4lSlZfnlntJ-N0rG1mLyBSreQ/cb=gapi.loaded_0"},"dur":39789,"tdur":39518,"tts":1648430},
+{"pid":35295,"tid":1,"ts":1208877058403,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1648450},
+{"pid":35295,"tid":1,"ts":1208877072600,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":67,"tdur":65,"tts":1662651},
+{"pid":35295,"tid":1,"ts":1208877077712,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarkingFinalize","args":{},"dur":174,"tdur":172,"tts":1667761},
+{"pid":35295,"tid":1,"ts":1208877077725,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":19253848,"type":"incremental marking"},"tts":1667773},
+{"pid":35295,"tid":1,"ts":1208877077880,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":19253848},"tts":1667929},
+{"pid":35295,"tid":1,"ts":1208877078591,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":178,"tdur":176,"tts":1668640},
+{"pid":35295,"tid":1,"ts":1208877082553,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":104,"tdur":102,"tts":1672604},
+{"pid":35295,"tid":1,"ts":1208877084104,"ph":"X","cat":"v8","name":"v8.newInstance","args":{},"dur":15,"tdur":11,"tts":1674159},
+{"pid":35295,"tid":1,"ts":1208877084112,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1674164},
+{"pid":35295,"tid":1,"ts":1208877084116,"ph":"E","cat":"v8","name":"V8.Execute","args":{},"tts":1674168},
+{"pid":35295,"tid":1,"ts":1208877085346,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":132,"tdur":131,"tts":1675399},
+{"pid":35295,"tid":1,"ts":1208877086687,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":97,"tdur":95,"tts":1676741},
+{"pid":35295,"tid":1,"ts":1208877089438,"ph":"X","cat":"v8","name":"V8.DeoptimizeCode","args":{},"dur":16,"tdur":13,"tts":1679211},
+{"pid":35295,"tid":1,"ts":1208877090606,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":154,"tdur":152,"tts":1680380},
+{"pid":35295,"tid":1,"ts":1208877092480,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":125,"tdur":122,"tts":1682255},
+{"pid":35295,"tid":1,"ts":1208877096299,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":100,"tdur":98,"tts":1686076},
+{"pid":35295,"tid":1,"ts":1208877098053,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"AccessorNameGetterCallback\":[505,808],\"AccessorNameSetterCallback\":[16,9],\"CompileCode\":[831,166],\"CompileCodeLazy\":[171,4407],\"CompileFullCode\":[157,4585],\"DeoptimizeCode\":[1,13],\"FunctionCallback\":[88,726],\"IndexedPropertyGetterCallback\":[48,11],\"JS_Execution\":[64,2289],\"Map_SetPrototype\":[1229,102],\"Map_TransitionToAccessorProperty\":[1,3],\"Map_TransitionToDataProperty\":[1085,2367],\"OptimizeCode\":[1,7],\"ParseLazy\":[135,16780],\"PrototypeMap_TransitionToDataProperty\":[89,103],\"RecompileSynchronous\":[2,53],\"BinaryOpIC_Miss\":[59,181],\"CallIC_Miss\":[5,4],\"CompareIC_Miss\":[85,138],\"KeyedLoadIC_Miss\":[494,342],\"KeyedStoreIC_Miss\":[456,1000],\"KeyedStoreIC_MissFromStubFailure\":[2,8],\"LoadElementWithInterceptor\":[45,4],\"LoadGlobalIC_Miss\":[18,26],\"LoadIC_Miss\":[1883,1357],\"LoadPropertyWithInterceptor\":[6,2],\"StoreCallbackProperty\":[8,2],\"StoreIC_Miss\":[818,863],\"ToBooleanIC_Miss\":[288,207],\"ArrayPush\":[9,11],\"CompileLazy\":[152,225],\"CompileOptimized_Concurrent\":[1,3],\"NotifyStubFailure\":[102,29],\"NotifyDeoptimized\":[1,18],\"TryInstallOptimizedCode\":[1,17],\"ForInEnumerate\":[45,45],\"IsConstructor\":[1,0],\"AllocateInNewSpace\":[1,138],\"AllocateInTargetSpace\":[7,107],\"CreateListFromArrayLike\":[4,5],\"Interrupt\":[11,28],\"StackGuard\":[2,185],\"CreateRegExpLiteral\":[27,251],\"CreateObjectLiteral\":[130,304],\"CreateArrayLiteralStubBailout\":[67,77],\"NumberToStringSkipCache\":[1,2],\"GetProperty\":[329,60],\"KeyedGetProperty\":[527,153],\"SetProperty\":[44,25],\"DeleteProperty_Sloppy\":[1,0],\"HasProperty\":[165,56],\"NewObject\":[19,47],\"ToString\":[56,38],\"StringReplaceGlobalRegExpWithString\":[9,10],\"StringSplit\":[194,352],\"RegExpExec\":[207,294],\"RegExpFlags\":[451,14],\"RegExpInitializeAndCompile\":[6,28],\"NewClosure\":[1,2],\"NewClosure_Tenured\":[398,195],\"StringIndexOf\":[57,6],\"StringAdd\":[5,4],\"StringBuilderJoin\":[4,5],\"StringToLowerCase\":[3,2],\"StringEqual\":[4,0],\"HandleApiCall\":[59,16],\"ArrayShift\":[526,110],\"ArraySlice\":[5,5],\"DateConstructor_ConstructStub\":[7,8],\"DateNow\":[1,1],\"FunctionPrototypeToString\":[57,61],\"GlobalEncodeURIComponent\":[26,3],\"JsonParse\":[1,2],\"JsonStringify\":[1,5],\"ObjectCreate\":[47,10],\"ObjectDefineProperty\":[1,5],\"API_External_New\":[3,2],\"API_Function_NewInstance\":[1,6],\"API_FunctionTemplate_GetFunction\":[3,7],\"API_Object_CreateDataProperty\":[2,5],\"API_Object_Get\":[4,1],\"API_Object_HasOwnProperty\":[7,4],\"API_Object_New\":[2,1],\"API_Object_Set\":[8,5],\"API_Object_SetPrivate\":[4,5],\"API_Object_ToNumber\":[1,0],\"API_Object_ToString\":[1,0],\"API_Persistent_New\":[112,14],\"API_String_NewExternalOneByte\":[92,11],\"API_String_NewFromOneByte\":[9,4],\"API_String_NewFromUtf8\":[9,2],\"API_String_Write\":[52,4],\"API_String_WriteUtf8\":[45,8],\"END\":[]}"},"tts":1687832},
+{"pid":35295,"tid":1,"ts":1208877098195,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":105,"tdur":103,"tts":1687973},
+{"pid":35295,"tid":1,"ts":1208877098211,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1687988},
+{"pid":35295,"tid":1,"ts":1208877098292,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"FunctionCallback\":[1,1],\"JS_Execution\":[1,23],\"KeyedLoadIC_Miss\":[1,2],\"LoadIC_Miss\":[3,11],\"CreateObjectLiteral\":[10,7],\"GetProperty\":[4,1],\"Equal\":[3,1],\"HandleApiCall\":[1,0],\"DateNow\":[1,0],\"API_Array_New\":[2,1],\"API_Object_CreateDataProperty\":[8,4],\"END\":[]}"},"tts":1688070},
+{"pid":35295,"tid":1,"ts":1208877098663,"ph":"X","cat":"v8","name":"v8.callFunction","args":{},"dur":40,"tdur":38,"tts":1688442},
+{"pid":35295,"tid":1,"ts":1208877098679,"ph":"B","cat":"v8","name":"V8.Execute","args":{},"tts":1688457},
+{"pid":35295,"tid":1,"ts":1208877098698,"ph":"E","cat":"v8","name":"V8.Execute","args":{"runtime-call-stats":"{\"JS_Execution\":[1,1],\"DeleteProperty_Sloppy\":[1,2],\"END\":[]}"},"tts":1688475},
+{"pid":35295,"tid":1,"ts":1208877098732,"ph":"X","cat":"v8","name":"V8.GCIncrementalMarking","args":{},"dur":608,"tdur":607,"tts":1688509},
+{"pid":35295,"tid":1,"ts":1208877099350,"ph":"X","cat":"v8","name":"V8.GCFinalizeMC","args":{},"dur":2495,"tdur":2414,"tts":1689128},
+{"pid":35295,"tid":1,"ts":1208877099357,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":20202272,"type":"atomic pause"},"tts":1689135},
+{"pid":35295,"tid":1,"ts":1208877101833,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":11598504},"tts":1691533},
+{"pid":35295,"tid":1,"ts":1208877102013,"ph":"X","cat":"v8","name":"V8.GCPhantomHandleProcessingCallback","args":{},"dur":49,"tdur":49,"tts":1691613},
+{"pid":35295,"tid":1,"ts":1208877102020,"ph":"B","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeBefore":11598504,"type":"weak processing"},"tts":1691621},
+{"pid":35295,"tid":1,"ts":1208877102058,"ph":"E","cat":"devtools.timeline,v8","name":"MajorGC","args":{"usedHeapSizeAfter":11598504},"tts":1691659},
+{"pid":35295,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":48}},
+{"pid":35295,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-5}},
+{"pid":35295,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"Renderer"}},
+{"pid":35295,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"process_labels","args":{"labels":"Google"}},
+{"pid":35295,"tid":1,"ts":0,"ph":"M","cat":"__metadata","name":"thread_sort_index","args":{"sort_index":-1}},
+{"pid":35295,"tid":1,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrRendererMain"}},
+{"pid":35295,"tid":2,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},
+{"pid":35295,"tid":10,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"ScriptStreamerThread"}},{"pid":35111,"tid":35111,"ts":1208875226824,"ph":"M","cat":"__metadata","name":"TraceConfig","args":{"value":{"enable_argument_filter":false,"enable_sampling":false,"enable_systrace":false,"excluded_categories":["audio","benchmark","blink","blink_gc","blink_style","blink.animations","blink.net","blink.user_timing","Blob","browser","CacheStorage","cc","cdp.perf","content","CRLSet","CRLSetFetcher","devtools","devtools.timeline","event","FileSystem","gpu","gpu.capture","IndexedDB","input","io","ipc","latencyInfo","leveldb","loader","loading","media","mojo_shell","mojom","navigation","net","netlog","omnibox","rail","renderer","renderer_host","renderer.scheduler","sandbox_ipc","ServiceWorker","shutdown","SiteEngagement","skia","startup","test_fps","test_gpu","test_tracing","toplevel","ui","ValueStoreFrontend::Backend","views","WebCore","worker.scheduler"],"included_categories":["disabled-by-default-v8.runtime_stats"],"record_mode":"record-until-full"}},"tts":4823679},
+{"pid":35111,"tid":35111,"ts":1208875226817,"ph":"M","cat":"__metadata","name":"IsTimeTicksHighResolution","args":{"value":true},"tts":4823671},
+{"pid":35111,"tid":0,"ts":0,"ph":"M","cat":"__metadata","name":"num_cpus","args":{"number":48}},
+{"pid":35111,"tid":35170,"ts":0,"ph":"M","cat":"__metadata","name":"process_sort_index","args":{"sort_index":-6}},
+{"pid":35111,"tid":35170,"ts":0,"ph":"M","cat":"__metadata","name":"process_name","args":{"name":"Browser"}},
+{"pid":35111,"tid":35170,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_FileThread"}},
+{"pid":35111,"tid":35174,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"Chrome_IOThread"}},
+{"pid":35111,"tid":35111,"ts":0,"ph":"M","cat":"__metadata","name":"thread_name","args":{"name":"CrBrowserMain"}}],"metadata": {"clock-domain":"LINUX_CLOCK_MONOTONIC","command_line":"/usr/local/google/home/lpy/chromium/src/out/Release/chrome --wm-user-time-ms=1208816138 --flag-switches-begin --flag-switches-end --disable_transparent_visuals --window-depth=24 --x11-visual-id=33","cpu-brand":"Intel(R) Xeon(R) CPU E5-2690 v3 @ 2.60GHz","cpu-family":6,"cpu-model":63,"cpu-stepping":2,"field-trials":["ba3f87da-92cc81ec","f049a919-3f4a17df","43d0dd1e-3f4a17df","9e243dd-3f4a17df","64cbdfc2-3f4a17df","6b121ae7-3f4a17df","5139837c-3f4a17df","b7786474-d93a0620","7382e39a-3f4a17df","868bda90-3f4a17df","4ea303a6-3f4a17df","9736de91-3f4a17df","ad6d27cc-3e870323","867c4c68-3f4a17df","d747916f-d747916f","fe05be5f-4ad60575","828a5926-d8f52f32"],"gpu-devid":5050,"gpu-driver":"340.96","gpu-gl-renderer":"Quadro K2200/PCIe/SSE2","gpu-gl-vendor":"NVIDIA Corporation","gpu-psver":"4.40","gpu-venid":4318,"gpu-vsver":"4.40","highres-ticks":true,"network-type":"Ethernet","num-cpus":48,"os-arch":"x86_64","os-name":"Linux","os-version":"3.13.0-92-generic","physical-memory":64325,"product-version":"Chrome/54.0.2833.0","revision":"aed73723d224df9236ef1751f8b31670852e9455-refs/heads/master@{#412694}","trace-capture-datetime":"2016-8-18 22:28:10","user-agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2833.0 Safari/537.36","v8-version":"5.4.275"}}
\ No newline at end of file
diff --git a/catapult/tracing/trace_viewer.gypi b/catapult/tracing/trace_viewer.gypi
index 5d9f4b0..2faa75a 100644
--- a/catapult/tracing/trace_viewer.gypi
+++ b/catapult/tracing/trace_viewer.gypi
@@ -58,10 +58,14 @@
       'tracing/base/rect.html',
       'tracing/base/running_statistics.html',
       'tracing/base/settings.html',
+      'tracing/base/sinebow_color_generator.html',
       'tracing/base/sorted_array_utils.html',
       'tracing/base/statistics.html',
       'tracing/base/task.html',
+      'tracing/base/time_display_modes.html',
       'tracing/base/timing.html',
+      'tracing/base/unit.html',
+      'tracing/base/unit_scale.html',
       'tracing/base/utils.html',
       'tracing/core/auditor.html',
       'tracing/core/filter.html',
@@ -154,6 +158,8 @@
       'tracing/extras/tquery/filter_is_top_level.html',
       'tracing/extras/tquery/filter_not.html',
       'tracing/extras/tquery/tquery.html',
+      'tracing/extras/v8/v8_thread_slice.html',
+      'tracing/extras/v8_config.html',
       'tracing/extras/vsync/vsync_auditor.html',
       'tracing/importer/context_processor.html',
       'tracing/importer/empty_importer.html',
@@ -168,17 +174,21 @@
       'tracing/metrics/all_metrics.html',
       'tracing/metrics/blink/gc_metric.html',
       'tracing/metrics/cpu_process_metric.html',
+      'tracing/metrics/metric_map_function.html',
       'tracing/metrics/metric_registry.html',
       'tracing/metrics/sample_metric.html',
       'tracing/metrics/system_health/clock_sync_latency_metric.html',
-      'tracing/metrics/system_health/efficiency_metric.html',
+      'tracing/metrics/system_health/cpu_time_metric.html',
       'tracing/metrics/system_health/hazard_metric.html',
       'tracing/metrics/system_health/loading_metric.html',
       'tracing/metrics/system_health/long_tasks_metric.html',
       'tracing/metrics/system_health/memory_metric.html',
       'tracing/metrics/system_health/power_metric.html',
+      'tracing/metrics/system_health/rail_power_metric.html',
       'tracing/metrics/system_health/responsiveness_metric.html',
+      'tracing/metrics/system_health/scroll_power_metric.html',
       'tracing/metrics/system_health/system_health_metrics.html',
+      'tracing/metrics/system_health/tti_power_metric.html',
       'tracing/metrics/system_health/utils.html',
       'tracing/metrics/system_health/webview_startup_metric.html',
       'tracing/metrics/tracing_metric.html',
@@ -261,6 +271,9 @@
       'tracing/model/user_model/user_model.html',
       'tracing/model/vm_region.html',
       'tracing/model/x_marker_annotation.html',
+      'tracing/mre/failure.html',
+      'tracing/mre/function_handle.html',
+      'tracing/mre/mre_result.html',
       'tracing/ui/analysis/alert_sub_view.html',
       'tracing/ui/analysis/analysis_link.html',
       'tracing/ui/analysis/analysis_sub_view.html',
@@ -294,6 +307,7 @@
       'tracing/ui/analysis/object_instance_view.html',
       'tracing/ui/analysis/object_snapshot_view.html',
       'tracing/ui/analysis/power_sample_summary_table.html',
+      'tracing/ui/analysis/rebuildable_behavior.html',
       'tracing/ui/analysis/related_events.html',
       'tracing/ui/analysis/selection_summary_table.html',
       'tracing/ui/analysis/single_async_slice_sub_view.html',
@@ -319,13 +333,13 @@
       'tracing/ui/annotations/x_marker_annotation_view.html',
       'tracing/ui/base/animation.html',
       'tracing/ui/base/animation_controller.html',
-      'tracing/ui/base/bar_chart.html',
       'tracing/ui/base/base.html',
       'tracing/ui/base/camera.html',
       'tracing/ui/base/chart_base.html',
       'tracing/ui/base/chart_base_2d.html',
       'tracing/ui/base/chart_base_2d_brushable_x.html',
       'tracing/ui/base/color_legend.html',
+      'tracing/ui/base/column_chart.html',
       'tracing/ui/base/constants.html',
       'tracing/ui/base/container_that_decorates_its_children.html',
       'tracing/ui/base/d3.html',
@@ -354,6 +368,8 @@
       'tracing/ui/base/mouse_tracker.html',
       'tracing/ui/base/overlay.html',
       'tracing/ui/base/pie_chart.html',
+      'tracing/ui/base/polymer_postload.html',
+      'tracing/ui/base/polymer_preload.html',
       'tracing/ui/base/quad_stack_view.html',
       'tracing/ui/base/tab_view.html',
       'tracing/ui/base/table.html',
@@ -362,7 +378,6 @@
       'tracing/ui/base/ui.html',
       'tracing/ui/base/ui_state.html',
       'tracing/ui/base/utils.html',
-      'tracing/ui/base/webcomponents.html',
       'tracing/ui/brushing_state.html',
       'tracing/ui/brushing_state_controller.html',
       'tracing/ui/extras/about_tracing/about_tracing.html',
@@ -405,6 +420,10 @@
       'tracing/ui/extras/system_stats/system_stats_instance_track.html',
       'tracing/ui/extras/system_stats/system_stats_snapshot_view.html',
       'tracing/ui/extras/systrace_config.html',
+      'tracing/ui/extras/v8/multi_v8_thread_slice_sub_view.html',
+      'tracing/ui/extras/v8/runtime_call_stats_table.html',
+      'tracing/ui/extras/v8/single_v8_thread_slice_sub_view.html',
+      'tracing/ui/extras/v8_config.html',
       'tracing/ui/find_control.html',
       'tracing/ui/find_controller.html',
       'tracing/ui/scripting_control.html',
@@ -462,21 +481,23 @@
       'tracing/ui/tracks/thread_track.html',
       'tracing/ui/tracks/track.html',
       'tracing/ui/view_specific_brushing_state.html',
-      'tracing/value/diagnostics/composition.html',
+      'tracing/value/diagnostics/breakdown.html',
       'tracing/value/diagnostics/diagnostic.html',
       'tracing/value/diagnostics/diagnostic_map.html',
+      'tracing/value/diagnostics/event_ref.html',
       'tracing/value/diagnostics/generic.html',
       'tracing/value/diagnostics/iteration_info.html',
       'tracing/value/diagnostics/related_event_set.html',
+      'tracing/value/diagnostics/related_histogram_breakdown.html',
       'tracing/value/diagnostics/related_value_map.html',
       'tracing/value/diagnostics/related_value_set.html',
+      'tracing/value/diagnostics/value_ref.html',
       'tracing/value/generic_table.html',
+      'tracing/value/histogram.html',
       'tracing/value/numeric.html',
-      'tracing/value/time_display_mode.html',
-      'tracing/value/ui/all_value_set_views.html',
       'tracing/value/ui/array_of_numbers_span.html',
-      'tracing/value/ui/breakdown_value_set_view.html',
-      'tracing/value/ui/composition_span.html',
+      'tracing/value/ui/breakdown_span.html',
+      'tracing/value/ui/diagnostic_map_table.html',
       'tracing/value/ui/diagnostic_span.html',
       'tracing/value/ui/generic_diagnostic_span.html',
       'tracing/value/ui/generic_table_view.html',
@@ -487,12 +508,10 @@
       'tracing/value/ui/related_event_set_span.html',
       'tracing/value/ui/related_value_map_span.html',
       'tracing/value/ui/related_value_set_span.html',
+      'tracing/value/ui/scalar_context_controller.html',
       'tracing/value/ui/scalar_span.html',
       'tracing/value/ui/value_set_table.html',
       'tracing/value/ui/value_set_view.html',
-      'tracing/value/unit.html',
-      'tracing/value/unit_scale.html',
-      'tracing/value/value.html',
       'tracing/value/value_set.html',
     ],
     'tracing_img_files': [
diff --git a/catapult/tracing/tracing/base/base.html b/catapult/tracing/tracing/base/base.html
index dba4d7b..9c9254b 100644
--- a/catapult/tracing/tracing/base/base.html
+++ b/catapult/tracing/tracing/base/base.html
@@ -96,14 +96,14 @@
     panicElement = document.createElement('div');
     panicElement.style.webkitFlex = '1 1 auto';
     panicElement.style.overflow = 'auto';
-    Polymer.dom(panicOverlay).appendChild(panicElement);
+    panicOverlay.appendChild(panicElement);
 
     if (!document.body) {
       setTimeout(function() {
-        Polymer.dom(document.body).appendChild(panicOverlay);
+        document.body.appendChild(panicOverlay);
       }, 150);
     } else {
-      Polymer.dom(document.body).appendChild(panicOverlay);
+      document.body.appendChild(panicOverlay);
     }
   }
 
@@ -119,14 +119,12 @@
 
     showPanicElementIfNeeded();
     var panicMessageEl = document.createElement('div');
-    Polymer.dom(panicMessageEl).innerHTML =
+    panicMessageEl.innerHTML =
         '<h2 id="message"></h2>' +
         '<pre id="details"></pre>';
-    Polymer.dom(Polymer.dom(panicMessageEl).querySelector('#message')).
-        textContent = panicTitle;
-    Polymer.dom(Polymer.dom(panicMessageEl).querySelector('#details')).
-        textContent = panicDetails;
-    Polymer.dom(panicElement).appendChild(panicMessageEl);
+    panicMessageEl.querySelector('#message').textContent = panicTitle;
+    panicMessageEl.querySelector('#details').textContent = panicDetails;
+    panicElement.appendChild(panicMessageEl);
 
     rawPanicMessages.push({
       title: panicTitle,
diff --git a/catapult/tracing/tracing/base/range.html b/catapult/tracing/tracing/base/range.html
index d1c7690..1818d45 100644
--- a/catapult/tracing/tracing/base/range.html
+++ b/catapult/tracing/tracing/base/range.html
@@ -21,7 +21,7 @@
     this.isEmpty_ = true;
     this.min_ = undefined;
     this.max_ = undefined;
-  };
+  }
 
   Range.prototype = {
     __proto__: Object.prototype,
@@ -267,6 +267,9 @@
     return 0;
   };
 
+  Range.PERCENT_RANGE = Range.fromExplicitRange(0, 1);
+  Object.freeze(Range.PERCENT_RANGE);
+
   return {
     Range: Range
   };
diff --git a/catapult/tracing/tracing/base/running_statistics.html b/catapult/tracing/tracing/base/running_statistics.html
index 9110eb1..019e40c 100644
--- a/catapult/tracing/tracing/base/running_statistics.html
+++ b/catapult/tracing/tracing/base/running_statistics.html
@@ -4,12 +4,13 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/tracing/base/range.html">
+
+<link rel="import" href="/tracing/base/base.html">
+
 <script>
 'use strict';
 
 tr.exportTo('tr.b', function() {
-
   /***
   * An object of this class computes basic statistics online in O(1).
   * Usage:
@@ -17,40 +18,48 @@
   * 2. Add numbers using the |add| method.
   * 3. Query statistics.
   * 4. Repeat from step 2.
-  *
-  * @constructor
   */
-  function RunningStatistics() {
-    this.mean_ = 0;
-    this.count_ = 0;
-    this.max_ = -Infinity;
-    this.min_ = Infinity;
-    this.sum_ = 0;
-    this.variance_ = 0;
-  }
+  class RunningStatistics {
+    constructor() {
+      this.mean_ = 0;
+      this.count_ = 0;
+      this.max_ = -Infinity;
+      this.min_ = Infinity;
+      this.sum_ = 0;
+      this.variance_ = 0;
 
-  RunningStatistics.prototype = {
+      // Mean of logarithms of absolute values of samples, or undefined if any
+      // samples were <= 0.
+      this.meanlogs_ = 0;
+    }
+
     get count() {
       return this.count_;
-    },
+    }
+
+    get geometricMean() {
+      if (this.meanlogs_ === undefined)
+        return 0;
+      return Math.exp(this.meanlogs_);
+    }
 
     get mean() {
       if (this.count_ == 0)
         return undefined;
       return this.mean_;
-    },
+    }
 
     get max() {
       return this.max_;
-    },
+    }
 
     get min() {
       return this.min_;
-    },
+    }
 
     get sum() {
       return this.sum_;
-    },
+    }
 
     get variance() {
       if (this.count_ == 0)
@@ -58,19 +67,26 @@
       if (this.count_ == 1)
         return 0;
       return this.variance_ / (this.count_ - 1);
-    },
+    }
 
     get stddev() {
       if (this.count_ == 0)
         return undefined;
       return Math.sqrt(this.variance);
-    },
+    }
 
-    add: function(x) {
+    add(x) {
       this.count_++;
       this.max_ = Math.max(this.max_, x);
       this.min_ = Math.min(this.min_, x);
       this.sum_ += x;
+
+      // The geometric mean is computed using the arithmetic mean of logarithms.
+      if (x <= 0)
+        this.meanlogs_ = undefined;
+      else if (this.meanlogs_ !== undefined)
+        this.meanlogs_ += (Math.log(Math.abs(x)) - this.meanlogs_) / this.count;
+
       // The following uses Welford's algorithm for computing running mean
       // and variance. See http://www.johndcook.com/blog/standard_deviation.
       if (this.count_ === 1) {
@@ -79,54 +95,72 @@
       } else {
         var oldMean = this.mean_;
         var oldVariance = this.variance_;
-        this.mean_ = oldMean + (x - oldMean) / this.count_;
+        // Using the 2nd formula for updating the mean yields better precision
+        // but it doesn't work for the case oldMean is Infinity. Hence we handle
+        // that case separately.
+        if (oldMean === Infinity || oldMean === -Infinity) {
+          this.mean_ = this.sum_ / this.count_;
+        } else {
+          this.mean_ = oldMean + (x - oldMean) / this.count_;
+        }
         this.variance_ = oldVariance + (x - oldMean) * (x - this.mean_);
       }
-    },
+    }
 
-    merge: function(other) {
+    merge(other) {
       var result = new RunningStatistics();
       result.count_ = this.count_ + other.count_;
       result.sum_ = this.sum_ + other.sum_;
       result.min_ = Math.min(this.min_, other.min_);
       result.max_ = Math.max(this.max_, other.max_);
-      if (other.count_ === 0 && this.count_ === 0) {
+      if (result.count === 0) {
         result.mean_ = 0;
         result.variance_ = 0;
+        result.meanlogs_ = 0;
       } else {
         // Combine the mean and the variance using the formulas from
         // https://goo.gl/ddcAep.
-        var mx = this.mean_, my = other.mean_;
-        var vx = this.variance_, vy = other.variance_;
-        var n = this.count_, m = other.count_;
-        result.mean_ = (n * mx + m * my) / (n + m);
-        result.variance_ = vx + vy + n * m * (mx - my) * (mx - my) / (n + m);
+        result.mean_ = result.sum / result.count;
+        var deltaMean = (this.mean || 0) - (other.mean || 0);
+        result.variance_ = this.variance_ + other.variance_ +
+          (this.count * other.count * deltaMean * deltaMean / result.count);
+
+        // Merge the arithmetic means of logarithms of absolute values of
+        // samples, weighted by counts.
+        if (this.meanlogs_ === undefined || other.meanlogs_ === undefined) {
+          result.meanlogs_ = undefined;
+        } else {
+          result.meanlogs_ = (this.count * this.meanlogs_ +
+              other.count * other.meanlogs_) / result.count;
+        }
       }
       return result;
-    },
+    }
 
-    asDict: function() {
+    asDict() {
       return {
-        mean: this.mean_,
-        count: this.count_,
-        max: this.max_,
-        min: this.min_,
-        sum: this.sum_,
+        mean: this.mean,
+        meanlogs: this.meanlogs_,
+        count: this.count,
+        max: this.max,
+        min: this.min,
+        sum: this.sum,
         variance: this.variance_
       };
     }
-  };
 
-  RunningStatistics.fromDict = function(d) {
-    var result = new RunningStatistics();
-    result.mean_ = d.mean;
-    result.count_ = d.count;
-    result.max_ = d.max;
-    result.min_ = d.min;
-    result.sum_ = d.sum;
-    result.variance_ = d.variance;
-    return result;
-  };
+    static fromDict(d) {
+      var result = new RunningStatistics();
+      result.mean_ = d.mean;
+      result.count_ = d.count;
+      result.max_ = d.max;
+      result.min_ = d.min;
+      result.sum_ = d.sum;
+      result.variance_ = d.variance;
+      result.meanlogs_ = d.meanlogs;
+      return result;
+    }
+  }
 
   return {
     RunningStatistics: RunningStatistics
diff --git a/catapult/tracing/tracing/base/running_statistics_test.html b/catapult/tracing/tracing/base/running_statistics_test.html
index 5aba2cf..f16cbe7 100644
--- a/catapult/tracing/tracing/base/running_statistics_test.html
+++ b/catapult/tracing/tracing/base/running_statistics_test.html
@@ -29,6 +29,10 @@
     assert.closeTo(Statistics.sum(data), run(data).sum, 1e-6);
     data = [2, 4, 4, 2];
     assert.closeTo(Statistics.sum(data), run(data).sum, 1e-6);
+    data = [Infinity, Infinity, Infinity, 4, 4, Infinity, 1];
+    assert.equal(Statistics.sum(data), run(data).sum, Infinity);
+    data = [-Infinity, -Infinity, 2, -Infinity, 5, -Infinity];
+    assert.equal(Statistics.sum(data), run(data).sum, -Infinity);
   });
 
   test('min', function() {
@@ -65,6 +69,26 @@
     assert.closeTo(Statistics.mean(data), run(data).mean, 1e-6);
     data = [2, 4, 4, 2];
     assert.closeTo(Statistics.mean(data), run(data).mean, 1e-6);
+    data = [Infinity, Infinity, Infinity, 4, 4, Infinity, 1];
+    assert.equal(Statistics.mean(data), run(data).mean, Infinity);
+    data = [-Infinity, -Infinity, 2, -Infinity, 5, -Infinity];
+    assert.equal(Statistics.mean(data), run(data).mean, -Infinity);
+  });
+
+  test('geometricMean', function() {
+    var data;
+    data = [];
+    assert.equal(Statistics.geometricMean(data), run(data).geometricMean);
+    data = [-1];
+    assert.equal(Statistics.geometricMean(data), run(data).geometricMean);
+    data = [1];
+    assert.equal(Statistics.geometricMean(data), run(data).geometricMean);
+    data = [1, 2, 3];
+    assert.closeTo(Statistics.geometricMean(data),
+        run(data).geometricMean, 1e-6);
+    data = [2, 4, 4, 2];
+    assert.closeTo(Statistics.geometricMean(data),
+        run(data).geometricMean, 1e-6);
   });
 
   test('variance', function() {
@@ -93,6 +117,7 @@
 
   test('merge', function() {
     var data1, data2, data, stats;
+
     data1 = [];
     data2 = [];
     data = data1.concat(data2);
@@ -103,6 +128,8 @@
     assert.equal(Statistics.mean(data), stats.mean);
     assert.equal(Statistics.variance(data), stats.variance);
     assert.equal(Statistics.stddev(data), stats.stddev);
+    assert.equal(Statistics.geometricMean(data), stats.geometricMean);
+
     data1 = [];
     data2 = [1, 2, 3];
     data = data1.concat(data2);
@@ -113,6 +140,8 @@
     assert.equal(Statistics.mean(data), stats.mean);
     assert.closeTo(Statistics.variance(data), stats.variance, 1e-6);
     assert.closeTo(Statistics.stddev(data), stats.stddev, 1e-6);
+    assert.closeTo(Statistics.geometricMean(data), stats.geometricMean, 1e-6);
+
     data1 = [1, 2, 3];
     data2 = [];
     data = data1.concat(data2);
@@ -123,6 +152,8 @@
     assert.equal(Statistics.mean(data), stats.mean);
     assert.closeTo(Statistics.variance(data), stats.variance, 1e-6);
     assert.closeTo(Statistics.stddev(data), stats.stddev, 1e-6);
+    assert.closeTo(Statistics.geometricMean(data), stats.geometricMean, 1e-6);
+
     data1 = [1, 2, 3];
     data2 = [10, 20, 100];
     data = data1.concat(data2);
@@ -133,6 +164,8 @@
     assert.equal(Statistics.mean(data), stats.mean);
     assert.closeTo(Statistics.variance(data), stats.variance, 1e-6);
     assert.closeTo(Statistics.stddev(data), stats.stddev, 1e-6);
+    assert.closeTo(Statistics.geometricMean(data), stats.geometricMean, 1e-6);
+
     data1 = [1, 1, 1, 1, 1];
     data2 = [10, 20, 10, 40];
     data = data1.concat(data2);
@@ -143,13 +176,15 @@
     assert.equal(Statistics.mean(data), stats.mean);
     assert.closeTo(Statistics.variance(data), stats.variance, 1e-6);
     assert.closeTo(Statistics.stddev(data), stats.stddev, 1e-6);
+    assert.closeTo(Statistics.geometricMean(data), stats.geometricMean, 1e-6);
   });
 
   test('serialization', function() {
-    var data;
-    data = [1, 2, 3];
-    var stats = run(data);
-    assert.deepEqual(stats, RunningStatistics.fromDict(stats.asDict()));
+    var data = [1, 2, 3];
+    var dict = run(data).asDict();
+    var cloneDict = RunningStatistics.fromDict(dict).asDict();
+    for (var field in dict)
+      assert.closeTo(dict[field], cloneDict[field], 1e-6);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/base/sinebow_color_generator.html b/catapult/tracing/tracing/base/sinebow_color_generator.html
new file mode 100644
index 0000000..45c4e5c
--- /dev/null
+++ b/catapult/tracing/tracing/base/sinebow_color_generator.html
@@ -0,0 +1,92 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/color.html">
+<link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/math.html">
+
+<script>
+'use strict';
+tr.exportTo('tr.b', function() {
+  /**
+   * Generate pretty colors!
+   * http://basecase.org/env/on-rainbows
+   * https://mycarta.wordpress.com/2012/10/06/the-rainbow-is-deadlong-live-the-rainbow-part-3/
+   *
+   * Set brightness = 0 to always generate black.
+   * Set brightness = 2 to always generate white.
+   * Set brightness = 1 to generate saturated colors.
+   *
+   * @constructor
+   * @param {number=} opt_a alpha opacity in [0,1]
+   * @param {number=} opt_brightness in [0,2]
+   */
+  function SinebowColorGenerator(opt_a, opt_brightness) {
+    this.a_ = (opt_a === undefined) ? 1 : opt_a;
+    this.brightness_ = (opt_brightness === undefined) ? 1 : opt_brightness;
+    this.colorIndex_ = 0;
+    this.keyToColor = {};
+  }
+
+  SinebowColorGenerator.prototype = {
+    colorForKey: function(key) {
+      if (!this.keyToColor[key])
+        this.keyToColor[key] = this.nextColor();
+      return this.keyToColor[key];
+    },
+
+    nextColor: function() {
+      var components = SinebowColorGenerator.nthColor(this.colorIndex_++);
+      return tr.b.Color.fromString(SinebowColorGenerator.calculateColor(
+          components[0], components[1], components[2],
+          this.a_, this.brightness_));
+    }
+  };
+
+  SinebowColorGenerator.PHI = (1 + Math.sqrt(5)) / 2;
+
+  SinebowColorGenerator.sinebow_ = function(h) {
+    h += 0.5;
+    h = -h;
+    var r = Math.sin(Math.PI * h);
+    var g = Math.sin(Math.PI * (h + 1 / 3));
+    var b = Math.sin(Math.PI * (h + 2 / 3));
+    r *= r; g *= g; b *= b;
+    // Roughly correct for human perception.
+    // https://en.wikipedia.org/wiki/Luma_%28video%29
+    // Multiply by 2 to normalize all values to 0.5.
+    // (Halfway between black and white.)
+    var y = 2 * (0.2989 * r + 0.5870 * g + 0.1140 * b);
+    r /= y; g /= y; b /= y;
+    return [256 * r, 256 * g, 256 * b];
+  };
+
+  SinebowColorGenerator.nthColor = function(n) {
+    return SinebowColorGenerator.sinebow_(n * this.PHI);
+  };
+
+  SinebowColorGenerator.calculateColor = function(r, g, b, a, brightness) {
+    if (brightness <= 1) {
+      r *= brightness;
+      g *= brightness;
+      b *= brightness;
+    } else {
+      r = tr.b.lerp(tr.b.normalize(brightness, 1, 2), r, 255);
+      g = tr.b.lerp(tr.b.normalize(brightness, 1, 2), g, 255);
+      b = tr.b.lerp(tr.b.normalize(brightness, 1, 2), b, 255);
+    }
+    r = Math.round(r);
+    g = Math.round(g);
+    b = Math.round(b);
+    return 'rgba(' + r + ',' + g + ',' + b + ', ' + a + ')';
+  };
+
+  return {
+    SinebowColorGenerator: SinebowColorGenerator
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/base/sinebow_color_generator_test.html b/catapult/tracing/tracing/base/sinebow_color_generator_test.html
new file mode 100644
index 0000000..0676847
--- /dev/null
+++ b/catapult/tracing/tracing/base/sinebow_color_generator_test.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/sinebow_color_generator.html">
+
+<script>
+'use strict';
+tr.b.unittest.testSuite(function() {
+  test('SinebowColorGenerator', function() {
+    var generator = new tr.b.SinebowColorGenerator();
+    assert.strictEqual('rgba(270,67,67,1)',
+        generator.colorForKey('z').toString());
+    assert.strictEqual('rgba(44,132,329,1)',
+        generator.colorForKey('y').toString());
+    assert.strictEqual('rgba(99,166,9,1)',
+        generator.colorForKey('x').toString());
+    assert.strictEqual('rgba(270,67,67,1)',
+        generator.colorForKey('z').toString());
+
+    generator = new tr.b.SinebowColorGenerator(0.5);
+    assert.strictEqual('rgba(270,67,67,0.5)',
+        generator.colorForKey('z').toString());
+    assert.strictEqual('rgba(44,132,329,0.5)',
+        generator.colorForKey('y').toString());
+    assert.strictEqual('rgba(99,166,9,0.5)',
+        generator.colorForKey('x').toString());
+    assert.strictEqual('rgba(270,67,67,0.5)',
+        generator.colorForKey('z').toString());
+
+    generator = new tr.b.SinebowColorGenerator(1, 0);
+    assert.strictEqual('rgba(0,0,0,1)',
+        generator.colorForKey('z').toString());
+    assert.strictEqual('rgba(0,0,0,1)',
+        generator.colorForKey('y').toString());
+    assert.strictEqual('rgba(0,0,0,1)',
+        generator.colorForKey('x').toString());
+    assert.strictEqual('rgba(0,0,0,1)',
+        generator.colorForKey('z').toString());
+
+    generator = new tr.b.SinebowColorGenerator(1, 2);
+    assert.strictEqual('rgba(255,255,255,1)',
+        generator.colorForKey('z').toString());
+    assert.strictEqual('rgba(255,255,255,1)',
+        generator.colorForKey('y').toString());
+    assert.strictEqual('rgba(255,255,255,1)',
+        generator.colorForKey('x').toString());
+    assert.strictEqual('rgba(255,255,255,1)',
+        generator.colorForKey('z').toString());
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/base/statistics.html b/catapult/tracing/tracing/base/statistics.html
index 5aa686a..05acc40 100644
--- a/catapult/tracing/tracing/base/statistics.html
+++ b/catapult/tracing/tracing/base/statistics.html
@@ -32,13 +32,9 @@
 'use strict';
 
 tr.exportTo('tr.b', function() {
+  var identity = x => x;
 
-  function identity(d) {
-    return d;
-  }
-
-  function Statistics() {
-  }
+  var Statistics = {};
 
   /* Returns the quotient, or zero if the denominator is zero.*/
   Statistics.divideIfPossibleOrZero = function(numerator, denominator) {
@@ -57,9 +53,37 @@
   };
 
   Statistics.mean = function(ary, opt_func, opt_this) {
-    if (ary.length == 0)
+    var func = opt_func || identity;
+    var sum = 0;
+    var i = 0;
+
+    for (var elt of ary)
+      sum += func.call(opt_this, elt, i++);
+
+    if (i === 0)
       return undefined;
-    return Statistics.sum(ary, opt_func, opt_this) / ary.length;
+
+    return sum / i;
+  };
+
+  Statistics.geometricMean = function(ary, opt_func, opt_this) {
+    var func = opt_func || identity;
+    var i = 0;
+    var logsum = 0;
+
+    // The geometric mean is expressed as the arithmetic mean of logarithms
+    // in order to prevent overflow.
+    for (var elt of ary) {
+      var x = func.call(opt_this, elt, i++);
+      if (x <= 0)
+        return 0;
+      logsum += Math.log(Math.abs(x));
+    }
+
+    if (i === 0)
+      return 1;
+
+    return Math.exp(logsum / i);
   };
 
   // Returns undefined if the sum of the weights is zero.
@@ -506,10 +530,10 @@
    * letters like |x|.
    * The probability that |X| ever exactly equals |x| is P(X==x) = 0.
    *
-   * For a discrete probability distribution, aka histogram, see tr.v.Numeric.
+   * For a discrete probability distribution, see tr.v.Histogram.
    */
   function Distribution() {
-  };
+  }
 
   Distribution.prototype = {
     /* The probability density of the random variable at value |x| is the
diff --git a/catapult/tracing/tracing/base/statistics_test.html b/catapult/tracing/tracing/base/statistics_test.html
index 83c756c..535b313 100644
--- a/catapult/tracing/tracing/base/statistics_test.html
+++ b/catapult/tracing/tracing/base/statistics_test.html
@@ -145,7 +145,33 @@
   });
 
   test('meanBasic', function() {
-    assert.equal(Statistics.mean([1, 2, 3]), 2);
+    assert.closeTo(Statistics.mean([1, 2, 3]), 2, 1e-6);
+    assert.closeTo(Statistics.mean(new Set([1, 2, 3])), 2, 1e-6);
+  });
+
+  test('geometricMean', function() {
+    assert.strictEqual(1, Statistics.geometricMean([]));
+    assert.strictEqual(1, Statistics.geometricMean([1]));
+    assert.strictEqual(0, Statistics.geometricMean([-1]));
+    assert.strictEqual(0, Statistics.geometricMean([0]));
+    assert.strictEqual(0, Statistics.geometricMean([1, 2, 3, 0]));
+    assert.strictEqual(0, Statistics.geometricMean([1, 2, 3, -1]));
+    assert.strictEqual(1, Statistics.geometricMean([1, 1, 1]));
+    assert.strictEqual(2, Statistics.geometricMean([2]));
+    assert.closeTo(Math.sqrt(6), Statistics.geometricMean([2, 3]), 1e-6);
+    assert.closeTo(6, Statistics.geometricMean(new Set([4, 9])), 1e-6);
+
+    var samples = [];
+    for (var i = 0; i < 1e3; ++i)
+      samples.push(Number.MAX_SAFE_INTEGER);
+    assert.closeTo(Number.MAX_SAFE_INTEGER, Statistics.geometricMean(samples),
+        Number.MAX_SAFE_INTEGER * 1e-13);
+
+    samples = [];
+    for (var i = 0; i < 1e3; ++i)
+      samples.push(Number.MAX_VALUE / 1e3);
+    assert.closeTo(Number.MAX_VALUE / 1e3, Statistics.geometricMean(samples),
+        Number.MAX_VALUE * 1e-13);
   });
 
   test('weightedMean', function() {
diff --git a/catapult/tracing/tracing/value/time_display_mode.html b/catapult/tracing/tracing/base/time_display_modes.html
similarity index 83%
rename from catapult/tracing/tracing/value/time_display_mode.html
rename to catapult/tracing/tracing/base/time_display_modes.html
index ae6b4df..8c91df5 100644
--- a/catapult/tracing/tracing/value/time_display_mode.html
+++ b/catapult/tracing/tracing/base/time_display_modes.html
@@ -5,7 +5,7 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/value/unit_scale.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 
 <script>
 'use strict';
@@ -13,7 +13,7 @@
 /**
  * @fileoverview Time currentDisplayUnit
  */
-tr.exportTo('tr.v', function() {
+tr.exportTo('tr.b', function() {
   var msDisplayMode = {
     scale: 1e-3,
     suffix: 'ms',
@@ -23,7 +23,7 @@
     },
     formatSpec: {
       unit: 's',
-      unitPrefix: tr.v.UnitScale.MetricTime.MILLI,
+      unitPrefix: tr.b.UnitScale.Metric.MILLI,
       minimumFractionDigits: 3,
     }
   };
@@ -37,7 +37,7 @@
     },
     formatSpec: {
       unit: 's',
-      unitPrefix: tr.v.UnitScale.MetricTime.NANO,
+      unitPrefix: tr.b.UnitScale.Metric.NANO,
       maximumFractionDigits: 0
     }
   };
diff --git a/catapult/tracing/tracing/value/unit.html b/catapult/tracing/tracing/base/unit.html
similarity index 90%
rename from catapult/tracing/tracing/value/unit.html
rename to catapult/tracing/tracing/base/unit.html
index 51ebee3..d7b9d45 100644
--- a/catapult/tracing/tracing/value/unit.html
+++ b/catapult/tracing/tracing/base/unit.html
@@ -8,14 +8,14 @@
 <link rel="import" href="/tracing/base/event.html">
 <link rel="import" href="/tracing/base/event_target.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
-<link rel="import" href="/tracing/value/unit_scale.html">
+<link rel="import" href="/tracing/base/time_display_modes.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 
 <script>
 'use strict';
 
-tr.exportTo('tr.v', function() {
-  var TimeDisplayModes = tr.v.TimeDisplayModes;
+tr.exportTo('tr.b', function() {
+  var TimeDisplayModes = tr.b.TimeDisplayModes;
 
   var PLUS_MINUS_SIGN = String.fromCharCode(177);
 
@@ -35,9 +35,11 @@
   };
 
   /** @constructor */
-  function Unit(unitName, jsonName, isDelta, improvementDirection, formatSpec) {
+  function Unit(unitName, jsonName, basePrefix, isDelta, improvementDirection,
+      formatSpec) {
     this.unitName = unitName;
     this.jsonName = jsonName;
+    this.basePrefix = basePrefix;
     this.isDelta = isDelta;
     this.improvementDirection = improvementDirection;
     this.formatSpec_ = formatSpec;
@@ -96,7 +98,10 @@
             selectedPrefix = unitPrefix;
           }
           unitString += selectedPrefix.symbol || '';
-          value /= selectedPrefix.value;
+          value = tr.b.convertUnit(value, this.basePrefix, selectedPrefix);
+        } else {
+          value = tr.b.convertUnit(value, this.basePrefix,
+              tr.b.UnitScale.Metric.NONE);
         }
         unitString += formatSpec.unit;
       }
@@ -134,11 +139,8 @@
   };
 
   Unit.timestampFromUs = function(us) {
-    return us / 1000;
-  };
-
-  Unit.maybeTimestampFromUs = function(us) {
-    return us === undefined ? undefined : us / 1000;
+    return tr.b.convertUnit(us, tr.b.UnitScale.Metric.MICRO,
+        tr.b.UnitScale.Metric.MILLI);
   };
 
   Object.defineProperty(Unit, 'currentTimeDisplayMode', {
@@ -245,8 +247,10 @@
     if (Unit.byJSONName[jsonName] !== undefined)
       throw new Error('JSON unit \'' + jsonName + '\' alread exists');
 
-    var unit = new Unit(
-        unitName, jsonName, isDelta, improvementDirection, params.formatSpec);
+    var basePrefix = params.basePrefix ?
+        params.basePrefix : tr.b.UnitScale.Metric.NONE;
+    var unit = new Unit(unitName, jsonName, basePrefix,
+        isDelta, improvementDirection, params.formatSpec);
     Unit.byName[unitName] = unit;
     Unit.byJSONName[jsonName] = unit;
 
@@ -262,6 +266,7 @@
   Unit.define({
     baseUnitName: 'timeDurationInMs',
     baseJsonName: 'ms',
+    basePrefix: tr.b.UnitScale.Metric.MILLI,
     formatSpec: function() {
       return Unit.currentTimeDisplayMode_.formatSpec;
     }
@@ -270,6 +275,7 @@
   Unit.define({
     baseUnitName: 'timeStampInMs',
     baseJsonName: 'tsMs',
+    basePrefix: tr.b.UnitScale.Metric.MILLI,
     formatSpec: function() {
       return Unit.currentTimeDisplayMode_.formatSpec;
     }
@@ -292,7 +298,7 @@
     baseJsonName: 'sizeInBytes',
     formatSpec: {
       unit: 'B',
-      unitPrefix: tr.v.UnitScale.Binary.AUTO,
+      unitPrefix: tr.b.UnitScale.Binary.AUTO,
       minimumFractionDigits: 1,
       maximumFractionDigits: 1
     }
diff --git a/catapult/tracing/tracing/value/unit_scale.html b/catapult/tracing/tracing/base/unit_scale.html
similarity index 60%
rename from catapult/tracing/tracing/value/unit_scale.html
rename to catapult/tracing/tracing/base/unit_scale.html
index 236caff..d18022e 100644
--- a/catapult/tracing/tracing/value/unit_scale.html
+++ b/catapult/tracing/tracing/base/unit_scale.html
@@ -10,7 +10,9 @@
 <script>
 'use strict';
 
-tr.exportTo('tr.v', function() {
+var GREEK_SMALL_LETTER_MU = String.fromCharCode(956);
+
+tr.exportTo('tr.b', function() {
 
   var UnitScale = {};
 
@@ -32,6 +34,23 @@
     UnitScale[name] = prefixes;
   }
 
+ /**
+  * Converts |value| from |fromPrefix| (e.g. kilo) to |toPrefix| (e.g. mega).
+  *
+  * Returns undefined if |value| is undefined.
+  * |fromPrefix| and |toPrefix| need not come from the same UnitScale.
+  *
+  * @param {(undefined|number)} value
+  * @param {!object} fromPrefix
+  * @param {!object} toPrefix
+  * @return {(undefined|number)}
+  */
+  function convertUnit(value, fromPrefix, toPrefix) {
+    if (value === undefined)
+      return undefined;
+    return value * (fromPrefix.value / toPrefix.value);
+  }
+
   // See https://en.wikipedia.org/wiki/Binary_prefix.
   defineUnitScale('Binary', {
     NONE: { value: Math.pow(1024, 0), symbol: '' },
@@ -42,15 +61,19 @@
   });
 
   // See https://en.wikipedia.org/wiki/Metric_prefix.
-  // The base time unit used in the whole repository is ms (milliseconds), so
-  // all values are multiplied by 1000.
-  defineUnitScale('MetricTime', {
-    NANO: { value: 1e-6, symbol: 'n' },
-    MILLI: { value: 1, symbol: 'm' }
+  defineUnitScale('Metric', {
+    NANO: { value: 1e-9, symbol: 'n' },
+    MICRO: { value: 1e-6, symbol: GREEK_SMALL_LETTER_MU },
+    MILLI: { value: 1e-3, symbol: 'm' },
+    NONE: { value: 1, symbol: ''},
+    KILO: { value: 1e3, symbol: 'k'},
+    MEGA: { value: 1e6, symbol: 'M'},
+    GIGA: { value: 1e9, symbol: 'G'}
   });
 
   return {
-    UnitScale: UnitScale
+    UnitScale: UnitScale,
+    convertUnit: convertUnit
   };
 });
 </script>
diff --git a/catapult/tracing/tracing/value/unit_test.html b/catapult/tracing/tracing/base/unit_test.html
similarity index 94%
rename from catapult/tracing/tracing/value/unit_test.html
rename to catapult/tracing/tracing/base/unit_test.html
index 6f9344f..79585cc 100644
--- a/catapult/tracing/tracing/value/unit_test.html
+++ b/catapult/tracing/tracing/base/unit_test.html
@@ -5,21 +5,20 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/value/time_display_mode.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/unit_scale.html">
+<link rel="import" href="/tracing/base/time_display_modes.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var Unit = tr.v.Unit;
-  var UnitScale = tr.v.UnitScale;
-  var ImprovementDirection = tr.v.ImprovementDirection;
+  var ImprovementDirection = tr.b.ImprovementDirection;
+  var Unit = tr.b.Unit;
+  var UnitScale = tr.b.UnitScale;
 
   test('Unit.display-mode-changed', function() {
-    var Unit = tr.v.Unit;
-    var TimeDisplayModes = tr.v.TimeDisplayModes;
+    var TimeDisplayModes = tr.b.TimeDisplayModes;
 
     var listenerWasCalled = false;
     function listener(e) {
@@ -43,7 +42,7 @@
   function checkTimeUnit(unit) {
     try {
       // Use milliseconds to display time (default behavior).
-      Unit.currentTimeDisplayMode = tr.v.TimeDisplayModes.ms;
+      Unit.currentTimeDisplayMode = tr.b.TimeDisplayModes.ms;
 
       assert.strictEqual(unit.format(0), '0.000 ms');
       assert.strictEqual(unit.format(0.02), '0.020 ms');
@@ -57,7 +56,7 @@
       assert.strictEqual(unit.format(-123456789), '-123,456,789.000 ms');
 
       // Change the unit to nanoseconds.
-      Unit.currentTimeDisplayMode = tr.v.TimeDisplayModes.ns;
+      Unit.currentTimeDisplayMode = tr.b.TimeDisplayModes.ns;
 
       assert.strictEqual(unit.format(0), '0 ns');
       assert.strictEqual(unit.format(1), '1,000,000 ns');
diff --git a/catapult/tracing/tracing/extras/android/android_auditor.html b/catapult/tracing/tracing/extras/android/android_auditor.html
index b0bd97b..18da104 100644
--- a/catapult/tracing/tracing/extras/android/android_auditor.html
+++ b/catapult/tracing/tracing/extras/android/android_auditor.html
@@ -8,6 +8,7 @@
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/range_utils.html">
 <link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/auditor.html">
 <link rel="import" href="/tracing/model/alert.html">
 <link rel="import" href="/tracing/model/frame.html">
@@ -15,7 +16,6 @@
 <link rel="import" href="/tracing/model/thread_time_slice.html">
 <link rel="import" href="/tracing/model/user_model/response_expectation.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -33,7 +33,7 @@
   var Alert = tr.model.Alert;
   var EventInfo = tr.model.EventInfo;
   var ScalarNumeric = tr.v.ScalarNumeric;
-  var timeDurationInMs = tr.v.Unit.byName.timeDurationInMs;
+  var timeDurationInMs = tr.b.Unit.byName.timeDurationInMs;
 
   // TODO: extract from VSYNC, since not all devices have vsync near 60fps
   var EXPECTED_FRAME_TIME_MS = 16.67;
@@ -89,7 +89,7 @@
     var helper = model.getOrCreateHelper(AndroidModelHelper);
     if (helper.apps.length || helper.surfaceFlinger)
       this.helper = helper;
-  };
+  }
 
   //////////////////////////////////////////////////////////////////////////////
   // Rendering / RenderThread alerts - only available on SDK 22+
@@ -228,13 +228,9 @@
     // simplifying assumption - check for *any* inflation.
     // TODO(ccraik): make 'inflate' slices associated events.
     var hasInflation = false;
-    for (var i = 0; i < events.length; i++) {
-      if (events[i] instanceof tr.model.Slice &&
-          events[i].findDescendentSlice('inflate')) {
+    for (var event of events)
+      if (event.findDescendentSlice('inflate'))
         hasInflation = true;
-        break;
-      }
-    }
 
     var start = Statistics.min(events, getStart);
     var args = { 'Time spent': new ScalarNumeric(timeDurationInMs, duration) };
diff --git a/catapult/tracing/tracing/extras/android/android_auditor_test.html b/catapult/tracing/tracing/extras/android/android_auditor_test.html
index b640625..6ceb0bd 100644
--- a/catapult/tracing/tracing/extras/android/android_auditor_test.html
+++ b/catapult/tracing/tracing/extras/android/android_auditor_test.html
@@ -5,12 +5,12 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/extras/android/android_auditor.html">
 <link rel="import" href="/tracing/extras/importer/linux_perf/ftrace_importer.html">
 <link rel="import" href="/tracing/model/frame.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -21,7 +21,7 @@
   var FRAME_PERF_CLASS = tr.model.FRAME_PERF_CLASS;
   var newThreadSlice = tr.c.TestUtils.newThreadSlice;
   var ScalarNumeric = tr.v.ScalarNumeric;
-  var timeDurationInMs = tr.v.Unit.byName.timeDurationInMs;
+  var timeDurationInMs = tr.b.Unit.byName.timeDurationInMs;
 
   test('constructorSliceName', function() {
     // verify 'constructor' slice name doesn't break the auditor
diff --git a/catapult/tracing/tracing/extras/chrome/cc/util.html b/catapult/tracing/tracing/extras/chrome/cc/util.html
index f12c4b8..a0ce472 100644
--- a/catapult/tracing/tracing/extras/chrome/cc/util.html
+++ b/catapult/tracing/tracing/extras/chrome/cc/util.html
@@ -138,16 +138,11 @@
     }
   }
 
-  function bytesToRoundedMegabytes(bytes) {
-    return Math.round(bytes / 100000.0) / 10.0;
-  }
-
   return {
     preInitializeObject: preInitializeObject,
     convertNameToJSConvention: convertNameToJSConvention,
     moveRequiredFieldsFromArgsToToplevel: moveRequiredFieldsFromArgsToToplevel,
     moveOptionalFieldsFromArgsToToplevel: moveOptionalFieldsFromArgsToToplevel,
-    bytesToRoundedMegabytes: bytesToRoundedMegabytes
   };
 });
 </script>
diff --git a/catapult/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html b/catapult/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
index a23d4c6..ba1ccf5 100644
--- a/catapult/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
+++ b/catapult/tracing/tracing/extras/chrome/chrome_user_friendly_category_driver.html
@@ -7,6 +7,7 @@
 
 <link rel="import" href="/tracing/base/event.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/sinebow_color_generator.html">
 
 <script>
 'use strict';
@@ -139,6 +140,7 @@
     ]
   };
 
+  var COLOR_FOR_USER_FRIENDLY_CATEGORY = new tr.b.SinebowColorGenerator();
   var USER_FRIENDLY_CATEGORY_FOR_TITLE = new Map();
 
   for (var category in TITLES_FOR_USER_FRIENDLY_CATEGORY) {
@@ -147,6 +149,8 @@
     });
   }
 
+  // keys: event.category part
+  // values: user friendly category
   var USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY = {
     netlog: 'net',
     overhead: 'overhead',
@@ -181,16 +185,26 @@
     return 'other';
   };
 
+  ChromeUserFriendlyCategoryDriver.getColor = function(ufc) {
+    return COLOR_FOR_USER_FRIENDLY_CATEGORY.colorForKey(ufc);
+  };
+
   ChromeUserFriendlyCategoryDriver.ALL_TITLES = ['other'];
   for (var category in TITLES_FOR_USER_FRIENDLY_CATEGORY) {
     if (category === SAME_AS_PARENT)
       continue;
     ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);
   }
-  for (var category in USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY) {
+  for (var category of tr.b.dictionaryValues(
+        USER_FRIENDLY_CATEGORY_FOR_EVENT_CATEGORY)) {
     ChromeUserFriendlyCategoryDriver.ALL_TITLES.push(category);
   }
+  ChromeUserFriendlyCategoryDriver.ALL_TITLES.sort();
 
+  // Prime the color generator by iterating through all UFCs in alphabetical
+  // order.
+  for (var category of ChromeUserFriendlyCategoryDriver.ALL_TITLES)
+    ChromeUserFriendlyCategoryDriver.getColor(category);
 
   return {
     ChromeUserFriendlyCategoryDriver: ChromeUserFriendlyCategoryDriver
diff --git a/catapult/tracing/tracing/extras/chrome_config.html b/catapult/tracing/tracing/extras/chrome_config.html
index b90a2cd..8e0ef23 100644
--- a/catapult/tracing/tracing/extras/chrome_config.html
+++ b/catapult/tracing/tracing/extras/chrome_config.html
@@ -30,4 +30,5 @@
 <link rel="import" href="/tracing/extras/measure/measure.html">
 <link rel="import" href="/tracing/extras/net/net.html">
 <link rel="import" href="/tracing/extras/systrace_config.html">
+<link rel="import" href="/tracing/extras/v8_config.html">
 <link rel="import" href="/tracing/extras/vsync/vsync_auditor.html">
diff --git a/catapult/tracing/tracing/extras/importer/battor_importer.html b/catapult/tracing/tracing/extras/importer/battor_importer.html
index 8dfc999..03db048 100644
--- a/catapult/tracing/tracing/extras/importer/battor_importer.html
+++ b/catapult/tracing/tracing/extras/importer/battor_importer.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit_scale.html">
 <link rel="import" href="/tracing/importer/importer.html">
 <link rel="import" href="/tracing/model/model.html">
 <link rel="import" href="/tracing/model/power_series.html">
@@ -97,7 +98,7 @@
       for (var i = 0; i < this.samples_.length; i++) {
         var sample = this.samples_[i];
         powerSeries.addPowerSample(
-            modelTimeTransformer(sample.ts), sample.power);
+            modelTimeTransformer(sample.ts), sample.powerInW);
       }
     },
 
@@ -128,14 +129,16 @@
         }
 
         var ts = parseFloat(groups[1]);
-        var voltage = parseFloat(groups[2]) / 1000;
-        var current = parseFloat(groups[3]) / 1000;
+        var voltageInV = tr.b.convertUnit(parseFloat(groups[2]),
+            tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
+        var currentInA = tr.b.convertUnit(parseFloat(groups[3]),
+            tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
         var syncId = groups[4];
 
         if (syncId)
           this.syncTimestampsById_.set(syncId, ts);
 
-        if (voltage < 0 || current < 0) {
+        if (voltageInV < 0 || currentInA < 0) {
           this.model_.importWarning({
             type: 'parse_error',
             message: 'The following line in the BattOr trace has a negative ' +
@@ -146,7 +149,7 @@
           continue;
         }
 
-        this.samples_.push(new Sample(ts, voltage, current));
+        this.samples_.push(new Sample(ts, voltageInV, currentInA));
       }
     }
   };
@@ -160,15 +163,15 @@
    *
    * @constructor
    */
-  function Sample(ts, voltage, current) {
+  function Sample(ts, voltageInV, currentInA) {
     this.ts = ts;
-    this.voltage = voltage;
-    this.current = current;
+    this.voltageInV = voltageInV;
+    this.currentInA = currentInA;
   }
 
   Sample.prototype = {
     /** Returns the instantaneous power consumption (in Watts). */
-    get power() { return this.voltage * this.current; }
+    get powerInW() { return this.voltageInV * this.currentInA; }
   };
 
   tr.importer.Importer.register(BattorImporter);
diff --git a/catapult/tracing/tracing/extras/importer/linux_perf/bus_parser.html b/catapult/tracing/tracing/extras/importer/linux_perf/bus_parser.html
index 55d8073..d3ac983 100644
--- a/catapult/tracing/tracing/extras/importer/linux_perf/bus_parser.html
+++ b/catapult/tracing/tracing/extras/importer/linux_perf/bus_parser.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit_scale.html">
 <link rel="import" href="/tracing/extras/importer/linux_perf/parser.html">
 <link rel="import" href="/tracing/model/counter_series.html">
 
@@ -43,17 +44,23 @@
       var event = re.exec(eventBase.details);
 
       var name = event[1];
-      var rw_bytes = parseInt(event[2]);
-      var r_bytes = parseInt(event[3]);
-      var w_bytes = parseInt(event[4]);
+      var rwBytes = parseInt(event[2]);
+      var rBytes = parseInt(event[3]);
+      var wBytes = parseInt(event[4]);
       var cycles = parseInt(event[5]);
       var ns = parseInt(event[6]);
 
-      // BW in MB/s
-      var r_bw = r_bytes * 1000000000 / ns;
-      r_bw /= 1024 * 1024;
-      var w_bw = w_bytes * 1000000000 / ns;
-      w_bw /= 1024 * 1024;
+      // BW in MiB/s.
+      var sec = tr.b.convertUnit(ns, tr.b.UnitScale.Metric.NANO,
+          tr.b.UnitScale.Metric.NONE);
+      var readBandwidthInBps = rBytes / sec;
+      var readBandwidthInMiBps = tr.b.convertUnit(readBandwidthInBps,
+          tr.b.UnitScale.Binary.NONE,
+          tr.b.UnitScale.Binary.MEBI);
+      var writeBandwidthInBps = wBytes / sec;
+      var writeBandwidthInMiBps = tr.b.convertUnit(writeBandwidthInBps,
+          tr.b.UnitScale.Binary.NONE,
+          tr.b.UnitScale.Binary.MEBI);
 
       var ctr = this.model_.kernel
               .getOrCreateCounter(null, 'bus ' + name + ' read');
@@ -63,7 +70,7 @@
                 ctr.name + '.' + 'value')));
       }
       ctr.series.forEach(function(series) {
-        series.addCounterSample(ts, r_bw);
+        series.addCounterSample(ts, readBandwidthInMiBps);
       });
 
       ctr = this.model_.kernel
@@ -74,7 +81,7 @@
                 ctr.name + '.' + 'value')));
       }
       ctr.series.forEach(function(series) {
-        series.addCounterSample(ts, r_bw);
+        series.addCounterSample(ts, writeBandwidthInMiBps);
       });
 
       return true;
diff --git a/catapult/tracing/tracing/extras/importer/linux_perf/sync_parser.html b/catapult/tracing/tracing/extras/importer/linux_perf/sync_parser.html
index 0e41cee..6066b66 100644
--- a/catapult/tracing/tracing/extras/importer/linux_perf/sync_parser.html
+++ b/catapult/tracing/tracing/extras/importer/linux_perf/sync_parser.html
@@ -112,16 +112,7 @@
     },
 
     syncPtEvent: function(eventName, cpuNumber, pid, ts, eventBase) {
-      var event = syncPtRE.exec(eventBase.details);
-      if (!event)
-        return false;
-
-      return true;
-
-      var thread = this.importer.getOrCreateKernelThread(
-          eventBase[1]).thread;
-      thread.syncWaitSyncPts[event[1]] = event[2];
-      return true;
+      return !!syncPtRE.exec(eventBase.details);
     }
   };
 
@@ -132,4 +123,3 @@
   };
 });
 </script>
-
diff --git a/catapult/tracing/tracing/extras/importer/trace_event_importer.html b/catapult/tracing/tracing/extras/importer/trace_event_importer.html
index abd44e7..0487e8f 100644
--- a/catapult/tracing/tracing/extras/importer/trace_event_importer.html
+++ b/catapult/tracing/tracing/extras/importer/trace_event_importer.html
@@ -8,6 +8,7 @@
 <link rel="import" href="/tracing/base/base64.html">
 <link rel="import" href="/tracing/base/color_scheme.html">
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/base/utils.html">
 <link rel="import" href="/tracing/extras/importer/trace_code_entry.html">
 <link rel="import" href="/tracing/extras/importer/trace_code_map.html">
@@ -31,7 +32,6 @@
 <link rel="import" href="/tracing/model/vm_region.html">
 <link rel="import" href="/tracing/model/x_marker_annotation.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -54,9 +54,6 @@
     }
   }
 
-  var timestampFromUs = tr.v.Unit.timestampFromUs;
-  var maybeTimestampFromUs = tr.v.Unit.maybeTimestampFromUs;
-
   var PRODUCER = 'producer';
   var CONSUMER = 'consumer';
   var STEP = 'step';
@@ -69,6 +66,8 @@
 
   var GLOBAL_MEMORY_ALLOCATOR_DUMP_PREFIX = 'global/';
 
+  var ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX = 'ClockSyncEvent.';
+
   // Map from raw memory dump byte stat names to model byte stat names. See
   // //base/trace_event/process_memory_maps.cc in Chromium.
   var BYTE_STAT_NAME_MAP = {
@@ -133,6 +132,7 @@
     this.eventsWereFromString_ = false;
     this.softwareMeasuredCpuCount_ = undefined;
 
+
     this.allAsyncEvents_ = [];
     this.allFlowEvents_ = [];
     this.allObjectEvents_ = [];
@@ -145,6 +145,11 @@
     this.v8ProcessRootStackFrame_ = {};
     this.v8SamplingData_ = [];
 
+    // For tracking async events that is used to create back-compat clock sync
+    // event.
+    this.asyncClockSyncStart_ = undefined;
+    this.asyncClockSyncFinish_ = undefined;
+
     // Dump ID -> PID -> [process memory dump events].
     this.allMemoryDumpEvents_ = {};
 
@@ -154,6 +159,9 @@
     // For old Chrome traces with no clock domain metadata, just use a
     // placeholder clock domain.
     this.clockDomainId_ = tr.model.ClockDomainId.UNKNOWN_CHROME_LEGACY;
+    // A function able to transform timestamps in |clockDomainId| to timestamps
+    // in the model clock domain.
+    this.toModelTime_ = undefined;
 
     if (typeof(eventData) === 'string' || eventData instanceof String) {
       eventData = eventData.trim();
@@ -195,7 +203,7 @@
       // Some implementations specify displayTimeUnit
       if (container.displayTimeUnit) {
         var unitName = container.displayTimeUnit;
-        var unit = tr.v.TimeDisplayModes[unitName];
+        var unit = tr.b.TimeDisplayModes[unitName];
         if (unit === undefined) {
           throw new Error('Unit ' + unitName + ' is not supported.');
         }
@@ -351,7 +359,7 @@
         }
       }
 
-      var ts = timestampFromUs(event.ts);
+      var ts = this.toModelTimeFromUs_(event.ts);
       ctr.series.forEach(function(series) {
         var val = event.args[series.name] ? event.args[series.name] : 0;
         series.addCounterSample(ts, val);
@@ -416,7 +424,7 @@
     processDurationEvent: function(event) {
       var thread = this.model_.getOrCreateProcess(event.pid)
         .getOrCreateThread(event.tid);
-      var ts = timestampFromUs(event.ts);
+      var ts = this.toModelTimeFromUs_(event.ts);
       if (!thread.sliceGroup.isTimestampValidForBeginOrEnd(ts)) {
         this.model_.importWarning({
           type: 'duration_parse_error',
@@ -427,9 +435,9 @@
 
       if (event.ph === 'B') {
         var slice = thread.sliceGroup.beginSlice(
-            event.cat, event.name, timestampFromUs(event.ts),
+            event.cat, event.name, this.toModelTimeFromUs_(event.ts),
             this.deepCopyIfNeeded_(event.args),
-            timestampFromUs(event.tts), event.argsStripped,
+            this.toModelTimeFromUs_(event.tts), event.argsStripped,
             getEventColor(event));
         slice.startStackFrame = this.getStackFrameForEvent_(event);
         this.setContextsFromThread_(thread, slice);
@@ -438,13 +446,14 @@
           throw new Error('This should never happen');
 
         thread.sliceGroup.beginSlice(event.cat, event.name,
-                                     timestampFromUs(event.ts),
+                                     this.toModelTimeFromUs_(event.ts),
                                      this.deepCopyIfNeeded_(event.args),
-                                     timestampFromUs(event.tts),
+                                     this.toModelTimeFromUs_(event.tts),
                                      event.argsStripped,
                                      getEventColor(event));
-        var slice = thread.sliceGroup.endSlice(timestampFromUs(event.ts),
-                                   timestampFromUs(event.tts));
+        var slice = thread.sliceGroup.endSlice(
+            this.toModelTimeFromUs_(event.ts),
+            this.toModelTimeFromUs_(event.tts));
         slice.startStackFrame = this.getStackFrameForEvent_(event);
         slice.endStackFrame = undefined;
       } else {
@@ -456,9 +465,10 @@
           return;
         }
 
-        var slice = thread.sliceGroup.endSlice(timestampFromUs(event.ts),
-                                               timestampFromUs(event.tts),
-                                               getEventColor(event));
+        var slice = thread.sliceGroup.endSlice(
+            this.toModelTimeFromUs_(event.ts),
+            this.toModelTimeFromUs_(event.tts),
+            getEventColor(event));
         if (event.name && slice.title != event.name) {
           this.model_.importWarning({
             type: 'title_match_error',
@@ -508,10 +518,11 @@
       }
 
       var slice = thread.sliceGroup.pushCompleteSlice(event.cat, event.name,
-          timestampFromUs(event.ts),
-          maybeTimestampFromUs(event.dur),
-          maybeTimestampFromUs(event.tts),
-          maybeTimestampFromUs(event.tdur),
+
+          this.toModelTimeFromUs_(event.ts),
+          this.maybeToModelTimeFromUs_(event.dur),
+          this.maybeToModelTimeFromUs_(event.tts),
+          this.maybeToModelTimeFromUs_(event.tdur),
           this.deepCopyIfNeeded_(event.args),
           event.argsStripped,
           getEventColor(event),
@@ -641,7 +652,7 @@
       }
 
       var instantEvent = new constructor(event.cat, event.name,
-          getEventColor(event), timestampFromUs(event.ts),
+          getEventColor(event), this.toModelTimeFromUs_(event.ts),
           this.deepCopyIfNeeded_(event.args));
 
       switch (instantEvent.type) {
@@ -737,7 +748,7 @@
 
       var sample = new tr.model.Sample(
           undefined /* cpu */, thread, 'V8 Sample',
-          timestampFromUs(event.ts), lastStackFrame, 1 /* weight */,
+          this.toModelTimeFromUs_(event.ts), lastStackFrame, 1 /* weight */,
           this.deepCopyIfNeeded_(event.args));
       this.model_.samples.push(sample);
     },
@@ -767,7 +778,7 @@
 
       var sample = new tr.model.Sample(
           undefined, thread, 'Trace Event Sample',
-          timestampFromUs(event.ts), stackFrame, 1,
+          this.toModelTimeFromUs_(event.ts), stackFrame, 1,
           this.deepCopyIfNeeded_(event.args));
       this.setContextsFromThread_(thread, sample);
       this.model_.samples.push(sample);
@@ -840,8 +851,9 @@
         //     ...
         //   }
         this.model_.clockSyncManager.addClockSyncMarker(
-            this.clockDomainId_, syncId, timestampFromUs(event.args.issue_ts),
-            timestampFromUs(event.ts));
+            this.clockDomainId_, syncId,
+            tr.b.Unit.timestampFromUs(event.args.issue_ts),
+            tr.b.Unit.timestampFromUs(event.ts));
       } else {
         // When Chrome is a tracing agent and is the recipient of the clock
         // sync request, the clock sync event looks like:
@@ -853,7 +865,7 @@
         //     ...
         //   }
         this.model_.clockSyncManager.addClockSyncMarker(
-            this.clockDomainId_, syncId, timestampFromUs(event.ts));
+            this.clockDomainId_, syncId, tr.b.Unit.timestampFromUs(event.ts));
       }
     },
 
@@ -880,10 +892,57 @@
       }
     },
 
+    initBackcompatClockSyncEventTracker_: function(event) {
+      if (event.name !== undefined &&
+          event.name.startsWith(ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX) &&
+          event.ph === 'S')
+        this.asyncClockSyncStart_ = event;
+
+      if (event.name !== undefined &&
+          event.name.startsWith(ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX) &&
+          event.ph === 'F')
+          this.asyncClockSyncFinish_ = event;
+      if (this.asyncClockSyncStart_ == undefined ||
+          this.asyncClockSyncFinish_ == undefined)
+        return;
+
+      // Older version of Chrome doesn't support clock sync API, hence
+      // telemetry get around it by marking the clock sync events with
+      // console.time & console.timeEnd. When we encounter async events
+      // with named started with 'ClockSyncEvent.' prefix, create a
+      // synthetic clock sync events based on their timestamps.
+      var syncId =
+          this.asyncClockSyncStart_.name.substring(
+              ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX.length);
+      if (syncId !==
+          this.asyncClockSyncFinish_.name.substring(
+              ASYNC_CLOCK_SYNC_EVENT_TITLE_PREFIX.length)) {
+         throw new Error('Inconsistent clock sync id of async clock sync ' +
+                         'events.');
+      }
+      var clockSyncEvent = {
+          ph: 'c',
+          args: {
+            sync_id: syncId,
+            issue_ts: this.asyncClockSyncStart_.ts
+          },
+          ts: this.asyncClockSyncFinish_.ts,
+      };
+      this.asyncClockSyncStart_ = undefined;
+      this.asyncClockSyncFinish_ = undefined;
+      return clockSyncEvent;
+    },
+
     importClockSyncMarkers: function() {
+      var asyncClockSyncStart, asyncClockSyncFinish;
       for (var i = 0; i < this.events_.length; i++) {
         var event = this.events_[i];
 
+        var possibleBackCompatClockSyncEvent =
+            this.initBackcompatClockSyncEventTracker_(event);
+        if (possibleBackCompatClockSyncEvent)
+            this.processClockSyncEvent(possibleBackCompatClockSyncEvent);
+
         if (event.ph !== 'c')
           continue;
 
@@ -1217,7 +1276,7 @@
         var sample = new tr.model.Sample(
             cpu, thread,
             event.name,
-            timestampFromUs(event.ts),
+            this.toModelTimeFromUs_(event.ts),
             stackFrame,
             event.weight);
         m.samples.push(sample);
@@ -1383,10 +1442,10 @@
                 events[0].event.cat,
                 name,
                 getEventColor(events[0].event),
-                timestampFromUs(events[0].event.ts),
+                this.toModelTimeFromUs_(events[0].event.ts),
                 tr.b.concatenateObjects(events[0].event.args,
                                       events[events.length - 1].event.args),
-                timestampFromUs(event.ts - events[0].event.ts),
+                this.toModelTimeFromUs_(event.ts - events[0].event.ts),
                 true, undefined, undefined, events[0].event.argsStripped);
             slice.startThread = events[0].thread;
             slice.endThread = asyncEventState.thread;
@@ -1440,9 +1499,9 @@
                   events[0].event.cat,
                   subName,
                   getEventColor(event, subName + j),
-                  timestampFromUs(events[startIndex].event.ts),
+                  this.toModelTimeFromUs_(events[startIndex].event.ts),
                   this.deepCopyIfNeeded_(events[j].event.args),
-                  timestampFromUs(
+                  this.toModelTimeFromUs_(
                     events[endIndex].event.ts - events[startIndex].event.ts),
                       undefined, undefined,
                       events[startIndex].event.argsStripped);
@@ -1570,9 +1629,9 @@
           var thread_start = undefined;
           var thread_duration = undefined;
           if (startState.event.tts && startState.event.use_async_tts) {
-            thread_start = timestampFromUs(startState.event.tts);
+            thread_start = this.toModelTimeFromUs_(startState.event.tts);
             if (endState.event.tts) {
-              var thread_end = timestampFromUs(endState.event.tts);
+              var thread_end = this.toModelTimeFromUs_(endState.event.tts);
               thread_duration = thread_end - thread_start;
             }
           }
@@ -1581,9 +1640,9 @@
             eventStateEntry.event.cat,
             eventStateEntry.event.name,
             getEventColor(endState.event),
-            timestampFromUs(startState.event.ts),
+            this.toModelTimeFromUs_(startState.event.ts),
             sliceArgs,
-            timestampFromUs(endState.event.ts - startState.event.ts),
+            this.toModelTimeFromUs_(endState.event.ts - startState.event.ts),
             isTopLevel,
             thread_start,
             thread_duration,
@@ -1669,17 +1728,17 @@
         return false;
       }
 
-      function createFlowEvent(thread, event, opt_slice) {
+      var createFlowEvent = function(thread, event, opt_slice) {
         var startSlice, flowId, flowStartTs;
 
         if (event.bind_id) {
           // Support Flow API v2.
           startSlice = opt_slice;
           flowId = event.bind_id;
-          flowStartTs = timestampFromUs(event.ts + event.dur);
+          flowStartTs = this.toModelTimeFromUs_(event.ts + event.dur);
         } else {
           // Support Flow API v1.
-          var ts = timestampFromUs(event.ts);
+          var ts = this.toModelTimeFromUs_(event.ts);
           startSlice = thread.sliceGroup.findSliceAtTs(ts);
           if (startSlice === undefined)
             return undefined;
@@ -1699,10 +1758,10 @@
         flowEvent.endStackFrame = undefined;
         startSlice.outFlowEvents.push(flowEvent);
         return flowEvent;
-      }
+      }.bind(this);
 
-      function finishFlowEventWith(flowEvent, thread, event,
-                                   refGuid, bindToParent, opt_slice) {
+      var finishFlowEventWith = function(
+          flowEvent, thread, event, refGuid, bindToParent, opt_slice) {
         var endSlice;
 
         if (event.bind_id) {
@@ -1710,7 +1769,7 @@
           endSlice = opt_slice;
         } else {
           // Support Flow API v1.
-          var ts = timestampFromUs(event.ts);
+          var ts = this.toModelTimeFromUs_(event.ts);
           if (bindToParent) {
             endSlice = thread.sliceGroup.findSliceAtTs(ts);
           } else {
@@ -1722,14 +1781,15 @@
 
         endSlice.inFlowEvents.push(flowEvent);
         flowEvent.endSlice = endSlice;
-        flowEvent.duration = timestampFromUs(event.ts) - flowEvent.start;
+        flowEvent.duration =
+            this.toModelTimeFromUs_(event.ts) - flowEvent.start;
         flowEvent.endStackFrame = that.getStackFrameForEvent_(event);
         that.mergeArgsInto_(flowEvent.args, event.args, flowEvent.title);
         return true;
-      }
+      }.bind(this);
 
-      function processFlowConsumer(flowIdToEvent, sliceGuidToEvent, event,
-          slice) {
+      function processFlowConsumer(
+          flowIdToEvent, sliceGuidToEvent, event, slice) {
         var flowEvent = flowIdToEvent[event.bind_id];
         if (flowEvent === undefined) {
           that.model_.importWarning({
@@ -1780,8 +1840,6 @@
           return false;
         }
         flowIdToEvent[event.bind_id] = flowEvent;
-
-        return;
       }
 
       // Actual import.
@@ -1912,7 +1970,7 @@
       if (this.allObjectEvents_.length === 0)
         return;
 
-      function processEvent(objectEventState) {
+      var processEvent = function(objectEventState) {
         var event = objectEventState.event;
         var scopedId = this.scopedIdForEvent_(event);
         var thread = objectEventState.thread;
@@ -1932,7 +1990,7 @@
           });
         }
         var process = thread.parent;
-        var ts = timestampFromUs(event.ts);
+        var ts = this.toModelTimeFromUs_(event.ts);
         var instance;
         if (event.ph === 'N') {
           try {
@@ -2002,7 +2060,7 @@
 
         if (instance)
           instance.colorId = getEventColor(event, instance.typeName);
-      }
+      }.bind(this);
 
       this.allObjectEvents_.sort(function(x, y) {
         var d = x.event.ts - y.event.ts;
@@ -2160,7 +2218,7 @@
       for (var pid in dumpIdEvents) {
         var processEvents = dumpIdEvents[pid];
         for (var i = 0; i < processEvents.length; i++)
-          globalRange.addValue(timestampFromUs(processEvents[i].ts));
+          globalRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));
       }
       if (globalRange.isEmpty)
         throw new Error('Internal error: Global memory dump without events');
@@ -2210,7 +2268,7 @@
       // Calculate the range of the process memory dump.
       var processRange = new tr.b.Range();
       for (var i = 0; i < processEvents.length; i++)
-        processRange.addValue(timestampFromUs(processEvents[i].ts));
+        processRange.addValue(this.toModelTimeFromUs_(processEvents[i].ts));
       if (processRange.isEmpty)
         throw new Error('Internal error: Process memory dump without events');
 
@@ -2764,8 +2822,8 @@
                 break;
               }
               var unit = attrArgs.units === 'bytes' ?
-                  tr.v.Unit.byName.sizeInBytes_smallerIsBetter :
-                  tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+                  tr.b.Unit.byName.sizeInBytes_smallerIsBetter :
+                  tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
               var value = parseInt(attrValue, 16);
               allocatorDump.addNumeric(attrName,
                   new tr.v.ScalarNumeric(unit, value));
@@ -2982,6 +3040,31 @@
           }
         }
       }
+    },
+
+    /**
+     * Converts |ts| (in microseconds) to a timestamp in the model clock domain
+     * (in milliseconds).
+     */
+    toModelTimeFromUs_: function(ts) {
+      if (!this.toModelTime_) {
+        this.toModelTime_ =
+            this.model_.clockSyncManager.getModelTimeTransformer(
+                this.clockDomainId_);
+      }
+
+      return this.toModelTime_(tr.b.Unit.timestampFromUs(ts));
+    },
+
+    /**
+     * Converts |ts| (in microseconds) to a timestamp in the model clock domain
+     * (in milliseconds). If |ts| is undefined, undefined is returned.
+     */
+    maybeToModelTimeFromUs_: function(ts) {
+      if (ts === undefined)
+        return undefined;
+
+      return this.toModelTimeFromUs_(ts);
     }
   };
 
diff --git a/catapult/tracing/tracing/extras/importer/trace_event_importer_test.html b/catapult/tracing/tracing/extras/importer/trace_event_importer_test.html
index 4567005..d9a6073 100644
--- a/catapult/tracing/tracing/extras/importer/trace_event_importer_test.html
+++ b/catapult/tracing/tracing/extras/importer/trace_event_importer_test.html
@@ -5,7 +5,10 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/time_display_modes.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/extras/importer/battor_importer.html">
 <link rel="import" href="/tracing/extras/importer/trace_event_importer.html">
 <link rel="import" href="/tracing/extras/measure/measure.html">
 <link rel="import" href="/tracing/importer/import.html">
@@ -14,8 +17,6 @@
 <link rel="import" href="/tracing/model/scoped_id.html">
 <link rel="import" href="/tracing/model/vm_region.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -29,7 +30,7 @@
   var VMRegion = tr.model.VMRegion;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var checkDumpNumericsAndDiagnostics =
       tr.model.MemoryDumpTestUtils.checkDumpNumericsAndDiagnostics;
   var checkVMRegions = tr.model.MemoryDumpTestUtils.checkVMRegions;
@@ -884,9 +885,9 @@
         ph: 'C', id: 1},
       {name: 'ctr', args: {'value': 20}, pid: 1, ts: 15, cat: 'foo', tid: 1,
         ph: 'C', id: 1},
-      {name: 'ctr', args: {'value': 30}, pid: 1, ts: 18, cat: 'foo', tid: 1,
+      {name: 'ctr', args: {'value': 30}, pid: 1, ts: 20, cat: 'foo', tid: 1,
         ph: 'C', id: 1},
-      {name: 'ctr', args: {'value': 40}, pid: 1, ts: 20, cat: 'bar', tid: 1,
+      {name: 'ctr', args: {'value': 40}, pid: 1, ts: 25, cat: 'bar', tid: 1,
         ph: 'C', id: 2}
     ];
     var m = makeModel(events);
@@ -909,7 +910,7 @@
     assert.equal(ctr.category, 'foo');
     assert.equal(ctr.numSamples, 3);
     assert.equal(ctr.numSeries, 1);
-    assert.deepEqual(ctr.timestamps, [0.01, 0.015, 0.018]);
+    assert.deepEqual(ctr.timestamps, [0.01, 0.015, 0.02]);
 
     samples = [];
     ctr.series[0].samples.forEach(function(sample) {
@@ -922,7 +923,7 @@
     assert.equal(ctr.category, 'bar');
     assert.equal(ctr.numSamples, 1);
     assert.equal(ctr.numSeries, 1);
-    assert.deepEqual(ctr.timestamps, [0.02]);
+    assert.deepEqual(ctr.timestamps, [0.025]);
     var samples = [];
     ctr.series[0].samples.forEach(function(sample) {
       samples.push(sample.value);
@@ -5253,7 +5254,7 @@
       displayTimeUnit: 'ns'
     };
     var m = makeModel(JSON.stringify(eventData));
-    assert.equal(m.intrinsicTimeUnit, tr.v.TimeDisplayModes.ns);
+    assert.equal(m.intrinsicTimeUnit, tr.b.TimeDisplayModes.ns);
   });
 
   test('extractBattorSubTraces', function() {
@@ -5274,8 +5275,7 @@
       ],
       powerTraceAsString: battorLog
     };
-
-    var m = makeModel(eventData);
+    var m = new tr.Model();
     var importer = new tr.e.importer.TraceEventImporter(m, eventData);
     var subTraces = importer.extractSubtraces();
     assert.isTrue(subTraces instanceof Array);
diff --git a/catapult/tracing/tracing/extras/importer/v8/v8_log_importer.html b/catapult/tracing/tracing/extras/importer/v8/v8_log_importer.html
index b982535..9321ca2 100644
--- a/catapult/tracing/tracing/extras/importer/v8/v8_log_importer.html
+++ b/catapult/tracing/tracing/extras/importer/v8/v8_log_importer.html
@@ -84,27 +84,31 @@
       return 'V8LogImporter';
     },
 
-    processTimerEvent_: function(name, start, length) {
+    processTimerEvent_: function(name, startInUs, lengthInUs) {
       var args = TimerEventDefaultArgs[name];
       if (args === undefined) return;
-      start /= 1000;  // Convert to milliseconds.
-      length /= 1000;
+      var startInMs = tr.b.convertUnit(startInUs,
+          tr.b.UnitScale.Metric.MICRO, tr.b.UnitScale.Metric.MILLI);
+      var lengthInMs = tr.b.convertUnit(lengthInUs,
+          tr.b.UnitScale.Metric.MICRO, tr.b.UnitScale.Metric.MILLI);
       var colorId = ColorScheme.getColorIdForGeneralPurposeString(name);
-      var slice = new tr.model.ThreadSlice('v8', name, colorId, start,
-          args, length);
+      var slice = new tr.model.ThreadSlice('v8', name, colorId, startInMs,
+          args, lengthInMs);
       this.v8_timer_thread_.sliceGroup.pushSlice(slice);
     },
 
-    processTimerEventStart_: function(name, start) {
+    processTimerEventStart_: function(name, startInUs) {
       var args = TimerEventDefaultArgs[name];
       if (args === undefined) return;
-      start /= 1000;  // Convert to milliseconds.
-      this.v8_timer_thread_.sliceGroup.beginSlice('v8', name, start, args);
+      var startInMs = tr.b.convertUnit(startInUs,
+          tr.b.UnitScale.Metric.MICRO, tr.b.UnitScale.Metric.MILLI);
+      this.v8_timer_thread_.sliceGroup.beginSlice('v8', name, startInMs, args);
     },
 
-    processTimerEventEnd_: function(name, end) {
-      end /= 1000;  // Convert to milliseconds.
-      this.v8_timer_thread_.sliceGroup.endSlice(end);
+    processTimerEventEnd_: function(name, endInUs) {
+      var endInMs = tr.b.convertUnit(endInUs,
+          tr.b.UnitScale.Metric.MICRO, tr.b.UnitScale.Metric.MILLI);
+      this.v8_timer_thread_.sliceGroup.endSlice(endInMs);
     },
 
     processCodeCreateEvent_: function(type, kind, address, size, name,
@@ -176,9 +180,11 @@
       this.code_map_.addStaticCode(address, code_entry);
     },
 
-    processTickEvent_: function(pc, start, is_external_callback,
+    processTickEvent_: function(pc, startInUs, is_external_callback,
                                 tos_or_external_callback, vmstate, stack) {
-      start /= 1000;
+
+      var startInMs = tr.b.convertUnit(startInUs,
+          tr.b.UnitScale.Metric.MICRO, tr.b.UnitScale.Metric.MILLI);
 
       function findChildWithEntryID(stackFrame, entryID) {
         for (var i = 0; i < stackFrame.children.length; i++) {
@@ -261,7 +267,7 @@
       if (lastStackFrame !== this.root_stack_frame_) {
         var sample = new tr.model.Sample(
           undefined, this.v8_thread_, 'V8 PC',
-          start, lastStackFrame, 1);
+          startInMs, lastStackFrame, 1);
         this.model_.samples.push(sample);
       }
     },
diff --git a/catapult/tracing/tracing/extras/importer/v8/v8_log_importer_test.html b/catapult/tracing/tracing/extras/importer/v8/v8_log_importer_test.html
index fdbe447..f4fb66f 100644
--- a/catapult/tracing/tracing/extras/importer/v8/v8_log_importer_test.html
+++ b/catapult/tracing/tracing/extras/importer/v8/v8_log_importer_test.html
@@ -172,7 +172,7 @@
       'tick,0x7fd2a534,536213,0,0x81d8d080,0,0x2905d304,0x2904d6e8',
       'code-creation,Script,0,0x2906a7c0,792,"http://www.google.com/",0x5b12fe50,~', // @suppress longLineCheck
       'tick,0xb6f51d30,794049,0,0xb6f7b368,2,0x2906a914',
-      'tick,0xb6f51d30,799146,0,0xb6f7b368,0,0x2906a914'
+      'tick,0xb6f51d30,799145,0,0xb6f7b368,0,0x2906a914'
     ];
     var m = newModel(lines.join('\n'));
     var p = m.processes[-32];
@@ -184,7 +184,7 @@
     assert.equal(t.samples[1].start, 528674 / 1000);
     assert.equal(t.samples[2].start, 536213 / 1000);
     assert.equal(t.samples[3].start, 794049 / 1000);
-    assert.equal(t.samples[4].start, 799146 / 1000);
+    assert.equal(t.samples[4].start, 799145 / 1000);
 
     assert.deepEqual(
         ['~Instantiate native apinatives.js:9:21'],
diff --git a/catapult/tracing/tracing/extras/v8/v8_thread_slice.html b/catapult/tracing/tracing/extras/v8/v8_thread_slice.html
new file mode 100644
index 0000000..a0911d0
--- /dev/null
+++ b/catapult/tracing/tracing/extras/v8/v8_thread_slice.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/model/thread_slice.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.e.v8', function() {
+  var ThreadSlice = tr.model.ThreadSlice;
+
+  function V8ThreadSlice() {
+    ThreadSlice.apply(this, arguments);
+    this.runtimeCallStats_ = undefined;
+  }
+
+  V8ThreadSlice.prototype = {
+    __proto__: ThreadSlice.prototype,
+
+    get runtimeCallStats() {
+      if ('runtime-call-stats' in this.args) {
+        this.runtimeCallStats_ = this.args['runtime-call-stats'];
+        delete this.args['runtime-call-stats'];
+      }
+      return this.runtimeCallStats_;
+    }
+  };
+
+  ThreadSlice.subTypes.register(
+    V8ThreadSlice,
+    {
+      categoryParts: ['v8'],
+      name: 'v8 slice',
+      pluralName: 'v8 slices'
+    }
+  );
+
+  return {
+    V8ThreadSlice: V8ThreadSlice
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/extras/v8_config.html b/catapult/tracing/tracing/extras/v8_config.html
new file mode 100644
index 0000000..b9ed173
--- /dev/null
+++ b/catapult/tracing/tracing/extras/v8_config.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/extras/v8/v8_thread_slice.html">
diff --git a/catapult/tracing/tracing/importer/find_input_expectations.html b/catapult/tracing/tracing/importer/find_input_expectations.html
index 45d6b7c..cd2aff6 100644
--- a/catapult/tracing/tracing/importer/find_input_expectations.html
+++ b/catapult/tracing/tracing/importer/find_input_expectations.html
@@ -72,6 +72,7 @@
   );
 
   var RENDERER_FLING_TITLE = 'InputHandlerProxy::HandleGestureFling::started';
+  var PLAYBACK_EVENT_TITLE = 'VideoPlayback';
 
   var CSS_ANIMATION_TITLE = 'Animation';
 
@@ -108,6 +109,7 @@
   var SCROLL_IR_NAME = 'Scroll';
   var CSS_IR_NAME = 'CSS';
   var WEBGL_IR_NAME = 'WebGL';
+  var VIDEO_IR_NAME = 'Video';
 
   // TODO(benjhayden) Find a better home for this.
   function compareEvents(x, y) {
@@ -183,6 +185,7 @@
       handleScrollEvents,
       handleCSSAnimations,
       handleWebGLAnimations,
+      handleVideoAnimations
     ];
     handlers.forEach(function(handler) {
       protoExpectations.push.apply(protoExpectations, handler(
@@ -743,6 +746,38 @@
   }
 
   /**
+   * Returns proto expectations for video animation events.
+   *
+   * Video animations represent video playback, and are based on
+   * VideoPlayback async events (going from the VideoFrameCompositor::Start
+   * to VideoFrameCompositor::Stop calls)
+   */
+  function handleVideoAnimations(modelHelper, sortedInputEvents) {
+    var events = [];
+    for (var pid in modelHelper.rendererHelpers) {
+      for (var asyncSlice of
+          modelHelper.rendererHelpers[pid].mainThread.asyncSliceGroup.slices) {
+        if (asyncSlice.title === PLAYBACK_EVENT_TITLE)
+          events.push(asyncSlice);
+      }
+    }
+
+    events.sort(tr.importer.compareEvents);
+
+    var protoExpectations = [];
+    for (var event of events) {
+      var currentPE = new ProtoExpectation(
+          ProtoExpectation.ANIMATION_TYPE, VIDEO_IR_NAME);
+      currentPE.start = event.start;
+      currentPE.end = event.end;
+      currentPE.pushEvent(event);
+      protoExpectations.push(currentPE);
+    }
+
+    return protoExpectations;
+  }
+
+  /**
    * CSS Animations are merged into AnimationExpectations when they intersect.
    */
   function handleCSSAnimations(modelHelper, sortedInputEvents) {
@@ -1009,6 +1044,7 @@
 
       var isCSS = pe.containsSliceTitle(CSS_ANIMATION_TITLE);
       var isFling = pe.containsTypeNames([INPUT_TYPE.FLING_START]);
+      var isVideo = pe.containsTypeNames([VIDEO_IR_NAME]);
 
       for (var i = 0; i < protoExpectations.length; ++i) {
         var otherPE = protoExpectations[i];
@@ -1028,7 +1064,11 @@
         }
 
         // Don't merge Fling Animations with any other types.
-        if (isFling != otherPE.containsTypeNames([INPUT_TYPE.FLING_START]))
+        if (isFling !== otherPE.containsTypeNames([INPUT_TYPE.FLING_START]))
+          continue;
+
+        // Don't merge Video Animations with any other types.
+        if (isVideo !== otherPE.containsTypeNames([VIDEO_IR_NAME]))
           continue;
 
         pe.merge(otherPE);
diff --git a/catapult/tracing/tracing/importer/user_model_builder_test.html b/catapult/tracing/tracing/importer/user_model_builder_test.html
index 60da202..7fc6ff2 100644
--- a/catapult/tracing/tracing/importer/user_model_builder_test.html
+++ b/catapult/tracing/tracing/importer/user_model_builder_test.html
@@ -38,6 +38,56 @@
     verifier.verify();
   });
 
+  test('videoExpectations_gapInMiddle', function() {
+    var verifier = new UserExpectationVerifier();
+    verifier.customizeModelCallback = function(model) {
+      model.rendererMain.asyncSliceGroup.push(tr.c.TestUtils.newAsyncSliceEx(
+          {title: 'VideoPlayback', start: 0, end: 100, isTopLevel: true}));
+      chrome_test_utils.addFrameEvent(model, {start: 10, end: 20});
+      model.rendererMain.asyncSliceGroup.push(tr.c.TestUtils.newAsyncSliceEx(
+          {title: 'VideoPlayback', start: 200, end: 300, isTopLevel: true}));
+      chrome_test_utils.addFrameEvent(model, {start: 210, end: 220});
+    };
+    verifier.expectedIRs = [
+      {title: 'Video Animation', start: 0, end: 100, eventCount: 2},
+      {title: 'Idle', start: 100, end: 200, eventCount: 0},
+      {title: 'Video Animation', start: 200, end: 300, eventCount: 2},
+    ];
+    verifier.verify();
+  });
+
+  test('videoExpectations_overlapping', function() {
+    var verifier = new UserExpectationVerifier();
+    verifier.customizeModelCallback = function(model) {
+      model.rendererMain.asyncSliceGroup.push(tr.c.TestUtils.newAsyncSliceEx(
+          {title: 'VideoPlayback', start: 0, end: 200, isTopLevel: true}));
+      chrome_test_utils.addFrameEvent(model, {start: 10, end: 20});
+      model.rendererMain.asyncSliceGroup.push(tr.c.TestUtils.newAsyncSliceEx(
+          {title: 'VideoPlayback', start: 100, end: 300, isTopLevel: true}));
+      chrome_test_utils.addFrameEvent(model, {start: 210, end: 220});
+    };
+    verifier.expectedIRs = [
+      {title: 'Video Animation', start: 0, end: 300, eventCount: 4},
+    ];
+    verifier.verify();
+  });
+
+  test('videoExpectations_oneInTheOther', function() {
+    var verifier = new UserExpectationVerifier();
+    verifier.customizeModelCallback = function(model) {
+      model.rendererMain.asyncSliceGroup.push(tr.c.TestUtils.newAsyncSliceEx(
+          {title: 'VideoPlayback', start: 0, end: 300, isTopLevel: true}));
+      chrome_test_utils.addFrameEvent(model, {start: 10, end: 20});
+      model.rendererMain.asyncSliceGroup.push(tr.c.TestUtils.newAsyncSliceEx(
+          {title: 'VideoPlayback', start: 100, end: 200, isTopLevel: true}));
+      chrome_test_utils.addFrameEvent(model, {start: 110, end: 120});
+    };
+    verifier.expectedIRs = [
+      {title: 'Video Animation', start: 0, end: 300, eventCount: 4},
+    ];
+    verifier.verify();
+  });
+
   test('slowMouseMoveResponses', function() {
     var verifier = new UserExpectationVerifier();
     verifier.customizeModelCallback = function(model) {
diff --git a/catapult/tracing/tracing/metrics/all_metrics.html b/catapult/tracing/tracing/metrics/all_metrics.html
index fd494a1..3fa6fd8 100644
--- a/catapult/tracing/tracing/metrics/all_metrics.html
+++ b/catapult/tracing/tracing/metrics/all_metrics.html
@@ -9,13 +9,15 @@
 <link rel="import" href="/tracing/metrics/cpu_process_metric.html">
 <link rel="import" href="/tracing/metrics/sample_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/clock_sync_latency_metric.html">
-<link rel="import" href="/tracing/metrics/system_health/efficiency_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/hazard_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/loading_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/memory_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/power_metric.html">
+<link rel="import" href="/tracing/metrics/system_health/rail_power_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/responsiveness_metric.html">
+<link rel="import" href="/tracing/metrics/system_health/scroll_power_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/system_health_metrics.html">
+<link rel="import" href="/tracing/metrics/system_health/tti_power_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/webview_startup_metric.html">
 <link rel="import" href="/tracing/metrics/tracing_metric.html">
 <link rel="import" href="/tracing/metrics/v8/execution_metric.html">
diff --git a/catapult/tracing/tracing/metrics/blink/gc_metric.html b/catapult/tracing/tracing/metrics/blink/gc_metric.html
index 71fc823..ee76d0c 100644
--- a/catapult/tracing/tracing/metrics/blink/gc_metric.html
+++ b/catapult/tracing/tracing/metrics/blink/gc_metric.html
@@ -4,12 +4,12 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/metrics/v8/utils.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -40,19 +40,18 @@
   tr.metrics.MetricRegistry.register(blinkGcMetric);
 
   var timeDurationInMs_smallerIsBetter =
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;
+      tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;
   var percentage_biggerIsBetter =
-      tr.v.Unit.byName.normalizedPercentage_biggerIsBetter;
+      tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;
 
-  var numericBuilder = new tr.v.NumericBuilder(
-      timeDurationInMs_smallerIsBetter, 0);
   // 0.1 steps from 0 to 20 since it is the most common range.
-  numericBuilder.addLinearBins(20, 200);
   // Exponentially increasing steps from 20 to 200.
-  numericBuilder.addExponentialBins(200, 100);
+  var CUSTOM_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(0, 20, 200)
+    .addExponentialBins(200, 100);
 
-  function createNumericForTopEventTime() {
-    var n = numericBuilder.build();
+  function createNumericForTopEventTime(name) {
+    var n = new tr.v.Histogram(name,
+        timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
     n.customizeSummaryOptions({
         avg: true,
         count: true,
@@ -64,8 +63,9 @@
     return n;
   }
 
-  function createNumericForIdleTime() {
-    var n = numericBuilder.build();
+  function createNumericForIdleTime(name) {
+    var n = new tr.v.Histogram(name,
+        timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
     n.customizeSummaryOptions({
         avg: true,
         count: false,
@@ -78,9 +78,13 @@
     return n;
   }
 
-  function createPercentage(numerator, denominator) {
-    var percentage = denominator === 0 ? 0 : numerator / denominator * 100;
-    return new tr.v.ScalarNumeric(percentage_biggerIsBetter, percentage);
+  function createPercentage(name, numerator, denominator) {
+    var histogram = new tr.v.Histogram(name, percentage_biggerIsBetter);
+    if (denominator === 0)
+      histogram.addSample(0);
+    else
+      histogram.addSample(numerator / denominator);
+    return histogram;
   }
 
   /**
@@ -92,11 +96,11 @@
       isBlinkGarbageCollectionEvent,
       blinkGarbageCollectionEventName,
       function(name, events) {
-        var cpuDuration = createNumericForTopEventTime();
+        var cpuDuration = createNumericForTopEventTime(name);
         events.forEach(function(event) {
-          cpuDuration.add(event.cpuDuration);
+          cpuDuration.addSample(event.cpuDuration);
         });
-        values.addValue(new tr.v.NumericValue(name, cpuDuration));
+        values.addHistogram(cpuDuration);
       }
     );
   }
@@ -110,11 +114,11 @@
       isBlinkGarbageCollectionEvent,
       event => 'blink-gc-total',
       function(name, events) {
-        var cpuDuration = createNumericForTopEventTime();
+        var cpuDuration = createNumericForTopEventTime(name);
         events.forEach(function(event) {
-          cpuDuration.add(event.cpuDuration);
+          cpuDuration.addSample(event.cpuDuration);
         });
-        values.addValue(new tr.v.NumericValue(name, cpuDuration));
+        values.addHistogram(cpuDuration);
       }
     );
   }
@@ -152,10 +156,11 @@
   }
 
   function addIdleTimes(values, model, name, events) {
-    var cpuDuration = createNumericForIdleTime();
-    var insideIdle = createNumericForIdleTime();
-    var outsideIdle = createNumericForIdleTime();
-    var idleDeadlineOverrun = createNumericForIdleTime();
+    var cpuDuration = createNumericForIdleTime(name + '_cpu');
+    var insideIdle = createNumericForIdleTime(name + '_inside_idle');
+    var outsideIdle = createNumericForIdleTime(name + '_outside_idle');
+    var idleDeadlineOverrun = createNumericForIdleTime(
+        name + '_idle_deadline_overrun');
     events.forEach(function(event) {
       var idleTask = tr.metrics.v8.utils.findParent(
           event, tr.metrics.v8.utils.isIdleTask);
@@ -175,20 +180,16 @@
           inside = event.cpuDuration;
         }
       }
-      cpuDuration.add(event.cpuDuration);
-      insideIdle.add(inside);
-      outsideIdle.add(event.cpuDuration - inside);
-      idleDeadlineOverrun.add(overrun);
+      cpuDuration.addSample(event.cpuDuration);
+      insideIdle.addSample(inside);
+      outsideIdle.addSample(event.cpuDuration - inside);
+      idleDeadlineOverrun.addSample(overrun);
     });
-    values.addValue(new tr.v.NumericValue(
-        name + '_idle_deadline_overrun',
-        idleDeadlineOverrun));
-    values.addValue(new tr.v.NumericValue(
-        name + '_outside_idle', outsideIdle));
-    var percentage = createPercentage(insideIdle.sum,
-                                      cpuDuration.sum);
-    values.addValue(new tr.v.NumericValue(
-        name + '_percentage_idle', percentage));
+    values.addHistogram(idleDeadlineOverrun);
+    values.addHistogram(outsideIdle);
+    var percentage = createPercentage(
+        name + '_percentage_idle', insideIdle.sum, cpuDuration.sum);
+    values.addHistogram(percentage);
   }
 
   return {
diff --git a/catapult/tracing/tracing/metrics/blink/gc_metric_test.html b/catapult/tracing/tracing/metrics/blink/gc_metric_test.html
index c986542..9a9fb72 100644
--- a/catapult/tracing/tracing/metrics/blink/gc_metric_test.html
+++ b/catapult/tracing/tracing/metrics/blink/gc_metric_test.html
@@ -42,11 +42,7 @@
     var endTime = slices.reduce((acc, slice) => (Math.max(acc, slice.end)));
     var model = createModel(startTime - 1, endTime + 1, slices);
     tr.metrics.blink.blinkGcMetric(values, model);
-    var result = {};
-    values.valueDicts.forEach(function(value) {
-      result[value.name] = value.numeric.value;
-    });
-    return result;
+    return values;
   }
 
   test('topEvents', function() {
@@ -63,24 +59,30 @@
         }
       ];
       var actual = run(slices);
-      var expected = {
-        sum: 100,
-        count: 1,
-        avg: 100,
-        max: 100,
-        idle_deadline_overrun_sum: 0,
-        idle_deadline_overrun_avg: 0,
-        idle_deadline_overrun_max: 0,
-        outside_idle_sum: 100,
-        outside_idle_avg: 100,
-        outside_idle_max: 100,
-        percentage_idle: 0
-      };
-      tr.b.iterItems(expected, function(key, value) {
-        var name = constructName(telemetryName, key);
-        assert.equal(name + ':' + actual[name], name + ':' + value);
-      });
-      assert.closeTo(actual[constructName(telemetryName, 'pct_090')], 100, 1);
+
+      var value = tr.b.getOnlyElement(actual.getValuesNamed(telemetryName));
+      assert.strictEqual(value.running.sum, 100);
+      assert.strictEqual(value.numValues, 1);
+      assert.strictEqual(value.average, 100);
+      assert.strictEqual(value.running.max, 100);
+      assert.closeTo(value.getApproximatePercentile(0.90), 100, 1);
+
+      value = tr.b.getOnlyElement(actual.getValuesNamed(
+          telemetryName + '_idle_deadline_overrun'));
+      assert.strictEqual(value.running.sum, 0);
+      assert.strictEqual(value.numValues, 1);
+      assert.strictEqual(value.average, 0);
+      assert.strictEqual(value.running.max, 0);
+
+      value = tr.b.getOnlyElement(actual.getValuesNamed(
+          telemetryName + '_outside_idle'));
+      assert.strictEqual(value.running.sum, 100);
+      assert.strictEqual(value.numValues, 1);
+      assert.strictEqual(value.average, 100);
+
+      value = tr.b.getOnlyElement(actual.getValuesNamed(
+          telemetryName + '_percentage_idle'));
+      assert.strictEqual(value.average, 0);
     });
   });
 
@@ -98,23 +100,28 @@
       }
     ];
     var actual = run(slices);
-    var expected = {
-      sum: 80,
-      count: 1,
-      avg: 80,
-      max: 80,
-      idle_deadline_overrun_sum: 0,
-      idle_deadline_overrun_avg: 0,
-      idle_deadline_overrun_max: 0,
-      outside_idle_sum: 0,
-      outside_idle_avg: 0,
-      outside_idle_max: 0,
-      percentage_idle: 100
-    };
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName('blink-gc-marking', key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
+
+    var value = tr.b.getOnlyElement(actual.getValuesNamed('blink-gc-marking'));
+    assert.strictEqual(value.running.sum, 80);
+    assert.strictEqual(value.numValues, 1);
+    assert.strictEqual(value.average, 80);
+    assert.strictEqual(value.running.max, 80);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-marking_idle_deadline_overrun'));
+    assert.strictEqual(value.running.sum, 0);
+    assert.strictEqual(value.average, 0);
+    assert.strictEqual(value.running.max, 0);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-marking_outside_idle'));
+    assert.strictEqual(value.running.sum, 0);
+    assert.strictEqual(value.average, 0);
+    assert.strictEqual(value.running.max, 0);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-marking_percentage_idle'));
+    assert.strictEqual(value.average, 1);
   });
 
   test('idleTimeOverrun', function() {
@@ -131,23 +138,28 @@
       }
     ];
     var actual = run(slices);
-    var expected = {
-      sum: 80,
-      count: 1,
-      avg: 80,
-      max: 80,
-      idle_deadline_overrun_sum: 70,
-      idle_deadline_overrun_avg: 70,
-      idle_deadline_overrun_max: 70,
-      outside_idle_sum: 70,
-      outside_idle_avg: 70,
-      outside_idle_max: 70,
-      percentage_idle: 100 / 8
-    };
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName('blink-gc-marking', key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
+
+    var value = tr.b.getOnlyElement(actual.getValuesNamed('blink-gc-marking'));
+    assert.strictEqual(value.running.sum, 80);
+    assert.strictEqual(value.numValues, 1);
+    assert.strictEqual(value.average, 80);
+    assert.strictEqual(value.running.max, 80);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-marking_idle_deadline_overrun'));
+    assert.strictEqual(value.running.sum, 70);
+    assert.strictEqual(value.average, 70);
+    assert.strictEqual(value.running.max, 70);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-marking_outside_idle'));
+    assert.strictEqual(value.running.sum, 70);
+    assert.strictEqual(value.average, 70);
+    assert.strictEqual(value.running.max, 70);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-marking_percentage_idle'));
+    assert.closeTo(value.average, 1 / 8, 1e-6);
   });
 
   test('total', function() {
@@ -163,24 +175,28 @@
       }
     ];
     var actual = run(slices);
-    var expected = {
-      sum: 180,
-      count: 2,
-      avg: 90,
-      max: 100,
-      idle_deadline_overrun_sum: 0,
-      idle_deadline_overrun_avg: 0,
-      idle_deadline_overrun_max: 0,
-      outside_idle_sum: 180,
-      outside_idle_avg: 90,
-      outside_idle_max: 100,
-      percentage_idle: 0
-    };
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName('blink-gc-total', key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
-  });
 
+    var value = tr.b.getOnlyElement(actual.getValuesNamed('blink-gc-total'));
+    assert.strictEqual(value.running.sum, 180);
+    assert.strictEqual(value.numValues, 2);
+    assert.strictEqual(value.average, 90);
+    assert.strictEqual(value.running.max, 100);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-total_idle_deadline_overrun'));
+    assert.strictEqual(value.running.sum, 0);
+    assert.strictEqual(value.average, 0);
+    assert.strictEqual(value.running.max, 0);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-total_outside_idle'));
+    assert.strictEqual(value.running.sum, 180);
+    assert.strictEqual(value.average, 90);
+    assert.strictEqual(value.running.max, 100);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'blink-gc-total_percentage_idle'));
+    assert.strictEqual(value.average, 0);
+  });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/cpu_process_metric.html b/catapult/tracing/tracing/metrics/cpu_process_metric.html
index 7c99471..2a0a9ba 100644
--- a/catapult/tracing/tracing/metrics/cpu_process_metric.html
+++ b/catapult/tracing/tracing/metrics/cpu_process_metric.html
@@ -4,19 +4,14 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics.sh', function() {
-
-  var CPU_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.normalizedPercentage_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(0, 100), 20);
-
   function getCpuSnapshotsFromModel(model) {
    var snapshots = [];
    for (var pid in model.processes) {
@@ -52,12 +47,13 @@
      for (var [processName, processData] of processSums.entries()) {
        if (!(processNumerics.has(processName))) {
          processNumerics.set(processName, {
-           numeric: CPU_NUMERIC_BUILDER.build(),
+           numeric: new tr.v.Histogram('cpu:percent:' + processName,
+             tr.b.Unit.byName.normalizedPercentage_smallerIsBetter),
            paths: new Set()
          });
        }
-       processNumerics.get(processName).numeric.add(
-           processData.sum);
+       processNumerics.get(processName).numeric.addSample(
+           processData.sum / 100.0);
        for (var path of processData.paths)
          processNumerics.get(processName).paths.add(path);
      }
@@ -68,18 +64,17 @@
   function cpuProcessMetric(values, model) {
     var snapshots = getCpuSnapshotsFromModel(model);
     var processNumerics = buildNumericsFromSnapshots(snapshots);
-    for (var [processName, processData] of processNumerics.entries()) {
+    for (var [processName, processData] of processNumerics) {
       var numeric = processData.numeric;
       // Treat missing snapshots as zeros. A process is missing from a snapshots
       // when its CPU usage was below minimum threshold when the snapshot was
       // taken.
       var missingSnapshotCount = snapshots.length - numeric.numValues;
       for (var i = 0; i < missingSnapshotCount; i++)
-        numeric.add(0);
-      var value = new tr.v.NumericValue('cpu:percent:' + processName, numeric);
-      value.diagnostics.add('paths', new
+        numeric.addSample(0);
+      numeric.diagnostics.set('paths', new
           tr.v.d.Generic([...processData.paths]));
-      values.addValue(value);
+      values.addHistogram(numeric);
     }
   }
 
diff --git a/catapult/tracing/tracing/metrics/cpu_process_metric_test.html b/catapult/tracing/tracing/metrics/cpu_process_metric_test.html
index 59b3067..a9e3dce 100644
--- a/catapult/tracing/tracing/metrics/cpu_process_metric_test.html
+++ b/catapult/tracing/tracing/metrics/cpu_process_metric_test.html
@@ -51,13 +51,13 @@
         }
     ];
     tr.metrics.sh.cpuProcessMetric(values, makeModel(events));
-    assert.lengthOf(values.getValuesWithName('cpu:percent:chrome'), 7);
-    assert.lengthOf(values.getValuesWithName('cpu:percent:crudd'), 7);
-    var chromeValue = values.getValuesWithName('cpu:percent:chrome')[0];
-    var chromeStatistics = chromeValue.numeric.running;
+    assert.lengthOf(values.getValuesNamed('cpu:percent:chrome'), 1);
+    assert.lengthOf(values.getValuesNamed('cpu:percent:crudd'), 1);
+    var chromeValue = values.getValuesNamed('cpu:percent:chrome')[0];
+    var chromeStatistics = chromeValue.running;
     assert.strictEqual(chromeStatistics.count, 1);
-    assert.strictEqual(chromeStatistics.mean, 1.1);
-    assert.strictEqual(chromeStatistics.max, 1.1);
+    assert.closeTo(chromeStatistics.mean, 0.011, 1e-5);
+    assert.closeTo(chromeStatistics.max, 0.011, 1e-5);
     assert.instanceOf(chromeValue.diagnostics.get('paths'), tr.v.d.Generic);
     assert.lengthOf(chromeValue.diagnostics.get('paths').value, 1);
     assert.strictEqual(chromeValue.diagnostics.get('paths').value[0],
@@ -103,14 +103,14 @@
         }
     ];
     tr.metrics.sh.cpuProcessMetric(values, makeModel(events));
-    assert.lengthOf(values.getValuesWithName('cpu:percent:chrome'), 7);
-    assert.lengthOf(values.getValuesWithName('cpu:percent:crudd'), 7);
-    assert.lengthOf(values.getValuesWithName('cpu:percent:mnp_logger'), 7);
-    var chromeValue = values.getValuesWithName('cpu:percent:chrome')[0];
-    var chromeStatistics = chromeValue.numeric.running;
+    assert.lengthOf(values.getValuesNamed('cpu:percent:chrome'), 1);
+    assert.lengthOf(values.getValuesNamed('cpu:percent:crudd'), 1);
+    assert.lengthOf(values.getValuesNamed('cpu:percent:mnp_logger'), 1);
+    var chromeValue = values.getValuesNamed('cpu:percent:chrome')[0];
+    var chromeStatistics = chromeValue.running;
     assert.strictEqual(chromeStatistics.count, 2);
-    assert.strictEqual(chromeStatistics.mean, 0.75);
-    assert.strictEqual(chromeStatistics.max, 0.8);
+    assert.closeTo(chromeStatistics.mean, 0.0075, 1e-5);
+    assert.strictEqual(chromeStatistics.max, 0.008);
     assert.instanceOf(chromeValue.diagnostics.get('paths'), tr.v.d.Generic);
     assert.lengthOf(chromeValue.diagnostics.get('paths').value, 2);
     assert.strictEqual(chromeValue.diagnostics.get('paths').value[0],
diff --git a/catapult/tracing/tracing/metrics/discover_unittest.py b/catapult/tracing/tracing/metrics/discover_unittest.py
index 0ddf145..10b81b5 100644
--- a/catapult/tracing/tracing/metrics/discover_unittest.py
+++ b/catapult/tracing/tracing/metrics/discover_unittest.py
@@ -11,10 +11,8 @@
     self.assertFalse(discover.DiscoverMetrics([]))
 
   def testMetricsDiscoverNonEmpty(self):
-    self.assertEquals(
-        ['sampleMetric', 'sampleMetric2'],
-        discover.DiscoverMetrics(
-            ['/tracing/metrics/sample_metric.html']))
+    self.assertEquals(['sampleMetric'], discover.DiscoverMetrics(
+        ['/tracing/metrics/sample_metric.html']))
 
   def testMetricsDiscoverMultipleMetrics(self):
     self.assertGreater(
diff --git a/catapult/tracing/tracing/metrics/metric_map_function.html b/catapult/tracing/tracing/metrics/metric_map_function.html
index 9d51713..c841ab8 100644
--- a/catapult/tracing/tracing/metrics/metric_map_function.html
+++ b/catapult/tracing/tracing/metrics/metric_map_function.html
@@ -5,9 +5,9 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/function_handle.html">
 <link rel="import" href="/tracing/metrics/all_metrics.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <script>
@@ -15,13 +15,14 @@
 
 tr.exportTo('tr.metrics', function() {
   /**
-   * @param {!pi.mre.MreResult} result
    * @param {!tr.model.Model} model
    * @param {!Object} options
+   * @param {!Array.<string>} options.metrics
+   * @return {!tr.v.ValueSet}
    */
-  function metricMapFunction(result, model, options) {
+  function runMetrics(model, options) {
     if (options === undefined)
-      throw new Error('Expected an options dict.');
+      throw new Error('Options are required.');
 
     var metricNames = options.metrics;
     if (!metricNames)
@@ -33,26 +34,63 @@
       var metric = tr.metrics.MetricRegistry.findTypeInfoWithName(metricName);
       if (metric === undefined)
         throw new Error('"' + metricName + '" is not a registered metric.');
-      metric.constructor(values, model);
+      metric.constructor(values, model, options);
     }
 
-    for (var metadata of model.metadata) {
-      if (!metadata.value || !metadata.value['iteration-info'])
-        continue;
-      var iteration = new tr.v.d.IterationInfo(
-          metadata.value['iteration-info']);
-      // Values can be separated from their ValueSet and mixed into ValueSets
-      // with Values from other iterations, so add IterationInfo to each Value.
-      values.map(v => iteration.addToValue(v));
-    }
-
-    result.addPair('values', values.valueDicts);
+    return values;
   }
 
-  pi.FunctionRegistry.register(metricMapFunction);
+  /**
+   * @param {!tr.v.ValueSet} values
+   * @param {!tr.model.Model} model
+   */
+  function addIterationInfo(values, model) {
+    var iterationInfo = new tr.v.d.IterationInfo();
+    for (var metadata of model.metadata) {
+      if (!metadata.value)
+        continue;
+
+      if (metadata.value['iteration-info'])
+        iterationInfo.addInfo(metadata.value['iteration-info']);
+
+      if (metadata.value['os-version'])
+        iterationInfo.addInfo(metadata.value);
+    }
+    // Values can be separated from their ValueSet and mixed into ValueSets
+    // with Values from other iterations, so add IterationInfo to each Value.
+    values.map(v => iterationInfo.addToValue(v));
+  }
+
+  /**
+   * @param {!tr.mre.MreResult} result
+   * @param {!tr.model.Model} model
+   * @param {!Object} options
+   * @param {!Array.<string>} options.metrics
+   */
+  function metricMapFunction(result, model, options) {
+    var values = runMetrics(model, options);
+    addIterationInfo(values, model);
+
+    result.addPair('histograms', values.valueDicts);
+
+    var scalarDicts = [];
+    for (var value of values) {
+      for (var [statName, scalar] of value.statisticsScalars) {
+        scalarDicts.push({
+          name: value.name + '_' + statName,
+          numeric: scalar.asDict(),
+          description: value.description,
+        });
+      }
+    }
+    result.addPair('scalars', scalarDicts);
+  }
+
+  tr.mre.FunctionRegistry.register(metricMapFunction);
 
   return {
-    metricMapFunction: metricMapFunction
+    metricMapFunction: metricMapFunction,
+    runMetrics: runMetrics
   };
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/metric_map_function_test.html b/catapult/tracing/tracing/metrics/metric_map_function_test.html
index febd702..bc3cf7f 100644
--- a/catapult/tracing/tracing/metrics/metric_map_function_test.html
+++ b/catapult/tracing/tracing/metrics/metric_map_function_test.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/mre_result.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/extras/importer/trace_event_importer.html">
 <link rel="import" href="/tracing/metrics/metric_map_function.html">
 <link rel="import" href="/tracing/metrics/sample_metric.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
 
 <script>
 'use strict';
@@ -44,24 +44,21 @@
     });
 
     assert.throw(function() {
-      var result = new pi.mre.MreResult();
+      var result = new tr.mre.MreResult();
       tr.metrics.metricMapFunction(result, m, {});
     }, Error, 'Metric names should be specified.');
 
     assert.throw(function() {
-      var result = new pi.mre.MreResult();
+      var result = new tr.mre.MreResult();
       tr.metrics.metricMapFunction(result, m, {'metrics': ['wrongMetric']});
     }, Error, '"wrongMetric" is not a registered metric.');
 
-    var result = new pi.mre.MreResult();
+    var result = new tr.mre.MreResult();
     tr.metrics.metricMapFunction(result, m, {'metrics': ['sampleMetric']});
-    assert.property(result.pairs, 'values');
-    assert.equal(result.pairs.values.length, 9);
-
-    var result2 = new pi.mre.MreResult();
-    tr.metrics.metricMapFunction(
-        result2, m, {'metrics': ['sampleMetric', 'sampleMetric2']});
-    assert.property(result2.pairs, 'values');
+    assert.property(result.pairs, 'histograms');
+    assert.equal(result.pairs.histograms.length, 1);
+    assert.property(result.pairs, 'scalars');
+    assert.equal(result.pairs.scalars.length, 6);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/metric_registry_test.html b/catapult/tracing/tracing/metrics/metric_registry_test.html
index 21a3584..135f251 100644
--- a/catapult/tracing/tracing/metrics/metric_registry_test.html
+++ b/catapult/tracing/tracing/metrics/metric_registry_test.html
@@ -4,48 +4,49 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
-
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var test_utils = tr.c.TestUtils;
-  var ThreadSlice = tr.model.ThreadSlice;
-
   test('FindMetricByName', function() {
     function sampleMetricA(values, model) {
-      var unit = tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
-      var n1 = new tr.v.ScalarNumeric(unit, 1);
-      values.addValue(new tr.v.NumericValue('foo', n1));
+      var n1 = new tr.v.Histogram('foo', tr.b.Unit.byName.count);
+      n1.addSample(1);
+      values.addHistogram(n1);
     }
     tr.metrics.MetricRegistry.register(sampleMetricA);
 
     function sampleMetricB(values, model) {
-      var unit = tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
-      var n1 = new tr.v.ScalarNumeric(unit, 1);
-      var n2 = new tr.v.ScalarNumeric(unit, 2);
-      values.addValue(new tr.v.NumericValue('foo', n1));
-      values.addValue(new tr.v.NumericValue('bar', n2));
+      var n1 = new tr.v.Histogram('foo', tr.b.Unit.byName.count);
+      var n2 = new tr.v.Histogram('bar', tr.b.Unit.byName.count);
+      n1.addSample(1);
+      n2.addSample(2);
+      values.addHistogram(n1);
+      values.addHistogram(n2);
     }
     tr.metrics.MetricRegistry.register(sampleMetricB);
 
     function sampleMetricC(values, model) {
-      var unit = tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
-      var n1 = new tr.v.ScalarNumeric(unit, 1);
-      var n2 = new tr.v.ScalarNumeric(unit, 2);
-      var n3 = new tr.v.ScalarNumeric(unit, 3);
-      values.addValue(new tr.v.NumericValue('foo', n1));
-      values.addValue(new tr.v.NumericValue('bar', n2));
-      values.addValue(new tr.v.NumericValue('baz', n3));
+      var n1 = new tr.v.Histogram('foo', tr.b.Unit.byName.count);
+      var n2 = new tr.v.Histogram('bar', tr.b.Unit.byName.count);
+      var n3 = new tr.v.Histogram('baz', tr.b.Unit.byName.count);
+      n1.addSample(1);
+      n2.addSample(2);
+      n3.addSample(3);
+      values.addHistogram(n1);
+      values.addHistogram(n2);
+      values.addHistogram(n3);
     }
     tr.metrics.MetricRegistry.register(sampleMetricC);
 
-    assert.isTrue(tr.metrics.MetricRegistry.findTypeInfoWithName('sampleMetricB').constructor === sampleMetricB); // @suppress longLineCheck
+    var typeInfo = tr.metrics.MetricRegistry.findTypeInfoWithName(
+        'sampleMetricB');
+    assert.strictEqual(typeInfo.constructor, sampleMetricB);
   });
 
   test('registerNonFunctionThrows', function() {
diff --git a/catapult/tracing/tracing/metrics/metric_runner.py b/catapult/tracing/tracing/metrics/metric_runner.py
index c28704d..b691cc4 100644
--- a/catapult/tracing/tracing/metrics/metric_runner.py
+++ b/catapult/tracing/tracing/metrics/metric_runner.py
@@ -3,11 +3,11 @@
 # found in the LICENSE file.
 import os
 
-from perf_insights.mre import function_handle
-from perf_insights.mre import map_runner
-from perf_insights.mre import gtest_progress_reporter
-from perf_insights.mre import file_handle
-from perf_insights.mre import job as job_module
+from tracing.mre import function_handle
+from tracing.mre import gtest_progress_reporter
+from tracing.mre import map_runner
+from tracing.mre import file_handle
+from tracing.mre import job as job_module
 
 _METRIC_MAP_FUNCTION_FILENAME = 'metric_map_function.html'
 
diff --git a/catapult/tracing/tracing/metrics/sample_metric.html b/catapult/tracing/tracing/metrics/sample_metric.html
index b031e7b..34e0c70 100644
--- a/catapult/tracing/tracing/metrics/sample_metric.html
+++ b/catapult/tracing/tracing/metrics/sample_metric.html
@@ -4,47 +4,42 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/base/range.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics', function() {
-  var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
-
-  var SIZE_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      sizeInBytes_smallerIsBetter, tr.b.Range.fromExplicitRange(1, 100), 100);
-
   function sampleMetric(values, model) {
-    var n1 = new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter, 1);
-    var n2 = new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter, 2);
-    var n3 = SIZE_NUMERIC_BUILDER.build();
-    n3.add(1);
-    values.addValue(new tr.v.NumericValue('foo', n1));
-    values.addValue(new tr.v.NumericValue('bar', n2));
-    values.addValue(new tr.v.NumericValue('baz', n3));
-  }
+    var hist = new tr.v.Histogram(
+        'foo', tr.b.Unit.byName.sizeInBytes_smallerIsBetter);
+    hist.addSample(9);
+    hist.addSample(91, {bar: new tr.v.d.Generic({hello: 42})});
 
-  function sampleMetric2(values, model) {
-    var n1 = new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter, 1);
-    var n2 = new tr.v.ScalarNumeric(sizeInBytes_smallerIsBetter, 2);
-    var n3 = SIZE_NUMERIC_BUILDER.build();
-    n3.add(1);
-    values.addValue(new tr.v.NumericValue('one', n1));
-    values.addValue(new tr.v.NumericValue('two', n2));
-    values.addValue(new tr.v.NumericValue('three', n3));
+    for (var expectation of model.userModel.expectations) {
+      if (expectation instanceof tr.model.um.ResponseExpectation) {
+      } else if (expectation instanceof tr.model.um.AnimationExpectation) {
+      } else if (expectation instanceof tr.model.um.IdleExpectation) {
+      } else if (expectation instanceof tr.model.um.LoadExpectation) {
+      }
+    }
+
+    var chromeHelper = model.getOrCreateHelper(
+        tr.model.helpers.ChromeModelHelper);
+
+    tr.b.iterItems(model.processes, function(pid, process) {
+    });
+
+    values.addHistogram(hist);
   }
 
   tr.metrics.MetricRegistry.register(sampleMetric);
-  tr.metrics.MetricRegistry.register(sampleMetric2);
 
   return {
-    sampleMetric: sampleMetric,
-    sampleMetric2: sampleMetric2
+    sampleMetric: sampleMetric
   };
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric.html b/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric.html
index 887fddd..8d3820e 100644
--- a/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric.html
@@ -8,14 +8,12 @@
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/metrics/system_health/utils.html">
 <link rel="import" href="/tracing/model/model.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics.sh', function() {
-
   function syncIsComplete(markers) {
     return markers.length === 2;
   }
@@ -34,6 +32,7 @@
       var targetDomain = undefined;
       if (!syncIsComplete(markers) || !syncInvolvesTelemetry(markers))
         continue;
+
       for (var marker of markers) {
         var domain = marker.domainId;
         if (domain === tr.model.ClockDomainId.TELEMETRY)
@@ -41,14 +40,15 @@
         else
           targetDomain = domain.toLowerCase();
       }
-      values.addValue(new tr.v.NumericValue(
-          'clock_sync_latency_' + targetDomain,
-          new tr.v.ScalarNumeric(
-              tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-              latency),
-          { description: 'Clock sync latency for domain ' + targetDomain }));
+
+      var hist = new tr.v.Histogram('clock_sync_latency_' + targetDomain,
+          tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+          tr.v.HistogramBinBoundaries.createExponential(1e-3, 1e3, 30));
+      hist.description = 'Clock sync latency for domain ' + targetDomain;
+      hist.addSample(latency);
+      values.addHistogram(hist);
     }
-  };
+  }
 
   tr.metrics.MetricRegistry.register(clockSyncLatencyMetric);
 
diff --git a/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric_test.html b/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric_test.html
index c9ad334..bc1dd51 100644
--- a/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/clock_sync_latency_metric_test.html
@@ -33,16 +33,19 @@
     var valueSet = new tr.v.ValueSet();
     tr.metrics.sh.clockSyncLatencyMetric(valueSet, model);
 
-    var battorEntry = tr.b.getOnlyElement(
-        valueSet.valueDicts.filter(
-            (dict) => dict.name === battorName));
+    var battorValue = undefined;
+    var winQpcValue = undefined;
+    for (var value of valueSet) {
+      if (value.name === battorName)
+        battorValue = value;
+      else if (value.name === winQpcName)
+        winQpcValue = value;
+    }
 
-    var winQpcEntry = tr.b.getOnlyElement(
-        valueSet.valueDicts.filter(
-            (dict) => dict.name === winQpcName));
-
-    assert.equal(battorEntry.numeric.value, 3.0);
-    assert.equal(winQpcEntry.numeric.value, 6.0);
+    assert.isDefined(battorValue);
+    assert.isDefined(winQpcValue);
+    assert.closeTo(battorValue.average, 3.0, 1e-5);
+    assert.closeTo(winQpcValue.average, 6.0, 1e-5);
   });
 
   test('clockSyncLatencyMetric_noTelemetry', function() {
diff --git a/catapult/tracing/tracing/metrics/system_health/cpu_time_metric.html b/catapult/tracing/tracing/metrics/system_health/cpu_time_metric.html
new file mode 100644
index 0000000..b655f1e
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/cpu_time_metric.html
@@ -0,0 +1,75 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/metrics/metric_registry.html">
+<link rel="import" href="/tracing/value/histogram.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.metrics.sh', function() {
+  /**
+   * This metric measures total CPU time for Chrome processes, per second of
+   *   clock time.
+   * This metric requires only the 'toplevel' tracing category.
+   *
+   * @param {!tr.v.ValueSet} values
+   * @param {!tr.model.Model} model
+   * @param {!Object=} optOptions
+   */
+  function cpuTimeMetric(values, model, optOptions) {
+    var rangeOfInterest = optOptions ? optOptions.rangeOfInterest : undefined;
+    var allProcessCpuTime = 0;
+
+    for (var pid in model.processes) {
+      var process = model.processes[pid];
+      var processCpuTime = 0;
+      for (var tid in process.threads) {
+        var thread = process.threads[tid];
+        var threadCpuTime = 0;
+        thread.sliceGroup.topLevelSlices.forEach(function(slice) {
+          if (rangeOfInterest &&
+              !rangeOfInterest.intersectsExplicitRangeInclusive(
+                  slice.start, slice.end))
+            return;
+          threadCpuTime += slice.cpuDuration;
+        });
+        processCpuTime += threadCpuTime;
+      }
+      allProcessCpuTime += processCpuTime;
+    }
+
+    // Normalize cpu time by clock time.
+    var normalizationRange = rangeOfInterest ?
+        rangeOfInterest : model.bounds.range;
+    var MILLISECONDS_PER_SECOND = 1000;
+    var clockTimeInSeconds = normalizationRange / MILLISECONDS_PER_SECOND;
+
+    // Use a minimum clock time of 0.0001 to allow 0-sized ranges.
+    clockTimeInSeconds = Math.max(clockTimeInSeconds, 0.0001);
+    var normalizedAllProcessCpuTime = allProcessCpuTime /
+        clockTimeInSeconds;
+
+    var unit = tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;
+    var boundaries = tr.v.HistogramBinBoundaries
+      .createExponential(1, 100000, 200)
+    var cpuTimeNumeric = new tr.v.Histogram('cpu_time', unit, boundaries);
+    cpuTimeNumeric.description =
+      'Total CPU time on all Chrome processes, per second of clock time.';
+    cpuTimeNumeric.addSample(normalizedAllProcessCpuTime);
+    values.addHistogram(cpuTimeNumeric);
+  }
+
+  tr.metrics.MetricRegistry.register(cpuTimeMetric, {
+    supportsRangeOfInterest: true
+  });
+
+  return {
+    cpuTimeMetric: cpuTimeMetric,
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/cpu_time_metric_test.html b/catapult/tracing/tracing/metrics/system_health/cpu_time_metric_test.html
new file mode 100644
index 0000000..1866e69
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/cpu_time_metric_test.html
@@ -0,0 +1,93 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/metrics/system_health/cpu_time_metric.html">
+<link rel="import" href="/tracing/value/value_set.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  function computeCpuTime(customizeModelCallback) {
+    var model = tr.c.TestUtils.newModel(function(model) {
+      customizeModelCallback(model);
+    });
+    var values = new tr.v.ValueSet();
+    tr.metrics.sh.cpuTimeMetric(values, model);
+    return tr.b.getOnlyElement(values).average;
+  }
+
+  // There are two slices, each of length 50. The total bounds is 3000.
+  // This yields total CPU time of 100ms, averaged over 3 seconds is 33ms.
+  test('cpuTimeMetric_oneProcess', function() {
+    var sliceDuration = 50;
+    var totalDuration = 3000;
+    var value = computeCpuTime(function(model) {
+      model.rendererProcess = model.getOrCreateProcess(2);
+      model.rendererMain = model.rendererProcess.getOrCreateThread(3);
+      model.rendererMain.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        type: tr.model.ThreadSlice,
+        isTopLevel: true,
+        start: 0,
+        duration: sliceDuration,
+        cpuStart: 0,
+        cpuDuration: sliceDuration,
+      }));
+      model.rendererMain.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        type: tr.model.ThreadSlice,
+        isTopLevel: true,
+        start: totalDuration - sliceDuration,
+        duration: sliceDuration,
+        cpuStart: totalDuration - sliceDuration,
+        cpuDuration: sliceDuration,
+      }));
+    });
+    assert.closeTo(value, 33.33, 0.1);
+  });
+
+  // Process 1: There are two slices, each of length 50. The total bounds is
+  // 3000. Process 2: There is one slice of length 50.
+  // This yields total CPU time of 150ms, averaged over 3 seconds is 50ms.
+  test('cpuTimeMetric_twoProcesses', function() {
+    var sliceDuration = 50;
+    var totalDuration = 3000;
+    var value = computeCpuTime(function(model) {
+      model.rendererProcess = model.getOrCreateProcess(2);
+      model.rendererMain = model.rendererProcess.getOrCreateThread(3);
+      model.rendererMain.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        type: tr.model.ThreadSlice,
+        isTopLevel: true,
+        start: 0,
+        duration: sliceDuration,
+        cpuStart: 0,
+        cpuDuration: sliceDuration,
+      }));
+      model.rendererMain.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        type: tr.model.ThreadSlice,
+        isTopLevel: true,
+        start: totalDuration - sliceDuration,
+        duration: sliceDuration,
+        cpuStart: totalDuration - sliceDuration,
+        cpuDuration: sliceDuration,
+      }));
+
+      var otherProcess = model.getOrCreateProcess(3);
+      var otherThread = otherProcess.getOrCreateThread(4);
+      otherThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        type: tr.model.ThreadSlice,
+        isTopLevel: true,
+        start: 0,
+        duration: sliceDuration,
+        cpuStart: 0,
+        cpuDuration: sliceDuration,
+      }));
+    });
+    assert.closeTo(value, 50.0, 0.1);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/efficiency_metric.html b/catapult/tracing/tracing/metrics/system_health/efficiency_metric.html
deleted file mode 100644
index 6274def..0000000
--- a/catapult/tracing/tracing/metrics/system_health/efficiency_metric.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/base/statistics.html">
-<link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/metrics/system_health/utils.html">
-<link rel="import" href="/tracing/model/user_model/animation_expectation.html">
-<link rel="import" href="/tracing/model/user_model/idle_expectation.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
-
-<script>
-'use strict';
-
-tr.exportTo('tr.metrics.sh', function() {
-  var UNIT = tr.v.Unit.byName.normalizedPercentage_biggerIsBetter;
-
-  var DESCRIPTION = 'Normalized CPU budget consumption';
-
-  function efficiencyMetric(values, model) {
-    var scores = [];
-
-    model.userModel.expectations.forEach(function(ue) {
-      var options = {};
-      options.description = DESCRIPTION;
-
-      var score = undefined;
-
-      if ((ue.totalCpuMs === undefined) ||
-          (ue.totalCpuMs == 0))
-        return;
-
-      var cpuFractionBudget = tr.b.Range.fromExplicitRange(0.5, 1.5);
-
-      if (ue instanceof tr.model.um.IdleExpectation) {
-        cpuFractionBudget = tr.b.Range.fromExplicitRange(0.1, 1);
-      } else if (ue instanceof tr.model.um.AnimationExpectation) {
-        cpuFractionBudget = tr.b.Range.fromExplicitRange(1, 2);
-      }
-
-      var cpuMsBudget = tr.b.Range.fromExplicitRange(
-          ue.duration * cpuFractionBudget.min,
-          ue.duration * cpuFractionBudget.max);
-      var normalizedCpu = tr.b.normalize(
-          ue.totalCpuMs, cpuMsBudget.min, cpuMsBudget.max);
-      score = 1 - tr.b.clamp(normalizedCpu, 0, 1);
-
-      scores.push(score);
-
-      values.addValue(new tr.v.NumericValue(
-          'efficiency', new tr.v.ScalarNumeric(UNIT, score), options));
-    });
-
-    // Manually reduce scores.
-    // https://github.com/catapult-project/catapult/issues/2036
-
-    var options = {};
-    options.description = DESCRIPTION;
-    var overallScore = tr.b.Statistics.weightedMean(
-        scores, tr.metrics.sh.perceptualBlend);
-    if (overallScore === undefined)
-      return;
-
-    values.addValue(new tr.v.NumericValue(
-        'efficiency', new tr.v.ScalarNumeric(UNIT, overallScore), options));
-  }
-
-  tr.metrics.MetricRegistry.register(efficiencyMetric);
-
-  return {
-    efficiencyMetric: efficiencyMetric
-  };
-});
-</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/efficiency_metric_test.html b/catapult/tracing/tracing/metrics/system_health/efficiency_metric_test.html
deleted file mode 100644
index 5fe0f1a..0000000
--- a/catapult/tracing/tracing/metrics/system_health/efficiency_metric_test.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/core/test_utils.html">
-<link rel="import"
-    href="/tracing/metrics/system_health/efficiency_metric.html">
-<link rel="import" href="/tracing/model/user_model/idle_expectation.html">
-<link rel="import" href="/tracing/value/value_set.html">
-
-<script>
-'use strict';
-
-tr.b.unittest.testSuite(function() {
-  function createModel() {
-    return tr.c.TestUtils.newModel(function(model) {
-      model.p1 = model.getOrCreateProcess(1);
-      model.t2 = model.p1.getOrCreateThread(2);
-
-      var slice = tr.c.TestUtils.newSliceEx({
-        title: 'foo',
-        start: 0,
-        end: 100,
-        type: tr.model.ThreadSlice
-      });
-      slice.isTopLevel = true;
-
-      var idle = new tr.model.um.IdleExpectation(model, 0, 100);
-      idle.associatedEvents.push(slice);
-      model.userModel.expectations.push(idle);
-    });
-  }
-
-  test('optimalEfficiency', function() {
-    var model = createModel();
-    var exp = model.userModel.expectations[0];
-    tr.b.getOnlyElement(exp.associatedEvents).cpuSelfTime = 10;
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.efficiencyMetric(values, model);
-    assert.equal(1, values.valueDicts[0].numeric.value);
-  });
-
-  test('pessimalEfficiency', function() {
-    var model = createModel();
-    var exp = model.userModel.expectations[0];
-    tr.b.getOnlyElement(exp.associatedEvents).cpuSelfTime = 100;
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.efficiencyMetric(values, model);
-    assert.equal(0, values.valueDicts[0].numeric.value);
-  });
-});
-</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/hazard_metric.html b/catapult/tracing/tracing/metrics/system_health/hazard_metric.html
index 9696177..e8b6eeb 100644
--- a/catapult/tracing/tracing/metrics/system_health/hazard_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/hazard_metric.html
@@ -8,15 +8,11 @@
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/metrics/system_health/long_tasks_metric.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics.sh', function() {
-  var normalizedPercentage_smallerIsBetter =
-    tr.v.Unit.byName.normalizedPercentage_smallerIsBetter;
-
   // The following math is easier if the units are seconds rather than ms,
   // so durations will be converted from ms to s.
   var MS_PER_S = 1000;
@@ -127,9 +123,10 @@
     if (overallHazard === undefined)
       overallHazard = 0;
 
-    values.addValue(new tr.v.NumericValue(
-        'hazard', new tr.v.ScalarNumeric(
-            normalizedPercentage_smallerIsBetter, overallHazard)));
+    var hist = new tr.v.Histogram('hazard',
+        tr.b.Unit.byName.normalizedPercentage_smallerIsBetter);
+    hist.addSample(overallHazard);
+    values.addHistogram(hist);
   }
 
   tr.metrics.MetricRegistry.register(hazardMetric);
diff --git a/catapult/tracing/tracing/metrics/system_health/hazard_metric_test.html b/catapult/tracing/tracing/metrics/system_health/hazard_metric_test.html
index 629f608..f89d10f 100644
--- a/catapult/tracing/tracing/metrics/system_health/hazard_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/hazard_metric_test.html
@@ -24,9 +24,7 @@
     });
     var values = new tr.v.ValueSet();
     tr.metrics.sh.hazardMetric(values, model);
-    var valueDicts = values.valueDicts;
-    assert.equal(1, valueDicts.length);
-    return valueDicts[0];
+    return tr.b.getOnlyElement(values);
   }
 
   test('minimalHazard', function() {
@@ -39,8 +37,8 @@
         duration: duration
       }));
     });
-    assert.notEqual(0, value.numeric.value);
-    assert.closeTo(value.numeric.value, 0.1611, 1e-5);
+    assert.notEqual(0, value.average);
+    assert.closeTo(value.average, 0.1611, 1e-5);
   });
 
   test('maximalHazard', function() {
@@ -52,7 +50,7 @@
         duration: 2200
       }));
     });
-    assert.closeTo(value.numeric.value, 1, 1e-5);
+    assert.closeTo(value.average, 1, 1e-5);
   });
 
   test('blendedHazards', function() {
@@ -82,7 +80,7 @@
         duration: 400
       }));
     });
-    assert.closeTo(0.92144, value.numeric.value, 1e-4);
+    assert.closeTo(0.92144, value.average, 1e-4);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/system_health/loading_metric.html b/catapult/tracing/tracing/metrics/system_health/loading_metric.html
index 52bcbd9..710df3c 100644
--- a/catapult/tracing/tracing/metrics/system_health/loading_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/loading_metric.html
@@ -11,8 +11,8 @@
 <link rel="import" href="/tracing/metrics/system_health/utils.html">
 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html">
 <link rel="import" href="/tracing/model/timed_event.html">
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
 
 <script>
 'use strict';
@@ -21,7 +21,8 @@
   var RESPONSIVENESS_THRESHOLD = 50;
   var INTERACTIVE_WINDOW_SIZE = 5 * 1000;
   var timeDurationInMs_smallerIsBetter =
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;
+      tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;
+  var RelatedEventSet = tr.v.d.RelatedEventSet;
 
   // TODO(ksakamoto): This should be a method of tr.model.Event or one of its
   // subclasses.
@@ -46,6 +47,20 @@
     return chromeHelper.rendererHelpers[largestPid];
   }
 
+  function createBreakdownDiagnostic(rendererHelper, start, end) {
+    var breakdownDict = rendererHelper.generateTimeBreakdownTree(
+        start, end);
+
+    var breakdownDiagnostic = new tr.v.d.Breakdown();
+    breakdownDiagnostic.colorScheme =
+        tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;
+
+    for (var label in breakdownDict) {
+      breakdownDiagnostic.set(label, breakdownDict[label].total);
+    }
+    return breakdownDiagnostic;
+  }
+
   /**
    * A utility class for finding navigationStart event for given frame and
    * timestamp.
@@ -87,47 +102,14 @@
     }
   };
 
-  /**
-   * A utility class for finding Paint event for given frame and timestamp.
-   * @constructor
-   */
-  function PaintFinder(rendererHelper) {
-    this.paintsForFrameId_ = {};
-    for (var ev of rendererHelper.mainThread.sliceGroup.childEvents()) {
-      if (!hasCategoryAndName(ev, 'devtools.timeline', 'Paint'))
-        continue;
-      var frameIdRef = ev.args['data']['frame'];
-      var list = this.paintsForFrameId_[frameIdRef];
-      if (list === undefined)
-          this.paintsForFrameId_[frameIdRef] = list = [];
-      list.push(ev);
-    }
-  }
+  var FIRST_PAINT_BOUNDARIES = tr.v.HistogramBinBoundaries
+    .createLinear(0, 1e3, 20)  // 50ms step to 1s
+    .addLinearBins(3e3, 20) // 100ms step to 3s
+    .addExponentialBins(20e3, 20);
 
-  PaintFinder.prototype = {
-    findPaintEventForFrameAfterTimestamp: function(frameIdRef, ts) {
-      var list = this.paintsForFrameId_[frameIdRef];
-      if (list === undefined)
-        return undefined;
-
-      var eventAfterTimestamp;
-      for (var ev of list) {
-        if (ev.start < ts)
-          continue;
-        if (eventAfterTimestamp === undefined)
-          eventAfterTimestamp = ev;
-      }
-      return eventAfterTimestamp;
-    }
-  };
-
-  var FIRST_PAINT_NUMERIC_BUILDER =
-      new tr.v.NumericBuilder(timeDurationInMs_smallerIsBetter, 0)
-      .addLinearBins(1000, 20) // 50ms step to 1s
-      .addLinearBins(3000, 20) // 100ms step to 3s
-      .addExponentialBins(20000, 20);
-  function createHistogram() {
-    var histogram = FIRST_PAINT_NUMERIC_BUILDER.build();
+  function createHistogram(name) {
+    var histogram = new tr.v.Histogram(name,
+        timeDurationInMs_smallerIsBetter, FIRST_PAINT_BOUNDARIES);
     histogram.customizeSummaryOptions({
       avg: true,
       count: false,
@@ -177,31 +159,24 @@
     return targetEvents;
   }
 
-  function findAllLayoutEvents(rendererHelper) {
+  function findFirstMeaningfulPaintCandidates(rendererHelper) {
     var isTelemetryInternalEvent =
         prepareTelemetryInternalEventPredicate(rendererHelper);
-    var layoutsForFrameId = {};
+    var candidatesForFrameId = {};
     for (var ev of rendererHelper.process.getDescendantEvents()) {
-      if (!hasCategoryAndName(ev, 'disabled-by-default-blink.debug.layout',
-              'FrameView::performLayout')) {
+      if (!hasCategoryAndName(ev, 'loading', 'firstMeaningfulPaintCandidate'))
         continue;
-      }
       if (isTelemetryInternalEvent(ev))
         continue;
-      if (ev.args.counters === undefined) {
-        console.warn('Ignoring FrameView::performLayout event with no ' +
-            'counters arg (END event is missing).');
-        continue;
-      }
-      var frameIdRef = ev.args.counters['frame'];
+      var frameIdRef = ev.args['frame'];
       if (frameIdRef === undefined)
         continue;
-      var list = layoutsForFrameId[frameIdRef];
+      var list = candidatesForFrameId[frameIdRef];
       if (list === undefined)
-        layoutsForFrameId[frameIdRef] = list = [];
+        candidatesForFrameId[frameIdRef] = list = [];
       list.push(ev);
     }
-    return layoutsForFrameId;
+    return candidatesForFrameId;
   }
 
   function prepareTelemetryInternalEventPredicate(rendererHelper) {
@@ -258,9 +233,10 @@
     var navigationStartFinder = new NavigationStartFinder(rendererHelper);
 
     for (var metric of METRICS) {
-      var histogram = createHistogram();
+      var histogram = createHistogram(metric.valueName);
+      histogram.description = metric.description;
       var targetEvents = findAllUserTimingEvents(rendererHelper, metric.title);
-     for (var ev of targetEvents) {
+      for (var ev of targetEvents) {
         if (isTelemetryInternalEvent(ev))
           continue;
         var frameIdRef = ev.args['frame'];
@@ -279,55 +255,20 @@
           continue;
 
         var timeToEvent = ev.start - navigationStartEvent.start;
-        histogram.add(
-            timeToEvent,
-            new tr.v.d.DiagnosticMap(
-                {url: new tr.v.d.Generic(url)}));
+        histogram.addSample(timeToEvent, {url: new tr.v.d.Generic(url)});
       }
-      values.addValue(new tr.v.NumericValue(
-          metric.valueName, histogram,
-          { description: metric.description }));
+      values.addHistogram(histogram);
     }
   }
 
-  /**
-   * Compute significance of given layout event.
-   *
-   * Significance of a layout is the number of layout objects newly added to the
-   * layout tree, weighted by page height (before and after the layout).
-   */
-  function layoutSignificance(event) {
-    var newObjects = event.args.counters['LayoutObjectsThatHadNeverHadLayout'];
-    var visibleHeight = event.args['counters']['visibleHeight'];
-    if (!newObjects || !visibleHeight)
-      return 0;
-
-    var heightBefore = event.args['contentsHeightBeforeLayout'];
-    var heightAfter = event.args['counters']['contentsHeightAfterLayout'];
-    var ratioBefore = Math.max(1, heightBefore / visibleHeight);
-    var ratioAfter = Math.max(1, heightAfter / visibleHeight);
-    return newObjects / ((ratioBefore + ratioAfter) / 2);
-  }
-
-  /**
-   * If there are loading fonts when layout happened, the layout change
-   * accounting is postponed until the font is displayed. However, icon fonts
-   * shouldn't block first meaningful paint. We use a threshold that only web
-   * fonts that laid out more than 200 characters should block first meaningful
-   * paint.
-   */
-  function hasTooManyBlankCharactersToBeMeaningful(event) {
-    var BLOCK_FIRST_MEANINGFUL_PAINT_IF_BLANK_CHARACTERS_MORE_THAN = 200;
-    return event.args['counters']['approximateBlankCharacterCount'] >
-        BLOCK_FIRST_MEANINGFUL_PAINT_IF_BLANK_CHARACTERS_MORE_THAN;
-  }
-
   function addTimeToInteractiveSampleToHistogram(histogram, rendererHelper,
-    navigationStartTime, firstMeaningfulPaint, url) {
+    navigationStart, firstMeaningfulPaint, url) {
     if (shouldIgnoreURL(url))
       return;
+    var navigationStartTime = navigationStart.start;
     var firstInteractive = Infinity;
     var firstInteractiveCandidate = firstMeaningfulPaint;
+    var lastLongTaskEvent = undefined;
     // Find the first interactive point X after firstMeaningfulPaint so that
     // range [X, X + INTERACTIVE_WINDOW_SIZE] contains no
     // 'TaskQueueManager::ProcessTaskFromWorkQueues' slice which takes more than
@@ -348,32 +289,36 @@
       }
       if (ev.title === 'TaskQueueManager::ProcessTaskFromWorkQueue' &&
           ev.duration > RESPONSIVENESS_THRESHOLD) {
-        firstInteractiveCandidate = ev.end - 50;
+          firstInteractiveCandidate = ev.end - 50;
+          lastLongTaskEvent = ev;
       }
     }
-    var diagnosticDict = rendererHelper.generateTimeBreakdownTree(
-        navigationStartTime, firstInteractive);
-    diagnosticDict.url = url;
-    diagnosticDict.start = navigationStartTime;
-    diagnosticDict.interactive = firstInteractive;
-    diagnosticDict.pid = rendererHelper.pid;
+    var breakdownDiagnostic = createBreakdownDiagnostic(
+        rendererHelper, navigationStartTime, firstInteractive);
+
     var timeToFirstInteractive = firstInteractive - navigationStartTime;
-    histogram.add(
+    histogram.addSample(
         timeToFirstInteractive,
-        new tr.v.d.DiagnosticMap(
-            {breakdown: new tr.v.d.Generic(diagnosticDict)}));
+        {
+          "Start": new RelatedEventSet(navigationStart),
+          "Last long task": new RelatedEventSet(lastLongTaskEvent),
+          "Navigation infos": new tr.v.d.Generic(
+              {url: url, pid: rendererHelper.pid,
+               start: navigationStartTime, interactive: firstInteractive}),
+          "Breakdown of [navStart, Interactive]": breakdownDiagnostic,
+        });
   }
 
   /**
    * Computes Time to first meaningful paint (TTFMP) & time to interactive (TTI)
    * from |model| and add it to |value|.
    *
-   * TTFMP is computed from three types of events: NavigationStart, Layout, and
-   * Paint. Each Layout event has associated "significance" value, indicating
-   * how the layout was visually significant.
-   *
-   * TTFMP is the time between NavigationStart and Paint that follows the Layout
-   * with biggest significance value.
+   * First meaningful paint is the paint following the layout with the highest
+   * "Layout Significance". The Layout Significance is computed inside Blink,
+   * by FirstMeaningfulPaintDetector class. It logs
+   * "firstMeaningfulPaintCandidate" event every time the Layout Significance
+   * marks a record. TTFMP is the time between NavigationStart and the last
+   * firstMeaningfulPaintCandidate event.
    *
    * Design doc: https://goo.gl/vpaxv6
    *
@@ -390,102 +335,90 @@
         tr.model.helpers.ChromeModelHelper);
     var rendererHelper = findTargetRendererHelper(chromeHelper);
     var navigationStartFinder = new NavigationStartFinder(rendererHelper);
-    var paintFinder = new PaintFinder(rendererHelper);
-    var firstMeaningfulPaintHistogram = createHistogram();
-    var firstInteractiveHistogram = createHistogram();
+    var firstMeaningfulPaintHistogram = createHistogram(
+        'timeToFirstMeaningfulPaint');
+    firstMeaningfulPaintHistogram.description =
+      'time to first meaningful paint';
+    var firstInteractiveHistogram = createHistogram('timeToFirstInteractive');
+    firstInteractiveHistogram.description = 'time to first interactive';
 
     function addFirstMeaningfulPaintSampleToHistogram(
-        frameIdRef, navigationStart, mostSignificantLayout) {
+        frameIdRef, navigationStart, fmpMarkerEvent) {
       var snapshot = findFrameLoaderSnapshotAt(
-          rendererHelper, frameIdRef, mostSignificantLayout.start);
+          rendererHelper, frameIdRef, fmpMarkerEvent.start);
       if (snapshot === undefined || !snapshot.args.isLoadingMainFrame)
         return;
       var url = snapshot.args.documentLoaderURL;
       if (shouldIgnoreURL(url))
         return;
-      var paintEvent = paintFinder.findPaintEventForFrameAfterTimestamp(
-          frameIdRef, mostSignificantLayout.start);
-      if (paintEvent === undefined) {
-        console.warn('Failed to find paint event after the most significant ' +
-            'layout for frameId "' + frameIdRef + '".');
-        return;
-      }
-      var timeToFirstMeaningfulPaint = paintEvent.start - navigationStart.start;
-      var diagnosticDict = rendererHelper.generateTimeBreakdownTree(
-          navigationStart.start, paintEvent.start);
-      diagnosticDict.url = url;
-      firstMeaningfulPaintHistogram.add(
-          timeToFirstMeaningfulPaint,
-          new tr.v.d.DiagnosticMap(
-              {breakdown: new tr.v.d.Generic(diagnosticDict)}));
-      return {firstMeaningfulPaint: paintEvent.start, url: url};
+
+      var timeToFirstMeaningfulPaint =
+          fmpMarkerEvent.start - navigationStart.start;
+      var extraDiagnostic = {
+          url: url,
+          pid: rendererHelper.pid
+      };
+      var breakdownDiagnostic = createBreakdownDiagnostic(
+          rendererHelper, navigationStart.start, fmpMarkerEvent.start);
+      firstMeaningfulPaintHistogram.addSample(timeToFirstMeaningfulPaint,
+          {
+            "Breakdown of [navStart, FMP]": breakdownDiagnostic,
+            "Start": new RelatedEventSet(navigationStart),
+            "End": new RelatedEventSet(fmpMarkerEvent),
+            "Navigation infos": new tr.v.d.Generic(
+                {url: url, pid: rendererHelper.pid,
+                 start: navigationStart.start, fmp: fmpMarkerEvent.start}),
+          });
+      return {firstMeaningfulPaint: fmpMarkerEvent.start, url: url};
     }
 
-    var layoutsForFrameId = findAllLayoutEvents(rendererHelper);
+    var candidatesForFrameId =
+        findFirstMeaningfulPaintCandidates(rendererHelper);
 
-    for (var frameIdRef in layoutsForFrameId) {
+    for (var frameIdRef in candidatesForFrameId) {
       var navigationStart;
-      var mostSignificantLayout;
-      var maxSignificanceSoFar = 0;
-      var accumulatedSignificanceWhileHavingBlankText = 0;
+      var lastCandidate;
 
-      // Iterate over the layout events, remembering one with largest
-      // significance.
-      for (var ev of layoutsForFrameId[frameIdRef]) {
-        var navigationStartForThisLayout = navigationStartFinder.
+      // Iterate over the FMP candidates, remembering the last one.
+      for (var ev of candidatesForFrameId[frameIdRef]) {
+        var navigationStartForThisCandidate = navigationStartFinder.
           findNavigationStartEventForFrameBeforeTimestamp(frameIdRef, ev.start);
-        // Ignore layout w/o preceding navigationStart, as they are not
+        // Ignore candidate w/o preceding navigationStart, as they are not
         // attributed to any TTFMP.
-        if (navigationStartForThisLayout === undefined)
+        if (navigationStartForThisCandidate === undefined)
           continue;
 
-        if (navigationStart !== navigationStartForThisLayout) {
+        if (navigationStart !== navigationStartForThisCandidate) {
           // New navigation is found. Compute TTFMP for current navigation, and
           // reset the state variables.
-          if (navigationStart !== undefined &&
-              mostSignificantLayout !== undefined)
-            addFirstMeaningfulPaintSampleToHistogram(
-                frameIdRef, navigationStart, mostSignificantLayout);
-          navigationStart = navigationStartForThisLayout;
-          mostSignificantLayout = undefined;
-          maxSignificanceSoFar = 0;
-          accumulatedSignificanceWhileHavingBlankText = 0;
-        }
-
-        // Check if |ev| has the largest significance. If the page has many
-        // blank characters, the significance value is accumulated until
-        // the text become visible.
-        var significance = layoutSignificance(ev);
-        if (hasTooManyBlankCharactersToBeMeaningful(ev)) {
-          accumulatedSignificanceWhileHavingBlankText += significance;
-        } else {
-          significance += accumulatedSignificanceWhileHavingBlankText;
-          accumulatedSignificanceWhileHavingBlankText = 0;
-          if (significance > maxSignificanceSoFar) {
-            maxSignificanceSoFar = significance;
-            mostSignificantLayout = ev;
+          if (navigationStart !== undefined && lastCandidate !== undefined) {
+            data = addFirstMeaningfulPaintSampleToHistogram(
+                  frameIdRef, navigationStart, lastCandidate);
+            if (data !== undefined)
+              addTimeToInteractiveSampleToHistogram(
+                  firstInteractiveHistogram, rendererHelper,
+                  navigationStart,
+                  data.firstMeaningfulPaint, data.url);
           }
+          navigationStart = navigationStartForThisCandidate;
         }
+        lastCandidate = ev;
       }
 
       // Emit TTFMP for the last navigation.
-      if (mostSignificantLayout !== undefined) {
+      if (lastCandidate !== undefined) {
         var data = addFirstMeaningfulPaintSampleToHistogram(
-          frameIdRef, navigationStart, mostSignificantLayout);
+          frameIdRef, navigationStart, lastCandidate);
 
         if (data !== undefined)
           addTimeToInteractiveSampleToHistogram(
-              firstInteractiveHistogram, rendererHelper, navigationStart.start,
+              firstInteractiveHistogram, rendererHelper, navigationStart,
               data.firstMeaningfulPaint, data.url);
       }
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'timeToFirstMeaningfulPaint', firstMeaningfulPaintHistogram,
-        { description: 'time to first meaningful paint' }));
-    values.addValue(new tr.v.NumericValue(
-        'timeToFirstInteractive', firstInteractiveHistogram,
-        { description: 'time to first interactive' }));
+    values.addHistogram(firstMeaningfulPaintHistogram);
+    values.addHistogram(firstInteractiveHistogram);
   }
 
   function loadingMetric(values, model) {
diff --git a/catapult/tracing/tracing/metrics/system_health/loading_metric_test.html b/catapult/tracing/tracing/metrics/system_health/loading_metric_test.html
index 6ae5b37..7e22de3 100644
--- a/catapult/tracing/tracing/metrics/system_health/loading_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/loading_metric_test.html
@@ -38,7 +38,8 @@
     });
     var values = new tr.v.ValueSet();
     tr.metrics.sh.loadingMetric(values, model);
-    var numeric = values.valueDicts[0].numeric;
+    var numeric = tr.b.getOnlyElement(values.getValuesNamed(
+        'timeToFirstContentfulPaint'));
     assert.equal(1, numeric.running.count);
     assert.equal(800, numeric.running.mean);
   });
@@ -101,7 +102,8 @@
     });
     var values = new tr.v.ValueSet();
     tr.metrics.sh.loadingMetric(values, model);
-    var numeric = values.valueDicts[0].numeric;
+    var numeric = tr.b.getOnlyElement(values.getValuesNamed(
+        'timeToFirstContentfulPaint'));
     assert.equal(1, numeric.running.count);
     assert.equal(400, numeric.running.mean);
   });
@@ -122,113 +124,26 @@
           {isLoadingMainFrame: true, frame: {id_ref: '0xdeadbeef'},
             documentLoaderURL: 'http://example.com'});
       mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink,benchmark,rail,disabled-by-default-blink.debug.layout',
-        title: 'FrameView::performLayout',
-        start: 500,
-        duration: 10.0,
-        args: {
-          counters: {
-            frame: '0xdeadbeef',
-            LayoutObjectsThatHadNeverHadLayout: 10,
-            contentsHeightAfterLayout: 800,
-            visibleHeight: 1000,
-          },
-          contentsHeightBeforeLayout: 0
-        }
-      }));
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'devtools.timeline,rail',
-        title: 'Paint',
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
         start: 600,
-        duration: 1.0,
-        args: {data: {frame: '0xdeadbeef'}}
-      }));
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink,benchmark,rail,disabled-by-default-blink.debug.layout',
-        title: 'FrameView::performLayout',
-        start: 800,
-        duration: 10.0,
-        args: {
-          counters: {
-            frame: '0xdeadbeef',
-            LayoutObjectsThatHadNeverHadLayout: 100,
-            contentsHeightAfterLayout: 800,
-            visibleHeight: 1000
-          },
-          contentsHeightBeforeLayout: 800
-        }
-      }));
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'devtools.timeline,rail',
-        title: 'Paint',
-        start: 1000,
-        duration: 1.0,
-        args: {data: {frame: '0xdeadbeef'}}
-      }));
-    });
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.loadingMetric(values, model);
-    var ttfmpEntries = values.valueDicts.filter(
-        (dict) => dict.name === 'timeToFirstMeaningfulPaint');
-    var numeric = ttfmpEntries[0].numeric;
-    assert.equal(1, numeric.running.count);
-    assert.equal(800, numeric.running.mean);
-  });
-
-  test('timeToFirstMeaningfulPaintWithInvalidLayoutCounters', function() {
-    var model = tr.c.TestUtils.newModel(function(model) {
-      var rendererProcess = model.getOrCreateProcess(1);
-      var mainThread = rendererProcess.getOrCreateThread(2);
-      mainThread.name = 'CrRendererMain';
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink.user_timing',
-        title: 'navigationStart',
-        start: 200,
         duration: 0.0,
         args: {frame: '0xdeadbeef'}
       }));
-      rendererProcess.objects.addSnapshot('ptr', 'loading', 'FrameLoader', 300,
-          {isLoadingMainFrame: true, frame: {id_ref: '0xdeadbeef'},
-            documentLoaderURL: 'http://example.com'});
-
-      // FrameView::performLayout trace event does not have frame ID
-      // if blink.debug.layout category is not enabled.
       mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink,benchmark,rail,disabled-by-default-blink.debug.layout',
-        title: 'FrameView::performLayout',
-        start: 500,
-        duration: 10.0,
-        args: {
-          counters: {},
-          contentsHeightBeforeLayout: 0
-        }
-      }));
-
-      // Incomplete slice: counters argument is missing.
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink,benchmark,rail,disabled-by-default-blink.debug.layout',
-        title: 'FrameView::performLayout',
-        start: 550,
-        duration: 10.0,
-        args: {
-          contentsHeightBeforeLayout: 0
-        }
-      }));
-
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'devtools.timeline,rail',
-        title: 'Paint',
-        start: 600,
-        duration: 1.0,
-        args: {data: {frame: '0xdeadbeef'}}
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
+        start: 1000,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
       }));
     });
     var values = new tr.v.ValueSet();
     tr.metrics.sh.loadingMetric(values, model);
-    var ttfmpEntries = values.valueDicts.filter(
-        (dict) => dict.name === 'timeToFirstMeaningfulPaint');
-    var numeric = ttfmpEntries[0].numeric;
-    assert.equal(0, numeric.running.count);
+    var numeric = tr.b.getOnlyElement(values.getValuesNamed(
+        'timeToFirstMeaningfulPaint'));
+    assert.equal(1, numeric.running.count);
+    assert.equal(800, numeric.running.mean);
   });
 
   test('timeToInteractive', function() {
@@ -254,52 +169,21 @@
       rendererProcess.objects.addSnapshot('ptr', 'loading', 'FrameLoader', 300,
           {isLoadingMainFrame: true, frame: {id_ref: '0xdeadbeef'},
             documentLoaderURL: 'http://example.com'});
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink,benchmark,rail,disabled-by-default-blink.debug.layout',
-        title: 'FrameView::performLayout',
-        start: 500,
-        duration: 10.0,
-        args: {
-          counters: {
-            frame: '0xdeadbeef',
-            LayoutObjectsThatHadNeverHadLayout: 10,
-            contentsHeightAfterLayout: 800,
-            visibleHeight: 1000,
-          },
-          contentsHeightBeforeLayout: 0
-        }
-      }));
 
       mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'devtools.timeline,rail',
-        title: 'Paint',
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
         start: 9180,
-        duration: 1.0,
-        args: {data: {frame: '0xdeadbeef'}}
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
       }));
 
       mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'blink,benchmark,rail,disabled-by-default-blink.debug.layout',
-        title: 'FrameView::performLayout',
-        start: 9190,
-        duration: 10.0,
-        args: {
-          counters: {
-            frame: '0xdeadbeef',
-            LayoutObjectsThatHadNeverHadLayout: 100,
-            contentsHeightAfterLayout: 800,
-            visibleHeight: 1000
-          },
-          contentsHeightBeforeLayout: 800
-        }
-      }));
-
-      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
-        cat: 'devtools.timeline,rail',
-        title: 'Paint',
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
         start: 9200,
-        duration: 1.0,
-        args: {data: {frame: '0xdeadbeef'}}
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
       }));
 
       mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
@@ -339,19 +223,116 @@
     });
     var values = new tr.v.ValueSet();
     tr.metrics.sh.loadingMetric(values, model);
-    var ttiEntries = values.valueDicts.filter(
-        (dict) => dict.name === 'timeToFirstInteractive');
-    var numeric = ttiEntries[0].numeric;
+    var numeric = tr.b.getOnlyElement(values.getValuesNamed(
+        'timeToFirstInteractive'));
     assert.equal(1, numeric.running.count);
     assert.equal(15200, numeric.running.mean);
-    var binsWithSampleDiagnosticMaps = numeric.centralBins.filter(
-        (bin) => bin.diagnosticMaps.length > 0);
-    var diagnostic = binsWithSampleDiagnosticMaps[0].diagnosticMaps[0][
-                                                        'breakdown'];
+    var binsWithSampleDiagnosticMaps = numeric.allBins.filter(
+        bin => bin.diagnosticMaps.length > 0);
+    var diagnostic = binsWithSampleDiagnosticMaps[0].diagnosticMaps[0].get(
+                                                        'Navigation infos');
     assert.equal(diagnostic.value.start, 200);
     assert.equal(diagnostic.value.interactive, 15400);
     assert.equal(diagnostic.value.pid, 1984);
   });
 
+  test('multiTimeToInteractive', function() {
+    // Our renderer thread would looks like
+    //
+    // *           *  [  main thread busy ]     *        *           *
+    // |                   |                    |        |           |
+    // |                   |                    |        |           |
+    // v                   v                    v        v           v
+    // 1st navigation   1st FMP              2nd nav   1st TTI   2nd FMP & TTI
+    // 200                9200                12000     14500        16000
+    var model = tr.c.TestUtils.newModel(function(model) {
+      var rendererProcess = model.getOrCreateProcess(1984);
+      var mainThread = rendererProcess.getOrCreateThread(2);
+      mainThread.name = 'CrRendererMain';
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'blink.user_timing',
+        title: 'navigationStart',
+        start: 200,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+      rendererProcess.objects.addSnapshot('ptr', 'loading', 'FrameLoader', 300,
+          {isLoadingMainFrame: true, frame: {id_ref: '0xdeadbeef'},
+            documentLoaderURL: 'http://example.com'});
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
+        start: 9180,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
+        start: 9200,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 9350,
+        duration: 100,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 11150,
+        duration: 100,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'blink.user_timing',
+        title: 'navigationStart',
+        start: 12000,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 12550,
+        duration: 100,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 14950,
+        duration: 500,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
+        start: 16000,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 29150,
+        duration: 10,
+      }));
+    });
+    var values = new tr.v.ValueSet();
+    tr.metrics.sh.loadingMetric(values, model);
+    var numeric = tr.b.getOnlyElement(values.getValuesNamed(
+        'timeToFirstInteractive'));
+    assert.equal(2, numeric.running.count);
+    assert.equal(4000, numeric.running.min);
+    assert.equal(15200, numeric.running.max);
+});
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/system_health/long_tasks_metric.html b/catapult/tracing/tracing/metrics/system_health/long_tasks_metric.html
index baf2006..d6604a6 100644
--- a/catapult/tracing/tracing/metrics/system_health/long_tasks_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/long_tasks_metric.html
@@ -5,12 +5,10 @@
 found in the LICENSE file.
 -->
 
-<link rel="import"
-    href="/tracing/extras/chrome/chrome_user_friendly_category_driver.html">
+<link rel="import" href="/tracing/extras/chrome/chrome_user_friendly_category_driver.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -22,9 +20,6 @@
   // uninteresting.
   var LONGEST_TASK_MS = 1000;
 
-  var timeDurationInMs_smallerIsBetter =
-    tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;
-
   /**
    * This helper function calls |cb| for each of the top-level tasks on the
    * given thread in the given range whose duration is longer than LONG_TASK_MS.
@@ -67,18 +62,6 @@
         });
   }
 
-  var LONG_TASK_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(LONG_TASK_MS, LONGEST_TASK_MS), 50);
-
-  // This range spans several orders of magnitude, and the data is likely to
-  // form an exponential distribution, so use exponential bins in order to
-  // prevent the lowest bin from containing almost all of the samples.
-  // See also most UMA histograms that are exponential for similar reasons.
-  var SLICE_NUMERIC_BUILDER = tr.v.NumericBuilder.createExponential(
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(0.1, LONGEST_TASK_MS), 50);
-
   /**
    * This metric directly measures long tasks on renderer main threads.
    * This metric requires only the 'toplevel' tracing category.
@@ -89,26 +72,32 @@
    */
   function longTasksMetric(values, model, opt_options) {
     var rangeOfInterest = opt_options ? opt_options.rangeOfInterest : undefined;
-    var longTaskNumeric = LONG_TASK_NUMERIC_BUILDER.build();
+    var longTaskNumeric = new tr.v.Histogram('long tasks',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createLinear(
+            LONG_TASK_MS, LONGEST_TASK_MS, 40));
+    longTaskNumeric.description = 'durations of long tasks';
     var slices = new tr.model.EventSet();
     iterateRendererMainThreads(model, function(thread) {
       iterateLongTopLevelTasksOnThreadInRange(
           thread, rangeOfInterest, function(task) {
-            longTaskNumeric.add(task.duration,
-                new tr.v.d.DiagnosticMap({
-                relatedEvents: new tr.v.d.RelatedEventSet([task])}));
+            longTaskNumeric.addSample(task.duration,
+                {relatedEvents: new tr.v.d.RelatedEventSet([task])});
             slices.push(task);
             slices.addEventSet(task.descendentSlices);
           });
     });
-    var options = {description: 'durations of long tasks'};
-    var longTaskValue = new tr.v.NumericValue(
-        'long tasks', longTaskNumeric, options);
-    values.addValue(longTaskValue);
+    values.addHistogram(longTaskNumeric);
+
+    var sampleForEvent = undefined;
     var composition = tr.v.d.Composition.buildFromEvents(
-        values, 'long tasks ', slices, SLICE_NUMERIC_BUILDER,
-        e => (model.getUserFriendlyCategoryFromEvent(e) || 'unknown'));
-    longTaskValue.diagnostics.add('category', composition);
+        values, 'long tasks ', slices,
+        e => (model.getUserFriendlyCategoryFromEvent(e) || 'unknown'),
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, sampleForEvent,
+        tr.v.HistogramBinBoundaries.createExponential(1, LONGEST_TASK_MS, 40));
+    composition.colorScheme =
+      tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;
+    longTaskValue.diagnostics.set('category', composition);
   }
 
   tr.metrics.MetricRegistry.register(longTasksMetric, {
diff --git a/catapult/tracing/tracing/metrics/system_health/memory_metric.html b/catapult/tracing/tracing/metrics/system_health/memory_metric.html
index ef16a5e..8134aea 100644
--- a/catapult/tracing/tracing/metrics/system_health/memory_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/memory_metric.html
@@ -8,13 +8,12 @@
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/multi_dimensional_view.html">
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/helpers/chrome_model_helper.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -23,11 +22,10 @@
   var BACKGROUND = tr.model.ContainerMemoryDump.LevelOfDetail.BACKGROUND;
   var LIGHT = tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;
   var DETAILED = tr.model.ContainerMemoryDump.LevelOfDetail.DETAILED;
-  var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var DISPLAYED_SIZE_NUMERIC_NAME =
       tr.model.MemoryAllocatorDump.DISPLAYED_SIZE_NUMERIC_NAME;
 
@@ -36,17 +34,15 @@
   LEVEL_OF_DETAIL_NAMES.set(LIGHT, 'light');
   LEVEL_OF_DETAIL_NAMES.set(DETAILED, 'detailed');
 
-  var MEMORY_NUMERIC_BUILDER_MAP = new WeakMap();
+  var BOUNDARIES_FOR_UNIT_MAP = new WeakMap();
   // For unitless numerics (process counts), we use 20 linearly scaled bins
   // from 0 to 20.
-  MEMORY_NUMERIC_BUILDER_MAP.set(unitlessNumber_smallerIsBetter,
-      tr.v.NumericBuilder.createLinear(
-          tr.v.Unit.byName.unitlessNumber_smallerIsBetter,
-          tr.b.Range.fromExplicitRange(0, 20), 20));
+  BOUNDARIES_FOR_UNIT_MAP.set(unitlessNumber_smallerIsBetter,
+      tr.v.HistogramBinBoundaries.createLinear(0, 20, 20));
   // For size numerics (subsystem and vm stats), we use 1 bin from 0 B to
   // 1 KiB and 4*24 exponentially scaled bins from 1 KiB to 16 GiB (=2^24 KiB).
-  MEMORY_NUMERIC_BUILDER_MAP.set(sizeInBytes_smallerIsBetter,
-      new tr.v.NumericBuilder(sizeInBytes_smallerIsBetter, 0)
+  BOUNDARIES_FOR_UNIT_MAP.set(sizeInBytes_smallerIsBetter,
+      new tr.v.HistogramBinBoundaries(0)
           .addBinBoundary(1024 /* 1 KiB */)
           .addExponentialBins(16 * 1024 * 1024 * 1024 /* 16 GiB */, 4 * 24));
 
@@ -123,7 +119,7 @@
 
   function canonicalizeName(name) {
     return name.toLowerCase().replace(' ', '_');
-  };
+  }
 
   var USER_FRIENDLY_BROWSER_NAMES = {
     'chrome': 'Chrome',
@@ -233,7 +229,7 @@
    *     memory:{chrome, webview}:
    *         {browser_process, renderer_processes, ..., all_processes}:
    *         process_count
-   *     type: tr.v.Numeric (histogram over all matching global memory dumps)
+   *     type: tr.v.Histogram (over all matching global memory dumps)
    *     unit: unitlessNumber_smallerIsBetter
    *
    *   * MEMORY USAGE REPORTED BY CHROME
@@ -241,7 +237,7 @@
    *         {browser_process, renderer_processes, ..., all_processes}:
    *         reported_by_chrome[:{v8, malloc, ...}]:
    *         {effective_size, allocated_objects_size, locked_size}
-   *     type: tr.v.Numeric (histogram over all matching global memory dumps)
+   *     type: tr.v.Histogram (over all matching global memory dumps)
    *     unit: sizeInBytes_smallerIsBetter
    */
   function addGeneralMemoryDumpValues(browserNameToGlobalDumps, values) {
@@ -256,6 +252,21 @@
             descriptionPrefixBuilder: buildProcessCountDescriptionPrefix
           });
 
+          if (processDump.totals !== undefined) {
+            tr.b.iterItems(SYSTEM_TOTAL_VALUE_PROPERTIES,
+                function(propertyName, propertySpec) {
+                  addProcessScalar({
+                    source: 'reported_by_os',
+                    property: propertyName,
+                    component: ['system_memory'],
+                    value: propertySpec.getPropertyFunction(processDump),
+                    unit: sizeInBytes_smallerIsBetter,
+                    descriptionPrefixBuilder:
+                        propertySpec.descriptionPrefixBuilder
+                  });
+                });
+          }
+
           // Add memory:<browser-name>:<process-name>:reported_by_chrome:...
           // values.
           if (processDump.memoryAllocatorDumps === undefined)
@@ -271,6 +282,24 @@
                     descriptionPrefixBuilder: descriptionPrefixBuilder
                   });
                 });
+            // Some dump providers add allocated objects size as
+            // "allocated_objects" child dump.
+            if (rootAllocatorDump.numerics['allocated_objects_size'] ===
+                    undefined) {
+              var allocatedObjectsDump =
+                  rootAllocatorDump.getDescendantDumpByFullName(
+                      'allocated_objects');
+              if (allocatedObjectsDump !== undefined) {
+                addProcessScalar({
+                  source: 'reported_by_chrome',
+                  component: [rootAllocatorDump.name],
+                  property: 'allocated_objects_size',
+                  value: allocatedObjectsDump.numerics['size'],
+                  descriptionPrefixBuilder:
+                      CHROME_VALUE_PROPERTIES['allocated_objects_size']
+                });
+              }
+            }
           });
 
           // Add memory:<browser-name>:<process-name>:reported_by_chrome:v8:
@@ -319,6 +348,26 @@
         });
       }
     });
+
+    // V8 generates bytecode when interpreting and code objects when
+    // compiling the javascript. Total code size includes the size
+    // of code and bytecode objects.
+    addProcessScalar({
+      source: 'reported_by_chrome',
+      component: ['v8'],
+      property: 'code_and_metadata_size',
+      value: v8Dump.numerics['code_and_metadata_size'],
+      descriptionPrefixBuilder:
+          buildCodeAndMetadataSizeValueDescriptionPrefix
+    });
+    addProcessScalar({
+      source: 'reported_by_chrome',
+      component: ['v8'],
+      property: 'code_and_metadata_size',
+      value: v8Dump.numerics['bytecode_and_metadata_size'],
+      descriptionPrefixBuilder:
+          buildCodeAndMetadataSizeValueDescriptionPrefix
+    });
   }
 
   /**
@@ -441,6 +490,23 @@
     }),
   };
 
+  var SYSTEM_TOTAL_VALUE_PROPERTIES = {
+    'resident_size': {
+      getPropertyFunction: function(processDump) {
+        return processDump.totals.residentBytes;
+      },
+      descriptionPrefixBuilder: buildOsValueDescriptionPrefix.bind(
+          undefined, 'resident set size (RSS)')
+    },
+    'peak_resident_size': {
+      getPropertyFunction: function(processDump) {
+        return processDump.totals.peakResidentBytes;
+      },
+      descriptionPrefixBuilder: buildOsValueDescriptionPrefix.bind(
+          undefined, 'peak resident set size')
+    }
+  };
+
   /**
    * Add heavy memory dump values calculated from heavy global memory dumps to
    * |values|. In particular, this function adds the following values:
@@ -454,14 +520,14 @@
    *         {browser_process, renderer_processes, ..., all_processes}:
    *         reported_by_os:gpu_memory:[{gl, graphics, ...}:]
    *         proportional_resident_size
-   *     type: tr.v.Numeric (histogram over matching heavy global memory dumps)
+   *     type: tr.v.Histogram (over matching heavy global memory dumps)
    *     unit: sizeInBytes_smallerIsBetter
    *
    *   * MEMORY USAGE REPORTED BY CHROME
    *     memory:{chrome, webview}:
    *         {browser_process, renderer_processes, ..., all_processes}:
    *         reported_by_chrome:v8:code_and_metadata_size
-   *     type: tr.v.Numeric (histogram over matching heavy global memory dumps)
+   *     type: tr.v.Histogram (over matching heavy global memory dumps)
    *     unit: sizeInBytes_smallerIsBetter
    */
   function addDetailedMemoryDumpValues(browserNameToGlobalDumps, values) {
@@ -513,31 +579,6 @@
               });
             });
           }
-
-          // Add memory:<browser-name>:<process-name>:reported_by_chrome:v8:
-          // code_and_metadata_size when available.
-          var v8Dump = processDump.getMemoryAllocatorDumpByFullName('v8');
-          if (v8Dump !== undefined) {
-            // V8 generates bytecode when interpreting and code objects when
-            // compiling the javascript. Total code size includes the size
-            // of code and bytecode objects.
-            addProcessScalar({
-              source: 'reported_by_chrome',
-              component: ['v8'],
-              property: 'code_and_metadata_size',
-              value: v8Dump.numerics['code_and_metadata_size'],
-              descriptionPrefixBuilder:
-                  buildCodeAndMetadataSizeValueDescriptionPrefix
-            });
-            addProcessScalar({
-              source: 'reported_by_chrome',
-              component: ['v8'],
-              property: 'code_and_metadata_size',
-              value: v8Dump.numerics['bytecode_and_metadata_size'],
-              descriptionPrefixBuilder:
-                  buildCodeAndMetadataSizeValueDescriptionPrefix
-            });
-          }
         }, function(componentTree) {}, values);
   }
 
@@ -676,11 +717,11 @@
    *
    *   * DUMP COUNTS
    *     memory:{chrome, webview}:all_processes:dump_count[:{light, detailed}]
-   *     type: tr.v.ScalarNumeric (scalar over the whole trace)
+   *     type: tr.v.Histogram
    *     unit: unitlessNumber_smallerIsBetter
    *
    * Note that unlike all other values generated by the memory metric, the
-   * global memory dump counts are NOT instances of tr.v.Numeric (histogram)
+   * global memory dump counts are NOT instances of tr.v.Histogram
    * because it doesn't make sense to aggregate them (they are already counts
    * over all global dumps associated with the relevant browser).
    */
@@ -715,7 +756,7 @@
   }
 
   /**
-   * Add a tr.v.ScalarNumeric value to |values| reporting that the number of
+   * Add a tr.v.Histogram value to |values| reporting that the number of
    * |levelOfDetailName| memory dumps added by |browserName| was
    * |levelOfDetailCount|.
    */
@@ -727,22 +768,22 @@
       nameParts.push(levelOfDetailName);
     var name = nameParts.join(':');
 
-    // Build the underlying numeric for the memory value.
-    var numeric = new ScalarNumeric(
-        unitlessNumber_smallerIsBetter, levelOfDetailDumpCount);
+    // Build the underlying histogram for the memory value.
+    var histogram = new tr.v.Histogram(name, unitlessNumber_smallerIsBetter,
+        BOUNDARIES_FOR_UNIT_MAP.get(unitlessNumber_smallerIsBetter));
+    histogram.addSample(levelOfDetailDumpCount);
 
     // Build the options for the memory value.
-    var description = [
+    histogram.description = [
       'total number of',
       levelOfDetailName || 'all',
       'memory dumps added by',
       convertBrowserNameToUserFriendlyName(browserName),
       'to the trace'
     ].join(' ');
-    var options = { description: description };
 
     // Report the memory value.
-    values.addValue(new tr.v.NumericValue(name, numeric, options));
+    values.addHistogram(histogram);
   }
 
   /**
@@ -778,35 +819,35 @@
    * memory dump, the following values will be reported (for Chrome):
    *
    *    memory:chrome:browser_process:source:X:A:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:A in all 'browser' process dumps in global dump 1,
    *          ...
    *          sum of X:A in all 'browser' process dumps in global dump N
    *        ]
    *
    *    memory:chrome:browser_process:source:X:B:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:B in all 'browser' process dumps in global dump 1,
    *          ...
    *          sum of X:B in all 'browser' process dumps in global dump N
    *        ]
    *
    *    memory:chrome:browser_process:source:X:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:A+X:B in all 'browser' process dumps in global dump 1,
    *          ...
    *          sum of X:A+X:B in all 'browser' process dumps in global dump N
    *        ]
    *
    *    memory:chrome:browser_process:source:Y:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of Y in all 'browser' process dumps in global dump 1,
    *          ...
    *          sum of Y in all 'browser' process dumps in global dump N
    *        ]
    *
    *    memory:chrome:browser_process:source:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:A+X:B+Y in all 'browser' process dumps in global dump 1,
    *          ...
    *          sum of X:A+X:B+Y in all 'browser' process dumps in global dump N
@@ -815,35 +856,35 @@
    *    ...
    *
    *    memory:chrome:all_processes:source:X:A:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:A in all process dumps in global dump 1,
    *          ...
    *          sum of X:A in all process dumps in global dump N,
    *    ]
    *
    *    memory:chrome:all_processes:source:X:B:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:B in all process dumps in global dump 1,
    *          ...
    *          sum of X:B in all process dumps in global dump N,
    *    ]
    *
    *    memory:chrome:all_processes:source:X:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:A+X:B in all process dumps in global dump 1,
    *          ...
    *          sum of X:A+X:B in all process dumps in global dump N,
    *    ]
    *
    *    memory:chrome:all_processes:source:Y:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of Y in all process dumps in global dump 1,
    *          ...
    *          sum of Y in all process dumps in global dump N
    *    ]
    *
    *    memory:chrome:all_processes:source:proportional_resident_size :
-   *        Numeric aggregated over [
+   *        Histogram aggregated over [
    *          sum of X:A+X:B+Y in all process dumps in global dump 1,
    *          ...
    *          sum of X:A+X:B+Y in all process dumps in global dump N
@@ -864,8 +905,8 @@
    *         source: string,
    *         componentPath: (!Array<string>|undefined),
    *         propertyName: (string|undefined),
-   *         value: (!tr.v.ScalarNumeric|number|undefined),
-   *         unit: (!tr.v.Unit|undefined),
+   *         value: (!tr.v.Histogram|number|undefined),
+   *         unit: (!tr.b.Unit|undefined),
    *         descriptionPrefixBuilder: (!function(!Array<string>): string)
    *     }))}
    *     customProcessDumpValueExtractor Callback for extracting values from a
@@ -947,11 +988,11 @@
           }
 
           var value, unit;
-          if (spec.value instanceof ScalarNumeric) {
+          if (spec.value instanceof tr.v.ScalarNumeric) {
             value = spec.value.value;
             unit = spec.value.unit;
             if (spec.unit !== undefined) {
-              throw new Error('ScalarNumeric value for ' +
+              throw new Error('Histogram value for ' +
                   createDetailsForErrorMessage() + ' already specifies a unit');
             }
           } else {
@@ -1033,7 +1074,7 @@
   /**
    * For the given |browserName| (e.g. 'chrome'), |processName|
    * (e.g. 'gpu_process'), |propertyName| (e.g. 'effective_size'),
-   * |componentPath| (e.g. ['v8']), add a tr.v.Numeric with |unit| aggregating
+   * |componentPath| (e.g. ['v8']), add a tr.v.Histogram with |unit| aggregating
    * the total values of the associated |componentNode| across all timestamps
    * (corresponding to global memory dumps associated with the given browser)
    * to |values|.
@@ -1051,18 +1092,17 @@
     var name = nameParts.join(':');
 
     // Build the underlying numeric for the memory value.
-    var numeric = buildMemoryNumericFromNode(componentNode, unit);
+    var numeric = buildMemoryNumericFromNode(name, componentNode, unit);
 
     // Build the options for the memory value.
-    var description = [
+    numeric.description = [
       descriptionPrefixBuilder(componentPath, processName),
       'in',
       convertBrowserNameToUserFriendlyName(browserName)
     ].join(' ');
-    var options = { description: description };
 
     // Report the memory value.
-    values.addValue(new tr.v.NumericValue(name, numeric, options));
+    values.addHistogram(numeric);
 
     // Recursively report memory values for sub-components.
     var depth = componentPath.length;
@@ -1077,13 +1117,14 @@
   }
 
   /**
-   * Create a memory tr.v.Numeric (histogram) with |unit| and add all total
-   * values in |node| to it.
+   * Create a memory tr.v.Histogram with |unit| and add all total values in
+   * |node| to it.
    */
-  function buildMemoryNumericFromNode(node, unit) {
-    var numeric = MEMORY_NUMERIC_BUILDER_MAP.get(unit).build();
-    node.values.forEach(v => numeric.add(v.total));
-    return numeric;
+  function buildMemoryNumericFromNode(name, node, unit) {
+    var histogram = new tr.v.Histogram(
+        name, unit, BOUNDARIES_FOR_UNIT_MAP.get(unit));
+    node.values.forEach(v => histogram.addSample(v.total));
+    return histogram;
   }
 
   tr.metrics.MetricRegistry.register(memoryMetric, {
diff --git a/catapult/tracing/tracing/metrics/system_health/memory_metric_test.html b/catapult/tracing/tracing/metrics/system_health/memory_metric_test.html
index 8aae75d..fb2539e 100644
--- a/catapult/tracing/tracing/metrics/system_health/memory_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/memory_metric_test.html
@@ -12,7 +12,6 @@
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/memory_dump_test_utils.html">
 <link rel="import" href="/tracing/model/vm_region.html">
-<link rel="import" href="/tracing/value/value.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <script>
@@ -31,9 +30,9 @@
   var addChildDump = tr.model.MemoryDumpTestUtils.addChildDump;
   var addOwnershipLink = tr.model.MemoryDumpTestUtils.addOwnershipLink;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
 
   function memoryMetricTest(
       name, modelCallback, opt_options, expectedNumerics) {
@@ -42,7 +41,7 @@
       var model = tr.c.TestUtils.newModel(modelCallback);
       var valueNameToValues = {};
       var fakeValueList = {
-        addValue: function(value) {
+        addHistogram: function(value) {
           var values = valueNameToValues[value.name];
           if (values === undefined)
             valueNameToValues[value.name] = values = [];
@@ -86,56 +85,45 @@
       tr.b.iterItems(valueNameToValues, function(valueName, actualValues) {
         assert.lengthOf(actualValues, 1,
             'Multiple \'' + valueName + '\' values');
-        var actualValue = actualValues[0];
-        assert.instanceOf(actualValue, tr.v.NumericValue);
+        var actualHistogram = actualValues[0];
+        assert.instanceOf(actualHistogram, tr.v.Histogram);
 
-        var actualNumeric = actualValue.numeric;
-        var expectedNumeric = expectedNumerics[valueName];
-        assert.strictEqual(actualNumeric.unit, expectedNumeric.unit,
+        var expectedHistogram = expectedNumerics[valueName];
+        assert.strictEqual(actualHistogram.unit, expectedHistogram.unit,
             'Invalid \'' + valueName + '\' unit (expected: ' +
-            expectedNumeric.unit.unitName, + ', actual: ' +
-            actualNumeric.unit.unitName + ')');
+            expectedHistogram.unit.unitName, + ', actual: ' +
+            actualHistogram.unit.unitName + ')');
 
-        if (typeof expectedNumeric.value === 'number') {
-          // Scalar.
-          assert.instanceOf(actualNumeric, tr.v.ScalarNumeric,
-              'Invalid \'' + valueName + '\' class');
-          assert.closeTo(actualNumeric.value, expectedNumeric.value,
-              SIZE_DELTA, 'Invalid \'' + valueName + '\' numeric value');
-        } else if (expectedNumeric.value instanceof Array) {
-          // Histogram.
-          assert.instanceOf(actualNumeric, tr.v.Numeric,
-              'Invalid \'' + valueName + '\' class');
-          assert.strictEqual(actualNumeric.numValues,
-              expectedNumeric.value.length,
-              'Invalid \'' + valueName + '\' Numeric numValues');
-          assert.closeTo(actualNumeric.sum,
-              expectedNumeric.value.reduce((a, b) => a + b, 0), SIZE_DELTA,
-              'Invalid \'' + valueName + '\' Numeric sum');
+        if (!(expectedHistogram.value instanceof Array))
+          assert.fail('Test sanity check: expected value must be an array');
 
-          // Check that the bin counts match.
-          var binToCount = new Map();
-          expectedNumeric.value.forEach(function(value) {
-            var bin = actualNumeric.getBinForValue(value);
-            binToCount.set(bin, (binToCount.get(bin) || 0) + 1);
-          });
-          actualNumeric.allBins.forEach(function(bin) {
-            binToCount.set(bin, (binToCount.get(bin) || 0) - bin.count);
-          });
-          binToCount.forEach(function(count, bin) {
-            assert.strictEqual(count, 0, 'Invalid \'' + valueName +
-                '\' bin count for range ' + bin.min + '-' + bin.max);
-          });
-        } else {
-          assert.fail(
-              'Test sanity check: expected value must be a number or an array');
-        }
+        assert.instanceOf(actualHistogram, tr.v.Histogram,
+            'Invalid \'' + valueName + '\' class');
+        assert.strictEqual(actualHistogram.numValues,
+            expectedHistogram.value.length,
+            'Invalid \'' + valueName + '\' Histogram numValues');
+        assert.closeTo(actualHistogram.sum,
+            expectedHistogram.value.reduce((a, b) => a + b, 0), SIZE_DELTA,
+            'Invalid \'' + valueName + '\' Histogram sum');
+
+        // Check that the bin counts match.
+        var binToCount = new Map();
+        expectedHistogram.value.forEach(function(value) {
+          var bin = actualHistogram.getBinForValue(value);
+          binToCount.set(bin, (binToCount.get(bin) || 0) + 1);
+        });
+        actualHistogram.allBins.forEach(function(bin) {
+          binToCount.set(bin, (binToCount.get(bin) || 0) - bin.count);
+        });
+        binToCount.forEach(function(count, bin) {
+          assert.strictEqual(count, 0, 'Invalid \'' + valueName +
+              '\' bin count for range ' + bin.min + '-' + bin.max);
+        });
 
         // Check that the description matches expectations.
-        //if (expectedNumeric.description !== '')
-          assert.strictEqual(
-              actualValue.description, expectedNumeric.description,
-              'Invalid \'' + valueName + '\' description');
+        assert.strictEqual(
+            actualHistogram.description, expectedHistogram.description,
+            'Invalid \'' + valueName + '\' description');
       });
     });
   }
@@ -170,25 +158,25 @@
     createChromeBrowserProcess(model);
   }, undefined /* opt_options */, {
     'memory:chrome:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:light': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by Chrome ' +
           'to the trace'
     },
     'memory:chrome:all_processes:dump_count': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome to the ' +
           'trace'
@@ -202,73 +190,73 @@
     createChromeBrowserProcess(model);
   }, undefined /* opt_options */, {
     'memory:chrome2:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome(2) ' +
           'to the trace'
     },
     'memory:chrome2:all_processes:dump_count:light': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome(2) to ' +
           'the trace'
     },
     'memory:chrome2:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by ' +
           'Chrome(2) to the trace'
     },
     'memory:chrome2:all_processes:dump_count': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome(2) to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:light': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by Chrome ' +
           'to the trace'
     },
     'memory:chrome:all_processes:dump_count': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome to the ' +
           'trace'
     },
     'memory:webview:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count:light': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by WebView to ' +
           'the trace'
     },
     'memory:webview:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by WebView to the ' +
           'trace'
@@ -282,25 +270,25 @@
     addGlobalMemoryDump(model, {ts: 89, levelOfDetail: DETAILED});
   }, undefined /* opt_options */, {
     'memory:unknown_browser:all_processes:dump_count:detailed': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by an unknown ' +
           'browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:background': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count': {
-      value: 4,
+      value: [4],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by an unknown ' +
           'browser to the trace'
@@ -315,25 +303,25 @@
         model, {ts: 68, levelOfDetail: LIGHT}), p, {ts: 68});
   }, undefined /* opt_options */, {
     'memory:webview:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count:light': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by WebView to ' +
           'the trace'
     },
     'memory:webview:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by WebView to the ' +
           'trace'
@@ -366,18 +354,24 @@
         allocated_objects_size: 4
       }})
     ];
+    pmdBrowser1.totals = {
+      residentBytes: 200,
+      peakResidentBytes: 230
+    };
     var pmdRendererA1 = addProcessMemoryDump(gmd1, pRendererA, {ts: 20});
     pmdRendererA1.memoryAllocatorDumps = (function() {
       var mallocDump =
           newAllocatorDump(pmdRendererA1, 'malloc', {numerics: {size: 16}});
       var partitionAllocDump =
           newAllocatorDump(pmdRendererA1, 'partition_alloc');
+      var v8Dump = newAllocatorDump(pmdRendererA1, 'v8',
+          {numerics: {code_and_metadata_size: 16}});
       addOwnershipLink(
           addChildDump(partitionAllocDump, 'allocated_objects',
               {numerics: {size: 32}}),
           addChildDump(partitionAllocDump, 'partitions',
               {numerics: {size: 24}}));
-      return [mallocDump, partitionAllocDump];
+      return [mallocDump, partitionAllocDump, v8Dump];
     })();
     var pmdGpu1 = addProcessMemoryDump(gmd1, pPpapi, {ts: 21});
     pmdGpu1.memoryAllocatorDumps = [
@@ -492,7 +486,8 @@
     pmdRendererB2.memoryAllocatorDumps = [
       newAllocatorDump(pmdRendererB2, 'v8', {numerics: {
         size: 970,
-        allocated_objects_size: 860
+        allocated_objects_size: 860,
+        bytecode_and_metadata_size: 678
       }}),
       newAllocatorDump(pmdRendererB2, 'malloc',
           {numerics: {allocated_objects_size: 750}})
@@ -526,8 +521,11 @@
     ];
     var pmdRendererB4 = addProcessMemoryDump(gmd4, pRendererB, {ts: 79});
     pmdRendererB4.memoryAllocatorDumps = (function() {
-      var v8Dump = newAllocatorDump(pmdRendererB4, 'v8',
-          {numerics: {size: 9e5}});
+      var v8Dump = newAllocatorDump(pmdRendererB4, 'v8', {numerics: {
+        code_and_metadata_size: 21,
+        bytecode_and_metadata_size: 35,
+        size: 9e5
+      }});
       var partitionAllocDump = newAllocatorDump(pmdRendererB4,
           'partition_alloc', {numerics: {size: 5e5}});
       addOwnershipLink(partitionAllocDump, v8Dump);
@@ -540,25 +538,25 @@
     ];
   }, undefined /* opt_options */, {
     'memory:chrome:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:light': {
-      value: 4,
+      value: [4],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by Chrome ' +
           'to the trace'
     },
     'memory:chrome:all_processes:dump_count': {
-      value: 4,
+      value: [4],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome to the ' +
           'trace'
@@ -576,7 +574,7 @@
           'processes in Chrome'
     },
     'memory:chrome:all_processes:reported_by_chrome:allocated_objects_size': {
-      value: [25 + 4, (36 + 6 + 1) + 750 + 860, 4000, 0],
+      value: [25 + 4 + 32, (36 + 6 + 1) + 750 + 860 + 320 + 40, 4000, 0],
       unit: sizeInBytes_smallerIsBetter,
       description: 'total size of all allocated objects reported by Chrome ' +
           'for all processes in Chrome'
@@ -588,6 +586,31 @@
           description: 'total peak size reported by Chrome for all ' +
               'processes in Chrome'
         },
+    'memory:chrome:all_processes:reported_by_os:resident_size': {
+      value: [200, 0, 0, 0],
+      unit: sizeInBytes_smallerIsBetter,
+      description: 'total resident set size (RSS) reported by the OS for all ' +
+          'processes in Chrome'
+    },
+    'memory:chrome:all_processes:reported_by_os:peak_resident_size': {
+      value: [230, 0, 0, 0],
+      unit: sizeInBytes_smallerIsBetter,
+      description: 'total peak resident set size reported by the OS for all ' +
+          'processes in Chrome'
+    },
+    'memory:chrome:all_processes:reported_by_os:system_memory:resident_size': {
+      value: [200, 0, 0, 0],
+      unit: sizeInBytes_smallerIsBetter,
+      description: 'total resident set size (RSS) of system memory (RAM) ' +
+          'used by all processes in Chrome'
+    },
+    'memory:chrome:all_processes:reported_by_os:system_memory:peak_resident_size':
+        {
+          value: [230, 0, 0, 0],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'total peak resident set size of system memory (RAM) ' +
+              'used by all processes in Chrome'
+        },
     'memory:chrome:all_processes:reported_by_chrome:gpu:effective_size': {
       value: [30, 0, 300, 0],
       unit: sizeInBytes_smallerIsBetter,
@@ -607,11 +630,18 @@
     },
     'memory:chrome:all_processes:reported_by_chrome:malloc:allocated_objects_size':
         {
-          value: [4, 750, 4000, 0],
+          value: [4, 40 + 750, 4000, 0],
           unit: sizeInBytes_smallerIsBetter,
           description: 'size of all objects allocated by malloc in all ' +
               'processes in Chrome'
         },
+    'memory:chrome:all_processes:reported_by_chrome:partition_alloc:allocated_objects_size':
+        {
+          value: [32, 320, 0, 0],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'size of all objects allocated by partition_alloc in ' +
+              'all processes in Chrome'
+        },
     'memory:chrome:all_processes:reported_by_chrome:partition_alloc:effective_size':
         {
           value: [32, 320, 0, 5e5],
@@ -638,6 +668,19 @@
           description: 'peak size of objects allocated by malloc for v8 ' +
               'in all processes in Chrome'
         },
+    'memory:chrome:all_processes:reported_by_chrome:code_and_metadata_size':
+        {
+          value: [16, 678, 0, 21 + 35],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'total size of code and metadata reported by Chrome ' +
+              'for all processes in Chrome'
+        },
+    'memory:chrome:all_processes:reported_by_chrome:v8:code_and_metadata_size':
+        {
+          value: [16, 678, 0, 21 + 35],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'size of v8 code and metadata in all processes in Chrome'
+        },
     'memory:chrome:all_processes:reported_by_chrome:v8:heap:allocated_objects_size':
         {
           value: [0, 36 + 6 + 1, 0, 0],
@@ -738,6 +781,32 @@
           unit: sizeInBytes_smallerIsBetter,
           description: 'peak size of v8 in all processes in Chrome'
         },
+    'memory:chrome:browser_process:reported_by_os:peak_resident_size': {
+      value: [230, 0, 0, 0],
+      unit: sizeInBytes_smallerIsBetter,
+      description: 'total peak resident set size reported by the OS for the ' +
+          'browser process in Chrome'
+    },
+    'memory:chrome:browser_process:reported_by_os:system_memory:peak_resident_size':
+        {
+          value: [230, 0, 0, 0],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'total peak resident set size of system memory (RAM) ' +
+              'used by the browser process in Chrome'
+        },
+    'memory:chrome:browser_process:reported_by_os:resident_size': {
+      value: [200, 0, 0, 0],
+      unit: sizeInBytes_smallerIsBetter,
+      description: 'total resident set size (RSS) reported by the OS for the ' +
+          'browser process in Chrome'
+    },
+    'memory:chrome:browser_process:reported_by_os:system_memory:resident_size':
+        {
+          value: [200, 0, 0, 0],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'total resident set size (RSS) of system memory (RAM) ' +
+              'used by the browser process in Chrome'
+        },
     'memory:chrome:browser_process:process_count': {
       value: [1, 1, 1, 1],
       unit: unitlessNumber_smallerIsBetter,
@@ -750,7 +819,7 @@
           'process in Chrome'
     },
     'memory:chrome:browser_process:reported_by_chrome:allocated_objects_size': {
-      value: [4, 0, 4000, 0],
+      value: [4 + 40, 0, 4000, 0],
       unit: sizeInBytes_smallerIsBetter,
       description: 'total size of all allocated objects reported by Chrome ' +
           'for the browser process in Chrome'
@@ -762,7 +831,7 @@
     },
     'memory:chrome:browser_process:reported_by_chrome:malloc:allocated_objects_size':
         {
-          value: [4, 0, 4000, 0],
+          value: [4 + 40, 0, 4000, 0],
           unit: sizeInBytes_smallerIsBetter,
           description: 'size of all objects allocated by malloc in the ' +
               'browser process in Chrome'
@@ -814,7 +883,7 @@
     },
     'memory:chrome:renderer_processes:reported_by_chrome:allocated_objects_size':
         {
-          value: [0, (36 + 6 + 1) + 750 + 860, 0, 0],
+          value: [32, (36 + 6 + 1) + 750 + 860 + 320, 0, 0],
           unit: sizeInBytes_smallerIsBetter,
           description: 'total size of all allocated objects reported by ' +
               'Chrome for renderer processes in Chrome'
@@ -840,6 +909,13 @@
           description: 'size of all objects allocated by malloc in renderer ' +
               'processes in Chrome'
         },
+    'memory:chrome:renderer_processes:reported_by_chrome:partition_alloc:allocated_objects_size':
+        {
+          value: [32, 320, 0, 0],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'size of all objects allocated by partition_alloc in ' +
+              'renderer processes in Chrome'
+        },
     'memory:chrome:renderer_processes:reported_by_chrome:partition_alloc:effective_size':
         {
           value: [32, 320, 0, 5e5],
@@ -868,6 +944,20 @@
           description: 'size of all objects allocated by v8:heap in renderer ' +
               'processes in Chrome'
         },
+    'memory:chrome:renderer_processes:reported_by_chrome:code_and_metadata_size':
+        {
+          value: [16, 678, 0, 21 + 35],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'total size of code and metadata reported by Chrome ' +
+              'for renderer processes in Chrome'
+        },
+    'memory:chrome:renderer_processes:reported_by_chrome:v8:code_and_metadata_size':
+        {
+          value: [16, 678, 0, 21 + 35],
+          unit: sizeInBytes_smallerIsBetter,
+          description: 'size of v8 code and metadata in renderer processes ' +
+              'in Chrome'
+        },
     'memory:chrome:renderer_processes:reported_by_chrome:v8:heap:effective_size':
         {
           value: [0, 42 + 12 + 2, 0, 0],
@@ -1005,10 +1095,6 @@
       new VMRegion(0x2345, 512, 0, '[heap]',
           {proportionalResident: 67, privateDirtyResident: 34})
     ]);
-    pmdRendererB1.memoryAllocatorDumps = [
-      newAllocatorDump(pmdRendererA4, 'v8',
-          {numerics: {code_and_metadata_size: 16}})
-    ];
     var pmdGpu1 = addProcessMemoryDump(gmd1, pGpu, {ts: 10});
     pmdGpu1.memoryAllocatorDumps = (function() {
       var gpuDump = newAllocatorDump(pmdGpu1, 'gpu');
@@ -1026,11 +1112,6 @@
       new VMRegion(0x999, 999, 999, '/dev/ashmem/dalvik-main space',
           {proportionalResident: 999})
     ]);
-    var pmdRendererA2 = addProcessMemoryDump(gmd2, pRendererA, {ts: 19});
-    pmdRendererA2.memoryAllocatorDumps = [
-      newAllocatorDump(pmdRendererA4, 'v8',
-          {numerics: {bytecode_and_metadata_size: 678}})
-    ];
     var pmdRendererB2 = addProcessMemoryDump(gmd2, pRendererB, {ts: 21});
     var pmdRendererC2 = addProcessMemoryDump(gmd2, pRendererC, {ts: 22});
     var pmdGpu2 = addProcessMemoryDump(gmd2, pGpu, {ts: 20});
@@ -1075,57 +1156,36 @@
     // Timestamp 4.
     var gmd4 = addGlobalMemoryDump(model, {ts: 40, levelOfDetail: DETAILED});
     var pmdBrowser4 = addProcessMemoryDump(gmd4, pBrowser, {ts: 40});
-    var pmdRendererA4 = addProcessMemoryDump(gmd4, pRendererA, {ts: 40});
-    pmdRendererA4.memoryAllocatorDumps = [
-      newAllocatorDump(pmdRendererA4, 'v8', {numerics: {
-        code_and_metadata_size: 21,
-        bytecode_and_metadata_size: 35
-      }})
-    ];
   }, undefined /* opt_options */, {
     'memory:unknown_browser:all_processes:dump_count:detailed': {
-      value: 3,
+      value: [3],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by an unknown ' +
           'browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count': {
-      value: 4,
+      value: [4],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by an unknown ' +
           'browser to the trace'
     },
     'memory:unknown_browser:all_processes:process_count': {
-      value: [4, 5, 4, 2],
+      value: [4, 4, 4, 1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all processes in an unknown browser'
     },
-    'memory:unknown_browser:all_processes:reported_by_chrome:code_and_metadata_size':
-        {
-          value: [16, 0, 21 + 35],
-          unit: sizeInBytes_smallerIsBetter,
-          description: 'total size of code and metadata reported by Chrome ' +
-              'for all processes in an unknown browser'
-        },
-    'memory:unknown_browser:all_processes:reported_by_chrome:v8:code_and_metadata_size':
-        {
-          value: [16, 0, 21 + 35],
-          unit: sizeInBytes_smallerIsBetter,
-          description: 'size of v8 code and metadata in all processes in an ' +
-              'unknown browser'
-        },
     'memory:unknown_browser:all_processes:reported_by_os:gpu_memory:proportional_resident_size':
         {
           value: [100 + 200, 3000 + 1000, 0],
@@ -1403,24 +1463,10 @@
               'in the GPU process in an unknown browser'
         },
     'memory:unknown_browser:renderer_processes:process_count': {
-      value: [2, 3, 2, 1],
+      value: [2, 2, 2, 0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of renderer processes in an unknown browser'
     },
-    'memory:unknown_browser:renderer_processes:reported_by_chrome:code_and_metadata_size':
-        {
-          value: [16, 0, 21 + 35],
-          unit: sizeInBytes_smallerIsBetter,
-          description: 'total size of code and metadata reported by Chrome ' +
-              'for renderer processes in an unknown browser'
-        },
-    'memory:unknown_browser:renderer_processes:reported_by_chrome:v8:code_and_metadata_size':
-        {
-          value: [16, 0, 21 + 35],
-          unit: sizeInBytes_smallerIsBetter,
-          description: 'size of v8 code and metadata in renderer processes ' +
-              'in an unknown browser'
-        },
     'memory:unknown_browser:renderer_processes:reported_by_os:private_dirty_size':
         {
           value: [17 + 34, 0, 0],
@@ -1524,25 +1570,25 @@
     ]);
   }, {} /* opt_options */, {
     'memory:chrome:all_processes:dump_count:detailed': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by Chrome ' +
           'to the trace'
     },
     'memory:chrome:all_processes:dump_count': {
-      value: 3,
+      value: [3],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome to the ' +
           'trace'
@@ -1848,25 +1894,25 @@
   }, undefined /* opt_options */, {
     // WebView (GMD1, GMD6).
     'memory:webview:all_processes:dump_count:detailed': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by WebView to ' +
           'the trace'
     },
     'memory:webview:all_processes:dump_count:background': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count': {
-      value: 3,
+      value: [3],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by WebView to the ' +
           'trace'
@@ -1883,7 +1929,7 @@
           'processes in WebView'
     },
     'memory:webview:all_processes:reported_by_chrome:code_and_metadata_size': {
-      value: [33554432],
+      value: [0, 33554432, 0],
       unit: sizeInBytes_smallerIsBetter,
       description: 'total size of code and metadata reported by Chrome for ' +
           'all processes in WebView'
@@ -1932,7 +1978,7 @@
     },
     'memory:webview:all_processes:reported_by_chrome:v8:code_and_metadata_size':
         {
-          value: [33554432],
+          value: [0, 33554432, 0],
           unit: sizeInBytes_smallerIsBetter,
           description: 'size of v8 code and metadata in all processes in ' +
               'WebView'
@@ -2038,7 +2084,7 @@
         },
     'memory:webview:browser_process:reported_by_chrome:code_and_metadata_size':
         {
-          value: [33554432],
+          value: [0, 33554432, 0],
           unit: sizeInBytes_smallerIsBetter,
           description: 'total size of code and metadata reported by Chrome ' +
               'for the browser process in WebView'
@@ -2088,7 +2134,7 @@
         },
     'memory:webview:browser_process:reported_by_chrome:v8:code_and_metadata_size':
         {
-          value: [33554432],
+          value: [0, 33554432, 0],
           unit: sizeInBytes_smallerIsBetter,
           description: 'size of v8 code and metadata in the browser process ' +
               'in WebView'
@@ -2178,25 +2224,25 @@
               'memtrack component in all processes in Chrome'
         },
     'memory:chrome:all_processes:dump_count:detailed': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:light': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:background': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by Chrome ' +
           'to the trace'
     },
     'memory:chrome:all_processes:dump_count': {
-      value: 3,
+      value: [3],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome to the ' +
           'trace'
@@ -2578,25 +2624,25 @@
 
     // Chrome 2 (GMD2, GMD7).
     'memory:chrome2:all_processes:dump_count:detailed': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome(2) ' +
           'to the trace'
     },
     'memory:chrome2:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome(2) to ' +
           'the trace'
     },
     'memory:chrome2:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by ' +
           'Chrome(2) to the trace'
     },
     'memory:chrome2:all_processes:dump_count': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome(2) to ' +
           'the trace'
@@ -2852,25 +2898,25 @@
 
     // Unknown browser (GMD5).
     'memory:unknown_browser:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by an unknown ' +
           'browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by an unknown ' +
           'browser to the trace'
@@ -2966,25 +3012,25 @@
     rangeOfInterest: tr.b.Range.fromExplicitRange(10, 20)
   }, {
     'memory:chrome:all_processes:dump_count': {
-      value: 3,
+      value: [3],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by Chrome to the ' +
           'trace'
     },
     'memory:chrome:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:light': {
-      value: 2,
+      value: [2],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by Chrome to ' +
           'the trace'
     },
     'memory:chrome:all_processes:dump_count:background': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by Chrome ' +
           'to the trace'
@@ -3001,25 +3047,25 @@
     },
 
     'memory:webview:all_processes:dump_count': {
-      value: 4,
+      value: [4],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by WebView to the ' +
           'trace'
     },
     'memory:webview:all_processes:dump_count:detailed': {
-      value: 3,
+      value: [3],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by WebView ' +
           'to the trace'
     },
     'memory:webview:all_processes:dump_count:light': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by WebView to ' +
           'the trace'
     },
     'memory:webview:all_processes:dump_count:background': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by WebView ' +
           'to the trace'
@@ -3172,25 +3218,25 @@
               'memory (RAM) used by the browser process in WebView'
         },
     'memory:unknown_browser:all_processes:dump_count': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of all memory dumps added by an unknown ' +
           'browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:detailed': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of detailed memory dumps added by an ' +
           'unknown browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:light': {
-      value: 1,
+      value: [1],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of light memory dumps added by an unknown ' +
           'browser to the trace'
     },
     'memory:unknown_browser:all_processes:dump_count:background': {
-      value: 0,
+      value: [0],
       unit: unitlessNumber_smallerIsBetter,
       description: 'total number of background memory dumps added by an ' +
           'unknown browser to the trace'
diff --git a/catapult/tracing/tracing/metrics/system_health/power_metric.html b/catapult/tracing/tracing/metrics/system_health/power_metric.html
index 20b1f9a..4913ef5 100644
--- a/catapult/tracing/tracing/metrics/system_health/power_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/power_metric.html
@@ -8,33 +8,34 @@
 <link rel="import" href="/tracing/base/statistics.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/metrics/system_health/clock_sync_latency_metric.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics.sh', function() {
 
-  var IDEAL_FRAME_RATE = 60;
-  var IDEAL_FRAME_DURATION = 1000 / IDEAL_FRAME_RATE;
+  var IDEAL_FRAME_RATE_FPS = 60;
+  var IDEAL_FRAME_DURATION_MS = tr.b.convertUnit(1.0 / IDEAL_FRAME_RATE_FPS,
+      tr.b.UnitScale.Metric.NONE, tr.b.UnitScale.Metric.MILLI);
 
   function energyConsumedPerFrame(valueList, model) {
-    var frameEnergyConsumed = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.energyInJoules_smallerIsBetter,
-        tr.b.Range.fromExplicitRange(0, .5), 20).build();
+    var frameEnergyConsumedInJ = new tr.v.Histogram('energy_consumed_per_frame',
+        tr.b.Unit.byName.energyInJoules_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createLinear(0, 0.5, 20));
+    frameEnergyConsumedInJ.description =
+      'Energy consumption per frame in joules';
+
     var frameStartTs = parseFloat(model.device.powerSeries.samples[0].start);
     while (model.device.powerSeries.getSamplesWithinRange(
-        frameStartTs, frameStartTs + IDEAL_FRAME_DURATION).length) {
-      var currentFrameEnergy = model.device.powerSeries.getEnergyConsumed(
-          frameStartTs, frameStartTs + IDEAL_FRAME_DURATION);
-      frameStartTs += IDEAL_FRAME_DURATION;
-      frameEnergyConsumed.add(currentFrameEnergy);
+        frameStartTs, frameStartTs + IDEAL_FRAME_DURATION_MS).length) {
+      var currentFrameEnergy = model.device.powerSeries.getEnergyConsumedInJ(
+          frameStartTs, frameStartTs + IDEAL_FRAME_DURATION_MS);
+      frameStartTs += IDEAL_FRAME_DURATION_MS;
+      frameEnergyConsumedInJ.addSample(currentFrameEnergy);
     }
 
-    valueList.addValue(new tr.v.NumericValue(
-        'energy_consumed_per_frame', frameEnergyConsumed,
-        {description: 'Energy consumption per frame in joules'}));
+    valueList.addHistogram(frameEnergyConsumedInJ);
   }
 
   function powerMetric(valueList, model) {
diff --git a/catapult/tracing/tracing/metrics/system_health/power_metric_test.html b/catapult/tracing/tracing/metrics/system_health/power_metric_test.html
index bdc034e..52b5714 100644
--- a/catapult/tracing/tracing/metrics/system_health/power_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/power_metric_test.html
@@ -29,8 +29,8 @@
     var powerEntries = valueSet.valueDicts.filter(
         (dict) => dict.name === 'energy_consumed_per_frame');
     var powerEntry = tr.b.getOnlyElement(powerEntries);
-    assert.equal(powerEntry.numeric.centralBins[0].count, 5);
-    assert.closeTo(powerEntry.numeric.running.sum, 0.0172, 1e-4);
+    assert.equal(powerEntry.centralBins[0].count, 5);
+    assert.closeTo(powerEntry.running.sum, 0.0172, 1e-4);
   });
 
   test('powerMetric_oneFrame', function() {
@@ -49,8 +49,8 @@
     var powerEntries = valueSet.valueDicts.filter(
         (dict) => dict.name === 'energy_consumed_per_frame');
     var powerEntry = tr.b.getOnlyElement(powerEntries);
-    assert.equal(powerEntry.numeric.centralBins[0].count, 1);
-    assert.closeTo(powerEntry.numeric.running.sum, 0.0011, 1e-4);
+    assert.equal(powerEntry.centralBins[0].count, 1);
+    assert.closeTo(powerEntry.running.sum, 0.0011, 1e-4);
   });
 
   test('powerMetric_noPowerSeries', function() {
diff --git a/catapult/tracing/tracing/metrics/system_health/rail_power_metric.html b/catapult/tracing/tracing/metrics/system_health/rail_power_metric.html
new file mode 100644
index 0000000..7c56134
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/rail_power_metric.html
@@ -0,0 +1,94 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/metrics/metric_registry.html">
+<link rel="import" href="/tracing/metrics/system_health/clock_sync_latency_metric.html">
+<link rel="import" href="/tracing/value/histogram.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.metrics.sh', function() {
+  function railPowerMetric(values, model) {
+    if (!model.device.powerSeries)
+      return;
+    var railStageToTimeHist = new Map();
+    var railStageToEnergyHist = new Map();
+    var railStageToPowerHist = new Map();
+
+    for (var exp of model.userModel.expectations) {
+      var currTitle = exp.title.toLowerCase().replace(' ', '_');
+      if (!railStageToTimeHist.has(currTitle)) {
+        var timeHist = new tr.v.Histogram('time:' + currTitle,
+            tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);
+        timeHist.description = 'Time spent in RAIL stage ' + currTitle;
+
+        var energyHist = new tr.v.Histogram('energy:' + currTitle,
+            tr.b.Unit.byName.energyInJoules_smallerIsBetter);
+        energyHist.description = 'Energy consumed by RAIL stage ' + currTitle;
+
+        var powerHist = new tr.v.Histogram('power:' + currTitle,
+            tr.b.Unit.byName.powerInWatts_smallerIsBetter);
+        powerHist.description =
+          'Energy consumption rate by RAIL stage ' + currTitle;
+
+        timeHist.customizeSummaryOptions({
+          avg: false,
+          count: false,
+          max: true,
+          min: true,
+          std: false,
+          sum: true,
+        });
+
+        energyHist.customizeSummaryOptions({
+          avg: false,
+          count: false,
+          max: true,
+          min: true,
+          std: false,
+          sum: true,
+        });
+
+        powerHist.customizeSummaryOptions({
+          avg: true,
+          count: false,
+          max: true,
+          min: true,
+          std: false,
+          sum: false,
+        });
+
+        railStageToTimeHist.set(currTitle, timeHist);
+        railStageToEnergyHist.set(currTitle, energyHist);
+        railStageToPowerHist.set(currTitle, powerHist);
+
+        values.addHistogram(timeHist);
+        values.addHistogram(energyHist);
+        values.addHistogram(powerHist);
+      }
+      var durationInMs = exp.duration;
+      var durationInS = tr.b.convertUnit(durationInMs,
+          tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
+      var energyInJ = model.device.powerSeries.getEnergyConsumedInJ(
+        exp.start, exp.end);
+      var powerInW = energyInJ / durationInS;
+
+      railStageToTimeHist.get(currTitle).addSample(durationInMs);
+      railStageToEnergyHist.get(currTitle).addSample(energyInJ);
+      railStageToPowerHist.get(currTitle).addSample(powerInW);
+    }
+  }
+
+  tr.metrics.MetricRegistry.register(railPowerMetric);
+
+  return {
+    railPowerMetric: railPowerMetric
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/rail_power_metric_test.html b/catapult/tracing/tracing/metrics/system_health/rail_power_metric_test.html
new file mode 100644
index 0000000..fec1691
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/rail_power_metric_test.html
@@ -0,0 +1,95 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/metrics/system_health/rail_power_metric.html">
+<link rel="import" href="/tracing/model/user_model/idle_expectation.html">
+<link rel="import" href="/tracing/model/user_model/load_expectation.html">
+<link rel="import" href="/tracing/value/value_set.html">
+
+<script>
+'use strict';
+
+function getMetricValueSum(values, name) {
+  for (var value of values)
+    if (value.name === name)
+      return value.sum;
+}
+
+function getMetricValueAvg(values, name) {
+  for (var value of values)
+    if (value.name === name)
+      return value.average;
+}
+
+tr.b.unittest.testSuite(function() {
+  test('railPowerMetric_oneStageEachType', function() {
+    var model = new tr.Model();
+    var valueSet = new tr.v.ValueSet();
+    model.device.powerSeries = new tr.model.PowerSeries(model.device);
+    for (var i = 0; i <= 1000; i++) {
+        model.device.powerSeries.addPowerSample(i.toString(), i.toString());
+    }
+    model.userModel.expectations.push(new tr.model.um.LoadExpectation(
+        model, tr.model.um.LOAD_SUBTYPE_NAMES.SUCCESSFUL, 0, 500));
+    model.userModel.expectations.push(new tr.model.um.IdleExpectation(
+        model, 500, 500));
+    tr.metrics.sh.railPowerMetric(valueSet, model);
+
+    assert.equal(getMetricValueSum(valueSet,
+        'time:successful_load'), 500);
+    assert.equal(getMetricValueSum(valueSet,
+        'time:idle'), 500);
+    assert.closeTo(getMetricValueSum(valueSet,
+        'energy:successful_load'), 125, 0.5);
+    assert.closeTo(getMetricValueSum(valueSet,
+        'energy:idle'), 375, 0.5);
+    assert.closeTo(getMetricValueAvg(valueSet,
+        'power:successful_load'), 250, 0.5);
+    assert.closeTo(getMetricValueAvg(valueSet,
+        'power:idle'), 750, 0.5);
+  });
+
+  test('railPowerMetric_multipleStagesEachType', function() {
+    var model = new tr.Model();
+    var valueSet = new tr.v.ValueSet();
+    model.device.powerSeries = new tr.model.PowerSeries(model.device);
+    for (var i = 0; i <= 1000; i++) {
+        model.device.powerSeries.addPowerSample(i.toString(), i.toString());
+    }
+    model.userModel.expectations.push(new tr.model.um.LoadExpectation(
+        model, tr.model.um.LOAD_SUBTYPE_NAMES.SUCCESSFUL, 0, 200));
+    model.userModel.expectations.push(new tr.model.um.IdleExpectation(
+        model, 200, 300));
+    model.userModel.expectations.push(new tr.model.um.LoadExpectation(
+        model, tr.model.um.LOAD_SUBTYPE_NAMES.SUCCESSFUL, 500, 200));
+    model.userModel.expectations.push(new tr.model.um.IdleExpectation(
+        model, 700, 300));
+    tr.metrics.sh.railPowerMetric(valueSet, model);
+
+    assert.equal(getMetricValueSum(valueSet,
+        'time:successful_load'), 400);
+    assert.equal(getMetricValueSum(valueSet,
+        'time:idle'), 600);
+    assert.closeTo(getMetricValueSum(valueSet,
+        'energy:successful_load'), 140, 0.5);
+    assert.closeTo(getMetricValueSum(valueSet,
+        'energy:idle'), 360, 0.5);
+    assert.closeTo(getMetricValueAvg(valueSet,
+        'power:successful_load'), 350, 0.5);
+    assert.closeTo(getMetricValueAvg(valueSet,
+        'power:idle'), 600, 0.5);
+  });
+
+  test('railPowerMetric_noPowerSeries', function() {
+    var model = new tr.Model();
+    var valueSet = new tr.v.ValueSet();
+    tr.metrics.sh.railPowerMetric(valueSet, model);
+    assert.lengthOf(valueSet, 0);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/responsiveness_metric.html b/catapult/tracing/tracing/metrics/system_health/responsiveness_metric.html
index d8dade4..a8d0882 100644
--- a/catapult/tracing/tracing/metrics/system_health/responsiveness_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/responsiveness_metric.html
@@ -11,8 +11,7 @@
 <link rel="import" href="/tracing/model/user_model/animation_expectation.html">
 <link rel="import" href="/tracing/model/user_model/load_expectation.html">
 <link rel="import" href="/tracing/model/user_model/response_expectation.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -34,8 +33,9 @@
       throw new Error('Animation missing frameEvents ' +
                       animationExpectation.stableId);
 
-    var durationSeconds = animationExpectation.duration / 1000;
-    return animationExpectation.frameEvents.length / durationSeconds;
+    var durationInS = tr.b.convertUnit(animationExpectation.duration,
+        tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
+    return animationExpectation.frameEvents.length / durationInS;
   }
 
   function computeAnimationframeTimeDiscrepancy(animationExpectation) {
@@ -49,39 +49,30 @@
       return event.start;
     });
 
-    var absolute = false;
+    var absolute = true;
     return tr.b.Statistics.timestampsDiscrepancy(frameTimestamps, absolute);
   }
 
-  var RESPONSE_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(100, 1000), 90);
-
-  var THROUGHPUT_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.unitlessNumber_biggerIsBetter,
-      tr.b.Range.fromExplicitRange(10, 60), 10);
-
-  var DISCREPANCY_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(0, 1), 50);
-
-  var LATENCY_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(0, 300), 60);
-
   /**
    * @param {!tr.v.ValueSet} values
    * @param {!tr.model.Model} model
    * @param {!Object=} opt_options
    */
   function responsivenessMetric(values, model, opt_options) {
-    // TODO(benjhayden): Add categories to benchmark to support:
-    // tr.metrics.sh.loadingMetric(values, model);
-
-    var responseNumeric = RESPONSE_NUMERIC_BUILDER.build();
-    var throughputNumeric = THROUGHPUT_NUMERIC_BUILDER.build();
-    var frameTimeDiscrepancyNumeric = DISCREPANCY_NUMERIC_BUILDER.build();
-    var latencyNumeric = LATENCY_NUMERIC_BUILDER.build();
+    var responseNumeric = new tr.v.Histogram('response latency',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createLinear(100, 1e3, 50));
+    var throughputNumeric = new tr.v.Histogram('animation throughput',
+        tr.b.Unit.byName.unitlessNumber_biggerIsBetter,
+        tr.v.HistogramBinBoundaries.createLinear(10, 60, 10));
+    var frameTimeDiscrepancyNumeric = new tr.v.Histogram(
+        'animation frameTimeDiscrepancy',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createLinear(0, 1e3, 50).
+          addExponentialBins(1e4, 10));
+    var latencyNumeric = new tr.v.Histogram('animation latency',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createLinear(0, 300, 60));
 
     model.userModel.expectations.forEach(function(ue) {
       if (opt_options && opt_options.rangeOfInterest &&
@@ -89,9 +80,8 @@
             ue.start, ue.end))
         return;
 
-      var sampleDiagnostic = new tr.v.d.RelatedEventSet([ue]);
-      var sampleDiagnosticMap =
-          new tr.v.d.DiagnosticMap({relatedEvents: sampleDiagnostic});
+      var sampleDiagnosticMap = tr.v.d.DiagnosticMap.fromObject(
+          {relatedEvents: new tr.v.d.RelatedEventSet([ue])});
 
       // Responsiveness is not defined for Idle or Startup expectations.
       if (ue instanceof tr.model.um.IdleExpectation) {
@@ -101,7 +91,7 @@
       } else if (ue instanceof tr.model.um.LoadExpectation) {
         // This is already covered by loadingMetric.
       } else if (ue instanceof tr.model.um.ResponseExpectation) {
-        responseNumeric.add(ue.duration, sampleDiagnosticMap);
+        responseNumeric.addSample(ue.duration, sampleDiagnosticMap);
       } else if (ue instanceof tr.model.um.AnimationExpectation) {
         if (ue.frameEvents === undefined || ue.frameEvents.length === 0) {
           // Ignore animation stages that do not have associated frames:
@@ -113,21 +103,21 @@
           throw new Error('Missing throughput for ' +
                           ue.stableId);
 
-        throughputNumeric.add(throughput, sampleDiagnosticMap);
+        throughputNumeric.addSample(throughput, sampleDiagnosticMap);
 
         var frameTimeDiscrepancy = computeAnimationframeTimeDiscrepancy(ue);
         if (frameTimeDiscrepancy === undefined)
           throw new Error('Missing frameTimeDiscrepancy for ' +
                           ue.stableId);
 
-        frameTimeDiscrepancyNumeric.add(frameTimeDiscrepancy,
-                                        sampleDiagnosticMap);
+        frameTimeDiscrepancyNumeric.addSample(
+            frameTimeDiscrepancy, sampleDiagnosticMap);
 
         ue.associatedEvents.forEach(function(event) {
           if (!(event instanceof tr.e.cc.InputLatencyAsyncSlice))
             return;
 
-          latencyNumeric.add(event.duration, sampleDiagnosticMap);
+          latencyNumeric.addSample(event.duration, sampleDiagnosticMap);
         });
       } else {
         throw new Error('Unrecognized stage for ' + ue.stableId);
@@ -146,15 +136,10 @@
       });
     });
 
-    values.addValue(new tr.v.NumericValue(
-        'response latency', responseNumeric));
-    values.addValue(new tr.v.NumericValue(
-        'animation throughput', throughputNumeric));
-    values.addValue(new tr.v.NumericValue(
-        'animation frameTimeDiscrepancy',
-        frameTimeDiscrepancyNumeric));
-    values.addValue(new tr.v.NumericValue(
-        'animation latency', latencyNumeric));
+    values.addHistogram(responseNumeric);
+    values.addHistogram(throughputNumeric);
+    values.addHistogram(frameTimeDiscrepancyNumeric);
+    values.addHistogram(latencyNumeric);
   }
 
   tr.metrics.MetricRegistry.register(responsivenessMetric, {
diff --git a/catapult/tracing/tracing/metrics/system_health/responsiveness_metric_test.html b/catapult/tracing/tracing/metrics/system_health/responsiveness_metric_test.html
index cb3f063..ed2d334 100644
--- a/catapult/tracing/tracing/metrics/system_health/responsiveness_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/responsiveness_metric_test.html
@@ -53,22 +53,18 @@
     var model = createModel([[]]);
     var valueList = new tr.v.ValueSet();
     tr.metrics.sh.responsivenessMetric(valueList, model);
-    var result = {};
-    valueList.valueDicts.forEach(function(value) {
-      result[value.name] = value.numeric.value;
-    });
-    assert.strictEqual(result['animation throughput_avg'], undefined);
+    var value = tr.b.getOnlyElement(valueList.getValuesNamed(
+        'animation throughput'));
+    assert.strictEqual(value.numValues, 0);
   });
 
   test('animationThroughputFramesAndNoFrames', function() {
     var model = createModel([[0, 100], []]);
     var valueList = new tr.v.ValueSet();
     tr.metrics.sh.responsivenessMetric(valueList, model);
-    var result = {};
-    valueList.valueDicts.forEach(function(value) {
-      result[value.name] = value.numeric.value;
-    });
-    assert.strictEqual(result['animation throughput_avg'], 20);
+    var value = tr.b.getOnlyElement(valueList.getValuesNamed(
+        'animation throughput'));
+    assert.strictEqual(value.average, 20);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/system_health/scroll_power_metric.html b/catapult/tracing/tracing/metrics/system_health/scroll_power_metric.html
new file mode 100644
index 0000000..a070ba3
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/scroll_power_metric.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/metrics/metric_registry.html">
+<link rel="import" href="/tracing/value/histogram.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.metrics.sh', function() {
+  function scrollPowerMetric(values, model) {
+    if (!model.device.powerSeries)
+      return;
+    var timeHist = new tr.v.Histogram('time:scroll',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter)
+    timeHist.description = 'Time spent in scrolling';
+    var energyHist = new tr.v.Histogram('energy:scroll',
+        tr.b.Unit.byName.energyInJoules_smallerIsBetter)
+    energyHist.description = 'Energy consumed by scrolling';
+    var powerHist = new tr.v.Histogram('power:scroll',
+        tr.b.Unit.byName.powerInWatts_smallerIsBetter)
+    powerHist.description = 'Energy consumption rate in scrolling';
+
+    timeHist.customizeSummaryOptions({
+      avg: false,
+      count: false,
+      max: true,
+      min: true,
+      std: false,
+      sum: true,
+    });
+
+    energyHist.customizeSummaryOptions({
+      avg: false,
+      count: false,
+      max: true,
+      min: true,
+      std: false,
+      sum: true,
+    });
+
+    powerHist.customizeSummaryOptions({
+      avg: true,
+      count: false,
+      max: true,
+      min: true,
+      std: false,
+      sum: false,
+    });
+
+    for (var exp of model.userModel.expectations) {
+      if (exp.title.indexOf("Scroll") !== -1) {
+        var durationInMs = exp.duration;
+        var durationInS = tr.b.convertUnit(durationInMs,
+            tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
+        var energyInJ = model.device.powerSeries.getEnergyConsumedInJ(
+          exp.start, exp.end);
+        var powerInW = energyInJ / durationInS;
+
+        timeHist.addSample(durationInMs);
+        energyHist.addSample(energyInJ);
+        powerHist.addSample(powerInW);
+      }
+    }
+
+    values.addHistogram(timeHist);
+    values.addHistogram(energyHist);
+    values.addHistogram(powerHist);
+  }
+
+  tr.metrics.MetricRegistry.register(scrollPowerMetric);
+
+  return {
+    scrollPowerMetric: scrollPowerMetric
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/scroll_power_metric_test.html b/catapult/tracing/tracing/metrics/system_health/scroll_power_metric_test.html
new file mode 100644
index 0000000..b12c675
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/scroll_power_metric_test.html
@@ -0,0 +1,85 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/metrics/system_health/scroll_power_metric.html">
+<link rel="import" href="/tracing/model/user_model/idle_expectation.html">
+<link rel="import" href="/tracing/model/user_model/load_expectation.html">
+<link rel="import" href="/tracing/value/value_set.html">
+
+<script>
+'use strict';
+
+function getMetricValueSum(values, name) {
+  for (var value of values)
+    if (value.name === name)
+      return value.sum;
+}
+
+function getMetricValueAvg(values, name) {
+  for (var value of values)
+    if (value.name === name)
+      return value.average;
+}
+
+tr.b.unittest.testSuite(function() {
+  test('railPowerMetric_oneStageEachType', function() {
+    var model = new tr.Model();
+    var valueSet = new tr.v.ValueSet();
+    model.device.powerSeries = new tr.model.PowerSeries(model.device);
+    for (var i = 0; i <= 1000; i++) {
+        model.device.powerSeries.addPowerSample(i.toString(), i.toString());
+    }
+    model.userModel.expectations.push(new tr.model.um.AnimationExpectation(
+        model, "Scroll", 0, 500));
+    model.userModel.expectations.push(new tr.model.um.IdleExpectation(
+        model, 500, 500));
+    tr.metrics.sh.scrollPowerMetric(valueSet, model);
+
+    assert.equal(getMetricValueSum(valueSet,
+        'time:scroll'), 500);
+    assert.closeTo(getMetricValueSum(valueSet,
+        'energy:scroll'), 125, 0.5);
+    assert.closeTo(getMetricValueAvg(valueSet,
+        'power:scroll'), 250, 0.5);
+  });
+
+  test('railPowerMetric_multipleStagesEachType', function() {
+    var model = new tr.Model();
+    var valueSet = new tr.v.ValueSet();
+    model.device.powerSeries = new tr.model.PowerSeries(model.device);
+    for (var i = 0; i <= 1000; i++) {
+        model.device.powerSeries.addPowerSample(i.toString(), i.toString());
+    }
+    model.userModel.expectations.push(new tr.model.um.AnimationExpectation(
+        model, "Scroll", 0, 200));
+    model.userModel.expectations.push(new tr.model.um.IdleExpectation(
+        model, 200, 300));
+    model.userModel.expectations.push(new tr.model.um.AnimationExpectation(
+        model, "Touch, Scroll, Tap", 500, 200));
+    model.userModel.expectations.push(new tr.model.um.IdleExpectation(
+        model, 700, 300));
+    tr.metrics.sh.scrollPowerMetric(valueSet, model);
+
+    assert.equal(getMetricValueSum(valueSet,
+        'time:scroll'), 400);
+    assert.closeTo(getMetricValueSum(valueSet,
+        'energy:scroll'), 140, 0.5);
+    assert.closeTo(getMetricValueAvg(valueSet,
+        'power:scroll'), 350, 0.5);
+  });
+
+  test('railPowerMetric_noPowerSeries', function() {
+    var model = new tr.Model();
+    var valueSet = new tr.v.ValueSet();
+    tr.metrics.sh.scrollPowerMetric(valueSet, model);
+    var powerEntries = valueSet.valueDicts.filter(
+        (dict) => dict.name.indexOf('time:') === 0);
+    assert.lengthOf(powerEntries, 0);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/system_health_metrics.html b/catapult/tracing/tracing/metrics/system_health/system_health_metrics.html
index 723e526..dfc2364 100644
--- a/catapult/tracing/tracing/metrics/system_health/system_health_metrics.html
+++ b/catapult/tracing/tracing/metrics/system_health/system_health_metrics.html
@@ -5,7 +5,7 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/metrics/system_health/efficiency_metric.html">
+<link rel="import" href="/tracing/metrics/system_health/cpu_time_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/hazard_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/long_tasks_metric.html">
 <link rel="import" href="/tracing/metrics/system_health/power_metric.html"
@@ -18,10 +18,10 @@
 tr.exportTo('tr.metrics.sh', function() {
   function systemHealthMetrics(values, model) {
     tr.metrics.sh.responsivenessMetric(values, model);
-    tr.metrics.sh.efficiencyMetric(values, model);
     tr.metrics.sh.longTasksMetric(values, model);
     tr.metrics.sh.hazardMetric(values, model);
     tr.metrics.sh.powerMetric(values, model);
+    tr.metrics.sh.cpuTimeMetric(values, model);
   }
 
   tr.metrics.MetricRegistry.register(systemHealthMetrics);
diff --git a/catapult/tracing/tracing/metrics/system_health/tti_power_metric.html b/catapult/tracing/tracing/metrics/system_health/tti_power_metric.html
new file mode 100644
index 0000000..d026639
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/tti_power_metric.html
@@ -0,0 +1,98 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/metrics/metric_registry.html">
+<link rel="import" href="/tracing/metrics/system_health/loading_metric.html">
+<link rel="import" href="/tracing/value/numeric.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.metrics.sh', function() {
+
+  /*
+  * Call the functions in loading_metric.html to get the TTI intervals.
+  * "TTI interval" here means the interval between the start of the
+  * LoadExpectation (i.e. navigation start) and time to interactive.
+  * A trace can have multiple TTI intervals in the case that there are
+  * multiple page loads (e.g. a browsing story where the user switches
+  * between multiple pages)
+  */
+
+  function getNavigationTTIIntervals(model) {
+    // TODO(alexandermont): When LoadExpectation v.1.0 is released,
+    // update this function to use the new LoadExpectation rather
+    // than calling loading_metric.html.
+
+    var values = new tr.v.ValueSet();
+    tr.metrics.sh.loadingMetric(values, model);
+    var ttiValues = values.getValuesNamed('timeToFirstInteractive');
+    var intervals = [];
+    for (var bin of tr.b.getOnlyElement(ttiValues).allBins)
+      for (var diagnostics of bin.diagnosticMaps) {
+        var info = diagnostics.get('Navigation infos');
+        intervals.push(tr.b.Range.fromExplicitRange(
+            info.value.start, info.value.interactive));
+      }
+    return intervals.sort((x, y) => x.min - y.min);
+  }
+
+  function ttiPowerMetric(values, model) {
+    if (!model.device.powerSeries)
+      return;
+
+    var intervals = getNavigationTTIIntervals(model);
+    var lastLoadTime = 0;
+    var loadHistogram = new tr.v.Histogram('energy:load',
+        tr.b.Unit.byName.energyInJoules_smallerIsBetter);
+    loadHistogram.description = 'Energy consumed in page loads';
+    loadHistogram.customizeSummaryOptions({
+        avg: false,
+        count: false,
+        max: false,
+        min: false,
+        std: false,
+        sum: true,
+    });
+    for (var interval of intervals) {
+      var energyInJ = model.device.powerSeries.getEnergyConsumedInJ(
+        interval.min, interval.max);
+      loadHistogram.addSample(energyInJ);
+      lastLoadTime = interval.max;
+    }
+    values.addHistogram(loadHistogram);
+    var afterLoadEnergyInJ = model.device.powerSeries.getEnergyConsumedInJ(
+        lastLoadTime, model.bounds.max);
+    var afterLoadTimeInMs = model.bounds.max - lastLoadTime;
+    var afterLoadTimeInS = tr.b.convertUnit(afterLoadTimeInMs,
+        tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
+    var afterLoadPowerInW = afterLoadEnergyInJ / afterLoadTimeInS;
+    var afterLoadHistogram = new tr.v.Histogram('power:after_load',
+        tr.b.Unit.byName.powerInWatts_smallerIsBetter);
+    afterLoadHistogram.description = 'Average power after load';
+    afterLoadHistogram.customizeSummaryOptions({
+        avg: false,
+        count: false,
+        max: false,
+        min: false,
+        std: false,
+        sum: false,
+    });
+    afterLoadHistogram.addSample(afterLoadPowerInW);
+    values.addHistogram(afterLoadHistogram);
+  }
+
+  tr.metrics.MetricRegistry.register(ttiPowerMetric);
+
+  return {
+    ttiPowerMetric: ttiPowerMetric
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/tti_power_metric_test.html b/catapult/tracing/tracing/metrics/system_health/tti_power_metric_test.html
new file mode 100644
index 0000000..c8ea6f1
--- /dev/null
+++ b/catapult/tracing/tracing/metrics/system_health/tti_power_metric_test.html
@@ -0,0 +1,104 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/metrics/system_health/tti_power_metric.html">
+<link rel="import" href="/tracing/value/value_set.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+
+  test('ttiPowerMetric_oneInterval', function() {
+    // Interval of load is [200, 15400].
+    // Trace goes until 22150.
+    var model = tr.c.TestUtils.newModel(function(model) {
+      var rendererProcess = model.getOrCreateProcess(1984);
+      var mainThread = rendererProcess.getOrCreateThread(2);
+      mainThread.name = 'CrRendererMain';
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'blink.user_timing',
+        title: 'navigationStart',
+        start: 200,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+      rendererProcess.objects.addSnapshot('ptr', 'loading', 'FrameLoader', 300,
+          {isLoadingMainFrame: true, frame: {id_ref: '0xdeadbeef'},
+            documentLoaderURL: 'http://example.com'});
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
+        start: 9180,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'loading',
+        title: 'firstMeaningfulPaintCandidate',
+        start: 9200,
+        duration: 0.0,
+        args: {frame: '0xdeadbeef'}
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 9350,
+        duration: 100,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 11150,
+        duration: 100,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 12550,
+        duration: 100,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 14950,
+        duration: 500,
+      }));
+
+      mainThread.sliceGroup.pushSlice(tr.c.TestUtils.newSliceEx({
+        cat: 'toplevel',
+        title: 'TaskQueueManager::ProcessTaskFromWorkQueue',
+        start: 22150,
+        duration: 10,
+      }));
+
+      model.device.powerSeries = new tr.model.PowerSeries(model.device);
+      for (var i = 0; i <= 15400; i++)
+        model.device.powerSeries.addPowerSample(i.toString(), '20');
+      for (var i = 15401; i <= 22160; i++)
+        model.device.powerSeries.addPowerSample(i.toString(), '10');
+    });
+
+  var valueSet = new tr.v.ValueSet();
+  tr.metrics.sh.ttiPowerMetric(valueSet, model);
+
+  // Energy for first load is 20 W * 15.2 s
+  // (interval from 0.2 s to 15.4 s)
+  assert.closeTo(tr.b.getOnlyElement(valueSet.getValuesNamed(
+      'energy:load')).average, 304, 0.1);
+  assert.closeTo(tr.b.getOnlyElement(valueSet.getValuesNamed(
+      'power:after_load')).average, 10, 0.01);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/metrics/system_health/webview_startup_metric.html b/catapult/tracing/tracing/metrics/system_health/webview_startup_metric.html
index 361ba0d..7d47baf 100644
--- a/catapult/tracing/tracing/metrics/system_health/webview_startup_metric.html
+++ b/catapult/tracing/tracing/metrics/system_health/webview_startup_metric.html
@@ -7,53 +7,54 @@
 
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/metrics/system_health/utils.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics.sh', function() {
   function webviewStartupMetric(values, model) {
+    var startupWallHist = new tr.v.Histogram('webview_startup_wall_time',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);
+    startupWallHist.description = 'WebView startup wall time';
+    var startupCPUHist = new tr.v.Histogram('webview_startup_cpu_time',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);
+    startupCPUHist.description = 'WebView startup CPU time';
+    var loadWallHist = new tr.v.Histogram('webview_url_load_wall_time',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);
+    loadWallHist.description = 'WebView blank URL load wall time';
+    var loadCPUHist = new tr.v.Histogram('webview_url_load_cpu_time',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter);
+    loadCPUHist.description = 'WebView blank URL load CPU time';
+
+    // TODO(alexandermont): Only iterate over the processes and threads that
+    // could contain these events.
     for (var slice of model.getDescendantEvents()) {
+      if (!(slice instanceof tr.model.ThreadSlice))
+        continue;
+
       // WebViewStartupInterval is the title of the section of code that is
       // entered (via android.os.Trace.beginSection) when WebView is started
       // up. This value is defined in TelemetryActivity.java.
-      if (!(slice instanceof tr.model.Slice))
-        continue;
       if (slice.title === 'WebViewStartupInterval') {
-        values.addValue(new tr.v.NumericValue(
-            'webview_startup_wall_time',
-            new tr.v.ScalarNumeric(
-                tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-                slice.duration),
-            { description: 'WebView startup wall time' }));
-        values.addValue(new tr.v.NumericValue(
-            'webview_startup_cpu_time',
-            new tr.v.ScalarNumeric(
-                tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-                slice.cpuDuration),
-            { description: 'WebView startup CPU time' }));
+        startupWallHist.addSample(slice.duration);
+        startupCPUHist.addSample(slice.cpuDuration);
       }
+
       // WebViewBlankUrlLoadInterval is the title of the section of code
       // that is entered (via android.os.Trace.beginSection) when WebView
       // is started up. This value is defined in TelemetryActivity.java.
       if (slice.title === 'WebViewBlankUrlLoadInterval') {
-        values.addValue(new tr.v.NumericValue(
-            'webview_url_load_wall_time',
-            new tr.v.ScalarNumeric(
-                tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-                slice.duration),
-            { description: 'WebView blank URL load wall time' }));
-        values.addValue(new tr.v.NumericValue(
-            'webview_url_load_cpu_time',
-            new tr.v.ScalarNumeric(
-                tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-                slice.cpuDuration),
-            { description: 'WebView blank URL load CPU time' }));
+        loadWallHist.addSample(slice.duration);
+        loadCPUHist.addSample(slice.cpuDuration);
       }
     }
-  };
+
+    values.addHistogram(startupWallHist);
+    values.addHistogram(startupCPUHist);
+    values.addHistogram(loadWallHist);
+    values.addHistogram(loadCPUHist);
+  }
 
   tr.metrics.MetricRegistry.register(webviewStartupMetric);
 
diff --git a/catapult/tracing/tracing/metrics/system_health/webview_startup_metric_test.html b/catapult/tracing/tracing/metrics/system_health/webview_startup_metric_test.html
index fa4da09..ace1b31 100644
--- a/catapult/tracing/tracing/metrics/system_health/webview_startup_metric_test.html
+++ b/catapult/tracing/tracing/metrics/system_health/webview_startup_metric_test.html
@@ -35,34 +35,17 @@
 }
 
 tr.b.unittest.testSuite(function() {
-  test('webviewStartupMetric_allIntervals', function() {
+  test('webviewStartupMetric', function() {
     var values = new tr.v.ValueSet();
     tr.metrics.sh.webviewStartupMetric(values, makeTestModel());
-    assert.lengthOf(values.valueDicts, 4);
-  });
-
-  test('webviewStartupMetric_startupWallInterval', function() {
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.webviewStartupMetric(values, makeTestModel());
-    assert.equal(values.valueDicts[0].numeric.value, 42);
-  });
-
-  test('webviewStartupMetric_startupCpuInterval', function() {
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.webviewStartupMetric(values, makeTestModel());
-    assert.equal(values.valueDicts[1].numeric.value, 32);
-  });
-
-  test('webviewStartupMetric_urlLoadWallInterval', function() {
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.webviewStartupMetric(values, makeTestModel());
-    assert.equal(values.valueDicts[2].numeric.value, 27);
-  });
-
-  test('webviewStartupMetric_urlLoadCpuInterval', function() {
-    var values = new tr.v.ValueSet();
-    tr.metrics.sh.webviewStartupMetric(values, makeTestModel());
-    assert.equal(values.valueDicts[3].numeric.value, 17);
+    assert.closeTo(42, values.getValuesNamed(
+        'webview_startup_wall_time')[0].average, 1e-2);
+    assert.closeTo(32, values.getValuesNamed(
+        'webview_startup_cpu_time')[0].average, 1e-2);
+    assert.closeTo(27, values.getValuesNamed(
+        'webview_url_load_wall_time')[0].average, 1e-2);
+    assert.closeTo(17, values.getValuesNamed(
+        'webview_url_load_cpu_time')[0].average, 1e-2);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/tracing_metric.html b/catapult/tracing/tracing/metrics/tracing_metric.html
index f47020e..40e6496 100644
--- a/catapult/tracing/tracing/metrics/tracing_metric.html
+++ b/catapult/tracing/tracing/metrics/tracing_metric.html
@@ -7,8 +7,8 @@
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -16,11 +16,20 @@
 tr.exportTo('tr.metrics', function() {
   var MEMORY_INFRA_TRACING_CATEGORY = 'disabled-by-default-memory-infra';
 
+  var TIME_BOUNDARIES = tr.v.HistogramBinBoundaries.createExponential(
+      1e-3, 1e5, 30);
+
+  var BYTE_BOUNDARIES = tr.v.HistogramBinBoundaries.createExponential(
+      1, 1e9, 30);
+
+  var COUNT_BOUNDARIES = tr.v.HistogramBinBoundaries.createExponential(
+      1, 1e5, 30);
+
   function addTimeDurationValue(valueName, duration, allValues) {
-    var scalarNumericValue = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.timeDurationInMs_smallerIsBetter, duration);
-    var numericValue = new tr.v.NumericValue(valueName, scalarNumericValue);
-    allValues.addValue(numericValue);
+    var hist = new tr.v.Histogram(valueName,
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TIME_BOUNDARIES);
+    hist.addSample(duration);
+    allValues.addHistogram(hist);
   }
 
   // Adds values specific to memory-infra dumps.
@@ -42,8 +51,13 @@
             nonMemoryInfraThreadOverhead += slice.duration;
           if (slice.args && slice.args['dump_provider.name']) {
             var providerName = slice.args['dump_provider.name'];
-            overheadByProvider[providerName] =
-                (overheadByProvider[providerName] || 0) + slice.duration;
+            var durationAndCount = overheadByProvider[providerName];
+            if (durationAndCount === undefined) {
+              overheadByProvider[providerName] = durationAndCount =
+                  {duration: 0, count: 0};
+            }
+            durationAndCount.duration += slice.duration;
+            durationAndCount.count++;
           }
         });
       });
@@ -58,24 +72,23 @@
         nonMemoryInfraThreadOverhead / memoryDumpCount, values);
     tr.b.iterItems(overheadByProvider, function(providerName, overhead) {
       addTimeDurationValue(
-          'Average CPU overhead of ' + providerName + ' per memory-infra dump',
-          overhead / memoryDumpCount, values);
+          'Average CPU overhead of ' + providerName + ' per OnMemoryDump call',
+          overhead.duration / overhead.count, values);
     });
 
     var memoryInfraEventsSize =
         categoryNamesToTotalEventSizes.get(MEMORY_INFRA_TRACING_CATEGORY);
-    var memoryInfraTraceBytesValue = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, memoryInfraEventsSize);
-    values.addValue(new tr.v.NumericValue(
+    var memoryInfraTraceBytesValue = new tr.v.Histogram(
         'Total trace size of memory-infra dumps in bytes',
-        memoryInfraTraceBytesValue));
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, BYTE_BOUNDARIES);
+    memoryInfraTraceBytesValue.addSample(memoryInfraEventsSize);
+    values.addHistogram(memoryInfraTraceBytesValue);
 
-    var traceBytesPerDumpValue = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter,
-        memoryInfraEventsSize / memoryDumpCount);
-    values.addValue(new tr.v.NumericValue(
+    var traceBytesPerDumpValue = new tr.v.Histogram(
         'Average trace size of memory-infra dumps in bytes',
-        traceBytesPerDumpValue));
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, BYTE_BOUNDARIES);
+    traceBytesPerDumpValue.addSample(memoryInfraEventsSize / memoryDumpCount);
+    values.addHistogram(traceBytesPerDumpValue);
   }
 
   function tracingMetric(values, model) {
@@ -145,35 +158,36 @@
     var maxEventBytesPerCategory = maxCatNameAndBytes[1];
     var categoryWithMaxEventBytes = maxCatNameAndBytes[0];
 
-    var maxEventCountPerSecValue = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter, maxEventCountPerSec);
-    var maxEventBytesPerSecValue = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, maxEventBytesPerSec);
-    var totalTraceBytesValue = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, totalTraceBytes);
+    var maxEventCountPerSecValue = new tr.v.Histogram(
+        'Max number of events per second',
+      tr.b.Unit.byName.count_smallerIsBetter, COUNT_BOUNDARIES);
+    maxEventCountPerSecValue.addSample(maxEventCountPerSec);
+
+    var maxEventBytesPerSecValue = new tr.v.Histogram(
+        'Max event size in bytes per second',
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, BYTE_BOUNDARIES);
+    maxEventBytesPerSecValue.addSample(maxEventBytesPerSec);
+
+    var totalTraceBytesValue = new tr.v.Histogram('Total trace size in bytes',
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, BYTE_BOUNDARIES);
+    totalTraceBytesValue.addSample(totalTraceBytes);
 
     var biggestCategory = {
       name: categoryWithMaxEventBytes,
       size_in_bytes: maxEventBytesPerCategory
     };
 
-    var totalBytes = new tr.v.NumericValue(
-        'Total trace size in bytes', totalTraceBytesValue);
-    totalBytes.diagnostics.add(
+    totalTraceBytesValue.diagnostics.set(
         'category_with_max_event_size', new tr.v.d.Generic(biggestCategory));
-    values.addValue(totalBytes);
+    values.addHistogram(totalTraceBytesValue);
 
-    var peakEvents = new tr.v.NumericValue(
-        'Max number of events per second', maxEventCountPerSecValue);
-    peakEvents.diagnostics.add(
+    maxEventCountPerSecValue.diagnostics.set(
         'category_with_max_event_size', new tr.v.d.Generic(biggestCategory));
-    values.addValue(peakEvents);
+    values.addHistogram(maxEventCountPerSecValue);
 
-    var peakBytes = new tr.v.NumericValue(
-        'Max event size in bytes per second', maxEventBytesPerSecValue);
-    peakBytes.diagnostics.add(
+    maxEventBytesPerSecValue.diagnostics.set(
         'category_with_max_event_size', new tr.v.d.Generic(biggestCategory));
-    values.addValue(peakBytes);
+    values.addHistogram(maxEventBytesPerSecValue);
 
     addMemoryInfraValues(values, model, categoryNamesToTotalEventSizes);
   }
diff --git a/catapult/tracing/tracing/metrics/tracing_metric_test.html b/catapult/tracing/tracing/metrics/tracing_metric_test.html
index 183fc9c..2f12316 100644
--- a/catapult/tracing/tracing/metrics/tracing_metric_test.html
+++ b/catapult/tracing/tracing/metrics/tracing_metric_test.html
@@ -29,9 +29,8 @@
   }
 
   function checkDurationValue(allValues, metricName, expected) {
-    var values = allValues.getValuesWithName(metricName);
-    assert.lengthOf(values, 1);
-    assert.closeTo(1000 * values[0].numeric.value, expected, 0.1);
+    var value = tr.b.getOnlyElement(allValues.getValuesNamed(metricName));
+    assert.closeTo(1000 * value.average, expected, 0.1);
   }
 
   test('hasEventSizesInBytes', function() {
@@ -62,9 +61,9 @@
     tr.metrics.tracingMetric(allValues, model);
 
     var eventStringSize = getEventStringSize(events, [0, 1]);
-    var values = allValues.getValuesWithName('Total trace size in bytes');
-    assert.strictEqual(values.length, 1);
-    assert.strictEqual(values[0].numeric.value, eventStringSize);
+    var value = tr.b.getOnlyElement(allValues.getValuesNamed(
+        'Total trace size in bytes'));
+    assert.strictEqual(value.average, eventStringSize);
   });
 
   test('maxValuePerSec', function() {
@@ -82,15 +81,14 @@
     tr.metrics.tracingMetric(allValues, model);
 
     var maxEventCountPerSec = 3;
-    var values = allValues.getValuesWithName('Max number of events per second');
-    assert.strictEqual(values.length, 1);
-    assert.strictEqual(values[0].numeric.value, maxEventCountPerSec);
+    var value = tr.b.getOnlyElement(allValues.getValuesNamed(
+        'Max number of events per second'));
+    assert.strictEqual(value.average, maxEventCountPerSec);
 
     var maxEventBytesPerSec = getEventStringSize(events, [2, 3, 5]);
-    var values = allValues.getValuesWithName(
-        'Max event size in bytes per second');
-    assert.strictEqual(values.length, 1);
-    assert.strictEqual(values[0].numeric.value, maxEventBytesPerSec);
+    value = tr.b.getOnlyElement(allValues.getValuesNamed(
+        'Max event size in bytes per second'));
+    assert.strictEqual(value.average, maxEventBytesPerSec);
   });
 
   test('diagnostics', function() {
@@ -105,13 +103,11 @@
     var model = makeModel(JSON.stringify(events), true);
     tr.metrics.tracingMetric(allValues, model);
 
-    for (var i = 0; i < allValues.length; i++) {
-      assert.strictEqual(
-          values[i].diagnostics.category_with_max_event_size.name,
-          'foo');
-      assert.strictEqual(
-          values[i].diagnostics.category_with_max_event_size.size_in_bytes,
-          getEventStringSize(events, [0, 1, 3]));
+    for (var value of allValues) {
+      var d = value.diagnostics.get('category_with_max_event_size').value;
+      assert.strictEqual(d.name, 'foo');
+      assert.strictEqual(d.size_in_bytes, getEventStringSize(
+          events, [0, 1, 3]));
     }
   });
 
@@ -143,23 +139,21 @@
     var memoryCategorySize = events.filter(
         slice => slice['cat'] === MEMORY_INFRA_TRACING_CATEGORY).reduce(
             (acc, slice) => acc + JSON.stringify(slice).length, 0);
-    var totalSizeValue = allValues.getValuesWithName(
-        'Total trace size of memory-infra dumps in bytes');
-    assert.lengthOf(totalSizeValue, 1);
-    assert.strictEqual(totalSizeValue[0].numeric.value, memoryCategorySize);
-    var sizePerDumpValue = allValues.getValuesWithName(
-        'Average trace size of memory-infra dumps in bytes');
-    assert.lengthOf(sizePerDumpValue, 1);
-    assert.strictEqual(sizePerDumpValue[0].numeric.value, memoryCategorySize);
+    var totalSizeValue = tr.b.getOnlyElement(allValues.getValuesNamed(
+        'Total trace size of memory-infra dumps in bytes'));
+    assert.strictEqual(totalSizeValue.average, memoryCategorySize);
+    var sizePerDumpValue = tr.b.getOnlyElement(allValues.getValuesNamed(
+        'Average trace size of memory-infra dumps in bytes'));
+    assert.strictEqual(sizePerDumpValue.average, memoryCategorySize);
 
     checkDurationValue(allValues,
-        'Average CPU overhead of mdp1 per memory-infra dump', 13);
+        'Average CPU overhead of mdp1 per OnMemoryDump call', 6.5);
     checkDurationValue(allValues,
-        'Average CPU overhead of mdp2 per memory-infra dump', 32);
+        'Average CPU overhead of mdp2 per OnMemoryDump call', 16);
     checkDurationValue(allValues,
-        'Average CPU overhead of mdp3 per memory-infra dump', 12);
+        'Average CPU overhead of mdp3 per OnMemoryDump call', 6);
     checkDurationValue(allValues,
-        'Average CPU overhead of mdp4 per memory-infra dump', 8);
+        'Average CPU overhead of mdp4 per OnMemoryDump call', 8);
     checkDurationValue(allValues,
         'Average CPU overhead on non-memory-infra threads per memory-infra ' +
             'dump',
diff --git a/catapult/tracing/tracing/metrics/v8/execution_metric.html b/catapult/tracing/tracing/metrics/v8/execution_metric.html
index 3c5565b..37a0f2f 100644
--- a/catapult/tracing/tracing/metrics/v8/execution_metric.html
+++ b/catapult/tracing/tracing/metrics/v8/execution_metric.html
@@ -4,200 +4,207 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.metrics.v8', function() {
-  var DURATION_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(4, 200), 100);
+  var CUSTOM_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(4, 200, 100);
 
   function computeExecuteMetrics(values, model) {
-    var cpuTotalExecution = DURATION_NUMERIC_BUILDER.build();
-    var wallTotalExecution = DURATION_NUMERIC_BUILDER.build();
-    var cpuSelfExecution = DURATION_NUMERIC_BUILDER.build();
-    var wallSelfExecution = DURATION_NUMERIC_BUILDER.build();
+    var cpuTotalExecution = new tr.v.Histogram('v8_execution_cpu_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuTotalExecution.description = 'cpu total time spent in script execution';
+    var wallTotalExecution = new tr.v.Histogram('v8_execution_wall_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallTotalExecution.description =
+      'wall total time spent in script execution';
+    var cpuSelfExecution = new tr.v.Histogram('v8_execution_cpu_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuSelfExecution.description = 'cpu self time spent in script execution';
+    var wallSelfExecution = new tr.v.Histogram('v8_execution_wall_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallSelfExecution.description = 'wall self time spent in script execution';
 
     for (var e of model.findTopmostSlicesNamed('V8.Execute')) {
-      cpuTotalExecution.add(e.cpuDuration);
-      wallTotalExecution.add(e.duration);
-      cpuSelfExecution.add(e.cpuSelfTime);
-      wallSelfExecution.add(e.selfTime);
+      cpuTotalExecution.addSample(e.cpuDuration);
+      wallTotalExecution.addSample(e.duration);
+      cpuSelfExecution.addSample(e.cpuSelfTime);
+      wallSelfExecution.addSample(e.selfTime);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_execution_cpu_total', cpuTotalExecution,
-        { description: 'cpu total time spent in script execution' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_execution_wall_total', wallTotalExecution,
-        { description: 'wall total time spent in script execution' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_execution_cpu_self', cpuSelfExecution,
-        { description: 'cpu self time spent in script execution' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_execution_wall_self', wallSelfExecution,
-        { description: 'wall self time spent in script execution' }));
+    values.addHistogram(cpuTotalExecution);
+    values.addHistogram(wallTotalExecution);
+    values.addHistogram(cpuSelfExecution);
+    values.addHistogram(wallSelfExecution);
   }
 
   function computeParseLazyMetrics(values, model) {
-    var cpuSelfParseLazy = DURATION_NUMERIC_BUILDER.build();
-    var wallSelfParseLazy = DURATION_NUMERIC_BUILDER.build();
+    var cpuSelfParseLazy = new tr.v.Histogram('v8_parse_lazy_cpu_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuSelfParseLazy.description =
+      'cpu self time spent performing lazy parsing';
+    var wallSelfParseLazy = new tr.v.Histogram('v8_parse_lazy_wall_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallSelfParseLazy.description =
+      'wall self time spent performing lazy parsing';
 
     for (var e of model.findTopmostSlicesNamed('V8.ParseLazyMicroSeconds')) {
-      cpuSelfParseLazy.add(e.cpuSelfTime);
-      wallSelfParseLazy.add(e.selfTime);
+      cpuSelfParseLazy.addSample(e.cpuSelfTime);
+      wallSelfParseLazy.addSample(e.selfTime);
     }
     for (var e of model.findTopmostSlicesNamed('V8.ParseLazy')) {
-      cpuSelfParseLazy.add(e.cpuSelfTime);
-      wallSelfParseLazy.add(e.selfTime);
+      cpuSelfParseLazy.addSample(e.cpuSelfTime);
+      wallSelfParseLazy.addSample(e.selfTime);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_parse_lazy_cpu_self', cpuSelfParseLazy,
-        { description: 'cpu self time spent performing lazy parsing' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_parse_lazy_wall_self', wallSelfParseLazy,
-        { description: 'wall self time spent performing lazy parsing' }));
+    values.addHistogram(cpuSelfParseLazy);
+    values.addHistogram(wallSelfParseLazy);
   }
 
   function computeCompileFullCodeMetrics(values, model) {
-    var cpuSelfCompileFullCode = DURATION_NUMERIC_BUILDER.build();
-    var wallSelfCompileFullCode = DURATION_NUMERIC_BUILDER.build();
+    var cpuSelfCompileFullCode = new tr.v.Histogram(
+        'v8_compile_full_code_cpu_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuSelfCompileFullCode.description =
+      'cpu self time spent performing compiling full code';
+    var wallSelfCompileFullCode = new tr.v.Histogram(
+        'v8_compile_full_code_wall_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallSelfCompileFullCode.description =
+      'wall self time spent performing compiling full code';
 
     for (var e of model.findTopmostSlicesNamed('V8.CompileFullCode')) {
-      cpuSelfCompileFullCode.add(e.cpuSelfTime);
-      wallSelfCompileFullCode.add(e.selfTime);
+      cpuSelfCompileFullCode.addSample(e.cpuSelfTime);
+      wallSelfCompileFullCode.addSample(e.selfTime);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_compile_full_code_cpu_self',
-        cpuSelfCompileFullCode,
-        { description: 'cpu self time spent performing compiling full code' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_compile_full_code_wall_self',
-        wallSelfCompileFullCode, {
-          description: 'wall self time spent performing compiling full code'
-        }));
+    values.addHistogram(cpuSelfCompileFullCode);
+    values.addHistogram(wallSelfCompileFullCode);
   }
 
   function computeCompileIgnitionMetrics(values, model) {
-    var cpuSelfCompileIgnition = DURATION_NUMERIC_BUILDER.build();
-    var wallSelfCompileIgnition = DURATION_NUMERIC_BUILDER.build();
+    var cpuSelfCompileIgnition = new tr.v.Histogram(
+        'v8_compile_ignition_cpu_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuSelfCompileIgnition.description =
+      'cpu self time spent in compile ignition';
+    var wallSelfCompileIgnition = new tr.v.Histogram(
+        'v8_compile_ignition_wall_self',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallSelfCompileIgnition.description =
+      'wall self time spent in compile ignition';
 
     for (var e of model.findTopmostSlicesNamed('V8.CompileIgnition')) {
-      cpuSelfCompileIgnition.add(e.cpuSelfTime);
-      wallSelfCompileIgnition.add(e.selfTime);
+      cpuSelfCompileIgnition.addSample(e.cpuSelfTime);
+      wallSelfCompileIgnition.addSample(e.selfTime);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_compile_ignition_cpu_self',
-        cpuSelfCompileIgnition,
-        { description: 'cpu self time spent in compile ignition' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_compile_ignition_wall_self',
-        wallSelfCompileIgnition, {
-          description: 'wall self time spent in compile ignition'
-        }));
+    values.addHistogram(cpuSelfCompileIgnition);
+    values.addHistogram(wallSelfCompileIgnition);
   }
 
   function computeRecompileMetrics(values, model) {
-    var cpuTotalRecompileSynchronous = DURATION_NUMERIC_BUILDER.build();
-    var wallTotalRecompileSynchronous = DURATION_NUMERIC_BUILDER.build();
-    var cpuTotalRecompileConcurrent = DURATION_NUMERIC_BUILDER.build();
-    var wallTotalRecompileConcurrent = DURATION_NUMERIC_BUILDER.build();
+    var cpuTotalRecompileSynchronous = new tr.v.Histogram(
+        'v8_recompile_synchronous_cpu_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuTotalRecompileSynchronous.description =
+      'cpu total time spent in synchronous recompilation';
+    var wallTotalRecompileSynchronous = new tr.v.Histogram(
+        'v8_recompile_synchronous_wall_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallTotalRecompileSynchronous.description =
+      'wall total time spent in synchronous recompilation';
+    var cpuTotalRecompileConcurrent = new tr.v.Histogram(
+        'v8_recompile_concurrent_cpu_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuTotalRecompileConcurrent.description =
+      'cpu total time spent in concurrent recompilation';
+    var wallTotalRecompileConcurrent = new tr.v.Histogram(
+        'v8_recompile_concurrent_wall_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallTotalRecompileConcurrent.description =
+      'wall total time spent in concurrent recompilation';
     // TODO(eakuefner): Stop computing overall values once dash v2 is ready.
     // https://github.com/catapult-project/catapult/issues/2180
-    var cpuTotalRecompileOverall = DURATION_NUMERIC_BUILDER.build();
-    var wallTotalRecompileOverall = DURATION_NUMERIC_BUILDER.build();
+    var cpuTotalRecompileOverall = new tr.v.Histogram(
+        'v8_recompile_overall_cpu_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuTotalRecompileOverall.description =
+      'cpu total time spent in synchronous or concurrent recompilation';
+    var wallTotalRecompileOverall = new tr.v.Histogram(
+        'v8_recompile_overall_wall_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallTotalRecompileOverall.description =
+      'wall total time spent in synchronous or concurrent recompilation';
 
     for (var e of model.findTopmostSlicesNamed('V8.RecompileSynchronous')) {
-      cpuTotalRecompileSynchronous.add(e.cpuDuration);
-      wallTotalRecompileSynchronous.add(e.duration);
-      cpuTotalRecompileOverall.add(e.cpuDuration);
-      wallTotalRecompileOverall.add(e.duration);
+      cpuTotalRecompileSynchronous.addSample(e.cpuDuration);
+      wallTotalRecompileSynchronous.addSample(e.duration);
+      cpuTotalRecompileOverall.addSample(e.cpuDuration);
+      wallTotalRecompileOverall.addSample(e.duration);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_recompile_synchronous_cpu_total',
-        cpuTotalRecompileSynchronous,
-        { description: 'cpu total time spent in synchronous recompilation' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_recompile_synchronous_wall_total',
-        wallTotalRecompileSynchronous,
-        { description: 'wall total time spent in synchronous recompilation' }));
-
+    values.addHistogram(cpuTotalRecompileSynchronous);
+    values.addHistogram(wallTotalRecompileSynchronous);
 
     for (var e of model.findTopmostSlicesNamed('V8.RecompileConcurrent')) {
-      cpuTotalRecompileConcurrent.add(e.cpuDuration);
-      wallTotalRecompileConcurrent.add(e.duration);
-      cpuTotalRecompileOverall.add(e.cpuDuration);
-      wallTotalRecompileOverall.add(e.duration);
+      cpuTotalRecompileConcurrent.addSample(e.cpuDuration);
+      wallTotalRecompileConcurrent.addSample(e.duration);
+      cpuTotalRecompileOverall.addSample(e.cpuDuration);
+      wallTotalRecompileOverall.addSample(e.duration);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_recompile_concurrent_cpu_total',
-        cpuTotalRecompileConcurrent,
-        { description: 'cpu total time spent in concurrent recompilation' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_recompile_concurrent_wall_total',
-        wallTotalRecompileConcurrent,
-        { description: 'wall total time spent in concurrent recompilation' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_recompile_overall_cpu_total',
-        cpuTotalRecompileOverall, {
-          description:
-              'cpu total time spent in synchronous or concurrent recompilation'
-        }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_recompile_overall_wall_total',
-        wallTotalRecompileOverall, {
-          description:
-              'wall total time spent in synchronous or concurrent recompilation'
-        }));
+    values.addHistogram(cpuTotalRecompileConcurrent);
+    values.addHistogram(wallTotalRecompileConcurrent);
+    values.addHistogram(cpuTotalRecompileOverall);
+    values.addHistogram(wallTotalRecompileOverall);
   }
 
   function computeOptimizeCodeMetrics(values, model) {
-    var cpuTotalOptimizeCode = DURATION_NUMERIC_BUILDER.build();
-    var wallTotalOptimizeCode = DURATION_NUMERIC_BUILDER.build();
+    var cpuTotalOptimizeCode = new tr.v.Histogram('v8_optimize_code_cpu_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuTotalOptimizeCode.description =
+      'cpu total time spent in code optimization';
+    var wallTotalOptimizeCode = new tr.v.Histogram(
+        'v8_optimize_code_wall_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallTotalOptimizeCode.description =
+      'wall total time spent in code optimization';
 
     for (var e of model.findTopmostSlicesNamed('V8.OptimizeCode')) {
-      cpuTotalOptimizeCode.add(e.cpuDuration);
-      wallTotalOptimizeCode.add(e.duration);
+      cpuTotalOptimizeCode.addSample(e.cpuDuration);
+      wallTotalOptimizeCode.addSample(e.duration);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_optimize_code_cpu_total',
-        cpuTotalOptimizeCode,
-        { description: 'cpu total time spent in code optimization' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_optimize_code_wall_total',
-        wallTotalOptimizeCode,
-        { description: 'wall total time spent in code optimization' }));
+    values.addHistogram(cpuTotalOptimizeCode);
+    values.addHistogram(wallTotalOptimizeCode);
   }
 
   function computeDeoptimizeCodeMetrics(values, model) {
-    var cpuTotalDeoptimizeCode = DURATION_NUMERIC_BUILDER.build();
-    var wallTotalDeoptimizeCode = DURATION_NUMERIC_BUILDER.build();
+    var cpuTotalDeoptimizeCode = new tr.v.Histogram(
+        'v8_deoptimize_code_cpu_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    cpuTotalDeoptimizeCode.description =
+      'cpu total time spent in code deoptimization';
+    var wallTotalDeoptimizeCode = new tr.v.Histogram(
+        'v8_deoptimize_code_wall_total',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
+    wallTotalDeoptimizeCode.description =
+      'wall total time spent in code deoptimization';
 
     for (var e of model.findTopmostSlicesNamed('V8.DeoptimizeCode')) {
-      cpuTotalDeoptimizeCode.add(e.cpuDuration);
-      wallTotalDeoptimizeCode.add(e.duration);
+      cpuTotalDeoptimizeCode.addSample(e.cpuDuration);
+      wallTotalDeoptimizeCode.addSample(e.duration);
     }
 
-    values.addValue(new tr.v.NumericValue(
-        'v8_deoptimize_code_cpu_total',
-        cpuTotalDeoptimizeCode,
-        { description: 'cpu total time spent in code deoptimization' }));
-    values.addValue(new tr.v.NumericValue(
-        'v8_deoptimize_code_wall_total',
-        wallTotalDeoptimizeCode,
-        { description: 'wall total time spent in code deoptimization' }));
+    values.addHistogram(cpuTotalDeoptimizeCode);
+    values.addHistogram(wallTotalDeoptimizeCode);
   }
 
   function executionMetric(values, model) {
diff --git a/catapult/tracing/tracing/metrics/v8/execution_metric_test.html b/catapult/tracing/tracing/metrics/v8/execution_metric_test.html
index 9cb7099..d582e5d 100644
--- a/catapult/tracing/tracing/metrics/v8/execution_metric_test.html
+++ b/catapult/tracing/tracing/metrics/v8/execution_metric_test.html
@@ -42,7 +42,7 @@
       'v8_deoptimize_code_cpu_total',
       'v8_deoptimize_code_wall_total',
     ].forEach(function(name) {
-      assert.isAbove(values.getValuesWithName(name).length, 0);
+      assert.strictEqual(values.getValuesNamed(name).length, 1);
     });
   });
 
@@ -62,12 +62,10 @@
       shiftWorldToZero: false
     });
     var values = new tr.v.ValueSet();
-
     tr.metrics.v8.executionMetric(values, model);
 
-    var value = values.getValuesWithName('v8_execution_wall_total_sum')[0];
-
-    assert.closeTo(value.numeric.value, 0.1, 1e-5);
+    var value = values.getValuesNamed('v8_execution_wall_total')[0];
+    assert.closeTo(value.running.sum, 0.1, 1e-5);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/v8/gc_metric.html b/catapult/tracing/tracing/metrics/v8/gc_metric.html
index a28bc15..7a0c88f 100644
--- a/catapult/tracing/tracing/metrics/v8/gc_metric.html
+++ b/catapult/tracing/tracing/metrics/v8/gc_metric.html
@@ -4,12 +4,12 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/metrics/v8/utils.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
@@ -27,25 +27,28 @@
     addDurationOfSubEvents(values, model);
     addIdleTimesOfTopEvents(values, model);
     addTotalIdleTimesOfTopEvents(values, model);
+    addPercentageInV8ExecuteOfTopEvents(values, model);
+    addTotalPercentageInV8Execute(values, model);
     addV8ExecuteMutatorUtilization(values, model);
   }
 
   tr.metrics.MetricRegistry.register(gcMetric);
 
   var timeDurationInMs_smallerIsBetter =
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter;
+      tr.b.Unit.byName.timeDurationInMs_smallerIsBetter;
   var percentage_biggerIsBetter =
-      tr.v.Unit.byName.normalizedPercentage_biggerIsBetter;
+      tr.b.Unit.byName.normalizedPercentage_biggerIsBetter;
+  var percentage_smallerIsBetter =
+      tr.b.Unit.byName.normalizedPercentage_smallerIsBetter;
 
-  var numericBuilder = new tr.v.NumericBuilder(
-      timeDurationInMs_smallerIsBetter, 0);
   // 0.1 steps from 0 to 20 since it is the most common range.
-  numericBuilder.addLinearBins(20, 200);
   // Exponentially increasing steps from 20 to 200.
-  numericBuilder.addExponentialBins(200, 100);
+  var CUSTOM_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(0, 20, 200)
+    .addExponentialBins(200, 100);
 
-  function createNumericForTopEventTime() {
-    var n = numericBuilder.build();
+  function createNumericForTopEventTime(name) {
+    var n = new tr.v.Histogram(name,
+        timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
     n.customizeSummaryOptions({
         avg: true,
         count: true,
@@ -57,8 +60,9 @@
     return n;
   }
 
-  function createNumericForSubEventTime() {
-    var n = numericBuilder.build();
+  function createNumericForSubEventTime(name) {
+    var n = new tr.v.Histogram(name,
+        timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
     n.customizeSummaryOptions({
         avg: true,
         count: false,
@@ -71,8 +75,9 @@
     return n;
   }
 
-  function createNumericForIdleTime() {
-    var n = numericBuilder.build();
+  function createNumericForIdleTime(name) {
+    var n = new tr.v.Histogram(name,
+        timeDurationInMs_smallerIsBetter, CUSTOM_BOUNDARIES);
     n.customizeSummaryOptions({
         avg: true,
         count: false,
@@ -85,9 +90,22 @@
     return n;
   }
 
-  function createPercentage(numerator, denominator) {
-    var percentage = denominator === 0 ? 0 : numerator / denominator * 100;
-    return new tr.v.ScalarNumeric(percentage_biggerIsBetter, percentage);
+  function createPercentage(name, numerator, denominator, unit) {
+    var hist = new tr.v.Histogram(name, unit);
+    if (denominator === 0)
+      hist.addSample(0);
+    else
+      hist.addSample(numerator / denominator);
+    hist.customizeSummaryOptions({
+        avg: true,
+        count: false,
+        max: false,
+        min: false,
+        std: false,
+        sum: false,
+        percentile: []
+      });
+    return hist;
   }
 
   function isNotForcedTopGarbageCollectionEvent(event) {
@@ -113,11 +131,11 @@
       isNotForcedTopGarbageCollectionEvent,
       tr.metrics.v8.utils.topGarbageCollectionEventName,
       function(name, events) {
-        var cpuDuration = createNumericForTopEventTime();
+        var cpuDuration = createNumericForTopEventTime(name);
         events.forEach(function(event) {
-          cpuDuration.add(event.cpuDuration);
+          cpuDuration.addSample(event.cpuDuration);
         });
-        values.addValue(new tr.v.NumericValue(name, cpuDuration));
+        values.addHistogram(cpuDuration);
       }
     );
   }
@@ -131,11 +149,11 @@
       isNotForcedTopGarbageCollectionEvent,
       event => 'v8-gc-total',
       function(name, events) {
-        var cpuDuration = createNumericForTopEventTime();
+        var cpuDuration = createNumericForTopEventTime(name);
         events.forEach(function(event) {
-          cpuDuration.add(event.cpuDuration);
+          cpuDuration.addSample(event.cpuDuration);
         });
-        values.addValue(new tr.v.NumericValue(name, cpuDuration));
+        values.addHistogram(cpuDuration);
       }
     );
   }
@@ -149,11 +167,11 @@
       isNotForcedSubGarbageCollectionEvent,
       tr.metrics.v8.utils.subGarbageCollectionEventName,
       function(name, events) {
-        var cpuDuration = createNumericForSubEventTime();
+        var cpuDuration = createNumericForSubEventTime(name);
         events.forEach(function(event) {
-          cpuDuration.add(event.cpuDuration);
+          cpuDuration.addSample(event.cpuDuration);
         });
-        values.addValue(new tr.v.NumericValue(name, cpuDuration));
+        values.addHistogram(cpuDuration);
       }
     );
   }
@@ -193,8 +211,9 @@
   function addIdleTimes(values, model, name, events) {
     var cpuDuration = createNumericForIdleTime();
     var insideIdle = createNumericForIdleTime();
-    var outsideIdle = createNumericForIdleTime();
-    var idleDeadlineOverrun = createNumericForIdleTime();
+    var outsideIdle = createNumericForIdleTime(name + '_outside_idle');
+    var idleDeadlineOverrun = createNumericForIdleTime(
+        name + '_idle_deadline_overrun');
     events.forEach(function(event) {
       var idleTask = tr.metrics.v8.utils.findParent(
           event, tr.metrics.v8.utils.isIdleTask);
@@ -214,20 +233,63 @@
           inside = event.cpuDuration;
         }
       }
-      cpuDuration.add(event.cpuDuration);
-      insideIdle.add(inside);
-      outsideIdle.add(event.cpuDuration - inside);
-      idleDeadlineOverrun.add(overrun);
+      cpuDuration.addSample(event.cpuDuration);
+      insideIdle.addSample(inside);
+      outsideIdle.addSample(event.cpuDuration - inside);
+      idleDeadlineOverrun.addSample(overrun);
     });
-    values.addValue(new tr.v.NumericValue(
-        name + '_idle_deadline_overrun',
-        idleDeadlineOverrun));
-    values.addValue(new tr.v.NumericValue(
-        name + '_outside_idle', outsideIdle));
-    var percentage = createPercentage(insideIdle.sum,
-                                      cpuDuration.sum);
-    values.addValue(new tr.v.NumericValue(
-        name + '_percentage_idle', percentage));
+    values.addHistogram(idleDeadlineOverrun);
+    values.addHistogram(outsideIdle);
+    var percentage = createPercentage(name + '_percentage_idle', insideIdle.sum,
+                                      cpuDuration.sum,
+                                      percentage_biggerIsBetter);
+    values.addHistogram(percentage);
+  }
+
+
+  /**
+   * Example output:
+   * - v8-gc-full-mark-compactor_percentage_in_v8_execute.
+   */
+  function addPercentageInV8ExecuteOfTopEvents(values, model) {
+    tr.metrics.v8.utils.groupAndProcessEvents(model,
+      isNotForcedTopGarbageCollectionEvent,
+      tr.metrics.v8.utils.topGarbageCollectionEventName,
+      function(name, events) {
+        addPercentageInV8Execute(values, model, name, events);
+      }
+    );
+  }
+
+  /**
+   * Example output:
+   * - v8-gc-total_percentage_in_v8_execute.
+   */
+  function addTotalPercentageInV8Execute(values, model) {
+    tr.metrics.v8.utils.groupAndProcessEvents(model,
+      isNotForcedTopGarbageCollectionEvent,
+      event => 'v8-gc-total',
+      function(name, events) {
+        addPercentageInV8Execute(values, model, name, events);
+      }
+    );
+  }
+
+  function addPercentageInV8Execute(values, model, name, events) {
+    var cpuDurationInV8Execute = 0;
+    var cpuDurationTotal = 0;
+    events.forEach(function(event) {
+      var v8Execute = tr.metrics.v8.utils.findParent(
+          event, tr.metrics.v8.utils.isV8ExecuteEvent);
+      if (v8Execute) {
+        cpuDurationInV8Execute += event.cpuDuration;
+      }
+      cpuDurationTotal += event.cpuDuration;
+    });
+    var percentage = createPercentage(
+        name + '_percentage_in_v8_execute', cpuDurationInV8Execute,
+        cpuDurationTotal, percentage_smallerIsBetter);
+    values.addHistogram(percentage);
   }
 
   function addV8ExecuteMutatorUtilization(values, model) {
@@ -254,17 +316,16 @@
           var mutatorUtilization = tr.metrics.v8.utils.mutatorUtilization(
               0, time, WINDOW_SIZE_MS, pauses);
           [0.90, 0.95, 0.99].forEach(function(percent) {
-            var value = new tr.v.ScalarNumeric(percentage_biggerIsBetter,
-                mutatorUtilization.percentile(1.0 - percent) * 100);
-            values.addValue(new tr.v.NumericValue(
-                'v8-execute-mutator-utilization_pct_0' +
-                percent * 100,
-                value));
+            var hist = new tr.v.Histogram(
+                'v8-execute-mutator-utilization_pct_0' + percent * 100,
+                percentage_biggerIsBetter);
+            hist.addSample(mutatorUtilization.percentile(1.0 - percent));
+            values.addHistogram(hist);
           });
-          var value = new tr.v.ScalarNumeric(percentage_biggerIsBetter,
-              mutatorUtilization.min);
-          values.addValue(new tr.v.NumericValue(
-              'v8-execute-mutator-utilization_min', value));
+          var hist = new tr.v.Histogram(
+              'v8-execute-mutator-utilization_min', percentage_biggerIsBetter);
+          hist.addSample(mutatorUtilization.min);
+          values.addHistogram(hist);
         }
     );
   }
diff --git a/catapult/tracing/tracing/metrics/v8/gc_metric_test.html b/catapult/tracing/tracing/metrics/v8/gc_metric_test.html
index 8de3a4c..1ae15e0 100644
--- a/catapult/tracing/tracing/metrics/v8/gc_metric_test.html
+++ b/catapult/tracing/tracing/metrics/v8/gc_metric_test.html
@@ -42,11 +42,7 @@
     var endTime = slices.reduce((acc, slice) => (Math.max(acc, slice.end)));
     var model = createModel(startTime - 1, endTime + 1, slices);
     tr.metrics.v8.gcMetric(values, model);
-    var result = {};
-    values.valueDicts.forEach(function(value) {
-      result[value.name] = value.numeric.value;
-    });
-    return result;
+    return values;
   }
 
   test('topEvents', function() {
@@ -68,24 +64,30 @@
         }
       ];
       var actual = run(slices);
-      var expected = {
-        sum: 100,
-        count: 1,
-        avg: 100,
-        max: 100,
-        idle_deadline_overrun_sum: 0,
-        idle_deadline_overrun_avg: 0,
-        idle_deadline_overrun_max: 0,
-        outside_idle_sum: 100,
-        outside_idle_avg: 100,
-        outside_idle_max: 100,
-        percentage_idle: 0
-      };
-      tr.b.iterItems(expected, function(key, value) {
-        var name = constructName(telemetryName, key);
-        assert.equal(name + ':' + actual[name], name + ':' + value);
-      });
-      assert.closeTo(actual[constructName(telemetryName, 'pct_090')], 100, 1);
+
+      var value = tr.b.getOnlyElement(actual.getValuesNamed(telemetryName));
+      assert.strictEqual(value.running.sum, 100);
+      assert.strictEqual(value.numValues, 1);
+      assert.strictEqual(value.average, 100);
+      assert.strictEqual(value.running.max, 100);
+      assert.closeTo(value.getApproximatePercentile(0.90), 100, 1);
+
+      value = tr.b.getOnlyElement(actual.getValuesNamed(
+          telemetryName + '_idle_deadline_overrun'));
+      assert.strictEqual(value.running.sum, 0);
+      assert.strictEqual(value.numValues, 1);
+      assert.strictEqual(value.average, 0);
+      assert.strictEqual(value.running.max, 0);
+
+      value = tr.b.getOnlyElement(actual.getValuesNamed(
+          telemetryName + '_outside_idle'));
+      assert.strictEqual(value.running.sum, 100);
+      assert.strictEqual(value.numValues, 1);
+      assert.strictEqual(value.average, 100);
+
+      value = tr.b.getOnlyElement(actual.getValuesNamed(
+          telemetryName + '_percentage_idle'));
+      assert.strictEqual(value.average, 0);
     });
   });
 
@@ -103,23 +105,29 @@
       }
     ];
     var actual = run(slices);
-    var expected = {
-      sum: 80,
-      count: 1,
-      avg: 80,
-      max: 80,
-      idle_deadline_overrun_sum: 0,
-      idle_deadline_overrun_avg: 0,
-      idle_deadline_overrun_max: 0,
-      outside_idle_sum: 0,
-      outside_idle_avg: 0,
-      outside_idle_max: 0,
-      percentage_idle: 100
-    };
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName('v8-gc-latency-mark-compactor', key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
+
+    var value = tr.b.getOnlyElement(actual.getValuesNamed(
+          'v8-gc-latency-mark-compactor'));
+    assert.strictEqual(value.running.sum, 80);
+    assert.strictEqual(value.numValues, 1);
+    assert.strictEqual(value.average, 80);
+    assert.strictEqual(value.running.max, 80);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_idle_deadline_overrun'));
+    assert.strictEqual(value.running.sum, 0);
+    assert.strictEqual(value.average, 0);
+    assert.strictEqual(value.running.max, 0);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_outside_idle'));
+    assert.strictEqual(value.running.sum, 0);
+    assert.strictEqual(value.average, 0);
+    assert.strictEqual(value.running.max, 0);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_percentage_idle'));
+    assert.strictEqual(value.average, 1);
   });
 
   test('idleTimeOverrun', function() {
@@ -136,23 +144,29 @@
       }
     ];
     var actual = run(slices);
-    var expected = {
-      sum: 80,
-      count: 1,
-      avg: 80,
-      max: 80,
-      idle_deadline_overrun_sum: 70,
-      idle_deadline_overrun_avg: 70,
-      idle_deadline_overrun_max: 70,
-      outside_idle_sum: 70,
-      outside_idle_avg: 70,
-      outside_idle_max: 70,
-      percentage_idle: 100 / 8
-    };
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName('v8-gc-latency-mark-compactor', key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
+
+    var value = tr.b.getOnlyElement(actual.getValuesNamed(
+          'v8-gc-latency-mark-compactor'));
+    assert.strictEqual(value.running.sum, 80);
+    assert.strictEqual(value.numValues, 1);
+    assert.strictEqual(value.average, 80);
+    assert.strictEqual(value.running.max, 80);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_idle_deadline_overrun'));
+    assert.strictEqual(value.running.sum, 70);
+    assert.strictEqual(value.average, 70);
+    assert.strictEqual(value.running.max, 70);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_outside_idle'));
+    assert.strictEqual(value.running.sum, 70);
+    assert.strictEqual(value.average, 70);
+    assert.strictEqual(value.running.max, 70);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_percentage_idle'));
+    assert.closeTo(value.average, 1 / 8, 1e-6);
   });
 
   test('subEvents', function() {
@@ -168,16 +182,11 @@
       },
     ];
     var actual = run(slices);
-    var expected = {
-      avg: 80,
-      max: 80,
-    };
     var telemetryName = 'v8-gc-latency-mark-compactor-mark';
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName(telemetryName, key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
-    assert.closeTo(actual[constructName(telemetryName, 'pct_090')], 80, 1);
+    var value = tr.b.getOnlyElement(actual.getValuesNamed(telemetryName));
+    assert.strictEqual(value.average, 80);
+    assert.strictEqual(value.running.max, 80);
+    assert.closeTo(value.getApproximatePercentile(0.90), 80, 1);
   });
 
   test('total', function() {
@@ -193,23 +202,52 @@
       }
     ];
     var actual = run(slices);
-    var expected = {
-      sum: 180,
-      count: 2,
-      avg: 90,
-      max: 100,
-      idle_deadline_overrun_sum: 0,
-      idle_deadline_overrun_avg: 0,
-      idle_deadline_overrun_max: 0,
-      outside_idle_sum: 180,
-      outside_idle_avg: 90,
-      outside_idle_max: 100,
-      percentage_idle: 0
-    };
-    tr.b.iterItems(expected, function(key, value) {
-      var name = constructName('v8-gc-total', key);
-      assert.equal(name + ':' + actual[name], name + ':' + value);
-    });
+
+    var value = tr.b.getOnlyElement(actual.getValuesNamed('v8-gc-total'));
+    assert.strictEqual(value.running.sum, 180);
+    assert.strictEqual(value.numValues, 2);
+    assert.strictEqual(value.average, 90);
+    assert.strictEqual(value.running.max, 100);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-total_idle_deadline_overrun'));
+    assert.strictEqual(value.running.sum, 0);
+    assert.strictEqual(value.average, 0);
+    assert.strictEqual(value.running.max, 0);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-total_outside_idle'));
+    assert.strictEqual(value.running.sum, 180);
+    assert.strictEqual(value.average, 90);
+    assert.strictEqual(value.running.max, 100);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-total_percentage_idle'));
+    assert.strictEqual(value.average, 0);
+  });
+
+  test('percentageInV8Execute', function() {
+    var values = new tr.v.ValueSet();
+    var slices = [
+      {
+        title: 'V8.Execute',
+        args: {}, start: 100, end: 200,
+        cpuStart: 100, cpuEnd: 200
+      },
+      {
+        title: 'V8.GCFinalizeMC', args: {}, start: 110, end: 190,
+        cpuStart: 110, cpuEnd: 190
+      },
+      {
+        title: 'V8.GCFinalizeMC', args: {}, start: 210, end: 220,
+        cpuStart: 210, cpuEnd: 220
+      }
+    ];
+    var actual = run(slices);
+    var value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-gc-latency-mark-compactor_percentage_in_v8_execute'));
+    assert.strictEqual(value.average,
+        (190 - 110) / ((190 - 110) + (220 - 210)));
   });
 
   test('mutatorUtilization', function() {
@@ -236,13 +274,16 @@
         0, 300, tr.metrics.v8.WINDOW_SIZE_MS,
         [{start: 50, end: 60}, {start: 110, end: 120}]);
     var actual = run(slices);
-    assert.strictEqual(
-        actual['v8-execute-mutator-utilization_pct_095'],
-        mutatorUtilization.percentile(1 - 0.95) * 100);
-    assert.strictEqual(
-        actual['v8-execute-mutator-utilization_pct_099'],
-        mutatorUtilization.percentile(1 - 0.99) * 100);
- });
 
+    var value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-execute-mutator-utilization_pct_095'));
+    assert.closeTo(value.average,
+        mutatorUtilization.percentile(1 - 0.95), 1e-2);
+
+    value = tr.b.getOnlyElement(actual.getValuesNamed(
+        'v8-execute-mutator-utilization_pct_099'));
+    assert.closeTo(value.average,
+        mutatorUtilization.percentile(1 - 0.99), 1e-2);
+ });
 });
 </script>
diff --git a/catapult/tracing/tracing/metrics/v8/utils.html b/catapult/tracing/tracing/metrics/v8/utils.html
index f1ca8f2..0bf39ba 100644
--- a/catapult/tracing/tracing/metrics/v8/utils.html
+++ b/catapult/tracing/tracing/metrics/v8/utils.html
@@ -4,13 +4,13 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/base/piecewise_linear_function.html">
 <link rel="import" href="/tracing/base/range.html">
 <link rel="import" href="/tracing/base/range_utils.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
diff --git a/catapult/tracing/tracing/model/alert.html b/catapult/tracing/tracing/model/alert.html
index f6431af..9fd5147 100644
--- a/catapult/tracing/tracing/model/alert.html
+++ b/catapult/tracing/tracing/model/alert.html
@@ -5,10 +5,10 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_info.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -38,7 +38,7 @@
 
     get userFriendlyName() {
       return 'Alert ' + this.title + ' at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.start);
+          tr.b.Unit.byName.timeStampInMs.format(this.start);
     }
   };
 
diff --git a/catapult/tracing/tracing/model/async_slice.html b/catapult/tracing/tracing/model/async_slice.html
index af6caac..f3a4dfa 100644
--- a/catapult/tracing/tracing/model/async_slice.html
+++ b/catapult/tracing/tracing/model/async_slice.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -65,7 +65,7 @@
 
     if (opt_argsStripped !== undefined)
       this.argsStripped = opt_argsStripped;
-  };
+  }
 
   AsyncSlice.prototype = {
     __proto__: tr.model.TimedEvent.prototype,
@@ -93,7 +93,7 @@
 
     get userFriendlyName() {
       return 'Async slice ' + this.title + ' at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.start);
+          tr.b.Unit.byName.timeStampInMs.format(this.start);
     },
 
     get stableId() {
diff --git a/catapult/tracing/tracing/model/container_memory_dump_test.html b/catapult/tracing/tracing/model/container_memory_dump_test.html
index 6c8bc64..ff3585c 100644
--- a/catapult/tracing/tracing/model/container_memory_dump_test.html
+++ b/catapult/tracing/tracing/model/container_memory_dump_test.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
 <link rel="import" href="/tracing/model/memory_dump_test_utils.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -19,7 +19,7 @@
   var MemoryAllocatorDump = tr.model.MemoryAllocatorDump;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var newAllocatorDump = tr.model.MemoryDumpTestUtils.newAllocatorDump;
   var addChildDump = tr.model.MemoryDumpTestUtils.addChildDump;
 
diff --git a/catapult/tracing/tracing/model/counter_sample.html b/catapult/tracing/tracing/model/counter_sample.html
index 19fa3a6..db3882e 100644
--- a/catapult/tracing/tracing/model/counter_sample.html
+++ b/catapult/tracing/tracing/model/counter_sample.html
@@ -7,9 +7,9 @@
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/sorted_array_utils.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event.html">
 <link rel="import" href="/tracing/model/event_registry.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -84,7 +84,7 @@
 
     get userFriendlyName() {
       return 'Counter sample from ' + this.series_.title + ' at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.timestamp);
+          tr.b.Unit.byName.timeStampInMs.format(this.timestamp);
     }
   };
 
diff --git a/catapult/tracing/tracing/model/cpu.html b/catapult/tracing/tracing/model/cpu.html
index 2257cfe..20f0664 100644
--- a/catapult/tracing/tracing/model/cpu.html
+++ b/catapult/tracing/tracing/model/cpu.html
@@ -62,7 +62,7 @@
 
     findTopmostSlicesInThisContainer: function*(eventPredicate, opt_this) {
       // All CpuSlices are toplevel since CpuSlices do not nest.
-      for (var s of slices) {
+      for (var s of this.slices) {
         yield * s.findTopmostSlicesRelativeToThisSlice(
             eventPredicate, opt_this);
       }
diff --git a/catapult/tracing/tracing/model/event.html b/catapult/tracing/tracing/model/event.html
index 10ab2f3..c542441 100644
--- a/catapult/tracing/tracing/model/event.html
+++ b/catapult/tracing/tracing/model/event.html
@@ -56,10 +56,10 @@
       this.associatedAlerts.push(alert);
     },
 
-    /** Adds the range of timestamps for this event to the specified range. */
-    addBoundsToRange: function(range) {
-      throw new Error('Not implemented');
-    }
+    // Adds the range of timestamps for this event to the specified range.
+    // If this is not overridden in subclass, it means that type of event
+    // doesn't have timestamps.
+    addBoundsToRange: function(range) {}
   };
 
   return {
diff --git a/catapult/tracing/tracing/model/event_set.html b/catapult/tracing/tracing/model/event_set.html
index ad3b5f8..f2be8d8 100644
--- a/catapult/tracing/tracing/model/event_set.html
+++ b/catapult/tracing/tracing/model/event_set.html
@@ -26,16 +26,13 @@
    * @constructor
    */
   function EventSet(opt_events) {
-    this.bounds_dirty_ = true;
     this.bounds_ = new tr.b.Range();
-    this.length_ = 0;
-    this.guid_ = tr.b.GUID.allocateSimple();
-    this.pushed_guids_ = {};
+    this.events_ = new Set();
 
     if (opt_events) {
       if (opt_events instanceof Array) {
-        for (var i = 0; i < opt_events.length; i++)
-          this.push(opt_events[i]);
+        for (var event of opt_events)
+          this.push(event);
       } else if (opt_events instanceof EventSet) {
         this.addEventSet(opt_events);
       } else {
@@ -43,12 +40,11 @@
       }
     }
   }
+
   EventSet.prototype = {
     __proto__: Object.prototype,
 
     get bounds() {
-      if (this.bounds_dirty_)
-        this.resolveBounds_();
       return this.bounds_;
     },
 
@@ -59,7 +55,7 @@
     },
 
     get length() {
-      return this.length_;
+      return this.events_.size;
     },
 
     get guid() {
@@ -67,22 +63,13 @@
     },
 
     *[Symbol.iterator]() {
-      for (var i = 0; i < this.length_; ++i)
-        yield this[i];
+      for (var event of this.events_)
+        yield event;
     },
 
     clear: function() {
-      for (var i = 0; i < this.length_; ++i)
-        delete this[i];
-      this.length_ = 0;
-      this.bounds_dirty_ = true;
-    },
-
-    resolveBounds_: function() {
-      this.bounds_.reset();
-      for (var i = 0; i < this.length_; i++)
-        this[i].addBoundsToRange(this.bounds_);
-      this.bounds_dirty_ = false;
+      this.bounds_ = new tr.b.Range();
+      this.events_.clear();
     },
 
     // push pushes only unique events.
@@ -91,61 +78,49 @@
       if (event.guid == undefined)
         throw new Error('Event must have a GUID');
 
-      if (this.contains(event))
-        return event;
+      if (!this.events_.has(event)) {
+        this.events_.add(event);
+        // Some uses of eventSet, particularly in tests, have Events as objects
+        // that don't have addBoundsToRange as a function. Thus we need to
+        // handle this case.
+        if (event.addBoundsToRange)
+          if (this.bounds_ !== undefined)
+            event.addBoundsToRange(this.bounds_);
+      }
 
-      this.pushed_guids_[event.guid] = true;
-      this[this.length_++] = event;
-      this.bounds_dirty_ = true;
       return event;
     },
 
     contains: function(event) {
-      return this.pushed_guids_[event.guid];
-    },
-
-    indexOf: function(event) {
-      for (var i = 0; i < this.length; i++) {
-        if (this[i].guid === event.guid)
-          return i;
-      }
-      return -1;
+      if (this.events_.has(event))
+        return event;
+      else
+        return undefined;
     },
 
     addEventSet: function(eventSet) {
-      for (var i = 0; i < eventSet.length; i++)
-        this.push(eventSet[i]);
-    },
-
-    subEventSet: function(index, count) {
-      count = count || 1;
-
-      var eventSet = new EventSet();
-      eventSet.bounds_dirty_ = true;
-      if (index < 0 || index + count > this.length_)
-        throw new Error('Index out of bounds');
-
-      for (var i = index; i < index + count; i++)
-        eventSet.push(this[i]);
-
-      return eventSet;
+      for (var event of eventSet)
+        this.push(event);
     },
 
     intersectionIsEmpty: function(otherEventSet) {
-      return !this.some(function(event) {
-        return otherEventSet.contains(event);
-      });
+      return !this.some(event => otherEventSet.contains(event));
     },
 
     equals: function(that) {
       if (this.length !== that.length)
         return false;
-      for (var i = 0; i < this.length; i++) {
-        var event = this[i];
-        if (that.pushed_guids_[event.guid] === undefined)
-          return false;
-      }
-      return true;
+      return this.every(event => that.contains(event));
+    },
+
+    sortEvents: function(compare) {
+      // Convert to array, then sort, then convert back
+      var ary = this.toArray();
+      ary.sort(compare);
+
+      this.clear();
+      for (var event of ary)
+        this.push(event);
     },
 
     getEventsOrganizedByBaseType: function(opt_pruneEmpty) {
@@ -201,9 +176,9 @@
     },
 
     enumEventsOfType: function(type, func) {
-      for (var i = 0; i < this.length_; i++)
-        if (this[i] instanceof type)
-          func(this[i]);
+      for (var event of this)
+        if (event instanceof type)
+          func(event);
     },
 
     get userFriendlyName() {
@@ -216,7 +191,7 @@
 
       if (this.length === 1) {
         var tmp = EventRegistry.getUserFriendlySingularName(eventTypeName);
-        return this[0].userFriendlyName;
+        return tr.b.getOnlyElement(this.events_).userFriendlyName;
       }
 
       var numEventTypes = tr.b.dictionaryLength(eventsByBaseType);
@@ -230,60 +205,60 @@
 
     filter: function(fn, opt_this) {
       var res = new EventSet();
-
-      this.forEach(function(slice) {
-        if (fn.call(this, slice))
-          res.push(slice);
-      }, opt_this);
+      for (var event of this)
+        if (fn.call(opt_this, event))
+          res.push(event);
 
       return res;
     },
 
     toArray: function() {
       var ary = [];
-      for (var i = 0; i < this.length; i++)
-        ary.push(this[i]);
+      for (var event of this)
+        ary.push(event);
       return ary;
     },
 
     forEach: function(fn, opt_this) {
-      for (var i = 0; i < this.length; i++)
-        fn.call(opt_this, this[i], i);
+      for (var event of this)
+        fn.call(opt_this, event);
     },
 
     map: function(fn, opt_this) {
       var res = [];
-      for (var i = 0; i < this.length; i++)
-        res.push(fn.call(opt_this, this[i], i));
+      for (var event of this)
+        res.push(fn.call(opt_this, event));
       return res;
     },
 
     every: function(fn, opt_this) {
-      for (var i = 0; i < this.length; i++)
-        if (!fn.call(opt_this, this[i], i))
+      for (var event of this)
+        if (!fn.call(opt_this, event))
           return false;
       return true;
     },
 
     some: function(fn, opt_this) {
-      for (var i = 0; i < this.length; i++)
-        if (fn.call(opt_this, this[i], i))
+      for (var event of this)
+        if (fn.call(opt_this, event))
           return true;
       return false;
     },
 
     asDict: function() {
       var stable_ids = [];
-      this.forEach(function(event) {
+      for (var event of this)
         stable_ids.push(event.stableId);
-      });
       return {'events': stable_ids};
+    },
+
+    asSet: function() {
+      return this.events_;
     }
   };
 
   EventSet.IMMUTABLE_EMPTY_SET = (function() {
     var s = new EventSet();
-    s.resolveBounds_();
     s.push = function() {
       throw new Error('Cannot push to an immutable event set');
     };
diff --git a/catapult/tracing/tracing/model/event_set_test.html b/catapult/tracing/tracing/model/event_set_test.html
index 9fbfd99..b584c23 100644
--- a/catapult/tracing/tracing/model/event_set_test.html
+++ b/catapult/tracing/tracing/model/event_set_test.html
@@ -31,12 +31,14 @@
 
     assert.equal(eventSet.bounds.min, 1);
     assert.equal(eventSet.bounds.max, 4);
-    assert.equal(eventSet[0], t1.sliceGroup.slices[0]);
+    assert.deepEqual(eventSet, new tr.model.EventSet(
+        t1.sliceGroup.slices[0]));
 
     eventSet.push(t1.sliceGroup.slices[1]);
     assert.equal(eventSet.bounds.min, 1);
     assert.equal(eventSet.bounds.max, 6);
-    assert.equal(eventSet[1], t1.sliceGroup.slices[1]);
+    assert.deepEqual(eventSet, new tr.model.EventSet(
+        [t1.sliceGroup.slices[0], t1.sliceGroup.slices[1]]));
 
     eventSet.clear();
     assert.equal(eventSet.length, 0);
diff --git a/catapult/tracing/tracing/model/flow_event.html b/catapult/tracing/tracing/model/flow_event.html
index 7d054ce..f54c94f 100644
--- a/catapult/tracing/tracing/model/flow_event.html
+++ b/catapult/tracing/tracing/model/flow_event.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -47,7 +47,7 @@
 
     get userFriendlyName() {
       return 'Flow event named ' + this.title + ' at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.timestamp);
+          tr.b.Unit.byName.timeStampInMs.format(this.timestamp);
     }
   };
 
diff --git a/catapult/tracing/tracing/model/global_memory_dump.html b/catapult/tracing/tracing/model/global_memory_dump.html
index b41f295..6b8c618 100644
--- a/catapult/tracing/tracing/model/global_memory_dump.html
+++ b/catapult/tracing/tracing/model/global_memory_dump.html
@@ -6,11 +6,11 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/event_registry.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -80,7 +80,7 @@
 
     get userFriendlyName() {
       return 'Global memory dump at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.start);
+          tr.b.Unit.byName.timeStampInMs.format(this.start);
     },
 
     get containerName() {
@@ -223,7 +223,7 @@
       if (sizeNumeric !== undefined) {
         size = sizeNumeric.value;
         shouldDefineSize = true;
-        if (sizeNumeric.unit !== tr.v.Unit.byName.sizeInBytes_smallerIsBetter) {
+        if (sizeNumeric.unit !== tr.b.Unit.byName.sizeInBytes_smallerIsBetter) {
           this.model.importWarning({
             type: 'memory_dump_parse_error',
             message: 'Invalid unit of \'size\' numeric of memory allocator ' +
@@ -239,9 +239,9 @@
             type: 'memory_dump_parse_error',
             message: 'Size provided by memory allocator dump \'' +
                 dump.fullName + '\'' +
-                tr.v.Unit.byName.sizeInBytes.format(size) +
+                tr.b.Unit.byName.sizeInBytes.format(size) +
                 ') is less than ' + dependencyName + ' (' +
-                tr.v.Unit.byName.sizeInBytes.format(dependencySize) + ').'
+                tr.b.Unit.byName.sizeInBytes.format(dependencySize) + ').'
           });
           dump.infos.push({
             type: dependencyInfoType,
@@ -330,7 +330,7 @@
       size = Math.max(size, aggregatedChildrenSize, largestOwnerSize);
 
       dump.numerics[SIZE_NUMERIC_NAME] = new tr.v.ScalarNumeric(
-          tr.v.Unit.byName.sizeInBytes_smallerIsBetter, size);
+          tr.b.Unit.byName.sizeInBytes_smallerIsBetter, size);
 
       // Add a virtual child to make up for extra size of the dump with
       // respect to its children (if applicable).
@@ -341,7 +341,7 @@
         virtualChild.parent = dump;
         dump.children.unshift(virtualChild);
         virtualChild.numerics[SIZE_NUMERIC_NAME] = new tr.v.ScalarNumeric(
-            tr.v.Unit.byName.sizeInBytes_smallerIsBetter,
+            tr.b.Unit.byName.sizeInBytes_smallerIsBetter,
             size - aggregatedChildrenSize);
       }
     },
@@ -702,7 +702,7 @@
         });
       }
       dump.numerics[EFFECTIVE_SIZE_NUMERIC_NAME] = new tr.v.ScalarNumeric(
-          tr.v.Unit.byName.sizeInBytes_smallerIsBetter, effectiveSize);
+          tr.b.Unit.byName.sizeInBytes_smallerIsBetter, effectiveSize);
     },
 
     aggregateNumerics: function() {
diff --git a/catapult/tracing/tracing/model/global_memory_dump_test.html b/catapult/tracing/tracing/model/global_memory_dump_test.html
index d98739f..edab777 100644
--- a/catapult/tracing/tracing/model/global_memory_dump_test.html
+++ b/catapult/tracing/tracing/model/global_memory_dump_test.html
@@ -6,6 +6,7 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/importer/import.html">
 <link rel="import" href="/tracing/model/global_memory_dump.html">
@@ -14,7 +15,6 @@
 <link rel="import" href="/tracing/model/model.html">
 <link rel="import" href="/tracing/model/process_memory_dump.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -27,7 +27,7 @@
   var MemoryAllocatorDumpLink = tr.model.MemoryAllocatorDumpLink;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var newAllocatorDump = tr.model.MemoryDumpTestUtils.newAllocatorDump;
   var addChildDump = tr.model.MemoryDumpTestUtils.addChildDump;
   var addOwnershipLink = tr.model.MemoryDumpTestUtils.addOwnershipLink;
diff --git a/catapult/tracing/tracing/model/helpers/android_app.html b/catapult/tracing/tracing/model/helpers/android_app.html
index 8504a34..7831ad4 100644
--- a/catapult/tracing/tracing/model/helpers/android_app.html
+++ b/catapult/tracing/tracing/model/helpers/android_app.html
@@ -33,6 +33,8 @@
 
   var RENDER_THREAD_DRAW_NAME = 'DrawFrame';
   var RENDER_THREAD_INDEP_DRAW_NAME = 'doFrame';
+  var RENDER_THREAD_QUEUE_NAME = 'queueBuffer';
+  var RENDER_THREAD_SWAP_NAME = 'eglSwapBuffers';
   var THREAD_SYNC_NAME = 'syncFrameState';
 
   function getSlicesForThreadTimeRanges(threadTimeRanges) {
@@ -60,20 +62,32 @@
     return new Frame(events, threadTimeRanges, args);
   }
 
-  function findOverlappingDrawFrame(renderThread, time) {
+  function findOverlappingDrawFrame(renderThread, uiDrawSlice) {
     if (!renderThread)
       return undefined;
 
-    var slices = renderThread.sliceGroup.slices;
-    for (var i = 0; i < slices.length; i++) {
-      var slice = slices[i];
-      if (slice.title == RENDER_THREAD_DRAW_NAME &&
-          slice.start <= time &&
-          time <= slice.end) {
-        return slice;
-      }
-    }
-    return undefined;
+    // of all top level renderthread slices, find the one that has a 'sync'
+    // within the uiDrawSlice
+    var overlappingDrawFrame;
+    var slices = tr.b.iterateOverIntersectingIntervals(
+        renderThread.sliceGroup.slices,
+        function(range) { return range.start },
+        function(range) { return range.end },
+        uiDrawSlice.start,
+        uiDrawSlice.end,
+        function(rtDrawSlice) {
+          if (rtDrawSlice.title == RENDER_THREAD_DRAW_NAME) {
+            var rtSyncSlice = rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);
+            if (rtSyncSlice &&
+                rtSyncSlice.start >= uiDrawSlice.start &&
+                rtSyncSlice.end <= uiDrawSlice.end) {
+              // sync observed which overlaps ui draw. This means the RT draw
+              // corresponds to the UI draw
+              overlappingDrawFrame = rtDrawSlice;
+            }
+          }
+        });
+    return overlappingDrawFrame;
   }
 
   /**
@@ -124,6 +138,23 @@
     return traversalStart;
   }
 
+  function getRtFrameEndTime(rtDrawSlice) {
+      console.log(rtDrawSlice);
+    // First try and get time that frame is queued:
+    var rtQueueSlice = rtDrawSlice.findDescendentSlice(
+        RENDER_THREAD_QUEUE_NAME);
+    if (rtQueueSlice) {
+      return rtQueueSlice.end;
+    }
+    // failing that, end of swapbuffers:
+    var rtSwapSlice = rtDrawSlice.findDescendentSlice(RENDER_THREAD_SWAP_NAME);
+    if (rtSwapSlice) {
+      return rtSwapSlice.end;
+    }
+    // failing that, end of renderthread frame trace
+    return rtDrawSlice.end;
+  }
+
   function getUiThreadDrivenFrames(app) {
     if (!app.uiThread)
       return [];
@@ -149,7 +180,7 @@
       // on SDK 21+ devices with RenderThread,
       // account for time taken on RenderThread
       var rtDrawSlice = findOverlappingDrawFrame(
-          app.renderThread, slice.end);
+          app.renderThread, slice);
       if (rtDrawSlice) {
         var rtSyncSlice = rtDrawSlice.findDescendentSlice(THREAD_SYNC_NAME);
         if (rtSyncSlice) {
@@ -162,7 +193,7 @@
         threadTimeRanges.push({
           thread: app.renderThread,
           start: rtDrawSlice.start,
-          end: rtDrawSlice.end
+          end: getRtFrameEndTime(rtDrawSlice)
         });
       }
       frames.push(makeFrame(threadTimeRanges, app.surfaceFlinger));
@@ -251,7 +282,7 @@
 
     this.frames_ = undefined;
     this.inputs_ = undefined;
-  };
+  }
 
   AndroidApp.createForProcessIfPossible = function(process, surfaceFlinger) {
     var uiThread = process.getThread(process.pid);
diff --git a/catapult/tracing/tracing/model/helpers/android_model_helper_test.html b/catapult/tracing/tracing/model/helpers/android_model_helper_test.html
index b6a9f0a..9d9de28 100644
--- a/catapult/tracing/tracing/model/helpers/android_model_helper_test.html
+++ b/catapult/tracing/tracing/model/helpers/android_model_helper_test.html
@@ -75,23 +75,25 @@
     function(model) {
       var uiThread = model.getOrCreateProcess(120).getOrCreateThread(120);
 
-      // UI thread time - 19 (from 10 to 29)
+      // UI thread time - 19 (from 10 to 29, ignored after)
       uiThread.asyncSliceGroup.push(
         newAsyncSliceNamed('deliverInputEvent', 10, 9, uiThread, uiThread));
       uiThread.sliceGroup.pushSlice(newSliceEx(
-          {title: 'performTraversals', start: 20, duration: 10}));
+          {title: 'performTraversals', start: 20, duration: 110}));
       uiThread.sliceGroup.pushSlice(newSliceEx(
-          {title: 'draw', start: 20, duration: 8}));
+          {title: 'draw', start: 20, duration: 108}));
       uiThread.sliceGroup.pushSlice(newSliceEx(
           {title: 'Record View#draw()', start: 20, duration: 8}));
 
-      // RenderThread time - 61 (from 29 to 90)
+      // RenderThread time - 61 (from 29 to 90, ignored after)
       var renderThread = model.getOrCreateProcess(120).getOrCreateThread(200);
       renderThread.name = 'RenderThread';
       renderThread.sliceGroup.pushSlice(newSliceEx(
-          {title: 'DrawFrame', start: 29, duration: 61}));
+          {title: 'DrawFrame', start: 29, duration: 70}));
       renderThread.sliceGroup.pushSlice(newSliceEx(
           {title: 'syncFrameState', start: 29, duration: 1}));
+      renderThread.sliceGroup.pushSlice(newSliceEx(
+          {title: 'queueBuffer', start: 89, duration: 1}));
 
       model.uiThread = uiThread;
       model.renderThread = renderThread;
diff --git a/catapult/tracing/tracing/model/instant_event.html b/catapult/tracing/tracing/model/instant_event.html
index be17877..2f8d4b0 100644
--- a/catapult/tracing/tracing/model/instant_event.html
+++ b/catapult/tracing/tracing/model/instant_event.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -31,7 +31,7 @@
     this.args = args;
 
     this.type = undefined;
-  };
+  }
 
   InstantEvent.prototype = {
     __proto__: tr.model.TimedEvent.prototype
@@ -49,13 +49,13 @@
   function GlobalInstantEvent(category, title, colorId, start, args) {
     InstantEvent.apply(this, arguments);
     this.type = InstantEventType.GLOBAL;
-  };
+  }
 
   GlobalInstantEvent.prototype = {
     __proto__: InstantEvent.prototype,
     get userFriendlyName() {
       return 'Global instant event ' + this.title + ' @ ' +
-          tr.v.Unit.byName.timeStampInMs.format(start);
+          tr.b.Unit.byName.timeStampInMs.format(start);
     }
   };
 
@@ -70,14 +70,14 @@
   function ProcessInstantEvent(category, title, colorId, start, args) {
     InstantEvent.apply(this, arguments);
     this.type = InstantEventType.PROCESS;
-  };
+  }
 
   ProcessInstantEvent.prototype = {
     __proto__: InstantEvent.prototype,
 
     get userFriendlyName() {
       return 'Process-level instant event ' + this.title + ' @ ' +
-          tr.v.Unit.byName.timeStampInMs.format(start);
+          tr.b.Unit.byName.timeStampInMs.format(start);
     }
   };
 
diff --git a/catapult/tracing/tracing/model/memory_allocator_dump.html b/catapult/tracing/tracing/model/memory_allocator_dump.html
index 5e83a75..65ecfa9 100644
--- a/catapult/tracing/tracing/model/memory_allocator_dump.html
+++ b/catapult/tracing/tracing/model/memory_allocator_dump.html
@@ -6,8 +6,8 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -59,7 +59,7 @@
 
     // For debugging purposes.
     this.guid = opt_guid;
-  };
+  }
 
   /**
    * Size numeric names. Please refer to the Memory Dump Graph Metric
@@ -142,7 +142,7 @@
     }
   };
 
-  // TODO(petrcermak): Consider moving this to tr.v.Numeric.
+  // TODO(petrcermak): Consider moving this to tr.v.Histogram.
   MemoryAllocatorDump.aggregateNumerics = function(numerics, opt_model) {
     var shouldLogWarning = !!opt_model;
     var aggregatedUnit = undefined;
@@ -167,7 +167,7 @@
         }
         // Use the most generic unit when the numerics don't agree (best
         // effort).
-        aggregatedUnit = tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+        aggregatedUnit = tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
       }
 
       aggregatedValue += numeric.value;
diff --git a/catapult/tracing/tracing/model/memory_allocator_dump_test.html b/catapult/tracing/tracing/model/memory_allocator_dump_test.html
index 4d61177..47df6ec 100644
--- a/catapult/tracing/tracing/model/memory_allocator_dump_test.html
+++ b/catapult/tracing/tracing/model/memory_allocator_dump_test.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
 <link rel="import" href="/tracing/model/memory_dump_test_utils.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -20,9 +20,9 @@
   var MemoryAllocatorDumpLink = tr.model.MemoryAllocatorDumpLink;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
-  var sizeInBytes = tr.v.Unit.byName.sizeInBytes;
-  var powerInWatts = tr.v.Unit.byName.powerInWatts;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
+  var sizeInBytes = tr.b.Unit.byName.sizeInBytes;
+  var powerInWatts = tr.b.Unit.byName.powerInWatts;
   var newAllocatorDump = tr.model.MemoryDumpTestUtils.newAllocatorDump;
   var addChildDump = tr.model.MemoryDumpTestUtils.addChildDump;
   var checkDumpNumericsAndDiagnostics =
diff --git a/catapult/tracing/tracing/model/memory_dump_test_utils.html b/catapult/tracing/tracing/model/memory_dump_test_utils.html
index 9d88807..eaad055 100644
--- a/catapult/tracing/tracing/model/memory_dump_test_utils.html
+++ b/catapult/tracing/tracing/model/memory_dump_test_utils.html
@@ -5,13 +5,13 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/global_memory_dump.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
 <link rel="import" href="/tracing/model/process_memory_dump.html">
 <link rel="import" href="/tracing/model/vm_region.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -28,7 +28,7 @@
   var VMRegionClassificationNode = tr.model.VMRegionClassificationNode;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var LIGHT = tr.model.ContainerMemoryDump.LevelOfDetail.LIGHT;
 
   function castToScalarNumeric(value) {
diff --git a/catapult/tracing/tracing/model/model.html b/catapult/tracing/tracing/model/model.html
index 2ddab09..2f20a22 100644
--- a/catapult/tracing/tracing/model/model.html
+++ b/catapult/tracing/tracing/model/model.html
@@ -11,6 +11,8 @@
 <link rel="import" href="/tracing/base/quad.html">
 <link rel="import" href="/tracing/base/range.html">
 <link rel="import" href="/tracing/base/task.html">
+<link rel="import" href="/tracing/base/time_display_modes.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/auditor.html">
 <link rel="import" href="/tracing/core/filter.html">
 <link rel="import" href="/tracing/model/alert.html">
@@ -31,8 +33,6 @@
 <link rel="import" href="/tracing/model/stack_frame.html">
 <link rel="import" href="/tracing/model/user_model/user_expectation.html">
 <link rel="import" href="/tracing/model/user_model/user_model.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -196,7 +196,7 @@
     convertTimestampToModelTime: function(sourceClockDomainName, ts) {
       if (sourceClockDomainName !== 'traceEventClock')
         throw new Error('Only traceEventClock is supported.');
-      return tr.v.Unit.timestampFromUs(ts) +
+      return tr.b.Unit.timestampFromUs(ts) +
         this.timestampShiftToZeroAmount_;
     },
 
@@ -368,7 +368,7 @@
      */
     get intrinsicTimeUnit() {
       if (this.intrinsicTimeUnit_ === undefined)
-        return tr.v.TimeDisplayModes.ms;
+        return tr.b.TimeDisplayModes.ms;
       return this.intrinsicTimeUnit_;
     },
 
diff --git a/catapult/tracing/tracing/model/model_stats.html b/catapult/tracing/tracing/model/model_stats.html
index fd5bf95..8a3f1d4 100644
--- a/catapult/tracing/tracing/model/model_stats.html
+++ b/catapult/tracing/tracing/model/model_stats.html
@@ -5,8 +5,7 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/base/base.html">
-<link rel="import" href="/tracing/value/unit.html">
+<link rel="import" href="/tracing/base/unit.html">
 
 <script>
 'use strict';
@@ -47,7 +46,7 @@
       eventStats.numEvents++;
 
       var timeIntervalKey = Math.floor(
-          tr.v.Unit.timestampFromUs(ts) / this.TIME_INTERVAL_SIZE_IN_MS);
+          tr.b.Unit.timestampFromUs(ts) / this.TIME_INTERVAL_SIZE_IN_MS);
       var eventStatsByTimeInverval =
           this.traceEventStatsInTimeIntervals_.get(timeIntervalKey);
       if (eventStatsByTimeInverval === undefined) {
diff --git a/catapult/tracing/tracing/model/model_test.html b/catapult/tracing/tracing/model/model_test.html
index 7adad06..88e9d1a 100644
--- a/catapult/tracing/tracing/model/model_test.html
+++ b/catapult/tracing/tracing/model/model_test.html
@@ -5,12 +5,12 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/time_display_modes.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/extras/importer/trace_event_importer.html">
 <link rel="import" href="/tracing/importer/import.html">
 <link rel="import" href="/tracing/model/annotation.html">
 <link rel="import" href="/tracing/model/model.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
 
 <script>
 'use strict';
@@ -273,7 +273,7 @@
   });
 
   test('model_intrinsicTimeUnit', function() {
-    var unit = tr.v.TimeDisplayModes;
+    var unit = tr.b.TimeDisplayModes;
     var m = new tr.Model();
 
     // by default it should be milliseconds
diff --git a/catapult/tracing/tracing/model/object_snapshot.html b/catapult/tracing/tracing/model/object_snapshot.html
index 428324d..0bf19e6 100644
--- a/catapult/tracing/tracing/model/object_snapshot.html
+++ b/catapult/tracing/tracing/model/object_snapshot.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -74,7 +74,7 @@
       return 'Snapshot of ' +
              this.objectInstance.typeName + ' ' +
              this.objectInstance.id + ' @ ' +
-             tr.v.Unit.byName.timeStampInMs.format(this.ts);
+             tr.b.Unit.byName.timeStampInMs.format(this.ts);
     }
   };
 
diff --git a/catapult/tracing/tracing/model/power_sample.html b/catapult/tracing/tracing/model/power_sample.html
index 19d846f..d4809c1 100644
--- a/catapult/tracing/tracing/model/power_sample.html
+++ b/catapult/tracing/tracing/model/power_sample.html
@@ -17,17 +17,17 @@
   var EventRegistry = tr.model.EventRegistry;
 
   /**
-   * A sample that contains a power measurement (in mW).
+   * A sample that contains a power measurement (in W).
    *
    * @constructor
    * @extends {Event}
    */
-  function PowerSample(series, start, power) {
+  function PowerSample(series, start, powerInW) {
     Event.call(this);
 
     this.series_ = series;
     this.start_ = start;
-    this.power_ = power;
+    this.powerInW_ = powerInW;
   }
 
   PowerSample.prototype = {
@@ -45,12 +45,12 @@
       this.start_ = value;
     },
 
-    get power() {
-      return this.power_;
+    get powerInW() {
+      return this.powerInW_;
     },
 
-    set power(value) {
-      this.power_ = value;
+    set powerInW(value) {
+      this.powerInW_ = value;
     },
 
     addBoundsToRange: function(range) {
diff --git a/catapult/tracing/tracing/model/power_sample_test.html b/catapult/tracing/tracing/model/power_sample_test.html
index 6625ed4..d90fb37 100644
--- a/catapult/tracing/tracing/model/power_sample_test.html
+++ b/catapult/tracing/tracing/model/power_sample_test.html
@@ -24,11 +24,11 @@
 
     assert.equal(sample1.series, series);
     assert.equal(sample1.start, 0.0);
-    assert.equal(sample1.power, 1000.0);
+    assert.equal(sample1.powerInW, 1000.0);
 
     assert.equal(sample2.series, series);
     assert.equal(sample2.start, 1.0);
-    assert.equal(sample2.power, 2000.0);
+    assert.equal(sample2.powerInW, 2000.0);
   });
 
   test('addBoundsToRange', function() {
diff --git a/catapult/tracing/tracing/model/power_series.html b/catapult/tracing/tracing/model/power_series.html
index f3a873b..e544241 100644
--- a/catapult/tracing/tracing/model/power_series.html
+++ b/catapult/tracing/tracing/model/power_series.html
@@ -7,6 +7,7 @@
 
 <link rel="import" href="/tracing/base/range.html">
 <link rel="import" href="/tracing/base/sorted_array_utils.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 <link rel="import" href="/tracing/model/event_container.html">
 <link rel="import" href="/tracing/model/power_sample.html">
 
@@ -60,10 +61,10 @@
      * Returns the total energy (in Joules) consumed between the specified
      * start and end timestamps (in milliseconds).
      */
-    getEnergyConsumed: function(start, end) {
+    getEnergyConsumedInJ: function(start, end) {
       var measurementRange = tr.b.Range.fromExplicitRange(start, end);
 
-      var energyConsumed = 0;
+      var energyConsumedInJ = 0;
       var startIndex = tr.b.findLowIndexInSortedArray(
           this.samples, x => x.start, start) - 1;
       var endIndex = tr.b.findLowIndexInSortedArray(
@@ -80,15 +81,16 @@
         sampleRange.addValue(sample.start);
         sampleRange.addValue(nextSample ? nextSample.start : sample.start);
 
-        var timeIntersection = measurementRange.findIntersection(sampleRange);
+        var intersectionRangeInMs = measurementRange.findIntersection(
+            sampleRange);
 
-        // Divide by 1000 to convert milliseconds to seconds.
-        var durationInSeconds = timeIntersection.duration / 1000;
+        var durationInS = tr.b.convertUnit(intersectionRangeInMs.duration,
+            tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
 
-        energyConsumed += durationInSeconds * sample.power;
+        energyConsumedInJ += durationInS * sample.powerInW;
       }
 
-      return energyConsumed;
+      return energyConsumedInJ;
     },
 
     getSamplesWithinRange: function(start, end) {
diff --git a/catapult/tracing/tracing/model/power_series_test.html b/catapult/tracing/tracing/model/power_series_test.html
index 034cae8..10bb85f 100644
--- a/catapult/tracing/tracing/model/power_series_test.html
+++ b/catapult/tracing/tracing/model/power_series_test.html
@@ -47,7 +47,7 @@
     series.addPowerSample(0, 1);
     series.addPowerSample(1000, 2);
 
-    assert.equal(series.getEnergyConsumed(0, 1000), 1);
+    assert.equal(series.getEnergyConsumedInJ(0, 1000), 1);
   });
 
   test('getEnergyConsumed_twoIntervals', function() {
@@ -56,14 +56,14 @@
     series.addPowerSample(1000, 2);
     series.addPowerSample(2000, 2);
 
-    assert.equal(series.getEnergyConsumed(0, 2000), 3);
+    assert.equal(series.getEnergyConsumedInJ(0, 2000), 3);
   });
 
   test('getEnergyConsumed_oneSample', function() {
     var series = new PowerSeries(new Model().device);
     series.addPowerSample(1000, 1);
 
-    assert.equal(series.getEnergyConsumed(0, 2000), 0);
+    assert.equal(series.getEnergyConsumedInJ(0, 2000), 0);
   });
 
   test('getEnergyConsumed_samplesAfterStart', function() {
@@ -71,7 +71,7 @@
     series.addPowerSample(1000, 1);
     series.addPowerSample(2000, 2);
 
-    assert.equal(series.getEnergyConsumed(0, 2000), 1);
+    assert.equal(series.getEnergyConsumedInJ(0, 2000), 1);
   });
 
   test('getEnergyConsumed_extraSamplesBeforeStart', function() {
@@ -81,7 +81,7 @@
     series.addPowerSample(2000, 1);
     series.addPowerSample(3000, 1);
 
-    assert.equal(series.getEnergyConsumed(2000, 4000), 1);
+    assert.equal(series.getEnergyConsumedInJ(2000, 4000), 1);
   });
 
   test('getEnergyConsumed_extraSamplesAfterEnd', function() {
@@ -91,7 +91,7 @@
     series.addPowerSample(2000, 1);
     series.addPowerSample(3000, 10);
 
-    assert.equal(series.getEnergyConsumed(0, 2000), 2);
+    assert.equal(series.getEnergyConsumedInJ(0, 2000), 2);
   });
 
   test('shiftTimestampsForward', function() {
diff --git a/catapult/tracing/tracing/model/process_memory_dump.html b/catapult/tracing/tracing/model/process_memory_dump.html
index 4fce017..7f806bc 100644
--- a/catapult/tracing/tracing/model/process_memory_dump.html
+++ b/catapult/tracing/tracing/model/process_memory_dump.html
@@ -5,10 +5,10 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/container_memory_dump.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
 <link rel="import" href="/tracing/model/vm_region.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -63,14 +63,14 @@
 
     this.tracingOverheadOwnershipSetUp_ = false;
     this.tracingOverheadDiscountedFromVmRegions_ = false;
-  };
+  }
 
   ProcessMemoryDump.prototype = {
     __proto__: tr.model.ContainerMemoryDump.prototype,
 
     get userFriendlyName() {
       return 'Process memory dump at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.start);
+          tr.b.Unit.byName.timeStampInMs.format(this.start);
     },
 
     get containerName() {
diff --git a/catapult/tracing/tracing/model/process_memory_dump_test.html b/catapult/tracing/tracing/model/process_memory_dump_test.html
index 364a38b..c8d6d48 100644
--- a/catapult/tracing/tracing/model/process_memory_dump_test.html
+++ b/catapult/tracing/tracing/model/process_memory_dump_test.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/model/global_memory_dump.html">
 <link rel="import" href="/tracing/model/memory_dump_test_utils.html">
@@ -12,7 +13,6 @@
 <link rel="import" href="/tracing/model/process_memory_dump.html">
 <link rel="import" href="/tracing/model/vm_region.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -24,7 +24,7 @@
   var VMRegionClassificationNode = tr.model.VMRegionClassificationNode;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var newAllocatorDump = tr.model.MemoryDumpTestUtils.newAllocatorDump;
   var addChildDump = tr.model.MemoryDumpTestUtils.addChildDump;
   var addOwnershipLink = tr.model.MemoryDumpTestUtils.addOwnershipLink;
diff --git a/catapult/tracing/tracing/model/sample.html b/catapult/tracing/tracing/model/sample.html
index fabe992..48435cf 100644
--- a/catapult/tracing/tracing/model/sample.html
+++ b/catapult/tracing/tracing/model/sample.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -49,7 +49,7 @@
     },
 
     get userFriendlyName() {
-      return 'Sample at ' + tr.v.Unit.byName.timeStampInMs.format(this.start);
+      return 'Sample at ' + tr.b.Unit.byName.timeStampInMs.format(this.start);
     }
   };
 
diff --git a/catapult/tracing/tracing/model/slice.html b/catapult/tracing/tracing/model/slice.html
index eeff31e..533a7d8 100644
--- a/catapult/tracing/tracing/model/slice.html
+++ b/catapult/tracing/tracing/model/slice.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -76,7 +76,7 @@
 
     get userFriendlyName() {
       return 'Slice ' + this.title + ' at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.start);
+          tr.b.Unit.byName.timeStampInMs.format(this.start);
     },
 
     get stableId() {
diff --git a/catapult/tracing/tracing/model/timed_event.html b/catapult/tracing/tracing/model/timed_event.html
index 381a8a2..e1d0312 100644
--- a/catapult/tracing/tracing/model/timed_event.html
+++ b/catapult/tracing/tracing/model/timed_event.html
@@ -6,8 +6,8 @@
 -->
 
 <link rel="import" href="/tracing/base/guid.html">
+<link rel="import" href="/tracing/base/time_display_modes.html">
 <link rel="import" href="/tracing/model/event.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
 
 <script>
 'use strict';
@@ -46,7 +46,7 @@
     // event.
     bounds: function(that, opt_precisionUnit) {
       if (opt_precisionUnit === undefined)
-        opt_precisionUnit = tr.v.TimeDisplayModes.ms;
+        opt_precisionUnit = tr.b.TimeDisplayModes.ms;
 
       var startsBefore = opt_precisionUnit.roundedLess(that.start, this.start);
       var endsAfter = opt_precisionUnit.roundedLess(this.end, that.end);
diff --git a/catapult/tracing/tracing/model/timed_event_test.html b/catapult/tracing/tracing/model/timed_event_test.html
index 4beba91..5659b71 100644
--- a/catapult/tracing/tracing/model/timed_event_test.html
+++ b/catapult/tracing/tracing/model/timed_event_test.html
@@ -7,14 +7,13 @@
 
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
   test('bounds_startPrecision', function() {
-    var unit = tr.v.TimeDisplayModes;
+    var unit = tr.b.TimeDisplayModes;
 
     var outer = new tr.model.TimedEvent(10.0001);
     outer.duration = 0.9999;
@@ -28,7 +27,7 @@
   });
 
   test('bounds_endPrecision', function() {
-    var unit = tr.v.TimeDisplayModes;
+    var unit = tr.b.TimeDisplayModes;
 
     var outer = new tr.model.TimedEvent(10.0000);
     outer.duration = 0.9999;
@@ -42,4 +41,3 @@
   });
 });
 </script>
-
diff --git a/catapult/tracing/tracing/model/user_model/user_expectation.html b/catapult/tracing/tracing/model/user_model/user_expectation.html
index 5b62edf..3ef6168 100644
--- a/catapult/tracing/tracing/model/user_model/user_expectation.html
+++ b/catapult/tracing/tracing/model/user_model/user_expectation.html
@@ -7,10 +7,10 @@
 
 <link rel="import" href="/tracing/base/range_utils.html">
 <link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/compound_event_selection_state.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/model/timed_event.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -65,7 +65,7 @@
 
     get userFriendlyName() {
       return this.title + ' User Expectation at ' +
-          tr.v.Unit.byName.timeStampInMs.format(this.start);
+          tr.b.Unit.byName.timeStampInMs.format(this.start);
     },
 
     get stableId() {
diff --git a/catapult/tracing/tracing/model/user_model/user_model.html b/catapult/tracing/tracing/model/user_model/user_model.html
index 69e122f..07d73f3 100644
--- a/catapult/tracing/tracing/model/user_model/user_model.html
+++ b/catapult/tracing/tracing/model/user_model/user_model.html
@@ -29,9 +29,7 @@
     },
 
     sortExpectations: function() {
-      Array.prototype.sort.call(this.expectations_, function(x, y) {
-        return x.start - y.start;
-      });
+      this.expectations_.sortEvents((x, y) => (x.start - y.start));
     },
 
     get expectations() {
diff --git a/catapult/perf_insights/perf_insights/mre/__init__.py b/catapult/tracing/tracing/mre/__init__.py
similarity index 100%
rename from catapult/perf_insights/perf_insights/mre/__init__.py
rename to catapult/tracing/tracing/mre/__init__.py
diff --git a/catapult/perf_insights/perf_insights/mre/cloud_storage.py b/catapult/tracing/tracing/mre/cloud_storage.py
similarity index 93%
rename from catapult/perf_insights/perf_insights/mre/cloud_storage.py
rename to catapult/tracing/tracing/mre/cloud_storage.py
index 0df1638..877ddaa 100644
--- a/catapult/perf_insights/perf_insights/mre/cloud_storage.py
+++ b/catapult/tracing/tracing/mre/cloud_storage.py
@@ -47,8 +47,7 @@
 
 
 def Copy(src, dst):
-  # TODO(simonhatch): Once catapult_base is migrated to catapult, let's
-  # use cloud_storage.py instead of duplicating a lot of the code here.
+  # TODO(simonhatch): switch to use py_utils.cloud_storage.
   args = [sys.executable, _GSUTIL_PATH, 'cp', src, dst]
   gsutil = subprocess.Popen(args, stdout=subprocess.PIPE,
                             stderr=subprocess.PIPE)
diff --git a/catapult/perf_insights/perf_insights/mre/corpus_driver.py b/catapult/tracing/tracing/mre/corpus_driver.py
similarity index 82%
rename from catapult/perf_insights/perf_insights/mre/corpus_driver.py
rename to catapult/tracing/tracing/mre/corpus_driver.py
index c8666f7..28bb8a2 100644
--- a/catapult/perf_insights/perf_insights/mre/corpus_driver.py
+++ b/catapult/tracing/tracing/mre/corpus_driver.py
@@ -5,5 +5,5 @@
 
 class CorpusDriver(object):
 
-  def GetTraceHandlesMatchingQuery(self, query):
+  def GetTraceHandles(self):
     raise NotImplementedError()
diff --git a/catapult/tracing/tracing/mre/corpus_driver_cmdline.py b/catapult/tracing/tracing/mre/corpus_driver_cmdline.py
new file mode 100644
index 0000000..06d70ba
--- /dev/null
+++ b/catapult/tracing/tracing/mre/corpus_driver_cmdline.py
@@ -0,0 +1,23 @@
+# Copyright (c) 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+from tracing.mre import local_directory_corpus_driver
+
+
+_CORPUS_DRIVERS = {
+    'local-directory': {
+        'description': 'Use traces from a local directory.',
+        'class': local_directory_corpus_driver.LocalDirectoryCorpusDriver
+    }
+}
+_CORPUS_DRIVER_DEFAULT = 'local-directory'
+
+
+def GetCorpusDriver(parser, args):
+  # With parse_known_args, optional arguments aren't guaranteed to be there so
+  # we need to check if it's there, and use the default otherwise.
+  corpus = _CORPUS_DRIVER_DEFAULT
+
+  cls = _CORPUS_DRIVERS[corpus]['class']
+  init_args = cls.CheckAndCreateInitArguments(parser, args)
+  return cls(**init_args)
diff --git a/catapult/perf_insights/perf_insights/mre/failure.html b/catapult/tracing/tracing/mre/failure.html
similarity index 96%
rename from catapult/perf_insights/perf_insights/mre/failure.html
rename to catapult/tracing/tracing/mre/failure.html
index bb34dfc..39b8460 100644
--- a/catapult/perf_insights/perf_insights/mre/failure.html
+++ b/catapult/tracing/tracing/mre/failure.html
@@ -9,7 +9,7 @@
 <script>
 'use strict';
 
-tr.exportTo('pi.mre', function() {
+tr.exportTo('tr.mre', function() {
   function Failure(job, functionHandleString, traceCanonicalUrl,
                    failureTypeName, description, stack) {
     this.job = job;
diff --git a/catapult/perf_insights/perf_insights/mre/failure.py b/catapult/tracing/tracing/mre/failure.py
similarity index 81%
rename from catapult/perf_insights/perf_insights/mre/failure.py
rename to catapult/tracing/tracing/mre/failure.py
index 8c07843..8c0713e 100644
--- a/catapult/perf_insights/perf_insights/mre/failure.py
+++ b/catapult/tracing/tracing/mre/failure.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-from perf_insights.mre import job as job_module
+from tracing.mre import job as job_module
 
 
 class Failure(object):
@@ -20,11 +20,11 @@
 
   def __str__(self):
     return (
-      'Failure for job %s with function handle %s and trace handle %s:\n'
-      'of type %s wtih description %s. Stack:\n\n%s' % (
-        self.job.guid, self.function_handle.guid,
-        self.trace_handle.canonical_url,
-        self.failure_type_name, self.description, self.stack))
+        'Failure for job %s with function handle %s and trace handle %s:\n'
+        'of type %s wtih description %s. Stack:\n\n%s' % (
+            self.job.guid, self.function_handle_string,
+            self.trace_canonical_url, self.failure_type_name,
+            self.description, self.stack))
 
   def AsDict(self):
     return {
diff --git a/catapult/perf_insights/perf_insights/mre/failure_test.html b/catapult/tracing/tracing/mre/failure_test.html
similarity index 85%
rename from catapult/perf_insights/perf_insights/mre/failure_test.html
rename to catapult/tracing/tracing/mre/failure_test.html
index cb8dc0a..6a76da0 100644
--- a/catapult/perf_insights/perf_insights/mre/failure_test.html
+++ b/catapult/tracing/tracing/mre/failure_test.html
@@ -5,14 +5,14 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/failure.html">
+<link rel="import" href="/tracing/mre/failure.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
   test('failureAsDictTest', function() {
-    var failure = new pi.mre.Failure(undefined, 'foo.html:Foo',
+    var failure = new tr.mre.Failure(undefined, 'foo.html:Foo',
                                      'file://foo.html', 'err', 'desc', 'stack');
 
     assert.deepEqual(failure.asDict(), {
@@ -33,7 +33,7 @@
       stack: 'stack'
     };
 
-    var failure = pi.mre.Failure.fromDict(failureDict);
+    var failure = tr.mre.Failure.fromDict(failureDict);
 
     assert.equal(failure.functionHandleString, 'foo.html:Foo');
     assert.equal(failure.traceCanonicalUrl, 'file://foo.html');
diff --git a/catapult/perf_insights/perf_insights/mre/failure_unittest.py b/catapult/tracing/tracing/mre/failure_unittest.py
similarity index 82%
rename from catapult/perf_insights/perf_insights/mre/failure_unittest.py
rename to catapult/tracing/tracing/mre/failure_unittest.py
index eb86f76..1140b17 100644
--- a/catapult/perf_insights/perf_insights/mre/failure_unittest.py
+++ b/catapult/tracing/tracing/mre/failure_unittest.py
@@ -4,9 +4,9 @@
 
 import unittest
 
-from perf_insights.mre import function_handle
-from perf_insights.mre import failure as failure_module
-from perf_insights.mre import job as job_module
+from tracing.mre import function_handle
+from tracing.mre import failure as failure_module
+from tracing.mre import job as job_module
 
 
 def _SingleFileFunctionHandle(filename, function_name, guid):
@@ -25,12 +25,12 @@
                                      'err', 'desc', 'stack')
 
     self.assertEquals(failure.AsDict(), {
-      'job_guid': '1',
-      'function_handle_string': 'foo.html:Foo',
-      'trace_canonical_url': 'file://foo.html',
-      'type': 'err',
-      'description': 'desc',
-      'stack': 'stack'
+        'job_guid': '1',
+        'function_handle_string': 'foo.html:Foo',
+        'trace_canonical_url': 'file://foo.html',
+        'type': 'err',
+        'description': 'desc',
+        'stack': 'stack'
     })
 
   def testFromDict(self):
diff --git a/catapult/perf_insights/perf_insights/mre/file_handle.html b/catapult/tracing/tracing/mre/file_handle.html
similarity index 98%
rename from catapult/perf_insights/perf_insights/mre/file_handle.html
rename to catapult/tracing/tracing/mre/file_handle.html
index 8c25593..85c1dd1 100644
--- a/catapult/perf_insights/perf_insights/mre/file_handle.html
+++ b/catapult/tracing/tracing/mre/file_handle.html
@@ -14,7 +14,7 @@
 <script>
 'use strict';
 
-tr.exportTo('pi.mre', function() {
+tr.exportTo('tr.mre', function() {
   function FileHandle(canonicalUrl) {
     this.canonicalUrl_ = canonicalUrl;
   }
diff --git a/catapult/perf_insights/perf_insights/mre/file_handle.py b/catapult/tracing/tracing/mre/file_handle.py
similarity index 97%
rename from catapult/perf_insights/perf_insights/mre/file_handle.py
rename to catapult/tracing/tracing/mre/file_handle.py
index 8205cf9..e89b2f3 100644
--- a/catapult/perf_insights/perf_insights/mre/file_handle.py
+++ b/catapult/tracing/tracing/mre/file_handle.py
@@ -6,7 +6,7 @@
 import os
 import tempfile
 
-from perf_insights.mre import cloud_storage
+from tracing.mre import cloud_storage
 
 
 class FilePreparationError(Exception):
diff --git a/catapult/perf_insights/perf_insights/mre/function_handle.html b/catapult/tracing/tracing/mre/function_handle.html
similarity index 98%
rename from catapult/perf_insights/perf_insights/mre/function_handle.html
rename to catapult/tracing/tracing/mre/function_handle.html
index 8c59394..b02889a 100644
--- a/catapult/perf_insights/perf_insights/mre/function_handle.html
+++ b/catapult/tracing/tracing/mre/function_handle.html
@@ -9,7 +9,7 @@
 <script>
 'use strict';
 
-tr.exportTo('pi', function() {
+tr.exportTo('tr.mre', function() {
 
   var FunctionRegistry = {
     allFunctions_: [],
diff --git a/catapult/perf_insights/perf_insights/mre/function_handle.py b/catapult/tracing/tracing/mre/function_handle.py
similarity index 97%
rename from catapult/perf_insights/perf_insights/mre/function_handle.py
rename to catapult/tracing/tracing/mre/function_handle.py
index da545b7..1efa5d6 100644
--- a/catapult/perf_insights/perf_insights/mre/function_handle.py
+++ b/catapult/tracing/tracing/mre/function_handle.py
@@ -49,8 +49,8 @@
 
   def __repr__(self):
     return 'FunctionHandle(modules_to_load=[%s], function_name="%s")' % (
-      ', '.join([str(module) for module in self.modules_to_load]),
-      self.function_name)
+        ', '.join([str(module) for module in self.modules_to_load]),
+        self.function_name)
 
   @property
   def guid(self):
diff --git a/catapult/perf_insights/perf_insights/mre/function_handle_test.html b/catapult/tracing/tracing/mre/function_handle_test.html
similarity index 61%
rename from catapult/perf_insights/perf_insights/mre/function_handle_test.html
rename to catapult/tracing/tracing/mre/function_handle_test.html
index 219d0cb..df917cc 100644
--- a/catapult/perf_insights/perf_insights/mre/function_handle_test.html
+++ b/catapult/tracing/tracing/mre/function_handle_test.html
@@ -5,20 +5,20 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/function_handle.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
   test('moduleToLoadExactlyOneHrefOrFilename', function() {
-    assert.throws(function() {pi.ModuleToLoad('foo', 'foo')});
-    assert.throws(pi.ModuleToLoad);
+    assert.throws(function() {tr.mre.ModuleToLoad('foo', 'foo')});
+    assert.throws(tr.mre.ModuleToLoad);
   });
 
   test('moduleToLoadAsDictTest', function() {
-    var mtl0 = new pi.ModuleToLoad('/foo');
-    var mtl1 = new pi.ModuleToLoad(undefined, 'foo.html');
+    var mtl0 = new tr.mre.ModuleToLoad('/foo');
+    var mtl1 = new tr.mre.ModuleToLoad(undefined, 'foo.html');
 
     assert.deepEqual(mtl0.asDict(), {'href': '/foo'});
     assert.deepEqual(mtl1.asDict(), {'filename': 'foo.html'});
@@ -32,8 +32,8 @@
       filename: 'foo.html'
     };
 
-    var mtl0 = pi.ModuleToLoad.fromDict(moduleDict0);
-    var mtl1 = pi.ModuleToLoad.fromDict(moduleDict1);
+    var mtl0 = tr.mre.ModuleToLoad.fromDict(moduleDict0);
+    var mtl1 = tr.mre.ModuleToLoad.fromDict(moduleDict1);
 
     assert.equal(mtl0.href, '/foo');
     assert.isUndefined(mtl0.filename);
@@ -42,8 +42,8 @@
   });
 
   test('moduleToLoadToStringTest', function() {
-    var mtl0 = new pi.ModuleToLoad('/foo');
-    var mtl1 = new pi.ModuleToLoad(undefined, 'foo.html');
+    var mtl0 = new tr.mre.ModuleToLoad('/foo');
+    var mtl1 = new tr.mre.ModuleToLoad(undefined, 'foo.html');
 
     assert.equal(
         mtl0.toString(),
@@ -54,16 +54,16 @@
   });
 
   test('modulesToLoadMustBeArrayTest', function() {
-    assert.throws(pi.FunctionHandle);
+    assert.throws(tr.mre.FunctionHandle);
   });
 
   test('functionNameMustBeStringTest', function() {
-    assert.throws(function() {pi.FunctionHandle([], 3);});
+    assert.throws(function() {tr.mre.FunctionHandle([], 3);});
   });
 
   test('asDictTest', function() {
-    var module = new pi.ModuleToLoad('/foo');
-    var handle = new pi.FunctionHandle([module], 'Bar', {'a': 'b'});
+    var module = new tr.mre.ModuleToLoad('/foo');
+    var handle = new tr.mre.FunctionHandle([module], 'Bar', {'a': 'b'});
 
     assert.deepEqual(handle.asDict(), {
       modules_to_load: [{href: '/foo'}],
@@ -78,7 +78,7 @@
       function_name: 'Bar'
     };
 
-    var handle = pi.FunctionHandle.fromDict(handleDict);
+    var handle = tr.mre.FunctionHandle.fromDict(handleDict);
 
     assert.equal(handle.modulesToLoad.length, 1);
     assert.equal(handle.modulesToLoad[0].href, '/foo');
@@ -86,31 +86,31 @@
   });
 
   test('hasHrefsTest', function() {
-    var module0 = new pi.ModuleToLoad('/foo');
-    var handle0 = new pi.FunctionHandle([module0], 'Bar');
-    var module1 = new pi.ModuleToLoad(undefined, 'foo.html');
-    var handle1 = new pi.FunctionHandle([module1], 'Bar');
+    var module0 = new tr.mre.ModuleToLoad('/foo');
+    var handle0 = new tr.mre.FunctionHandle([module0], 'Bar');
+    var module1 = new tr.mre.ModuleToLoad(undefined, 'foo.html');
+    var handle1 = new tr.mre.FunctionHandle([module1], 'Bar');
 
     assert.isTrue(handle0.hasHrefs());
     assert.isFalse(handle1.hasHrefs());
   });
 
   test('loadFailsWithHrefs', function() {
-    var module = new pi.ModuleToLoad('/foo');
-    var handle = new pi.FunctionHandle([module], 'railMapFunction');
+    var module = new tr.mre.ModuleToLoad('/foo');
+    var handle = new tr.mre.FunctionHandle([module], 'railMapFunction');
 
     assert.throws(handle.load);
   });
 
   test('loadFailsUnregistered', function() {
-    var handle = new pi.FunctionHandle([], 'Bar');
+    var handle = new tr.mre.FunctionHandle([], 'Bar');
 
     assert.throws(handle.load);
   });
 
   test('toStringTest', function() {
-    var module = new pi.ModuleToLoad('/foo');
-    var handle = new pi.FunctionHandle([module], 'Bar', {'a': 'b'});
+    var module = new tr.mre.ModuleToLoad('/foo');
+    var handle = new tr.mre.FunctionHandle([module], 'Bar', {'a': 'b'});
 
     assert.equal(
         handle.toString(),
diff --git a/catapult/perf_insights/perf_insights/mre/function_handle_unittest.py b/catapult/tracing/tracing/mre/function_handle_unittest.py
similarity index 97%
rename from catapult/perf_insights/perf_insights/mre/function_handle_unittest.py
rename to catapult/tracing/tracing/mre/function_handle_unittest.py
index b68dce2..d3bf71d 100644
--- a/catapult/perf_insights/perf_insights/mre/function_handle_unittest.py
+++ b/catapult/tracing/tracing/mre/function_handle_unittest.py
@@ -4,7 +4,7 @@
 
 import unittest
 
-from perf_insights.mre import function_handle
+from tracing.mre import function_handle
 
 
 class ModuleToLoadTests(unittest.TestCase):
diff --git a/catapult/perf_insights/perf_insights/mre/gtest_progress_reporter.py b/catapult/tracing/tracing/mre/gtest_progress_reporter.py
similarity index 98%
rename from catapult/perf_insights/perf_insights/mre/gtest_progress_reporter.py
rename to catapult/tracing/tracing/mre/gtest_progress_reporter.py
index eced00b..e59ff69 100644
--- a/catapult/perf_insights/perf_insights/mre/gtest_progress_reporter.py
+++ b/catapult/tracing/tracing/mre/gtest_progress_reporter.py
@@ -5,7 +5,7 @@
 import time
 import sys
 
-from perf_insights.mre import progress_reporter
+from tracing.mre import progress_reporter
 
 
 class GTestRunReporter(progress_reporter.RunReporter):
diff --git a/catapult/perf_insights/perf_insights/mre/job.html b/catapult/tracing/tracing/mre/job.html
similarity index 86%
rename from catapult/perf_insights/perf_insights/mre/job.html
rename to catapult/tracing/tracing/mre/job.html
index ce75908..6a34d50 100644
--- a/catapult/perf_insights/perf_insights/mre/job.html
+++ b/catapult/tracing/tracing/mre/job.html
@@ -4,13 +4,13 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mre/function_handle.html">
 <link rel="import" href="/tracing/base/guid.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
 
 <script>
 'use strict';
 
-tr.exportTo('pi.mre', function() {
+tr.exportTo('tr.mre', function() {
 
   function Job(mapFunctionHandle, opt_guid) {
     this.mapFunctionHandle_ = mapFunctionHandle;
@@ -35,7 +35,7 @@
   Job.fromDict = function(jobDict) {
     var mapFunctionHandle = null;
     if (jobDict.map_function_handle != null) {
-          mapFunctionHandle = pi.FunctionHandle.fromDict(
+          mapFunctionHandle = tr.mre.FunctionHandle.fromDict(
               jobDict.map_function_handle);
     }
 
diff --git a/catapult/perf_insights/perf_insights/mre/job.py b/catapult/tracing/tracing/mre/job.py
similarity index 88%
rename from catapult/perf_insights/perf_insights/mre/job.py
rename to catapult/tracing/tracing/mre/job.py
index 399334b..1c3a978 100644
--- a/catapult/perf_insights/perf_insights/mre/job.py
+++ b/catapult/tracing/tracing/mre/job.py
@@ -3,9 +3,7 @@
 # found in the LICENSE file.
 import uuid
 
-# pylint: disable=unused-import
-import perf_insights_project
-from perf_insights.mre import function_handle
+from tracing.mre import function_handle
 
 
 class Job(object):
diff --git a/catapult/perf_insights/perf_insights/mre/json_output_formatter.py b/catapult/tracing/tracing/mre/json_output_formatter.py
similarity index 92%
rename from catapult/perf_insights/perf_insights/mre/json_output_formatter.py
rename to catapult/tracing/tracing/mre/json_output_formatter.py
index 3d44b61..aafc883 100644
--- a/catapult/perf_insights/perf_insights/mre/json_output_formatter.py
+++ b/catapult/tracing/tracing/mre/json_output_formatter.py
@@ -3,7 +3,7 @@
 # found in the LICENSE file.
 import json
 
-from perf_insights.mre import output_formatter
+from tracing.mre import output_formatter
 
 
 class JSONOutputFormatter(output_formatter.OutputFormatter):
diff --git a/catapult/perf_insights/perf_insights/mre/local_directory_corpus_driver.py b/catapult/tracing/tracing/mre/local_directory_corpus_driver.py
similarity index 71%
rename from catapult/perf_insights/perf_insights/mre/local_directory_corpus_driver.py
rename to catapult/tracing/tracing/mre/local_directory_corpus_driver.py
index 0a25a72..c156f73 100644
--- a/catapult/perf_insights/perf_insights/mre/local_directory_corpus_driver.py
+++ b/catapult/tracing/tracing/mre/local_directory_corpus_driver.py
@@ -3,8 +3,8 @@
 # found in the LICENSE file.
 import os
 
-from perf_insights.mre import corpus_driver
-from perf_insights.mre import file_handle
+from tracing.mre import corpus_driver
+from tracing.mre import file_handle
 
 
 def _GetFilesIn(basedir):
@@ -26,25 +26,6 @@
   return data_files
 
 
-def _GetTagsForRelPath(relpath):
-  # Tags.
-  sub_dir = os.path.dirname(relpath)
-  if len(sub_dir) == 0:
-    return []
-  parts = sub_dir.split(os.sep)
-  return [p for p in parts if len(p) > 0]
-
-
-def _GetMetadataForFilename(base_directory, filename):
-  relpath = os.path.relpath(filename, base_directory)
-  tags = _GetTagsForRelPath(relpath)
-
-  metadata = {'tags': tags}
-
-  # TODO(nduca): Add modification time to metadata.
-  return metadata
-
-
 def _DefaultUrlResover(abspath):
   return 'file:///%s' % abspath
 
@@ -69,16 +50,12 @@
         '--trace_directory',
         help='Local directory containing traces to process.')
 
-  def GetTraceHandlesMatchingQuery(self, query):
+  def GetTraceHandles(self):
     trace_handles = []
 
     files = _GetFilesIn(self.directory)
     for rel_filename in files:
       filename = os.path.join(self.directory, rel_filename)
-      metadata = _GetMetadataForFilename(self.directory, filename)
-
-      if not query.Eval(metadata, len(trace_handles)):
-        continue
 
       url = self.url_resolver(filename)
       if url is None:
diff --git a/catapult/perf_insights/perf_insights/mre/map_runner.py b/catapult/tracing/tracing/mre/map_runner.py
similarity index 93%
rename from catapult/perf_insights/perf_insights/mre/map_runner.py
rename to catapult/tracing/tracing/mre/map_runner.py
index 561932a..5b3deca 100644
--- a/catapult/perf_insights/perf_insights/mre/map_runner.py
+++ b/catapult/tracing/tracing/mre/map_runner.py
@@ -4,9 +4,9 @@
 import multiprocessing
 import sys
 
-from perf_insights.mre import map_single_trace
-from perf_insights.mre import threaded_work_queue
-from perf_insights.mre import gtest_progress_reporter
+from tracing.mre import map_single_trace
+from tracing.mre import threaded_work_queue
+from tracing.mre import gtest_progress_reporter
 
 AUTO_JOB_COUNT = -1
 
@@ -29,7 +29,7 @@
     self._failed_canonical_url_to_dump = None
     if progress_reporter is None:
       self._progress_reporter = gtest_progress_reporter.GTestProgressReporter(
-                                    sys.stdout)
+          sys.stdout)
     else:
       self._progress_reporter = progress_reporter
     self._output_formatters = output_formatters or []
diff --git a/catapult/perf_insights/perf_insights/mre/map_single_trace.html b/catapult/tracing/tracing/mre/map_single_trace.html
similarity index 93%
rename from catapult/perf_insights/perf_insights/mre/map_single_trace.html
rename to catapult/tracing/tracing/mre/map_single_trace.html
index b528ac1..6dea20f 100644
--- a/catapult/perf_insights/perf_insights/mre/map_single_trace.html
+++ b/catapult/tracing/tracing/mre/map_single_trace.html
@@ -4,7 +4,6 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mre/failure.html">
 <link rel="import" href="/tracing/base/base.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/utils.html">
@@ -12,13 +11,14 @@
 <link rel="import" href="/tracing/extras/full_config.html">
 <link rel="import" href="/tracing/importer/import.html">
 <link rel="import" href="/tracing/model/model.html">
+<link rel="import" href="/tracing/mre/failure.html">
 
 <script>
 'use strict';
 
-tr.exportTo('pi', function() {
+tr.exportTo('tr.mre', function() {
 
-  var Failure = pi.mre.Failure;
+  var Failure = tr.mre.Failure;
 
   function runAndConvertErrorsToFailures(result, job,
                                          traceHandle, cb, opt_this) {
diff --git a/catapult/perf_insights/perf_insights/mre/map_single_trace.py b/catapult/tracing/tracing/mre/map_single_trace.py
similarity index 70%
rename from catapult/perf_insights/perf_insights/mre/map_single_trace.py
rename to catapult/tracing/tracing/mre/map_single_trace.py
index 1777658..4a8d2fd 100644
--- a/catapult/perf_insights/perf_insights/mre/map_single_trace.py
+++ b/catapult/tracing/tracing/mre/map_single_trace.py
@@ -8,14 +8,14 @@
 import tempfile
 import types
 
-import perf_insights_project
+import tracing_project
 import vinn
 
-from perf_insights.mre import failure
-from perf_insights.mre import mre_result
+from tracing.mre import failure
+from tracing.mre import mre_result
 
 _MAP_SINGLE_TRACE_CMDLINE_PATH = os.path.join(
-    perf_insights_project.PerfInsightsProject.perf_insights_src_path, 'mre',
+    tracing_project.TracingProject.tracing_src_path, 'mre',
     'map_single_trace_cmdline.html')
 
 class TemporaryMapScript(object):
@@ -64,12 +64,12 @@
   pass
 
 _FAILURE_NAME_TO_FAILURE_CONSTRUCTOR = {
-  'FileLoadingError': FileLoadingFailure,
-  'FunctionLoadingError': FunctionLoadingFailure,
-  'FunctionNotDefinedError': FunctionNotDefinedFailure,
-  'TraceImportError': TraceImportFailure,
-  'MapFunctionError': MapFunctionFailure,
-  'NoResultsAddedError': NoResultsAddedFailure
+    'FileLoadingError': FileLoadingFailure,
+    'FunctionLoadingError': FunctionLoadingFailure,
+    'FunctionNotDefinedError': FunctionNotDefinedFailure,
+    'TraceImportError': TraceImportFailure,
+    'MapFunctionError': MapFunctionFailure,
+    'NoResultsAddedError': NoResultsAddedFailure
 }
 
 
@@ -78,31 +78,28 @@
                    extra_import_options=None):
   assert (type(extra_import_options) is types.NoneType or
           type(extra_import_options) is types.DictType), (
-         'extra_import_options should be a dict or None.')
-  project = perf_insights_project.PerfInsightsProject()
+              'extra_import_options should be a dict or None.')
+  project = tracing_project.TracingProject()
 
   all_source_paths = list(project.source_paths)
-  all_source_paths.append(project.perf_insights_root_path)
+  all_source_paths.append(project.trace_processor_root_path)
 
   result = mre_result.MreResult()
 
   with trace_handle.PrepareFileForProcessing() as prepared_trace_handle:
     js_args = [
-      json.dumps(prepared_trace_handle.AsDict()),
-      json.dumps(job.AsDict()),
+        json.dumps(prepared_trace_handle.AsDict()),
+        json.dumps(job.AsDict()),
     ]
     if extra_import_options:
       js_args.append(json.dumps(extra_import_options))
 
     res = vinn.RunFile(
-      _MAP_SINGLE_TRACE_CMDLINE_PATH, source_paths=all_source_paths,
-      js_args=js_args)
+        _MAP_SINGLE_TRACE_CMDLINE_PATH, source_paths=all_source_paths,
+        js_args=js_args)
 
   if res.returncode != 0:
-    try:
-      sys.stderr.write(res.stdout)
-    except Exception:
-      pass
+    sys.stderr.write(res.stdout)
     result.AddFailure(failure.Failure(
         job,
         trace_handle.canonical_url,
@@ -114,9 +111,9 @@
     m = re.match('^MRE_RESULT: (.+)', line, re.DOTALL)
     if m:
       found_dict = json.loads(m.group(1))
-      failures = [failure.Failure.FromDict(
-                    f, job, _FAILURE_NAME_TO_FAILURE_CONSTRUCTOR)
-                  for f in found_dict['failures']]
+      failures = [
+          failure.Failure.FromDict(f, job, _FAILURE_NAME_TO_FAILURE_CONSTRUCTOR)
+          for f in found_dict['failures']]
 
       for f in failures:
         result.AddFailure(f)
diff --git a/catapult/perf_insights/perf_insights/mre/map_single_trace_cmdline.html b/catapult/tracing/tracing/mre/map_single_trace_cmdline.html
similarity index 73%
rename from catapult/perf_insights/perf_insights/mre/map_single_trace_cmdline.html
rename to catapult/tracing/tracing/mre/map_single_trace_cmdline.html
index be00ed2..175835e 100644
--- a/catapult/perf_insights/perf_insights/mre/map_single_trace_cmdline.html
+++ b/catapult/tracing/tracing/mre/map_single_trace_cmdline.html
@@ -4,19 +4,19 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mre/failure.html">
-<link rel="import" href="/perf_insights/mre/file_handle.html">
-<link rel="import" href="/perf_insights/mre/function_handle.html">
-<link rel="import" href="/perf_insights/mre/job.html">
-<link rel="import" href="/perf_insights/mre/map_single_trace.html">
-<link rel="import" href="/perf_insights/mre/mre_result.html">
+<link rel="import" href="/tracing/mre/failure.html">
+<link rel="import" href="/tracing/mre/file_handle.html">
+<link rel="import" href="/tracing/mre/function_handle.html">
+<link rel="import" href="/tracing/mre/job.html">
+<link rel="import" href="/tracing/mre/map_single_trace.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
 
 <script>
 'use strict';
 
-tr.exportTo('pi', function() {
+tr.exportTo('tr.mre', function() {
 
-  var Failure = pi.mre.Failure;
+  var Failure = tr.mre.Failure;
 
   function createModelFromTraceData(traceData,
                                     canonicalUrl,
@@ -47,9 +47,9 @@
   }
 
   function mapSingleTraceWithResult(options) {
-    var result = new pi.mre.MreResult();
+    var result = new tr.mre.MreResult();
 
-    pi.runAndConvertErrorsToFailures(
+    tr.mre.runAndConvertErrorsToFailures(
         result, options.job, options.traceHandle,
         function() {
           var mapFunction = options.job.mapFunctionHandle.load();
@@ -58,7 +58,7 @@
               traceData, options.traceHandle.canonicalUrl,
               options.extraImportOptions);
           var opt_options = options.job.mapFunctionHandle.options;
-          pi.mapSingleTrace(result, model, opt_options, mapFunction);
+          tr.mre.mapSingleTrace(result, model, opt_options, mapFunction);
         });
     return result;
   }
@@ -68,8 +68,8 @@
       throw new Error('Must provide two or three arguments.');
 
     var options = {
-      traceHandle: pi.mre.FileHandle.fromDict(JSON.parse(args[0])),
-      job: pi.mre.Job.fromDict(JSON.parse(args[1])),
+      traceHandle: tr.mre.FileHandle.fromDict(JSON.parse(args[0])),
+      job: tr.mre.Job.fromDict(JSON.parse(args[1])),
       extraImportOptions: args.length === 3 ? JSON.parse(args[2]) : undefined
     };
 
@@ -86,6 +86,6 @@
 });
 
 if (tr.isHeadless)
-  quit(pi.mapSingleTraceMain(sys.argv.slice(1)));
+  quit(tr.mre.mapSingleTraceMain(sys.argv.slice(1)));
 
 </script>
diff --git a/catapult/perf_insights/perf_insights/mre/map_single_trace_unittest.py b/catapult/tracing/tracing/mre/map_single_trace_unittest.py
similarity index 74%
rename from catapult/perf_insights/perf_insights/mre/map_single_trace_unittest.py
rename to catapult/tracing/tracing/mre/map_single_trace_unittest.py
index 8406553..937f3b0 100644
--- a/catapult/perf_insights/perf_insights/mre/map_single_trace_unittest.py
+++ b/catapult/tracing/tracing/mre/map_single_trace_unittest.py
@@ -4,11 +4,11 @@
 import json
 import unittest
 
-from perf_insights.mre import function_handle
-from perf_insights.mre import map_single_trace
-from perf_insights.mre import file_handle
-from perf_insights.mre import failure
-from perf_insights.mre import job as job_module
+from tracing.mre import function_handle
+from tracing.mre import map_single_trace
+from tracing.mre import file_handle
+from tracing.mre import failure
+from tracing.mre import job as job_module
 
 
 def _Handle(filename):
@@ -22,16 +22,16 @@
 
   def testPassingMapScript(self):
     events = [
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
-       'ts': 0, 'dur': 10, 'args': {}},
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
-       'ts': 3, 'dur': 5, 'args': {}}
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
+         'ts': 0, 'dur': 10, 'args': {}},
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
+         'ts': 3, 'dur': 5, 'args': {}}
     ]
     trace_handle = file_handle.InMemoryFileHandle(
         '/a.json', json.dumps(events))
 
     with map_single_trace.TemporaryMapScript("""
-      pi.FunctionRegistry.register(
+      tr.mre.FunctionRegistry.register(
           function MyMapFunction(result, model) {
             var canonicalUrl = model.canonicalUrl;
             result.addPair('result', {
@@ -40,7 +40,7 @@
           });
     """) as map_script:
       result = map_single_trace.MapSingleTrace(trace_handle,
-                                                _Handle(map_script.filename))
+                                               _Handle(map_script.filename))
 
     self.assertFalse(result.failures)
     r = result.pairs['result']
@@ -52,7 +52,7 @@
         '/a.json', trace_string)
 
     with map_single_trace.TemporaryMapScript("""
-      pi.FunctionRegistry.register(
+      tr.mre.FunctionRegistry.register(
           function MyMapFunction(results, model) {
           });
     """) as map_script:
@@ -66,16 +66,16 @@
 
   def testMapFunctionThatThrows(self):
     events = [
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
-       'ts': 0, 'dur': 10, 'args': {}},
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
-       'ts': 3, 'dur': 5, 'args': {}}
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
+         'ts': 0, 'dur': 10, 'args': {}},
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
+         'ts': 3, 'dur': 5, 'args': {}}
     ]
     trace_handle = file_handle.InMemoryFileHandle(
         '/a.json', json.dumps(events))
 
     with map_single_trace.TemporaryMapScript("""
-      pi.FunctionRegistry.register(
+      tr.mre.FunctionRegistry.register(
           function MyMapFunction(results, model) {
             throw new Error('Expected error');
           });
@@ -90,10 +90,10 @@
 
   def testMapperWithLoadError(self):
     events = [
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
-       'ts': 0, 'dur': 10, 'args': {}},
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
-       'ts': 3, 'dur': 5, 'args': {}}
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
+         'ts': 0, 'dur': 10, 'args': {}},
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
+         'ts': 3, 'dur': 5, 'args': {}}
     ]
     trace_handle = file_handle.InMemoryFileHandle(
         '/a.json', json.dumps(events))
@@ -111,8 +111,8 @@
 
   def testMapperWithUnexpectedError(self):
     events = [
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
-       'ts': 0, 'dur': 10, 'args': {}},
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
+         'ts': 0, 'dur': 10, 'args': {}},
     ]
     trace_handle = file_handle.InMemoryFileHandle(
         '/a.json', json.dumps(events))
@@ -130,10 +130,10 @@
 
   def testNoMapper(self):
     events = [
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
-       'ts': 0, 'dur': 10, 'args': {}},
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
-       'ts': 3, 'dur': 5, 'args': {}}
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
+         'ts': 0, 'dur': 10, 'args': {}},
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
+         'ts': 3, 'dur': 5, 'args': {}}
     ]
     trace_handle = file_handle.InMemoryFileHandle(
         '/a.json', json.dumps(events))
@@ -150,16 +150,16 @@
 
   def testMapperDoesntAddValues(self):
     events = [
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
-       'ts': 0, 'dur': 10, 'args': {}},
-      {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
-       'ts': 3, 'dur': 5, 'args': {}}
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'a', 'cat': 'c',
+         'ts': 0, 'dur': 10, 'args': {}},
+        {'pid': 1, 'tid': 2, 'ph': 'X', 'name': 'b', 'cat': 'c',
+         'ts': 3, 'dur': 5, 'args': {}}
     ]
     trace_handle = file_handle.InMemoryFileHandle(
         '/a.json', json.dumps(events))
 
     with map_single_trace.TemporaryMapScript("""
-      pi.FunctionRegistry.register(
+      tr.mre.FunctionRegistry.register(
           function MyMapFunction(results, model) {
       });
     """) as map_script:
diff --git a/catapult/perf_insights/perf_insights/mre/map_traces.py b/catapult/tracing/tracing/mre/map_traces.py
similarity index 60%
rename from catapult/perf_insights/perf_insights/mre/map_traces.py
rename to catapult/tracing/tracing/mre/map_traces.py
index ebaf2ea..749e7ac 100644
--- a/catapult/perf_insights/perf_insights/mre/map_traces.py
+++ b/catapult/tracing/tracing/mre/map_traces.py
@@ -4,36 +4,16 @@
 import argparse
 import sys
 
-from perf_insights.mre import corpus_driver_cmdline
-from perf_insights.mre import corpus_query
-from perf_insights.mre import map_runner
-from perf_insights.mre import function_handle
-from perf_insights.mre import job as job_module
-from perf_insights.mre import json_output_formatter
-
-
-_CORPUS_QUERY_HELP = """
-Overview of corpus query syntax:
-
-<query> := <condition> [AND <condition> ...] [ MAX_TRACE_HANDLES=<int>]
-<condition> := <property> {< | <= | > | >= | = | != } <value>
-<condition> := <property> IN <list>
-<property> := {date | network_type | prod | remote_addr | tags |
-               user_agent | ver}
-<list> := (<value> [, <value> ...])
-<value> := numeric, string, or Date(YYYY-MM-DD HH:MM:SS.SS)
-
-Examples:
-  --query "date >= Date(2015-10-15 00:00:00.00) AND prod = 'test'"
-  --query "remote_addr = '128.0.0.1' AND MAX_TRACE_HANDLES=10"
-"""
+from tracing.mre import corpus_driver_cmdline
+from tracing.mre import map_runner
+from tracing.mre import function_handle
+from tracing.mre import job as job_module
+from tracing.mre import json_output_formatter
 
 
 def Main(argv):
   parser = argparse.ArgumentParser(
       description='Bulk trace processing')
-  corpus_driver_cmdline.AddArguments(parser)
-  parser.add_argument('--query')
   parser.add_argument('--map_function_handle')
   parser.add_argument('-j', '--jobs', type=int,
                       default=map_runner.AUTO_JOB_COUNT)
@@ -41,15 +21,13 @@
   parser.add_argument('-s', '--stop-on-error',
                       action='store_true')
 
-  args = parser.parse_args(argv[1:])
-  corpus_driver = corpus_driver_cmdline.GetCorpusDriver(parser, args)
+  if len(sys.argv) == 1:
+    parser.print_help()
+    sys.exit(0)
 
-  if args.query == 'help':
-    parser.exit(_CORPUS_QUERY_HELP)
-  elif args.query is None:
-    query = corpus_query.CorpusQuery.FromString('True')
-  else:
-    query = corpus_query.CorpusQuery.FromString(args.query)
+  args = parser.parse_args(argv[1:])
+
+  corpus_driver = corpus_driver_cmdline.GetCorpusDriver(parser, args)
 
   if args.output_file:
     ofile = open(args.output_file, 'w')
@@ -74,7 +52,7 @@
     parser.error('\n'.join(error_lines))
 
   try:
-    trace_handles = corpus_driver.GetTraceHandlesMatchingQuery(query)
+    trace_handles = corpus_driver.GetTraceHandles()
     runner = map_runner.MapRunner(trace_handles, job,
                                   stop_on_error=args.stop_on_error,
                                   jobs=args.jobs,
diff --git a/catapult/perf_insights/perf_insights/mre/map_traces_handler.py b/catapult/tracing/tracing/mre/map_traces_handler.py
similarity index 100%
rename from catapult/perf_insights/perf_insights/mre/map_traces_handler.py
rename to catapult/tracing/tracing/mre/map_traces_handler.py
diff --git a/catapult/tracing/tracing/mre/mre_result.html b/catapult/tracing/tracing/mre/mre_result.html
new file mode 100644
index 0000000..e4f37cb
--- /dev/null
+++ b/catapult/tracing/tracing/mre/mre_result.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<!--
+Copyright 2015 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+<link rel="import" href="/tracing/mre/failure.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.mre', function() {
+  class MreResult {
+    constructor(failures, pairs) {
+      if (failures === undefined)
+        failures = [];
+      if (pairs === undefined)
+        pairs = {};
+      this.failures = failures;
+      this.pairs = pairs;
+    }
+
+    addFailure(failure) {
+      this.failures.push(failure);
+    }
+
+    addPair(key, value) {
+      if (key in this.pairs)
+        throw new Error('Key ' + key + ' already exists in result.');
+      this.pairs[key] = value;
+    }
+
+    asDict() {
+      var d = {
+        pairs: this.pairs
+      };
+
+      if (this.failures)
+        d.failures = this.failures.map(function(f) {return f.asDict();});
+
+      return d;
+    }
+
+    hadFailures() {
+      return this.failures.length > 0;
+    }
+
+    static fromDict(resultDict) {
+      if (resultDict.failures !== undefined)
+        var failures = resultDict.failures.map(tr.mre.Failure.fromDict);
+      var pairs = resultDict.pairs;
+      return new MreResult(failures, pairs);
+    }
+  };
+
+  return {
+    MreResult: MreResult
+  };
+});
+
+</script>
diff --git a/catapult/perf_insights/perf_insights/mre/mre_result.py b/catapult/tracing/tracing/mre/mre_result.py
similarity index 94%
rename from catapult/perf_insights/perf_insights/mre/mre_result.py
rename to catapult/tracing/tracing/mre/mre_result.py
index 81298b2..f3d128e 100644
--- a/catapult/perf_insights/perf_insights/mre/mre_result.py
+++ b/catapult/tracing/tracing/mre/mre_result.py
@@ -2,7 +2,7 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-from perf_insights.mre import failure as failure_module
+from tracing.mre import failure as failure_module
 
 class DuplicateKeyError(Exception):
   """Raised if an attempt is made to set a key more than once."""
diff --git a/catapult/perf_insights/perf_insights/mre/mre_result_test.html b/catapult/tracing/tracing/mre/mre_result_test.html
similarity index 70%
rename from catapult/perf_insights/perf_insights/mre/mre_result_test.html
rename to catapult/tracing/tracing/mre/mre_result_test.html
index 0761139..6fb94ea 100644
--- a/catapult/perf_insights/perf_insights/mre/mre_result_test.html
+++ b/catapult/tracing/tracing/mre/mre_result_test.html
@@ -5,17 +5,17 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/failure.html">
-<link rel="import" href="/perf_insights/mre/mre_result.html">
+<link rel="import" href="/tracing/mre/failure.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
   test('mreResultAsDictTest', function() {
-    var result = new pi.mre.MreResult();
+    var result = new tr.mre.MreResult();
 
-    var failure = new pi.mre.Failure('1', '2', '3', 'err', 'desc', 'stack');
+    var failure = new tr.mre.Failure('1', '2', '3', 'err', 'desc', 'stack');
     result.addFailure(failure);
 
     result.addPair('foo', 'bar');
diff --git a/catapult/perf_insights/perf_insights/mre/mre_result_unittest.py b/catapult/tracing/tracing/mre/mre_result_unittest.py
similarity index 82%
rename from catapult/perf_insights/perf_insights/mre/mre_result_unittest.py
rename to catapult/tracing/tracing/mre/mre_result_unittest.py
index 26d0223..2bdb5a8 100644
--- a/catapult/perf_insights/perf_insights/mre/mre_result_unittest.py
+++ b/catapult/tracing/tracing/mre/mre_result_unittest.py
@@ -4,11 +4,11 @@
 
 import unittest
 
-from perf_insights.mre import function_handle
-from perf_insights.mre import map_single_trace
-from perf_insights.mre import failure as failure_module
-from perf_insights.mre import job as job_module
-from perf_insights.mre import mre_result
+from tracing.mre import function_handle
+from tracing.mre import map_single_trace
+from tracing.mre import failure as failure_module
+from tracing.mre import job as job_module
+from tracing.mre import mre_result
 
 
 class MreResultTests(unittest.TestCase):
@@ -17,7 +17,7 @@
     result = mre_result.MreResult()
 
     with map_single_trace.TemporaryMapScript("""
-      pi.FunctionRegistry.register(
+      tr.mre.FunctionRegistry.register(
           function MyMapFunction(result, model) {
             var canonicalUrl = model.canonicalUrl;
             result.addPair('result', {
diff --git a/catapult/perf_insights/perf_insights/mre/output_formatter.py b/catapult/tracing/tracing/mre/output_formatter.py
similarity index 100%
rename from catapult/perf_insights/perf_insights/mre/output_formatter.py
rename to catapult/tracing/tracing/mre/output_formatter.py
diff --git a/catapult/perf_insights/perf_insights/mre/progress_reporter.py b/catapult/tracing/tracing/mre/progress_reporter.py
similarity index 100%
rename from catapult/perf_insights/perf_insights/mre/progress_reporter.py
rename to catapult/tracing/tracing/mre/progress_reporter.py
diff --git a/catapult/perf_insights/perf_insights/mre/reduce_map_results.html b/catapult/tracing/tracing/mre/reduce_map_results.html
similarity index 84%
rename from catapult/perf_insights/perf_insights/mre/reduce_map_results.html
rename to catapult/tracing/tracing/mre/reduce_map_results.html
index d9ce464..8564009 100644
--- a/catapult/perf_insights/perf_insights/mre/reduce_map_results.html
+++ b/catapult/tracing/tracing/mre/reduce_map_results.html
@@ -5,12 +5,12 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/failure.html">
+<link rel="import" href="/tracing/mre/failure.html">
 
 <script>
 'use strict';
 
-tr.exportTo('pi.mre', function() {
+tr.exportTo('tr.mre', function() {
 
   function reduceMapResults(jobResults, key, mapResults, reduceFunction) {
     try {
diff --git a/catapult/perf_insights/perf_insights/mre/reduce_map_results_cmdline.html b/catapult/tracing/tracing/mre/reduce_map_results_cmdline.html
similarity index 61%
rename from catapult/perf_insights/perf_insights/mre/reduce_map_results_cmdline.html
rename to catapult/tracing/tracing/mre/reduce_map_results_cmdline.html
index f53ee6b..1a99fca 100644
--- a/catapult/perf_insights/perf_insights/mre/reduce_map_results_cmdline.html
+++ b/catapult/tracing/tracing/mre/reduce_map_results_cmdline.html
@@ -5,22 +5,21 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/file_handle.html">
-<link rel="import" href="/perf_insights/mre/job.html">
-<link rel="import" href="/perf_insights/mre/mre_result.html">
-<link rel="import" href="/perf_insights/mre/reduce_map_results.html">
-<link rel="import"
-      href="/perf_insights/mre/run_and_convert_errors_to_failures.html">
 <link rel="import" href="/tracing/base/xhr.html">
-<link rel="import" href="/tracing/value/numeric.html">
+<link rel="import" href="/tracing/mre/file_handle.html">
+<link rel="import" href="/tracing/mre/job.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
+<link rel="import" href="/tracing/mre/reduce_map_results.html">
+<link rel="import" href="/tracing/mre/run_and_convert_errors_to_failures.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
-tr.exportTo('pi.mre', function() {
+tr.exportTo('tr.mre', function() {
 
   function jsonReplacer(key, value) {
-    if (value instanceof tr.v.Numeric) {
+    if (value instanceof tr.v.Histogram) {
       return value.asDict();
     }
     return value;
@@ -32,21 +31,21 @@
 
     var options = {
       key: args[0],
-      fileHandle: pi.mre.FileHandle.fromDict(JSON.parse(args[1])),
-      job: pi.mre.Job.fromDict(JSON.parse(args[2]))
+      fileHandle: tr.mre.FileHandle.fromDict(JSON.parse(args[1])),
+      job: tr.mre.Job.fromDict(JSON.parse(args[2]))
     };
 
     var mapResultsLoaded = options.fileHandle.load();
     var mapResults = JSON.parse(mapResultsLoaded);
 
-    var jobResults = new pi.mre.MreResult();
+    var jobResults = new tr.mre.MreResult();
 
-    pi.mre.runAndConvertErrorsToFailures(
+    tr.mre.runAndConvertErrorsToFailures(
         jobResults, options.job, options.job.reduceFunctionHandle,
         undefined,
         function() {
           var reduceFunction = options.job.reduceFunctionHandle.load();
-          pi.mre.reduceMapResults(jobResults, options.key, mapResults.pairs,
+          tr.mre.reduceMapResults(jobResults, options.key, mapResults.pairs,
                                   reduceFunction);
         });
 
@@ -66,6 +65,6 @@
 
 
 if (tr.isHeadless)
-  quit(pi.mre.reduceMapResultsMain(sys.argv.slice(1)));
+  quit(tr.mre.reduceMapResultsMain(sys.argv.slice(1)));
 
 </script>
diff --git a/catapult/perf_insights/perf_insights/mre/run_and_convert_errors_to_failures.html b/catapult/tracing/tracing/mre/run_and_convert_errors_to_failures.html
similarity index 82%
rename from catapult/perf_insights/perf_insights/mre/run_and_convert_errors_to_failures.html
rename to catapult/tracing/tracing/mre/run_and_convert_errors_to_failures.html
index 547de49..6f7f4db 100644
--- a/catapult/perf_insights/perf_insights/mre/run_and_convert_errors_to_failures.html
+++ b/catapult/tracing/tracing/mre/run_and_convert_errors_to_failures.html
@@ -5,20 +5,20 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/perf_insights/mre/failure.html">
 <link rel="import" href="/tracing/base/utils.html">
+<link rel="import" href="/tracing/mre/failure.html">
 
 <script>
 'use strict';
 
-tr.exportTo('pi.mre', function() {
+tr.exportTo('tr.mre', function() {
   function runAndConvertErrorsToFailures(results, job, functionHandle,
                                          traceHandle, cb, opt_this) {
     try {
       cb.call(opt_this);
     } catch (e) {
       var err = tr.b.normalizeException(e);
-      results.addFailure(new pi.mre.Failure(
+      results.addFailure(new tr.mre.Failure(
           job, functionHandle, traceHandle, err.typeName,
           err.message, err.stack));
     }
diff --git a/catapult/perf_insights/perf_insights/mre/threaded_work_queue.py b/catapult/tracing/tracing/mre/threaded_work_queue.py
similarity index 96%
rename from catapult/perf_insights/perf_insights/mre/threaded_work_queue.py
rename to catapult/tracing/tracing/mre/threaded_work_queue.py
index 3ab5633..5bd29c4 100644
--- a/catapult/perf_insights/perf_insights/mre/threaded_work_queue.py
+++ b/catapult/tracing/tracing/mre/threaded_work_queue.py
@@ -84,9 +84,9 @@
 
     try:
       task()
-    except KeyboardInterrupt, ex:
+    except KeyboardInterrupt as ex:
       raise ex
-    except Exception:
+    except Exception:  # pylint: disable=broad-except
       traceback.print_exc()
     finally:
       queue.task_done()
diff --git a/catapult/perf_insights/perf_insights/mre/threaded_work_queue_unittest.py b/catapult/tracing/tracing/mre/threaded_work_queue_unittest.py
similarity index 93%
rename from catapult/perf_insights/perf_insights/mre/threaded_work_queue_unittest.py
rename to catapult/tracing/tracing/mre/threaded_work_queue_unittest.py
index f987a3c..6e93744 100644
--- a/catapult/perf_insights/perf_insights/mre/threaded_work_queue_unittest.py
+++ b/catapult/tracing/tracing/mre/threaded_work_queue_unittest.py
@@ -3,7 +3,7 @@
 # found in the LICENSE file.
 import unittest
 
-from perf_insights.mre import threaded_work_queue
+from tracing.mre import threaded_work_queue
 
 
 class ThreadedWorkQueueTests(unittest.TestCase):
diff --git a/catapult/tracing/tracing/results2_template.html b/catapult/tracing/tracing/results2_template.html
index 51c2b96..3d9d0f1 100644
--- a/catapult/tracing/tracing/results2_template.html
+++ b/catapult/tracing/tracing/results2_template.html
@@ -6,7 +6,7 @@
 -->
 <link rel="import" href="/tracing/ui/base/base.html" data-suppress-import-order>
 
-<link rel="import" href="/tracing/value/ui/all_value_set_views.html">
+<link rel="import" href="/tracing/value/ui/value_set_view.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <style>
@@ -18,10 +18,6 @@
 <script>
 'use strict';
 
-// TODO(eakuefner): Delete this once
-// https://github.com/catapult-project/catapult/issues/2580 is resolved.
-window.Polymer.dom = 'shadow';
-
 document.addEventListener('DOMContentLoaded', function() {
   var valueSetJson = document.getElementById('value-set-json');
   var values = new tr.v.ValueSet();
diff --git a/catapult/tracing/tracing/tests.html b/catapult/tracing/tracing/tests.html
index 7ff1b18..7924c0d 100644
--- a/catapult/tracing/tracing/tests.html
+++ b/catapult/tracing/tracing/tests.html
@@ -12,15 +12,7 @@
   <link rel="shortcut icon" href="data:image/x-icon;base64,"
         type="image/x-icon">
 
-  <script src="/components/webcomponentsjs/webcomponents-lite.js"></script>
-  <script>
-    'use strict';
-
-    // Force Polymer into native shadowDom mode
-    window.Polymer = window.Polymer || {};
-    window.Polymer.dom = 'shadow';
-  </script>
-  <link rel="import" href="/components/polymer/polymer.html">
+  <link rel="import" href="/tracing/ui/base/base.html" data-suppress-import-order>
   <link rel="import" href="/tracing/base/unittest/interactive_test_runner.html">
   <style>
     html, body {
diff --git a/catapult/tracing/tracing/trace2html.html b/catapult/tracing/tracing/trace2html.html
index f1535e6..a27d274 100644
--- a/catapult/tracing/tracing/trace2html.html
+++ b/catapult/tracing/tracing/trace2html.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 <link rel="import" href="/tracing/base/base64.html">
+<link rel="import" href="/tracing/ui/base/base.html">
 <link rel="import" href="/tracing/ui/timeline_view.html">
 <script>
 'use strict';
diff --git a/catapult/tracing/tracing/ui/analysis/alert_sub_view.html b/catapult/tracing/tracing/ui/analysis/alert_sub_view.html
index bd36bfe..3e03bc3 100644
--- a/catapult/tracing/tracing/ui/analysis/alert_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/alert_sub_view.html
@@ -124,7 +124,7 @@
         name: 'Alert',
         value: tr.b.getOnlyElement(alerts).title
       }];
-      var detailRows = this.getRowsForSingleAlert_(alerts[0]);
+      var detailRows = this.getRowsForSingleAlert_(tr.b.getOnlyElement(alerts));
       rows.push.apply(rows, detailRows);
       return rows;
     } else {
diff --git a/catapult/tracing/tracing/ui/analysis/analysis_link.html b/catapult/tracing/tracing/ui/analysis/analysis_link.html
index 1bd7b89..a0fd79a 100644
--- a/catapult/tracing/tracing/ui/analysis/analysis_link.html
+++ b/catapult/tracing/tracing/ui/analysis/analysis_link.html
@@ -14,12 +14,13 @@
     <style>
     :host {
       display: inline;
-      color: -webkit-link;
       cursor: pointer;
-      text-decoration: underline;
       cursor: pointer;
       white-space: nowrap;
     }
+    a {
+      text-decoration: underline;
+    }
     </style>
     <a href="{{href}}" on-click="onClicked_" on-mouseenter="onMouseEnter_" on-mouseleave="onMouseLeave_"><content></content></a>
 
@@ -60,6 +61,10 @@
     this.controller_ = undefined;
   },
 
+  set color(c) {
+    this.style.color = c;
+  },
+
   /**
    * @return {*|function():*}
    */
@@ -118,10 +123,12 @@
     this.setHighlight_();
   },
 
-  onClicked_: function() {
+  onClicked_: function(clickEvent) {
     if (!this.selection_)
       return;
 
+    clickEvent.stopPropagation();
+
     var event = new tr.model.RequestSelectionChangeEvent();
     event.selection = this.getCurrentSelection_();
     this.dispatchEvent(event);
diff --git a/catapult/tracing/tracing/ui/analysis/analysis_sub_view.html b/catapult/tracing/tracing/ui/analysis/analysis_sub_view.html
index 26e2673..66bae57 100644
--- a/catapult/tracing/tracing/ui/analysis/analysis_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/analysis_sub_view.html
@@ -163,7 +163,7 @@
   function findLowestTypeInfoForEvents(thisTypeInfo, events) {
     if (events.length === 0)
       return thisTypeInfo;
-    var event0 = events[0];
+    var event0 = tr.b.getFirstElement(events);
 
     var candidateSubTypeInfo;
     for (var i = 0; i < thisTypeInfo.childrenTypeInfos.length; i++) {
@@ -178,8 +178,7 @@
 
     // Validate that all the other events are instances of the candidate type.
     var allMatch = true;
-    for (var i = 1; i < events.length; i++) {
-      var event = events[i];
+    for (var event of events) {
       if (event instanceof candidateSubTypeInfo.eventConstructor)
         continue;
       allMatch = false;
diff --git a/catapult/tracing/tracing/ui/analysis/analysis_view.html b/catapult/tracing/tracing/ui/analysis/analysis_view.html
index 36d2a9f..0fe7047 100644
--- a/catapult/tracing/tracing/ui/analysis/analysis_view.html
+++ b/catapult/tracing/tracing/ui/analysis/analysis_view.html
@@ -114,7 +114,7 @@
     ready: function() {
       this.brushingStateController_ = undefined;
       this.lastSelection_ = undefined;
-      this.tabView_ = document.createElement('tr-ui-a-tab-view');
+      this.tabView_ = document.createElement('tr-ui-b-tab-view');
       this.tabView_.addEventListener(
           'selected-tab-change', this.onSelectedSubViewChanged_.bind(this));
 
diff --git a/catapult/tracing/tracing/ui/analysis/container_memory_dump_sub_view.html b/catapult/tracing/tracing/ui/analysis/container_memory_dump_sub_view.html
index b776ab8..de6654e 100644
--- a/catapult/tracing/tracing/ui/analysis/container_memory_dump_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/container_memory_dump_sub_view.html
@@ -6,6 +6,7 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/model.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
@@ -13,7 +14,6 @@
 <link rel="import" href="/tracing/ui/analysis/stacked_pane_view.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-container-memory-dump-sub-view'>
   <template>
@@ -130,7 +130,7 @@
             linkEl.setSelectionAndContent(new tr.model.EventSet([row]));
             Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(
                 row.start, {
-                  unit: tr.v.Unit.byName.timeStampInMs,
+                  unit: tr.b.Unit.byName.timeStampInMs,
                   ownerDocument: ownerDocument
                 }));
             return linkEl;
diff --git a/catapult/tracing/tracing/ui/analysis/frame_power_usage_chart.html b/catapult/tracing/tracing/ui/analysis/frame_power_usage_chart.html
index 9177a60..e86e76f 100644
--- a/catapult/tracing/tracing/ui/analysis/frame_power_usage_chart.html
+++ b/catapult/tracing/tracing/ui/analysis/frame_power_usage_chart.html
@@ -125,7 +125,7 @@
         return;
 
       var point = { x: sample.start - lastVSyncTimestamp };
-      point['f' + frameNumber] = sample.power;
+      point['f' + frameNumber] = sample.powerInW;
       points.push(point);
     });
 
diff --git a/catapult/tracing/tracing/ui/analysis/generic_object_view.html b/catapult/tracing/tracing/ui/analysis/generic_object_view.html
index 4fa5ea1..e6f4a83 100644
--- a/catapult/tracing/tracing/ui/analysis/generic_object_view.html
+++ b/catapult/tracing/tracing/ui/analysis/generic_object_view.html
@@ -31,6 +31,8 @@
 <script>
 'use strict';
 
+var URL_REGEX = /^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)$/;  // eslint-disable-line max-len
+
 function isTable(object) {
   if (!(object instanceof Array) ||
       (object.length < 2)) return false;
@@ -132,6 +134,12 @@
               return el;
             }, this);
             return;
+          } else if (object.match(URL_REGEX)) {
+            var link = document.createElement('a');
+            link.href = object;
+            link.textContent = object;
+            this.appendElementWithLabel_(label, indent, link, suffix);
+            return;
           } else {
             this.appendSimpleText_(
                 label, indent, '"' + object + '"', suffix);
diff --git a/catapult/tracing/tracing/ui/analysis/generic_object_view_test.html b/catapult/tracing/tracing/ui/analysis/generic_object_view_test.html
index df489e1..64b0e04 100644
--- a/catapult/tracing/tracing/ui/analysis/generic_object_view_test.html
+++ b/catapult/tracing/tracing/ui/analysis/generic_object_view_test.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/object_instance.html">
 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html">
 <link rel="import" href="/tracing/ui/base/deep_utils.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -179,14 +179,14 @@
   test('timeDurationValue', function() {
     var view = document.createElement('tr-ui-a-generic-object-view');
     view.object =
-        new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs, 3);
+        new tr.v.ScalarNumeric(tr.b.Unit.byName.timeDurationInMs, 3);
     assert.isDefined(tr.b.findDeepElementMatching(
       view.$.content, 'tr-v-ui-scalar-span'));
   });
 
   test('timeStampValue', function() {
     var view = document.createElement('tr-ui-a-generic-object-view');
-    view.object = new tr.v.ScalarNumeric(tr.v.Unit.byName.timeStampInMs, 3);
+    view.object = new tr.v.ScalarNumeric(tr.b.Unit.byName.timeStampInMs, 3);
     assert.isDefined(tr.b.findDeepElementMatching(
       view.$.content, 'tr-v-ui-scalar-span'));
   });
@@ -194,13 +194,23 @@
   test('scalarValue', function() {
     var view = document.createElement('tr-ui-a-generic-object-view');
     view.object =
-        new tr.v.ScalarNumeric(tr.v.Unit.byName.normalizedPercentage, .3);
+        new tr.v.ScalarNumeric(tr.b.Unit.byName.normalizedPercentage, .3);
     var m = tr.b.findDeepElementMatching(
         view.$.content, 'tr-v-ui-scalar-span');
     assert.isDefined(m);
     assert.equal(m.value, .3);
-    assert.equal(m.unit, tr.v.Unit.byName.normalizedPercentage);
+    assert.equal(m.unit, tr.b.Unit.byName.normalizedPercentage);
   });
 
+  test('httpLink', function() {
+    var view = document.createElement('tr-ui-a-generic-object-view');
+    var url = 'https://google.com/chrome';
+    view.object = {a: url};
+    this.addHTMLOutput(view);
+    var a = tr.b.findDeepElementMatching(view.$.content, 'a');
+    assert.isDefined(a);
+    assert.strictEqual(url, a.href);
+    assert.strictEqual(url, a.textContent);
+  });
 });
 </script>
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html b/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html
index 200027e..67ccadd 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane.html
@@ -7,14 +7,13 @@
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
-<link rel="import"
-    href="/tracing/ui/analysis/memory_dump_heap_details_pane.html">
+<link rel="import" href="/tracing/ui/analysis/memory_dump_heap_details_pane.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html">
 <link rel="import" href="/tracing/ui/analysis/stacked_pane.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/ui/base/table.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 
 <dom-module id='tr-ui-a-memory-dump-allocator-details-pane'>
@@ -210,7 +209,7 @@
 
     appendSizeIfDefined: function(size) {
       if (size !== undefined)
-        this.append(' (', tr.v.Unit.byName.sizeInBytes.format(size), ')');
+        this.append(' (', tr.b.Unit.byName.sizeInBytes.format(size), ')');
     },
 
     appendSomeTimestampsQuantifier: function() {
@@ -521,7 +520,7 @@
      */
     set memoryAllocatorDumps(memoryAllocatorDumps) {
       this.memoryAllocatorDumps_ = memoryAllocatorDumps;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get memoryAllocatorDumps() {
@@ -533,19 +532,19 @@
     // (view) instead.
     set heapDumps(heapDumps) {
       this.heapDumps_ = heapDumps;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     set aggregationMode(aggregationMode) {
       this.aggregationMode_ = aggregationMode;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get aggregationMode() {
       return this.aggregationMode_;
     },
 
-    rebuildPane_: function() {
+    onRebuild_: function() {
       if (this.memoryAllocatorDumps_ === undefined ||
           this.memoryAllocatorDumps_.length === 0) {
         // Show the info text (hide the table).
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane_test.html b/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane_test.html
index dce6ffb..7c6a8ba 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane_test.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_allocator_details_pane_test.html
@@ -6,6 +6,7 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/model/heap_dump.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
@@ -16,7 +17,6 @@
     href="/tracing/ui/analysis/memory_dump_sub_view_test_utils.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -25,9 +25,9 @@
   var MemoryAllocatorDump = tr.model.MemoryAllocatorDump;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var HeapDump = tr.model.HeapDump;
   var AggregationMode = tr.ui.analysis.MemoryColumn.AggregationMode;
   var checkNumericFields = tr.ui.analysis.checkNumericFields;
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_header_pane.html b/catapult/tracing/tracing/ui/analysis/memory_dump_header_pane.html
index 497e151..3033295 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_header_pane.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_header_pane.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_overview_pane.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html">
 <link rel="import" href="/tracing/ui/analysis/stacked_pane.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-memory-dump-header-pane'>
   <template>
@@ -90,7 +90,7 @@
      */
     set containerMemoryDumps(containerMemoryDumps) {
       this.containerMemoryDumps_ = containerMemoryDumps;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get containerMemoryDumps() {
@@ -99,14 +99,14 @@
 
     set aggregationMode(aggregationMode) {
       this.aggregationMode_ = aggregationMode;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get aggregationMode() {
       return this.aggregationMode_;
     },
 
-    rebuildPane_: function() {
+    onRebuild_: function() {
       this.updateLabel_();
       this.updateAggregationModeSelector_();
       this.changeChildPane_();
@@ -131,14 +131,14 @@
       // TODO(petrcermak): Use <tr-v-ui-scalar-span> once it can be displayed
       // inline. See https://github.com/catapult-project/catapult/issues/1371.
       Polymer.dom(this.$.label).appendChild(document.createTextNode(
-          tr.v.Unit.byName.timeStampInMs.format(
+          tr.b.Unit.byName.timeStampInMs.format(
               this.containerMemoryDumps_[0].start)));
       if (isMultiSelection) {
         var ELLIPSIS = String.fromCharCode(8230);
         Polymer.dom(this.$.label).appendChild(
             document.createTextNode(ELLIPSIS));
         Polymer.dom(this.$.label).appendChild(document.createTextNode(
-            tr.v.Unit.byName.timeStampInMs.format(
+            tr.b.Unit.byName.timeStampInMs.format(
                 this.containerMemoryDumps_[containerDumpCount - 1].start)));
       }
     },
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane.html b/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane.html
index 47578f5..e04383c 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane.html
@@ -8,13 +8,13 @@
 <link rel="import" href="/tracing/base/color_scheme.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/multi_dimensional_view.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html">
 <link rel="import" href="/tracing/ui/analysis/stacked_pane.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
-<link rel='import' href='/tracing/ui/base/info_bar.html'>
+<link rel="import" href="/tracing/ui/base/info_bar.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-memory-dump-heap-details-pane'>
   <template>
@@ -90,9 +90,9 @@
 
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var MultiDimensionalViewBuilder = tr.b.MultiDimensionalViewBuilder;
   var TotalState = tr.b.MultiDimensionalViewNode.TotalState;
 
@@ -251,7 +251,7 @@
      */
     set heapDumps(heapDumps) {
       this.heapDumps_ = heapDumps;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get heapDumps() {
@@ -260,7 +260,7 @@
 
     set aggregationMode(aggregationMode) {
       this.aggregationMode_ = aggregationMode;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get aggregationMode() {
@@ -269,7 +269,7 @@
 
     set viewMode(viewMode) {
       this.viewMode_ = viewMode;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get viewMode() {
@@ -286,7 +286,7 @@
       }
     },
 
-    rebuildPane_: function() {
+    onRebuild_: function() {
       if (this.heapDumps_ === undefined ||
           this.heapDumps_.length === 0) {
         // Show the info text (hide the table and the view mode selector).
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html b/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
index 8ebdb7c..06c75d8 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_heap_details_pane_test.html
@@ -7,6 +7,7 @@
 
 <link rel='import' href='/tracing/base/iteration_helpers.html'>
 <link rel='import' href='/tracing/base/multi_dimensional_view.html'>
+<link rel="import" href="/tracing/base/unit.html">
 <link rel='import' href='/tracing/core/test_utils.html'>
 <link rel='import' href='/tracing/model/heap_dump.html'>
 <link rel='import' href='/tracing/model/memory_dump_test_utils.html'>
@@ -15,7 +16,6 @@
 <link rel='import'
     href='/tracing/ui/analysis/memory_dump_sub_view_test_utils.html'>
 <link rel='import' href='/tracing/ui/analysis/memory_dump_sub_view_util.html'>
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -41,7 +41,7 @@
   var checkSizeNumericFields = tr.ui.analysis.checkSizeNumericFields;
   var isElementDisplayed = tr.ui.analysis.isElementDisplayed;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
 
   function createHeapDumps(withCount) {
     var model = new tr.Model();
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane.html b/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane.html
index f4b7541..a775339 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane.html
@@ -7,6 +7,8 @@
 
 <link rel="import" href="/tracing/base/color_scheme.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 <link rel="import" href="/tracing/model/memory_allocator_dump.html">
 <link rel="import"
     href="/tracing/ui/analysis/memory_dump_allocator_details_pane.html">
@@ -19,8 +21,6 @@
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/ui/view_specific_brushing_state.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/unit_scale.html">
 
 <dom-module id='tr-ui-a-memory-dump-overview-pane'>
   <template>
@@ -46,6 +46,7 @@
         flex: 1 0 auto;
         align-self: stretch;
         font-size: 12px;
+        overflow: auto;
       }
 
       #info_text {
@@ -79,7 +80,7 @@
   var ColorScheme = tr.b.ColorScheme;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
 
   var PLATFORM_SPECIFIC_TOTAL_NAME_SUFFIX = '_bytes';
 
@@ -149,7 +150,7 @@
     },
 
     getFormattingContext: function(unit) {
-      return { unitPrefix: tr.v.UnitScale.Binary.MEBI };
+      return { unitPrefix: tr.b.UnitScale.Binary.MEBI };
     },
 
     color: function(numerics, processMemoryDumps) {
@@ -340,7 +341,7 @@
     },
 
     getFormattingContext: function(unit) {
-      return { unitPrefix: tr.v.UnitScale.Binary.MEBI };
+      return { unitPrefix: tr.b.UnitScale.Binary.MEBI };
     },
 
     addInfos: function(numerics, processMemoryDumps, infos) {
@@ -492,7 +493,7 @@
      */
     set processMemoryDumps(processMemoryDumps) {
       this.processMemoryDumps_ = processMemoryDumps;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get processMemoryDumps() {
@@ -501,7 +502,7 @@
 
     set aggregationMode(aggregationMode) {
       this.aggregationMode_ = aggregationMode;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get aggregationMode() {
@@ -550,7 +551,7 @@
       return selectedColumn.getChildPaneBuilder(selectedTableRow.contexts);
     },
 
-    rebuildPane_: function() {
+    onRebuild_: function() {
       if (this.processMemoryDumps_ === undefined ||
           this.processMemoryDumps_.length === 0) {
         // Show the info text (hide the table).
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html b/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html
index 20c39f9..f4bfbfb 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_overview_pane_test.html
@@ -22,7 +22,7 @@
 tr.b.unittest.testSuite(function() {
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var MemoryAllocatorDump = tr.model.MemoryAllocatorDump;
   var HeapDump = tr.model.HeapDump;
   var AggregationMode = tr.ui.analysis.MemoryColumn.AggregationMode;
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_test_utils.html b/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_test_utils.html
index d9159e6..57c2daf 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_test_utils.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_test_utils.html
@@ -7,6 +7,7 @@
 
 <link rel="import" href="/tracing/base/color.html">
 <link rel="import" href="/tracing/base/color_scheme.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/model/global_memory_dump.html">
 <link rel="import" href="/tracing/model/heap_dump.html">
@@ -14,7 +15,6 @@
 <link rel="import" href="/tracing/model/process_memory_dump.html">
 <link rel="import" href="/tracing/model/vm_region.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -31,9 +31,9 @@
   var VMRegionClassificationNode = tr.model.VMRegionClassificationNode;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var unitlessNumber_smallerIsBetter =
-      tr.v.Unit.byName.unitlessNumber_smallerIsBetter;
+      tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
   var HeapDump = tr.model.HeapDump;
   var addGlobalMemoryDump = tr.model.MemoryDumpTestUtils.addGlobalMemoryDump;
   var addProcessMemoryDump = tr.model.MemoryDumpTestUtils.addProcessMemoryDump;
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util.html b/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util.html
index f985891..6afb45c 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util.html
@@ -869,8 +869,8 @@
     __proto__: NumericMemoryColumn.prototype,
 
     getFormattingContext: function(unit) {
-      if (unit.baseUnit === tr.v.Unit.byName.sizeInBytes)
-        return { unitPrefix: tr.v.UnitScale.Binary.KIBI };
+      if (unit.baseUnit === tr.b.Unit.byName.sizeInBytes)
+        return { unitPrefix: tr.b.UnitScale.Binary.KIBI };
       return undefined;
     }
   };
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util_test.html b/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util_test.html
index e576879..1e42d4e 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util_test.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_sub_view_util_test.html
@@ -6,13 +6,13 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import"
     href="/tracing/ui/analysis/memory_dump_sub_view_test_utils.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -30,7 +30,7 @@
       tr.ui.analysis.aggregateTableRowCellsRecursively;
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
   var checkSizeNumericFields = tr.ui.analysis.checkSizeNumericFields;
   var checkNumericFields = tr.ui.analysis.checkNumericFields;
   var checkStringFields = tr.ui.analysis.checkStringFields;
@@ -118,8 +118,8 @@
                   [512, 513]),
               'mixed': new MemoryCell(['0.01', '0.10']),
               'mixed2': new MemoryCell([
-                new ScalarNumeric(tr.v.Unit.byName.powerInWatts, 2.43e18),
-                new ScalarNumeric(tr.v.Unit.byName.powerInWatts, 0.5433)
+                new ScalarNumeric(tr.b.Unit.byName.powerInWatts, 2.43e18),
+                new ScalarNumeric(tr.b.Unit.byName.powerInWatts, 0.5433)
               ])
             }
           }
@@ -129,7 +129,7 @@
         title: 'Row 2',
         fields: {
           'cpu_temperature': undefined,
-          'mixed': buildScalarCell(tr.v.Unit.byName.timeDurationInMs,
+          'mixed': buildScalarCell(tr.b.Unit.byName.timeDurationInMs,
               [0.99, 0.999])
         }
       }
@@ -175,8 +175,8 @@
       assert.strictEqual(element.tagName, 'TR-V-UI-SCALAR-SPAN');
       assert.strictEqual(element.value, expectedValue);
       assert.strictEqual(element.unit, opt_expectedIsDelta ?
-          tr.v.Unit.byName.sizeInBytesDelta_smallerIsBetter :
-          tr.v.Unit.byName.sizeInBytes_smallerIsBetter);
+          tr.b.Unit.byName.sizeInBytesDelta_smallerIsBetter :
+          tr.b.Unit.byName.sizeInBytes_smallerIsBetter);
       assert.deepEqual(element.context, opt_expectedContext);
     };
   }
@@ -367,8 +367,8 @@
     assert.isUndefined(c.fields({x: new MemoryCell(undefined)}));
 
     // Defined field(s) inside cell.
-    var field1 = new ScalarNumeric(tr.v.Unit.byName.powerInWatts, 1013.25);
-    var field2 = new ScalarNumeric(tr.v.Unit.byName.powerInWatts, 1065);
+    var field1 = new ScalarNumeric(tr.b.Unit.byName.powerInWatts, 1013.25);
+    var field2 = new ScalarNumeric(tr.b.Unit.byName.powerInWatts, 1065);
     var row1 = {x: new MemoryCell([field1])};
     var row2 = {x: new MemoryCell([field1, field2])};
     assert.deepEqual(c.fields(row1), [field1]);
@@ -772,7 +772,7 @@
     // With custom formatting context.
     c.getFormattingContext = function(unit) {
       assert.strictEqual(unit,
-          tr.v.Unit.byName.sizeInBytesDelta_smallerIsBetter);
+          tr.b.Unit.byName.sizeInBytesDelta_smallerIsBetter);
       return { minimumFractionDigits: 2 };
     };
     checkCellValue(this, c.value(row),
@@ -785,10 +785,10 @@
     var c = new NumericMemoryColumn('non_bytes_column', ['x'],
         undefined /* aggregation mode */);
     var value = c.formatSingleField(new ScalarNumeric(
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter, 123));
+        tr.b.Unit.byName.unitlessNumber_smallerIsBetter, 123));
     assert.equal(value.tagName, 'TR-V-UI-SCALAR-SPAN');
     assert.equal(value.value, 123);
-    assert.equal(value.unit, tr.v.Unit.byName.unitlessNumber_smallerIsBetter);
+    assert.equal(value.unit, tr.b.Unit.byName.unitlessNumber_smallerIsBetter);
     this.addHTMLOutput(value);
 
     var c = new NumericMemoryColumn('bytes_column', ['x'],
@@ -797,7 +797,7 @@
         sizeInBytes_smallerIsBetter, 456));
     assert.equal(value.tagName, 'TR-V-UI-SCALAR-SPAN');
     assert.equal(value.value, 456);
-    assert.equal(value.unit, tr.v.Unit.byName.sizeInBytes_smallerIsBetter);
+    assert.equal(value.unit, tr.b.Unit.byName.sizeInBytes_smallerIsBetter);
     this.addHTMLOutput(value);
   });
 
@@ -806,26 +806,26 @@
     var c = new NumericMemoryColumn('non_bytes_column', ['x'],
         AggregationMode.DIFF);
     checkNumericMemoryColumnFieldFormat(this, c, [1, 2, 3],
-        tr.v.Unit.byName.unitlessNumberDelta_smallerIsBetter, 2);
+        tr.b.Unit.byName.unitlessNumberDelta_smallerIsBetter, 2);
     checkNumericMemoryColumnFieldFormat(this, c, [10, undefined],
-        tr.v.Unit.byName.unitlessNumberDelta_smallerIsBetter, -10);
+        tr.b.Unit.byName.unitlessNumberDelta_smallerIsBetter, -10);
     checkNumericMemoryColumnFieldFormat(this, c, [undefined, 60, 0],
-        tr.v.Unit.byName.unitlessNumberDelta_smallerIsBetter, 0);
+        tr.b.Unit.byName.unitlessNumberDelta_smallerIsBetter, 0);
     checkNumericMemoryColumnFieldFormat(
         this, c, [2.71828, 2.71829] /* diff within epsilon */,
-        tr.v.Unit.byName.unitlessNumberDelta_smallerIsBetter, 0);
+        tr.b.Unit.byName.unitlessNumberDelta_smallerIsBetter, 0);
 
     var c = new NumericMemoryColumn('bytes_column', ['x'],
         AggregationMode.DIFF);
     checkNumericMemoryColumnFieldFormat(this, c, [1, 2, 3],
-        tr.v.Unit.byName.sizeInBytesDelta_smallerIsBetter, 2);
+        tr.b.Unit.byName.sizeInBytesDelta_smallerIsBetter, 2);
     checkNumericMemoryColumnFieldFormat(this, c, [10, undefined],
-        tr.v.Unit.byName.sizeInBytesDelta_smallerIsBetter, -10);
+        tr.b.Unit.byName.sizeInBytesDelta_smallerIsBetter, -10);
     checkNumericMemoryColumnFieldFormat(this, c, [undefined, 60, 0],
-        tr.v.Unit.byName.sizeInBytesDelta_smallerIsBetter, 0);
+        tr.b.Unit.byName.sizeInBytesDelta_smallerIsBetter, 0);
     checkNumericMemoryColumnFieldFormat(
         this, c, [1.41421, 1.41422] /* diff within epsilon */,
-        tr.v.Unit.byName.sizeInBytesDelta_smallerIsBetter, 0);
+        tr.b.Unit.byName.sizeInBytesDelta_smallerIsBetter, 0);
   });
 
   test('checkNumericMemoryColumn_formatMultipleFields_max',
@@ -833,24 +833,24 @@
     var c = new NumericMemoryColumn('non_bytes_column', ['x'],
         AggregationMode.MAX);
     checkNumericMemoryColumnFieldFormat(this, c, [1, 2, 3],
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter, 3);
+        tr.b.Unit.byName.unitlessNumber_smallerIsBetter, 3);
     checkNumericMemoryColumnFieldFormat(this, c, [10, undefined],
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter, 10);
+        tr.b.Unit.byName.unitlessNumber_smallerIsBetter, 10);
     checkNumericMemoryColumnFieldFormat(this, c, [undefined, 60, 0],
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter, 60);
+        tr.b.Unit.byName.unitlessNumber_smallerIsBetter, 60);
     checkNumericMemoryColumnFieldFormat(this, c, [undefined, 10, 20, undefined],
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter, 20);
+        tr.b.Unit.byName.unitlessNumber_smallerIsBetter, 20);
 
     var c = new NumericMemoryColumn('bytes_column', ['x'],
         AggregationMode.MAX);
     checkNumericMemoryColumnFieldFormat(this, c, [1, 2, 3],
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, 3);
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, 3);
     checkNumericMemoryColumnFieldFormat(this, c, [10, undefined],
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, 10);
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, 10);
     checkNumericMemoryColumnFieldFormat(this, c, [undefined, 60, 0],
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, 60);
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, 60);
     checkNumericMemoryColumnFieldFormat(this, c, [undefined, 10, 20, undefined],
-        tr.v.Unit.byName.sizeInBytes_smallerIsBetter, 20);
+        tr.b.Unit.byName.sizeInBytes_smallerIsBetter, 20);
   });
 
   test('checkNumericMemoryColumn_cmp', function() {
@@ -886,12 +886,12 @@
 
     assert.isBelow(c.compareSingleFields(
         new ScalarNumeric(
-            tr.v.Unit.byName.timeDurationInMs_smallerIsBetter, 99),
+            tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, 99),
         new ScalarNumeric(
-            tr.v.Unit.byName.timeDurationInMs_smallerIsBetter, 100)), 0);
+            tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, 100)), 0);
     assert.equal(c.compareSingleFields(
-        new ScalarNumeric(tr.v.Unit.byName.unitlessNumber, 0xEEE),
-        new ScalarNumeric(tr.v.Unit.byName.unitlessNumber, 0xEEE)), 0);
+        new ScalarNumeric(tr.b.Unit.byName.unitlessNumber, 0xEEE),
+        new ScalarNumeric(tr.b.Unit.byName.unitlessNumber, 0xEEE)), 0);
     assert.isAbove(c.compareSingleFields(
         new ScalarNumeric(sizeInBytes_smallerIsBetter, 10),
         new ScalarNumeric(sizeInBytes_smallerIsBetter, 2)), 0);
@@ -907,9 +907,9 @@
         buildScalarCell(sizeInBytes_smallerIsBetter,
             [5, 7, 8] /* diff +3 */).fields), 0);
     assert.equal(c.compareMultipleFields(
-        buildScalarCell(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
             [4, undefined] /* diff -4 */).fields,
-        buildScalarCell(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
             [999, 995] /* diff -4 */).fields), 0);
     assert.isAbove(c.compareMultipleFields(
         buildScalarCell(sizeInBytes_smallerIsBetter,
@@ -917,9 +917,9 @@
         buildScalarCell(sizeInBytes_smallerIsBetter,
             [11, 50, 12] /* diff +1 */).fields), 0);
     assert.equal(c.compareMultipleFields(
-        buildScalarCell(tr.v.Unit.byName.powerInWatts_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.powerInWatts_smallerIsBetter,
             [17, undefined, 17] /* diff 0 */).fields,
-        buildScalarCell(tr.v.Unit.byName.powerInWatts_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.powerInWatts_smallerIsBetter,
             [undefined, 100, undefined] /* diff 0 */).fields), 0);
     assert.equal(c.compareMultipleFields(
         buildScalarCell(sizeInBytes_smallerIsBetter,
@@ -937,18 +937,18 @@
             [10, undefined, 12]).fields,
         buildScalarCell(sizeInBytes_smallerIsBetter, [11, 50, 12]).fields), 0);
     assert.equal(c.compareMultipleFields(
-        buildScalarCell(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
             [999, undefined, -8888]).fields,
-        buildScalarCell(tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
             [undefined, 999, undefined]).fields), 0);
     assert.isAbove(c.compareMultipleFields(
         buildScalarCell(sizeInBytes_smallerIsBetter,
             [10000, 10001, 10002]).fields,
         buildScalarCell(sizeInBytes_smallerIsBetter, [5, 7, 8]).fields), 0);
     assert.isBelow(c.compareMultipleFields(
-        buildScalarCell(tr.v.Unit.byName.powerInWatts_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.powerInWatts_smallerIsBetter,
             [17, undefined, 17]).fields,
-        buildScalarCell(tr.v.Unit.byName.powerInWatts_smallerIsBetter,
+        buildScalarCell(tr.b.Unit.byName.powerInWatts_smallerIsBetter,
             [undefined, 100, undefined]).fields), 0);
   });
 
@@ -1134,7 +1134,7 @@
     var row = {
       // Intentionally no testCells.
       otherCells: {
-        a: buildScalarCell(tr.v.Unit.byName.unitlessNumber,
+        a: buildScalarCell(tr.b.Unit.byName.unitlessNumber,
             [5, undefined, undefined])
       }
     };
@@ -1157,7 +1157,7 @@
           b: buildScalarCell(sizeInBytes_smallerIsBetter, [5])
         },
         otherCells: {
-          a: buildScalarCell(tr.v.Unit.byName.unitlessNumber,
+          a: buildScalarCell(tr.b.Unit.byName.unitlessNumber,
               [153, undefined, 257]),
           b: new MemoryCell(['field-should-not-propagate-upwards', ''])
         }
@@ -1177,7 +1177,7 @@
     checkSizeNumericFields(row, ctc, undefined);
 
     checkNumericFields(row, coa, [5, undefined, 257],
-        tr.v.Unit.byName.unitlessNumber);
+        tr.b.Unit.byName.unitlessNumber);
     checkStringFields(row, cob, undefined);
   });
 
diff --git a/catapult/tracing/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html b/catapult/tracing/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html
index f092626..d035610 100644
--- a/catapult/tracing/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html
+++ b/catapult/tracing/tracing/ui/analysis/memory_dump_vm_regions_details_pane.html
@@ -6,11 +6,11 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/memory_dump_sub_view_util.html">
 <link rel="import" href="/tracing/ui/analysis/stacked_pane.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-memory-dump-vm-regions-details-pane'>
   <template>
@@ -65,7 +65,7 @@
 
   var ScalarNumeric = tr.v.ScalarNumeric;
   var sizeInBytes_smallerIsBetter =
-      tr.v.Unit.byName.sizeInBytes_smallerIsBetter;
+      tr.b.Unit.byName.sizeInBytes_smallerIsBetter;
 
   var CONSTANT_COLUMN_RULES = [
     {
@@ -189,7 +189,7 @@
      */
     set vmRegions(vmRegions) {
       this.vmRegions_ = vmRegions;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get vmRegions() {
@@ -198,14 +198,14 @@
 
     set aggregationMode(aggregationMode) {
       this.aggregationMode_ = aggregationMode;
-      this.scheduleRebuildPane_();
+      this.scheduleRebuild_();
     },
 
     get aggregationMode() {
       return this.aggregationMode_;
     },
 
-    rebuildPane_: function() {
+    onRebuild_: function() {
       if (this.vmRegions_ === undefined || this.vmRegions_.length === 0) {
         // Show the info text (hide the table).
         this.$.info_text.style.display = 'block';
diff --git a/catapult/tracing/tracing/ui/analysis/multi_event_details_table.html b/catapult/tracing/tracing/ui/analysis/multi_event_details_table.html
index f0ddb9f..3ed7c84 100644
--- a/catapult/tracing/tracing/ui/analysis/multi_event_details_table.html
+++ b/catapult/tracing/tracing/ui/analysis/multi_event_details_table.html
@@ -7,12 +7,12 @@
 
 <link rel="import" href="/tracing/base/base.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html">
 <link rel="import" href="/tracing/ui/analysis/multi_event_summary.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-multi-event-details-table'>
   <template>
@@ -168,7 +168,7 @@
             return new tr.model.EventSet(row.event);
         });
         Polymer.dom(linkEl).appendChild(tr.v.ui.createScalarSpan(row.start, {
-          unit: tr.v.Unit.byName.timeStampInMs,
+          unit: tr.b.Unit.byName.timeStampInMs,
           ownerDocument: ownerDocument
         }));
         return linkEl;
@@ -184,7 +184,7 @@
         title: 'Wall Duration (ms)',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.duration, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
+            unit: tr.b.Unit.byName.timeDurationInMs,
             ownerDocument: ownerDocument
           });
         },
@@ -200,7 +200,7 @@
         title: 'CPU Duration (ms)',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.cpuDuration, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
+            unit: tr.b.Unit.byName.timeDurationInMs,
             ownerDocument: ownerDocument
           });
         },
@@ -216,7 +216,7 @@
         title: 'Self time (ms)',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.selfTime, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
+            unit: tr.b.Unit.byName.timeDurationInMs,
             ownerDocument: ownerDocument
           });
         },
@@ -232,7 +232,7 @@
         title: 'CPU Self Time (ms)',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.cpuSelfTime, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
+            unit: tr.b.Unit.byName.timeDurationInMs,
             ownerDocument: ownerDocument
           });
         },
diff --git a/catapult/tracing/tracing/ui/analysis/multi_event_details_table_test.html b/catapult/tracing/tracing/ui/analysis/multi_event_details_table_test.html
index 0bf2d13..19a243a 100644
--- a/catapult/tracing/tracing/ui/analysis/multi_event_details_table_test.html
+++ b/catapult/tracing/tracing/ui/analysis/multi_event_details_table_test.html
@@ -135,22 +135,20 @@
     this.addHTMLOutput(viewEl);
   });
 
-  test('noDuration', function() {
+  test('noSubRowsSelfTime', function() {
     var model = new Model();
 
     var fe1 = new tr.model.FlowEvent('cat', 1234, 'title', 7, 10, {});
     var fe2 = new tr.model.FlowEvent('cat', 1234, 'title', 8, 20, {});
 
     // Make reading some properties an explosion, as a way to ensure that they
-    // aren't read.
+    // aren't read. Note that "duration" is read since it is used by the
+    // EventSet to get the range.
     var failProp = {
       get: function() {
         throw new Error('Should not be called');
       }
     };
-    Object.defineProperty(fe1, 'duration', failProp);
-    Object.defineProperty(fe2, 'duration', failProp);
-
     Object.defineProperty(fe1, 'subRows', failProp);
     Object.defineProperty(fe2, 'subRows', failProp);
 
diff --git a/catapult/tracing/tracing/ui/analysis/multi_event_summary_table.html b/catapult/tracing/tracing/ui/analysis/multi_event_summary_table.html
index 0386ed9..f27400b 100644
--- a/catapult/tracing/tracing/ui/analysis/multi_event_summary_table.html
+++ b/catapult/tracing/tracing/ui/analysis/multi_event_summary_table.html
@@ -7,13 +7,14 @@
 
 <link rel="import" href="/tracing/base/base.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/range.html">
 <link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
 <link rel="import" href="/tracing/ui/analysis/multi_event_summary.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-multi-event-summary-table'>
   <template>
@@ -82,8 +83,9 @@
         title: 'Wall Duration',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.duration, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
-            total: row.totalsRow ? undefined : maxValues.duration,
+            unit: tr.b.Unit.byName.timeDurationInMs,
+            customContextRange: row.totalsRow ? undefined :
+                tr.b.Range.fromExplicitRange(0, maxValues.duration),
             ownerDocument: ownerDocument,
             rightAlign: true
           });
@@ -100,8 +102,9 @@
         title: 'CPU Duration',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.cpuDuration, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
-            total: row.totalsRow ? undefined : maxValues.cpuDuration,
+            unit: tr.b.Unit.byName.timeDurationInMs,
+            customContextRange: row.totalsRow ? undefined :
+                tr.b.Range.fromExplicitRange(0, maxValues.cpuDuration),
             ownerDocument: ownerDocument,
             rightAlign: true
           });
@@ -118,8 +121,9 @@
         title: 'Self time',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.selfTime, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
-            total: row.totalsRow ? undefined : maxValues.selfTime,
+            unit: tr.b.Unit.byName.timeDurationInMs,
+            customContextRange: row.totalsRow ? undefined :
+                tr.b.Range.fromExplicitRange(0, maxValues.selfTime),
             ownerDocument: ownerDocument,
             rightAlign: true
           });
@@ -136,8 +140,9 @@
         title: 'CPU Self Time',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.cpuSelfTime, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
-            total: row.totalsRow ? undefined : maxValues.cpuSelfTime,
+            unit: tr.b.Unit.byName.timeDurationInMs,
+            customContextRange: row.totalsRow ? undefined :
+                tr.b.Range.fromExplicitRange(0, maxValues.cpuSelfTime),
             ownerDocument: ownerDocument,
             rightAlign: true
           });
@@ -155,8 +160,9 @@
         value: function(row) {
           var totalDuration = hasCpuData ? row.cpuDuration : row.duration;
           return tr.v.ui.createScalarSpan(totalDuration / row.numEvents, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
-            total: row.totalsRow ? undefined : maxValues.duration,
+            unit: tr.b.Unit.byName.timeDurationInMs,
+            customContextRange: row.totalsRow ? undefined :
+                tr.b.Range.fromExplicitRange(0, maxValues.duration),
             ownerDocument: ownerDocument,
             rightAlign: true
           });
@@ -291,12 +297,13 @@
     else
       eventsByTitle = [];
 
-    var allEvents = [];
+    var allEvents = new tr.model.EventSet();
     var rows = [];
     tr.b.iterItems(
         eventsByTitle,
         function(title, eventsOfSingleTitle) {
-          allEvents.push.apply(allEvents, eventsOfSingleTitle);
+          for (var event of allEvents)
+            allEvents.push(event);
           var row = new tr.ui.analysis.MultiEventSummary(
             title, eventsOfSingleTitle);
           rows.push(row);
diff --git a/catapult/tracing/tracing/ui/analysis/multi_event_summary_table_test.html b/catapult/tracing/tracing/ui/analysis/multi_event_summary_table_test.html
index ebef452..97898ae 100644
--- a/catapult/tracing/tracing/ui/analysis/multi_event_summary_table_test.html
+++ b/catapult/tracing/tracing/ui/analysis/multi_event_summary_table_test.html
@@ -68,22 +68,20 @@
     this.addHTMLOutput(viewEl);
   });
 
-  test('noDurationNoSubRows', function() {
+  test('noSelfTimeNoSubRows', function() {
     var model = new Model();
 
     var fe1 = new tr.model.FlowEvent('cat', 1234, 'title', 7, 10, {});
     var fe2 = new tr.model.FlowEvent('cat', 1234, 'title', 8, 20, {});
 
     // Make reading some properties an explosion, as a way to ensure that they
-    // aren't read.
+    // aren't read. Note that 'duration' is read since it is used by the
+    // EventSet to get the range.
     var failProp = {
       get: function() {
         throw new Error('Should not be called');
       }
     };
-    Object.defineProperty(fe1, 'duration', failProp);
-    Object.defineProperty(fe2, 'duration', failProp);
-
     Object.defineProperty(fe1, 'subRows', failProp);
     Object.defineProperty(fe2, 'subRows', failProp);
 
diff --git a/catapult/tracing/tracing/ui/analysis/multi_object_sub_view.html b/catapult/tracing/tracing/ui/analysis/multi_object_sub_view.html
index 2cd487b..4ad14b3 100644
--- a/catapult/tracing/tracing/ui/analysis/multi_object_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/multi_object_sub_view.html
@@ -5,13 +5,13 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-multi-object-sub-view'>
   <template>
@@ -49,7 +49,7 @@
         tr.b.Range.compareByMinTimes);
 
     var timeSpanConfig = {
-      unit: tr.v.Unit.byName.timeStampInMs,
+      unit: tr.b.Unit.byName.timeStampInMs,
       ownerDocument: this.ownerDocument
     };
     var table = this.$.content;
diff --git a/catapult/tracing/tracing/ui/analysis/multi_sample_sub_view.html b/catapult/tracing/tracing/ui/analysis/multi_sample_sub_view.html
index 8137918..5e0448b 100644
--- a/catapult/tracing/tracing/ui/analysis/multi_sample_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/multi_sample_sub_view.html
@@ -6,10 +6,11 @@
 -->
 
 <link rel="import" href="/tracing/base/multi_dimensional_view.html">
+<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-multi-sample-sub-view'>
   <template>
@@ -237,14 +238,14 @@
       return {
         title: title + ' percent',
         value: function(row) {
-          var percent = row.values[0][field] / samplingDataTotal;
-
-          var span = document.createElement('tr-v-ui-scalar-span');
-          span.value = (percent * 100).toFixed(2);
-          span.percentage = percent;
-          span.unit = tr.v.Unit.byName.unitlessNumber;
-          return span;
-        }.bind(this),
+          return tr.v.ui.createScalarSpan(
+              row.values[0][field] / samplingDataTotal, {
+                customContextRange: tr.b.Range.PERCENT_RANGE,
+                unit: tr.b.Unit.byName.normalizedPercentage,
+                context: { minimumFractionDigits: 2, maximumFractionDigits: 2 },
+                rightAlign: true
+              });
+        },
         width: '60px',
         cmp: function(a, b) {
           return a.values[0][field] - b.values[0][field];
@@ -257,7 +258,11 @@
       return {
         title: title + ' samples',
         value: function(row) {
-          return row.values[0][field];
+          return tr.v.ui.createScalarSpan(row.values[0][field], {
+            unit: tr.b.Unit.byName.unitlessNumber,
+            context: { maximumFractionDigits: 0 },
+            rightAlign: true
+          });
         },
         width: '60px',
         cmp: function(a, b) {
diff --git a/catapult/tracing/tracing/ui/analysis/power_sample_summary_table.html b/catapult/tracing/tracing/ui/analysis/power_sample_summary_table.html
index ebd6b78..186c512 100644
--- a/catapult/tracing/tracing/ui/analysis/power_sample_summary_table.html
+++ b/catapult/tracing/tracing/ui/analysis/power_sample_summary_table.html
@@ -6,9 +6,10 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/base/table.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-power-sample-summary-table'>
   <template>
@@ -27,29 +28,29 @@
         title: 'Min power',
         width: '100px',
         value: function(row) {
-          return tr.v.Unit.byName.powerInWatts.format(row.min);
+          return tr.b.Unit.byName.powerInWatts.format(row.min);
         }
       },
       {
         title: 'Max power',
         width: '100px',
         value: function(row) {
-          return tr.v.Unit.byName.powerInWatts.format(row.max);
+          return tr.b.Unit.byName.powerInWatts.format(row.max);
         }
       },
       {
         title: 'Time-weighted average',
         width: '100px',
         value: function(row) {
-          return tr.v.Unit.byName.powerInWatts.format(
-              row.timeWeightedAverage);
+          return tr.b.Unit.byName.powerInWatts.format(
+              row.timeWeightedAverageInW);
         }
       },
       {
         title: 'Energy consumed',
         width: '100px',
         value: function(row) {
-          return tr.v.Unit.byName.energyInJoules.format(row.energyConsumed);
+          return tr.b.Unit.byName.energyInJoules.format(row.energyConsumedInJ);
         }
       },
       {
@@ -81,8 +82,8 @@
       this.$.table.tableRows = [{
         min: this.getMin(),
         max: this.getMax(),
-        timeWeightedAverage: this.getTimeWeightedAverage(),
-        energyConsumed: this.getEnergyConsumed(),
+        timeWeightedAverageInW: this.getTimeWeightedAverageInW(),
+        energyConsumedInJ: this.getEnergyConsumedInJ(),
         sampleCount: this.samples.length
       }];
     }
@@ -92,13 +93,13 @@
 
   getMin: function() {
     return Math.min.apply(null, this.samples.map(function(sample) {
-      return sample.power;
+      return sample.powerInW;
     }));
   },
 
   getMax: function() {
     return Math.max.apply(null, this.samples.map(function(sample) {
-      return sample.power;
+      return sample.powerInW;
     }));
   },
 
@@ -106,27 +107,26 @@
    * Returns a time-weighted average of the power consumption (Watts)
    * in between the first sample (inclusive) and last sample (exclusive).
    */
-  getTimeWeightedAverage: function() {
-    var energyConsumed = this.getEnergyConsumed();
+  getTimeWeightedAverageInW: function() {
+    var energyConsumedInJ = this.getEnergyConsumedInJ();
 
-    if (energyConsumed === 'N/A')
+    if (energyConsumedInJ === 'N/A')
       return 'N/A';
 
-    // Divide by 1000 to convert milliseconds to seconds.
-    var durationInSeconds = this.samples.bounds.duration / 1000;
+    var durationInS = tr.b.convertUnit(this.samples.bounds.duration,
+        tr.b.UnitScale.Metric.MILLI, tr.b.UnitScale.Metric.NONE);
 
-    // Convert energy to power in milliwatts by dividing by time in seconds.
-    return this.getEnergyConsumed() / durationInSeconds;
+    return energyConsumedInJ / durationInS;
   },
 
 
-  getEnergyConsumed: function() {
+  getEnergyConsumedInJ: function() {
     if (this.samples.length < 2)
       return 'N/A';
 
     var bounds = this.samples.bounds;
     var series = tr.b.getFirstElement(this.samples).series;
-    return series.getEnergyConsumed(bounds.min, bounds.max);
+    return series.getEnergyConsumedInJ(bounds.min, bounds.max);
   }
 });
 </script>
diff --git a/catapult/tracing/tracing/ui/analysis/power_sample_summary_table_test.html b/catapult/tracing/tracing/ui/analysis/power_sample_summary_table_test.html
index 82cc98d..151a364 100644
--- a/catapult/tracing/tracing/ui/analysis/power_sample_summary_table_test.html
+++ b/catapult/tracing/tracing/ui/analysis/power_sample_summary_table_test.html
@@ -58,8 +58,8 @@
     assert.lengthOf(table.$.table.tableRows, 1);
     assert.equal(table.$.table.tableRows[0].min, 1);
     assert.equal(table.$.table.tableRows[0].max, 1);
-    assert.equal(table.$.table.tableRows[0].timeWeightedAverage, 'N/A');
-    assert.equal(table.$.table.tableRows[0].energyConsumed, 'N/A');
+    assert.equal(table.$.table.tableRows[0].timeWeightedAverageInW, 'N/A');
+    assert.equal(table.$.table.tableRows[0].energyConsumedInJ, 'N/A');
     assert.equal(table.$.table.tableRows[0].sampleCount, 1);
   });
 
@@ -75,8 +75,8 @@
     assert.lengthOf(table.$.table.tableRows, 1);
     assert.equal(table.$.table.tableRows[0].min, 1);
     assert.equal(table.$.table.tableRows[0].max, 2);
-    assert.equal(table.$.table.tableRows[0].timeWeightedAverage, 1);
-    assert.equal(table.$.table.tableRows[0].energyConsumed, 1);
+    assert.equal(table.$.table.tableRows[0].timeWeightedAverageInW, 1);
+    assert.equal(table.$.table.tableRows[0].energyConsumedInJ, 1);
     assert.equal(table.$.table.tableRows[0].sampleCount, 2);
   });
 
@@ -93,8 +93,8 @@
     assert.lengthOf(table.$.table.tableRows, 1);
     assert.equal(table.$.table.tableRows[0].min, 1);
     assert.equal(table.$.table.tableRows[0].max, 3);
-    assert.equal(table.$.table.tableRows[0].timeWeightedAverage, 1.5);
-    assert.equal(table.$.table.tableRows[0].energyConsumed, 3);
+    assert.equal(table.$.table.tableRows[0].timeWeightedAverageInW, 1.5);
+    assert.equal(table.$.table.tableRows[0].energyConsumedInJ, 3);
     assert.equal(table.$.table.tableRows[0].sampleCount, 3);
   });
 
diff --git a/catapult/tracing/tracing/ui/analysis/rebuildable_behavior.html b/catapult/tracing/tracing/ui/analysis/rebuildable_behavior.html
new file mode 100644
index 0000000..65cf075
--- /dev/null
+++ b/catapult/tracing/tracing/ui/analysis/rebuildable_behavior.html
@@ -0,0 +1,59 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/raf.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.ui.analysis', function() {
+
+  var RebuildableBehavior = {
+    rebuild: function() {
+      /**
+       * Rebuild the pane if necessary.
+       *
+       * This method is not intended to be overriden by subclasses. Please
+       * override scheduleRebuild_() instead.
+       */
+      if (!this.paneDirty_) {
+        // Avoid rebuilding unnecessarily as it breaks things like table
+        // selection.
+        return;
+      }
+
+      this.paneDirty_ = false;
+      this.onRebuild_();
+    },
+
+    /**
+     * Mark the UI state of the pane as dirty and schedule a rebuild.
+     *
+     * This method is intended to be called by subclasses.
+     */
+    scheduleRebuild_: function() {
+      if (this.paneDirty_)
+        return;
+      this.paneDirty_ = true;
+      tr.b.requestAnimationFrame(this.rebuild.bind(this));
+    },
+
+    /**
+     * Called when the pane is dirty and a rebuild is triggered.
+     *
+     * This method is intended to be overriden by subclasses (instead of
+     * directly overriding rebuild()).
+     */
+    onRebuild_: function() {
+    }
+  };
+
+  return {
+    RebuildableBehavior: RebuildableBehavior
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/analysis/rebuildable_behavior_test.html b/catapult/tracing/tracing/ui/analysis/rebuildable_behavior_test.html
new file mode 100644
index 0000000..4b7ed3a
--- /dev/null
+++ b/catapult/tracing/tracing/ui/analysis/rebuildable_behavior_test.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/ui/analysis/rebuildable_behavior.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  Polymer({
+    is: 'tr-ui-analysis-rebuildable-test-element',
+    behaviors: [tr.ui.analysis.RebuildableBehavior]
+  });
+
+  test('rebuild', function() {
+    var el = document.createElement('tr-ui-analysis-rebuildable-test-element');
+    var didFireOnRebuild;
+    el.onRebuild_ = function() {
+      assert.strictEqual(this, el);
+      didFireOnRebuild = true;
+    };
+
+    function checkManualRebuild(expectedDidFireOnRebuild) {
+      didFireOnRebuild = false;
+      el.rebuild();
+      assert.strictEqual(didFireOnRebuild, expectedDidFireOnRebuild);
+    }
+
+    function checkRAFRebuild(expectedDidFireOnRebuild) {
+      didFireOnRebuild = false;
+      tr.b.forcePendingRAFTasksToRun();
+      assert.strictEqual(didFireOnRebuild, expectedDidFireOnRebuild);
+    }
+
+    // No rebuilds should occur when not scheduled.
+    checkManualRebuild(false);
+    checkRAFRebuild(false);
+
+    // Single rebuild should occur when scheduled once.
+    el.scheduleRebuild_();
+    checkManualRebuild(true);
+    checkManualRebuild(false);
+
+    el.scheduleRebuild_();
+    checkRAFRebuild(true);
+    checkRAFRebuild(false);
+
+    // Only a single rebuild should occur even when scheduled multiple times.
+    el.scheduleRebuild_();
+    el.scheduleRebuild_();
+    checkManualRebuild(true);
+    checkRAFRebuild(false);
+    checkManualRebuild(false);
+
+    el.scheduleRebuild_();
+    el.scheduleRebuild_();
+    checkRAFRebuild(true);
+    checkRAFRebuild(false);
+    checkManualRebuild(false);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/analysis/related_events.html b/catapult/tracing/tracing/ui/analysis/related_events.html
index 5e57660..361fd74 100644
--- a/catapult/tracing/tracing/ui/analysis/related_events.html
+++ b/catapult/tracing/tracing/ui/analysis/related_events.html
@@ -96,6 +96,8 @@
   setRelatedEvents: function(eventSet) {
     this.cancelAllTasks_();
     this.eventGroups_ = [];
+    this.addRuntimeCallStats_(eventSet);
+    this.addV8Slices_(eventSet);
     this.addConnectedFlows_(eventSet);
     this.addConnectedEvents_(eventSet);
     this.addOverlappingSamples_(eventSet);
@@ -231,7 +233,7 @@
         selection: events
       });
       this.updateContents_();
-    };
+    }
     function cancelTask() {
       isCanceled = true;
     }
@@ -262,6 +264,37 @@
     }
   },
 
+  addV8Slices_: function(eventSet) {
+    var v8Slices = new tr.model.EventSet;
+    for (var slice of eventSet) {
+      if (slice.category === 'v8')
+        v8Slices.push(slice);
+    }
+    if (v8Slices.length > 0) {
+      this.eventGroups_.push({
+        type: 'V8 Slices',
+        tooltip: 'All V8 slices in the selected slice(s).',
+        selection: v8Slices
+      });
+    }
+  },
+
+  addRuntimeCallStats_: function(eventSet) {
+    var slices = new tr.model.EventSet;
+    for (var slice of eventSet) {
+      if (slice.category === 'v8' && slice.runtimeCallStats)
+        slices.push(slice);
+    }
+    if (slices.length > 0) {
+      this.eventGroups_.push({
+        type: 'Runtime call stats table',
+        // eslint-disable-next-line
+        tooltip: 'All V8 slices containing runtime call stats table in the selected slice(s).',
+        selection: slices
+      });
+    }
+  },
+
   updateContents_: function() {
     var table = this.$.table;
     if (this.eventGroups_ === undefined)
diff --git a/catapult/tracing/tracing/ui/analysis/selection_summary_table.html b/catapult/tracing/tracing/ui/analysis/selection_summary_table.html
index e79125e..e7e7d3f 100644
--- a/catapult/tracing/tracing/ui/analysis/selection_summary_table.html
+++ b/catapult/tracing/tracing/ui/analysis/selection_summary_table.html
@@ -6,9 +6,9 @@
 -->
 
 <link rel="import" href="/tracing/base/base.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-selection-summary-table'>
   <template>
@@ -75,7 +75,7 @@
       title: 'Selection start',
       value: hasRange ? tr.v.ui.createScalarSpan(
           selection.bounds.min, {
-            unit: tr.v.Unit.byName.timeStampInMs,
+            unit: tr.b.Unit.byName.timeStampInMs,
             ownerDocument: this.ownerDocument
           }) : '<empty>'
     });
@@ -83,7 +83,7 @@
       title: 'Selection extent',
       value: hasRange ? tr.v.ui.createScalarSpan(
           selection.bounds.range, {
-            unit: tr.v.Unit.byName.timeDurationInMs,
+            unit: tr.b.Unit.byName.timeDurationInMs,
             ownerDocument: this.ownerDocument
           }) : '<empty>'
     });
diff --git a/catapult/tracing/tracing/ui/analysis/selection_summary_table_test.html b/catapult/tracing/tracing/ui/analysis/selection_summary_table_test.html
index 5c1f169..d8332b5 100644
--- a/catapult/tracing/tracing/ui/analysis/selection_summary_table_test.html
+++ b/catapult/tracing/tracing/ui/analysis/selection_summary_table_test.html
@@ -5,12 +5,12 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/model/model.html">
 <link rel="import" href="/tracing/ui/analysis/selection_summary_table.html">
 <link rel="import" href="/tracing/ui/base/deep_utils.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -66,10 +66,10 @@
         summaryTable, 'tr-ui-b-table');
     assert.equal(tableEl.tableRows[0].value.value, 0);
     assert.strictEqual(tableEl.tableRows[0].value.unit,
-        tr.v.Unit.byName.timeStampInMs);
+        tr.b.Unit.byName.timeStampInMs);
     assert.equal(tableEl.tableRows[1].value.value, 3);
     assert.strictEqual(tableEl.tableRows[1].value.unit,
-        tr.v.Unit.byName.timeDurationInMs);
+        tr.b.Unit.byName.timeDurationInMs);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/ui/analysis/single_cpu_slice_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_cpu_slice_sub_view.html
index 355062b..a4f98dd 100644
--- a/catapult/tracing/tracing/ui/analysis/single_cpu_slice_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_cpu_slice_sub_view.html
@@ -6,12 +6,12 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/base/utils.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-single-cpu-slice-sub-view'>
   <template>
@@ -117,9 +117,9 @@
     }
 
     root.querySelector('#start').setValueAndUnit(
-        cpuSlice.start, tr.v.Unit.byName.timeStampInMs);
+        cpuSlice.start, tr.b.Unit.byName.timeStampInMs);
     root.querySelector('#duration').setValueAndUnit(
-        cpuSlice.duration, tr.v.Unit.byName.timeDurationInMs);
+        cpuSlice.duration, tr.b.Unit.byName.timeDurationInMs);
 
     var runningThreadEl = root.querySelector('#running-thread');
 
diff --git a/catapult/tracing/tracing/ui/analysis/single_event_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_event_sub_view.html
index 3099a83..b3a852c 100644
--- a/catapult/tracing/tracing/ui/analysis/single_event_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_event_sub_view.html
@@ -7,6 +7,7 @@
 
 <link rel="import" href="/tracing/base/base.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html">
@@ -14,7 +15,6 @@
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/ui/base/ui.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-single-event-sub-view'>
   <template>
@@ -134,7 +134,7 @@
     rows.push({
       name: 'Start',
       value: tr.v.ui.createScalarSpan(event.start, {
-        unit: tr.v.Unit.byName.timeStampInMs
+        unit: tr.b.Unit.byName.timeStampInMs
       })
     });
 
@@ -142,7 +142,7 @@
       rows.push({
         name: 'Wall Duration',
         value: tr.v.ui.createScalarSpan(event.duration, {
-          unit: tr.v.Unit.byName.timeDurationInMs
+          unit: tr.b.Unit.byName.timeDurationInMs
         })
       });
     }
@@ -151,7 +151,7 @@
       rows.push({
         name: 'CPU Duration',
         value: tr.v.ui.createScalarSpan(event.cpuDuration, {
-          unit: tr.v.Unit.byName.timeDurationInMs
+          unit: tr.b.Unit.byName.timeDurationInMs
         })
       });
     }
@@ -161,14 +161,14 @@
         rows.push({
           name: 'Self Time',
           value: tr.v.ui.createScalarSpan(event.selfTime, {
-            unit: tr.v.Unit.byName.timeDurationInMs
+            unit: tr.b.Unit.byName.timeDurationInMs
           })
         });
       }
 
       if (event.cpuSelfTime) {
         var cpuSelfTimeEl = tr.v.ui.createScalarSpan(event.cpuSelfTime, {
-          unit: tr.v.Unit.byName.timeDurationInMs
+          unit: tr.b.Unit.byName.timeDurationInMs
         });
         if (event.cpuSelfTime > event.selfTime) {
           cpuSelfTimeEl.warning =
@@ -185,7 +185,7 @@
       rows.push({
         name: 'Duration (U)',
         value: tr.v.ui.createScalarSpan(event.durationInUserTime, {
-          unit: tr.v.Unit.byName.timeDurationInMs
+          unit: tr.b.Unit.byName.timeDurationInMs
         })
       });
     }
diff --git a/catapult/tracing/tracing/ui/analysis/single_event_sub_view_test.html b/catapult/tracing/tracing/ui/analysis/single_event_sub_view_test.html
index 305d9ee..0a3d481 100644
--- a/catapult/tracing/tracing/ui/analysis/single_event_sub_view_test.html
+++ b/catapult/tracing/tracing/ui/analysis/single_event_sub_view_test.html
@@ -58,7 +58,7 @@
 
       t53.sliceGroup.pushSlice(slice);
     });
-  };
+  }
 
   test('instantiate_withSingleSlice', function() {
     var selection = createSelectionWithSingleSlice();
@@ -195,10 +195,10 @@
     assert.equal(table.tableRows[0].value, 'b');
     assert.equal(table.tableRows[1].value.value, 0);
     assert.strictEqual(table.tableRows[1].value.unit,
-        tr.v.Unit.byName.timeStampInMs);
+        tr.b.Unit.byName.timeStampInMs);
     assert.equal(table.tableRows[2].value.value, 0.002);
     assert.strictEqual(table.tableRows[2].value.unit,
-        tr.v.Unit.byName.timeDurationInMs);
+        tr.b.Unit.byName.timeDurationInMs);
   });
 
   test('analyzeSelectionWithSingleSliceCategory', function() {
@@ -215,10 +215,10 @@
     assert.equal(table.tableRows[1].value, 'foo');
     assert.equal(table.tableRows[2].value.value, 0);
     assert.strictEqual(table.tableRows[2].value.unit,
-        tr.v.Unit.byName.timeStampInMs);
+        tr.b.Unit.byName.timeStampInMs);
     assert.equal(table.tableRows[3].value.value, 0.002);
     assert.strictEqual(table.tableRows[3].value.unit,
-        tr.v.Unit.byName.timeDurationInMs);
+        tr.b.Unit.byName.timeDurationInMs);
   });
 
   test('instantiate_withSingleSliceContainingIDRef', function() {
diff --git a/catapult/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
index 01330c6..e3b3913 100644
--- a/catapult/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_object_snapshot_sub_view.html
@@ -6,6 +6,7 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
@@ -14,7 +15,6 @@
 <link rel="import" href="/tracing/ui/analysis/object_snapshot_view.html">
 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-single-object-snapshot-sub-view'>
   <template>
@@ -104,7 +104,7 @@
     Polymer.dom(titleEl).appendChild(document.createTextNode(' @ '));
 
     Polymer.dom(titleEl).appendChild(tr.v.ui.createScalarSpan(snapshot.ts, {
-      unit: tr.v.Unit.byName.timeStampInMs,
+      unit: tr.b.Unit.byName.timeStampInMs,
       ownerDocument: this.ownerDocument
     }));
 
diff --git a/catapult/tracing/tracing/ui/analysis/single_power_sample_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_power_sample_sub_view.html
index e970867..d7bb653 100644
--- a/catapult/tracing/tracing/ui/analysis/single_power_sample_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_power_sample_sub_view.html
@@ -5,11 +5,12 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-power-sample-table'>
   <template>
@@ -35,7 +36,7 @@
         width: '100px',
         value: function(row) {
           return tr.v.ui.createScalarSpan(row.start, {
-            unit: tr.v.Unit.byName.timeStampInMs
+            unit: tr.b.Unit.byName.timeStampInMs
           });
         }
       },
@@ -43,8 +44,8 @@
         title: 'Power',
         width: '100%',
         value: function(row) {
-          return tr.v.ui.createScalarSpan(row.power, {
-            unit: tr.v.Unit.byName.powerInWatts
+          return tr.v.ui.createScalarSpan(row.powerInW, {
+            unit: tr.b.Unit.byName.powerInWatts
           });
         }
       }
@@ -114,4 +115,5 @@
       multi: false,
       title: 'Power Sample',
     });
+
 </script>
diff --git a/catapult/tracing/tracing/ui/analysis/single_sample_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_sample_sub_view.html
index 4cf7156..4fda488 100644
--- a/catapult/tracing/tracing/ui/analysis/single_sample_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_sample_sub_view.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/analysis/stack_frame.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-single-sample-sub-view'>
   <template>
@@ -60,9 +60,8 @@
       return;
     }
 
-    var sample = this.currentSelection_[0];
+    var sample = tr.b.getOnlyElement(this.currentSelection_);
     var table = this.$.content;
-
     var rows = [];
 
     rows.push({
@@ -73,7 +72,7 @@
     rows.push({
         title: 'Sample time',
         value: tr.v.ui.createScalarSpan(sample.start, {
-          unit: tr.v.Unit.byName.timeStampInMs,
+          unit: tr.b.Unit.byName.timeStampInMs,
           ownerDocument: this.ownerDocument
         })
     });
diff --git a/catapult/tracing/tracing/ui/analysis/single_sample_sub_view_test.html b/catapult/tracing/tracing/ui/analysis/single_sample_sub_view_test.html
index d31abfa..802bc99 100644
--- a/catapult/tracing/tracing/ui/analysis/single_sample_sub_view_test.html
+++ b/catapult/tracing/tracing/ui/analysis/single_sample_sub_view_test.html
@@ -5,12 +5,12 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/model/model.html">
 <link rel="import" href="/tracing/ui/analysis/single_sample_sub_view.html">
 <link rel="import" href="/tracing/ui/base/deep_utils.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
@@ -53,7 +53,7 @@
 
     assert.equal(rows[0].value, 'X');
     assert.equal(rows[1].value.value, 0.184);
-    assert.strictEqual(rows[1].value.unit, tr.v.Unit.byName.timeStampInMs);
+    assert.strictEqual(rows[1].value.unit, tr.b.Unit.byName.timeStampInMs);
     assert.equal(rows[2].value.stackFrame, t53.samples[0].leafStackFrame);
   });
 });
diff --git a/catapult/tracing/tracing/ui/analysis/single_thread_time_slice_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_thread_time_slice_sub_view.html
index 079773a..11574b8 100644
--- a/catapult/tracing/tracing/ui/analysis/single_thread_time_slice_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_thread_time_slice_sub_view.html
@@ -8,6 +8,7 @@
 <link rel="import" href="/tracing/base/color_scheme.html">
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/sorted_array_utils.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/base/utils.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/model/model.html">
@@ -15,7 +16,6 @@
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/analysis/generic_object_view.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-a-single-thread-time-slice-sub-view'>
   <template>
@@ -126,9 +126,9 @@
         thread.userFriendlyName;
 
     root.querySelector('#start').setValueAndUnit(
-        timeSlice.start, tr.v.Unit.byName.timeStampInMs);
+        timeSlice.start, tr.b.Unit.byName.timeStampInMs);
     root.querySelector('#duration').setValueAndUnit(
-        timeSlice.duration, tr.v.Unit.byName.timeDurationInMs);
+        timeSlice.duration, tr.b.Unit.byName.timeDurationInMs);
 
     var onCpuEl = root.querySelector('#on-cpu');
     Polymer.dom(onCpuEl).textContent = '';
diff --git a/catapult/tracing/tracing/ui/analysis/single_user_expectation_sub_view.html b/catapult/tracing/tracing/ui/analysis/single_user_expectation_sub_view.html
index 1636986..4c332b0 100644
--- a/catapult/tracing/tracing/ui/analysis/single_user_expectation_sub_view.html
+++ b/catapult/tracing/tracing/ui/analysis/single_user_expectation_sub_view.html
@@ -6,12 +6,12 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/analysis/single_event_sub_view.html">
 <link rel="import"
   href="/tracing/ui/analysis/user_expectation_related_samples_table.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <dom-module id='tr-ui-a-single-user-expectation-sub-view'>
@@ -74,7 +74,7 @@
       event.rows.push({
         name: 'Total CPU',
         value: tr.v.ui.createScalarSpan(ue.totalCpuMs, {
-          unit: tr.v.Unit.byName.timeDurationInMs
+          unit: tr.b.Unit.byName.timeDurationInMs
         })
       });
     }
diff --git a/catapult/tracing/tracing/ui/analysis/stacked_pane.html b/catapult/tracing/tracing/ui/analysis/stacked_pane.html
index e254268..a6446b6 100644
--- a/catapult/tracing/tracing/ui/analysis/stacked_pane.html
+++ b/catapult/tracing/tracing/ui/analysis/stacked_pane.html
@@ -5,7 +5,7 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/base/base.html">
+<link rel="import" href="/tracing/ui/analysis/rebuildable_behavior.html">
 
 <!--
 @fileoverview Analysis view stacked pane. See the stacked pane view element
@@ -16,45 +16,7 @@
 
 tr.exportTo('tr.ui.analysis', function() {
 
-  var StackedPane = {
-    rebuild: function() {
-      /**
-       * Rebuild the pane if necessary.
-       *
-       * This method is not intended to be overriden by subclasses. Please
-       * override scheduleRebuildPane_() instead.
-       */
-      if (!this.paneDirty_) {
-        // Avoid rebuilding unnecessarily as it breaks things like table
-        // selection.
-        return;
-      }
-
-      this.paneDirty_ = false;
-      this.rebuildPane_();
-    },
-
-    /**
-     * Mark the UI state of the pane as dirty and schedule a rebuild.
-     *
-     * This method is intended to be called by subclasses.
-     */
-    scheduleRebuildPane_: function() {
-      if (this.paneDirty_)
-        return;
-      this.paneDirty_ = true;
-      setTimeout(this.rebuild.bind(this), 0);
-    },
-
-    /**
-     * Called when the pane is dirty and a rebuild is triggered.
-     *
-     * This method is intended to be overriden by subclasses (instead of
-     * directly overriding rebuild()).
-     */
-    rebuildPane_: function() {
-    },
-
+  var StackedPaneImpl = {
     /**
      * Request changing the child pane of this pane in the associated stacked
      * pane view. If the assigned builder is undefined, request removing the
@@ -77,16 +39,17 @@
     /**
      * Called right after the pane is appended to a pane view.
      *
-     * This method triggers an immediate rebuild by default (if necessary).
-     * Subclasses are free to change this behavior (e.g. if a pane has lots of
-     * data to display, it might decide to defer rebuilding in order not to
-     * cause jank).
+     * This method triggers an immediate rebuild by default. Subclasses are
+     * free to change this behavior (e.g. if a pane has lots of data to display,
+     * it might decide to defer rebuilding in order not to cause jank).
      */
     appended: function() {
       this.rebuild();
     }
   };
 
+  var StackedPane = [tr.ui.analysis.RebuildableBehavior, StackedPaneImpl];
+
   return {
     StackedPane: StackedPane
   };
diff --git a/catapult/tracing/tracing/ui/analysis/stacked_pane_test.html b/catapult/tracing/tracing/ui/analysis/stacked_pane_test.html
index f76feea..a4c8d52 100644
--- a/catapult/tracing/tracing/ui/analysis/stacked_pane_test.html
+++ b/catapult/tracing/tracing/ui/analysis/stacked_pane_test.html
@@ -11,35 +11,6 @@
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  test('rebuild', function() {
-    var pane = document.createElement('tr-ui-a-stacked-pane');
-    var didFireBuildPane;
-    pane.rebuildPane_ = function() {
-      didFireBuildPane = true;
-    };
-
-    function checkRebuild(expectedDidFireBuildPane) {
-      didFireBuildPane = false;
-      pane.rebuild();
-      assert.strictEqual(didFireBuildPane, expectedDidFireBuildPane);
-    }
-
-    // No rebuilds should occur when not scheduled.
-    checkRebuild(false);
-    checkRebuild(false);
-
-    // Single rebuild should occur when scheduled once.
-    pane.scheduleRebuildPane_();
-    checkRebuild(true);
-    checkRebuild(false);
-
-    // Only a single rebuild should occur even when scheduled multiple times.
-    pane.scheduleRebuildPane_();
-    pane.scheduleRebuildPane_();
-    checkRebuild(true);
-    checkRebuild(false);
-  });
-
   test('changeChildPane', function() {
     var pane = document.createElement('tr-ui-a-stacked-pane');
     var didFireEvent;
diff --git a/catapult/tracing/tracing/ui/analysis/stacked_pane_view_test.html b/catapult/tracing/tracing/ui/analysis/stacked_pane_view_test.html
index dacea19..0f3a5e2 100644
--- a/catapult/tracing/tracing/ui/analysis/stacked_pane_view_test.html
+++ b/catapult/tracing/tracing/ui/analysis/stacked_pane_view_test.html
@@ -28,7 +28,7 @@
     Polymer.dom(paneEl).appendChild(divEl);
 
     if (opt_rebuildPaneCallback)
-      paneEl.rebuildPane_ = opt_rebuildPaneCallback;
+      paneEl.onRebuild_ = opt_rebuildPaneCallback;
 
     if (opt_appendedCallback)
       paneEl.appended = opt_appendedCallback;
@@ -176,7 +176,7 @@
     // All panes are now marked as dirty, but rebuild isn't triggered (it was
     // only scheduled).
     viewEl.panesForTesting.forEach(function(pane) {
-      pane.scheduleRebuildPane_();
+      pane.scheduleRebuild_();
     });
     assert.deepEqual(rebuiltPaneIds, []);
 
diff --git a/catapult/tracing/tracing/ui/base/bar_chart.html b/catapult/tracing/tracing/ui/base/bar_chart.html
index c6f0637..45fd174 100644
--- a/catapult/tracing/tracing/ui/base/bar_chart.html
+++ b/catapult/tracing/tracing/ui/base/bar_chart.html
@@ -1,219 +1,134 @@
 <!DOCTYPE html>
 <!--
-Copyright (c) 2014 The Chromium Authors. All rights reserved.
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/ui/base/chart_base_2d_brushable_x.html">
+<link rel="import" href="/tracing/ui/base/column_chart.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.ui.b', function() {
-  var ColorScheme = tr.b.ColorScheme;
-  var ChartBase2DBrushX = tr.ui.b.ChartBase2DBrushX;
-  var getColorOfKey = tr.ui.b.getColorOfKey;
+  var ColumnChart = tr.ui.b.ColumnChart;
 
   // @constructor
-  var BarChart = tr.ui.b.define('bar-chart', ChartBase2DBrushX);
+  var BarChart = tr.ui.b.define('bar-chart', ColumnChart);
 
   BarChart.prototype = {
-    __proto__: ChartBase2DBrushX.prototype,
+    __proto__: ColumnChart.prototype,
 
     decorate: function() {
-      ChartBase2DBrushX.prototype.decorate.call(this);
+      ColumnChart.prototype.decorate.call(this);
       Polymer.dom(this).classList.add('bar-chart');
-
-      // BarChart allows bars to have arbitrary, non-uniform widths. Bars need
-      // not all be the same width. The width of each bar is automatically
-      // computed from the bar's x-coordinate and that of the next bar, which
-      // can not define the width of the last bar. This is the width (in the
-      // xScale's domain (as opposed to the xScale's range (which is measured in
-      // pixels))) of the last bar. When there are at least 2 bars, this is
-      // computed as the average width of the bars. When there is a single bar,
-      // this must default to a non-zero number so that the width of the only
-      // bar will not be zero.
-      this.xCushion_ = 1;
-
-      this.isStacked_ = false;
-    },
-
-    set isStacked(stacked) {
-      this.isStacked_ = true;
-      this.updateContents_();
-    },
-
-    get isStacked() {
-      return this.isStacked_;
-    },
-
-    isDatumFieldSeries_: function(fieldName) {
-      return fieldName != 'x';
-    },
-
-    getXForDatum_: function(datum, index) {
-      return datum.x;
+      this.verticalScale_ = undefined;
+      this.horizontalScale_ = undefined;
     },
 
     updateScales_: function() {
-      if (this.data_.length === 0)
-        return;
-
-      var xDifferences = 0;
-      var currentX = undefined;
-      var previousX = undefined;
-      var yRange = new tr.b.Range();
-      this.data_.forEach(function(datum, index) {
-        previousX = currentX;
-        currentX = this.getXForDatum_(datum, index);
-        if (previousX !== undefined) {
-          xDifferences += currentX - previousX;
-        }
-
-        for (var [key, series] of this.seriesByKey_) {
-          // Allow for sparse data
-          if (datum[key] !== undefined)
-            yRange.addValue(datum[key]);
-        }
-      }, this);
-
-      // X.
-      // Leave a cushion on the right so that the last rect doesn't
-      // exceed the chart boundaries. The last rect's width is set to the
-      // average width of the rects, which is chart.width / data.length.
-      var width = this.chartAreaSize.width;
-      this.xScale_.range([0, width]);
-      var domain = d3.extent(this.data_, this.getXForDatum_.bind(this));
-      if (this.data_.length > 1)
-        this.xCushion_ = xDifferences / (this.data_.length - 1);
-      this.xScale_.domain([domain[0], domain[1] + this.xCushion_]);
-
-      // Y.
-      this.yScale_.range([this.chartAreaSize.height, 0]);
-      this.yScale_.domain(this.getYScaleDomain_(yRange.min, yRange.max));
+      ColumnChart.prototype.updateScales_.call(this);
+      this.yScale_.range([this.chartAreaSize.width, 0]);
+      this.xScale_.range([0, this.chartAreaSize.height]);
+      this.verticalScale_ = this.isYLogScale_ ? d3.scale.log(10) :
+        d3.scale.linear();
+      this.verticalScale_.domain(this.xScale_.domain());
+      this.verticalScale_.range([this.chartAreaSize.height, 0]);
+      this.horizontalScale_ = d3.scale.linear();
+      this.horizontalScale_.domain(this.yScale_.domain());
+      this.horizontalScale_.range([0, this.chartAreaSize.width]);
     },
 
-    getYScaleDomain_: function(minValue, maxValue) {
-      if (!this.isStacked) {
-        return ChartBase2DBrushX.prototype.getYScaleDomain_.call(
-            this, minValue, maxValue);
-      }
-
-      var range = new tr.b.Range();
-      range.addValue(0);
-      this.data_.forEach(function(datum, index) {
-        var sum = 0;
-        for (var [key, series] of this.seriesByKey_) {
-          if (datum[key] === undefined)
-            continue;
-          sum += datum[key];
-        }
-        range.addValue(sum);
-      }, this);
-      return [range.min, range.max];
+    drawBrush_: function(brushRectsSel) {
+      brushRectsSel
+        .attr('x', 0)
+        .attr('y', function(d) {
+          return this.chartAreaSize.height - this.verticalScale_(d.min);
+        }.bind(this))
+        .attr('width', this.chartAreaSize.width)
+        .attr('height', function(d) {
+          return (this.chartAreaSize.height - this.verticalScale_(d.max)) -
+            (this.chartAreaSize.height - this.verticalScale_(d.min));
+        }.bind(this));
     },
 
-    getStackedRectsForDatum_: function(datum, index) {
-      var stacks = [];
-      var bottom = this.yScale_.range()[0];
-      var sum = 0;
-      for (var [key, series] of this.seriesByKey_) {
-        if (datum[key] === undefined || !this.isSeriesEnabled(key))
-          continue;
-        sum += datum[key];
-        var heightPx = bottom - this.yScale_(sum);
-        bottom -= heightPx;
-        stacks.push({
-          key: key,
-          value: datum[key],
-          color: getColorOfKey(key),
-          heightPx: heightPx,
-          topPx: bottom
-        });
-      }
-      return stacks;
+    getDataPointAtChartPoint_: function(p) {
+      return ColumnChart.prototype.getDataPointAtChartPoint_.call(
+          this, {x: p.y, y: p.x});
     },
 
-    getRectsForDatum_: function(datum, index) {
-      if (this.isStacked)
-        return this.getStackedRectsForDatum_(datum, index);
-
-      var stacks = [];
-      for (var [key, series] of this.seriesByKey_) {
-        if (datum[key] === undefined || !this.isSeriesEnabled(key))
-          continue;
-        var topPx = this.yScale_(Math.max(datum[key], this.getYScaleMin_()));
-        stacks.push({
-          key: key,
-          value: datum[key],
-          topPx: topPx,
-          heightPx: this.yScale_.range()[0] - topPx,
-          color: getColorOfKey(key)
-        });
-      }
-      stacks.sort(function(a, b) {
-        return b.topPx - a.topPx;
-      });
-      return stacks;
+    drawXAxis_: function(xAxis) {
+      xAxis.attr('transform', 'translate(0,' + this.chartAreaSize.height + ')')
+        .call(d3.svg.axis()
+              .scale(this.horizontalScale_)
+              .orient('bottom'));
+      this.drawXAxisTicks_(xAxis);
     },
 
-    updateDataContents_: function(dataSel) {
-      dataSel.selectAll('*').remove();
+    drawYAxis_: function(yAxis) {
+      var axisModifier = d3.svg.axis()
+        .scale(this.verticalScale_)
+        .orient('left');
+      yAxis.call(axisModifier);
+      this.drawYAxisTicks_(yAxis);
+    },
+
+    drawHoverValueBox_: function(rect) {
+      var seriesKeys = [...this.seriesByKey_.keys()];
       var chartAreaSel = d3.select(this.chartAreaElement);
-      var rectsSel = dataSel.selectAll('path').data(
-          [...this.seriesByKey_.keys()]);
-      this.data_.forEach(function(datum, index) {
-        var currentX = this.getXForDatum_(datum, index);
-        var width = undefined;
-        if (index < (this.data_.length - 1)) {
-          var nextX = this.getXForDatum_(this.data_[index + 1], index + 1);
-          width = nextX - currentX;
-        } else {
-          width = this.xCushion_;
-        }
-        this.getRectsForDatum_(datum, index).forEach(function(rect) {
-          var leftPx = this.xScale_(currentX);
-          var rightPx = this.xScale_(currentX + width);
-          var widthPx = rightPx - leftPx;
-          rectsSel.enter()
-              .append('rect')
-              .attr('fill', rect.color)
-              .attr('x', leftPx)
-              .attr('y', rect.topPx)
-              .attr('width', widthPx)
-              .attr('height', rect.heightPx)
-              .on('mouseenter', function() {
-                chartAreaSel.selectAll('.hover').remove();
-                chartAreaSel
-                  .append('rect')
-                  .attr('class', 'hover')
-                  .attr('fill', 'white')
-                  .attr('x', leftPx + widthPx)
-                  .attr('y', rect.topPx)
-                  .attr('width', this.margin.right)
-                  .attr('height', 30);
-                chartAreaSel
-                  .append('text')
-                  .attr('class', 'hover')
-                  .attr('fill', rect.color)
-                  .attr('x', leftPx + widthPx + 2)
-                  .attr('y', rect.topPx + 10)
-                  .text(rect.key);
-                chartAreaSel
-                  .append('text')
-                  .attr('class', 'hover')
-                  .attr('fill', rect.color)
-                  .attr('x', leftPx + widthPx + 2)
-                  .attr('y', rect.topPx + 25)
-                  .text(rect.value);
-              }.bind(this))
-              .on('mouseleave', function() {
-                chartAreaSel.selectAll('.hover').remove();
-              }.bind(this));
-        }, this);
-      }, this);
-      rectsSel.exit().remove();
+      chartAreaSel.selectAll('.hover').remove();
+      var keyWidthPx = 0;
+      var keyHeightPx = 0;
+      if (seriesKeys.length > 1) {
+        keyWidthPx = tr.ui.b.getSVGTextWidth(
+            this.chartAreaElement, rect.key) + 5;
+        keyHeightPx = 16;
+      }
+      var valueWidthPx = tr.ui.b.getSVGTextWidth(
+          this.chartAreaElement, rect.value) + 5;
+      var valueHeightPx = 16;
+      var hoverWidthPx = Math.max(keyWidthPx, valueWidthPx);
+      var hoverTopPx = rect.topPx + (rect.heightPx / 2);
+      var hoverLeftPx = rect.leftPx + rect.widthPx - hoverWidthPx;
+      chartAreaSel
+        .append('rect')
+        .attr('class', 'hover')
+        .attr('fill', 'white')
+        .attr('x', hoverLeftPx)
+        .attr('y', hoverTopPx)
+        .attr('width', hoverWidthPx)
+        .attr('height', keyHeightPx + valueHeightPx);
+      if (seriesKeys.length > 1) {
+        chartAreaSel
+          .append('text')
+          .attr('class', 'hover')
+          .attr('fill', rect.color)
+          .attr('x', hoverLeftPx + 2)
+          .attr('y', hoverTopPx + keyHeightPx - 3)
+          .text(rect.key);
+      }
+
+      chartAreaSel
+        .append('text')
+        .attr('class', 'hover')
+        .attr('fill', rect.color)
+        .attr('x', hoverLeftPx + 2)
+        .attr('y', hoverTopPx + keyHeightPx + valueHeightPx - 3)
+        .text(rect.value);
+    },
+
+    drawRect_: function(rect, sel) {
+      // Rotate |rect| 90 degrees counter-clockwise.
+      var colRect = {
+        key: rect.key,
+        value: rect.value,
+        color: rect.color,
+        topPx: rect.leftPx,
+        leftPx: this.chartAreaSize.width - rect.topPx - rect.heightPx,
+        widthPx: rect.heightPx,
+        heightPx: rect.widthPx,
+      };
+      ColumnChart.prototype.drawRect_.call(this, colRect, sel);
     }
   };
 
diff --git a/catapult/tracing/tracing/ui/base/bar_chart_test.html b/catapult/tracing/tracing/ui/base/bar_chart_test.html
index 157b202..dd79097 100644
--- a/catapult/tracing/tracing/ui/base/bar_chart_test.html
+++ b/catapult/tracing/tracing/ui/base/bar_chart_test.html
@@ -12,57 +12,6 @@
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  test('chartLegendKey', function() {
-    var key = document.createElement('tr-ui-b-chart-legend-key');
-    key.textContent = 'Lorem ipsum dolor sit amet';
-    key.color = 'red';
-    this.addHTMLOutput(key);
-
-    key = document.createElement('tr-ui-b-chart-legend-key');
-    key.textContent = 'ipsum dolor sit amet';
-    key.target = 'orange ipsum';
-    key.color = 'orange';
-    this.addHTMLOutput(key);
-    key.addEventListener('requestSelectionChange', function(e) {
-      console.debug(e);
-    });
-
-    key = document.createElement('tr-ui-b-chart-legend-key');
-    key.target = 'brown dolor';
-    key.color = 'brown';
-    key.textContent = 'dolor sit amet';
-    this.addHTMLOutput(key);
-    key.addEventListener('requestSelectionChange', function(e) {
-      console.debug(e);
-    });
-  });
-
-  test('instantiation_legendTargets', function() {
-    var chart = new tr.ui.b.BarChart();
-    chart.customizeLegendTargets({
-      lorem_ipsum: 'lorem_ipsumTarget',
-      qux: 'quxTarget'
-    });
-    chart.customizeOptionalSeries({lorem_ipsum: true, bar: true});
-    chart.isStacked = true;
-    chart.hideXAxis = true;
-    chart.width = 140;
-    chart.height = 200;
-    chart.chartTitle = 'title';
-    chart.data = [{x: 0, foo: 3, lorem_ipsum: 5, bar: 1, qux: 2}];
-    this.addHTMLOutput(chart);
-    chart.addEventListener('requestSelectionChange', function(e) {
-      console.debug(e);
-    });
-
-    assert.isDefined(tr.b.findDeepElementMatchingPredicate(
-        chart, function(element) {
-      return element.tagName === 'TR-UI-B-CHART-LEGEND-KEY' &&
-             element.textContent === 'lorem_ipsum' &&
-             element.target === 'lorem_ipsumTarget';
-    }));
-  });
-
   test('instantiation_singleSeries', function() {
     var chart = new tr.ui.b.BarChart();
     chart.width = 400;
diff --git a/catapult/tracing/tracing/ui/base/base.html b/catapult/tracing/tracing/ui/base/base.html
index 7c4048a..e0ca9e2 100644
--- a/catapult/tracing/tracing/ui/base/base.html
+++ b/catapult/tracing/tracing/ui/base/base.html
@@ -5,27 +5,14 @@
 found in the LICENSE file.
 -->
 
-<!--
-@fileoverview This file contains imports that are necessary for global UI
-initialization. These tend to be finnicky about the way in which they're
-imported.
--->
+<link rel="import" href="/tracing/ui/base/polymer_preload.html" data-suppress-import-order>
 
 <!--
-TODO(charliea): Some later import is messing up d3 initialization, causing the
-error message "Uncaught TypeError: Cannot set property 'd3' of undefined." We
-should figure out what's causing this. In the short term, we can just import d3
-first.
--->
-<link rel="import" href="/tracing/ui/base/d3.html" data-suppress-import-order>
-
-<!-- Polymer relies on webcomponents already being imported. -->
-<link rel="import" href="/tracing/ui/base/webcomponents.html" data-suppress-import-order>
-
-<!--
-Polymer's imported through third-party HTML files, which means that we have to
+Polymer is imported through third-party HTML files, which means that we have to
 manually list all recursive imports.
 -->
 <link rel="import" href="/components/polymer/polymer-micro.html" data-suppress-import-order>
 <link rel="import" href="/components/polymer/polymer-mini.html" data-suppress-import-order>
 <link rel="import" href="/components/polymer/polymer.html" data-suppress-import-order>
+
+<link rel="import" href="/tracing/ui/base/polymer_postload.html" data-suppress-import-order>
diff --git a/catapult/tracing/tracing/ui/base/chart_base.html b/catapult/tracing/tracing/ui/base/chart_base.html
index e793d83..ec2f63b 100644
--- a/catapult/tracing/tracing/ui/base/chart_base.html
+++ b/catapult/tracing/tracing/ui/base/chart_base.html
@@ -31,6 +31,7 @@
     <label id="label"></label>
   </template>
 </dom-module>
+
 <script>
 'use strict';
 Polymer({
@@ -70,7 +71,6 @@
   /**
    * When a legend-key is "optional", then its checkbox is visible to allow
    * the user to enable/disable the data series for the key.
-   * See ChartBase.customizeOptionalSeries().
    *
    * @param {boolean} optional
    */
@@ -101,7 +101,6 @@
    * dispatched containing the target.
    * When target is undefined, label is shown and link is hidden, so that the
    * link is not clickable.
-   * See ChartBase.customizeLegendTargets().
    */
   set target(target) {
     this.$.link.setSelectionAndContent(
@@ -176,6 +175,8 @@
     this.target_ = undefined;
     this.optional_ = false;
     this.enabled_ = true;
+    this.color_ = getColorOfKey(key, false);
+    this.highlightedColor_ = getColorOfKey(key, true);
   }
 
   DataSeries.prototype = {
@@ -183,6 +184,22 @@
       return this.key_;
     },
 
+    get color() {
+      return this.color_;
+    },
+
+    set color(c) {
+      this.color_ = c;
+    },
+
+    get highlightedColor() {
+      return this.highlightedColor_;
+    },
+
+    set highlightedColor(c) {
+      this.highlightedColor_ = c;
+    },
+
     get optional() {
       return this.optional_;
     },
@@ -327,59 +344,6 @@
       };
     },
 
-    /**
-     * Legend keys can be clickable links instead of plain text.
-     * When a legend key link is clicked, a RequestSelectionChangeEvent is
-     * dispatched containing arbitrary data. ChartBase calls that arbitrary data
-     * the "target" of the legend key link.
-     * In order to turn the legend key for the 'foo' data series into a
-     * clickable link, call customizeLegendTargets({foo: target}). When the user
-     * clicks on the legend key link for 'foo', then a
-     * RequestSelectionChangeEvent will be dispatched, and its |selection| field
-     * will be the |target| value for the 'foo' key in |delta|.
-     *
-     * @param {!Object} delta
-     */
-    customizeLegendTargets: function(delta) {
-      tr.b.iterItems(delta, function(key, value) {
-        this.getDataSeries(key).target = value;
-      }, this);
-    },
-
-    /**
-     * Optional data series can be enabled and disabled using checkboxes.
-     * In order to allow the user to enable/disabled the 'foo' data series,
-     * call customizeOptionalSeries({foo: true}). This will show a checkbox
-     * next to the 'foo' legend key. When the user toggles the checkbox, then a
-     * DataSeriesEnableChangeEvent will be dispatched with its |key| = 'foo'.
-     * ChartBase listens for that event and updates |isSeriesEnabled('foo')| to
-     * reflect the state of that checkbox, and calls updateContents_().
-     * Subclasses are responsible for implementing updateContents_() in order to
-     * hiding disabled data series -- see BarChart.
-     *
-     * @param {!Object} delta
-     */
-    customizeOptionalSeries: function(delta) {
-      tr.b.iterItems(delta, function(key, value) {
-        this.getDataSeries(key).optional = value;
-      }, this);
-    },
-
-    /**
-     * Data series can be enabled and disabled.
-     * See customizeOptionalSeries() in order to allow the user to
-     * enable/disable data series manually. Callers may call
-     * customizeEnabledSeries({foo: false}) in order to automatically
-     * disable the 'foo' data series, for example.
-     *
-     * @param {!Object} delta
-     */
-    customizeEnabledSeries: function(delta) {
-      tr.b.iterItems(delta, function(key, value) {
-        this.getDataSeries(key).enabled = value;
-      }, this);
-    },
-
     updateScales_: function() {
       throw new Error('Not implemented');
     },
@@ -435,8 +399,9 @@
           .append('xhtml:body')
           .append('tr-ui-b-chart-legend-key')
           .property('color', function(series) {
-            var selected = this.currentHighlightedLegendKey === series.key;
-            return getColorOfKey(series.key, selected);
+            if (this.currentHighlightedLegendKey === series.key)
+              return series.highlightedColor;
+            return series.color;
           }.bind(this))
           .property('width', width)
           .property('target', function(series) { return series.target; })
@@ -482,13 +447,14 @@
 
       var that = this;
       legendEntriesSel.each(function(key) {
-        var highlighted = key == that.currentHighlightedLegendKey;
-        var color = getColorOfKey(key, highlighted);
-        this.style.fill = color;
-        if (highlighted)
+        var dataSeries = that.getDataSeries(key);
+        if (key === that.currentHighlightedLegendKey) {
+          this.style.fill = dataSeries.highlightedColor;
           this.style.fontWeight = 'bold';
-        else
+        } else {
+          this.style.fill = dataSeries.color;
           this.style.fontWeight = '';
+        }
       });
     }
   };
diff --git a/catapult/tracing/tracing/ui/base/chart_base_2d.html b/catapult/tracing/tracing/ui/base/chart_base_2d.html
index 66c65e5..5f9c29e 100644
--- a/catapult/tracing/tracing/ui/base/chart_base_2d.html
+++ b/catapult/tracing/tracing/ui/base/chart_base_2d.html
@@ -129,8 +129,7 @@
 
     updateSeriesKeys_: function() {
       // Don't clear seriesByKey_; the caller might have put state in it using
-      // customizeLegendTargets, customizeOptionalSeries, or
-      // customizeEnabledSeries before setting data.
+      // getDataSeries() before setting data.
       this.data_.forEach(function(datum) {
         Object.keys(datum).forEach(function(key) {
           if (this.isDatumFieldSeries_(key))
@@ -181,24 +180,30 @@
       if (this.hideXAxis)
         return;
 
+      this.drawXAxis_(xAxis);
+    },
+
+    drawXAxis_: function(xAxis) {
       xAxis.attr('transform', 'translate(0,' + this.chartAreaSize.height + ')')
         .call(d3.svg.axis()
               .scale(this.xScale_)
               .orient('bottom'));
-      tr.b.requestAnimationFrame(function() {
-        var previousRight = undefined;
-        xAxis.selectAll('.tick')[0].forEach(function(tick) {
-          var currentLeft = tick.transform.baseVal[0].matrix.e;
-          if ((previousRight === undefined) ||
-              (currentLeft > (previousRight + 3))) {
-            var currentWidth = tick.getBBox().width;
-            previousRight = currentLeft + currentWidth;
-          } else {
-            tick.style.opacity = 0;
-          }
-        });
-        xAxis[0][0].style.opacity = 1;
-      }, this);
+      tr.b.requestAnimationFrame(this.drawXAxisTicks_.bind(this, xAxis));
+    },
+
+    drawXAxisTicks_: function(xAxis) {
+      var previousRight = undefined;
+      xAxis.selectAll('.tick')[0].forEach(function(tick) {
+        var currentLeft = tick.transform.baseVal[0].matrix.e;
+        if ((previousRight === undefined) ||
+            (currentLeft > (previousRight + 3))) {
+          var currentWidth = tick.getBBox().width;
+          previousRight = currentLeft + currentWidth;
+        } else {
+          tick.style.opacity = 0;
+        }
+      });
+      xAxis[0][0].style.opacity = 1;
     },
 
     updateDataRange_: function() {
@@ -230,6 +235,10 @@
       if (this.hideYAxis)
         return;
 
+      this.drawYAxis_(yAxis);
+    },
+
+    drawYAxis_: function(yAxis) {
       var axisModifier = d3.svg.axis()
         .scale(this.yScale_)
         .orient('left');
@@ -259,30 +268,32 @@
 
       yAxis.call(axisModifier);
 
-      tr.b.requestAnimationFrame(function() {
-        var previousTop = undefined;
-        var leftMargin = 0;
-        yAxis.selectAll('.tick')[0].forEach(function(tick) {
-          var bbox = tick.getBBox();
-          leftMargin = Math.max(leftMargin, bbox.width);
-          var currentTop = tick.transform.baseVal[0].matrix.f;
-          var currentBottom = currentTop + bbox.height;
-          if ((previousTop === undefined) ||
-              (previousTop > (currentBottom + 3))) {
-            previousTop = currentTop;
-          } else {
-            tick.style.opacity = 0;
-          }
-        });
+      tr.b.requestAnimationFrame(this.drawYAxisTicks_.bind(this, yAxis));
+    },
 
-        leftMargin = parseInt(Math.ceil(leftMargin));
-        if (leftMargin > this.margin.left) {
-          this.margin.left = leftMargin;
-          this.updateContents_();
+    drawYAxisTicks_: function(yAxis) {
+      var previousTop = undefined;
+      var leftMargin = 0;
+      yAxis.selectAll('.tick')[0].forEach(function(tick) {
+        var bbox = tick.getBBox();
+        leftMargin = Math.max(leftMargin, bbox.width);
+        var currentTop = tick.transform.baseVal[0].matrix.f;
+        var currentBottom = currentTop + bbox.height;
+        if ((previousTop === undefined) ||
+            (previousTop > (currentBottom + 3))) {
+          previousTop = currentTop;
         } else {
-          yAxis[0][0].style.opacity = 1;
+          tick.style.opacity = 0;
         }
-      }, this);
+      });
+
+      leftMargin = parseInt(Math.ceil(leftMargin));
+      if (leftMargin > this.margin.left) {
+        this.margin.left = leftMargin;
+        this.updateContents_();
+      } else {
+        yAxis[0][0].style.opacity = 1;
+      }
     },
 
     updateContents_: function() {
@@ -336,15 +347,27 @@
       return dataBySeriesKey;
     },
 
-    getDataPointAtClientPoint_: function(clientX, clientY) {
+    getChartPointAtClientPoint_: function(clientPoint) {
       var rect = this.getBoundingClientRect();
-      var x = clientX - rect.left - this.margin.left;
-      var y = clientY - rect.top - this.margin.top;
-      x = this.xScale_.invert(x);
-      y = this.yScale_.invert(y);
-      x = tr.b.clamp(x, this.xScale_.domain()[0], this.xScale_.domain()[1]);
-      y = tr.b.clamp(y, this.yScale_.domain()[0], this.yScale_.domain()[1]);
-      return {x: x, y: y};
+      return {
+        x: clientPoint.x - rect.left - this.margin.left,
+        y: clientPoint.y - rect.top - this.margin.top
+      };
+    },
+
+    getDataPointAtChartPoint_: function(chartPoint) {
+      return {
+        x: tr.b.clamp(this.xScale_.invert(chartPoint.x),
+               this.xScale_.domain()[0], this.xScale_.domain()[1]),
+        y: tr.b.clamp(this.yScale_.invert(chartPoint.y),
+            this.yScale_.domain()[0], this.yScale_.domain()[1])
+      };
+    },
+
+    getDataPointAtClientPoint_: function(clientX, clientY) {
+      var chartPoint = this.getChartPointAtClientPoint_(
+          {x: clientX, y: clientY});
+      return this.getDataPointAtChartPoint_(chartPoint);
     },
 
     prepareDataEvent_: function(mouseEvent, dataEvent) {
diff --git a/catapult/tracing/tracing/ui/base/chart_base_2d_brushable_x.html b/catapult/tracing/tracing/ui/base/chart_base_2d_brushable_x.html
index 4cde4b5..5d2f799 100644
--- a/catapult/tracing/tracing/ui/base/chart_base_2d_brushable_x.html
+++ b/catapult/tracing/tracing/ui/base/chart_base_2d_brushable_x.html
@@ -65,6 +65,10 @@
       var brushRectsSel = brushSel.selectAll('rect').data(brushes);
       brushRectsSel.enter().append('rect');
       brushRectsSel.exit().remove();
+      this.drawBrush_(brushRectsSel);
+    },
+
+    drawBrush_: function(brushRectsSel) {
       brushRectsSel
           .attr('x', function(d) {
               return this.xScale_(d.min);
diff --git a/catapult/tracing/tracing/ui/base/column_chart.html b/catapult/tracing/tracing/ui/base/column_chart.html
new file mode 100644
index 0000000..deaf44a
--- /dev/null
+++ b/catapult/tracing/tracing/ui/base/column_chart.html
@@ -0,0 +1,261 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2014 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/ui/base/chart_base_2d_brushable_x.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.ui.b', function() {
+  var ColorScheme = tr.b.ColorScheme;
+  var ChartBase2DBrushX = tr.ui.b.ChartBase2DBrushX;
+
+  function getSVGTextWidth(parentNode, text) {
+    var textNode = document.createElementNS(
+        'http://www.w3.org/2000/svg', 'text');
+    textNode.setAttributeNS(null, 'x', 0);
+    textNode.setAttributeNS(null, 'y', 0);
+    textNode.setAttributeNS(null, 'fill', 'black');
+    textNode.appendChild(document.createTextNode(text));
+    parentNode.appendChild(textNode);
+    var widthPx = textNode.getComputedTextLength();
+    parentNode.removeChild(textNode);
+    return widthPx;
+  }
+
+  // @constructor
+  var ColumnChart = tr.ui.b.define('column-chart', ChartBase2DBrushX);
+
+  ColumnChart.prototype = {
+    __proto__: ChartBase2DBrushX.prototype,
+
+    decorate: function() {
+      ChartBase2DBrushX.prototype.decorate.call(this);
+      Polymer.dom(this).classList.add('column-chart');
+
+      // ColumnChart allows bars to have arbitrary, non-uniform widths. Bars
+      // need not all be the same width. The width of each bar is automatically
+      // computed from the bar's x-coordinate and that of the next bar, which
+      // can not define the width of the last bar. This is the width (in the
+      // xScale's domain (as opposed to the xScale's range (which is measured in
+      // pixels))) of the last bar. When there are at least 2 bars, this is
+      // computed as the average width of the bars. When there is a single bar,
+      // this must default to a non-zero number so that the width of the only
+      // bar will not be zero.
+      this.xCushion_ = 1;
+
+      this.isStacked_ = false;
+    },
+
+    set isStacked(stacked) {
+      this.isStacked_ = true;
+      this.updateContents_();
+    },
+
+    get isStacked() {
+      return this.isStacked_;
+    },
+
+    isDatumFieldSeries_: function(fieldName) {
+      return fieldName != 'x';
+    },
+
+    getXForDatum_: function(datum, index) {
+      return datum.x;
+    },
+
+    updateScales_: function() {
+      if (this.data_.length === 0)
+        return;
+
+      var xDifferences = 0;
+      var currentX = undefined;
+      var previousX = undefined;
+      var yRange = new tr.b.Range();
+      this.data_.forEach(function(datum, index) {
+        previousX = currentX;
+        currentX = this.getXForDatum_(datum, index);
+        if (previousX !== undefined) {
+          xDifferences += currentX - previousX;
+        }
+
+        for (var [key, series] of this.seriesByKey_) {
+          // Allow for sparse data
+          if (datum[key] !== undefined)
+            yRange.addValue(datum[key]);
+        }
+      }, this);
+
+      // X.
+      // Leave a cushion on the right so that the last rect doesn't
+      // exceed the chart boundaries. The last rect's width is set to the
+      // average width of the rects, which is chart.width / data.length.
+      var width = this.chartAreaSize.width;
+      this.xScale_.range([0, width]);
+      var domain = d3.extent(this.data_, this.getXForDatum_.bind(this));
+      if (this.data_.length > 1)
+        this.xCushion_ = xDifferences / (this.data_.length - 1);
+      this.xScale_.domain([domain[0], domain[1] + this.xCushion_]);
+
+      // Y.
+      this.yScale_.range([this.chartAreaSize.height, 0]);
+      this.yScale_.domain(this.getYScaleDomain_(yRange.min, yRange.max));
+    },
+
+    getYScaleDomain_: function(minValue, maxValue) {
+      if (!this.isStacked) {
+        return ChartBase2DBrushX.prototype.getYScaleDomain_.call(
+            this, minValue, maxValue);
+      }
+
+      var range = new tr.b.Range();
+      range.addValue(0);
+      this.data_.forEach(function(datum, index) {
+        var sum = 0;
+        for (var [key, series] of this.seriesByKey_) {
+          if (datum[key] === undefined)
+            continue;
+          sum += datum[key];
+        }
+        range.addValue(sum);
+      }, this);
+      return [range.min, range.max];
+    },
+
+    getStackedRectsForDatum_: function(datum, index) {
+      var stacks = [];
+      var bottom = this.yScale_.range()[0];
+      var sum = 0;
+      for (var [key, series] of this.seriesByKey_) {
+        if (datum[key] === undefined || !this.isSeriesEnabled(key))
+          continue;
+        sum += datum[key];
+        var heightPx = bottom - this.yScale_(sum);
+        bottom -= heightPx;
+        stacks.push({
+          key: key,
+          value: datum[key],
+          color: this.getDataSeries(key).color,
+          heightPx: heightPx,
+          topPx: bottom
+        });
+      }
+      return stacks;
+    },
+
+    getRectsForDatum_: function(datum, index) {
+      if (this.isStacked)
+        return this.getStackedRectsForDatum_(datum, index);
+
+      var stacks = [];
+      for (var [key, series] of this.seriesByKey_) {
+        if (datum[key] === undefined || !this.isSeriesEnabled(key))
+          continue;
+        var topPx = this.yScale_(Math.max(datum[key], this.getYScaleMin_()));
+        stacks.push({
+          key: key,
+          value: datum[key],
+          topPx: topPx,
+          heightPx: this.yScale_.range()[0] - topPx,
+          color: this.getDataSeries(key).color
+        });
+      }
+      stacks.sort(function(a, b) {
+        return b.topPx - a.topPx;
+      });
+      return stacks;
+    },
+
+    drawHoverValueBox_: function(rect) {
+      var seriesKeys = [...this.seriesByKey_.keys()];
+      var chartAreaSel = d3.select(this.chartAreaElement);
+      chartAreaSel.selectAll('.hover').remove();
+      var keyWidthPx = 0;
+      var keyHeightPx = 0;
+      if (seriesKeys.length > 1) {
+        keyWidthPx = getSVGTextWidth(this.chartAreaElement, rect.key) + 5;
+        keyHeightPx = 16;
+      }
+      var valueWidthPx = getSVGTextWidth(
+          this.chartAreaElement, rect.value) + 5;
+      var valueHeightPx = 16;
+      var hoverLeftPx = rect.leftPx + (rect.widthPx / 2);
+
+      chartAreaSel
+        .append('rect')
+        .attr('class', 'hover')
+        .attr('fill', 'white')
+        .attr('x', hoverLeftPx)
+        .attr('y', rect.topPx)
+        .attr('width', Math.max(keyWidthPx, valueWidthPx))
+        .attr('height', keyHeightPx + valueHeightPx);
+
+      if (seriesKeys.length > 1) {
+        chartAreaSel
+          .append('text')
+          .attr('class', 'hover')
+          .attr('fill', rect.color)
+          .attr('x', hoverLeftPx + 2)
+          .attr('y', rect.topPx + keyHeightPx - 3)
+          .text(rect.key);
+      }
+
+      chartAreaSel
+        .append('text')
+        .attr('class', 'hover')
+        .attr('fill', rect.color)
+        .attr('x', hoverLeftPx + 2)
+        .attr('y', rect.topPx + keyHeightPx + valueHeightPx - 3)
+        .text(rect.value);
+    },
+
+    clearHoverValueBox_: function() {
+      d3.select(this.chartAreaElement).selectAll('.hover').remove();
+    },
+
+    drawRect_: function(rect, sel) {
+      sel.append('rect')
+        .attr('fill', rect.color)
+        .attr('x', rect.leftPx)
+        .attr('y', rect.topPx)
+        .attr('width', rect.widthPx)
+        .attr('height', rect.heightPx)
+        .on('mouseenter', this.drawHoverValueBox_.bind(this, rect))
+        .on('mouseleave', this.clearHoverValueBox_.bind(this));
+    },
+
+    updateDataContents_: function(dataSel) {
+      dataSel.selectAll('*').remove();
+      var chartAreaSel = d3.select(this.chartAreaElement);
+      var seriesKeys = [...this.seriesByKey_.keys()];
+      var rectsSel = dataSel.selectAll('path').data(seriesKeys);
+      this.data_.forEach(function(datum, index) {
+        var currentX = this.getXForDatum_(datum, index);
+        var width = undefined;
+        if (index < (this.data_.length - 1)) {
+          var nextX = this.getXForDatum_(this.data_[index + 1], index + 1);
+          width = nextX - currentX;
+        } else {
+          width = this.xCushion_;
+        }
+        for (var rect of this.getRectsForDatum_(datum, index)) {
+          rect.leftPx = this.xScale_(currentX);
+          rect.rightPx = this.xScale_(currentX + width);
+          rect.widthPx = rect.rightPx - rect.leftPx;
+          this.drawRect_(rect, rectsSel.enter());
+        }
+      }, this);
+      rectsSel.exit().remove();
+    }
+  };
+
+  return {
+    ColumnChart: ColumnChart,
+    getSVGTextWidth: getSVGTextWidth
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/base/column_chart_test.html b/catapult/tracing/tracing/ui/base/column_chart_test.html
new file mode 100644
index 0000000..2398b3e
--- /dev/null
+++ b/catapult/tracing/tracing/ui/base/column_chart_test.html
@@ -0,0 +1,293 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2014 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/ui/base/column_chart.html">
+<link rel="import" href="/tracing/ui/base/deep_utils.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  test('chartLegendKey', function() {
+    var key = document.createElement('tr-ui-b-chart-legend-key');
+    key.textContent = 'Lorem ipsum dolor sit amet';
+    key.color = 'red';
+    this.addHTMLOutput(key);
+
+    key = document.createElement('tr-ui-b-chart-legend-key');
+    key.textContent = 'ipsum dolor sit amet';
+    key.target = 'orange ipsum';
+    key.color = 'orange';
+    this.addHTMLOutput(key);
+    key.addEventListener('requestSelectionChange', function(e) {
+      console.debug(e);
+    });
+
+    key = document.createElement('tr-ui-b-chart-legend-key');
+    key.target = 'brown dolor';
+    key.color = 'brown';
+    key.textContent = 'dolor sit amet';
+    this.addHTMLOutput(key);
+    key.addEventListener('requestSelectionChange', function(e) {
+      console.debug(e);
+    });
+  });
+
+  test('instantiation_legendTargets', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.getDataSeries('lorem_ipsum').target = 'lorem_ipsumTarget';
+    chart.getDataSeries('qux').target = 'quxTarget';
+    chart.getDataSeries('lorem_ipsum').optional = true;
+    chart.getDataSeries('bar').optional = true;
+    chart.isStacked = true;
+    chart.hideXAxis = true;
+    chart.width = 140;
+    chart.height = 200;
+    chart.chartTitle = 'title';
+    chart.data = [{x: 0, foo: 3, lorem_ipsum: 5, bar: 1, qux: 2}];
+    this.addHTMLOutput(chart);
+    chart.addEventListener('requestSelectionChange', function(e) {
+      console.debug(e);
+    });
+
+    assert.isDefined(tr.b.findDeepElementMatchingPredicate(
+        chart, function(element) {
+      return element.tagName === 'TR-UI-B-CHART-LEGEND-KEY' &&
+             element.textContent === 'lorem_ipsum' &&
+             element.target === 'lorem_ipsumTarget';
+    }));
+  });
+
+  test('instantiation_singleSeries', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, value: 100},
+      {x: 20, value: 110},
+      {x: 30, value: 100},
+      {x: 40, value: 50}
+    ];
+    chart.data = data;
+    this.addHTMLOutput(chart);
+  });
+
+  test('instantiation_singleDatum', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 0, value: 100},
+    ];
+    chart.data = data;
+    this.addHTMLOutput(chart);
+  });
+
+  test('instantiation_stacked', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.isStacked = true;
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'title';
+    var data = [
+      {x: 10, foo: 10, bar: 5, qux: 7},
+      {x: 20, foo: 11, bar: 6, qux: 3},
+      {x: 30, foo: 10, bar: 4, qux: 8},
+      {x: 40, foo: 5, bar: 1, qux: 2}
+    ];
+    chart.data = data;
+    this.addHTMLOutput(chart);
+  });
+
+  test('instantiation_singleSeries_yLogScale', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.isYLogScale = true;
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, value: 100},
+      {x: 20, value: 10},
+      {x: 30, value: 1},
+      {x: 40, value: 0.1},
+      {x: 50, value: 0.01},
+      {x: 60, value: 0.001}
+    ];
+    chart.data = data;
+    this.addHTMLOutput(chart);
+  });
+
+  test('undefined', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    assert.throws(function() {
+      chart.data = undefined;
+    });
+  });
+
+  test('instantiation_twoSeries', function() {
+    var chart = new tr.ui.b.ColumnChart();
+
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, alpha: 100, beta: 50},
+      {x: 20, alpha: 110, beta: 75},
+      {x: 30, alpha: 100, beta: 125},
+      {x: 40, alpha: 50, beta: 125}
+    ];
+    chart.data = data;
+
+    var r = new tr.b.Range();
+    r.addValue(20);
+    r.addValue(40);
+    chart.brushedRange = r;
+
+    this.addHTMLOutput(chart);
+  });
+
+  test('instantiation_twoSeries_yLogScale', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.isYLogScale = true;
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, alpha: 100, beta: 50},
+      {x: 20, alpha: 110, beta: 75},
+      {x: 30, alpha: 100, beta: 125},
+      {x: 40, alpha: 50, beta: 125}
+    ];
+    chart.data = data;
+
+    var r = new tr.b.Range();
+    r.addValue(20);
+    r.addValue(40);
+    chart.brushedRange = r;
+
+    this.addHTMLOutput(chart);
+  });
+
+  test('instantiation_twoSparseSeriesWithFirstValueSparse', function() {
+    var chart = new tr.ui.b.ColumnChart();
+
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, alpha: 20, beta: undefined},
+      {x: 20, alpha: undefined, beta: 10},
+      {x: 30, alpha: 10, beta: undefined},
+      {x: 45, alpha: undefined, beta: 20},
+      {x: 50, alpha: 25, beta: 30}
+    ];
+    chart.data = data;
+
+    this.addHTMLOutput(chart);
+  });
+
+  test('instantiation_twoSparseSeriesWithFirstValueNotSparse', function() {
+    var chart = new tr.ui.b.ColumnChart();
+
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, alpha: 20, beta: 40},
+      {x: 20, alpha: undefined, beta: 10},
+      {x: 30, alpha: 10, beta: undefined},
+      {x: 45, alpha: undefined, beta: 20},
+      {x: 50, alpha: 30, beta: undefined}
+    ];
+    chart.data = data;
+
+    this.addHTMLOutput(chart);
+  });
+
+  test('brushRangeFromIndices', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    var data = [
+      {x: 10, value: 50},
+      {x: 30, value: 60},
+      {x: 70, value: 70},
+      {x: 80, value: 80},
+      {x: 120, value: 90}
+    ];
+    chart.data = data;
+    var r = new tr.b.Range();
+
+    // Range min should be 10.
+    r = chart.computeBrushRangeFromIndices(-2, 1);
+    assert.equal(r.min, 10);
+
+    // Range max should be 120.
+    r = chart.computeBrushRangeFromIndices(3, 10);
+    assert.equal(r.max, 120);
+
+    // Range should be [10, 120]
+    r = chart.computeBrushRangeFromIndices(-2, 10);
+    assert.equal(r.min, 10);
+    assert.equal(r.max, 120);
+
+    // Range should be [20, 100]
+    r = chart.computeBrushRangeFromIndices(1, 3);
+    assert.equal(r.min, 20);
+    assert.equal(r.max, 100);
+  });
+
+  test('instantiation_interactiveBrushing', function() {
+    var chart = new tr.ui.b.ColumnChart();
+    chart.width = 400;
+    chart.height = 200;
+    chart.chartTitle = 'Chart title';
+    var data = [
+      {x: 10, value: 50},
+      {x: 20, value: 60},
+      {x: 30, value: 80},
+      {x: 40, value: 20},
+      {x: 50, value: 30},
+      {x: 60, value: 20},
+      {x: 70, value: 15},
+      {x: 80, value: 20}
+    ];
+    chart.data = data;
+
+    var mouseDownX = undefined;
+    var curMouseX = undefined;
+
+    function updateBrushedRange() {
+      if (mouseDownX === undefined || (mouseDownX === curMouseX)) {
+        chart.brushedRange = new tr.b.Range();
+        return;
+      }
+      var r = new tr.b.Range();
+      r.min = Math.min(mouseDownX, curMouseX);
+      r.max = Math.max(mouseDownX, curMouseX);
+      chart.brushedRange = r;
+    }
+
+    chart.addEventListener('item-mousedown', function(e) {
+      mouseDownX = e.x;
+      curMouseX = e.x;
+      updateBrushedRange();
+    });
+    chart.addEventListener('item-mousemove', function(e) {
+      if (e.button == undefined)
+        return;
+      curMouseX = e.x;
+      updateBrushedRange();
+    });
+    chart.addEventListener('item-mouseup', function(e) {
+      curMouseX = e.x;
+      updateBrushedRange();
+    });
+    this.addHTMLOutput(chart);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/base/d3.html b/catapult/tracing/tracing/ui/base/d3.html
index ed4c962..bce0554 100644
--- a/catapult/tracing/tracing/ui/base/d3.html
+++ b/catapult/tracing/tracing/ui/base/d3.html
@@ -4,4 +4,6 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+<script src="/tracing/ui/base/d3_preload.js"></script>
 <script src="/d3.min.js"></script>
+<script src="/tracing/ui/base/d3_postload.js"></script>
diff --git a/catapult/tracing/tracing/ui/base/d3_postload.js b/catapult/tracing/tracing/ui/base/d3_postload.js
new file mode 100644
index 0000000..94cefdb
--- /dev/null
+++ b/catapult/tracing/tracing/ui/base/d3_postload.js
@@ -0,0 +1,8 @@
+/* Copyright (c) 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+'use strict';
+
+(function(window) {
+  window.define = undefined;
+}).call(this, this);
diff --git a/catapult/tracing/tracing/ui/base/d3_preload.js b/catapult/tracing/tracing/ui/base/d3_preload.js
new file mode 100644
index 0000000..57548f1
--- /dev/null
+++ b/catapult/tracing/tracing/ui/base/d3_preload.js
@@ -0,0 +1,11 @@
+/* Copyright (c) 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+'use strict';
+
+(function(window) {
+  window.define = function(x) {
+    window.d3 = x;
+  };
+  window.define.amd = true;
+})(this);
diff --git a/catapult/tracing/tracing/ui/base/dom_helpers_test.html b/catapult/tracing/tracing/ui/base/dom_helpers_test.html
index 7a87fe6..61ca370 100644
--- a/catapult/tracing/tracing/ui/base/dom_helpers_test.html
+++ b/catapult/tracing/tracing/ui/base/dom_helpers_test.html
@@ -9,7 +9,7 @@
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var THIS_DOC = document._currentScript.ownerDocument;
+  var THIS_DOC = document.currentScript.ownerDocument;
 
   test('simpleSpanAndDiv', function() {
     var divEl = tr.ui.b.createDiv({
diff --git a/catapult/tracing/tracing/ui/base/grouping_table_groupby_picker.html b/catapult/tracing/tracing/ui/base/grouping_table_groupby_picker.html
index 31de1f9..4949ac2 100644
--- a/catapult/tracing/tracing/ui/base/grouping_table_groupby_picker.html
+++ b/catapult/tracing/tracing/ui/base/grouping_table_groupby_picker.html
@@ -4,6 +4,7 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/settings.html">
 <link rel="import" href="/tracing/ui/base/dropdown.html">
@@ -13,82 +14,216 @@
     <style>
     :host {
       display: flex;
-      flex-direction: row;
       align-items: center;
     }
+
+    :host(:not([vertical])), :host(:not([vertical])) groups {
+      flex-direction: row;
+    }
+
+    :host([vertical]), :host([vertical]) groups {
+      flex-direction: column;
+    }
+
     groups {
       -webkit-user-select: none;
       display: flex;
-      flex-direction: row;
-      padding-left: 10px;
     }
 
-    group, possible-group {
+    possible-group {
       display: span;
       padding-right: 10px;
       padding-left: 10px;
     }
-
-    group {
-      border-left: 1px solid rgba(0,0,0,0);
-      cursor: move;
-    }
-
-    group.dragging {
-      opacity: 0.2;
-    }
-
-    group.drop-targeted {
-      border-left: 1px solid black;
-    }
-
-
-    #remove {
-      cursor: default;
-    }
-
-    #remove:not([hovered]) {
-      visibility: hidden;
-    }
     </style>
-    <groups>
-    </groups>
-    <tr-ui-b-dropdown id="add-group"></tr-ui-b-dropdown>
+
+    <groups id="groups"></groups>
+    <tr-ui-b-dropdown id="add_group"></tr-ui-b-dropdown>
   </template>
 </dom-module>
 
-<template id="tr-ui-b-grouping-table-groupby-picker-group-template">
-  <span id="key"></span>
-  <span id="remove">&times;</span>
-</template>
+<dom-module id="tr-ui-b-grouping-table-groupby-picker-group">
+  <template>
+    <style>
+    :host {
+      white-space: nowrap;
+      border: 3px solid white;
+      background-color: #dddddd;
+      cursor: move;
+    }
+
+    :host(:not([vertical])) {
+      display: inline;
+    }
+
+    :host([vertical]) {
+      display: block;
+    }
+
+    :host(:not([vertical]).drop-before) {
+      border-left: 3px solid black;
+    }
+
+    :host([vertical].drop-before) {
+      border-top: 3px solid black;
+    }
+
+    :host(:not([vertical]).drop-after) {
+      border-right: 3px solid black;
+    }
+
+    :host([vertical].drop-after) {
+      border-bottom: 3px solid black;
+    }
+
+    :host([dragging]) {
+      opacity: 0.5;
+    }
+
+    #remove {
+      visibility: hidden;
+      padding-left: 3px;
+      width: 20px;
+      height: 20px;
+      cursor: auto;
+    }
+
+    #key {
+      padding-right: 3px;
+    }
+    </style>
+
+    <!-- TODO(eakuefner): Use an iron-icon here once
+         https://github.com/catapult-project/catapult/issues/2772 is fixed. -->
+    <span id="remove" on-click="remove_">&times;</span>
+    <span id="key"></span>
+  </template>
+</dom-module>
 
 <script>
 'use strict';
 
 tr.exportTo('tr.ui.b', function() {
-  var THIS_DOC = document._currentScript.ownerDocument;
+  var THIS_DOC = document.currentScript.ownerDocument;
+
+  Polymer({
+    is: 'tr-ui-b-grouping-table-groupby-picker-group',
+
+    created: function() {
+      this.picker_ = undefined;
+      this.group_ = undefined;
+    },
+
+    ready: function() {
+      this.setAttribute('draggable', true);
+      this.addEventListener('mouseover', this.onMouseOver_.bind(this));
+      this.addEventListener('mouseleave', this.onMouseLeave_.bind(this));
+      this.addEventListener('dragstart', this.onDragStart_.bind(this));
+      this.addEventListener('dragover', this.onDragOver_.bind(this));
+    },
+
+    set group(g) {
+      this.group_ = g;
+      this.$.key.textContent = g.label;
+    },
+
+    get key() {
+      return this.group_.key;
+    },
+
+    get picker() {
+      return this.picker_;
+    },
+
+    set picker(picker) {
+      this.picker_ = picker;
+      this.vertical = picker.vertical;
+    },
+
+    // TODO(benjhayden): Use data-binding?
+    get vertical() {
+      return this.getAttribute('vertical');
+    },
+
+    set vertical(vertical) {
+      if (vertical)
+        this.setAttribute('vertical', true);
+      else
+        this.removeAttribute('vertical');
+    },
+
+    onMouseOver_: function(event) {
+      this.$.remove.style.visibility = 'visible';
+    },
+
+    onMouseLeave_: function(event) {
+      this.$.remove.style.visibility = 'hidden';
+    },
+
+    onDragStart_: function(event) {
+      event.dataTransfer.effectAllowed = 'move';
+      this.setAttribute('dragging', true);
+    },
+
+    onDragOver_: function(event) {
+      event.preventDefault();  // Allows us to drop.
+      event.dataTransfer.dropEffect = 'move';
+
+      this.picker.clearDragIndicators_();
+      if (this.picker.shouldDropBefore_(this, event)) {
+        this.classList.add('drop-before');
+        if (this.previousElementSibling)
+          this.previousElementSibling.classList.add('drop-after');
+      } else {
+        this.classList.add('drop-after');
+        if (this.nextElementSibling)
+          this.nextElementSibling.classList.add('drop-before');
+      }
+      return false;
+    },
+
+    remove_: function(event) {
+      var newKeys = this.picker.currentGroupKeys.slice();
+      newKeys.splice(newKeys.indexOf(this.key), 1);
+      this.picker.currentGroupKeys = newKeys;
+    }
+  });
 
   Polymer({
     is: 'tr-ui-b-grouping-table-groupby-picker',
 
     created: function() {
-      this.needsInit_ = true;
+      this.currentGroupKeys_ = undefined;
       this.defaultGroupKeys_ = undefined;
       this.possibleGroups_ = [];
       this.settingsKey_ = [];
+    },
 
-      this.currentGroupKeys_ = undefined;
-
-      this.dragging_ = false;
+    ready: function() {
+      Polymer.dom(this.$.add_group.iconElement).textContent = 'Add another...';
+      this.addEventListener('dragend', this.onDragEnd_.bind(this));
+      this.addEventListener('drop', this.onDrop_.bind(this));
     },
 
     get defaultGroupKeys() {
       return this.defaultGroupKeys_;
     },
 
+    set vertical(vertical) {
+      if (vertical)
+        this.setAttribute('vertical', true);
+      else
+        this.removeAttribute('vertical');
+
+      for (var groupEl of this.$.groups.childNodes)
+        groupEl.vertical = vertical;
+    },
+
+    get vertical() {
+      return this.getAttribute('vertical');
+    },
+
     set defaultGroupKeys(defaultGroupKeys) {
-      if (!this.needsInit_)
-        throw new Error('Already initialized.');
       this.defaultGroupKeys_ = defaultGroupKeys;
       this.maybeInit_();
     },
@@ -98,8 +233,6 @@
     },
 
     set possibleGroups(possibleGroups) {
-      if (!this.needsInit_)
-        throw new Error('Already initialized.');
       this.possibleGroups_ = possibleGroups;
       this.maybeInit_();
     },
@@ -109,27 +242,16 @@
     },
 
     set settingsKey(settingsKey) {
-      if (!this.needsInit_)
-        throw new Error('Already initialized.');
       this.settingsKey_ = settingsKey;
       this.maybeInit_();
     },
 
     maybeInit_: function() {
-      if (!this.needsInit_)
+      if (!this.settingsKey_ ||
+          !this.defaultGroupKeys_ ||
+          !this.possibleGroups_) {
         return;
-
-      if (this.settingsKey_ === undefined)
-        return;
-      if (this.defaultGroupKeys_ === undefined)
-        return;
-      if (this.possibleGroups_ === undefined)
-        return;
-
-      this.needsInit_ = false;
-
-      var addGroupEl = Polymer.dom(this.root).querySelector('#add-group');
-      Polymer.dom(addGroupEl.iconElement).textContent = 'Add another...';
+      }
 
       this.currentGroupKeys = tr.b.Settings.get(
         this.settingsKey_, this.defaultGroupKeys_);
@@ -141,12 +263,9 @@
 
     get currentGroups() {
       var groupsByKey = {};
-      this.possibleGroups_.forEach(function(group) {
+      for (var group of this.possibleGroups_)
         groupsByKey[group.key] = group;
-      });
-      return this.currentGroupKeys_.map(function(groupKey) {
-        return groupsByKey[groupKey];
-      });
+      return this.currentGroupKeys.map(groupKey => groupsByKey[groupKey]);
     },
 
     set currentGroupKeys(currentGroupKeys) {
@@ -156,50 +275,116 @@
       if (!(currentGroupKeys instanceof Array))
         throw new Error('Must be array');
 
-      this.currentGroupKeys_ = currentGroupKeys;
+      var availableGroupKeys = new Set();
+      for (var group of this.possibleGroups_)
+        availableGroupKeys.add(group.key);
+      this.currentGroupKeys_ = currentGroupKeys.filter(
+          k => availableGroupKeys.has(k));
       this.updateGroups_();
 
       tr.b.Settings.set(
         this.settingsKey_, this.currentGroupKeys_);
 
-      var e = new tr.b.Event('current-groups-changed');
-      this.dispatchEvent(e);
+      this.dispatchEvent(new tr.b.Event('current-groups-changed'));
+    },
+
+    /**
+     * @return {undefined|Element}
+     */
+    get draggingGroupElement() {
+      for (var group of this.$.groups.children)
+        if (group.getAttribute('dragging'))
+          return group;
+      return undefined;
+    },
+
+    shouldDropBefore_: function(groupEl, event) {
+      var dragBoxRect = this.draggingGroupElement.getBoundingClientRect();
+      var dropBoxRect = groupEl.getBoundingClientRect();
+      // compare horizontally if drag and drop overlap vertically
+      var dragVertRange = tr.b.Range.fromExplicitRange(
+          dragBoxRect.top, dragBoxRect.bottom);
+      var dropVertRange = tr.b.Range.fromExplicitRange(
+          dropBoxRect.top, dropBoxRect.bottom);
+      if (dragVertRange.intersectsRangeInclusive(dropVertRange))
+        return event.clientX < ((dropBoxRect.left + dropBoxRect.right) / 2);
+      return event.clientY < ((dropBoxRect.top + dropBoxRect.bottom) / 2);
+    },
+
+    clearDragIndicators_: function() {
+      for (var groupEl of this.$.groups.children) {
+        groupEl.classList.remove('drop-before');
+        groupEl.classList.remove('drop-after');
+      }
+    },
+
+    onDragEnd_: function(event) {
+      this.clearDragIndicators_();
+      for (var groupEl of this.$.groups.children)
+        groupEl.removeAttribute('dragging');
+    },
+
+    onDrop_: function(event) {
+      event.stopPropagation(); // stops the browser from redirecting.
+
+      var draggingGroupEl = this.draggingGroupElement;
+      var dropBeforeEl = undefined;
+      var dropAfterEl = undefined;
+      for (var groupEl of this.$.groups.children) {
+        if (groupEl.classList.contains('drop-before')) {
+          dropBeforeEl = groupEl;
+          break;
+        }
+        if (groupEl.classList.contains('drop-after')) {
+          dropAfterEl = groupEl;
+          break;
+        }
+      }
+
+      if (!dropBeforeEl && !dropAfterEl)
+        return;
+
+      this.$.groups.removeChild(draggingGroupEl);
+      var lastGroupEl = this.$.groups.children[
+          this.$.groups.children.length - 1];
+
+      if (dropBeforeEl)
+        this.$.groups.insertBefore(draggingGroupEl, dropBeforeEl);
+      else if (dropAfterEl === lastGroupEl)
+        this.$.groups.appendChild(draggingGroupEl);
+      else
+        this.$.groups.insertBefore(draggingGroupEl, dropAfterEl.nextSibling);
+
+      var currentGroupKeys = [];
+      for (var group of this.$.groups.children)
+        currentGroupKeys.push(group.key);
+      this.currentGroupKeys = currentGroupKeys;
+      return false;
     },
 
     updateGroups_: function() {
-      var groupsEl = Polymer.dom(this.root).querySelector('groups');
-      var addGroupEl = Polymer.dom(this.root).querySelector('#add-group');
-
-      Polymer.dom(groupsEl).textContent = '';
-      Polymer.dom(addGroupEl).textContent = '';
+      Polymer.dom(this.$.groups).textContent = '';
+      Polymer.dom(this.$.add_group).textContent = '';
 
       var unusedGroups = {};
       var groupsByKey = {};
-      this.possibleGroups_.forEach(function(group) {
+      for (var group of this.possibleGroups_) {
         unusedGroups[group.key] = group;
         groupsByKey[group.key] = group;
-      });
+      }
 
-      this.currentGroupKeys_.forEach(function(key) {
+      for (var key of this.currentGroupKeys_)
         delete unusedGroups[key];
-      });
 
       // Create groups.
-      var groupTemplateEl = Polymer.dom(THIS_DOC).querySelector(
-          '#tr-ui-b-grouping-table-groupby-picker-group-template');
-      this.currentGroupKeys_.forEach(function(key, index) {
+      for (var key of this.currentGroupKeys_) {
         var group = groupsByKey[key];
-        var groupEl = document.createElement('group');
-        groupEl.groupKey = key;
-        Polymer.dom(groupEl).appendChild(
-            document.importNode(groupTemplateEl.content, true));
-        Polymer.dom(Polymer.dom(groupEl).querySelector('#key')).textContent =
-            group.label;
-        Polymer.dom(groupsEl).appendChild(groupEl);
-
-        this.configureRemoveButtonForGroup_(groupEl);
-        this.configureDragAndDropForGroup_(groupEl);
-      }, this);
+        var groupEl = document.createElement(
+            'tr-ui-b-grouping-table-groupby-picker-group');
+        groupEl.picker = this;
+        groupEl.group = group;
+        Polymer.dom(this.$.groups).appendChild(groupEl);
+      }
 
       // Adjust dropdown.
       tr.b.iterItems(unusedGroups, function(key, group) {
@@ -209,106 +394,17 @@
           var newKeys = this.currentGroupKeys.slice();
           newKeys.push(key);
           this.currentGroupKeys = newKeys;
-          addGroupEl.close();
+          this.$.add_group.close();
         }.bind(this));
-        Polymer.dom(addGroupEl).appendChild(groupEl);
+        Polymer.dom(this.$.add_group).appendChild(groupEl);
       }, this);
 
       // Hide dropdown if needed.
       if (tr.b.dictionaryLength(unusedGroups) == 0) {
-        addGroupEl.style.display = 'none';
+        this.$.add_group.style.display = 'none';
       } else {
-        addGroupEl.style.display = '';
+        this.$.add_group.style.display = '';
       }
-    },
-
-    configureRemoveButtonForGroup_: function(groupEl) {
-      var removeEl = Polymer.dom(groupEl).querySelector('#remove');
-      removeEl.addEventListener('click', function() {
-        var newKeys = this.currentGroupKeys.slice();
-        var i = newKeys.indexOf(groupEl.groupKey);
-        newKeys.splice(i, 1);
-        this.currentGroupKeys = newKeys;
-      }.bind(this));
-
-      groupEl.addEventListener('mouseenter', function() {
-        Polymer.dom(removeEl).setAttribute('hovered', true);
-      });
-      groupEl.addEventListener('mouseleave', function() {
-        Polymer.dom(removeEl).removeAttribute('hovered');
-      });
-    },
-
-    configureDragAndDropForGroup_: function(groupEl) {
-      var groupsEl = groupEl.parentElement;
-
-      Polymer.dom(groupEl).setAttribute('draggable', true);
-
-      groupEl.addEventListener('dragstart', function(e) {
-        e.dataTransfer.setData('groupKey', groupEl.groupKey);
-        Polymer.dom(Polymer.dom(groupEl).querySelector(
-            '#remove')).removeAttribute('hovered');
-        Polymer.dom(groupEl).classList.add('dragging');
-        this.dragging_ = true;
-      }.bind(this));
-
-      groupEl.addEventListener('dragend', function(e) {
-        console.log(e.type, groupEl.groupKey);
-        for (var i = 0; i < groupsEl.children.length; i++)
-          Polymer.dom(groupsEl.children[i]).classList.remove('drop-targeted');
-        Polymer.dom(groupEl).classList.remove('dragging');
-        this.dragging_ = false;
-      }.bind(this));
-
-      // Drop targeting.
-      groupEl.addEventListener('dragenter', function(e) {
-        if (!this.dragging_)
-          return;
-        Polymer.dom(groupEl).classList.add('drop-targeted');
-        if (this.dragging_)
-          e.preventDefault();
-      }.bind(this));
-
-      groupEl.addEventListener('dragleave', function(e) {
-        if (!this.dragging_)
-          return;
-        Polymer.dom(groupEl).classList.remove('drop-targeted');
-        e.preventDefault();
-      }.bind(this));
-
-
-      // Drop logic.
-      groupEl.addEventListener('dragover', function(e) {
-        if (!this.dragging_)
-          return;
-        e.preventDefault();
-        Polymer.dom(groupEl).classList.add('drop-targeted');
-      }.bind(this));
-
-      groupEl.addEventListener('drop', function(e) {
-        if (!this.dragging_)
-          return;
-
-        var srcKey = e.dataTransfer.getData('groupKey');
-        var dstKey = groupEl.groupKey;
-
-        if (srcKey === dstKey)
-          return;
-
-        var newKeys = this.currentGroupKeys_.slice();
-
-        var srcIndex = this.currentGroupKeys_.indexOf(srcKey);
-        newKeys.splice(srcIndex, 1);
-
-        var dstIndex = this.currentGroupKeys_.indexOf(dstKey);
-        newKeys.splice(dstIndex, 0, srcKey);
-
-        this.currentGroupKeys = newKeys;
-
-        e.dataTransfer.clearData();
-        e.preventDefault();
-        e.stopPropagation();
-      }.bind(this));
     }
   });
 
diff --git a/catapult/tracing/tracing/ui/base/line_chart.html b/catapult/tracing/tracing/ui/base/line_chart.html
index 59b036d..c4eaf1d 100644
--- a/catapult/tracing/tracing/ui/base/line_chart.html
+++ b/catapult/tracing/tracing/ui/base/line_chart.html
@@ -45,8 +45,8 @@
           .append('path')
           .attr('class', 'line')
           .style('stroke', function(key) {
-              return tr.ui.b.getColorOfKey(key);
-            })
+              return this.getDataSeries(key).color;
+            }.bind(this))
           .attr('d', function(key) {
               var line = d3.svg.line()
                 .x(function(d) { return this.xScale_(d.x); }.bind(this))
diff --git a/catapult/tracing/tracing/ui/base/name_bar_chart.html b/catapult/tracing/tracing/ui/base/name_bar_chart.html
index b142f25..98239ae 100644
--- a/catapult/tracing/tracing/ui/base/name_bar_chart.html
+++ b/catapult/tracing/tracing/ui/base/name_bar_chart.html
@@ -6,23 +6,23 @@
 -->
 
 <link rel="import" href="/tracing/base/raf.html">
-<link rel="import" href="/tracing/ui/base/bar_chart.html">
+<link rel="import" href="/tracing/ui/base/column_chart.html">
 <link rel="import" href="/tracing/ui/base/d3.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.ui.b', function() {
-  var BarChart = tr.ui.b.BarChart;
+  var ColumnChart = tr.ui.b.ColumnChart;
 
   // @constructor
-  var NameBarChart = tr.ui.b.define('name-bar-chart', BarChart);
+  var NameBarChart = tr.ui.b.define('name-bar-chart', ColumnChart);
 
   NameBarChart.prototype = {
-    __proto__: BarChart.prototype,
+    __proto__: ColumnChart.prototype,
 
     decorate: function() {
-      BarChart.prototype.decorate.call(this);
+      ColumnChart.prototype.decorate.call(this);
       Polymer.dom(this).classList.remove('bar-chart');
       Polymer.dom(this).classList.add('name-bar-chart');
     },
diff --git a/catapult/tracing/tracing/ui/base/pie_chart.html b/catapult/tracing/tracing/ui/base/pie_chart.html
index cfa1568..17980a5 100644
--- a/catapult/tracing/tracing/ui/base/pie_chart.html
+++ b/catapult/tracing/tracing/ui/base/pie_chart.html
@@ -16,7 +16,6 @@
 
 tr.exportTo('tr.ui.b', function() {
   var ChartBase = tr.ui.b.ChartBase;
-  var getColorOfKey = tr.ui.b.getColorOfKey;
 
   var MIN_RADIUS = 100;
 
@@ -68,8 +67,7 @@
         //   [{label: 'a', ...}, {label: 'b', ...}]
         // we would commpute ['a', 'y']. These become the series keys.
         // Don't clear seriesByKey_; the caller might have put state in it using
-        // customizeLegendTargets, customizeOptionalSeries, or
-        // customizeEnabledSeries before setting data.
+        // getDataSeries() before setting data.
         var seenSeriesKeys = {};
         data.forEach(function(d) {
           var k = d.label;
@@ -167,9 +165,10 @@
         .attr('class', 'arc')
         .attr('fill', function(d, i) {
             var origData = this.data_[i];
-            var highlighted = (origData.label ===
-                               this.currentHighlightedLegendKey);
-            return getColorOfKey(origData.label, highlighted);
+            var dataSeries = this.getDataSeries(origData.label);
+            if (origData.label === this.currentHighlightedLegendKey)
+              return dataSeries.highlightedColor;
+            return dataSeries.color;
           }.bind(this))
         .attr('d', pathsArc)
         .on('click', function(d, i) {
@@ -260,9 +259,11 @@
       var that = this;
       pathsGroupSel.selectAll('.arc').each(function(d, i) {
         var origData = that.data_[i];
-        var highlighted = origData.label == that.currentHighlightedLegendKey;
-        var color = getColorOfKey(origData.label, highlighted);
-        this.style.fill = color;
+        var dataSeries = that.getDataSeries(origData.label);
+        if (origData.label == that.currentHighlightedLegendKey)
+          this.style.fill = dataSeries.highlightedColor;
+        else
+          this.style.fill = dataSeries.color;
       });
     }
   };
diff --git a/catapult/tracing/tracing/ui/base/polymer_postload.html b/catapult/tracing/tracing/ui/base/polymer_postload.html
new file mode 100644
index 0000000..fc93631
--- /dev/null
+++ b/catapult/tracing/tracing/ui/base/polymer_postload.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+<script>
+'use strict';
+
+if (!Polymer.Settings.useNativeShadow) {
+  tr.b.showPanic('Polymer error', 'base only works in shadow mode');
+}
+</script>
diff --git a/catapult/tracing/tracing/ui/base/polymer_preload.html b/catapult/tracing/tracing/ui/base/polymer_preload.html
new file mode 100644
index 0000000..8860b5b
--- /dev/null
+++ b/catapult/tracing/tracing/ui/base/polymer_preload.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+<script>
+'use strict';
+
+// Force Polymer into native shadowDom mode
+if (window.Polymer)
+  throw new Error('Cannot proceed. Polymer already present.');
+window.Polymer = {};
+window.Polymer.dom = 'shadow';
+</script>
diff --git a/catapult/tracing/tracing/ui/base/tab_view.html b/catapult/tracing/tracing/ui/base/tab_view.html
index 3915a6d..08a15c6 100644
--- a/catapult/tracing/tracing/ui/base/tab_view.html
+++ b/catapult/tracing/tracing/ui/base/tab_view.html
@@ -5,11 +5,11 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
+<link rel="import" href="/tracing/base/base.html">
 
 <!--
-@fileoverview A series of tabs for the analysis view that controls which
-analysis sub-view is being displayed.
+@fileoverview A view that allows the user to control which single tab is
+displayed.
 
 We follow a fairly standard web convention of backing our tabs with hidden radio
 buttons but visible radio button labels (the tabs themselves) which toggle the
@@ -17,7 +17,7 @@
 and radio buttons are input elements that allow user selection through clicking
 and limit users to having one option selected at a time.
 -->
-<dom-module id='tr-ui-a-tab-view'>
+<dom-module id='tr-ui-b-tab-view'>
   <template>
     <style>
       :host {
@@ -36,7 +36,6 @@
       }
 
       #tabs {
-        display: block;
         flex: 0 0 auto;
         border-top: 1px solid #8e8e8e;
         border-bottom: 1px solid #8e8e8e;
@@ -57,6 +56,10 @@
         padding: 3px 10px 3px 10px;
       }
 
+      #tabs tab label span {
+        font-weight: bold;
+      }
+
       #tabs input[type=radio]:checked ~ label {
         background-color: white;
         border: 1px solid #8e8e8e;
@@ -75,7 +78,12 @@
           <input type=radio name=tabs id$=[[computeRadioId_(item)]]
               on-change='onTabChanged_'
               checked$='[[isChecked_(item)]]' />
-          <label for$=[[computeRadioId_(item)]]>[[item.tabLabel]]</label>
+          <label for$=[[computeRadioId_(item)]]>
+            <template is=dom-if if=[[item.tabIcon]]>
+              <span style$='[[item.tabIcon.style]]'>[[item.tabIcon.text]]</span>
+            </template>
+            [[item.tabLabel]]
+          </label>
         </tab>
       </template>
     </div>
@@ -88,7 +96,7 @@
 'use strict';
 
 Polymer({
-  is: 'tr-ui-a-tab-view',
+  is: 'tr-ui-b-tab-view',
 
   properties: {
     label_: {
diff --git a/catapult/tracing/tracing/ui/base/tab_view_test.html b/catapult/tracing/tracing/ui/base/tab_view_test.html
index ea7d408..b780c0e 100644
--- a/catapult/tracing/tracing/ui/base/tab_view_test.html
+++ b/catapult/tracing/tracing/ui/base/tab_view_test.html
@@ -61,25 +61,26 @@
     var subView = document.createElement('tr-ui-a-alert-sub-view');
     subView.selection = new tr.model.EventSet(alert);
     subView.tabLabel = 'Alerts';
+    subView.tabIcon = { text: '\u26A0', style: 'color: red;' };
 
     return subView;
   }
 
   test('instantiate_noTabs', function() {
-    var tabView = document.createElement('tr-ui-a-tab-view');
+    var tabView = document.createElement('tr-ui-b-tab-view');
     tabView.label = 'No items selected.';
     this.addHTMLOutput(tabView);
   });
 
   test('instantiate_oneTab', function() {
-    var tabView = document.createElement('tr-ui-a-tab-view');
+    var tabView = document.createElement('tr-ui-b-tab-view');
     tabView.label = '1 item selected.';
     tabView.addSubView(createPowerSampleSubView());
     this.addHTMLOutput(tabView);
   });
 
   test('instantiate_twoTabs', function() {
-    var tabView = document.createElement('tr-ui-a-tab-view');
+    var tabView = document.createElement('tr-ui-b-tab-view');
     tabView.label = '3 items selected.';
     tabView.addSubView(createPowerSampleSubView());
     tabView.addSubView(createAlertSubView());
@@ -87,7 +88,7 @@
   });
 
   test('clearSubViews_selectedSubViewNullAfter', function() {
-    var tabView = document.createElement('tr-ui-a-tab-view');
+    var tabView = document.createElement('tr-ui-b-tab-view');
     tabView.label = '3 items selected.';
     tabView.addSubView(createPowerSampleSubView());
     tabView.addSubView(createAlertSubView());
diff --git a/catapult/tracing/tracing/ui/base/table.html b/catapult/tracing/tracing/ui/base/table.html
index 0a52a8f..f73107d 100644
--- a/catapult/tracing/tracing/ui/base/table.html
+++ b/catapult/tracing/tracing/ui/base/table.html
@@ -232,6 +232,8 @@
       this.emptyValue_ = undefined;
       this.subRowsPropertyName_ = 'subRows';
       this.customizeTableRowCallback_ = undefined;
+      this.defaultExpansionStateCallback_ = undefined;
+      this.userCanModifySortOrder_ = true;
     },
 
     ready: function() {
@@ -256,8 +258,11 @@
       this.sortDescending_ = false;
       this.columnsWithExpandButtons_ = [];
       this.headerCells_ = [];
+      this.showHeader_ = true;
+      this.emptyValue_ = undefined;
       this.subRowsPropertyName_ = 'subRows';
       this.defaultExpansionStateCallback_ = undefined;
+      this.userCanModifySortOrder_ = true;
     },
 
     get showHeader() {
@@ -396,22 +401,30 @@
       return this.tableFooterRows_;
     },
 
+    get userCanModifySortOrder() {
+      return this.userCanModifySortOrder_;
+    },
+
+    set userCanModifySortOrder(userCanModifySortOrder) {
+      var newUserCanModifySortOrder = !!userCanModifySortOrder;
+      if (newUserCanModifySortOrder === this.userCanModifySortOrder_)
+        return
+
+      this.userCanModifySortOrder_ = newUserCanModifySortOrder;
+      this.scheduleRebuildHeaders_();
+    },
+
     set sortColumnIndex(number) {
       if (number === this.sortColumnIndex_)
         return;
 
-      if (number === undefined) {
-        this.sortColumnIndex_ = undefined;
-        this.updateHeaderArrows_();
-        this.dispatchSortingChangedEvent_();
-        return;
+      if (number !== undefined) {
+        if (this.tableColumns_.length <= number)
+          throw new Error('Column number ' + number + ' is out of bounds.');
+        if (!this.tableColumns_[number].cmp)
+          throw new Error('Column ' + number + ' does not have a comparator.');
       }
 
-      if (this.tableColumns_.length <= number)
-        throw new Error('Column number ' + number + ' is out of bounds.');
-      if (!this.tableColumns_[number].cmp)
-        throw new Error('Column ' + number + ' does not have a comparator.');
-
       this.sortColumnIndex_ = number;
       this.updateHeaderArrows_();
       this.scheduleRebuildBody_();
@@ -439,35 +452,35 @@
 
     updateHeaderArrows_: function() {
       for (var i = 0; i < this.headerCells_.length; i++) {
-        if (!this.tableColumns_[i].cmp) {
-          this.headerCells_[i].sideContent = '';
+        var headerCell = this.headerCells_[i];
+        var isColumnCurrentlySorted = i === this.sortColumnIndex_;
+        if (!this.tableColumns_[i].cmp ||
+            (!this.userCanModifySortOrder_ && !isColumnCurrentlySorted)) {
+          headerCell.sideContent = '';
           continue;
         }
-        if (i !== this.sortColumnIndex_) {
-          this.headerCells_[i].sideContent = UNSORTED_ARROW;
+        if (!isColumnCurrentlySorted) {
+          headerCell.sideContent = UNSORTED_ARROW;
+          headerCell.sideContentDisabled = false;
           continue;
         }
-        this.headerCells_[i].sideContent = this.sortDescending_ ?
-          DESCENDING_ARROW : ASCENDING_ARROW;
-      }
-    },
-
-    sortRows_: function(rows) {
-      rows.sort(function(rowA, rowB) {
-        if (this.sortDescending_)
-          return this.tableColumns_[this.sortColumnIndex_].cmp(
-              rowB.userRow, rowA.userRow);
-        return this.tableColumns_[this.sortColumnIndex_].cmp(
-              rowA.userRow, rowB.userRow);
-      }.bind(this));
-      // Sort expanded sub rows recursively.
-      for (var i = 0; i < rows.length; i++) {
-        if (this.getExpandedForUserRow_(rows[i]))
-          this.sortRows_(rows[i][this.subRowsPropertyName_]);
+        headerCell.sideContent = this.sortDescending_ ?
+            DESCENDING_ARROW : ASCENDING_ARROW;
+        headerCell.sideContentDisabled = !this.userCanModifySortOrder_;
       }
     },
 
     generateHeaderColumns_: function() {
+      var selectedTableColumnIndex = this.selectedTableColumnIndex;
+      Polymer.dom(this.$.cols).textContent = '';
+      for (var i = 0; i < this.tableColumns_.length; ++i) {
+        var colElement = document.createElement('col');
+        if (i === selectedTableColumnIndex) {
+          colElement.setAttribute('selected', true);
+        }
+        Polymer.dom(this.$.cols).appendChild(colElement);
+      }
+
       this.headerCells_ = [];
       Polymer.dom(this.$.head).textContent = '';
       if (!this.showHeader_)
@@ -480,20 +493,22 @@
         var headerCell = document.createElement('tr-ui-b-table-header-cell');
         headerCell.column = this.tableColumns_[i];
 
-        headerCell.addEventListener('selected-column-changed',
-            this.onSelectedColumnChanged_.bind(this));
-
-        // If the table can be sorted by this column, attach a tap callback
-        // to the column.
+        // If the table can be sorted by this column and the user can modify
+        // the sort order, attach a tap callback to the column.
         if (this.tableColumns_[i].cmp) {
-          Polymer.dom(td).classList.add('sensitive');
-          headerCell.tapCallback = this.createSortCallback_(i);
-          // Set arrow position, depending on the sortColumnIndex.
-          if (this.sortColumnIndex_ === i)
+          var isColumnCurrentlySorted = i === this.sortColumnIndex_;
+          if (isColumnCurrentlySorted) {
             headerCell.sideContent = this.sortDescending_ ?
-              DESCENDING_ARROW : ASCENDING_ARROW;
-          else
-            headerCell.sideContent = UNSORTED_ARROW;
+                DESCENDING_ARROW : ASCENDING_ARROW;
+            if (!this.userCanModifySortOrder_)
+              headerCell.sideContentDisabled = true;
+          }
+          if (this.userCanModifySortOrder_) {
+            Polymer.dom(td).classList.add('sensitive');
+            if (!isColumnCurrentlySorted)
+              headerCell.sideContent = UNSORTED_ARROW;
+            headerCell.tapCallback = this.createSortCallback_(i);
+          }
         }
 
         Polymer.dom(td).appendChild(headerCell);
@@ -501,20 +516,6 @@
       }
     },
 
-    onSelectedColumnChanged_: function(event) {
-      // Unselect all other columns.
-      for (var i = 0; i < this.headerCells_.length; ++i) {
-        var colElement = Polymer.dom(this.$.cols).children[i];
-        var headerCell = this.headerCells_[i];
-        if ((event.column === headerCell.column) && event.selected) {
-          Polymer.dom(colElement).setAttribute('selected', true);
-        } else {
-          headerCell.selected = false;
-          Polymer.dom(colElement).removeAttribute('selected');
-        }
-      }
-    },
-
     applySizes_: function() {
       if (this.tableRows_.length === 0 && !this.showHeader)
         return;
@@ -567,6 +568,8 @@
 
     createSortCallback_: function(columnNumber) {
       return function() {
+        if (!this.userCanModifySortOrder_)
+          return;
         var previousIndex = this.sortColumnIndex;
         this.sortColumnIndex = columnNumber;
         if (previousIndex !== columnNumber)
@@ -576,15 +579,6 @@
       }.bind(this);
     },
 
-    generateTableColNodes_: function() {
-      for (var i = 0; i < this.headerCells_.length; ++i) {
-        var colElement = document.createElement('col');
-        if (this.headerCells_[i].selected)
-          Polymer.dom(colElement).setAttribute('selected', true);
-        Polymer.dom(this.$.cols).appendChild(colElement);
-      }
-    },
-
     generateTableRowNodes_: function(tableSection, userRows, rowInfoMap,
                                      indentation, lastAddedRow,
                                      parentRowInfo) {
@@ -673,6 +667,10 @@
       trElement.rowInfo = rowInfo;
       this.customizeTableRow_(rowInfo.userRow, trElement);
 
+      var isBodyRow = tableSection === this.$.body;
+      var isExpandableRow = rowInfo.userRow[this.subRowsPropertyName_] &&
+          rowInfo.userRow[this.subRowsPropertyName_].length;
+
       for (var i = 0; i < this.tableColumns_.length;) {
         var td = this.appendNewElement_(trElement, 'td');
         td.columnIndex = i;
@@ -718,64 +716,59 @@
               tr.ui.b.asHTMLOrTextNode(value, this.ownerDocument));
         }
 
-        i += colSpan;
-      }
-
-      var isSelectable = tableSection === this.$.body;
-      var isExpandable = rowInfo.userRow[this.subRowsPropertyName_] &&
-          rowInfo.userRow[this.subRowsPropertyName_].length;
-
-      if (isSelectable || isExpandable) {
-        trElement.addEventListener('click', function(e) {
-          e.stopPropagation();
-          if (e.target.tagName == 'EXPAND-BUTTON') {
-            this.setExpandedForUserRow_(
-                tableSection, rowInfoMap,
-                rowInfo.userRow, !rowInfo.isExpanded);
-            return;
-          }
-
-          function getTD(cur) {
-            if (cur === trElement)
-              throw new Error('woah');
-            if (cur.parentElement === trElement)
-              return cur;
-            return getTD(cur.parentElement);
-          }
-
-          // If the row/cell can be selected and it's not selected yet,
-          // select it.
-          if (isSelectable && this.selectionMode_ !== SelectionMode.NONE) {
-            var shouldSelect = false;
-            var columnIndex = getTD(e.target).columnIndex;
-            switch (this.selectionMode_) {
-              case SelectionMode.ROW:
-                shouldSelect = this.selectedTableRowInfo_ !== rowInfo;
-                break;
-
-              case SelectionMode.CELL:
-                if (this.doesColumnIndexSupportSelection(columnIndex)) {
-                  shouldSelect = this.selectedTableRowInfo_ !== rowInfo ||
-                      this.selectedColumnIndex_ !== columnIndex;
-                }
-                break;
-
-              default:
-                throw new Error('Invalid selection mode ' +
-                    this.selectionMode_);
-            }
-            if (shouldSelect) {
-              this.didTableRowInfoGetClicked_(rowInfo, columnIndex);
+        // Add a click handler for selection and row expansion (if applicable).
+        if (isBodyRow || isExpandableRow) {
+          td.addEventListener('click', function(i, e) {
+            e.stopPropagation();
+            if (e.target.tagName === 'EXPAND-BUTTON') {
+              this.setExpandedForUserRow_(
+                  tableSection, rowInfoMap,
+                  rowInfo.userRow, !rowInfo.isExpanded);
               return;
             }
-          }
 
-          // Otherwise, if the row is expandable, expand/collapse it.
-          if (isExpandable) {
-            this.setExpandedForUserRow_(tableSection, rowInfoMap,
-                rowInfo.userRow, !rowInfo.isExpanded);
-          }
-        }.bind(this));
+            // If the row/cell can be selected and it's not selected yet,
+            // select it.
+            if (isBodyRow && this.selectionMode_ !== SelectionMode.NONE) {
+              var shouldSelect = false;
+              switch (this.selectionMode_) {
+                case SelectionMode.ROW:
+                  shouldSelect = this.selectedTableRowInfo_ !== rowInfo;
+                  break;
+                case SelectionMode.CELL:
+                  if (this.doesColumnIndexSupportSelection(i)) {
+                    shouldSelect = this.selectedTableRowInfo_ !== rowInfo ||
+                        this.selectedColumnIndex_ !== i;
+                  }
+                  break;
+                default:
+                  throw new Error('Invalid selection mode ' +
+                      this.selectionMode_);
+              }
+              if (shouldSelect) {
+                this.didTableRowInfoGetClicked_(rowInfo, i);
+                return;
+              }
+            }
+
+            // Otherwise, if the row is expandable, expand/collapse it.
+            if (isExpandableRow) {
+              this.setExpandedForUserRow_(tableSection, rowInfoMap,
+                  rowInfo.userRow, !rowInfo.isExpanded);
+            }
+          }.bind(this, i));
+        }
+
+        // Add a double-click handler for stepping into a row/cell (if
+        // applicable).
+        if (isBodyRow) {
+          td.addEventListener('dblclick', function(i, e) {
+            e.stopPropagation();
+            this.dispatchStepIntoEvent_(rowInfo, i);
+          }.bind(this, i));
+        }
+
+        i += colSpan;
       }
 
       return rowInfo.htmlNode;
@@ -836,8 +829,6 @@
         this.headerDirty_ = false;
       }
       if (this.bodyDirty_) {
-        Polymer.dom(this.$.cols).textContent = '';
-        this.generateTableColNodes_();
         Polymer.dom(this.$.body).textContent = '';
         this.generateTableRowNodes_(
             this.$.body,
@@ -1106,6 +1097,14 @@
       }
     },
 
+    dispatchStepIntoEvent_: function(rowInfo, columnIndex) {
+      var e = new tr.b.Event('step-into');
+      e.tableRow = rowInfo.userRow;
+      e.tableColumn = this.tableColumns_[columnIndex];
+      e.columnIndex = columnIndex;
+      this.dispatchEvent(e);
+    },
+
     /**
      * If the selectionMode is CELL and a cell is selected,
      * return an object containing the row, column, and value of the selected
@@ -1128,13 +1127,13 @@
     },
 
     /**
-     * If a selectable column is selected, return the object describing the
-     * selected column.
+     * If a column is selected, return the object describing the selected
+     * column.
      *
-     * Columns with |selectable:true| can be selected independently of rows
-     * and cells. So it is possible to select column 0 and cell [0,0], or
-     * column 1 and cell [0,0], for example. See |selectedCell| for how to
-     * access the selected cell when the selectionMode is CELL.
+     * Columns can be selected independently of rows and cells. So it is
+     * possible to select column 0 and cell [0,0], or column 1 and cell [0,0],
+     * for example. See |selectedCell| for how to access the selected cell when
+     * the selectionMode is CELL.
      *
      * |selectedTableColumn| is entirely independent of |selectedColumnIndex|.
      * When the table selectionMode is CELL, use |selectedTableRow| and
@@ -1144,38 +1143,29 @@
      * the same as or different from |selectedColumnIndex|, if a cell is also
      * selected.
      *
-     * @return {undefined|!Object} column
+     * @return {number|undefined}
      */
-    get selectedTableColumn() {
-      for (var i = 0; i < this.headerCells_.length; i++) {
-        if (this.headerCells_[i].selected)
-          return this.tableColumns_[i];
+    get selectedTableColumnIndex() {
+      var cols = Polymer.dom(this.$.cols).children;
+      for (var i = 0; i < cols.length; ++i) {
+        if (cols[i].getAttribute('selected')) {
+          return i;
+        }
       }
       return undefined;
     },
 
     /**
-     * See |get selectedTableColumn()|. |column| must be one of the elements
-     * of this.tableColumns.
-     *
-     * @param {!Object} column
+     * @param {number|undefined} index
      */
-    set selectedTableColumn(column) {
-      if (column !== undefined) {
-        var index = this.tableColumns.indexOf(column);
-        if (index < 0)
-          throw new Error('Cannot select unknown column', column);
-
-        if (!column.selectable)
-          throw new Error('Cannot select un-selectable column', column);
-
-        var cell = this.headerCells_[index];
-        cell.selected = true;
+    set selectedTableColumnIndex(selectedIndex) {
+      var cols = Polymer.dom(this.$.cols).children;
+      for (var i = 0; i < cols.length; ++i) {
+        if (i === selectedIndex)
+          cols[i].setAttribute('selected', true);
+        else
+          cols[i].removeAttribute('selected');
       }
-      var event = {column: column, selected: column !== undefined};
-      this.onSelectedColumnChanged_(event);
-      tr.b.dispatchSimpleEvent(
-          this, 'selected-column-changed', true, false, event);
     },
 
     get selectedTableRow() {
@@ -1348,6 +1338,7 @@
 
       var code_to_command_names = {
         13: 'ENTER',
+        32: 'SPACE',
         37: 'ARROW_LEFT',
         38: 'ARROW_UP',
         39: 'ARROW_RIGHT',
@@ -1452,7 +1443,7 @@
         }
       }
 
-      if (cmdName === 'ENTER') {
+      if (cmdName === 'SPACE') {
         if (rowInfo.userRow[this.subRowsPropertyName_] === undefined)
           return;
         if (rowInfo.userRow[this.subRowsPropertyName_].length === 0)
@@ -1462,6 +1453,11 @@
         return;
       }
 
+      if (cmdName === 'ENTER') {
+        this.dispatchStepIntoEvent_(rowInfo, this.selectedColumnIndex_);
+        return;
+      }
+
       throw new Error('Unrecognized command ' + cmdName);
     },
 
@@ -1503,28 +1499,21 @@
       vertical-align: top;
       font-size: 15px;
       font-family: sans-serif;
-      display: inline;
       line-height: 85%;
       margin-left: 5px;
     }
 
-    #button {
-      font-weight: bold;
-      font-size: 12px;
+    #side.disabled {
+      color: rgb(140, 140, 140);
     }
 
-    #title:empty, #button:empty, #side:empty {
+    #title:empty, #side:empty {
       display: none;
     }
-
-    #button[selected] {
-      background: darkgrey;
-    }
   </style>
 
     <span id="title"></span>
-    <button id="button"></button>
-    <button id="side"></button>
+    <span id="side"></span>
   </template>
 </dom-module>
 <script>
@@ -1544,21 +1533,11 @@
   },
 
   ready: function() {
-    this.$.button.addEventListener('click', this.onSelect_.bind(this));
-    this.$.side.addEventListener('click', this.onTap_.bind(this));
-  },
-
-  onSelect_: function() {
-    this.selected = this.$.button.getAttribute('selected') !== 'true';
-    var e = new tr.b.Event('selected-column-changed');
-    e.column = this.column;
-    e.selected = this.selected;
-    this.dispatchEvent(e);
+    this.addEventListener('click', this.onTap_.bind(this));
   },
 
   set column(column) {
     this.column_ = column;
-    this.selectable = column.selectable;
     this.align = column.align;
     this.cellTitle = column.title;
   },
@@ -1567,29 +1546,6 @@
     return this.column_;
   },
 
-  set selectable(selectable) {
-    this.selectable_ = selectable;
-    this.cellTitle = this.$.title.childNodes[0] ||
-        this.$.button.childNodes[0];
-  },
-
-  get selectable() {
-    return this.selectable_;
-  },
-
-  set selected(selected) {
-    if (selected)
-      this.$.button.setAttribute('selected', true);
-    else
-      this.$.button.removeAttribute('selected');
-  },
-
-  get selected() {
-    if (!this.selectable_)
-      return false;
-    return this.$.button.getAttribute('selected') === 'true';
-  },
-
   set cellTitle(value) {
     this.cellTitle_ = value;
 
@@ -1597,12 +1553,8 @@
         this.cellTitle_, this.ownerDocument);
 
     this.$.title.innerText = '';
-    this.$.button.innerText = '';
 
-    if (this.selectable_)
-      Polymer.dom(this.$.button).appendChild(titleNode);
-    else
-      Polymer.dom(this.$.title).appendChild(titleNode);
+    Polymer.dom(this.$.title).appendChild(titleNode);
   },
 
   get cellTitle() {
@@ -1644,6 +1596,14 @@
     return Polymer.dom(this.$.side).textContent;
   },
 
+  set sideContentDisabled(sideContentDisabled) {
+    this.$.side.classList.toggle('disabled', sideContentDisabled);
+  },
+
+  get sideContentDisabled() {
+    return this.$.side.classList.contains('disabled');
+  },
+
   set tapCallback(callback) {
     this.style.cursor = 'pointer';
     this.tapCallback_ = callback;
diff --git a/catapult/tracing/tracing/ui/base/table_test.html b/catapult/tracing/tracing/ui/base/table_test.html
index ac2f9a2..c24e0f4 100644
--- a/catapult/tracing/tracing/ui/base/table_test.html
+++ b/catapult/tracing/tracing/ui/base/table_test.html
@@ -12,7 +12,7 @@
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var THIS_DOC = document._currentScript.ownerDocument;
+  var THIS_DOC = document.currentScript.ownerDocument;
   var SelectionMode = tr.ui.b.TableFormat.SelectionMode;
   var HighlightStyle = tr.ui.b.TableFormat.HighlightStyle;
   var ColumnAlignment = tr.ui.b.TableFormat.ColumnAlignment;
@@ -23,6 +23,16 @@
     return element.getAttribute('selected') === 'true';
   }
 
+  function simulateDoubleClick(element) {
+    // See https://developer.mozilla.org/en/docs/Web/API/MouseEvent#Example.
+    var event = new MouseEvent('dblclick', {
+      bubbles: true,
+      cancelable: true,
+      view: window
+    });
+    return element.dispatchEvent(event);
+  }
+
   test('instantiateEmptyTable_withoutEmptyValue', function() {
     var columns = [
       {
@@ -802,11 +812,11 @@
 
     // Enter on collapsed row should expand.
     table.selectedTableRow = rows[0];
-    table.performKeyCommand_('ENTER');
+    table.performKeyCommand_('SPACE');
     assert.equal(table.selectedTableRow, rows[0]);
     assert.isTrue(table.getExpandedForTableRow(rows[0]));
 
-    table.performKeyCommand_('ENTER');
+    table.performKeyCommand_('SPACE');
     assert.isFalse(table.getExpandedForTableRow(rows[0]));
 
     // Arrow right on collapsed row should expand.
@@ -1472,6 +1482,51 @@
     assert.isDefined(tr.b.findDeepElementMatchingPredicate(table, isB));
   });
 
+  test('userCanModifySortOrder', function() {
+    var table = document.createElement('tr-ui-b-table');
+    table.tableColumns = [
+      {
+        title: 'Name',
+        value: row => row.name
+      },
+      {
+        title: 'colA',
+        value: row => row.a,
+        cmp: (rowA, rowB) => rowA.a - rowB.a
+      },
+      {
+        title: 'colB',
+        value: row => row.b,
+        cmp: (rowA, rowB) => rowA.b - rowB.b
+      }
+    ];
+    table.tableRows = [
+      {name: 'A', a: 42, b: 0},
+      {name: 'B', a: 89, b: 100},
+      {name: 'C', a: 65, b: -273.15}
+    ];
+    table.userCanModifySortOrder = false;
+    table.sortColumnIndex = 2;
+    table.sortDescending = true;
+    table.rebuild();
+    this.addHTMLOutput(table);
+
+    var toggleButton = document.createElement('button');
+    Polymer.dom(toggleButton).textContent =
+        'Toggle table.userCanModifySortOrder';
+    toggleButton.addEventListener('click', function() {
+      table.userCanModifySortOrder = !table.userCanModifySortOrder;
+    });
+    this.addHTMLOutput(toggleButton);
+
+    var unsetButton = document.createElement('button');
+    Polymer.dom(unsetButton).textContent = 'Unset sort order';
+    unsetButton.addEventListener('click', function() {
+      table.sortColumnIndex = undefined;
+    });
+    this.addHTMLOutput(unsetButton);
+  });
+
   test('columnSelection', function() {
     var table = document.createElement('tr-ui-b-table');
     table.tableColumns = [
@@ -1500,24 +1555,110 @@
     table.selectionMode = SelectionMode.CELL;
     this.addHTMLOutput(table);
 
-    var eventCount = 0;
-    table.addEventListener('selected-column-changed', event => ++eventCount);
+    table.selectedTableColumnIndex = 1;
+    var cols = tr.b.findDeepElementMatchingPredicate(table,
+        e => e.tagName === 'COLGROUP').children;
+    assert.isNull(cols[0].getAttribute('selected'));
+    assert.strictEqual(cols[1].getAttribute('selected'), 'true');
+    assert.isNull(cols[2].getAttribute('selected'));
+    assert.strictEqual(1, table.selectedTableColumnIndex);
 
-    assert.throws(function() {
-      table.selectedTableColumn = table.tableColumns[0];
-    });
+    table.selectedTableColumnIndex = undefined;
+    cols = tr.b.findDeepElementMatchingPredicate(table,
+        e => e.tagName === 'COLGROUP').children;
+    assert.isNull(cols[0].getAttribute('selected'));
+    assert.isNull(cols[1].getAttribute('selected'));
+    assert.isNull(cols[2].getAttribute('selected'));
+    assert.isUndefined(table.selectedTableColumnIndex);
 
-    table.selectedTableColumn = table.tableColumns[1];
-    assert.strictEqual(eventCount, 1);
-    assert.strictEqual(table.tableColumns[1], table.selectedTableColumn);
+    table.selectedTableColumnIndex = 2;
+    cols = tr.b.findDeepElementMatchingPredicate(table,
+        e => e.tagName === 'COLGROUP').children;
+    assert.isNull(cols[0].getAttribute('selected'));
+    assert.isNull(cols[1].getAttribute('selected'));
+    assert.strictEqual(cols[2].getAttribute('selected'), 'true');
+    assert.strictEqual(2, table.selectedTableColumnIndex);
+  });
 
-    table.selectedTableColumn = table.tableColumns[2];
-    assert.strictEqual(eventCount, 2);
-    assert.strictEqual(table.tableColumns[2], table.selectedTableColumn);
+  test('stepInto', function() {
+    var columns = [
+      {
+        title: 'Title',
+        value: function(row) { return row.a; },
+        width: '150px',
+        supportsCellSelection: false
+      },
+      {
+        title: 'Col1',
+        value: function(row) { return row.b; },
+        width: '33%'
+      },
+      {
+        title: 'Col2',
+        value: function(row) { return row.b * 2; },
+        width: '33%'
+      },
+      {
+        title: 'Col3',
+        value: function(row) { return row.b * 3; },
+        width: '33%'
+      }
+    ];
+    var rows = [
+      {
+        a: 'first',
+        b: '1'
+      },
+      {
+        a: 'second',
+        b: '2'
+      }
+    ];
 
-    table.selectedTableColumn = undefined;
-    assert.strictEqual(eventCount, 3);
-    assert.isUndefined(table.selectedTableColumn);
+    var table = document.createElement('tr-ui-b-table');
+
+    var firedStepIntoEvents = [];
+    table.addEventListener('step-into', e => firedStepIntoEvents.push(e));
+
+    table.cellHighlightStyle = HighlightStyle.DARK;
+    table.tableColumns = columns;
+    table.tableRows = rows;
+    table.rebuild();
+    this.addHTMLOutput(table);
+
+    assert.lengthOf(firedStepIntoEvents, 0);
+
+    // Double click.
+    simulateDoubleClick(table.$.body.children[0].children[1]);
+    assert.lengthOf(firedStepIntoEvents, 1);
+    assert.strictEqual(firedStepIntoEvents[0].tableRow, rows[0]);
+    assert.strictEqual(firedStepIntoEvents[0].tableColumn, columns[1]);
+    assert.strictEqual(firedStepIntoEvents[0].columnIndex, 1);
+
+    simulateDoubleClick(table.$.body.children[1].children[3]);
+    assert.lengthOf(firedStepIntoEvents, 2);
+    assert.strictEqual(firedStepIntoEvents[1].tableRow, rows[1]);
+    assert.strictEqual(firedStepIntoEvents[1].tableColumn, columns[3]);
+    assert.strictEqual(firedStepIntoEvents[1].columnIndex, 3);
+
+    // Shift+Enter in cell selection mode.
+    table.selectionMode = SelectionMode.CELL;
+    table.selectedTableRow = rows[0];
+    table.selectedColumnIndex = 2;
+    table.performKeyCommand_('ENTER');
+    assert.lengthOf(firedStepIntoEvents, 3);
+    assert.strictEqual(firedStepIntoEvents[2].tableRow, rows[0]);
+    assert.strictEqual(firedStepIntoEvents[2].tableColumn, columns[2]);
+    assert.strictEqual(firedStepIntoEvents[2].columnIndex, 2);
+
+    // Shift+Enter in row selection mode.
+    table.selectionMode = SelectionMode.ROW;
+    table.selectedTableRow = rows[1];
+    table.performKeyCommand_('ENTER');
+    assert.lengthOf(firedStepIntoEvents, 4);
+    assert.strictEqual(firedStepIntoEvents[3].tableRow, rows[1]);
+    assert.isUndefined(firedStepIntoEvents[3].tableColumn);
+    assert.isUndefined(firedStepIntoEvents[3].columnIndex);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/ui/base/utils.html b/catapult/tracing/tracing/ui/base/utils.html
index 0c720dd..cdb9ab3 100644
--- a/catapult/tracing/tracing/ui/base/utils.html
+++ b/catapult/tracing/tracing/ui/base/utils.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/base.html">
 <link rel="import" href="/tracing/base/rect.html">
 
 <script>
diff --git a/catapult/tracing/tracing/ui/base/utils_test.html b/catapult/tracing/tracing/ui/base/utils_test.html
index 7f9846a..f24cd2b 100644
--- a/catapult/tracing/tracing/ui/base/utils_test.html
+++ b/catapult/tracing/tracing/ui/base/utils_test.html
@@ -35,7 +35,7 @@
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var THIS_DOC = document._currentScript.ownerDocument;
+  var THIS_DOC = document.currentScript.ownerDocument;
 
   test('instantiateTemplatePolymer', function() {
     var e = tr.ui.b.instantiateTemplate(
diff --git a/catapult/tracing/tracing/ui/base/webcomponents.html b/catapult/tracing/tracing/ui/base/webcomponents.html
deleted file mode 100644
index c280515..0000000
--- a/catapult/tracing/tracing/ui/base/webcomponents.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2016 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<script src="/components/webcomponentsjs/webcomponents-lite.js">
diff --git a/catapult/tracing/tracing/ui/extras/chrome/cc/layer_picker.html b/catapult/tracing/tracing/ui/extras/chrome/cc/layer_picker.html
index 29329d9..48bca11 100644
--- a/catapult/tracing/tracing/ui/extras/chrome/cc/layer_picker.html
+++ b/catapult/tracing/tracing/ui/extras/chrome/cc/layer_picker.html
@@ -7,6 +7,7 @@
 
 <link rel="stylesheet" href="/tracing/ui/extras/chrome/cc/layer_picker.css">
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/extras/chrome/cc/constants.html">
 <link rel="import" href="/tracing/extras/chrome/cc/layer_tree_host_impl.html">
 <link rel="import" href="/tracing/extras/chrome/cc/util.html">
@@ -22,7 +23,6 @@
 
 tr.exportTo('tr.ui.e.chrome.cc', function() {
   var constants = tr.e.cc.constants;
-  var bytesToRoundedMegabytes = tr.e.cc.bytesToRoundedMegabytes;
   var RENDER_PASS_QUADS =
       Math.max(constants.ACTIVE_TREE, constants.PENDING_TREE) + 1;
 
@@ -173,7 +173,7 @@
         if (showPureTransformLayers || !isPureTransformLayer(layer))
           layerInfos.push(info);
 
-      };
+      }
       tree.iterLayers(visitLayer);
       return layerInfos;
     },
@@ -237,11 +237,12 @@
           if (layerInfo.isReplicaLayer)
             Polymer.dom(notesEl).textContent += '(replica)';
 
-          if (layer.gpuMemoryUsageInBytes !== undefined) {
-            var rounded = bytesToRoundedMegabytes(layer.gpuMemoryUsageInBytes);
-            if (rounded !== 0)
-              Polymer.dom(notesEl).textContent += ' (' + rounded + ' MB)';
-          }
+          if ((layer.gpuMemoryUsageInBytes !== undefined) &&
+              (layer.gpuMemoryUsageInBytes > 0)) {
+            var gpuUsageStr = tr.b.Unit.byName.sizeInBytes.format(
+                layer.gpuMemoryUsageInBytes);
+            Polymer.dom(notesEl).textContent += ' (' + gpuUsageStr + ' MiB)';
+            }
 
           item.layer = layer;
           Polymer.dom(this.itemList_).appendChild(item);
diff --git a/catapult/tracing/tracing/ui/extras/chrome/cc/layer_tree_quad_stack_view.html b/catapult/tracing/tracing/ui/extras/chrome/cc/layer_tree_quad_stack_view.html
index 830887c..18af028 100644
--- a/catapult/tracing/tracing/ui/extras/chrome/cc/layer_tree_quad_stack_view.html
+++ b/catapult/tracing/tracing/ui/extras/chrome/cc/layer_tree_quad_stack_view.html
@@ -9,6 +9,7 @@
 <link rel="import" href="/tracing/base/quad.html">
 <link rel="import" href="/tracing/base/raf.html">
 <link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
 <link rel="import" href="/tracing/extras/chrome/cc/debug_colors.html">
 <link rel="import" href="/tracing/extras/chrome/cc/picture.html">
 <link rel="import" href="/tracing/extras/chrome/cc/render_pass.html">
@@ -87,8 +88,6 @@
             {label: 'Coverage Rects', value: 'coverage'}];
   }
 
-  var bytesToRoundedMegabytes = tr.e.cc.bytesToRoundedMegabytes;
-
 
   /**
    * @constructor
@@ -440,18 +439,20 @@
         var thisTreeUsageInBytes = this.layerTreeImpl_.gpuMemoryUsageInBytes;
         var otherTreeUsageInBytes = lthi.gpuMemoryUsageInBytes -
             thisTreeUsageInBytes;
-        message += bytesToRoundedMegabytes(thisTreeUsageInBytes) +
-                'MB on this tree';
+        message += tr.b.convertUnit(thisTreeUsageInBytes,
+            tr.b.UnitScale.Binary.NONE,
+            tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB on this tree';
         if (otherTreeUsageInBytes) {
-          message += ', ' +
-              bytesToRoundedMegabytes(otherTreeUsageInBytes) +
-              'MB on the other tree';
+          message += ', ' + tr.b.convertUnit(otherTreeUsageInBytes,
+              tr.b.UnitScale.Binary.NONE,
+              tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB on the other tree';
         }
       } else {
         if (this.layerTreeImpl_) {
           var thisTreeUsageInBytes = this.layerTreeImpl_.gpuMemoryUsageInBytes;
-          message += bytesToRoundedMegabytes(thisTreeUsageInBytes) +
-              'MB on this tree';
+          message += tr.b.convertUnit(thisTreeUsageInBytes,
+              tr.b.UnitScale.Binary.NONE,
+              tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB on this tree';
 
           if (this.layerTreeImpl_.otherTree) {
             // Older Chromes don't report enough data to know how much memory is
@@ -461,7 +462,7 @@
             // plus one tree, to guess the unique on the other tree, etc. Newer
             // chromes report memory per tile, which allows LTHI to compute the
             // total tile memory usage, letting us figure things out properly.
-            message += ', ???MB on other tree. ';
+            message += ', ??? MiB on other tree. ';
           }
         }
       }
@@ -469,10 +470,13 @@
       if (lthi.args.tileManagerBasicState) {
         var tmgs = lthi.args.tileManagerBasicState.globalState;
         message += ' (softMax=' +
-          bytesToRoundedMegabytes(tmgs.softMemoryLimitInBytes) +
-          'MB, hardMax=' +
-          bytesToRoundedMegabytes(tmgs.hardMemoryLimitInBytes) + 'MB, ' +
-          tmgs.memoryLimitPolicy + ')';
+            tr.b.convertUnit(tmgs.softMemoryLimitInBytes,
+                tr.b.UnitScale.Binary.NONE,
+                tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB, hardMax=' +
+            tr.b.convertUnit(tmgs.hardMemoryLimitInBytes,
+                tr.b.UnitScale.Binary.NONE,
+                tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB, ' +
+            tmgs.memoryLimitPolicy + ')';
 
       } else {
         // Old Chromes do not have a globalState on the LTHI dump.
@@ -495,10 +499,13 @@
           var newest = didManageTilesSlices[didManageTilesSlices.length - 1];
           var tmgs = newest.args.state.global_state;
           message += ' (softMax=' +
-            bytesToRoundedMegabytes(tmgs.soft_memory_limit_in_bytes) +
-            'MB, hardMax=' +
-            bytesToRoundedMegabytes(tmgs.hard_memory_limit_in_bytes) + 'MB, ' +
-            tmgs.memory_limit_policy + ')';
+            tr.b.convertUnit(tmgs.softMemoryLimitInBytes,
+                tr.b.UnitScale.Binary.NONE,
+                tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB, hardMax=' +
+            tr.b.convertUnit(tmgs.hardMemoryLimitInBytes,
+                tr.b.UnitScale.Binary.NONE,
+                tr.b.UnitScale.Binary.MEBI).toFixed(1) + ' MiB, ' +
+            tmgs.memoryLimitPolicy + ')';
         }
       }
 
diff --git a/catapult/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html b/catapult/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
index 297de9a..9f95bb0 100644
--- a/catapult/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
+++ b/catapult/tracing/tracing/ui/extras/chrome/cc/raster_task_view.html
@@ -4,13 +4,14 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
+
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/extras/chrome/cc/raster_task.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/ui/extras/chrome/cc/selection.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-e-chrome-cc-raster-task-view'>
   <template>
@@ -48,7 +49,7 @@
 
   updateColumns_: function(hadCpuDurations) {
     var timeSpanConfig = {
-      unit: tr.v.Unit.byName.timeDurationInMs,
+      unit: tr.b.Unit.byName.timeDurationInMs,
       ownerDocument: this.ownerDocument
     };
 
@@ -131,10 +132,9 @@
       table.rebuild();
       return;
     }
-
     // LTHI link.
     var lthi = tr.e.cc.getTileFromRasterTaskSlice(
-        this.selection_[0]).containingSnapshot;
+        tr.b.getFirstElement(this.selection_)).containingSnapshot;
     this.$.link.setSelectionAndContent(function() {
         return new tr.model.EventSet(lthi);
     }, lthi.userFriendlyName);
diff --git a/catapult/tracing/tracing/ui/extras/chrome_config.html b/catapult/tracing/tracing/ui/extras/chrome_config.html
index 3817166..e2065a7 100644
--- a/catapult/tracing/tracing/ui/extras/chrome_config.html
+++ b/catapult/tracing/tracing/ui/extras/chrome_config.html
@@ -29,4 +29,5 @@
 <link rel="import" href="/tracing/ui/extras/side_panel/input_latency_side_panel.html">
 <link rel="import" href="/tracing/ui/extras/side_panel/time_summary_side_panel.html">
 <link rel="import" href="/tracing/ui/extras/system_stats/system_stats.html">
+<link rel="import" href="/tracing/ui/extras/v8_config.html">
 <link rel="import" href="/tracing/ui/timeline_view.html">
diff --git a/catapult/tracing/tracing/ui/extras/side_panel/frame_data_side_panel.html b/catapult/tracing/tracing/ui/extras/side_panel/frame_data_side_panel.html
index 2d2c0b7..ac1ac71 100644
--- a/catapult/tracing/tracing/ui/extras/side_panel/frame_data_side_panel.html
+++ b/catapult/tracing/tracing/ui/extras/side_panel/frame_data_side_panel.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/extras/chrome/blame_context/frame_tree_node.html">
 <link rel="import" href="/tracing/extras/chrome/blame_context/render_frame.html">
 <link rel="import" href="/tracing/extras/chrome/blame_context/top_level.html">
@@ -13,7 +14,6 @@
 <link rel="import" href="/tracing/ui/side_panel/side_panel.html">
 <link rel="import" href="/tracing/ui/side_panel/side_panel_registry.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-e-s-frame-data-side-panel'>
   <template>
@@ -209,7 +209,7 @@
         {
           title: 'Time',
           value: row => tr.v.ui.createScalarSpan(row.time, {
-            unit: tr.v.Unit.byName.timeStampInMs,
+            unit: tr.b.Unit.byName.timeStampInMs,
             ownerDocument: this.ownerDocument
           }),
           cmp: (a, b) => a.time - b.time
diff --git a/catapult/tracing/tracing/ui/extras/side_panel/time_summary_side_panel.html b/catapult/tracing/tracing/ui/extras/side_panel/time_summary_side_panel.html
index e1e8f41..1542b13 100644
--- a/catapult/tracing/tracing/ui/extras/side_panel/time_summary_side_panel.html
+++ b/catapult/tracing/tracing/ui/extras/side_panel/time_summary_side_panel.html
@@ -7,12 +7,12 @@
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/ui/base/pie_chart.html">
 <link rel="import" href="/tracing/ui/side_panel/side_panel.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-e-s-time-summary-side-panel'>
   <template>
@@ -216,7 +216,7 @@
         data.push({
           label: resultsForGroup.name,
           value: value,
-          valueText: tr.v.Unit.byName.timeDurationInMs.format(value),
+          valueText: tr.b.Unit.byName.timeDurationInMs.format(value),
           resultsForGroup: resultsForGroup
         });
       }
@@ -351,7 +351,7 @@
         bold: true}));
       Polymer.dom(summaryText).appendChild(tr.v.ui.createScalarSpan(
           getValueFromGroup(allGroup), {
-            unit: tr.v.Unit.byName.timeDurationInMs,
+            unit: tr.b.Unit.byName.timeDurationInMs,
             ownerDocument: this.ownerDocument
           }));
       Polymer.dom(resultArea).appendChild(summaryText);
@@ -368,7 +368,7 @@
         extraData.push({
           label: 'CPU Idle',
           value: idleTime,
-          valueText: tr.v.Unit.byName.timeDurationInMs.format(idleTime)
+          valueText: tr.b.Unit.byName.timeDurationInMs.format(idleTime)
         });
         extraValue += idleTime;
       }
diff --git a/catapult/tracing/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view.html b/catapult/tracing/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view.html
new file mode 100644
index 0000000..a2dfecb
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
+<link rel="import" href="/tracing/ui/extras/v8/runtime_call_stats_table.html">
+
+<dom-module id='tr-ui-e-multi-v8-thread-slice-sub-view'>
+  <template>
+    <tr-ui-a-multi-thread-slice-sub-view id="content"></tr-ui-a-multi-thread-slice-sub-view>
+    <tr-ui-e-v8-runtime-call-stats-table id="runtimeCallStats"></tr-ui-e-v8-runtime-call-stats-table>
+  </template>
+</dom-module>
+
+<script>
+'use strict';
+
+Polymer({
+  is: 'tr-ui-e-multi-v8-thread-slice-sub-view',
+  behaviors: [tr.ui.analysis.AnalysisSubView],
+
+  get selection() {
+    return this.$.content.selection;
+  },
+
+  set selection(selection) {
+    this.$.runtimeCallStats.slices = selection;
+    this.$.content.selection = selection;
+  }
+});
+
+tr.ui.analysis.AnalysisSubView.register(
+  'tr-ui-e-multi-v8-thread-slice-sub-view',
+  tr.e.v8.V8ThreadSlice,
+  {
+    multi: true,
+    title: 'V8 slices'
+  }
+);
+
+</script>
diff --git a/catapult/tracing/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view_test.html b/catapult/tracing/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view_test.html
new file mode 100644
index 0000000..7bf81d1
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view_test.html
@@ -0,0 +1,79 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/extras/v8/v8_thread_slice.html">
+<link rel="import" href="/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  var newSliceEx = tr.c.TestUtils.newSliceEx;
+
+  function createModel() {
+    var m = tr.c.TestUtils.newModel(function(m) {
+      m.p1 = m.getOrCreateProcess(1);
+      m.t2 = m.p1.getOrCreateThread(2);
+
+      m.s1 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 0,
+           end: 10,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    CompileFullCode: [3, 345],
+                    LoadIC_Miss: [5, 567],
+                    ParseLazy: [8, 890]
+                  }}}));
+      m.s2 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 11,
+           end: 15,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    HandleApiCall: [1, 123],
+                    OptimizeCode: [7, 789]
+                  }}}));
+    });
+    return m;
+  }
+
+  test('selectMultiV8ThreadSlices', function() {
+    var m = createModel();
+
+    var viewEl =
+        document.createElement('tr-ui-e-multi-v8-thread-slice-sub-view');
+    var selection = new tr.model.EventSet();
+    selection.push(m.s1);
+    selection.push(m.s2);
+    viewEl.selection = selection;
+    this.addHTMLOutput(viewEl);
+    var rows = viewEl.$.runtimeCallStats.$.table.tableRows;
+    assert.lengthOf(rows, 10);
+    assert.deepEqual(rows.map(r => r.time), [
+      2714,
+      567,
+      789,
+      345,
+      890,
+      0,
+      0,
+      0,
+      0,
+      123
+    ]);
+  });
+
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table.html b/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table.html
new file mode 100644
index 0000000..a3b5be3
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table.html
@@ -0,0 +1,229 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/extras/v8/v8_thread_slice.html">
+<link rel="import" href="/tracing/ui/base/table.html">
+
+<dom-module id='tr-ui-e-v8-runtime-call-stats-table'>
+  <template>
+    <style>
+    #table {
+      flex: 0 0 auto;
+      align-self: stretch;
+      margin-top: 1em;
+    }
+    </style>
+    <tr-ui-b-table id="table"></tr-ui-b-table>
+  </template>
+</dom-module>
+<script>
+'use strict';
+
+tr.exportTo('tr.ui.e.v8', function() {
+
+  function handleCodeSearch_(event) {
+    if (event.target.parentNode === undefined) return;
+    var name = event.target.parentNode.entryName;
+    var url = 'https://cs.chromium.org/search/?sq=package:chromium&type=cs&q=';
+    if (name.startsWith('API_')) name = name.substring(4);
+    url += encodeURIComponent(name) + '+file:src/v8/src';
+    window.open(url, '_blank');
+  }
+
+  var Entry = function(name, count, time) {
+    this.name_ = name;
+    this.count_ = count;
+    this.time_ = time;
+  };
+
+  Entry.prototype = {
+    __proto__: Object.prototype,
+
+    get name() {
+      return this.name_;
+    },
+
+    get count() {
+      return this.count_;
+    },
+
+    get time() {
+      return this.time_;
+    },
+
+    accumulate: function(count, time) {
+      this.count_ += count;
+      this.time_ += time;
+    },
+
+    reset: function() {
+      this.count_ = 0;
+      this.time_ = 0;
+    }
+  };
+
+  var GroupedEntry = function(name, match_regex) {
+    Entry.call(this, name, 0, 0);
+    this.regex_ = match_regex;
+    this.entries_ = new Map();
+  };
+
+  GroupedEntry.prototype = {
+    __proto__: Entry.prototype,
+
+    match: function(name) {
+      return this.regex_ && !(!name.match(this.regex_));
+    },
+
+    add: function(entry) {
+      var value = this.entries_.get(entry.name);
+      if (value !== undefined)
+        value.accumulate(entry.count, entry.time);
+      else
+        this.entries_.set(entry.name, entry);
+      this.count_ += entry.count;
+      this.time_ += entry.time;
+    },
+
+    get subRows() {
+      return Array.from(this.entries_.values());
+    },
+
+    reset: function(entry) {
+      this.time_ = 0;
+      this.count_ = 0;
+      this.entries_.clear();
+    }
+  };
+
+  Polymer({
+    is: 'tr-ui-e-v8-runtime-call-stats-table',
+
+    ready: function() {
+      this.table_ = this.$.table;
+      this.totalTime_ = 0;
+    },
+
+    constructTable_: function() {
+      var totalTime = this.totalTime_;
+      this.table_.selectionMode = tr.ui.b.TableFormat.SelectionMode.ROW;
+      this.table_.tableColumns = [
+        {
+          title: 'Name',
+          value: function(row) {
+            var typeEl = document.createElement('span');
+            typeEl.innerText = row.name;
+            if (!(row instanceof GroupedEntry)) {
+              typeEl.title = 'click ? for code search';
+              typeEl.entryName = row.name;
+              var codeSearchEl = document.createElement('span');
+              codeSearchEl.innerText = '?';
+              codeSearchEl.style.float = 'right';
+              codeSearchEl.style.borderRadius = '5px';
+              codeSearchEl.style.backgroundColor = '#EEE';
+              codeSearchEl.addEventListener('click',
+                                            handleCodeSearch_.bind(this));
+              typeEl.appendChild(codeSearchEl);
+            }
+            return typeEl;
+          },
+          width: '200px',
+          showExpandButtons: true
+        },
+        {
+          title: 'Time',
+          value: function(row) {
+            var typeEl = document.createElement('span');
+            typeEl.innerText = (row.time / 1000.0).toFixed(3) + ' ms';
+            return typeEl;
+          },
+          width: '100px',
+          cmp: function(a, b) {
+            return a.time - b.time;
+          }
+        },
+        {
+          title: 'Count',
+          value: function(row) {
+            var typeEl = document.createElement('span');
+            typeEl.innerText = row.count;
+            return typeEl;
+          },
+          width: '100px',
+          cmp: function(a, b) {
+            return a.count - b.count;
+          }
+        },
+        {
+          title: 'Percent',
+          value: function(row) {
+            var typeEl = document.createElement('span');
+            typeEl.innerText = (row.time / totalTime * 100).toFixed(3) + '%';
+            return typeEl;
+          },
+          width: '100px',
+          cmp: function(a, b) {
+            return a.time - b.time;
+          }
+        }
+      ];
+
+      this.table_.sortColumnIndex = 1;
+      this.table_.sortDescending = true;
+    },
+
+    set slices(slices) {
+      var groups = new Array(
+        new GroupedEntry('Total'),
+        new GroupedEntry('IC', /.*IC.*/),
+        new GroupedEntry('Optimize',
+                         /StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*/),
+        new GroupedEntry('Compile', /.*Compile.*/),
+        new GroupedEntry('Parse', /.*Parse.*/),
+        new GroupedEntry('Callback', /.*Callback$/),
+        new GroupedEntry('API', /.*API.*/),
+        new GroupedEntry('GC', /GC|AllocateInTargetSpace/),
+        new GroupedEntry('JavaScript', /JS_Execution/),
+        new GroupedEntry('Runtime', /.*/)
+      );
+
+      slices.forEach(function(slice) {
+        if (!(slice instanceof tr.e.v8.V8ThreadSlice)) return;
+        try {
+          var runtimeCallStats = JSON.parse(slice.runtimeCallStats);
+        } catch (e) {
+          var runtimeCallStats = slice.runtimeCallStats;
+        }
+        if (runtimeCallStats !== undefined) {
+          Object.getOwnPropertyNames(runtimeCallStats).forEach(
+            function(runtimeCallStatName) {
+              for (var i = 1; i < groups.length; ++i) {
+                if (groups[i].match(runtimeCallStatName)) {
+                  var runtimeCallStat = runtimeCallStats[runtimeCallStatName];
+                  if (runtimeCallStat.length !== 2) break;
+                  var entry = new Entry(runtimeCallStatName, runtimeCallStat[0],
+                                        runtimeCallStat[1]);
+                  groups[0].accumulate(runtimeCallStat[0], runtimeCallStat[1]);
+                  groups[i].add(entry);
+                  break;
+                }
+              }
+            }, this);
+        }
+      }, this);
+      this.totalTime_ = groups[0].time;
+      if (this.totalTime_ > 0) {
+        this.constructTable_();
+        this.table_.tableRows = groups;
+        this.table_.rebuild();
+      }
+    }
+  });
+
+  return {};
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table_test.html b/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table_test.html
new file mode 100644
index 0000000..7169647
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8/runtime_call_stats_table_test.html
@@ -0,0 +1,181 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/extras/v8/v8_thread_slice.html">
+<link rel="import" href="/tracing/ui/extras/v8/runtime_call_stats_table.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  var newSliceEx = tr.c.TestUtils.newSliceEx;
+  var apiObjectGet = [1, 123];
+  var functionCallback = [2, 234];
+  var compileFullCode = [3, 345];
+  var allocateInTargetSpace = [4, 456];
+  var loadIcMiss = [5, 567];
+  var jsExecution = [6, 678];
+  var optimizeCode = [7, 789];
+  var parseLazy = [8, 890];
+  var handleApiCall = [9, 901];
+
+  function createModel() {
+    var m = tr.c.TestUtils.newModel(function(m) {
+      m.p1 = m.getOrCreateProcess(1);
+      m.t2 = m.p1.getOrCreateThread(2);
+
+      m.s1 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 0,
+           end: 10,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    JS_Execution: jsExecution,
+                    HandleApiCall: handleApiCall,
+                    CompileFullCode: compileFullCode,
+                    LoadIC_Miss: loadIcMiss,
+                    ParseLazy: parseLazy,
+                    OptimizeCode: optimizeCode,
+                    FunctionCallback: functionCallback,
+                    AllocateInTargetSpace: allocateInTargetSpace,
+                    API_Object_Get: apiObjectGet
+                  }}}));
+      m.s2 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 11,
+           end: 15,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    JS_Execution: jsExecution,
+                    HandleApiCall: handleApiCall,
+                    CompileFullCode: compileFullCode,
+                    LoadIC_Miss: loadIcMiss,
+                    ParseLazy: parseLazy,
+                    OptimizeCode: optimizeCode,
+                    FunctionCallback: functionCallback,
+                    AllocateInTargetSpace: allocateInTargetSpace,
+                    API_Object_Get: apiObjectGet
+                  }}}));
+      m.s3 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 11,
+           end: 15,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    LoadIC_LoadCallback: [1, 111],
+                    StoreIC_StoreCallback: [2, 222],
+                  }}}));
+    });
+    return m;
+  }
+
+  test('SingleSliceSelection', function() {
+    var m = createModel();
+
+    var viewEl = document.createElement('tr-ui-e-v8-runtime-call-stats-table');
+    viewEl.slices = [m.s1];
+    this.addHTMLOutput(viewEl);
+    tr.b.forceAllPendingTasksToRunForTest();
+    var rows = viewEl.$.table.tableRows;
+    assert.lengthOf(rows, 10);
+    assert.deepEqual(rows.map(r => r.time), [
+      4983,
+      loadIcMiss[1],
+      optimizeCode[1],
+      compileFullCode[1],
+      parseLazy[1],
+      functionCallback[1],
+      apiObjectGet[1],
+      allocateInTargetSpace[1],
+      jsExecution[1],
+      handleApiCall[1]
+    ]);
+  });
+
+  test('MultiSliceSelection', function() {
+    var m = createModel();
+
+    var viewEl = document.createElement('tr-ui-e-v8-runtime-call-stats-table');
+    viewEl.slices = [m.s1, m.s2];
+    this.addHTMLOutput(viewEl);
+    tr.b.forceAllPendingTasksToRunForTest();
+    var rows = viewEl.$.table.tableRows;
+    assert.lengthOf(rows, 10);
+    assert.deepEqual(rows.map(r => r.time), [
+      9966,
+      loadIcMiss[1] * 2,
+      optimizeCode[1] * 2,
+      compileFullCode[1] * 2,
+      parseLazy[1] * 2,
+      functionCallback[1] * 2,
+      apiObjectGet[1] * 2,
+      allocateInTargetSpace[1] * 2,
+      jsExecution[1] * 2,
+      handleApiCall[1] * 2
+    ]);
+
+    assert.deepEqual(rows.map(r => r.entries_.size), [
+      0,
+      1,
+      1,
+      1,
+      1,
+      1,
+      1,
+      1,
+      1,
+      1
+    ]);
+  });
+
+  test('groupCorrectly', function() {
+    var m = createModel();
+
+    var viewEl = document.createElement('tr-ui-e-v8-runtime-call-stats-table');
+    viewEl.slices = [m.s3];
+    this.addHTMLOutput(viewEl);
+    tr.b.forceAllPendingTasksToRunForTest();
+    var rows = viewEl.$.table.tableRows;
+    assert.lengthOf(rows, 10);
+    assert.deepEqual(rows.map(r => r.time), [
+      333,
+      333,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ]);
+
+    assert.deepEqual(rows.map(r => r.entries_.size), [
+      0,
+      2,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0
+    ]);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/extras/v8/single_v8_thread_slice_sub_view.html b/catapult/tracing/tracing/ui/extras/v8/single_v8_thread_slice_sub_view.html
new file mode 100644
index 0000000..8162d20
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8/single_v8_thread_slice_sub_view.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/ui/analysis/analysis_sub_view.html">
+<link rel="import" href="/tracing/ui/extras/v8/runtime_call_stats_table.html">
+
+<dom-module id='tr-ui-e-single-v8-thread-slice-sub-view'>
+  <template>
+    <tr-ui-a-single-thread-slice-sub-view id="content"></tr-ui-a-single-thread-slice-sub-view>
+    <tr-ui-e-v8-runtime-call-stats-table id="runtimeCallStats"></tr-ui-e-v8-runtime-call-stats-table>
+  </template>
+</dom-module>
+
+<script>
+'use strict';
+Polymer({
+  is: 'tr-ui-e-single-v8-thread-slice-sub-view',
+  behaviors: [tr.ui.analysis.AnalysisSubView],
+
+  get selection() {
+    return this.$.content.selection;
+  },
+
+  set selection(selection) {
+    this.$.runtimeCallStats.slices = selection;
+    this.$.content.selection = selection;
+  }
+});
+
+tr.ui.analysis.AnalysisSubView.register(
+  'tr-ui-e-single-v8-thread-slice-sub-view',
+  tr.e.v8.V8ThreadSlice,
+  {
+    multi: false,
+    title: 'V8 slice'
+  }
+);
+
+</script>
diff --git a/catapult/tracing/tracing/ui/extras/v8/single_v8_thread_slice_sub_view_test.html b/catapult/tracing/tracing/ui/extras/v8/single_v8_thread_slice_sub_view_test.html
new file mode 100644
index 0000000..a23d18a
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8/single_v8_thread_slice_sub_view_test.html
@@ -0,0 +1,96 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/extras/v8/v8_thread_slice.html">
+<link rel="import" href="/tracing/model/event_set.html">
+<link rel="import" href="/tracing/ui/extras/v8/single_v8_thread_slice_sub_view.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  var newSliceEx = tr.c.TestUtils.newSliceEx;
+
+  function createModel() {
+    var m = tr.c.TestUtils.newModel(function(m) {
+      m.p1 = m.getOrCreateProcess(1);
+      m.t2 = m.p1.getOrCreateThread(2);
+
+      m.s1 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 0,
+           end: 10,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    CompileFullCode: [3, 345],
+                    LoadIC_Miss: [5, 567],
+                    ParseLazy: [8, 890]
+                  }}}));
+      m.s2 = m.t2.sliceGroup.pushSlice(
+        newSliceEx(
+          {title: 'V8.Execute',
+           start: 11,
+           end: 15,
+           type: tr.e.v8.V8ThreadSlice,
+           cat: 'v8',
+           args: {'runtime-call-stats':
+                  {
+                    HandleApiCall: [1, 123],
+                    OptimizeCode: [7, 789]
+                  }}}));
+    });
+    return m;
+  }
+
+  test('selectV8ThreadSlice', function() {
+    var m = createModel();
+
+    var viewEl =
+        document.createElement('tr-ui-e-single-v8-thread-slice-sub-view');
+    var selection1 = new tr.model.EventSet();
+    selection1.push(m.s1);
+    viewEl.selection = selection1;
+    this.addHTMLOutput(viewEl);
+    var rows = viewEl.$.runtimeCallStats.$.table.tableRows;
+    assert.lengthOf(rows, 10);
+    assert.deepEqual(rows.map(r => r.time), [
+      1802,
+      567,
+      0,
+      345,
+      890,
+      0,
+      0,
+      0,
+      0,
+      0
+    ]);
+
+    var selection2 = new tr.model.EventSet();
+    selection2.push(m.s2);
+    viewEl.selection = selection2;
+    rows = viewEl.$.runtimeCallStats.$.table.tableRows;
+    assert.lengthOf(rows, 10);
+    assert.deepEqual(rows.map(r => r.time), [
+      912,
+      0,
+      789,
+      0,
+      0,
+      0,
+      0,
+      0,
+      0,
+      123
+    ]);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/ui/extras/v8_config.html b/catapult/tracing/tracing/ui/extras/v8_config.html
new file mode 100644
index 0000000..60d37c0
--- /dev/null
+++ b/catapult/tracing/tracing/ui/extras/v8_config.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2013 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+
+<link rel="import" href="/tracing/extras/v8_config.html">
+<link rel="import" href="/tracing/ui/extras/v8/multi_v8_thread_slice_sub_view.html">
+<link rel="import" href="/tracing/ui/extras/v8/runtime_call_stats_table.html">
+<link rel="import" href="/tracing/ui/extras/v8/single_v8_thread_slice_sub_view.html">
diff --git a/catapult/tracing/tracing/ui/metrics_debugger_app.html b/catapult/tracing/tracing/ui/metrics_debugger_app.html
index db67f25..72c30ca 100644
--- a/catapult/tracing/tracing/ui/metrics_debugger_app.html
+++ b/catapult/tracing/tracing/ui/metrics_debugger_app.html
@@ -4,12 +4,12 @@
 Use of this source code is governed by a BSD-style license that can be
 found in the LICENSE file.
 -->
-<link rel="import" href="/perf_insights/mre/mre_result.html">
 <link rel="import" href="/tracing/extras/full_config.html">
 <link rel="import" href="/tracing/importer/import.html">
 <link rel="import" href="/tracing/metrics/all_metrics.html">
 <link rel="import" href="/tracing/metrics/metric_map_function.html">
 <link rel="import" href="/tracing/model/model.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/ui/base/file.html">
 <link rel="import" href="/tracing/ui/base/ui.html">
@@ -82,7 +82,7 @@
         tr.ui.b.Overlay.showError('You must load a trace first!');
         return;
       }
-      var result = new pi.mre.MreResult();
+      var result = new tr.mre.MreResult();
       var model = this.activeTrace_.model;
       var options = {metrics: [this.currentMetricName_]};
       try {
diff --git a/catapult/tracing/tracing/ui/side_panel/file_size_stats_side_panel.html b/catapult/tracing/tracing/ui/side_panel/file_size_stats_side_panel.html
index 7fff68b..a2e80c2 100644
--- a/catapult/tracing/tracing/ui/side_panel/file_size_stats_side_panel.html
+++ b/catapult/tracing/tracing/ui/side_panel/file_size_stats_side_panel.html
@@ -6,6 +6,7 @@
 -->
 
 <link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/base/grouping_table.html">
 <link rel="import" href="/tracing/ui/base/grouping_table_groupby_picker.html">
 <link rel="import" href="/tracing/ui/base/table.html">
@@ -13,7 +14,6 @@
 <link rel="import" href="/tracing/ui/side_panel/side_panel_registry.html">
 <link rel="import" href="/tracing/value/numeric.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id='tr-ui-sp-file-size-stats-side-panel'>
   <template>
@@ -163,7 +163,7 @@
           title: 'Bytes',
           align: tr.ui.b.TableFormat.ColumnAlignment.RIGHT,
           value: function(row) {
-            var value = new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes,
+            var value = new tr.v.ScalarNumeric(tr.b.Unit.byName.sizeInBytes,
                 row.rowStats.totalEventSizeinBytes);
             var spanEl = tr.v.ui.createScalarSpan(value);
             return spanEl;
diff --git a/catapult/tracing/tracing/ui/side_panel/metrics_side_panel.html b/catapult/tracing/tracing/ui/side_panel/metrics_side_panel.html
index 033b421..a7a1535 100644
--- a/catapult/tracing/tracing/ui/side_panel/metrics_side_panel.html
+++ b/catapult/tracing/tracing/ui/side_panel/metrics_side_panel.html
@@ -6,12 +6,14 @@
 -->
 
 <link rel="import" href="/tracing/base/raf.html">
+<link rel="import" href="/tracing/metrics/metric_map_function.html">
 <link rel="import" href="/tracing/metrics/metric_registry.html">
 <link rel="import" href="/tracing/model/event_set.html">
+<link rel="import" href="/tracing/mre/mre_result.html">
 <link rel="import" href="/tracing/ui/base/dom_helpers.html">
 <link rel="import" href="/tracing/ui/side_panel/side_panel.html">
 <link rel="import" href="/tracing/ui/side_panel/side_panel_registry.html">
-<link rel="import" href="/tracing/value/ui/all_value_set_views.html">
+<link rel="import" href="/tracing/value/ui/value_set_view.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <dom-module id="tr-ui-sp-metrics-side-panel">
@@ -21,10 +23,14 @@
       display: flex;
       flex-direction: column;
     }
+    div#error {
+      color: red;
+    }
     </style>
 
     <top-left-controls id="top_left_controls"></top-left-controls>
     <tr-v-ui-value-set-view id="results"></tr-v-ui-value-set-view>
+    <div id="error"></div>
   </template>
 </dom-module>
 
@@ -158,23 +164,15 @@
 
     updateContents_: function() {
       this.style.width = '';
-      tr.b.requestAnimationFrame(function() {
-        var width = this.$.results.getBoundingClientRect().width + 15;
-        this.style.width = width + 'px';
-      }, this);
+      Polymer.dom(this.$.error).textContent = '';
+      this.$.results.style.display = 'none';
 
       if (!this.model_) {
-        this.$.results.values = new tr.v.ValueSet([
-            new tr.v.FailureValue('missing', {
-              description: 'Missing model',
-              stack: ''
-            })
-        ]);
+        Polymer.dom(this.$.error).textContent = 'Missing model';
         return;
       }
 
-      var values = new tr.v.ValueSet();
-      var options = {};
+      var options = {metrics: [this.currentMetricName_]};
 
       if (this.currentMetricTypeInfo_ &&
           this.currentMetricTypeInfo_.metadata.supportsRangeOfInterest &&
@@ -184,18 +182,13 @@
 
       var startDate = new Date();
       try {
-        this.currentMetricTypeInfo_.constructor(values, this.model_, options);
+        var values = tr.metrics.runMetrics(this.model_, options);
       } catch (err) {
-        var metricName = this.currentMetricTypeInfo_.constructor.name;
         console.warn(
-            metricName + ' could not be computed for the current model:\n' +
+            this.currentMetricName_ +
+            ' could not be computed for the current model:\n' +
             err.stack);
-        this.$.results.values = new tr.v.ValueSet([
-            new tr.v.FailureValue('error', {
-              description: err.message,
-              stack: err.stack
-            })
-        ]);
+        Polymer.dom(this.$.error).textContent = err.message;
         return;
       }
 
@@ -204,7 +197,14 @@
         this.metricLatenciesMs_.shift();
 
       this.recomputeButton_.style.background = '';
+
+      this.$.results.style.display = '';
       this.$.results.values = values;
+
+      tr.b.requestAnimationFrame(function() {
+        var width = this.$.results.getBoundingClientRect().width + 15;
+        this.style.width = width + 'px';
+      }, this);
     }
   });
 
diff --git a/catapult/tracing/tracing/ui/side_panel/side_panel_container.html b/catapult/tracing/tracing/ui/side_panel/side_panel_container.html
index afaaec1..9b959b9 100644
--- a/catapult/tracing/tracing/ui/side_panel/side_panel_container.html
+++ b/catapult/tracing/tracing/ui/side_panel/side_panel_container.html
@@ -18,12 +18,14 @@
       background-color: white;
     }
 
+    :host([expanded]) > #side_panel_drag_handle,
     :host([expanded]) > active-panel-container {
       -webkit-flex: 1 1 auto;
       border-left: 1px solid black;
       display: -webkit-flex;
     }
 
+    :host(:not([expanded])) > #side_panel_drag_handle,
     :host(:not([expanded])) > active-panel-container {
       display: none;
     }
@@ -64,10 +66,14 @@
       border-left: none;
       padding: 14px 2px 14px 1px;
     }
+
+    #active_panel_container {
+      overflow: auto;
+    }
     </style>
 
+    <tr-ui-b-drag-handle id="side_panel_drag_handle"></tr-ui-b-drag-handle>
     <active-panel-container id='active_panel_container'>
-      <tr-ui-b-drag-handle id="side_panel_drag_handle"></tr-ui-b-drag-handle>
     </active-panel-container>
     <tab-strip id='tab_strip'></tab-strip>
   </template>
@@ -83,6 +89,7 @@
 
     this.dragHandle_ = this.$.side_panel_drag_handle;
     this.dragHandle_.horizontal = false;
+    this.dragHandle_.target = this.activePanelContainer_;
     this.rangeOfInterest_ = new tr.b.Range();
     this.brushingStateController_ = undefined;
     this.onSelectionChanged_ = this.onSelectionChanged_.bind(this);
@@ -128,15 +135,11 @@
   },
 
   get activePanel() {
-    if (Polymer.dom(this.activePanelContainer_).children.length < 2)
-      return undefined;
-    return this.activePanelContainer_.children[1];
+    return this.activePanelContainer_.children[0];
   },
 
-  get activePanel() {
-    if (Polymer.dom(this.activePanelContainer_).children.length < 2)
-      return undefined;
-    return Polymer.dom(this.activePanelContainer_).children[1];
+  get activePanelType() {
+    return this.activePanelType_;
   },
 
   set activePanelType(panelType) {
@@ -155,8 +158,6 @@
           this.activePanelType)).removeAttribute('selected');
     }
 
-    Polymer.dom(this.activePanelContainer_).textContent = '';
-
     if (this.activePanelType) {
       this.getLabelElementForPanelType_(
           this.activePanelType).removeAttribute('selected');
@@ -176,7 +177,6 @@
     Polymer.dom(this).setAttribute('expanded', true);
 
     Polymer.dom(this.activePanelContainer_).appendChild(panel);
-    this.dragHandle_.target = panel;
     panel.rangeOfInterest = this.rangeOfInterest_;
     panel.selection = this.selection_;
     panel.model = this.model;
@@ -238,7 +238,6 @@
     } else {
       if (this.activePanel)
         Polymer.dom(this.activePanelContainer_).removeChild(this.activePanel);
-      Polymer.dom(this.activePanelContainer_).textContent = '';
       Polymer.dom(this).removeAttribute('expanded');
     }
   },
diff --git a/catapult/tracing/tracing/ui/timeline_track_view.html b/catapult/tracing/tracing/ui/timeline_track_view.html
index 5d8c62e..f7650c8 100644
--- a/catapult/tracing/tracing/ui/timeline_track_view.html
+++ b/catapult/tracing/tracing/ui/timeline_track_view.html
@@ -9,6 +9,7 @@
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/base/settings.html">
 <link rel="import" href="/tracing/base/task.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/core/filter.html">
 <link rel="import" href="/tracing/model/event.html">
 <link rel="import" href="/tracing/model/event_set.html">
@@ -22,7 +23,6 @@
 <link rel="import" href="/tracing/ui/tracks/drawing_container.html">
 <link rel="import" href="/tracing/ui/tracks/model_track.html">
 <link rel="import" href="/tracing/ui/tracks/ruler_track.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <!--
   Interactive visualizaiton of Model objects based loosely on gantt charts.
@@ -842,7 +842,7 @@
         (hiX - canv.offsetLeft) * pixelRatio);
 
     Polymer.dom(this.$.drag_box).textContent =
-        tr.v.Unit.byName.timeDurationInMs.format(hiWX - loWX);
+        tr.b.Unit.byName.timeDurationInMs.format(hiWX - loWX);
 
     var e = new tr.b.Event('selectionChanging');
     e.loWX = loWX;
diff --git a/catapult/tracing/tracing/ui/tracks/chart_series_test.html b/catapult/tracing/tracing/ui/tracks/chart_series_test.html
index 1efc2ab..c8a974c 100644
--- a/catapult/tracing/tracing/ui/tracks/chart_series_test.html
+++ b/catapult/tracing/tracing/ui/tracks/chart_series_test.html
@@ -166,31 +166,29 @@
     var sel = new EventSet();
     series.addIntersectingEventsInRangeToSelectionInWorldSpace(
         -30.5, -29.5, 40, sel);
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 0);
+    assert.equal(tr.b.getOnlyElement(sel).index, 0);
 
     // Select second point.
     var sel = new EventSet();
     series.addIntersectingEventsInRangeToSelectionInWorldSpace(
         -28.8, -28.2, 40, sel);
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 1);
+    assert.equal(tr.b.getOnlyElement(sel).index, 1);
 
     // Select points in the middle.
     var sel = new EventSet();
     series.addIntersectingEventsInRangeToSelectionInWorldSpace(
         -0.99, 1.01, 40, sel);
     assert.lengthOf(sel, 3);
-    assert.equal(sel[0].index, 29);
-    assert.equal(sel[1].index, 30);
-    assert.equal(sel[2].index, 31);
+    var iterator = sel[Symbol.iterator]();
+    assert.equal(iterator.next().value.index, 29);
+    assert.equal(iterator.next().value.index, 30);
+    assert.equal(iterator.next().value.index, 31);
 
     // Select the last point.
     var sel = new EventSet();
     series.addIntersectingEventsInRangeToSelectionInWorldSpace(
         668.99, 668.99, 40, sel);
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 59);
+    assert.equal(tr.b.getOnlyElement(sel).index, 59);
 
     // Too far right.
     var sel = new EventSet();
@@ -223,8 +221,7 @@
     var sel = new EventSet();
     assert.isTrue(series.addEventNearToProvidedEventToSelection(
         series.points[0].modelItem, 1, sel));
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 1);
+    assert.equal(tr.b.getOnlyElement(sel).index, 1);
 
     var sel = new EventSet();
     assert.isFalse(series.addEventNearToProvidedEventToSelection(
@@ -235,14 +232,12 @@
     var sel = new EventSet();
     assert.isTrue(series.addEventNearToProvidedEventToSelection(
         series.points[30].modelItem, 1, sel));
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 31);
+    assert.equal(tr.b.getOnlyElement(sel).index, 31);
 
     var sel = new EventSet();
     assert.isTrue(series.addEventNearToProvidedEventToSelection(
         series.points[30].modelItem, -1, sel));
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 29);
+    assert.equal(tr.b.getOnlyElement(sel).index, 29);
 
     // Last point.
     var sel = new EventSet();
@@ -253,8 +248,7 @@
     var sel = new EventSet();
     assert.isTrue(series.addEventNearToProvidedEventToSelection(
         series.points[59].modelItem, -1, sel));
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 58);
+    assert.equal(tr.b.getOnlyElement(sel).index, 58);
   });
 
   test('checkAddClosestEventToSelection', function() {
@@ -267,8 +261,7 @@
 
     var sel = new EventSet();
     series.addClosestEventToSelection(-40, 11, -0.5, 0.5, sel);
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 0);
+    assert.equal(tr.b.getOnlyElement(sel).index, 0);
 
     // Between two points.
     var sel = new EventSet();
@@ -277,8 +270,7 @@
 
     var sel = new EventSet();
     series.addClosestEventToSelection(0.4, 0.4, -0.5, 0.5, sel);
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 30);
+    assert.equal(tr.b.getOnlyElement(sel).index, 30);
 
     // Right of last point.
     var sel = new EventSet();
@@ -287,8 +279,7 @@
 
     var sel = new EventSet();
     series.addClosestEventToSelection(40, 12, -0.5, 0.5, sel);
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0].index, 59);
+    assert.equal(tr.b.getOnlyElement(sel).index, 59);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/ui/tracks/chart_track_test.html b/catapult/tracing/tracing/ui/tracks/chart_track_test.html
index 1671218..e7dfbb0 100644
--- a/catapult/tracing/tracing/ui/tracks/chart_track_test.html
+++ b/catapult/tracing/tracing/ui/tracks/chart_track_test.html
@@ -167,9 +167,10 @@
     track.addIntersectingEventsInRangeToSelectionInWorldSpace(
         -1.1, -0.7, 0.01, sel);
     assert.lengthOf(sel, 3);
-    assert.equal(sel[0], track.series[0].points[1].modelItem);
-    assert.equal(sel[1], track.series[1].points[1].modelItem);
-    assert.equal(sel[2], track.series[2].points[3].modelItem);
+    var iterator = sel[Symbol.iterator]();
+    assert.equal(iterator.next().value, track.series[0].points[1].modelItem);
+    assert.equal(iterator.next().value, track.series[1].points[1].modelItem);
+    assert.equal(iterator.next().value, track.series[2].points[3].modelItem);
   });
 
   test('checkaddEventNearToProvidedEventToSelection', function() {
@@ -185,8 +186,7 @@
     var sel = new EventSet();
     assert.isTrue(track.addEventNearToProvidedEventToSelection(
         track.series[1].points[1].modelItem, 1, sel));
-    assert.lengthOf(sel, 1);
-    assert.equal(sel[0], track.series[1].points[2].modelItem);
+    assert.equal(tr.b.getOnlyElement(sel), track.series[1].points[2].modelItem);
   });
 
   test('checkAddClosestEventToSelection', function() {
@@ -195,8 +195,9 @@
     var sel = new EventSet();
     track.addClosestEventToSelection(-0.8, 0.4, 0.5, 1.5, sel);
     assert.lengthOf(sel, 2);
-    assert.equal(sel[0], track.series[0].points[2].modelItem);
-    assert.equal(sel[1], track.series[2].points[4].modelItem);
+    var iterator = sel[Symbol.iterator]();
+    assert.equal(iterator.next().value, track.series[0].points[2].modelItem);
+    assert.equal(iterator.next().value, track.series[2].points[4].modelItem);
   });
 
   test('checkAutoSetAllAxes', function() {
diff --git a/catapult/tracing/tracing/ui/tracks/power_series_track.html b/catapult/tracing/tracing/ui/tracks/power_series_track.html
index ef38a44..c650bda 100644
--- a/catapult/tracing/tracing/ui/tracks/power_series_track.html
+++ b/catapult/tracing/tracing/ui/tracks/power_series_track.html
@@ -65,7 +65,7 @@
 
       var axis = new tr.ui.tracks.ChartAxis(0, undefined);
       var pts = this.powerSeries_.samples.map(function(smpl) {
-        return new tr.ui.tracks.ChartPoint(smpl, smpl.start, smpl.power);
+        return new tr.ui.tracks.ChartPoint(smpl, smpl.start, smpl.powerInW);
       });
       var renderingConfig = {
         chartType: tr.ui.tracks.ChartSeriesType.AREA,
diff --git a/catapult/tracing/tracing/ui/tracks/rect_track_test.html b/catapult/tracing/tracing/ui/tracks/rect_track_test.html
index 1699588..f6d3383 100644
--- a/catapult/tracing/tracing/ui/tracks/rect_track_test.html
+++ b/catapult/tracing/tracing/ui/tracks/rect_track_test.html
@@ -309,27 +309,30 @@
 
     // Select to the right of B.
     var selRight = new EventSet();
-    ret = track.addEventNearToProvidedEventToSelection(sel[0], 1, selRight);
+    ret = track.addEventNearToProvidedEventToSelection(
+        tr.b.getFirstElement(sel), 1, selRight);
     assert.isTrue(ret);
-    assert.equal(track.rects[2].modelItem, selRight[0]);
+    assert.equal(track.rects[2].modelItem, tr.b.getFirstElement(selRight));
 
     // Select to the right of the 2nd b.
     var selRight2 = new EventSet();
-    ret = track.addEventNearToProvidedEventToSelection(sel[0], 2, selRight2);
+    ret = track.addEventNearToProvidedEventToSelection(
+        tr.b.getFirstElement(sel), 2, selRight2);
     assert.isTrue(ret);
-    assert.equal(track.rects[3].modelItem, selRight2[0]);
+    assert.equal(track.rects[3].modelItem, tr.b.getFirstElement(selRight2));
 
     // Select to 2 to the right of the 2nd b.
     var selRightOfRight = new EventSet();
     ret = track.addEventNearToProvidedEventToSelection(
-        selRight[0], 1, selRightOfRight);
+        tr.b.getFirstElement(selRight), 1, selRightOfRight);
     assert.isTrue(ret);
-    assert.equal(track.rects[3].modelItem, selRightOfRight[0]);
+    assert.equal(track.rects[3].modelItem,
+        tr.b.getFirstElement(selRightOfRight));
 
     // Select to the right of the rightmost slice.
     var selNone = new EventSet();
     ret = track.addEventNearToProvidedEventToSelection(
-        selRightOfRight[0], 1, selNone);
+        tr.b.getFirstElement(selRightOfRight), 1, selNone);
     assert.isFalse(ret);
     assert.equal(0, selNone.length);
 
@@ -340,7 +343,8 @@
     var ret;
 
     selNone = new EventSet();
-    ret = track.addEventNearToProvidedEventToSelection(sel[0], -1, selNone);
+    ret = track.addEventNearToProvidedEventToSelection(
+        tr.b.getFirstElement(sel), -1, selNone);
     assert.isFalse(ret);
     assert.equal(0, selNone.length);
   });
diff --git a/catapult/tracing/tracing/value/diagnostics/breakdown.html b/catapult/tracing/tracing/value/diagnostics/breakdown.html
new file mode 100644
index 0000000..b963a5d
--- /dev/null
+++ b/catapult/tracing/tracing/value/diagnostics/breakdown.html
@@ -0,0 +1,73 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/value/diagnostics/related_value_map.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.v.d', function() {
+  class Breakdown extends tr.v.d.Diagnostic {
+    constructor() {
+      super();
+      this.values_ = new Map();
+      this.colorScheme = undefined;
+    }
+
+    /**
+     * Add a Value by an explicit name to this map.
+     *
+     * @param {string} name
+     * @param {!(tr.v.d.ValueRef|tr.v.Value)} value
+     */
+    set(name, value) {
+      if (typeof name !== 'string' ||
+          typeof value !== 'number') {
+        throw new Error('Breakdown maps from strings to numbers');
+      }
+      this.values_.set(name, value);
+    }
+
+    /**
+     * @param {string} name
+     * @return {number}
+     */
+    get(name) {
+      return this.values_.get(name) || 0;
+    }
+
+    *[Symbol.iterator]() {
+      for (var pair of this.values_)
+        yield pair;
+    }
+
+    asDictInto_(d) {
+      d.values = {};
+      for (var [name, value] of this)
+        d.values[name] = value;
+      if (this.colorScheme)
+        d.colorScheme = this.colorScheme;
+    }
+
+    static fromDict(d) {
+      var breakdown = new Breakdown();
+      tr.b.iterItems(d.values, (name, value) => breakdown.set(name, value));
+      if (d.colorScheme)
+        breakdown.colorScheme = d.colorScheme;
+      return breakdown;
+    }
+  }
+
+  tr.v.d.Diagnostic.register(Breakdown, {
+    elementName: 'tr-v-ui-breakdown-span'
+  });
+
+  return {
+    Breakdown: Breakdown
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/composition.html b/catapult/tracing/tracing/value/diagnostics/composition.html
deleted file mode 100644
index d594fc1..0000000
--- a/catapult/tracing/tracing/value/diagnostics/composition.html
+++ /dev/null
@@ -1,121 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2016 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/value/diagnostics/related_value_map.html">
-
-<script>
-'use strict';
-
-tr.exportTo('tr.v.d', function() {
-  /**
-   * Composition encapsulates an additive relationship between NumericValues:
-   * the Value that contains this Composition diagnostic is composed of the
-   * Values referenced by this Composition diagnostic. Composition is a
-   * "breakdown" of its containing Value into its contained Values. This
-   * additive relationship can apply to groups of other things besides Events,
-   * such as memory allocations. Compositions over groups of Events is expected
-   * to be the most common way of building Compositions, though it is not the
-   * only way. See buildFromEvents() for an example of how to build a
-   * Composition from an EventSet and a grouping function.
-   *
-   * @constructor
-   */
-  function Composition() {
-    tr.v.d.RelatedValueMap.call(this);
-  }
-
-  /**
-   * Build a Composition and its NumericValues from |events|. Group events using
-   * |categoryForEvent|. Add the NumericValues to |values|. NumericValues' names
-   * are prefixed with |namePrefix|. Numerics are built by |numericBuilder|. The
-   * Numeric sample for each Event is derived from |opt_sampleForEvent|, which
-   * defaults to event.cpuSelfTime. The caller must add the result Composition
-   * to their Value's diagnostics.
-   *
-   * @param {!tr.v.ValueSet} values
-   * @param {string} namePrefix
-   * @param {!tr.model.EventSet} events
-   * @param {!tr.v.NumericBuilder} numericBuilder
-   * @param {!function(!tr.model.Event):string} categoryForEvent
-   * @param {!function(!tr.model.Event):number=} opt_sampleForEvent
-   * @param {*=} opt_this
-   * @return {!Composition}
-   */
-  Composition.buildFromEvents = function(
-      values, namePrefix, events, numericBuilder, categoryForEvent,
-      opt_sampleForEvent, opt_this) {
-    var sampleForEvent = opt_sampleForEvent || ((event) => event.cpuSelfTime);
-
-    var composition = new Composition();
-    for (var event of events) {
-      var sample = sampleForEvent.call(opt_this, event);
-      if (sample === undefined)
-        continue;
-
-      var eventCategory = categoryForEvent.call(opt_this, event);
-      var value = composition.get(eventCategory);
-      if (value === undefined) {
-        value = new tr.v.NumericValue(
-            namePrefix + eventCategory, numericBuilder.build());
-        values.addValue(value);
-        composition.set(eventCategory, value);
-      }
-
-      value.numeric.add(
-          sample,
-          new tr.v.d.DiagnosticMap(
-              {relatedEvents: new tr.v.d.RelatedEventSet([event])}));
-    }
-    return composition;
-  };
-
-  Composition.prototype = {
-    __proto__: tr.v.d.RelatedValueMap.prototype,
-
-    /**
-     * Add a Value by an explicit name to this map.
-     *
-     * @param {string} name
-     * @param {!(tr.v.d.ValueRef|tr.v.Value)} value
-     */
-    set: function(name, value) {
-      if (!(value instanceof tr.v.d.ValueRef)) {
-        if (!(value instanceof tr.v.NumericValue))
-          throw new Error('Composition can only contain NumericValues');
-
-        if (value.name.indexOf(name) !== (value.name.length - name.length))
-          throw new Error('Composition name must be a suffix of value.name');
-
-        var existingValues = this.values;
-        if ((existingValues.length > 0) &&
-            (value.numeric.unit !== existingValues[0].numeric.unit)) {
-          throw new Error('Units mismatch', existingValues[0].numeric.unit,
-                          value.numeric.unit);
-        }
-      }
-
-      tr.v.d.RelatedValueMap.prototype.set.call(this, name, value);
-    }
-  };
-
-  Composition.fromDict = function(d) {
-    var composition = new Composition();
-    tr.b.iterItems(d.values, function(name, guid) {
-      composition.set(name, new tr.v.d.ValueRef(guid));
-    });
-    return composition;
-  };
-
-  tr.v.d.Diagnostic.register(Composition, {
-    elementName: 'tr-v-ui-composition-span'
-  });
-
-  return {
-    Composition: Composition
-  };
-});
-</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/composition_test.html b/catapult/tracing/tracing/value/diagnostics/composition_test.html
deleted file mode 100644
index f14f98b..0000000
--- a/catapult/tracing/tracing/value/diagnostics/composition_test.html
+++ /dev/null
@@ -1,88 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2016 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/extras/chrome/chrome_user_friendly_category_driver.html">
-<link rel="import" href="/tracing/model/event_set.html">
-<link rel="import" href="/tracing/value/diagnostics/composition.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/value.html">
-<link rel="import" href="/tracing/value/value_set.html">
-
-<script>
-'use strict';
-
-tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 10),
-      10);
-
-  test('build', function() {
-    var values = new tr.v.ValueSet();
-    var events = new tr.model.EventSet([
-      {
-        guid: 9,
-        title: 'V8.Execute',
-        cpuSelfTime: 1,
-        stableId: '11.11'
-      },
-      {
-        guid: 10,
-        title: 'V8.Execute',
-        cpuSelfTime: 2,
-        stableId: '22.22'
-      },
-      {
-        guid: 11,
-        title: 'UpdateLayoutTree',
-        cpuSelfTime: 3,
-        stableId: '33.33'
-      },
-      {
-        guid: 12,
-        title: 'UpdateLayoutTree',
-        cpuSelfTime: undefined,
-        stableId: '44.44'
-      }
-    ]);
-
-    var composition = tr.v.d.Composition.buildFromEvents(
-        values, 'foo-', events, TEST_NUMERIC_BUILDER,
-        tr.e.chrome.ChromeUserFriendlyCategoryDriver.fromEvent);
-
-    assert.lengthOf(composition.values, 2);
-    var scriptValue = values.getValuesWithName('foo-script')[0];
-    assert.instanceOf(scriptValue, tr.v.NumericValue);
-    assert.strictEqual(scriptValue, composition.get('script_execute'));
-    assert.lengthOf(scriptValue.numeric.centralBins[1].diagnosticMaps, 1);
-    assert.lengthOf(
-        scriptValue.numeric.centralBins[1].diagnosticMaps[0]
-        .get('relatedEvents').events, 1);
-    assert.strictEqual(events[0],
-        scriptValue.numeric.centralBins[1].diagnosticMaps[0]
-        .get('relatedEvents').events[0]);
-    assert.lengthOf(scriptValue.numeric.centralBins[2].diagnosticMaps, 1);
-    assert.lengthOf(
-        scriptValue.numeric.centralBins[2].diagnosticMaps[0]
-        .get('relatedEvents').events, 1);
-    assert.strictEqual(
-        events[1],
-        scriptValue.numeric.centralBins[2].diagnosticMaps[0]
-        .get('relatedEvents').events[0]);
-
-    var styleValue = values.getValuesWithName('foo-style')[0];
-    assert.instanceOf(styleValue, tr.v.NumericValue);
-    assert.strictEqual(styleValue, composition.get('style'));
-    assert.lengthOf(styleValue.numeric.centralBins[3].diagnosticMaps, 1);
-    assert.lengthOf(
-        styleValue.numeric.centralBins[3].diagnosticMaps[0]
-        .get('relatedEvents').events, 1);
-    assert.strictEqual(events[2],
-        styleValue.numeric.centralBins[3].diagnosticMaps[0]
-        .get('relatedEvents').events[0]);
-  });
-});
-</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/diagnostic.html b/catapult/tracing/tracing/value/diagnostics/diagnostic.html
index 2b65454..b111453 100644
--- a/catapult/tracing/tracing/value/diagnostics/diagnostic.html
+++ b/catapult/tracing/tracing/value/diagnostics/diagnostic.html
@@ -11,21 +11,25 @@
 'use strict';
 
 tr.exportTo('tr.v.d', function() {
-  /** @constructor */
-  function Diagnostic() {
-  }
-
-  Diagnostic.prototype = {
-    asDict: function() {
+  class Diagnostic {
+    asDict() {
       var result = {type: this.constructor.name};
       this.asDictInto_(result);
       return result;
-    },
+    }
 
-    asDictInto_: function(d) {
+    asDictInto_(d) {
       throw new Error('Abstract virtual method');
     }
-  };
+
+    static fromDict(d) {
+      var typeInfo = Diagnostic.findTypeInfoWithName(d.type);
+      if (!typeInfo)
+        throw new Error('Unrecognized diagnostic type: ' + d.type);
+
+      return typeInfo.constructor.fromDict(d);
+    }
+  }
 
   var options = new tr.b.ExtensionRegistryOptions(tr.b.BASIC_REGISTRY_MODE);
   options.defaultMetadata = {};
@@ -35,24 +39,12 @@
   Diagnostic.addEventListener('will-register', function(e) {
     var constructor = e.typeInfo.constructor;
     if (!(constructor.fromDict instanceof Function) ||
+        (constructor.fromDict === Diagnostic.fromDict) ||
         (constructor.fromDict.length !== 1)) {
       throw new Error('Diagnostics must define fromDict(d)');
     }
-
-    // When subclasses set their prototype to an entirely new object and omit
-    // their constructor, then it becomes impossible for asDict() to find their
-    // constructor name. Add it back here so that asDict() can find it.
-    constructor.prototype.constructor = constructor;
   });
 
-  Diagnostic.fromDict = function(d) {
-    var typeInfo = Diagnostic.findTypeInfoWithName(d.type);
-    if (!typeInfo)
-      throw new Error('Unrecognized diagnostic type: ' + d.type);
-
-    return typeInfo.constructor.fromDict(d);
-  };
-
   return {
     Diagnostic: Diagnostic
   };
diff --git a/catapult/tracing/tracing/value/diagnostics/diagnostic_map.html b/catapult/tracing/tracing/value/diagnostics/diagnostic_map.html
index 8a0e397..7287d67 100644
--- a/catapult/tracing/tracing/value/diagnostics/diagnostic_map.html
+++ b/catapult/tracing/tracing/value/diagnostics/diagnostic_map.html
@@ -11,10 +11,11 @@
   Diagnostic registry.
 -->
 
-<link rel="import" href="/tracing/value/diagnostics/composition.html">
+<link rel="import" href="/tracing/value/diagnostics/breakdown.html">
 <link rel="import" href="/tracing/value/diagnostics/generic.html">
 <link rel="import" href="/tracing/value/diagnostics/iteration_info.html">
 <link rel="import" href="/tracing/value/diagnostics/related_event_set.html">
+<link rel="import" href="/tracing/value/diagnostics/related_histogram_breakdown.html">
 <link rel="import" href="/tracing/value/diagnostics/related_value_map.html">
 <link rel="import" href="/tracing/value/diagnostics/related_value_set.html">
 
@@ -22,85 +23,56 @@
 'use strict';
 
 tr.exportTo('tr.v.d', function() {
-  /** @constructor */
-  function DiagnosticMap(opt_diagnosticsByName) {
-    if (opt_diagnosticsByName !== undefined)
-      return DiagnosticMap.fromObject(opt_diagnosticsByName);
-
-    this.diagnosticsByName_ = {};
-  }
-
-  DiagnosticMap.prototype = {
+  class DiagnosticMap extends Map {
     /**
      * Add a new Diagnostic to this map.
      *
      * @param {string} name
      * @param {!tr.v.d.Diagnostic} diagnostic
      */
-    add: function(name, diagnostic) {
-      if (!(diagnostic instanceof tr.v.d.Diagnostic))
-        throw new Error('Must be instanceof Diagnostic: ' + diagnostic);
-
+    set(name, diagnostic) {
       if (typeof(name) !== 'string')
         throw new Error('name must be string, not ' + name);
 
-      if (this.diagnosticsByName_[name])
-        throw new Error('Attempt to add duplicate diagnostic ' + name);
+      if (!(diagnostic instanceof tr.v.d.Diagnostic))
+        throw new Error('Must be instanceof Diagnostic: ' + diagnostic);
 
-      this.diagnosticsByName_[name] = diagnostic;
-    },
+      Map.prototype.set.call(this, name, diagnostic);
+    }
 
     /**
      * Add Diagnostics from a dictionary of dictionaries.
      *
      * @param {Object} dict
      */
-    addDicts: function(dict) {
+    addDicts(dict) {
       tr.b.iterItems(dict, function(name, diagnosticDict) {
-        this.add(name, tr.v.d.Diagnostic.fromDict(diagnosticDict));
+        this.set(name, tr.v.d.Diagnostic.fromDict(diagnosticDict));
       }, this);
-    },
+    }
 
-    /**
-     * @param {string} name
-     * @return {tr.v.d.Diagnostic}
-     */
-    get: function(name) {
-      return this.diagnosticsByName_[name];
-    },
-
-    /**
-     * Iterate over this map's key-value-pairs.
-     *
-     * @param {function(string, tr.v.d.Diagnostic)} callback
-     * @param {Object=} opt_this
-     */
-    forEach: function(callback, opt_this) {
-      tr.b.iterItems(this.diagnosticsByName_, callback, opt_this || this);
-    },
-
-    asDict: function() {
+    asDict() {
       var dict = {};
-      this.forEach(function(name, diagnostic) {
+      for (var [name, diagnostic] of this) {
         dict[name] = diagnostic.asDict();
-      });
+      }
       return dict;
     }
-  };
 
-  DiagnosticMap.fromDict = function(d) {
-    var diagnostics = new DiagnosticMap();
-    diagnostics.addDicts(d);
-    return diagnostics;
-  };
+    static fromDict(d) {
+      var diagnostics = new DiagnosticMap();
+      diagnostics.addDicts(d);
+      return diagnostics;
+    }
 
-  DiagnosticMap.fromObject = function(obj) {
-    var diagnostics = new DiagnosticMap();
-    tr.b.iterItems(obj, function(name, diagnostic) {
-      diagnostics.add(name, diagnostic);
-    });
-    return diagnostics;
-  };
+    static fromObject(obj) {
+      var diagnostics = new DiagnosticMap();
+      tr.b.iterItems(obj, function(name, diagnostic) {
+        diagnostics.set(name, diagnostic);
+      });
+      return diagnostics;
+    }
+  }
 
   return {
     DiagnosticMap: DiagnosticMap
diff --git a/catapult/tracing/tracing/value/diagnostics/diagnostic_map_test.html b/catapult/tracing/tracing/value/diagnostics/diagnostic_map_test.html
new file mode 100644
index 0000000..8b7210e
--- /dev/null
+++ b/catapult/tracing/tracing/value/diagnostics/diagnostic_map_test.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/core/test_utils.html">
+<link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  test('clone', function() {
+    var diagnostics = new tr.v.d.DiagnosticMap();
+    diagnostics.set('generic', new tr.v.d.Generic({a: ['b', 3]}));
+    diagnostics.set('breakdown', new tr.v.d.Breakdown());
+    diagnostics.set('events', new tr.v.d.RelatedEventSet());
+    diagnostics.set('value set', new tr.v.d.RelatedValueSet());
+    diagnostics.set('value map', new tr.v.d.RelatedValueMap());
+    diagnostics.set('histogram breakdown',
+        new tr.v.d.RelatedHistogramBreakdown());
+
+    var clone = tr.v.d.DiagnosticMap.fromDict(diagnostics.asDict());
+    assert.instanceOf(clone.get('generic'), tr.v.d.Generic);
+    assert.deepEqual(clone.get('generic').value,
+        diagnostics.get('generic').value);
+    assert.instanceOf(clone.get('breakdown'), tr.v.d.Breakdown);
+    assert.instanceOf(clone.get('events'), tr.v.d.RelatedEventSet);
+    assert.instanceOf(clone.get('value set'), tr.v.d.RelatedValueSet);
+    assert.instanceOf(clone.get('value map'), tr.v.d.RelatedValueMap);
+    assert.instanceOf(clone.get('histogram breakdown'),
+        tr.v.d.RelatedHistogramBreakdown);
+  });
+
+  test('requireFromDict', function() {
+    class MissingFromDict extends tr.v.d.Diagnostic { }
+    assert.throws(() => tr.v.d.Diagnostic.register(MissingFromDict));
+
+    class InvalidFromDict extends tr.v.d.Diagnostic {
+      static fromDict() {
+      }
+    }
+    assert.throws(() => tr.v.d.Diagnostic.register(InvalidFromDict));
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/event_ref.html b/catapult/tracing/tracing/value/diagnostics/event_ref.html
new file mode 100644
index 0000000..3df5f31
--- /dev/null
+++ b/catapult/tracing/tracing/value/diagnostics/event_ref.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/guid.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.v.d', function() {
+  /**
+   * Similar to ValueRef, this is a placeholder in case the referenced Event
+   * isn't available in memory to point to directly.
+   */
+  class EventRef {
+    /**
+     * @param {!Object} event
+     * @param {string} event.stableId
+     * @param {string} event.title
+     * @param {number} event.start
+     * @param {number} event.duration
+     */
+    constructor(event) {
+      this.stableId = event.stableId;
+      this.title = event.title;
+      this.start = event.start;
+      this.duration = event.duration;
+      this.end = this.start + this.duration;
+
+      // tr.v.d.RelatedEventSet identifies events using stableId, but
+      // tr.model.EventSet uses guid.
+      this.guid = tr.b.GUID.allocateSimple();
+    }
+  }
+
+  return {
+    EventRef: EventRef
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/generic.html b/catapult/tracing/tracing/value/diagnostics/generic.html
index 7ac1979..fae4fdd 100644
--- a/catapult/tracing/tracing/value/diagnostics/generic.html
+++ b/catapult/tracing/tracing/value/diagnostics/generic.html
@@ -15,25 +15,24 @@
    * A Generic diagnostic can contain any Plain-Ol'-Data objects that can be
    * serialized using JSON.stringify(): null, boolean, number, string, array,
    * dict. Generic diagnostics cannot contain tr.v.Value objects!
-   *
-   * @constructor
-   * @param {*} value
    */
-  function Generic(value) {
-    this.value = value;
-  }
+  class Generic extends tr.v.d.Diagnostic {
+    /**
+     * @param {*} value
+     */
+    constructor(value) {
+      super();
+      this.value = value;
+    }
 
-  Generic.prototype = {
-    __proto__: tr.v.d.Diagnostic.prototype,
-
-    asDictInto_: function(d) {
+    asDictInto_(d) {
       d.value = this.value;
     }
-  };
 
-  Generic.fromDict = function(d) {
-    return new Generic(d.value);
-  };
+    static fromDict(d) {
+      return new Generic(d.value);
+    }
+  }
 
   tr.v.d.Diagnostic.register(Generic, {
     elementName: 'tr-v-ui-generic-diagnostic-span'
diff --git a/catapult/tracing/tracing/value/diagnostics/iteration_info.html b/catapult/tracing/tracing/value/diagnostics/iteration_info.html
index b972c93..582cf6c 100644
--- a/catapult/tracing/tracing/value/diagnostics/iteration_info.html
+++ b/catapult/tracing/tracing/value/diagnostics/iteration_info.html
@@ -12,27 +12,181 @@
 'use strict';
 
 tr.exportTo('tr.v.d', function() {
-  /**
-   * @constructor
-   * @param {!Object} info
-   * @param {string} info.benchmarkName
-   * @param {undefined|string} info.label
-   * @param {undefined|!Object} info.storyGroupingKeys
-   * @param {undefined|string} info.storyDisplayName
-   * @param {string} info.storyUrl
-   * @param {number} info.storyRepeatCounter
-   * @param {number} info.storysetRepeatCounter
-   * @param {number} info.benchmarkStartMs Milliseconds since Unix epoch.
-   */
-  function IterationInfo(info) {
-    this.benchmarkName_ = info.benchmarkName;
-    this.benchmarkStart_ = new Date(info.benchmarkStartMs);
-    this.label_ = info.label;
-    this.storyDisplayName_ = info.storyDisplayName;
-    this.storyGroupingKeys_ = info.storyGroupingKeys;
-    this.storyRepeatCounter_ = info.storyRepeatCounter;
-    this.storyUrl_ = info.storyUrl;
-    this.storysetRepeatCounter_ = info.storysetRepeatCounter;
+  class IterationInfo extends tr.v.d.Diagnostic {
+    constructor(opt_info) {
+      super();
+
+      this.benchmarkName_ = '';
+      this.benchmarkStart_ = undefined;
+      this.label_ = '';
+      this.osVersion_ = '';
+      this.productVersion_ = '';
+      this.storyDisplayName_ = '';
+      this.storyGroupingKeys_ = {};
+      this.storyRepeatCounter_ = 0;
+      this.storyUrl_ = '';
+      this.storysetRepeatCounter_ = 0;
+
+      if (opt_info)
+        this.addInfo(opt_info);
+    }
+
+    /**
+     * @param {!Object} info
+     * @param {string} info.benchmarkName
+     * @param {undefined|string} info.label
+     * @param {undefined|!Object} info.storyGroupingKeys
+     * @param {undefined|string} info.storyDisplayName
+     * @param {undefined|string} info.storyUrl
+     * @param {undefined|number} info.storyRepeatCounter
+     * @param {number} info.storysetRepeatCounter
+     * @param {number} info.benchmarkStartMs Milliseconds since Unix epoch.
+     */
+    addInfo(info) {
+      // IterationInfo from Telemetry
+      if (info.benchmarkName)
+        this.benchmarkName_ = info.benchmarkName;
+      if (info.benchmarkStartMs)
+        this.benchmarkStart_ = new Date(info.benchmarkStartMs);
+      if (info.label)
+        this.label_ = info.label;
+      if (info.storyDisplayName)
+        this.storyDisplayName_ = info.storyDisplayName;
+      if (info.storyGroupingKeys)
+        this.storyGroupingKeys_ = info.storyGroupingKeys;
+      if (info.storyRepeatCounter)
+        this.storyRepeatCounter_ = info.storyRepeatCounter;
+      if (info.storyUrl)
+        this.storyUrl_ = info.storyUrl;
+      if (info.storysetRepeatCounter)
+        this.storysetRepeatCounter_ = info.storysetRepeatCounter;
+
+      // From platform tracing metadata
+      if (info['os-version'])
+        this.osVersion_ = info['os-version'];
+      if (info['product-version'])
+        this.productVersion_ = info['product-version'];
+    }
+
+    addToValue(value) {
+      value.diagnostics.set(IterationInfo.NAME, this);
+    }
+
+    /**
+     * @param {!tr.v.Value} value
+     * @return {(undefined|!tr.v.d.IterationInfo)}
+     */
+    static getFromValue(value) {
+      return value.diagnostics.get(IterationInfo.NAME);
+    }
+
+    asDictInto_(d) {
+      d.benchmarkName = this.benchmarkName;
+      if (this.benchmarkStart)
+        d.benchmarkStartMs = this.benchmarkStart.getTime();
+      d.label = this.label;
+      d.storyDisplayName = this.storyDisplayName;
+      d.storyGroupingKeys = this.storyGroupingKeys;
+      d.storyRepeatCounter = this.storyRepeatCounter;
+      d.storyUrl = this.storyUrl;
+      d.storysetRepeatCounter = this.storysetRepeatCounter;
+      d['os-version'] = this.osVersion;
+      d['product-version'] = this.productVersion;
+    }
+
+    static fromDict(d) {
+      var info = new IterationInfo();
+      info.addInfo(d);
+      return info;
+    }
+
+    get displayLabel() {
+      if (this.label)
+        return this.label;
+      return this.benchmarkName + ' ' + this.benchmarkStartString;
+    }
+
+    get osVersion() {
+      return this.osVersion_;
+    }
+
+    get productVersion() {
+      return this.productVersion_;
+    }
+
+    get benchmarkName() {
+      return this.benchmarkName_;
+    }
+
+    get label() {
+      return this.label_;
+    }
+
+    get storyGroupingKeys() {
+      return this.storyGroupingKeys_;
+    }
+
+    get storyDisplayName() {
+      return this.storyDisplayName_;
+    }
+
+    get storyUrl() {
+      return this.storyUrl_;
+    }
+
+    get storyRepeatCounter() {
+      return this.storyRepeatCounter_;
+    }
+
+    get storyRepeatCounterLabel() {
+      return 'story repeat ' + this.storyRepeatCounter;
+    }
+
+    get storysetRepeatCounter() {
+      return this.storysetRepeatCounter_;
+    }
+
+    get storysetRepeatCounterLabel() {
+      return 'storyset repeat ' + this.storysetRepeatCounter;
+    }
+
+    get benchmarkStart() {
+      return this.benchmarkStart_;
+    }
+
+    get benchmarkStartString() {
+      if (this.benchmarkStart_ === undefined)
+        return '';
+      return tr.b.formatDate(this.benchmarkStart);
+    }
+
+    /**
+     * @param {!tr.v.Value} value
+     * @param {string} fieldName
+     * @param {*} defaultValue
+     * @return {*}
+     */
+    static getField(value, fieldName, defaultValue) {
+      var iteration = tr.v.d.IterationInfo.getFromValue(value);
+      if (!(iteration instanceof tr.v.d.IterationInfo) ||
+          !iteration[fieldName]) {
+        return defaultValue;
+      }
+      return iteration[fieldName];
+    }
+
+    /**
+     * @param {!tr.v.Value} value
+     * @param {string} storyGroupingKey
+     * @return {string}
+     */
+    static getStoryGroupingKeyLabel(value, storyGroupingKey) {
+      var iteration = tr.v.d.IterationInfo.getFromValue(value);
+      if (!(iteration instanceof tr.v.d.IterationInfo))
+        return storyGroupingKey + ': undefined';
+      return storyGroupingKey + ': ' +
+        iteration.storyGroupingKeys[storyGroupingKey];
+    }
   }
 
   // Diagnostics generally do not need a constant name or getFromValue().
@@ -44,87 +198,6 @@
   // their DiagnosticMap.
   IterationInfo.NAME = 'iteration';
 
-  /**
-   * @param {!tr.v.Value} value
-   * @return {(undefined|!IterationInfo)}
-   */
-  IterationInfo.getFromValue = function(value) {
-    return value.diagnostics.get(IterationInfo.NAME);
-  };
-
-  IterationInfo.prototype = {
-    __proto__: tr.v.d.Diagnostic.prototype,
-
-    addToValue: function(value) {
-      value.diagnostics.add(IterationInfo.NAME, this);
-    },
-
-    asDictInto_: function(d) {
-      d.benchmarkName = this.benchmarkName;
-      d.benchmarkStartMs = this.benchmarkStart.getTime();
-      d.label = this.label;
-      d.storyDisplayName = this.storyDisplayName;
-      d.storyGroupingKeys = this.storyGroupingKeys;
-      d.storyRepeatCounter = this.storyRepeatCounter;
-      d.storyUrl = this.storyUrl;
-      d.storysetRepeatCounter = this.storysetRepeatCounter;
-    },
-
-    get displayLabel() {
-      if (this.label)
-        return this.label;
-      return this.benchmarkName + ' ' + this.benchmarkStartString;
-    },
-
-    get benchmarkName() {
-      return this.benchmarkName_;
-    },
-
-    get label() {
-      return this.label_;
-    },
-
-    get storyGroupingKeys() {
-      return this.storyGroupingKeys_;
-    },
-
-    get storyDisplayName() {
-      return this.storyDisplayName_;
-    },
-
-    get storyUrl() {
-      return this.storyUrl_;
-    },
-
-    get storyRepeatCounter() {
-      return this.storyRepeatCounter_;
-    },
-
-    get storyRepeatCounterLabel() {
-      return 'story repeat ' + this.storyRepeatCounter;
-    },
-
-    get storysetRepeatCounter() {
-      return this.storysetRepeatCounter_;
-    },
-
-    get storysetRepeatCounterLabel() {
-      return 'storyset repeat ' + this.storysetRepeatCounter;
-    },
-
-    get benchmarkStart() {
-      return this.benchmarkStart_;
-    },
-
-    get benchmarkStartString() {
-      return tr.b.formatDate(this.benchmarkStart);
-    }
-  };
-
-  IterationInfo.fromDict = function(d) {
-    return new IterationInfo(d);
-  };
-
   tr.v.d.Diagnostic.register(IterationInfo, {
     elementName: 'tr-v-ui-iteration-info-span'
   });
diff --git a/catapult/tracing/tracing/value/diagnostics/related_event_set.html b/catapult/tracing/tracing/value/diagnostics/related_event_set.html
index 05498ce..c01ef30 100644
--- a/catapult/tracing/tracing/value/diagnostics/related_event_set.html
+++ b/catapult/tracing/tracing/value/diagnostics/related_event_set.html
@@ -7,71 +7,60 @@
 
 <link rel="import" href="/tracing/model/event_set.html">
 <link rel="import" href="/tracing/value/diagnostics/diagnostic.html">
+<link rel="import" href="/tracing/value/diagnostics/event_ref.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.v.d', function() {
   /**
-   * Similar to ValueRef, this is a placeholder in case the referenced Event
-   * isn't available in memory to point to directly.
-   *
-   * @constructor
-   * @param {!Object} event
-   * @param {string} event.stableId
-   * @param {string} event.title
-   * @param {number} event.start
-   * @param {number} event.duration
+   * @typedef {!(tr.v.d.EventRef|tr.model.Event)} EventLike
    */
-  function EventRef(event) {
-    this.stableId = event.stableId;
-    this.title = event.title;
-    this.start = event.start;
-    this.duration = event.duration;
-    this.end = this.start + this.duration;
-
-    // tr.v.d.RelatedEventSet identifies events using stableId, but
-    // tr.model.EventSet uses guid.
-    this.guid = tr.b.GUID.allocateSimple();
-  }
 
   /**
    * A RelatedEventSet diagnostic contains references to Events
-   *
-   * @constructor
-   * @param {(!tr.model.EventSet|Array.<!(EventRef|tr.model.Event)>|!EventRef|!tr.model.Event)=} opt_events
    */
-  function RelatedEventSet(opt_events) {
-    this.eventsByStableId_ = {};
-
-    if (opt_events) {
-      if (opt_events instanceof tr.model.EventSet ||
-          opt_events instanceof Array)
-        opt_events.forEach(this.push.bind(this));
-      else
-        this.push(opt_events);
+  class RelatedEventSet extends tr.v.d.Diagnostic {
+    /**
+     * @param {!(tr.model.EventSet|Array.<EventLike>|EventLike)=} opt_events
+     */
+    constructor(opt_events) {
+      super();
+      this.eventsByStableId_ = new Map();
+      if (opt_events) {
+        if (opt_events instanceof tr.model.EventSet ||
+            opt_events instanceof Array) {
+          for (var event of opt_events)
+            this.add(event);
+        } else {
+          this.add(opt_events);
+        }
+      }
     }
-  }
-
-  RelatedEventSet.prototype = {
-    __proto__: tr.v.d.Diagnostic.prototype,
 
     /**
-     * Add an event to this set.
-     *
-     * @param {!(EventRef|tr.model.Event)} event
+     * @param {!(tr.v.d.EventRef|tr.model.Event)} event
      */
-    push: function(event) {
-      this.eventsByStableId_[event.stableId] = event;
-    },
+    add(event) {
+      this.eventsByStableId_.set(event.stableId, event);
+    }
 
     /**
-     * @return {!Array.<!(EventRef|tr.model.Event)>}
+     * @param {!(tr.v.d.EventRef|tr.model.Event)} event
+     * @return {boolean}
      */
-    get events() {
-      return new tr.model.EventSet(
-          tr.b.dictionaryValues(this.eventsByStableId_));
-    },
+    has(event) {
+      return this.eventsByStableId_.has(event.stableId);
+    }
+
+    get length() {
+      return this.eventsByStableId_.size;
+    }
+
+    *[Symbol.iterator]() {
+      for (var [stableId, event] of this.eventsByStableId_)
+        yield event;
+    }
 
     /**
      * Resolve all EventRefs into Events by finding their stableIds in |model|.
@@ -83,34 +72,36 @@
      * @param {!tr.model.Model} model
      * @param {boolean=} opt_required
      */
-    resolve: function(model, opt_required) {
-      tr.b.iterItems(this.eventsByStableId_, function(stableId, event) {
-        if (!(event instanceof EventRef))
-          return;
+    resolve(model, opt_required) {
+      for (var [stableId, event] of this.eventsByStableId_) {
+        if (!(event instanceof tr.v.d.EventRef))
+          continue;
 
         event = model.getEventByStableId(stableId);
         if (event instanceof tr.model.Event)
-          this.eventsByStableId_[stableId] = event;
+          this.eventsByStableId_.set(stableId, event);
         else if (opt_required)
-          throw new Error('Unable to find Event ' + ref.stableId);
-      }, this);
-    },
+          throw new Error('Unable to find Event ' + stableId);
+      }
+    }
 
-    asDictInto_: function(d) {
-      d.events = this.events.map(function eventAsDict(event) {
-        return {
+    asDictInto_(d) {
+      d.events = [];
+      for (var event of this) {
+        d.events.push({
           stableId: event.stableId,
           title: event.title,
           start: event.start,
           duration: event.duration
-        };
-      });
+        });
+      }
     }
-  };
 
-  RelatedEventSet.fromDict = function(d) {
-    return new RelatedEventSet(d.events.map(event => new EventRef(event)));
-  };
+    static fromDict(d) {
+      return new RelatedEventSet(d.events.map(
+          event => new tr.v.d.EventRef(event)));
+    }
+  }
 
   tr.v.d.Diagnostic.register(RelatedEventSet, {
     elementName: 'tr-v-ui-related-event-set-span'
diff --git a/catapult/tracing/tracing/value/diagnostics/related_event_set_test.html b/catapult/tracing/tracing/value/diagnostics/related_event_set_test.html
index de901b5..cc22d27 100644
--- a/catapult/tracing/tracing/value/diagnostics/related_event_set_test.html
+++ b/catapult/tracing/tracing/value/diagnostics/related_event_set_test.html
@@ -5,6 +5,7 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/core/test_utils.html">
 <link rel="import" href="/tracing/value/diagnostics/related_event_set.html">
 
@@ -26,27 +27,22 @@
     });
 
     var d = new tr.v.d.RelatedEventSet(slice);
-    assert.lengthOf(d.events, 1);
-    assert.strictEqual(d.events[0], slice);
+    assert.strictEqual(tr.b.getOnlyElement([...d]), slice);
 
     d = new tr.v.d.RelatedEventSet([slice]);
-    assert.lengthOf(d.events, 1);
-    assert.strictEqual(d.events[0], slice);
+    assert.strictEqual(tr.b.getOnlyElement([...d]), slice);
 
     d = new tr.v.d.RelatedEventSet(new tr.model.EventSet([slice]));
-    assert.lengthOf(d.events, 1);
-    assert.strictEqual(d.events[0], slice);
+    assert.strictEqual(tr.b.getOnlyElement([...d]), slice);
 
     var d2 = tr.v.d.Diagnostic.fromDict(d.asDict());
     assert.instanceOf(d2, tr.v.d.RelatedEventSet);
-    assert.lengthOf(d2.events, 1);
 
-    // Can't use assert.instanceOf() because EventRef is private.
-    assert.isFalse(d2.events[0] instanceof tr.model.Event);
+    assert.instanceOf(tr.b.getOnlyElement([...d2]), tr.v.d.EventRef);
 
     d2.resolve(model, true);
 
-    assert.strictEqual(d2.events[0], slice);
+    assert.strictEqual(tr.b.getOnlyElement([...d2]), slice);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/value/diagnostics/related_histogram_breakdown.html b/catapult/tracing/tracing/value/diagnostics/related_histogram_breakdown.html
new file mode 100644
index 0000000..fedfb12
--- /dev/null
+++ b/catapult/tracing/tracing/value/diagnostics/related_histogram_breakdown.html
@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/value/diagnostics/related_value_map.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.v.d', function() {
+  var COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER =
+    'ChromeUserFriendlyCategory';
+
+  /**
+   * RelatedHistogramBreakdown encapsulates an additive relationship between
+   * Histograms: the Histogram that contains this RelatedHistogramBreakdown
+   * diagnostic is composed of the Histograms referenced by this
+   * RelatedHistogramBreakdown diagnostic. RelatedHistogramBreakdown is a
+   * "breakdown" of its containing Histogram into its contained Histograms. This
+   * additive relationship can apply to groups of other things besides Events,
+   * such as memory allocations. RelatedHistogramBreakdowns over groups of
+   * Events is expected to be the most common way of building
+   * RelatedHistogramBreakdowns, though it is not the only way. See
+   * buildFromEvents() for an example of how to build a
+   * RelatedHistogramBreakdown from an EventSet and a grouping function.
+   */
+  class RelatedHistogramBreakdown extends tr.v.d.RelatedValueMap {
+    constructor() {
+      super();
+      this.colorScheme = undefined;
+    }
+
+    /**
+     * Add a Histogram by an explicit name to this map.
+     *
+     * @param {string} name
+     * @param {!(tr.v.d.ValueRef|tr.v.Histogram)} value
+     */
+    set(name, value) {
+      if (!(value instanceof tr.v.d.ValueRef)) {
+        if (!(value instanceof tr.v.Histogram)) {
+          throw new Error(
+              'RelatedHistogramBreakdown can only contain Histograms');
+        }
+
+        if (value.name.indexOf(name) !== (value.name.length - name.length)) {
+          throw new Error(
+              'RelatedHistogramBreakdown name must be a suffix of value.name');
+        }
+
+        if ((this.length > 0) &&
+            (value.unit !==
+             tr.b.getFirstElement(this)[1].unit)) {
+          throw new Error('Units mismatch', tr.b.getFirstElement(this)[1].unit,
+              value.unit);
+        }
+      }
+
+      tr.v.d.RelatedValueMap.prototype.set.call(this, name, value);
+    }
+
+    asDictInto_(d) {
+      tr.v.d.RelatedValueMap.prototype.asDictInto_.call(this, d);
+      if (this.colorScheme)
+        d.colorScheme = this.colorScheme;
+    }
+
+    static fromDict(d) {
+      var diagnostic = new RelatedHistogramBreakdown();
+      tr.b.iterItems(d.values, function(name, guid) {
+        diagnostic.set(name, new tr.v.d.ValueRef(guid));
+      });
+      if (d.colorScheme)
+        diagnostic.colorScheme = d.colorScheme;
+      return diagnostic;
+    }
+
+    /**
+    * Build a RelatedHistogramBreakdown and its Histograms from |events|.  Group
+    * events using |categoryForEvent|. Add the Histograms to |values|.
+    * Histograms' names are prefixed with |namePrefix|. Histograms are built
+    * with |opt_binBoundaries|. The numeric sample for each Event is derived
+    * from |opt_sampleForEvent|, which defaults to event.cpuSelfTime. The caller
+    * must add the result RelatedHistogramBreakdown to their Histogram's
+    * diagnostics.
+    *
+    * @param {!tr.v.ValueSet} values
+    * @param {string} namePrefix
+    * @param {!tr.model.EventSet} events
+    * @param {!function(!tr.model.Event):string} categoryForEvent
+    * @param {!tr.b.Unit} unit
+    * @param {!function(!tr.model.Event):number=} opt_sampleForEvent
+    * @param {!tr.v.HistogramBinBoundaries=} opt_binBoundaries
+    * @param {*=} opt_this
+    * @return {!RelatedHistogramBreakdown}
+    */
+    static buildFromEvents(values, namePrefix, events, categoryForEvent, unit,
+        opt_sampleForEvent, opt_binBoundaries, opt_this) {
+      var sampleForEvent = opt_sampleForEvent || ((event) => event.cpuSelfTime);
+
+      var diagnostic = new RelatedHistogramBreakdown();
+      for (var event of events) {
+        var sample = sampleForEvent.call(opt_this, event);
+        if (sample === undefined)
+          continue;
+
+        var eventCategory = categoryForEvent.call(opt_this, event);
+        var value = diagnostic.get(eventCategory);
+        if (value === undefined) {
+          value = new tr.v.Histogram(
+              namePrefix + eventCategory, unit, opt_binBoundaries);
+          values.addHistogram(value);
+          diagnostic.set(eventCategory, value);
+        }
+
+        value.addSample(sample,
+            {relatedEvents: new tr.v.d.RelatedEventSet([event])});
+      }
+      return diagnostic;
+    }
+  }
+
+  tr.v.d.Diagnostic.register(RelatedHistogramBreakdown, {
+    elementName: 'tr-v-ui-breakdown-span'
+  });
+
+  return {
+    COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER:
+      COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER,
+    RelatedHistogramBreakdown: RelatedHistogramBreakdown
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/related_histogram_breakdown_test.html b/catapult/tracing/tracing/value/diagnostics/related_histogram_breakdown_test.html
new file mode 100644
index 0000000..af6c4c3
--- /dev/null
+++ b/catapult/tracing/tracing/value/diagnostics/related_histogram_breakdown_test.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/extras/chrome/chrome_user_friendly_category_driver.html">
+<link rel="import" href="/tracing/model/event_set.html">
+<link rel="import" href="/tracing/value/diagnostics/related_histogram_breakdown.html">
+<link rel="import" href="/tracing/value/histogram.html">
+<link rel="import" href="/tracing/value/value_set.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  var TEST_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(0, 10, 10);
+
+  test('build', function() {
+    var values = new tr.v.ValueSet();
+    var events = new tr.model.EventSet([
+      {
+        guid: 9,
+        title: 'V8.Execute',
+        cpuSelfTime: 1,
+        stableId: '11.11'
+      },
+      {
+        guid: 10,
+        title: 'V8.Execute',
+        cpuSelfTime: 2,
+        stableId: '22.22'
+      },
+      {
+        guid: 11,
+        title: 'UpdateLayoutTree',
+        cpuSelfTime: 3,
+        stableId: '33.33'
+      },
+      {
+        guid: 12,
+        title: 'UpdateLayoutTree',
+        cpuSelfTime: undefined,
+        stableId: '44.44'
+      }
+    ]);
+
+    var sampleForEvent = undefined;
+    var diagnostic = tr.v.d.RelatedHistogramBreakdown.buildFromEvents(
+        values, 'foo-', events,
+        tr.e.chrome.ChromeUserFriendlyCategoryDriver.fromEvent,
+        tr.b.Unit.byName.timeDurationInMs, sampleForEvent, TEST_BOUNDARIES);
+
+    assert.lengthOf(diagnostic, 2);
+    var scriptValue = values.getValuesNamed('foo-script_execute')[0];
+    assert.instanceOf(scriptValue, tr.v.Histogram);
+    assert.lengthOf(scriptValue.centralBins[1].diagnosticMaps, 1);
+    assert.strictEqual(scriptValue, diagnostic.get('script_execute'));
+    events = [...events];
+    var relatedEvents = scriptValue.centralBins[1].diagnosticMaps[0]
+        .get('relatedEvents');
+    assert.lengthOf(relatedEvents, 1);
+    assert.strictEqual(events[0], [...relatedEvents][0]);
+    assert.lengthOf(scriptValue.centralBins[2].diagnosticMaps, 1);
+    assert.lengthOf(
+        scriptValue.centralBins[2].diagnosticMaps[0]
+        .get('relatedEvents'), 1);
+    assert.strictEqual(events[1],
+        [...scriptValue.centralBins[2].diagnosticMaps[0]
+        .get('relatedEvents')][0]);
+
+    var styleValue = values.getValuesNamed('foo-style')[0];
+    assert.instanceOf(styleValue, tr.v.Histogram);
+    assert.lengthOf(styleValue.centralBins[3].diagnosticMaps, 1);
+    relatedEvents = styleValue.centralBins[3].diagnosticMaps[0]
+        .get('relatedEvents');
+    assert.strictEqual(styleValue, diagnostic.get('style'));
+    assert.lengthOf(relatedEvents, 1);
+    assert.strictEqual(events[2], [...relatedEvents][0]);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/value/diagnostics/related_value_map.html b/catapult/tracing/tracing/value/diagnostics/related_value_map.html
index 12fcde8..54f0aff 100644
--- a/catapult/tracing/tracing/value/diagnostics/related_value_map.html
+++ b/catapult/tracing/tracing/value/diagnostics/related_value_map.html
@@ -6,69 +6,60 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/value/diagnostics/related_value_set.html">
+<link rel="import" href="/tracing/value/diagnostics/diagnostic.html">
+<link rel="import" href="/tracing/value/diagnostics/value_ref.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.v.d', function() {
-  /** @constructor */
-  function RelatedValueMap() {
-    this.valuesByName_ = {};
-  }
-
-  RelatedValueMap.prototype = {
-    __proto__: tr.v.d.Diagnostic.prototype,
+  class RelatedValueMap extends tr.v.d.Diagnostic {
+    constructor() {
+      super();
+      this.valuesByName_ = new Map();
+    }
 
     /**
-     * Add a Value by an explicit name to this map.
+     * Lookup a Histogram by name. Returns undefined if |name| is not found.
      *
      * @param {string} name
-     * @param {!(tr.v.d.ValueRef|tr.v.Value)} value
+     * @return {!tr.v.d.ValueRef|!tr.v.Histogram|undefined}
      */
-    set: function(name, value) {
-      if (!(value instanceof tr.v.Value) &&
+    get(name) {
+      return this.valuesByName_.get(name);
+    }
+
+    /**
+     * Add a Histogram by an explicit name to this map.
+     *
+     * @param {string} name
+     * @param {!(tr.v.d.ValueRef|tr.v.Histogram)} value
+     */
+    set(name, value) {
+      if (!(value instanceof tr.v.Histogram) &&
           !(value instanceof tr.v.d.ValueRef))
-        throw new Error('Must be instanceof Value or ValueRef: ' + value);
+        throw new Error('Must be instanceof Histogram or ValueRef: ' + value);
 
-      this.valuesByName_[name] = value;
-    },
+      this.valuesByName_.set(name, value);
+    }
 
     /**
-     * Add a Value implicitly by its own name to this map.
+     * Add a Histogram implicitly by its own name to this map.
      *
-     * @param {!(tr.v.d.ValueRef|tr.v.Value)} value
+     * @param {!(tr.v.d.ValueRef|tr.v.Histogram)} value
      */
-    add: function(value) {
+    add(value) {
       this.set(value.name, value);
-    },
+    }
 
-    /**
-     * Iterate over the named Values.
-     *
-     * @param {!function(string, !(tr.v.d.ValueRef|tr.v.Value))} callback
-     * @param {*=} opt_this
-     */
-    iterItems: function(callback, opt_this) {
-      tr.b.iterItems(this.valuesByName_, callback, opt_this || this);
-    },
+    get length() {
+      return this.valuesByName_.size;
+    }
 
-    /**
-     * @return {!Array.<!(tr.v.d.ValueRef|tr.v.Value)>}
-     */
-    get values() {
-      return tr.b.dictionaryValues(this.valuesByName_);
-    },
-
-    /**
-     * Lookup a Value by name. Returns undefined if |name| is not found.
-     *
-     * @param {string} name
-     * @return {!tr.v.d.ValueRef|!tr.v.Value|undefined}
-     */
-    get: function(name) {
-      return this.valuesByName_[name];
-    },
+    *[Symbol.iterator]() {
+      for (var pair of this.valuesByName_)
+        yield pair;
+    }
 
     /**
      * Resolve all ValueRefs into Values by looking up their guids in
@@ -81,37 +72,39 @@
      * @param {!tr.v.ValueSet} valueSet
      * @param {boolean=} opt_required
      */
-    resolve: function(valueSet, opt_required) {
-      this.iterItems(function(name, value) {
+    resolve(valueSet, opt_required) {
+      for (var [name, value] of this) {
         if (!(value instanceof tr.v.d.ValueRef))
-          return;
+          continue;
 
-        value = valueSet.lookup(value.guid);
-        if (value instanceof tr.v.Value)
-          this.valuesByName_[name] = value;
+        var guid = value.guid;
+        value = valueSet.lookup(guid);
+        if (value instanceof tr.v.Histogram)
+          this.valuesByName_.set(name, value);
         else if (opt_required)
-          throw new Error('Unable to find Value ' + guid);
-      }, this);
-    },
-
-    asDictInto_: function(d) {
-      d.values = tr.b.mapItems(this.valuesByName_, (name, value) => value.guid);
+          throw new Error('Unable to find Histogram ' + guid);
+      }
     }
-  };
 
-  RelatedValueMap.fromDict = function(d) {
-    var map = new RelatedValueMap();
-    tr.b.iterItems(d.values, function(name, guid) {
-      map.set(name, new tr.v.d.ValueRef(guid));
-    });
-    return map;
-  };
+    asDictInto_(d) {
+      d.values = {};
+      for (var [name, value] of this)
+        d.values[name] = value.guid;
+    }
+
+    static fromDict(d) {
+      var map = new RelatedValueMap();
+      tr.b.iterItems(d.values, function(name, guid) {
+        map.set(name, new tr.v.d.ValueRef(guid));
+      });
+      return map;
+    }
+  }
 
   tr.v.d.Diagnostic.register(RelatedValueMap, {
     elementName: 'tr-v-ui-related-value-map-span'
   });
 
-
   return {
     RelatedValueMap: RelatedValueMap
   };
diff --git a/catapult/tracing/tracing/value/diagnostics/related_value_set.html b/catapult/tracing/tracing/value/diagnostics/related_value_set.html
index 412c4df..27dfa04 100644
--- a/catapult/tracing/tracing/value/diagnostics/related_value_set.html
+++ b/catapult/tracing/tracing/value/diagnostics/related_value_set.html
@@ -7,49 +7,48 @@
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
 <link rel="import" href="/tracing/value/diagnostics/diagnostic.html">
+<link rel="import" href="/tracing/value/diagnostics/value_ref.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.v.d', function() {
-  /** @constructor */
-  function ValueRef(guid) {
-    this.guid = guid;
-  }
+  class RelatedValueSet extends tr.v.d.Diagnostic {
+    constructor(opt_values) {
+      super();
+      this.valuesByGuid_ = new Map();
 
-  /** @constructor */
-  function RelatedValueSet(opt_values) {
-    this.valuesByGuid_ = {};
-
-    if (opt_values)
-      opt_values.forEach(this.add, this);
-  }
-
-  RelatedValueSet.prototype = {
-    __proto__: tr.v.d.Diagnostic.prototype,
+      if (opt_values)
+        for (var value of opt_values)
+          this.add(value);
+    }
 
     /**
-     * Add a Value to this set.
-     *
-     * @param {!(ValueRef|tr.v.Value)} v
+     * @param {!(tr.v.d.ValueRef|tr.v.Histogram)} v
      */
-    add: function(value) {
-      if (!(value instanceof tr.v.Value) &&
-          !(value instanceof ValueRef))
-        throw new Error('Must be instanceof Value or ValueRef: ' + value);
+    add(value) {
+      if (!(value instanceof tr.v.Histogram) &&
+          !(value instanceof tr.v.d.ValueRef))
+        throw new Error('Must be instanceof Histogram or ValueRef: ' + value);
 
-      if (this.valuesByGuid_[value.guid])
+      if (this.valuesByGuid_.get(value.guid))
         throw new Error('Tried to add same value twice');
 
-      this.valuesByGuid_[value.guid] = value;
-    },
+      this.valuesByGuid_.set(value.guid, value);
+    }
 
-    /**
-     * @return {Array.<(ValueRef|tr.v.Value)>}
-     */
-    get values() {
-      return tr.b.dictionaryValues(this.valuesByGuid_);
-    },
+    has(value) {
+      return this.valuesByGuid_.has(value.guid);
+    }
+
+    get length() {
+      return this.valuesByGuid_.size;
+    }
+
+    *[Symbol.iterator]() {
+      for (var [guid, value] of this.valuesByGuid_)
+        yield value;
+    }
 
     /**
      * Resolve all ValueRefs into Values by looking up their guids in
@@ -62,27 +61,30 @@
      * @param {!tr.v.ValueSet} valueSet
      * @param {boolean=} opt_required
      */
-    resolve: function(valueSet, opt_required) {
-      tr.b.iterItems(this.valuesByGuid_, function(guid, value) {
-        if (!(value instanceof ValueRef))
-          return;
+    resolve(valueSet, opt_required) {
+      for (var [guid, value] of this.valuesByGuid_) {
+        if (!(value instanceof tr.v.d.ValueRef))
+          continue;
 
         value = valueSet.lookup(guid);
-        if (value instanceof tr.v.Value)
-          this.valuesByGuid_[guid] = value;
+        if (value instanceof tr.v.Histogram)
+          this.valuesByGuid_.set(guid, value);
         else if (opt_required)
-          throw new Error('Unable to find Value ' + guid);
-      }, this);
-    },
-
-    asDictInto_: function(d) {
-      d.guids = tr.b.dictionaryKeys(this.valuesByGuid_);
+          throw new Error('Unable to find Histogram ' + guid);
+      }
     }
-  };
 
-  RelatedValueSet.fromDict = function(d) {
-    return new RelatedValueSet(d.guids.map(guid => new ValueRef(guid)));
-  };
+    asDictInto_(d) {
+      d.guids = [];
+      for (var value of this)
+        d.guids.push(value.guid);
+    }
+
+    static fromDict(d) {
+      return new RelatedValueSet(d.guids.map(
+          guid => new tr.v.d.ValueRef(guid)));
+    }
+  }
 
   tr.v.d.Diagnostic.register(RelatedValueSet, {
     elementName: 'tr-v-ui-related-value-set-span'
@@ -90,7 +92,6 @@
 
   return {
     RelatedValueSet: RelatedValueSet,
-    ValueRef: ValueRef
   };
 });
 </script>
diff --git a/catapult/tracing/tracing/value/diagnostics/value_ref.html b/catapult/tracing/tracing/value/diagnostics/value_ref.html
new file mode 100644
index 0000000..c2712d0
--- /dev/null
+++ b/catapult/tracing/tracing/value/diagnostics/value_ref.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/base.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.v.d', function() {
+  /** @constructor */
+  function ValueRef(guid) {
+    this.guid = guid;
+  }
+
+  return {
+    ValueRef: ValueRef
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/value/histogram.html b/catapult/tracing/tracing/value/histogram.html
new file mode 100644
index 0000000..ce55f06
--- /dev/null
+++ b/catapult/tracing/tracing/value/histogram.html
@@ -0,0 +1,782 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/running_statistics.html">
+<link rel="import" href="/tracing/base/sorted_array_utils.html">
+<link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
+<link rel="import" href="/tracing/value/numeric.html">
+
+<script>
+'use strict';
+
+tr.exportTo('tr.v', function() {
+  var MAX_DIAGNOSTIC_MAPS = 16;
+
+  // p-values less than this indicate statistical significance.
+  var DEFAULT_ALPHA = 0.05;
+
+  /** @enum */
+  var Significance = {
+    DONT_CARE: -1,
+    INSIGNIFICANT: 0,
+    SIGNIFICANT: 1
+  };
+
+  var DEFAULT_BOUNDARIES_FOR_UNIT = new Map();
+
+  class HistogramBin {
+    /**
+     * @param {!tr.b.Range} range
+     */
+    constructor(range) {
+      this.range = range;
+      this.count = 0;
+      this.diagnosticMaps = [];
+    }
+
+    /**
+     * @param {*} value
+     */
+    addSample(value) {
+      this.count += 1;
+    }
+
+    /**
+     * @param {!tr.v.d.DiagnosticMap} diagnostics
+     */
+    addDiagnosticMap(diagnostics) {
+      tr.b.Statistics.uniformlySampleStream(
+          this.diagnosticMaps, this.count, diagnostics, MAX_DIAGNOSTIC_MAPS);
+    }
+
+    addBin(other) {
+      if (!this.range.equals(other.range))
+        throw new Error('Merging incompatible Histogram bins.');
+      tr.b.Statistics.mergeSampledStreams(this.diagnosticMaps, this.count,
+          other.diagnosticMaps, other.count, MAX_DIAGNOSTIC_MAPS);
+      this.count += other.count;
+    }
+
+    fromDict(d) {
+      this.count = d.count;
+      for (var map of d.diagnosticMaps)
+        this.diagnosticMaps.push(tr.v.d.DiagnosticMap.fromDict(map));
+    }
+
+    asDict() {
+      return {
+        count: this.count,
+        diagnosticMaps: this.diagnosticMaps.map(d => d.asDict())
+      };
+    }
+  }
+
+  /**
+   * This is basically a histogram, but so much more.
+   * Histogram is serializable using asDict/fromDict.
+   * Histogram computes several statistics of its contents.
+   * Histograms can be merged.
+   * getDifferenceSignificance() test whether one Histogram is statistically
+   * significantly different from another Histogram.
+   * Histogram stores a random sample of the exact number values added to it.
+   * Histogram stores a random sample of optional per-sample DiagnosticMaps.
+   * Histogram is visualized by <tr-v-ui-histogram-span>, which supports
+   * selecting bins, and visualizing the DiagnosticMaps of selected bins.
+   *
+   * @param {!tr.b.Unit} unit
+   * @param {!tr.v.HistogramBinBoundaries=} opt_binBoundaries
+   */
+  class Histogram {
+    constructor(name, unit, opt_binBoundaries) {
+
+      var binBoundaries = opt_binBoundaries;
+      if (!binBoundaries) {
+        var baseUnit = unit.baseUnit ? unit.baseUnit : unit;
+        binBoundaries = DEFAULT_BOUNDARIES_FOR_UNIT.get(baseUnit.unitName);
+      }
+
+      // If this Histogram is being deserialized, then its guid will be set by
+      // fromDict().
+      // If this Histogram is being computed by a metric, then its guid will be
+      // allocated the first time the guid is gotten by asDict().
+      this.guid_ = undefined;
+
+      this.allBins = [];
+      this.centralBins = [];
+      this.description = '';
+      this.diagnostics = new tr.v.d.DiagnosticMap();
+      this.maxCount_ = 0;
+      this.name_ = name;
+      this.nanDiagnosticMaps = [];
+      this.numNans = 0;
+      this.running = new tr.b.RunningStatistics();
+      this.sampleValues_ = [];
+      this.shortName = undefined;
+      this.summaryOptions = {
+        count: true,
+        sum: true,
+        avg: true,
+        geometricMean: false,
+        std: true,
+        min: true,
+        max: true,
+        nans: false,
+        percentile: []
+      };
+      this.unit = unit;
+
+      this.underflowBin = new HistogramBin(tr.b.Range.fromExplicitRange(
+          -Number.MAX_VALUE, binBoundaries.minBinBoundary));
+      this.overflowBin = new HistogramBin(tr.b.Range.fromExplicitRange(
+          binBoundaries.maxBinBoundary, Number.MAX_VALUE));
+
+      for (var range of binBoundaries)
+        this.centralBins.push(new HistogramBin(range));
+
+      this.allBins.push(this.underflowBin);
+      for (var bin of this.centralBins)
+        this.allBins.push(bin);
+      this.allBins.push(this.overflowBin);
+
+      this.maxNumSampleValues = this.allBins.length * 10;
+    }
+
+    get name() {
+      return this.name_;
+    }
+
+    get guid() {
+      if (this.guid_ === undefined)
+        this.guid_ = tr.b.GUID.allocateUUID4();
+
+      return this.guid_;
+    }
+
+    set guid(guid) {
+      if (this.guid_ !== undefined)
+        throw new Error('Cannot reset guid');
+
+      this.guid_ = guid;
+    }
+
+    static fromDict(d) {
+      var boundaries = HistogramBinBoundaries.createWithBoundaries(
+          d.binBoundaries);
+      var n = new Histogram(d.name, tr.b.Unit.fromJSON(d.unit), boundaries);
+      n.guid = d.guid;
+      n.shortName = d.shortName;
+      n.description = d.description;
+      n.diagnostics.addDicts(d.diagnostics);
+
+      n.underflowBin.fromDict(d.underflowBin);
+      for (var i = 0; i < d.centralBins.length; ++i)
+        n.centralBins[i].fromDict(d.centralBins[i]);
+      n.overflowBin.fromDict(d.overflowBin);
+
+      for (var bin of n.allBins)
+        n.maxCount_ = Math.max(n.maxCount_, bin.count);
+
+      if (d.running)
+        n.running = tr.b.RunningStatistics.fromDict(d.running);
+      if (d.summaryOptions)
+        n.customizeSummaryOptions(d.summaryOptions);
+
+      n.maxNumSampleValues = d.maxNumSampleValues;
+      n.sampleValues_ = d.sampleValues;
+
+      n.numNans = d.numNans;
+      for (var map of d.nanDiagnosticMaps)
+        n.nanDiagnosticMaps.push(tr.v.d.DiagnosticMap.fromDict(map));
+
+      return n;
+    }
+
+    /**
+     * Build a Histogram from a set of samples in order to effectively merge a
+     * set of ScalarNumerics.
+     * The range of the resulting histogram is determined by the smallest and
+     * largest sample value, which is unpredictable.
+     * https://github.com/catapult-project/catapult/issues/2685
+     *
+     * @param {!tr.b.Unit} unit
+     * @param {!Array.<number>} samples
+     * @return {!Histogram}
+     */
+    static buildFromSamples(unit, samples) {
+      var boundaries = HistogramBinBoundaries.createFromSamples(samples);
+      var result = new Histogram(unit, boundaries);
+      result.maxNumSampleValues = 1000;
+
+      // TODO(eakuefner): Propagate diagnosticMaps?
+      for (var sample of samples)
+        result.addSample(sample);
+
+      return result;
+    }
+
+    get numValues() {
+      return tr.b.Statistics.sum(this.allBins, function(e) {
+        return e.count;
+      });
+    }
+
+    get average() {
+      return this.running.mean;
+    }
+
+    get geometricMean() {
+      return this.running.geometricMean;
+    }
+
+    get sum() {
+      return this.running.sum;
+    }
+
+    get maxCount() {
+      return this.maxCount_;
+    }
+
+    /**
+     * Requires that units agree.
+     * Returns DONT_CARE if that is the units' improvementDirection.
+     * Returns SIGNIFICANT if the Mann-Whitney U test returns a
+     * p-value less than opt_alpha or DEFAULT_ALPHA. Returns INSIGNIFICANT if
+     * the p-value is greater than alpha.
+     *
+     * @param {!tr.v.Histogram} other
+     * @param {number=} opt_alpha
+     * @return {!tr.v.Significance}
+     */
+    getDifferenceSignificance(other, opt_alpha) {
+      if (this.unit !== other.unit)
+        throw new Error('Cannot compare Numerics with different units');
+
+      if (this.unit.improvementDirection ===
+          tr.b.ImprovementDirection.DONT_CARE) {
+        return tr.v.Significance.DONT_CARE;
+      }
+
+      if (!(other instanceof Histogram))
+        throw new Error('Unable to compute a p-value');
+
+      var mwu = tr.b.Statistics.mwu.test(this.sampleValues, other.sampleValues);
+      if (mwu.p < (opt_alpha || DEFAULT_ALPHA))
+        return tr.v.Significance.SIGNIFICANT;
+      return tr.v.Significance.INSIGNIFICANT;
+    }
+
+    /*
+     * Compute an approximation of percentile based on the counts in the bins.
+     * If the real percentile lies within |this.range| then the result of
+     * the function will deviate from the real percentile by at most
+     * the maximum width of the bin(s) within which the point(s)
+     * from which the real percentile would be calculated lie.
+     * If the real percentile is outside |this.range| then the function
+     * returns the closest range limit: |this.range.min| or |this.range.max|.
+     *
+     * @param {number} percent The percent must be between 0.0 and 1.0.
+     */
+    getApproximatePercentile(percent) {
+      if (!(percent >= 0 && percent <= 1))
+        throw new Error('percent must be [0,1]');
+      if (this.numValues == 0)
+        return 0;
+      var valuesToSkip = Math.floor((this.numValues - 1) * percent);
+      for (var i = 0; i < this.allBins.length; i++) {
+        var bin = this.allBins[i];
+        valuesToSkip -= bin.count;
+        if (valuesToSkip < 0) {
+          if (bin === this.underflowBin)
+            return bin.range.max;
+          else if (bin === this.overflowBin)
+            return bin.range.min;
+          else
+            return bin.range.center;
+        }
+      }
+      throw new Error('Unreachable');
+    }
+
+    getBinForValue(value) {
+      // Don't use subtraction to avoid arithmetic overflow.
+      var binIndex = tr.b.findHighIndexInSortedArray(
+          this.allBins, b => value < b.range.max ? -1 : 1);
+      return this.allBins[binIndex] || this.overflowBin;
+    }
+
+    /**
+     * @param {number|*} value
+     * @param {(!Object|!tr.v.d.DiagnosticMap)=} opt_diagnostics
+     */
+    addSample(value, opt_diagnostics) {
+      if (opt_diagnostics &&
+          !(opt_diagnostics instanceof tr.v.d.DiagnosticMap))
+        opt_diagnostics = tr.v.d.DiagnosticMap.fromObject(opt_diagnostics);
+
+      if (typeof(value) !== 'number' || isNaN(value)) {
+        this.numNans++;
+        if (opt_diagnostics) {
+          tr.b.Statistics.uniformlySampleStream(this.nanDiagnosticMaps,
+              this.numNans, opt_diagnostics, MAX_DIAGNOSTIC_MAPS);
+        }
+      } else {
+        this.running.add(value);
+
+        var bin = this.getBinForValue(value);
+        bin.addSample(value);
+        if (opt_diagnostics)
+          bin.addDiagnosticMap(opt_diagnostics);
+        if (bin.count > this.maxCount_)
+          this.maxCount_ = bin.count;
+      }
+
+      tr.b.Statistics.uniformlySampleStream(this.sampleValues_,
+          this.numValues + this.numNans, value, this.maxNumSampleValues);
+    }
+
+    sampleValuesInto(samples) {
+      for (var sampleValue of this.sampleValues)
+        samples.push(sampleValue);
+    }
+
+    /**
+     * Return true if this Histogram can be added to |other|.
+     *
+     * @param {!tr.v.Histogram} other
+     * @return {boolean}
+     */
+    canAddHistogram(other) {
+      if (this.unit !== other.unit)
+        return false;
+      if (this.allBins.length !== other.allBins.length)
+        return false;
+
+      for (var i = 0; i < this.allBins.length; ++i)
+        if (!this.allBins[i].range.equals(other.allBins[i].range))
+          return false;
+
+      return true;
+    }
+
+    /**
+     * Add |other| to this Histogram in-place if they can be added.
+     *
+     * @param {!tr.v.Histogram} other
+     */
+    addHistogram(other) {
+      if (!this.canAddHistogram(other))
+        throw new Error('Merging incompatible Numerics.');
+
+      tr.b.Statistics.mergeSampledStreams(this.nanDiagnosticMaps, this.numNans,
+          other.nanDiagnosticMaps, other.numNans, MAX_DIAGNOSTIC_MAPS);
+      tr.b.Statistics.mergeSampledStreams(
+          this.sampleValues, this.numValues,
+          other.sampleValues, other.numValues, tr.b.Statistics.mean(
+              [this.maxNumSampleValues, other.maxNumSampleValues]));
+      this.numNans += other.numNans;
+      this.running = this.running.merge(other.running);
+      for (var i = 0; i < this.allBins.length; ++i) {
+        this.allBins[i].addBin(other.allBins[i]);
+      }
+    }
+
+    /**
+     * Controls which statistics are exported to dashboard for this numeric.
+     * The |summaryOptions| parameter is a dictionary with optional boolean
+     * fields |count|, |sum|, |avg|, |std|, |min|, |max| and an optional
+     * array field |percentile|.
+     * Each percentile should be a number between 0.0 and 1.0.
+     * The options not included in the |summaryOptions| will not change.
+     */
+    customizeSummaryOptions(summaryOptions) {
+      tr.b.iterItems(summaryOptions, function(key, value) {
+        this.summaryOptions[key] = value;
+      }, this);
+    }
+
+    /**
+     * Returns a Map {statisticName: ScalarNumeric}.
+     *
+     * Each enabled summary option produces the corresponding value:
+     * min, max, count, sum, avg, or std.
+     * Each percentile 0.x produces pct_0x0.
+     * Each percentile 0.xx produces pct_0xx.
+     * Each percentile 0.xxy produces pct_0xx_y.
+     * Percentile 1.0 produces pct_100.
+     *
+     * @return {!Map.<string, ScalarNumeric>}
+     */
+    get statisticsScalars() {
+      function statNameToKey(stat) {
+        switch (stat) {
+          case 'std':
+            return 'stddev';
+          case 'avg':
+            return 'mean';
+        }
+        return stat;
+      }
+      /**
+       * Converts the given percent to a string in the format specified above.
+       * @param {number} percent The percent must be between 0.0 and 1.0.
+       */
+      function percentToString(percent) {
+        if (percent < 0 || percent > 1)
+          throw new Error('Percent must be between 0.0 and 1.0');
+        switch (percent) {
+          case 0:
+            return '000';
+          case 1:
+            return '100';
+        }
+        var str = percent.toString();
+        if (str[1] !== '.')
+          throw new Error('Unexpected percent');
+        // Pad short strings with zeros.
+        str = str + '0'.repeat(Math.max(4 - str.length, 0));
+        if (str.length > 4)
+          str = str.slice(0, 4) + '_' + str.slice(4);
+        return '0' + str.slice(2);
+      }
+
+      var results = new Map();
+      tr.b.iterItems(this.summaryOptions, function(stat, option) {
+        if (!option)
+          return;
+
+        if (stat === 'percentile') {
+          option.forEach(function(percent) {
+            var percentile = this.getApproximatePercentile(percent);
+            results.set('pct_' + percentToString(percent),
+                new tr.v.ScalarNumeric(this.unit, percentile));
+          }, this);
+        } else if (stat === 'nans') {
+          results.set('nans', new tr.v.ScalarNumeric(
+              tr.b.Unit.byName.count_smallerIsBetter, this.numNans));
+        } else {
+          var statUnit = stat === 'count' ?
+              tr.b.Unit.byName.count_smallerIsBetter : this.unit;
+          var key = statNameToKey(stat);
+          var statValue = this.running[key];
+
+          if (typeof(statValue) === 'number') {
+            results.set(stat, new tr.v.ScalarNumeric(statUnit, statValue));
+          }
+        }
+      }, this);
+      return results;
+    }
+
+    get sampleValues() {
+      return this.sampleValues_;
+    }
+
+    get binBoundaries() {
+      var boundaries = [];
+      for (var bin of this.centralBins)
+        boundaries.push(bin.range.min);
+      boundaries.push(this.overflowBin.range.min);
+      return boundaries;
+    }
+
+    clone() {
+      return Histogram.fromDict(this.asDict());
+    }
+
+    asDict() {
+      return {
+        name: this.name,
+        guid: this.guid,
+        shortName: this.shortName,
+        description: this.description,
+        diagnostics: this.diagnostics.asDict(),
+        unit: this.unit.asJSON(),
+        binBoundaries: this.binBoundaries,
+
+        underflowBin: this.underflowBin.asDict(),
+        centralBins: this.centralBins.map(bin => bin.asDict()),
+        overflowBin: this.overflowBin.asDict(),
+
+        running: this.running.asDict(),
+        summaryOptions: this.summaryOptions,
+
+        maxNumSampleValues: this.maxNumSampleValues,
+        sampleValues: this.sampleValues,
+
+        numNans: this.numNans,
+        nanDiagnosticMaps: this.nanDiagnosticMaps.map(dm => dm.asDict()),
+      };
+    }
+  }
+
+  /**
+   * Reusable builder for tr.v.Histogram objects.
+   *
+   * The bins of the numeric are specified by adding the desired boundaries
+   * between bins. Initially, the builder has only a single boundary:
+   *
+   *       minBinBoundary=maxBinBoundary
+   *                     |
+   *                     |
+   *   -MAX_INT <--------|------------------------------------------> +MAX_INT
+   *       :  resulting  :                   resulting                    :
+   *       :  underflow  :                    overflow                    :
+   *       :     bin     :                      bin                       :
+   *
+   * More boundaries can be added (in increasing order) using addBinBoundary,
+   * addLinearBins and addExponentialBins:
+   *
+   *              minBinBoundary                      maxBinBoundary
+   *                     |         |         |     |         |
+   *                     |         |         |     |         |
+   *   -MAX_INT <--------|---------|---------|-----|---------|------> +MAX_INT
+   *       :  resulting  : result. : result. :     : result. : resulting  :
+   *       :  underflow  : central : central : ... : central :  overflow  :
+   *       :     bin     :  bin 0  :  bin 1  :     : bin N-1 :    bin     :
+   *
+   * An important feature of the builder is that it's reusable, i.e. it can be
+   * used to build multiple numerics with the same unit and bin structure.
+   *
+   * @constructor
+   * @param {!tr.b.Unit} unit Unit of the resulting Histogram(s).
+   * @param {number} minBinBoundary The minimum boundary between bins, namely
+   *     the underflow bin and the first central bin (or the overflow bin if
+   *     no other boundaries are added later).
+   */
+  class HistogramBinBoundaries {
+    /**
+     * Create a linearly scaled tr.v.HistogramBinBoundaries with |numBins| bins
+     * ranging from |min| to |max|.
+     *
+     * @param {number} min
+     * @param {number} max
+     * @param {number} numBins
+     * @return {tr.v.HistogramBinBoundaries}
+     */
+    static createLinear(min, max, numBins) {
+      return new HistogramBinBoundaries(min).addLinearBins(max, numBins);
+    }
+
+    /**
+     * Create an exponentially scaled tr.v.HistogramBinBoundaries with |numBins|
+     * bins ranging from |min| to |max|.
+     *
+     * @param {number} min
+     * @param {number} max
+     * @param {number} numBins
+     * @return {tr.v.HistogramBinBoundaries}
+     */
+    static createExponential(min, max, numBins) {
+      return new HistogramBinBoundaries(min).addExponentialBins(max, numBins);
+    }
+
+    /**
+     * @param {Array.<number>} binBoundaries
+     */
+    static createWithBoundaries(binBoundaries) {
+      var builder = new HistogramBinBoundaries(binBoundaries[0]);
+      for (var boundary of binBoundaries.slice(1))
+        builder.addBinBoundary(boundary);
+      return builder;
+    }
+
+    static createFromSamples(samples) {
+      var range = new tr.b.Range();
+      // Prevent non-numeric samples from introducing NaNs into the range.
+      for (var sample of samples)
+        if (!isNaN(Math.max(sample)))
+          range.addValue(sample);
+
+      // HistogramBinBoundaries.addLinearBins() requires this.
+      if (range.isEmpty)
+        range.addValue(1);
+      if (range.min === range.max)
+        range.addValue(range.min - 1);
+
+      // This optimizes the resolution when samples are uniformly distributed
+      // (which is almost never the case).
+      var numBins = Math.ceil(Math.sqrt(samples.length));
+      var builder = new HistogramBinBoundaries(range.min);
+      builder.addLinearBins(range.max, numBins);
+      return builder;
+    }
+
+    /**
+     * @param {number} minBinBoundary
+     */
+    constructor(minBinBoundary) {
+      this.boundaries_ = [minBinBoundary];
+    }
+
+    get minBinBoundary() {
+      return this.boundaries_[0];
+    }
+
+    get maxBinBoundary() {
+      return this.boundaries_[this.boundaries_.length - 1];
+    }
+
+    /**
+     * Yield Ranges of adjacent boundaries.
+     */
+    *[Symbol.iterator]() {
+      for (var i = 0; i < this.boundaries_.length - 1; ++i) {
+        yield tr.b.Range.fromExplicitRange(
+            this.boundaries_[i], this.boundaries_[i + 1]);
+      }
+    }
+
+    /**
+     * Add a bin boundary |nextMaxBinBoundary| to the builder.
+     *
+     * This operation effectively corresponds to appending a new central bin
+     * with the range [this.maxBinBoundary*, nextMaxBinBoundary].
+     *
+     * @param {number} nextMaxBinBoundary The added bin boundary (must be
+     *     greater than |this.maxMinBoundary|).
+     */
+    addBinBoundary(nextMaxBinBoundary) {
+      if (nextMaxBinBoundary <= this.maxBinBoundary) {
+        throw new Error('The added max bin boundary must be larger than ' +
+            'the current max boundary');
+      }
+      this.boundaries_.push(nextMaxBinBoundary);
+
+      return this;
+    }
+
+    /**
+     * Add |binCount| linearly scaled bin boundaries up to |nextMaxBinBoundary|
+     * to the builder.
+     *
+     * This operation corresponds to appending |binCount| central bins of
+     * constant range width
+     * W = ((|nextMaxBinBoundary| - |this.maxBinBoundary|) / |binCount|)
+     * with the following ranges:
+     *
+     *   [|this.maxMinBoundary|, |this.maxMinBoundary| + W]
+     *   [|this.maxMinBoundary| + W, |this.maxMinBoundary| + 2W]
+     *   [|this.maxMinBoundary| + 2W, |this.maxMinBoundary| + 3W]
+     *   ...
+     *   [|this.maxMinBoundary| + (|binCount| - 2) * W,
+     *    |this.maxMinBoundary| + (|binCount| - 2) * W]
+     *   [|this.maxMinBoundary| + (|binCount| - 1) * W,
+     *    |nextMaxBinBoundary|]
+     *
+     * @param {number} nextBinBoundary The last added bin boundary (must be
+     *     greater than |this.maxMinBoundary|).
+     * @param {number} binCount Number of bins to be added (must be positive).
+     */
+    addLinearBins(nextMaxBinBoundary, binCount) {
+      if (binCount <= 0)
+        throw new Error('Bin count must be positive');
+
+      var curMaxBinBoundary = this.maxBinBoundary;
+      if (curMaxBinBoundary >= nextMaxBinBoundary) {
+        throw new Error('The new max bin boundary must be greater than ' +
+            'the previous max bin boundary');
+      }
+
+      var binWidth = (nextMaxBinBoundary - curMaxBinBoundary) / binCount;
+      for (var i = 1; i < binCount; i++)
+        this.addBinBoundary(curMaxBinBoundary + i * binWidth);
+      this.addBinBoundary(nextMaxBinBoundary);
+
+      return this;
+    }
+
+    /**
+     * Add |binCount| exponentially scaled bin boundaries up to
+     * |nextMaxBinBoundary| to the builder.
+     *
+     * This operation corresponds to appending |binCount| central bins with
+     * a constant difference between the logarithms of their range min and max
+     * D = ((ln(|nextMaxBinBoundary|) - ln(|this.maxBinBoundary|)) / |binCount|)
+     * with the following ranges:
+     *
+     *   [|this.maxMinBoundary|, |this.maxMinBoundary| * exp(D)]
+     *   [|this.maxMinBoundary| * exp(D), |this.maxMinBoundary| * exp(2D)]
+     *   [|this.maxMinBoundary| * exp(2D), |this.maxMinBoundary| * exp(3D)]
+     *   ...
+     *   [|this.maxMinBoundary| * exp((|binCount| - 2) * D),
+     *    |this.maxMinBoundary| * exp((|binCount| - 2) * D)]
+     *   [|this.maxMinBoundary| * exp((|binCount| - 1) * D),
+     *    |nextMaxBinBoundary|]
+     *
+     * This method requires that the current max bin boundary is positive.
+     *
+     * @param {number} nextBinBoundary The last added bin boundary (must be
+     *     greater than |this.maxMinBoundary|).
+     * @param {number} binCount Number of bins to be added (must be positive).
+     */
+    addExponentialBins(nextMaxBinBoundary, binCount) {
+      if (binCount <= 0)
+        throw new Error('Bin count must be positive');
+
+      var curMaxBinBoundary = this.maxBinBoundary;
+      if (curMaxBinBoundary <= 0)
+        throw new Error('Current max bin boundary must be positive');
+      if (curMaxBinBoundary >= nextMaxBinBoundary) {
+        throw new Error('The last added max boundary must be greater than ' +
+            'the current max boundary boundary');
+      }
+
+      var binExponentWidth =
+          Math.log(nextMaxBinBoundary / curMaxBinBoundary) / binCount;
+      for (var i = 1; i < binCount; i++) {
+        this.addBinBoundary(
+            curMaxBinBoundary * Math.exp(i * binExponentWidth));
+      }
+      this.addBinBoundary(nextMaxBinBoundary);
+
+      return this;
+    }
+  }
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.timeDurationInMs.unitName,
+      HistogramBinBoundaries.createExponential(1e-3, 1e6, 1e2));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.timeStampInMs.unitName,
+      HistogramBinBoundaries.createLinear(0, 1e10, 1e3));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.normalizedPercentage.unitName,
+      HistogramBinBoundaries.createLinear(0, 1.0, 20));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.sizeInBytes.unitName,
+      HistogramBinBoundaries.createExponential(1, 1e12, 1e2));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.energyInJoules.unitName,
+      HistogramBinBoundaries.createExponential(1e-3, 1e3, 50));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.powerInWatts.unitName,
+      HistogramBinBoundaries.createExponential(1e-3, 1, 50));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.unitlessNumber.unitName,
+      HistogramBinBoundaries.createExponential(1e-3, 1e3, 50));
+
+  DEFAULT_BOUNDARIES_FOR_UNIT.set(
+      tr.b.Unit.byName.count.unitName,
+      HistogramBinBoundaries.createExponential(1, 1e3, 20));
+
+  return {
+    Significance: Significance,
+    Histogram: Histogram,
+    HistogramBinBoundaries: HistogramBinBoundaries,
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/value/histogram_test.html b/catapult/tracing/tracing/value/histogram_test.html
new file mode 100644
index 0000000..4c75621
--- /dev/null
+++ b/catapult/tracing/tracing/value/histogram_test.html
@@ -0,0 +1,449 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/value/diagnostics/generic.html">
+<link rel="import" href="/tracing/value/histogram.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  var unitlessNumber = tr.b.Unit.byName.unitlessNumber;
+  var unitlessNumber_sIB = tr.b.Unit.byName.unitlessNumber_smallerIsBetter;
+
+  var TEST_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(0, 1000, 10);
+
+  function checkBoundaries(boundaries, expectedMinBoundary, expectedMaxBoundary,
+      expectedUnit, expectedBinRanges) {
+    assert.strictEqual(boundaries.minBinBoundary, expectedMinBoundary);
+    assert.strictEqual(boundaries.maxBinBoundary, expectedMaxBoundary);
+
+    // Check that the boundaries can be used multiple times.
+    for (var i = 0; i < 3; i++) {
+      var numeric = new tr.v.Histogram('', expectedUnit, boundaries);
+      assert.instanceOf(numeric, tr.v.Histogram);
+      assert.strictEqual(numeric.unit, expectedUnit);
+      assert.strictEqual(numeric.numValues, 0);
+
+      assert.lengthOf(numeric.allBins, expectedBinRanges.length);
+      for (var j = 0; j < expectedBinRanges.length; j++) {
+        var bin = numeric.allBins[j];
+        assert.strictEqual(bin.count, 0);
+        assert.isTrue(bin.range.equals(expectedBinRanges[j]));
+      }
+    }
+  }
+
+  test('significance', function() {
+    assert.strictEqual(
+        new tr.v.Histogram('', unitlessNumber).getDifferenceSignificance(
+        new tr.v.Histogram('', unitlessNumber)), tr.v.Significance.DONT_CARE);
+
+    var boundaries = tr.v.HistogramBinBoundaries.createLinear(0, 100, 10);
+    var numericA = new tr.v.Histogram('', unitlessNumber_sIB, boundaries);
+    var numericB = new tr.v.Histogram('', unitlessNumber_sIB, boundaries);
+    for (var i = 0; i < 100; ++i) {
+      numericA.addSample(i);
+      numericB.addSample(i * 0.85);
+    }
+
+    assert.strictEqual(numericA.getDifferenceSignificance(numericB),
+        tr.v.Significance.INSIGNIFICANT);
+    assert.strictEqual(numericB.getDifferenceSignificance(numericA),
+        tr.v.Significance.INSIGNIFICANT);
+    assert.strictEqual(numericA.getDifferenceSignificance(numericB, 0.1),
+        tr.v.Significance.SIGNIFICANT);
+    assert.strictEqual(numericB.getDifferenceSignificance(numericA, 0.1),
+        tr.v.Significance.SIGNIFICANT);
+  });
+
+  test('numericBasic', function() {
+    var n = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+    assert.equal(n.getBinForValue(250).range.min, 200);
+    assert.equal(n.getBinForValue(250).range.max, 300);
+
+    n.addSample(-1, {foo: new tr.v.d.Generic('a')});
+    n.addSample(0, {foo: new tr.v.d.Generic('b')});
+    n.addSample(0, {foo: new tr.v.d.Generic('c')});
+    n.addSample(500, {foo: new tr.v.d.Generic('c')});
+    n.addSample(999, {foo: new tr.v.d.Generic('d')});
+    n.addSample(1000, {foo: new tr.v.d.Generic('d')});
+    assert.equal(n.underflowBin.count, 1);
+
+    assert.equal(n.getBinForValue(0).count, 2);
+    assert.deepEqual(
+        n.getBinForValue(0).diagnosticMaps.map(dm => dm.get('foo').value),
+        ['b', 'c']);
+
+    assert.equal(n.getBinForValue(500).count, 1);
+    assert.equal(n.getBinForValue(999).count, 1);
+
+    assert.equal(n.overflowBin.count, 1);
+    assert.equal(n.numValues, 6);
+    assert.closeTo(n.average, 416.3, 0.1);
+  });
+
+  test('numericNans', function() {
+    var n = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+
+    n.addSample(undefined, {foo: new tr.v.d.Generic('b')});
+    n.addSample(NaN, {'foo': new tr.v.d.Generic('c')});
+    n.addSample(undefined);
+    n.addSample(NaN);
+
+    assert.equal(n.numNans, 4);
+    assert.deepEqual(n.nanDiagnosticMaps.map(dm => dm.get('foo').value),
+                                             ['b', 'c']);
+
+    var n2 = n.clone();
+    assert.instanceOf(n2.nanDiagnosticMaps[0], tr.v.d.DiagnosticMap);
+    assert.instanceOf(n2.nanDiagnosticMaps[0].get('foo'), tr.v.d.Generic);
+  });
+
+  test('addHistogramsValid', function() {
+    var n0 = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+    var n1 = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+
+    n0.addSample(-1, {foo: new tr.v.d.Generic('a0')});
+    n0.addSample(0, {foo: new tr.v.d.Generic('b0')});
+    n0.addSample(0, {foo: new tr.v.d.Generic('c0')});
+    n0.addSample(500, {foo: new tr.v.d.Generic('c0')});
+    n0.addSample(1000, {foo: new tr.v.d.Generic('d0')});
+    n0.addSample(NaN, {foo: new tr.v.d.Generic('e0')});
+
+    n1.addSample(-1, {foo: new tr.v.d.Generic('a1')});
+    n1.addSample(0, {foo: new tr.v.d.Generic('b1')});
+    n1.addSample(0, {foo: new tr.v.d.Generic('c1')});
+    n1.addSample(999, {foo: new tr.v.d.Generic('d1')});
+    n1.addSample(1000, {foo: new tr.v.d.Generic('d1')});
+    n1.addSample(NaN, {foo: new tr.v.d.Generic('e1')});
+
+    n0.addHistogram(n1);
+
+    assert.equal(n0.numNans, 2);
+    assert.deepEqual(n0.nanDiagnosticMaps.map(dmd => dmd.get('foo').value),
+                     ['e0', 'e1']);
+
+    assert.equal(n0.underflowBin.count, 2);
+    assert.deepEqual(
+        n0.underflowBin.diagnosticMaps.map(dmd => dmd.get('foo').value),
+        ['a0', 'a1']);
+
+    assert.equal(n0.getBinForValue(0).count, 4);
+    assert.deepEqual(
+        n0.getBinForValue(0).diagnosticMaps.map(dmd => dmd.get('foo').value),
+        ['b0', 'c0', 'b1', 'c1']);
+
+    assert.equal(n0.getBinForValue(500).count, 1);
+    assert.deepEqual(
+        n0.getBinForValue(500).diagnosticMaps.map(dmd => dmd.get('foo').value),
+        ['c0']);
+
+    assert.equal(n0.getBinForValue(999).count, 1);
+    assert.deepEqual(
+        n0.getBinForValue(999).diagnosticMaps.map(dmd => dmd.get('foo').value),
+        ['d1']);
+
+    assert.equal(n0.overflowBin.count, 2);
+    assert.deepEqual(
+        n0.overflowBin.diagnosticMaps.map(dmd => dmd.get('foo').value),
+        ['d0', 'd1']);
+
+    assert.equal(n0.numValues, 10);
+    assert.closeTo(n0.average, 349.7, 0.1);
+
+    assert.equal(2, n0.maxCount);
+    assert.equal(2, n1.maxCount);
+
+    var n02 = n0.clone();
+    assert.instanceOf(n02.underflowBin.diagnosticMaps[0], tr.v.d.DiagnosticMap);
+    assert.instanceOf(n02.underflowBin.diagnosticMaps[0].get('foo'),
+                      tr.v.d.Generic);
+  });
+
+  test('addHistogramsInvalid', function() {
+    var n0 = new tr.v.Histogram('', tr.b.Unit.byName.timeDurationInMs,
+        tr.v.HistogramBinBoundaries.createLinear(0, 1000, 10));
+    var n1 = new tr.v.Histogram('', tr.b.Unit.byName.timeDurationInMs,
+        tr.v.HistogramBinBoundaries.createLinear(0, 1001, 10));
+    var n2 = new tr.v.Histogram('', tr.b.Unit.byName.timeDurationInMs,
+        tr.v.HistogramBinBoundaries.createLinear(0, 1000, 11));
+
+    assert.isFalse(n0.canAddHistogram(n1));
+    assert.isFalse(n0.canAddHistogram(n2));
+    assert.isFalse(n1.canAddHistogram(n0));
+    assert.isFalse(n1.canAddHistogram(n2));
+    assert.isFalse(n2.canAddHistogram(n0));
+    assert.isFalse(n2.canAddHistogram(n1));
+
+    assert.throws(n0.addHistogram.bind(n0, n1), Error);
+    assert.throws(n0.addHistogram.bind(n0, n2), Error);
+  });
+
+  test('addHistogramWithNonDiagnosticMapThrows', function() {
+    var n = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+    assert.throws(n.addSample.bind(42, 'foo'), Error);
+  });
+
+  test('numericPercentile', function() {
+    function check(array, min, max, bins, precision) {
+      var boundaries = tr.v.HistogramBinBoundaries.createLinear(min, max, bins);
+      var n = new tr.v.Histogram(
+          '', tr.b.Unit.byName.timeDurationInMs, boundaries);
+      array.forEach((x) => n.addSample(x, {foo: new tr.v.d.Generic('x')}));
+      [0.25, 0.5, 0.75, 0.8, 0.95, 0.99].forEach(function(percent) {
+        var expected = tr.b.Statistics.percentile(array, percent);
+        var actual = n.getApproximatePercentile(percent);
+        assert.closeTo(expected, actual, precision);
+      });
+    }
+    check([1, 2, 5, 7], 0.5, 10.5, 10, 1e-3);
+    check([3, 3, 4, 4], 0.5, 10.5, 10, 1e-3);
+    check([1, 10], 0.5, 10.5, 10, 1e-3);
+    check([1, 2, 3, 4, 5], 0.5, 10.5, 10, 1e-3);
+    check([3, 3, 3, 3, 3], 0.5, 10.5, 10, 1e-3);
+    check([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 0.5, 10.5, 10, 1e-3);
+    check([1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 10], 0.5, 10.5, 10, 1e-3);
+    check([0, 11], 0.5, 10.5, 10, 1);
+    check([0, 6, 11], 0.5, 10.5, 10, 1);
+    var array = [];
+    for (var i = 0; i < 1000; i++)
+      array.push((i * i) % 10 + 1);
+    check(array, 0.5, 10.5, 10, 1e-3);
+    // If the real percentile is outside the bin range then the approximation
+    // error can be high.
+    check([-10000], 0, 10, 10, 10000);
+    check([10000], 0, 10, 10, 10000 - 10);
+    // The result is no more than the bin width away from the real percentile.
+    check([1, 1], 0, 10, 1, 10);
+  });
+
+  test('histogramBinBoundaries_addBinBoundary', function() {
+    var b = new tr.v.HistogramBinBoundaries(-100);
+    b.addBinBoundary(50);
+
+    checkBoundaries(b, -100, 50, tr.b.Unit.byName.timeDurationInMs, [
+      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, -100),
+      tr.b.Range.fromExplicitRange(-100, 50),
+      tr.b.Range.fromExplicitRange(50, Number.MAX_VALUE)
+    ]);
+
+    b.addBinBoundary(60);
+    b.addBinBoundary(75);
+
+    checkBoundaries(b, -100, 75, tr.b.Unit.byName.timeDurationInMs, [
+      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, -100),
+      tr.b.Range.fromExplicitRange(-100, 50),
+      tr.b.Range.fromExplicitRange(50, 60),
+      tr.b.Range.fromExplicitRange(60, 75),
+      tr.b.Range.fromExplicitRange(75, Number.MAX_VALUE)
+    ]);
+  });
+
+  test('histogramBinBoundaries_addLinearBins', function() {
+    var b = new tr.v.HistogramBinBoundaries(1000);
+    b.addLinearBins(1200, 5);
+
+    checkBoundaries(b, 1000, 1200, tr.b.Unit.byName.powerInWatts, [
+      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, 1000),
+      tr.b.Range.fromExplicitRange(1000, 1040),
+      tr.b.Range.fromExplicitRange(1040, 1080),
+      tr.b.Range.fromExplicitRange(1080, 1120),
+      tr.b.Range.fromExplicitRange(1120, 1160),
+      tr.b.Range.fromExplicitRange(1160, 1200),
+      tr.b.Range.fromExplicitRange(1200, Number.MAX_VALUE)
+    ]);
+  });
+
+  test('histogramBinBoundaries_addExponentialBins', function() {
+    var b = new tr.v.HistogramBinBoundaries(0.5);
+    b.addExponentialBins(8, 4);
+
+    checkBoundaries(b, 0.5, 8, tr.b.Unit.byName.energyInJoules, [
+      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, 0.5),
+      tr.b.Range.fromExplicitRange(0.5, 1),
+      tr.b.Range.fromExplicitRange(1, 2),
+      tr.b.Range.fromExplicitRange(2, 4),
+      tr.b.Range.fromExplicitRange(4, 8),
+      tr.b.Range.fromExplicitRange(8, Number.MAX_VALUE)
+    ]);
+  });
+
+  test('histogramBinBoundaries_combined', function() {
+    var b = new tr.v.HistogramBinBoundaries(-273.15);
+    b.addBinBoundary(-50);
+    b.addLinearBins(4, 3);
+    b.addExponentialBins(16, 2);
+    b.addLinearBins(17, 4);
+    b.addBinBoundary(100);
+
+    checkBoundaries(b, -273.15, 100, tr.b.Unit.byName.unitlessNumber, [
+      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, -273.15),
+      tr.b.Range.fromExplicitRange(-273.15, -50),
+      tr.b.Range.fromExplicitRange(-50, -32),
+      tr.b.Range.fromExplicitRange(-32, -14),
+      tr.b.Range.fromExplicitRange(-14, 4),
+      tr.b.Range.fromExplicitRange(4, 8),
+      tr.b.Range.fromExplicitRange(8, 16),
+      tr.b.Range.fromExplicitRange(16, 16.25),
+      tr.b.Range.fromExplicitRange(16.25, 16.5),
+      tr.b.Range.fromExplicitRange(16.5, 16.75),
+      tr.b.Range.fromExplicitRange(16.75, 17),
+      tr.b.Range.fromExplicitRange(17, 100),
+      tr.b.Range.fromExplicitRange(100, Number.MAX_VALUE)
+    ]);
+  });
+
+  test('histogramBinBoundaries_throws', function() {
+    var b0 = new tr.v.HistogramBinBoundaries(-7);
+    assert.throws(function() { b0.addBinBoundary(-10 /* must be > -7 */); });
+    assert.throws(function() { b0.addBinBoundary(-7 /* must be > -7 */); });
+    assert.throws(function() { b0.addLinearBins(-10 /* must be > -7 */, 10); });
+    assert.throws(function() { b0.addLinearBins(-7 /* must be > -7 */, 100); });
+    assert.throws(function() { b0.addLinearBins(10, 0 /* must be > 0 */); });
+    assert.throws(function() {
+      // Current max bin boundary (-7) must be positive.
+      b0.addExponentialBins(16, 4);
+    });
+
+    var b1 = new tr.v.HistogramBinBoundaries(8);
+    assert.throws(() => b1.addExponentialBins(20, 0 /* must be > 0 */));
+    assert.throws(() => b1.addExponentialBins(5 /* must be > 8 */, 3));
+    assert.throws(() => b1.addExponentialBins(8 /* must be > 8 */, 3));
+  });
+
+  test('statisticsScalars', function() {
+    var boundaries = tr.v.HistogramBinBoundaries.createLinear(0, 100, 100);
+    var n = new tr.v.Histogram('', unitlessNumber, boundaries);
+
+    n.addSample(50);
+    n.addSample(60);
+    n.addSample(70);
+    n.addSample('i am not a number');
+
+    n.customizeSummaryOptions({
+      count: true,
+      min: true,
+      max: true,
+      sum: true,
+      avg: true,
+      std: true,
+      nans: true,
+      geometricMean: true,
+      percentile: [0.5, 1]
+    });
+
+    var stats = n.statisticsScalars;
+    assert.strictEqual(stats.get('nans').unit,
+        tr.b.Unit.byName.count_smallerIsBetter);
+    assert.strictEqual(stats.get('nans').value, 1);
+    assert.strictEqual(stats.get('count').unit,
+        tr.b.Unit.byName.count_smallerIsBetter);
+    assert.strictEqual(stats.get('count').value, 3);
+    assert.strictEqual(stats.get('min').unit, n.unit);
+    assert.strictEqual(stats.get('min').value, 50);
+    assert.strictEqual(stats.get('max').unit, n.unit);
+    assert.strictEqual(stats.get('max').value, 70);
+    assert.strictEqual(stats.get('sum').unit, n.unit);
+    assert.strictEqual(stats.get('sum').value, 180);
+    assert.strictEqual(stats.get('avg').unit, n.unit);
+    assert.strictEqual(stats.get('avg').value, 60);
+    assert.strictEqual(stats.get('std').value, 10);
+    assert.strictEqual(stats.get('pct_050').unit, n.unit);
+    assert.closeTo(stats.get('pct_050').value, 60, 1);
+    assert.strictEqual(stats.get('pct_100').unit, n.unit);
+    assert.closeTo(stats.get('pct_100').value, 70, 1);
+    assert.strictEqual(stats.get('geometricMean').unit, n.unit);
+    assert.closeTo(stats.get('geometricMean').value, 59.439, 1e-3);
+  });
+
+  test('statisticsScalarsNoSummaryOptions', function() {
+    var boundaries = tr.v.HistogramBinBoundaries.createLinear(0, 100, 100);
+    var n = new tr.v.Histogram('', unitlessNumber, boundaries);
+
+    n.addSample(50);
+    n.addSample(60);
+    n.addSample(70);
+
+    n.customizeSummaryOptions({
+      count: false,
+      min: false,
+      max: false,
+      sum: false,
+      avg: false,
+      std: false,
+      percentile: []
+    });
+
+    assert.strictEqual(n.statisticsScalars.size, 0);
+  });
+
+  test('statisticsScalarsEmptyNumericValue', function() {
+    var boundaries = tr.v.HistogramBinBoundaries.createLinear(0, 100, 100);
+    var n = new tr.v.Histogram('', unitlessNumber, boundaries);
+    n.customizeSummaryOptions({
+      count: true,
+      min: true,
+      max: true,
+      sum: true,
+      avg: true,
+      std: true,
+      percentile: [0, 0.01, 0.1, 0.5, 0.995, 1]
+    });
+
+    var stats = n.statisticsScalars;
+    assert.strictEqual(stats.get('count').value, 0);
+    assert.strictEqual(stats.get('min').value, Infinity);
+    assert.strictEqual(stats.get('max').value, -Infinity);
+    assert.strictEqual(stats.get('sum').value, 0);
+    assert.strictEqual(stats.get('avg'), undefined);
+    assert.strictEqual(stats.get('std'), undefined);
+    assert.strictEqual(stats.get('pct_000').value, 0);
+    assert.strictEqual(stats.get('pct_001').value, 0);
+    assert.strictEqual(stats.get('pct_010').value, 0);
+    assert.strictEqual(stats.get('pct_050').value, 0);
+    assert.strictEqual(stats.get('pct_099_5').value, 0);
+    assert.strictEqual(stats.get('pct_100').value, 0);
+  });
+
+  test('sampleValues', function() {
+    var n0 = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+    var n1 = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+    // maxNumSampleValues defaults to numBins * 10, which, including the
+    // underflowBin and overflowBin plus this builder's 10 central bins,
+    // is 12 * 10.
+    assert.strictEqual(n0.maxNumSampleValues, 120);
+    assert.strictEqual(n1.maxNumSampleValues, 120);
+    var values0 = [];
+    var values1 = [];
+    for (var i = 0; i < 10; ++i) {
+      values0.push(i);
+      n0.addSample(i);
+    }
+    for (var i = 10; i < 20; ++i) {
+      values1.push(i);
+      n1.addSample(i);
+    }
+    assert.deepEqual(n0.sampleValues, values0);
+    assert.deepEqual(n1.sampleValues, values1);
+    n0.addHistogram(n1);
+    assert.deepEqual(n0.sampleValues, values0.concat(values1));
+    var n2 = n0.clone();
+    assert.deepEqual(n2.sampleValues, values0.concat(values1));
+
+    for (var i = 0; i < 200; ++i)
+      n0.addSample(i);
+    assert.strictEqual(n0.sampleValues.length, n0.maxNumSampleValues);
+
+    var n3 = new tr.v.Histogram('', unitlessNumber, TEST_BOUNDARIES);
+    n3.maxNumSampleValues = 10;
+    for (var i = 0; i < 100; ++i)
+      n3.addSample(i);
+    assert.strictEqual(n3.sampleValues.length, 10);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/value/numeric.html b/catapult/tracing/tracing/value/numeric.html
index 5ec289c..f2ba39b 100644
--- a/catapult/tracing/tracing/value/numeric.html
+++ b/catapult/tracing/tracing/value/numeric.html
@@ -6,66 +6,24 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/base/range.html">
-<link rel="import" href="/tracing/base/running_statistics.html">
-<link rel="import" href="/tracing/base/sorted_array_utils.html">
-<link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.v', function() {
-  var Range = tr.b.Range;
-
   var MAX_DIAGNOSTIC_MAPS = 16;
 
-  // p-values less than this indicate statistical significance.
-  var DEFAULT_ALPHA = 0.05;
+  class NumericBase {
+    constructor(unit) {
+      if (!(unit instanceof tr.b.Unit))
+        throw new Error('Expected provided unit to be instance of Unit');
 
-  /** @enum */
-  var Significance = {
-    DONT_CARE: -1,
-    INSIGNIFICANT: 0,
-    SIGNIFICANT: 1
-  };
+      this.unit = unit;
+    }
 
-  function NumericBase(unit) {
-    if (!(unit instanceof tr.v.Unit))
-      throw new Error('Expected provided unit to be instance of Unit');
-
-    this.unit = unit;
-  }
-
-  NumericBase.prototype = {
-    merge: function(other) {
-      if (this.unit !== other.unit)
-        throw new Error('Merging Numerics with different units');
-
-      // Two Numerics that were built using the same NumericBuilder
-      // can be merged using addNumeric().
-      if (this instanceof Numeric && other instanceof Numeric &&
-          this.canAddNumeric(other)) {
-        var result = this.clone();
-        result.addNumeric(other.clone());
-        return result;
-      }
-
-      // Either a Scalar and a Numeric, or two Scalars...
-      // or two Numerics that were not built using the same NumericBuilder,
-      // should be built from their raw samples.
-      var samples = [];
-      this.sampleValuesInto(samples);
-      other.sampleValuesInto(samples);
-      return Numeric.buildFromSamples(this.unit, samples);
-    },
-
-    sampleValuesInto: function(samples) {
-      throw new Error('Not implemented');
-    },
-
-    asDict: function() {
+    asDict() {
       var d = {
         unit: this.unit.asJSON()
       };
@@ -73,755 +31,28 @@
       this.asDictInto_(d);
       return d;
     }
-  };
 
-  NumericBase.fromDict = function(d) {
-    if (d.type === 'scalar')
-      return ScalarNumeric.fromDict(d);
+    static fromDict(d) {
+      if (d.type === 'scalar')
+        return ScalarNumeric.fromDict(d);
 
-    if (d.type === 'numeric')
-      return Numeric.fromDict(d);
-
-    throw new Error('Not implemented');
-  };
-
-  function NumericBin(parentNumeric, opt_range) {
-    this.parentNumeric = parentNumeric;
-    this.range = opt_range || (new tr.b.Range());
-    this.count = 0;
-    this.diagnosticMaps = [];
+      throw new Error('Not implemented');
+    }
   }
 
-  NumericBin.fromDict = function(parentNumeric, d) {
-    var n = new NumericBin(parentNumeric);
-    n.range.min = d.min;
-    n.range.max = d.max;
-    n.count = d.count;
-    if (d.diagnosticMaps)
-      n.diagnosticMaps = d.diagnosticMaps.map(
-          dmd => tr.v.d.DiagnosticMap.fromDict(dmd));
-    return n;
-  };
+  class ScalarNumeric extends NumericBase {
+    constructor(unit, value) {
+      if (!(unit instanceof tr.b.Unit))
+        throw new Error('Expected Unit');
 
-  NumericBin.prototype = {
-    /**
-     * @param {*} value
-     * @param {!tr.v.d.DiagnosticMap=} opt_diagnosticMap
-     */
-    add: function(value, opt_diagnosticMap) {
-      if ((opt_diagnosticMap !== undefined) &&
-          !(opt_diagnosticMap instanceof tr.v.d.DiagnosticMap))
-        throw new Error('Can\'t add a sample with a non-DiagnosticMap');
-      this.count += 1;
-      if (opt_diagnosticMap) {
-        tr.b.Statistics.uniformlySampleStream(
-            this.diagnosticMaps, this.count, opt_diagnosticMap,
-            MAX_DIAGNOSTIC_MAPS);
-      }
-    },
+      if (!(typeof(value) == 'number'))
+        throw new Error('Expected value to be number');
 
-    addBin: function(other) {
-      if (!this.range.equals(other.range))
-        throw new Error('Merging incompatible Numeric bins.');
-      tr.b.Statistics.mergeSampledStreams(this.diagnosticMaps, this.count,
-          other.diagnosticMaps, other.count, MAX_DIAGNOSTIC_MAPS);
-      this.count += other.count;
-    },
-
-    asDict: function() {
-      return {
-        min: this.range.min,
-        max: this.range.max,
-        count: this.count,
-        diagnosticMaps: this.diagnosticMaps.map(d => d.asDict())
-      };
-    },
-
-    asJSON: function() {
-      return this.asDict();
+      super(unit);
+      this.value = value;
     }
-  };
 
-  function Numeric(unit, range, binInfo) {
-    NumericBase.call(this, unit);
-
-    this.range = range;
-
-    this.numNans = 0;
-    this.nanDiagnosticMaps = [];
-
-    this.running = new tr.b.RunningStatistics();
-    this.maxCount_ = 0;
-
-    this.underflowBin = binInfo.underflowBin;
-    this.centralBins = binInfo.centralBins;
-    this.overflowBin = binInfo.overflowBin;
-
-    this.allBins = [];
-    this.allBins.push(this.underflowBin);
-    this.allBins.push.apply(this.allBins, this.centralBins);
-    this.allBins.push(this.overflowBin);
-
-    this.allBins.forEach(function(bin) {
-      if (bin.count > this.maxCount_)
-        this.maxCount_ = bin.count;
-    }, this);
-
-    this.sampleValues_ = [];
-    this.maxNumSampleValues = this.allBins.length * 10;
-
-    this.summaryOptions = this.defaultSummaryOptions();
-  }
-
-  Numeric.fromDict = function(d) {
-    var range = Range.fromExplicitRange(d.min, d.max);
-    var binInfo = {};
-    binInfo.underflowBin = NumericBin.fromDict(undefined, d.underflowBin);
-    binInfo.centralBins = d.centralBins.map(function(binAsDict) {
-      return NumericBin.fromDict(undefined, binAsDict);
-    });
-    binInfo.overflowBin = NumericBin.fromDict(undefined, d.overflowBin);
-    var n = new Numeric(tr.v.Unit.fromJSON(d.unit), range, binInfo);
-    n.allBins.forEach(function(bin) {
-      bin.parentNumeric = n;
-    });
-    if (d.running)
-      n.running = tr.b.RunningStatistics.fromDict(d.running);
-    if (d.summaryOptions)
-      n.customizeSummaryOptions(d.summaryOptions);
-    n.numNans = d.numNans;
-    if (d.nanDiagnosticMaps) {
-      n.nanDiagnosticMaps = d.nanDiagnosticMaps.map(
-          dmd => tr.v.d.DiagnosticMap.fromDict(dmd));
-    }
-    n.maxNumSampleValues = d.maxNumSampleValues;
-    n.sampleValues_ = d.sampleValues;
-    return n;
-  };
-
-  /**
-   * @param {!tr.v.Unit} unit
-   * @param {!Array.<number>} samples
-   * @return {!Numeric}
-   */
-  Numeric.buildFromSamples = function(unit, samples) {
-    var range = new tr.b.Range();
-    // Prevent non-numeric samples from introducing NaNs into the range.
-    for (var sample of samples)
-      if (!isNaN(Math.max(sample)))
-        range.addValue(sample);
-
-    // NumericBuilder.addLinearBins() requires this.
-    if (range.isEmpty)
-      range.addValue(1);
-    if (range.min === range.max)
-      range.addValue(range.min - 1);
-
-    // This optimizes the resolution when samples are uniformly distributed
-    // (which is almost never the case).
-    var numBins = Math.ceil(Math.sqrt(samples.length));
-    var builder = new NumericBuilder(unit, range.min);
-    builder.addLinearBins(range.max, numBins);
-
-    var result = builder.build();
-    result.maxNumSampleValues = 1000;
-
-    // TODO(eakuefner): Propagate diagnosticMaps?
-    for (var sample of samples)
-      result.add(sample);
-
-    return result;
-  };
-
-  Numeric.prototype = {
-    __proto__: NumericBase.prototype,
-
-    get numValues() {
-      return tr.b.Statistics.sum(this.allBins, function(e) {
-        return e.count;
-      });
-    },
-
-    get average() {
-      return this.running.mean;
-    },
-
-    get sum() {
-      return this.running.sum;
-    },
-
-    get maxCount() {
-      return this.maxCount_;
-    },
-
-    /**
-     * Requires that units agree.
-     * Returns DONT_CARE if that is the units' improvementDirection.
-     * Returns SIGNIFICANT if the Mann-Whitney U test returns a
-     * p-value less than opt_alpha or DEFAULT_ALPHA. Returns INSIGNIFICANT if
-     * the p-value is greater than alpha.
-     *
-     * @param {!tr.v.Numeric} other
-     * @param {number=} opt_alpha
-     * @return {!tr.v.Significance}
-     */
-    getDifferenceSignificance: function(other, opt_alpha) {
-      if (this.unit !== other.unit)
-        throw new Error('Cannot compare Numerics with different units');
-
-      if (this.unit.improvementDirection ===
-          tr.v.ImprovementDirection.DONT_CARE) {
-        return tr.v.Significance.DONT_CARE;
-      }
-
-      if (!(other instanceof Numeric))
-        throw new Error('Unable to compute a p-value');
-
-      var mwu = tr.b.Statistics.mwu.test(this.sampleValues, other.sampleValues);
-      if (mwu.p < (opt_alpha || DEFAULT_ALPHA))
-        return tr.v.Significance.SIGNIFICANT;
-      return tr.v.Significance.INSIGNIFICANT;
-    },
-
-    /*
-     * Compute an approximation of percentile based on the counts in the bins.
-     * If the real percentile lies within |this.range| then the result of
-     * the function will deviate from the real percentile by at most
-     * the maximum width of the bin(s) within which the point(s)
-     * from which the real percentile would be calculated lie.
-     * If the real percentile is outside |this.range| then the function
-     * returns the closest range limit: |this.range.min| or |this.range.max|.
-     *
-     * @param {number} percent The percent must be between 0.0 and 1.0.
-     */
-    getApproximatePercentile: function(percent) {
-      if (!(percent >= 0 && percent <= 1))
-        throw new Error('percent must be [0,1]');
-      if (this.numValues == 0)
-        return 0;
-      var valuesToSkip = Math.floor((this.numValues - 1) * percent);
-      for (var i = 0; i < this.allBins.length; i++) {
-        var bin = this.allBins[i];
-        valuesToSkip -= bin.count;
-        if (valuesToSkip < 0) {
-          if (bin === this.underflowBin)
-            return bin.range.max;
-          else if (bin === this.overflowBin)
-            return bin.range.min;
-          else
-            return bin.range.center;
-        }
-      }
-      throw new Error('Unreachable');
-    },
-
-    getInterpolatedCountAt: function(value) {
-      var bin = this.getBinForValue(value);
-      var idx = this.centralBins.indexOf(bin);
-      if (idx < 0) {
-        // |value| is in either the underflowBin or the overflowBin.
-        // We can't interpolate between infinities.
-        return bin.count;
-      }
-
-      // |value| must fall between the centers of two bins.
-      // The bin whose center is less than |value| will be this:
-      var lesserBin = bin;
-
-      // The bin whose center is greater than |value| will be this:
-      var greaterBin = bin;
-
-      // One of those bins could be an under/overflow bin.
-      // Avoid dealing with Infinities by arbitrarily saying that center of the
-      // underflow bin is its range.max, and the center of the overflow bin is
-      // its range.min.
-      // The centers of bins in |this.centralBins| will default to their
-      // |range.center|.
-
-      var lesserBinCenter = undefined;
-      var greaterBinCenter = undefined;
-
-      if (value < greaterBin.range.center) {
-        if (idx > 0) {
-          lesserBin = this.centralBins[idx - 1];
-        } else {
-          lesserBin = this.underflowBin;
-          lesserBinCenter = lesserBin.range.max;
-        }
-      } else {
-        if (idx < (this.centralBins.length - 1)) {
-          greaterBin = this.centralBins[idx + 1];
-        } else {
-          greaterBin = this.overflowBin;
-          greaterBinCenter = greaterBin.range.min;
-        }
-      }
-
-      if (greaterBinCenter === undefined)
-        greaterBinCenter = greaterBin.range.center;
-
-      if (lesserBinCenter === undefined)
-        lesserBinCenter = lesserBin.range.center;
-
-      value = tr.b.normalize(value, lesserBinCenter, greaterBinCenter);
-
-      return tr.b.lerp(value, lesserBin.count, greaterBin.count);
-    },
-
-    getBinForValue: function(value) {
-      // Don't use subtraction to avoid arithmetic overflow.
-      var binIndex = tr.b.findHighIndexInSortedArray(
-          this.allBins, b => value < b.range.max ? -1 : 1);
-      return this.allBins[binIndex] || this.overflowBin;
-    },
-
-    /**
-     * @param {*} value
-     * @param {!tr.v.d.DiagnosticMap=} opt_diagnosticMap
-     */
-    add: function(value, opt_diagnosticMap) {
-      if ((opt_diagnosticMap !== undefined) &&
-          !(opt_diagnosticMap instanceof tr.v.d.DiagnosticMap))
-        throw new Error('Can\'t add a sample with a non-DiagnosticMap');
-      if (typeof(value) !== 'number' || isNaN(value)) {
-        this.numNans++;
-        if (opt_diagnosticMap) {
-          tr.b.Statistics.uniformlySampleStream(this.nanDiagnosticMaps,
-              this.numNans, opt_diagnosticMap, MAX_DIAGNOSTIC_MAPS);
-        }
-      } else {
-        var bin = this.getBinForValue(value);
-        bin.add(value, opt_diagnosticMap);
-        this.running.add(value);
-        if (bin.count > this.maxCount_)
-          this.maxCount_ = bin.count;
-      }
-
-      tr.b.Statistics.uniformlySampleStream(this.sampleValues_,
-          this.numValues + this.numNans, value, this.maxNumSampleValues);
-    },
-
-    sampleValuesInto: function(samples) {
-      for (var sampleValue of this.sampleValues)
-        samples.push(sampleValue);
-    },
-
-    /**
-     * Return true if this Numeric can be added to |other|.
-     *
-     * @param {!tr.v.Numeric} other
-     * @return {boolean}
-     */
-    canAddNumeric: function(other) {
-      if (!this.range.equals(other.range))
-        return false;
-      if (this.unit !== other.unit)
-        return false;
-      if (this.allBins.length !== other.allBins.length)
-        return false;
-
-      for (var i = 0; i < this.allBins.length; ++i)
-        if (!this.allBins[i].range.equals(other.allBins[i].range))
-          return false;
-
-      return true;
-    },
-
-    /**
-     * Add |other| to this Numeric in-place if they can be added.
-     *
-     * @param {!tr.v.Numeric} other
-     */
-    addNumeric: function(other) {
-      if (!this.canAddNumeric(other))
-        throw new Error('Merging incompatible Numerics.');
-
-      tr.b.Statistics.mergeSampledStreams(this.nanDiagnosticMaps, this.numNans,
-          other.nanDiagnosticMaps, other.numNans, MAX_DIAGNOSTIC_MAPS);
-      tr.b.Statistics.mergeSampledStreams(
-          this.sampleValues, this.numValues,
-          other.sampleValues, other.numValues, tr.b.Statistics.mean(
-              [this.maxNumSampleValues, other.maxNumSampleValues]));
-      this.numNans += other.numNans;
-      this.running = this.running.merge(other.running);
-      for (var i = 0; i < this.allBins.length; ++i) {
-        this.allBins[i].addBin(other.allBins[i]);
-      }
-    },
-
-    /**
-     * Controls which statistics are exported to dashboard for this numeric.
-     * The |summaryOptions| parameter is a dictionary with optional boolean
-     * fields |count|, |sum|, |avg|, |std|, |min|, |max| and an optional
-     * array field |percentile|.
-     * Each percentile should be a number between 0.0 and 1.0.
-     * The options not included in the |summaryOptions| will not change.
-     */
-    customizeSummaryOptions: function(summaryOptions) {
-      tr.b.iterItems(summaryOptions, function(key, value) {
-        this.summaryOptions[key] = value;
-      }, this);
-    },
-
-    defaultSummaryOptions: function() {
-      return {
-        count: true,
-        sum: true,
-        avg: true,
-        std: true,
-        min: true,
-        max: true,
-        nans: false,
-        percentile: []
-      };
-    },
-
-    /**
-     * Returns an array of {name: string, scalar: ScalarNumeric} values.
-     * Each enabled summary option produces the corresponding value:
-     * min, max, count, sum, avg, or std.
-     * Each percentile 0.x produces pct_0x0.
-     * Each percentile 0.xx produces pct_0xx.
-     * Each percentile 0.xxy produces pct_0xx_y.
-     * Percentile 1.0 produces pct_100.
-     */
-    getSummarizedScalarNumericsWithNames: function() {
-      function statNameToKey(stat) {
-        switch (stat) {
-          case 'std':
-            return 'stddev';
-          case 'avg':
-            return 'mean';
-        }
-        return stat;
-      }
-      /**
-       * Converts the given percent to a string in the format specified above.
-       * @param {number} percent The percent must be between 0.0 and 1.0.
-       */
-      function percentToString(percent) {
-        if (percent < 0 || percent > 1)
-          throw new Error('Percent must be between 0.0 and 1.0');
-        switch (percent) {
-          case 0:
-            return '000';
-          case 1:
-            return '100';
-        }
-        var str = percent.toString();
-        if (str[1] !== '.')
-          throw new Error('Unexpected percent');
-        // Pad short strings with zeros.
-        str = str + '0'.repeat(Math.max(4 - str.length, 0));
-        if (str.length > 4)
-          str = str.slice(0, 4) + '_' + str.slice(4);
-        return '0' + str.slice(2);
-      }
-
-      var results = [];
-      tr.b.iterItems(this.summaryOptions, function(stat, option) {
-        if (!option)
-          return;
-        if (stat === 'percentile') {
-          option.forEach(function(percent) {
-            var percentile = this.getApproximatePercentile(percent);
-            results.push({
-                name: 'pct_' + percentToString(percent),
-                scalar: new tr.v.ScalarNumeric(this.unit, percentile)
-            });
-          }, this);
-        } else if (stat === 'nans') {
-          results.push({
-            name: 'nans',
-            scalar: new tr.v.ScalarNumeric(
-                tr.v.Unit.byName.count_smallerIsBetter, this.numNans)
-          });
-        } else {
-          var statUnit = stat === 'count' ?
-              tr.v.Unit.byName.count_smallerIsBetter : this.unit;
-          var key = statNameToKey(stat);
-          var statValue = this.running[key];
-          if (typeof(statValue) === 'number') {
-            results.push({
-                name: stat,
-                scalar: new tr.v.ScalarNumeric(statUnit, statValue)
-            });
-          }
-        }
-      }, this);
-      return results;
-    },
-
-    get sampleValues() {
-      return this.sampleValues_;
-    },
-
-    clone: function() {
-      return Numeric.fromDict(this.asDict());
-    },
-
-    asDict: function() {
-      var d = {
-        unit: this.unit.asJSON(),
-        type: 'numeric',
-
-        min: this.range.min,
-        max: this.range.max,
-
-        numNans: this.numNans,
-        nanDiagnosticMaps: this.nanDiagnosticMaps.map(dm => dm.asDict()),
-
-        running: this.running.asDict(),
-        summaryOptions: this.summaryOptions,
-
-        sampleValues: this.sampleValues,
-        maxNumSampleValues: this.maxNumSampleValues,
-        underflowBin: this.underflowBin.asDict(),
-        centralBins: this.centralBins.map(function(bin) {
-          return bin.asDict();
-        }),
-        overflowBin: this.overflowBin.asDict()
-      };
-      return d;
-    },
-
-    asJSON: function() {
-      return this.asDict();
-    }
-  };
-
-  /**
-   * Reusable builder for tr.v.Numeric objects.
-   *
-   * The bins of the numeric are specified by adding the desired boundaries
-   * between bins. Initially, the builder has only a single boundary:
-   *
-   *       minBinBoundary=maxBinBoundary
-   *                     |
-   *                     |
-   *   -MAX_INT <--------|------------------------------------------> +MAX_INT
-   *       :  resulting  :                   resulting                    :
-   *       :  underflow  :                    overflow                    :
-   *       :     bin     :                      bin                       :
-   *
-   * More boundaries can be added (in increasing order) using addBinBoundary,
-   * addLinearBins and addExponentialBins:
-   *
-   *              minBinBoundary                      maxBinBoundary
-   *                     |         |         |     |         |
-   *                     |         |         |     |         |
-   *   -MAX_INT <--------|---------|---------|-----|---------|------> +MAX_INT
-   *       :  resulting  : result. : result. :     : result. : resulting  :
-   *       :  underflow  : central : central : ... : central :  overflow  :
-   *       :     bin     :  bin 0  :  bin 1  :     : bin N-1 :    bin     :
-   *
-   * An important feature of the builder is that it's reusable, i.e. it can be
-   * used to build multiple numerics with the same unit and bin structure.
-   *
-   * @constructor
-   * @param {!tr.v.Unit} unit Unit of the resulting Numeric(s).
-   * @param {number} minBinBoundary The minimum boundary between bins, namely
-   *     the underflow bin and the first central bin (or the overflow bin if
-   *     no other boundaries are added later).
-   */
-  function NumericBuilder(unit, minBinBoundary) {
-    this.unit_ = unit;
-    this.boundaries_ = [minBinBoundary];
-  }
-
-  NumericBuilder.prototype = {
-    get minBinBoundary() {
-      return this.boundaries_[0];
-    },
-
-    get maxBinBoundary() {
-      return this.boundaries_[this.boundaries_.length - 1];
-    },
-
-    /**
-     * Add a bin boundary |nextMaxBinBoundary| to the builder.
-     *
-     * This operation effectively corresponds to appending a new central bin
-     * with the range [this.maxBinBoundary*, nextMaxBinBoundary].
-     *
-     * @param {number} nextMaxBinBoundary The added bin boundary (must be
-     *     greater than |this.maxMinBoundary|).
-     */
-    addBinBoundary: function(nextMaxBinBoundary) {
-      if (nextMaxBinBoundary <= this.maxBinBoundary) {
-        throw new Error('The added max bin boundary must be larger than ' +
-            'the current max boundary');
-      }
-      this.boundaries_.push(nextMaxBinBoundary);
-
-      return this;
-    },
-
-    /**
-     * Add |binCount| linearly scaled bin boundaries up to |nextMaxBinBoundary|
-     * to the builder.
-     *
-     * This operation corresponds to appending |binCount| central bins of
-     * constant range width
-     * W = ((|nextMaxBinBoundary| - |this.maxBinBoundary|) / |binCount|)
-     * with the following ranges:
-     *
-     *   [|this.maxMinBoundary|, |this.maxMinBoundary| + W]
-     *   [|this.maxMinBoundary| + W, |this.maxMinBoundary| + 2W]
-     *   [|this.maxMinBoundary| + 2W, |this.maxMinBoundary| + 3W]
-     *   ...
-     *   [|this.maxMinBoundary| + (|binCount| - 2) * W,
-     *    |this.maxMinBoundary| + (|binCount| - 2) * W]
-     *   [|this.maxMinBoundary| + (|binCount| - 1) * W,
-     *    |nextMaxBinBoundary|]
-     *
-     * @param {number} nextBinBoundary The last added bin boundary (must be
-     *     greater than |this.maxMinBoundary|).
-     * @param {number} binCount Number of bins to be added (must be positive).
-     */
-    addLinearBins: function(nextMaxBinBoundary, binCount) {
-      if (binCount <= 0)
-        throw new Error('Bin count must be positive');
-
-      var curMaxBinBoundary = this.maxBinBoundary;
-      if (curMaxBinBoundary >= nextMaxBinBoundary) {
-        throw new Error('The new max bin boundary must be greater than ' +
-            'the previous max bin boundary');
-      }
-
-      var binWidth = (nextMaxBinBoundary - curMaxBinBoundary) / binCount;
-      for (var i = 1; i < binCount; i++)
-        this.addBinBoundary(curMaxBinBoundary + i * binWidth);
-      this.addBinBoundary(nextMaxBinBoundary);
-
-      return this;
-    },
-
-    /**
-     * Add |binCount| exponentially scaled bin boundaries up to
-     * |nextMaxBinBoundary| to the builder.
-     *
-     * This operation corresponds to appending |binCount| central bins with
-     * a constant difference between the logarithms of their range min and max
-     * D = ((ln(|nextMaxBinBoundary|) - ln(|this.maxBinBoundary|)) / |binCount|)
-     * with the following ranges:
-     *
-     *   [|this.maxMinBoundary|, |this.maxMinBoundary| * exp(D)]
-     *   [|this.maxMinBoundary| * exp(D), |this.maxMinBoundary| * exp(2D)]
-     *   [|this.maxMinBoundary| * exp(2D), |this.maxMinBoundary| * exp(3D)]
-     *   ...
-     *   [|this.maxMinBoundary| * exp((|binCount| - 2) * D),
-     *    |this.maxMinBoundary| * exp((|binCount| - 2) * D)]
-     *   [|this.maxMinBoundary| * exp((|binCount| - 1) * D),
-     *    |nextMaxBinBoundary|]
-     *
-     * This method requires that the current max bin boundary is positive.
-     *
-     * @param {number} nextBinBoundary The last added bin boundary (must be
-     *     greater than |this.maxMinBoundary|).
-     * @param {number} binCount Number of bins to be added (must be positive).
-     */
-    addExponentialBins: function(nextMaxBinBoundary, binCount) {
-      if (binCount <= 0)
-        throw new Error('Bin count must be positive');
-
-      var curMaxBinBoundary = this.maxBinBoundary;
-      if (curMaxBinBoundary <= 0)
-        throw new Error('Current max bin boundary must be positive');
-      if (curMaxBinBoundary >= nextMaxBinBoundary) {
-        throw new Error('The last added max boundary must be greater than ' +
-            'the current max boundary boundary');
-      }
-
-      var binExponentWidth =
-          Math.log(nextMaxBinBoundary / curMaxBinBoundary) / binCount;
-      for (var i = 1; i < binCount; i++) {
-        this.addBinBoundary(
-            curMaxBinBoundary * Math.exp(i * binExponentWidth));
-      }
-      this.addBinBoundary(nextMaxBinBoundary);
-
-      return this;
-    },
-
-    /**
-     * Build a tr.v.Numeric from the list of bin boundaries.
-     *
-     * As explained earlier, this method can be called arbitrarily many times
-     * to produce arbitrarily many distinct numerics.
-     */
-    build: function() {
-      var binInfo = {
-        underflowBin: new NumericBin(undefined,
-            Range.fromExplicitRange(-Number.MAX_VALUE, this.minBinBoundary)),
-        overflowBin: new NumericBin(undefined,
-            Range.fromExplicitRange(this.maxBinBoundary, Number.MAX_VALUE)),
-        centralBins: new Array(this.boundaries_.length - 1)
-      };
-      for (var i = 0; i < this.boundaries_.length - 1; i++) {
-        binInfo.centralBins[i] = new NumericBin(undefined,
-            Range.fromExplicitRange(
-                this.boundaries_[i], this.boundaries_[i + 1]));
-      }
-
-      var numeric = new Numeric(
-          this.unit_,
-          Range.fromExplicitRange(this.minBinBoundary, this.maxBinBoundary),
-          binInfo);
-      numeric.allBins.forEach(function(bin) {
-        bin.parentNumeric = numeric;
-      });
-      return numeric;
-    }
-  };
-
-  /**
-   * Create a linearly scaled tr.v.NumericBuilder with |numBins| bins ranging
-   * from |range.min| to |range.max|.
-   *
-   * @param {!tr.v.Unit} unit
-   * @param {!tr.b.Range} range
-   * @param {number} numBins
-   * @return {tr.v.NumericBuilder}
-   */
-  NumericBuilder.createLinear = function(unit, range, numBins) {
-    if (range.isEmpty)
-      throw new Error('Range must be non-empty');
-    return new NumericBuilder(unit, range.min).addLinearBins(
-        range.max, numBins);
-  };
-
-  /**
-   * Create an exponentially scaled tr.v.NumericBuilder with |numBins| bins
-   * ranging from |range.min| to |range.max|.
-   *
-   * @param {!tr.v.Unit} unit
-   * @param {!tr.b.Range} range
-   * @param {number} numBins
-   * @return {tr.v.NumericBuilder}
-   */
-  NumericBuilder.createExponential = function(unit, range, numBins) {
-    if (range.isEmpty)
-      throw new Error('Range must be non-empty');
-    return new NumericBuilder(unit, range.min).addExponentialBins(
-        range.max, numBins);
-  };
-
-  function ScalarNumeric(unit, value) {
-    if (!(unit instanceof tr.v.Unit))
-      throw new Error('Expected Unit');
-
-    if (!(typeof(value) == 'number'))
-      throw new Error('Expected value to be number');
-
-    NumericBase.call(this, unit);
-    this.value = value;
-  }
-
-  ScalarNumeric.prototype = {
-    __proto__: NumericBase.prototype,
-
-    asDictInto_: function(d) {
+    asDictInto_(d) {
       d.type = 'scalar';
 
       // Infinity and NaN are left out of JSON for security reasons that do not
@@ -834,39 +65,31 @@
         d.value = 'NaN';
       else
         d.value = this.value;
-    },
+    }
 
-    sampleValuesInto: function(samples) {
-      samples.push(this.value);
-    },
-
-    toString: function() {
+    toString() {
       return this.unit.format(this.value);
     }
-  };
 
-  ScalarNumeric.fromDict = function(d) {
-    // Infinity and NaN are left out of JSON for security reasons that do not
-    // apply to our use cases.
-    if (typeof(d.value) === 'string') {
-      if (d.value === '-Infinity') {
-        d.value = -Infinity;
-      } else if (d.value === 'Infinity') {
-        d.value = Infinity;
-      } else if (d.value === 'NaN') {
-        d.value = NaN;
+    static fromDict(d) {
+      // Infinity and NaN are left out of JSON for security reasons that do not
+      // apply to our use cases.
+      if (typeof(d.value) === 'string') {
+        if (d.value === '-Infinity') {
+          d.value = -Infinity;
+        } else if (d.value === 'Infinity') {
+          d.value = Infinity;
+        } else if (d.value === 'NaN') {
+          d.value = NaN;
+        }
       }
-    }
 
-    return new ScalarNumeric(tr.v.Unit.fromJSON(d.unit), d.value);
-  };
+      return new ScalarNumeric(tr.b.Unit.fromJSON(d.unit), d.value);
+    }
+  }
 
   return {
-    Significance: Significance,
     NumericBase: NumericBase,
-    NumericBin: NumericBin,
-    Numeric: Numeric,
-    NumericBuilder: NumericBuilder,
     ScalarNumeric: ScalarNumeric
   };
 });
diff --git a/catapult/tracing/tracing/value/numeric_test.html b/catapult/tracing/tracing/value/numeric_test.html
index e0277a5..281950a 100644
--- a/catapult/tracing/tracing/value/numeric_test.html
+++ b/catapult/tracing/tracing/value/numeric_test.html
@@ -7,257 +7,26 @@
 
 <link rel="import" href="/tracing/base/range.html">
 <link rel="import" href="/tracing/base/statistics.html">
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
 <link rel="import" href="/tracing/value/diagnostics/generic.html">
 <link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      10);
-
-  function checkBuilder(builder, expectedMinBoundary, expectedMaxBoundary,
-      expectedUnit, expectedBinRanges) {
-    assert.strictEqual(builder.minBinBoundary, expectedMinBoundary);
-    assert.strictEqual(builder.maxBinBoundary, expectedMaxBoundary);
-
-    // Check that the builder can be used multiple times.
-    for (var i = 0; i < 3; i++) {
-      var numeric = builder.build();
-      assert.instanceOf(numeric, tr.v.Numeric);
-      assert.strictEqual(numeric.unit, expectedUnit);
-      assert.strictEqual(numeric.numValues, 0);
-
-      assert.lengthOf(numeric.allBins, expectedBinRanges.length);
-      for (var j = 0; j < expectedBinRanges.length; j++) {
-        var bin = numeric.allBins[j];
-        assert.instanceOf(bin, tr.v.NumericBin);
-        assert.strictEqual(bin.parentNumeric, numeric);
-        assert.strictEqual(bin.count, 0);
-        assert.isTrue(bin.range.equals(expectedBinRanges[j]));
-      }
-    }
-  }
-
-  test('significance', function() {
-    assert.strictEqual(TEST_NUMERIC_BUILDER.build().getDifferenceSignificance(
-        TEST_NUMERIC_BUILDER.build()), tr.v.Significance.DONT_CARE);
-
-    var builder = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.unitlessNumber_smallerIsBetter,
-        tr.b.Range.fromExplicitRange(0, 100), 10);
-    var numericA = builder.build();
-    var numericB = builder.build();
-    for (var i = 0; i < 100; ++i) {
-      numericA.add(i);
-      numericB.add(i * 0.85);
-    }
-
-    assert.strictEqual(numericA.getDifferenceSignificance(numericB),
-        tr.v.Significance.INSIGNIFICANT);
-    assert.strictEqual(numericB.getDifferenceSignificance(numericA),
-        tr.v.Significance.INSIGNIFICANT);
-    assert.strictEqual(numericA.getDifferenceSignificance(numericB, 0.1),
-        tr.v.Significance.SIGNIFICANT);
-    assert.strictEqual(numericB.getDifferenceSignificance(numericA, 0.1),
-        tr.v.Significance.SIGNIFICANT);
-  });
-
   test('nonUnitThrows', function() {
     assert.throws(function() { new tr.v.NumericBase('foo', -273.15); });
   });
 
   test('nonNumberScalarThrows', function() {
-    var unit = tr.v.Unit.byName.sizeInBytes;
+    var unit = tr.b.Unit.byName.sizeInBytes;
     assert.throws(function() { new tr.v.ScalarNumeric(unit, 'foo'); });
   });
 
-  test('numericBasic', function() {
-    var n = TEST_NUMERIC_BUILDER.build();
-    assert.equal(n.getBinForValue(250).range.min, 200);
-    assert.equal(n.getBinForValue(250).range.max, 300);
-
-    var dm0 = new tr.v.d.DiagnosticMap();
-    var dm1 = new tr.v.d.DiagnosticMap();
-    var dm2 = new tr.v.d.DiagnosticMap();
-    var dm3 = new tr.v.d.DiagnosticMap();
-    var dm4 = new tr.v.d.DiagnosticMap();
-    var dm5 = new tr.v.d.DiagnosticMap();
-    dm0.add('foo', new tr.v.d.Generic('a'));
-    dm1.add('foo', new tr.v.d.Generic('b'));
-    dm2.add('foo', new tr.v.d.Generic('c'));
-    dm3.add('foo', new tr.v.d.Generic('c'));
-    dm4.add('foo', new tr.v.d.Generic('d'));
-    dm5.add('foo', new tr.v.d.Generic('d'));
-
-    n.add(-1, dm0);
-    n.add(0, dm1);
-    n.add(0, dm2);
-    n.add(500, dm3);
-    n.add(999, dm4);
-    n.add(1000, dm5);
-    assert.equal(n.underflowBin.count, 1);
-
-    assert.equal(n.getBinForValue(0).count, 2);
-    assert.deepEqual(
-        n.getBinForValue(0).diagnosticMaps.map(dm => dm.get('foo').value),
-        ['b', 'c']);
-
-    assert.equal(n.getBinForValue(500).count, 1);
-    assert.equal(n.getBinForValue(999).count, 1);
-
-    assert.equal(n.overflowBin.count, 1);
-    assert.equal(n.numValues, 6);
-    assert.closeTo(n.average, 416.3, 0.1);
-  });
-
-  test('numericNans', function() {
-    var n = TEST_NUMERIC_BUILDER.build();
-
-    var dm0 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')});
-    var dm1 = new tr.v.d.DiagnosticMap({'foo': new tr.v.d.Generic('c')});
-
-    n.add(undefined, dm0);
-    n.add(NaN, dm1);
-    n.add(undefined);
-    n.add(NaN);
-
-    assert.equal(n.numNans, 4);
-    assert.deepEqual(n.nanDiagnosticMaps.map(dm => dm.get('foo').value),
-                                             ['b', 'c']);
-
-    var n2 = n.clone();
-    assert.instanceOf(n2.nanDiagnosticMaps[0], tr.v.d.DiagnosticMap);
-    assert.instanceOf(n2.nanDiagnosticMaps[0].get('foo'), tr.v.d.Generic);
-  });
-
-  test('addNumericsValid', function() {
-    var n0 = TEST_NUMERIC_BUILDER.build();
-    var n1 = TEST_NUMERIC_BUILDER.build();
-
-    var dm0 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('a0')});
-    var dm1 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b0')});
-    var dm2 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('c0')});
-    var dm3 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('c0')});
-    var dm4 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('d0')});
-    var dm5 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('e0')});
-    var dm6 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('a1')});
-    var dm7 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b1')});
-    var dm8 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('c1')});
-    var dm9 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('d1')});
-    var dm10 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('d1')});
-    var dm11 = new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('e1')});
-
-    n0.add(-1, dm0);
-    n0.add(0, dm1);
-    n0.add(0, dm2);
-    n0.add(500, dm3);
-    n0.add(1000, dm4);
-    n0.add(NaN, dm5);
-
-    n1.add(-1, dm6);
-    n1.add(0, dm7);
-    n1.add(0, dm8);
-    n1.add(999, dm9);
-    n1.add(1000, dm10);
-    n1.add(NaN, dm11);
-
-    n0.addNumeric(n1);
-
-    assert.equal(n0.numNans, 2);
-    assert.deepEqual(n0.nanDiagnosticMaps.map(dmd => dmd.get('foo').value),
-                     ['e0', 'e1']);
-
-    assert.equal(n0.underflowBin.count, 2);
-    assert.deepEqual(
-        n0.underflowBin.diagnosticMaps.map(dmd => dmd.get('foo').value),
-        ['a0', 'a1']);
-
-    assert.equal(n0.getBinForValue(0).count, 4);
-    assert.deepEqual(
-        n0.getBinForValue(0).diagnosticMaps.map(dmd => dmd.get('foo').value),
-        ['b0', 'c0', 'b1', 'c1']);
-
-    assert.equal(n0.getBinForValue(500).count, 1);
-    assert.deepEqual(
-        n0.getBinForValue(500).diagnosticMaps.map(dmd => dmd.get('foo').value),
-        ['c0']);
-
-    assert.equal(n0.getBinForValue(999).count, 1);
-    assert.deepEqual(
-        n0.getBinForValue(999).diagnosticMaps.map(dmd => dmd.get('foo').value),
-        ['d1']);
-
-    assert.equal(n0.overflowBin.count, 2);
-    assert.deepEqual(
-        n0.overflowBin.diagnosticMaps.map(dmd => dmd.get('foo').value),
-        ['d0', 'd1']);
-
-    assert.equal(n0.numValues, 10);
-    assert.closeTo(n0.average, 349.7, 0.1);
-
-    assert.equal(2, n0.maxCount);
-    assert.equal(2, n1.maxCount);
-
-    var n02 = n0.clone();
-    assert.instanceOf(n02.underflowBin.diagnosticMaps[0], tr.v.d.DiagnosticMap);
-    assert.instanceOf(n02.underflowBin.diagnosticMaps[0].get('foo'),
-                      tr.v.d.Generic);
-  });
-
-  test('addNumericsInvalid', function() {
-    var n0 = tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs,
-        tr.b.Range.fromExplicitRange(0, 1000), 10).build();
-    var n1 = tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs,
-        tr.b.Range.fromExplicitRange(0, 1001), 10).build();
-    var n2 = tr.v.NumericBuilder.createLinear(tr.v.Unit.byName.timeDurationInMs,
-        tr.b.Range.fromExplicitRange(0, 1000), 11).build();
-
-    assert.throws(n0.addNumeric.bind(n0, n1), Error);
-    assert.throws(n0.addNumeric.bind(n0, n1), Error);
-  });
-
-  test('addNumericWithNonDiagnosticMapThrows', function() {
-    var n = TEST_NUMERIC_BUILDER.build();
-    assert.throws(n.add.bind(42, 'foo'), Error);
-  });
-
-  test('getInterpolateCountAt', function() {
-    var n = tr.v.Numeric.fromDict({
-      unit: 'unitless',
-      min: 0,
-      max: 100,
-      centralBinWidth: 10,
-      underflowBin: {min: -Number.MAX_VALUE, max: 0, count: 11},
-      centralBins: [
-        {min: 0, max: 10, count: 10},
-        {min: 10, max: 20, count: 9},
-        {min: 20, max: 30, count: 8},
-        {min: 30, max: 40, count: 7},
-        {min: 40, max: 50, count: 6},
-        {min: 50, max: 60, count: 5},
-        {min: 60, max: 70, count: 4},
-        {min: 70, max: 80, count: 3},
-        {min: 80, max: 90, count: 2},
-        {min: 90, max: 100, count: 1}
-      ],
-      overflowBin: {min: 100, max: Number.MAX_VALUE, count: 0}
-    });
-
-    assert.equal(11, n.maxCount);
-    assert.equal(11, n.getInterpolatedCountAt(-1));
-    assert.equal(0, n.getInterpolatedCountAt(101));
-    assert.closeTo(10.8, n.getInterpolatedCountAt(1), 1e-3);
-    assert.closeTo(9.5, n.getInterpolatedCountAt(10), 1e-3);
-    assert.closeTo(0.2, n.getInterpolatedCountAt(99), 1e-3);
-  });
-
   test('scalarBasic', function() {
-    var unit = tr.v.Unit.byName.sizeInBytes;
+    var unit = tr.b.Unit.byName.sizeInBytes;
 
     var d = {
       type: 'scalar',
@@ -267,354 +36,5 @@
 
     assert.deepEqual(d, tr.v.NumericBase.fromDict(d).asDict());
   });
-
-  test('numericPercentile', function() {
-    function check(array, min, max, bins, precision) {
-      var n = new tr.v.NumericBuilder.createLinear(
-          tr.v.Unit.byName.timeDurationInMs,
-          tr.b.Range.fromExplicitRange(min, max),
-          bins).build();
-      array.forEach((x) => n.add(
-          x, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('x')})));
-      [0.25, 0.5, 0.75, 0.8, 0.95, 0.99].forEach(function(percent) {
-        var expected = tr.b.Statistics.percentile(array, percent);
-        var actual = n.getApproximatePercentile(percent);
-        assert.closeTo(expected, actual, precision);
-      });
-    }
-    check([1, 2, 5, 7], 0.5, 10.5, 10, 1e-3);
-    check([3, 3, 4, 4], 0.5, 10.5, 10, 1e-3);
-    check([1, 10], 0.5, 10.5, 10, 1e-3);
-    check([1, 2, 3, 4, 5], 0.5, 10.5, 10, 1e-3);
-    check([3, 3, 3, 3, 3], 0.5, 10.5, 10, 1e-3);
-    check([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 0.5, 10.5, 10, 1e-3);
-    check([1, 2, 3, 4, 5, 5, 6, 7, 8, 9, 10], 0.5, 10.5, 10, 1e-3);
-    check([0, 11], 0.5, 10.5, 10, 1);
-    check([0, 6, 11], 0.5, 10.5, 10, 1);
-    var array = [];
-    for (var i = 0; i < 1000; i++)
-      array.push((i * i) % 10 + 1);
-    check(array, 0.5, 10.5, 10, 1e-3);
-    // If the real percentile is outside the bin range then the approximation
-    // error can be high.
-    check([-10000], 0, 10, 10, 10000);
-    check([10000], 0, 10, 10, 10000 - 10);
-    // The result is no more than the bin width away from the real percentile.
-    check([1, 1], 0, 10, 1, 10);
-  });
-
-  test('numericBuilder_empty', function() {
-    var b = new tr.v.NumericBuilder(tr.v.Unit.byName.sizeInBytes, 0);
-
-    checkBuilder(b, 0, 0, tr.v.Unit.byName.sizeInBytes, [
-      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, 0),
-      tr.b.Range.fromExplicitRange(0, Number.MAX_VALUE)
-    ]);
-  });
-
-  test('numericBuilder_addBinBoundary', function() {
-    var b = new tr.v.NumericBuilder(tr.v.Unit.byName.timeDurationInMs, -100);
-    b.addBinBoundary(50);
-
-    checkBuilder(b, -100, 50, tr.v.Unit.byName.timeDurationInMs, [
-      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, -100),
-      tr.b.Range.fromExplicitRange(-100, 50),
-      tr.b.Range.fromExplicitRange(50, Number.MAX_VALUE)
-    ]);
-
-    b.addBinBoundary(60);
-    b.addBinBoundary(75);
-
-    checkBuilder(b, -100, 75, tr.v.Unit.byName.timeDurationInMs, [
-      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, -100),
-      tr.b.Range.fromExplicitRange(-100, 50),
-      tr.b.Range.fromExplicitRange(50, 60),
-      tr.b.Range.fromExplicitRange(60, 75),
-      tr.b.Range.fromExplicitRange(75, Number.MAX_VALUE)
-    ]);
-  });
-
-  test('numericBuilder_addLinearBins', function() {
-    var b = new tr.v.NumericBuilder(tr.v.Unit.byName.powerInWatts, 1000);
-    b.addLinearBins(1200, 5);
-
-    checkBuilder(b, 1000, 1200, tr.v.Unit.byName.powerInWatts, [
-      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, 1000),
-      tr.b.Range.fromExplicitRange(1000, 1040),
-      tr.b.Range.fromExplicitRange(1040, 1080),
-      tr.b.Range.fromExplicitRange(1080, 1120),
-      tr.b.Range.fromExplicitRange(1120, 1160),
-      tr.b.Range.fromExplicitRange(1160, 1200),
-      tr.b.Range.fromExplicitRange(1200, Number.MAX_VALUE)
-    ]);
-  });
-
-  test('numericBuilder_addExponentialBins', function() {
-    var b = new tr.v.NumericBuilder(tr.v.Unit.byName.energyInJoules, 0.5);
-    b.addExponentialBins(8, 4);
-
-    checkBuilder(b, 0.5, 8, tr.v.Unit.byName.energyInJoules, [
-      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, 0.5),
-      tr.b.Range.fromExplicitRange(0.5, 1),
-      tr.b.Range.fromExplicitRange(1, 2),
-      tr.b.Range.fromExplicitRange(2, 4),
-      tr.b.Range.fromExplicitRange(4, 8),
-      tr.b.Range.fromExplicitRange(8, Number.MAX_VALUE)
-    ]);
-  });
-
-  test('numericBuilder_combined', function() {
-    var b = new tr.v.NumericBuilder(tr.v.Unit.byName.unitlessNumber, -273.15);
-    b.addBinBoundary(-50);
-    b.addLinearBins(4, 3);
-    b.addExponentialBins(16, 2);
-    b.addLinearBins(17, 4);
-    b.addBinBoundary(100);
-
-    checkBuilder(b, -273.15, 100, tr.v.Unit.byName.unitlessNumber, [
-      tr.b.Range.fromExplicitRange(-Number.MAX_VALUE, -273.15),
-      tr.b.Range.fromExplicitRange(-273.15, -50),
-      tr.b.Range.fromExplicitRange(-50, -32),
-      tr.b.Range.fromExplicitRange(-32, -14),
-      tr.b.Range.fromExplicitRange(-14, 4),
-      tr.b.Range.fromExplicitRange(4, 8),
-      tr.b.Range.fromExplicitRange(8, 16),
-      tr.b.Range.fromExplicitRange(16, 16.25),
-      tr.b.Range.fromExplicitRange(16.25, 16.5),
-      tr.b.Range.fromExplicitRange(16.5, 16.75),
-      tr.b.Range.fromExplicitRange(16.75, 17),
-      tr.b.Range.fromExplicitRange(17, 100),
-      tr.b.Range.fromExplicitRange(100, Number.MAX_VALUE)
-    ]);
-  });
-
-  test('numericBuilder_throws', function() {
-    var b0 = new tr.v.NumericBuilder(tr.v.Unit.byName.timeStampInMs, -7);
-    assert.throws(function() { b0.addBinBoundary(-10 /* must be > -7 */); });
-    assert.throws(function() { b0.addBinBoundary(-7 /* must be > -7 */); });
-    assert.throws(function() { b0.addLinearBins(-10 /* must be > -7 */, 10); });
-    assert.throws(function() { b0.addLinearBins(-7 /* must be > -7 */, 100); });
-    assert.throws(function() { b0.addLinearBins(10, 0 /* must be > 0 */); });
-    assert.throws(function() {
-      // Current max bin boundary (-7) must be positive.
-      b0.addExponentialBins(16, 4);
-    });
-
-    var b1 = new tr.v.NumericBuilder(tr.v.Unit.byName.sizeInBytes, 8);
-    assert.throws(
-        function() { b1.addExponentialBins(20, 0 /* must be > 0 */); });
-    assert.throws(
-        function() { b1.addExponentialBins(5 /* must be > 8 */, 3); });
-    assert.throws(
-        function() { b1.addExponentialBins(8 /* must be > 8 */, 3); });
-  });
-
-  test('getSummarizedScalarNumericsWithNames', function() {
-    var n = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 100),
-        100).build();
-
-    n.add(50);
-    n.add(60);
-    n.add(70);
-
-    n.customizeSummaryOptions({
-      count: true,
-      min: true,
-      max: true,
-      sum: true,
-      avg: true,
-      std: true,
-      percentile: [0.5, 1]
-    });
-
-    var results = n.getSummarizedScalarNumericsWithNames();
-    var values = {};
-    results.forEach(function(x) {
-      values[x.name] = x.scalar;
-    });
-
-    assert.strictEqual(values.count.value, 3);
-    assert.strictEqual(values.min.value, 50);
-    assert.strictEqual(values.max.value, 70);
-    assert.strictEqual(values.sum.value, 180);
-    assert.strictEqual(values.avg.value, 60);
-    assert.strictEqual(values.std.value, 10);
-    assert.closeTo(values.pct_050.value, 60, 1);
-    assert.closeTo(values.pct_100.value, 70, 1);
-  });
-
-  test('getSummarizedScalarNumericsWithNamesNoSummaryOptions', function() {
-    var n = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 100),
-        100).build();
-
-    n.add(50);
-    n.add(60);
-    n.add(70);
-
-    n.customizeSummaryOptions({
-      count: false,
-      min: false,
-      max: false,
-      sum: false,
-      avg: false,
-      std: false,
-      percentile: []
-    });
-
-    var results = n.getSummarizedScalarNumericsWithNames('abc');
-    assert.strictEqual(results.length, 0);
-  });
-
-  test('getSummarizedScalarNumericsWithNamesEmptyNumericValue', function() {
-    var n = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 100),
-        100).build();
-
-    n.customizeSummaryOptions({
-      count: true,
-      min: true,
-      max: true,
-      sum: true,
-      avg: true,
-      std: true,
-      percentile: [0, 0.01, 0.1, 0.5, 0.995, 1]
-    });
-
-    var results = n.getSummarizedScalarNumericsWithNames();
-    var values = {};
-    results.forEach(function(x) {
-      values[x.name] = x.scalar;
-    });
-
-    assert.strictEqual(values.count.value, 0);
-    assert.strictEqual(values.min.value, Infinity);
-    assert.strictEqual(values.max.value, -Infinity);
-    assert.strictEqual(values.sum.value, 0);
-    assert.strictEqual(values.avg, undefined);
-    assert.strictEqual(values.std, undefined);
-    assert.strictEqual(values.pct_000.value, 0);
-    assert.strictEqual(values.pct_001.value, 0);
-    assert.strictEqual(values.pct_010.value, 0);
-    assert.strictEqual(values.pct_050.value, 0);
-    assert.strictEqual(values.pct_099_5.value, 0);
-    assert.strictEqual(values.pct_100.value, 0);
-  });
-
-  test('sampleValues', function() {
-    var n0 = TEST_NUMERIC_BUILDER.build();
-    var n1 = TEST_NUMERIC_BUILDER.build();
-    // maxNumSampleValues defaults to numBins * 10, which, including the
-    // underflowBin and overflowBin plus this builder's 10 central bins,
-    // is 12 * 10.
-    assert.strictEqual(n0.maxNumSampleValues, 120);
-    assert.strictEqual(n1.maxNumSampleValues, 120);
-    var values0 = [];
-    var values1 = [];
-    for (var i = 0; i < 10; ++i) {
-      values0.push(i);
-      n0.add(i);
-    }
-    for (var i = 10; i < 20; ++i) {
-      values1.push(i);
-      n1.add(i);
-    }
-    assert.deepEqual(n0.sampleValues, values0);
-    assert.deepEqual(n1.sampleValues, values1);
-    n0.addNumeric(n1);
-    assert.deepEqual(n0.sampleValues, values0.concat(values1));
-    var n2 = n0.clone();
-    assert.deepEqual(n2.sampleValues, values0.concat(values1));
-
-    for (var i = 0; i < 200; ++i)
-      n0.add(i);
-    assert.strictEqual(n0.sampleValues.length, n0.maxNumSampleValues);
-
-    var n3 = TEST_NUMERIC_BUILDER.build();
-    n3.maxNumSampleValues = 10;
-    for (var i = 0; i < 100; ++i)
-      n3.add(i);
-    assert.strictEqual(n3.sampleValues.length, 10);
-  });
-
-  test('mergeScalarNumerics', function() {
-    var scalarA = new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs, 10);
-    var scalarB = new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs, 20);
-
-    var numeric = scalarA.merge(scalarB);
-    assert.instanceOf(numeric, tr.v.Numeric);
-    assert.strictEqual(numeric.range.min, 10);
-    assert.strictEqual(numeric.range.max, 20);
-    assert.strictEqual(numeric.maxNumSampleValues, 1000);
-    assert.strictEqual(numeric.numValues, 2);
-    assert.strictEqual(numeric.numNans, 0);
-    assert.lengthOf(numeric.sampleValues, 2);
-    assert.lengthOf(numeric.allBins, 4);
-
-    scalarB.value = scalarA.value;
-    numeric = scalarA.merge(scalarB);
-    assert.instanceOf(numeric, tr.v.Numeric);
-    assert.strictEqual(numeric.maxNumSampleValues, 1000);
-    assert.strictEqual(numeric.numValues, 2);
-    assert.strictEqual(numeric.numNans, 0);
-    assert.lengthOf(numeric.sampleValues, 2);
-    assert.lengthOf(numeric.allBins, 4);
-    assert.strictEqual(numeric.range.min, 9);
-    assert.strictEqual(numeric.range.max, 10);
-
-    scalarA.value = 'i am not a number';
-    scalarB.value = 'i am also not a number';
-    numeric = scalarA.merge(scalarB);
-    assert.instanceOf(numeric, tr.v.Numeric);
-    assert.strictEqual(numeric.maxNumSampleValues, 1000);
-    assert.strictEqual(numeric.numValues, 0);
-    assert.strictEqual(numeric.numNans, 2);
-    assert.lengthOf(numeric.sampleValues, 2);
-    assert.lengthOf(numeric.allBins, 4);
-    assert.strictEqual(numeric.range.min, 0);
-    assert.strictEqual(numeric.range.max, 1);
-  });
-
-  test('mergeNumericWithScalar', function() {
-    var scalar = new tr.v.ScalarNumeric(
-        tr.v.Unit.byName.timeDurationInMs, 1010);
-    var numeric = TEST_NUMERIC_BUILDER.build();
-    for (var i = 0; i < 100; ++i)
-      numeric.add(Math.random() * 1000);
-    numeric.add('i am not a number');
-
-    var mergedA = scalar.merge(numeric);
-    var mergedB = numeric.merge(scalar);
-    assert.instanceOf(mergedA, tr.v.Numeric);
-    assert.instanceOf(mergedB, tr.v.Numeric);
-
-    assert.strictEqual(mergedA.maxNumSampleValues, 1000);
-    // numValues does not include non-number samples.
-    assert.strictEqual(mergedA.numValues, 101);
-    assert.strictEqual(mergedA.numNans, 1);
-    assert.strictEqual(mergedA.range.min, numeric.running.min);
-    assert.strictEqual(mergedA.range.max, 1010);
-
-    assert.strictEqual(mergedB.maxNumSampleValues, 1000);
-    // numValues does not include non-number samples.
-    assert.strictEqual(mergedB.numValues, 101);
-    assert.strictEqual(mergedB.numNans, 1);
-    assert.strictEqual(mergedB.range.min, numeric.running.min);
-    assert.strictEqual(mergedB.range.max, 1010);
-
-    // Normalize away some insignificant differences so that deepEqual can test
-    // the significant fields.
-    var mergedAdict = mergedA.asDict();
-    var mergedBdict = mergedB.asDict();
-    mergedAdict.sampleValues.sort();
-    mergedBdict.sampleValues.sort();
-    for (var stat in mergedAdict.running) {
-      mergedAdict.running[stat] = Math.round(mergedAdict.running[stat]);
-      mergedBdict.running[stat] = Math.round(mergedBdict.running[stat]);
-    }
-    assert.deepEqual(mergedAdict, mergedBdict);
-  });
 });
-
 </script>
diff --git a/catapult/tracing/tracing/value/ui/all_value_set_views.html b/catapult/tracing/tracing/value/ui/all_value_set_views.html
deleted file mode 100644
index e070171..0000000
--- a/catapult/tracing/tracing/value/ui/all_value_set_views.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2016 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/value/ui/breakdown_value_set_view.html">
-<link rel="import" href="/tracing/value/ui/value_set_table.html">
-<link rel="import" href="/tracing/value/ui/value_set_view.html">
diff --git a/catapult/tracing/tracing/value/ui/composition_span.html b/catapult/tracing/tracing/value/ui/breakdown_span.html
similarity index 60%
rename from catapult/tracing/tracing/value/ui/composition_span.html
rename to catapult/tracing/tracing/value/ui/breakdown_span.html
index 0a99ece..b2647d8 100644
--- a/catapult/tracing/tracing/value/ui/composition_span.html
+++ b/catapult/tracing/tracing/value/ui/breakdown_span.html
@@ -5,23 +5,25 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/ui/base/bar_chart.html">
+<link rel="import" href="/tracing/extras/chrome/chrome_user_friendly_category_driver.html">
+<link rel="import" href="/tracing/ui/base/column_chart.html">
 <link rel="import" href="/tracing/ui/base/drag_handle.html">
 
-<dom-module id="tr-v-ui-composition-span">
+<dom-module id="tr-v-ui-breakdown-span">
   <template>
     <div id="container"></div>
     <tr-ui-b-drag-handle id="drag_handle"></tr-ui-b-drag-handle>
   </template>
 </dom-module>
+
 <script>
 'use strict';
 Polymer({
-  is: 'tr-v-ui-composition-span',
+  is: 'tr-v-ui-breakdown-span',
 
   created: function() {
     this.diagnostic_ = undefined;
-    this.chart_ = new tr.ui.b.BarChart();
+    this.chart_ = new tr.ui.b.ColumnChart();
     this.chart_.width = 190;
     this.chart_.height = 200;
     this.chart_.isStacked = true;
@@ -63,20 +65,36 @@
       this.chart_.data = [];
       return;
     }
+
     var data = {x: 0};
     this.minHeightPx_ = 20;
-    this.diagnostic_.iterItems(function(name, value) {
-      this.chart_.getDataSeries(name).target = value;
-      this.chart_.getDataSeries(name).optional = true;
+    for (var [name, value] of this.diagnostic) {
       this.minHeightPx_ += 20;
 
-      value = value.numeric;
-      if (value instanceof tr.v.ScalarNumeric)
-        data[name] = value.value;
-      else if (value instanceof tr.v.Numeric)
-        data[name] = value.sum;
+      var dataSeries = this.chart_.getDataSeries(name);
+      dataSeries.optional = true;
 
-    }, this);
+      if (this.diagnostic.colorScheme ===
+          tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER) {
+        var cat = name.split(' ');
+        cat = cat[cat.length - 1];
+        var color = tr.e.chrome.ChromeUserFriendlyCategoryDriver.getColor(cat);
+        var hsl = color.toHSL();
+        hsl.l *= 0.85;
+        var highlightedColor = tr.b.Color.fromHSL(hsl);
+        dataSeries.highlightedColor = highlightedColor;
+        dataSeries.color = color;
+      }
+
+      if (value instanceof tr.v.Histogram) {
+        dataSeries.target = value;
+        data[name] = value.sum;
+      } else if (typeof value === 'number') {
+        data[name] = value;
+      } else {
+        throw new Error('unsupported value ' + value);
+      }
+    }
     this.chart_.data = [data];
   }
 });
diff --git a/catapult/tracing/tracing/value/ui/breakdown_span_test.html b/catapult/tracing/tracing/value/ui/breakdown_span_test.html
new file mode 100644
index 0000000..dd8f708
--- /dev/null
+++ b/catapult/tracing/tracing/value/ui/breakdown_span_test.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/value/diagnostics/breakdown.html">
+<link rel="import" href="/tracing/value/diagnostics/related_histogram_breakdown.html">
+<link rel="import" href="/tracing/value/histogram.html">
+<link rel="import" href="/tracing/value/ui/composition_span.html">
+<link rel="import" href="/tracing/value/ui/diagnostic_span.html">
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  test('instantiate_Composition', function() {
+    var foo = new tr.v.Histogram('foo', tr.b.Unit.byName.timeDurationInMs);
+    var bar = new tr.v.Histogram('bar', tr.b.Unit.byName.timeDurationInMs);
+    for (var i = 0; i < 1e2; ++i) {
+      foo.addSample(Math.random());
+      bar.addSample(Math.random());
+    }
+    var breakdown = new tr.v.d.RelatedHistogramBreakdown();
+    breakdown.add(foo);
+    breakdown.add(bar);
+    var span = tr.v.ui.createDiagnosticSpan(breakdown);
+    assert.strictEqual('TR-V-UI-BREAKDOWN-SPAN', span.tagName);
+    this.addHTMLOutput(span);
+  });
+
+  test('instantiate_Breakdown', function() {
+    var breakdown = new tr.v.d.Breakdown();
+    breakdown.colorScheme =
+      tr.v.d.COLOR_SCHEME_CHROME_USER_FRIENDLY_CATEGORY_DRIVER;
+    breakdown.set('script', 42);
+    breakdown.set('style', 57);
+    var span = tr.v.ui.createDiagnosticSpan(breakdown);
+    assert.strictEqual('TR-V-UI-BREAKDOWN-SPAN', span.tagName);
+    this.addHTMLOutput(span);
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/value/ui/breakdown_value_set_view.html b/catapult/tracing/tracing/value/ui/breakdown_value_set_view.html
deleted file mode 100644
index f3aad97..0000000
--- a/catapult/tracing/tracing/value/ui/breakdown_value_set_view.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2016 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/value/ui/value_set_table.html">
-<link rel="import" href="/tracing/value/ui/value_set_view.html">
-<link rel="import" href="/tracing/value/value_set.html">
-
-
-<dom-module id='breakdown-value-set-view'>
-<template>
-<style>
-  :host {
-    display: flex;
-    flex-direction: column;
-  }
-</style>
-<content></content>
-</template>
-</dom-module>
-
-<script>
-'use strict';
-tr.exportTo('tr.v.ui', function() {
-  Polymer({
-    is: 'breakdown-value-set-view',
-
-    supportsValueSet: function(values) {
-      return false;
-    },
-
-    get tabLabel() {
-      return 'Breakdown View';
-    },
-
-    created: function() {
-     this.values_ = undefined;
-    },
-
-    get values() {
-      return this.values_;
-    },
-
-    /**
-    * @param {!tr.v.ValueSet} values
-    */
-    set values(values) {
-      this.values_ = values;
-    }
-  });
-
-  tr.v.ui.registerValueSetView('breakdown-value-set-view');
-
-  return {};
-});
-
-</script>
diff --git a/catapult/tracing/tracing/value/ui/composition_span_test.html b/catapult/tracing/tracing/value/ui/composition_span_test.html
deleted file mode 100644
index f8004a7..0000000
--- a/catapult/tracing/tracing/value/ui/composition_span_test.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright 2016 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/value/diagnostics/composition.html">
-<link rel="import" href="/tracing/value/ui/composition_span.html">
-<link rel="import" href="/tracing/value/ui/diagnostic_span.html">
-<link rel="import" href="/tracing/value/value.html">
-
-<script>
-'use strict';
-
-tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1),
-      20);
-
-  test('instantiate_Composition', function() {
-    var numeric = TEST_NUMERIC_BUILDER.build();
-    var scalar = new tr.v.ScalarNumeric(tr.v.Unit.byName.timeDurationInMs, 42);
-    for (var i = 0; i < 1e2; ++i) {
-      numeric.add(Math.random());
-    }
-    var composition = new tr.v.d.Composition();
-    composition.add(new tr.v.NumericValue('numeric', numeric));
-    composition.add(new tr.v.NumericValue('scalar', scalar));
-    var span = tr.v.ui.createDiagnosticSpan(composition);
-    assert.strictEqual('TR-V-UI-COMPOSITION-SPAN', span.tagName);
-    this.addHTMLOutput(span);
-  });
-});
-</script>
diff --git a/catapult/tracing/tracing/value/ui/diagnostic_map_table.html b/catapult/tracing/tracing/value/ui/diagnostic_map_table.html
index c3d86f9..dc8cdf7 100644
--- a/catapult/tracing/tracing/value/ui/diagnostic_map_table.html
+++ b/catapult/tracing/tracing/value/ui/diagnostic_map_table.html
@@ -12,14 +12,15 @@
   <template>
     <tr-ui-b-table id="table"></tr-ui-b-table>
   </template>
+
   <script>
   'use strict';
 
   Polymer({
     is: 'tr-v-ui-diagnostic-map-table',
 
-    ready: function() {
-      this.titledDiagnosticMaps_ = undefined;
+    created: function() {
+      this.diagnosticMaps_ = undefined;
     },
 
     /**
@@ -30,61 +31,40 @@
      * @param {!string} maps[].title
      * @param {!tr.v.d.DiagnosticMap} maps[].diagnosticMap
      */
-    set titledDiagnosticMaps(maps) {
-      this.titledDiagnosticMaps_ = maps;
-      this.updateContent_();
+    set diagnosticMaps(maps) {
+      this.diagnosticMaps_ = maps;
+      this.updateContents_();
     },
 
-    updateContent_: function() {
-      if (this.titledDiagnosticMaps_ === undefined ||
-          this.titledDiagnosticMaps_.length === 0) {
+    updateContents_: function() {
+      if (this.diagnosticMaps_ === undefined ||
+          this.diagnosticMaps_.length === 0) {
         this.$.table.tableRows = [];
         this.$.table.tableColumns = [];
         return;
       }
 
-      var columns = [{
-        title: 'Name',
+      var columnTitles = new Set();
+      for (var map of this.diagnosticMaps_)
+        for (var [name, diagnostic] of map)
+          columnTitles.add(name);
 
-        value: function(row) {
-          return row.name;
-        },
+      columnTitles = [...columnTitles].sort();
 
-        cmp: function(a, b) {
-          return a.name.localeCompare(b.name);
-        }
-      }];
-
-      var rowNames = {};
-      var rows = [];
-
-      this.titledDiagnosticMaps_.forEach(function(titledMap) {
-        var title = titledMap.title;
-        var diagnosticMap = titledMap.diagnosticMap;
-
-        columns.push({
+      var columns = [];
+      function makeColumn(title) {
+        return {
           title: title,
-
-          value: function(row) {
-            var diagnostic = diagnosticMap.get(row.name);
-            if (diagnostic === undefined)
-              return '';
-
-            return tr.v.ui.createDiagnosticSpan(diagnostic);
+          value: function(map) {
+            return tr.v.ui.createDiagnosticSpan(map.get(title));
           }
-        });
+        };
+      }
+      for (var title of columnTitles)
+        columns.push(makeColumn(title));
 
-        diagnosticMap.forEach(function(name, diagnostic) {
-          if (rowNames[name] !== true) {
-            rowNames[name] = true;
-            rows.push({name: name});
-          }
-        });
-      }, this);
-
-      rows.sort(columns[0].cmp);
       this.$.table.tableColumns = columns;
-      this.$.table.tableRows = rows;
+      this.$.table.tableRows = this.diagnosticMaps_;
       this.$.table.rebuild();
     }
   });
diff --git a/catapult/tracing/tracing/value/ui/diagnostic_map_table_test.html b/catapult/tracing/tracing/value/ui/diagnostic_map_table_test.html
index 31eafe2..ac051aa 100644
--- a/catapult/tracing/tracing/value/ui/diagnostic_map_table_test.html
+++ b/catapult/tracing/tracing/value/ui/diagnostic_map_table_test.html
@@ -14,16 +14,13 @@
 tr.b.unittest.testSuite(function() {
   test('instantiate', function() {
     var map0 = new tr.v.d.DiagnosticMap();
-    map0.add('genericA', new tr.v.d.Generic({a: 0}));
-    map0.add('genericB', new tr.v.d.Generic({b: 0}));
+    map0.set('genericA', new tr.v.d.Generic({a: 0}));
+    map0.set('genericB', new tr.v.d.Generic({b: 0}));
     var map1 = new tr.v.d.DiagnosticMap();
-    map1.add('genericA', new tr.v.d.Generic({a: 1}));
-    map1.add('genericB', new tr.v.d.Generic({b: 1}));
+    map1.set('genericA', new tr.v.d.Generic({a: 1}));
+    map1.set('genericB', new tr.v.d.Generic({b: 1}));
     var table = document.createElement('tr-v-ui-diagnostic-map-table');
-    table.titledDiagnosticMaps = [
-      {title: 'map0', diagnosticMap: map0},
-      {title: 'map1', diagnosticMap: map1},
-    ];
+    table.diagnosticMaps = [map0, map1];
     this.addHTMLOutput(table);
   });
 });
diff --git a/catapult/tracing/tracing/value/ui/diagnostic_span.html b/catapult/tracing/tracing/value/ui/diagnostic_span.html
index 4ed1af5..2e80f96 100644
--- a/catapult/tracing/tracing/value/ui/diagnostic_span.html
+++ b/catapult/tracing/tracing/value/ui/diagnostic_span.html
@@ -7,7 +7,7 @@
 
 <link rel="import" href="/tracing/ui/base/deep_utils.html">
 <link rel="import" href="/tracing/value/diagnostics/diagnostic.html">
-<link rel="import" href="/tracing/value/ui/composition_span.html">
+<link rel="import" href="/tracing/value/ui/breakdown_span.html">
 <link rel="import" href="/tracing/value/ui/generic_diagnostic_span.html">
 <link rel="import" href="/tracing/value/ui/iteration_info_span.html">
 <link rel="import" href="/tracing/value/ui/related_event_set_span.html">
diff --git a/catapult/tracing/tracing/value/ui/histogram_span.html b/catapult/tracing/tracing/value/ui/histogram_span.html
index c267541..d21ac3c 100644
--- a/catapult/tracing/tracing/value/ui/histogram_span.html
+++ b/catapult/tracing/tracing/value/ui/histogram_span.html
@@ -6,7 +6,8 @@
 -->
 
 <link rel="import" href="/tracing/base/statistics.html">
-<link rel="import" href="/tracing/ui/base/bar_chart.html">
+<link rel="import" href="/tracing/ui/base/column_chart.html">
+<link rel="import" href="/tracing/value/ui/diagnostic_map_table.html">
 <link rel="import" href="/tracing/value/ui/diagnostic_span.html">
 <link rel="import" href="/tracing/value/ui/numeric_stats_span.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
@@ -18,18 +19,14 @@
         display: flex;
         flex-direction: row;
       }
-      #diagnostics {
-        display: flex;
-        flex-direction: column;
-      }
     </style>
 
     <div id="container">
       <div id="chart"></div>
       <tr-v-ui-numeric-stats-span id="stats"></tr-v-ui-numeric-stats-span>
     </div>
-    <div id="diagnostics">
-    </div>
+
+    <tr-v-ui-diagnostic-map-table id="diagnostic_map_table"></tr-v-ui-diagnostic-map-table>
   </template>
 </dom-module>
 <script>
@@ -40,7 +37,7 @@
 
   created: function() {
     this.histogram_ = undefined;
-    this.chart_ = new tr.ui.b.BarChart();
+    this.chart_ = new tr.ui.b.ColumnChart();
     this.chart_.width = 400;
     this.chart_.height = 200;
     this.chart_.margin.right = 2;
@@ -130,16 +127,18 @@
   },
 
   updateDiagnostics_: function(bins) {
-    Polymer.dom(this.$.diagnostics).textContent = '';
-    for (var bin of bins) {
-      for (var diagnosticMap of bin.diagnosticMaps) {
-        // TODO(eakuefner): Display these in a table.
-        diagnosticMap.forEach(function(unused_name, d) {
-          Polymer.dom(this.$.diagnostics).appendChild(
-              tr.v.ui.createDiagnosticSpan(d));
-        }, this);
-      }
+    var maps = [];
+    for (var bin of bins)
+      for (var map of bin.diagnosticMaps)
+        maps.push(map);
+
+    if (maps.length === 0) {
+      this.$.diagnostic_map_table.style.display = 'none';
+      return;
     }
+
+    this.$.diagnostic_map_table.diagnosticMaps = maps;
+    this.$.diagnostic_map_table.style.display = 'block';
   },
 
   get histogram() {
@@ -148,7 +147,6 @@
 
   set histogram(histogram) {
     this.histogram_ = histogram;
-    Polymer.dom(this.$.diagnostics).textContent = '';
     this.updateContents_();
   },
 
@@ -158,32 +156,34 @@
 
   updateContents_: function() {
     this.$.chart.style.display = this.histogram_ ? '' : 'none';
+    this.$.diagnostic_map_table.style.display = 'none';
     this.$.stats.numeric = this.histogram_;
+    this.brushedBins_ = [];
     if (!this.histogram_)
       return;
 
-    var maximumBinValue = tr.b.Statistics.max(this.histogram_.allBins,
-                                              function(bin) {
-                                                return bin.count;
-                                              });
-    var chartData = [];
-    var binWidth = this.histogram_.centralBins[0].range.range;
-    this.histogram_.allBins.forEach(function(bin) {
-      var x = bin.range.min;
-      if (x === -Number.MAX_VALUE) {
-        if (!bin.count)
-          return;
-        x = bin.range.max - binWidth;
-      }
-      chartData.push({x: x, y: bin.count});
-    });
-    chartData.sort(function(x, y) {
-      return x.x - y.x;
-    });
-    this.$.chart.style.display = chartData.length ? '' : 'none';
-    this.chart_.data = chartData;
-    this.brushedBins_ = [];
-    this.chart_.brushedRange = new tr.b.Range();
+    if (this.histogram_.numValues <= 1) {
+      this.$.container.style.display = 'none';
+      // Don't return! Still do the updateDiagnostics_(occupiedBins) below!
+    } else {
+      this.$.container.style.display = '';
+      var maximumBinValue = tr.b.Statistics.max(
+          this.histogram_.allBins, (bin) => bin.count);
+      var chartData = [];
+      var binWidth = this.histogram_.centralBins[0].range.range;
+      this.histogram_.allBins.forEach(function(bin) {
+        var x = bin.range.min;
+        if (x === -Number.MAX_VALUE) {
+          if (!bin.count)
+            return;
+          x = bin.range.max - binWidth;
+        }
+        chartData.push({x: x, y: bin.count});
+      });
+      chartData.sort((x, y) => x.x - y.x);
+      this.chart_.data = chartData;
+      this.chart_.brushedRange = new tr.b.Range();
+    }
 
     var occupiedBins = [];
     for (var bin of this.histogram.allBins) {
diff --git a/catapult/tracing/tracing/value/ui/histogram_span_test.html b/catapult/tracing/tracing/value/ui/histogram_span_test.html
index 57cd9ba..38942e8 100644
--- a/catapult/tracing/tracing/value/ui/histogram_span_test.html
+++ b/catapult/tracing/tracing/value/ui/histogram_span_test.html
@@ -5,33 +5,29 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
 <link rel="import" href="/tracing/value/diagnostics/generic.html">
-<link rel="import" href="/tracing/value/numeric.html">
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/ui/histogram_span.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var DURATION_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      10);
-
   test('basic', function() {
-    var h = DURATION_NUMERIC_BUILDER.build();
-    h.add(-1, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('a')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(0, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('c')}));
-    h.add(500, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('c')}));
-    h.add(999, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('d')}));
-    h.add(1000, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('d')}));
+    var h = new tr.v.Histogram('', tr.b.Unit.byName.unitlessNumber);
+    h.addSample(-1, {foo: new tr.v.d.Generic('a')});
+    h.addSample(0, {foo: new tr.v.d.Generic('b')});
+    h.addSample(0, {foo: new tr.v.d.Generic('b')});
+    h.addSample(0, {foo: new tr.v.d.Generic('b')});
+    h.addSample(0, {foo: new tr.v.d.Generic('b')});
+    h.addSample(0, {foo: new tr.v.d.Generic('b')});
+    h.addSample(0, {foo: new tr.v.d.Generic('b')});
+    h.addSample(0, {foo: new tr.v.d.Generic('c')});
+    h.addSample(500, {foo: new tr.v.d.Generic('c')});
+    h.addSample(999, {foo: new tr.v.d.Generic('d')});
+    h.addSample(1000, {foo: new tr.v.d.Generic('d')});
 
     var span = document.createElement('tr-v-ui-histogram-span');
     span.histogram = h;
@@ -45,7 +41,7 @@
   });
 
   test('emptyHistogram', function() {
-    var h = DURATION_NUMERIC_BUILDER.build();
+    var h = new tr.v.Histogram('', tr.b.Unit.byName.unitlessNumber);
 
     var span = document.createElement('tr-v-ui-histogram-span');
     span.histogram = h;
@@ -53,9 +49,9 @@
   });
 
   test('nans', function() {
-    var h = DURATION_NUMERIC_BUILDER.build();
-    h.add(undefined, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('b')}));
-    h.add(NaN, new tr.v.d.DiagnosticMap({foo: new tr.v.d.Generic('c')}));
+    var h = new tr.v.Histogram('', tr.b.Unit.byName.unitlessNumber);
+    h.addSample(undefined, {foo: new tr.v.d.Generic('b')});
+    h.addSample(NaN, {foo: new tr.v.d.Generic('c')});
     h.customizeSummaryOptions({nans: true});
 
     var span = document.createElement('tr-v-ui-histogram-span');
diff --git a/catapult/tracing/tracing/value/ui/numeric_stats_span.html b/catapult/tracing/tracing/value/ui/numeric_stats_span.html
index 9710ce0..f9374ef 100644
--- a/catapult/tracing/tracing/value/ui/numeric_stats_span.html
+++ b/catapult/tracing/tracing/value/ui/numeric_stats_span.html
@@ -13,8 +13,10 @@
     <tr-ui-b-table id="stats"></tr-ui-b-table>
   </template>
 </dom-module>
+
 <script>
 'use strict';
+// TODO(benjhayden): Rename to histogram-stats-span.
 Polymer({
   is: 'tr-v-ui-numeric-stats-span',
 
@@ -49,13 +51,12 @@
   updateContents_: function() {
     var rows = [];
     if (this.numeric_) {
-      var stats = this.numeric_.getSummarizedScalarNumericsWithNames();
-      stats.forEach(function(stat) {
+      for (var [statName, scalar] of this.numeric_.statisticsScalars) {
         rows.push({
-          name: stat.name,
-          value: stat.scalar
+          name: statName,
+          value: scalar
         });
-      });
+      }
     }
     this.$.stats.tableRows = rows;
     this.$.stats.rebuild();
diff --git a/catapult/tracing/tracing/value/ui/numeric_stats_span_test.html b/catapult/tracing/tracing/value/ui/numeric_stats_span_test.html
index b61dde5..e317557 100644
--- a/catapult/tracing/tracing/value/ui/numeric_stats_span_test.html
+++ b/catapult/tracing/tracing/value/ui/numeric_stats_span_test.html
@@ -5,25 +5,22 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/ui/numeric_stats_span.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      20);
-
   test('instantiate', function() {
     var span = document.createElement('tr-v-ui-numeric-stats-span');
 
-    var numeric = TEST_NUMERIC_BUILDER.build();
+    var numeric = new tr.v.Histogram('', tr.b.Unit.byName.count);
     for (var i = 0; i < 1e2; ++i) {
-      numeric.add(Math.random() * 1000);
+      numeric.addSample(Math.random() * 1000);
     }
 
-    numeric.add('foo');
+    numeric.addSample('foo');
     numeric.customizeSummaryOptions({nans: true});
 
     span.numeric = numeric;
diff --git a/catapult/tracing/tracing/value/ui/preferred_display_unit.html b/catapult/tracing/tracing/value/ui/preferred_display_unit.html
index 360d657..988845d 100644
--- a/catapult/tracing/tracing/value/ui/preferred_display_unit.html
+++ b/catapult/tracing/tracing/value/ui/preferred_display_unit.html
@@ -5,7 +5,7 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/value/unit.html">
+<link rel="import" href="/tracing/base/unit.html">
 
 <script>
   'use strict';
@@ -17,11 +17,11 @@
     },
 
     attached: function() {
-      tr.v.Unit.didPreferredTimeDisplayUnitChange();
+      tr.b.Unit.didPreferredTimeDisplayUnitChange();
     },
 
     detached: function() {
-      tr.v.Unit.didPreferredTimeDisplayUnitChange();
+      tr.b.Unit.didPreferredTimeDisplayUnitChange();
     },
 
     // null means no-preference
@@ -33,7 +33,7 @@
       if (this.preferredTimeDisplayMode_ === v)
         return;
       this.preferredTimeDisplayMode_ = v;
-      tr.v.Unit.didPreferredTimeDisplayUnitChange();
+      tr.b.Unit.didPreferredTimeDisplayUnitChange();
     }
 
   });
diff --git a/catapult/tracing/tracing/value/ui/preferred_display_unit_test.html b/catapult/tracing/tracing/value/ui/preferred_display_unit_test.html
index 742783f..8eef8b5 100644
--- a/catapult/tracing/tracing/value/ui/preferred_display_unit_test.html
+++ b/catapult/tracing/tracing/value/ui/preferred_display_unit_test.html
@@ -5,7 +5,7 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/value/time_display_mode.html">
+<link rel="import" href="/tracing/base/time_display_modes.html">
 <link rel="import" href="/tracing/value/ui/preferred_display_unit.html">
 
 <script>
@@ -14,7 +14,7 @@
 tr.b.unittest.testSuite(function() {
   test('instantiate', function() {
     var unit = document.createElement('tr-v-ui-preferred-display-unit');
-    var ms = tr.v.TimeDisplayModes.ms;
+    var ms = tr.b.TimeDisplayModes.ms;
     unit.preferredDisplayUnit = ms;
     assert.equal(unit.preferredDisplayUnit, ms);
   });
diff --git a/catapult/tracing/tracing/value/ui/related_event_set_span.html b/catapult/tracing/tracing/value/ui/related_event_set_span.html
index 596bec8..dd04ccb 100644
--- a/catapult/tracing/tracing/value/ui/related_event_set_span.html
+++ b/catapult/tracing/tracing/value/ui/related_event_set_span.html
@@ -5,8 +5,8 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/analysis/analysis_link.html">
-<link rel="import" href="/tracing/value/unit.html">
 
 <dom-module id="tr-v-ui-related-event-set-span">
   <script>
@@ -29,12 +29,14 @@
 
     updateContents_: function() {
       Polymer.dom(this).textContent = '';
-      var events = this.diagnostic.events;
+      var events = new tr.model.EventSet([...this.diagnostic]);
       var link = document.createElement('tr-ui-a-analysis-link');
       var label = events.length + ' events';
       if (events.length === 1) {
-        label = events[0].title + ' ';
-        label += tr.v.Unit.byName.timeDurationInMs.format(events[0].duration);
+        var event = tr.b.getOnlyElement(events);
+        label = event.title + ' ';
+        label += tr.b.Unit.byName.timeDurationInMs.format(
+            event.duration);
       }
       link.setSelectionAndContent(events, label);
       Polymer.dom(this).appendChild(link);
diff --git a/catapult/tracing/tracing/value/ui/related_event_set_span_test.html b/catapult/tracing/tracing/value/ui/related_event_set_span_test.html
index bc33772..bbf729f 100644
--- a/catapult/tracing/tracing/value/ui/related_event_set_span_test.html
+++ b/catapult/tracing/tracing/value/ui/related_event_set_span_test.html
@@ -29,7 +29,7 @@
       var event = tr.c.TestUtils.newSliceEx(
           {title: 'a', start: 0, duration: 1});
       thread.sliceGroup.pushSlice(event);
-      diagnostic.push(event);
+      diagnostic.add(event);
     });
     var span = tr.v.ui.createDiagnosticSpan(diagnostic);
     assert.strictEqual('TR-V-UI-RELATED-EVENT-SET-SPAN', span.tagName);
@@ -44,10 +44,10 @@
       var thread = proc.getOrCreateThread(2);
       var event = tr.c.TestUtils.newSliceEx({start: 0, duration: 1});
       thread.sliceGroup.pushSlice(event);
-      diagnostic.push(event);
+      diagnostic.add(event);
       event = tr.c.TestUtils.newSliceEx({start: 1, duration: 1});
       thread.sliceGroup.pushSlice(event);
-      diagnostic.push(event);
+      diagnostic.add(event);
     });
     var span = tr.v.ui.createDiagnosticSpan(diagnostic);
     assert.strictEqual('TR-V-UI-RELATED-EVENT-SET-SPAN', span.tagName);
diff --git a/catapult/tracing/tracing/value/ui/related_value_map_span.html b/catapult/tracing/tracing/value/ui/related_value_map_span.html
index 1888d52..cfc46c8 100644
--- a/catapult/tracing/tracing/value/ui/related_value_map_span.html
+++ b/catapult/tracing/tracing/value/ui/related_value_map_span.html
@@ -28,12 +28,12 @@
 
     updateContents_: function() {
       Polymer.dom(this).textContent = '';
-      this.diagnostic.iterItems(function(name, value) {
+      for (var [name, value] of this.diagnostic) {
         var link = document.createElement('tr-ui-a-analysis-link');
         link.setSelectionAndContent(value, name);
         Polymer.dom(this).appendChild(link);
         Polymer.dom(this).appendChild(document.createElement('br'));
-      }, this);
+      }
     }
   });
   </script>
diff --git a/catapult/tracing/tracing/value/ui/related_value_map_span_test.html b/catapult/tracing/tracing/value/ui/related_value_map_span_test.html
index 3185df6..b57e3e4 100644
--- a/catapult/tracing/tracing/value/ui/related_value_map_span_test.html
+++ b/catapult/tracing/tracing/value/ui/related_value_map_span_test.html
@@ -6,20 +6,16 @@
 -->
 
 <link rel="import" href="/tracing/value/diagnostics/related_value_map.html">
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/ui/diagnostic_span.html">
-<link rel="import" href="/tracing/value/value.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      10);
-
   test('instantiate_RelatedValueMap', function() {
-    var aValue = new tr.v.NumericValue('a', TEST_NUMERIC_BUILDER.build());
-    var bValue = new tr.v.NumericValue('b', TEST_NUMERIC_BUILDER.build());
+    var aValue = new tr.v.Histogram('a', tr.b.Unit.byName.unitlessNumber);
+    var bValue = new tr.v.Histogram('b', tr.b.Unit.byName.unitlessNumber);
     var diagnostic = new tr.v.d.RelatedValueMap();
     diagnostic.set('foo', aValue);
     diagnostic.set('bar', bValue);
diff --git a/catapult/tracing/tracing/value/ui/related_value_set_span.html b/catapult/tracing/tracing/value/ui/related_value_set_span.html
index 10b41bb..4641760 100644
--- a/catapult/tracing/tracing/value/ui/related_value_set_span.html
+++ b/catapult/tracing/tracing/value/ui/related_value_set_span.html
@@ -28,12 +28,12 @@
 
     updateContents_: function() {
       Polymer.dom(this).textContent = '';
-      this.diagnostic.values.forEach(function (value) {
+      for (var value of this.diagnostic) {
         var link = document.createElement('tr-ui-a-analysis-link');
         link.setSelectionAndContent(value, value.name);
         Polymer.dom(this).appendChild(link);
         Polymer.dom(this).appendChild(document.createElement('br'));
-      }, this);
+      }
     }
   });
   </script>
diff --git a/catapult/tracing/tracing/value/ui/related_value_set_span_test.html b/catapult/tracing/tracing/value/ui/related_value_set_span_test.html
index 3d0ec8c..05364e4 100644
--- a/catapult/tracing/tracing/value/ui/related_value_set_span_test.html
+++ b/catapult/tracing/tracing/value/ui/related_value_set_span_test.html
@@ -6,20 +6,16 @@
 -->
 
 <link rel="import" href="/tracing/value/diagnostics/related_value_set.html">
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/ui/diagnostic_span.html">
-<link rel="import" href="/tracing/value/value.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      10);
-
   test('instantiate_RelatedValueSet', function() {
-    var aValue = new tr.v.NumericValue('a', TEST_NUMERIC_BUILDER.build());
-    var bValue = new tr.v.NumericValue('b', TEST_NUMERIC_BUILDER.build());
+    var aValue = new tr.v.Histogram('a', tr.b.Unit.byName.unitlessNumber);
+    var bValue = new tr.v.Histogram('b', tr.b.Unit.byName.unitlessNumber);
     var diagnostic = new tr.v.d.RelatedValueSet([aValue, bValue]);
     var span = tr.v.ui.createDiagnosticSpan(diagnostic);
     assert.strictEqual('TR-V-UI-RELATED-VALUE-SET-SPAN', span.tagName);
diff --git a/catapult/tracing/tracing/value/ui/scalar_context_controller.html b/catapult/tracing/tracing/value/ui/scalar_context_controller.html
new file mode 100644
index 0000000..d561020
--- /dev/null
+++ b/catapult/tracing/tracing/value/ui/scalar_context_controller.html
@@ -0,0 +1,195 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/event.html">
+<link rel="import" href="/tracing/base/raf.html">
+<link rel="import" href="/tracing/base/range.html">
+
+<dom-module id='tr-v-ui-scalar-context-controller'>
+  <template></template>
+</dom-module>
+
+<!--
+@fileoverview Polymer element for controlling common context across scalar
+spans. To facilitate multiple separate contexts (e.g. a separate context for
+each table column), each scalar span has to specify which "context group"
+it belongs to:
+
+  +============ some container element (e.g. <div>) ============+
+  |                                                             |
+  |         <tr-v-ui-scalar-context-controller>                 |
+  |             ^                         ^                     |
+  |             |                         |                     |
+  |             v                         v                     |
+  | .... Context group 1 .... .... Context group 2 ....         |
+  | : <tr-v-ui-scalar-span> : : <tr-v-ui-scalar-span> :         |
+  | : <tr-v-ui-scalar-span> : : <tr-v-ui-scalar-span> :  . . .  |
+  | :          . . .        : :         . . .         :         |
+  | :.......................: :.......................:         |
+  +=============================================================+
+
+An element can find its enclosing context controller using the
+getScalarContextControllerForElement(node) defined in this file. Scalar spans
+can push their state to the controller using the following three methods:
+
+  1. onScalarSpanAdded(contextGroup, span)
+     This method should be called when a span is attached to the DOM tree (or
+     afterwards when added to a context group).
+
+  2. onScalarSpanRemoved(contextGroup, span)
+     This method should be called when a span is detached from the DOM tree (or
+     beforehand when removed from a context group).
+
+  3. onScalarSpanUpdated(contextGroup, span)
+     This method should be called when a span's value changes.
+
+Note: If a span wants to change its context group, it should first call
+onScalarSpanRemoved with the old group and then onScalarSpanAdded with the new
+group.
+
+If one or more group contexts are modified (due to one of the three methods
+above), the controller will asynchronously (at the next RAF) update them and
+fire a 'context-updated' event. Scalar spans can listen for this event and
+update their UI accordingly.
+
+The context currently consists of the range of values of the associated spans.
+This allows automatic display of relative sizes using sparklines.
+
+The controller design is based on:
+https://docs.google.com/document/d/16ih8yYK8kF8MMlPnB-5KlyfS_AjjtbyAfi3pkxoZ8xs/edit?usp=sharing
+-->
+<script>
+'use strict';
+
+tr.exportTo('tr.v.ui', function() {
+
+  Polymer({
+    is: 'tr-v-ui-scalar-context-controller',
+
+    created: function() {
+      this.host_ = undefined;
+      this.groupToContext_ = new Map();
+      this.dirtyGroups_ = new Set();
+    },
+
+    attached: function() {
+      if (this.host_) {
+        throw new Error(
+            'Scalar context controller is already attached to a host');
+      }
+
+      var host = findParentOrHost(this);
+      if (host.__scalarContextController) {
+        throw new Error(
+            'Multiple scalar context controllers attached to this host');
+      }
+
+      host.__scalarContextController = this;
+      this.host_ = host;
+    },
+
+    detached: function() {
+      if (!this.host_)
+        throw new Error('Scalar context controller is not attached to a host');
+      if (this.host_.__scalarContextController !== this) {
+        throw new Error(
+            'Scalar context controller is not attached to its host');
+      }
+
+      delete this.host_.__scalarContextController;
+      this.host_ = undefined;
+    },
+
+    getContext: function(group) {
+      return this.groupToContext_.get(group);
+    },
+
+    onScalarSpanAdded: function(group, span) {
+      var context = this.groupToContext_.get(group);
+      if (context === undefined) {
+        context = {
+          spans: new Set(),
+          range: new tr.b.Range()
+        };
+        this.groupToContext_.set(group, context);
+      }
+      if (context.spans.has(span))
+        throw new Error('Scalar span already registered with group: ' + group);
+      context.spans.add(span);
+      this._markGroupDirtyAndScheduleUpdate(group);
+    },
+
+    onScalarSpanRemoved: function(group, span) {
+      var context = this.groupToContext_.get(group);
+      if (!context.spans.has(span))
+        throw new Error('Scalar span not registered with group: ' + group);
+      context.spans.delete(span);
+      this._markGroupDirtyAndScheduleUpdate(group);
+    },
+
+    onScalarSpanUpdated: function(group, span) {
+      var context = this.groupToContext_.get(group);
+      if (!context.spans.has(span))
+        throw new Error('Scalar span not registered with group: ' + group);
+      this._markGroupDirtyAndScheduleUpdate(group);
+    },
+
+    _markGroupDirtyAndScheduleUpdate: function(group) {
+      var alreadyDirty = this.dirtyGroups_.size > 0;
+      this.dirtyGroups_.add(group);
+      if (!alreadyDirty)
+        tr.b.requestAnimationFrame(this.updateContext.bind(this));
+    },
+
+    updateContext: function() {
+      var groups = this.dirtyGroups_;
+      if (groups.size === 0)
+        return;
+      this.dirtyGroups_ = new Set();
+
+      for (var group of groups)
+        this.updateGroup_(group);
+
+      var event = new tr.b.Event('context-updated');
+      event.groups = groups;
+      this.dispatchEvent(event);
+    },
+
+    updateGroup_: function(group) {
+      var context = this.groupToContext_.get(group);
+      if (context.spans.size === 0) {
+        this.groupToContext_.delete(group);
+        return;
+      }
+      context.range.reset();
+      for (var span of context.spans)
+        context.range.addValue(span.value);
+    }
+  });
+
+  function getScalarContextControllerForElement(element) {
+    while (element) {
+      if (element.__scalarContextController)
+        return element.__scalarContextController;
+      element = findParentOrHost(element);
+    }
+    return undefined;
+  }
+
+  function findParentOrHost(node) {
+    if (node.parentElement)
+      return node.parentElement;
+    while (Polymer.dom(node).parentNode)
+      node = Polymer.dom(node).parentNode;
+    return node.host;
+  }
+
+  return {
+    getScalarContextControllerForElement: getScalarContextControllerForElement
+  };
+});
+</script>
diff --git a/catapult/tracing/tracing/value/ui/scalar_context_controller_test.html b/catapult/tracing/tracing/value/ui/scalar_context_controller_test.html
new file mode 100644
index 0000000..dfee8fe
--- /dev/null
+++ b/catapult/tracing/tracing/value/ui/scalar_context_controller_test.html
@@ -0,0 +1,311 @@
+<!DOCTYPE html>
+<!--
+Copyright 2016 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+
+<link rel="import" href="/tracing/base/iteration_helpers.html">
+<link rel="import" href="/tracing/base/raf.html">
+<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/value/ui/scalar_context_controller.html">
+
+<dom-module id='tr-v-ui-scalar-context-controller-mock-host'>
+  <template>
+    <tr-v-ui-scalar-context-controller id="controller">
+    </tr-v-ui-scalar-context-controller>
+    <content></content>
+  </template>
+</dom-module>
+
+<script>
+'use strict';
+
+tr.b.unittest.testSuite(function() {
+  var getScalarContextControllerForElement =
+      tr.v.ui.getScalarContextControllerForElement;
+
+  Polymer({
+    is: 'tr-v-ui-scalar-context-controller-mock-host'
+  });
+
+  test('getScalarContextControllerForElement', function() {
+    var root = document.createElement('div');
+    Polymer.dom(document.body).appendChild(root);
+    try {
+      assert.isUndefined(getScalarContextControllerForElement(root));
+
+      // <div> root
+      //   |__<div> host1
+      //        |__<tr-v-ui-scalar-context-controller> c1
+      var host1 = document.createElement('div');
+      Polymer.dom(root).appendChild(host1);
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1));
+      var c1 = document.createElement('tr-v-ui-scalar-context-controller');
+      Polymer.dom(host1).appendChild(c1);
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+
+      // <div> root
+      //   |__<div> host1
+      //   |    |__<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //           :..<tr-v-ui-scalar-context-controller> c2
+      var host2 = document.createElement(
+          'tr-v-ui-scalar-context-controller-mock-host');
+      var c2 = host2.$.controller;
+      Polymer.dom(root).appendChild(host2);
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+      assert.strictEqual(getScalarContextControllerForElement(host2), c2);
+
+      // <div> root
+      //   |__<div> host1
+      //   |    |__<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //        |  :..<tr-v-ui-scalar-context-controller> c2
+      //        |__<div> divA
+      //             |__<div> divB
+      var divA = document.createElement('div');
+      Polymer.dom(host2).appendChild(divA);
+      assert.strictEqual(getScalarContextControllerForElement(divA), c2);
+      var divB = document.createElement('div');
+      Polymer.dom(divA).appendChild(divB);
+      assert.strictEqual(getScalarContextControllerForElement(divB), c2);
+
+      // <div> root
+      //   |__<div> host1
+      //   |    |_<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //        |  :.-<tr-v-ui-scalar-context-controller> c2
+      //        |__<div> divA
+      //             |__<div> divB
+      //                  |__<tr-v-ui-scalar-context-controller-mock-host> host3
+      //                       :..<tr-v-ui-scalar-context-controller> c3
+      var host3 = document.createElement(
+          'tr-v-ui-scalar-context-controller-mock-host');
+      Polymer.dom(divB).appendChild(host3);
+      var c3 = host3.$.controller;
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+      assert.strictEqual(getScalarContextControllerForElement(host2), c2);
+      assert.strictEqual(getScalarContextControllerForElement(divA), c2);
+      assert.strictEqual(getScalarContextControllerForElement(divB), c2);
+      assert.strictEqual(getScalarContextControllerForElement(host3), c3);
+
+      // <div> root
+      //   |__<div> host1
+      //   |    |_<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //        |  :.-<tr-v-ui-scalar-context-controller> c2
+      //        |__<div> divA
+      //             |  :.<tr-v-ui-scalar-context-controller> c4
+      //             |__<div> divB
+      //                  |__<tr-v-ui-scalar-context-controller-mock-host> host3
+      //                       :..<tr-v-ui-scalar-context-controller> c3
+      var c4 = document.createElement('tr-v-ui-scalar-context-controller');
+      Polymer.dom(divA).appendChild(c4);
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+      assert.strictEqual(getScalarContextControllerForElement(host2), c2);
+      assert.strictEqual(getScalarContextControllerForElement(divA), c4);
+      assert.strictEqual(getScalarContextControllerForElement(divB), c4);
+      assert.strictEqual(getScalarContextControllerForElement(host3), c3);
+
+      // <div> root
+      //   |__<div> host1
+      //   |    |_<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //        |  :.-<tr-v-ui-scalar-context-controller> c2
+      //        |__<div> divA
+      //             |  :.<tr-v-ui-scalar-context-controller> c4
+      //             |__<div> divB
+      //                  |__<tr-v-ui-scalar-context-controller-mock-host> host3
+      Polymer.dom(host3.root).removeChild(c3);
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+      assert.strictEqual(getScalarContextControllerForElement(host2), c2);
+      assert.strictEqual(getScalarContextControllerForElement(divA), c4);
+      assert.strictEqual(getScalarContextControllerForElement(divB), c4);
+      assert.strictEqual(getScalarContextControllerForElement(host3), c4);
+
+      // <div> root
+      //   |__<div> host1
+      //   |    |_<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //        |__<div> divA
+      //             |  :.<tr-v-ui-scalar-context-controller> c4
+      //             |__<div> divB
+      //                  |__<tr-v-ui-scalar-context-controller-mock-host> host3
+      Polymer.dom(host2.root).removeChild(c2);
+      assert.isUndefined(getScalarContextControllerForElement(root));
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+      assert.isUndefined(getScalarContextControllerForElement(host2));
+      assert.strictEqual(getScalarContextControllerForElement(divA), c4);
+      assert.strictEqual(getScalarContextControllerForElement(divB), c4);
+      assert.strictEqual(getScalarContextControllerForElement(host3), c4);
+
+      // <div> root
+      //   |  :.<tr-v-ui-scalar-context-controller> c3
+      //   |__<div> host1
+      //   |    |_<tr-v-ui-scalar-context-controller> c1
+      //   |__<tr-v-ui-scalar-context-controller-mock-host> host2
+      //        |__<div> divA
+      //             |  :.<tr-v-ui-scalar-context-controller> c4
+      //             |__<div> divB
+      //                  |__<tr-v-ui-scalar-context-controller-mock-host> host3
+      Polymer.dom(root).appendChild(c3);
+      assert.strictEqual(getScalarContextControllerForElement(root), c3);
+      assert.strictEqual(getScalarContextControllerForElement(host1), c1);
+      assert.strictEqual(getScalarContextControllerForElement(host2), c3);
+      assert.strictEqual(getScalarContextControllerForElement(divA), c4);
+      assert.strictEqual(getScalarContextControllerForElement(divB), c4);
+      assert.strictEqual(getScalarContextControllerForElement(host3), c4);
+    } finally {
+      Polymer.dom(document.body).removeChild(root);
+    }
+  });
+
+  function contextTest(name, testCallback) {
+    test('context_' + name, function() {
+      var root = document.createElement('div');
+      Polymer.dom(document.body).appendChild(root);
+      try {
+        var c = document.createElement('tr-v-ui-scalar-context-controller');
+        Polymer.dom(root).appendChild(c);
+
+        var updatedGroups = [];  // Fail if event fires unexpectedly.
+        c.addEventListener('context-updated', function(e) {
+          if (updatedGroups)
+            assert.fail('Unexpected context-updated event fired.');
+          updatedGroups = tr.b.asArray(e.groups);
+        });
+
+        c.expectContextUpdatedEventForTesting =
+            function(expectedUpdatedGroups) {
+              updatedGroups = undefined;
+              tr.b.forceAllPendingTasksToRunForTest();
+              assert.sameMembers(updatedGroups, expectedUpdatedGroups);
+            };
+
+        testCallback.call(this, c);
+      } finally {
+        Polymer.dom(document.body).removeChild(root);
+      }
+    });
+  }
+
+  contextTest('singleGroup', function(c) {
+    assert.isUndefined(c.getContext('G'));
+
+    var s1 = {value: 10};
+    c.onScalarSpanAdded('G', s1);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isTrue(c.getContext('G').range.equals(
+        tr.b.Range.fromExplicitRange(10, 10)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G').spans), [s1]);
+
+    var s2 = {value: 15};
+    c.onScalarSpanAdded('G', s2);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isTrue(c.getContext('G').range.equals(
+        tr.b.Range.fromExplicitRange(10, 15)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G').spans), [s1, s2]);
+
+    s1.value = 5;
+    c.onScalarSpanUpdated('G', s1);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isTrue(c.getContext('G').range.equals(
+        tr.b.Range.fromExplicitRange(5, 15)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G').spans), [s1, s2]);
+
+    c.onScalarSpanRemoved('G', s2);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isTrue(c.getContext('G').range.equals(
+        tr.b.Range.fromExplicitRange(5, 5)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G').spans), [s1]);
+
+    var s3 = {value: 0};
+    c.onScalarSpanAdded('G', s3);
+    s2.value = 14;
+    c.onScalarSpanAdded('G', s2);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isTrue(c.getContext('G').range.equals(
+        tr.b.Range.fromExplicitRange(0, 14)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G').spans), [s1, s2, s3]);
+
+    c.onScalarSpanRemoved('G', s1);
+    c.onScalarSpanRemoved('G', s2);
+    c.onScalarSpanRemoved('G', s3);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isUndefined(c.getContext('G'));
+
+    c.onScalarSpanAdded('G', s2);
+    c.expectContextUpdatedEventForTesting(['G']);
+    assert.isTrue(c.getContext('G').range.equals(
+        tr.b.Range.fromExplicitRange(14, 14)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G').spans), [s2]);
+  });
+
+  contextTest('multipleGroups', function(c) {
+    assert.isUndefined(c.getContext('G1'));
+    assert.isUndefined(c.getContext('G2'));
+
+    var s1 = {value: 0};
+    c.onScalarSpanAdded('G1', s1);
+    c.expectContextUpdatedEventForTesting(['G1']);
+    assert.isTrue(c.getContext('G1').range.equals(
+        tr.b.Range.fromExplicitRange(0, 0)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G1').spans), [s1]);
+
+    var s2 = {value: 1};
+    c.onScalarSpanAdded('G2', s2);
+    c.expectContextUpdatedEventForTesting(['G2']);
+    assert.isTrue(c.getContext('G2').range.equals(
+        tr.b.Range.fromExplicitRange(1, 1)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G2').spans), [s2]);
+
+    var s3 = {value: 2};
+    var s4 = {value: -1};
+    c.onScalarSpanAdded('G2', s3);
+    c.onScalarSpanAdded('G1', s4);
+    c.expectContextUpdatedEventForTesting(['G1', 'G2']);
+    assert.isTrue(c.getContext('G1').range.equals(
+        tr.b.Range.fromExplicitRange(-1, 0)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G1').spans), [s1, s4]);
+    assert.isTrue(c.getContext('G2').range.equals(
+        tr.b.Range.fromExplicitRange(1, 2)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G2').spans), [s2, s3]);
+
+    c.onScalarSpanRemoved('G2', s3);
+    c.onScalarSpanAdded('G1', s3);
+    c.expectContextUpdatedEventForTesting(['G1', 'G2']);
+    assert.isTrue(c.getContext('G1').range.equals(
+        tr.b.Range.fromExplicitRange(-1, 2)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G1').spans), [s1, s3, s4]);
+    assert.isTrue(c.getContext('G2').range.equals(
+        tr.b.Range.fromExplicitRange(1, 1)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G2').spans), [s2]);
+
+    s4.value = 3;
+    c.onScalarSpanUpdated('G1', s4);
+    s1.value = 1;
+    c.onScalarSpanUpdated('G1', s1);
+    c.expectContextUpdatedEventForTesting(['G1']);
+    assert.isTrue(c.getContext('G1').range.equals(
+        tr.b.Range.fromExplicitRange(1, 3)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G1').spans), [s1, s3, s4]);
+    assert.isTrue(c.getContext('G2').range.equals(
+        tr.b.Range.fromExplicitRange(1, 1)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G2').spans), [s2]);
+
+    c.onScalarSpanRemoved('G2', s2);
+    c.expectContextUpdatedEventForTesting(['G2']);
+    assert.isTrue(c.getContext('G1').range.equals(
+        tr.b.Range.fromExplicitRange(1, 3)));
+    assert.sameMembers(tr.b.asArray(c.getContext('G1').spans), [s1, s3, s4]);
+    assert.isUndefined(c.getContext('G2'));
+  });
+});
+</script>
diff --git a/catapult/tracing/tracing/value/ui/scalar_span.html b/catapult/tracing/tracing/value/ui/scalar_span.html
index 6396c5c..c625f24 100644
--- a/catapult/tracing/tracing/value/ui/scalar_span.html
+++ b/catapult/tracing/tracing/value/ui/scalar_span.html
@@ -5,10 +5,10 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/base/unit.html">
 <link rel="import" href="/tracing/ui/base/deep_utils.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
+<link rel="import" href="/tracing/value/ui/scalar_context_controller.html">
 
 <script>
 'use strict';
@@ -21,13 +21,14 @@
   };
 
   /**
-   * @param {undefined|tr.v.NumericValue|tr.v.Numeric} value
+   * @param {undefined|tr.v.ScalarNumeric|tr.v.Histogram} value
    * @param {Object=} opt_config
-   * @param {number=} opt_config.total
+   * @param {!tr.b.Range=} opt_config.customContextRange
    * @param {boolean=} opt_config.rightAlign
-   * @param {!tr.v.Unit=} opt_config.unit
+   * @param {!tr.b.Unit=} opt_config.unit
    * @param {tr.v.Significance=} opt_config.significance
-   * @return {string|Element}
+   * @param {string=} opt_config.contextGroup
+   * @return {(string|!HTMLElement)}
    */
   function createScalarSpan(value, opt_config) {
     if (value === undefined)
@@ -38,16 +39,11 @@
 
     var span = ownerDocument.createElement('tr-v-ui-scalar-span');
 
-    if (value instanceof tr.v.NumericValue) {
-      value = value.numeric;
-      config.unit = value.unit;
-    }
-
     var numericValue;
     if (value instanceof tr.v.ScalarNumeric) {
       span.value = value;
       numericValue = value.value;
-    } else if (value instanceof tr.v.Numeric) {
+    } else if (value instanceof tr.v.Histogram) {
       numericValue = value.average;
       if (numericValue === undefined)
         return '';
@@ -65,8 +61,8 @@
     if (config.context)
       span.context = config.context;
 
-    if (config.total)
-      span.percentage = numericValue / config.total;
+    if (config.customContextRange)
+      span.customContextRange = config.customContextRange;
 
     if (config.rightAlign)
       span.rightAlign = true;
@@ -74,6 +70,9 @@
     if (config.significance !== undefined)
       span.significance = config.significance;
 
+    if (config.contextGroup !== undefined)
+      span.contextGroup = config.contextGroup;
+
     return span;
   }
 
@@ -90,6 +89,8 @@
     :host {
       display: block;
       position: relative;
+      /* Limit the sparkline's negative z-index to the span only. */
+      isolation: isolate;
     }
     #content.right-align {
       text-align: right;
@@ -106,12 +107,30 @@
       width: 0%;
       position: absolute;
       bottom: 0;
-      right: 0;
       display: none;
       height: 100%;
       background-color: hsla(216, 100%, 94.5%, .75);
-      border-left: 1px solid hsl(216, 100%, 89%);
+      border-color: hsl(216, 100%, 89%);
       box-sizing: border-box;
+      z-index: -1;
+    }
+    #sparkline.positive {
+      border-right-style: solid;
+      /* The border width must be kept in sync with buildSparklineStyle_(). */
+      border-right-width: 1px;
+    }
+    #sparkline:not(.positive) {
+      border-left-style: solid;
+      /* The border width must be kept in sync with buildSparklineStyle_(). */
+      border-left-width: 1px;
+    }
+    #sparkline.better {
+      background-color: hsla(115, 100%, 93%, .75);
+      border-color: hsl(118, 60%, 80%);
+    }
+    #sparkline.worse {
+      background-color: hsla(0, 100%, 88%, .75);
+      border-color: hsl(0, 100%, 80%);
     }
     #warning {
       margin-left: 4px;
@@ -123,8 +142,8 @@
     }
     </style>
     <span id="sparkline"></span>
-    <span id="significance"></span>
     <span id="content"></span>
+    <span id="significance"></span>
     <span id="warning" style="display:none">&#9888;</span>
   </template>
 </dom-module>
@@ -134,14 +153,39 @@
 Polymer({
   is: 'tr-v-ui-scalar-span',
 
+  properties: {
+    /**
+     * String identifier for grouping scalar spans with common context (e.g.
+     * all scalar spans in a single table column would typically share a common
+     * context and, thus, have the same context group identifier). If falsy,
+     * the scalar span will NOT be associated with any context.
+     */
+    contextGroup: {
+      type: String,
+      reflectToAttribute: true,
+      observer: 'contextGroupChanged_'
+    }
+  },
+
   created: function() {
     this.value_ = undefined;
     this.unit_ = undefined;
+
+    // TODO(petrcermak): Merge this into the context controller.
     this.context_ = undefined;
 
     this.warning_ = undefined;
-    this.percentage_ = undefined;
     this.significance_ = tr.v.Significance.DONT_CARE;
+
+    // To avoid unnecessary DOM traversal, search for the context controller
+    // only when necessary (when the span is attached and has a context group).
+    this.shouldSearchForContextController_ = false;
+    this.lazyContextController_ = undefined;
+    this.onContextUpdated_ = this.onContextUpdated_.bind(this);
+
+    // The span can specify a custom context range, which will override the
+    // values from the context controller.
+    this.customContextRange_ = undefined;
   },
 
   get significance() {
@@ -150,7 +194,7 @@
 
   set significance(s) {
     this.significance_ = s;
-    this.updateContent_();
+    this.updateContents_();
   },
 
   set contentTextDecoration(deco) {
@@ -168,17 +212,71 @@
     } else {
       this.value_ = value;
     }
-    this.updateContent_();
+    this.updateContents_();
+    if (this.hasContext_(this.contextGroup))
+      this.contextController_.onScalarSpanUpdated(this.contextGroup, this);
+    else
+      this.updateSparkline_();
+  },
+
+  get contextController_() {
+    if (this.shouldSearchForContextController_) {
+      this.lazyContextController_ =
+          tr.v.ui.getScalarContextControllerForElement(this);
+      this.shouldSearchForContextController_ = false;
+    }
+    return this.lazyContextController_;
+  },
+
+  hasContext_: function(contextGroup) {
+    // The ordering here is important. It ensures that we avoid a DOM traversal
+    // when the span doesn't have a context group.
+    return !!(contextGroup && this.contextController_);
+  },
+
+  contextGroupChanged_: function(newContextGroup, oldContextGroup) {
+    this.detachFromContextControllerIfPossible_(oldContextGroup);
+    if (!this.attachToContextControllerIfPossible_(newContextGroup)) {
+      // If the span failed to attach to a controller, it won't receive a
+      // context-updated event, so we trigger it manually.
+      this.onContextUpdated_();
+    }
+  },
+
+  attachToContextControllerIfPossible_: function(contextGroup) {
+    if (!this.hasContext_(contextGroup))
+      return false;
+    this.contextController_.addEventListener(
+        'context-updated', this.onContextUpdated_);
+    this.contextController_.onScalarSpanAdded(contextGroup, this);
+    return true;
+  },
+
+  detachFromContextControllerIfPossible_: function(contextGroup) {
+    if (!this.hasContext_(contextGroup))
+      return;
+    this.contextController_.removeEventListener(
+        'context-updated', this.onContextUpdated_);
+    this.contextController_.onScalarSpanRemoved(contextGroup, this);
   },
 
   attached: function() {
-    tr.v.Unit.addEventListener(
-        'display-mode-changed', this.updateContent_.bind(this));
+    tr.b.Unit.addEventListener(
+        'display-mode-changed', this.updateContents_.bind(this));
+    this.shouldSearchForContextController_ = true;
+    this.attachToContextControllerIfPossible_(this.contextGroup);
   },
 
   detached: function() {
-    tr.v.Unit.removeEventListener(
-        'display-mode-changed', this.updateContent_.bind(this));
+    tr.b.Unit.removeEventListener(
+        'display-mode-changed', this.updateContents_.bind(this));
+    this.detachFromContextControllerIfPossible_(this.contextGroup);
+    this.shouldSearchForContextController_ = false;
+    this.lazyContextController_ = undefined;
+  },
+
+  onContextUpdated_: function() {
+    this.updateSparkline_();
   },
 
   get context() {
@@ -187,7 +285,7 @@
 
   set context(context) {
     this.context_ = context;
-    this.updateContent_();
+    this.updateContents_();
   },
 
   get unit() {
@@ -196,21 +294,22 @@
 
   set unit(unit) {
     this.unit_ = unit;
-    this.updateContent_();
+    this.updateContents_();
+    this.updateSparkline_();
   },
 
   setValueAndUnit: function(value, unit) {
     this.value_ = value;
     this.unit_ = unit;
-    this.updateContent_();
+    this.updateContents_();
   },
 
-  get percentage() {
-    return this.percentage_;
+  get customContextRange() {
+    return this.customContextRange_;
   },
 
-  set percentage(percentage) {
-    this.percentage_ = percentage;
+  set customContextRange(customContextRange) {
+    this.customContextRange_ = customContextRange;
     this.updateSparkline_();
   },
 
@@ -226,22 +325,83 @@
   },
 
   updateSparkline_: function() {
-    if (this.percentage_ === undefined) {
-      this.$.sparkline.style.display = 'none';
-      this.$.sparkline.style.width = '0';
-    } else {
-      this.$.sparkline.style.display = 'block';
-      this.$.sparkline.style.width = (this.percentage_ * 100) + '%';
+    Polymer.dom(this.$.sparkline).classList.remove('positive');
+    Polymer.dom(this.$.sparkline).classList.remove('better');
+    Polymer.dom(this.$.sparkline).classList.remove('worse');
+    Polymer.dom(this.$.sparkline).classList.remove('same');
+    this.$.sparkline.style.display = 'none';
+    this.$.sparkline.style.left = '0';
+    this.$.sparkline.style.width = '0';
+
+    // Custom context range takes precedence over controller context range.
+    var range = this.customContextRange_;
+    if (!range && this.hasContext_(this.contextGroup)) {
+      var context = this.contextController_.getContext(this.contextGroup);
+      if (context)
+        range = context.range;
     }
+    if (!range || range.isEmpty)
+      return;
+
+    var leftPoint = Math.min(range.min, 0);
+    var rightPoint = Math.max(range.max, 0);
+    var pointDistance = rightPoint - leftPoint;
+    if (pointDistance === 0) {
+      // This can happen, for example, when all spans within the context have
+      // zero values (so |range| is [0, 0]).
+      return;
+    }
+
+    // Draw the sparkline.
+    this.$.sparkline.style.display = 'block';
+    var left, width;
+    if (this.value > 0) {
+      width = Math.min(this.value, rightPoint);
+      left = -leftPoint;
+      Polymer.dom(this.$.sparkline).classList.add('positive');
+    } else if (this.value <= 0) {
+      width = -Math.max(this.value, leftPoint);
+      left = (-leftPoint) - width;
+    }
+    this.$.sparkline.style.left = this.buildSparklineStyle_(
+        left / pointDistance, false);
+    this.$.sparkline.style.width = this.buildSparklineStyle_(
+        width / pointDistance, true);
+
+    // Set the sparkline color (if applicable).
+    var changeClass = this.changeClassName_;
+    if (changeClass)
+      Polymer.dom(this.$.sparkline).classList.add(changeClass);
   },
 
-  updateContent_: function() {
+  buildSparklineStyle_: function(ratio, isWidth) {
+    // To avoid visual glitches around the zero value bar, we subtract 1 pixel
+    // from the width of the element and multiply the remainder (100% - 1px) by
+    // |ratio|. The extra pixel is used for the sparkline border. This allows
+    // us to align zero sparklines with both positive and negative values:
+    //
+    //                          ::::::::::|  +10 MiB
+    //                          :::::|        +5 MiB
+    //                          |              0 MiB
+    //                     |:::::             -5 MiB
+    //                |::::::::::            -10 MiB
+    //
+    var position = 'calc(' + ratio + ' * (100% - 1px)';
+    if (isWidth)
+      position += ' + 1px';  // Extra pixel for sparkline border.
+    position += ')';
+    return position;
+  },
+
+  updateContents_: function() {
     Polymer.dom(this.$.significance).textContent = '';
     Polymer.dom(this.$.content).textContent = '';
     Polymer.dom(this.$.content).classList.remove('better');
     Polymer.dom(this.$.content).classList.remove('worse');
+    Polymer.dom(this.$.content).classList.remove('same');
     Polymer.dom(this.$.significance).classList.remove('better');
     Polymer.dom(this.$.significance).classList.remove('worse');
+    Polymer.dom(this.$.significance).classList.remove('same');
 
     if (this.unit_ === undefined)
       return;
@@ -259,64 +419,49 @@
     }
 
     this.$.significance.style.display = '';
-    var biggerIsBetter = false;
-    var smallerIsBetter = false;
-    switch (this.unit_.improvementDirection) {
-      case tr.v.ImprovementDirection.DONT_CARE:
-        return;
 
-      case tr.v.ImprovementDirection.BIGGER_IS_BETTER:
-        biggerIsBetter = true;
+    var changeClass = this.changeClassName_;
+    if (!changeClass)
+      return;  // Not a delta or we don't care.
+
+    var emoji, title;
+    switch (changeClass) {
+      case 'better':
+        emoji = tr.v.ui.Emoji.GRINNING_FACE;
+        title = 'improvement';
         break;
-
-      case tr.v.ImprovementDirection.SMALLER_IS_BETTER:
-        smallerIsBetter = true;
+      case 'worse':
+        emoji = tr.v.ui.Emoji.CONFOUNDED_FACE;
+        title = 'regression';
         break;
-    }
-
-    var better = ((biggerIsBetter && this.value > 0) ||
-        (smallerIsBetter && this.value < 0));
-    var worse = ((biggerIsBetter && this.value < 0) ||
-        (smallerIsBetter && this.value > 0));
-
-    var changeClass = '';
-    var emoji = tr.v.ui.Emoji.NEUTRAL_FACE;
-    var title = '';
-
-    if (better) {
-      changeClass = 'better';
-      emoji = tr.v.ui.Emoji.GRINNING_FACE;
-      title = 'improvement';
-    } else if (worse) {
-      changeClass = 'worse';
-      emoji = tr.v.ui.Emoji.CONFOUNDED_FACE;
-      title = 'regression';
-    } else {
-      title = 'no change';
+      case 'same':
+        emoji = tr.v.ui.Emoji.NEUTRAL_FACE;
+        title = 'no change';
+        break;
+      default:
+        throw new Error('Unknown change class: ' + changeClass);
     }
 
     // Set the content class separately from the significance class so that
     // NEUTRAL_FACE is always a neutral color.
-    if (changeClass)
-      Polymer.dom(this.$.content).classList.add(changeClass);
+    Polymer.dom(this.$.content).classList.add(changeClass);
 
     switch (this.significance) {
       case tr.v.Significance.DONT_CARE:
         emoji = '';
-        changeClass = '';
+        changeClass = 'same';
         break;
 
       case tr.v.Significance.INSIGNIFICANT:
-        changeClass = '';
-        emoji = tr.v.ui.Emoji.NEUTRAL_FACE;
-        if (better || worse)
+        if (changeClass !== 'same')
           title = 'insignificant ' + title;
+        emoji = tr.v.ui.Emoji.NEUTRAL_FACE;
+        changeClass = 'same';
         break;
 
       case tr.v.Significance.SIGNIFICANT:
-        if (!better && !worse)
+        if (changeClass === 'same')
           throw new Error('How can no change be significant?');
-
         title = 'significant ' + title;
         break;
     }
@@ -324,8 +469,28 @@
     Polymer.dom(this.$.significance).textContent = emoji;
     this.$.significance.title = title;
     this.$.content.title = title;
-    if (changeClass)
-      Polymer.dom(this.$.significance).classList.add(changeClass);
+    Polymer.dom(this.$.significance).classList.add(changeClass);
+  },
+
+  get changeClassName_() {
+    if (!this.unit_ || !this.unit_.isDelta)
+      return undefined;
+
+    switch (this.unit_.improvementDirection) {
+      case tr.b.ImprovementDirection.DONT_CARE:
+        return undefined;
+      case tr.b.ImprovementDirection.BIGGER_IS_BETTER:
+        if (this.value === 0)
+          return 'same';
+        return this.value > 0 ? 'better' : 'worse';
+      case tr.b.ImprovementDirection.SMALLER_IS_BETTER:
+        if (this.value === 0)
+          return 'same';
+        return this.value < 0 ? 'better' : 'worse';
+      default:
+        throw new Error('Unknown improvement direction: ' +
+            this.unit_.improvementDirection);
+    }
   },
 
   get warning() {
diff --git a/catapult/tracing/tracing/value/ui/scalar_span_test.html b/catapult/tracing/tracing/value/ui/scalar_span_test.html
index 1540316..d17282a 100644
--- a/catapult/tracing/tracing/value/ui/scalar_span_test.html
+++ b/catapult/tracing/tracing/value/ui/scalar_span_test.html
@@ -5,19 +5,22 @@
 found in the LICENSE file.
 -->
 
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/time_display_mode.html">
+<link rel="import" href="/tracing/base/raf.html">
+<link rel="import" href="/tracing/base/range.html">
+<link rel="import" href="/tracing/base/time_display_modes.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/base/unit_scale.html">
+<link rel="import" href="/tracing/value/histogram.html">
+<link rel="import" href="/tracing/value/ui/scalar_context_controller.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/unit_scale.html">
 
 <script>
 'use strict';
 
 tr.b.unittest.testSuite(function() {
   var ScalarNumeric = tr.v.ScalarNumeric;
-  var Unit = tr.v.Unit;
-  var THIS_DOC = document._currentScript.ownerDocument;
+  var Unit = tr.b.Unit;
+  var THIS_DOC = document.currentScript.ownerDocument;
 
   function checkScalarSpan(test, value, unit, expectedContent, opt_options) {
     var options = opt_options || {};
@@ -215,6 +218,7 @@
     checkScalarSpan(this, 123.456789, Unit.byName.timeDurationInMs,
         '123.457 ms');
     checkScalarSpan(this, 0, Unit.byName.normalizedPercentage, '0.000%');
+    checkScalarSpan(this, 1, Unit.byName.normalizedPercentage, '100.000%');
     checkScalarSpan(this, -2560, Unit.byName.sizeInBytes, '-2.5 KiB');
   });
 
@@ -276,7 +280,7 @@
     assert.strictEqual(span.value, 3.14);
     assert.strictEqual(span.unit, Unit.byName.powerInWatts);
     assert.isUndefined(span.context);
-    assert.isUndefined(span.percentage);
+    assert.isUndefined(span.customContextRange);
     assert.isUndefined(span.warning);
     assert.isFalse(span.rightAlign);
     this.addHTMLOutput(span);
@@ -291,21 +295,24 @@
     assert.strictEqual(span.value, 2.72);
     assert.strictEqual(span.unit, Unit.byName.energyInJoules);
     assert.isUndefined(span.context);
-    assert.isUndefined(span.percentage);
+    assert.isUndefined(span.customContextRange);
     assert.isUndefined(span.warning);
     assert.isTrue(span.rightAlign);
     this.addHTMLOutput(span);
 
     // Unit and sparkline set via config.
-    var span = tr.v.ui.createScalarSpan(1.62,
-        { unit: Unit.byName.timeStampInMs, total: 3.24 });
+    var span = tr.v.ui.createScalarSpan(1.62, {
+        unit: Unit.byName.timeStampInMs,
+        customContextRange: tr.b.Range.fromExplicitRange(0, 3.24)
+    });
     assert.strictEqual(Polymer.dom(span.$.content).textContent, '1.620 ms');
     assert.strictEqual(span.ownerDocument, document);
     assert.strictEqual(span.tagName, 'TR-V-UI-SCALAR-SPAN');
     assert.strictEqual(span.value, 1.62);
     assert.strictEqual(span.unit, Unit.byName.timeStampInMs);
     assert.isUndefined(span.context);
-    assert.strictEqual(span.percentage, 0.5);
+    assert.isTrue(tr.b.Range.fromExplicitRange(0, 3.24).equals(
+        span.customContextRange));
     assert.isUndefined(span.warning);
     assert.isFalse(span.rightAlign);
     this.addHTMLOutput(span);
@@ -314,7 +321,7 @@
     var span = tr.v.ui.createScalarSpan(
         new ScalarNumeric(Unit.byName.sizeInBytesDelta_smallerIsBetter,
             256 * 1024 * 1024), { context: {
-              unitPrefix: tr.v.UnitScale.Binary.KIBI,
+              unitPrefix: tr.b.UnitScale.Binary.KIBI,
               minimumFractionDigits: 2
             } });
     assert.strictEqual(
@@ -324,8 +331,8 @@
     assert.strictEqual(span.value, 256 * 1024 * 1024);
     assert.strictEqual(span.unit, Unit.byName.sizeInBytesDelta_smallerIsBetter);
     assert.deepEqual(span.context,
-        { unitPrefix: tr.v.UnitScale.Binary.KIBI, minimumFractionDigits: 2 });
-    assert.isUndefined(span.percentage);
+        { unitPrefix: tr.b.UnitScale.Binary.KIBI, minimumFractionDigits: 2 });
+    assert.isUndefined(span.customContextRange);
     assert.isUndefined(span.warning);
     assert.isFalse(span.rightAlign);
     this.addHTMLOutput(span);
@@ -339,10 +346,10 @@
     this.addHTMLOutput(span);
   });
 
-  test('instantiate_withPercentage', function() {
+  test('instantiate_withCustomContextRange', function() {
     var span = document.createElement('tr-v-ui-scalar-span');
-    span.value = new ScalarNumeric(Unit.byName.unitlessNumber, 99);
-    span.percentage = 0.66;
+    span.value = new ScalarNumeric(Unit.byName.unitlessNumber, 0.99);
+    span.customContextRange = tr.b.Range.fromExplicitRange(0, 3);
     this.addHTMLOutput(span);
   });
 
@@ -380,55 +387,543 @@
 
   test('respectCurrentDisplayUnit', function() {
     try {
-      Unit.currentTimeDisplayMode = tr.v.TimeDisplayModes.ns;
+      Unit.currentTimeDisplayMode = tr.b.TimeDisplayModes.ns;
 
       var span = document.createElement('tr-v-ui-scalar-span');
       span.setValueAndUnit(73, Unit.byName.timeStampInMs);
       this.addHTMLOutput(span);
 
       assert.isTrue(Polymer.dom(span.$.content).textContent.indexOf('ns') > 0);
-      Unit.currentTimeDisplayMode = tr.v.TimeDisplayModes.ms;
+      Unit.currentTimeDisplayMode = tr.b.TimeDisplayModes.ms;
       assert.isTrue(Polymer.dom(span.$.content).textContent.indexOf('ms') > 0);
     } finally {
       Unit.reset();
     }
   });
 
-  test('displaySparkline', function() {
-    var div = document.createElement('div');
-    div.style.width = '100px';
-    this.addHTMLOutput(div);
+  function checkSparkline(span, expectation) {
+    tr.b.forceAllPendingTasksToRunForTest();
+    var sparklineEl = span.$.sparkline;
+    var computedStyle = getComputedStyle(sparklineEl);
 
-    function addAndCheckScalarSpan(percentage, expectedDisplay, expectedWidth) {
-      var span = tr.v.ui.createScalarSpan(new ScalarNumeric(
-          Unit.byName.timeDurationInMs, 10 * div.children.length));
-      if (percentage !== null)
-        span.percentage = percentage;
-
-      Polymer.dom(div).appendChild(span);
-
-      var computedStyle = getComputedStyle(span.$.sparkline);
-      assert.equal(computedStyle.display, expectedDisplay);
-      assert.equal(parseInt(computedStyle.width), expectedWidth);
+    var expectedDisplay = expectation.display || 'block';
+    assert.strictEqual(computedStyle.display, expectedDisplay);
+    if (expectedDisplay === 'none') {
+      // Test expectation sanity check.
+      assert.notProperty(expectation, 'left');
+      assert.notProperty(expectation, 'width');
+      assert.notProperty(expectation, 'classList');
+      return;
     }
 
-    addAndCheckScalarSpan(null /* no percentage set */, 'none', 0);
-    addAndCheckScalarSpan(undefined, 'none', 0);
-    addAndCheckScalarSpan(0, 'block', 1);
-    addAndCheckScalarSpan(0.05, 'block', 5);
-    addAndCheckScalarSpan(0.5, 'block', 50);
-    addAndCheckScalarSpan(0.95, 'block', 95);
-    addAndCheckScalarSpan(1, 'block', 100);
+    assert.closeTo(parseFloat(computedStyle.left), expectation.left, 0.1);
+    assert.closeTo(parseFloat(computedStyle.width), expectation.width, 0.1);
+    assert.sameMembers(tr.b.asArray(sparklineEl.classList),
+        expectation.classList || []);
+  }
+
+  test('customContextRange', function() {
+    var div = document.createElement('div');
+    div.style.width = '101px';  // One extra pixel for sparkline border.
+    this.addHTMLOutput(div);
+
+    // No custom context range.
+    var span1 = tr.v.ui.createScalarSpan(0, {
+      unit: Unit.byName.timeStampInMs
+    });
+    Polymer.dom(div).appendChild(span1);
+    checkSparkline(span1, {display: 'none'});
+    var span2 = tr.v.ui.createScalarSpan(0, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: undefined
+    });
+    Polymer.dom(div).appendChild(span2);
+    checkSparkline(span2, {display: 'none'});
+    var span3 = tr.v.ui.createScalarSpan(0, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: new tr.b.Range()  // Empty range.
+    });
+    Polymer.dom(div).appendChild(span3);
+    checkSparkline(span3, {display: 'none'});
+
+    var range = tr.b.Range.fromExplicitRange(-15, 15);
+
+    // Values inside custom context range.
+    var span4 = tr.v.ui.createScalarSpan(-15, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span4);
+    checkSparkline(span4, {left: 0, width: 51});
+    var span5 = tr.v.ui.createScalarSpan(-14, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span5);
+    checkSparkline(span5, {left: 3.33, width: 47.67});
+    var span6 = tr.v.ui.createScalarSpan(-10, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span6);
+    checkSparkline(span6, {left: 16.67, width: 34.33});
+    var span7 = tr.v.ui.createScalarSpan(0, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span7);
+    checkSparkline(span7, {left: 50, width: 1});
+    var span8 = tr.v.ui.createScalarSpan(10, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span8);
+    checkSparkline(span8, {left: 50, width: 34.33, classList: ['positive']});
+    var span9 = tr.v.ui.createScalarSpan(14, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span9);
+    checkSparkline(span9, {left: 50, width: 47.67, classList: ['positive']});
+    var span10 = tr.v.ui.createScalarSpan(15, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span10);
+    checkSparkline(span10, {left: 50, width: 51, classList: ['positive']});
+
+    // Values outside custom context range.
+    var span11 = tr.v.ui.createScalarSpan(-20, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span11);
+    checkSparkline(span11, {left: 0, width: 51});
+    var span12 = tr.v.ui.createScalarSpan(20, {
+      unit: Unit.byName.timeStampInMs,
+      customContextRange: range
+    });
+    Polymer.dom(div).appendChild(span12);
+    checkSparkline(span12, {left: 50, width: 51, classList: ['positive']});
   });
 
   test('emptyNumeric', function() {
     assert.strictEqual(tr.v.ui.createScalarSpan(), '');
+  });
 
-    var numeric = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      10).build();
-    var value = new tr.v.NumericValue('foo', numeric);
-    assert.strictEqual(tr.v.ui.createScalarSpan(value), '');
+  test('contextControllerChanges', function() {
+    var div = document.createElement('div');
+    div.style.width = '101px';  // One extra pixel for sparkline border.
+    this.addHTMLOutput(div);
+
+    div.appendChild(
+        document.createElement('tr-v-ui-scalar-context-controller'));
+
+    var s1 = tr.v.ui.createScalarSpan(10, {
+      unit: Unit.byName.powerInWatts
+    });
+    Polymer.dom(div).appendChild(s1);
+    checkSparkline(s1, {display: 'none'});
+
+    var s2 = tr.v.ui.createScalarSpan(20, {
+      unit: Unit.byName.powerInWatts,
+      contextGroup: 'A'
+    });
+    Polymer.dom(div).appendChild(s2);
+    checkSparkline(s1, {display: 'none'});
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+
+    var s3 = tr.v.ui.createScalarSpan(30, {
+      unit: Unit.byName.powerInWatts,
+      contextGroup: 'A'
+    });
+    Polymer.dom(div).appendChild(s3);
+    checkSparkline(s1, {display: 'none'});
+    checkSparkline(s2, {left: 0, width: 67.67, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+
+    var s4 = tr.v.ui.createScalarSpan(40, {
+      unit: Unit.byName.powerInWatts,
+      contextGroup: 'B'
+    });
+    Polymer.dom(div).appendChild(s4);
+    checkSparkline(s1, {display: 'none'});
+    checkSparkline(s2, {left: 0, width: 67.67, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {left: 0, width: 101, classList: ['positive']});
+
+    s3.contextGroup = 'B';
+    checkSparkline(s1, {display: 'none'});
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 76, classList: ['positive']});
+    checkSparkline(s4, {left: 0, width: 101, classList: ['positive']});
+
+    s1.setAttribute('context-group', 'A');
+    checkSparkline(s1, {left: 0, width: 51, classList: ['positive']});
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 76, classList: ['positive']});
+    checkSparkline(s4, {left: 0, width: 101, classList: ['positive']});
+
+    s1.value = 50;
+    checkSparkline(s1, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s2, {left: 0, width: 41, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 76, classList: ['positive']});
+    checkSparkline(s4, {left: 0, width: 101, classList: ['positive']});
+
+    s1.customContextRange = tr.b.Range.fromExplicitRange(0, 150);
+    checkSparkline(s1, {left: 0, width: 34.33, classList: ['positive']});
+    checkSparkline(s2, {left: 0, width: 41, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 76, classList: ['positive']});
+    checkSparkline(s4, {left: 0, width: 101, classList: ['positive']});
+
+    s4.contextGroup = null;
+    checkSparkline(s1, {left: 0, width: 34.33, classList: ['positive']});
+    checkSparkline(s2, {left: 0, width: 41, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+
+    s1.customContextRange = undefined;
+    checkSparkline(s1, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s2, {left: 0, width: 41, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+
+    s4.value = 0;
+    checkSparkline(s1, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s2, {left: 0, width: 41, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+
+    div.removeChild(s1);
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+
+    s1.contextGroup = 'B';
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+
+    div.appendChild(s1);
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 61, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+    checkSparkline(s1, {left: 0, width: 101, classList: ['positive']});
+
+    s1.removeAttribute('context-group');
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+    checkSparkline(s1, {display: 'none'});
+
+    s1.customContextRange = tr.b.Range.fromExplicitRange(0, 100);
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s4, {display: 'none'});
+    checkSparkline(s1, {left: 0, width: 51, classList: ['positive']});
+
+    s3.value = 0;
+    checkSparkline(s2, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(s3, {display: 'none'});
+    checkSparkline(s4, {display: 'none'});
+    checkSparkline(s1, {left: 0, width: 51, classList: ['positive']});
+  });
+
+  test('deltaSparkline_noImprovementDirection', function() {
+    var div = document.createElement('div');
+    div.style.width = '101px';  // One extra pixel for sparkline border.
+    this.addHTMLOutput(div);
+    div.appendChild(
+        document.createElement('tr-v-ui-scalar-context-controller'));
+
+    var span1 = tr.v.ui.createScalarSpan(20971520, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span1);
+    var span2 = tr.v.ui.createScalarSpan(15728640, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span2);
+    var span3 = tr.v.ui.createScalarSpan(12582912, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span3);
+    var span4 = tr.v.ui.createScalarSpan(11534336, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span4);
+    var span5 = tr.v.ui.createScalarSpan(10485760, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span5);
+    var span6 = tr.v.ui.createScalarSpan(9437184, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span6);
+    var span7 = tr.v.ui.createScalarSpan(8388608, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span7);
+    var span8 = tr.v.ui.createScalarSpan(5242880, {
+      unit: Unit.byName.sizeInBytesDelta,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span8);
+
+    // We must check the sparklines *after* all spans are appended because new
+    // values can change the context range.
+    checkSparkline(span1, {left: 0, width: 101, classList: ['positive']});
+    checkSparkline(span2, {left: 0, width: 76, classList: ['positive']});
+    checkSparkline(span3, {left: 0, width: 61, classList: ['positive']});
+    checkSparkline(span4, {left: 0, width: 56, classList: ['positive']});
+    checkSparkline(span5, {left: 0, width: 51, classList: ['positive']});
+    checkSparkline(span6, {left: 0, width: 46, classList: ['positive']});
+    checkSparkline(span7, {left: 0, width: 41, classList: ['positive']});
+    checkSparkline(span8, {left: 0, width: 26, classList: ['positive']});
+  });
+
+  test('deltaSparkline_smallerIsBetter', function() {
+    var div = document.createElement('div');
+    div.style.width = '101px';  // One extra pixel for sparkline border.
+    this.addHTMLOutput(div);
+    div.appendChild(
+        document.createElement('tr-v-ui-scalar-context-controller'));
+
+    var span1 = tr.v.ui.createScalarSpan(5242880, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span1);
+    var span2 = tr.v.ui.createScalarSpan(0, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span2);
+    var span3 = tr.v.ui.createScalarSpan(-3145728, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span3);
+    var span4 = tr.v.ui.createScalarSpan(-4194304, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span4);
+    var span5 = tr.v.ui.createScalarSpan(-5242880, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span5);
+    var span6 = tr.v.ui.createScalarSpan(-6291456, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span6);
+    var span7 = tr.v.ui.createScalarSpan(-7340032, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span7);
+    var span8 = tr.v.ui.createScalarSpan(-15728640, {
+      unit: Unit.byName.sizeInBytesDelta_smallerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span8);
+
+    // We must check the sparklines *after* all spans are appended because new
+    // values can change the context range.
+    checkSparkline(span1,
+        {left: 75, width: 26, classList: ['positive', 'worse']});
+    checkSparkline(span2, {left: 75, width: 1, classList: ['same']});
+    checkSparkline(span3, {left: 60, width: 16, classList: ['better']});
+    checkSparkline(span4, {left: 55, width: 21, classList: ['better']});
+    checkSparkline(span5, {left: 50, width: 26, classList: ['better']});
+    checkSparkline(span6, {left: 45, width: 31, classList: ['better']});
+    checkSparkline(span7, {left: 40, width: 36, classList: ['better']});
+    checkSparkline(span8, {left: 0, width: 76, classList: ['better']});
+  });
+
+  test('deltaSparkline_biggerIsBetter', function() {
+    var div = document.createElement('div');
+    div.style.width = '101px';  // One extra pixel for sparkline border.
+    this.addHTMLOutput(div);
+    div.appendChild(
+        document.createElement('tr-v-ui-scalar-context-controller'));
+
+    var span1 = tr.v.ui.createScalarSpan(0, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span1);
+    var span2 = tr.v.ui.createScalarSpan(-5242880, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span2);
+    var span3 = tr.v.ui.createScalarSpan(-8388608, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span3);
+    var span4 = tr.v.ui.createScalarSpan(-9437184, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span4);
+    var span5 = tr.v.ui.createScalarSpan(-10485760, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span5);
+    var span6 = tr.v.ui.createScalarSpan(-11534336, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span6);
+    var span7 = tr.v.ui.createScalarSpan(-12582912, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span7);
+    var span8 = tr.v.ui.createScalarSpan(-20971520, {
+      unit: Unit.byName.sizeInBytesDelta_biggerIsBetter,
+      contextGroup: 'test'
+    });
+    Polymer.dom(div).appendChild(span8);
+
+    // We must check the sparklines *after* all spans are appended because new
+    // values can change the context range.
+    checkSparkline(span1, {left: 100, width: 1, classList: ['same']});
+    checkSparkline(span2, {left: 75, width: 26, classList: ['worse']});
+    checkSparkline(span3, {left: 60, width: 41, classList: ['worse']});
+    checkSparkline(span4, {left: 55, width: 46, classList: ['worse']});
+    checkSparkline(span5, {left: 50, width: 51, classList: ['worse']});
+    checkSparkline(span6, {left: 45, width: 56, classList: ['worse']});
+    checkSparkline(span7, {left: 40, width: 61, classList: ['worse']});
+    checkSparkline(span8, {left: 0, width: 101, classList: ['worse']});
+  });
+
+  test('classListChanges', function() {
+    var div = document.createElement('div');
+    div.style.width = '200px';
+    this.addHTMLOutput(div);
+
+    var span = tr.v.ui.createScalarSpan(10, {
+      unit: Unit.byName.energyInJoulesDelta_smallerIsBetter,
+      significance: tr.v.Significance.SIGNIFICANT,
+      customContextRange: tr.b.Range.fromExplicitRange(-20, 20)
+    });
+    Polymer.dom(div).appendChild(span);
+
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList),
+        ['positive', 'worse']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList),
+        ['worse']);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), ['worse']);
+
+    span.significance = tr.v.Significance.DONT_CARE;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList),
+        ['positive', 'worse']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), ['same']);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), ['worse']);
+
+    span.value = -5;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList), ['better']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), ['same']);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), ['better']);
+
+    span.unit = Unit.byName.energyInJoules;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList), []);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), []);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), []);
+
+    span.value = 20;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList), ['positive']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), []);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), []);
+
+    span.unit = Unit.byName.energyInJoulesDelta_biggerIsBetter;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList),
+        ['positive', 'better']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), ['same']);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), ['better']);
+
+    span.significance = tr.v.Significance.INSIGNIFICANT;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList),
+        ['positive', 'better']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), ['same']);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), ['better']);
+
+    span.unit = Unit.byName.energyInJoulesDelta_smallerIsBetter;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList),
+        ['positive', 'worse']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), ['same']);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), ['worse']);
+
+    span.unit = Unit.byName.energyInJoulesDelta;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList), ['positive']);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), []);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), []);
+
+    span.value = 0;
+    assert.sameMembers(tr.b.asArray(span.$.sparkline.classList), []);
+    assert.sameMembers(tr.b.asArray(span.$.significance.classList), []);
+    assert.sameMembers(tr.b.asArray(span.$.content.classList), []);
+  });
+
+  test('sparkline_uncentered', function() {
+    var div = document.createElement('div');
+    this.addHTMLOutput(div);
+    div.appendChild(
+        document.createElement('tr-v-ui-scalar-context-controller'));
+
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(-1, {
+      unit: Unit.byName.powerInWattsDelta,
+      contextGroup: 'test'
+    }));
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(100, {
+      unit: Unit.byName.powerInWattsDelta,
+      contextGroup: 'test'
+    }));
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(80, {
+      unit: Unit.byName.powerInWattsDelta,
+      contextGroup: 'test'
+    }));
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(60, {
+      unit: Unit.byName.powerInWattsDelta,
+      contextGroup: 'test'
+    }));
+  });
+
+  test('sparkline_centered', function() {
+    var div = document.createElement('div');
+    this.addHTMLOutput(div);
+    div.appendChild(
+        document.createElement('tr-v-ui-scalar-context-controller'));
+
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(-1, {
+      unit: Unit.byName.powerInWattsDelta,
+      customContextRange: tr.b.Range.fromExplicitRange(-100, 100)
+    }));
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(100, {
+      unit: Unit.byName.powerInWattsDelta,
+      customContextRange: tr.b.Range.fromExplicitRange(-100, 100)
+    }));
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(80, {
+      unit: Unit.byName.powerInWattsDelta,
+      customContextRange: tr.b.Range.fromExplicitRange(-100, 100)
+    }));
+    Polymer.dom(div).appendChild(tr.v.ui.createScalarSpan(60, {
+      unit: Unit.byName.powerInWattsDelta,
+      customContextRange: tr.b.Range.fromExplicitRange(-100, 100)
+    }));
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/value/ui/value_set_table.html b/catapult/tracing/tracing/value/ui/value_set_table.html
index 4eb50e8..aa9ba6f 100644
--- a/catapult/tracing/tracing/value/ui/value_set_table.html
+++ b/catapult/tracing/tracing/value/ui/value_set_table.html
@@ -6,108 +6,138 @@
 -->
 
 <link rel="import" href="/tracing/base/raf.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/ui/base/grouping_table_groupby_picker.html">
 <link rel="import" href="/tracing/ui/base/table.html">
 <link rel="import" href="/tracing/value/ui/diagnostic_span.html">
 <link rel="import" href="/tracing/value/ui/histogram_span.html">
 <link rel="import" href="/tracing/value/ui/scalar_span.html">
-<link rel="import" href="/tracing/value/ui/value_set_view.html">
-<link rel="import" href="/tracing/value/unit.html">
+<link rel="import" href="/tracing/value/value_set.html">
 
 <dom-module id="tr-v-ui-value-set-table">
   <template>
     <style>
     :host {
-      display: flex;
-      flex-direction: column;
+      display: block;
     }
+
+    #container {
+      flex-direction: column;
+      display: none;
+    }
+
     table-container {
+      margin-top: 5px;
       display: flex;
       min-height: 0px;
       overflow-y: auto;
     }
-    div#error {
-      color: red;
-    }
+
     #histogram {
       display: none;
     }
+
+    #zero {
+      color: red;
+    }
+
     #search {
       max-width: 20em;
-      margin-top: 5px;
-      margin-bottom: 5px;
+      margin-right: 20px;
+    }
+
+    #controls {
+      white-space: nowrap;
+    }
+
+    #reference_column_container * {
+      margin-right: 20px;
     }
     </style>
 
-    <input id="search" placeholder="Find Value name">
-    <div>
-      <input type="checkbox" id="show_all">
-      <label for="show_all">Show all</label>
+    <div id="zero">zero values</div>
+
+    <div id="container">
+      <div id="controls">
+        <input id="search" placeholder="Find Histogram name" on-keyup="onSearch_">
+
+        <span id="reference_column_container"></span>
+
+        <input type="checkbox" id="show_all" on-change="onShowAllChange_" title="When unchecked, less important histograms are hidden.">
+        <label for="show_all" title="When unchecked, less important histograms are hidden.">Show all</label>
+      </div>
+
+      <tr-ui-b-grouping-table-groupby-picker id="picker">
+      </tr-ui-b-grouping-table-groupby-picker>
+
+      <table-container>
+        <tr-ui-b-table id="table"/>
+      </table-container>
+      <tr-v-ui-histogram-span id="histogram"/>
     </div>
-    <div id="error"></div>
-    <table-container>
-      <tr-ui-b-table id="table"></tr-ui-b-table>
-    </table-container>
-    <tr-v-ui-histogram-span id="histogram"></tr-v-ui-histogram-span>
   </template>
 </dom-module>
 
 <script>
 'use strict';
 tr.exportTo('tr.ui', function() {
-
   /**
-   * @param {!tr.v.Value} value
-   * @param {string} fieldName
-   * @param {*} defaultValue
-   * @return {*}
+   * Returns a closure that gets a story grouping key label from a Histogram.
+   *
+   * @param {string} storyGroupingKey
+   * @return {!function(tr.v.Histogram):string}
    */
-  function getIterationInfoField(value, fieldName, defaultValue) {
-    var iteration = tr.v.d.IterationInfo.getFromValue(value);
-    if (!(iteration instanceof tr.v.d.IterationInfo))
-      return defaultValue;
-    return iteration[fieldName];
+  function makeStoryGroupingKeyLabelGetter(storyGroupingKey) {
+    return v => tr.v.d.IterationInfo.getStoryGroupingKeyLabel(
+        v, storyGroupingKey);
   }
 
-  /**
-   * @param {!tr.v.Value} value
-   * @param {string} fieldName
-   * @return {string}
-   */
-  function getStoryGroupingKeyLabel(value, storyGroupingKey) {
-    var iteration = tr.v.d.IterationInfo.getFromValue(value);
-    if (!(iteration instanceof tr.v.d.IterationInfo))
-      return storyGroupingKey + ': undefined';
-    return storyGroupingKey + ': ' +
-      iteration.storyGroupingKeys[storyGroupingKey];
-  }
+  var getDisplayLabel = tr.v.ValueSet.GROUPINGS.DISPLAY_LABEL.dataFn;
 
-  /**
-   * @param {!tr.v.Value} value
-   * @return {string}
-   */
-  var getDisplayLabel = v => getIterationInfoField(v, 'displayLabel', 'Value');
+  var DEFAULT_POSSIBLE_GROUPS = [];
+  DEFAULT_POSSIBLE_GROUPS.push({
+    key: tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key,
+    label: tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.label,
+    dataFn: v => v.shortName || v.name
+  });
+
+  tr.b.iterItems(tr.v.ValueSet.GROUPINGS, function(name, group) {
+    // DISPLAY_LABEL is used to define the columns, so don't allow grouping
+    // rows by it.
+    // Override HISTOGRAM_NAME so that we can display shortName.
+    if (group !== tr.v.ValueSet.GROUPINGS.DISPLAY_LABEL &&
+        group !== tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME)
+      DEFAULT_POSSIBLE_GROUPS.push(group);
+  });
 
   var SELECTED_VALUE_SETTINGS_KEY = 'tr-v-ui-value-set-table-value';
   var SHOW_ALL_SETTINGS_KEY = 'tr-v-ui-value-set-table-show-all';
 
+  var UNMERGEABLE = '(unmergeable)';
+
+  function mergeCells(a, b) {
+    if (a === UNMERGEABLE || b === UNMERGEABLE || !a || !b ||
+        !a.canAddHistogram(b))
+      return UNMERGEABLE;
+    a = a.clone();
+    a.addHistogram(b);
+    return a;
+  }
+
   /**
    * Recursively groups |values|.
    * TODO(benjhayden): Use ES6 Maps instead of dictionaries?
    *
-   * @param {!Array.<!tr.v.Value>} values
-   * @param {!Array.<!function(!tr.v.Value):(string|number)>} groupingCallbacks
-   * @return {!(Object|tr.v.Value)}
+   * @param {!Array.<!tr.v.Histogram>} values
+   * @param {!Array.<!function(!tr.v.Histogram):(string|number)>}
+   *   groupingCallbacks
+   * @return {!(Object|tr.v.Histogram)}
    */
   function organizeValues(values, groupingCallbacks, level) {
     if (groupingCallbacks.length === level) {
-      // Recursion base case: there should only be a single value when we've
-      // grouped by every possible grouping.
-      if (values.length > 1) {
-        console.warn('Multiple Values with same name, benchmarkName, ' +
-            'storyGroupingKeys, storyName, start, storysetRepeatCounter, ' +
-            'storyRepeatCounter, and displayLabel', values);
-      }
-      return values[0];
+      // Recursion base case! Merge all remaining values.
+      // Be careful to retain the clone() semantics instead of in-place merging.
+      return values.reduce(mergeCells);
     }
 
     // Group the values by the current grouping.
@@ -122,26 +152,14 @@
     }
 
     // Recursively group groupedValues.
-    return tr.b.mapItems(groupedValues, function(key, groupValues) {
-      return organizeValues(groupValues, groupingCallbacks, level + 1);
-    });
+    return tr.b.mapItems(groupedValues, (key, groupValues) => organizeValues(
+        groupValues, groupingCallbacks, level + 1));
   }
 
   Polymer({
     is: 'tr-v-ui-value-set-table',
 
     /**
-     * Return true if this view supports this ValueSet.
-     * Value-set-table supports all possible metrics, so it always returns true.
-     *
-     * @param {!tr.v.ValueSet} values
-     * @return {boolean}
-     */
-    supportsValueSet: function(values) {
-      return true;
-    },
-
-    /**
      * This can optionally depend on the ValueSet.
      *
      * @return {string}
@@ -154,39 +172,71 @@
       // TODO(benjhayden): Should these all be ValueSets?
       /** @type {undefined|!tr.v.ValueSet} */
       this.values_ = undefined;
-      /** @type {!Array.<!tr.v.Value>} */
+      /** @type {!Array.<!tr.v.Histogram>} */
       this.sourceValues_ = [];
-      /** @type {!Object} */
-      this.summaryValuesByGuid_ = {};
 
       this.rows_ = undefined;
       this.columns_ = undefined;
+
+      this.updatingContents_ = false;
+      this.displayLabels_ = undefined;
+      this.referenceDisplayLabel_ = undefined;
     },
 
     ready: function() {
       this.$.table.selectionMode = tr.ui.b.TableFormat.SelectionMode.CELL;
       this.$.table.addEventListener('selection-changed',
           this.onSelectionChanged_.bind(this));
-      this.$.table.addEventListener('selected-column-changed',
-          this.onSelectedColumnChanged_.bind(this));
       this.addEventListener('requestSelectionChange',
           this.onRelatedValueSelected_.bind(this));
-      this.$.search.addEventListener('keyup', this.onSearch_.bind(this));
       this.$.show_all.checked = tr.b.Settings.get(SHOW_ALL_SETTINGS_KEY, false);
-      this.$.show_all.addEventListener('change',
-          this.onShowAllChange_.bind(this));
+      this.$.picker.settingsKey = 'tr-v-ui-value-set-table-groupby-picker';
+
+      this.$.picker.possibleGroups = DEFAULT_POSSIBLE_GROUPS.slice();
+      this.$.picker.defaultGroupKeys = [
+        tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key,
+        tr.v.ValueSet.GROUPINGS.STORY_NAME.key];
+      this.$.picker.addEventListener('current-groups-changed',
+                                     this.currentGroupsChanged_.bind(this));
+    },
+
+    set groupingKeys(keys) {
+      this.$.picker.currentGroupKeys = keys;
+    },
+
+    get groupingKeys() {
+      return this.$.picker.currentGroupKeys;
+    },
+
+    get possibleGroupingKeys() {
+      return this.$.picker.possibleGroups.map(g => g.key);
+    },
+
+    currentGroupsChanged_: function() {
+      if (this.updatingContents_)
+        return;
+
+      if (this.$.picker.currentGroups.length === 0 &&
+          this.possibleGroupingKeys.length > 0) {
+        this.$.picker.currentGroupKeys = [this.$.picker.possibleGroups[0].key];
+      }
+      // TODO(benjhayden): remember selected cells and column
+      var expansionStates = undefined;
+      if (this.rows_)
+        expansionStates = this.getExpansionStates_(this.rows_);
+      this.updateContents_();
+      if (expansionStates)
+        this.setExpansionStates_(expansionStates, this.rows_);
     },
 
     onShowAllChange_: function() {
-      tr.b.Settings.set(SHOW_ALL_SETTINGS_KEY, this.$.show_all.checked);
-      this.updateContents_();
-    },
+      if (this.updatingContents_)
+        return;
 
-    onSelectedColumnChanged_: function() {
-      // Force the table to rebuild the cell values without forgetting which
-      // rows were expanded.
+      tr.b.Settings.set(SHOW_ALL_SETTINGS_KEY, this.$.show_all.checked);
+      // TODO(benjhayden): remember selected cells and column
       var expansionStates = this.getExpansionStates_(this.rows_);
-      this.$.table.tableRows = this.rows_;
+      this.updateContents_();
       this.setExpansionStates_(expansionStates, this.rows_);
     },
 
@@ -204,7 +254,8 @@
 
     setExpansionStates_: function(states, rows) {
       for (var i = 0; i < rows.length; ++i) {
-        if (states[i]) {
+        if (states[i] && rows[i] && rows[i].subRows &&
+            rows[i].subRows.length > 0) {
           this.$.table.setExpandedForTableRow(rows[i], true);
           this.setExpansionStates_(states[i], rows[i].subRows);
         }
@@ -221,7 +272,7 @@
 
     onRelatedValueSelected_: function(event) {
       var value = event.selection;
-      if (!(value instanceof tr.v.Value))
+      if (!(value instanceof tr.v.Histogram))
         return;
 
       event.stopPropagation();
@@ -268,6 +319,7 @@
           continue;
 
         if (test === value) {
+          found = true;
           this.$.show_all.checked = true;
           this.onShowAllChange_();
           this.onRelatedValueSelected_(event);
@@ -283,10 +335,9 @@
       if (row && col && this.columns_)
         cell = row.columns[this.columns_[col].title];
 
-      if ((cell instanceof tr.v.NumericValue) &&
-          (cell.numeric instanceof tr.v.Numeric)) {
+      if (cell instanceof tr.v.Histogram) {
         this.$.histogram.style.display = 'block';
-        this.$.histogram.histogram = cell.numeric;
+        this.$.histogram.histogram = cell;
 
         tr.b.Settings.set(SELECTED_VALUE_SETTINGS_KEY, JSON.stringify({
           row: row.name,
@@ -297,98 +348,174 @@
       }
     },
 
-    handleFailureValues_: function() {
-      this.values.map(function(value) {
-        if (value instanceof tr.v.FailureValue) {
-          Polymer.dom(this.$.error).textContent = value.description;
-          this.$.table.style.display = 'none';
-          this.style.width = '10em';
-        }
-      }, this);
-    },
-
     addDiagnosticSubRows_: function(value, row, column) {
-      value.diagnostics.forEach(function(name, diagnostic) {
-        if (name === tr.v.SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME)
-          return;
-
+      for (var [name, diagnostic] of value.diagnostics) {
         // If a previous |value| had a diagnostic with the same name, then
         // there is already a subRow that should contain this diagnostic.
+        var foundSubRow = false;
         for (var subRow of row.subRows) {
           if (subRow.name === name) {
+            foundSubRow = true;
             subRow.columns[column] = diagnostic;
-            return;
+            continue;
           }
         }
+        if (foundSubRow)
+          continue;
 
         // This is the first time that a diagnostic with this name has been
         // seen for Values whose name is |value.name|, so create a new subRow.
         var subRow = {name: name, columns: {}};
         subRow.columns[column] = diagnostic;
         row.subRows.push(subRow);
-      });
+      }
     },
 
     get values() {
       return this.values_;
     },
 
-    findSummaryValues_: function() {
-      this.summaryValuesByGuid_ = {};
-      this.values.map(function(value) {
-        var summaryValueMap = value.diagnostics.get(
-            tr.v.SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME);
-        if (!(summaryValueMap instanceof tr.v.d.RelatedValueMap))
-          return;
-
-        summaryValueMap.values.forEach(function(summaryValue) {
-          this.summaryValuesByGuid_[summaryValue.guid] = summaryValue;
-        }, this);
-      }, this);
-    },
-
     /**
      * @param {!tr.v.ValueSet} values
      */
     set values(values) {
       this.values_ = values;
-      this.sourceValues_ = values.sourceValues;
-      this.findSummaryValues_();
+      this.sourceValues_ = values ? values.sourceValues : [];
+      this.displayLabels_ = undefined;
+      this.referenceDisplayLabel_ = '';
+
       this.updateContents_();
     },
 
+    get referenceDisplayLabel() {
+      return this.referenceDisplayLabel_;
+    },
+
+    set referenceDisplayLabel(reference) {
+      this.referenceDisplayLabel_ = reference;
+
+      if (this.updatingContents_)
+        return;
+
+      this.$.table.selectedTableColumnIndex = this.referenceDisplayLabel ?
+        1 + this.displayLabels.indexOf(this.referenceDisplayLabel) : undefined;
+
+      // Force the table to rebuild the cell values without forgetting which
+      // rows were expanded.
+      // TODO(benjhayden): remember selected cell
+      var expansionStates = this.getExpansionStates_(this.rows_);
+      this.$.table.tableRows = this.rows_;
+      this.setExpansionStates_(expansionStates, this.rows_);
+    },
+
+    updateReferenceColumnSelector_: function() {
+      Polymer.dom(this.$.reference_column_container).textContent = '';
+
+      if (this.displayLabels.length < 2)
+        return;
+
+      var options = [{value: '', label: 'Select a reference column'}];
+      for (var displayLabel of this.displayLabels)
+        options.push({value: displayLabel, label: displayLabel});
+
+      var settingsKey =
+        'tr-v-ui-value-set-table-reference-display-label';
+      Polymer.dom(this.$.reference_column_container).appendChild(
+          tr.ui.b.createSelector(
+            this, 'referenceDisplayLabel', settingsKey, '', options));
+    },
+
+    updateGroups_: function() {
+      var groups = DEFAULT_POSSIBLE_GROUPS.filter(function(group) {
+        // Remove groups for which there is only one value, except
+        // HISTOGRAM_NAME.
+        if (group.key === tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key)
+          return true;
+
+        var values = new Set();
+        for (var value of this.values_) {
+          value = group.dataFn(value);
+          if (!value)
+            continue;
+
+          values.add(value);
+          if (values.size > 1)
+            return true;
+        }
+        return false;  // Prune this grouping.
+      }, this);
+
+      // Add all storyGroupingKey groups for the current values.
+      for (var storyGroupingKey of this.storyGroupingKeys) {
+        groups.push({
+          key: 'storyGroupingKey_' + storyGroupingKey,
+          label: storyGroupingKey,
+          dataFn: makeStoryGroupingKeyLabelGetter(storyGroupingKey)
+        });
+      }
+
+      // Save and restore current grouping keys in order to let
+      // |set groupingKeys| filter out the keys that are no longer in
+      // possibleGroups.
+      var groupingKeys = this.groupingKeys;
+      this.$.picker.possibleGroups = groups;
+      this.$.picker.currentGroupKeys = groupingKeys;
+
+      this.$.picker.style.display = (groups.length === 1) ? 'none' : '';
+    },
+
     updateContents_: function() {
-      if (!this.values_)
-        return;
-      this.style.width = '';
-      this.$.table.style.display = '';
-      Polymer.dom(this.$.error).textContent = '';
-      this.$.histogram.style.display = 'none';
-
-      this.handleFailureValues_();
-      if (Polymer.dom(this.$.error).textContent)
+      if (this.updatingContents_)
         return;
 
-      this.buildRows_();
-
-      if (this.rows_.length === 0) {
-        Polymer.dom(this.$.error).textContent = 'zero values';
-        this.$.table.style.display = 'none';
-        this.style.width = '10em';
+      if (!this.values_ || (this.values_.length === 0)) {
+        this.$.container.style.display = '';
+        this.$.zero.style.display = '';
         return;
       }
 
-      this.buildColumns_();
+      this.updatingContents_ = true;
 
+      this.$.zero.style.display = 'none';
+      this.$.container.style.display = 'block';
+      this.$.table.style.display = '';
+      this.$.histogram.style.display = 'none';
+
+      this.updateReferenceColumnSelector_();
+      this.updateGroups_();
+      this.buildRows_();
+      this.buildColumns_();
       this.$.table.tableColumns = this.columns_;
       this.$.table.tableRows = this.rows_;
       this.$.table.sortColumnIndex = 0;
       this.$.table.rebuild();
       this.selectValue_();
+      this.maybeDisableShowAll_();
 
-      tr.b.requestAnimationFrame(function() {
-        this.style.width = this.$.table.getBoundingClientRect().width;
-      }, this);
+      this.$.table.selectedTableColumnIndex = this.referenceDisplayLabel ?
+        1 + this.displayLabels.indexOf(this.referenceDisplayLabel) : undefined;
+
+      this.updatingContents_ = false;
+    },
+
+    maybeDisableShowAll_: function() {
+      var allValuesAreSource = true;
+      for (var value of this.values) {
+        if (this.sourceValues_.indexOf(value) < 0) {
+          allValuesAreSource = false;
+          break;
+        }
+      }
+
+      // Disable show_all if hiddenValues is 0.
+      // Re-enable show_all if hiddenValues changes from 0.
+      this.$.show_all.disabled = allValuesAreSource;
+
+      // Check show_all if it is disabled.
+      // Do not automatically uncheck show_all.
+      if (this.$.show_all.disabled) {
+        this.$.show_all.checked = true;
+      }
     },
 
     selectValue_: function() {
@@ -422,7 +549,7 @@
      */
     buildRow_: function(organizedValues, hierarchy) {
       tr.b.iterItems(organizedValues, function(name, value) {
-        if (value instanceof tr.v.Value) {
+        if (value instanceof tr.v.Histogram) {
           // This recursion base case corresponds to the recursion base case of
           // organizeValues(). The last groupingCallback is getDisplayLabel,
           // which defines the columns of the table.
@@ -433,13 +560,18 @@
               row.description = value.description;
 
             if (row.columns[name])
-              row.columns[name] = row.columns[name].merge(value);
+              row.columns[name] = mergeCells(value, row.columns[name]);
             else
               row.columns[name] = value;
           }
 
           var row = hierarchy[hierarchy.length - 1];
-          this.addDiagnosticSubRows_(value, row, name);
+          if (row)
+            this.addDiagnosticSubRows_(value, row, name);
+        } else if (value === UNMERGEABLE) {
+          var row = hierarchy[hierarchy.length - 1];
+          if (row)
+            row.columns[name] = value;
         } else {
           // |value| is actually a nested organizedValues.
           var row = {name: name, subRows: [], columns: {}};
@@ -496,26 +628,12 @@
           this.values : this.sourceValues_;
       var values = [];
       for (var value of showingValues)
-        if (this.summaryValuesByGuid_[value.guid] === undefined)
-          values.push(value);
+        values.push(value);
 
       var groupingCallbacks = [];
-      groupingCallbacks.push(v => v.name);
-      groupingCallbacks.push(
-          v => getIterationInfoField(v, 'benchmarkName', ''));
-      for (var storyGroupingKey of this.storyGroupingKeys) {
-        // Javascript closures are dumb.
-        groupingCallbacks.push((sgk => (
-            v => getStoryGroupingKeyLabel(v, sgk)))(storyGroupingKey));
-      }
-      groupingCallbacks.push(
-          v => getIterationInfoField(v, 'storyDisplayName', ''));
-      groupingCallbacks.push(
-          v => getIterationInfoField(v, 'benchmarkStartString', ''));
-      groupingCallbacks.push(
-          v => getIterationInfoField(v, 'storysetRepeatCounterLabel', 0));
-      groupingCallbacks.push(
-          v => getIterationInfoField(v, 'storyRepeatCounterLabel', 0));
+      for (var group of this.$.picker.currentGroups)
+        groupingCallbacks.push(group.dataFn);
+
       groupingCallbacks.push(getDisplayLabel);
 
       return organizeValues(values, groupingCallbacks, 0);
@@ -591,70 +709,69 @@
     buildRows_: function() {
       this.rows_ = [];
       var hierarchy = [];
-      this.buildRow_(this.organizedValues_, hierarchy);
+      var organizedValues = this.organizedValues_;
+      this.buildRow_(organizedValues, hierarchy);
       this.rows_ = this.rows_.filter(this.rowMatchesSearch_.bind(this));
     },
 
     get startTimesForDisplayLabels() {
       var startTimesForDisplayLabels = {};
       for (var value of this.values) {
-        if (this.summaryValuesByGuid_[value.guid])
-          continue;
-
         var displayLabel = getDisplayLabel(value);
         startTimesForDisplayLabels[displayLabel] = Math.min(
             startTimesForDisplayLabels[displayLabel] || 0,
-            getIterationInfoField(
+            tr.v.d.IterationInfo.getField(
                 value, 'benchmarkStart', new Date(0)).getTime());
       }
       return startTimesForDisplayLabels;
     },
 
     get displayLabels() {
-      var startTimesForDisplayLabels = this.startTimesForDisplayLabels;
-      var displayLabels = Object.keys(startTimesForDisplayLabels);
-      displayLabels.sort(function(a, b) {
-        return startTimesForDisplayLabels[a] - startTimesForDisplayLabels[b];
-      });
-      return displayLabels;
+      if (this.displayLabels_ === undefined) {
+        var startTimesForDisplayLabels = this.startTimesForDisplayLabels;
+        this.displayLabels_ = Object.keys(startTimesForDisplayLabels);
+        this.displayLabels_.sort(function(a, b) {
+          return startTimesForDisplayLabels[a] - startTimesForDisplayLabels[b];
+        });
+      }
+      return this.displayLabels_;
     },
 
     buildColumn_: function(displayLabel) {
       function getValueForValue(value) {
-        return value.numeric instanceof tr.v.Numeric ? value.numeric.average :
-          value.numeric.value;
+        return value instanceof tr.v.Histogram ? value.average : value.value;
       }
 
       return {
         title: displayLabel,
         align: tr.ui.b.TableFormat.ColumnAlignment.RIGHT,
         supportsCellSelection: true,
-        selectable: true,
 
         value: function(row) {
           var cell = row.columns[displayLabel];
           if (cell === undefined)
-            return '';
+            return '(missing)';
 
-          if (cell instanceof tr.v.NumericValue) {
-            if (this.$.table.selectedTableColumn &&
-                this.$.table.selectedTableColumn.title !== displayLabel) {
-              var referenceCell = row.columns[
-                this.$.table.selectedTableColumn.title];
+          if (cell === UNMERGEABLE)
+            return cell;
 
-              if (referenceCell instanceof tr.v.NumericValue &&
-                  cell.numeric.unit === referenceCell.numeric.unit) {
-                var significance = tr.v.Significance.DONT_CARE;
+          if (cell instanceof tr.v.Histogram) {
+            if (cell.numValues === 0) {
+              return '(empty)';
+            }
 
-                if (cell.numeric instanceof tr.v.Numeric &&
-                    referenceCell.numeric instanceof tr.v.Numeric) {
-                  significance = cell.numeric.getDifferenceSignificance(
-                      referenceCell.numeric);
-                }
+            if (this.referenceDisplayLabel &&
+                this.referenceDisplayLabel !== displayLabel) {
+              var referenceCell = row.columns[this.referenceDisplayLabel];
 
+              if (referenceCell instanceof tr.v.Histogram &&
+                  cell.unit === referenceCell.unit &&
+                  referenceCell.numValues > 0) {
+                var significance = cell.getDifferenceSignificance(
+                    referenceCell);
                 return tr.v.ui.createScalarSpan(
                     getValueForValue(cell) - getValueForValue(referenceCell),
-                    {unit: cell.numeric.unit.correspondingDeltaUnit,
+                    {unit: cell.unit.correspondingDeltaUnit,
                      significance: significance});
               }
             }
@@ -663,6 +780,7 @@
           }
           if (cell instanceof tr.v.d.Diagnostic) {
             var span = tr.v.ui.createDiagnosticSpan(cell);
+            span.addEventListener('click', (event) => event.stopPropagation());
             span.style.textAlign = 'left';
             return span;
           }
@@ -672,8 +790,8 @@
         cmp: function(rowA, rowB) {
           var cellA = rowA.columns[displayLabel];
           var cellB = rowB.columns[displayLabel];
-          if (!(cellA instanceof tr.v.NumericValue) ||
-              !(cellB instanceof tr.v.NumericValue)) {
+          if (!(cellA instanceof tr.v.Histogram) ||
+              !(cellB instanceof tr.v.Histogram)) {
             return undefined;
           }
 
@@ -682,15 +800,14 @@
 
           // If a reference column is selected, compare the *differences*
           // between the two cells and their references.
-          if (this.$.table.selectedTableColumn &&
-              this.$.table.selectedTableColumn.title !== displayLabel) {
-            var referenceColumn = this.$.table.selectedTableColumn.title;
-            var referenceCellA = rowA.columns[referenceColumn];
-            var referenceCellB = rowB.columns[referenceColumn];
-            if (referenceCellA instanceof tr.v.NumericValue &&
-                referenceCellB instanceof tr.v.NumericValue &&
-                cellA.numeric.unit === referenceCellA.numeric.unit &&
-                cellB.numeric.unit === referenceCellB.numeric.unit) {
+          if (this.referenceDisplayLabel &&
+              this.referenceDisplayLabel !== displayLabel) {
+            var referenceCellA = rowA.columns[this.referenceDisplayLabel];
+            var referenceCellB = rowB.columns[this.referenceDisplayLabel];
+            if (referenceCellA instanceof tr.v.Histogram &&
+                referenceCellB instanceof tr.v.Histogram &&
+                cellA.unit === referenceCellA.unit &&
+                cellB.unit === referenceCellB.unit) {
               valueA -= getValueForValue(referenceCellA);
               valueB -= getValueForValue(referenceCellB);
             }
@@ -726,8 +843,6 @@
     }
   });
 
-  tr.v.ui.registerValueSetView('tr-v-ui-value-set-table');
-
   return {};
 });
 </script>
diff --git a/catapult/tracing/tracing/value/ui/value_set_table_test.html b/catapult/tracing/tracing/value/ui/value_set_table_test.html
index 9d0a483..2862c14 100644
--- a/catapult/tracing/tracing/value/ui/value_set_table_test.html
+++ b/catapult/tracing/tracing/value/ui/value_set_table_test.html
@@ -7,6 +7,7 @@
 
 <link rel="import" href="/tracing/base/utils.html">
 <link rel="import" href="/tracing/ui/base/deep_utils.html">
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/ui/value_set_table.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
@@ -14,9 +15,7 @@
 'use strict';
 
 tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-      tr.b.Range.fromExplicitRange(0, 1000), 20);
+  var TEST_BOUNDARIES = tr.v.HistogramBinBoundaries.createLinear(0, 1e3, 20);
 
   function getTableRowAtPath(table, path) {
     var row = table.tableRows[0];
@@ -25,76 +24,243 @@
     return row;
   }
 
+  // TODO(benjhayden): Test requestSelectionChange.
+  // TODO(benjhayden): Test search keyup.
+  // TODO(benjhayden): Test referenceDisplayLabel.
+
+  test('implicitUndefinedValues', function() {
+    var table = document.createElement('tr-v-ui-value-set-table');
+    this.addHTMLOutput(table);
+    assert.strictEqual('block', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.textContent === 'zero values')).display);
+    assert.strictEqual('none', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.id === 'container')).display);
+  });
+
+  test('explicitUndefinedValues', function() {
+    var table = document.createElement('tr-v-ui-value-set-table');
+    table.values = undefined;
+    this.addHTMLOutput(table);
+    assert.strictEqual('block', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.textContent === 'zero values')).display);
+    assert.strictEqual('none', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.id === 'container')).display);
+  });
+
+  test('emptyValues', function() {
+    var table = document.createElement('tr-v-ui-value-set-table');
+    var values = new tr.v.ValueSet();
+    table.values = values;
+    this.addHTMLOutput(table);
+    assert.strictEqual('block', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.textContent === 'zero values')).display);
+    assert.strictEqual('none', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.id === 'container')).display);
+  });
+
+  test('shortName', function() {
+    // One value has |name|='long name' and |shortName|='short name',
+    // another value has |name|='short name' to demonstrate the fundamental
+    // ambiguity that arises when Values can have multiple different "names".
+
+    var now = new Date().getTime();
+    var table = document.createElement('tr-v-ui-value-set-table');
+    var values = new tr.v.ValueSet();
+
+    var histA = new tr.v.Histogram('long name',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
+    for (var i = 0; i < 100; ++i)
+      histA.addSample(Math.random() * 1e3);
+    histA.shortName = 'short name';
+    new tr.v.d.IterationInfo({
+      label: 'iteration A',
+      benchmarkStartMs: now,
+    }).addToValue(histA);
+    values.addHistogram(histA);
+
+    var histB = new tr.v.Histogram('short name',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
+    for (var i = 0; i < 100; ++i)
+      histB.addSample(Math.random() * 1e3);
+    new tr.v.d.IterationInfo({
+      label: 'iteration B',
+      benchmarkStartMs: now,
+    }).addToValue(histB);
+    values.addHistogram(histB);
+
+    table.values = values;
+    this.addHTMLOutput(table);
+
+    assert.strictEqual('none', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.textContent === 'zero values')).display);
+    assert.strictEqual('block', getComputedStyle(
+        tr.b.findDeepElementMatchingPredicate(
+            table, e => e.id === 'container')).display);
+    assert.isDefined(tr.b.findDeepElementMatchingPredicate(
+          table, e => e.textContent === 'short name'));
+    assert.isUndefined(tr.b.findDeepElementMatchingPredicate(
+          table, e => e.textContent === 'long name'));
+  });
+
+  test('emptyAndMissing', function() {
+    var now = new Date().getTime();
+    var table = document.createElement('tr-v-ui-value-set-table');
+    var values = new tr.v.ValueSet();
+
+    var histA = new tr.v.Histogram('histogram A',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
+    for (var i = 0; i < 100; ++i)
+      histA.addSample(Math.random() * 1e3);
+    new tr.v.d.IterationInfo({
+      label: 'iteration A',
+      benchmarkStartMs: now,
+    }).addToValue(histA);
+    values.addHistogram(histA);
+
+    var histB = new tr.v.Histogram('histogram B',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
+    for (var i = 0; i < 100; ++i)
+      histB.addSample(Math.random() * 1e3);
+    new tr.v.d.IterationInfo({
+      label: 'iteration B',
+      benchmarkStartMs: now,
+    }).addToValue(histB);
+    values.addHistogram(histB);
+
+    var histC = new tr.v.Histogram('histogram A',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
+    new tr.v.d.IterationInfo({
+      label: 'iteration B',
+      benchmarkStartMs: now,
+    }).addToValue(histC);
+    values.addHistogram(histC);
+
+    table.values = values;
+    this.addHTMLOutput(table);
+
+    assert.isDefined(tr.b.findDeepElementMatchingPredicate(
+          table, e => e.textContent === '(empty)'));
+    assert.isDefined(tr.b.findDeepElementMatchingPredicate(
+          table, e => e.textContent === '(missing)'));
+  });
+
   test('instantiate_1x1', function() {
     var table = document.createElement('tr-v-ui-value-set-table');
     var values = new tr.v.ValueSet();
-    assert.isTrue(table.supportsValueSet(values));
-    var numeric = TEST_NUMERIC_BUILDER.build();
+
+    var hist = new tr.v.Histogram('foo',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
     for (var i = 0; i < 100; ++i)
-      numeric.add(Math.random() * 1000);
-    values.addValue(new tr.v.NumericValue('foo', numeric));
+      hist.addSample(Math.random() * 1e3);
+    values.addHistogram(hist);
+
     table.values = values;
     this.addHTMLOutput(table);
+
     var baseTable = tr.b.findDeepElementMatchingPredicate(
         table, elem => elem.tagName === 'TR-UI-B-TABLE');
     assert.strictEqual(baseTable.tableRows.length, 1);
   });
 
-  // TODO(benjhayden): Test requestSelectionChange.
-  // TODO(benjhayden): Test search keyup.
+  test('merge_unmergeable', function() {
+    var now = new Date().getTime();
+    var table = document.createElement('tr-v-ui-value-set-table');
+    var values = new tr.v.ValueSet();
+
+    var histA = new tr.v.Histogram('histogram A',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
+    for (var i = 0; i < 100; ++i)
+      histA.addSample(Math.random() * 1e3);
+    new tr.v.d.IterationInfo({
+      label: 'Value',
+      benchmarkStartMs: now,
+      storyDisplayName: 'story A'
+    }).addToValue(histA);
+    values.addHistogram(histA);
+
+    var histB = new tr.v.Histogram('histogram B',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createExponential(1e-3, 1e3, 20));
+    for (var i = 0; i < 100; ++i)
+      histB.addSample(Math.random() * Math.random() * 1e3);
+    new tr.v.d.IterationInfo({
+      label: 'Value',
+      benchmarkStartMs: now,
+      storyDisplayName: 'story A'
+    }).addToValue(histB);
+    values.addHistogram(histB);
+
+    var histC = new tr.v.Histogram('histogram C',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+        tr.v.HistogramBinBoundaries.createExponential(1e-3, 1e3, 30));
+    for (var i = 0; i < 100; ++i)
+      histC.addSample(Math.random() * Math.random() * 1e3);
+    new tr.v.d.IterationInfo({
+      label: 'Value',
+      benchmarkStartMs: now,
+      storyDisplayName: 'story B'
+    }).addToValue(histC);
+    values.addHistogram(histC);
+
+    table.values = values;
+    table.groupingKeys = [tr.v.ValueSet.GROUPINGS.STORY_NAME.key];
+    this.addHTMLOutput(table);
+
+    var baseTable = tr.b.findDeepElementMatchingPredicate(
+        table, elem => elem.tagName === 'TR-UI-B-TABLE');
+    assert.strictEqual(baseTable.tableRows.length, 2);
+  });
 
   test('instantiate_2x2', function() {
     var table = document.createElement('tr-v-ui-value-set-table');
     var values = new tr.v.ValueSet();
-    assert.isTrue(table.supportsValueSet(values));
 
-    var numeric0a = TEST_NUMERIC_BUILDER.build();
+    var numeric0a = new tr.v.Histogram('foo',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
     for (var i = 0; i < 100; ++i)
-      numeric0a.add(Math.random() * 1000);
-    var fooA = new tr.v.NumericValue('foo', numeric0a, {
-      description: 'they should have sent a poet'
-    });
-    values.addValue(fooA);
+      numeric0a.addSample(Math.random() * 1e3);
+    values.addHistogram(numeric0a);
     new tr.v.d.IterationInfo({
       label: 'iteration A',
       benchmarkStartMs: new Date().getTime(),
-    }).addToValue(fooA);
+    }).addToValue(numeric0a);
 
-    var numeric1a = TEST_NUMERIC_BUILDER.build();
+    var numeric1a = new tr.v.Histogram('bar',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
     for (var i = 0; i < 100; ++i)
-      numeric1a.add(Math.random() * 1000);
-    var barA = new tr.v.NumericValue('bar', numeric1a, {
-      description: 'indescribable'
-    });
-    values.addValue(barA);
+      numeric1a.addSample(Math.random() * 1e3);
+    values.addHistogram(numeric1a);
     new tr.v.d.IterationInfo({
       label: 'iteration A',
       benchmarkStartMs: new Date().getTime(),
-    }).addToValue(barA);
+    }).addToValue(numeric1a);
 
-    var numeric0b = TEST_NUMERIC_BUILDER.build();
+    var numeric0b = new tr.v.Histogram('foo',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
     for (var i = 0; i < 100; ++i)
-      numeric0b.add(Math.random() * 1000);
-    var fooB = new tr.v.NumericValue('foo', numeric0b, {
-      description: 'they should have sent a poet'
-    });
-    values.addValue(fooB);
+      numeric0b.addSample(Math.random() * 1e3);
+    values.addHistogram(numeric0b);
     new tr.v.d.IterationInfo({
       label: 'iteration B',
       benchmarkStartMs: new Date().getTime(),
-    }).addToValue(fooB);
+    }).addToValue(numeric0b);
 
-    var numeric1b = TEST_NUMERIC_BUILDER.build();
+    var numeric1b = new tr.v.Histogram('bar',
+        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter, TEST_BOUNDARIES);
     for (var i = 0; i < 100; ++i)
-      numeric1b.add(Math.random() * 1000);
-    var barB = new tr.v.NumericValue('bar', numeric1b, {
-      description: 'indescribable'
-    });
-    values.addValue(barB);
+      numeric1b.addSample(Math.random() * 1e3);
+    values.addHistogram(numeric1b);
     new tr.v.d.IterationInfo({
       label: 'iteration B',
       benchmarkStartMs: new Date().getTime(),
-    }).addToValue(barB);
+    }).addToValue(numeric1b);
 
     table.values = values;
     this.addHTMLOutput(table);
@@ -111,7 +277,7 @@
   test('instantiation_mergeNumerics', function() {
     var table = document.createElement('tr-v-ui-value-set-table');
     var values = new tr.v.ValueSet();
-    // Add 32 NumericValues, all named 'foo', with different IterationInfos.
+    // Add 64 Histograms, all named 'foo', with different IterationInfos.
     var benchmarkNames = ['bm A', 'bm B'];
     var storyGroupingKeys0 = ['A', 'B'];
     var storyGroupingKeys1 = ['C', 'D'];
@@ -128,12 +294,13 @@
                   ++storysetCounter) {
                 for (var storyCounter = 0; storyCounter < 2; ++storyCounter) {
                   for (var label of labels) {
-                    var numeric = TEST_NUMERIC_BUILDER.build();
+                    var numeric = new tr.v.Histogram('foo',
+                        tr.b.Unit.byName.timeDurationInMs_smallerIsBetter,
+                        TEST_BOUNDARIES);
                     for (var i = 0; i < 100; ++i)
-                      numeric.add(Math.random() * 1000);
+                      numeric.addSample(Math.random() * 1e3);
 
-                    var value = new tr.v.NumericValue('foo', numeric);
-                    values.addValue(value);
+                    values.addHistogram(numeric);
 
                     new tr.v.d.IterationInfo({
                       storyGroupingKeys: {
@@ -146,7 +313,7 @@
                       storysetRepeatCounter: storysetCounter,
                       storyRepeatCounter: storyCounter,
                       label: label,
-                    }).addToValue(value);
+                    }).addToValue(numeric);
                   }
                 }
               }
@@ -157,6 +324,16 @@
     }
 
     table.values = values;
+    table.groupingKeys = [
+      tr.v.ValueSet.GROUPINGS.HISTOGRAM_NAME.key,
+      tr.v.ValueSet.GROUPINGS.BENCHMARK_NAME.key,
+      'storyGroupingKey_storyGroupingKey0',
+      'storyGroupingKey_storyGroupingKey1',
+      tr.v.ValueSet.GROUPINGS.STORY_NAME.key,
+      tr.v.ValueSet.GROUPINGS.BENCHMARK_START.key,
+      tr.v.ValueSet.GROUPINGS.STORYSET_REPEAT.key,
+      tr.v.ValueSet.GROUPINGS.STORY_REPEAT.key,
+    ];
     this.addHTMLOutput(table);
     var baseTable = tr.b.findDeepElementMatchingPredicate(
         table, elem => elem.tagName === 'TR-UI-B-TABLE');
@@ -237,106 +414,5 @@
       subRowPath.pop();
     }
   });
-
-  test('instantiation_mergeScalarNumerics', function() {
-    var table = document.createElement('tr-v-ui-value-set-table');
-    var values = new tr.v.ValueSet();
-    // Add 32 NumericValues, all named 'foo', with different IterationInfos.
-    var benchmarkNames = ['bm A', 'bm B'];
-    var storyNames = ['story A', 'story B'];
-    var starts = [1439708400000, 1439794800000];
-    var labels = ['label A', 'label B'];
-
-    for (var benchmarkName of benchmarkNames) {
-      for (var storyName of storyNames) {
-        for (var startMs of starts) {
-          for (var storysetCounter = 0; storysetCounter < 2;
-               ++storysetCounter) {
-            for (var storyCounter = 0; storyCounter < 2; ++storyCounter) {
-              for (var label of labels) {
-                var numeric = new tr.v.ScalarNumeric(
-                    tr.v.Unit.byName.timeDurationInMs_smallerIsBetter,
-                    Math.random() * 1000);
-                var value = new tr.v.NumericValue('foo', numeric);
-                values.addValue(value);
-
-                new tr.v.d.IterationInfo({
-                  benchmarkName: benchmarkName,
-                  storyDisplayName: storyName,
-                  benchmarkStartMs: startMs,
-                  storysetRepeatCounter: storysetCounter,
-                  storyRepeatCounter: storyCounter,
-                  label: label,
-                }).addToValue(value);
-              }
-            }
-          }
-        }
-      }
-    }
-
-    table.values = values;
-    this.addHTMLOutput(table);
-    var baseTable = tr.b.findDeepElementMatchingPredicate(
-        table, elem => elem.tagName === 'TR-UI-B-TABLE');
-
-    assert.lengthOf(baseTable.tableColumns, 3);
-    assert.strictEqual('Name', baseTable.tableColumns[0].title);
-    assert.strictEqual('label A', baseTable.tableColumns[1].title);
-    assert.strictEqual('label B', baseTable.tableColumns[2].title);
-
-    assert.lengthOf(baseTable.tableRows, 1);
-    assert.strictEqual('foo', baseTable.tableRows[0].name);
-    assert.lengthOf(baseTable.tableRows[0].subRows, 2);
-
-    // assertions only report their arguments, which is not enough information
-    // to diagnose problems with nested structures like tableRows -- the path to
-    // the particular row is needed. This code would be a bit simpler if each
-    // row were given a named variable, but the path to each subRow would still
-    // need to be tracked in order to provide for diagnosing.
-    var subRowPath = [];
-    var getSubRow = () => getTableRowAtPath(baseTable, subRowPath);
-
-    for (var i = 0; i < benchmarkNames.length; ++i) {
-      subRowPath.push(i);
-      assert.lengthOf(getSubRow().subRows, 2, subRowPath);
-      assert.strictEqual(benchmarkNames[i], getSubRow().name, subRowPath);
-
-      for (var j = 0; j < storyNames.length; ++j) {
-        subRowPath.push(j);
-        assert.lengthOf(getSubRow().subRows, 2, subRowPath);
-        assert.strictEqual(storyNames[j], getSubRow().name, subRowPath);
-
-        for (var k = 0; k < starts.length; ++k) {
-          subRowPath.push(k);
-          assert.lengthOf(getSubRow().subRows, 2, subRowPath);
-          assert.strictEqual(tr.b.formatDate(new Date(starts[k])),
-              getSubRow().name, subRowPath);
-
-          for (var l = 0; l < 2; ++l) {
-            subRowPath.push(l);
-            assert.lengthOf(getSubRow().subRows, 2, subRowPath);
-            assert.strictEqual('storyset repeat ' + l, getSubRow().name,
-                subRowPath);
-
-            for (var m = 0; m < 2; ++m) {
-              subRowPath.push(m);
-              assert.lengthOf(getSubRow().subRows, 1, subRowPath);
-              assert.strictEqual('story repeat ' + m, getSubRow().name,
-                  subRowPath);
-              subRowPath.push(0);
-              assert.strictEqual('iteration', getSubRow().name, subRowPath);
-              subRowPath.pop();
-              subRowPath.pop();
-            }
-            subRowPath.pop();
-          }
-          subRowPath.pop();
-        }
-        subRowPath.pop();
-      }
-      subRowPath.pop();
-    }
-  });
 });
 </script>
diff --git a/catapult/tracing/tracing/value/ui/value_set_view.html b/catapult/tracing/tracing/value/ui/value_set_view.html
index cba8446..95cdbb7 100644
--- a/catapult/tracing/tracing/value/ui/value_set_view.html
+++ b/catapult/tracing/tracing/value/ui/value_set_view.html
@@ -7,6 +7,7 @@
 
 <link rel="import" href="/tracing/ui/base/tab_view.html">
 <link rel="import" href="/tracing/ui/brushing_state_controller.html">
+<link rel="import" href="/tracing/value/ui/value_set_table.html">
 
 <dom-module id="tr-v-ui-value-set-view">
   <template>
@@ -16,7 +17,7 @@
       };
     </style>
 
-    <tr-ui-a-tab-view id="tabView"></tr-ui-a-tab-view>
+    <tr-v-ui-value-set-table id="valueSetTable"></tr-v-ui-value-set-table>
   </template>
 </dom-module>
 
@@ -183,17 +184,9 @@
     }
   };
 
-  var VALUE_SET_VIEW_ELEMENT_NAMES = [];
-
-  var SELECTED_TAB_SETTINGS_KEY = 'tr-v-ui-value-set-view-element-name';
-
   Polymer({
     is: 'tr-v-ui-value-set-view',
 
-    listeners: {
-      'tabView.selected-tab-change': 'onSelectedTabChange_'
-    },
-
     ready: function() {
       this.brushingStateController = new NullBrushingStateController();
     },
@@ -203,58 +196,14 @@
           tr.c.BrushingStateController.getControllerForElement(this.parentNode);
     },
 
-    onSelectedTabChange_: function() {
-      if (!this.$.tabView.selectedSubView)
-        return;
-
-      tr.b.Settings.set(
-          SELECTED_TAB_SETTINGS_KEY,
-          this.$.tabView.selectedSubView.tagName.toLowerCase());
-    },
-
     /**
      * @param {!tr.v.ValueSet} values
      */
     set values(values) {
-      this.$.tabView.clearSubViews();
-
-      var initialTabElementName = tr.b.Settings.get(
-          SELECTED_TAB_SETTINGS_KEY, undefined);
-
-      VALUE_SET_VIEW_ELEMENT_NAMES.forEach(function(elementName, index) {
-        var view = document.createElement(elementName);
-        if (!view.supportsValueSet(values))
-          return;
-
-        view.values = values;
-
-        this.$.tabView.addSubView(view);
-
-        if (elementName.toLowerCase() === initialTabElementName)
-          this.$.tabView.selectedSubView = view;
-      }, this);
-
-      // TODO(charliea): If TabView were structured correctly, this could almost
-      // certainly be done with attribute binding in the HTML template.
-      this.$.tabView.set('tabsHidden', this.$.tabView.tabs.length === 1);
+      this.$.valueSetTable.values = values;
     }
   });
 
-  /**
-   * Register the name of a polymer element that supports displaying ValueSets.
-   *
-   * @param {string} elementName
-   */
-  function registerValueSetView(elementName) {
-    if (tr.ui.b.isUnknownElementName(elementName))
-      throw new Error('Element not registered: ' + elementName);
-
-    VALUE_SET_VIEW_ELEMENT_NAMES.push(elementName);
-  }
-
-  return {
-    registerValueSetView: registerValueSetView,
-    SELECTED_TAB_SETTINGS_KEY: SELECTED_TAB_SETTINGS_KEY
-  };
+  return {};
 });
 </script>
diff --git a/catapult/tracing/tracing/value/ui/value_set_view_test.html b/catapult/tracing/tracing/value/ui/value_set_view_test.html
index fd8b7da..a1c0301 100644
--- a/catapult/tracing/tracing/value/ui/value_set_view_test.html
+++ b/catapult/tracing/tracing/value/ui/value_set_view_test.html
@@ -5,180 +5,26 @@
 found in the LICENSE file.
 -->
 
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/ui/value_set_table.html">
 <link rel="import" href="/tracing/value/ui/value_set_view.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
-<dom-module id='test-value-set-view'>
-  <template>
-    <style>
-    :host {
-      display: flex;
-      flex-direction: column;
-    }
-    </style>
-    <content></content>
-  </template>
-</dom-module>
-
 <script>
 'use strict';
 
-var useTestView = false;
-
-tr.exportTo('tr.v.ui', function() {
-  Polymer({
-    is: 'test-value-set-view',
-
-    supportsValueSet: function(values) {
-      return useTestView;
-    },
-
-    get tabLabel() {
-      return 'Test';
-    },
-
-    ready: function() {
-      this.values_ = undefined;
-    },
-
-    get values() {
-      return this.values_;
-    },
-
-    /**
-     * @param {!tr.v.ValueSet} values
-     */
-    set values(values) {
-      this.values_ = values;
-    }
-  });
-
-  tr.v.ui.registerValueSetView('test-value-set-view');
-
-  return {};
-});
-
 tr.b.unittest.testSuite(function() {
-  var TEST_NUMERIC_BUILDER = tr.v.NumericBuilder.createLinear(
-      tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 1000),
-      20);
-
   test('instantiate0', function() {
-    // Empty setting, single view
-    // Test that the single view is automatically selected,
-    // and that the tab-strip is hidden.
-    tr.b.Settings.set(tr.v.ui.SELECTED_TAB_SETTINGS_KEY, '');
-    useTestView = false;
     var view = document.createElement('tr-v-ui-value-set-view');
     var values = new tr.v.ValueSet();
 
-    var numeric = TEST_NUMERIC_BUILDER.build();
-    for (var i = 0; i < 1e2; ++i) {
-      numeric.add(Math.random() * TEST_NUMERIC_BUILDER.maxBinBoundary);
-    }
-    var foo = new tr.v.NumericValue('foo', numeric, {description: 'bar'});
-    values.addValue(foo);
+    var hist = new tr.v.Histogram('foo', tr.b.Unit.byName.normalizedPercentage);
+    for (var i = 0; i < 1e2; ++i)
+      hist.addSample(Math.random());
+    values.addHistogram(hist);
 
     this.addHTMLOutput(view);
     view.values = values;
-
-    var tabView = tr.b.findDeepElementMatchingPredicate(
-        view, function(element) {
-          return element.tagName.toLowerCase() === 'tr-ui-a-tab-view';
-        });
-    assert.equal(tabView.selectedSubView, tabView.get('tabs.0'));
-    assert.isTrue(tabView.get('tabsHidden'));
-  });
-
-  test('instantiate1', function() {
-    // Empty setting, two views
-    // Test that the 0th view is automatically selected,
-    // and that the tab-strip is visible.
-    tr.b.Settings.set(tr.v.ui.SELECTED_TAB_SETTINGS_KEY, '');
-    useTestView = true;
-    var view = document.createElement('tr-v-ui-value-set-view');
-    var values = new tr.v.ValueSet();
-
-    var numeric = TEST_NUMERIC_BUILDER.build();
-    for (var i = 0; i < 1e2; ++i) {
-      numeric.add(Math.random() * TEST_NUMERIC_BUILDER.maxBinBoundary);
-    }
-    var foo = new tr.v.NumericValue('foo', numeric, {description: 'bar'});
-    values.addValue(foo);
-
-    this.addHTMLOutput(view);
-
-    view.values = values;
-    var tabView = tr.b.findDeepElementMatchingPredicate(
-        view, function(element) {
-          return element.tagName.toLowerCase() === 'tr-ui-a-tab-view';
-        });
-    assert.equal(tabView.selectedSubView, tabView.get('tabs.0'));
-    assert.isFalse(tabView.get('tabsHidden'));
-  });
-
-  test('instantiate2', function() {
-    // Set setting to the test view, two views
-    // Test that the test view is automatically selected,
-    // and that the tab-strip is visible.
-    tr.b.Settings.set(tr.v.ui.SELECTED_TAB_SETTINGS_KEY, 'test-value-set-view');
-    useTestView = true;
-    var view = document.createElement('tr-v-ui-value-set-view');
-    var values = new tr.v.ValueSet();
-
-    var numeric = TEST_NUMERIC_BUILDER.build();
-    for (var i = 0; i < 1e2; ++i) {
-      numeric.add(Math.random() * TEST_NUMERIC_BUILDER.maxBinBoundary);
-    }
-    var foo = new tr.v.NumericValue('foo', numeric, {description: 'bar'});
-    values.addValue(foo);
-
-    view.values = values;
-    this.addHTMLOutput(view);
-
-    var tabView = tr.b.findDeepElementMatchingPredicate(
-        view, function(element) {
-          return element.tagName.toLowerCase() === 'tr-ui-a-tab-view';
-        });
-    assert.equal(tabView.selectedSubView, tabView.get('tabs.1'));
-    assert.isFalse(tabView.get('tabsHidden'));
-
-    // Test that selecting the Table view changes the setting.
-    tabView.selectedSubView = tabView.tabs[0];
-    return new Promise(function(resolve, reject) {
-      assert.strictEqual(
-          tr.b.Settings.get(tr.v.ui.SELECTED_TAB_SETTINGS_KEY),
-          'tr-v-ui-value-set-table');
-      resolve();
-    });
-  });
-
-  test('instantiate3', function() {
-    // Set setting to the test view, but disable it
-    // Test that the 0th view is automatically selected,
-    // and that the tab-strip is hidden.
-    tr.b.Settings.set(tr.v.ui.SELECTED_TAB_SETTINGS_KEY, 'test-value-set-view');
-    useTestView = false;
-    var view = document.createElement('tr-v-ui-value-set-view');
-    var values = new tr.v.ValueSet();
-
-    var numeric = TEST_NUMERIC_BUILDER.build();
-    for (var i = 0; i < 1e2; ++i) {
-      numeric.add(Math.random() * TEST_NUMERIC_BUILDER.maxBinBoundary);
-    }
-    var foo = new tr.v.NumericValue('foo', numeric, {description: 'bar'});
-    values.addValue(foo);
-
-    view.values = values;
-    this.addHTMLOutput(view);
-
-    var tabView = tr.b.findDeepElementMatchingPredicate(
-        view, function(element) {
-          return element.tagName.toLowerCase() === 'tr-ui-a-tab-view';
-        });
-    assert.equal(tabView.selectedSubView, tabView.get('tabs.0'));
-    assert.isTrue(tabView.get('tabsHidden'));
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/value/value.html b/catapult/tracing/tracing/value/value.html
deleted file mode 100644
index 3ef67af..0000000
--- a/catapult/tracing/tracing/value/value.html
+++ /dev/null
@@ -1,188 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2015 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/base/guid.html">
-<link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/base/utils.html">
-<link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
-
-<script>
-'use strict';
-
-tr.exportTo('tr.v', function() {
-  /** @constructor */
-  function Value(name, opt_options) {
-    if (typeof(name) !== 'string')
-      throw new Error('name must be a string');
-
-    this.name_ = name;
-
-    // If this Value is being deserialized, then its guid will be set by
-    // fromDict().
-    // If this Value is being computed by a metric, then its guid will be
-    // allocated the first time the guid is gotten by asDict().
-    this.guid_ = undefined;
-
-    this.diagnostics = new tr.v.d.DiagnosticMap();
-
-    var options = opt_options || {};
-    this.description = options.description;
-    this.important = options.important !== undefined ?
-        options.important : false;
-  }
-
-  Value.fromDict = function(d) {
-    var value = undefined;
-    switch (d.type) {
-      case 'numeric':
-        value = NumericValue.fromDict(d);
-        break;
-
-      case 'failure':
-        value = FailureValue.fromDict(d);
-        break;
-
-      default:
-        throw new Error('Not implemented');
-    }
-
-    value.guid = d.guid;
-    value.diagnostics.addDicts(d.diagnostics);
-    return value;
-  };
-
-  Value.prototype = {
-    get guid() {
-      if (this.guid_ === undefined)
-        this.guid_ = tr.b.GUID.allocateUUID4();
-
-      return this.guid_;
-    },
-
-    set guid(guid) {
-      if (this.guid_ !== undefined)
-        throw new Error('Cannot reset guid');
-
-      this.guid_ = guid;
-    },
-
-    get name() {
-      return this.name_;
-    },
-
-    asDict: function() {
-      return this.asJSON();
-    },
-
-    asJSON: function() {
-      var d = {
-        guid: this.guid,
-        name: this.name_,
-        description: this.description,
-        important: this.important,
-        diagnostics: this.diagnostics.asDict()
-      };
-
-      this.asDictInto_(d);
-      if (d.type === undefined)
-        throw new Error('asDictInto_ must set type field');
-      return d;
-    },
-
-    asDictInto_: function(d) {
-      throw new Error('Not implemented');
-    }
-  };
-
-  /** @constructor */
-  function NumericValue(name, numeric, opt_options) {
-    if (!(numeric instanceof tr.v.NumericBase))
-      throw new Error('Expected numeric to be instance of tr.v.NumericBase');
-
-    Value.call(this, name, opt_options);
-    this.numeric = numeric;
-  }
-
-  NumericValue.fromDict = function(d) {
-    if (d.numeric === undefined)
-      throw new Error('Expected numeric to be provided');
-    var numeric = tr.v.NumericBase.fromDict(d.numeric);
-    var value = new NumericValue(d.name, numeric, d);
-    return value;
-  };
-
-  NumericValue.prototype = {
-    __proto__: Value.prototype,
-
-    merge: function(other) {
-      if (!(other instanceof NumericValue))
-        throw new Error('Merging non-NumericValues is not supported');
-
-      var numeric = this.numeric.merge(other.numeric);
-      var result = new NumericValue(this.name, numeric);
-      // TODO(eakuefner): merge diagnostics?
-      return result;
-    },
-
-    asDictInto_: function(d) {
-      d.type = 'numeric';
-      d.numeric = this.numeric.asDict();
-    }
-  };
-
-  /** @constructor */
-  function FailureValue(name, opt_options) {
-    var options = opt_options || {};
-
-    var stack;
-    if (options.stack === undefined) {
-      if (options.stack_str === undefined) {
-        throw new Error('Expected stack_str or stack to be provided');
-      } else {
-        stack = options.stack_str;
-      }
-    } else {
-      stack = options.stack;
-    }
-
-    if (typeof stack !== 'string')
-      throw new Error('stack must be provided as a string');
-
-    Value.call(this, name, options);
-    this.stack = stack;
-  }
-
-  FailureValue.fromError = function(e) {
-    var ex = tr.b.normalizeException(e);
-    return new FailureValue(ex.typeName, {
-      description: ex.message, stack: ex.stack});
-  };
-
-  FailureValue.fromDict = function(d) {
-    if (d.units !== undefined)
-      throw new Error('Expected units to be undefined');
-    if (d.stack_str === undefined)
-      throw new Error('Expected stack_str to be provided');
-    return new FailureValue(d.name, d);
-  };
-
-  FailureValue.prototype = {
-    __proto__: Value.prototype,
-
-    asDictInto_: function(d) {
-      d.type = 'failure';
-      d.stack_str = this.stack;
-    }
-  };
-
-  return {
-    Value: Value,
-    NumericValue: NumericValue,
-    FailureValue: FailureValue
-  };
-});
-</script>
diff --git a/catapult/tracing/tracing/value/value_set.html b/catapult/tracing/tracing/value/value_set.html
index 7ade85c..bc9586f 100644
--- a/catapult/tracing/tracing/value/value_set.html
+++ b/catapult/tracing/tracing/value/value_set.html
@@ -6,61 +6,49 @@
 -->
 
 <link rel="import" href="/tracing/base/iteration_helpers.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
+<link rel="import" href="/tracing/value/histogram.html">
 
 <script>
 'use strict';
 
 tr.exportTo('tr.v', function() {
-  var SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME = 'summary values';
+  class ValueSet {
+    constructor(opt_values) {
+      this.values_ = new Map();
 
-  function ValueSet(opt_values) {
-    this.values_ = {};
+      if (opt_values !== undefined)
+        for (var value of opt_values)
+          this.addHistogram(value);
+    }
 
-    if (opt_values !== undefined)
-      opt_values.forEach(this.addValue, this);
-  }
-
-  ValueSet.prototype = {
     get valueDicts() {
       return this.map(v => v.asDict());
-    },
+    }
 
-    lookup: function(guid) {
-      return this.values_[guid];
-    },
+    lookup(guid) {
+      return this.values_.get(guid);
+    }
 
-    toArray: function() {
-      return tr.b.dictionaryValues(this.values_);
-    },
+    get length() {
+      return this.values_.size;
+    }
+
+    toArray() {
+      return [...this];
+    }
 
     *[Symbol.iterator]() {
-      for (var guid in this.values_)
-        yield this.values_[guid];
-    },
+      for (var [guid, value] of this.values_)
+        yield value;
+    }
 
     /**
-     * @param {!function(!tr.v.Value):*} callback
+     * @param {!function(!tr.v.Histogram):*} callback
      * @param {*=} opt_this
      */
-    map: function(callback, opt_this) {
+    map(callback, opt_this) {
       return this.toArray().map(callback, opt_this || this);
-    },
-
-    get organizedByName() {
-      return this.getValuesOrganizedByCallback(v => v.name);
-    },
-
-    /**
-     * @param {!function(!tr.v.Value):*} callback
-     * @param {*=} opt_this
-     * @return {!Object}
-     */
-    getValuesOrganizedByCallback: function(callback, opt_this) {
-      return tr.b.group(this.toArray(), callback, opt_this || this);
-    },
+    }
 
     /**
      * Convert Values from dicts and add them.
@@ -68,11 +56,9 @@
      *
      * @param {Array.<Object>} dicts
      */
-    addValuesFromDicts: function(dicts) {
-      dicts.forEach(function(dict) {
-        var value = tr.v.Value.fromDict(dict);
-        this.addValueInternal_(value);
-      }, this);
+    addValuesFromDicts(dicts) {
+      for (var dict of dicts)
+        this.addHistogram(tr.v.Histogram.fromDict(dict));
 
       // Now resolve the RelatedValueSet references between values.
       // This resolution process must wait until all new values are added in
@@ -82,111 +68,124 @@
       // The expected running time is this: for each value (hundreds to
       // thousands?), for each diagnostic that is a RelatedValueSet (0-5?), for
       // each ValueRef (0-10?), do a hash lookup (constant time?).
-      tr.b.iterItems(this.values_, function(guid, value) {
-        value.diagnostics.forEach(function(name, diagnostic) {
+      for (var value of this) {
+        for (var [name, diagnostic] of value.diagnostics) {
           if ((diagnostic instanceof tr.v.d.RelatedValueSet) ||
-              (diagnostic instanceof tr.v.d.RelatedValueMap))
+              (diagnostic instanceof tr.v.d.RelatedValueMap)) {
             diagnostic.resolve(this);
-        }, this);
+          }
+        }
 
-        // In addition Values, we must also look inside of Numeric samples.
-        if (value instanceof tr.v.NumericValue &&
-            value.numeric instanceof tr.v.Numeric)
-          value.numeric.allBins.forEach(function(b) {
-            b.diagnosticMaps.forEach(function(dm) {
-              dm.forEach(function(d) {
-                if ((d instanceof tr.v.d.RelatedValueSet) ||
-                    (d instanceof tr.v.d.RelatedValueMap))
-                  d.resolve(this);
-              }, this);
-            }, this);
-          }, this);
-      }, this);
-    },
+        // In addition to Values, we must also look inside of Histogram samples.
+        for (var bin of value.allBins) {
+          for (var dm of bin.diagnosticMaps) {
+            for (var [name, diagnostic] of dm) {
+              if ((diagnostic instanceof tr.v.d.RelatedValueSet) ||
+                  (diagnostic instanceof tr.v.d.RelatedValueMap)) {
+                diagnostic.resolve(this);
+              }
+            }
+          }
+        }
+      }
+    }
 
     /**
      * Find the Values that are not contained in any other Values'
      * RelatedValueSet or RelatedValueMap diagnostics.
      *
-     * @return {!Array.<!tr.v.Value>}
+     * @return {!Array.<!tr.v.Histogram>}
      */
     get sourceValues() {
-      var sourceValues = tr.b.cloneDictionary(this.values_);
-      // If a Value is in a RelatedValueSet or RelatedValueMap, which can be
+      var sourceValues = new Map(this.values_);
+      // If a Histogram is in a RelatedValueSet or RelatedValueMap, which can be
       // owned either by Values or by numeric samples, then it is not a
-      // source Value.
-      function deleteSourceValues(values, diagnosticMap) {
-        diagnosticMap.forEach(function(unused_name, diagnostic) {
-          if ((diagnostic instanceof tr.v.d.RelatedValueSet) ||
-              (diagnostic instanceof tr.v.d.RelatedValueMap)) {
-            diagnostic.values.forEach(function(relatedValue) {
-              delete values[relatedValue.guid];
-            });
-          }
-        });
+      // source Histogram.
+      function deleteSourceValues(diagnosticMap) {
+        for (var [name, diagnostic] of diagnosticMap) {
+          if (diagnostic instanceof tr.v.d.RelatedValueSet)
+            for (var relatedValue of diagnostic)
+              sourceValues.delete(relatedValue.guid);
+          else if (diagnostic instanceof tr.v.d.RelatedValueMap)
+            for (var [name, relatedValue] of diagnostic)
+              sourceValues.delete(relatedValue.guid);
+        }
       }
 
-      this.map(function(value) {
-        deleteSourceValues(sourceValues, value.diagnostics);
-        if ((value instanceof tr.v.NumericValue) &&
-            (value.numeric instanceof tr.v.Numeric)) {
-          for (var b of value.numeric.allBins) {
-            for (var dm of b.diagnosticMaps) {
-              // TODO(eakuefner): Rewrite this as a for-of loop once
-              // https://github.com/catapult-project/catapult/issues/2678 is
-              // fixed.
-              deleteSourceValues(sourceValues, dm);
-            }
+      for (var hist of this) {
+        deleteSourceValues(hist.diagnostics);
+        for (var b of hist.allBins) {
+          for (var dm of b.diagnosticMaps) {
+            deleteSourceValues(dm);
           }
         }
-      });
-      return tr.b.dictionaryValues(sourceValues);
-    },
-
-    getValuesWithName: function(name) {
-      return this.toArray().filter(v => v.name.indexOf(name) > -1);
-    },
-
-    getValuesNamed: function(name) {
-      return this.toArray().filter(v => v.name == name);
-    },
-
-    addValueInternal_: function(v) {
-      if (this.values_[v.guid])
-        throw new Error('Tried to add same value twice');
-      this.values_[v.guid] = v;
-    },
-
-    addValue: function(v) {
-      this.addValueInternal_(v);
-
-      if (v.numeric instanceof tr.v.Numeric) {
-        ValueSet.computeSummaryValuesForNumericValue(v).forEach(function(s) {
-          this.addValue(s);
-        }, this);
       }
+      return [...sourceValues.values()];
+    }
+
+    getValuesNamed(name) {
+      return this.toArray().filter(h => h.name === name);
+    }
+
+    /**
+     * @param {!tr.v.Histogram} h
+     */
+    addHistogram(h) {
+      if (this.values_.get(h.guid))
+        throw new Error('Cannot add same Histogram twice');
+
+      this.values_.set(h.guid, h);
+    }
+  }
+
+  // This does not contain storyGroupingKeys!
+  ValueSet.GROUPINGS = {
+    HISTOGRAM_NAME: {
+      key: 'histogramName',
+      label: 'name',
+      dataFn: v => v.name
+    },
+
+    BENCHMARK_NAME: {
+      key: 'benchmarkName',
+      label: 'benchmark',
+      dataFn: v => tr.v.d.IterationInfo.getField(v, 'benchmarkName', '')
+    },
+
+    BENCHMARK_START: {
+      key: 'benchmarkStart',
+      label: 'time',
+      dataFn: v => tr.v.d.IterationInfo.getField(v, 'benchmarkStartString', '')
+    },
+
+    STORYSET_REPEAT: {
+      key: 'storysetRepeat',
+      label: 'storyset repeat',
+      dataFn: v => tr.v.d.IterationInfo.getField(
+          v, 'storysetRepeatCounterLabel', 0)
+    },
+
+    STORY_REPEAT: {
+      key: 'storyRepeat',
+      label: 'story repeat',
+      dataFn: v => tr.v.d.IterationInfo.getField(
+          v, 'storyRepeatCounterLabel', 0)
+    },
+
+    STORY_NAME: {
+      key: 'storyName',
+      label: 'story',
+      dataFn: v => tr.v.d.IterationInfo.getField(v, 'storyDisplayName', '')
+    },
+
+    DISPLAY_LABEL: {
+      key: 'displayLabel',
+      label: 'label',
+      dataFn: v => tr.v.d.IterationInfo.getField(v, 'displayLabel', 'Value')
     }
   };
 
-  ValueSet.computeSummaryValuesForNumericValue = function(value) {
-    if (!(value instanceof tr.v.NumericValue &&
-          value.numeric instanceof tr.v.Numeric))
-      throw new Error('Tried to compute summary values for non-numeric');
-
-    var summaryValueMap = new tr.v.d.RelatedValueMap();
-    value.diagnostics.add(SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME, summaryValueMap);
-    var options = {description: value.description};
-    var stats = value.numeric.getSummarizedScalarNumericsWithNames();
-    return stats.map(function(stat) {
-      var summaryValue = new tr.v.NumericValue(
-          value.name + '_' + stat.name, stat.scalar, options);
-      summaryValueMap.set(stat.name, summaryValue);
-      return summaryValue;
-    });
-  };
-
   return {
-    SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME: SUMMARY_VALUE_MAP_DIAGNOSTIC_NAME,
     ValueSet: ValueSet
   };
 });
diff --git a/catapult/tracing/tracing/value/value_set_test.html b/catapult/tracing/tracing/value/value_set_test.html
index fdfb01d..64493d1 100644
--- a/catapult/tracing/tracing/value/value_set_test.html
+++ b/catapult/tracing/tracing/value/value_set_test.html
@@ -6,8 +6,10 @@
 -->
 
 <link rel="import" href="/tracing/base/range.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
+<link rel="import" href="/tracing/base/unit.html">
+<link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
+<link rel="import" href="/tracing/value/diagnostics/generic.html">
+<link rel="import" href="/tracing/value/histogram.html">
 <link rel="import" href="/tracing/value/value_set.html">
 
 <script>
@@ -15,69 +17,35 @@
 
 tr.b.unittest.testSuite(function() {
   test('addValuesFromDicts', function() {
-    var n = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 100),
-        100).build();
-    n.add(10);
-    n.customizeSummaryOptions({
-      count: true,
-      min: false,
-      max: false,
-      sum: true,
-      avg: false,
-      std: false
-    });
-
-    var values = new tr.v.ValueSet([new tr.v.NumericValue('foo', n)]);
+    var n = new tr.v.Histogram('foo', tr.b.Unit.byName.unitlessNumber);
+    var values = new tr.v.ValueSet([n]);
     var values2 = new tr.v.ValueSet();
     values2.addValuesFromDicts(values.valueDicts);
-    // foo, foo_count, foo_sum
-    assert.lengthOf(values2.getValuesWithName('foo'), 3);
     assert.lengthOf(values2.getValuesNamed('foo'), 1);
   });
 
-  test('computeSummaryValuesForNumericValue', function() {
-    var n = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.timeDurationInMs, tr.b.Range.fromExplicitRange(0, 100),
-        100).build();
+  test('addValueFromDictsWithSampleDiagnostic', function() {
+    var n = new tr.v.Histogram('foo', tr.b.Unit.byName.count);
+    n.addSample(10, {bar: new tr.v.d.Generic('baz')});
 
-    n.add(50);
-    n.add(60);
-    n.add(70);
-
-    n.customizeSummaryOptions({
-      count: true,
-      min: true,
-      max: true,
-      sum: true,
-      avg: true,
-      std: true,
-      percentile: [0.5, 1]
-    });
-
-    var results =
-        tr.v.ValueSet.computeSummaryValuesForNumericValue(
-            new tr.v.NumericValue('abc', n, { description: 'desc' }));
-    var values = {};
-    results.forEach(function(x) {
-      values[x.name] = x.numeric;
-    });
-    assert.strictEqual(values.abc_count.value, 3);
-    assert.strictEqual(values.abc_min.value, 50);
-    assert.strictEqual(values.abc_max.value, 70);
-    assert.strictEqual(values.abc_sum.value, 180);
-    assert.strictEqual(values.abc_avg.value, 60);
-    assert.strictEqual(values.abc_std.value, 10);
-    assert.closeTo(values.abc_pct_050.value, 60, 1);
-    assert.closeTo(values.abc_pct_100.value, 70, 1);
+    var values = new tr.v.ValueSet([n]);
+    var values2 = new tr.v.ValueSet();
+    values2.addValuesFromDicts(values.valueDicts);
+    assert.lengthOf(values2.getValuesNamed('foo'), 1);
+    var v = values2.getValuesNamed('foo')[0];
+    assert.lengthOf(v.getBinForValue(10).diagnosticMaps, 1);
+    var dm = v.getBinForValue(10).diagnosticMaps[0];
+    assert.strictEqual(dm.size, 1);
+    assert.instanceOf(dm.get('bar'), tr.v.d.Generic);
+    assert.strictEqual(dm.get('bar').value, 'baz');
   });
 
   test('relatedValueSetDiagnostic', function() {
-    var unit = tr.v.Unit.byName.unitlessNumber;
-    var a = new tr.v.NumericValue('a', new tr.v.ScalarNumeric(unit, 0));
-    var b = new tr.v.NumericValue('b', new tr.v.ScalarNumeric(unit, 1));
-    var c = new tr.v.NumericValue('c', new tr.v.ScalarNumeric(unit, 2));
-    a.diagnostics.add('rvs', new tr.v.d.RelatedValueSet([b, c]));
+    var unit = tr.b.Unit.byName.unitlessNumber;
+    var a = new tr.v.Histogram('a', unit);
+    var b = new tr.v.Histogram('b', unit);
+    var c = new tr.v.Histogram('c', unit);
+    a.diagnostics.set('rvs', new tr.v.d.RelatedValueSet([b, c]));
 
     // Don't serialize c just yet.
     var values = new tr.v.ValueSet([a, b]);
@@ -89,26 +57,26 @@
     var values2 = new tr.v.ValueSet();
     values2.addValuesFromDicts(values.valueDicts);
 
-    var a2 = values2.getValuesWithName('a');
+    var a2 = values2.getValuesNamed('a');
     assert.lengthOf(a2, 1);
     a2 = a2[0];
     assert.strictEqual(a2.guid, a.guid);
-    assert.instanceOf(a2, tr.v.Value);
+    assert.instanceOf(a2, tr.v.Histogram);
     assert.notStrictEqual(a2, a);
 
-    var b2 = values2.getValuesWithName('b');
+    var b2 = values2.getValuesNamed('b');
     assert.lengthOf(b2, 1);
     b2 = b2[0];
     assert.strictEqual(b2.guid, b.guid);
-    assert.instanceOf(b2, tr.v.Value);
+    assert.instanceOf(b2, tr.v.Histogram);
     assert.notStrictEqual(b2, b);
 
     var rvs2 = a2.diagnostics.get('rvs');
     assert.instanceOf(rvs2, tr.v.d.RelatedValueSet);
-    assert.lengthOf(rvs2.values, 2);
+    assert.lengthOf(rvs2, 2);
 
     // Assert that b and c are in a2's RelatedValueSet.
-    var rvs2vs = rvs2.values;
+    var rvs2vs = [...rvs2];
     var rvs2guids = rvs2vs.map(v => v.guid);
     var b2i = rvs2guids.indexOf(b.guid);
     assert.strictEqual(rvs2vs[b2i], b2);
@@ -122,14 +90,14 @@
     // Old values can refer to new values.
     values2.addValuesFromDicts([c.asDict()]);
 
-    var c2 = values2.getValuesWithName('c');
+    var c2 = values2.getValuesNamed('c');
     assert.lengthOf(c2, 1);
     c2 = c2[0];
     assert.strictEqual(c2.guid, c.guid);
     assert.notStrictEqual(c2, c);
 
     // Now a real c2 Value should be in a2's RelatedValueSet.
-    rvs2vs = rvs2.values;
+    rvs2vs = [...rvs2];
     rvs2guids = rvs2vs.map(v => v.guid);
     b2i = rvs2guids.indexOf(b.guid);
     c2i = rvs2guids.indexOf(c.guid);
@@ -138,14 +106,14 @@
   });
 
   test('relatedValueMapDiagnostic', function() {
-    var unit = tr.v.Unit.byName.unitlessNumber;
-    var a = new tr.v.NumericValue('a', new tr.v.ScalarNumeric(unit, 0));
-    var b = new tr.v.NumericValue('b', new tr.v.ScalarNumeric(unit, 1));
-    var c = new tr.v.NumericValue('c', new tr.v.ScalarNumeric(unit, 2));
+    var unit = tr.b.Unit.byName.unitlessNumber;
+    var a = new tr.v.Histogram('a', unit);
+    var b = new tr.v.Histogram('b', unit);
+    var c = new tr.v.Histogram('c', unit);
     var rvm = new tr.v.d.RelatedValueMap();
     rvm.set('y', b);
     rvm.set('z', c);
-    a.diagnostics.add('rvm', rvm);
+    a.diagnostics.set('rvm', rvm);
 
     // Don't serialize c just yet.
     var values = new tr.v.ValueSet([a, b]);
@@ -157,23 +125,23 @@
     var values2 = new tr.v.ValueSet();
     values2.addValuesFromDicts(values.valueDicts);
 
-    var a2 = values2.getValuesWithName('a');
+    var a2 = values2.getValuesNamed('a');
     assert.lengthOf(a2, 1);
     a2 = a2[0];
     assert.strictEqual(a2.guid, a.guid);
-    assert.instanceOf(a2, tr.v.Value);
+    assert.instanceOf(a2, tr.v.Histogram);
     assert.notStrictEqual(a2, a);
 
-    var b2 = values2.getValuesWithName('b');
+    var b2 = values2.getValuesNamed('b');
     assert.lengthOf(b2, 1);
     b2 = b2[0];
     assert.strictEqual(b2.guid, b.guid);
-    assert.instanceOf(b2, tr.v.Value);
+    assert.instanceOf(b2, tr.v.Histogram);
     assert.notStrictEqual(b2, b);
 
     var rvm2 = a2.diagnostics.get('rvm');
     assert.instanceOf(rvm2, tr.v.d.RelatedValueMap);
-    assert.lengthOf(rvm2.values, 2);
+    assert.lengthOf(rvm2, 2);
 
     // Assert that b and c are in a2's RelatedValueMap.
     // |c| should still be a ValueRef since it wasn't in values2.
@@ -185,11 +153,11 @@
     // Old values can refer to new values.
     values2.addValuesFromDicts([c.asDict()]);
 
-    var c2 = values2.getValuesWithName('c');
+    var c2 = values2.getValuesNamed('c');
     assert.lengthOf(c2, 1);
     c2 = c2[0];
     assert.strictEqual(c2.guid, c.guid);
-    assert.instanceOf(c2, tr.v.Value);
+    assert.instanceOf(c2, tr.v.Histogram);
     assert.notStrictEqual(c2, c);
 
     // b2 should still be in a2's RelatedValueMap.
@@ -200,20 +168,16 @@
   });
 
   test('sourceValuesWithSampleDiagnostic', function() {
-    var unit = tr.v.Unit.byName.unitlessNumber;
-    var a = new tr.v.NumericValue('a', new tr.v.ScalarNumeric(unit, 1));
+    var unit = tr.b.Unit.byName.unitlessNumber;
+    var aHist = new tr.v.Histogram('a', unit);
+    aHist.addSample(1);
 
-    var numeric = tr.v.NumericBuilder.createLinear(
-        tr.v.Unit.byName.timeDurationInMs,
-        tr.b.Range.fromExplicitRange(0, 1000), 10).build();
-    numeric.add(1, new tr.v.d.DiagnosticMap({
-      rvs: new tr.v.d.RelatedValueSet([a])
-    }));
-    var b = new tr.v.NumericValue('b', numeric);
+    var numeric = new tr.v.Histogram('b', tr.b.Unit.byName.unitlessNumber);
+    numeric.addSample(1, {rvs: new tr.v.d.RelatedValueSet([aHist])});
 
-    var values = new tr.v.ValueSet([a, b]);
+    var values = new tr.v.ValueSet([aHist, numeric]);
     assert.lengthOf(values.sourceValues, 1);
-    assert.strictEqual(values.sourceValues[0], b);
+    assert.strictEqual(values.sourceValues[0], numeric);
   });
 });
 </script>
diff --git a/catapult/tracing/tracing/value/value_test.html b/catapult/tracing/tracing/value/value_test.html
deleted file mode 100644
index 8b1b2a2..0000000
--- a/catapult/tracing/tracing/value/value_test.html
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2013 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-
-<link rel="import" href="/tracing/base/utils.html">
-<link rel="import" href="/tracing/value/numeric.html">
-<link rel="import" href="/tracing/value/unit.html">
-<link rel="import" href="/tracing/value/value.html">
-
-<script>
-'use strict';
-
-tr.b.unittest.testSuite(function() {
-  test('numericValueBasic', function() {
-    var n = new tr.v.ScalarNumeric(tr.v.Unit.byName.sizeInBytes, 314);
-    var v = new tr.v.NumericValue('MyNumeric', n);
-    assert.isDefined(v.guid);
-    var d = v.asDict();
-
-    var v2 = tr.v.Value.fromDict(d);
-    assert.instanceOf(v2, tr.v.NumericValue);
-    assert.equal(v.guid, v2.guid);
-    assert.equal(v.name, v2.name);
-    assert.equal(v.numeric.value, v2.numeric.value);
-  });
-
-  test('failureValueBasic', function() {
-    var v = new tr.v.FailureValue(
-      'MyFailure',
-      {description: 'Description', stack: tr.b.stackTraceAsString()});
-    assert.isDefined(v.guid);
-    var d = v.asDict();
-
-    var v2 = tr.v.Value.fromDict(d);
-    assert.instanceOf(v2, tr.v.FailureValue);
-    assert.equal(v.guid, v2.guid);
-    assert.equal(v.name, v2.name);
-    assert.equal(v.description, v2.description);
-    assert.equal(v.stack, v2.stack);
-  });
-
-  test('genericDiagnostic', function() {
-    var v0 = new tr.v.NumericValue('val',
-        tr.v.Numeric.buildFromSamples(tr.v.Unit.byName.count, [42]));
-    v0.diagnostics.add('foo', new tr.v.d.Generic({
-      t: true,
-      f: false,
-      z: 0,
-      o: 1,
-      ans: 0.42,
-      s: 'string',
-      a: [42.42, 'more string'],
-      d: {a: {b: 'c'}}
-    }));
-    var v1 = tr.v.Value.fromDict(v0.asDict());
-    var d = v1.diagnostics.get('foo');
-    assert.strictEqual(true, d.value.t);
-    assert.strictEqual(false, d.value.f);
-    assert.strictEqual(0, d.value.z);
-    assert.strictEqual(1, d.value.o);
-    assert.strictEqual(0.42, d.value.ans);
-    assert.strictEqual('string', d.value.s);
-    assert.deepEqual([42.42, 'more string'], d.value.a);
-    assert.deepEqual({a: {b: 'c'}}, d.value.d);
-  });
-});
-</script>
diff --git a/catapult/tracing/tracing_build/merge_traces.py b/catapult/tracing/tracing_build/merge_traces.py
index b107253..5280f62 100644
--- a/catapult/tracing/tracing_build/merge_traces.py
+++ b/catapult/tracing/tracing_build/merge_traces.py
@@ -27,6 +27,7 @@
 MEMORY_DUMP_PHASE = 'v'
 BEGIN_PHASE = 'B'
 END_PHASE = 'E'
+CLOCK_SYNC_EVENT_PHASE = 'c'
 
 
 # Minimum gap between two consecutive merged traces in microseconds.
@@ -295,11 +296,7 @@
   """Load a trace from a (possibly gzipped) file and return its parsed JSON."""
   logging.info('Loading trace %r...', filename)
   if filename.endswith(HTML_FILENAME_SUFFIX):
-    traces = html2trace.ReadTracesFromHTMLFilePath(filename)
-    if len(traces) > 1:
-      logging.warning('HTML trace contains multiple trace data blocks. Only '
-                      'the first block will be merged.')
-    return traces[0]
+    return LoadHTMLTrace(filename)
   elif filename.endswith(GZIP_FILENAME_SUFFIX):
     with gzip.open(filename, 'rb') as f:
       return json.load(f)
@@ -308,6 +305,30 @@
       return json.load(f)
 
 
+def LoadHTMLTrace(filename):
+  """Load a trace from a vulcanized HTML trace file."""
+  trace_components = collections.defaultdict(list)
+
+  for sub_trace in html2trace.ReadTracesFromHTMLFilePath(filename):
+    for name, component in TraceAsDict(sub_trace).iteritems():
+      trace_components[name].append(component)
+
+  trace = {}
+  for name, components in trace_components.iteritems():
+    if len(components) == 1:
+      trace[name] = components[0]
+    elif all(isinstance(component, list) for component in components):
+      trace[name] = [e for component in components for e in component]
+    else:
+      trace[name] = components[0]
+      logging.warning(
+          'Values of repeated trace component %r in HTML trace %r are not '
+          'lists. The first defined value of the component will be used.',
+          filename, name)
+
+  return trace
+
+
 def SaveTrace(trace, filename):
   """Save a JSON trace to a (possibly gzipped) file."""
   if filename is None:
@@ -326,6 +347,13 @@
         json.dump(trace, f)
 
 
+def TraceAsDict(trace):
+  """Ensure that a trace is a dictionary."""
+  if isinstance(trace, list):
+    return {'traceEvents': trace}
+  return trace
+
+
 def MergeTraceFiles(input_trace_filenames, output_trace_filename):
   """Merge a collection of input trace files into an output trace file."""
   logging.info('Loading %d input traces...', len(input_trace_filenames))
@@ -347,9 +375,7 @@
   trace_components = collections.defaultdict(collections.OrderedDict)
 
   for filename, trace in traces.iteritems():
-    if isinstance(trace, list):
-      trace = {'traceEvents': trace}
-    for name, component in trace.iteritems():
+    for name, component in TraceAsDict(trace).iteritems():
       trace_components[name][filename] = component
 
   merged_trace = {}
@@ -372,14 +398,32 @@
 
 def MergeTraceEvents(events_by_filename):
   """Merge trace events from multiple traces into a single list of events."""
+  # Remove strings from the list of trace events
+  # (https://github.com/catapult-project/catapult/issues/2497).
+  events_by_filename = collections.OrderedDict(
+      (filename, [e for e in events if not isinstance(e, basestring)])
+      for filename, events in events_by_filename.iteritems())
+
   timestamp_range_by_filename = _AdjustTimestampRanges(events_by_filename)
   process_map = _CreateProcessMapFromTraceEvents(events_by_filename)
   merged_events = _CombineTraceEvents(events_by_filename, process_map)
+  _RemoveSurplusClockSyncEvents(merged_events)
   merged_events.extend(
       _BuildInjectedTraceMarkerEvents(timestamp_range_by_filename, process_map))
   return merged_events
 
 
+def _RemoveSurplusClockSyncEvents(events):
+  """Remove all clock sync events except for the first one."""
+  # TODO(petrcermak): Figure out how to handle merging multiple clock sync
+  # events.
+  clock_sync_event_indices = [i for i, e in enumerate(events)
+                              if e['ph'] == CLOCK_SYNC_EVENT_PHASE]
+  # The indices need to be traversed from largest to smallest (hence the -1).
+  for i in clock_sync_event_indices[:0:-1]:
+    del events[i]
+
+
 def _AdjustTimestampRanges(events_by_filename):
   logging.info('Adjusting timestamp ranges of traces...')
 
diff --git a/catapult/tracing/tracing_build/strip_memory_infra_trace.py b/catapult/tracing/tracing_build/strip_memory_infra_trace.py
index e4c0cab..5db429f 100755
--- a/catapult/tracing/tracing_build/strip_memory_infra_trace.py
+++ b/catapult/tracing/tracing_build/strip_memory_infra_trace.py
@@ -10,9 +10,9 @@
 
 
 def FormatBytes(value):
-  units = ['B', 'kB', 'MB', 'GB']
-  while abs(value) >= 1000 and len(units) > 1:
-    value /= 1000
+  units = ['B', 'KiB', 'MiB', 'GiB']
+  while abs(value) >= 1024 and len(units) > 1:
+    value /= 1024
     units = units.pop(0)
   return '%3.1f %s' % (value, units[0])
 
diff --git a/catapult/tracing/tracing_build/trace2html.py b/catapult/tracing/tracing_build/trace2html.py
index 739ffda..96006b2 100644
--- a/catapult/tracing/tracing_build/trace2html.py
+++ b/catapult/tracing/tracing_build/trace2html.py
@@ -81,13 +81,9 @@
     config_name = project.GetDefaultConfigName()
 
   modules = [
-      # Import the config before trace2html. We do this because the UI has some
-      # global initialization (e.g. Polymer, d3) that can be finnicky about the
-      # order in which things happen.
+      'tracing.trace2html',
       project.GetModuleNameForConfigName(config_name),
-      'tracing.trace2html'
   ]
-
   vulcanizer = project.CreateVulcanizer()
   load_sequence = vulcanizer.CalcLoadSequenceForModuleNames(modules)
 
diff --git a/catapult/tracing/tracing_examples/chrome_inspect_test_shell.html b/catapult/tracing/tracing_examples/chrome_inspect_test_shell.html
index 2049bdd..dc939df 100644
--- a/catapult/tracing/tracing_examples/chrome_inspect_test_shell.html
+++ b/catapult/tracing/tracing_examples/chrome_inspect_test_shell.html
@@ -9,9 +9,7 @@
 <title>chrome://inspect test shell</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
-<script src="/components/webcomponentsjs/webcomponents.js"></script>
-
-<link rel="import" href="/components/polymer/polymer.html">
+<link rel="import" href="/tracing/ui/base/base.html">
 <link rel="import" href="/tracing/ui/extras/about_tracing/profiling_view.html">
 
 <style>
diff --git a/catapult/tracing/tracing_examples/deep_reports.html b/catapult/tracing/tracing_examples/deep_reports.html
index 27a95f1..5d8a51b 100644
--- a/catapult/tracing/tracing_examples/deep_reports.html
+++ b/catapult/tracing/tracing_examples/deep_reports.html
@@ -9,15 +9,12 @@
 <title>Deep insights via Bulk Trace Analysis</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
-<script src="/components/webcomponentsjs/webcomponents.js"></script>
+<link rel="import" href="/tracing/ui/base/base.html" data-suppress-import-order>
 
-<link rel="import" href="/components/polymer/polymer.html">
-
-<link rel="import" href="/tracing/ui/timeline_view.html">
-<link rel="import" href="/tracing/ui/extras/full_config.html">
-
-<link rel="import" href="/tracing/ui/extras/deep_reports/main.html">
 <link rel="import" href="/tracing/ui/extras/deep_reports/html_results.html">
+<link rel="import" href="/tracing/ui/extras/deep_reports/main.html">
+<link rel="import" href="/tracing/ui/extras/full_config.html">
+<link rel="import" href="/tracing/ui/timeline_view.html">
 
 <style>
   body {
diff --git a/catapult/tracing/tracing_examples/skia_debugger.html b/catapult/tracing/tracing_examples/skia_debugger.html
index 29b253b..f52e490 100644
--- a/catapult/tracing/tracing_examples/skia_debugger.html
+++ b/catapult/tracing/tracing_examples/skia_debugger.html
@@ -9,11 +9,9 @@
 <title>Skia Debugger</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
-<script src="/components/webcomponentsjs/webcomponents.js"></script>
-
-<link rel="import" href="/components/polymer/polymer.html">
 <link rel="import" href="/tracing/base/base64.html">
 <link rel="import" href="/tracing/extras/chrome/cc/picture.html">
+<link rel="import" href="/tracing/ui/base/base.html">
 <link rel="import" href="/tracing/ui/extras/chrome/cc/picture_debugger.html">
 
 <script src="string_convert.js"></script>
diff --git a/catapult/tracing/tracing_examples/trace_viewer.html b/catapult/tracing/tracing_examples/trace_viewer.html
index 065f2cf..02a2beb 100644
--- a/catapult/tracing/tracing_examples/trace_viewer.html
+++ b/catapult/tracing/tracing_examples/trace_viewer.html
@@ -9,16 +9,6 @@
 <title>Simple Embedded Viewer</title>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
-<script src="/components/webcomponentsjs/webcomponents.js"></script>
-<script>
-  'use strict';
-
-  // Force Polymer into native shadowDom mode
-  window.Polymer = window.Polymer || {};
-  window.Polymer.dom = 'shadow';
-</script>
-
-<link rel="import" href="/components/polymer/polymer.html">
 <link rel="import" href="/tracing/base/timing.html">
 <link rel="import" href="/tracing/base/xhr.html">
 <link rel="import" href="/tracing/importer/import.html">
diff --git a/catapult/tracing/tracing_project.py b/catapult/tracing/tracing_project.py
index 1772158..6aa0a77 100644
--- a/catapult/tracing/tracing_project.py
+++ b/catapult/tracing/tracing_project.py
@@ -58,6 +58,7 @@
       os.path.join(os.path.dirname(__file__), os.path.pardir))
 
   tracing_root_path = os.path.join(catapult_path, 'tracing')
+  trace_processor_root_path = os.path.join(catapult_path, 'trace_processor')
   tracing_src_path = os.path.join(tracing_root_path, 'tracing')
   extras_path = os.path.join(tracing_src_path, 'extras')
   ui_extras_path = os.path.join(tracing_src_path, 'ui', 'extras')
@@ -82,7 +83,7 @@
   chai_path = os.path.join(tracing_third_party_path, 'chai')
   mocha_path = os.path.join(tracing_third_party_path, 'mocha')
 
-  mre_path = os.path.join(catapult_path, 'perf_insights')
+  mre_path = os.path.join(tracing_src_path, 'mre')
 
   metrics_path = os.path.join(tracing_src_path, 'metrics')